[
  {
    "path": ".github/workflows/EnterDevShell.ps1",
    "content": "param(\n    [Parameter()]\n    [String]$architecture\n)\n\nfunction EnterDevShellEnv  {\n\n    param(\n        [Parameter()]\n        [String]$arch\n    )\n\n    $vsw = Get-Command 'vswhere'\n    $VSFfavors = 'Community','Professional','Enterprise','BuildTools' | %{ \"Microsoft.VisualStudio.Product.$_\" }\n    $vs = & $vsw.Path -products $VSFfavors -latest -format json | ConvertFrom-Json\n    $tools_dir = Join-Path $vs.installationPath 'Common7' 'Tools'\n    # Try the root tools dir\n    $devshell = Join-Path $tools_dir 'Microsoft.VisualStudio.DevShell.dll'\n    # Try finding it under vsdevshell\n    if (!(Test-Path $devshell -Type Leaf)) {\n        $devshell = Join-Path $tools_dir 'vsdevshell' 'Microsoft.VisualStudio.DevShell.dll'\n    }\n    # Fail if didn't find the DevShell library\n    if (!(Test-Path $devshell -Type Leaf)) {\n        throw \"error: cannot find Microsoft.VisualStudio.DevShell.dll\"\n    }\n    Import-Module $devshell\n    Enter-VsDevShell -VsInstanceId $vs.instanceId -SkipAutomaticLocation -DevCmdArguments \"-arch=$arch -no_logo\"\n}\n\n# Enter VsDevShell, capture the environment difference and export it to github env\n$env_before = @{}\nGet-ChildItem env: | %{ $env_before.Add($_.Name, $_.Value) }\nEnterDevShellEnv -arch \"$architecture\"\n$env_after = @{}\nGet-ChildItem env: | %{ $env_after.Add($_.Name, $_.Value) }\n$env_diff = $env_after.GetEnumerator() | where { -not $env_before.ContainsKey($_.Name) -or $env_before[$_.Name] -ne $_.Value }\n$env_diff | %{ echo \"$($_.Name)=$($_.Value)\" >> $env:GITHUB_ENV }\n"
  },
  {
    "path": ".github/workflows/freebsd.yml",
    "content": "name: freebsd\n\non:\n  push:\n    paths-ignore:\n    - '.github/workflows/**'\n    - '!.github/workflows/freebsd.yml'\n  pull_request:\n    paths-ignore:\n    - '.github/workflows/**'\n    - '!.github/workflows/freebsd.yml'\n\npermissions: read-all\n\njobs:\n  freebsd:\n    runs-on: ubuntu-latest\n    steps:\n    - name: checkout libva\n      uses: actions/checkout@v4\n      with:\n        repository: intel/libva\n        path: libva\n    - name: checkout libva-utils\n      uses: actions/checkout@v4\n      with:\n        path: libva-utils\n    - name: test\n      uses: vmactions/freebsd-vm@v1\n      with:\n        prepare: |\n          pkg install -y meson pkgconf libdrm libXext libXfixes wayland\n          pkg install -y -x '^mesa($|-libs)'\n        run: |\n          cd libva\n          meson setup _build --prefix=/usr --libdir=/usr/lib/x86_64-linux-gnu\n          meson compile -C _build\n          meson install -C _build\n          cd ../libva-utils\n          meson setup _build --prefix=/usr --libdir=/usr/lib/x86_64-linux-gnu\n          meson compile -C _build\n          meson install -C _build\n"
  },
  {
    "path": ".github/workflows/ubuntu.yml",
    "content": "name: ubuntu\n\non:\n  push:\n    paths-ignore:\n    - '.github/workflows/**'\n    - '!.github/workflows/ubuntu.yml'\n  pull_request:\n    paths-ignore:\n    - '.github/workflows/**'\n    - '!.github/workflows/ubuntu.yml'\n\npermissions: read-all\n\njobs:\n  ubuntu-24-04:\n    runs-on: ubuntu-24.04\n    steps:\n    - name: checkout libva\n      uses: actions/checkout@v4\n      with:\n        repository: intel/libva\n        path: libva\n    - name: checkout libva-utils\n      uses: actions/checkout@v4\n      with:\n        path: libva-utils\n    - name: install prerequisites\n      run: |\n        sudo apt-get update\n        sudo apt-get install -y --no-install-recommends \\\n          libdrm-dev \\\n          libegl1-mesa-dev \\\n          libgl1-mesa-dev \\\n          libx11-dev \\\n          libxext-dev \\\n          libxfixes-dev \\\n          libwayland-dev\n    - name: build libva\n      run: |\n        cd libva\n        ./autogen.sh --prefix=/usr --libdir=/usr/lib/x86_64-linux-gnu\n        make -j$(nproc)\n        sudo make install\n    - name: build libva-utils\n      run: |\n        cd libva-utils\n        ./autogen.sh --prefix=/usr --libdir=/usr/lib/x86_64-linux-gnu\n        make -j$(nproc)\n        make check\n        sudo make install\n"
  },
  {
    "path": ".github/workflows/windows.yml",
    "content": "name: windows\n\non:\n  push:\n    paths-ignore:\n    - '.github/workflows/**'\n    - '!.github/workflows/windows.yml'\n    - '!.github/workflows/EnterDevShell.ps1'\n  pull_request:\n    paths-ignore:\n    - '.github/workflows/**'\n    - '!.github/workflows/windows.yml'\n    - '!.github/workflows/EnterDevShell.ps1'\n\npermissions: read-all\n\njobs:\n  windows-msvc:\n    runs-on: windows-2022\n    steps:\n    - name: checkout libva\n      uses: actions/checkout@v3\n      with:\n        repository: intel/libva\n        path: libva\n    - name: checkout libva-utils\n      uses: actions/checkout@v3\n      with:\n        path: libva-utils\n    - name: 'Setup Python'\n      uses: actions/setup-python@v4\n      with:\n        python-version: '3.x'\n    - name: Install Meson\n      run: pip install meson\n    - name: Install pkg-config\n      shell: pwsh\n      run: |\n        Invoke-RestMethod -Uri https://download.gnome.org/binaries/win32/dependencies/pkg-config_0.26-1_win32.zip -OutFile pkg-config_0.26-1_win32.zip\n        Expand-Archive pkg-config_0.26-1_win32.zip\n        Invoke-RestMethod -Uri http://ftp.gnome.org/pub/gnome/binaries/win32/glib/2.28/glib_2.28.8-1_win32.zip -OutFile glib_2.28.8-1_win32.zip\n        Expand-Archive glib_2.28.8-1_win32.zip\n        Invoke-RestMethod -Uri http://ftp.gnome.org/pub/gnome/binaries/win32/dependencies/gettext-runtime_0.18.1.1-2_win32.zip -OutFile gettext-runtime_0.18.1.1-2_win32.zip\n        Expand-Archive gettext-runtime_0.18.1.1-2_win32.zip\n        mkdir pkg-config\n        cp pkg-config_0.26-1_win32\\bin\\* pkg-config\\\n        cp gettext-runtime_0.18.1.1-2_win32\\bin\\* pkg-config\\\n        cp glib_2.28.8-1_win32\\bin\\* pkg-config\\\n    - name: Enter DevShell\n      run: 'libva-utils\\.github\\workflows\\EnterDevShell.ps1 ${{ inputs.architecture }}'\n      shell: pwsh\n    - name: Build libva\n      run: |\n        cd libva\n        meson build\n        ninja -C build install\n    - name: Build libva-utils\n      run: |\n        $env:Path += \";\"\n        $env:Path += Resolve-Path pkg-config\\\n        $env:Path += \";c:\\bin\\;c:\\lib\\\"\n        $env:PKG_CONFIG_PATH = \"C:\\lib\\pkgconfig\"\n        del C:\\Strawberry\\perl\\bin\\pkg-config*\n        cd libva-utils\n        meson build -Dtests=true\n        ninja -C build install\n\n  windows-mingw:\n    runs-on: windows-2022\n    defaults:\n      run:\n        shell: msys2 {0}\n    steps:\n    - name: checkout libva\n      uses: actions/checkout@v3\n      with:\n        repository: intel/libva\n        path: libva\n    - name: checkout libva-utils\n      uses: actions/checkout@v3\n      with:\n        path: libva-utils\n    - name: 'Setup MSYS2'\n      uses: msys2/setup-msys2@v2\n      with:\n        msystem: mingw64\n        update: false\n        install: >-\n          git\n        pacboy: >-\n          toolchain:p\n          meson:p\n    - name: Enter DevShell\n      run: 'libva-utils\\.github\\workflows\\EnterDevShell.ps1 ${{ inputs.architecture }}'\n      shell: pwsh\n    - name: Build libva\n      run: |\n        cd libva\n        CC=gcc meson build\n        CC=gcc ninja -C build install\n    - name: Build libva-utils\n      run: |\n        cd libva-utils\n        CC=gcc meson build -Dtests=true\n        CC=gcc ninja -C build install\n"
  },
  {
    "path": "Android.bp",
    "content": "/*\n * Copyright (c) 2024 Intel Corporation. All Rights Reserved.\n *\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the\n * \"Software\"), to deal in the Software without restriction, including\n * without limitation the rights to use, copy, modify, merge, publish,\n * distribute, sub license, and/or sell copies of the Software, and to\n * permit persons to whom the Software is furnished to do so, subject to\n * the following conditions:\n *\n * The above copyright notice and this permission notice (including the\n * next paragraph) shall be included in all copies or substantial portions\n * of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR\n * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\npackage {\n    default_applicable_licenses: [\"external_libva-utils_license\"],\n}\n\nlicense {\n    name: \"external_libva-utils_license\",\n    visibility: [\":__subpackages__\"],\n    license_kinds: [\n        \"SPDX-license-identifier-Apache-2.0\",\n        \"SPDX-license-identifier-BSD\",\n        \"SPDX-license-identifier-ISC\",\n        \"SPDX-license-identifier-MIT\",\n    ],\n    license_text: [\n        \"LICENSE\",\n    ],\n}\n\ncc_defaults {\n    name: \"libva_utils_defaults\",\n    shared_libs: [\n        \"libva\",\n        \"libdl\",\n        \"libcutils\",\n        \"libutils\",\n        \"libgui\",\n        \"libdrm\",\n    ],\n\n    vendor: true,\n    enabled: false,\n    arch: {\n        x86_64: {\n            enabled: true,\n        },\n    },\n}\n\ncc_library {\n    name: \"libva_utils_common\",\n\n    defaults: [\"libva_utils_defaults\"],\n\n    srcs: [\n        \"common/va_display.c\",\n        \"common/va_display_drm.c\",\n    ],\n\n    export_include_dirs: [\"common/\"],\n\n    cflags: [\"-DHAVE_VA_DRM\"],\n\n    visibility: [\":__subpackages__\"],\n}\n\ncc_defaults {\n    name: \"libva_utils_bin_defaults\",\n\n    defaults: [\"libva_utils_defaults\"],\n\n    shared_libs: [\n        \"libva_utils_common\",\n    ],\n}\n\n// decode directory\n\ncc_binary {\n    name: \"vampeg2vldemo\",\n\n    srcs: [\n        \"decode/mpeg2vldemo.cpp\",\n    ],\n\n    defaults: [\"libva_utils_bin_defaults\"],\n}\n\ncc_binary {\n    name: \"valoadjpeg\",\n\n    srcs: [\n        \"decode/loadjpeg.c\",\n        \"decode/tinyjpeg.c\",\n    ],\n\n    defaults: [\"libva_utils_bin_defaults\"],\n}\n\n// encode directory\n\ncc_binary {\n    name: \"vah264encode\",\n\n    srcs: [\n        \"encode/h264encode.c\",\n    ],\n\n    defaults: [\"libva_utils_bin_defaults\"],\n}\n\ncc_binary {\n    name: \"vaavcenc\",\n\n    srcs: [\n        \"encode/avcenc.c\",\n    ],\n\n    defaults: [\"libva_utils_bin_defaults\"],\n}\n\ncc_binary {\n    name: \"vavp8enc\",\n\n    srcs: [\n        \"encode/vp8enc.c\",\n    ],\n\n    cflags: [\n        \"-Wno-gnu-variable-sized-type-not-at-end\",\n    ],\n\n    defaults: [\"libva_utils_bin_defaults\"],\n}\n\ncc_binary {\n    name: \"vavp9enc\",\n\n    srcs: [\n        \"encode/vp9enc.c\",\n    ],\n\n    defaults: [\"libva_utils_bin_defaults\"],\n}\n\ncc_binary {\n    name: \"vajpegenc\",\n\n    srcs: [\n        \"encode/jpegenc.c\",\n    ],\n\n    defaults: [\"libva_utils_bin_defaults\"],\n}\n\ncc_binary {\n    name: \"vampeg2vaenc\",\n\n    srcs: [\n        \"encode/mpeg2vaenc.c\",\n    ],\n\n    defaults: [\"libva_utils_bin_defaults\"],\n}\n\ncc_binary {\n    name: \"vasvctenc\",\n\n    srcs: [\n        \"encode/svctenc.c\",\n    ],\n\n    defaults: [\"libva_utils_bin_defaults\"],\n}\n\n// vainfo directory\n\ncc_binary {\n    name: \"vainfo\",\n\n    srcs: [\n        \"vainfo/vainfo.c\",\n    ],\n\n    defaults: [\"libva_utils_bin_defaults\"],\n}\n\n// videoprocess directory\ncc_binary {\n    name: \"vavpp\",\n\n    srcs: [\n        \"videoprocess/vavpp.cpp\",\n    ],\n\n    defaults: [\"libva_utils_bin_defaults\"],\n}\n"
  },
  {
    "path": "CONTRIBUTING.md",
    "content": "# Contributing to libva-utils\n\nLibva-utils is an open source project licensed under the [MIT License] (https://opensource.org/licenses/MIT)\n\n## Coding Style\n\nLibva-utils does not have a defined coding style at this time, but that will be updated.\n\n## Certificate of Origin\n\nIn order to get a clear contribution chain of trust we use the [signed-off-by language] (https://01.org/community/signed-process)\nused by the Linux kernel project.  \n## Patch format\n\nBeside the signed-off-by footer, we expect each patch to comply with the following format:\n\n```\n<component>: Change summary\n\nMore detailed explanation of your changes: Why and how.\nWrap it to 72 characters.\nSee [here] (http://chris.beams.io/posts/git-commit/)\nfor some more good advices.\n\nSigned-off-by: <contributor@foo.com>\n```\n\nFor example:\n\n```\ndrm: remove va_drm_is_authenticated check\n    \nIf we do not use a render node we must authenticate. Doing the extra\nGetClient calls/ioctls does not help much, so don't bother.\n    \nCc: David Herrmann <dh.herrmann@gmail.com>\nCc: Daniel Vetter <daniel.vetter@ffwll.ch>\nSigned-off-by: Emil Velikov <emil.l.velikov@gmail.com>\nReviewed-by: Sean V Kelley <seanvk@posteo.de>\n```\n\n## Pull requests\n\nWe accept github pull requests.\n\nOnce you've finished making your changes push them to your fork and send the PR via the github UI.\n\n## Reporting a security issue\n\nPlease refer to [security.md](security.md) file for details.\n\n## Public issue tracking\n\nIf you have a problem, please let us know.  IRC is a perfectly fine place\nto quickly informally bring something up, if you get a response.  The\n[mailing list](https://lists.01.org/mailman/listinfo/intel-vaapi-media)\nis a more durable communication channel.\n\nIf it's a bug not already documented, by all means please [open an\nissue in github](https://github.com/intel/libva-utils/issues/new) so we all get visibility\nto the problem and can work towards a resolution.\n\nFor feature requests we're also using github issues, with the label\n\"enhancement\".\n\nOur github bug/enhancement backlog and work queue are tracked in a\n[Libva-utils waffle.io kanban](https://waffle.io/intel/libva-utils).\n\n## Closing issues\n\nYou can either close issues manually by adding the fixing commit SHA1 to the issue\ncomments or by adding the `Fixes` keyword to your commit message:\n\n```\nssntp: test: Add Disconnection role checking tests\n\nWe check that we get the right role from the disconnection\nnotifier.\n\nFixes #121\n\nSigned-off-by: Samuel Ortiz <sameo@linux.intel.com>\n```\n\nGithub will then automatically close that issue when parsing the\n[commit message](https://help.github.com/articles/closing-issues-via-commit-messages/).\n"
  },
  {
    "path": "COPYING",
    "content": "    Copyright (C) 2009-2016 Intel Corporation. All Rights Reserved.\n\n    Permission is hereby granted, free of charge, to any person obtaining a\n    copy of this software and associated documentation files (the\n    \"Software\"), to deal in the Software without restriction, including\n    without limitation the rights to use, copy, modify, merge, publish,\n    distribute, sub license, and/or sell copies of the Software, and to\n    permit persons to whom the Software is furnished to do so, subject to\n    the following conditions:\n\n    The above copyright notice and this permission notice (including the\n    next paragraph) shall be included in all copies or substantial portions\n    of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n    OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n    IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR\n    ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n    TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n    SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "INSTALL",
    "content": "[![Stories in Ready](https://badge.waffle.io/intel/libva-utils.png?label=ready&title=Ready)](https://waffle.io/intel/libva-utils)\n  libva-utils\n  Collection of tests to exercise VA-API as provided\n  by the libva project.  VA-API requires a driver implementation\n  to operate.\n\n  Copyright (C) 2009-2016 Intel Corporation\n\n\nLicense\n-------\n\nPlease read the COPYING file available in this package.\n\n\nOverview\n--------\n\nlibva-utils is a collection of tests to exercise VA-API in accordance\nwith the libva project. A driver implementation is necessary to properly\noperate.\n\n\nProject is hosted on github:\nhttps://github.com/intel/libva-utils\n\nCodecs\n------\n\nH.264   D   ILK+\nH.264   E   SNB+\nMPEG-2  D   CTG+\nVC-1    D   SNB+\nJPEG    D   IVB+\nJPEG    E   CHV+/BSW+\nVP8     D   BDW+\nVP8     E   CHV+/BSW+\nHEVC    D   CHV+/BSW+\nHEVC    E   SKL+\nVP9     D   BXT+\nHEVC 10bit     D       BXT+\nVP9 10bit      D       KBL+\n\nRequirements\n------------\n\nlibva API >= 0.39.4\n\nGoogle Test Framework Integration\n---------------------------------\n\nGoogle Test recommends it be custom compiled for each project that uses it.\nTherefore, the libva-utils project tracks a subset copy of the Google\nTest Framework source code at release 1.8.0 (initially) in a test/gtest/\nsubdirectory of the project source tree.  The libva-utils copy of gtest\nwill only be updated to new upstream releases (or critical upstream fixes) of\ngtest, only if it is necessary.  As of this writing, the last release (1.8.0)\nwas August 2016, about three years after its previous release.  Thus, there\nshould be minimal need to update or maintain gtest within the libva-utils\nproject.\n\nBuilding Google Test Framework Library\n--------------------------------------\n\nThe Google Test Framework is compiled as a convenience library (libgtest.la)\nwithin the libva-utils source tree.  The rules to build libgtest.la are\nmaintained in a custom makefile in the libva-intel-driver project tree\n(see test/Makefile.am).  The libgtest.la library will be automatically compiled\nif the tests are enabled by configuration.\n\n\nBuilding Driver Tests\n---------------------\n\nThe --enable-gtests=[yes|no] configuration option is defined in configure.ac to\nenable or disable compilation of libgtest.la and the test_va_api test executable.\nThe default is disabled.  When the tests are enabled during configuration, the\nmake command will compile the VA-API gtests and link to libgtest.la and output/install\na single test/test_va_api or ${prefix}/bin/test_va_api executable.  Hence...\n\n    \"./autogen.sh --enable-gtests && make\"\n\n...is a minimal example of how one might build the driver and its tests.\n\nSince all this project contains only tests, it is configurable to compile the GTest\nframework and the corresponding tests.  Notice the difference when enabling\ntests on other related projects, e.g. libva-intel-driver.\n\nOn the summary section after configuration something like this should be seen\n\nlibva-utils - ${LIBVA_UTILS_VERSION}\n\nLibva VA-API version ............. : ${LIBVA_API_VERSION}\nInstallation prefix .............. : ${prefix}\nDefault driver path .............. : ${exec_prefix}/lib/dri\nExtra window systems ............. : drm x11\nEnable Gtests .................... : yes\n\nReporting Bugs / Submit change patches\n--------------------------------------\n\nSee the contributing guide:\n\nhttps://github.com/intel/libva-utils/blob/master/CONTRIBUTING.md\n"
  },
  {
    "path": "Makefile.am",
    "content": "# Copyright (c) 2007 Intel Corporation. All Rights Reserved.\n#\n# Permission is hereby granted, free of charge, to any person obtaining a\n# copy of this software and associated documentation files (the\n# \"Software\"), to deal in the Software without restriction, including\n# without limitation the rights to use, copy, modify, merge, publish,\n# distribute, sub license, and/or sell copies of the Software, and to\n# permit persons to whom the Software is furnished to do so, subject to\n# the following conditions:\n# \n# The above copyright notice and this permission notice (including the\n# next paragraph) shall be included in all copies or substantial portions\n# of the Software.\n# \n# THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n# IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR\n# ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\nACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}\n\nAUTOMAKE_OPTIONS = foreign\n\nSUBDIRS = common decode encode vainfo videoprocess vendor/intel vendor/intel/sfcsample\n\nif USE_X11\nSUBDIRS += putsurface\nelse\nif USE_WAYLAND\nSUBDIRS += putsurface\nendif\nendif\n\nif ENABLE_TESTS\nSUBDIRS += test\nendif\n\n# Extra clean files so that maintainer-clean removes *everything*\nMAINTAINERCLEANFILES = \\\n\taclocal.m4 compile config.guess config.sub \\\n\tconfigure depcomp install-sh ltmain.sh     \\\n\tMakefile.in missing\n\nEXTRA_DIST = \\\n        autogen.sh \\\n        $(NULL)\n"
  },
  {
    "path": "NEWS",
    "content": "libva-utils NEWS -- summary of changes.  2025-12-12\nCopyright (C) 2009-2025 Intel Corporation\n\nVersion 2.23.0 - 12.Dec.2025\n* fix:Fixed build with -std=c++20\n* fix:usr ptr surface type not set ext buffer flag\n* fix:Fix coveirty overflowed issues\n* fix: remove useless code and fix code copy typo\n* android: Support Android build\n* sample: [HEVCe] update header logic\n\nVersion 2.22.0 - 20.Jun.2024\n* ci:  correct the permission of workflows\n* fix: Fixed possible memory leak in h264encode\n* doc: Fix meson build options in README\n* test/CheckEntrypointsForProfile: fix for limited profiles\n\nVersion 2.21.0 - 12.Mar.2024\n* vainfo: Print VAConfigAttribEncMaxTileRows and VAConfigAttribEncMaxTileCols\n* test: Add Prime3 memtype support\n* sample: Add back buffer size options for AV1e\n* sample: simplify cbr/vbr interface and refine codes for AV1e\n* fix: clean some unused variables and functions\n* fix: unify the coding style\n* fix: Fix coverity issues exposed in encode/decode/vpp\n* fix: options in AV1 encode sample\n* fix: fix typo of version in NEWS\n* ci: harden permission for freebsd.yml\n* ci: add workflow permission for all jobs\n* ci: update freebsd vm to the v1 version\n* meson: use meson setup instead of meson options\n\nVersion 2.20.0 - 14.Sep.2023\n* test: Enable AV1 encode test\n\nVersion 2.19.0 - 04.Jul.2023\n* add: Add support for VAConfigAttribEncHEVCBlockSizes & VAConfigAttribEncHEVCFeatures for hevcencode.\n* ci:Update ubuntu.yml to remove ubuntu 18.04\n* meson: guard code introduced after libva 1.xx release\n* meson: libva-xyz should be same version as detected libva\n* configure: libva-xyz should be same version as detected libva\n* fix: scan num limitation.\n* fix: pic_order_cnt_lsb to accept larger GOP\n\nVersion 2.18.0 - 17.Mar.2023\n* doc:Add build and install libva-utils steps\n* test: Add VAProfileH264High10\n* test: Don't assume our DRM node is first\n* add: va_display_drm: Allow VGEM for WSL2\n* win: win32 compat: Fix setenv/unsetenv return values\n* fix: Add Th limitation by HUFFMAN_TABLES Count\n* fix: Add refresh_frame_flags in PPS\n* fix: Add checking of stream_scan size\n* fix: Add Scan Num limitation\n* fix: Changed H2S configuration template.\n* fix: Correct maximum display luminance per VAAPI definition.\n* fix: Fix possible memory leak\n* fix: Fix coding issues of function return type & ref_frame_idx idx too large\n\nVersion 2.17.0 - 26.Dec.2022\n* add: Upload a security disclaimer\n* add: av1 encode sample code\n* tests: Changed default initialization value to VAProfileNone\n* ci: Add git dependency for mingw build for meson dependencies cloning\n* vainfo: Add support for Win32 device enumeration and selection\n* ci: dos2unix for windows workflow files\n* ci: update checkout and setup-python action versions to v3 and v4\n* ci: Add msvc/mingw Windows CI\n* tests: enable building on Windows\n* tests: Remove C++20 constructs in tests project targetting C++11\n* tests: remove non C++ standard constructs\n* vainfo: add va-win32 support\n* add:Import OpenBSD getopt for MSVC from mesa/f9bb5323\n* fix: Fix reporting of VAConfigAttribEncMaxSlices\n* meson: add missing sample tools\n\nVersion 2.16.0 - 8.Oct.2022\n* trace: print the display being attempted\n* ci: upgrade FreeBSD to 13.1\n* meson: Search for threads in top-level meson.build\n* meson: produce summary() when 0.53.0 is present\n\nVersion 2.15.0 - 1.Jul.2022\n* add: Added HDR10 Tone Mapping sample code including H2H and H2S config files.\n* add: Support lowpower for HEVC Encoding\n* fix: Set correct entrypoint for lowpower\n* fix: Components exceed the value specified by jpeg spec\n* fix: hdr local variable pointer access issue\n* fix: Fix issue incorrect color for EU based hevcencode\n* fix: exclude vgem node and invalid drm node in vainfo\n* ci:Disable travis build\n* meson: check the dependency of libdrm\n\nVersion 2.14.0 - 16.Feb.2022\n* test: Use test suite setup/teardown to reduce test overhead\n* ci: fix freebsd build\n\nVersion 2.13.0 - 30.Sep.2020\n* code style:unify the code styles using the style_unify script\n* fix: h264encode, hevcencode: fix integer overflow for high definition\n\nVersion 2.12.0 - 21.Jun.2020\n* test: Remove version check for test vaInitialize_vaTerminate\n* vpp: Added 3DLUT sample code and configuration file\n\nVersion 2.11.0 - 23.Mar.2020\n* vainfo: add VA_RC_TCBRC to reported caps list\n* jpegenc: Allow encoding a 4K frame\n* h264encode: Added low_power command line option\n* test_va_api: Enable new caps for VAConfigAttribEncryption\n* ci: upgrade FreeBSD to 12.2\n* ci: enable github actions\n\nVersion 2.10.0 - 18.Dec.2020\n* add Mediacopy Sample code\n* Enable new caps for rate control TCBRC\n* Add support for a --repeat command line option to vp8enc.\n* fix one null pointer dereference risk \n\nVersion 2.9.0 - 11.Sep.2020\n* Fix KW issues\n* Add support for csc with RGBP\n\nVersion 2.8.0 - 26.Jun.2020\n* test: cast VA_STATUS_ERROR_UNKNOWN to VAStatus type\n* test/fixture: fix GCC 10.0.1 error with drmDevicePaths\n\nVersion 2.7.0 - 1.Apr.2020\n* meson: add missing samples\n* sfcsample: drop unused Linux-only header\n* autotools: drop libdrm dependency (only libva-drm is used)\n* autotools: drop unused X11 dependencies\n* Add 10/12bit RT format check\n* test/createsurfaces: add some scoped traces\n* test/streamable: add VAConfigAttrib and VASurfaceAttrib\n* Modify output CS settings for Chroma siting on Linux\n* Align libva attribute check\n* Added displaying supported config attributes\n* add the VP samples README\n\nVersion 2.6.0 - 10.Dec.2019\n* Align libva attribute check\n* Added displaying supported config attributes\n* add the VP samples README.\n* add VP sample for usrptr and 1:N output\n\nVersion 2.5.0 - 8.Jul.2019\n* meson: rename the h264enc binary to be in line with the autotools build\n* unify NEWS format\n* sfcsample: don't include X11 headers\n* test: update vaInitialize_vaTerminate_Bad_vaSetDriverName\n* Check for -fstack-protector\n* vavpp: csc with AYUV format\n* vavpp: requires BGRA frame when saving a BGRA file\n\nVersion 2.4.0 - 1.Feb.2019\n* fix make dist issue caused by decode streamout sample\n* add VP sample for Blending.\n* add VP seperate sample for scaling,csc,sharpness,denoise,chromasitting.\n\nVersion 2.3.0 - 30.Sep.2018\n* add HEVC encode sample code\n* Add sample code for avc decode streamout\n* Add VP8 sample encoder application (SVCT supported)\n\nVersion 2.2.0 - DD.Jul.2018\n* Bump version to 2.2.0\n* Add meson build\n* Add vainfo support in Android\n* Remove driver specific test cases\n\nVersion 2.1.0 - 12.Feb.2018\n* Bump version to 2.1.0\n* Refine gtest conformance cases\n* vp9enc: add support low power mode\n* vavpp: add support for RGBA/RGBX surface\n* vainfo: add support new profile/entrypoint pairs\n\nVersion 2.0.0 - 21.Oct.2017\n* Bump version to 2.0.0\n* Add option '--device <device>' to vainfo\n* Add vp9enc for VP9 encoding\n* Add vavpp for video processing\n* Add FEI gtest cases\n* Fix segmentation fault in putsurface_wayland\n* Fix GCC 7.1.1 warnings/errors\n* Fix libva version printed out by vainfo\n\nVersion 1.8.3 - 28.Jun.2017\n* Bump version to 1.8.3\n* Switch AC_PROG_LIBTOOL to LT_INIT\n* putsurface: include wayland-client.h instead of wayland-server.h\n* avcenc: add AUD NAL unit at the beginning of pic\n* avcenc: enable direct_spatial_mv_pred_flag for B frame\n* avcenc: add the frame number as the command line input parameter\n\nVersion 1.8.2 - 22.May.2017\n* Bump version to 1.8.2\n\nVersion 1.8.1 - 10.Apr.2017\n* Bump version to 1.8.1\n\nVersion 1.8.0 - 31.Mar.2017\n* First release of libva-utils as a separate project\n* Follows libva release versioning\n* Contains all the utilities and tests for libva API\n* dynamically links to libva\n* building system clean ups\n* test suite included using GoogleTestFramework\n"
  },
  {
    "path": "README.md",
    "content": "[![Stories in Ready](https://badge.waffle.io/intel/libva-utils.png?label=ready&title=Ready)](http://waffle.io/intel/libva-utils)\n[![Build Status](https://travis-ci.org/intel/libva-utils.svg?branch=master)](https://travis-ci.org/intel/libva-utils)\n[![Coverity Scan Build Status](https://scan.coverity.com/projects/11613/badge.svg)](https://scan.coverity.com/projects/intel-libva-utils)\n\n# Libva-utils Project\n\nlibva-utils is a collection of utilities and examples to exercise VA-API in accordance with the libva project. --enable-tests (default = no) provides a suite of unit-tests based on Google Test Framework. A driver implementation is necessary to properly operate.\n\nVA-API is an open-source library and API specification, which provides access to graphics hardware acceleration capabilities\nfor video processing. It consists of a main library and driver-specific acceleration backends for each supported hardware vendor.\n\nIf you would like to contribute to libva, check our [Contributing guide](https://github.com/intel/libva-utils/blob/master/CONTRIBUTING.md).\n\nWe also recommend taking a look at the ['janitorial' bugs](https://github.com/intel/libva-utils/issues?q=is%3Aopen+is%3Aissue+label%3AJanitorial) in our list of open issues as these bugs can be solved without an extensive knowledge of libva-utils.\n\nWe would love to help you start contributing!\n\nThe libva-utils development team can be reached via github issues.\n\n# Build and Install Libva-utils\n\n### Install Libva\nYou could refer to https://github.com/intel/libva to install Libva\n\n### Build Libva-utils\nTake latest libva-utils version:\n```\ngit clone https://github.com/intel/libva-utils.git\ncd libva-utils\n```\n\nBuild libva-utils by autogen. You could add ```--enable-tests``` to run unit test\n```\n./autogen.sh or ./autogen.sh --enable-tests\nmake\nsudo make install\n```\n\nor build using Meson\n```\nmkdir build\ncd build\nmeson .. or meson .. -Dtests=true\nninja\nsudo ninja install\n```\n\n\n### Validate your environment\nYou could run ```vainfo``` to check your media stack environment is correct or not as below.\n```\nsys@KBL:~/github/libva-utils$ vainfo\nTrying display: drm\nlibva info: VA-API version 1.14.0\nlibva info: Trying to open /usr/lib/x86_64-linux-gnu/dri/iHD_drv_video.so\nlibva info: Found init function __vaDriverInit_1_14\nlibva info: va_openDriver() returns 0\nvainfo: VA-API version: 1.18 (libva 2.18.0.pre1)\nvainfo: Driver version: Intel iHD driver for Intel(R) Gen Graphics - 22.3.1 ()\nvainfo: Supported profile and entrypoints\n      VAProfileMPEG2Simple            : VAEntrypointVLD\n      VAProfileMPEG2Main              : VAEntrypointVLD\n      VAProfileH264Main               : VAEntrypointVLD\n      VAProfileH264Main               : VAEntrypointEncSliceLP\n      VAProfileH264High               : VAEntrypointVLD\n      VAProfileH264High               : VAEntrypointEncSliceLP\n      VAProfileJPEGBaseline           : VAEntrypointVLD\n      VAProfileJPEGBaseline           : VAEntrypointEncPicture\n      VAProfileH264ConstrainedBaseline: VAEntrypointVLD\n      VAProfileH264ConstrainedBaseline: VAEntrypointEncSliceLP\n      VAProfileVP8Version0_3          : VAEntrypointVLD\n      VAProfileHEVCMain               : VAEntrypointVLD\n      VAProfileHEVCMain10             : VAEntrypointVLD\n      VAProfileVP9Profile0            : VAEntrypointVLD\n      VAProfileVP9Profile2            : VAEntrypointVLD\n      ...\n```\n"
  },
  {
    "path": "autogen.sh",
    "content": "#!/bin/sh\n# Copyright (c) 2007 Intel Corporation. All Rights Reserved.\n#\n# Permission is hereby granted, free of charge, to any person obtaining a\n# copy of this software and associated documentation files (the\n# \"Software\"), to deal in the Software without restriction, including\n# without limitation the rights to use, copy, modify, merge, publish,\n# distribute, sub license, and/or sell copies of the Software, and to\n# permit persons to whom the Software is furnished to do so, subject to\n# the following conditions:\n# \n# The above copyright notice and this permission notice (including the\n# next paragraph) shall be included in all copies or substantial portions\n# of the Software.\n# \n# THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n# IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR\n# ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\nPROJECT=\"libva-utils\"\n\ntest -n \"$srcdir\" || srcdir=\"`dirname \\\"$0\\\"`\"\ntest -n \"$srcdir\" || srcdir=.\n\nif ! test -f \"$srcdir/configure.ac\"; then\n    echo \"Failed to find the top-level $PROJECT directory\"\n    exit 1\nfi\n\nolddir=\"`pwd`\"\ncd \"$srcdir\"\n\nmkdir -p m4\n\nAUTORECONF=`which autoreconf`\nif test -z $AUTORECONF; then\n    echo \"*** No autoreconf found ***\"\n    exit 1\nelse\n    autoreconf -v --install || exit $?\nfi\n\ncd \"$olddir\"\n\nif test -z \"$NOCONFIGURE\"; then\n    $srcdir/configure \"$@\" && echo \"Now type 'make' to compile $PROJECT.\"\nfi\n"
  },
  {
    "path": "common/Makefile.am",
    "content": "# Copyright (c) 2012 Intel Corporation. All Rights Reserved.\n#\n# Permission is hereby granted, free of charge, to any person obtaining a\n# copy of this software and associated documentation files (the\n# \"Software\"), to deal in the Software without restriction, including\n# without limitation the rights to use, copy, modify, merge, publish,\n# distribute, sub license, and/or sell copies of the Software, and to\n# permit persons to whom the Software is furnished to do so, subject to\n# the following conditions:\n# \n# The above copyright notice and this permission notice (including the\n# next paragraph) shall be included in all copies or substantial portions\n# of the Software.\n# \n# THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n# IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR\n# ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\nnoinst_LTLIBRARIES = libva-display.la\n\nlibva_display_cflags = \\\n\t$(LIBVA_CFLAGS)\t\\\n\t$(NULL)\n\nlibva_display_libs = \\\n\t$(LIBVA_LDFLAGS) \\\n\t$(NULL)\n\nsource_c\t\t= va_display.c\nsource_h\t\t= va_display.h loadsurface.h loadsurface_yuv.h\n\nif USE_X11\nsource_c\t\t+= va_display_x11.c\nlibva_display_cflags\t+= $(X11_CFLAGS) $(LIBVA_X11_CFLAGS)\nlibva_display_libs\t+= $(X11_LIBS) $(LIBVA_X11_LIBS)\nendif\n\nif USE_DRM\nsource_c\t\t+= va_display_drm.c\nlibva_display_cflags\t+= $(LIBVA_DRM_CFLAGS)\nlibva_display_libs\t+= $(LIBVA_DRM_LIBS)\nendif\n\nif USE_WAYLAND\nsource_c\t\t+= va_display_wayland.c\nlibva_display_cflags\t+= $(WAYLAND_CFLAGS) $(LIBVA_WAYLAND_CFLAGS)\nlibva_display_libs\t+= $(WAYLAND_LIBS) $(LIBVA_WAYLAND_LIBS)\nendif\n\nlibva_display_la_SOURCES= $(source_c)\nnoinst_HEADERS\t\t= $(source_h)\nlibva_display_la_CFLAGS\t= $(libva_display_cflags)\nlibva_display_la_LIBADD\t= $(libva_display_libs)\n\n# Extra clean files so that maintainer-clean removes *everything*\nMAINTAINERCLEANFILES = Makefile.in\n\nEXTRA_DIST = \\\n\tloadsurface.h\t\t\\\n\tloadsurface_yuv.h\t\\\n\t$(NULL)\n"
  },
  {
    "path": "common/loadsurface.h",
    "content": "/*\n * Copyright (c) 2008-2009 Intel Corporation. All Rights Reserved.\n *\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the\n * \"Software\"), to deal in the Software without restriction, including\n * without limitation the rights to use, copy, modify, merge, publish,\n * distribute, sub license, and/or sell copies of the Software, and to\n * permit persons to whom the Software is furnished to do so, subject to\n * the following conditions:\n *\n * The above copyright notice and this permission notice (including the\n * next paragraph) shall be included in all copies or substantial portions\n * of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR\n * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n#include \"loadsurface_yuv.h\"\n\nstatic int scale_2dimage(unsigned char *src_img, int src_imgw, int src_imgh,\n                         unsigned char *dst_img, int dst_imgw, int dst_imgh)\n{\n    int row = 0, col = 0;\n\n    for (row = 0; row < dst_imgh; row++) {\n        for (col = 0; col < dst_imgw; col++) {\n            *(dst_img + row * dst_imgw + col) = *(src_img + (row * src_imgh / dst_imgh) * src_imgw + col * src_imgw / dst_imgw);\n        }\n    }\n\n    return 0;\n}\n\n\nstatic int YUV_blend_with_pic(int width, int height,\n                              unsigned char *Y_start, int Y_pitch,\n                              unsigned char *U_start, int U_pitch,\n                              unsigned char *V_start, int V_pitch,\n                              unsigned int fourcc, int fixed_alpha)\n{\n    /* PIC YUV format */\n    unsigned char *pic_y_old = yuvga_pic;\n    unsigned char *pic_u_old = pic_y_old + 640 * 480;\n    unsigned char *pic_v_old = pic_u_old + 640 * 480 / 4;\n    unsigned char *pic_y, *pic_u, *pic_v;\n\n    int alpha_values[] = {100, 90, 80, 70, 60, 50, 40, 30, 20, 30, 40, 50, 60, 70, 80, 90};\n\n    static int alpha_idx = 0;\n    int alpha;\n    int allocated = 0;\n\n    int row, col;\n\n    if (fixed_alpha == 0) {\n        alpha = alpha_values[alpha_idx % 16 ];\n        alpha_idx ++;\n    } else\n        alpha = fixed_alpha;\n\n    //alpha = 0;\n\n    pic_y = pic_y_old;\n    pic_u = pic_u_old;\n    pic_v = pic_v_old;\n\n    if (width != 640 || height != 480) { /* need to scale the pic */\n        pic_y = (unsigned char *)malloc(width * height);\n        if (pic_y == NULL) {\n            printf(\"Failed to allocate memory for pic_y\\n\");\n            return -1;\n        }\n\n        pic_u = (unsigned char *)malloc(width * height / 4);\n        if (pic_u == NULL) {\n            printf(\"Failed to allocate memory for pic_u\\n\");\n            free(pic_y);\n            return -1;\n        }\n\n        pic_v = (unsigned char *)malloc(width * height / 4);\n        if (pic_v == NULL) {\n            printf(\"Failed to allocate memory for pic_v\\n\");\n            free(pic_y);\n            free(pic_u);\n            return -1;\n        }\n        allocated = 1;\n\n        memset(pic_y, 0, width * height);\n        memset(pic_u, 0, width * height / 4);\n        memset(pic_v, 0, width * height / 4);\n\n        scale_2dimage(pic_y_old, 640, 480,\n                      pic_y, width, height);\n        scale_2dimage(pic_u_old, 320, 240,\n                      pic_u, width / 2, height / 2);\n        scale_2dimage(pic_v_old, 320, 240,\n                      pic_v, width / 2, height / 2);\n    }\n\n    /* begin blend */\n\n    /* Y plane */\n    int Y_pixel_stride = 1;\n    if (fourcc == VA_FOURCC_YUY2)\n        Y_pixel_stride = 2;\n\n    for (row = 0; row < height; row++) {\n        unsigned char *p = Y_start + row * Y_pitch;\n        unsigned char *q = pic_y + row * width;\n        for (col = 0; col < width; col++, q++) {\n            *p  = *p * (100 - alpha) / 100 + *q * alpha / 100;\n            p += Y_pixel_stride;\n        }\n    }\n\n    /* U/V plane */\n    int U_pixel_stride = 0, V_pixel_stride = 0;\n    int v_factor_to_nv12 = 1;\n    switch (fourcc) {\n    case VA_FOURCC_YV12:\n        U_pixel_stride = V_pixel_stride = 1;\n        break;\n    case VA_FOURCC_NV12:\n        U_pixel_stride = V_pixel_stride = 2;\n        break;\n    case VA_FOURCC_YUY2:\n        U_pixel_stride = V_pixel_stride = 4;\n        v_factor_to_nv12 = 2;\n        break;\n    default:\n        break;\n    }\n    for (row = 0; row < height / 2 * v_factor_to_nv12; row++) {\n        unsigned char *pU = U_start + row * U_pitch;\n        unsigned char *pV = V_start + row * V_pitch;\n        unsigned char *qU = pic_u + row / v_factor_to_nv12 * width / 2;\n        unsigned char *qV = pic_v + row / v_factor_to_nv12 * width / 2;\n\n        for (col = 0; col < width / 2; col++, qU++, qV++) {\n            *pU  = *pU * (100 - alpha) / 100 + *qU * alpha / 100;\n            *pV  = *pV * (100 - alpha) / 100 + *qV * alpha / 100;\n\n            pU += U_pixel_stride;\n            pV += V_pixel_stride;\n        }\n    }\n\n    if (allocated) {\n        free(pic_y);\n        free(pic_u);\n        free(pic_v);\n    }\n\n    return 0;\n}\n\nstatic int yuvgen_planar(int width, int height,\n                         unsigned char *Y_start, int Y_pitch,\n                         unsigned char *U_start, int U_pitch,\n                         unsigned char *V_start, int V_pitch,\n                         unsigned int fourcc, int box_width, int row_shift,\n                         int field)\n{\n    int row, alpha;\n    unsigned char uv_value = 0x80;\n\n    /* copy Y plane */\n    int y_factor = 1;\n    if (fourcc == VA_FOURCC_YUY2) y_factor = 2;\n    for (row = 0; row < height; row++) {\n        unsigned char *Y_row = Y_start + row * Y_pitch;\n        int jj, xpos, ypos;\n\n        ypos = (row / box_width) & 0x1;\n\n        /* fill garbage data into the other field */\n        if (((field == VA_TOP_FIELD) && (row & 1))\n            || ((field == VA_BOTTOM_FIELD) && ((row & 1) == 0))) {\n            memset(Y_row, 0xff, width);\n            continue;\n        }\n\n        for (jj = 0; jj < width; jj++) {\n            xpos = ((row_shift + jj) / box_width) & 0x1;\n            if (xpos == ypos)\n                Y_row[jj * y_factor] = 0xeb;\n            else\n                Y_row[jj * y_factor] = 0x10;\n\n            if (fourcc == VA_FOURCC_YUY2) {\n                Y_row[jj * y_factor + 1] = uv_value; // it is for UV\n            }\n        }\n    }\n\n    /* copy UV data */\n    for (row = 0; row < height / 2; row++) {\n\n        /* fill garbage data into the other field */\n        if (((field == VA_TOP_FIELD) && (row & 1))\n            || ((field == VA_BOTTOM_FIELD) && ((row & 1) == 0))) {\n            uv_value = 0xff;\n        }\n\n        unsigned char *U_row = U_start + row * U_pitch;\n        unsigned char *V_row = V_start + row * V_pitch;\n        switch (fourcc) {\n        case VA_FOURCC_NV12:\n            memset(U_row, uv_value, width);\n            break;\n        case VA_FOURCC_YV12:\n            memset(U_row, uv_value, width / 2);\n            memset(V_row, uv_value, width / 2);\n            break;\n        case VA_FOURCC_YUY2:\n            // see above. it is set with Y update.\n            break;\n        default:\n            printf(\"unsupported fourcc in loadsurface.h\\n\");\n            assert(0);\n        }\n    }\n\n    if (getenv(\"AUTO_NOUV\"))\n        return 0;\n\n    if (getenv(\"AUTO_ALPHA\"))\n        alpha = 0;\n    else\n        alpha = 70;\n\n    YUV_blend_with_pic(width, height,\n                       Y_start, Y_pitch,\n                       U_start, U_pitch,\n                       V_start, V_pitch,\n                       fourcc, alpha);\n\n    return 0;\n}\n\nstatic int upload_surface(VADisplay va_dpy, VASurfaceID surface_id,\n                          int box_width, int row_shift,\n                          int field)\n{\n    VAImage surface_image;\n    void *surface_p = NULL, *U_start = NULL, *V_start = NULL;\n    VAStatus va_status;\n    unsigned int pitches[3] = {0, 0, 0};\n\n    va_status = vaDeriveImage(va_dpy, surface_id, &surface_image);\n    CHECK_VASTATUS(va_status, \"vaDeriveImage\");\n\n    vaMapBuffer(va_dpy, surface_image.buf, &surface_p);\n    assert(VA_STATUS_SUCCESS == va_status);\n\n    pitches[0] = surface_image.pitches[0];\n    switch (surface_image.format.fourcc) {\n    case VA_FOURCC_NV12:\n        U_start = (char *)surface_p + surface_image.offsets[1];\n        V_start = (char *)U_start + 1;\n        pitches[1] = surface_image.pitches[1];\n        pitches[2] = surface_image.pitches[1];\n        break;\n    case VA_FOURCC_IYUV:\n        U_start = (char *)surface_p + surface_image.offsets[1];\n        V_start = (char *)surface_p + surface_image.offsets[2];\n        pitches[1] = surface_image.pitches[1];\n        pitches[2] = surface_image.pitches[2];\n        break;\n    case VA_FOURCC_YV12:\n        U_start = (char *)surface_p + surface_image.offsets[2];\n        V_start = (char *)surface_p + surface_image.offsets[1];\n        pitches[1] = surface_image.pitches[2];\n        pitches[2] = surface_image.pitches[1];\n        break;\n    case VA_FOURCC_YUY2:\n        U_start = (char *)surface_p + 1;\n        V_start = (char *)surface_p + 3;\n        pitches[1] = surface_image.pitches[0];\n        pitches[2] = surface_image.pitches[0];\n        break;\n    default:\n        assert(0);\n    }\n\n    /* assume surface is planar format */\n    yuvgen_planar(surface_image.width, surface_image.height,\n                  (unsigned char *)surface_p, pitches[0],\n                  (unsigned char *)U_start, pitches[1],\n                  (unsigned char *)V_start, pitches[2],\n                  surface_image.format.fourcc,\n                  box_width, row_shift, field);\n\n    vaUnmapBuffer(va_dpy, surface_image.buf);\n\n    vaDestroyImage(va_dpy, surface_image.image_id);\n\n    return 0;\n}\n\n#ifdef LIBVA_UTILS_UPLOAD_DOWNLOAD_YUV_SURFACE\n\n/*\n * Upload YUV data from memory into a surface\n * if src_fourcc == NV12, assume the buffer pointed by src_U\n * is UV interleaved (src_V is ignored)\n */\nstatic int upload_surface_yuv(VADisplay va_dpy, VASurfaceID surface_id,\n                              int src_fourcc, int src_width, int src_height,\n                              unsigned char *src_Y, unsigned char *src_U, unsigned char *src_V)\n{\n    VAImage surface_image;\n    unsigned char *surface_p = NULL, *Y_start = NULL, *U_start = NULL;\n    int Y_pitch = 0, U_pitch = 0, row;\n    VAStatus va_status;\n\n    va_status = vaDeriveImage(va_dpy, surface_id, &surface_image);\n    CHECK_VASTATUS(va_status, \"vaDeriveImage\");\n\n    vaMapBuffer(va_dpy, surface_image.buf, (void **)&surface_p);\n    assert(VA_STATUS_SUCCESS == va_status);\n\n    Y_start = surface_p;\n    Y_pitch = surface_image.pitches[0];\n    switch (surface_image.format.fourcc) {\n    case VA_FOURCC_NV12:\n        U_start = (unsigned char *)surface_p + surface_image.offsets[1];\n        U_pitch = surface_image.pitches[1];\n        break;\n    case VA_FOURCC_IYUV:\n        U_start = (unsigned char *)surface_p + surface_image.offsets[1];\n        U_pitch = surface_image.pitches[1];\n        break;\n    case VA_FOURCC_YV12:\n        U_start = (unsigned char *)surface_p + surface_image.offsets[2];\n        U_pitch = surface_image.pitches[2];\n        break;\n    case VA_FOURCC_YUY2:\n        U_start = surface_p + 1;\n        U_pitch = surface_image.pitches[0];\n        break;\n    default:\n        assert(0);\n    }\n\n    /* copy Y plane */\n    for (row = 0; row < src_height; row++) {\n        unsigned char *Y_row = Y_start + row * Y_pitch;\n        memcpy(Y_row, src_Y + row * src_width, src_width);\n    }\n\n    for (row = 0; row < src_height / 2; row++) {\n        unsigned char *U_row = U_start + row * U_pitch;\n        unsigned char *u_ptr = NULL, *v_ptr = NULL;\n        int j;\n        switch (surface_image.format.fourcc) {\n        case VA_FOURCC_NV12:\n            if (src_fourcc == VA_FOURCC_NV12) {\n                memcpy(U_row, src_U + row * src_width, src_width);\n                break;\n            } else if (src_fourcc == VA_FOURCC_IYUV) {\n                u_ptr = src_U + row * (src_width / 2);\n                v_ptr = src_V + row * (src_width / 2);\n            } else if (src_fourcc == VA_FOURCC_YV12) {\n                v_ptr = src_U + row * (src_width / 2);\n                u_ptr = src_V + row * (src_width / 2);\n            }\n            if ((src_fourcc == VA_FOURCC_IYUV) ||\n                (src_fourcc == VA_FOURCC_YV12)) {\n                for (j = 0; j < src_width / 2; j++) {\n                    U_row[2 * j] = u_ptr[j];\n                    U_row[2 * j + 1] = v_ptr[j];\n                }\n            }\n            break;\n        case VA_FOURCC_IYUV:\n        case VA_FOURCC_YV12:\n        case VA_FOURCC_YUY2:\n        default:\n            printf(\"unsupported fourcc in load_surface_yuv\\n\");\n            assert(0);\n        }\n    }\n\n    vaUnmapBuffer(va_dpy, surface_image.buf);\n\n    vaDestroyImage(va_dpy, surface_image.image_id);\n\n    return 0;\n}\n\n/*\n * Download YUV data from a surface into memory\n * Some hardward doesn't have a aperture for linear access of\n * tiled surface, thus use vaGetImage to expect the implemnetion\n * to do tile to linear convert\n *\n * if dst_fourcc == NV12, assume the buffer pointed by dst_U\n * is UV interleaved (src_V is ignored)\n */\nstatic int download_surface_yuv(VADisplay va_dpy, VASurfaceID surface_id,\n                                int dst_fourcc, int dst_width, int dst_height,\n                                unsigned char *dst_Y, unsigned char *dst_U, unsigned char *dst_V)\n{\n    VAImage surface_image;\n    unsigned char *surface_p = NULL, *Y_start = NULL, *U_start = NULL;\n    int Y_pitch = 0, U_pitch = 0, row;\n    VAStatus va_status;\n\n    va_status = vaDeriveImage(va_dpy, surface_id, &surface_image);\n    CHECK_VASTATUS(va_status, \"vaDeriveImage\");\n\n    vaMapBuffer(va_dpy, surface_image.buf, (void **)&surface_p);\n    assert(VA_STATUS_SUCCESS == va_status);\n\n    Y_start = surface_p;\n    Y_pitch = surface_image.pitches[0];\n    switch (surface_image.format.fourcc) {\n    case VA_FOURCC_NV12:\n        U_start = (unsigned char *)surface_p + surface_image.offsets[1];\n        U_pitch = surface_image.pitches[1];\n        break;\n    case VA_FOURCC_IYUV:\n        U_start = (unsigned char *)surface_p + surface_image.offsets[1];\n        U_pitch = surface_image.pitches[1];\n        break;\n    case VA_FOURCC_YV12:\n        U_start = (unsigned char *)surface_p + surface_image.offsets[2];\n        U_pitch = surface_image.pitches[2];\n        break;\n    case VA_FOURCC_YUY2:\n        U_start = surface_p + 1;\n        U_pitch = surface_image.pitches[0];\n        break;\n    default:\n        assert(0);\n    }\n\n    /* copy Y plane */\n    for (row = 0; row < dst_height; row++) {\n        unsigned char *Y_row = Y_start + row * Y_pitch;\n        memcpy(dst_Y + row * dst_width, Y_row, dst_width);\n    }\n\n    for (row = 0; row < dst_height / 2; row++) {\n        unsigned char *U_row = U_start + row * U_pitch;\n        unsigned char *u_ptr = NULL, *v_ptr = NULL;\n        int j;\n        switch (surface_image.format.fourcc) {\n        case VA_FOURCC_NV12:\n            if (dst_fourcc == VA_FOURCC_NV12) {\n                memcpy(dst_U + row * dst_width, U_row, dst_width);\n                break;\n            } else if (dst_fourcc == VA_FOURCC_IYUV) {\n                u_ptr = dst_U + row * (dst_width / 2);\n                v_ptr = dst_V + row * (dst_width / 2);\n            } else if (dst_fourcc == VA_FOURCC_YV12) {\n                v_ptr = dst_U + row * (dst_width / 2);\n                u_ptr = dst_V + row * (dst_width / 2);\n            }\n            if ((dst_fourcc == VA_FOURCC_IYUV) ||\n                (dst_fourcc == VA_FOURCC_YV12)) {\n                for (j = 0; j < dst_width / 2; j++) {\n                    u_ptr[j] = U_row[2 * j];\n                    v_ptr[j] = U_row[2 * j + 1];\n                }\n            }\n            break;\n        case VA_FOURCC_IYUV:\n        case VA_FOURCC_YV12:\n        case VA_FOURCC_YUY2:\n        default:\n            printf(\"unsupported fourcc in load_surface_yuv\\n\");\n            assert(0);\n        }\n    }\n\n    vaUnmapBuffer(va_dpy, surface_image.buf);\n\n    vaDestroyImage(va_dpy, surface_image.image_id);\n\n    return 0;\n}\n\n#endif /* LIBVA_UTILS_UPLOAD_DOWNLOAD_YUV_SURFACE */\n"
  },
  {
    "path": "common/loadsurface_yuv.h",
    "content": "/*\n * Copyright (c) 2008-2009 Intel Corporation. All Rights Reserved.\n *\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the\n * \"Software\"), to deal in the Software without restriction, including\n * without limitation the rights to use, copy, modify, merge, publish,\n * distribute, sub license, and/or sell copies of the Software, and to\n * permit persons to whom the Software is furnished to do so, subject to\n * the following conditions:\n *\n * The above copyright notice and this permission notice (including the\n * next paragraph) shall be included in all copies or substantial portions\n * of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR\n * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n#ifndef _YUVGA_H\n#define _YUVGA_H\n\nstatic unsigned char yuvga_pic[] = {\n    0x59, 0x59, 0x58, 0x59, 0x5a, 0x59, 0x58, 0x56, 0x4c, 0x4c, 0x4c, 0x4e, 0x54, 0x57, 0x54, 0x4f,\n    0x42, 0x42, 0x44, 0x47, 0x4a, 0x4d, 0x53, 0x59, 0x56, 0x57, 0x4f, 0x3e, 0x30, 0x31, 0x3c, 0x47,\n    0x4d, 0x58, 0x60, 0x5e, 0x58, 0x55, 0x55, 0x55, 0x4f, 0x4d, 0x4f, 0x58, 0x61, 0x60, 0x5a, 0x54,\n    0x42, 0x4a, 0x4c, 0x46, 0x3f, 0x3d, 0x3c, 0x3a, 0x39, 0x37, 0x37, 0x3c, 0x3f, 0x3b, 0x36, 0x32,\n    0x3a, 0x30, 0x33, 0x4a, 0x60, 0x62, 0x53, 0x46, 0x40, 0x3e, 0x40, 0x47, 0x49, 0x45, 0x40, 0x3f,\n    0x3f, 0x47, 0x49, 0x45, 0x4c, 0x64, 0x7c, 0x87, 0x81, 0x77, 0x61, 0x48, 0x3a, 0x3b, 0x3f, 0x3f,\n    0x44, 0x40, 0x3e, 0x3f, 0x3f, 0x3e, 0x41, 0x46, 0x4b, 0x53, 0x4a, 0x4c, 0x4d, 0x49, 0x4c, 0x3c,\n    0x3f, 0x3e, 0x43, 0x4c, 0x4b, 0x45, 0x46, 0x4e, 0x52, 0x56, 0x57, 0x54, 0x55, 0x5a, 0x58, 0x51,\n    0x50, 0x51, 0x51, 0x4d, 0x47, 0x43, 0x41, 0x42, 0x44, 0x48, 0x4a, 0x4b, 0x4d, 0x4d, 0x47, 0x3f,\n    0x32, 0x28, 0x22, 0x24, 0x25, 0x23, 0x24, 0x29, 0x2d, 0x32, 0x34, 0x32, 0x32, 0x37, 0x3c, 0x3e,\n    0x40, 0x40, 0x3b, 0x33, 0x2f, 0x33, 0x3c, 0x41, 0x4b, 0x58, 0x5e, 0x5c, 0x57, 0x4e, 0x4c, 0x52,\n    0x5f, 0x66, 0x74, 0x7b, 0x72, 0x60, 0x5b, 0x60, 0x63, 0x61, 0x5f, 0x65, 0x77, 0x86, 0x80, 0x71,\n    0x6d, 0x87, 0x98, 0x98, 0x98, 0x99, 0x98, 0x98, 0x9f, 0xa6, 0xb3, 0xd1, 0xd9, 0xee, 0xe0, 0xc8,\n    0x9c, 0x88, 0x85, 0x83, 0x82, 0x86, 0x82, 0x83, 0x7e, 0x7d, 0x7d, 0x82, 0x83, 0x7e, 0x86, 0x9b,\n    0xb4, 0xb4, 0x9a, 0x87, 0x81, 0x7f, 0x7f, 0x76, 0x71, 0x78, 0x7f, 0x7f, 0x78, 0x73, 0x72, 0x75,\n    0x75, 0x75, 0x76, 0x76, 0x7d, 0x8d, 0x93, 0x88, 0x80, 0x73, 0x66, 0x57, 0x45, 0x3e, 0x3f, 0x3e,\n    0x45, 0x46, 0x54, 0x66, 0x65, 0x50, 0x3f, 0x3b, 0x37, 0x42, 0x52, 0x5b, 0x5b, 0x59, 0x4e, 0x3b,\n    0x29, 0x2c, 0x27, 0x2a, 0x3e, 0x52, 0x57, 0x57, 0x63, 0x69, 0x68, 0x56, 0x50, 0x6a, 0x77, 0x65,\n    0x5a, 0x5f, 0x69, 0x6d, 0x67, 0x64, 0x64, 0x5f, 0x5b, 0x67, 0x74, 0x7d, 0x86, 0x8b, 0x86, 0x7d,\n    0x6d, 0x60, 0x69, 0x80, 0x86, 0x80, 0x85, 0x8e, 0x87, 0x7c, 0x69, 0x6b, 0x62, 0x69, 0x63, 0x68,\n    0x69, 0x6c, 0x6f, 0x6f, 0x6c, 0x67, 0x63, 0x61, 0x59, 0x53, 0x51, 0x41, 0x40, 0x46, 0x3e, 0x4a,\n    0x50, 0x57, 0x53, 0x46, 0x41, 0x49, 0x51, 0x51, 0x53, 0x4c, 0x43, 0x3c, 0x38, 0x35, 0x32, 0x2f,\n    0x32, 0x34, 0x36, 0x36, 0x33, 0x31, 0x32, 0x33, 0x30, 0x2c, 0x27, 0x25, 0x26, 0x28, 0x2a, 0x2b,\n    0x2d, 0x28, 0x2e, 0x32, 0x2d, 0x34, 0x3e, 0x3c, 0x3b, 0x35, 0x30, 0x36, 0x42, 0x49, 0x46, 0x41,\n    0x39, 0x3f, 0x37, 0x3a, 0x40, 0x4b, 0x5c, 0x99, 0xcc, 0xdf, 0xd2, 0x9a, 0x69, 0x74, 0x69, 0x56,\n    0x49, 0x42, 0x41, 0x49, 0x49, 0x42, 0x51, 0x6f, 0x97, 0xa4, 0x95, 0x7a, 0x79, 0x81, 0x7d, 0x77,\n    0x7a, 0x7e, 0x80, 0x7d, 0x7b, 0x7a, 0x76, 0x71, 0x75, 0x83, 0x9a, 0xb0, 0xc0, 0xc6, 0xc5, 0xc2,\n    0xc9, 0xc6, 0xb3, 0x94, 0x81, 0x80, 0x7e, 0x77, 0x7a, 0x79, 0x76, 0x75, 0x77, 0x78, 0x76, 0x71,\n    0x6c, 0x6f, 0x72, 0x71, 0x6d, 0x6b, 0x73, 0x7d, 0x74, 0x6d, 0x61, 0x58, 0x56, 0x57, 0x54, 0x4d,\n    0x4c, 0x50, 0x53, 0x4e, 0x4b, 0x68, 0x9b, 0xbf, 0xc2, 0x9c, 0x78, 0x6d, 0x6a, 0x64, 0x67, 0x71,\n    0x75, 0x77, 0x79, 0x7b, 0x7b, 0x79, 0x77, 0x75, 0x72, 0x74, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78,\n    0x77, 0x77, 0x77, 0x78, 0x81, 0x92, 0xa4, 0xae, 0x9e, 0x94, 0x86, 0x77, 0x66, 0x5a, 0x58, 0x5c,\n    0x5f, 0x8e, 0xc0, 0xd5, 0xd6, 0xd6, 0xda, 0xdc, 0xcf, 0xb7, 0x76, 0x54, 0x50, 0x57, 0x8b, 0xc1,\n    0xda, 0xd5, 0xce, 0xc8, 0xb5, 0x92, 0x7b, 0x7b, 0x7a, 0x77, 0x82, 0x91, 0x92, 0x94, 0xa7, 0xbb,\n    0xcd, 0xcc, 0xb0, 0x71, 0x44, 0x4a, 0x54, 0x45, 0x35, 0x2c, 0x23, 0x20, 0x20, 0x1e, 0x1d, 0x1d,\n    0x20, 0x1f, 0x16, 0x13, 0x1e, 0x27, 0x28, 0x29, 0x36, 0x32, 0x30, 0x2f, 0x26, 0x1a, 0x15, 0x17,\n    0x1a, 0x1e, 0x25, 0x2c, 0x33, 0x33, 0x29, 0x1d, 0x1c, 0x1e, 0x24, 0x2e, 0x38, 0x3c, 0x3c, 0x3a,\n    0x2f, 0x23, 0x1f, 0x28, 0x30, 0x31, 0x36, 0x40, 0x48, 0x3a, 0x42, 0x69, 0x8b, 0x91, 0x8c, 0x8a,\n    0x86, 0x86, 0x84, 0x82, 0x81, 0x80, 0x7b, 0x76, 0x65, 0x71, 0x7b, 0x75, 0x5e, 0x4f, 0x54, 0x63,\n    0x6b, 0x74, 0x7e, 0x86, 0x81, 0x6d, 0x5f, 0x63, 0x6e, 0x68, 0x5c, 0x4e, 0x48, 0x51, 0x65, 0x76,\n    0x59, 0x59, 0x59, 0x5a, 0x5b, 0x5b, 0x59, 0x57, 0x52, 0x52, 0x51, 0x52, 0x55, 0x57, 0x52, 0x4c,\n    0x41, 0x3f, 0x41, 0x45, 0x49, 0x4b, 0x4f, 0x53, 0x4f, 0x4d, 0x45, 0x39, 0x31, 0x33, 0x39, 0x3d,\n    0x39, 0x45, 0x52, 0x57, 0x58, 0x57, 0x53, 0x4f, 0x47, 0x44, 0x44, 0x48, 0x4b, 0x49, 0x45, 0x43,\n    0x4d, 0x52, 0x51, 0x47, 0x3d, 0x3a, 0x3a, 0x39, 0x35, 0x34, 0x35, 0x3a, 0x3d, 0x39, 0x34, 0x31,\n    0x30, 0x30, 0x31, 0x35, 0x3c, 0x40, 0x3e, 0x39, 0x3d, 0x3b, 0x39, 0x37, 0x37, 0x3b, 0x43, 0x4b,\n    0x4c, 0x50, 0x4d, 0x47, 0x50, 0x65, 0x71, 0x70, 0x78, 0x82, 0x76, 0x51, 0x35, 0x35, 0x40, 0x43,\n    0x45, 0x40, 0x3d, 0x3c, 0x3c, 0x3e, 0x43, 0x49, 0x4e, 0x55, 0x4b, 0x4b, 0x4c, 0x4d, 0x53, 0x49,\n    0x47, 0x49, 0x4e, 0x54, 0x53, 0x4e, 0x4d, 0x4f, 0x55, 0x5e, 0x64, 0x63, 0x60, 0x5d, 0x54, 0x4a,\n    0x4c, 0x4d, 0x4c, 0x49, 0x45, 0x42, 0x41, 0x42, 0x3b, 0x46, 0x50, 0x51, 0x4c, 0x47, 0x41, 0x3c,\n    0x2f, 0x26, 0x20, 0x22, 0x25, 0x24, 0x26, 0x2a, 0x2f, 0x2f, 0x31, 0x31, 0x2f, 0x30, 0x39, 0x44,\n    0x45, 0x45, 0x42, 0x3c, 0x3a, 0x3f, 0x46, 0x4a, 0x53, 0x5b, 0x5c, 0x59, 0x55, 0x4d, 0x46, 0x49,\n    0x56, 0x59, 0x62, 0x68, 0x64, 0x5b, 0x57, 0x5a, 0x5f, 0x5f, 0x5e, 0x61, 0x6c, 0x75, 0x72, 0x69,\n    0x69, 0x82, 0x9e, 0xb6, 0xc4, 0xc4, 0xc2, 0xc8, 0xc8, 0xc5, 0xc9, 0xdb, 0xdb, 0xea, 0xdf, 0xcd,\n    0x97, 0x84, 0x83, 0x83, 0x84, 0x89, 0x86, 0x87, 0x83, 0x82, 0x82, 0x86, 0x86, 0x80, 0x87, 0x9a,\n    0xbb, 0xba, 0xa0, 0x8c, 0x86, 0x81, 0x80, 0x78, 0x79, 0x81, 0x88, 0x8a, 0x84, 0x7e, 0x7c, 0x7c,\n    0x80, 0x7e, 0x7d, 0x7c, 0x84, 0x96, 0x9c, 0x92, 0x7c, 0x6c, 0x5f, 0x55, 0x4c, 0x49, 0x47, 0x41,\n    0x43, 0x46, 0x57, 0x6b, 0x69, 0x51, 0x3a, 0x32, 0x46, 0x58, 0x60, 0x5c, 0x58, 0x54, 0x45, 0x32,\n    0x29, 0x2b, 0x29, 0x2f, 0x45, 0x59, 0x64, 0x6b, 0x6f, 0x72, 0x76, 0x6c, 0x5f, 0x65, 0x6f, 0x6a,\n    0x6a, 0x69, 0x6c, 0x6b, 0x68, 0x68, 0x69, 0x65, 0x67, 0x67, 0x6d, 0x7a, 0x85, 0x88, 0x82, 0x7b,\n    0x72, 0x64, 0x6a, 0x80, 0x86, 0x81, 0x81, 0x84, 0x89, 0x7c, 0x6b, 0x69, 0x66, 0x68, 0x65, 0x68,\n    0x68, 0x6a, 0x6b, 0x6c, 0x69, 0x64, 0x5e, 0x5b, 0x5c, 0x58, 0x58, 0x48, 0x48, 0x42, 0x44, 0x4d,\n    0x4e, 0x51, 0x4e, 0x45, 0x40, 0x44, 0x48, 0x48, 0x49, 0x48, 0x47, 0x47, 0x45, 0x40, 0x38, 0x32,\n    0x32, 0x33, 0x35, 0x36, 0x37, 0x37, 0x36, 0x35, 0x33, 0x32, 0x31, 0x31, 0x32, 0x32, 0x30, 0x2f,\n    0x36, 0x32, 0x37, 0x3a, 0x34, 0x38, 0x3f, 0x3c, 0x37, 0x33, 0x31, 0x36, 0x3e, 0x44, 0x44, 0x42,\n    0x3d, 0x3e, 0x36, 0x3b, 0x44, 0x51, 0x65, 0xa4, 0xd4, 0xde, 0xca, 0x92, 0x61, 0x6f, 0x6c, 0x64,\n    0x54, 0x4b, 0x48, 0x4b, 0x4a, 0x4a, 0x52, 0x5e, 0x87, 0x96, 0x96, 0x85, 0x7c, 0x7c, 0x7e, 0x7f,\n    0x82, 0x84, 0x84, 0x82, 0x81, 0x81, 0x7e, 0x79, 0x80, 0x88, 0x94, 0x9e, 0xa4, 0xa3, 0x9f, 0x9b,\n    0x90, 0x91, 0x87, 0x77, 0x70, 0x74, 0x75, 0x72, 0x76, 0x78, 0x7a, 0x7b, 0x7d, 0x7e, 0x7b, 0x76,\n    0x7a, 0x7a, 0x7c, 0x7c, 0x7a, 0x77, 0x7a, 0x7f, 0x84, 0x83, 0x7f, 0x79, 0x73, 0x6e, 0x66, 0x5f,\n    0x5b, 0x57, 0x52, 0x49, 0x4a, 0x6c, 0xa1, 0xc3, 0xbb, 0x97, 0x74, 0x67, 0x65, 0x64, 0x68, 0x72,\n    0x72, 0x75, 0x79, 0x7b, 0x7b, 0x78, 0x73, 0x70, 0x6f, 0x72, 0x75, 0x77, 0x77, 0x77, 0x77, 0x78,\n    0x79, 0x78, 0x76, 0x77, 0x7c, 0x84, 0x87, 0x86, 0x82, 0x7b, 0x71, 0x67, 0x5d, 0x56, 0x56, 0x5a,\n    0x61, 0x8e, 0xbf, 0xd6, 0xd8, 0xd7, 0xd8, 0xd8, 0xde, 0xc1, 0x7d, 0x55, 0x4e, 0x5b, 0x93, 0xcc,\n    0xe1, 0xe2, 0xe4, 0xe0, 0xc5, 0x96, 0x7a, 0x7c, 0x86, 0x8b, 0x8e, 0x8d, 0x8c, 0x94, 0xad, 0xc6,\n    0xcf, 0xd2, 0xc0, 0x8e, 0x61, 0x51, 0x4c, 0x41, 0x35, 0x2d, 0x25, 0x23, 0x21, 0x1e, 0x1c, 0x1b,\n    0x1a, 0x18, 0x13, 0x13, 0x1a, 0x1c, 0x21, 0x2c, 0x36, 0x32, 0x2f, 0x2c, 0x23, 0x18, 0x15, 0x19,\n    0x1d, 0x26, 0x30, 0x33, 0x2a, 0x21, 0x23, 0x29, 0x12, 0x1e, 0x2b, 0x32, 0x37, 0x38, 0x30, 0x26,\n    0x1e, 0x1a, 0x1d, 0x26, 0x28, 0x25, 0x29, 0x32, 0x40, 0x6d, 0x86, 0x72, 0x5e, 0x67, 0x76, 0x78,\n    0x7c, 0x7e, 0x83, 0x89, 0x8c, 0x8c, 0x8a, 0x89, 0x8e, 0x7d, 0x6b, 0x65, 0x69, 0x71, 0x7a, 0x80,\n    0x96, 0x83, 0x6c, 0x5e, 0x4f, 0x38, 0x32, 0x3e, 0x2f, 0x3f, 0x55, 0x68, 0x75, 0x82, 0x8f, 0x99,\n    0x5a, 0x59, 0x5a, 0x5b, 0x5c, 0x5c, 0x5b, 0x5a, 0x58, 0x58, 0x57, 0x57, 0x57, 0x57, 0x51, 0x4a,\n    0x3d, 0x3c, 0x3f, 0x45, 0x49, 0x48, 0x45, 0x44, 0x44, 0x41, 0x3b, 0x36, 0x37, 0x3b, 0x3d, 0x3b,\n    0x3c, 0x3e, 0x41, 0x44, 0x4a, 0x50, 0x54, 0x54, 0x4b, 0x48, 0x46, 0x46, 0x44, 0x40, 0x3e, 0x3e,\n    0x47, 0x4e, 0x50, 0x47, 0x3d, 0x3a, 0x3a, 0x39, 0x38, 0x38, 0x3b, 0x3f, 0x3f, 0x3b, 0x35, 0x32,\n    0x30, 0x37, 0x38, 0x33, 0x33, 0x3b, 0x40, 0x40, 0x3c, 0x3b, 0x37, 0x32, 0x31, 0x36, 0x3c, 0x40,\n    0x41, 0x49, 0x4e, 0x4b, 0x48, 0x54, 0x6f, 0x86, 0xab, 0xbf, 0xb0, 0x73, 0x3d, 0x33, 0x3c, 0x40,\n    0x45, 0x42, 0x3e, 0x3c, 0x3a, 0x3a, 0x3d, 0x42, 0x4b, 0x51, 0x4b, 0x4c, 0x4f, 0x55, 0x61, 0x60,\n    0x67, 0x6b, 0x6c, 0x6a, 0x67, 0x64, 0x5f, 0x5b, 0x4f, 0x5b, 0x66, 0x67, 0x62, 0x5c, 0x54, 0x4d,\n    0x46, 0x49, 0x4b, 0x4c, 0x49, 0x46, 0x43, 0x41, 0x4a, 0x53, 0x5a, 0x58, 0x4e, 0x42, 0x38, 0x32,\n    0x2d, 0x27, 0x24, 0x27, 0x2a, 0x2b, 0x2d, 0x31, 0x34, 0x2f, 0x2f, 0x31, 0x2c, 0x29, 0x35, 0x47,\n    0x50, 0x4e, 0x49, 0x44, 0x46, 0x4f, 0x57, 0x5b, 0x5d, 0x60, 0x5d, 0x5a, 0x59, 0x52, 0x4a, 0x4a,\n    0x50, 0x4d, 0x4b, 0x4b, 0x4e, 0x52, 0x55, 0x56, 0x59, 0x5a, 0x5c, 0x5f, 0x62, 0x64, 0x64, 0x63,\n    0x61, 0x62, 0x69, 0x79, 0x84, 0x82, 0x89, 0x9b, 0xa6, 0xa8, 0xba, 0xd7, 0xdd, 0xe7, 0xdd, 0xcc,\n    0x99, 0x87, 0x86, 0x85, 0x84, 0x86, 0x81, 0x81, 0x80, 0x80, 0x80, 0x84, 0x86, 0x82, 0x89, 0x9b,\n    0xb8, 0xb7, 0x9e, 0x8c, 0x86, 0x82, 0x81, 0x7a, 0x77, 0x7c, 0x82, 0x82, 0x7e, 0x79, 0x77, 0x77,\n    0x77, 0x77, 0x79, 0x7c, 0x87, 0x9a, 0x9f, 0x93, 0x85, 0x70, 0x60, 0x5a, 0x5a, 0x5a, 0x51, 0x42,\n    0x46, 0x47, 0x50, 0x5a, 0x56, 0x43, 0x36, 0x34, 0x54, 0x6a, 0x6b, 0x5c, 0x59, 0x55, 0x43, 0x34,\n    0x2d, 0x2d, 0x2b, 0x31, 0x42, 0x50, 0x5d, 0x6c, 0x73, 0x72, 0x79, 0x77, 0x65, 0x5c, 0x66, 0x73,\n    0x76, 0x75, 0x71, 0x6c, 0x6a, 0x6a, 0x68, 0x63, 0x66, 0x69, 0x74, 0x81, 0x83, 0x7a, 0x75, 0x77,\n    0x74, 0x65, 0x69, 0x7f, 0x8b, 0x8c, 0x8a, 0x87, 0x8a, 0x78, 0x6a, 0x61, 0x65, 0x61, 0x64, 0x66,\n    0x6d, 0x6c, 0x6c, 0x6c, 0x6b, 0x67, 0x60, 0x5b, 0x5d, 0x5e, 0x5a, 0x50, 0x4f, 0x3e, 0x47, 0x4d,\n    0x4e, 0x4c, 0x48, 0x44, 0x40, 0x3e, 0x3e, 0x3e, 0x40, 0x3e, 0x3d, 0x3d, 0x3e, 0x3d, 0x39, 0x36,\n    0x35, 0x34, 0x34, 0x37, 0x3a, 0x3b, 0x38, 0x35, 0x36, 0x36, 0x36, 0x37, 0x38, 0x37, 0x35, 0x33,\n    0x34, 0x32, 0x36, 0x37, 0x32, 0x33, 0x36, 0x33, 0x3a, 0x39, 0x39, 0x3a, 0x3e, 0x42, 0x45, 0x46,\n    0x43, 0x41, 0x39, 0x41, 0x46, 0x51, 0x65, 0xa3, 0xd8, 0xdd, 0xc7, 0x8f, 0x5e, 0x6a, 0x6b, 0x69,\n    0x55, 0x48, 0x44, 0x45, 0x48, 0x58, 0x68, 0x68, 0x72, 0x79, 0x84, 0x86, 0x7c, 0x79, 0x7d, 0x80,\n    0x80, 0x7d, 0x78, 0x74, 0x72, 0x71, 0x6c, 0x67, 0x68, 0x6b, 0x6f, 0x71, 0x71, 0x6f, 0x6c, 0x6a,\n    0x66, 0x65, 0x61, 0x5e, 0x5e, 0x61, 0x62, 0x61, 0x65, 0x69, 0x6c, 0x6d, 0x6e, 0x70, 0x6e, 0x6b,\n    0x6c, 0x6b, 0x6b, 0x6e, 0x6e, 0x6d, 0x6c, 0x6d, 0x69, 0x71, 0x79, 0x7f, 0x82, 0x84, 0x83, 0x81,\n    0x78, 0x6b, 0x5b, 0x4c, 0x4c, 0x70, 0xa3, 0xc3, 0xb7, 0x95, 0x71, 0x61, 0x60, 0x63, 0x6a, 0x71,\n    0x72, 0x74, 0x78, 0x7a, 0x7a, 0x77, 0x74, 0x71, 0x6f, 0x72, 0x75, 0x77, 0x77, 0x77, 0x77, 0x77,\n    0x7a, 0x78, 0x76, 0x77, 0x78, 0x75, 0x68, 0x5b, 0x5d, 0x5a, 0x57, 0x56, 0x56, 0x57, 0x5b, 0x5f,\n    0x6c, 0x85, 0x9b, 0x9e, 0x9a, 0xa0, 0xab, 0xb2, 0xb4, 0xa2, 0x75, 0x5b, 0x58, 0x60, 0x88, 0xb3,\n    0xc6, 0xcf, 0xd8, 0xd6, 0xba, 0x8c, 0x75, 0x7b, 0x89, 0x95, 0x8e, 0x7e, 0x7c, 0x8a, 0xa7, 0xc8,\n    0xcb, 0xd4, 0xc8, 0xa3, 0x76, 0x51, 0x3d, 0x39, 0x35, 0x2f, 0x29, 0x26, 0x23, 0x1e, 0x1b, 0x19,\n    0x16, 0x14, 0x12, 0x15, 0x17, 0x14, 0x1c, 0x30, 0x35, 0x32, 0x2e, 0x2a, 0x20, 0x18, 0x18, 0x1e,\n    0x1d, 0x1e, 0x22, 0x29, 0x32, 0x33, 0x27, 0x19, 0x28, 0x20, 0x1e, 0x28, 0x37, 0x38, 0x29, 0x19,\n    0x1b, 0x1b, 0x1f, 0x25, 0x25, 0x28, 0x35, 0x45, 0x74, 0x5f, 0x58, 0x6d, 0x87, 0x92, 0x95, 0x98,\n    0x98, 0x87, 0x79, 0x78, 0x7a, 0x76, 0x6b, 0x63, 0x6d, 0x67, 0x68, 0x75, 0x86, 0x90, 0x91, 0x8f,\n    0x75, 0x67, 0x53, 0x3e, 0x29, 0x1d, 0x34, 0x5d, 0x73, 0x82, 0x8e, 0x87, 0x76, 0x6b, 0x70, 0x7a,\n    0x5a, 0x5a, 0x5a, 0x5c, 0x5d, 0x5e, 0x5d, 0x5c, 0x5b, 0x5b, 0x5b, 0x59, 0x59, 0x58, 0x52, 0x4b,\n    0x3e, 0x3e, 0x41, 0x49, 0x4d, 0x49, 0x41, 0x3c, 0x3d, 0x3b, 0x38, 0x39, 0x3f, 0x47, 0x49, 0x47,\n    0x4b, 0x46, 0x3e, 0x3a, 0x3d, 0x45, 0x4d, 0x51, 0x50, 0x4e, 0x4d, 0x4e, 0x4d, 0x49, 0x46, 0x45,\n    0x47, 0x50, 0x56, 0x51, 0x4a, 0x46, 0x41, 0x3c, 0x3c, 0x3c, 0x3e, 0x41, 0x40, 0x3a, 0x34, 0x31,\n    0x33, 0x37, 0x39, 0x36, 0x36, 0x38, 0x38, 0x35, 0x3f, 0x3f, 0x3b, 0x36, 0x36, 0x39, 0x38, 0x34,\n    0x38, 0x3b, 0x45, 0x49, 0x41, 0x48, 0x74, 0xa7, 0xd1, 0xdd, 0xc5, 0x82, 0x47, 0x34, 0x37, 0x38,\n    0x3c, 0x3d, 0x3f, 0x41, 0x40, 0x40, 0x43, 0x45, 0x48, 0x4c, 0x4a, 0x4a, 0x4f, 0x5c, 0x6e, 0x76,\n    0x87, 0x99, 0xa7, 0xa7, 0x9c, 0x89, 0x69, 0x4e, 0x5e, 0x6e, 0x7d, 0x7f, 0x76, 0x6a, 0x5d, 0x55,\n    0x51, 0x50, 0x4e, 0x4c, 0x4a, 0x48, 0x47, 0x46, 0x4a, 0x4c, 0x4d, 0x4e, 0x4c, 0x45, 0x3b, 0x34,\n    0x2f, 0x2c, 0x2c, 0x31, 0x34, 0x34, 0x34, 0x36, 0x37, 0x33, 0x31, 0x30, 0x2d, 0x2c, 0x37, 0x45,\n    0x51, 0x52, 0x52, 0x53, 0x57, 0x5c, 0x5e, 0x5c, 0x52, 0x55, 0x53, 0x53, 0x59, 0x59, 0x56, 0x59,\n    0x57, 0x53, 0x4c, 0x48, 0x4a, 0x4f, 0x50, 0x4d, 0x54, 0x55, 0x5a, 0x5f, 0x5f, 0x5d, 0x5d, 0x60,\n    0x61, 0x5e, 0x5c, 0x63, 0x68, 0x64, 0x6b, 0x7f, 0x88, 0x8d, 0xac, 0xd4, 0xe4, 0xe7, 0xd9, 0xc3,\n    0x96, 0x86, 0x87, 0x86, 0x83, 0x84, 0x7e, 0x7d, 0x7c, 0x7d, 0x7d, 0x81, 0x84, 0x81, 0x86, 0x97,\n    0xac, 0xab, 0x94, 0x86, 0x83, 0x80, 0x80, 0x7b, 0x7c, 0x7e, 0x80, 0x7e, 0x7b, 0x78, 0x77, 0x78,\n    0x75, 0x74, 0x77, 0x7c, 0x8c, 0xa4, 0xad, 0xa3, 0x94, 0x7c, 0x68, 0x65, 0x6a, 0x6b, 0x5b, 0x42,\n    0x44, 0x45, 0x49, 0x48, 0x3e, 0x34, 0x38, 0x43, 0x50, 0x62, 0x5b, 0x4d, 0x52, 0x4b, 0x39, 0x34,\n    0x31, 0x2f, 0x2d, 0x32, 0x3b, 0x40, 0x4c, 0x5f, 0x70, 0x6d, 0x70, 0x6d, 0x5c, 0x50, 0x5d, 0x73,\n    0x7c, 0x80, 0x7d, 0x76, 0x73, 0x6f, 0x68, 0x63, 0x5e, 0x61, 0x69, 0x72, 0x75, 0x70, 0x6f, 0x70,\n    0x6e, 0x60, 0x63, 0x7a, 0x90, 0x9f, 0xa3, 0x9e, 0x95, 0x7d, 0x6e, 0x5f, 0x65, 0x5e, 0x67, 0x6a,\n    0x6c, 0x6b, 0x6a, 0x6d, 0x70, 0x6f, 0x69, 0x64, 0x5e, 0x65, 0x56, 0x5a, 0x52, 0x44, 0x4a, 0x4f,\n    0x50, 0x48, 0x42, 0x42, 0x40, 0x3a, 0x37, 0x38, 0x3c, 0x3a, 0x37, 0x36, 0x37, 0x37, 0x37, 0x37,\n    0x36, 0x36, 0x36, 0x38, 0x39, 0x38, 0x35, 0x33, 0x36, 0x35, 0x34, 0x33, 0x34, 0x34, 0x34, 0x35,\n    0x35, 0x35, 0x36, 0x37, 0x35, 0x35, 0x37, 0x35, 0x36, 0x36, 0x35, 0x35, 0x37, 0x39, 0x3c, 0x3e,\n    0x43, 0x40, 0x3e, 0x48, 0x4a, 0x53, 0x68, 0xa3, 0xd5, 0xdb, 0xc4, 0x8c, 0x5f, 0x71, 0x77, 0x77,\n    0x62, 0x4f, 0x49, 0x4a, 0x4f, 0x6f, 0x91, 0x98, 0x78, 0x6a, 0x6f, 0x7d, 0x7b, 0x78, 0x78, 0x74,\n    0x70, 0x69, 0x60, 0x5b, 0x5a, 0x59, 0x54, 0x4f, 0x54, 0x55, 0x56, 0x58, 0x59, 0x59, 0x59, 0x59,\n    0x5c, 0x56, 0x52, 0x52, 0x52, 0x52, 0x52, 0x53, 0x55, 0x58, 0x59, 0x57, 0x57, 0x59, 0x5b, 0x5a,\n    0x5f, 0x5e, 0x5f, 0x62, 0x64, 0x64, 0x67, 0x6a, 0x65, 0x68, 0x6b, 0x6e, 0x73, 0x77, 0x7a, 0x7b,\n    0x81, 0x73, 0x61, 0x4f, 0x4f, 0x74, 0xa6, 0xc3, 0xb6, 0x97, 0x72, 0x60, 0x5e, 0x64, 0x6a, 0x6f,\n    0x75, 0x76, 0x78, 0x79, 0x79, 0x78, 0x76, 0x75, 0x71, 0x74, 0x77, 0x79, 0x78, 0x77, 0x77, 0x76,\n    0x78, 0x77, 0x77, 0x78, 0x77, 0x6e, 0x5b, 0x49, 0x4f, 0x4e, 0x4f, 0x53, 0x58, 0x5d, 0x61, 0x64,\n    0x6e, 0x7a, 0x80, 0x77, 0x6d, 0x6e, 0x74, 0x78, 0x74, 0x71, 0x65, 0x62, 0x66, 0x66, 0x72, 0x84,\n    0x97, 0xa3, 0xaa, 0xa7, 0x99, 0x85, 0x7d, 0x86, 0x81, 0x8c, 0x7f, 0x6c, 0x6e, 0x78, 0x91, 0xb6,\n    0xcb, 0xd6, 0xc9, 0xa5, 0x7a, 0x4e, 0x33, 0x32, 0x34, 0x30, 0x2c, 0x2a, 0x25, 0x1f, 0x1a, 0x19,\n    0x15, 0x17, 0x16, 0x16, 0x17, 0x15, 0x1e, 0x30, 0x38, 0x35, 0x30, 0x2a, 0x21, 0x1b, 0x1d, 0x24,\n    0x1b, 0x23, 0x22, 0x1c, 0x21, 0x2e, 0x2e, 0x22, 0x14, 0x1b, 0x2d, 0x3d, 0x37, 0x25, 0x1e, 0x24,\n    0x28, 0x2a, 0x2d, 0x31, 0x32, 0x39, 0x4a, 0x5b, 0x62, 0x7a, 0x91, 0x94, 0x8c, 0x88, 0x8d, 0x93,\n    0x7f, 0x84, 0x8b, 0x8a, 0x7b, 0x6d, 0x6e, 0x78, 0x73, 0x73, 0x76, 0x79, 0x79, 0x74, 0x6b, 0x65,\n    0x48, 0x38, 0x32, 0x4f, 0x7c, 0x95, 0x9d, 0xa2, 0x97, 0x81, 0x68, 0x5e, 0x63, 0x6a, 0x6a, 0x65,\n    0x5a, 0x5a, 0x5a, 0x5c, 0x5e, 0x5e, 0x5e, 0x5c, 0x5a, 0x5b, 0x5b, 0x5a, 0x5a, 0x59, 0x54, 0x4f,\n    0x44, 0x41, 0x42, 0x48, 0x4d, 0x4b, 0x46, 0x42, 0x3a, 0x3a, 0x3a, 0x3b, 0x42, 0x4b, 0x51, 0x52,\n    0x4f, 0x4c, 0x48, 0x45, 0x42, 0x40, 0x3f, 0x3f, 0x45, 0x44, 0x46, 0x4d, 0x51, 0x4e, 0x49, 0x46,\n    0x48, 0x4e, 0x51, 0x4e, 0x4a, 0x46, 0x3d, 0x33, 0x35, 0x34, 0x37, 0x3b, 0x3b, 0x36, 0x30, 0x2d,\n    0x33, 0x34, 0x3a, 0x40, 0x40, 0x3c, 0x3b, 0x3d, 0x42, 0x44, 0x44, 0x40, 0x3d, 0x3d, 0x3e, 0x3f,\n    0x44, 0x3f, 0x3d, 0x40, 0x44, 0x50, 0x6d, 0x8b, 0x9a, 0x9b, 0x88, 0x62, 0x41, 0x36, 0x37, 0x37,\n    0x3c, 0x3e, 0x3f, 0x3c, 0x39, 0x39, 0x3a, 0x3c, 0x42, 0x43, 0x47, 0x4c, 0x5d, 0x7e, 0x9f, 0xb6,\n    0xc9, 0xdd, 0xec, 0xec, 0xe6, 0xdb, 0xc2, 0xa9, 0x93, 0xa6, 0xbd, 0xc7, 0xc2, 0xb5, 0xa7, 0x9f,\n    0x88, 0x80, 0x73, 0x67, 0x5e, 0x56, 0x50, 0x4d, 0x4c, 0x4a, 0x4a, 0x4b, 0x4a, 0x46, 0x40, 0x3c,\n    0x32, 0x31, 0x33, 0x36, 0x36, 0x34, 0x31, 0x30, 0x35, 0x35, 0x33, 0x30, 0x32, 0x38, 0x3f, 0x44,\n    0x4c, 0x50, 0x56, 0x5b, 0x5e, 0x5d, 0x55, 0x4d, 0x49, 0x4e, 0x4d, 0x4f, 0x57, 0x5d, 0x62, 0x6a,\n    0x5f, 0x5d, 0x59, 0x55, 0x53, 0x53, 0x4e, 0x48, 0x52, 0x53, 0x57, 0x5d, 0x5f, 0x5c, 0x5a, 0x5b,\n    0x59, 0x5f, 0x62, 0x62, 0x64, 0x66, 0x70, 0x81, 0x8b, 0x8b, 0xa8, 0xcd, 0xe3, 0xe7, 0xda, 0xc1,\n    0x89, 0x7c, 0x80, 0x83, 0x84, 0x87, 0x83, 0x84, 0x82, 0x83, 0x83, 0x85, 0x88, 0x84, 0x88, 0x96,\n    0xaa, 0xa9, 0x93, 0x87, 0x84, 0x80, 0x80, 0x7b, 0x7d, 0x80, 0x82, 0x81, 0x7d, 0x79, 0x77, 0x77,\n    0x75, 0x76, 0x79, 0x7f, 0x8e, 0xa7, 0xb2, 0xa9, 0x93, 0x7b, 0x69, 0x69, 0x72, 0x76, 0x64, 0x47,\n    0x3a, 0x42, 0x48, 0x43, 0x36, 0x33, 0x44, 0x57, 0x63, 0x66, 0x57, 0x4f, 0x55, 0x49, 0x35, 0x35,\n    0x2f, 0x30, 0x31, 0x37, 0x3c, 0x3c, 0x46, 0x5a, 0x6c, 0x6c, 0x69, 0x61, 0x56, 0x50, 0x5a, 0x6c,\n    0x81, 0x8c, 0x89, 0x80, 0x7e, 0x7a, 0x72, 0x71, 0x73, 0x6b, 0x63, 0x68, 0x79, 0x86, 0x82, 0x77,\n    0x68, 0x5c, 0x5e, 0x71, 0x8d, 0xaa, 0xb9, 0xb6, 0x9d, 0x81, 0x6d, 0x59, 0x5c, 0x54, 0x60, 0x67,\n    0x6c, 0x69, 0x67, 0x6a, 0x6f, 0x70, 0x6d, 0x69, 0x5e, 0x69, 0x52, 0x61, 0x53, 0x51, 0x4f, 0x55,\n    0x4f, 0x45, 0x3d, 0x3e, 0x3d, 0x38, 0x36, 0x38, 0x3c, 0x3d, 0x3e, 0x3f, 0x3f, 0x3b, 0x37, 0x34,\n    0x34, 0x36, 0x38, 0x39, 0x37, 0x36, 0x36, 0x37, 0x37, 0x37, 0x37, 0x36, 0x35, 0x35, 0x36, 0x36,\n    0x37, 0x37, 0x34, 0x33, 0x33, 0x33, 0x32, 0x34, 0x36, 0x33, 0x31, 0x32, 0x36, 0x39, 0x3a, 0x39,\n    0x3c, 0x3b, 0x3d, 0x48, 0x49, 0x58, 0x72, 0xaa, 0xd7, 0xdd, 0xc5, 0x8a, 0x5d, 0x73, 0x79, 0x75,\n    0x67, 0x53, 0x4e, 0x50, 0x53, 0x74, 0xa0, 0xb1, 0x95, 0x79, 0x70, 0x7a, 0x7a, 0x77, 0x75, 0x6f,\n    0x65, 0x5c, 0x53, 0x51, 0x53, 0x54, 0x53, 0x50, 0x54, 0x54, 0x54, 0x55, 0x55, 0x55, 0x55, 0x56,\n    0x54, 0x4d, 0x47, 0x48, 0x49, 0x49, 0x4b, 0x4e, 0x50, 0x54, 0x56, 0x56, 0x56, 0x58, 0x58, 0x56,\n    0x5a, 0x5a, 0x5b, 0x5d, 0x5c, 0x60, 0x69, 0x72, 0x75, 0x6d, 0x64, 0x61, 0x63, 0x65, 0x65, 0x64,\n    0x68, 0x62, 0x58, 0x4c, 0x50, 0x77, 0xaa, 0xc7, 0xb4, 0x95, 0x71, 0x60, 0x5f, 0x65, 0x6b, 0x70,\n    0x77, 0x79, 0x7b, 0x7c, 0x7b, 0x77, 0x73, 0x70, 0x6e, 0x72, 0x76, 0x78, 0x79, 0x78, 0x78, 0x78,\n    0x76, 0x77, 0x78, 0x78, 0x77, 0x6e, 0x5e, 0x4f, 0x59, 0x59, 0x59, 0x5b, 0x5e, 0x61, 0x62, 0x62,\n    0x6e, 0x71, 0x6e, 0x63, 0x5a, 0x59, 0x5d, 0x5f, 0x5f, 0x5d, 0x5f, 0x64, 0x6c, 0x6c, 0x67, 0x6a,\n    0x60, 0x6a, 0x6a, 0x64, 0x69, 0x70, 0x76, 0x7c, 0x7f, 0x80, 0x70, 0x64, 0x69, 0x6b, 0x79, 0x99,\n    0xbb, 0xc7, 0xba, 0x95, 0x71, 0x4e, 0x35, 0x2f, 0x33, 0x30, 0x2e, 0x2b, 0x25, 0x1d, 0x1a, 0x19,\n    0x14, 0x1a, 0x18, 0x15, 0x18, 0x1d, 0x23, 0x2c, 0x39, 0x35, 0x2f, 0x27, 0x1e, 0x1b, 0x1f, 0x25,\n    0x21, 0x27, 0x28, 0x25, 0x24, 0x25, 0x24, 0x1f, 0x1e, 0x27, 0x39, 0x4b, 0x55, 0x53, 0x4e, 0x4b,\n    0x57, 0x5b, 0x60, 0x63, 0x65, 0x67, 0x6c, 0x71, 0x76, 0x7d, 0x75, 0x69, 0x76, 0x8d, 0x86, 0x6c,\n    0x73, 0x66, 0x5b, 0x5d, 0x64, 0x66, 0x66, 0x66, 0x61, 0x5d, 0x5d, 0x65, 0x6d, 0x6c, 0x5d, 0x4e,\n    0x3b, 0x58, 0x71, 0x7c, 0x80, 0x7d, 0x78, 0x7a, 0x6b, 0x62, 0x56, 0x4d, 0x4b, 0x51, 0x59, 0x5f,\n    0x59, 0x59, 0x5a, 0x5c, 0x5d, 0x5e, 0x5d, 0x5c, 0x59, 0x5a, 0x5a, 0x59, 0x59, 0x5a, 0x57, 0x52,\n    0x49, 0x42, 0x3e, 0x41, 0x45, 0x46, 0x46, 0x46, 0x38, 0x3a, 0x3b, 0x3a, 0x3e, 0x47, 0x4f, 0x53,\n    0x55, 0x52, 0x4f, 0x4f, 0x4b, 0x43, 0x3d, 0x39, 0x39, 0x38, 0x3c, 0x45, 0x4b, 0x4b, 0x47, 0x44,\n    0x44, 0x45, 0x43, 0x44, 0x4a, 0x4d, 0x45, 0x3a, 0x32, 0x30, 0x32, 0x38, 0x3d, 0x3b, 0x37, 0x34,\n    0x37, 0x38, 0x3d, 0x43, 0x3f, 0x36, 0x37, 0x3f, 0x42, 0x4b, 0x56, 0x5a, 0x52, 0x47, 0x42, 0x43,\n    0x44, 0x47, 0x42, 0x3b, 0x40, 0x51, 0x5b, 0x5a, 0x58, 0x55, 0x4f, 0x46, 0x3e, 0x39, 0x38, 0x38,\n    0x41, 0x42, 0x40, 0x3b, 0x3a, 0x40, 0x49, 0x4e, 0x44, 0x3f, 0x43, 0x47, 0x5f, 0x8b, 0xb6, 0xd9,\n    0xeb, 0xf0, 0xeb, 0xdc, 0xd5, 0xd8, 0xd4, 0xca, 0xb7, 0xc1, 0xce, 0xd5, 0xd6, 0xd3, 0xd2, 0xd1,\n    0xce, 0xc8, 0xbd, 0xae, 0x9b, 0x84, 0x6c, 0x5c, 0x51, 0x4d, 0x49, 0x47, 0x45, 0x42, 0x41, 0x42,\n    0x32, 0x33, 0x34, 0x33, 0x31, 0x2d, 0x29, 0x26, 0x2f, 0x32, 0x33, 0x32, 0x38, 0x42, 0x48, 0x48,\n    0x51, 0x52, 0x53, 0x53, 0x54, 0x56, 0x53, 0x4f, 0x44, 0x47, 0x42, 0x3e, 0x42, 0x47, 0x4e, 0x59,\n    0x61, 0x5c, 0x55, 0x52, 0x52, 0x55, 0x56, 0x57, 0x55, 0x55, 0x56, 0x59, 0x5c, 0x5d, 0x5a, 0x57,\n    0x5a, 0x6a, 0x71, 0x6f, 0x6e, 0x71, 0x7a, 0x87, 0x90, 0x8e, 0xab, 0xca, 0xe4, 0xe6, 0xd9, 0xba,\n    0x82, 0x76, 0x7d, 0x82, 0x83, 0x88, 0x85, 0x86, 0x83, 0x86, 0x87, 0x8b, 0x90, 0x90, 0x94, 0xa0,\n    0xb1, 0xaf, 0x99, 0x8d, 0x89, 0x82, 0x80, 0x7b, 0x77, 0x7d, 0x84, 0x86, 0x81, 0x7b, 0x76, 0x75,\n    0x72, 0x7a, 0x87, 0x91, 0x9b, 0xa8, 0xa6, 0x96, 0x85, 0x72, 0x64, 0x66, 0x72, 0x78, 0x68, 0x4d,\n    0x3a, 0x3e, 0x3e, 0x36, 0x30, 0x3b, 0x58, 0x70, 0x81, 0x76, 0x63, 0x5b, 0x5b, 0x4b, 0x38, 0x37,\n    0x2f, 0x34, 0x37, 0x3c, 0x3f, 0x3d, 0x46, 0x58, 0x65, 0x6d, 0x6b, 0x63, 0x61, 0x62, 0x65, 0x6d,\n    0x7d, 0x8b, 0x86, 0x7a, 0x7c, 0x7b, 0x78, 0x7c, 0x7e, 0x7d, 0x7b, 0x7c, 0x85, 0x8d, 0x86, 0x78,\n    0x6a, 0x61, 0x5d, 0x65, 0x7d, 0xa1, 0xb8, 0xb8, 0xa1, 0x86, 0x6d, 0x5b, 0x56, 0x51, 0x5d, 0x6b,\n    0x7b, 0x76, 0x6f, 0x6c, 0x6b, 0x69, 0x64, 0x60, 0x5d, 0x65, 0x52, 0x5b, 0x4f, 0x55, 0x4e, 0x54,\n    0x4b, 0x41, 0x3a, 0x3a, 0x3b, 0x39, 0x39, 0x3a, 0x3d, 0x3d, 0x3d, 0x3d, 0x3c, 0x3b, 0x3a, 0x39,\n    0x3a, 0x3d, 0x3f, 0x3f, 0x3e, 0x3e, 0x40, 0x43, 0x41, 0x43, 0x46, 0x46, 0x45, 0x42, 0x40, 0x3f,\n    0x40, 0x41, 0x3a, 0x36, 0x38, 0x35, 0x31, 0x34, 0x39, 0x35, 0x32, 0x34, 0x38, 0x3b, 0x3a, 0x37,\n    0x39, 0x37, 0x38, 0x3f, 0x3e, 0x51, 0x67, 0x94, 0xa2, 0xb0, 0xaa, 0x85, 0x63, 0x74, 0x6f, 0x66,\n    0x5b, 0x51, 0x53, 0x58, 0x60, 0x7e, 0xa3, 0xb3, 0xaa, 0x8f, 0x7c, 0x79, 0x78, 0x77, 0x78, 0x79,\n    0x6a, 0x60, 0x56, 0x53, 0x55, 0x55, 0x54, 0x54, 0x53, 0x53, 0x53, 0x53, 0x52, 0x52, 0x52, 0x52,\n    0x4d, 0x49, 0x44, 0x43, 0x43, 0x43, 0x46, 0x48, 0x4e, 0x55, 0x5d, 0x61, 0x63, 0x62, 0x5c, 0x56,\n    0x52, 0x53, 0x53, 0x51, 0x4f, 0x54, 0x62, 0x71, 0x6b, 0x5f, 0x53, 0x52, 0x58, 0x5b, 0x5a, 0x57,\n    0x53, 0x54, 0x52, 0x4c, 0x53, 0x7c, 0xae, 0xc9, 0xae, 0x8f, 0x6e, 0x61, 0x61, 0x65, 0x6b, 0x71,\n    0x73, 0x78, 0x7d, 0x80, 0x7d, 0x75, 0x6c, 0x65, 0x69, 0x6d, 0x72, 0x76, 0x78, 0x79, 0x79, 0x7a,\n    0x77, 0x78, 0x79, 0x78, 0x77, 0x71, 0x65, 0x5a, 0x5f, 0x61, 0x62, 0x62, 0x63, 0x65, 0x66, 0x65,\n    0x6a, 0x67, 0x60, 0x57, 0x52, 0x54, 0x56, 0x56, 0x55, 0x51, 0x5a, 0x60, 0x69, 0x6f, 0x66, 0x64,\n    0x5b, 0x62, 0x5e, 0x5a, 0x66, 0x77, 0x7f, 0x82, 0x84, 0x7a, 0x68, 0x61, 0x67, 0x66, 0x6b, 0x7d,\n    0x89, 0x93, 0x8d, 0x74, 0x5f, 0x4d, 0x3a, 0x2e, 0x30, 0x2e, 0x2c, 0x28, 0x22, 0x1b, 0x19, 0x1a,\n    0x14, 0x1b, 0x18, 0x15, 0x1d, 0x25, 0x28, 0x2b, 0x37, 0x31, 0x27, 0x1e, 0x19, 0x1c, 0x23, 0x2a,\n    0x29, 0x22, 0x23, 0x2a, 0x28, 0x1e, 0x1d, 0x26, 0x3c, 0x61, 0x7c, 0x75, 0x63, 0x5f, 0x62, 0x62,\n    0x6c, 0x6d, 0x6d, 0x6d, 0x6f, 0x72, 0x73, 0x71, 0x69, 0x6e, 0x78, 0x7b, 0x71, 0x64, 0x67, 0x72,\n    0x64, 0x5f, 0x58, 0x50, 0x4c, 0x4e, 0x56, 0x5c, 0x56, 0x55, 0x57, 0x5b, 0x5d, 0x52, 0x3b, 0x26,\n    0x48, 0x62, 0x6f, 0x68, 0x62, 0x5e, 0x57, 0x54, 0x53, 0x4b, 0x45, 0x48, 0x52, 0x55, 0x4f, 0x47,\n    0x59, 0x59, 0x59, 0x5b, 0x5c, 0x5d, 0x5c, 0x5a, 0x5a, 0x5c, 0x5b, 0x59, 0x59, 0x59, 0x57, 0x54,\n    0x4e, 0x48, 0x44, 0x44, 0x44, 0x42, 0x3f, 0x3e, 0x36, 0x39, 0x39, 0x39, 0x3c, 0x44, 0x4c, 0x50,\n    0x56, 0x4f, 0x4a, 0x4b, 0x4b, 0x46, 0x3f, 0x3b, 0x37, 0x36, 0x38, 0x3d, 0x42, 0x43, 0x44, 0x46,\n    0x44, 0x42, 0x42, 0x4c, 0x5f, 0x6b, 0x65, 0x57, 0x3d, 0x39, 0x3a, 0x42, 0x4a, 0x4c, 0x48, 0x45,\n    0x41, 0x40, 0x41, 0x44, 0x46, 0x45, 0x42, 0x41, 0x4e, 0x50, 0x5c, 0x6e, 0x71, 0x60, 0x4d, 0x44,\n    0x3f, 0x45, 0x45, 0x3d, 0x3c, 0x48, 0x53, 0x57, 0x5f, 0x5e, 0x5b, 0x52, 0x45, 0x3c, 0x3a, 0x3b,\n    0x3d, 0x41, 0x43, 0x42, 0x48, 0x56, 0x66, 0x6f, 0x50, 0x45, 0x44, 0x3f, 0x4e, 0x74, 0x95, 0xb6,\n    0xd8, 0xe6, 0xf0, 0xf0, 0xf0, 0xf1, 0xeb, 0xe1, 0xe8, 0xe5, 0xe0, 0xde, 0xdc, 0xde, 0xe2, 0xe6,\n    0xdc, 0xdb, 0xd8, 0xd3, 0xc8, 0xb4, 0x9c, 0x8b, 0x6d, 0x58, 0x43, 0x3b, 0x3f, 0x42, 0x42, 0x41,\n    0x33, 0x34, 0x33, 0x31, 0x2e, 0x2c, 0x2a, 0x29, 0x2e, 0x2f, 0x32, 0x37, 0x3c, 0x42, 0x49, 0x4e,\n    0x5c, 0x5f, 0x62, 0x64, 0x67, 0x6a, 0x69, 0x66, 0x67, 0x66, 0x5d, 0x57, 0x5b, 0x60, 0x69, 0x75,\n    0x6c, 0x64, 0x5f, 0x63, 0x66, 0x64, 0x61, 0x62, 0x5b, 0x5c, 0x5b, 0x58, 0x5b, 0x61, 0x61, 0x5d,\n    0x6d, 0x84, 0x98, 0xa1, 0xa3, 0x9f, 0x9e, 0xa5, 0x9e, 0xa0, 0xbd, 0xd3, 0xe8, 0xe4, 0xd4, 0xaf,\n    0x84, 0x78, 0x7f, 0x82, 0x82, 0x85, 0x82, 0x84, 0x7f, 0x83, 0x85, 0x8a, 0x91, 0x91, 0x96, 0xa1,\n    0xad, 0xab, 0x95, 0x8b, 0x88, 0x81, 0x80, 0x7c, 0x7d, 0x84, 0x8b, 0x8c, 0x87, 0x82, 0x81, 0x82,\n    0x81, 0x8c, 0x9a, 0xa1, 0xa4, 0xa8, 0xa0, 0x8d, 0x82, 0x74, 0x69, 0x68, 0x6e, 0x73, 0x65, 0x4c,\n    0x3c, 0x37, 0x2e, 0x29, 0x32, 0x4b, 0x6a, 0x7e, 0x79, 0x6c, 0x5c, 0x53, 0x4c, 0x41, 0x35, 0x2e,\n    0x2e, 0x36, 0x3a, 0x3d, 0x41, 0x42, 0x4b, 0x5b, 0x6c, 0x76, 0x72, 0x6b, 0x6f, 0x70, 0x6d, 0x71,\n    0x72, 0x80, 0x77, 0x69, 0x70, 0x71, 0x6d, 0x72, 0x6b, 0x74, 0x7d, 0x7e, 0x78, 0x72, 0x6f, 0x6f,\n    0x75, 0x6d, 0x63, 0x5c, 0x69, 0x8b, 0xa4, 0xa6, 0x9e, 0x88, 0x6e, 0x64, 0x59, 0x5b, 0x67, 0x7a,\n    0x86, 0x7f, 0x75, 0x6d, 0x69, 0x65, 0x61, 0x5d, 0x61, 0x62, 0x5f, 0x4d, 0x49, 0x49, 0x45, 0x48,\n    0x46, 0x40, 0x3b, 0x3a, 0x3d, 0x3e, 0x3f, 0x3e, 0x42, 0x42, 0x41, 0x41, 0x43, 0x46, 0x49, 0x4c,\n    0x4d, 0x4d, 0x4d, 0x4d, 0x4e, 0x50, 0x52, 0x54, 0x54, 0x56, 0x58, 0x58, 0x55, 0x53, 0x51, 0x51,\n    0x5a, 0x5c, 0x54, 0x4e, 0x52, 0x4c, 0x44, 0x47, 0x3f, 0x3b, 0x38, 0x38, 0x39, 0x38, 0x34, 0x31,\n    0x37, 0x36, 0x36, 0x3a, 0x36, 0x44, 0x49, 0x62, 0x4d, 0x60, 0x72, 0x71, 0x62, 0x71, 0x6a, 0x65,\n    0x58, 0x5f, 0x67, 0x71, 0x89, 0xaa, 0xc0, 0xc6, 0xb8, 0xa3, 0x85, 0x76, 0x78, 0x7b, 0x7b, 0x7d,\n    0x72, 0x67, 0x5c, 0x57, 0x55, 0x53, 0x52, 0x52, 0x54, 0x54, 0x55, 0x56, 0x57, 0x58, 0x5a, 0x5a,\n    0x56, 0x56, 0x54, 0x50, 0x4d, 0x4b, 0x49, 0x48, 0x51, 0x58, 0x60, 0x67, 0x6a, 0x67, 0x5d, 0x54,\n    0x52, 0x52, 0x51, 0x4f, 0x4d, 0x54, 0x65, 0x75, 0x67, 0x58, 0x4b, 0x49, 0x4e, 0x50, 0x4d, 0x4b,\n    0x50, 0x52, 0x52, 0x4e, 0x58, 0x81, 0xb1, 0xc8, 0xad, 0x8c, 0x6d, 0x64, 0x65, 0x64, 0x68, 0x71,\n    0x71, 0x75, 0x7a, 0x7e, 0x7c, 0x75, 0x6c, 0x66, 0x69, 0x6d, 0x72, 0x76, 0x78, 0x79, 0x79, 0x79,\n    0x78, 0x78, 0x78, 0x78, 0x79, 0x75, 0x6a, 0x60, 0x61, 0x65, 0x67, 0x64, 0x63, 0x65, 0x67, 0x66,\n    0x61, 0x62, 0x64, 0x65, 0x66, 0x61, 0x58, 0x4f, 0x46, 0x41, 0x4f, 0x54, 0x5b, 0x68, 0x63, 0x62,\n    0x5c, 0x60, 0x5e, 0x5f, 0x69, 0x72, 0x7a, 0x83, 0x89, 0x7b, 0x68, 0x5f, 0x63, 0x69, 0x6e, 0x70,\n    0x6b, 0x6b, 0x69, 0x60, 0x55, 0x4f, 0x42, 0x30, 0x2c, 0x2a, 0x28, 0x24, 0x1d, 0x17, 0x17, 0x1b,\n    0x19, 0x1b, 0x1b, 0x1e, 0x28, 0x2d, 0x2f, 0x35, 0x3b, 0x33, 0x27, 0x1f, 0x22, 0x2e, 0x3e, 0x47,\n    0x61, 0x63, 0x64, 0x5c, 0x4f, 0x4e, 0x65, 0x80, 0x9b, 0x91, 0x75, 0x50, 0x3e, 0x48, 0x5d, 0x69,\n    0x78, 0x78, 0x75, 0x72, 0x76, 0x7b, 0x7b, 0x78, 0x79, 0x67, 0x4b, 0x34, 0x29, 0x28, 0x25, 0x21,\n    0x35, 0x3d, 0x47, 0x51, 0x5b, 0x60, 0x57, 0x49, 0x51, 0x50, 0x4b, 0x41, 0x39, 0x33, 0x2d, 0x28,\n    0x3f, 0x49, 0x49, 0x43, 0x48, 0x4f, 0x4e, 0x4b, 0x45, 0x4a, 0x4d, 0x49, 0x41, 0x3a, 0x3a, 0x3d,\n    0x59, 0x58, 0x59, 0x5a, 0x5c, 0x5c, 0x5b, 0x59, 0x5d, 0x5e, 0x5c, 0x59, 0x58, 0x59, 0x57, 0x55,\n    0x55, 0x52, 0x51, 0x51, 0x4d, 0x43, 0x3a, 0x35, 0x34, 0x37, 0x38, 0x39, 0x3d, 0x45, 0x4c, 0x4f,\n    0x4c, 0x44, 0x40, 0x46, 0x4b, 0x46, 0x3a, 0x32, 0x36, 0x35, 0x35, 0x36, 0x37, 0x39, 0x3f, 0x45,\n    0x3d, 0x3b, 0x3e, 0x4f, 0x6a, 0x7a, 0x71, 0x5f, 0x4a, 0x45, 0x44, 0x4d, 0x56, 0x59, 0x55, 0x51,\n    0x4a, 0x4b, 0x51, 0x63, 0x7f, 0x95, 0x96, 0x8b, 0x62, 0x51, 0x50, 0x6b, 0x81, 0x7a, 0x62, 0x51,\n    0x4c, 0x41, 0x3d, 0x40, 0x41, 0x45, 0x57, 0x6e, 0x81, 0x85, 0x7e, 0x67, 0x4c, 0x3d, 0x3c, 0x40,\n    0x43, 0x46, 0x44, 0x3e, 0x3c, 0x43, 0x4c, 0x51, 0x4e, 0x44, 0x49, 0x47, 0x57, 0x79, 0x94, 0xb3,\n    0xe3, 0xf2, 0xfd, 0xf8, 0xea, 0xd9, 0xc3, 0xb0, 0xa0, 0x9e, 0x9e, 0xa1, 0xa5, 0xa8, 0xaa, 0xac,\n    0xbb, 0xb8, 0xb6, 0xba, 0xc1, 0xc6, 0xc6, 0xc4, 0xbd, 0x8e, 0x5b, 0x45, 0x48, 0x4a, 0x3f, 0x34,\n    0x34, 0x35, 0x34, 0x31, 0x30, 0x32, 0x34, 0x34, 0x30, 0x2e, 0x32, 0x3a, 0x3d, 0x3c, 0x45, 0x52,\n    0x5d, 0x6c, 0x80, 0x8f, 0x94, 0x90, 0x84, 0x7a, 0x71, 0x6f, 0x67, 0x65, 0x6f, 0x7b, 0x88, 0x95,\n    0x7d, 0x7a, 0x81, 0x8f, 0x90, 0x7c, 0x65, 0x58, 0x60, 0x63, 0x60, 0x5a, 0x5d, 0x67, 0x6b, 0x67,\n    0x6c, 0x77, 0x7f, 0x83, 0x84, 0x82, 0x89, 0x97, 0x9b, 0x9e, 0xbb, 0xcb, 0xe0, 0xe1, 0xd9, 0xb7,\n    0x84, 0x78, 0x7f, 0x82, 0x82, 0x86, 0x83, 0x85, 0x80, 0x83, 0x83, 0x85, 0x89, 0x87, 0x89, 0x92,\n    0x9f, 0x9e, 0x8b, 0x84, 0x84, 0x7e, 0x7f, 0x7c, 0x7f, 0x84, 0x88, 0x87, 0x82, 0x80, 0x85, 0x8b,\n    0x94, 0x95, 0x96, 0x90, 0x8e, 0x98, 0x9a, 0x90, 0x8c, 0x80, 0x75, 0x6e, 0x6d, 0x6d, 0x5e, 0x46,\n    0x37, 0x30, 0x28, 0x2d, 0x42, 0x5e, 0x72, 0x7a, 0x65, 0x5c, 0x52, 0x48, 0x41, 0x3f, 0x3b, 0x30,\n    0x29, 0x34, 0x3a, 0x3e, 0x44, 0x4b, 0x56, 0x66, 0x7e, 0x84, 0x7b, 0x70, 0x72, 0x6e, 0x68, 0x6d,\n    0x69, 0x76, 0x6b, 0x5e, 0x67, 0x68, 0x5f, 0x61, 0x67, 0x66, 0x69, 0x6c, 0x6a, 0x67, 0x6e, 0x79,\n    0x7e, 0x77, 0x68, 0x58, 0x5c, 0x7a, 0x93, 0x95, 0x86, 0x75, 0x5c, 0x5b, 0x4d, 0x55, 0x61, 0x79,\n    0x7d, 0x77, 0x70, 0x6a, 0x68, 0x68, 0x68, 0x67, 0x6a, 0x66, 0x6f, 0x44, 0x48, 0x3e, 0x3e, 0x3f,\n    0x43, 0x41, 0x3e, 0x3d, 0x40, 0x44, 0x44, 0x42, 0x47, 0x4c, 0x54, 0x5b, 0x5f, 0x60, 0x5f, 0x5e,\n    0x61, 0x5e, 0x5b, 0x5b, 0x5d, 0x5f, 0x60, 0x60, 0x65, 0x64, 0x63, 0x60, 0x5d, 0x5c, 0x5e, 0x60,\n    0x65, 0x6a, 0x62, 0x5d, 0x62, 0x5b, 0x50, 0x52, 0x53, 0x51, 0x4e, 0x4a, 0x46, 0x41, 0x3c, 0x39,\n    0x34, 0x34, 0x37, 0x3d, 0x38, 0x40, 0x36, 0x3d, 0x3b, 0x43, 0x52, 0x5b, 0x50, 0x5a, 0x55, 0x5b,\n    0x59, 0x6b, 0x75, 0x81, 0xa5, 0xcc, 0xd9, 0xd2, 0xcb, 0xb4, 0x8b, 0x74, 0x7c, 0x80, 0x77, 0x74,\n    0x72, 0x68, 0x5d, 0x5a, 0x58, 0x56, 0x55, 0x57, 0x54, 0x54, 0x54, 0x55, 0x57, 0x59, 0x5b, 0x5d,\n    0x61, 0x67, 0x68, 0x64, 0x5e, 0x5a, 0x56, 0x51, 0x5a, 0x5e, 0x64, 0x68, 0x6b, 0x68, 0x5e, 0x54,\n    0x52, 0x51, 0x4f, 0x4e, 0x4f, 0x57, 0x68, 0x78, 0x6a, 0x5b, 0x4d, 0x4a, 0x4e, 0x50, 0x50, 0x50,\n    0x4f, 0x50, 0x50, 0x4d, 0x5a, 0x85, 0xb4, 0xca, 0xb0, 0x8d, 0x6f, 0x68, 0x68, 0x63, 0x65, 0x6f,\n    0x70, 0x72, 0x75, 0x78, 0x78, 0x76, 0x73, 0x71, 0x6d, 0x71, 0x75, 0x78, 0x79, 0x78, 0x77, 0x77,\n    0x78, 0x77, 0x77, 0x79, 0x7c, 0x7a, 0x6e, 0x62, 0x68, 0x6c, 0x6c, 0x66, 0x60, 0x5f, 0x5f, 0x5e,\n    0x66, 0x61, 0x5d, 0x5d, 0x61, 0x65, 0x63, 0x5f, 0x46, 0x3e, 0x49, 0x46, 0x4a, 0x5c, 0x5f, 0x64,\n    0x60, 0x61, 0x62, 0x69, 0x70, 0x70, 0x79, 0x8c, 0x8e, 0x7e, 0x6b, 0x5e, 0x61, 0x71, 0x79, 0x72,\n    0x7a, 0x6d, 0x6a, 0x67, 0x5c, 0x56, 0x4a, 0x37, 0x29, 0x27, 0x25, 0x20, 0x19, 0x14, 0x16, 0x1b,\n    0x1e, 0x1d, 0x1e, 0x29, 0x34, 0x33, 0x35, 0x41, 0x46, 0x3c, 0x30, 0x2a, 0x34, 0x49, 0x5f, 0x6c,\n    0x73, 0x7f, 0x83, 0x7e, 0x83, 0x8e, 0x8b, 0x7c, 0x7a, 0x6f, 0x68, 0x64, 0x59, 0x52, 0x62, 0x7a,\n    0x73, 0x79, 0x7c, 0x7b, 0x7d, 0x7e, 0x77, 0x6d, 0x4f, 0x42, 0x31, 0x23, 0x1c, 0x1d, 0x25, 0x2d,\n    0x34, 0x4a, 0x58, 0x51, 0x47, 0x49, 0x4f, 0x52, 0x4a, 0x48, 0x3f, 0x34, 0x2d, 0x2d, 0x2d, 0x2b,\n    0x31, 0x3f, 0x48, 0x4b, 0x4e, 0x4b, 0x45, 0x46, 0x49, 0x45, 0x43, 0x43, 0x45, 0x45, 0x42, 0x3e,\n    0x59, 0x59, 0x5a, 0x5a, 0x5b, 0x5b, 0x5b, 0x5b, 0x58, 0x59, 0x59, 0x59, 0x57, 0x57, 0x57, 0x58,\n    0x57, 0x59, 0x5a, 0x58, 0x52, 0x49, 0x3d, 0x35, 0x33, 0x35, 0x39, 0x3d, 0x40, 0x43, 0x4d, 0x57,\n    0x51, 0x46, 0x3e, 0x42, 0x4b, 0x4c, 0x42, 0x37, 0x38, 0x36, 0x31, 0x31, 0x38, 0x39, 0x3a, 0x40,\n    0x3b, 0x3e, 0x4f, 0x65, 0x6b, 0x62, 0x5e, 0x64, 0x55, 0x58, 0x57, 0x54, 0x54, 0x56, 0x55, 0x51,\n    0x40, 0x42, 0x56, 0x80, 0xa7, 0xaa, 0x89, 0x66, 0x49, 0x41, 0x4a, 0x66, 0x81, 0x90, 0x8c, 0x7f,\n    0x62, 0x45, 0x35, 0x39, 0x3e, 0x45, 0x53, 0x5e, 0x62, 0x7f, 0x85, 0x7e, 0x68, 0x45, 0x3a, 0x3e,\n    0x41, 0x40, 0x3c, 0x39, 0x39, 0x3e, 0x42, 0x44, 0x3e, 0x47, 0x44, 0x48, 0x5b, 0x83, 0x96, 0xb6,\n    0xd8, 0xe8, 0xeb, 0xeb, 0xe1, 0xc7, 0xa1, 0x76, 0x6f, 0x72, 0x71, 0x6d, 0x6b, 0x6c, 0x6b, 0x67,\n    0x76, 0x7d, 0x79, 0x6b, 0x65, 0x6e, 0x7a, 0x7e, 0x82, 0x6b, 0x5b, 0x5e, 0x5f, 0x52, 0x43, 0x3e,\n    0x33, 0x34, 0x33, 0x34, 0x37, 0x33, 0x32, 0x38, 0x35, 0x34, 0x3b, 0x44, 0x43, 0x3c, 0x44, 0x54,\n    0x65, 0x6f, 0x7d, 0x8d, 0x99, 0x98, 0x95, 0x9b, 0x8f, 0x7d, 0x69, 0x5f, 0x5f, 0x6c, 0x85, 0x9c,\n    0x98, 0x9c, 0x9a, 0x98, 0x95, 0x86, 0x72, 0x69, 0x76, 0x7c, 0x7a, 0x77, 0x85, 0x99, 0x99, 0x8b,\n    0x7e, 0x87, 0x8c, 0x83, 0x73, 0x66, 0x61, 0x5f, 0x5d, 0x74, 0xac, 0xda, 0xe6, 0xe5, 0xd5, 0xb6,\n    0x85, 0x7e, 0x7c, 0x82, 0x87, 0x86, 0x86, 0x89, 0x83, 0x83, 0x81, 0x84, 0x87, 0x86, 0x8e, 0x9e,\n    0xac, 0xac, 0x91, 0x84, 0x88, 0x84, 0x7f, 0x78, 0x7a, 0x7e, 0x83, 0x82, 0x86, 0x97, 0xa3, 0xa0,\n    0x91, 0x8e, 0x85, 0x7d, 0x85, 0x95, 0x9a, 0x96, 0x85, 0x78, 0x6f, 0x6f, 0x72, 0x72, 0x5f, 0x45,\n    0x37, 0x2f, 0x27, 0x2d, 0x45, 0x61, 0x6c, 0x6a, 0x56, 0x46, 0x40, 0x3e, 0x39, 0x3a, 0x3a, 0x2f,\n    0x30, 0x3a, 0x43, 0x43, 0x42, 0x4b, 0x5f, 0x71, 0x79, 0x85, 0x83, 0x71, 0x63, 0x62, 0x60, 0x5a,\n    0x5d, 0x5d, 0x5e, 0x61, 0x62, 0x5f, 0x58, 0x53, 0x52, 0x5d, 0x67, 0x70, 0x60, 0x5e, 0x5b, 0x78,\n    0x8c, 0x81, 0x64, 0x41, 0x61, 0x88, 0xa0, 0x97, 0x7e, 0x63, 0x4d, 0x45, 0x44, 0x4d, 0x5d, 0x67,\n    0x69, 0x6b, 0x6c, 0x6d, 0x6f, 0x6c, 0x60, 0x52, 0x46, 0x49, 0x49, 0x44, 0x41, 0x42, 0x43, 0x42,\n    0x41, 0x43, 0x4b, 0x4d, 0x49, 0x4d, 0x57, 0x5b, 0x60, 0x66, 0x6d, 0x70, 0x6f, 0x6e, 0x6e, 0x70,\n    0x70, 0x65, 0x5f, 0x62, 0x66, 0x65, 0x66, 0x69, 0x70, 0x69, 0x65, 0x65, 0x62, 0x5d, 0x5e, 0x62,\n    0x70, 0x68, 0x64, 0x66, 0x63, 0x5d, 0x5d, 0x62, 0x5f, 0x5f, 0x55, 0x54, 0x5b, 0x53, 0x48, 0x4c,\n    0x44, 0x40, 0x3b, 0x38, 0x38, 0x39, 0x3a, 0x3a, 0x3c, 0x39, 0x3c, 0x44, 0x48, 0x48, 0x4a, 0x50,\n    0x5f, 0x70, 0x85, 0x98, 0xac, 0xc1, 0xcd, 0xd0, 0xd6, 0xb1, 0x8b, 0x7b, 0x77, 0x75, 0x75, 0x78,\n    0x70, 0x67, 0x5e, 0x5a, 0x58, 0x57, 0x57, 0x57, 0x58, 0x55, 0x55, 0x57, 0x58, 0x58, 0x5b, 0x5f,\n    0x6a, 0x72, 0x72, 0x6e, 0x6f, 0x69, 0x5d, 0x57, 0x5c, 0x5f, 0x64, 0x6b, 0x6e, 0x6a, 0x61, 0x5a,\n    0x55, 0x55, 0x52, 0x4d, 0x4c, 0x55, 0x66, 0x74, 0x6a, 0x57, 0x49, 0x49, 0x4e, 0x4e, 0x4d, 0x4e,\n    0x50, 0x4e, 0x4e, 0x4c, 0x59, 0x89, 0xb6, 0xc1, 0xaf, 0x8a, 0x70, 0x6c, 0x69, 0x66, 0x6c, 0x73,\n    0x71, 0x74, 0x75, 0x74, 0x72, 0x71, 0x70, 0x6d, 0x6d, 0x72, 0x76, 0x78, 0x77, 0x76, 0x77, 0x79,\n    0x77, 0x78, 0x79, 0x7b, 0x7d, 0x7a, 0x6f, 0x64, 0x67, 0x6b, 0x6d, 0x68, 0x5f, 0x5a, 0x5a, 0x5c,\n    0x63, 0x5b, 0x56, 0x4e, 0x4c, 0x64, 0x7a, 0x77, 0x4d, 0x43, 0x3f, 0x40, 0x44, 0x52, 0x5f, 0x62,\n    0x66, 0x65, 0x62, 0x62, 0x6a, 0x77, 0x83, 0x88, 0x88, 0x83, 0x70, 0x62, 0x63, 0x66, 0x75, 0x8e,\n    0x91, 0x90, 0x7b, 0x62, 0x58, 0x55, 0x4a, 0x41, 0x36, 0x30, 0x2a, 0x22, 0x1c, 0x20, 0x23, 0x1b,\n    0x1b, 0x19, 0x29, 0x40, 0x3a, 0x21, 0x1e, 0x30, 0x3b, 0x35, 0x2f, 0x36, 0x4b, 0x63, 0x6e, 0x6e,\n    0x6c, 0x6a, 0x6d, 0x7b, 0x86, 0x7d, 0x70, 0x70, 0x6b, 0x54, 0x48, 0x42, 0x45, 0x68, 0x82, 0x75,\n    0x77, 0x70, 0x6b, 0x6d, 0x6c, 0x61, 0x4f, 0x43, 0x23, 0x1b, 0x1a, 0x21, 0x24, 0x24, 0x32, 0x45,\n    0x62, 0x5c, 0x52, 0x4c, 0x4b, 0x4b, 0x45, 0x3e, 0x37, 0x37, 0x34, 0x2d, 0x26, 0x27, 0x2f, 0x37,\n    0x34, 0x38, 0x38, 0x32, 0x2e, 0x33, 0x39, 0x3d, 0x46, 0x43, 0x36, 0x29, 0x2a, 0x34, 0x35, 0x2d,\n    0x57, 0x58, 0x58, 0x59, 0x5a, 0x5b, 0x5b, 0x5b, 0x5a, 0x5a, 0x5a, 0x5a, 0x58, 0x57, 0x57, 0x58,\n    0x57, 0x58, 0x58, 0x57, 0x52, 0x4a, 0x3e, 0x34, 0x35, 0x38, 0x3c, 0x3d, 0x3f, 0x44, 0x4d, 0x53,\n    0x4b, 0x42, 0x3c, 0x42, 0x4c, 0x50, 0x4a, 0x44, 0x3d, 0x3d, 0x3c, 0x41, 0x49, 0x43, 0x36, 0x31,\n    0x39, 0x4d, 0x6c, 0x7e, 0x76, 0x5f, 0x54, 0x57, 0x57, 0x57, 0x53, 0x4d, 0x4b, 0x4a, 0x46, 0x41,\n    0x48, 0x46, 0x4e, 0x6c, 0x99, 0xb0, 0x99, 0x75, 0x55, 0x46, 0x47, 0x56, 0x60, 0x68, 0x72, 0x78,\n    0x5d, 0x43, 0x34, 0x36, 0x38, 0x3c, 0x42, 0x45, 0x45, 0x5c, 0x6f, 0x85, 0x7d, 0x52, 0x39, 0x35,\n    0x3b, 0x3b, 0x3b, 0x39, 0x38, 0x39, 0x3b, 0x3d, 0x45, 0x47, 0x47, 0x50, 0x52, 0x5c, 0x78, 0xbd,\n    0xe6, 0xf9, 0xf7, 0xea, 0xdb, 0xc6, 0xa1, 0x71, 0x5f, 0x63, 0x65, 0x64, 0x65, 0x66, 0x64, 0x5f,\n    0x67, 0x7c, 0x83, 0x73, 0x66, 0x69, 0x6b, 0x66, 0x64, 0x61, 0x6c, 0x82, 0x87, 0x6f, 0x4c, 0x37,\n    0x35, 0x35, 0x34, 0x34, 0x34, 0x30, 0x30, 0x38, 0x36, 0x38, 0x3f, 0x43, 0x3e, 0x41, 0x5c, 0x7c,\n    0x81, 0x80, 0x74, 0x69, 0x71, 0x7d, 0x83, 0x87, 0x85, 0x6c, 0x56, 0x55, 0x64, 0x73, 0x7e, 0x85,\n    0x8a, 0x90, 0x94, 0x9c, 0xa3, 0x97, 0x7f, 0x70, 0x6f, 0x71, 0x6f, 0x6c, 0x70, 0x79, 0x7a, 0x75,\n    0x6d, 0x78, 0x82, 0x86, 0x88, 0x8a, 0x88, 0x84, 0x76, 0x80, 0xa7, 0xcf, 0xe0, 0xe4, 0xd4, 0xb4,\n    0x87, 0x84, 0x83, 0x85, 0x87, 0x87, 0x87, 0x89, 0x8b, 0x89, 0x86, 0x88, 0x8c, 0x89, 0x8d, 0x9c,\n    0xae, 0xae, 0x97, 0x8d, 0x8f, 0x85, 0x7d, 0x76, 0x7a, 0x81, 0x8e, 0x96, 0x99, 0x9e, 0x99, 0x8b,\n    0x86, 0x89, 0x8a, 0x8c, 0x94, 0x9c, 0x99, 0x91, 0x81, 0x74, 0x6e, 0x6f, 0x72, 0x71, 0x60, 0x48,\n    0x3a, 0x32, 0x2d, 0x33, 0x45, 0x55, 0x59, 0x55, 0x47, 0x41, 0x40, 0x41, 0x3b, 0x36, 0x33, 0x30,\n    0x39, 0x3e, 0x43, 0x44, 0x45, 0x4e, 0x5d, 0x6a, 0x84, 0x8b, 0x84, 0x6d, 0x5e, 0x62, 0x6a, 0x6b,\n    0x59, 0x5a, 0x5a, 0x5c, 0x5d, 0x5d, 0x5c, 0x5b, 0x59, 0x66, 0x76, 0x80, 0x6d, 0x62, 0x5e, 0x7e,\n    0x94, 0x86, 0x64, 0x45, 0x5c, 0x86, 0x9b, 0x95, 0x65, 0x4e, 0x45, 0x4c, 0x50, 0x52, 0x5c, 0x65,\n    0x6c, 0x6a, 0x66, 0x63, 0x63, 0x61, 0x59, 0x50, 0x49, 0x4a, 0x49, 0x44, 0x42, 0x45, 0x49, 0x49,\n    0x4b, 0x4f, 0x5a, 0x62, 0x61, 0x63, 0x66, 0x64, 0x69, 0x6e, 0x75, 0x77, 0x74, 0x71, 0x6f, 0x6f,\n    0x75, 0x6f, 0x67, 0x65, 0x68, 0x6d, 0x6d, 0x6a, 0x73, 0x6f, 0x6b, 0x68, 0x65, 0x63, 0x63, 0x66,\n    0x6a, 0x63, 0x5f, 0x61, 0x60, 0x5c, 0x5d, 0x62, 0x5d, 0x5d, 0x57, 0x57, 0x5e, 0x59, 0x51, 0x55,\n    0x50, 0x4b, 0x45, 0x41, 0x3f, 0x3d, 0x39, 0x36, 0x3d, 0x3c, 0x3c, 0x3d, 0x3e, 0x3e, 0x40, 0x44,\n    0x4e, 0x5d, 0x70, 0x81, 0x92, 0xa7, 0xbc, 0xc9, 0xcd, 0xac, 0x87, 0x76, 0x75, 0x78, 0x7a, 0x7c,\n    0x70, 0x67, 0x5e, 0x5a, 0x59, 0x58, 0x57, 0x58, 0x57, 0x56, 0x56, 0x58, 0x59, 0x5a, 0x5e, 0x62,\n    0x6e, 0x74, 0x72, 0x6d, 0x6c, 0x66, 0x5b, 0x56, 0x5f, 0x63, 0x69, 0x6f, 0x6f, 0x68, 0x5d, 0x54,\n    0x53, 0x55, 0x53, 0x4d, 0x4f, 0x5c, 0x69, 0x70, 0x68, 0x57, 0x4d, 0x51, 0x54, 0x4f, 0x4e, 0x52,\n    0x4f, 0x4d, 0x4f, 0x4f, 0x5d, 0x8c, 0xb8, 0xc2, 0xab, 0x86, 0x6c, 0x69, 0x66, 0x64, 0x6a, 0x71,\n    0x71, 0x73, 0x75, 0x73, 0x71, 0x70, 0x6d, 0x6a, 0x6c, 0x70, 0x76, 0x78, 0x77, 0x76, 0x76, 0x77,\n    0x7a, 0x7a, 0x7a, 0x7c, 0x80, 0x81, 0x7b, 0x73, 0x6d, 0x6a, 0x68, 0x66, 0x61, 0x5b, 0x59, 0x5a,\n    0x5f, 0x55, 0x4f, 0x4b, 0x51, 0x6e, 0x82, 0x7c, 0x4e, 0x3d, 0x35, 0x38, 0x3c, 0x46, 0x57, 0x61,\n    0x5f, 0x5e, 0x5b, 0x5d, 0x66, 0x75, 0x80, 0x85, 0x81, 0x7a, 0x68, 0x5e, 0x60, 0x64, 0x74, 0x8e,\n    0xa5, 0x95, 0x7a, 0x63, 0x58, 0x4e, 0x43, 0x3d, 0x43, 0x3f, 0x45, 0x48, 0x37, 0x2a, 0x32, 0x3f,\n    0x46, 0x4a, 0x4d, 0x47, 0x38, 0x31, 0x3e, 0x51, 0x3e, 0x49, 0x58, 0x69, 0x75, 0x77, 0x6c, 0x5f,\n    0x5a, 0x62, 0x70, 0x81, 0x87, 0x77, 0x5e, 0x51, 0x39, 0x41, 0x47, 0x4d, 0x5c, 0x73, 0x7b, 0x72,\n    0x76, 0x6a, 0x5b, 0x50, 0x45, 0x38, 0x2b, 0x24, 0x32, 0x2c, 0x2b, 0x30, 0x33, 0x37, 0x44, 0x53,\n    0x53, 0x4e, 0x47, 0x43, 0x44, 0x45, 0x41, 0x3a, 0x38, 0x32, 0x2a, 0x27, 0x28, 0x2b, 0x2e, 0x2f,\n    0x45, 0x48, 0x46, 0x39, 0x2d, 0x29, 0x2c, 0x2f, 0x34, 0x34, 0x32, 0x31, 0x32, 0x31, 0x2d, 0x27,\n    0x57, 0x57, 0x58, 0x59, 0x59, 0x5a, 0x5b, 0x5b, 0x5b, 0x5c, 0x5c, 0x5b, 0x59, 0x58, 0x58, 0x58,\n    0x57, 0x57, 0x56, 0x55, 0x51, 0x48, 0x3d, 0x35, 0x3a, 0x3f, 0x42, 0x3f, 0x3f, 0x46, 0x4c, 0x4f,\n    0x44, 0x3d, 0x3a, 0x42, 0x4c, 0x53, 0x55, 0x55, 0x54, 0x4f, 0x46, 0x47, 0x53, 0x53, 0x47, 0x3f,\n    0x39, 0x4d, 0x64, 0x6a, 0x5a, 0x47, 0x3f, 0x41, 0x48, 0x45, 0x41, 0x3e, 0x3e, 0x3f, 0x3b, 0x36,\n    0x43, 0x45, 0x46, 0x58, 0x87, 0xb2, 0xae, 0x91, 0x6e, 0x53, 0x42, 0x42, 0x42, 0x4a, 0x64, 0x7a,\n    0x62, 0x4a, 0x39, 0x36, 0x39, 0x41, 0x4a, 0x4c, 0x5a, 0x71, 0x81, 0x8b, 0x76, 0x4a, 0x38, 0x39,\n    0x37, 0x3a, 0x3d, 0x3d, 0x3a, 0x39, 0x3a, 0x3c, 0x3c, 0x44, 0x3f, 0x40, 0x3f, 0x47, 0x65, 0xb1,\n    0xe4, 0xf9, 0xfb, 0xf4, 0xe8, 0xcf, 0xa4, 0x6f, 0x5d, 0x5e, 0x5f, 0x60, 0x63, 0x65, 0x63, 0x60,\n    0x5e, 0x7c, 0x97, 0x95, 0x7f, 0x6b, 0x62, 0x61, 0x56, 0x54, 0x61, 0x7d, 0x8e, 0x7e, 0x5a, 0x3e,\n    0x30, 0x31, 0x36, 0x3c, 0x3a, 0x34, 0x32, 0x35, 0x33, 0x36, 0x3d, 0x3f, 0x3b, 0x43, 0x65, 0x8a,\n    0xae, 0xa1, 0x80, 0x63, 0x64, 0x7d, 0x99, 0xae, 0x92, 0x70, 0x50, 0x4e, 0x65, 0x81, 0x96, 0xa0,\n    0x97, 0x92, 0x89, 0x88, 0x8e, 0x87, 0x75, 0x6a, 0x66, 0x66, 0x64, 0x5f, 0x5a, 0x57, 0x59, 0x5d,\n    0x5e, 0x62, 0x62, 0x5f, 0x61, 0x64, 0x60, 0x57, 0x71, 0x72, 0x8e, 0xb3, 0xce, 0xdc, 0xd1, 0xb5,\n    0x7c, 0x7f, 0x81, 0x83, 0x87, 0x8e, 0x92, 0x92, 0x8c, 0x8b, 0x88, 0x8a, 0x8f, 0x8d, 0x92, 0xa1,\n    0xaf, 0xa8, 0x91, 0x8c, 0x8d, 0x84, 0x82, 0x7e, 0x88, 0x94, 0xa3, 0xa3, 0x96, 0x8e, 0x8d, 0x88,\n    0x8f, 0x92, 0x95, 0x98, 0x9b, 0x9b, 0x93, 0x8b, 0x7d, 0x72, 0x6c, 0x6c, 0x6c, 0x69, 0x5c, 0x48,\n    0x3b, 0x35, 0x33, 0x3b, 0x46, 0x4a, 0x47, 0x43, 0x3f, 0x41, 0x42, 0x41, 0x3b, 0x31, 0x33, 0x40,\n    0x4f, 0x4e, 0x4c, 0x4b, 0x4e, 0x55, 0x5c, 0x61, 0x78, 0x85, 0x84, 0x6f, 0x60, 0x64, 0x6d, 0x6f,\n    0x62, 0x61, 0x61, 0x62, 0x64, 0x68, 0x6b, 0x6d, 0x6a, 0x76, 0x88, 0x90, 0x7c, 0x69, 0x61, 0x7d,\n    0x9a, 0x8d, 0x68, 0x4c, 0x51, 0x75, 0x84, 0x81, 0x63, 0x50, 0x50, 0x61, 0x67, 0x64, 0x68, 0x70,\n    0x6d, 0x69, 0x61, 0x59, 0x55, 0x53, 0x4e, 0x49, 0x3f, 0x42, 0x44, 0x45, 0x48, 0x4d, 0x51, 0x53,\n    0x5b, 0x5f, 0x6a, 0x73, 0x73, 0x74, 0x74, 0x6e, 0x72, 0x76, 0x7a, 0x7b, 0x78, 0x74, 0x71, 0x70,\n    0x75, 0x73, 0x6c, 0x65, 0x68, 0x70, 0x70, 0x68, 0x6f, 0x6e, 0x6a, 0x65, 0x63, 0x64, 0x65, 0x64,\n    0x63, 0x5d, 0x59, 0x5a, 0x5a, 0x58, 0x5a, 0x5e, 0x58, 0x59, 0x56, 0x57, 0x5c, 0x59, 0x55, 0x59,\n    0x54, 0x51, 0x4d, 0x4c, 0x4b, 0x49, 0x45, 0x41, 0x38, 0x3a, 0x39, 0x36, 0x34, 0x37, 0x3a, 0x3b,\n    0x43, 0x49, 0x51, 0x59, 0x66, 0x81, 0xa7, 0xc5, 0xc7, 0xae, 0x8d, 0x78, 0x74, 0x78, 0x7b, 0x7a,\n    0x70, 0x68, 0x5f, 0x5b, 0x5b, 0x59, 0x59, 0x59, 0x57, 0x56, 0x57, 0x59, 0x5b, 0x5c, 0x61, 0x66,\n    0x72, 0x77, 0x74, 0x6e, 0x6c, 0x66, 0x5c, 0x5a, 0x63, 0x68, 0x70, 0x76, 0x77, 0x6f, 0x63, 0x59,\n    0x51, 0x55, 0x56, 0x55, 0x5a, 0x66, 0x6e, 0x70, 0x65, 0x59, 0x54, 0x58, 0x57, 0x51, 0x4f, 0x54,\n    0x54, 0x4f, 0x50, 0x50, 0x61, 0x91, 0xbb, 0xc2, 0xa9, 0x84, 0x6b, 0x69, 0x67, 0x66, 0x6c, 0x72,\n    0x72, 0x74, 0x75, 0x74, 0x72, 0x71, 0x6e, 0x6a, 0x6b, 0x70, 0x76, 0x78, 0x78, 0x76, 0x75, 0x75,\n    0x7a, 0x79, 0x79, 0x7c, 0x83, 0x89, 0x89, 0x85, 0x72, 0x68, 0x62, 0x63, 0x61, 0x5a, 0x57, 0x59,\n    0x5c, 0x50, 0x48, 0x48, 0x57, 0x7a, 0x8b, 0x7d, 0x51, 0x3c, 0x32, 0x36, 0x37, 0x3c, 0x4c, 0x59,\n    0x5b, 0x59, 0x57, 0x5a, 0x65, 0x74, 0x7f, 0x82, 0x79, 0x6e, 0x5e, 0x58, 0x5c, 0x63, 0x79, 0x96,\n    0x96, 0x8c, 0x7a, 0x63, 0x4b, 0x45, 0x5b, 0x78, 0x8f, 0x7a, 0x6b, 0x64, 0x5c, 0x66, 0x8b, 0xae,\n    0xa0, 0x9c, 0x95, 0x8a, 0x7e, 0x75, 0x71, 0x70, 0x79, 0x80, 0x88, 0x8d, 0x8c, 0x86, 0x7b, 0x71,\n    0x6e, 0x6d, 0x84, 0x9d, 0x86, 0x4d, 0x30, 0x39, 0x52, 0x61, 0x61, 0x60, 0x6b, 0x6f, 0x68, 0x68,\n    0x5a, 0x52, 0x49, 0x45, 0x43, 0x43, 0x45, 0x48, 0x36, 0x33, 0x31, 0x31, 0x33, 0x38, 0x42, 0x4c,\n    0x46, 0x44, 0x40, 0x3e, 0x3f, 0x40, 0x3b, 0x35, 0x2d, 0x2e, 0x2c, 0x26, 0x20, 0x20, 0x27, 0x2e,\n    0x33, 0x3f, 0x48, 0x49, 0x46, 0x48, 0x4e, 0x54, 0x3c, 0x37, 0x37, 0x39, 0x34, 0x29, 0x21, 0x1f,\n    0x58, 0x58, 0x58, 0x59, 0x59, 0x5a, 0x5b, 0x5b, 0x5d, 0x5d, 0x5d, 0x5b, 0x59, 0x57, 0x57, 0x57,\n    0x55, 0x55, 0x56, 0x53, 0x4b, 0x41, 0x3a, 0x38, 0x40, 0x48, 0x49, 0x43, 0x42, 0x49, 0x4d, 0x4b,\n    0x42, 0x3c, 0x3b, 0x42, 0x4b, 0x53, 0x5a, 0x61, 0x72, 0x68, 0x53, 0x48, 0x4d, 0x50, 0x48, 0x41,\n    0x45, 0x4c, 0x50, 0x4c, 0x43, 0x3d, 0x3b, 0x3a, 0x3f, 0x3c, 0x3a, 0x3b, 0x3f, 0x42, 0x41, 0x3e,\n    0x3d, 0x44, 0x4a, 0x56, 0x79, 0x9b, 0x9b, 0x85, 0x5b, 0x49, 0x42, 0x46, 0x43, 0x3e, 0x3f, 0x41,\n    0x54, 0x45, 0x3c, 0x3a, 0x3b, 0x44, 0x4d, 0x4e, 0x66, 0x84, 0x8e, 0x81, 0x5f, 0x3f, 0x36, 0x32,\n    0x34, 0x37, 0x3a, 0x3b, 0x38, 0x36, 0x38, 0x3d, 0x36, 0x43, 0x41, 0x42, 0x40, 0x47, 0x66, 0xb7,\n    0xe8, 0xf2, 0xf2, 0xf6, 0xf2, 0xd7, 0xa6, 0x71, 0x58, 0x56, 0x54, 0x53, 0x56, 0x58, 0x58, 0x56,\n    0x58, 0x6f, 0x98, 0xb3, 0xa0, 0x75, 0x63, 0x6c, 0x67, 0x57, 0x51, 0x64, 0x7f, 0x86, 0x75, 0x61,\n    0x3c, 0x34, 0x35, 0x3b, 0x3a, 0x35, 0x34, 0x35, 0x37, 0x34, 0x34, 0x36, 0x3a, 0x4b, 0x6f, 0x91,\n    0x8f, 0x8e, 0x86, 0x80, 0x83, 0x80, 0x75, 0x70, 0x73, 0x63, 0x56, 0x5a, 0x6f, 0x8d, 0xa9, 0xbc,\n    0xc3, 0xb9, 0xa3, 0x90, 0x87, 0x7c, 0x70, 0x6d, 0x67, 0x6a, 0x68, 0x61, 0x59, 0x56, 0x5a, 0x5d,\n    0x54, 0x56, 0x53, 0x4d, 0x51, 0x5c, 0x63, 0x62, 0x5b, 0x57, 0x63, 0x78, 0x8d, 0xa2, 0xa8, 0x9d,\n    0x81, 0x84, 0x84, 0x83, 0x87, 0x8d, 0x8e, 0x89, 0x8a, 0x8a, 0x88, 0x8b, 0x8f, 0x90, 0x9c, 0xb0,\n    0xbb, 0xaa, 0x90, 0x8e, 0x91, 0x8f, 0x95, 0x95, 0x9b, 0x9c, 0x9d, 0x93, 0x83, 0x81, 0x8c, 0x92,\n    0x9a, 0x96, 0x92, 0x8f, 0x90, 0x90, 0x8d, 0x8a, 0x7c, 0x70, 0x69, 0x65, 0x60, 0x5b, 0x51, 0x43,\n    0x38, 0x33, 0x35, 0x40, 0x47, 0x46, 0x42, 0x41, 0x42, 0x46, 0x41, 0x3b, 0x37, 0x31, 0x3f, 0x5d,\n    0x6c, 0x63, 0x59, 0x57, 0x5a, 0x5e, 0x5f, 0x5d, 0x69, 0x7a, 0x80, 0x6f, 0x61, 0x64, 0x6d, 0x6f,\n    0x63, 0x60, 0x5d, 0x5e, 0x63, 0x68, 0x6b, 0x6c, 0x70, 0x7d, 0x90, 0x95, 0x8b, 0x7a, 0x6a, 0x75,\n    0x79, 0x77, 0x63, 0x58, 0x51, 0x71, 0x81, 0x87, 0x70, 0x61, 0x60, 0x6b, 0x6f, 0x6e, 0x70, 0x72,\n    0x68, 0x64, 0x5b, 0x52, 0x4c, 0x48, 0x46, 0x44, 0x43, 0x49, 0x51, 0x5a, 0x61, 0x66, 0x69, 0x6a,\n    0x6d, 0x6e, 0x76, 0x7a, 0x77, 0x78, 0x7a, 0x77, 0x76, 0x78, 0x79, 0x79, 0x77, 0x74, 0x73, 0x72,\n    0x73, 0x70, 0x6a, 0x65, 0x67, 0x6c, 0x6a, 0x65, 0x65, 0x67, 0x64, 0x5e, 0x5d, 0x61, 0x63, 0x60,\n    0x5c, 0x57, 0x52, 0x51, 0x52, 0x53, 0x54, 0x55, 0x56, 0x57, 0x56, 0x55, 0x57, 0x55, 0x53, 0x55,\n    0x4e, 0x4e, 0x4e, 0x4e, 0x4d, 0x4c, 0x4c, 0x4b, 0x3d, 0x41, 0x40, 0x39, 0x36, 0x38, 0x3a, 0x38,\n    0x3d, 0x3c, 0x3d, 0x40, 0x47, 0x5b, 0x7f, 0x9f, 0xab, 0xa1, 0x8e, 0x7c, 0x75, 0x78, 0x79, 0x76,\n    0x70, 0x68, 0x5f, 0x5c, 0x5c, 0x5b, 0x5a, 0x5a, 0x58, 0x58, 0x58, 0x5a, 0x5b, 0x5d, 0x62, 0x68,\n    0x73, 0x78, 0x77, 0x73, 0x71, 0x69, 0x61, 0x60, 0x63, 0x66, 0x6c, 0x73, 0x76, 0x6f, 0x61, 0x56,\n    0x54, 0x56, 0x5b, 0x62, 0x67, 0x68, 0x6b, 0x6f, 0x77, 0x76, 0x73, 0x70, 0x6e, 0x6d, 0x6d, 0x6d,\n    0x64, 0x57, 0x4f, 0x4f, 0x64, 0x96, 0xbd, 0xc0, 0xa5, 0x81, 0x68, 0x68, 0x68, 0x67, 0x6d, 0x72,\n    0x74, 0x76, 0x78, 0x77, 0x76, 0x76, 0x72, 0x6e, 0x6e, 0x71, 0x75, 0x77, 0x77, 0x76, 0x75, 0x75,\n    0x77, 0x77, 0x77, 0x7a, 0x82, 0x8b, 0x8d, 0x8a, 0x71, 0x65, 0x5e, 0x62, 0x60, 0x57, 0x54, 0x5a,\n    0x5c, 0x50, 0x48, 0x47, 0x5a, 0x7f, 0x8d, 0x7a, 0x4e, 0x3f, 0x38, 0x3a, 0x38, 0x3c, 0x47, 0x4e,\n    0x59, 0x58, 0x56, 0x59, 0x65, 0x73, 0x7c, 0x7e, 0x76, 0x68, 0x5a, 0x56, 0x59, 0x62, 0x7a, 0x94,\n    0x92, 0x7e, 0x6c, 0x5e, 0x54, 0x59, 0x73, 0x8b, 0x87, 0x79, 0x6f, 0x6e, 0x74, 0x87, 0x9a, 0xa1,\n    0xa3, 0x92, 0x87, 0x8c, 0x90, 0x89, 0x83, 0x82, 0x92, 0x94, 0x97, 0x99, 0x9c, 0x9d, 0x9d, 0x9d,\n    0x92, 0x8a, 0x76, 0x53, 0x37, 0x3a, 0x54, 0x66, 0x76, 0x6f, 0x65, 0x5e, 0x5b, 0x53, 0x4c, 0x4d,\n    0x49, 0x41, 0x3a, 0x35, 0x30, 0x2b, 0x28, 0x29, 0x2c, 0x2b, 0x29, 0x27, 0x2a, 0x32, 0x3b, 0x3f,\n    0x42, 0x42, 0x3f, 0x3d, 0x3d, 0x3d, 0x37, 0x31, 0x26, 0x2a, 0x2a, 0x22, 0x19, 0x16, 0x1e, 0x27,\n    0x2f, 0x3a, 0x45, 0x48, 0x45, 0x40, 0x3e, 0x3d, 0x3b, 0x33, 0x2a, 0x26, 0x21, 0x1b, 0x18, 0x17,\n    0x59, 0x59, 0x59, 0x59, 0x59, 0x5a, 0x5a, 0x5b, 0x5d, 0x5d, 0x5d, 0x5b, 0x59, 0x57, 0x56, 0x57,\n    0x52, 0x54, 0x54, 0x50, 0x44, 0x39, 0x39, 0x3e, 0x48, 0x4f, 0x4f, 0x48, 0x46, 0x4c, 0x4e, 0x4b,\n    0x44, 0x3e, 0x3d, 0x43, 0x49, 0x50, 0x5b, 0x66, 0x6d, 0x69, 0x57, 0x48, 0x4a, 0x4c, 0x45, 0x40,\n    0x41, 0x46, 0x49, 0x47, 0x44, 0x41, 0x3b, 0x35, 0x39, 0x38, 0x37, 0x39, 0x3c, 0x3e, 0x3e, 0x3e,\n    0x4f, 0x57, 0x63, 0x73, 0x86, 0x8b, 0x76, 0x5c, 0x56, 0x4a, 0x42, 0x3e, 0x3e, 0x44, 0x4a, 0x48,\n    0x40, 0x3d, 0x41, 0x45, 0x43, 0x43, 0x44, 0x42, 0x48, 0x64, 0x75, 0x73, 0x5d, 0x46, 0x3c, 0x2c,\n    0x37, 0x37, 0x38, 0x38, 0x34, 0x31, 0x35, 0x3b, 0x42, 0x48, 0x51, 0x60, 0x52, 0x45, 0x64, 0xc2,\n    0xe0, 0xe5, 0xd8, 0xd6, 0xdd, 0xd4, 0xaa, 0x6f, 0x55, 0x53, 0x52, 0x52, 0x53, 0x53, 0x51, 0x51,\n    0x50, 0x5b, 0x80, 0xaa, 0xac, 0x89, 0x6d, 0x6a, 0x70, 0x63, 0x59, 0x5e, 0x72, 0x81, 0x80, 0x77,\n    0x53, 0x3c, 0x30, 0x31, 0x2f, 0x30, 0x34, 0x33, 0x3c, 0x36, 0x32, 0x33, 0x3d, 0x59, 0x86, 0xac,\n    0xb5, 0xae, 0x95, 0x81, 0x86, 0x8d, 0x7e, 0x6a, 0x4f, 0x50, 0x54, 0x5c, 0x6c, 0x88, 0xaa, 0xc4,\n    0xcb, 0xcf, 0xc6, 0xb2, 0x9a, 0x80, 0x70, 0x6e, 0x6f, 0x76, 0x76, 0x6e, 0x6c, 0x73, 0x77, 0x75,\n    0x80, 0x81, 0x7b, 0x6c, 0x5f, 0x60, 0x67, 0x6d, 0x70, 0x69, 0x62, 0x59, 0x58, 0x66, 0x77, 0x80,\n    0x80, 0x83, 0x84, 0x85, 0x8d, 0x95, 0x94, 0x8d, 0x8f, 0x91, 0x8f, 0x8f, 0x90, 0x93, 0xa4, 0xbd,\n    0xbe, 0xac, 0x97, 0x98, 0x9b, 0x98, 0x9c, 0x96, 0x98, 0x8e, 0x87, 0x84, 0x85, 0x8e, 0x93, 0x8d,\n    0x89, 0x86, 0x82, 0x80, 0x85, 0x8c, 0x8e, 0x8c, 0x7b, 0x6f, 0x66, 0x5e, 0x53, 0x4d, 0x48, 0x40,\n    0x36, 0x32, 0x34, 0x3e, 0x46, 0x46, 0x45, 0x46, 0x3f, 0x42, 0x3a, 0x32, 0x33, 0x38, 0x50, 0x74,\n    0x78, 0x6d, 0x61, 0x5e, 0x63, 0x67, 0x64, 0x5f, 0x69, 0x79, 0x7c, 0x6b, 0x5f, 0x64, 0x6e, 0x71,\n    0x5f, 0x5a, 0x57, 0x59, 0x60, 0x64, 0x63, 0x5f, 0x64, 0x76, 0x8f, 0x95, 0x99, 0x8e, 0x74, 0x6b,\n    0x52, 0x5a, 0x59, 0x5a, 0x4c, 0x63, 0x76, 0x81, 0x76, 0x6e, 0x6a, 0x6c, 0x6d, 0x72, 0x74, 0x6d,\n    0x60, 0x5a, 0x52, 0x4a, 0x47, 0x47, 0x4b, 0x4e, 0x57, 0x5b, 0x61, 0x69, 0x6f, 0x72, 0x73, 0x73,\n    0x75, 0x77, 0x7e, 0x7f, 0x78, 0x77, 0x7c, 0x7d, 0x7b, 0x79, 0x77, 0x75, 0x74, 0x73, 0x72, 0x71,\n    0x74, 0x6d, 0x69, 0x68, 0x66, 0x61, 0x5f, 0x5f, 0x5d, 0x60, 0x5f, 0x5a, 0x5b, 0x60, 0x61, 0x5e,\n    0x55, 0x52, 0x4e, 0x4c, 0x4e, 0x52, 0x53, 0x52, 0x55, 0x54, 0x54, 0x53, 0x51, 0x52, 0x52, 0x50,\n    0x49, 0x4b, 0x4b, 0x47, 0x42, 0x41, 0x44, 0x48, 0x4a, 0x4e, 0x4c, 0x43, 0x3d, 0x3c, 0x39, 0x34,\n    0x36, 0x36, 0x3a, 0x3e, 0x3e, 0x41, 0x4d, 0x5c, 0x6e, 0x77, 0x7d, 0x7b, 0x7a, 0x7b, 0x7a, 0x75,\n    0x70, 0x68, 0x60, 0x5d, 0x5d, 0x5c, 0x5b, 0x5b, 0x5a, 0x59, 0x5a, 0x5b, 0x5b, 0x5d, 0x62, 0x69,\n    0x75, 0x7a, 0x7a, 0x78, 0x75, 0x6b, 0x61, 0x61, 0x69, 0x69, 0x6d, 0x72, 0x75, 0x6f, 0x61, 0x55,\n    0x57, 0x56, 0x5f, 0x6f, 0x71, 0x69, 0x6c, 0x77, 0x8a, 0x92, 0x91, 0x88, 0x87, 0x90, 0x93, 0x8d,\n    0x77, 0x60, 0x4d, 0x4b, 0x65, 0x9b, 0xbf, 0xbd, 0x9f, 0x7b, 0x63, 0x64, 0x66, 0x66, 0x6b, 0x70,\n    0x75, 0x77, 0x79, 0x79, 0x7a, 0x7a, 0x77, 0x72, 0x73, 0x74, 0x75, 0x75, 0x75, 0x76, 0x76, 0x77,\n    0x75, 0x76, 0x77, 0x79, 0x7f, 0x84, 0x83, 0x80, 0x6c, 0x63, 0x5f, 0x62, 0x5e, 0x54, 0x54, 0x5b,\n    0x5a, 0x51, 0x4b, 0x4a, 0x5c, 0x82, 0x8e, 0x76, 0x47, 0x40, 0x3d, 0x3a, 0x39, 0x44, 0x4f, 0x4f,\n    0x59, 0x59, 0x58, 0x5b, 0x65, 0x72, 0x7a, 0x7c, 0x7c, 0x6f, 0x64, 0x5e, 0x59, 0x5d, 0x6c, 0x7b,\n    0x78, 0x6a, 0x66, 0x67, 0x64, 0x6d, 0x7e, 0x87, 0x86, 0x83, 0x7f, 0x73, 0x5e, 0x4d, 0x3b, 0x29,\n    0x39, 0x3b, 0x4a, 0x63, 0x76, 0x7d, 0x83, 0x8a, 0x8a, 0x82, 0x77, 0x72, 0x74, 0x79, 0x7f, 0x83,\n    0x79, 0x69, 0x53, 0x3d, 0x39, 0x51, 0x67, 0x67, 0x5d, 0x45, 0x46, 0x52, 0x4a, 0x41, 0x3f, 0x38,\n    0x32, 0x2e, 0x2b, 0x2d, 0x2e, 0x2c, 0x29, 0x27, 0x24, 0x25, 0x23, 0x22, 0x28, 0x33, 0x3a, 0x3c,\n    0x3a, 0x3c, 0x3b, 0x39, 0x38, 0x36, 0x31, 0x2b, 0x29, 0x24, 0x1d, 0x19, 0x18, 0x18, 0x18, 0x16,\n    0x13, 0x19, 0x24, 0x2d, 0x32, 0x33, 0x31, 0x31, 0x29, 0x23, 0x1a, 0x14, 0x16, 0x1c, 0x1e, 0x1c,\n    0x59, 0x58, 0x58, 0x58, 0x58, 0x59, 0x5a, 0x5b, 0x5d, 0x5d, 0x5d, 0x5b, 0x59, 0x57, 0x57, 0x57,\n    0x52, 0x51, 0x50, 0x4a, 0x3e, 0x36, 0x3b, 0x45, 0x4f, 0x53, 0x53, 0x4e, 0x4c, 0x4e, 0x4e, 0x4c,\n    0x46, 0x40, 0x3e, 0x43, 0x48, 0x4e, 0x5b, 0x69, 0x72, 0x72, 0x60, 0x4a, 0x46, 0x49, 0x48, 0x46,\n    0x37, 0x3e, 0x45, 0x45, 0x41, 0x3c, 0x38, 0x35, 0x34, 0x35, 0x39, 0x3b, 0x3b, 0x39, 0x3c, 0x40,\n    0x52, 0x58, 0x68, 0x7f, 0x8e, 0x84, 0x65, 0x49, 0x43, 0x45, 0x4c, 0x4d, 0x4b, 0x4e, 0x4e, 0x46,\n    0x43, 0x3c, 0x3e, 0x42, 0x3d, 0x3b, 0x40, 0x42, 0x3d, 0x4c, 0x5a, 0x5e, 0x49, 0x36, 0x3a, 0x38,\n    0x43, 0x41, 0x40, 0x41, 0x3c, 0x37, 0x39, 0x3f, 0x47, 0x4b, 0x51, 0x59, 0x4c, 0x49, 0x58, 0x8f,\n    0x9d, 0xad, 0xa4, 0xa1, 0xb6, 0xc7, 0xaa, 0x6d, 0x57, 0x57, 0x59, 0x5c, 0x5c, 0x58, 0x56, 0x56,\n    0x55, 0x58, 0x6c, 0x8d, 0xa4, 0x9b, 0x7b, 0x61, 0x5d, 0x5d, 0x57, 0x50, 0x53, 0x5e, 0x64, 0x63,\n    0x53, 0x36, 0x2c, 0x32, 0x31, 0x31, 0x32, 0x2b, 0x30, 0x34, 0x3a, 0x3f, 0x46, 0x5b, 0x83, 0xa6,\n    0xb8, 0xc7, 0xb2, 0x88, 0x7a, 0x80, 0x73, 0x5b, 0x49, 0x4e, 0x52, 0x55, 0x5d, 0x72, 0x91, 0xa9,\n    0xb7, 0xc7, 0xcb, 0xb9, 0x99, 0x76, 0x61, 0x5f, 0x6b, 0x74, 0x76, 0x74, 0x79, 0x86, 0x8b, 0x87,\n    0x82, 0x88, 0x89, 0x80, 0x70, 0x66, 0x6c, 0x77, 0x84, 0x88, 0x84, 0x74, 0x65, 0x62, 0x6b, 0x74,\n    0x78, 0x7b, 0x80, 0x87, 0x91, 0x98, 0x98, 0x94, 0x92, 0x94, 0x92, 0x91, 0x8e, 0x8d, 0x9b, 0xb3,\n    0xb6, 0xad, 0xa5, 0xab, 0xa9, 0xa1, 0x9d, 0x8e, 0x8a, 0x8e, 0x95, 0x98, 0x99, 0x9d, 0x96, 0x86,\n    0x7f, 0x82, 0x83, 0x84, 0x8d, 0x97, 0x94, 0x8b, 0x7c, 0x71, 0x68, 0x5e, 0x4e, 0x46, 0x44, 0x42,\n    0x38, 0x35, 0x36, 0x3d, 0x44, 0x47, 0x46, 0x46, 0x35, 0x35, 0x30, 0x2d, 0x33, 0x42, 0x5b, 0x74,\n    0x6d, 0x65, 0x5f, 0x61, 0x69, 0x6d, 0x69, 0x64, 0x67, 0x77, 0x7c, 0x6d, 0x62, 0x65, 0x68, 0x66,\n    0x5a, 0x57, 0x55, 0x59, 0x5f, 0x60, 0x5c, 0x56, 0x5d, 0x72, 0x94, 0x99, 0xa1, 0x91, 0x76, 0x6a,\n    0x65, 0x64, 0x68, 0x66, 0x55, 0x5f, 0x73, 0x7c, 0x67, 0x64, 0x62, 0x60, 0x62, 0x6c, 0x6c, 0x60,\n    0x59, 0x52, 0x4a, 0x48, 0x4a, 0x51, 0x5a, 0x62, 0x6f, 0x6c, 0x6b, 0x6c, 0x6d, 0x6d, 0x6e, 0x70,\n    0x75, 0x78, 0x80, 0x81, 0x78, 0x76, 0x7b, 0x7b, 0x80, 0x7c, 0x77, 0x74, 0x73, 0x73, 0x71, 0x70,\n    0x72, 0x6d, 0x6b, 0x6b, 0x65, 0x5a, 0x56, 0x59, 0x5a, 0x5c, 0x5c, 0x5c, 0x5d, 0x5f, 0x5f, 0x5e,\n    0x56, 0x55, 0x52, 0x4f, 0x52, 0x58, 0x59, 0x55, 0x53, 0x4f, 0x50, 0x50, 0x4c, 0x50, 0x52, 0x4b,\n    0x47, 0x48, 0x47, 0x43, 0x3e, 0x3e, 0x43, 0x49, 0x47, 0x48, 0x47, 0x43, 0x40, 0x3e, 0x3a, 0x36,\n    0x38, 0x37, 0x39, 0x3b, 0x3a, 0x39, 0x3a, 0x3c, 0x3f, 0x52, 0x66, 0x72, 0x78, 0x7a, 0x78, 0x74,\n    0x6f, 0x67, 0x60, 0x5d, 0x5e, 0x5d, 0x5c, 0x5c, 0x5b, 0x5b, 0x5b, 0x5c, 0x5c, 0x5d, 0x64, 0x6b,\n    0x79, 0x7e, 0x7d, 0x7a, 0x76, 0x69, 0x5f, 0x60, 0x67, 0x69, 0x6e, 0x73, 0x75, 0x6e, 0x62, 0x59,\n    0x56, 0x55, 0x60, 0x74, 0x7a, 0x76, 0x7c, 0x8c, 0x8e, 0x97, 0x97, 0x8e, 0x91, 0x9f, 0xa3, 0x9b,\n    0x7d, 0x62, 0x4b, 0x4a, 0x68, 0x9f, 0xc0, 0xba, 0x9c, 0x78, 0x61, 0x64, 0x67, 0x68, 0x6d, 0x72,\n    0x75, 0x77, 0x78, 0x7a, 0x7c, 0x7d, 0x79, 0x73, 0x76, 0x75, 0x74, 0x74, 0x74, 0x75, 0x77, 0x78,\n    0x76, 0x78, 0x79, 0x7a, 0x7c, 0x7c, 0x78, 0x73, 0x6a, 0x66, 0x65, 0x65, 0x5f, 0x56, 0x55, 0x5c,\n    0x57, 0x51, 0x4d, 0x4c, 0x61, 0x88, 0x90, 0x75, 0x44, 0x42, 0x40, 0x3c, 0x3d, 0x4d, 0x5a, 0x59,\n    0x5b, 0x5c, 0x5e, 0x61, 0x69, 0x75, 0x7d, 0x80, 0x85, 0x7b, 0x74, 0x6b, 0x60, 0x63, 0x6c, 0x6f,\n    0x6d, 0x60, 0x64, 0x6a, 0x64, 0x6c, 0x80, 0x88, 0x80, 0x79, 0x71, 0x5f, 0x44, 0x39, 0x45, 0x53,\n    0x53, 0x5c, 0x65, 0x6a, 0x6b, 0x66, 0x5a, 0x4e, 0x42, 0x3b, 0x36, 0x3b, 0x47, 0x54, 0x5f, 0x66,\n    0x6c, 0x4c, 0x41, 0x4c, 0x4f, 0x57, 0x66, 0x6d, 0x40, 0x28, 0x32, 0x44, 0x3a, 0x35, 0x38, 0x2b,\n    0x2e, 0x29, 0x26, 0x27, 0x27, 0x25, 0x22, 0x20, 0x22, 0x20, 0x1d, 0x1c, 0x21, 0x28, 0x2c, 0x2c,\n    0x2c, 0x2f, 0x31, 0x2f, 0x2d, 0x2b, 0x27, 0x22, 0x21, 0x1e, 0x19, 0x16, 0x14, 0x14, 0x13, 0x12,\n    0x1b, 0x19, 0x1a, 0x1e, 0x21, 0x20, 0x20, 0x20, 0x1d, 0x1c, 0x18, 0x14, 0x16, 0x1d, 0x1f, 0x1c,\n    0x56, 0x55, 0x55, 0x55, 0x57, 0x59, 0x5a, 0x5c, 0x5d, 0x5e, 0x5d, 0x5c, 0x5a, 0x58, 0x58, 0x59,\n    0x54, 0x4e, 0x49, 0x44, 0x3d, 0x39, 0x41, 0x4d, 0x54, 0x54, 0x54, 0x52, 0x50, 0x4e, 0x4e, 0x4d,\n    0x46, 0x3f, 0x3e, 0x44, 0x49, 0x4f, 0x5d, 0x6d, 0x90, 0x8c, 0x70, 0x4c, 0x3e, 0x3e, 0x3e, 0x3d,\n    0x3b, 0x3d, 0x40, 0x42, 0x40, 0x3e, 0x3f, 0x41, 0x3a, 0x3f, 0x46, 0x48, 0x43, 0x3e, 0x42, 0x4a,\n    0x43, 0x4a, 0x57, 0x65, 0x6c, 0x69, 0x5c, 0x52, 0x56, 0x4b, 0x45, 0x47, 0x4a, 0x53, 0x59, 0x56,\n    0x5c, 0x47, 0x3a, 0x36, 0x30, 0x30, 0x3b, 0x44, 0x48, 0x53, 0x5b, 0x5b, 0x43, 0x37, 0x44, 0x44,\n    0x46, 0x44, 0x47, 0x4b, 0x48, 0x41, 0x3e, 0x40, 0x42, 0x43, 0x43, 0x41, 0x3b, 0x4e, 0x4b, 0x4e,\n    0x5a, 0x6b, 0x6c, 0x75, 0x8f, 0xa2, 0x95, 0x6d, 0x54, 0x53, 0x54, 0x55, 0x53, 0x4f, 0x50, 0x54,\n    0x58, 0x59, 0x61, 0x72, 0x84, 0x85, 0x70, 0x59, 0x4c, 0x51, 0x4f, 0x4a, 0x50, 0x5e, 0x65, 0x62,\n    0x50, 0x33, 0x2d, 0x36, 0x33, 0x30, 0x30, 0x26, 0x26, 0x2f, 0x3c, 0x46, 0x4c, 0x54, 0x68, 0x7a,\n    0x97, 0xaa, 0x9e, 0x77, 0x5f, 0x59, 0x50, 0x43, 0x47, 0x55, 0x60, 0x60, 0x5c, 0x63, 0x77, 0x89,\n    0xb7, 0xc7, 0xc9, 0xb4, 0x92, 0x6c, 0x58, 0x57, 0x5b, 0x60, 0x66, 0x6c, 0x76, 0x81, 0x87, 0x88,\n    0x8a, 0x8c, 0x90, 0x8f, 0x7e, 0x6c, 0x6a, 0x75, 0x7d, 0x8c, 0x94, 0x90, 0x87, 0x7b, 0x73, 0x73,\n    0x7e, 0x7f, 0x83, 0x86, 0x84, 0x7f, 0x7a, 0x79, 0x7f, 0x81, 0x82, 0x84, 0x83, 0x7d, 0x82, 0x93,\n    0xa1, 0xa3, 0xa7, 0xaf, 0xa9, 0xa6, 0xa8, 0x98, 0x90, 0xa2, 0xb1, 0xac, 0xa1, 0xa1, 0x9d, 0x8f,\n    0x91, 0x97, 0x96, 0x94, 0x9c, 0xa7, 0xa0, 0x8e, 0x83, 0x79, 0x71, 0x65, 0x51, 0x44, 0x43, 0x42,\n    0x3b, 0x3b, 0x3c, 0x3f, 0x45, 0x49, 0x46, 0x40, 0x32, 0x2d, 0x2c, 0x2d, 0x36, 0x4c, 0x5f, 0x66,\n    0x5a, 0x5a, 0x5d, 0x65, 0x6e, 0x71, 0x6e, 0x69, 0x66, 0x74, 0x78, 0x6c, 0x65, 0x67, 0x66, 0x5f,\n    0x53, 0x54, 0x56, 0x59, 0x5c, 0x5b, 0x57, 0x54, 0x5d, 0x73, 0x9a, 0x9d, 0x9c, 0x84, 0x7a, 0x82,\n    0x7c, 0x66, 0x5f, 0x54, 0x48, 0x4d, 0x63, 0x67, 0x56, 0x50, 0x50, 0x51, 0x54, 0x5b, 0x5b, 0x52,\n    0x55, 0x51, 0x4f, 0x54, 0x5b, 0x62, 0x6a, 0x70, 0x7e, 0x78, 0x74, 0x75, 0x76, 0x75, 0x77, 0x79,\n    0x7a, 0x7a, 0x7f, 0x7f, 0x76, 0x75, 0x78, 0x77, 0x7f, 0x7b, 0x77, 0x76, 0x77, 0x76, 0x73, 0x70,\n    0x6f, 0x72, 0x74, 0x71, 0x69, 0x60, 0x5d, 0x5e, 0x5f, 0x5f, 0x61, 0x64, 0x65, 0x63, 0x62, 0x63,\n    0x61, 0x61, 0x5e, 0x59, 0x5c, 0x62, 0x60, 0x59, 0x57, 0x51, 0x52, 0x51, 0x4d, 0x52, 0x54, 0x4a,\n    0x48, 0x47, 0x46, 0x44, 0x43, 0x45, 0x49, 0x4c, 0x40, 0x3c, 0x3b, 0x3e, 0x40, 0x3e, 0x3c, 0x3b,\n    0x3e, 0x3c, 0x38, 0x34, 0x34, 0x38, 0x3b, 0x3b, 0x38, 0x41, 0x4e, 0x5a, 0x65, 0x6d, 0x72, 0x73,\n    0x6e, 0x66, 0x5f, 0x5d, 0x5e, 0x5d, 0x5c, 0x5c, 0x5b, 0x5b, 0x5d, 0x5e, 0x5d, 0x5f, 0x67, 0x6f,\n    0x7d, 0x80, 0x7e, 0x7b, 0x76, 0x69, 0x60, 0x63, 0x68, 0x70, 0x7a, 0x7c, 0x76, 0x6b, 0x61, 0x5b,\n    0x5d, 0x5c, 0x61, 0x6c, 0x74, 0x7a, 0x84, 0x8e, 0x89, 0x8b, 0x89, 0x88, 0x8e, 0x97, 0x98, 0x93,\n    0x75, 0x5d, 0x4a, 0x4d, 0x6c, 0xa2, 0xc1, 0xba, 0x9b, 0x77, 0x61, 0x65, 0x6a, 0x6b, 0x70, 0x74,\n    0x76, 0x78, 0x79, 0x7b, 0x7d, 0x7e, 0x79, 0x73, 0x75, 0x75, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75,\n    0x75, 0x77, 0x7a, 0x7b, 0x7d, 0x7c, 0x77, 0x71, 0x6d, 0x6d, 0x6c, 0x6a, 0x63, 0x5c, 0x59, 0x5a,\n    0x57, 0x52, 0x4e, 0x4f, 0x66, 0x8f, 0x93, 0x72, 0x46, 0x42, 0x43, 0x42, 0x41, 0x4a, 0x54, 0x54,\n    0x57, 0x5b, 0x5f, 0x63, 0x6b, 0x77, 0x81, 0x86, 0x86, 0x7f, 0x7c, 0x74, 0x71, 0x83, 0x96, 0x97,\n    0x9a, 0x6d, 0x57, 0x5d, 0x5c, 0x5d, 0x61, 0x5c, 0x6b, 0x6a, 0x69, 0x5f, 0x53, 0x57, 0x67, 0x70,\n    0x58, 0x57, 0x54, 0x4c, 0x44, 0x3e, 0x3c, 0x3b, 0x5b, 0x5c, 0x62, 0x6c, 0x71, 0x6b, 0x62, 0x5d,\n    0x49, 0x4f, 0x56, 0x51, 0x52, 0x6c, 0x73, 0x57, 0x33, 0x32, 0x38, 0x37, 0x2e, 0x2e, 0x30, 0x29,\n    0x2f, 0x2d, 0x2d, 0x2f, 0x2e, 0x2c, 0x2c, 0x2d, 0x21, 0x1c, 0x17, 0x17, 0x19, 0x1c, 0x1d, 0x1d,\n    0x23, 0x27, 0x29, 0x27, 0x25, 0x22, 0x1f, 0x1b, 0x16, 0x18, 0x17, 0x15, 0x11, 0x10, 0x13, 0x16,\n    0x15, 0x12, 0x13, 0x17, 0x19, 0x1a, 0x1c, 0x1f, 0x19, 0x17, 0x16, 0x17, 0x19, 0x1e, 0x27, 0x30,\n    0x52, 0x52, 0x53, 0x54, 0x56, 0x58, 0x5b, 0x5c, 0x5e, 0x5e, 0x5e, 0x5d, 0x5b, 0x59, 0x59, 0x5a,\n    0x56, 0x4c, 0x43, 0x40, 0x3d, 0x3d, 0x46, 0x52, 0x56, 0x54, 0x53, 0x54, 0x52, 0x4e, 0x4d, 0x4e,\n    0x45, 0x3e, 0x3d, 0x45, 0x4b, 0x51, 0x60, 0x71, 0x86, 0x84, 0x6b, 0x4a, 0x3d, 0x3e, 0x3e, 0x3b,\n    0x3b, 0x36, 0x35, 0x3c, 0x43, 0x42, 0x40, 0x3f, 0x3a, 0x41, 0x49, 0x49, 0x3e, 0x35, 0x39, 0x42,\n    0x4f, 0x59, 0x5d, 0x55, 0x4d, 0x51, 0x5e, 0x68, 0x5f, 0x4f, 0x53, 0x6e, 0x88, 0x98, 0x9b, 0x95,\n    0x81, 0x62, 0x4c, 0x45, 0x3b, 0x36, 0x3b, 0x43, 0x51, 0x63, 0x73, 0x7b, 0x74, 0x74, 0x6f, 0x4f,\n    0x3a, 0x3b, 0x41, 0x4a, 0x4a, 0x41, 0x3a, 0x3a, 0x40, 0x38, 0x3e, 0x45, 0x3b, 0x47, 0x43, 0x44,\n    0x52, 0x51, 0x4e, 0x5f, 0x71, 0x76, 0x78, 0x6f, 0x58, 0x54, 0x51, 0x4d, 0x48, 0x46, 0x4c, 0x55,\n    0x50, 0x4f, 0x55, 0x5e, 0x5f, 0x56, 0x50, 0x50, 0x4c, 0x52, 0x57, 0x61, 0x7a, 0x93, 0x96, 0x89,\n    0x62, 0x3e, 0x30, 0x31, 0x27, 0x26, 0x2d, 0x28, 0x2e, 0x2f, 0x35, 0x41, 0x4b, 0x52, 0x59, 0x5f,\n    0x62, 0x5e, 0x54, 0x51, 0x56, 0x52, 0x4b, 0x4a, 0x60, 0x6d, 0x73, 0x69, 0x5e, 0x69, 0x8a, 0xa8,\n    0xbc, 0xc8, 0xc8, 0xb2, 0x90, 0x6b, 0x54, 0x51, 0x4e, 0x4f, 0x57, 0x65, 0x70, 0x76, 0x7d, 0x84,\n    0x85, 0x82, 0x86, 0x8b, 0x7f, 0x6b, 0x67, 0x70, 0x86, 0x92, 0x9a, 0x9b, 0x99, 0x8f, 0x81, 0x7c,\n    0x77, 0x79, 0x7e, 0x80, 0x76, 0x69, 0x64, 0x67, 0x64, 0x67, 0x6b, 0x72, 0x75, 0x6e, 0x6c, 0x76,\n    0x7b, 0x83, 0x8b, 0x93, 0x8e, 0x94, 0xa4, 0x9c, 0xa5, 0xb0, 0xb3, 0xa5, 0x9d, 0xa7, 0xaa, 0x9d,\n    0xa7, 0xab, 0xa4, 0x9b, 0xa3, 0xb2, 0xac, 0x98, 0x8a, 0x81, 0x7a, 0x6d, 0x55, 0x45, 0x42, 0x41,\n    0x3d, 0x40, 0x41, 0x43, 0x48, 0x4c, 0x46, 0x3c, 0x37, 0x2e, 0x2d, 0x30, 0x38, 0x51, 0x60, 0x59,\n    0x4e, 0x54, 0x5e, 0x6a, 0x73, 0x75, 0x71, 0x6c, 0x6f, 0x76, 0x72, 0x63, 0x5e, 0x68, 0x6e, 0x6a,\n    0x5a, 0x5e, 0x63, 0x66, 0x65, 0x63, 0x62, 0x62, 0x5c, 0x70, 0x9a, 0x9c, 0x94, 0x79, 0x85, 0xa7,\n    0xb7, 0x8b, 0x73, 0x59, 0x4d, 0x4a, 0x5e, 0x59, 0x61, 0x55, 0x52, 0x56, 0x58, 0x5c, 0x5e, 0x5a,\n    0x55, 0x54, 0x59, 0x64, 0x6d, 0x70, 0x72, 0x74, 0x74, 0x70, 0x70, 0x76, 0x7a, 0x7b, 0x7d, 0x7f,\n    0x86, 0x81, 0x80, 0x7d, 0x76, 0x75, 0x79, 0x76, 0x7b, 0x78, 0x76, 0x77, 0x7a, 0x7a, 0x76, 0x72,\n    0x6e, 0x7a, 0x80, 0x7a, 0x72, 0x6f, 0x6e, 0x6b, 0x6a, 0x67, 0x6a, 0x70, 0x70, 0x6b, 0x69, 0x6b,\n    0x6d, 0x6e, 0x69, 0x62, 0x63, 0x68, 0x64, 0x5a, 0x62, 0x5a, 0x5a, 0x59, 0x53, 0x59, 0x5b, 0x4e,\n    0x4e, 0x4a, 0x46, 0x45, 0x46, 0x48, 0x49, 0x48, 0x44, 0x3c, 0x39, 0x3d, 0x41, 0x3e, 0x3d, 0x3e,\n    0x3f, 0x40, 0x3c, 0x35, 0x33, 0x36, 0x36, 0x31, 0x3f, 0x39, 0x37, 0x3f, 0x4e, 0x5e, 0x6d, 0x76,\n    0x6d, 0x66, 0x5f, 0x5d, 0x5e, 0x5d, 0x5c, 0x5c, 0x5b, 0x5b, 0x5d, 0x5f, 0x5f, 0x61, 0x6a, 0x72,\n    0x7f, 0x81, 0x7f, 0x7c, 0x77, 0x6b, 0x65, 0x6a, 0x86, 0x92, 0x9d, 0x9a, 0x8a, 0x77, 0x6b, 0x67,\n    0x6a, 0x69, 0x64, 0x5f, 0x64, 0x70, 0x77, 0x78, 0x79, 0x72, 0x6f, 0x75, 0x7c, 0x7c, 0x79, 0x78,\n    0x6a, 0x56, 0x4a, 0x50, 0x6f, 0xa4, 0xc2, 0xbb, 0x98, 0x74, 0x5e, 0x63, 0x68, 0x6a, 0x6e, 0x72,\n    0x78, 0x7a, 0x7b, 0x7c, 0x7e, 0x7f, 0x79, 0x73, 0x73, 0x74, 0x74, 0x75, 0x75, 0x75, 0x74, 0x73,\n    0x71, 0x75, 0x79, 0x7c, 0x7f, 0x80, 0x7c, 0x77, 0x71, 0x72, 0x71, 0x6e, 0x68, 0x61, 0x5b, 0x58,\n    0x5a, 0x54, 0x4f, 0x51, 0x6a, 0x93, 0x94, 0x6f, 0x46, 0x40, 0x42, 0x46, 0x41, 0x3e, 0x40, 0x40,\n    0x4e, 0x54, 0x5b, 0x60, 0x67, 0x74, 0x7f, 0x85, 0x81, 0x7c, 0x7b, 0x77, 0x80, 0xa6, 0xca, 0xd1,\n    0xa2, 0x71, 0x5d, 0x61, 0x4f, 0x3d, 0x3e, 0x40, 0x5a, 0x68, 0x75, 0x78, 0x81, 0x8d, 0x7d, 0x5a,\n    0x5c, 0x63, 0x71, 0x76, 0x62, 0x4b, 0x53, 0x6b, 0x73, 0x6e, 0x6b, 0x6b, 0x66, 0x5e, 0x57, 0x55,\n    0x4e, 0x4f, 0x58, 0x58, 0x5a, 0x6b, 0x5e, 0x31, 0x2c, 0x47, 0x4d, 0x40, 0x3c, 0x3f, 0x3e, 0x3d,\n    0x36, 0x37, 0x38, 0x35, 0x2d, 0x24, 0x21, 0x22, 0x20, 0x19, 0x15, 0x19, 0x1e, 0x1f, 0x21, 0x23,\n    0x23, 0x27, 0x28, 0x26, 0x22, 0x1f, 0x1b, 0x18, 0x17, 0x11, 0x0b, 0x0e, 0x16, 0x1a, 0x17, 0x11,\n    0x14, 0x15, 0x1a, 0x1f, 0x1f, 0x1c, 0x1d, 0x21, 0x1e, 0x19, 0x1a, 0x22, 0x29, 0x33, 0x4d, 0x67,\n    0x54, 0x56, 0x57, 0x56, 0x57, 0x5a, 0x5b, 0x5a, 0x5b, 0x5e, 0x5f, 0x5c, 0x5a, 0x5b, 0x5c, 0x5c,\n    0x56, 0x48, 0x40, 0x3d, 0x3c, 0x44, 0x50, 0x55, 0x58, 0x57, 0x54, 0x53, 0x52, 0x51, 0x50, 0x4f,\n    0x4a, 0x44, 0x42, 0x46, 0x4c, 0x53, 0x5b, 0x63, 0x69, 0x60, 0x52, 0x46, 0x3f, 0x3d, 0x3e, 0x3f,\n    0x39, 0x3a, 0x3a, 0x3b, 0x3e, 0x42, 0x44, 0x43, 0x44, 0x48, 0x51, 0x4f, 0x40, 0x41, 0x54, 0x64,\n    0x89, 0xa8, 0xb0, 0x96, 0x8b, 0xa5, 0xae, 0x99, 0x6b, 0x4e, 0x59, 0x96, 0xd1, 0xe8, 0xe5, 0xdc,\n    0xd1, 0xb5, 0x87, 0x4e, 0x33, 0x35, 0x43, 0x5c, 0x86, 0xad, 0xb9, 0x9d, 0x87, 0x87, 0x79, 0x5d,\n    0x45, 0x42, 0x3c, 0x3d, 0x40, 0x3b, 0x34, 0x36, 0x3b, 0x3e, 0x3e, 0x41, 0x43, 0x3e, 0x3e, 0x47,\n    0x54, 0x60, 0x63, 0x68, 0x6a, 0x68, 0x6a, 0x60, 0x62, 0x5b, 0x57, 0x58, 0x56, 0x4f, 0x4d, 0x51,\n    0x4a, 0x4c, 0x4f, 0x4d, 0x48, 0x48, 0x51, 0x5d, 0x68, 0x69, 0x6b, 0x7d, 0xa8, 0xc5, 0xad, 0x7f,\n    0x54, 0x3e, 0x2e, 0x28, 0x25, 0x27, 0x2b, 0x2a, 0x29, 0x2c, 0x2d, 0x37, 0x44, 0x43, 0x49, 0x5e,\n    0x76, 0x6f, 0x67, 0x67, 0x70, 0x74, 0x69, 0x5a, 0x78, 0x98, 0xa6, 0x9c, 0x9b, 0xa9, 0xb5, 0xba,\n    0xca, 0xce, 0xc2, 0xac, 0x8f, 0x68, 0x52, 0x57, 0x5a, 0x61, 0x6a, 0x6d, 0x6c, 0x6c, 0x70, 0x74,\n    0x75, 0x7a, 0x7e, 0x7c, 0x77, 0x6f, 0x65, 0x5c, 0x7d, 0x8e, 0x9d, 0x9e, 0x94, 0x89, 0x81, 0x7b,\n    0x7c, 0x79, 0x7a, 0x7d, 0x75, 0x66, 0x5d, 0x5e, 0x5c, 0x61, 0x66, 0x6b, 0x6d, 0x70, 0x73, 0x75,\n    0x70, 0x73, 0x74, 0x73, 0x76, 0x7d, 0x84, 0x88, 0x98, 0xa9, 0xac, 0x9f, 0x9d, 0xa9, 0xab, 0xa1,\n    0xa9, 0xae, 0xa5, 0x9f, 0xac, 0xb7, 0xaa, 0x96, 0x87, 0x85, 0x80, 0x74, 0x60, 0x4c, 0x45, 0x46,\n    0x45, 0x43, 0x42, 0x43, 0x43, 0x42, 0x3e, 0x3a, 0x39, 0x33, 0x32, 0x38, 0x47, 0x5c, 0x65, 0x5f,\n    0x53, 0x53, 0x5c, 0x6d, 0x78, 0x78, 0x75, 0x75, 0x75, 0x72, 0x69, 0x5a, 0x5a, 0x6f, 0x79, 0x70,\n    0x59, 0x61, 0x6c, 0x72, 0x72, 0x73, 0x7d, 0x87, 0x83, 0x94, 0x97, 0x98, 0x97, 0x83, 0x8c, 0xba,\n    0xce, 0xc2, 0xa9, 0x81, 0x51, 0x4c, 0x6a, 0x6e, 0x73, 0x67, 0x5d, 0x5b, 0x59, 0x54, 0x55, 0x59,\n    0x5d, 0x64, 0x6d, 0x74, 0x7b, 0x81, 0x7f, 0x7b, 0x76, 0x7a, 0x7a, 0x79, 0x7c, 0x7b, 0x79, 0x7d,\n    0x87, 0x84, 0x7c, 0x79, 0x7d, 0x7b, 0x76, 0x79, 0x7d, 0x7c, 0x7a, 0x7a, 0x7b, 0x7c, 0x7b, 0x7b,\n    0x7b, 0x7e, 0x7f, 0x7f, 0x7f, 0x7e, 0x79, 0x74, 0x75, 0x70, 0x76, 0x78, 0x70, 0x72, 0x77, 0x72,\n    0x70, 0x72, 0x70, 0x71, 0x73, 0x6e, 0x69, 0x6d, 0x6f, 0x69, 0x62, 0x60, 0x60, 0x61, 0x61, 0x60,\n    0x5a, 0x54, 0x4f, 0x4e, 0x4f, 0x4e, 0x49, 0x44, 0x43, 0x42, 0x41, 0x3f, 0x3d, 0x3d, 0x3e, 0x40,\n    0x40, 0x40, 0x3f, 0x3d, 0x3a, 0x37, 0x35, 0x34, 0x34, 0x34, 0x35, 0x39, 0x3e, 0x47, 0x57, 0x67,\n    0x6a, 0x66, 0x61, 0x5c, 0x59, 0x59, 0x5b, 0x5c, 0x5f, 0x5e, 0x5f, 0x61, 0x62, 0x64, 0x69, 0x6f,\n    0x80, 0x7e, 0x7d, 0x7f, 0x7a, 0x6a, 0x64, 0x6f, 0x99, 0xaf, 0xc1, 0xbd, 0xad, 0xa1, 0x9d, 0x9b,\n    0x99, 0x87, 0x6a, 0x57, 0x5c, 0x6d, 0x77, 0x76, 0x67, 0x64, 0x5e, 0x5b, 0x5d, 0x62, 0x63, 0x62,\n    0x5b, 0x4f, 0x4d, 0x55, 0x79, 0xa6, 0xca, 0xb3, 0x92, 0x75, 0x67, 0x62, 0x64, 0x6c, 0x6d, 0x72,\n    0x75, 0x78, 0x7b, 0x7d, 0x7e, 0x7e, 0x79, 0x74, 0x75, 0x75, 0x76, 0x77, 0x78, 0x78, 0x77, 0x76,\n    0x77, 0x77, 0x76, 0x76, 0x7b, 0x82, 0x85, 0x84, 0x75, 0x72, 0x6e, 0x6a, 0x64, 0x5c, 0x57, 0x56,\n    0x56, 0x5c, 0x58, 0x5b, 0x7a, 0x9c, 0x93, 0x72, 0x4c, 0x49, 0x44, 0x3f, 0x3d, 0x3d, 0x3d, 0x3d,\n    0x42, 0x4c, 0x5a, 0x64, 0x65, 0x64, 0x6c, 0x76, 0x72, 0x73, 0x6c, 0x6c, 0x88, 0xad, 0xb8, 0xad,\n    0x84, 0x69, 0x5c, 0x5e, 0x5f, 0x6a, 0x7c, 0x84, 0x83, 0x76, 0x6f, 0x7d, 0x79, 0x73, 0x57, 0x41,\n    0x53, 0x54, 0x5a, 0x62, 0x69, 0x6b, 0x68, 0x64, 0x4b, 0x3a, 0x32, 0x3d, 0x4c, 0x52, 0x53, 0x55,\n    0x5f, 0x59, 0x56, 0x57, 0x57, 0x4d, 0x3b, 0x2b, 0x35, 0x3d, 0x45, 0x47, 0x46, 0x45, 0x44, 0x42,\n    0x46, 0x3f, 0x33, 0x2a, 0x28, 0x28, 0x22, 0x1b, 0x1d, 0x17, 0x13, 0x13, 0x18, 0x1b, 0x19, 0x16,\n    0x1a, 0x20, 0x1e, 0x19, 0x17, 0x13, 0x0f, 0x11, 0x17, 0x17, 0x18, 0x17, 0x14, 0x13, 0x17, 0x1d,\n    0x1c, 0x19, 0x1c, 0x1e, 0x18, 0x1d, 0x2b, 0x34, 0x46, 0x53, 0x60, 0x64, 0x67, 0x74, 0x89, 0x99,\n    0x54, 0x56, 0x56, 0x56, 0x57, 0x5a, 0x5b, 0x5a, 0x5c, 0x5d, 0x5d, 0x5a, 0x59, 0x5a, 0x59, 0x57,\n    0x51, 0x44, 0x3e, 0x3d, 0x3f, 0x48, 0x53, 0x56, 0x5a, 0x58, 0x55, 0x54, 0x53, 0x52, 0x51, 0x50,\n    0x4b, 0x47, 0x45, 0x49, 0x4f, 0x55, 0x5d, 0x63, 0x6a, 0x5e, 0x4e, 0x43, 0x40, 0x42, 0x44, 0x45,\n    0x3e, 0x39, 0x36, 0x37, 0x39, 0x40, 0x4f, 0x5e, 0x55, 0x5b, 0x67, 0x62, 0x4e, 0x4f, 0x63, 0x6d,\n    0x72, 0x9d, 0xbd, 0xbd, 0xc2, 0xd8, 0xcf, 0xab, 0x73, 0x5b, 0x6b, 0xac, 0xe7, 0xfc, 0xf6, 0xe9,\n    0xd3, 0xa8, 0x77, 0x4d, 0x37, 0x36, 0x4b, 0x74, 0xc2, 0xdf, 0xd9, 0xa7, 0x8b, 0x94, 0x94, 0x81,\n    0x55, 0x49, 0x3a, 0x38, 0x3d, 0x39, 0x34, 0x37, 0x40, 0x41, 0x45, 0x4f, 0x52, 0x46, 0x45, 0x53,\n    0x6d, 0x79, 0x78, 0x71, 0x62, 0x54, 0x56, 0x53, 0x56, 0x57, 0x52, 0x48, 0x46, 0x4c, 0x4f, 0x4c,\n    0x4c, 0x49, 0x48, 0x4d, 0x59, 0x64, 0x6b, 0x6e, 0x67, 0x6c, 0x75, 0x89, 0xa7, 0xb3, 0x99, 0x74,\n    0x4c, 0x3e, 0x39, 0x3c, 0x39, 0x34, 0x2f, 0x28, 0x2a, 0x2d, 0x29, 0x29, 0x2f, 0x38, 0x53, 0x78,\n    0x8d, 0x89, 0x8f, 0xa3, 0xb6, 0xb1, 0x93, 0x77, 0x8d, 0xa5, 0xb8, 0xc0, 0xc4, 0xc4, 0xc6, 0xcd,\n    0xc8, 0xcb, 0xbd, 0xa3, 0x84, 0x62, 0x56, 0x61, 0x6b, 0x6e, 0x6f, 0x6b, 0x66, 0x64, 0x69, 0x6e,\n    0x73, 0x79, 0x80, 0x81, 0x7e, 0x75, 0x67, 0x5b, 0x73, 0x83, 0x91, 0x94, 0x8e, 0x85, 0x7d, 0x77,\n    0x77, 0x76, 0x79, 0x7c, 0x77, 0x6c, 0x64, 0x63, 0x61, 0x68, 0x71, 0x76, 0x75, 0x70, 0x6c, 0x6b,\n    0x6b, 0x6c, 0x6a, 0x65, 0x62, 0x63, 0x64, 0x64, 0x68, 0x78, 0x85, 0x8f, 0xa1, 0xb3, 0xb0, 0xa1,\n    0xae, 0xb1, 0xa7, 0xa0, 0xae, 0xb8, 0xab, 0x98, 0x81, 0x7b, 0x75, 0x71, 0x68, 0x5a, 0x4e, 0x48,\n    0x49, 0x46, 0x42, 0x3f, 0x3d, 0x3c, 0x3a, 0x39, 0x3a, 0x35, 0x38, 0x43, 0x54, 0x68, 0x6f, 0x67,\n    0x54, 0x58, 0x60, 0x6c, 0x77, 0x7c, 0x76, 0x6e, 0x7e, 0x6d, 0x5b, 0x52, 0x5b, 0x71, 0x75, 0x66,\n    0x5d, 0x60, 0x66, 0x6e, 0x76, 0x7c, 0x80, 0x81, 0x86, 0x98, 0x9b, 0x9c, 0x9c, 0x8d, 0x94, 0xbc,\n    0xdb, 0xcd, 0xb2, 0x8a, 0x59, 0x4f, 0x68, 0x6c, 0x6c, 0x63, 0x5c, 0x59, 0x57, 0x55, 0x5a, 0x62,\n    0x71, 0x73, 0x75, 0x79, 0x80, 0x86, 0x84, 0x7f, 0x83, 0x86, 0x82, 0x7d, 0x7c, 0x7b, 0x7e, 0x87,\n    0x88, 0x85, 0x7d, 0x7b, 0x7f, 0x7d, 0x7b, 0x81, 0x80, 0x81, 0x82, 0x81, 0x80, 0x80, 0x82, 0x83,\n    0x83, 0x85, 0x85, 0x84, 0x83, 0x82, 0x7e, 0x7a, 0x7a, 0x78, 0x79, 0x79, 0x76, 0x78, 0x7c, 0x7c,\n    0x73, 0x76, 0x74, 0x75, 0x79, 0x74, 0x70, 0x74, 0x70, 0x6f, 0x6b, 0x67, 0x67, 0x6a, 0x69, 0x66,\n    0x65, 0x60, 0x5b, 0x59, 0x59, 0x56, 0x4f, 0x49, 0x45, 0x46, 0x46, 0x45, 0x43, 0x3f, 0x3c, 0x3a,\n    0x3e, 0x3e, 0x3f, 0x3e, 0x3c, 0x3a, 0x38, 0x37, 0x34, 0x34, 0x36, 0x39, 0x3a, 0x3d, 0x46, 0x4f,\n    0x59, 0x5a, 0x5b, 0x5c, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x5c, 0x5c, 0x5f, 0x61, 0x64, 0x6b, 0x71,\n    0x7d, 0x7e, 0x7e, 0x80, 0x7d, 0x6f, 0x67, 0x6e, 0x89, 0x98, 0xa8, 0xb0, 0xb1, 0xb3, 0xb8, 0xbc,\n    0xb4, 0x9f, 0x7e, 0x64, 0x61, 0x6d, 0x77, 0x78, 0x78, 0x79, 0x78, 0x76, 0x74, 0x72, 0x70, 0x6e,\n    0x65, 0x55, 0x4d, 0x54, 0x7b, 0xa8, 0xc9, 0xaf, 0x92, 0x75, 0x68, 0x62, 0x62, 0x6a, 0x6b, 0x71,\n    0x73, 0x77, 0x7b, 0x7c, 0x7e, 0x7d, 0x79, 0x73, 0x75, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75,\n    0x74, 0x78, 0x77, 0x76, 0x7f, 0x8b, 0x8a, 0x7f, 0x76, 0x75, 0x73, 0x6d, 0x64, 0x5b, 0x5a, 0x5d,\n    0x70, 0x78, 0x7b, 0x7f, 0x95, 0xa9, 0x9a, 0x7a, 0x5f, 0x5d, 0x5a, 0x55, 0x4c, 0x42, 0x3d, 0x3e,\n    0x41, 0x49, 0x58, 0x64, 0x67, 0x62, 0x5f, 0x5f, 0x6d, 0x67, 0x5c, 0x5d, 0x77, 0x92, 0x91, 0x7f,\n    0x66, 0x70, 0x85, 0x93, 0x92, 0x89, 0x7f, 0x75, 0x67, 0x70, 0x7a, 0x82, 0x67, 0x54, 0x3f, 0x36,\n    0x46, 0x57, 0x6a, 0x70, 0x63, 0x4f, 0x3e, 0x35, 0x32, 0x2d, 0x2f, 0x3b, 0x4a, 0x54, 0x5c, 0x63,\n    0x64, 0x5c, 0x52, 0x4d, 0x48, 0x3e, 0x2e, 0x22, 0x2d, 0x33, 0x38, 0x39, 0x39, 0x39, 0x38, 0x36,\n    0x34, 0x30, 0x28, 0x21, 0x1d, 0x1b, 0x17, 0x13, 0x0d, 0x10, 0x11, 0x0f, 0x0d, 0x10, 0x19, 0x20,\n    0x20, 0x1f, 0x17, 0x11, 0x16, 0x18, 0x15, 0x15, 0x10, 0x19, 0x1e, 0x1c, 0x1b, 0x1d, 0x20, 0x20,\n    0x18, 0x13, 0x18, 0x2b, 0x4d, 0x7a, 0x96, 0x98, 0x92, 0x69, 0x50, 0x5d, 0x6d, 0x77, 0x90, 0xb0,\n    0x54, 0x56, 0x57, 0x56, 0x57, 0x5a, 0x5b, 0x59, 0x5f, 0x5e, 0x5c, 0x59, 0x59, 0x59, 0x56, 0x52,\n    0x49, 0x3e, 0x3b, 0x3f, 0x43, 0x4d, 0x56, 0x57, 0x5b, 0x59, 0x55, 0x53, 0x52, 0x51, 0x51, 0x51,\n    0x4e, 0x4b, 0x4a, 0x4e, 0x54, 0x59, 0x5e, 0x62, 0x67, 0x59, 0x48, 0x3f, 0x3f, 0x44, 0x48, 0x48,\n    0x3e, 0x37, 0x36, 0x3a, 0x3f, 0x4a, 0x64, 0x7e, 0x77, 0x61, 0x55, 0x4e, 0x4c, 0x62, 0x75, 0x6e,\n    0x78, 0xa7, 0xcd, 0xcc, 0xc3, 0xca, 0xc2, 0xa6, 0x77, 0x61, 0x6c, 0x9f, 0xce, 0xe3, 0xe5, 0xe0,\n    0xd4, 0xaa, 0x7b, 0x4f, 0x36, 0x2e, 0x3a, 0x5c, 0x7c, 0x8e, 0x89, 0x6b, 0x60, 0x78, 0x90, 0x95,\n    0x86, 0x68, 0x46, 0x3d, 0x43, 0x3f, 0x38, 0x3b, 0x40, 0x45, 0x53, 0x64, 0x64, 0x50, 0x4b, 0x5b,\n    0xa4, 0xc2, 0xce, 0xbe, 0x8c, 0x5a, 0x4b, 0x45, 0x3e, 0x44, 0x47, 0x43, 0x44, 0x47, 0x44, 0x3c,\n    0x46, 0x44, 0x41, 0x44, 0x52, 0x65, 0x6f, 0x71, 0x77, 0x73, 0x6d, 0x6d, 0x73, 0x74, 0x66, 0x55,\n    0x46, 0x3b, 0x3a, 0x3f, 0x3e, 0x3b, 0x36, 0x30, 0x30, 0x2f, 0x2a, 0x2c, 0x33, 0x3b, 0x4e, 0x67,\n    0x77, 0x82, 0x97, 0xaf, 0xbc, 0xb5, 0xa4, 0x97, 0x92, 0x9a, 0xa8, 0xb8, 0xbc, 0xb0, 0xad, 0xba,\n    0xc9, 0xc5, 0xb3, 0x9a, 0x7f, 0x66, 0x5f, 0x69, 0x6c, 0x6e, 0x6d, 0x68, 0x62, 0x60, 0x66, 0x6c,\n    0x6f, 0x74, 0x79, 0x7d, 0x7d, 0x77, 0x6a, 0x5f, 0x68, 0x73, 0x80, 0x86, 0x86, 0x84, 0x80, 0x7d,\n    0x78, 0x7a, 0x7b, 0x7b, 0x77, 0x73, 0x70, 0x6f, 0x6d, 0x7a, 0x8a, 0x96, 0x9b, 0x9c, 0x9c, 0x9e,\n    0x8f, 0x8f, 0x8a, 0x80, 0x76, 0x6f, 0x69, 0x64, 0x67, 0x6d, 0x73, 0x7d, 0x91, 0xa6, 0xad, 0xaa,\n    0xb8, 0xb9, 0xae, 0xa7, 0xb2, 0xba, 0xae, 0x9e, 0x8c, 0x7e, 0x71, 0x6e, 0x6d, 0x65, 0x55, 0x48,\n    0x42, 0x3e, 0x39, 0x37, 0x38, 0x3b, 0x3e, 0x3f, 0x40, 0x3b, 0x41, 0x50, 0x61, 0x70, 0x72, 0x67,\n    0x57, 0x5f, 0x65, 0x67, 0x6d, 0x74, 0x73, 0x6b, 0x76, 0x65, 0x54, 0x4e, 0x54, 0x66, 0x6e, 0x67,\n    0x5f, 0x5d, 0x5d, 0x66, 0x78, 0x85, 0x81, 0x76, 0x8b, 0x9f, 0xa5, 0xa7, 0xab, 0xa1, 0xa5, 0xc2,\n    0xce, 0xcc, 0xbe, 0x9d, 0x68, 0x50, 0x61, 0x68, 0x66, 0x61, 0x5d, 0x5c, 0x5b, 0x5d, 0x66, 0x70,\n    0x7b, 0x7b, 0x7c, 0x7f, 0x85, 0x88, 0x83, 0x7c, 0x84, 0x89, 0x86, 0x7f, 0x7c, 0x7c, 0x81, 0x8d,\n    0x89, 0x88, 0x80, 0x7d, 0x80, 0x7f, 0x7f, 0x86, 0x88, 0x8b, 0x8d, 0x8b, 0x87, 0x85, 0x88, 0x8b,\n    0x8b, 0x8c, 0x8b, 0x89, 0x88, 0x87, 0x83, 0x7f, 0x7c, 0x7d, 0x79, 0x76, 0x78, 0x7a, 0x7c, 0x81,\n    0x7b, 0x7d, 0x7a, 0x79, 0x7a, 0x74, 0x6e, 0x72, 0x6e, 0x72, 0x71, 0x6b, 0x6a, 0x6e, 0x6e, 0x68,\n    0x62, 0x60, 0x5f, 0x5f, 0x5f, 0x5c, 0x56, 0x51, 0x50, 0x4f, 0x4b, 0x47, 0x44, 0x41, 0x3e, 0x3d,\n    0x3a, 0x3b, 0x3c, 0x3c, 0x3c, 0x3a, 0x38, 0x37, 0x39, 0x38, 0x38, 0x39, 0x38, 0x38, 0x3a, 0x3e,\n    0x45, 0x4a, 0x52, 0x5a, 0x5f, 0x60, 0x5f, 0x5e, 0x5d, 0x5c, 0x5d, 0x5f, 0x61, 0x66, 0x6e, 0x76,\n    0x7a, 0x7f, 0x7f, 0x7f, 0x7d, 0x72, 0x68, 0x68, 0x72, 0x7d, 0x8a, 0x8d, 0x86, 0x82, 0x89, 0x93,\n    0x94, 0x84, 0x6b, 0x59, 0x5c, 0x6d, 0x7b, 0x7f, 0x78, 0x7a, 0x7c, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a,\n    0x6d, 0x5a, 0x4d, 0x52, 0x7e, 0xab, 0xc7, 0xab, 0x8f, 0x73, 0x68, 0x62, 0x62, 0x6a, 0x6d, 0x75,\n    0x7a, 0x7e, 0x81, 0x83, 0x83, 0x82, 0x7c, 0x76, 0x76, 0x76, 0x75, 0x74, 0x74, 0x74, 0x74, 0x75,\n    0x75, 0x7a, 0x79, 0x78, 0x86, 0x96, 0x90, 0x7c, 0x67, 0x6b, 0x6f, 0x6c, 0x61, 0x58, 0x59, 0x5f,\n    0x65, 0x6f, 0x79, 0x84, 0x9a, 0xae, 0xab, 0x9c, 0x95, 0x8f, 0x86, 0x79, 0x62, 0x4b, 0x43, 0x47,\n    0x45, 0x50, 0x61, 0x6c, 0x6b, 0x65, 0x62, 0x63, 0x6a, 0x6e, 0x6c, 0x65, 0x64, 0x6c, 0x71, 0x70,\n    0x7d, 0x8d, 0x93, 0x88, 0x77, 0x65, 0x56, 0x51, 0x5f, 0x69, 0x6e, 0x6a, 0x4b, 0x4a, 0x58, 0x6c,\n    0x66, 0x6b, 0x69, 0x5b, 0x44, 0x32, 0x2d, 0x2f, 0x2a, 0x29, 0x2c, 0x39, 0x4b, 0x5c, 0x64, 0x66,\n    0x5d, 0x56, 0x4b, 0x42, 0x39, 0x2e, 0x21, 0x18, 0x1c, 0x20, 0x24, 0x26, 0x29, 0x2d, 0x2e, 0x2d,\n    0x2d, 0x1c, 0x17, 0x20, 0x21, 0x14, 0x12, 0x1a, 0x15, 0x15, 0x15, 0x15, 0x15, 0x14, 0x13, 0x12,\n    0x17, 0x1f, 0x1f, 0x17, 0x12, 0x14, 0x26, 0x3e, 0x4d, 0x46, 0x3f, 0x3c, 0x3f, 0x44, 0x48, 0x4a,\n    0x5f, 0x75, 0x9b, 0xb1, 0xa8, 0x91, 0x7a, 0x6a, 0x5e, 0x5b, 0x60, 0x71, 0x7e, 0x7d, 0x79, 0x78,\n    0x55, 0x57, 0x58, 0x58, 0x59, 0x5c, 0x5c, 0x5b, 0x61, 0x60, 0x5c, 0x5a, 0x5b, 0x5a, 0x54, 0x4d,\n    0x41, 0x38, 0x3a, 0x42, 0x49, 0x52, 0x59, 0x59, 0x5a, 0x57, 0x53, 0x50, 0x50, 0x50, 0x50, 0x50,\n    0x51, 0x50, 0x50, 0x53, 0x57, 0x5a, 0x5d, 0x5f, 0x5e, 0x52, 0x43, 0x3b, 0x3d, 0x42, 0x47, 0x49,\n    0x4c, 0x48, 0x43, 0x3d, 0x38, 0x39, 0x47, 0x57, 0x5f, 0x52, 0x50, 0x4b, 0x4b, 0x70, 0x98, 0x9d,\n    0x8f, 0xb5, 0xd8, 0xd7, 0xc1, 0xb2, 0xa4, 0x91, 0x6a, 0x61, 0x71, 0x96, 0xb2, 0xc3, 0xd1, 0xda,\n    0xd4, 0xbe, 0x91, 0x53, 0x33, 0x32, 0x35, 0x42, 0x4a, 0x49, 0x47, 0x43, 0x3e, 0x42, 0x55, 0x68,\n    0x72, 0x5b, 0x41, 0x38, 0x3b, 0x3d, 0x48, 0x5c, 0x5a, 0x76, 0xa1, 0xc3, 0xc2, 0x9a, 0x73, 0x67,\n    0xb5, 0xdc, 0xee, 0xd5, 0x91, 0x55, 0x49, 0x4d, 0x54, 0x47, 0x3d, 0x3e, 0x40, 0x3f, 0x41, 0x47,\n    0x3d, 0x3e, 0x3c, 0x3f, 0x50, 0x69, 0x78, 0x7a, 0x74, 0x6c, 0x5a, 0x48, 0x43, 0x49, 0x4d, 0x4b,\n    0x40, 0x36, 0x36, 0x3d, 0x3e, 0x3f, 0x41, 0x3f, 0x39, 0x3b, 0x3e, 0x43, 0x47, 0x46, 0x4a, 0x51,\n    0x60, 0x5d, 0x61, 0x74, 0x92, 0xa7, 0xab, 0xa4, 0x91, 0x90, 0x95, 0xa4, 0xad, 0xa6, 0xab, 0xbf,\n    0xc8, 0xbb, 0xa6, 0x91, 0x7e, 0x6d, 0x65, 0x66, 0x62, 0x66, 0x68, 0x65, 0x60, 0x5f, 0x64, 0x6a,\n    0x6f, 0x6f, 0x6f, 0x70, 0x73, 0x73, 0x6d, 0x65, 0x63, 0x6a, 0x73, 0x7a, 0x7e, 0x7f, 0x7d, 0x7c,\n    0x83, 0x87, 0x8a, 0x8c, 0x91, 0x9a, 0xa0, 0xa3, 0xaf, 0xb4, 0xba, 0xb9, 0xb5, 0xb1, 0xb1, 0xb3,\n    0xb8, 0xb8, 0xb4, 0xaa, 0x9f, 0x94, 0x8a, 0x83, 0x6c, 0x6e, 0x6e, 0x70, 0x7a, 0x8f, 0xa8, 0xba,\n    0xc5, 0xc9, 0xc2, 0xbb, 0xc2, 0xc6, 0xbc, 0xb2, 0x9d, 0x8c, 0x79, 0x6f, 0x6c, 0x65, 0x56, 0x49,\n    0x3e, 0x38, 0x32, 0x33, 0x3b, 0x43, 0x46, 0x46, 0x45, 0x40, 0x47, 0x5a, 0x68, 0x70, 0x6b, 0x5e,\n    0x5b, 0x61, 0x64, 0x62, 0x63, 0x6a, 0x70, 0x72, 0x6d, 0x5c, 0x50, 0x4e, 0x53, 0x61, 0x6b, 0x6a,\n    0x66, 0x64, 0x62, 0x6c, 0x83, 0x95, 0x8e, 0x7d, 0x8a, 0x9e, 0xa9, 0xad, 0xb2, 0xaa, 0xa7, 0xb6,\n    0xd2, 0xd3, 0xc9, 0xaf, 0x80, 0x61, 0x66, 0x66, 0x61, 0x5f, 0x5e, 0x61, 0x64, 0x68, 0x71, 0x7a,\n    0x78, 0x7b, 0x7f, 0x84, 0x87, 0x85, 0x7f, 0x79, 0x7b, 0x83, 0x84, 0x82, 0x83, 0x82, 0x85, 0x8d,\n    0x8b, 0x8b, 0x85, 0x82, 0x84, 0x82, 0x82, 0x89, 0x90, 0x92, 0x93, 0x91, 0x8d, 0x8a, 0x8a, 0x8b,\n    0x8e, 0x8f, 0x8f, 0x8d, 0x8b, 0x89, 0x85, 0x7f, 0x7b, 0x80, 0x79, 0x75, 0x7a, 0x79, 0x78, 0x81,\n    0x7f, 0x80, 0x7c, 0x7a, 0x7b, 0x74, 0x6e, 0x71, 0x6e, 0x75, 0x74, 0x6b, 0x69, 0x70, 0x70, 0x6a,\n    0x68, 0x68, 0x6a, 0x6b, 0x6c, 0x68, 0x63, 0x5f, 0x57, 0x56, 0x53, 0x51, 0x4d, 0x48, 0x43, 0x40,\n    0x3e, 0x3d, 0x3c, 0x3b, 0x3a, 0x39, 0x38, 0x37, 0x3d, 0x3a, 0x37, 0x36, 0x36, 0x37, 0x39, 0x3a,\n    0x38, 0x3e, 0x48, 0x52, 0x59, 0x5c, 0x5d, 0x5c, 0x5e, 0x5d, 0x5d, 0x5f, 0x60, 0x65, 0x6e, 0x77,\n    0x7a, 0x80, 0x7f, 0x7c, 0x7a, 0x71, 0x66, 0x63, 0x6a, 0x7e, 0x92, 0x90, 0x78, 0x68, 0x72, 0x87,\n    0x7f, 0x71, 0x5e, 0x55, 0x5e, 0x6f, 0x79, 0x7a, 0x67, 0x65, 0x63, 0x64, 0x66, 0x68, 0x6c, 0x70,\n    0x67, 0x58, 0x4c, 0x53, 0x82, 0xae, 0xc6, 0xaa, 0x89, 0x70, 0x67, 0x63, 0x64, 0x6d, 0x72, 0x7b,\n    0x82, 0x85, 0x87, 0x86, 0x85, 0x83, 0x7c, 0x76, 0x75, 0x76, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7c,\n    0x7a, 0x7c, 0x7b, 0x7e, 0x8b, 0x97, 0x90, 0x7f, 0x6b, 0x71, 0x77, 0x74, 0x68, 0x5b, 0x58, 0x5b,\n    0x66, 0x6f, 0x7b, 0x86, 0x94, 0xa0, 0xa3, 0xa1, 0x9a, 0x99, 0x9a, 0x93, 0x77, 0x55, 0x44, 0x45,\n    0x4d, 0x5c, 0x6b, 0x6d, 0x64, 0x61, 0x6b, 0x78, 0x8d, 0x81, 0x71, 0x68, 0x6a, 0x71, 0x72, 0x6f,\n    0x78, 0x7f, 0x71, 0x5b, 0x4c, 0x3d, 0x38, 0x42, 0x5d, 0x5e, 0x58, 0x52, 0x3a, 0x40, 0x4c, 0x5a,\n    0x40, 0x3c, 0x35, 0x2d, 0x27, 0x25, 0x28, 0x2b, 0x2a, 0x23, 0x21, 0x30, 0x4c, 0x61, 0x62, 0x58,\n    0x4d, 0x48, 0x41, 0x3a, 0x31, 0x26, 0x1b, 0x14, 0x13, 0x15, 0x17, 0x18, 0x1c, 0x22, 0x24, 0x23,\n    0x1b, 0x1a, 0x13, 0x0a, 0x0c, 0x14, 0x14, 0x0d, 0x12, 0x10, 0x0f, 0x12, 0x17, 0x1c, 0x1e, 0x1e,\n    0x22, 0x2e, 0x1e, 0x0c, 0x2a, 0x64, 0x83, 0x83, 0x68, 0x6b, 0x7a, 0x8e, 0x99, 0x9a, 0xa2, 0xae,\n    0xab, 0xbe, 0xbb, 0x8e, 0x5f, 0x51, 0x4d, 0x40, 0x53, 0x69, 0x72, 0x6a, 0x69, 0x77, 0x7a, 0x70,\n    0x56, 0x58, 0x5a, 0x5a, 0x5b, 0x5e, 0x5e, 0x5d, 0x61, 0x60, 0x5d, 0x5b, 0x5b, 0x59, 0x51, 0x48,\n    0x3b, 0x36, 0x3c, 0x47, 0x4f, 0x56, 0x5b, 0x59, 0x59, 0x56, 0x52, 0x50, 0x4f, 0x50, 0x50, 0x50,\n    0x53, 0x53, 0x53, 0x55, 0x57, 0x5a, 0x5b, 0x5a, 0x50, 0x49, 0x40, 0x3b, 0x3d, 0x42, 0x49, 0x4c,\n    0x47, 0x4b, 0x49, 0x41, 0x3c, 0x40, 0x45, 0x46, 0x4b, 0x4b, 0x52, 0x4c, 0x40, 0x4e, 0x62, 0x5f,\n    0x57, 0x61, 0x70, 0x75, 0x6b, 0x62, 0x59, 0x4e, 0x44, 0x41, 0x4d, 0x5f, 0x6a, 0x80, 0xa7, 0xc7,\n    0xdd, 0xd1, 0xa3, 0x59, 0x33, 0x35, 0x36, 0x3b, 0x48, 0x3e, 0x3b, 0x3c, 0x36, 0x2b, 0x2f, 0x3c,\n    0x3d, 0x40, 0x3f, 0x39, 0x33, 0x33, 0x4d, 0x72, 0x9c, 0xa9, 0xbd, 0xd2, 0xdc, 0xc6, 0xa0, 0x89,\n    0xac, 0xd1, 0xe5, 0xd5, 0xa4, 0x78, 0x70, 0x6f, 0x58, 0x4b, 0x44, 0x49, 0x4f, 0x4b, 0x44, 0x41,\n    0x3d, 0x41, 0x40, 0x3e, 0x45, 0x53, 0x59, 0x56, 0x69, 0x6a, 0x5d, 0x48, 0x41, 0x48, 0x49, 0x40,\n    0x35, 0x2f, 0x34, 0x3e, 0x41, 0x43, 0x46, 0x45, 0x43, 0x4b, 0x55, 0x55, 0x4c, 0x4b, 0x54, 0x5d,\n    0x49, 0x68, 0x86, 0x8f, 0x90, 0x9b, 0xa9, 0xb1, 0xb8, 0xb8, 0xb7, 0xb9, 0xba, 0xb4, 0xb4, 0xc0,\n    0xc0, 0xb1, 0x9d, 0x87, 0x74, 0x68, 0x66, 0x66, 0x65, 0x67, 0x68, 0x64, 0x5f, 0x5e, 0x64, 0x6a,\n    0x71, 0x6f, 0x6a, 0x67, 0x69, 0x6a, 0x66, 0x61, 0x5e, 0x64, 0x6e, 0x77, 0x7b, 0x79, 0x73, 0x6f,\n    0x75, 0x79, 0x7d, 0x80, 0x85, 0x8d, 0x92, 0x94, 0x99, 0x9d, 0xa0, 0xa1, 0xa2, 0xa5, 0xac, 0xb2,\n    0xaf, 0xb1, 0xb0, 0xac, 0xa6, 0xa0, 0x97, 0x90, 0x8d, 0x8d, 0x8b, 0x85, 0x7d, 0x7d, 0x8a, 0x98,\n    0xa9, 0xb2, 0xb1, 0xad, 0xb1, 0xb3, 0xae, 0xab, 0xa4, 0x99, 0x89, 0x7a, 0x6d, 0x61, 0x53, 0x49,\n    0x42, 0x3a, 0x33, 0x38, 0x44, 0x4c, 0x4b, 0x46, 0x43, 0x40, 0x4d, 0x66, 0x76, 0x79, 0x72, 0x65,\n    0x66, 0x60, 0x5f, 0x66, 0x6e, 0x73, 0x75, 0x78, 0x6d, 0x57, 0x4a, 0x4e, 0x5a, 0x68, 0x6b, 0x63,\n    0x63, 0x64, 0x66, 0x70, 0x86, 0x98, 0x95, 0x87, 0x99, 0xab, 0xb5, 0xba, 0xba, 0xae, 0xa4, 0xa7,\n    0xb5, 0xb4, 0xa6, 0x97, 0x7e, 0x6a, 0x6b, 0x65, 0x5f, 0x5d, 0x5e, 0x64, 0x6c, 0x72, 0x77, 0x7a,\n    0x7a, 0x7e, 0x83, 0x85, 0x84, 0x80, 0x7d, 0x7d, 0x7e, 0x84, 0x86, 0x88, 0x8d, 0x8d, 0x8d, 0x92,\n    0x8b, 0x8d, 0x8a, 0x89, 0x8c, 0x89, 0x87, 0x8e, 0x94, 0x93, 0x93, 0x92, 0x91, 0x8e, 0x8c, 0x8a,\n    0x8d, 0x90, 0x91, 0x8f, 0x8e, 0x8b, 0x85, 0x7f, 0x7d, 0x83, 0x7e, 0x7a, 0x7e, 0x7b, 0x77, 0x7f,\n    0x7c, 0x7d, 0x7b, 0x7b, 0x7e, 0x7a, 0x76, 0x7a, 0x75, 0x7b, 0x79, 0x6f, 0x6c, 0x73, 0x75, 0x6f,\n    0x6e, 0x6f, 0x70, 0x70, 0x6d, 0x68, 0x62, 0x5f, 0x58, 0x5a, 0x5d, 0x5f, 0x5c, 0x54, 0x4a, 0x42,\n    0x48, 0x45, 0x40, 0x3d, 0x3b, 0x3a, 0x39, 0x38, 0x3a, 0x38, 0x36, 0x35, 0x36, 0x38, 0x38, 0x37,\n    0x37, 0x3a, 0x3f, 0x46, 0x4d, 0x52, 0x56, 0x58, 0x5c, 0x5c, 0x5d, 0x5e, 0x5f, 0x62, 0x6b, 0x74,\n    0x7b, 0x7f, 0x7d, 0x79, 0x77, 0x70, 0x67, 0x66, 0x6b, 0x83, 0x9a, 0x96, 0x7a, 0x67, 0x73, 0x8b,\n    0x81, 0x70, 0x5c, 0x58, 0x65, 0x74, 0x78, 0x75, 0x5f, 0x56, 0x4e, 0x4d, 0x51, 0x53, 0x54, 0x57,\n    0x58, 0x52, 0x4b, 0x55, 0x87, 0xaf, 0xc4, 0xaa, 0x85, 0x6d, 0x65, 0x63, 0x64, 0x6e, 0x73, 0x7b,\n    0x7d, 0x7f, 0x80, 0x7e, 0x7d, 0x7b, 0x76, 0x71, 0x73, 0x75, 0x76, 0x76, 0x75, 0x75, 0x76, 0x77,\n    0x7b, 0x79, 0x79, 0x7f, 0x87, 0x8a, 0x87, 0x81, 0x79, 0x7b, 0x7c, 0x77, 0x6c, 0x60, 0x5b, 0x5c,\n    0x68, 0x72, 0x80, 0x8b, 0x8f, 0x8e, 0x8d, 0x8c, 0x87, 0x86, 0x87, 0x82, 0x6e, 0x57, 0x52, 0x5b,\n    0x71, 0x7d, 0x85, 0x82, 0x7a, 0x7d, 0x8c, 0x9b, 0xa1, 0x8e, 0x75, 0x67, 0x68, 0x70, 0x75, 0x76,\n    0x6c, 0x62, 0x4c, 0x3e, 0x3f, 0x3e, 0x47, 0x5d, 0x5f, 0x55, 0x46, 0x41, 0x31, 0x38, 0x39, 0x3b,\n    0x32, 0x2d, 0x27, 0x24, 0x25, 0x25, 0x24, 0x23, 0x1c, 0x17, 0x19, 0x2d, 0x4a, 0x5c, 0x56, 0x46,\n    0x43, 0x3f, 0x38, 0x30, 0x28, 0x1f, 0x18, 0x14, 0x17, 0x17, 0x15, 0x13, 0x14, 0x16, 0x16, 0x14,\n    0x0e, 0x0d, 0x14, 0x20, 0x1e, 0x13, 0x12, 0x1b, 0x13, 0x1b, 0x23, 0x24, 0x21, 0x20, 0x25, 0x2a,\n    0x36, 0x32, 0x49, 0x75, 0x82, 0x63, 0x4f, 0x5a, 0x74, 0x86, 0x98, 0x9b, 0x93, 0x8f, 0x96, 0xa0,\n    0xa4, 0x8d, 0x76, 0x60, 0x4b, 0x46, 0x50, 0x5a, 0x75, 0x76, 0x77, 0x77, 0x77, 0x74, 0x6e, 0x68,\n    0x55, 0x58, 0x5b, 0x5b, 0x5d, 0x60, 0x61, 0x5f, 0x5f, 0x5f, 0x5e, 0x5c, 0x5a, 0x56, 0x4b, 0x41,\n    0x38, 0x37, 0x41, 0x4e, 0x54, 0x58, 0x5b, 0x58, 0x58, 0x56, 0x53, 0x51, 0x51, 0x52, 0x52, 0x52,\n    0x53, 0x54, 0x55, 0x55, 0x57, 0x5a, 0x5a, 0x57, 0x48, 0x44, 0x3f, 0x3e, 0x41, 0x47, 0x4e, 0x53,\n    0x5e, 0x62, 0x5c, 0x4c, 0x43, 0x42, 0x3e, 0x36, 0x42, 0x44, 0x48, 0x47, 0x44, 0x45, 0x43, 0x3a,\n    0x4c, 0x48, 0x47, 0x42, 0x3a, 0x3b, 0x3f, 0x3c, 0x3d, 0x3b, 0x42, 0x46, 0x43, 0x53, 0x7b, 0x9c,\n    0xb1, 0xa5, 0x87, 0x53, 0x36, 0x31, 0x2f, 0x37, 0x37, 0x35, 0x30, 0x2c, 0x2b, 0x2e, 0x31, 0x33,\n    0x34, 0x3a, 0x3b, 0x3a, 0x39, 0x38, 0x43, 0x56, 0x50, 0x57, 0x68, 0x8e, 0xbd, 0xd1, 0xc5, 0xb5,\n    0xbb, 0xd4, 0xdd, 0xd6, 0xbe, 0xa2, 0x8f, 0x7a, 0x51, 0x58, 0x60, 0x6a, 0x74, 0x74, 0x60, 0x4a,\n    0x50, 0x63, 0x6e, 0x62, 0x4c, 0x40, 0x43, 0x48, 0x56, 0x5f, 0x5b, 0x4d, 0x47, 0x4a, 0x41, 0x30,\n    0x31, 0x29, 0x2a, 0x31, 0x33, 0x38, 0x40, 0x43, 0x4d, 0x4f, 0x55, 0x55, 0x4e, 0x51, 0x57, 0x56,\n    0x6d, 0x7e, 0x8a, 0x86, 0x7f, 0x7f, 0x82, 0x82, 0x8b, 0x97, 0x9e, 0xa6, 0xb3, 0xbb, 0xbd, 0xc1,\n    0xb0, 0xa4, 0x95, 0x7f, 0x67, 0x62, 0x6b, 0x71, 0x6b, 0x6c, 0x6a, 0x64, 0x5f, 0x61, 0x6a, 0x73,\n    0x70, 0x6e, 0x69, 0x63, 0x60, 0x5e, 0x57, 0x51, 0x52, 0x5b, 0x6a, 0x79, 0x80, 0x7b, 0x73, 0x6e,\n    0x74, 0x77, 0x7c, 0x7f, 0x7f, 0x7d, 0x7b, 0x7a, 0x7f, 0x80, 0x82, 0x82, 0x82, 0x84, 0x87, 0x8a,\n    0x8f, 0x92, 0x96, 0x97, 0x97, 0x96, 0x92, 0x8c, 0x85, 0x85, 0x86, 0x87, 0x87, 0x87, 0x8a, 0x8e,\n    0x90, 0x9a, 0x9d, 0x9c, 0xa1, 0xa2, 0xa2, 0xa4, 0xa1, 0xa0, 0x97, 0x86, 0x72, 0x5e, 0x4d, 0x43,\n    0x3d, 0x36, 0x32, 0x3b, 0x49, 0x51, 0x4d, 0x46, 0x43, 0x44, 0x5b, 0x7c, 0x8e, 0x90, 0x87, 0x7c,\n    0x73, 0x65, 0x63, 0x74, 0x86, 0x89, 0x81, 0x7a, 0x68, 0x5d, 0x57, 0x57, 0x5a, 0x63, 0x6a, 0x67,\n    0x67, 0x6b, 0x71, 0x7a, 0x8a, 0x98, 0x9a, 0x95, 0xa2, 0xab, 0xb2, 0xb4, 0xaf, 0xa0, 0x93, 0x93,\n    0x97, 0xa7, 0xa3, 0x93, 0x78, 0x64, 0x65, 0x63, 0x63, 0x63, 0x65, 0x6b, 0x73, 0x79, 0x7c, 0x7c,\n    0x80, 0x81, 0x83, 0x81, 0x7d, 0x7b, 0x7f, 0x86, 0x89, 0x8d, 0x8b, 0x8b, 0x90, 0x91, 0x91, 0x96,\n    0x8d, 0x8f, 0x8d, 0x8f, 0x93, 0x91, 0x8e, 0x93, 0x94, 0x93, 0x93, 0x93, 0x93, 0x90, 0x8d, 0x89,\n    0x8e, 0x90, 0x91, 0x90, 0x8f, 0x8d, 0x87, 0x82, 0x7f, 0x82, 0x81, 0x7f, 0x7f, 0x7c, 0x79, 0x7c,\n    0x7b, 0x7d, 0x7a, 0x7a, 0x7d, 0x79, 0x76, 0x7a, 0x7b, 0x7d, 0x7a, 0x72, 0x71, 0x76, 0x77, 0x73,\n    0x6a, 0x6b, 0x6d, 0x6c, 0x69, 0x65, 0x62, 0x61, 0x64, 0x61, 0x5f, 0x5d, 0x5c, 0x5a, 0x56, 0x53,\n    0x4e, 0x4a, 0x43, 0x3f, 0x3d, 0x3c, 0x3a, 0x38, 0x37, 0x39, 0x3a, 0x39, 0x39, 0x3a, 0x37, 0x34,\n    0x39, 0x39, 0x3a, 0x3c, 0x41, 0x47, 0x4d, 0x50, 0x59, 0x5b, 0x5e, 0x61, 0x62, 0x65, 0x6d, 0x76,\n    0x7c, 0x7e, 0x7b, 0x79, 0x78, 0x6f, 0x69, 0x6c, 0x80, 0x90, 0x9d, 0x95, 0x7f, 0x71, 0x79, 0x8a,\n    0x87, 0x71, 0x5b, 0x57, 0x66, 0x75, 0x78, 0x74, 0x5d, 0x52, 0x4a, 0x4c, 0x4f, 0x4f, 0x4d, 0x4d,\n    0x4c, 0x4d, 0x4b, 0x58, 0x8c, 0xb1, 0xc2, 0xaa, 0x82, 0x69, 0x63, 0x61, 0x63, 0x6c, 0x6f, 0x75,\n    0x77, 0x77, 0x75, 0x72, 0x71, 0x72, 0x70, 0x6c, 0x75, 0x73, 0x6f, 0x67, 0x5f, 0x59, 0x57, 0x57,\n    0x4e, 0x4b, 0x4c, 0x51, 0x54, 0x52, 0x52, 0x55, 0x5d, 0x5c, 0x5d, 0x5d, 0x5a, 0x58, 0x5b, 0x60,\n    0x6e, 0x74, 0x7e, 0x86, 0x8a, 0x8b, 0x8f, 0x93, 0x8a, 0x88, 0x87, 0x81, 0x73, 0x65, 0x67, 0x71,\n    0x71, 0x76, 0x7b, 0x7c, 0x80, 0x88, 0x92, 0x97, 0x97, 0x8e, 0x7c, 0x68, 0x5f, 0x63, 0x6d, 0x73,\n    0x6c, 0x56, 0x3e, 0x37, 0x3e, 0x46, 0x57, 0x6c, 0x5e, 0x52, 0x3d, 0x37, 0x2e, 0x42, 0x4f, 0x57,\n    0x57, 0x50, 0x44, 0x37, 0x2c, 0x27, 0x26, 0x27, 0x18, 0x1d, 0x29, 0x3b, 0x4a, 0x4e, 0x45, 0x3c,\n    0x40, 0x3a, 0x2f, 0x25, 0x1d, 0x18, 0x15, 0x15, 0x16, 0x17, 0x16, 0x13, 0x12, 0x13, 0x12, 0x11,\n    0x1d, 0x11, 0x10, 0x1a, 0x17, 0x0f, 0x21, 0x40, 0x74, 0x6c, 0x5d, 0x4f, 0x46, 0x46, 0x4d, 0x54,\n    0x63, 0x87, 0x9a, 0x85, 0x5d, 0x44, 0x4f, 0x69, 0x7e, 0x8f, 0x94, 0x8b, 0x8f, 0x9f, 0xa0, 0x94,\n    0x73, 0x59, 0x4e, 0x4f, 0x46, 0x41, 0x58, 0x75, 0x85, 0x77, 0x6b, 0x68, 0x64, 0x5e, 0x5c, 0x60,\n    0x54, 0x57, 0x5a, 0x5c, 0x5e, 0x61, 0x62, 0x60, 0x60, 0x61, 0x61, 0x5f, 0x5a, 0x52, 0x46, 0x3a,\n    0x37, 0x39, 0x47, 0x55, 0x58, 0x59, 0x5a, 0x57, 0x56, 0x54, 0x52, 0x52, 0x52, 0x53, 0x53, 0x52,\n    0x51, 0x53, 0x54, 0x54, 0x57, 0x5b, 0x5b, 0x58, 0x4a, 0x45, 0x3f, 0x3f, 0x44, 0x4c, 0x52, 0x55,\n    0x4f, 0x53, 0x52, 0x4b, 0x46, 0x45, 0x44, 0x41, 0x3d, 0x4a, 0x4a, 0x40, 0x3a, 0x38, 0x41, 0x53,\n    0x66, 0x6b, 0x6b, 0x5c, 0x4e, 0x4f, 0x4a, 0x3a, 0x36, 0x38, 0x45, 0x4e, 0x4a, 0x48, 0x52, 0x5a,\n    0x60, 0x5a, 0x50, 0x3c, 0x35, 0x35, 0x31, 0x3b, 0x44, 0x42, 0x3a, 0x30, 0x2b, 0x2e, 0x30, 0x2e,\n    0x33, 0x31, 0x2b, 0x2d, 0x39, 0x3f, 0x3c, 0x3d, 0x44, 0x40, 0x3e, 0x51, 0x76, 0x93, 0xa5, 0xb2,\n    0xb7, 0xc5, 0xbf, 0xb2, 0xa7, 0x9c, 0x8c, 0x6f, 0x46, 0x47, 0x47, 0x48, 0x50, 0x57, 0x51, 0x45,\n    0x3a, 0x50, 0x62, 0x5b, 0x42, 0x32, 0x38, 0x46, 0x3b, 0x44, 0x49, 0x4a, 0x4d, 0x4f, 0x46, 0x39,\n    0x36, 0x2d, 0x2b, 0x2e, 0x2c, 0x2e, 0x37, 0x3b, 0x4a, 0x46, 0x4b, 0x50, 0x4f, 0x55, 0x53, 0x44,\n    0x55, 0x7b, 0xa6, 0xb1, 0x97, 0x76, 0x6d, 0x74, 0x82, 0x83, 0x7a, 0x75, 0x80, 0x8d, 0x91, 0x93,\n    0x96, 0x89, 0x80, 0x73, 0x65, 0x68, 0x74, 0x75, 0x6c, 0x6d, 0x6b, 0x66, 0x62, 0x64, 0x6e, 0x76,\n    0x72, 0x70, 0x6b, 0x63, 0x5c, 0x57, 0x4f, 0x49, 0x4a, 0x52, 0x62, 0x73, 0x7b, 0x79, 0x74, 0x72,\n    0x6b, 0x6b, 0x70, 0x76, 0x76, 0x71, 0x6f, 0x71, 0x71, 0x72, 0x73, 0x76, 0x78, 0x7a, 0x7b, 0x7b,\n    0x78, 0x7b, 0x7f, 0x81, 0x83, 0x84, 0x81, 0x7c, 0x76, 0x74, 0x71, 0x6e, 0x6d, 0x6c, 0x6b, 0x69,\n    0x6e, 0x73, 0x72, 0x73, 0x79, 0x7b, 0x7c, 0x80, 0x88, 0x8c, 0x8a, 0x7e, 0x6c, 0x5a, 0x4a, 0x3f,\n    0x38, 0x35, 0x35, 0x3d, 0x4a, 0x50, 0x4c, 0x46, 0x44, 0x4a, 0x68, 0x8e, 0x9f, 0x9a, 0x8d, 0x81,\n    0x7c, 0x77, 0x78, 0x83, 0x90, 0x91, 0x87, 0x7c, 0x6a, 0x6d, 0x71, 0x6a, 0x60, 0x67, 0x76, 0x7c,\n    0x85, 0x88, 0x8f, 0x96, 0x9c, 0xa2, 0xa5, 0xa7, 0xb3, 0xb4, 0xb6, 0xb9, 0xb4, 0xa8, 0xa3, 0xa6,\n    0xb5, 0xc9, 0xbf, 0xa0, 0x7d, 0x67, 0x67, 0x65, 0x6b, 0x6c, 0x6e, 0x72, 0x76, 0x7c, 0x7f, 0x80,\n    0x83, 0x81, 0x80, 0x7f, 0x7d, 0x7e, 0x85, 0x8e, 0x8f, 0x93, 0x91, 0x8e, 0x8f, 0x8f, 0x90, 0x97,\n    0x92, 0x92, 0x8e, 0x90, 0x95, 0x93, 0x8f, 0x93, 0x96, 0x97, 0x98, 0x96, 0x93, 0x8f, 0x8b, 0x89,\n    0x8f, 0x90, 0x90, 0x8e, 0x8d, 0x8d, 0x8a, 0x86, 0x81, 0x7f, 0x82, 0x82, 0x7d, 0x7c, 0x7d, 0x7b,\n    0x7d, 0x7e, 0x7b, 0x7a, 0x7c, 0x77, 0x73, 0x78, 0x7d, 0x7c, 0x79, 0x76, 0x77, 0x79, 0x78, 0x75,\n    0x71, 0x73, 0x74, 0x73, 0x70, 0x6e, 0x6e, 0x6f, 0x6d, 0x67, 0x5f, 0x5b, 0x5b, 0x5d, 0x5f, 0x5f,\n    0x52, 0x4e, 0x49, 0x46, 0x44, 0x42, 0x3e, 0x3b, 0x3a, 0x3d, 0x3d, 0x3b, 0x3a, 0x3b, 0x3a, 0x37,\n    0x38, 0x37, 0x37, 0x37, 0x3a, 0x3f, 0x44, 0x47, 0x51, 0x55, 0x5c, 0x62, 0x64, 0x67, 0x6f, 0x78,\n    0x7d, 0x7e, 0x7c, 0x7c, 0x78, 0x6b, 0x65, 0x6c, 0x8d, 0x9c, 0xa7, 0xa1, 0x94, 0x90, 0x99, 0xa3,\n    0x96, 0x80, 0x69, 0x63, 0x6d, 0x76, 0x75, 0x6f, 0x5b, 0x51, 0x4c, 0x4f, 0x52, 0x50, 0x50, 0x52,\n    0x4a, 0x4e, 0x4c, 0x5a, 0x91, 0xb4, 0xbf, 0xa6, 0x7f, 0x66, 0x60, 0x60, 0x64, 0x6c, 0x6d, 0x71,\n    0x77, 0x76, 0x71, 0x6b, 0x6a, 0x6b, 0x6a, 0x68, 0x74, 0x6f, 0x64, 0x56, 0x49, 0x42, 0x41, 0x42,\n    0x43, 0x44, 0x45, 0x46, 0x46, 0x47, 0x48, 0x49, 0x43, 0x45, 0x48, 0x4b, 0x4c, 0x4d, 0x53, 0x59,\n    0x5d, 0x5c, 0x59, 0x58, 0x58, 0x5c, 0x62, 0x67, 0x70, 0x78, 0x83, 0x85, 0x7b, 0x6c, 0x61, 0x5e,\n    0x69, 0x6e, 0x73, 0x77, 0x7e, 0x85, 0x88, 0x87, 0x8e, 0x84, 0x74, 0x69, 0x6b, 0x6f, 0x66, 0x59,\n    0x4e, 0x44, 0x40, 0x45, 0x48, 0x4d, 0x55, 0x57, 0x4b, 0x47, 0x3d, 0x3a, 0x2f, 0x40, 0x4b, 0x52,\n    0x42, 0x3f, 0x3a, 0x34, 0x2e, 0x29, 0x27, 0x25, 0x23, 0x29, 0x35, 0x41, 0x42, 0x3a, 0x34, 0x32,\n    0x36, 0x2f, 0x25, 0x1d, 0x17, 0x15, 0x14, 0x14, 0x13, 0x17, 0x19, 0x17, 0x15, 0x15, 0x16, 0x15,\n    0x0f, 0x1c, 0x1b, 0x17, 0x35, 0x6a, 0x86, 0x83, 0x3c, 0x2f, 0x24, 0x28, 0x40, 0x61, 0x7d, 0x8d,\n    0x9a, 0x91, 0x73, 0x4b, 0x30, 0x2f, 0x4c, 0x70, 0x82, 0x8d, 0x95, 0x9b, 0xa6, 0xa9, 0x90, 0x70,\n    0x4a, 0x5a, 0x5a, 0x40, 0x3b, 0x5e, 0x7c, 0x7c, 0x6a, 0x6c, 0x6a, 0x61, 0x58, 0x54, 0x52, 0x50,\n    0x53, 0x56, 0x5a, 0x5b, 0x5e, 0x61, 0x62, 0x61, 0x62, 0x64, 0x65, 0x62, 0x5c, 0x51, 0x43, 0x37,\n    0x37, 0x3c, 0x4b, 0x59, 0x5a, 0x59, 0x59, 0x56, 0x53, 0x52, 0x51, 0x51, 0x52, 0x52, 0x52, 0x51,\n    0x4f, 0x52, 0x54, 0x54, 0x57, 0x5c, 0x5d, 0x59, 0x50, 0x48, 0x3f, 0x3e, 0x45, 0x4d, 0x52, 0x52,\n    0x54, 0x55, 0x56, 0x53, 0x4b, 0x43, 0x40, 0x42, 0x41, 0x45, 0x3d, 0x43, 0x5f, 0x72, 0x81, 0x9a,\n    0xa8, 0xa6, 0x95, 0x7d, 0x7b, 0x8e, 0x88, 0x69, 0x43, 0x38, 0x37, 0x3e, 0x43, 0x4b, 0x53, 0x55,\n    0x4e, 0x48, 0x3d, 0x2a, 0x2a, 0x31, 0x2d, 0x33, 0x3a, 0x35, 0x33, 0x33, 0x30, 0x2c, 0x2e, 0x34,\n    0x3b, 0x3e, 0x37, 0x2f, 0x32, 0x36, 0x39, 0x3c, 0x38, 0x3e, 0x45, 0x4f, 0x55, 0x58, 0x6a, 0x85,\n    0x99, 0xb6, 0xbf, 0xbd, 0xb8, 0xb2, 0x9f, 0x7d, 0x4c, 0x41, 0x3a, 0x3c, 0x3c, 0x36, 0x33, 0x34,\n    0x3a, 0x3b, 0x3e, 0x3f, 0x3c, 0x36, 0x34, 0x35, 0x3e, 0x44, 0x4e, 0x58, 0x5b, 0x53, 0x46, 0x3b,\n    0x3b, 0x36, 0x3b, 0x41, 0x3b, 0x36, 0x34, 0x32, 0x3d, 0x3f, 0x4b, 0x4e, 0x48, 0x4f, 0x55, 0x4c,\n    0x47, 0x5c, 0x7e, 0x94, 0x8c, 0x7d, 0x8b, 0xa6, 0xad, 0x9b, 0x77, 0x5f, 0x63, 0x72, 0x7d, 0x84,\n    0x7d, 0x6c, 0x65, 0x65, 0x67, 0x73, 0x79, 0x6f, 0x6c, 0x6f, 0x6f, 0x6a, 0x64, 0x62, 0x67, 0x6d,\n    0x78, 0x76, 0x6f, 0x65, 0x5d, 0x58, 0x54, 0x4f, 0x4d, 0x50, 0x5a, 0x66, 0x6c, 0x6b, 0x6b, 0x6e,\n    0x78, 0x70, 0x6c, 0x6c, 0x65, 0x59, 0x56, 0x5a, 0x5e, 0x5d, 0x5d, 0x5f, 0x63, 0x65, 0x66, 0x65,\n    0x69, 0x6b, 0x6c, 0x6d, 0x6d, 0x6d, 0x68, 0x63, 0x5a, 0x5e, 0x61, 0x5f, 0x5d, 0x5e, 0x5e, 0x5e,\n    0x5d, 0x5c, 0x56, 0x55, 0x5d, 0x5f, 0x5e, 0x62, 0x65, 0x6a, 0x6b, 0x66, 0x5e, 0x56, 0x4c, 0x43,\n    0x40, 0x3f, 0x3f, 0x44, 0x4a, 0x4c, 0x48, 0x43, 0x44, 0x4c, 0x6c, 0x93, 0x9f, 0x93, 0x80, 0x72,\n    0x80, 0x89, 0x8f, 0x8c, 0x89, 0x89, 0x85, 0x7f, 0x7b, 0x7d, 0x7e, 0x78, 0x73, 0x7e, 0x8c, 0x8d,\n    0x98, 0x9a, 0x9f, 0xa2, 0xa2, 0xa0, 0xa3, 0xa8, 0xa2, 0x9d, 0x9e, 0xa3, 0xa2, 0x9c, 0x9f, 0xa9,\n    0xb8, 0xb8, 0x97, 0x76, 0x69, 0x69, 0x6e, 0x67, 0x6d, 0x70, 0x72, 0x73, 0x74, 0x78, 0x7d, 0x80,\n    0x83, 0x80, 0x80, 0x84, 0x86, 0x87, 0x8d, 0x94, 0x8e, 0x96, 0x97, 0x93, 0x92, 0x8e, 0x8f, 0x97,\n    0x98, 0x96, 0x8f, 0x8e, 0x92, 0x90, 0x8b, 0x8e, 0x9b, 0x9d, 0x9e, 0x9a, 0x92, 0x8b, 0x88, 0x87,\n    0x90, 0x90, 0x8e, 0x8b, 0x8a, 0x8c, 0x8b, 0x89, 0x85, 0x7f, 0x84, 0x85, 0x7d, 0x7e, 0x83, 0x7e,\n    0x7c, 0x7e, 0x7b, 0x7c, 0x7f, 0x7c, 0x7a, 0x7f, 0x7f, 0x7c, 0x7a, 0x7c, 0x7e, 0x7e, 0x7b, 0x78,\n    0x77, 0x78, 0x78, 0x74, 0x6f, 0x6c, 0x6c, 0x6d, 0x66, 0x64, 0x64, 0x65, 0x66, 0x64, 0x5e, 0x5a,\n    0x56, 0x53, 0x51, 0x4f, 0x4f, 0x4c, 0x47, 0x42, 0x3d, 0x3e, 0x3c, 0x36, 0x34, 0x38, 0x3b, 0x3c,\n    0x37, 0x36, 0x36, 0x36, 0x38, 0x3b, 0x3f, 0x41, 0x46, 0x4c, 0x56, 0x5e, 0x62, 0x65, 0x6d, 0x76,\n    0x80, 0x7f, 0x7d, 0x7e, 0x77, 0x65, 0x5e, 0x68, 0x71, 0x86, 0x95, 0x8f, 0x83, 0x81, 0x8b, 0x94,\n    0x8b, 0x7a, 0x6a, 0x68, 0x71, 0x78, 0x76, 0x71, 0x5c, 0x53, 0x4c, 0x4d, 0x4d, 0x4b, 0x4d, 0x53,\n    0x4d, 0x50, 0x4d, 0x5b, 0x94, 0xb5, 0xbe, 0xa3, 0x7c, 0x63, 0x5e, 0x60, 0x66, 0x6f, 0x6f, 0x72,\n    0x7b, 0x78, 0x70, 0x68, 0x64, 0x65, 0x65, 0x63, 0x6d, 0x67, 0x5c, 0x4f, 0x45, 0x42, 0x46, 0x4b,\n    0x46, 0x4c, 0x4d, 0x49, 0x49, 0x4e, 0x4f, 0x4b, 0x55, 0x58, 0x5b, 0x5b, 0x53, 0x4b, 0x48, 0x4b,\n    0x54, 0x53, 0x50, 0x4d, 0x4b, 0x4c, 0x4c, 0x4b, 0x4b, 0x4f, 0x52, 0x51, 0x4f, 0x4f, 0x51, 0x53,\n    0x5e, 0x67, 0x6e, 0x6d, 0x6a, 0x6a, 0x6c, 0x6b, 0x75, 0x80, 0x83, 0x7a, 0x71, 0x6b, 0x61, 0x55,\n    0x49, 0x46, 0x4a, 0x49, 0x42, 0x47, 0x4c, 0x43, 0x40, 0x3e, 0x35, 0x32, 0x27, 0x38, 0x43, 0x49,\n    0x40, 0x36, 0x2a, 0x26, 0x2a, 0x30, 0x33, 0x32, 0x28, 0x26, 0x2b, 0x34, 0x33, 0x2a, 0x27, 0x2a,\n    0x27, 0x23, 0x1e, 0x1a, 0x18, 0x17, 0x15, 0x14, 0x18, 0x1d, 0x1f, 0x1c, 0x17, 0x16, 0x15, 0x14,\n    0x1a, 0x19, 0x32, 0x62, 0x83, 0x74, 0x46, 0x21, 0x39, 0x4b, 0x65, 0x7d, 0x8a, 0x8d, 0x88, 0x84,\n    0x67, 0x4f, 0x30, 0x2b, 0x44, 0x5f, 0x71, 0x7c, 0x89, 0x8c, 0x97, 0xa2, 0x9c, 0x83, 0x6a, 0x5d,\n    0x6c, 0x50, 0x3c, 0x3e, 0x4d, 0x60, 0x6b, 0x6b, 0x69, 0x62, 0x5a, 0x56, 0x50, 0x4b, 0x4b, 0x4f,\n    0x4c, 0x51, 0x57, 0x5c, 0x5f, 0x60, 0x5f, 0x5e, 0x60, 0x61, 0x63, 0x61, 0x57, 0x48, 0x3d, 0x38,\n    0x3d, 0x43, 0x4d, 0x55, 0x59, 0x59, 0x57, 0x55, 0x55, 0x52, 0x50, 0x50, 0x53, 0x54, 0x53, 0x52,\n    0x55, 0x54, 0x54, 0x56, 0x57, 0x58, 0x58, 0x57, 0x52, 0x4a, 0x42, 0x41, 0x43, 0x44, 0x44, 0x45,\n    0x50, 0x55, 0x56, 0x50, 0x4a, 0x48, 0x47, 0x46, 0x41, 0x40, 0x45, 0x51, 0x77, 0x9f, 0xb0, 0xbe,\n    0xb7, 0xc1, 0xb5, 0x98, 0x8b, 0x93, 0x90, 0x80, 0x53, 0x35, 0x2c, 0x37, 0x3c, 0x40, 0x44, 0x42,\n    0x3b, 0x32, 0x2a, 0x2b, 0x33, 0x3a, 0x3a, 0x36, 0x44, 0x4a, 0x4a, 0x3f, 0x33, 0x32, 0x39, 0x41,\n    0x4e, 0x49, 0x41, 0x39, 0x36, 0x3a, 0x42, 0x49, 0x44, 0x46, 0x49, 0x4d, 0x52, 0x57, 0x5c, 0x5f,\n    0x6f, 0x86, 0x96, 0x91, 0x88, 0x84, 0x7e, 0x75, 0x59, 0x4b, 0x42, 0x40, 0x39, 0x2e, 0x2c, 0x32,\n    0x32, 0x37, 0x37, 0x39, 0x3c, 0x38, 0x33, 0x35, 0x42, 0x4d, 0x51, 0x5a, 0x59, 0x4e, 0x46, 0x36,\n    0x39, 0x3f, 0x47, 0x4a, 0x48, 0x43, 0x40, 0x3e, 0x41, 0x4e, 0x56, 0x54, 0x53, 0x57, 0x56, 0x50,\n    0x47, 0x48, 0x5e, 0x5c, 0x6a, 0x70, 0x84, 0x96, 0x94, 0x89, 0x74, 0x61, 0x58, 0x5a, 0x5f, 0x60,\n    0x64, 0x53, 0x54, 0x61, 0x68, 0x72, 0x7d, 0x7c, 0x7c, 0x77, 0x74, 0x72, 0x6d, 0x67, 0x65, 0x68,\n    0x6e, 0x76, 0x7c, 0x7b, 0x79, 0x74, 0x68, 0x5c, 0x5a, 0x51, 0x50, 0x5f, 0x6e, 0x72, 0x71, 0x71,\n    0x70, 0x74, 0x74, 0x6a, 0x59, 0x4d, 0x4b, 0x4d, 0x4e, 0x4b, 0x46, 0x42, 0x42, 0x45, 0x49, 0x4b,\n    0x4a, 0x4a, 0x4c, 0x51, 0x53, 0x51, 0x51, 0x52, 0x49, 0x4b, 0x4d, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e,\n    0x40, 0x3f, 0x3d, 0x3c, 0x3d, 0x40, 0x44, 0x46, 0x44, 0x43, 0x45, 0x4d, 0x52, 0x50, 0x4b, 0x48,\n    0x45, 0x3f, 0x3e, 0x42, 0x47, 0x47, 0x45, 0x46, 0x43, 0x64, 0x83, 0x8f, 0x8d, 0x7f, 0x70, 0x6a,\n    0x7a, 0x73, 0x78, 0x84, 0x88, 0x85, 0x7d, 0x74, 0x71, 0x70, 0x6e, 0x6c, 0x6c, 0x6f, 0x73, 0x77,\n    0x83, 0x84, 0x85, 0x87, 0x89, 0x8d, 0x92, 0x95, 0x95, 0x96, 0x94, 0x8e, 0x88, 0x88, 0x8b, 0x8f,\n    0x8c, 0x90, 0x82, 0x72, 0x6f, 0x6a, 0x68, 0x70, 0x73, 0x70, 0x71, 0x76, 0x7a, 0x7c, 0x7e, 0x82,\n    0x86, 0x85, 0x83, 0x82, 0x84, 0x88, 0x8e, 0x92, 0x98, 0x9c, 0x9b, 0x94, 0x8e, 0x8f, 0x93, 0x94,\n    0x98, 0x9b, 0x9a, 0x95, 0x92, 0x94, 0x95, 0x94, 0x99, 0x97, 0x99, 0x9c, 0x97, 0x8b, 0x85, 0x87,\n    0x8a, 0x8c, 0x8e, 0x8e, 0x8c, 0x88, 0x86, 0x85, 0x86, 0x85, 0x86, 0x89, 0x89, 0x85, 0x81, 0x80,\n    0x85, 0x7b, 0x7e, 0x81, 0x7e, 0x83, 0x86, 0x7d, 0x7b, 0x7d, 0x80, 0x81, 0x80, 0x7e, 0x7d, 0x7d,\n    0x79, 0x7b, 0x7b, 0x75, 0x6f, 0x6b, 0x68, 0x65, 0x66, 0x6a, 0x6c, 0x66, 0x5c, 0x55, 0x57, 0x5c,\n    0x5f, 0x59, 0x52, 0x4f, 0x4e, 0x4c, 0x47, 0x43, 0x40, 0x3a, 0x37, 0x39, 0x3c, 0x3d, 0x3d, 0x3d,\n    0x3b, 0x3b, 0x39, 0x38, 0x37, 0x3a, 0x3e, 0x41, 0x47, 0x49, 0x4f, 0x58, 0x5f, 0x66, 0x6e, 0x75,\n    0x7d, 0x7f, 0x83, 0x7e, 0x71, 0x6a, 0x64, 0x5a, 0x6d, 0x87, 0x92, 0x8b, 0x77, 0x6d, 0x7d, 0x88,\n    0x8c, 0x6d, 0x66, 0x71, 0x73, 0x78, 0x7b, 0x6f, 0x61, 0x51, 0x4c, 0x51, 0x50, 0x4f, 0x52, 0x55,\n    0x51, 0x50, 0x51, 0x5a, 0x96, 0xba, 0xbc, 0xa0, 0x79, 0x68, 0x5f, 0x62, 0x64, 0x69, 0x6e, 0x6e,\n    0x6e, 0x71, 0x6d, 0x6a, 0x6c, 0x6a, 0x67, 0x69, 0x6b, 0x61, 0x51, 0x43, 0x3d, 0x3e, 0x3f, 0x3d,\n    0x3e, 0x3f, 0x3f, 0x3e, 0x3e, 0x40, 0x45, 0x49, 0x4b, 0x50, 0x54, 0x51, 0x48, 0x40, 0x3f, 0x43,\n    0x4c, 0x4f, 0x51, 0x52, 0x51, 0x51, 0x52, 0x54, 0x55, 0x50, 0x50, 0x4f, 0x47, 0x44, 0x46, 0x43,\n    0x4c, 0x4a, 0x4b, 0x4d, 0x4b, 0x47, 0x48, 0x4c, 0x5d, 0x6c, 0x72, 0x6f, 0x6f, 0x6b, 0x5e, 0x56,\n    0x4b, 0x51, 0x48, 0x49, 0x4c, 0x46, 0x48, 0x47, 0x49, 0x38, 0x36, 0x3d, 0x2f, 0x2d, 0x3a, 0x2c,\n    0x2e, 0x24, 0x23, 0x28, 0x2b, 0x30, 0x33, 0x30, 0x26, 0x1f, 0x1b, 0x1b, 0x1c, 0x1a, 0x19, 0x1b,\n    0x18, 0x1b, 0x1a, 0x15, 0x17, 0x20, 0x27, 0x28, 0x25, 0x22, 0x23, 0x22, 0x1d, 0x1d, 0x1c, 0x15,\n    0x20, 0x50, 0x8d, 0x97, 0x63, 0x34, 0x37, 0x4e, 0x65, 0x77, 0x7f, 0x7e, 0x7f, 0x76, 0x5e, 0x4a,\n    0x3f, 0x3c, 0x53, 0x78, 0x7f, 0x6a, 0x64, 0x72, 0x8e, 0x99, 0x97, 0x9a, 0x85, 0x62, 0x59, 0x51,\n    0x3f, 0x37, 0x36, 0x45, 0x54, 0x5b, 0x5d, 0x60, 0x62, 0x5c, 0x52, 0x4a, 0x4a, 0x4e, 0x4d, 0x47,\n    0x4d, 0x51, 0x56, 0x5c, 0x5f, 0x60, 0x5f, 0x5f, 0x5a, 0x5b, 0x5d, 0x5a, 0x4f, 0x41, 0x39, 0x38,\n    0x44, 0x49, 0x51, 0x58, 0x5c, 0x5c, 0x5a, 0x59, 0x56, 0x55, 0x53, 0x54, 0x55, 0x55, 0x52, 0x50,\n    0x52, 0x52, 0x53, 0x55, 0x57, 0x57, 0x56, 0x54, 0x52, 0x4a, 0x44, 0x46, 0x4b, 0x50, 0x53, 0x55,\n    0x57, 0x58, 0x56, 0x51, 0x4f, 0x4d, 0x48, 0x41, 0x48, 0x48, 0x4f, 0x59, 0x7a, 0x9d, 0xac, 0xbb,\n    0xb5, 0xba, 0xb2, 0x9b, 0x8a, 0x8b, 0x95, 0x9a, 0x75, 0x4d, 0x2c, 0x27, 0x2d, 0x31, 0x34, 0x35,\n    0x2e, 0x2b, 0x2a, 0x2e, 0x37, 0x3e, 0x43, 0x44, 0x54, 0x56, 0x51, 0x44, 0x38, 0x33, 0x35, 0x38,\n    0x37, 0x37, 0x39, 0x3c, 0x41, 0x46, 0x49, 0x4a, 0x4c, 0x49, 0x48, 0x4c, 0x54, 0x5b, 0x5f, 0x5f,\n    0x75, 0x8d, 0xa1, 0x9f, 0x8f, 0x79, 0x60, 0x4c, 0x50, 0x4b, 0x47, 0x45, 0x42, 0x3d, 0x37, 0x34,\n    0x2b, 0x34, 0x39, 0x3f, 0x45, 0x41, 0x39, 0x39, 0x43, 0x51, 0x54, 0x54, 0x49, 0x3b, 0x3a, 0x33,\n    0x36, 0x3b, 0x42, 0x46, 0x47, 0x48, 0x4a, 0x4c, 0x54, 0x5b, 0x5d, 0x59, 0x5a, 0x60, 0x5f, 0x58,\n    0x4f, 0x43, 0x48, 0x40, 0x4b, 0x4c, 0x51, 0x57, 0x5a, 0x59, 0x58, 0x5a, 0x5b, 0x59, 0x55, 0x51,\n    0x5b, 0x59, 0x62, 0x70, 0x78, 0x7f, 0x85, 0x86, 0x83, 0x7e, 0x79, 0x78, 0x75, 0x71, 0x70, 0x72,\n    0x78, 0x7e, 0x83, 0x82, 0x7e, 0x79, 0x72, 0x6d, 0x65, 0x5a, 0x57, 0x62, 0x6f, 0x73, 0x70, 0x6e,\n    0x76, 0x79, 0x79, 0x71, 0x64, 0x5c, 0x5b, 0x5e, 0x57, 0x55, 0x50, 0x4c, 0x47, 0x43, 0x3f, 0x3d,\n    0x3a, 0x39, 0x3a, 0x3c, 0x3c, 0x38, 0x36, 0x36, 0x34, 0x36, 0x37, 0x38, 0x37, 0x36, 0x37, 0x37,\n    0x39, 0x38, 0x37, 0x36, 0x36, 0x38, 0x3a, 0x3b, 0x34, 0x34, 0x39, 0x43, 0x4a, 0x4a, 0x46, 0x43,\n    0x47, 0x42, 0x40, 0x44, 0x48, 0x49, 0x49, 0x4a, 0x4b, 0x6b, 0x83, 0x83, 0x75, 0x65, 0x5e, 0x61,\n    0x61, 0x62, 0x71, 0x81, 0x7f, 0x75, 0x6c, 0x65, 0x64, 0x62, 0x60, 0x5c, 0x59, 0x59, 0x5b, 0x5d,\n    0x5b, 0x5d, 0x5f, 0x61, 0x64, 0x68, 0x6c, 0x6f, 0x7f, 0x7f, 0x7e, 0x7d, 0x7d, 0x7e, 0x81, 0x82,\n    0x81, 0x7f, 0x76, 0x72, 0x75, 0x6f, 0x6a, 0x73, 0x74, 0x72, 0x74, 0x79, 0x7d, 0x7d, 0x7e, 0x80,\n    0x8b, 0x88, 0x84, 0x82, 0x84, 0x89, 0x90, 0x94, 0x96, 0x9a, 0x9a, 0x96, 0x93, 0x95, 0x98, 0x99,\n    0x98, 0x9a, 0x9a, 0x96, 0x92, 0x91, 0x92, 0x93, 0x98, 0x97, 0x99, 0x9c, 0x97, 0x8c, 0x86, 0x87,\n    0x89, 0x8b, 0x8d, 0x8e, 0x8c, 0x89, 0x88, 0x88, 0x89, 0x87, 0x87, 0x89, 0x88, 0x84, 0x81, 0x80,\n    0x86, 0x81, 0x81, 0x83, 0x82, 0x84, 0x83, 0x7e, 0x87, 0x84, 0x81, 0x7e, 0x7d, 0x7f, 0x81, 0x82,\n    0x76, 0x7a, 0x7b, 0x76, 0x71, 0x6e, 0x6d, 0x6c, 0x6a, 0x6c, 0x6b, 0x64, 0x5d, 0x5b, 0x60, 0x66,\n    0x5b, 0x58, 0x54, 0x52, 0x51, 0x50, 0x4e, 0x4b, 0x43, 0x3f, 0x3c, 0x3c, 0x3d, 0x3d, 0x3e, 0x41,\n    0x40, 0x40, 0x40, 0x3e, 0x3d, 0x3c, 0x3d, 0x3e, 0x44, 0x46, 0x4c, 0x54, 0x5b, 0x64, 0x6f, 0x78,\n    0x7d, 0x7c, 0x7e, 0x78, 0x6b, 0x62, 0x61, 0x60, 0x70, 0x8d, 0x97, 0x8a, 0x72, 0x6d, 0x88, 0x9a,\n    0x8a, 0x6b, 0x63, 0x6d, 0x70, 0x77, 0x7a, 0x70, 0x5f, 0x59, 0x5b, 0x5e, 0x58, 0x54, 0x54, 0x52,\n    0x50, 0x4e, 0x51, 0x5e, 0x99, 0xbc, 0xbb, 0x9d, 0x77, 0x67, 0x5f, 0x61, 0x64, 0x68, 0x6d, 0x6c,\n    0x6a, 0x6e, 0x6b, 0x68, 0x6b, 0x6a, 0x68, 0x6b, 0x62, 0x58, 0x47, 0x3b, 0x38, 0x3a, 0x38, 0x34,\n    0x2e, 0x2e, 0x2e, 0x2e, 0x2f, 0x30, 0x30, 0x2f, 0x38, 0x39, 0x39, 0x39, 0x38, 0x3b, 0x42, 0x49,\n    0x4c, 0x51, 0x4f, 0x46, 0x42, 0x47, 0x4c, 0x4b, 0x43, 0x4a, 0x54, 0x54, 0x4a, 0x44, 0x43, 0x41,\n    0x3a, 0x36, 0x35, 0x39, 0x3c, 0x3f, 0x42, 0x46, 0x4c, 0x56, 0x5f, 0x67, 0x6c, 0x65, 0x5f, 0x62,\n    0x7f, 0x81, 0x70, 0x64, 0x5a, 0x4a, 0x46, 0x43, 0x3e, 0x49, 0x3c, 0x3f, 0x59, 0x61, 0x55, 0x43,\n    0x21, 0x1e, 0x21, 0x20, 0x17, 0x13, 0x16, 0x16, 0x15, 0x19, 0x16, 0x0f, 0x12, 0x1c, 0x1d, 0x14,\n    0x14, 0x17, 0x17, 0x21, 0x45, 0x72, 0x85, 0x7f, 0x6a, 0x5c, 0x55, 0x4c, 0x3a, 0x2f, 0x36, 0x40,\n    0x6f, 0x90, 0x7d, 0x46, 0x34, 0x42, 0x5a, 0x74, 0x76, 0x70, 0x65, 0x5b, 0x52, 0x47, 0x4a, 0x5b,\n    0x66, 0x7b, 0x78, 0x57, 0x45, 0x58, 0x74, 0x81, 0x93, 0x9c, 0x91, 0x81, 0x64, 0x47, 0x42, 0x3b,\n    0x39, 0x35, 0x39, 0x47, 0x54, 0x56, 0x54, 0x53, 0x56, 0x52, 0x4b, 0x45, 0x45, 0x47, 0x43, 0x3d,\n    0x4e, 0x51, 0x56, 0x5b, 0x5e, 0x5f, 0x5f, 0x5e, 0x59, 0x5a, 0x59, 0x53, 0x47, 0x3d, 0x3b, 0x3f,\n    0x49, 0x4d, 0x52, 0x58, 0x5b, 0x5b, 0x5a, 0x59, 0x57, 0x56, 0x54, 0x55, 0x55, 0x53, 0x4f, 0x4c,\n    0x4f, 0x50, 0x52, 0x54, 0x57, 0x57, 0x55, 0x54, 0x4b, 0x44, 0x41, 0x46, 0x50, 0x57, 0x5b, 0x5d,\n    0x55, 0x54, 0x54, 0x55, 0x59, 0x5b, 0x57, 0x50, 0x45, 0x4a, 0x51, 0x4e, 0x5a, 0x71, 0x83, 0x9b,\n    0xb1, 0xb1, 0xb4, 0xb3, 0xa2, 0x88, 0x77, 0x73, 0x72, 0x56, 0x38, 0x30, 0x34, 0x30, 0x2a, 0x2d,\n    0x31, 0x2e, 0x2b, 0x29, 0x2b, 0x33, 0x3e, 0x45, 0x46, 0x45, 0x3f, 0x37, 0x31, 0x31, 0x31, 0x30,\n    0x2e, 0x2b, 0x2a, 0x2f, 0x38, 0x40, 0x44, 0x44, 0x4a, 0x4d, 0x51, 0x57, 0x5b, 0x5e, 0x5e, 0x5e,\n    0x5e, 0x64, 0x68, 0x63, 0x5a, 0x52, 0x4c, 0x49, 0x41, 0x43, 0x42, 0x3f, 0x40, 0x41, 0x3c, 0x33,\n    0x30, 0x3a, 0x46, 0x51, 0x56, 0x4c, 0x44, 0x47, 0x4d, 0x4f, 0x45, 0x40, 0x3a, 0x36, 0x3c, 0x38,\n    0x33, 0x36, 0x39, 0x3a, 0x3b, 0x3e, 0x42, 0x45, 0x49, 0x4d, 0x4e, 0x4d, 0x53, 0x5b, 0x59, 0x51,\n    0x42, 0x3d, 0x46, 0x41, 0x46, 0x46, 0x49, 0x50, 0x4f, 0x4d, 0x53, 0x5e, 0x65, 0x61, 0x5b, 0x58,\n    0x52, 0x5d, 0x63, 0x69, 0x71, 0x76, 0x77, 0x79, 0x7c, 0x77, 0x73, 0x72, 0x72, 0x71, 0x70, 0x71,\n    0x74, 0x76, 0x7a, 0x7c, 0x7a, 0x77, 0x77, 0x7a, 0x73, 0x68, 0x62, 0x69, 0x72, 0x74, 0x6f, 0x6c,\n    0x6d, 0x71, 0x72, 0x6e, 0x64, 0x5c, 0x58, 0x58, 0x5b, 0x5a, 0x5a, 0x58, 0x53, 0x4c, 0x43, 0x3d,\n    0x3f, 0x3e, 0x3d, 0x3d, 0x3a, 0x35, 0x31, 0x30, 0x33, 0x34, 0x34, 0x33, 0x32, 0x32, 0x33, 0x34,\n    0x34, 0x34, 0x34, 0x34, 0x34, 0x33, 0x33, 0x32, 0x30, 0x30, 0x35, 0x3e, 0x45, 0x47, 0x46, 0x46,\n    0x48, 0x44, 0x41, 0x43, 0x46, 0x48, 0x49, 0x4b, 0x55, 0x6a, 0x73, 0x67, 0x56, 0x49, 0x48, 0x4f,\n    0x4f, 0x59, 0x71, 0x80, 0x73, 0x5d, 0x55, 0x54, 0x58, 0x59, 0x58, 0x57, 0x56, 0x56, 0x58, 0x59,\n    0x55, 0x56, 0x58, 0x59, 0x5a, 0x5b, 0x5d, 0x5f, 0x65, 0x68, 0x6b, 0x6c, 0x6d, 0x6f, 0x74, 0x79,\n    0x79, 0x74, 0x70, 0x78, 0x7f, 0x77, 0x70, 0x77, 0x77, 0x76, 0x78, 0x7d, 0x80, 0x80, 0x80, 0x80,\n    0x86, 0x81, 0x7c, 0x7b, 0x7f, 0x87, 0x8d, 0x91, 0x92, 0x95, 0x96, 0x95, 0x94, 0x96, 0x97, 0x96,\n    0x97, 0x99, 0x9b, 0x99, 0x94, 0x8e, 0x8f, 0x92, 0x98, 0x97, 0x99, 0x9b, 0x97, 0x8e, 0x89, 0x89,\n    0x8a, 0x8c, 0x8d, 0x8f, 0x8f, 0x8f, 0x8e, 0x8e, 0x8b, 0x89, 0x88, 0x8a, 0x8a, 0x87, 0x85, 0x84,\n    0x87, 0x88, 0x86, 0x85, 0x89, 0x87, 0x82, 0x82, 0x8c, 0x87, 0x81, 0x7d, 0x7c, 0x7d, 0x80, 0x82,\n    0x7c, 0x80, 0x81, 0x7a, 0x73, 0x6f, 0x6d, 0x6d, 0x6f, 0x6c, 0x66, 0x5f, 0x5b, 0x5c, 0x61, 0x66,\n    0x5b, 0x5b, 0x59, 0x58, 0x57, 0x55, 0x54, 0x54, 0x46, 0x44, 0x43, 0x42, 0x3f, 0x3d, 0x3f, 0x43,\n    0x41, 0x43, 0x44, 0x43, 0x41, 0x3f, 0x3d, 0x3d, 0x40, 0x42, 0x47, 0x4d, 0x54, 0x5e, 0x6d, 0x7a,\n    0x80, 0x7d, 0x7c, 0x78, 0x6b, 0x60, 0x65, 0x72, 0x7c, 0x98, 0x9e, 0x8e, 0x7c, 0x7e, 0x99, 0xa4,\n    0x91, 0x75, 0x6a, 0x70, 0x72, 0x77, 0x79, 0x6f, 0x60, 0x60, 0x64, 0x66, 0x63, 0x64, 0x61, 0x58,\n    0x4f, 0x4b, 0x50, 0x65, 0x9d, 0xbf, 0xb9, 0x99, 0x75, 0x65, 0x5e, 0x62, 0x64, 0x68, 0x6c, 0x6a,\n    0x6a, 0x6c, 0x69, 0x67, 0x6b, 0x69, 0x67, 0x6a, 0x6b, 0x60, 0x52, 0x48, 0x46, 0x44, 0x3a, 0x30,\n    0x37, 0x34, 0x31, 0x30, 0x31, 0x32, 0x30, 0x2f, 0x32, 0x30, 0x2e, 0x30, 0x36, 0x3e, 0x45, 0x49,\n    0x4c, 0x52, 0x4b, 0x37, 0x2b, 0x2f, 0x32, 0x2e, 0x38, 0x3b, 0x3d, 0x3f, 0x44, 0x47, 0x40, 0x36,\n    0x3e, 0x3b, 0x3c, 0x43, 0x4b, 0x51, 0x55, 0x58, 0x52, 0x53, 0x59, 0x64, 0x67, 0x5c, 0x5a, 0x68,\n    0x83, 0x8a, 0x7f, 0x74, 0x65, 0x4e, 0x43, 0x3e, 0x42, 0x39, 0x52, 0x73, 0x6d, 0x6a, 0x71, 0x59,\n    0x36, 0x22, 0x15, 0x16, 0x1b, 0x1e, 0x1a, 0x0e, 0x19, 0x15, 0x15, 0x18, 0x17, 0x14, 0x15, 0x19,\n    0x14, 0x21, 0x43, 0x6b, 0x7c, 0x70, 0x5e, 0x57, 0x4f, 0x43, 0x3e, 0x3d, 0x40, 0x53, 0x73, 0x89,\n    0x97, 0x66, 0x4d, 0x50, 0x53, 0x5c, 0x6d, 0x73, 0x60, 0x60, 0x55, 0x4d, 0x55, 0x5f, 0x65, 0x69,\n    0x55, 0x43, 0x40, 0x58, 0x73, 0x80, 0x88, 0x90, 0x7f, 0x81, 0x6e, 0x56, 0x3f, 0x33, 0x34, 0x2d,\n    0x31, 0x32, 0x3b, 0x4a, 0x54, 0x53, 0x4e, 0x4c, 0x48, 0x47, 0x45, 0x43, 0x43, 0x43, 0x3e, 0x38,\n    0x50, 0x51, 0x55, 0x59, 0x5c, 0x5e, 0x5e, 0x5d, 0x5c, 0x5a, 0x55, 0x4c, 0x40, 0x3a, 0x40, 0x49,\n    0x4f, 0x50, 0x53, 0x56, 0x59, 0x5a, 0x59, 0x58, 0x56, 0x54, 0x52, 0x51, 0x52, 0x50, 0x4d, 0x4b,\n    0x4b, 0x4b, 0x4c, 0x4e, 0x51, 0x52, 0x51, 0x50, 0x4b, 0x46, 0x45, 0x4c, 0x55, 0x5b, 0x5e, 0x5f,\n    0x56, 0x59, 0x5e, 0x62, 0x67, 0x6a, 0x6c, 0x6c, 0x6b, 0x69, 0x65, 0x55, 0x53, 0x5f, 0x6d, 0x86,\n    0x94, 0x98, 0xa4, 0xaa, 0x98, 0x72, 0x52, 0x45, 0x43, 0x42, 0x3a, 0x3a, 0x3f, 0x35, 0x2b, 0x32,\n    0x34, 0x32, 0x2e, 0x28, 0x25, 0x28, 0x2f, 0x36, 0x33, 0x32, 0x2e, 0x2d, 0x30, 0x35, 0x36, 0x34,\n    0x2d, 0x2b, 0x2c, 0x30, 0x38, 0x3e, 0x40, 0x40, 0x40, 0x48, 0x50, 0x52, 0x50, 0x50, 0x54, 0x59,\n    0x55, 0x53, 0x50, 0x4d, 0x48, 0x43, 0x43, 0x45, 0x43, 0x44, 0x44, 0x41, 0x41, 0x43, 0x41, 0x3e,\n    0x3d, 0x4a, 0x63, 0x7b, 0x7b, 0x61, 0x51, 0x58, 0x62, 0x61, 0x52, 0x49, 0x41, 0x3b, 0x40, 0x3c,\n    0x38, 0x3a, 0x3a, 0x3a, 0x3a, 0x3a, 0x3c, 0x3e, 0x3e, 0x43, 0x46, 0x47, 0x4a, 0x4c, 0x46, 0x3d,\n    0x3a, 0x3d, 0x4b, 0x4c, 0x4f, 0x51, 0x50, 0x56, 0x5b, 0x53, 0x55, 0x60, 0x66, 0x61, 0x5b, 0x5b,\n    0x59, 0x64, 0x60, 0x5b, 0x67, 0x6f, 0x6e, 0x70, 0x6d, 0x6a, 0x67, 0x68, 0x6a, 0x6b, 0x69, 0x67,\n    0x63, 0x60, 0x61, 0x67, 0x69, 0x67, 0x69, 0x6f, 0x71, 0x69, 0x66, 0x6b, 0x71, 0x71, 0x6e, 0x6d,\n    0x70, 0x73, 0x76, 0x72, 0x68, 0x5c, 0x52, 0x4d, 0x4b, 0x4d, 0x50, 0x54, 0x55, 0x53, 0x4d, 0x48,\n    0x44, 0x43, 0x42, 0x41, 0x3e, 0x37, 0x33, 0x33, 0x36, 0x35, 0x35, 0x33, 0x31, 0x31, 0x33, 0x34,\n    0x37, 0x38, 0x39, 0x39, 0x38, 0x37, 0x35, 0x34, 0x3a, 0x3b, 0x3e, 0x41, 0x43, 0x44, 0x48, 0x4d,\n    0x4a, 0x47, 0x44, 0x44, 0x45, 0x47, 0x4a, 0x4c, 0x5a, 0x5e, 0x56, 0x47, 0x40, 0x3c, 0x38, 0x3a,\n    0x44, 0x55, 0x73, 0x7b, 0x60, 0x41, 0x3a, 0x3e, 0x40, 0x42, 0x44, 0x46, 0x47, 0x48, 0x4a, 0x4b,\n    0x4d, 0x4f, 0x51, 0x52, 0x52, 0x52, 0x53, 0x54, 0x53, 0x57, 0x5d, 0x60, 0x60, 0x64, 0x6f, 0x7a,\n    0x7a, 0x79, 0x7b, 0x82, 0x86, 0x7f, 0x78, 0x78, 0x7a, 0x7a, 0x7b, 0x7f, 0x82, 0x84, 0x84, 0x84,\n    0x8b, 0x87, 0x84, 0x86, 0x8d, 0x95, 0x9a, 0x9c, 0x92, 0x93, 0x95, 0x95, 0x94, 0x93, 0x91, 0x8f,\n    0x97, 0x98, 0x9c, 0x9d, 0x97, 0x90, 0x90, 0x94, 0x9a, 0x98, 0x98, 0x99, 0x96, 0x91, 0x8f, 0x90,\n    0x91, 0x8e, 0x8e, 0x92, 0x97, 0x99, 0x97, 0x93, 0x8d, 0x8b, 0x8c, 0x8f, 0x90, 0x8d, 0x8a, 0x8a,\n    0x87, 0x8e, 0x8a, 0x89, 0x8f, 0x8b, 0x84, 0x87, 0x89, 0x88, 0x86, 0x83, 0x7f, 0x7e, 0x7e, 0x7f,\n    0x80, 0x84, 0x84, 0x7d, 0x74, 0x70, 0x6f, 0x6f, 0x73, 0x6e, 0x66, 0x60, 0x5c, 0x5c, 0x5d, 0x5d,\n    0x5d, 0x5e, 0x5e, 0x5c, 0x58, 0x55, 0x54, 0x54, 0x4e, 0x4c, 0x4b, 0x4a, 0x48, 0x44, 0x43, 0x44,\n    0x3e, 0x40, 0x42, 0x43, 0x41, 0x3f, 0x3e, 0x3e, 0x3e, 0x3f, 0x43, 0x47, 0x4c, 0x56, 0x67, 0x76,\n    0x81, 0x7f, 0x7d, 0x7b, 0x6f, 0x62, 0x6c, 0x85, 0xaa, 0xbe, 0xbd, 0xb5, 0xb1, 0xb8, 0xc3, 0xbb,\n    0x9a, 0x82, 0x75, 0x77, 0x77, 0x78, 0x75, 0x6b, 0x65, 0x6e, 0x74, 0x68, 0x58, 0x57, 0x59, 0x53,\n    0x53, 0x49, 0x4e, 0x6b, 0x9f, 0xc1, 0xb8, 0x97, 0x74, 0x65, 0x5f, 0x63, 0x65, 0x69, 0x6c, 0x6a,\n    0x6d, 0x6f, 0x6b, 0x69, 0x6b, 0x68, 0x65, 0x69, 0x71, 0x6c, 0x68, 0x6b, 0x73, 0x75, 0x6b, 0x5e,\n    0x59, 0x56, 0x54, 0x56, 0x5b, 0x63, 0x6a, 0x6d, 0x68, 0x67, 0x65, 0x67, 0x69, 0x65, 0x5a, 0x4e,\n    0x4f, 0x55, 0x53, 0x47, 0x3e, 0x3d, 0x3d, 0x3a, 0x37, 0x38, 0x36, 0x3c, 0x4e, 0x59, 0x51, 0x46,\n    0x3e, 0x41, 0x46, 0x4c, 0x53, 0x56, 0x58, 0x59, 0x61, 0x60, 0x60, 0x62, 0x5f, 0x53, 0x53, 0x62,\n    0x67, 0x74, 0x73, 0x74, 0x71, 0x65, 0x64, 0x63, 0x79, 0xa0, 0xa4, 0x91, 0x88, 0x86, 0x7f, 0x6a,\n    0x5d, 0x4e, 0x44, 0x3d, 0x34, 0x30, 0x2f, 0x2a, 0x21, 0x1b, 0x17, 0x18, 0x1a, 0x20, 0x2e, 0x3d,\n    0x4f, 0x63, 0x67, 0x54, 0x47, 0x4a, 0x4c, 0x44, 0x44, 0x44, 0x46, 0x4a, 0x5c, 0x7e, 0x90, 0x8a,\n    0x66, 0x45, 0x4b, 0x58, 0x4f, 0x60, 0x77, 0x6a, 0x6a, 0x6c, 0x62, 0x5d, 0x6a, 0x74, 0x6c, 0x5f,\n    0x5d, 0x4f, 0x47, 0x54, 0x6b, 0x75, 0x6b, 0x5d, 0x5b, 0x53, 0x41, 0x32, 0x2d, 0x2f, 0x33, 0x2f,\n    0x35, 0x37, 0x3f, 0x49, 0x4e, 0x4b, 0x48, 0x47, 0x44, 0x43, 0x43, 0x42, 0x43, 0x41, 0x3d, 0x39,\n    0x52, 0x52, 0x53, 0x57, 0x5a, 0x5c, 0x5c, 0x5b, 0x5c, 0x56, 0x4d, 0x42, 0x39, 0x39, 0x44, 0x4f,\n    0x56, 0x56, 0x56, 0x59, 0x5b, 0x5d, 0x5c, 0x5b, 0x56, 0x52, 0x4f, 0x4e, 0x4f, 0x50, 0x4f, 0x4e,\n    0x49, 0x48, 0x47, 0x46, 0x47, 0x47, 0x46, 0x45, 0x50, 0x4d, 0x4e, 0x54, 0x5a, 0x5b, 0x5a, 0x59,\n    0x51, 0x58, 0x5f, 0x5e, 0x5a, 0x5a, 0x63, 0x6c, 0x75, 0x6e, 0x67, 0x5b, 0x61, 0x6f, 0x7b, 0x91,\n    0x92, 0x96, 0x94, 0x82, 0x62, 0x46, 0x3a, 0x3a, 0x29, 0x2f, 0x2d, 0x2f, 0x36, 0x31, 0x2d, 0x35,\n    0x2d, 0x2e, 0x2e, 0x2d, 0x2c, 0x2a, 0x29, 0x2a, 0x2f, 0x2e, 0x2c, 0x2b, 0x2e, 0x32, 0x31, 0x2f,\n    0x2a, 0x32, 0x3f, 0x4c, 0x52, 0x50, 0x48, 0x42, 0x3b, 0x3e, 0x3f, 0x3f, 0x3e, 0x41, 0x48, 0x4e,\n    0x4d, 0x4d, 0x4f, 0x50, 0x4c, 0x42, 0x3d, 0x3d, 0x43, 0x42, 0x42, 0x42, 0x3e, 0x3a, 0x3a, 0x3e,\n    0x3f, 0x4e, 0x71, 0x94, 0x91, 0x6b, 0x58, 0x67, 0x74, 0x80, 0x7a, 0x6a, 0x4f, 0x39, 0x3a, 0x39,\n    0x3f, 0x41, 0x44, 0x46, 0x47, 0x47, 0x47, 0x47, 0x52, 0x57, 0x59, 0x55, 0x50, 0x4c, 0x46, 0x3f,\n    0x4a, 0x45, 0x49, 0x4f, 0x59, 0x64, 0x5a, 0x57, 0x55, 0x50, 0x54, 0x61, 0x68, 0x62, 0x5a, 0x58,\n    0x64, 0x6c, 0x66, 0x64, 0x75, 0x7f, 0x78, 0x74, 0x63, 0x62, 0x61, 0x63, 0x65, 0x66, 0x63, 0x5f,\n    0x56, 0x4f, 0x4d, 0x54, 0x5a, 0x5a, 0x59, 0x5b, 0x5f, 0x5e, 0x60, 0x66, 0x6b, 0x6e, 0x70, 0x72,\n    0x78, 0x79, 0x79, 0x73, 0x67, 0x59, 0x4f, 0x49, 0x3c, 0x3c, 0x3f, 0x45, 0x4c, 0x4f, 0x4f, 0x4d,\n    0x48, 0x46, 0x45, 0x44, 0x40, 0x39, 0x34, 0x33, 0x37, 0x37, 0x35, 0x33, 0x31, 0x31, 0x33, 0x34,\n    0x3a, 0x3a, 0x3b, 0x3c, 0x3c, 0x3c, 0x3b, 0x3b, 0x40, 0x44, 0x49, 0x4a, 0x45, 0x42, 0x45, 0x4c,\n    0x4f, 0x4d, 0x4b, 0x47, 0x46, 0x48, 0x4c, 0x4e, 0x57, 0x54, 0x44, 0x36, 0x35, 0x36, 0x32, 0x31,\n    0x34, 0x4e, 0x70, 0x74, 0x4f, 0x2b, 0x24, 0x29, 0x2d, 0x2f, 0x32, 0x33, 0x33, 0x32, 0x32, 0x32,\n    0x34, 0x37, 0x3a, 0x3d, 0x3e, 0x3f, 0x41, 0x42, 0x45, 0x44, 0x48, 0x52, 0x5d, 0x68, 0x73, 0x7c,\n    0x7c, 0x84, 0x8a, 0x89, 0x84, 0x82, 0x7f, 0x78, 0x7d, 0x7d, 0x7d, 0x7e, 0x82, 0x86, 0x89, 0x89,\n    0x83, 0x81, 0x80, 0x84, 0x8b, 0x91, 0x93, 0x93, 0x92, 0x93, 0x95, 0x97, 0x95, 0x92, 0x8f, 0x8d,\n    0x96, 0x99, 0x9d, 0x9f, 0x9b, 0x95, 0x95, 0x98, 0x9d, 0x99, 0x96, 0x95, 0x95, 0x94, 0x95, 0x97,\n    0x96, 0x91, 0x8f, 0x94, 0x9e, 0xa2, 0x9d, 0x96, 0x90, 0x8f, 0x91, 0x95, 0x95, 0x91, 0x8c, 0x8a,\n    0x8c, 0x93, 0x90, 0x8e, 0x92, 0x8c, 0x84, 0x89, 0x88, 0x8b, 0x8d, 0x8a, 0x84, 0x80, 0x81, 0x83,\n    0x7c, 0x80, 0x81, 0x7c, 0x76, 0x74, 0x75, 0x75, 0x76, 0x71, 0x6b, 0x67, 0x65, 0x62, 0x5e, 0x5a,\n    0x5f, 0x61, 0x62, 0x5f, 0x5a, 0x55, 0x53, 0x52, 0x54, 0x51, 0x50, 0x53, 0x53, 0x4e, 0x48, 0x45,\n    0x40, 0x41, 0x42, 0x41, 0x40, 0x3f, 0x3f, 0x40, 0x3e, 0x3f, 0x40, 0x42, 0x45, 0x4d, 0x5d, 0x6b,\n    0x7c, 0x7d, 0x7c, 0x7b, 0x71, 0x61, 0x6c, 0x8e, 0xae, 0xbd, 0xbb, 0xb8, 0xbd, 0xc5, 0xc7, 0xb5,\n    0xae, 0x9d, 0x93, 0x93, 0x94, 0x92, 0x8c, 0x85, 0x89, 0x9c, 0xa3, 0x88, 0x62, 0x56, 0x5b, 0x5a,\n    0x5a, 0x4a, 0x4c, 0x71, 0xa0, 0xc2, 0xb7, 0x95, 0x73, 0x65, 0x5f, 0x64, 0x67, 0x6b, 0x6e, 0x6c,\n    0x70, 0x70, 0x6d, 0x6c, 0x6e, 0x6a, 0x67, 0x6c, 0x73, 0x71, 0x70, 0x77, 0x82, 0x89, 0x82, 0x78,\n    0x6a, 0x6d, 0x71, 0x77, 0x80, 0x8c, 0x98, 0x9f, 0xaa, 0xab, 0xad, 0xaf, 0xac, 0x98, 0x76, 0x58,\n    0x51, 0x5a, 0x69, 0x79, 0x82, 0x84, 0x84, 0x85, 0x85, 0x89, 0x7f, 0x70, 0x67, 0x5a, 0x49, 0x42,\n    0x49, 0x4d, 0x50, 0x4f, 0x4d, 0x4c, 0x4e, 0x4f, 0x5b, 0x63, 0x63, 0x5e, 0x59, 0x50, 0x4d, 0x52,\n    0x56, 0x60, 0x5e, 0x65, 0x6f, 0x73, 0x82, 0x8a, 0x96, 0x9b, 0x90, 0x94, 0x98, 0x8a, 0x85, 0x88,\n    0x87, 0x7b, 0x72, 0x6b, 0x5d, 0x52, 0x4a, 0x42, 0x34, 0x36, 0x29, 0x18, 0x27, 0x4e, 0x63, 0x5f,\n    0x52, 0x4e, 0x57, 0x68, 0x69, 0x59, 0x4f, 0x52, 0x3f, 0x4e, 0x64, 0x78, 0x87, 0x90, 0x7f, 0x5f,\n    0x4c, 0x4d, 0x46, 0x41, 0x4f, 0x62, 0x64, 0x5a, 0x5c, 0x58, 0x57, 0x60, 0x64, 0x53, 0x44, 0x45,\n    0x50, 0x4f, 0x46, 0x3d, 0x46, 0x57, 0x59, 0x4d, 0x42, 0x37, 0x30, 0x2c, 0x2c, 0x2e, 0x32, 0x39,\n    0x41, 0x41, 0x43, 0x45, 0x45, 0x42, 0x41, 0x41, 0x44, 0x42, 0x3e, 0x3b, 0x38, 0x35, 0x32, 0x31,\n    0x54, 0x52, 0x52, 0x54, 0x58, 0x5a, 0x5a, 0x59, 0x5b, 0x52, 0x46, 0x3e, 0x3b, 0x3f, 0x4a, 0x55,\n    0x57, 0x56, 0x56, 0x58, 0x5b, 0x5d, 0x5c, 0x5b, 0x56, 0x53, 0x4f, 0x4e, 0x50, 0x52, 0x53, 0x52,\n    0x50, 0x4e, 0x4b, 0x49, 0x47, 0x45, 0x42, 0x40, 0x49, 0x48, 0x49, 0x4d, 0x4d, 0x4a, 0x48, 0x47,\n    0x4a, 0x50, 0x56, 0x53, 0x4a, 0x4a, 0x59, 0x6a, 0x78, 0x7b, 0x7d, 0x6f, 0x69, 0x72, 0x84, 0xa4,\n    0xa7, 0xa7, 0x9a, 0x7e, 0x64, 0x53, 0x45, 0x39, 0x33, 0x30, 0x2a, 0x2b, 0x32, 0x32, 0x2d, 0x2c,\n    0x2f, 0x2d, 0x2a, 0x28, 0x27, 0x28, 0x29, 0x2b, 0x32, 0x34, 0x33, 0x30, 0x2e, 0x2f, 0x2f, 0x2d,\n    0x30, 0x39, 0x47, 0x53, 0x57, 0x53, 0x4a, 0x43, 0x3c, 0x3c, 0x3e, 0x44, 0x4a, 0x4b, 0x47, 0x42,\n    0x3e, 0x41, 0x45, 0x47, 0x45, 0x43, 0x45, 0x49, 0x44, 0x41, 0x41, 0x41, 0x3b, 0x33, 0x32, 0x36,\n    0x3a, 0x41, 0x57, 0x71, 0x70, 0x57, 0x55, 0x6d, 0x72, 0x79, 0x6f, 0x61, 0x4b, 0x3a, 0x3c, 0x3a,\n    0x3e, 0x40, 0x42, 0x45, 0x46, 0x46, 0x46, 0x46, 0x55, 0x5b, 0x60, 0x5e, 0x5c, 0x5d, 0x5e, 0x5f,\n    0x62, 0x5b, 0x56, 0x54, 0x53, 0x61, 0x5b, 0x5e, 0x56, 0x52, 0x53, 0x5c, 0x61, 0x60, 0x5c, 0x5b,\n    0x5e, 0x66, 0x69, 0x6d, 0x78, 0x7a, 0x6d, 0x60, 0x57, 0x58, 0x59, 0x59, 0x5a, 0x5b, 0x57, 0x53,\n    0x4a, 0x45, 0x44, 0x4c, 0x58, 0x5f, 0x5f, 0x5e, 0x57, 0x58, 0x5b, 0x60, 0x67, 0x6e, 0x75, 0x79,\n    0x7a, 0x79, 0x76, 0x6d, 0x61, 0x56, 0x4f, 0x4d, 0x43, 0x41, 0x40, 0x44, 0x4a, 0x4f, 0x51, 0x50,\n    0x51, 0x4e, 0x4c, 0x4a, 0x44, 0x3c, 0x37, 0x35, 0x3c, 0x3c, 0x3a, 0x38, 0x36, 0x36, 0x37, 0x38,\n    0x39, 0x39, 0x39, 0x3a, 0x3c, 0x3f, 0x42, 0x44, 0x44, 0x49, 0x51, 0x53, 0x4d, 0x46, 0x44, 0x47,\n    0x4d, 0x4e, 0x4c, 0x47, 0x44, 0x46, 0x4a, 0x4c, 0x52, 0x52, 0x46, 0x38, 0x35, 0x35, 0x34, 0x36,\n    0x32, 0x53, 0x77, 0x74, 0x4b, 0x29, 0x22, 0x25, 0x2b, 0x2d, 0x30, 0x32, 0x31, 0x31, 0x30, 0x30,\n    0x33, 0x34, 0x36, 0x37, 0x36, 0x36, 0x36, 0x36, 0x3b, 0x35, 0x38, 0x4d, 0x65, 0x74, 0x7a, 0x7c,\n    0x7f, 0x88, 0x91, 0x89, 0x7d, 0x7f, 0x81, 0x79, 0x7f, 0x7f, 0x7e, 0x7e, 0x82, 0x88, 0x8b, 0x8b,\n    0x8b, 0x8b, 0x8d, 0x90, 0x94, 0x96, 0x95, 0x94, 0x8e, 0x8f, 0x93, 0x95, 0x94, 0x8f, 0x8d, 0x8d,\n    0x95, 0x9a, 0x9e, 0x9e, 0x9c, 0x9b, 0x9a, 0x99, 0x9e, 0x9b, 0x96, 0x94, 0x94, 0x96, 0x98, 0x9a,\n    0x97, 0x93, 0x91, 0x97, 0xa0, 0xa3, 0x9d, 0x96, 0x95, 0x94, 0x95, 0x97, 0x96, 0x91, 0x8c, 0x8a,\n    0x92, 0x97, 0x96, 0x93, 0x91, 0x8b, 0x86, 0x88, 0x8a, 0x8c, 0x8d, 0x89, 0x82, 0x7f, 0x82, 0x85,\n    0x7e, 0x81, 0x80, 0x7c, 0x77, 0x76, 0x76, 0x75, 0x73, 0x70, 0x6c, 0x6b, 0x6c, 0x69, 0x62, 0x5d,\n    0x65, 0x67, 0x69, 0x67, 0x62, 0x5c, 0x59, 0x57, 0x55, 0x52, 0x51, 0x54, 0x55, 0x50, 0x49, 0x44,\n    0x48, 0x48, 0x47, 0x44, 0x42, 0x40, 0x40, 0x40, 0x41, 0x40, 0x40, 0x40, 0x41, 0x47, 0x53, 0x5e,\n    0x73, 0x79, 0x79, 0x78, 0x71, 0x61, 0x6c, 0x91, 0xaf, 0xbe, 0xbd, 0xbc, 0xbe, 0xc5, 0xcb, 0xc0,\n    0xbc, 0xb4, 0xae, 0xb0, 0xb3, 0xb2, 0xae, 0xac, 0xb4, 0xbe, 0xbf, 0xac, 0x94, 0x8b, 0x84, 0x77,\n    0x61, 0x4b, 0x4c, 0x78, 0xa1, 0xc3, 0xb5, 0x93, 0x73, 0x64, 0x5f, 0x64, 0x68, 0x6c, 0x70, 0x6f,\n    0x71, 0x71, 0x6e, 0x6f, 0x72, 0x6e, 0x6b, 0x72, 0x78, 0x74, 0x70, 0x70, 0x76, 0x7d, 0x7b, 0x76,\n    0x7b, 0x80, 0x86, 0x8b, 0x8e, 0x92, 0x97, 0x9b, 0xa8, 0xab, 0xaf, 0xb5, 0xb5, 0xa2, 0x7c, 0x59,\n    0x4d, 0x57, 0x73, 0x98, 0xb1, 0xb9, 0xb8, 0xb9, 0xb4, 0xb1, 0x9c, 0x87, 0x7e, 0x6e, 0x61, 0x64,\n    0x6c, 0x6d, 0x69, 0x5f, 0x57, 0x56, 0x5a, 0x5d, 0x56, 0x64, 0x66, 0x5e, 0x58, 0x51, 0x48, 0x43,\n    0x4b, 0x55, 0x53, 0x5d, 0x69, 0x6c, 0x74, 0x76, 0x6e, 0x7c, 0x85, 0x87, 0x82, 0x8f, 0x91, 0x6d,\n    0x61, 0x51, 0x48, 0x4a, 0x4e, 0x53, 0x53, 0x4d, 0x5e, 0x59, 0x4a, 0x41, 0x4f, 0x63, 0x62, 0x51,\n    0x4b, 0x60, 0x6d, 0x6c, 0x72, 0x75, 0x5c, 0x39, 0x2f, 0x3e, 0x61, 0x83, 0x8b, 0x7e, 0x68, 0x55,\n    0x4c, 0x34, 0x38, 0x5b, 0x71, 0x69, 0x52, 0x3f, 0x5a, 0x50, 0x43, 0x44, 0x51, 0x57, 0x59, 0x5f,\n    0x42, 0x31, 0x2c, 0x3b, 0x44, 0x3d, 0x36, 0x39, 0x35, 0x2f, 0x34, 0x31, 0x2c, 0x2b, 0x30, 0x42,\n    0x41, 0x41, 0x42, 0x42, 0x41, 0x40, 0x40, 0x40, 0x3c, 0x37, 0x31, 0x2b, 0x25, 0x20, 0x20, 0x22,\n    0x55, 0x53, 0x51, 0x52, 0x56, 0x58, 0x57, 0x56, 0x57, 0x4d, 0x42, 0x3f, 0x42, 0x49, 0x53, 0x5a,\n    0x54, 0x52, 0x51, 0x54, 0x57, 0x5a, 0x59, 0x58, 0x56, 0x53, 0x51, 0x51, 0x53, 0x55, 0x55, 0x54,\n    0x55, 0x55, 0x54, 0x53, 0x51, 0x4d, 0x49, 0x45, 0x42, 0x42, 0x44, 0x45, 0x42, 0x3e, 0x3e, 0x40,\n    0x4f, 0x52, 0x54, 0x53, 0x51, 0x57, 0x6b, 0x7e, 0x7e, 0x80, 0x7d, 0x64, 0x51, 0x51, 0x65, 0x89,\n    0xa5, 0xa5, 0x9f, 0x97, 0x92, 0x86, 0x65, 0x43, 0x37, 0x32, 0x31, 0x32, 0x32, 0x34, 0x31, 0x29,\n    0x33, 0x31, 0x2d, 0x28, 0x25, 0x25, 0x29, 0x2d, 0x36, 0x3d, 0x40, 0x3c, 0x37, 0x36, 0x39, 0x3c,\n    0x3a, 0x39, 0x39, 0x3d, 0x43, 0x46, 0x44, 0x42, 0x3e, 0x43, 0x4b, 0x53, 0x57, 0x54, 0x4d, 0x47,\n    0x4d, 0x55, 0x5b, 0x58, 0x51, 0x4d, 0x4f, 0x52, 0x55, 0x52, 0x4c, 0x45, 0x42, 0x41, 0x3f, 0x3c,\n    0x37, 0x3a, 0x3f, 0x46, 0x49, 0x44, 0x4c, 0x60, 0x5e, 0x5b, 0x4b, 0x45, 0x43, 0x40, 0x43, 0x3b,\n    0x3b, 0x3a, 0x39, 0x39, 0x3a, 0x3d, 0x3f, 0x40, 0x47, 0x4f, 0x58, 0x5e, 0x62, 0x68, 0x6e, 0x73,\n    0x6d, 0x69, 0x5e, 0x52, 0x42, 0x4e, 0x4b, 0x55, 0x5a, 0x54, 0x4f, 0x4d, 0x4f, 0x53, 0x55, 0x57,\n    0x56, 0x5a, 0x63, 0x67, 0x63, 0x5e, 0x54, 0x47, 0x4f, 0x51, 0x50, 0x4c, 0x4b, 0x4d, 0x4b, 0x48,\n    0x45, 0x45, 0x46, 0x4d, 0x5b, 0x69, 0x6d, 0x6b, 0x5f, 0x5c, 0x59, 0x5b, 0x63, 0x6d, 0x74, 0x77,\n    0x7a, 0x7c, 0x7b, 0x74, 0x69, 0x5f, 0x59, 0x57, 0x4e, 0x4b, 0x49, 0x4c, 0x52, 0x56, 0x56, 0x55,\n    0x51, 0x4e, 0x4c, 0x49, 0x43, 0x3b, 0x35, 0x34, 0x39, 0x39, 0x38, 0x37, 0x35, 0x34, 0x35, 0x36,\n    0x3a, 0x39, 0x38, 0x39, 0x3d, 0x44, 0x4b, 0x50, 0x4f, 0x4f, 0x52, 0x54, 0x52, 0x4b, 0x46, 0x44,\n    0x46, 0x4a, 0x49, 0x44, 0x41, 0x44, 0x48, 0x4a, 0x50, 0x54, 0x4b, 0x3e, 0x3b, 0x3c, 0x3b, 0x3d,\n    0x44, 0x65, 0x82, 0x73, 0x47, 0x2b, 0x27, 0x28, 0x28, 0x2b, 0x2e, 0x31, 0x33, 0x33, 0x34, 0x35,\n    0x38, 0x38, 0x39, 0x37, 0x35, 0x34, 0x34, 0x34, 0x39, 0x3b, 0x48, 0x60, 0x73, 0x7b, 0x7e, 0x80,\n    0x87, 0x89, 0x8f, 0x89, 0x79, 0x7a, 0x80, 0x7c, 0x80, 0x81, 0x81, 0x80, 0x83, 0x89, 0x8b, 0x89,\n    0x87, 0x89, 0x8b, 0x8e, 0x8f, 0x8f, 0x8e, 0x8d, 0x8b, 0x8d, 0x92, 0x94, 0x91, 0x8c, 0x8b, 0x8d,\n    0x94, 0x9b, 0x9e, 0x9a, 0x9a, 0x9f, 0x9d, 0x96, 0x9e, 0x9b, 0x97, 0x94, 0x94, 0x96, 0x97, 0x96,\n    0x95, 0x95, 0x97, 0x9c, 0x9f, 0x9f, 0x9c, 0x98, 0x99, 0x97, 0x96, 0x97, 0x96, 0x93, 0x90, 0x90,\n    0x94, 0x94, 0x98, 0x96, 0x8e, 0x8b, 0x8b, 0x89, 0x8d, 0x8c, 0x8a, 0x86, 0x83, 0x81, 0x81, 0x81,\n    0x82, 0x83, 0x80, 0x7c, 0x79, 0x78, 0x76, 0x73, 0x70, 0x6c, 0x6a, 0x6a, 0x6c, 0x6b, 0x67, 0x63,\n    0x6c, 0x6d, 0x6e, 0x6c, 0x68, 0x62, 0x5c, 0x59, 0x57, 0x54, 0x54, 0x56, 0x55, 0x50, 0x4c, 0x4a,\n    0x4f, 0x4f, 0x4d, 0x4a, 0x46, 0x43, 0x41, 0x41, 0x44, 0x42, 0x41, 0x42, 0x42, 0x44, 0x4c, 0x53,\n    0x65, 0x70, 0x71, 0x71, 0x6f, 0x63, 0x6f, 0x96, 0xb4, 0xbf, 0xbe, 0xbe, 0xbe, 0xc2, 0xcb, 0xc5,\n    0xb7, 0xb5, 0xb2, 0xb2, 0xb6, 0xb6, 0xb5, 0xb8, 0xbf, 0xbd, 0xbb, 0xb5, 0xb0, 0xb0, 0xa2, 0x8c,\n    0x67, 0x4d, 0x4d, 0x7e, 0xa4, 0xc5, 0xb2, 0x8f, 0x72, 0x63, 0x5e, 0x63, 0x68, 0x6d, 0x72, 0x71,\n    0x74, 0x73, 0x70, 0x72, 0x75, 0x6f, 0x6d, 0x75, 0x75, 0x74, 0x73, 0x73, 0x78, 0x80, 0x83, 0x83,\n    0x88, 0x8b, 0x91, 0x96, 0x99, 0x9a, 0x9a, 0x9a, 0x91, 0x8e, 0x8c, 0x8f, 0x96, 0x91, 0x77, 0x5b,\n    0x48, 0x52, 0x6a, 0x8c, 0xa9, 0xb3, 0xad, 0xa4, 0xab, 0xa5, 0x8e, 0x7f, 0x7c, 0x6b, 0x5f, 0x68,\n    0x77, 0x76, 0x6f, 0x64, 0x5d, 0x5f, 0x65, 0x68, 0x60, 0x6b, 0x6a, 0x60, 0x5b, 0x54, 0x49, 0x44,\n    0x48, 0x53, 0x55, 0x63, 0x6d, 0x65, 0x5c, 0x51, 0x5c, 0x7a, 0x74, 0x73, 0x75, 0x4e, 0x33, 0x3e,\n    0x36, 0x39, 0x43, 0x48, 0x45, 0x4e, 0x63, 0x71, 0x88, 0x80, 0x7e, 0x85, 0x82, 0x74, 0x69, 0x68,\n    0x78, 0x77, 0x73, 0x6f, 0x6f, 0x6e, 0x66, 0x5d, 0x62, 0x62, 0x70, 0x7d, 0x72, 0x5e, 0x50, 0x49,\n    0x38, 0x38, 0x55, 0x68, 0x5a, 0x55, 0x57, 0x49, 0x3c, 0x44, 0x44, 0x46, 0x51, 0x52, 0x3f, 0x2d,\n    0x3d, 0x48, 0x4d, 0x47, 0x42, 0x43, 0x40, 0x3b, 0x30, 0x2c, 0x31, 0x28, 0x23, 0x29, 0x2b, 0x39,\n    0x33, 0x37, 0x3b, 0x3d, 0x3d, 0x3a, 0x36, 0x32, 0x27, 0x22, 0x1d, 0x1a, 0x16, 0x14, 0x18, 0x1f,\n    0x56, 0x53, 0x51, 0x51, 0x54, 0x56, 0x56, 0x54, 0x51, 0x47, 0x3e, 0x3f, 0x47, 0x4f, 0x56, 0x5a,\n    0x52, 0x50, 0x50, 0x52, 0x56, 0x59, 0x59, 0x57, 0x55, 0x53, 0x52, 0x53, 0x55, 0x55, 0x54, 0x52,\n    0x53, 0x55, 0x57, 0x59, 0x58, 0x55, 0x4f, 0x4b, 0x4a, 0x4a, 0x4c, 0x4c, 0x48, 0x45, 0x47, 0x4b,\n    0x4f, 0x4c, 0x4a, 0x4c, 0x50, 0x5c, 0x71, 0x83, 0x85, 0x76, 0x66, 0x55, 0x57, 0x66, 0x78, 0x95,\n    0xa3, 0xa7, 0xa5, 0xa0, 0x9a, 0x8b, 0x68, 0x45, 0x2c, 0x29, 0x2f, 0x2f, 0x27, 0x2d, 0x36, 0x31,\n    0x2a, 0x31, 0x38, 0x39, 0x35, 0x2e, 0x2a, 0x29, 0x2f, 0x39, 0x40, 0x3b, 0x33, 0x32, 0x37, 0x3d,\n    0x38, 0x32, 0x2c, 0x2f, 0x39, 0x41, 0x44, 0x43, 0x42, 0x4a, 0x51, 0x50, 0x4a, 0x49, 0x50, 0x58,\n    0x5d, 0x61, 0x5d, 0x4e, 0x43, 0x45, 0x51, 0x5a, 0x5f, 0x5b, 0x4d, 0x3e, 0x3e, 0x47, 0x47, 0x3e,\n    0x37, 0x41, 0x44, 0x43, 0x47, 0x49, 0x49, 0x4c, 0x49, 0x4f, 0x4a, 0x4a, 0x46, 0x3f, 0x3e, 0x35,\n    0x3b, 0x38, 0x35, 0x35, 0x39, 0x3f, 0x46, 0x4a, 0x49, 0x51, 0x5c, 0x62, 0x66, 0x68, 0x6a, 0x6a,\n    0x63, 0x5c, 0x4f, 0x4c, 0x48, 0x5d, 0x57, 0x5d, 0x59, 0x58, 0x53, 0x4f, 0x4f, 0x53, 0x54, 0x53,\n    0x57, 0x59, 0x63, 0x62, 0x52, 0x4d, 0x4f, 0x49, 0x4f, 0x51, 0x4f, 0x48, 0x46, 0x48, 0x48, 0x47,\n    0x4a, 0x4c, 0x4d, 0x50, 0x5b, 0x69, 0x6f, 0x6d, 0x69, 0x60, 0x56, 0x54, 0x5b, 0x66, 0x6b, 0x6c,\n    0x71, 0x76, 0x7b, 0x78, 0x6d, 0x61, 0x58, 0x55, 0x4c, 0x4a, 0x49, 0x4e, 0x54, 0x59, 0x58, 0x56,\n    0x54, 0x52, 0x4f, 0x4e, 0x48, 0x41, 0x3b, 0x3a, 0x3a, 0x3b, 0x3a, 0x39, 0x37, 0x36, 0x37, 0x38,\n    0x3d, 0x3b, 0x3a, 0x3b, 0x41, 0x4a, 0x54, 0x5a, 0x5a, 0x54, 0x4e, 0x4e, 0x4f, 0x4b, 0x46, 0x43,\n    0x44, 0x49, 0x49, 0x44, 0x42, 0x45, 0x49, 0x4b, 0x53, 0x53, 0x49, 0x40, 0x43, 0x45, 0x42, 0x40,\n    0x57, 0x73, 0x85, 0x6a, 0x3b, 0x23, 0x24, 0x25, 0x2b, 0x2e, 0x31, 0x34, 0x35, 0x35, 0x36, 0x36,\n    0x35, 0x36, 0x38, 0x39, 0x39, 0x3a, 0x3c, 0x3e, 0x3e, 0x4e, 0x67, 0x7b, 0x7e, 0x7a, 0x7e, 0x88,\n    0x91, 0x8a, 0x8d, 0x8a, 0x7a, 0x77, 0x7f, 0x7f, 0x7f, 0x82, 0x82, 0x82, 0x84, 0x89, 0x89, 0x86,\n    0x8a, 0x8c, 0x90, 0x92, 0x92, 0x92, 0x92, 0x93, 0x8f, 0x91, 0x95, 0x97, 0x93, 0x8c, 0x8b, 0x8f,\n    0x93, 0x9c, 0x9d, 0x96, 0x98, 0xa0, 0x9d, 0x92, 0x9e, 0x9c, 0x98, 0x95, 0x95, 0x95, 0x94, 0x92,\n    0x93, 0x98, 0x9d, 0xa0, 0x9f, 0x9c, 0x9b, 0x9a, 0x9b, 0x97, 0x95, 0x96, 0x97, 0x97, 0x97, 0x99,\n    0x92, 0x90, 0x97, 0x98, 0x8d, 0x8c, 0x91, 0x8d, 0x90, 0x8d, 0x8a, 0x89, 0x89, 0x87, 0x81, 0x7d,\n    0x7f, 0x7f, 0x7d, 0x7a, 0x7b, 0x7d, 0x7b, 0x78, 0x72, 0x6e, 0x6a, 0x69, 0x6b, 0x6d, 0x6c, 0x6a,\n    0x6d, 0x6e, 0x6d, 0x6b, 0x66, 0x5f, 0x57, 0x53, 0x5d, 0x5c, 0x5c, 0x5c, 0x59, 0x54, 0x53, 0x55,\n    0x51, 0x51, 0x51, 0x4e, 0x4a, 0x46, 0x44, 0x43, 0x45, 0x43, 0x42, 0x43, 0x43, 0x44, 0x48, 0x4d,\n    0x56, 0x64, 0x67, 0x68, 0x6a, 0x63, 0x72, 0x9a, 0xbc, 0xc1, 0xbc, 0xbf, 0xc3, 0xc4, 0xc9, 0xc1,\n    0xb9, 0xba, 0xb5, 0xb3, 0xb6, 0xb5, 0xb6, 0xbc, 0xc0, 0xc3, 0xc5, 0xbc, 0xb0, 0xac, 0xa7, 0x9a,\n    0x69, 0x4e, 0x4e, 0x83, 0xa6, 0xc6, 0xb1, 0x8c, 0x72, 0x62, 0x5d, 0x62, 0x67, 0x6d, 0x73, 0x72,\n    0x78, 0x76, 0x72, 0x73, 0x76, 0x6f, 0x6c, 0x73, 0x72, 0x75, 0x75, 0x74, 0x74, 0x77, 0x77, 0x76,\n    0x72, 0x75, 0x7d, 0x89, 0x97, 0xa2, 0xa7, 0xa9, 0x9d, 0x92, 0x84, 0x7f, 0x87, 0x8a, 0x7c, 0x68,\n    0x4a, 0x52, 0x61, 0x78, 0x91, 0x9c, 0x90, 0x7e, 0x6b, 0x7a, 0x7e, 0x7d, 0x78, 0x61, 0x56, 0x69,\n    0x6a, 0x6a, 0x65, 0x5e, 0x5d, 0x62, 0x66, 0x66, 0x6b, 0x6f, 0x69, 0x5f, 0x5b, 0x56, 0x50, 0x50,\n    0x45, 0x4e, 0x4e, 0x5b, 0x66, 0x5c, 0x4e, 0x3f, 0x49, 0x5b, 0x5e, 0x5b, 0x4b, 0x3a, 0x37, 0x33,\n    0x36, 0x39, 0x46, 0x51, 0x50, 0x51, 0x54, 0x53, 0x54, 0x60, 0x6c, 0x6a, 0x5f, 0x59, 0x64, 0x73,\n    0x6b, 0x6a, 0x5b, 0x4e, 0x61, 0x89, 0x9d, 0x99, 0x7f, 0x7a, 0x75, 0x6a, 0x58, 0x4a, 0x3e, 0x31,\n    0x3d, 0x54, 0x5c, 0x57, 0x50, 0x3f, 0x3f, 0x5a, 0x6e, 0x61, 0x4d, 0x40, 0x35, 0x2a, 0x2f, 0x43,\n    0x64, 0x71, 0x74, 0x6b, 0x68, 0x68, 0x59, 0x44, 0x34, 0x29, 0x26, 0x16, 0x18, 0x27, 0x21, 0x23,\n    0x29, 0x2e, 0x34, 0x36, 0x33, 0x2b, 0x20, 0x17, 0x13, 0x10, 0x0f, 0x10, 0x11, 0x13, 0x1c, 0x26,\n    0x5a, 0x58, 0x54, 0x52, 0x57, 0x5c, 0x59, 0x51, 0x4c, 0x3f, 0x3b, 0x41, 0x4b, 0x56, 0x5d, 0x5a,\n    0x53, 0x51, 0x51, 0x53, 0x57, 0x5a, 0x5a, 0x59, 0x58, 0x54, 0x50, 0x50, 0x53, 0x56, 0x56, 0x56,\n    0x5c, 0x59, 0x57, 0x56, 0x55, 0x53, 0x55, 0x58, 0x5a, 0x66, 0x6a, 0x5d, 0x4e, 0x4b, 0x51, 0x55,\n    0x55, 0x50, 0x4a, 0x52, 0x6c, 0x8a, 0x96, 0x95, 0x8f, 0x83, 0x6e, 0x5e, 0x60, 0x72, 0x96, 0xba,\n    0xbd, 0xae, 0x82, 0x63, 0x66, 0x5f, 0x49, 0x3f, 0x33, 0x31, 0x2f, 0x30, 0x32, 0x33, 0x34, 0x34,\n    0x33, 0x39, 0x3f, 0x3c, 0x34, 0x2c, 0x2a, 0x2c, 0x29, 0x2e, 0x31, 0x2e, 0x2d, 0x37, 0x39, 0x2c,\n    0x36, 0x35, 0x37, 0x35, 0x33, 0x3a, 0x40, 0x3c, 0x3c, 0x40, 0x45, 0x48, 0x4d, 0x57, 0x64, 0x6e,\n    0x70, 0x66, 0x5a, 0x4f, 0x44, 0x3f, 0x45, 0x50, 0x59, 0x56, 0x4d, 0x42, 0x3e, 0x40, 0x42, 0x41,\n    0x48, 0x48, 0x48, 0x45, 0x44, 0x45, 0x48, 0x4b, 0x47, 0x47, 0x4a, 0x4d, 0x48, 0x3f, 0x38, 0x37,\n    0x3c, 0x38, 0x37, 0x3f, 0x48, 0x4d, 0x50, 0x51, 0x50, 0x51, 0x57, 0x5e, 0x60, 0x5d, 0x5c, 0x5f,\n    0x5a, 0x56, 0x4f, 0x4c, 0x50, 0x57, 0x5a, 0x58, 0x5c, 0x56, 0x50, 0x51, 0x56, 0x5b, 0x5b, 0x59,\n    0x5c, 0x5c, 0x5d, 0x5c, 0x5b, 0x58, 0x56, 0x54, 0x63, 0x61, 0x5f, 0x5d, 0x5a, 0x55, 0x50, 0x4c,\n    0x50, 0x52, 0x54, 0x55, 0x59, 0x61, 0x67, 0x6a, 0x6c, 0x67, 0x5f, 0x5a, 0x5e, 0x67, 0x69, 0x66,\n    0x6d, 0x6d, 0x6a, 0x64, 0x61, 0x5d, 0x55, 0x4c, 0x4b, 0x4c, 0x4b, 0x47, 0x47, 0x4c, 0x53, 0x56,\n    0x58, 0x56, 0x55, 0x53, 0x4d, 0x43, 0x3c, 0x3a, 0x3a, 0x3b, 0x3c, 0x3b, 0x39, 0x38, 0x39, 0x3b,\n    0x3c, 0x3e, 0x3d, 0x3c, 0x44, 0x4f, 0x51, 0x4d, 0x48, 0x4b, 0x4e, 0x4f, 0x4e, 0x4b, 0x48, 0x46,\n    0x45, 0x45, 0x49, 0x4b, 0x48, 0x42, 0x42, 0x46, 0x47, 0x42, 0x41, 0x49, 0x53, 0x5c, 0x66, 0x6e,\n    0x7d, 0x87, 0x7c, 0x56, 0x32, 0x26, 0x27, 0x28, 0x2c, 0x30, 0x35, 0x37, 0x37, 0x36, 0x37, 0x38,\n    0x3a, 0x3c, 0x3d, 0x3c, 0x3a, 0x3b, 0x3f, 0x43, 0x4d, 0x60, 0x72, 0x78, 0x79, 0x7f, 0x84, 0x85,\n    0x86, 0x89, 0x8c, 0x8b, 0x87, 0x84, 0x83, 0x84, 0x88, 0x86, 0x84, 0x81, 0x81, 0x84, 0x89, 0x8d,\n    0x91, 0x92, 0x93, 0x93, 0x92, 0x94, 0x96, 0x98, 0x94, 0x96, 0x98, 0x97, 0x94, 0x91, 0x92, 0x93,\n    0x9d, 0x9c, 0x96, 0x90, 0x94, 0x9d, 0x9f, 0x9b, 0x9c, 0x96, 0x94, 0x98, 0x99, 0x94, 0x91, 0x93,\n    0x92, 0x9b, 0x9e, 0x9f, 0xa0, 0x9b, 0x97, 0x9a, 0x99, 0x94, 0x94, 0x97, 0x96, 0x91, 0x90, 0x95,\n    0x8b, 0x91, 0x8a, 0x87, 0x93, 0x97, 0x90, 0x8f, 0x8f, 0x8f, 0x90, 0x90, 0x8d, 0x89, 0x84, 0x80,\n    0x81, 0x82, 0x82, 0x7f, 0x7e, 0x7e, 0x7c, 0x79, 0x73, 0x77, 0x78, 0x74, 0x70, 0x6f, 0x6d, 0x6c,\n    0x6d, 0x6e, 0x6f, 0x6e, 0x6b, 0x66, 0x62, 0x60, 0x5c, 0x5c, 0x5c, 0x5b, 0x5a, 0x59, 0x59, 0x5a,\n    0x5c, 0x5a, 0x56, 0x51, 0x4e, 0x4d, 0x48, 0x43, 0x47, 0x48, 0x48, 0x47, 0x45, 0x43, 0x43, 0x43,\n    0x48, 0x55, 0x63, 0x6a, 0x67, 0x65, 0x7e, 0xa4, 0xc2, 0xc5, 0xc6, 0xc6, 0xc6, 0xc7, 0xc6, 0xc4,\n    0xc1, 0xbe, 0xba, 0xba, 0xba, 0xb9, 0xb9, 0xb9, 0xbc, 0xbe, 0xbf, 0xb9, 0xb4, 0xb6, 0xab, 0x95,\n    0x68, 0x48, 0x51, 0x84, 0xaf, 0xc2, 0xaf, 0x87, 0x6c, 0x65, 0x60, 0x63, 0x69, 0x6d, 0x70, 0x72,\n    0x74, 0x75, 0x75, 0x73, 0x72, 0x72, 0x71, 0x70, 0x72, 0x69, 0x62, 0x60, 0x5f, 0x5a, 0x56, 0x54,\n    0x56, 0x5a, 0x60, 0x6c, 0x7e, 0x92, 0x9c, 0x9c, 0x97, 0x97, 0x98, 0x9b, 0x9b, 0x92, 0x7c, 0x68,\n    0x4a, 0x4d, 0x5b, 0x67, 0x70, 0x7f, 0x7d, 0x67, 0x69, 0x6d, 0x78, 0x85, 0x7c, 0x59, 0x41, 0x44,\n    0x49, 0x4d, 0x51, 0x55, 0x5f, 0x6b, 0x73, 0x75, 0x70, 0x72, 0x6b, 0x5d, 0x5c, 0x69, 0x64, 0x4c,\n    0x58, 0x5c, 0x6c, 0x69, 0x5f, 0x58, 0x50, 0x4c, 0x51, 0x55, 0x55, 0x46, 0x35, 0x38, 0x47, 0x4e,\n    0x69, 0x5f, 0x5c, 0x68, 0x77, 0x7c, 0x76, 0x71, 0x68, 0x6d, 0x68, 0x5c, 0x5a, 0x64, 0x6c, 0x6c,\n    0x65, 0x55, 0x49, 0x4d, 0x52, 0x50, 0x4c, 0x4c, 0x5b, 0x61, 0x5e, 0x55, 0x4b, 0x3c, 0x31, 0x31,\n    0x4d, 0x52, 0x4d, 0x3e, 0x3d, 0x49, 0x50, 0x4d, 0x42, 0x3c, 0x35, 0x2f, 0x2c, 0x2b, 0x2a, 0x27,\n    0x30, 0x3c, 0x47, 0x5b, 0x71, 0x68, 0x4d, 0x3f, 0x2c, 0x29, 0x23, 0x22, 0x25, 0x28, 0x24, 0x1f,\n    0x28, 0x28, 0x24, 0x1d, 0x19, 0x18, 0x14, 0x0f, 0x12, 0x16, 0x15, 0x13, 0x17, 0x23, 0x30, 0x37,\n    0x5d, 0x5c, 0x58, 0x56, 0x58, 0x59, 0x54, 0x4c, 0x46, 0x3c, 0x3c, 0x46, 0x4e, 0x55, 0x58, 0x52,\n    0x54, 0x50, 0x4e, 0x51, 0x58, 0x5d, 0x5d, 0x5a, 0x56, 0x52, 0x4f, 0x50, 0x53, 0x56, 0x57, 0x56,\n    0x56, 0x56, 0x59, 0x5a, 0x5a, 0x5b, 0x60, 0x67, 0x7d, 0x86, 0x88, 0x7d, 0x72, 0x6d, 0x6a, 0x67,\n    0x5e, 0x56, 0x57, 0x6b, 0x88, 0x9c, 0x9f, 0x9b, 0x8e, 0x80, 0x63, 0x48, 0x3c, 0x48, 0x72, 0xa0,\n    0xc5, 0xbf, 0x89, 0x4d, 0x44, 0x4e, 0x44, 0x36, 0x3a, 0x35, 0x32, 0x35, 0x3a, 0x3b, 0x38, 0x36,\n    0x3c, 0x3e, 0x3f, 0x3c, 0x36, 0x2f, 0x29, 0x26, 0x25, 0x27, 0x2c, 0x2c, 0x2b, 0x34, 0x3c, 0x3a,\n    0x3c, 0x37, 0x35, 0x32, 0x2f, 0x34, 0x3c, 0x3c, 0x3c, 0x3a, 0x3b, 0x3e, 0x46, 0x50, 0x5e, 0x69,\n    0x6c, 0x67, 0x60, 0x57, 0x4a, 0x3e, 0x3c, 0x40, 0x47, 0x4a, 0x49, 0x44, 0x40, 0x3f, 0x3c, 0x38,\n    0x47, 0x48, 0x48, 0x46, 0x43, 0x44, 0x4a, 0x4f, 0x47, 0x48, 0x4b, 0x4d, 0x48, 0x40, 0x3a, 0x3a,\n    0x3b, 0x3a, 0x3d, 0x43, 0x49, 0x4c, 0x4f, 0x52, 0x53, 0x56, 0x5b, 0x5f, 0x5d, 0x55, 0x51, 0x51,\n    0x59, 0x56, 0x52, 0x52, 0x58, 0x5d, 0x5d, 0x5a, 0x52, 0x51, 0x53, 0x57, 0x5e, 0x64, 0x66, 0x67,\n    0x6b, 0x67, 0x62, 0x5f, 0x5e, 0x5d, 0x5c, 0x5a, 0x5a, 0x5b, 0x5d, 0x5f, 0x5f, 0x5c, 0x56, 0x51,\n    0x50, 0x53, 0x56, 0x56, 0x57, 0x5a, 0x5b, 0x5b, 0x65, 0x6a, 0x70, 0x74, 0x77, 0x77, 0x72, 0x6a,\n    0x6b, 0x6d, 0x6b, 0x66, 0x62, 0x5d, 0x55, 0x4d, 0x4f, 0x53, 0x55, 0x52, 0x50, 0x50, 0x51, 0x50,\n    0x58, 0x57, 0x56, 0x55, 0x4e, 0x44, 0x3c, 0x3a, 0x3b, 0x3b, 0x3c, 0x3b, 0x3a, 0x39, 0x39, 0x39,\n    0x3d, 0x3f, 0x3d, 0x3a, 0x3f, 0x47, 0x4a, 0x47, 0x41, 0x42, 0x42, 0x43, 0x44, 0x44, 0x44, 0x44,\n    0x47, 0x49, 0x4d, 0x50, 0x4d, 0x45, 0x42, 0x42, 0x47, 0x41, 0x3e, 0x43, 0x4e, 0x59, 0x65, 0x6e,\n    0x75, 0x69, 0x4f, 0x34, 0x29, 0x2b, 0x2a, 0x24, 0x2c, 0x30, 0x35, 0x37, 0x37, 0x37, 0x37, 0x39,\n    0x37, 0x36, 0x37, 0x3a, 0x39, 0x3a, 0x43, 0x4e, 0x62, 0x6f, 0x7b, 0x7e, 0x80, 0x85, 0x87, 0x85,\n    0x87, 0x8a, 0x8b, 0x8b, 0x89, 0x88, 0x88, 0x89, 0x8b, 0x8a, 0x87, 0x85, 0x83, 0x84, 0x87, 0x8a,\n    0x8f, 0x8d, 0x8d, 0x8f, 0x93, 0x95, 0x95, 0x94, 0x91, 0x94, 0x98, 0x99, 0x98, 0x98, 0x9a, 0x9d,\n    0xa1, 0xa1, 0x9d, 0x98, 0x99, 0x9f, 0x9f, 0x9a, 0x98, 0x95, 0x97, 0x9c, 0x9a, 0x92, 0x8f, 0x91,\n    0x95, 0x9d, 0xa0, 0x9f, 0x9e, 0x99, 0x94, 0x98, 0x99, 0x93, 0x91, 0x94, 0x94, 0x8f, 0x8e, 0x92,\n    0x8c, 0x92, 0x8c, 0x89, 0x93, 0x97, 0x90, 0x8f, 0x8d, 0x8e, 0x8f, 0x90, 0x8f, 0x8b, 0x87, 0x83,\n    0x85, 0x86, 0x85, 0x81, 0x7f, 0x80, 0x81, 0x80, 0x7f, 0x7e, 0x7a, 0x74, 0x71, 0x71, 0x71, 0x6f,\n    0x71, 0x70, 0x6e, 0x6d, 0x6c, 0x6a, 0x66, 0x63, 0x5c, 0x5d, 0x5e, 0x5e, 0x5e, 0x5c, 0x5a, 0x58,\n    0x5b, 0x5c, 0x5a, 0x56, 0x53, 0x51, 0x4c, 0x48, 0x48, 0x47, 0x46, 0x45, 0x45, 0x44, 0x44, 0x44,\n    0x44, 0x4f, 0x5d, 0x66, 0x65, 0x64, 0x7b, 0x9e, 0xbb, 0xbe, 0xc0, 0xc0, 0xc1, 0xc3, 0xc2, 0xbf,\n    0xbd, 0xbd, 0xbe, 0xbe, 0xbd, 0xbd, 0xbd, 0xbf, 0xc7, 0xc6, 0xc3, 0xba, 0xb3, 0xb3, 0xa9, 0x93,\n    0x60, 0x48, 0x55, 0x80, 0xa2, 0xb0, 0xa2, 0x83, 0x6a, 0x63, 0x5f, 0x62, 0x69, 0x6e, 0x72, 0x75,\n    0x75, 0x74, 0x72, 0x71, 0x70, 0x6f, 0x6c, 0x69, 0x64, 0x58, 0x4e, 0x4b, 0x4b, 0x48, 0x45, 0x43,\n    0x4c, 0x4f, 0x54, 0x5d, 0x6b, 0x7c, 0x86, 0x89, 0x8e, 0x91, 0x97, 0x9e, 0xa4, 0xa1, 0x93, 0x85,\n    0x5d, 0x49, 0x43, 0x4a, 0x52, 0x60, 0x6d, 0x6d, 0x6a, 0x73, 0x7b, 0x7f, 0x76, 0x5c, 0x45, 0x40,\n    0x42, 0x4b, 0x54, 0x5b, 0x5e, 0x5d, 0x56, 0x4e, 0x5b, 0x62, 0x68, 0x6a, 0x6a, 0x64, 0x57, 0x4c,\n    0x48, 0x56, 0x5a, 0x5d, 0x5b, 0x60, 0x59, 0x4f, 0x54, 0x49, 0x41, 0x3e, 0x41, 0x50, 0x5f, 0x61,\n    0x41, 0x65, 0x87, 0x8e, 0x81, 0x75, 0x71, 0x72, 0x74, 0x76, 0x71, 0x67, 0x63, 0x66, 0x6a, 0x6a,\n    0x4a, 0x44, 0x46, 0x50, 0x52, 0x46, 0x37, 0x2f, 0x48, 0x50, 0x4e, 0x46, 0x3e, 0x36, 0x35, 0x3d,\n    0x4f, 0x43, 0x3d, 0x3e, 0x38, 0x2d, 0x2d, 0x36, 0x36, 0x35, 0x2d, 0x25, 0x2a, 0x32, 0x29, 0x17,\n    0x40, 0x4c, 0x5d, 0x70, 0x7c, 0x77, 0x6e, 0x6c, 0x73, 0x73, 0x71, 0x6b, 0x67, 0x60, 0x52, 0x44,\n    0x3c, 0x37, 0x32, 0x2d, 0x26, 0x22, 0x26, 0x2d, 0x22, 0x25, 0x27, 0x2c, 0x36, 0x41, 0x46, 0x46,\n    0x68, 0x66, 0x62, 0x5f, 0x5d, 0x59, 0x51, 0x49, 0x3a, 0x37, 0x41, 0x53, 0x5f, 0x67, 0x68, 0x61,\n    0x5b, 0x55, 0x51, 0x54, 0x5b, 0x60, 0x5f, 0x5d, 0x5a, 0x58, 0x56, 0x56, 0x58, 0x5a, 0x5a, 0x5a,\n    0x5d, 0x5f, 0x62, 0x63, 0x61, 0x60, 0x66, 0x6e, 0x84, 0x8f, 0x99, 0x99, 0x94, 0x88, 0x75, 0x66,\n    0x58, 0x56, 0x5c, 0x67, 0x6a, 0x64, 0x61, 0x63, 0x5a, 0x62, 0x62, 0x53, 0x3c, 0x31, 0x48, 0x6e,\n    0x95, 0x90, 0x6c, 0x44, 0x3b, 0x3b, 0x37, 0x37, 0x39, 0x38, 0x39, 0x3e, 0x49, 0x51, 0x50, 0x4b,\n    0x46, 0x43, 0x40, 0x3d, 0x3a, 0x34, 0x2d, 0x27, 0x28, 0x28, 0x2e, 0x32, 0x34, 0x3f, 0x4c, 0x51,\n    0x37, 0x30, 0x31, 0x36, 0x32, 0x2f, 0x30, 0x2e, 0x35, 0x30, 0x30, 0x35, 0x3c, 0x43, 0x4c, 0x55,\n    0x53, 0x53, 0x52, 0x4e, 0x46, 0x3d, 0x38, 0x38, 0x31, 0x36, 0x3c, 0x3d, 0x3c, 0x3b, 0x39, 0x37,\n    0x48, 0x4a, 0x4a, 0x47, 0x44, 0x44, 0x49, 0x4e, 0x47, 0x47, 0x4a, 0x4c, 0x4a, 0x44, 0x3e, 0x3c,\n    0x3b, 0x3b, 0x3b, 0x3d, 0x3e, 0x40, 0x45, 0x4b, 0x52, 0x55, 0x5b, 0x5f, 0x5e, 0x5b, 0x5b, 0x5e,\n    0x62, 0x5f, 0x5b, 0x59, 0x5b, 0x5b, 0x55, 0x4d, 0x49, 0x4b, 0x4f, 0x54, 0x5a, 0x61, 0x68, 0x6d,\n    0x6f, 0x6b, 0x67, 0x66, 0x67, 0x69, 0x67, 0x66, 0x5e, 0x5e, 0x5f, 0x5f, 0x5d, 0x54, 0x48, 0x3f,\n    0x40, 0x46, 0x4d, 0x52, 0x55, 0x56, 0x55, 0x52, 0x5a, 0x5f, 0x63, 0x65, 0x66, 0x68, 0x69, 0x69,\n    0x68, 0x6c, 0x6d, 0x6a, 0x66, 0x62, 0x5c, 0x58, 0x57, 0x57, 0x53, 0x4c, 0x48, 0x4b, 0x4f, 0x52,\n    0x58, 0x57, 0x58, 0x56, 0x4f, 0x44, 0x3c, 0x39, 0x3e, 0x3e, 0x3e, 0x3e, 0x3e, 0x3d, 0x3b, 0x3a,\n    0x39, 0x3a, 0x38, 0x35, 0x39, 0x41, 0x44, 0x43, 0x3e, 0x3c, 0x3a, 0x3a, 0x3e, 0x41, 0x43, 0x43,\n    0x40, 0x42, 0x48, 0x4d, 0x4c, 0x46, 0x3f, 0x3c, 0x41, 0x3a, 0x35, 0x36, 0x3c, 0x44, 0x4c, 0x52,\n    0x52, 0x4b, 0x3d, 0x30, 0x29, 0x28, 0x28, 0x26, 0x2c, 0x30, 0x35, 0x38, 0x38, 0x38, 0x39, 0x3a,\n    0x3d, 0x38, 0x37, 0x3a, 0x3a, 0x3c, 0x4a, 0x5a, 0x74, 0x7b, 0x7f, 0x81, 0x85, 0x89, 0x88, 0x84,\n    0x8b, 0x8b, 0x8c, 0x8c, 0x8c, 0x8b, 0x8a, 0x8a, 0x84, 0x85, 0x85, 0x85, 0x86, 0x87, 0x8a, 0x8c,\n    0x8d, 0x8a, 0x88, 0x8d, 0x95, 0x99, 0x96, 0x92, 0x98, 0x9a, 0x9c, 0x9c, 0x9a, 0x99, 0x9a, 0x9c,\n    0x9f, 0xa2, 0xa1, 0x9c, 0x9b, 0x9d, 0x9c, 0x98, 0x98, 0x98, 0x9b, 0x9e, 0x9a, 0x92, 0x90, 0x94,\n    0x9b, 0xa2, 0xa2, 0x9f, 0x9e, 0x98, 0x93, 0x97, 0x9d, 0x97, 0x93, 0x94, 0x94, 0x91, 0x91, 0x93,\n    0x8c, 0x91, 0x8e, 0x8c, 0x94, 0x97, 0x93, 0x90, 0x8d, 0x8e, 0x8f, 0x90, 0x8f, 0x8c, 0x8a, 0x88,\n    0x87, 0x88, 0x86, 0x81, 0x7e, 0x80, 0x83, 0x84, 0x86, 0x83, 0x7c, 0x74, 0x72, 0x74, 0x75, 0x74,\n    0x76, 0x72, 0x6e, 0x6d, 0x6d, 0x6c, 0x68, 0x64, 0x60, 0x60, 0x61, 0x63, 0x64, 0x62, 0x5e, 0x5a,\n    0x5d, 0x5f, 0x60, 0x5d, 0x59, 0x57, 0x53, 0x4f, 0x4f, 0x4c, 0x49, 0x47, 0x47, 0x47, 0x46, 0x44,\n    0x46, 0x4d, 0x57, 0x60, 0x63, 0x64, 0x7a, 0x9c, 0xb4, 0xb7, 0xba, 0xba, 0xbc, 0xbe, 0xbe, 0xbc,\n    0xba, 0xbc, 0xbc, 0xba, 0xb7, 0xb6, 0xb9, 0xbb, 0xb8, 0xba, 0xbd, 0xb9, 0xb2, 0xae, 0x9f, 0x86,\n    0x57, 0x48, 0x53, 0x71, 0x84, 0x8d, 0x89, 0x79, 0x6c, 0x66, 0x62, 0x65, 0x6b, 0x6f, 0x73, 0x76,\n    0x76, 0x73, 0x70, 0x71, 0x72, 0x70, 0x6b, 0x66, 0x61, 0x55, 0x4a, 0x45, 0x46, 0x47, 0x45, 0x44,\n    0x49, 0x4c, 0x50, 0x55, 0x5f, 0x6d, 0x79, 0x80, 0x88, 0x8c, 0x92, 0x98, 0x9d, 0x9e, 0x98, 0x90,\n    0x6b, 0x4b, 0x3d, 0x49, 0x50, 0x53, 0x60, 0x6e, 0x71, 0x7c, 0x7c, 0x75, 0x6f, 0x64, 0x55, 0x4e,\n    0x5d, 0x5b, 0x57, 0x53, 0x53, 0x57, 0x5a, 0x5a, 0x51, 0x55, 0x5b, 0x68, 0x74, 0x71, 0x76, 0x8c,\n    0x96, 0x84, 0x4d, 0x50, 0x5b, 0x65, 0x5b, 0x50, 0x50, 0x42, 0x3d, 0x46, 0x52, 0x5f, 0x66, 0x62,\n    0x74, 0x81, 0x86, 0x82, 0x85, 0x92, 0x94, 0x8b, 0x80, 0x76, 0x6d, 0x6d, 0x6f, 0x69, 0x56, 0x45,\n    0x43, 0x42, 0x49, 0x55, 0x57, 0x4a, 0x3e, 0x3a, 0x40, 0x49, 0x47, 0x3e, 0x37, 0x31, 0x34, 0x3f,\n    0x48, 0x37, 0x34, 0x3e, 0x38, 0x22, 0x1c, 0x29, 0x29, 0x2f, 0x34, 0x32, 0x28, 0x2d, 0x4b, 0x6c,\n    0x76, 0x69, 0x69, 0x73, 0x78, 0x77, 0x74, 0x6f, 0x6b, 0x6c, 0x68, 0x62, 0x64, 0x6c, 0x6e, 0x69,\n    0x57, 0x49, 0x40, 0x40, 0x3e, 0x36, 0x37, 0x3d, 0x33, 0x36, 0x3a, 0x3f, 0x49, 0x54, 0x5c, 0x5f,\n    0x6a, 0x67, 0x62, 0x5e, 0x5a, 0x54, 0x4c, 0x45, 0x34, 0x35, 0x46, 0x5d, 0x6d, 0x76, 0x78, 0x72,\n    0x79, 0x75, 0x72, 0x73, 0x76, 0x79, 0x78, 0x76, 0x78, 0x76, 0x74, 0x74, 0x74, 0x74, 0x73, 0x72,\n    0x70, 0x70, 0x72, 0x72, 0x70, 0x6e, 0x71, 0x76, 0x7e, 0x88, 0x94, 0x9b, 0x9a, 0x90, 0x7c, 0x6b,\n    0x5e, 0x62, 0x68, 0x6a, 0x61, 0x56, 0x53, 0x57, 0x53, 0x5c, 0x67, 0x6d, 0x66, 0x51, 0x48, 0x50,\n    0x55, 0x53, 0x4a, 0x46, 0x43, 0x39, 0x35, 0x3f, 0x44, 0x4c, 0x4c, 0x44, 0x47, 0x53, 0x54, 0x4a,\n    0x47, 0x43, 0x3d, 0x3a, 0x3a, 0x38, 0x35, 0x32, 0x2d, 0x2b, 0x2a, 0x28, 0x2c, 0x3c, 0x48, 0x46,\n    0x3c, 0x2d, 0x2c, 0x35, 0x35, 0x2f, 0x2c, 0x2a, 0x2c, 0x2b, 0x2f, 0x35, 0x38, 0x37, 0x38, 0x3d,\n    0x3a, 0x3b, 0x3c, 0x3b, 0x3b, 0x3b, 0x3b, 0x3b, 0x3d, 0x3f, 0x40, 0x3f, 0x40, 0x43, 0x49, 0x4d,\n    0x4e, 0x4e, 0x4e, 0x4c, 0x49, 0x47, 0x47, 0x48, 0x42, 0x42, 0x44, 0x4a, 0x4e, 0x4c, 0x45, 0x3e,\n    0x41, 0x3e, 0x3c, 0x3c, 0x3e, 0x42, 0x4a, 0x51, 0x4b, 0x4d, 0x50, 0x51, 0x51, 0x54, 0x5b, 0x61,\n    0x65, 0x63, 0x61, 0x62, 0x66, 0x69, 0x66, 0x60, 0x51, 0x50, 0x4e, 0x50, 0x55, 0x5e, 0x67, 0x6d,\n    0x6e, 0x6f, 0x71, 0x74, 0x75, 0x74, 0x71, 0x6e, 0x6f, 0x6d, 0x6b, 0x68, 0x61, 0x54, 0x44, 0x39,\n    0x31, 0x39, 0x44, 0x4d, 0x54, 0x58, 0x55, 0x51, 0x5d, 0x5b, 0x58, 0x55, 0x58, 0x60, 0x6c, 0x74,\n    0x70, 0x73, 0x74, 0x70, 0x69, 0x63, 0x60, 0x5f, 0x5d, 0x5a, 0x51, 0x47, 0x44, 0x4a, 0x53, 0x59,\n    0x59, 0x5a, 0x5a, 0x58, 0x50, 0x44, 0x3c, 0x3a, 0x3f, 0x3e, 0x3d, 0x3e, 0x3f, 0x3e, 0x3c, 0x39,\n    0x3a, 0x38, 0x36, 0x37, 0x3e, 0x48, 0x4b, 0x4a, 0x43, 0x3e, 0x3a, 0x3a, 0x3e, 0x41, 0x42, 0x42,\n    0x43, 0x46, 0x4b, 0x50, 0x50, 0x4c, 0x45, 0x40, 0x40, 0x3c, 0x37, 0x36, 0x38, 0x3b, 0x3d, 0x3e,\n    0x3a, 0x3e, 0x41, 0x3b, 0x2e, 0x24, 0x24, 0x2a, 0x2e, 0x32, 0x37, 0x3a, 0x3a, 0x3a, 0x3c, 0x3d,\n    0x42, 0x3c, 0x37, 0x38, 0x3f, 0x4c, 0x5c, 0x6a, 0x7a, 0x7e, 0x82, 0x84, 0x88, 0x8c, 0x8b, 0x87,\n    0x8f, 0x8e, 0x8e, 0x8e, 0x8e, 0x8c, 0x89, 0x86, 0x82, 0x84, 0x87, 0x88, 0x89, 0x8a, 0x8c, 0x8d,\n    0x8d, 0x8b, 0x8b, 0x90, 0x97, 0x9b, 0x99, 0x96, 0x9e, 0x9e, 0x9f, 0x9d, 0x9b, 0x99, 0x99, 0x99,\n    0x9d, 0xa0, 0xa1, 0x9e, 0x9b, 0x9c, 0x9d, 0x9b, 0x9e, 0x9c, 0x9c, 0x9c, 0x99, 0x96, 0x97, 0x9b,\n    0x9f, 0xa5, 0xa5, 0xa1, 0x9f, 0x98, 0x94, 0x97, 0x9f, 0x99, 0x94, 0x93, 0x94, 0x93, 0x92, 0x94,\n    0x8b, 0x90, 0x90, 0x8e, 0x93, 0x97, 0x95, 0x91, 0x91, 0x90, 0x90, 0x8e, 0x8c, 0x8c, 0x8c, 0x8d,\n    0x8a, 0x8b, 0x89, 0x84, 0x80, 0x82, 0x85, 0x86, 0x82, 0x81, 0x7d, 0x76, 0x73, 0x75, 0x77, 0x77,\n    0x77, 0x74, 0x71, 0x6f, 0x6e, 0x6b, 0x67, 0x64, 0x66, 0x65, 0x65, 0x67, 0x6a, 0x69, 0x65, 0x60,\n    0x60, 0x64, 0x65, 0x62, 0x5e, 0x5c, 0x5b, 0x59, 0x5b, 0x56, 0x50, 0x4c, 0x4b, 0x4b, 0x48, 0x46,\n    0x4a, 0x4b, 0x4e, 0x56, 0x5d, 0x64, 0x7d, 0xa0, 0xb6, 0xb8, 0xb9, 0xb9, 0xba, 0xbd, 0xbe, 0xbd,\n    0xb7, 0xb7, 0xb4, 0xb0, 0xae, 0xb0, 0xb2, 0xb3, 0xb4, 0xb2, 0xae, 0xa4, 0x97, 0x8e, 0x7b, 0x63,\n    0x53, 0x49, 0x50, 0x61, 0x6a, 0x70, 0x74, 0x6f, 0x70, 0x6b, 0x69, 0x6c, 0x6f, 0x71, 0x72, 0x74,\n    0x75, 0x70, 0x6d, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x57, 0x51, 0x48, 0x43, 0x42, 0x43, 0x45, 0x47,\n    0x4b, 0x4e, 0x51, 0x54, 0x5a, 0x67, 0x77, 0x82, 0x83, 0x86, 0x87, 0x87, 0x88, 0x89, 0x88, 0x86,\n    0x71, 0x52, 0x45, 0x51, 0x57, 0x52, 0x58, 0x68, 0x76, 0x7b, 0x75, 0x6c, 0x6a, 0x67, 0x60, 0x5e,\n    0x4c, 0x58, 0x69, 0x75, 0x77, 0x6f, 0x61, 0x56, 0x5a, 0x59, 0x54, 0x5f, 0x75, 0x7e, 0x97, 0xc3,\n    0xd6, 0xac, 0x56, 0x66, 0x72, 0x69, 0x50, 0x47, 0x49, 0x42, 0x47, 0x55, 0x5c, 0x63, 0x6b, 0x6d,\n    0x5a, 0x5d, 0x56, 0x4b, 0x50, 0x62, 0x6e, 0x6e, 0x6f, 0x66, 0x63, 0x6a, 0x6b, 0x59, 0x3c, 0x28,\n    0x34, 0x34, 0x3c, 0x47, 0x48, 0x3f, 0x39, 0x3a, 0x41, 0x49, 0x48, 0x3f, 0x37, 0x30, 0x30, 0x39,\n    0x3b, 0x38, 0x37, 0x38, 0x31, 0x25, 0x1e, 0x1e, 0x27, 0x27, 0x2a, 0x2c, 0x2c, 0x3a, 0x62, 0x8a,\n    0x86, 0x75, 0x7a, 0x8c, 0x8c, 0x7e, 0x69, 0x53, 0x4a, 0x56, 0x61, 0x65, 0x67, 0x66, 0x5c, 0x4e,\n    0x59, 0x52, 0x4d, 0x4d, 0x49, 0x42, 0x40, 0x44, 0x3f, 0x4a, 0x56, 0x58, 0x4f, 0x43, 0x3a, 0x35,\n    0x57, 0x52, 0x4d, 0x4b, 0x4b, 0x48, 0x43, 0x3f, 0x34, 0x35, 0x44, 0x57, 0x62, 0x69, 0x6b, 0x67,\n    0x66, 0x67, 0x68, 0x67, 0x66, 0x65, 0x65, 0x66, 0x66, 0x65, 0x65, 0x65, 0x64, 0x64, 0x62, 0x61,\n    0x69, 0x67, 0x67, 0x6b, 0x6d, 0x6d, 0x6d, 0x6f, 0x73, 0x75, 0x77, 0x79, 0x79, 0x78, 0x75, 0x70,\n    0x6c, 0x6d, 0x6c, 0x6b, 0x6d, 0x6c, 0x64, 0x59, 0x50, 0x4f, 0x59, 0x79, 0x95, 0x8d, 0x6b, 0x54,\n    0x46, 0x49, 0x47, 0x42, 0x40, 0x40, 0x44, 0x4b, 0x76, 0x83, 0x79, 0x57, 0x45, 0x4a, 0x47, 0x38,\n    0x3d, 0x39, 0x34, 0x31, 0x32, 0x35, 0x38, 0x3a, 0x31, 0x2f, 0x29, 0x26, 0x39, 0x5f, 0x70, 0x64,\n    0x51, 0x37, 0x2b, 0x2f, 0x31, 0x31, 0x33, 0x34, 0x2b, 0x2f, 0x35, 0x38, 0x35, 0x31, 0x31, 0x33,\n    0x35, 0x35, 0x33, 0x32, 0x37, 0x3f, 0x40, 0x3d, 0x3e, 0x3a, 0x34, 0x30, 0x31, 0x37, 0x41, 0x49,\n    0x4f, 0x4f, 0x4e, 0x4e, 0x4d, 0x4a, 0x45, 0x42, 0x39, 0x38, 0x3c, 0x45, 0x51, 0x54, 0x4d, 0x43,\n    0x3e, 0x3b, 0x3b, 0x3f, 0x44, 0x48, 0x4d, 0x51, 0x52, 0x52, 0x50, 0x4c, 0x4a, 0x4d, 0x53, 0x58,\n    0x68, 0x66, 0x62, 0x61, 0x64, 0x68, 0x67, 0x64, 0x5d, 0x59, 0x57, 0x58, 0x5f, 0x67, 0x6e, 0x71,\n    0x74, 0x77, 0x7b, 0x7d, 0x7b, 0x78, 0x74, 0x72, 0x79, 0x78, 0x79, 0x79, 0x76, 0x6e, 0x63, 0x5b,\n    0x51, 0x54, 0x58, 0x5c, 0x61, 0x61, 0x59, 0x51, 0x51, 0x52, 0x55, 0x5b, 0x62, 0x6a, 0x72, 0x77,\n    0x7c, 0x7c, 0x7a, 0x73, 0x68, 0x60, 0x5d, 0x5d, 0x5f, 0x5e, 0x59, 0x52, 0x4f, 0x52, 0x58, 0x5b,\n    0x5c, 0x5d, 0x5e, 0x5c, 0x53, 0x48, 0x41, 0x3f, 0x3e, 0x3c, 0x3b, 0x3c, 0x3d, 0x3c, 0x3a, 0x37,\n    0x3f, 0x3a, 0x37, 0x3b, 0x47, 0x51, 0x53, 0x51, 0x46, 0x42, 0x3e, 0x3d, 0x3e, 0x3e, 0x3c, 0x3a,\n    0x41, 0x44, 0x48, 0x4b, 0x4d, 0x4c, 0x48, 0x44, 0x45, 0x41, 0x3b, 0x38, 0x39, 0x3c, 0x3d, 0x3d,\n    0x43, 0x3d, 0x37, 0x32, 0x2c, 0x27, 0x27, 0x2c, 0x30, 0x34, 0x39, 0x3c, 0x3d, 0x3d, 0x3e, 0x3f,\n    0x3c, 0x38, 0x33, 0x37, 0x4a, 0x62, 0x73, 0x79, 0x7d, 0x82, 0x88, 0x8b, 0x8d, 0x8e, 0x8f, 0x8e,\n    0x90, 0x90, 0x91, 0x91, 0x90, 0x8e, 0x8a, 0x87, 0x8b, 0x8c, 0x8d, 0x8d, 0x8c, 0x8b, 0x8b, 0x8b,\n    0x8e, 0x8f, 0x91, 0x94, 0x98, 0x9b, 0x9b, 0x9b, 0x9b, 0x9c, 0x9d, 0x9e, 0x9e, 0x9e, 0xa0, 0xa1,\n    0xa1, 0xa3, 0xa3, 0xa0, 0x9c, 0x9d, 0x9e, 0x9f, 0xa0, 0x9d, 0x9b, 0x9c, 0x9d, 0x9c, 0x9b, 0x9b,\n    0x9f, 0xa5, 0xa4, 0xa1, 0x9f, 0x98, 0x94, 0x97, 0x9b, 0x96, 0x91, 0x90, 0x90, 0x90, 0x90, 0x92,\n    0x90, 0x92, 0x94, 0x91, 0x90, 0x94, 0x94, 0x8f, 0x95, 0x94, 0x91, 0x8d, 0x8a, 0x8a, 0x8d, 0x90,\n    0x8f, 0x90, 0x8e, 0x89, 0x86, 0x87, 0x88, 0x88, 0x7c, 0x80, 0x81, 0x7c, 0x77, 0x75, 0x75, 0x75,\n    0x73, 0x75, 0x77, 0x76, 0x72, 0x6e, 0x6b, 0x6b, 0x6a, 0x68, 0x66, 0x68, 0x6b, 0x6d, 0x6b, 0x68,\n    0x66, 0x68, 0x68, 0x64, 0x61, 0x61, 0x61, 0x61, 0x62, 0x5c, 0x55, 0x51, 0x50, 0x4f, 0x4c, 0x4a,\n    0x4b, 0x48, 0x46, 0x4c, 0x55, 0x61, 0x82, 0xa9, 0xbe, 0xbf, 0xbe, 0xbc, 0xbd, 0xbf, 0xc1, 0xc0,\n    0xb7, 0xb7, 0xb5, 0xb3, 0xb4, 0xb5, 0xb1, 0xaa, 0xa8, 0x9c, 0x8c, 0x7b, 0x6e, 0x6d, 0x67, 0x59,\n    0x4f, 0x4a, 0x50, 0x5c, 0x64, 0x69, 0x6b, 0x6b, 0x71, 0x6e, 0x6e, 0x72, 0x75, 0x75, 0x74, 0x74,\n    0x75, 0x6f, 0x6c, 0x6d, 0x6d, 0x68, 0x63, 0x60, 0x53, 0x54, 0x51, 0x4a, 0x43, 0x41, 0x44, 0x48,\n    0x4b, 0x4d, 0x4f, 0x50, 0x53, 0x60, 0x73, 0x83, 0x84, 0x85, 0x82, 0x7c, 0x79, 0x7b, 0x7e, 0x7f,\n    0x75, 0x5b, 0x44, 0x41, 0x44, 0x44, 0x4d, 0x5f, 0x6e, 0x71, 0x70, 0x6f, 0x6d, 0x5f, 0x53, 0x53,\n    0x51, 0x54, 0x58, 0x5a, 0x5b, 0x5b, 0x5e, 0x61, 0x5f, 0x62, 0x5c, 0x60, 0x70, 0x75, 0x83, 0xa4,\n    0xaa, 0x8d, 0x45, 0x59, 0x60, 0x58, 0x48, 0x4a, 0x47, 0x43, 0x4a, 0x56, 0x5b, 0x65, 0x74, 0x7d,\n    0x87, 0x78, 0x5e, 0x42, 0x31, 0x30, 0x3e, 0x4c, 0x55, 0x59, 0x5f, 0x5f, 0x51, 0x3c, 0x33, 0x34,\n    0x3b, 0x3e, 0x49, 0x56, 0x56, 0x4a, 0x41, 0x41, 0x3f, 0x44, 0x42, 0x3b, 0x36, 0x30, 0x2e, 0x34,\n    0x39, 0x3c, 0x3a, 0x30, 0x25, 0x1d, 0x15, 0x0e, 0x1a, 0x21, 0x1c, 0x16, 0x2f, 0x61, 0x83, 0x89,\n    0x7c, 0x70, 0x74, 0x7b, 0x6f, 0x5d, 0x4c, 0x3a, 0x35, 0x3a, 0x3f, 0x42, 0x47, 0x4c, 0x4b, 0x47,\n    0x2d, 0x31, 0x33, 0x2f, 0x2c, 0x30, 0x38, 0x3f, 0x59, 0x51, 0x44, 0x39, 0x37, 0x42, 0x55, 0x65,\n    0x41, 0x3b, 0x37, 0x3b, 0x41, 0x42, 0x3f, 0x3d, 0x35, 0x33, 0x3c, 0x49, 0x4f, 0x55, 0x58, 0x56,\n    0x55, 0x58, 0x5a, 0x59, 0x55, 0x54, 0x56, 0x59, 0x56, 0x57, 0x59, 0x5b, 0x5b, 0x5b, 0x5b, 0x5a,\n    0x5b, 0x57, 0x57, 0x5a, 0x5d, 0x5d, 0x5b, 0x5b, 0x5c, 0x5d, 0x5c, 0x5b, 0x5a, 0x5b, 0x5e, 0x60,\n    0x5f, 0x62, 0x60, 0x59, 0x55, 0x52, 0x49, 0x3d, 0x34, 0x3a, 0x47, 0x62, 0x7f, 0x80, 0x68, 0x54,\n    0x50, 0x48, 0x46, 0x4a, 0x47, 0x46, 0x55, 0x69, 0x99, 0x9e, 0x8a, 0x5f, 0x46, 0x47, 0x44, 0x38,\n    0x32, 0x30, 0x2c, 0x29, 0x28, 0x2c, 0x32, 0x37, 0x31, 0x2f, 0x28, 0x2b, 0x4e, 0x85, 0x97, 0x84,\n    0x51, 0x3a, 0x2f, 0x34, 0x36, 0x35, 0x37, 0x36, 0x33, 0x3a, 0x3d, 0x38, 0x33, 0x34, 0x37, 0x37,\n    0x34, 0x33, 0x2f, 0x31, 0x3d, 0x4c, 0x4d, 0x46, 0x3f, 0x39, 0x34, 0x33, 0x36, 0x3d, 0x47, 0x50,\n    0x49, 0x49, 0x49, 0x4a, 0x49, 0x46, 0x40, 0x3c, 0x34, 0x35, 0x38, 0x41, 0x4d, 0x54, 0x4f, 0x46,\n    0x41, 0x41, 0x44, 0x4b, 0x4e, 0x4d, 0x4b, 0x4a, 0x54, 0x55, 0x55, 0x53, 0x54, 0x58, 0x5c, 0x5d,\n    0x6c, 0x6a, 0x65, 0x5f, 0x5d, 0x5d, 0x5b, 0x59, 0x5a, 0x5a, 0x5c, 0x62, 0x69, 0x6f, 0x71, 0x71,\n    0x73, 0x73, 0x74, 0x75, 0x75, 0x75, 0x76, 0x76, 0x75, 0x77, 0x7c, 0x80, 0x82, 0x81, 0x7e, 0x7b,\n    0x77, 0x70, 0x67, 0x61, 0x5f, 0x5a, 0x4d, 0x40, 0x39, 0x3f, 0x4b, 0x58, 0x63, 0x68, 0x6d, 0x70,\n    0x79, 0x78, 0x76, 0x71, 0x68, 0x60, 0x5e, 0x60, 0x62, 0x60, 0x59, 0x50, 0x4c, 0x50, 0x57, 0x5b,\n    0x5d, 0x5f, 0x60, 0x5e, 0x56, 0x4c, 0x48, 0x48, 0x45, 0x43, 0x42, 0x41, 0x40, 0x3f, 0x3d, 0x3c,\n    0x3e, 0x39, 0x35, 0x39, 0x43, 0x4b, 0x4b, 0x48, 0x44, 0x42, 0x3f, 0x3c, 0x3b, 0x38, 0x34, 0x30,\n    0x36, 0x3b, 0x41, 0x46, 0x4b, 0x51, 0x53, 0x53, 0x54, 0x4e, 0x43, 0x3a, 0x38, 0x3c, 0x3e, 0x3e,\n    0x45, 0x3e, 0x36, 0x30, 0x2c, 0x2a, 0x2a, 0x2c, 0x32, 0x36, 0x3b, 0x3d, 0x3e, 0x3d, 0x3e, 0x40,\n    0x3a, 0x36, 0x36, 0x41, 0x59, 0x70, 0x7b, 0x7c, 0x80, 0x85, 0x8b, 0x8d, 0x8d, 0x8d, 0x8f, 0x91,\n    0x90, 0x91, 0x91, 0x91, 0x90, 0x8f, 0x8d, 0x8d, 0x8b, 0x8c, 0x8c, 0x8c, 0x8c, 0x8c, 0x8d, 0x8e,\n    0x90, 0x93, 0x96, 0x97, 0x98, 0x99, 0x9b, 0x9d, 0x9e, 0x9e, 0x9f, 0xa0, 0xa2, 0xa4, 0xa5, 0xa6,\n    0xa7, 0xa6, 0xa4, 0xa0, 0x9c, 0x9b, 0x9d, 0x9f, 0x9d, 0x9d, 0x9e, 0xa0, 0xa2, 0xa0, 0x9b, 0x96,\n    0x9d, 0xa3, 0xa4, 0xa1, 0x9f, 0x98, 0x93, 0x97, 0x98, 0x96, 0x94, 0x91, 0x91, 0x91, 0x93, 0x95,\n    0x98, 0x98, 0x99, 0x95, 0x8e, 0x90, 0x92, 0x8b, 0x94, 0x93, 0x91, 0x8d, 0x8a, 0x8a, 0x8e, 0x92,\n    0x93, 0x93, 0x8f, 0x8a, 0x87, 0x87, 0x87, 0x85, 0x7e, 0x82, 0x85, 0x81, 0x7c, 0x78, 0x75, 0x73,\n    0x71, 0x76, 0x7a, 0x7b, 0x77, 0x73, 0x73, 0x74, 0x6d, 0x6b, 0x68, 0x69, 0x6b, 0x6d, 0x6e, 0x6e,\n    0x6c, 0x6d, 0x6b, 0x66, 0x64, 0x65, 0x66, 0x65, 0x61, 0x5c, 0x57, 0x54, 0x52, 0x52, 0x50, 0x4f,\n    0x4e, 0x4b, 0x47, 0x4a, 0x51, 0x5f, 0x84, 0xae, 0xc3, 0xc5, 0xc4, 0xc1, 0xc1, 0xc2, 0xc2, 0xc0,\n    0xc0, 0xc2, 0xc1, 0xbe, 0xbb, 0xb3, 0xa4, 0x94, 0x84, 0x79, 0x6c, 0x61, 0x5c, 0x61, 0x63, 0x59,\n    0x45, 0x47, 0x50, 0x5d, 0x68, 0x6a, 0x68, 0x66, 0x6b, 0x6a, 0x6d, 0x72, 0x76, 0x77, 0x77, 0x78,\n    0x7b, 0x76, 0x72, 0x71, 0x6b, 0x62, 0x5e, 0x5f, 0x5d, 0x63, 0x64, 0x5a, 0x4e, 0x48, 0x49, 0x4c,\n    0x4e, 0x4e, 0x4e, 0x4e, 0x51, 0x5d, 0x74, 0x87, 0x90, 0x90, 0x8b, 0x82, 0x7b, 0x7a, 0x7c, 0x7d,\n    0x76, 0x64, 0x47, 0x35, 0x35, 0x39, 0x45, 0x56, 0x64, 0x6a, 0x74, 0x7d, 0x76, 0x59, 0x40, 0x3b,\n    0x43, 0x43, 0x43, 0x40, 0x3a, 0x39, 0x41, 0x49, 0x57, 0x5f, 0x5f, 0x60, 0x68, 0x67, 0x67, 0x73,\n    0x74, 0x68, 0x37, 0x3e, 0x49, 0x55, 0x4f, 0x48, 0x44, 0x40, 0x46, 0x51, 0x58, 0x5f, 0x64, 0x61,\n    0x5d, 0x51, 0x4b, 0x50, 0x51, 0x49, 0x45, 0x47, 0x59, 0x58, 0x54, 0x4a, 0x3b, 0x31, 0x36, 0x40,\n    0x34, 0x34, 0x3c, 0x49, 0x4c, 0x44, 0x3f, 0x40, 0x41, 0x45, 0x40, 0x37, 0x32, 0x2c, 0x29, 0x2f,\n    0x3a, 0x3a, 0x38, 0x30, 0x22, 0x15, 0x0f, 0x0f, 0x0c, 0x16, 0x21, 0x34, 0x5e, 0x89, 0x92, 0x83,\n    0x69, 0x56, 0x45, 0x3a, 0x32, 0x2e, 0x2b, 0x25, 0x28, 0x26, 0x26, 0x29, 0x2a, 0x25, 0x1f, 0x1c,\n    0x2e, 0x2c, 0x2a, 0x30, 0x42, 0x56, 0x5e, 0x5c, 0x3c, 0x49, 0x60, 0x77, 0x83, 0x80, 0x75, 0x6e,\n    0x3c, 0x34, 0x32, 0x3a, 0x44, 0x47, 0x43, 0x40, 0x37, 0x33, 0x39, 0x43, 0x47, 0x4e, 0x54, 0x54,\n    0x52, 0x53, 0x52, 0x4f, 0x4c, 0x4c, 0x4f, 0x52, 0x51, 0x54, 0x57, 0x5a, 0x5b, 0x5b, 0x5a, 0x5a,\n    0x5e, 0x5c, 0x5b, 0x5d, 0x5d, 0x5a, 0x58, 0x58, 0x56, 0x57, 0x59, 0x5a, 0x59, 0x57, 0x56, 0x56,\n    0x50, 0x54, 0x56, 0x50, 0x48, 0x44, 0x44, 0x45, 0x48, 0x52, 0x52, 0x4b, 0x4c, 0x4f, 0x50, 0x52,\n    0x57, 0x4b, 0x4d, 0x56, 0x52, 0x53, 0x6e, 0x8e, 0x8f, 0x82, 0x67, 0x4b, 0x3e, 0x40, 0x41, 0x3e,\n    0x34, 0x31, 0x2c, 0x27, 0x26, 0x27, 0x29, 0x2a, 0x2e, 0x28, 0x23, 0x2a, 0x4d, 0x78, 0x7b, 0x5e,\n    0x3e, 0x34, 0x35, 0x3d, 0x3d, 0x3c, 0x3c, 0x39, 0x48, 0x4f, 0x4d, 0x41, 0x3d, 0x44, 0x47, 0x42,\n    0x33, 0x30, 0x2a, 0x2e, 0x43, 0x5b, 0x60, 0x58, 0x3b, 0x34, 0x30, 0x34, 0x3a, 0x41, 0x48, 0x4e,\n    0x49, 0x4c, 0x4d, 0x4b, 0x46, 0x42, 0x40, 0x40, 0x3a, 0x3c, 0x3d, 0x3e, 0x43, 0x48, 0x47, 0x43,\n    0x47, 0x4a, 0x50, 0x57, 0x58, 0x56, 0x54, 0x55, 0x54, 0x55, 0x54, 0x53, 0x58, 0x60, 0x64, 0x64,\n    0x65, 0x69, 0x6a, 0x68, 0x65, 0x65, 0x64, 0x63, 0x57, 0x5b, 0x60, 0x66, 0x6b, 0x6e, 0x70, 0x71,\n    0x6f, 0x6b, 0x68, 0x6a, 0x70, 0x75, 0x77, 0x76, 0x6f, 0x73, 0x79, 0x7d, 0x7e, 0x7d, 0x7c, 0x7c,\n    0x78, 0x6b, 0x5a, 0x51, 0x53, 0x52, 0x48, 0x3c, 0x42, 0x49, 0x55, 0x61, 0x67, 0x69, 0x6d, 0x73,\n    0x72, 0x70, 0x70, 0x70, 0x6a, 0x63, 0x60, 0x61, 0x60, 0x5d, 0x56, 0x4c, 0x48, 0x4c, 0x53, 0x58,\n    0x59, 0x5b, 0x5e, 0x5d, 0x56, 0x4f, 0x4d, 0x4f, 0x52, 0x50, 0x4e, 0x4a, 0x47, 0x44, 0x44, 0x44,\n    0x41, 0x3e, 0x3b, 0x3d, 0x41, 0x43, 0x43, 0x43, 0x44, 0x43, 0x41, 0x3e, 0x3a, 0x35, 0x31, 0x2e,\n    0x38, 0x3f, 0x47, 0x4b, 0x50, 0x57, 0x5d, 0x5e, 0x62, 0x5b, 0x4e, 0x41, 0x3d, 0x40, 0x42, 0x41,\n    0x3c, 0x3f, 0x3e, 0x36, 0x2d, 0x28, 0x29, 0x2b, 0x32, 0x36, 0x3b, 0x3d, 0x3d, 0x3d, 0x3e, 0x3f,\n    0x3f, 0x38, 0x3f, 0x57, 0x6e, 0x77, 0x79, 0x7c, 0x83, 0x85, 0x88, 0x8a, 0x8b, 0x8b, 0x8e, 0x91,\n    0x92, 0x92, 0x90, 0x8d, 0x8a, 0x8a, 0x8d, 0x90, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8f, 0x93, 0x96,\n    0x96, 0x98, 0x99, 0x9a, 0x99, 0x9a, 0x9c, 0x9e, 0xa3, 0xa3, 0xa2, 0xa3, 0xa4, 0xa6, 0xa7, 0xa7,\n    0xa8, 0xa7, 0xa5, 0xa2, 0xa0, 0x9e, 0x9e, 0x9f, 0x9d, 0xa0, 0xa3, 0xa4, 0xa3, 0xa0, 0x9b, 0x96,\n    0x9d, 0xa4, 0xa5, 0xa3, 0xa1, 0x99, 0x94, 0x97, 0x9a, 0x9b, 0x9b, 0x98, 0x96, 0x98, 0x9b, 0x9e,\n    0x9d, 0x9b, 0x9d, 0x98, 0x8d, 0x90, 0x94, 0x8c, 0x8e, 0x8f, 0x90, 0x8e, 0x8d, 0x8d, 0x90, 0x94,\n    0x99, 0x95, 0x8d, 0x87, 0x85, 0x86, 0x85, 0x82, 0x83, 0x84, 0x82, 0x80, 0x7f, 0x7e, 0x79, 0x74,\n    0x76, 0x78, 0x7b, 0x7b, 0x79, 0x77, 0x77, 0x78, 0x71, 0x6f, 0x6e, 0x6d, 0x6d, 0x6e, 0x70, 0x71,\n    0x70, 0x70, 0x6e, 0x6a, 0x69, 0x6a, 0x69, 0x66, 0x60, 0x5e, 0x5a, 0x57, 0x54, 0x53, 0x52, 0x52,\n    0x53, 0x51, 0x4e, 0x4d, 0x4e, 0x56, 0x78, 0xa2, 0xc2, 0xc5, 0xc6, 0xc5, 0xc4, 0xc3, 0xc0, 0xbc,\n    0xbe, 0xc1, 0xbf, 0xb7, 0xac, 0x9f, 0x8a, 0x78, 0x72, 0x69, 0x62, 0x5c, 0x57, 0x58, 0x54, 0x48,\n    0x42, 0x47, 0x4e, 0x5a, 0x66, 0x67, 0x63, 0x62, 0x64, 0x64, 0x67, 0x6d, 0x72, 0x74, 0x77, 0x79,\n    0x80, 0x7d, 0x7a, 0x76, 0x6a, 0x5e, 0x5d, 0x63, 0x60, 0x67, 0x68, 0x5d, 0x4f, 0x47, 0x46, 0x47,\n    0x4d, 0x4c, 0x4b, 0x4c, 0x50, 0x5e, 0x77, 0x8d, 0x97, 0x98, 0x94, 0x8b, 0x83, 0x7f, 0x7e, 0x7d,\n    0x76, 0x6b, 0x50, 0x3b, 0x39, 0x3c, 0x46, 0x58, 0x61, 0x6b, 0x77, 0x80, 0x77, 0x57, 0x3c, 0x36,\n    0x3a, 0x39, 0x37, 0x30, 0x29, 0x2a, 0x38, 0x48, 0x57, 0x5c, 0x60, 0x62, 0x63, 0x64, 0x67, 0x6b,\n    0x71, 0x69, 0x54, 0x4e, 0x54, 0x5d, 0x4e, 0x3a, 0x3d, 0x3c, 0x45, 0x50, 0x58, 0x5e, 0x59, 0x4c,\n    0x48, 0x3d, 0x36, 0x36, 0x34, 0x32, 0x3e, 0x4f, 0x56, 0x4c, 0x40, 0x38, 0x35, 0x35, 0x37, 0x38,\n    0x2c, 0x25, 0x25, 0x2e, 0x36, 0x37, 0x39, 0x3d, 0x3c, 0x43, 0x41, 0x38, 0x2f, 0x25, 0x20, 0x25,\n    0x2e, 0x30, 0x32, 0x2c, 0x1f, 0x14, 0x12, 0x16, 0x12, 0x1d, 0x3b, 0x68, 0x88, 0x84, 0x62, 0x43,\n    0x40, 0x3b, 0x2f, 0x27, 0x2b, 0x2c, 0x25, 0x1f, 0x2e, 0x21, 0x1c, 0x24, 0x2d, 0x32, 0x3a, 0x43,\n    0x32, 0x30, 0x38, 0x4e, 0x68, 0x75, 0x72, 0x6a, 0x82, 0x7e, 0x7a, 0x76, 0x71, 0x6f, 0x74, 0x7b,\n    0x40, 0x38, 0x36, 0x3f, 0x4b, 0x4c, 0x46, 0x41, 0x3d, 0x38, 0x3d, 0x44, 0x47, 0x4e, 0x56, 0x57,\n    0x5b, 0x57, 0x52, 0x4d, 0x4b, 0x4c, 0x4f, 0x51, 0x53, 0x56, 0x59, 0x5b, 0x5c, 0x5b, 0x5a, 0x59,\n    0x59, 0x5a, 0x5b, 0x5d, 0x5b, 0x58, 0x58, 0x5a, 0x5a, 0x57, 0x56, 0x55, 0x54, 0x54, 0x55, 0x57,\n    0x58, 0x4f, 0x48, 0x4a, 0x4c, 0x4a, 0x4b, 0x4f, 0x5b, 0x6a, 0x6c, 0x62, 0x61, 0x62, 0x5d, 0x58,\n    0x61, 0x66, 0x65, 0x55, 0x4e, 0x67, 0x8c, 0xa0, 0x8b, 0x6e, 0x4d, 0x3f, 0x3d, 0x3f, 0x41, 0x45,\n    0x3c, 0x37, 0x30, 0x2b, 0x29, 0x26, 0x23, 0x20, 0x2e, 0x29, 0x2c, 0x3e, 0x61, 0x7e, 0x74, 0x53,\n    0x37, 0x33, 0x38, 0x3e, 0x3d, 0x40, 0x48, 0x4a, 0x5d, 0x66, 0x61, 0x51, 0x4e, 0x57, 0x56, 0x4b,\n    0x39, 0x32, 0x28, 0x2b, 0x45, 0x64, 0x6e, 0x66, 0x4e, 0x46, 0x40, 0x42, 0x47, 0x4b, 0x4f, 0x52,\n    0x54, 0x58, 0x59, 0x54, 0x4a, 0x44, 0x45, 0x49, 0x44, 0x47, 0x45, 0x3e, 0x3a, 0x3b, 0x3d, 0x3c,\n    0x36, 0x3b, 0x44, 0x4b, 0x4f, 0x52, 0x59, 0x60, 0x6e, 0x6a, 0x62, 0x5c, 0x5e, 0x65, 0x69, 0x68,\n    0x61, 0x67, 0x6b, 0x68, 0x62, 0x5c, 0x58, 0x55, 0x60, 0x64, 0x68, 0x6b, 0x6b, 0x6d, 0x71, 0x75,\n    0x75, 0x6d, 0x67, 0x69, 0x72, 0x77, 0x75, 0x70, 0x6e, 0x73, 0x79, 0x7b, 0x7a, 0x77, 0x75, 0x75,\n    0x78, 0x69, 0x58, 0x55, 0x5f, 0x69, 0x66, 0x5d, 0x55, 0x5e, 0x6c, 0x75, 0x73, 0x6d, 0x6f, 0x74,\n    0x74, 0x72, 0x72, 0x72, 0x6b, 0x61, 0x5a, 0x5a, 0x57, 0x5b, 0x5b, 0x58, 0x55, 0x54, 0x54, 0x53,\n    0x54, 0x56, 0x59, 0x5a, 0x55, 0x4f, 0x4f, 0x52, 0x59, 0x58, 0x55, 0x4f, 0x49, 0x46, 0x46, 0x47,\n    0x4b, 0x4b, 0x4b, 0x4b, 0x49, 0x48, 0x49, 0x4b, 0x47, 0x47, 0x45, 0x41, 0x3c, 0x37, 0x34, 0x32,\n    0x3b, 0x42, 0x47, 0x46, 0x46, 0x4a, 0x4c, 0x4c, 0x56, 0x51, 0x47, 0x3d, 0x3a, 0x3d, 0x3d, 0x3a,\n    0x40, 0x40, 0x39, 0x2f, 0x28, 0x29, 0x2a, 0x29, 0x32, 0x36, 0x3b, 0x3d, 0x3d, 0x3c, 0x3d, 0x3e,\n    0x3f, 0x36, 0x45, 0x6b, 0x81, 0x7e, 0x7c, 0x85, 0x87, 0x86, 0x86, 0x89, 0x8b, 0x8e, 0x92, 0x95,\n    0x94, 0x93, 0x8e, 0x88, 0x83, 0x84, 0x89, 0x8f, 0x93, 0x92, 0x92, 0x91, 0x91, 0x93, 0x96, 0x99,\n    0x9c, 0x9c, 0x9b, 0x9b, 0x9b, 0x9c, 0x9d, 0x9e, 0xa2, 0xa1, 0xa1, 0xa3, 0xa5, 0xa8, 0xa9, 0xaa,\n    0xaa, 0xa8, 0xa7, 0xa7, 0xa6, 0xa5, 0xa4, 0xa5, 0xa2, 0xa5, 0xa7, 0xa5, 0xa1, 0x9e, 0x9c, 0x9b,\n    0x9f, 0xa7, 0xa8, 0xa6, 0xa3, 0x9c, 0x95, 0x98, 0x9b, 0x9e, 0x9f, 0x9d, 0x9a, 0x9b, 0xa0, 0xa3,\n    0x9e, 0x9b, 0x9e, 0x99, 0x8d, 0x91, 0x98, 0x90, 0x88, 0x8b, 0x8f, 0x90, 0x90, 0x90, 0x92, 0x95,\n    0x9f, 0x99, 0x8e, 0x87, 0x85, 0x88, 0x87, 0x83, 0x86, 0x82, 0x7d, 0x7c, 0x80, 0x83, 0x7e, 0x77,\n    0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x75, 0x74, 0x74, 0x73, 0x72, 0x70, 0x70, 0x71, 0x72,\n    0x72, 0x72, 0x70, 0x6d, 0x6d, 0x6d, 0x6a, 0x65, 0x62, 0x61, 0x5e, 0x5a, 0x56, 0x53, 0x52, 0x52,\n    0x53, 0x54, 0x51, 0x4d, 0x47, 0x49, 0x66, 0x8f, 0xbd, 0xc2, 0xc6, 0xc6, 0xc5, 0xc2, 0xbd, 0xb7,\n    0xad, 0xb0, 0xae, 0xa2, 0x96, 0x89, 0x79, 0x6a, 0x66, 0x5d, 0x57, 0x52, 0x50, 0x55, 0x55, 0x4b,\n    0x48, 0x4d, 0x50, 0x57, 0x62, 0x63, 0x60, 0x62, 0x61, 0x60, 0x62, 0x67, 0x6c, 0x70, 0x74, 0x78,\n    0x7f, 0x7d, 0x7b, 0x76, 0x68, 0x5b, 0x5c, 0x65, 0x62, 0x67, 0x67, 0x5c, 0x50, 0x49, 0x47, 0x46,\n    0x44, 0x42, 0x42, 0x45, 0x4b, 0x5c, 0x77, 0x8e, 0x90, 0x93, 0x93, 0x8e, 0x88, 0x84, 0x81, 0x7f,\n    0x76, 0x6d, 0x52, 0x3d, 0x3c, 0x3f, 0x4c, 0x62, 0x61, 0x6b, 0x73, 0x75, 0x6d, 0x56, 0x43, 0x40,\n    0x33, 0x34, 0x34, 0x31, 0x2b, 0x30, 0x43, 0x57, 0x62, 0x62, 0x68, 0x6a, 0x65, 0x65, 0x6b, 0x6e,\n    0x7f, 0x6d, 0x61, 0x49, 0x3b, 0x3a, 0x3b, 0x3c, 0x37, 0x3a, 0x43, 0x4e, 0x5a, 0x69, 0x6e, 0x65,\n    0x58, 0x47, 0x38, 0x34, 0x32, 0x30, 0x33, 0x39, 0x37, 0x36, 0x35, 0x33, 0x33, 0x35, 0x35, 0x34,\n    0x21, 0x18, 0x16, 0x1f, 0x27, 0x27, 0x27, 0x2a, 0x2c, 0x39, 0x3e, 0x38, 0x2e, 0x21, 0x1a, 0x1f,\n    0x1b, 0x28, 0x2c, 0x20, 0x14, 0x11, 0x11, 0x10, 0x17, 0x43, 0x6c, 0x72, 0x61, 0x4f, 0x45, 0x3f,\n    0x38, 0x46, 0x3f, 0x2c, 0x25, 0x20, 0x1e, 0x24, 0x20, 0x1c, 0x26, 0x3c, 0x44, 0x38, 0x2d, 0x2c,\n    0x27, 0x39, 0x5a, 0x78, 0x7f, 0x74, 0x6d, 0x6f, 0x6b, 0x72, 0x77, 0x70, 0x5f, 0x57, 0x61, 0x71,\n    0x3c, 0x39, 0x38, 0x3b, 0x3f, 0x40, 0x40, 0x40, 0x3a, 0x3d, 0x42, 0x48, 0x4d, 0x51, 0x53, 0x54,\n    0x55, 0x53, 0x4e, 0x4a, 0x49, 0x4a, 0x4c, 0x4e, 0x4e, 0x51, 0x55, 0x58, 0x59, 0x58, 0x58, 0x58,\n    0x57, 0x56, 0x54, 0x55, 0x57, 0x57, 0x56, 0x54, 0x57, 0x55, 0x52, 0x52, 0x53, 0x55, 0x57, 0x58,\n    0x53, 0x52, 0x52, 0x52, 0x51, 0x53, 0x59, 0x61, 0x5e, 0x63, 0x65, 0x64, 0x64, 0x68, 0x6f, 0x74,\n    0x78, 0x77, 0x73, 0x63, 0x56, 0x63, 0x83, 0x98, 0x84, 0x6e, 0x56, 0x49, 0x3f, 0x37, 0x38, 0x40,\n    0x48, 0x49, 0x40, 0x31, 0x2a, 0x2c, 0x2b, 0x26, 0x2e, 0x2b, 0x2b, 0x32, 0x3d, 0x44, 0x41, 0x3a,\n    0x3a, 0x3b, 0x3e, 0x43, 0x4a, 0x54, 0x62, 0x6d, 0x82, 0x76, 0x6c, 0x67, 0x5f, 0x4d, 0x3c, 0x32,\n    0x35, 0x3c, 0x3b, 0x32, 0x3d, 0x64, 0x80, 0x7f, 0x5d, 0x5b, 0x71, 0x8a, 0x84, 0x69, 0x56, 0x51,\n    0x4e, 0x54, 0x58, 0x55, 0x51, 0x51, 0x52, 0x52, 0x52, 0x4d, 0x48, 0x44, 0x3f, 0x39, 0x37, 0x37,\n    0x36, 0x3b, 0x3c, 0x3b, 0x40, 0x4b, 0x51, 0x50, 0x50, 0x52, 0x59, 0x63, 0x6c, 0x6d, 0x6b, 0x68,\n    0x61, 0x61, 0x64, 0x64, 0x5e, 0x58, 0x59, 0x5e, 0x6c, 0x6d, 0x6e, 0x6f, 0x70, 0x71, 0x71, 0x72,\n    0x6c, 0x6a, 0x64, 0x62, 0x6d, 0x7b, 0x79, 0x6e, 0x67, 0x68, 0x6f, 0x78, 0x7c, 0x79, 0x78, 0x7a,\n    0x85, 0x77, 0x64, 0x5e, 0x6c, 0x7c, 0x75, 0x64, 0x57, 0x5c, 0x64, 0x6c, 0x71, 0x73, 0x74, 0x74,\n    0x77, 0x7b, 0x7b, 0x76, 0x71, 0x6c, 0x65, 0x5e, 0x5e, 0x5e, 0x62, 0x67, 0x69, 0x65, 0x60, 0x5d,\n    0x55, 0x55, 0x58, 0x5a, 0x55, 0x4d, 0x4c, 0x52, 0x53, 0x52, 0x50, 0x4b, 0x44, 0x3f, 0x3d, 0x3c,\n    0x40, 0x41, 0x41, 0x41, 0x43, 0x48, 0x4c, 0x4c, 0x49, 0x4a, 0x48, 0x42, 0x39, 0x33, 0x30, 0x31,\n    0x3b, 0x3a, 0x39, 0x37, 0x35, 0x34, 0x3a, 0x40, 0x43, 0x48, 0x4b, 0x48, 0x42, 0x41, 0x42, 0x43,\n    0x43, 0x42, 0x3e, 0x38, 0x31, 0x2d, 0x2d, 0x2e, 0x30, 0x36, 0x3b, 0x3d, 0x40, 0x41, 0x3e, 0x39,\n    0x3e, 0x51, 0x66, 0x71, 0x79, 0x7f, 0x80, 0x7c, 0x85, 0x87, 0x8a, 0x8b, 0x8c, 0x8d, 0x91, 0x93,\n    0x92, 0x8e, 0x8b, 0x8b, 0x8b, 0x8a, 0x8b, 0x8d, 0x92, 0x91, 0x90, 0x91, 0x94, 0x97, 0x99, 0x9a,\n    0x9d, 0x9c, 0x9a, 0x99, 0x9b, 0x9e, 0xa2, 0xa5, 0xa0, 0xa1, 0xa4, 0xa7, 0xa9, 0xaa, 0xaa, 0xa9,\n    0xab, 0xab, 0xab, 0xa9, 0xa7, 0xa5, 0xa6, 0xa6, 0xa4, 0xa9, 0xaa, 0xa6, 0xa0, 0x9e, 0x9e, 0x9d,\n    0xa1, 0xa5, 0xa8, 0xa6, 0xa0, 0x9a, 0x97, 0x96, 0x9d, 0xa0, 0xa4, 0xa6, 0xa5, 0xa4, 0xa5, 0xa5,\n    0x9a, 0x99, 0x9e, 0xa2, 0x9e, 0x93, 0x8e, 0x91, 0x84, 0x8c, 0x92, 0x92, 0x90, 0x90, 0x93, 0x94,\n    0x9a, 0x96, 0x8e, 0x87, 0x86, 0x89, 0x8a, 0x88, 0x87, 0x7a, 0x74, 0x7e, 0x87, 0x84, 0x7e, 0x7b,\n    0x7b, 0x7c, 0x7d, 0x7c, 0x79, 0x78, 0x78, 0x79, 0x79, 0x78, 0x76, 0x75, 0x75, 0x76, 0x77, 0x77,\n    0x70, 0x71, 0x71, 0x71, 0x70, 0x6f, 0x6d, 0x6c, 0x68, 0x65, 0x60, 0x5d, 0x5c, 0x5b, 0x5a, 0x5a,\n    0x53, 0x4f, 0x4d, 0x4d, 0x4b, 0x4a, 0x54, 0x61, 0x94, 0xc1, 0xd0, 0xc4, 0xc5, 0xc4, 0xb5, 0xac,\n    0xa0, 0x8c, 0x86, 0x7f, 0x76, 0x70, 0x5f, 0x56, 0x54, 0x54, 0x54, 0x55, 0x54, 0x4f, 0x47, 0x42,\n    0x43, 0x49, 0x54, 0x5d, 0x5f, 0x5c, 0x5a, 0x59, 0x56, 0x56, 0x58, 0x5c, 0x5e, 0x61, 0x68, 0x6f,\n    0x72, 0x73, 0x71, 0x67, 0x5a, 0x57, 0x62, 0x6e, 0x69, 0x66, 0x5f, 0x57, 0x4f, 0x4a, 0x47, 0x47,\n    0x45, 0x44, 0x43, 0x43, 0x4a, 0x58, 0x6b, 0x78, 0x7f, 0x8d, 0x96, 0x92, 0x8b, 0x87, 0x81, 0x7a,\n    0x78, 0x6e, 0x5d, 0x4b, 0x42, 0x48, 0x57, 0x64, 0x60, 0x65, 0x67, 0x69, 0x70, 0x71, 0x64, 0x51,\n    0x42, 0x42, 0x40, 0x3b, 0x37, 0x3e, 0x52, 0x65, 0x6e, 0x77, 0x7b, 0x69, 0x5a, 0x6e, 0x88, 0x8a,\n    0x8a, 0x83, 0x6e, 0x5d, 0x52, 0x3e, 0x34, 0x3d, 0x32, 0x3a, 0x40, 0x43, 0x50, 0x61, 0x63, 0x5a,\n    0x5a, 0x4d, 0x3e, 0x36, 0x32, 0x2f, 0x30, 0x33, 0x37, 0x3c, 0x38, 0x2e, 0x30, 0x3b, 0x38, 0x2b,\n    0x1e, 0x19, 0x13, 0x12, 0x19, 0x1e, 0x1c, 0x17, 0x1d, 0x22, 0x24, 0x22, 0x1d, 0x17, 0x12, 0x0f,\n    0x18, 0x17, 0x19, 0x1a, 0x14, 0x0f, 0x15, 0x1f, 0x3b, 0x59, 0x6e, 0x64, 0x4f, 0x40, 0x34, 0x29,\n    0x2e, 0x40, 0x47, 0x38, 0x28, 0x25, 0x29, 0x29, 0x3b, 0x49, 0x59, 0x58, 0x42, 0x2b, 0x2b, 0x37,\n    0x57, 0x6e, 0x82, 0x85, 0x81, 0x7b, 0x6f, 0x62, 0x5a, 0x50, 0x46, 0x42, 0x45, 0x46, 0x42, 0x3c,\n    0x35, 0x33, 0x33, 0x35, 0x35, 0x33, 0x34, 0x37, 0x36, 0x39, 0x3e, 0x43, 0x49, 0x4f, 0x53, 0x55,\n    0x55, 0x53, 0x50, 0x4d, 0x4b, 0x4c, 0x4e, 0x4f, 0x4f, 0x52, 0x55, 0x57, 0x58, 0x58, 0x58, 0x59,\n    0x53, 0x50, 0x4e, 0x4f, 0x52, 0x54, 0x53, 0x52, 0x53, 0x52, 0x51, 0x51, 0x52, 0x53, 0x54, 0x54,\n    0x54, 0x53, 0x54, 0x55, 0x53, 0x53, 0x58, 0x5d, 0x5f, 0x65, 0x6d, 0x72, 0x71, 0x6f, 0x71, 0x76,\n    0x82, 0x7a, 0x72, 0x69, 0x63, 0x6e, 0x7e, 0x83, 0x72, 0x68, 0x60, 0x5a, 0x4e, 0x3c, 0x33, 0x34,\n    0x38, 0x3b, 0x38, 0x30, 0x2c, 0x2d, 0x2f, 0x2d, 0x2a, 0x2d, 0x2f, 0x2e, 0x2e, 0x31, 0x35, 0x38,\n    0x30, 0x3c, 0x4c, 0x58, 0x5b, 0x5b, 0x5c, 0x5e, 0x60, 0x63, 0x69, 0x69, 0x5e, 0x4d, 0x45, 0x45,\n    0x54, 0x61, 0x63, 0x4c, 0x3c, 0x4f, 0x6e, 0x7a, 0x71, 0x74, 0x87, 0x9d, 0x9e, 0x8e, 0x75, 0x61,\n    0x5b, 0x5a, 0x54, 0x4a, 0x43, 0x47, 0x55, 0x62, 0x5f, 0x54, 0x46, 0x3c, 0x36, 0x35, 0x3a, 0x3f,\n    0x43, 0x46, 0x47, 0x45, 0x48, 0x4f, 0x51, 0x4e, 0x4d, 0x50, 0x57, 0x61, 0x67, 0x66, 0x61, 0x5d,\n    0x5b, 0x5f, 0x64, 0x65, 0x5f, 0x5a, 0x5d, 0x64, 0x6e, 0x6c, 0x6b, 0x6a, 0x6b, 0x6d, 0x70, 0x71,\n    0x63, 0x63, 0x61, 0x64, 0x73, 0x83, 0x84, 0x7b, 0x62, 0x63, 0x66, 0x6a, 0x6e, 0x72, 0x7a, 0x82,\n    0x80, 0x82, 0x7d, 0x72, 0x6d, 0x6c, 0x65, 0x5a, 0x57, 0x59, 0x5b, 0x5d, 0x60, 0x66, 0x6c, 0x71,\n    0x76, 0x78, 0x76, 0x6f, 0x6a, 0x6e, 0x74, 0x78, 0x6a, 0x68, 0x67, 0x69, 0x68, 0x63, 0x5f, 0x5d,\n    0x57, 0x5a, 0x5b, 0x57, 0x52, 0x4e, 0x4c, 0x4b, 0x55, 0x54, 0x50, 0x4b, 0x44, 0x3f, 0x3e, 0x3e,\n    0x3c, 0x3e, 0x3d, 0x3c, 0x3e, 0x42, 0x45, 0x45, 0x41, 0x42, 0x41, 0x3f, 0x3c, 0x3a, 0x3b, 0x3c,\n    0x3c, 0x3c, 0x3c, 0x3b, 0x37, 0x33, 0x33, 0x35, 0x3b, 0x41, 0x45, 0x44, 0x43, 0x46, 0x4a, 0x4c,\n    0x4b, 0x4a, 0x47, 0x42, 0x3e, 0x3c, 0x3d, 0x3f, 0x3d, 0x40, 0x45, 0x48, 0x48, 0x48, 0x48, 0x49,\n    0x53, 0x62, 0x71, 0x77, 0x7c, 0x81, 0x82, 0x7f, 0x83, 0x85, 0x88, 0x8b, 0x8e, 0x91, 0x94, 0x96,\n    0x90, 0x8d, 0x8b, 0x8b, 0x8a, 0x89, 0x8b, 0x8f, 0x91, 0x90, 0x90, 0x92, 0x96, 0x9a, 0x9d, 0x9e,\n    0x9b, 0x9d, 0x9f, 0xa0, 0xa0, 0x9f, 0x9f, 0x9f, 0xa1, 0xa3, 0xa6, 0xa9, 0xab, 0xaa, 0xa9, 0xa8,\n    0xaa, 0xaa, 0xa9, 0xa7, 0xa6, 0xa5, 0xa6, 0xa7, 0xa4, 0xa8, 0xa9, 0xa5, 0xa2, 0xa2, 0xa2, 0xa1,\n    0xa6, 0xa8, 0xa9, 0xa6, 0xa1, 0x9e, 0x9d, 0x9e, 0xa1, 0xa3, 0xa6, 0xa8, 0xa9, 0xa9, 0xaa, 0xaa,\n    0x9e, 0x9c, 0x9f, 0xa4, 0xa2, 0x99, 0x93, 0x92, 0x8d, 0x94, 0x9a, 0x99, 0x96, 0x95, 0x96, 0x96,\n    0x97, 0x95, 0x90, 0x8c, 0x8b, 0x8d, 0x8c, 0x88, 0x80, 0x79, 0x78, 0x81, 0x8a, 0x89, 0x84, 0x80,\n    0x7c, 0x7d, 0x7d, 0x7c, 0x7a, 0x79, 0x7a, 0x7c, 0x78, 0x77, 0x76, 0x75, 0x75, 0x75, 0x76, 0x77,\n    0x73, 0x73, 0x73, 0x73, 0x72, 0x71, 0x6f, 0x6e, 0x6b, 0x69, 0x66, 0x64, 0x61, 0x5f, 0x5c, 0x5a,\n    0x58, 0x54, 0x51, 0x50, 0x4c, 0x4a, 0x52, 0x5d, 0x7e, 0xa7, 0xc1, 0xc1, 0xc1, 0xbf, 0xb5, 0xad,\n    0x91, 0x79, 0x72, 0x6d, 0x69, 0x68, 0x60, 0x5f, 0x54, 0x54, 0x51, 0x4a, 0x41, 0x3c, 0x3c, 0x3f,\n    0x43, 0x47, 0x4d, 0x52, 0x55, 0x57, 0x59, 0x5b, 0x5e, 0x5b, 0x58, 0x56, 0x56, 0x58, 0x60, 0x68,\n    0x6b, 0x6d, 0x6d, 0x64, 0x59, 0x57, 0x61, 0x6c, 0x6b, 0x69, 0x66, 0x61, 0x5c, 0x59, 0x58, 0x58,\n    0x50, 0x4f, 0x4d, 0x4a, 0x4b, 0x4f, 0x57, 0x5d, 0x65, 0x70, 0x79, 0x7b, 0x7d, 0x80, 0x7d, 0x75,\n    0x6f, 0x6f, 0x6c, 0x64, 0x5c, 0x58, 0x5a, 0x5d, 0x65, 0x66, 0x65, 0x67, 0x6f, 0x76, 0x74, 0x6d,\n    0x6e, 0x6f, 0x6f, 0x6b, 0x63, 0x5f, 0x65, 0x6d, 0x83, 0x81, 0x7b, 0x6c, 0x6b, 0x87, 0x99, 0x90,\n    0x64, 0x67, 0x76, 0x80, 0x66, 0x34, 0x20, 0x30, 0x3b, 0x3d, 0x3a, 0x36, 0x3a, 0x48, 0x51, 0x52,\n    0x55, 0x4b, 0x40, 0x39, 0x34, 0x30, 0x2f, 0x30, 0x2b, 0x34, 0x3a, 0x38, 0x35, 0x33, 0x2e, 0x28,\n    0x2b, 0x1f, 0x12, 0x0c, 0x0a, 0x09, 0x0a, 0x0c, 0x0f, 0x13, 0x16, 0x16, 0x14, 0x11, 0x0f, 0x0f,\n    0x13, 0x16, 0x19, 0x17, 0x17, 0x24, 0x40, 0x58, 0x78, 0x74, 0x67, 0x54, 0x44, 0x3b, 0x32, 0x2b,\n    0x2e, 0x2d, 0x38, 0x49, 0x4a, 0x3f, 0x40, 0x4d, 0x4b, 0x49, 0x43, 0x3a, 0x32, 0x36, 0x48, 0x5c,\n    0x6e, 0x71, 0x6d, 0x5f, 0x51, 0x48, 0x3e, 0x35, 0x2d, 0x2b, 0x2a, 0x2c, 0x2e, 0x2f, 0x2d, 0x2b,\n    0x37, 0x37, 0x37, 0x37, 0x33, 0x30, 0x31, 0x35, 0x37, 0x39, 0x3d, 0x42, 0x47, 0x4c, 0x51, 0x53,\n    0x54, 0x52, 0x50, 0x4e, 0x4d, 0x4d, 0x4e, 0x4f, 0x4f, 0x51, 0x53, 0x54, 0x54, 0x55, 0x56, 0x57,\n    0x53, 0x4e, 0x4a, 0x4b, 0x4f, 0x52, 0x51, 0x4f, 0x4e, 0x4d, 0x4d, 0x4f, 0x51, 0x52, 0x52, 0x51,\n    0x50, 0x51, 0x52, 0x54, 0x53, 0x51, 0x54, 0x58, 0x63, 0x68, 0x72, 0x7b, 0x7e, 0x7d, 0x7d, 0x7e,\n    0x7b, 0x75, 0x71, 0x6e, 0x6c, 0x71, 0x74, 0x6f, 0x6f, 0x6c, 0x6a, 0x63, 0x51, 0x39, 0x2d, 0x2d,\n    0x2f, 0x30, 0x31, 0x2f, 0x2b, 0x28, 0x28, 0x29, 0x29, 0x2c, 0x2f, 0x2e, 0x2e, 0x33, 0x3e, 0x47,\n    0x49, 0x58, 0x6b, 0x73, 0x6f, 0x65, 0x5c, 0x57, 0x54, 0x5b, 0x64, 0x67, 0x5d, 0x51, 0x4f, 0x55,\n    0x5c, 0x5c, 0x55, 0x3f, 0x30, 0x3b, 0x4f, 0x55, 0x67, 0x72, 0x86, 0x96, 0x9e, 0xa1, 0x92, 0x7a,\n    0x73, 0x6b, 0x5f, 0x50, 0x42, 0x41, 0x50, 0x63, 0x62, 0x57, 0x4a, 0x40, 0x3a, 0x38, 0x3b, 0x3f,\n    0x3e, 0x42, 0x46, 0x4a, 0x54, 0x62, 0x69, 0x69, 0x62, 0x5d, 0x57, 0x54, 0x57, 0x5c, 0x60, 0x62,\n    0x57, 0x5a, 0x5e, 0x5e, 0x5d, 0x5f, 0x6a, 0x76, 0x74, 0x70, 0x6a, 0x65, 0x63, 0x65, 0x68, 0x6a,\n    0x59, 0x5b, 0x5c, 0x61, 0x71, 0x81, 0x83, 0x7c, 0x6b, 0x6c, 0x6f, 0x71, 0x71, 0x72, 0x77, 0x7e,\n    0x81, 0x85, 0x7f, 0x70, 0x68, 0x6f, 0x7a, 0x7f, 0x78, 0x75, 0x6e, 0x68, 0x65, 0x6b, 0x75, 0x7e,\n    0x7a, 0x78, 0x71, 0x69, 0x68, 0x6e, 0x77, 0x7c, 0x6c, 0x68, 0x64, 0x63, 0x61, 0x5c, 0x5a, 0x5a,\n    0x59, 0x60, 0x61, 0x5c, 0x5b, 0x5f, 0x5c, 0x56, 0x55, 0x54, 0x50, 0x49, 0x42, 0x3e, 0x3d, 0x3e,\n    0x3c, 0x3d, 0x3c, 0x3b, 0x3c, 0x3f, 0x41, 0x41, 0x40, 0x3f, 0x3e, 0x3c, 0x3b, 0x3b, 0x3b, 0x3c,\n    0x3e, 0x41, 0x47, 0x4d, 0x4e, 0x48, 0x43, 0x41, 0x40, 0x43, 0x43, 0x40, 0x3e, 0x41, 0x44, 0x45,\n    0x48, 0x47, 0x45, 0x40, 0x3c, 0x3c, 0x3f, 0x42, 0x43, 0x44, 0x48, 0x4b, 0x49, 0x47, 0x4c, 0x55,\n    0x65, 0x6f, 0x78, 0x7a, 0x7b, 0x80, 0x82, 0x81, 0x84, 0x85, 0x87, 0x8b, 0x8f, 0x93, 0x94, 0x95,\n    0x8e, 0x8d, 0x8c, 0x8b, 0x8a, 0x8a, 0x8d, 0x93, 0x92, 0x92, 0x92, 0x94, 0x98, 0x9c, 0x9f, 0xa0,\n    0x9d, 0xa0, 0xa3, 0xa4, 0xa3, 0xa1, 0xa0, 0xa0, 0xa4, 0xa5, 0xa6, 0xa8, 0xa9, 0xa9, 0xaa, 0xaa,\n    0xac, 0xab, 0xaa, 0xa9, 0xa8, 0xa8, 0xab, 0xad, 0xaa, 0xac, 0xac, 0xaa, 0xa9, 0xab, 0xac, 0xaa,\n    0xac, 0xac, 0xaa, 0xa6, 0xa3, 0xa3, 0xa5, 0xa8, 0xa8, 0xa8, 0xa9, 0xac, 0xae, 0xb0, 0xb0, 0xaf,\n    0xa0, 0x9d, 0x9e, 0xa4, 0xa5, 0x9d, 0x96, 0x93, 0x93, 0x99, 0x9e, 0x9c, 0x98, 0x96, 0x95, 0x93,\n    0x90, 0x90, 0x8e, 0x8d, 0x8d, 0x8d, 0x8a, 0x85, 0x7b, 0x7c, 0x80, 0x86, 0x8b, 0x8c, 0x88, 0x84,\n    0x7f, 0x7e, 0x7d, 0x7c, 0x7b, 0x7c, 0x7e, 0x80, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x77, 0x77, 0x78,\n    0x76, 0x76, 0x76, 0x75, 0x74, 0x73, 0x72, 0x71, 0x6c, 0x6b, 0x6a, 0x69, 0x68, 0x65, 0x61, 0x5e,\n    0x5e, 0x5a, 0x57, 0x55, 0x50, 0x4c, 0x50, 0x57, 0x5e, 0x82, 0xad, 0xc2, 0xc2, 0xbc, 0xb2, 0xa5,\n    0x82, 0x6a, 0x64, 0x63, 0x62, 0x63, 0x60, 0x65, 0x60, 0x5c, 0x52, 0x45, 0x39, 0x35, 0x39, 0x3e,\n    0x41, 0x44, 0x48, 0x4c, 0x4f, 0x53, 0x56, 0x58, 0x62, 0x5f, 0x5b, 0x58, 0x56, 0x56, 0x5c, 0x62,\n    0x61, 0x64, 0x63, 0x5a, 0x4f, 0x4c, 0x54, 0x5d, 0x60, 0x61, 0x63, 0x65, 0x66, 0x67, 0x6a, 0x6b,\n    0x66, 0x67, 0x67, 0x68, 0x68, 0x68, 0x68, 0x68, 0x6d, 0x6f, 0x70, 0x71, 0x77, 0x7d, 0x7c, 0x76,\n    0x76, 0x76, 0x73, 0x6e, 0x67, 0x62, 0x60, 0x60, 0x61, 0x5d, 0x5a, 0x5a, 0x5f, 0x66, 0x6d, 0x71,\n    0x6e, 0x72, 0x79, 0x7d, 0x7b, 0x78, 0x79, 0x7c, 0x77, 0x84, 0x8b, 0x83, 0x80, 0x8a, 0x86, 0x70,\n    0x67, 0x6f, 0x73, 0x62, 0x47, 0x38, 0x34, 0x2f, 0x2c, 0x34, 0x38, 0x33, 0x2b, 0x2b, 0x38, 0x45,\n    0x45, 0x41, 0x3d, 0x3a, 0x35, 0x2f, 0x2b, 0x2b, 0x33, 0x2f, 0x2d, 0x2d, 0x2c, 0x2b, 0x2b, 0x2d,\n    0x1e, 0x13, 0x0d, 0x0f, 0x13, 0x12, 0x12, 0x14, 0x10, 0x12, 0x15, 0x16, 0x15, 0x15, 0x17, 0x19,\n    0x18, 0x17, 0x18, 0x23, 0x39, 0x55, 0x69, 0x72, 0x76, 0x67, 0x50, 0x38, 0x27, 0x23, 0x2e, 0x3b,\n    0x4a, 0x4d, 0x45, 0x36, 0x35, 0x43, 0x4c, 0x4a, 0x4d, 0x45, 0x38, 0x2e, 0x30, 0x40, 0x53, 0x5e,\n    0x52, 0x52, 0x53, 0x54, 0x52, 0x4b, 0x41, 0x3a, 0x37, 0x3b, 0x3b, 0x34, 0x2c, 0x2f, 0x3d, 0x4a,\n    0x40, 0x3e, 0x3e, 0x3d, 0x3a, 0x37, 0x37, 0x39, 0x38, 0x3a, 0x3d, 0x42, 0x46, 0x49, 0x4b, 0x4d,\n    0x4f, 0x4e, 0x4d, 0x4c, 0x4c, 0x4c, 0x4d, 0x4d, 0x50, 0x51, 0x52, 0x51, 0x51, 0x51, 0x52, 0x53,\n    0x54, 0x4f, 0x49, 0x49, 0x4d, 0x50, 0x50, 0x4e, 0x4b, 0x4b, 0x4b, 0x4c, 0x4f, 0x51, 0x51, 0x51,\n    0x4f, 0x4f, 0x50, 0x52, 0x51, 0x50, 0x52, 0x55, 0x61, 0x65, 0x68, 0x6e, 0x79, 0x83, 0x81, 0x79,\n    0x74, 0x76, 0x7d, 0x7c, 0x75, 0x74, 0x74, 0x6e, 0x76, 0x77, 0x77, 0x6f, 0x59, 0x40, 0x34, 0x35,\n    0x37, 0x35, 0x36, 0x37, 0x34, 0x2f, 0x2c, 0x2d, 0x31, 0x2d, 0x2c, 0x32, 0x3d, 0x47, 0x51, 0x57,\n    0x5c, 0x66, 0x71, 0x76, 0x78, 0x76, 0x73, 0x71, 0x65, 0x5f, 0x5b, 0x5a, 0x56, 0x51, 0x51, 0x54,\n    0x54, 0x48, 0x3c, 0x34, 0x35, 0x44, 0x4d, 0x49, 0x4e, 0x5d, 0x6f, 0x78, 0x7e, 0x8a, 0x8a, 0x7d,\n    0x76, 0x6f, 0x67, 0x5f, 0x51, 0x46, 0x49, 0x55, 0x5b, 0x51, 0x45, 0x3e, 0x3b, 0x3b, 0x3d, 0x40,\n    0x45, 0x44, 0x42, 0x42, 0x48, 0x52, 0x58, 0x58, 0x5e, 0x60, 0x62, 0x63, 0x65, 0x66, 0x62, 0x5e,\n    0x56, 0x5b, 0x60, 0x64, 0x66, 0x69, 0x6f, 0x74, 0x70, 0x6b, 0x65, 0x5f, 0x5d, 0x5e, 0x61, 0x63,\n    0x61, 0x62, 0x63, 0x66, 0x71, 0x7b, 0x7b, 0x74, 0x6d, 0x74, 0x7e, 0x86, 0x87, 0x81, 0x7b, 0x77,\n    0x74, 0x77, 0x76, 0x72, 0x75, 0x80, 0x88, 0x89, 0x89, 0x86, 0x7e, 0x74, 0x6e, 0x6f, 0x76, 0x7d,\n    0x77, 0x72, 0x6d, 0x6b, 0x6d, 0x6f, 0x6c, 0x67, 0x64, 0x60, 0x5e, 0x5d, 0x5c, 0x59, 0x59, 0x5b,\n    0x57, 0x5b, 0x5e, 0x5f, 0x62, 0x64, 0x60, 0x59, 0x56, 0x55, 0x52, 0x4b, 0x43, 0x3f, 0x40, 0x41,\n    0x3f, 0x40, 0x40, 0x3f, 0x40, 0x43, 0x45, 0x44, 0x44, 0x42, 0x40, 0x3d, 0x3b, 0x39, 0x36, 0x34,\n    0x37, 0x38, 0x3c, 0x44, 0x4a, 0x4d, 0x50, 0x52, 0x4c, 0x4b, 0x46, 0x3f, 0x3c, 0x3d, 0x3d, 0x3c,\n    0x41, 0x3f, 0x3c, 0x36, 0x32, 0x32, 0x35, 0x39, 0x42, 0x40, 0x43, 0x46, 0x43, 0x40, 0x4b, 0x5b,\n    0x6c, 0x73, 0x78, 0x79, 0x7b, 0x80, 0x83, 0x84, 0x89, 0x88, 0x89, 0x8c, 0x90, 0x92, 0x91, 0x8f,\n    0x8d, 0x8d, 0x8d, 0x8d, 0x8b, 0x8b, 0x90, 0x97, 0x95, 0x95, 0x95, 0x96, 0x9a, 0x9d, 0x9e, 0x9f,\n    0xa2, 0xa3, 0xa3, 0xa1, 0x9f, 0xa0, 0xa4, 0xa7, 0xa4, 0xa3, 0xa3, 0xa3, 0xa5, 0xa8, 0xac, 0xae,\n    0xac, 0xac, 0xab, 0xaa, 0xa9, 0xab, 0xae, 0xb1, 0xb0, 0xb0, 0xaf, 0xad, 0xaf, 0xb2, 0xb3, 0xb0,\n    0xae, 0xad, 0xab, 0xa8, 0xa7, 0xa8, 0xab, 0xae, 0xad, 0xad, 0xae, 0xb1, 0xb4, 0xb5, 0xb3, 0xb0,\n    0xa3, 0xa2, 0xa3, 0xa7, 0xa7, 0xa1, 0x9b, 0x98, 0x97, 0x9c, 0x9f, 0x9d, 0x99, 0x96, 0x93, 0x90,\n    0x8c, 0x8d, 0x8d, 0x8d, 0x8d, 0x8d, 0x88, 0x82, 0x7c, 0x82, 0x88, 0x89, 0x89, 0x8a, 0x88, 0x85,\n    0x82, 0x81, 0x7f, 0x7d, 0x7d, 0x7f, 0x81, 0x83, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x79, 0x78, 0x77, 0x76, 0x75, 0x74, 0x73, 0x73, 0x6c, 0x6b, 0x6b, 0x6b, 0x6b, 0x6a, 0x68, 0x66,\n    0x64, 0x60, 0x5d, 0x5a, 0x55, 0x50, 0x50, 0x54, 0x54, 0x66, 0x90, 0xaf, 0xaf, 0xac, 0xa4, 0x92,\n    0x79, 0x62, 0x60, 0x62, 0x60, 0x5d, 0x59, 0x5e, 0x59, 0x53, 0x48, 0x3e, 0x38, 0x36, 0x37, 0x39,\n    0x3d, 0x43, 0x49, 0x4e, 0x51, 0x53, 0x53, 0x51, 0x58, 0x59, 0x5b, 0x5e, 0x5c, 0x5a, 0x5c, 0x5f,\n    0x62, 0x65, 0x63, 0x59, 0x50, 0x4f, 0x56, 0x5d, 0x68, 0x69, 0x68, 0x66, 0x62, 0x5e, 0x5c, 0x5b,\n    0x63, 0x65, 0x68, 0x6d, 0x70, 0x72, 0x71, 0x70, 0x6a, 0x67, 0x65, 0x68, 0x72, 0x7c, 0x82, 0x82,\n    0x80, 0x7a, 0x73, 0x6f, 0x6e, 0x6e, 0x6d, 0x6b, 0x6b, 0x66, 0x62, 0x60, 0x5c, 0x5a, 0x5d, 0x62,\n    0x64, 0x68, 0x6f, 0x73, 0x71, 0x6f, 0x72, 0x77, 0x78, 0x82, 0x81, 0x75, 0x74, 0x81, 0x7f, 0x6f,\n    0x67, 0x5c, 0x6b, 0x85, 0x83, 0x6e, 0x55, 0x3f, 0x46, 0x38, 0x2e, 0x2d, 0x2d, 0x28, 0x24, 0x24,\n    0x2e, 0x30, 0x32, 0x33, 0x2f, 0x2a, 0x25, 0x22, 0x25, 0x25, 0x27, 0x28, 0x25, 0x1d, 0x17, 0x15,\n    0x11, 0x12, 0x13, 0x11, 0x0f, 0x10, 0x14, 0x17, 0x17, 0x1a, 0x1f, 0x23, 0x22, 0x1e, 0x1d, 0x1e,\n    0x25, 0x33, 0x41, 0x47, 0x4e, 0x5c, 0x6a, 0x71, 0x5d, 0x49, 0x33, 0x2f, 0x3a, 0x48, 0x4e, 0x4f,\n    0x4d, 0x51, 0x5a, 0x60, 0x5a, 0x4d, 0x42, 0x3e, 0x39, 0x3d, 0x3e, 0x3e, 0x48, 0x59, 0x63, 0x62,\n    0x5d, 0x52, 0x49, 0x47, 0x44, 0x3d, 0x36, 0x33, 0x2e, 0x30, 0x31, 0x33, 0x3a, 0x4a, 0x5e, 0x6c,\n    0x40, 0x3c, 0x3a, 0x3a, 0x3b, 0x38, 0x37, 0x37, 0x33, 0x36, 0x3b, 0x40, 0x45, 0x48, 0x49, 0x4a,\n    0x4b, 0x4b, 0x4a, 0x4a, 0x4b, 0x4b, 0x4c, 0x4d, 0x53, 0x53, 0x53, 0x52, 0x50, 0x50, 0x51, 0x52,\n    0x51, 0x4c, 0x48, 0x48, 0x4c, 0x50, 0x51, 0x50, 0x4d, 0x4c, 0x4b, 0x4b, 0x4d, 0x4e, 0x4f, 0x4e,\n    0x52, 0x50, 0x4f, 0x50, 0x4f, 0x4e, 0x4f, 0x52, 0x57, 0x5c, 0x5c, 0x5f, 0x73, 0x89, 0x85, 0x72,\n    0x6c, 0x70, 0x79, 0x7a, 0x74, 0x73, 0x74, 0x6e, 0x6d, 0x71, 0x76, 0x71, 0x5d, 0x45, 0x37, 0x33,\n    0x35, 0x34, 0x35, 0x38, 0x38, 0x34, 0x32, 0x32, 0x37, 0x31, 0x2f, 0x38, 0x45, 0x4f, 0x56, 0x5a,\n    0x65, 0x67, 0x69, 0x6b, 0x71, 0x77, 0x78, 0x74, 0x6a, 0x5d, 0x50, 0x4c, 0x4b, 0x4a, 0x4b, 0x4f,\n    0x4b, 0x46, 0x42, 0x3e, 0x3e, 0x48, 0x51, 0x50, 0x47, 0x4e, 0x5c, 0x67, 0x6c, 0x74, 0x73, 0x68,\n    0x63, 0x5d, 0x5b, 0x5e, 0x5a, 0x51, 0x4d, 0x51, 0x52, 0x46, 0x39, 0x33, 0x33, 0x38, 0x40, 0x46,\n    0x50, 0x4e, 0x4a, 0x47, 0x47, 0x48, 0x47, 0x45, 0x4a, 0x52, 0x5b, 0x61, 0x64, 0x63, 0x5c, 0x54,\n    0x56, 0x5c, 0x66, 0x6e, 0x72, 0x6f, 0x67, 0x5f, 0x61, 0x5e, 0x5b, 0x59, 0x58, 0x5a, 0x5c, 0x5e,\n    0x5d, 0x5d, 0x5b, 0x5b, 0x60, 0x65, 0x62, 0x5b, 0x58, 0x61, 0x71, 0x82, 0x8d, 0x8e, 0x86, 0x7d,\n    0x7b, 0x78, 0x73, 0x70, 0x74, 0x7a, 0x79, 0x74, 0x82, 0x84, 0x86, 0x82, 0x7b, 0x72, 0x6d, 0x6b,\n    0x6b, 0x6d, 0x72, 0x74, 0x72, 0x6b, 0x64, 0x5f, 0x5e, 0x5c, 0x5c, 0x5d, 0x5c, 0x5b, 0x5b, 0x5e,\n    0x5e, 0x5c, 0x5f, 0x65, 0x66, 0x60, 0x58, 0x55, 0x55, 0x56, 0x55, 0x4f, 0x48, 0x43, 0x44, 0x46,\n    0x41, 0x43, 0x44, 0x43, 0x44, 0x48, 0x4a, 0x49, 0x44, 0x45, 0x46, 0x47, 0x48, 0x48, 0x45, 0x44,\n    0x3b, 0x35, 0x31, 0x31, 0x36, 0x3d, 0x47, 0x4e, 0x51, 0x4e, 0x48, 0x42, 0x41, 0x43, 0x42, 0x3f,\n    0x41, 0x3f, 0x3a, 0x34, 0x30, 0x31, 0x35, 0x39, 0x42, 0x40, 0x41, 0x44, 0x42, 0x42, 0x51, 0x63,\n    0x70, 0x75, 0x7a, 0x7c, 0x7e, 0x82, 0x86, 0x87, 0x8c, 0x8b, 0x8c, 0x8e, 0x90, 0x90, 0x8e, 0x8b,\n    0x8d, 0x8d, 0x8e, 0x8f, 0x8e, 0x8e, 0x93, 0x99, 0x98, 0x97, 0x97, 0x99, 0x9c, 0x9f, 0xa0, 0xa1,\n    0xa3, 0xa2, 0xa0, 0x9d, 0x9b, 0x9d, 0xa2, 0xa6, 0x9f, 0x9f, 0xa1, 0xa3, 0xa6, 0xaa, 0xad, 0xae,\n    0xaa, 0xaa, 0xa9, 0xa9, 0xa9, 0xab, 0xaf, 0xb2, 0xb3, 0xb2, 0xb0, 0xae, 0xb1, 0xb4, 0xb4, 0xb1,\n    0xb0, 0xb0, 0xaf, 0xae, 0xad, 0xae, 0xb0, 0xb2, 0xb0, 0xb1, 0xb3, 0xb6, 0xb9, 0xb7, 0xb3, 0xaf,\n    0xa9, 0xaa, 0xad, 0xae, 0xab, 0xa6, 0xa3, 0xa3, 0x9e, 0xa1, 0xa2, 0xa0, 0x9d, 0x9b, 0x97, 0x92,\n    0x90, 0x91, 0x90, 0x8e, 0x8f, 0x8f, 0x8b, 0x86, 0x81, 0x87, 0x8a, 0x89, 0x87, 0x87, 0x87, 0x86,\n    0x85, 0x83, 0x82, 0x81, 0x81, 0x82, 0x83, 0x84, 0x7f, 0x7f, 0x7e, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c,\n    0x7b, 0x7a, 0x78, 0x76, 0x75, 0x74, 0x74, 0x74, 0x70, 0x6e, 0x6c, 0x6b, 0x6c, 0x6d, 0x6d, 0x6d,\n    0x67, 0x64, 0x61, 0x5e, 0x5a, 0x56, 0x54, 0x54, 0x5b, 0x5a, 0x73, 0x8c, 0x92, 0x9b, 0x9a, 0x84,\n    0x70, 0x5c, 0x5b, 0x5b, 0x56, 0x52, 0x4d, 0x51, 0x4c, 0x4e, 0x4d, 0x49, 0x41, 0x3c, 0x3b, 0x3d,\n    0x3d, 0x43, 0x4a, 0x4d, 0x51, 0x53, 0x50, 0x4c, 0x4c, 0x4f, 0x55, 0x5a, 0x5b, 0x59, 0x59, 0x5c,\n    0x5e, 0x61, 0x5e, 0x55, 0x4e, 0x50, 0x58, 0x5d, 0x64, 0x65, 0x64, 0x61, 0x5c, 0x57, 0x53, 0x52,\n    0x57, 0x58, 0x59, 0x5b, 0x5e, 0x60, 0x5f, 0x5f, 0x5c, 0x5a, 0x5a, 0x5e, 0x63, 0x68, 0x6b, 0x6d,\n    0x71, 0x6c, 0x69, 0x6e, 0x77, 0x7c, 0x78, 0x72, 0x75, 0x73, 0x71, 0x6d, 0x63, 0x56, 0x4f, 0x4e,\n    0x4d, 0x53, 0x5b, 0x5f, 0x5d, 0x5d, 0x64, 0x6c, 0x7b, 0x78, 0x6b, 0x64, 0x75, 0x8c, 0x8e, 0x84,\n    0x77, 0x6a, 0x78, 0x98, 0xa8, 0xa4, 0x93, 0x7d, 0x66, 0x50, 0x3b, 0x2e, 0x23, 0x19, 0x18, 0x1f,\n    0x1f, 0x23, 0x26, 0x27, 0x25, 0x22, 0x1d, 0x1a, 0x16, 0x1c, 0x20, 0x1f, 0x1d, 0x1e, 0x1f, 0x20,\n    0x1b, 0x16, 0x10, 0x13, 0x25, 0x39, 0x40, 0x3b, 0x30, 0x29, 0x20, 0x1b, 0x1b, 0x21, 0x2e, 0x3a,\n    0x55, 0x4e, 0x47, 0x4b, 0x59, 0x62, 0x59, 0x48, 0x38, 0x47, 0x52, 0x50, 0x4e, 0x57, 0x65, 0x6d,\n    0x71, 0x69, 0x5b, 0x4d, 0x44, 0x41, 0x3c, 0x38, 0x43, 0x4c, 0x4e, 0x46, 0x43, 0x45, 0x44, 0x3e,\n    0x44, 0x3a, 0x34, 0x37, 0x39, 0x34, 0x30, 0x30, 0x2b, 0x25, 0x23, 0x2f, 0x40, 0x49, 0x43, 0x3a,\n    0x39, 0x35, 0x32, 0x34, 0x36, 0x35, 0x33, 0x32, 0x2f, 0x32, 0x37, 0x3d, 0x42, 0x45, 0x47, 0x48,\n    0x47, 0x47, 0x47, 0x47, 0x48, 0x49, 0x4b, 0x4c, 0x4e, 0x4e, 0x4e, 0x4d, 0x4b, 0x4a, 0x4b, 0x4c,\n    0x48, 0x46, 0x44, 0x45, 0x49, 0x4d, 0x50, 0x51, 0x4d, 0x4c, 0x4b, 0x4b, 0x4b, 0x4b, 0x4a, 0x49,\n    0x4f, 0x4d, 0x4b, 0x4b, 0x4b, 0x49, 0x4a, 0x4d, 0x53, 0x5e, 0x65, 0x6b, 0x82, 0x9a, 0x98, 0x85,\n    0x6a, 0x67, 0x69, 0x6d, 0x71, 0x7a, 0x7e, 0x77, 0x76, 0x75, 0x72, 0x6a, 0x5a, 0x47, 0x3a, 0x35,\n    0x39, 0x3d, 0x40, 0x3e, 0x39, 0x34, 0x32, 0x31, 0x34, 0x33, 0x38, 0x40, 0x47, 0x4d, 0x57, 0x62,\n    0x6c, 0x6c, 0x6a, 0x6a, 0x6f, 0x72, 0x6b, 0x61, 0x59, 0x52, 0x4c, 0x4a, 0x48, 0x47, 0x4d, 0x54,\n    0x4e, 0x4c, 0x4a, 0x43, 0x3d, 0x43, 0x47, 0x42, 0x43, 0x42, 0x4d, 0x62, 0x74, 0x7d, 0x76, 0x64,\n    0x5a, 0x51, 0x4c, 0x4f, 0x54, 0x55, 0x55, 0x56, 0x46, 0x3e, 0x36, 0x35, 0x39, 0x3d, 0x41, 0x45,\n    0x46, 0x49, 0x4f, 0x53, 0x56, 0x56, 0x55, 0x53, 0x53, 0x5a, 0x5f, 0x60, 0x60, 0x60, 0x5b, 0x54,\n    0x53, 0x56, 0x5b, 0x62, 0x69, 0x6b, 0x65, 0x5d, 0x5d, 0x5b, 0x5a, 0x58, 0x57, 0x57, 0x57, 0x57,\n    0x50, 0x4f, 0x4c, 0x4b, 0x4c, 0x4e, 0x4a, 0x45, 0x46, 0x4c, 0x58, 0x68, 0x7b, 0x87, 0x87, 0x82,\n    0x82, 0x81, 0x7b, 0x73, 0x70, 0x71, 0x72, 0x70, 0x7f, 0x86, 0x8f, 0x92, 0x8c, 0x7d, 0x6e, 0x63,\n    0x6f, 0x79, 0x83, 0x81, 0x73, 0x65, 0x62, 0x66, 0x5e, 0x5d, 0x5d, 0x5d, 0x5c, 0x59, 0x5a, 0x5d,\n    0x62, 0x5e, 0x5f, 0x65, 0x63, 0x59, 0x51, 0x50, 0x4e, 0x51, 0x52, 0x4f, 0x48, 0x43, 0x43, 0x45,\n    0x41, 0x43, 0x44, 0x44, 0x46, 0x4a, 0x4c, 0x4b, 0x45, 0x48, 0x4e, 0x54, 0x5a, 0x5e, 0x60, 0x61,\n    0x55, 0x53, 0x54, 0x55, 0x53, 0x4f, 0x4d, 0x4e, 0x53, 0x4f, 0x49, 0x45, 0x47, 0x48, 0x45, 0x40,\n    0x40, 0x3e, 0x39, 0x34, 0x31, 0x33, 0x39, 0x3e, 0x44, 0x41, 0x41, 0x43, 0x45, 0x4b, 0x5a, 0x6a,\n    0x73, 0x76, 0x7a, 0x7d, 0x7f, 0x82, 0x85, 0x87, 0x8b, 0x8b, 0x8d, 0x8f, 0x90, 0x8f, 0x8c, 0x8a,\n    0x8c, 0x8c, 0x8e, 0x90, 0x91, 0x91, 0x94, 0x99, 0x98, 0x98, 0x99, 0x9c, 0x9f, 0xa2, 0xa4, 0xa4,\n    0x9f, 0x9e, 0x9c, 0x9b, 0x9b, 0x9c, 0x9d, 0x9d, 0x9a, 0x9e, 0xa3, 0xa9, 0xac, 0xac, 0xab, 0xaa,\n    0xab, 0xab, 0xac, 0xac, 0xac, 0xaf, 0xb2, 0xb5, 0xb6, 0xb6, 0xb4, 0xb3, 0xb4, 0xb7, 0xb6, 0xb3,\n    0xb3, 0xb3, 0xb3, 0xb3, 0xb4, 0xb4, 0xb5, 0xb5, 0xb2, 0xb3, 0xb6, 0xb9, 0xb9, 0xb7, 0xb3, 0xb0,\n    0xad, 0xb0, 0xb1, 0xaf, 0xab, 0xa7, 0xa7, 0xa7, 0xa3, 0xa5, 0xa4, 0xa2, 0xa0, 0x9e, 0x9a, 0x95,\n    0x93, 0x93, 0x90, 0x8f, 0x8f, 0x90, 0x8e, 0x8a, 0x86, 0x88, 0x89, 0x89, 0x88, 0x88, 0x89, 0x8a,\n    0x87, 0x86, 0x85, 0x85, 0x85, 0x85, 0x84, 0x83, 0x80, 0x80, 0x7f, 0x7f, 0x7e, 0x7d, 0x7c, 0x7c,\n    0x7c, 0x7a, 0x78, 0x76, 0x74, 0x74, 0x74, 0x74, 0x77, 0x73, 0x6f, 0x6c, 0x6c, 0x6d, 0x6f, 0x70,\n    0x69, 0x67, 0x64, 0x61, 0x5f, 0x5c, 0x59, 0x57, 0x58, 0x53, 0x65, 0x7d, 0x8f, 0xa4, 0xa2, 0x84,\n    0x66, 0x55, 0x53, 0x4f, 0x49, 0x4b, 0x49, 0x4c, 0x4c, 0x58, 0x60, 0x5b, 0x4a, 0x3d, 0x3b, 0x3f,\n    0x40, 0x45, 0x47, 0x48, 0x4c, 0x51, 0x51, 0x4d, 0x4a, 0x4b, 0x4e, 0x50, 0x50, 0x50, 0x53, 0x57,\n    0x5b, 0x5d, 0x59, 0x4e, 0x46, 0x48, 0x4c, 0x4f, 0x4e, 0x51, 0x54, 0x56, 0x56, 0x56, 0x56, 0x56,\n    0x58, 0x58, 0x57, 0x57, 0x57, 0x57, 0x58, 0x59, 0x5a, 0x5a, 0x5e, 0x64, 0x63, 0x5b, 0x54, 0x53,\n    0x54, 0x50, 0x50, 0x59, 0x68, 0x73, 0x75, 0x73, 0x73, 0x73, 0x72, 0x6d, 0x65, 0x5a, 0x50, 0x4a,\n    0x3b, 0x44, 0x50, 0x58, 0x5a, 0x5b, 0x62, 0x6b, 0x6e, 0x75, 0x74, 0x74, 0x7f, 0x85, 0x82, 0x7f,\n    0x7b, 0x8a, 0x99, 0x9d, 0x9e, 0xa0, 0x90, 0x76, 0x5d, 0x50, 0x44, 0x3d, 0x33, 0x28, 0x29, 0x31,\n    0x28, 0x27, 0x23, 0x1e, 0x1a, 0x19, 0x18, 0x16, 0x17, 0x15, 0x18, 0x26, 0x3f, 0x53, 0x57, 0x52,\n    0x46, 0x4f, 0x53, 0x4e, 0x49, 0x4c, 0x51, 0x53, 0x4a, 0x43, 0x3e, 0x3d, 0x3d, 0x40, 0x4c, 0x57,\n    0x45, 0x4c, 0x51, 0x4f, 0x4b, 0x47, 0x44, 0x41, 0x46, 0x4e, 0x54, 0x55, 0x59, 0x5d, 0x59, 0x50,\n    0x43, 0x4c, 0x47, 0x39, 0x3e, 0x4b, 0x40, 0x26, 0x26, 0x33, 0x3e, 0x3d, 0x3a, 0x3b, 0x3b, 0x37,\n    0x33, 0x31, 0x32, 0x34, 0x31, 0x28, 0x21, 0x20, 0x23, 0x26, 0x2e, 0x3b, 0x45, 0x47, 0x41, 0x39,\n    0x34, 0x31, 0x30, 0x32, 0x32, 0x31, 0x31, 0x32, 0x31, 0x31, 0x31, 0x33, 0x34, 0x36, 0x37, 0x38,\n    0x36, 0x36, 0x35, 0x35, 0x37, 0x39, 0x3b, 0x3d, 0x3a, 0x3b, 0x3c, 0x3b, 0x3b, 0x3a, 0x3b, 0x3c,\n    0x39, 0x39, 0x39, 0x39, 0x3b, 0x3e, 0x42, 0x44, 0x45, 0x46, 0x48, 0x4a, 0x4c, 0x4b, 0x49, 0x46,\n    0x46, 0x45, 0x46, 0x49, 0x4b, 0x4b, 0x4b, 0x4d, 0x5e, 0x6a, 0x76, 0x7e, 0x89, 0x94, 0x96, 0x91,\n    0x7e, 0x73, 0x6c, 0x6b, 0x70, 0x7e, 0x88, 0x85, 0x82, 0x7c, 0x73, 0x6c, 0x62, 0x54, 0x46, 0x3e,\n    0x4a, 0x57, 0x5f, 0x56, 0x46, 0x3d, 0x3a, 0x39, 0x37, 0x38, 0x3e, 0x46, 0x4a, 0x4e, 0x5a, 0x68,\n    0x65, 0x68, 0x69, 0x6a, 0x6f, 0x72, 0x6b, 0x5f, 0x4d, 0x49, 0x48, 0x4b, 0x4c, 0x4c, 0x51, 0x57,\n    0x5a, 0x57, 0x53, 0x4b, 0x4a, 0x52, 0x53, 0x47, 0x47, 0x42, 0x47, 0x59, 0x71, 0x85, 0x83, 0x71,\n    0x5e, 0x53, 0x48, 0x46, 0x4b, 0x51, 0x54, 0x53, 0x3f, 0x3a, 0x37, 0x3b, 0x3f, 0x40, 0x3f, 0x3e,\n    0x40, 0x44, 0x4b, 0x50, 0x50, 0x4e, 0x4d, 0x4e, 0x5a, 0x66, 0x71, 0x75, 0x74, 0x6f, 0x63, 0x57,\n    0x54, 0x54, 0x54, 0x58, 0x60, 0x69, 0x6a, 0x67, 0x62, 0x62, 0x61, 0x60, 0x60, 0x5f, 0x5f, 0x5f,\n    0x5d, 0x5a, 0x56, 0x53, 0x52, 0x51, 0x4d, 0x49, 0x4b, 0x4f, 0x55, 0x5f, 0x6f, 0x7c, 0x80, 0x7d,\n    0x72, 0x78, 0x7e, 0x7f, 0x7c, 0x78, 0x73, 0x6f, 0x74, 0x79, 0x81, 0x88, 0x8a, 0x84, 0x7a, 0x73,\n    0x85, 0x8b, 0x90, 0x8a, 0x78, 0x68, 0x67, 0x6e, 0x6b, 0x69, 0x67, 0x66, 0x63, 0x60, 0x61, 0x65,\n    0x65, 0x63, 0x60, 0x5d, 0x57, 0x4f, 0x48, 0x45, 0x45, 0x4a, 0x4f, 0x4e, 0x48, 0x42, 0x41, 0x42,\n    0x42, 0x44, 0x46, 0x45, 0x47, 0x4b, 0x4d, 0x4c, 0x48, 0x4b, 0x4f, 0x51, 0x52, 0x55, 0x58, 0x5b,\n    0x5a, 0x5f, 0x68, 0x6f, 0x6d, 0x65, 0x5e, 0x5c, 0x5a, 0x56, 0x4f, 0x4c, 0x4d, 0x4d, 0x47, 0x3f,\n    0x3f, 0x3c, 0x37, 0x32, 0x2f, 0x32, 0x39, 0x3f, 0x44, 0x42, 0x41, 0x42, 0x48, 0x54, 0x63, 0x6d,\n    0x75, 0x76, 0x78, 0x7c, 0x7f, 0x81, 0x85, 0x87, 0x8a, 0x8c, 0x8f, 0x90, 0x8f, 0x8c, 0x8a, 0x89,\n    0x8b, 0x8a, 0x8c, 0x90, 0x92, 0x92, 0x94, 0x96, 0x99, 0x98, 0x99, 0x9c, 0x9f, 0xa1, 0xa2, 0xa3,\n    0x9c, 0x99, 0x98, 0x99, 0x9d, 0x9f, 0x9f, 0x9d, 0xa1, 0xa4, 0xa8, 0xab, 0xad, 0xad, 0xab, 0xaa,\n    0xae, 0xaf, 0xb0, 0xb0, 0xb1, 0xb3, 0xb6, 0xb8, 0xb8, 0xb9, 0xb9, 0xb7, 0xb8, 0xb9, 0xb8, 0xb6,\n    0xb6, 0xb5, 0xb5, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb3, 0xb5, 0xb7, 0xb8, 0xb7, 0xb6, 0xb5, 0xb5,\n    0xb2, 0xb2, 0xb0, 0xad, 0xaa, 0xa9, 0xa8, 0xa7, 0xa8, 0xa8, 0xa6, 0xa3, 0xa1, 0xa0, 0x9c, 0x97,\n    0x93, 0x93, 0x92, 0x90, 0x92, 0x94, 0x92, 0x8e, 0x8e, 0x8a, 0x8a, 0x8d, 0x8e, 0x8a, 0x89, 0x8b,\n    0x89, 0x89, 0x89, 0x89, 0x8a, 0x88, 0x84, 0x81, 0x82, 0x82, 0x81, 0x80, 0x7f, 0x7e, 0x7e, 0x7d,\n    0x7d, 0x7b, 0x78, 0x76, 0x74, 0x74, 0x74, 0x75, 0x77, 0x73, 0x6f, 0x6c, 0x6c, 0x6d, 0x6f, 0x70,\n    0x6c, 0x69, 0x66, 0x63, 0x62, 0x60, 0x5c, 0x59, 0x53, 0x53, 0x5e, 0x6f, 0x89, 0xa7, 0xa1, 0x7f,\n    0x5a, 0x4f, 0x4f, 0x47, 0x43, 0x4a, 0x4b, 0x4d, 0x49, 0x52, 0x5a, 0x57, 0x4b, 0x3f, 0x3b, 0x3b,\n    0x41, 0x45, 0x46, 0x46, 0x4b, 0x53, 0x54, 0x50, 0x49, 0x48, 0x47, 0x46, 0x45, 0x44, 0x48, 0x4d,\n    0x5a, 0x5e, 0x5b, 0x50, 0x48, 0x49, 0x4a, 0x48, 0x4c, 0x4e, 0x50, 0x50, 0x4f, 0x4d, 0x4d, 0x4c,\n    0x52, 0x54, 0x56, 0x56, 0x55, 0x55, 0x57, 0x58, 0x53, 0x54, 0x5d, 0x69, 0x6b, 0x61, 0x57, 0x54,\n    0x47, 0x43, 0x41, 0x46, 0x51, 0x5f, 0x69, 0x6e, 0x72, 0x71, 0x6c, 0x67, 0x66, 0x6a, 0x68, 0x63,\n    0x5a, 0x5f, 0x66, 0x6a, 0x67, 0x62, 0x62, 0x65, 0x72, 0x7d, 0x7d, 0x77, 0x72, 0x6a, 0x6d, 0x7d,\n    0x93, 0x8a, 0x84, 0x87, 0x83, 0x71, 0x66, 0x6c, 0x5c, 0x50, 0x4f, 0x61, 0x71, 0x6d, 0x5a, 0x4b,\n    0x46, 0x3d, 0x2b, 0x1a, 0x13, 0x14, 0x16, 0x15, 0x13, 0x1a, 0x33, 0x5a, 0x76, 0x75, 0x60, 0x4d,\n    0x3d, 0x2d, 0x29, 0x3c, 0x50, 0x4d, 0x37, 0x24, 0x30, 0x36, 0x45, 0x51, 0x4e, 0x40, 0x34, 0x31,\n    0x3e, 0x3e, 0x42, 0x48, 0x4a, 0x45, 0x3e, 0x39, 0x4f, 0x58, 0x5f, 0x5b, 0x4f, 0x47, 0x47, 0x4b,\n    0x4c, 0x3f, 0x3f, 0x4b, 0x46, 0x2e, 0x20, 0x23, 0x2f, 0x38, 0x41, 0x42, 0x3f, 0x3b, 0x35, 0x2f,\n    0x2e, 0x30, 0x31, 0x30, 0x2d, 0x2d, 0x35, 0x3d, 0x41, 0x44, 0x46, 0x43, 0x3a, 0x32, 0x2e, 0x2d,\n    0x31, 0x31, 0x32, 0x32, 0x30, 0x2e, 0x30, 0x33, 0x32, 0x2f, 0x2a, 0x25, 0x21, 0x20, 0x20, 0x20,\n    0x1f, 0x1e, 0x1d, 0x1e, 0x1f, 0x22, 0x25, 0x26, 0x25, 0x26, 0x28, 0x29, 0x29, 0x29, 0x2a, 0x2b,\n    0x2a, 0x2b, 0x2b, 0x2a, 0x29, 0x2a, 0x2d, 0x30, 0x3a, 0x3d, 0x43, 0x4a, 0x4d, 0x4d, 0x4a, 0x47,\n    0x40, 0x41, 0x45, 0x4d, 0x52, 0x53, 0x54, 0x55, 0x69, 0x72, 0x7d, 0x7f, 0x78, 0x72, 0x77, 0x7f,\n    0x8d, 0x80, 0x72, 0x66, 0x60, 0x6a, 0x78, 0x7a, 0x69, 0x67, 0x67, 0x69, 0x67, 0x59, 0x45, 0x36,\n    0x4a, 0x5f, 0x6b, 0x5f, 0x49, 0x3d, 0x3b, 0x3b, 0x42, 0x3e, 0x3f, 0x46, 0x4c, 0x50, 0x59, 0x63,\n    0x6c, 0x6e, 0x6b, 0x66, 0x65, 0x66, 0x5f, 0x55, 0x4e, 0x46, 0x42, 0x47, 0x4e, 0x50, 0x51, 0x52,\n    0x58, 0x5c, 0x5e, 0x57, 0x55, 0x63, 0x6b, 0x63, 0x59, 0x53, 0x4f, 0x50, 0x5f, 0x79, 0x83, 0x78,\n    0x5b, 0x53, 0x48, 0x43, 0x46, 0x4d, 0x4e, 0x4b, 0x43, 0x3a, 0x32, 0x32, 0x35, 0x39, 0x3c, 0x3e,\n    0x45, 0x47, 0x4a, 0x4b, 0x48, 0x46, 0x49, 0x4d, 0x51, 0x59, 0x5e, 0x5e, 0x60, 0x66, 0x66, 0x61,\n    0x56, 0x5c, 0x61, 0x65, 0x6a, 0x6e, 0x6a, 0x64, 0x64, 0x65, 0x66, 0x68, 0x6c, 0x6f, 0x72, 0x73,\n    0x6b, 0x68, 0x62, 0x5d, 0x59, 0x56, 0x51, 0x4d, 0x57, 0x5c, 0x62, 0x69, 0x73, 0x7c, 0x7e, 0x7a,\n    0x78, 0x75, 0x6f, 0x6c, 0x6d, 0x71, 0x74, 0x75, 0x65, 0x67, 0x6b, 0x75, 0x82, 0x8d, 0x93, 0x95,\n    0x95, 0x93, 0x90, 0x8b, 0x81, 0x76, 0x71, 0x73, 0x7f, 0x7c, 0x79, 0x76, 0x73, 0x70, 0x72, 0x76,\n    0x7d, 0x7d, 0x74, 0x65, 0x59, 0x54, 0x4c, 0x44, 0x43, 0x4a, 0x51, 0x51, 0x4c, 0x46, 0x44, 0x44,\n    0x45, 0x47, 0x48, 0x48, 0x49, 0x4d, 0x4e, 0x4d, 0x4b, 0x4a, 0x47, 0x41, 0x3a, 0x36, 0x37, 0x39,\n    0x3f, 0x43, 0x4a, 0x51, 0x55, 0x58, 0x5e, 0x64, 0x61, 0x5d, 0x57, 0x54, 0x56, 0x56, 0x4f, 0x45,\n    0x42, 0x3f, 0x3a, 0x33, 0x31, 0x33, 0x3a, 0x40, 0x44, 0x43, 0x41, 0x42, 0x4b, 0x5b, 0x69, 0x6f,\n    0x77, 0x77, 0x78, 0x7c, 0x80, 0x84, 0x88, 0x8c, 0x8b, 0x8e, 0x91, 0x91, 0x8d, 0x89, 0x87, 0x86,\n    0x8a, 0x89, 0x8b, 0x90, 0x93, 0x93, 0x93, 0x94, 0x99, 0x99, 0x99, 0x9a, 0x9c, 0x9e, 0x9e, 0x9d,\n    0x9a, 0x97, 0x94, 0x97, 0x9e, 0xa3, 0xa6, 0xa5, 0xab, 0xab, 0xaa, 0xaa, 0xaa, 0xab, 0xac, 0xad,\n    0xad, 0xae, 0xb0, 0xb1, 0xb2, 0xb3, 0xb6, 0xb7, 0xb5, 0xb8, 0xb9, 0xb7, 0xb7, 0xb8, 0xb8, 0xb5,\n    0xb7, 0xb6, 0xb5, 0xb5, 0xb5, 0xb6, 0xb6, 0xb6, 0xb4, 0xb6, 0xb7, 0xb7, 0xb5, 0xb5, 0xb7, 0xb9,\n    0xb8, 0xb5, 0xb0, 0xad, 0xac, 0xad, 0xab, 0xa8, 0xae, 0xad, 0xa9, 0xa5, 0xa4, 0xa3, 0x9f, 0x99,\n    0x96, 0x96, 0x96, 0x95, 0x98, 0x9a, 0x97, 0x93, 0x94, 0x8d, 0x8b, 0x91, 0x92, 0x8b, 0x88, 0x8a,\n    0x8a, 0x8a, 0x8b, 0x8c, 0x8c, 0x89, 0x83, 0x7f, 0x84, 0x84, 0x83, 0x83, 0x82, 0x81, 0x7f, 0x7f,\n    0x7e, 0x7c, 0x79, 0x76, 0x74, 0x74, 0x75, 0x76, 0x72, 0x6f, 0x6c, 0x6a, 0x6b, 0x6d, 0x6f, 0x70,\n    0x6d, 0x6b, 0x67, 0x64, 0x63, 0x62, 0x5e, 0x5a, 0x5c, 0x59, 0x54, 0x54, 0x6e, 0x92, 0x91, 0x70,\n    0x4f, 0x49, 0x4c, 0x45, 0x41, 0x4b, 0x4b, 0x4a, 0x47, 0x48, 0x4c, 0x51, 0x55, 0x54, 0x4e, 0x49,\n    0x3f, 0x44, 0x47, 0x48, 0x4e, 0x56, 0x56, 0x51, 0x42, 0x41, 0x40, 0x3f, 0x3c, 0x39, 0x3b, 0x40,\n    0x49, 0x50, 0x51, 0x4a, 0x46, 0x48, 0x49, 0x46, 0x47, 0x4a, 0x4d, 0x4e, 0x4f, 0x4f, 0x50, 0x51,\n    0x4d, 0x52, 0x57, 0x58, 0x56, 0x55, 0x55, 0x57, 0x57, 0x54, 0x58, 0x63, 0x63, 0x57, 0x4b, 0x47,\n    0x49, 0x4a, 0x4b, 0x4d, 0x51, 0x58, 0x60, 0x66, 0x6a, 0x67, 0x5e, 0x57, 0x5e, 0x6f, 0x78, 0x76,\n    0x70, 0x6f, 0x71, 0x71, 0x6c, 0x65, 0x61, 0x61, 0x73, 0x78, 0x76, 0x75, 0x76, 0x6c, 0x6a, 0x7b,\n    0x82, 0x80, 0x6d, 0x63, 0x72, 0x7b, 0x71, 0x69, 0x62, 0x72, 0x8b, 0x9b, 0x98, 0x89, 0x81, 0x81,\n    0x61, 0x51, 0x35, 0x1a, 0x0f, 0x11, 0x16, 0x16, 0x1d, 0x32, 0x59, 0x7a, 0x73, 0x4f, 0x32, 0x2a,\n    0x32, 0x3b, 0x4f, 0x58, 0x44, 0x28, 0x2b, 0x41, 0x56, 0x51, 0x4f, 0x4e, 0x48, 0x3f, 0x3e, 0x43,\n    0x45, 0x48, 0x4d, 0x4b, 0x40, 0x36, 0x3b, 0x47, 0x56, 0x4f, 0x4c, 0x50, 0x4e, 0x46, 0x43, 0x47,\n    0x43, 0x42, 0x44, 0x40, 0x30, 0x20, 0x22, 0x2f, 0x37, 0x39, 0x3b, 0x3d, 0x3e, 0x3d, 0x39, 0x34,\n    0x34, 0x42, 0x50, 0x53, 0x4d, 0x49, 0x4a, 0x4d, 0x4b, 0x43, 0x3c, 0x3a, 0x3a, 0x33, 0x26, 0x1a,\n    0x39, 0x38, 0x35, 0x32, 0x30, 0x2f, 0x30, 0x32, 0x33, 0x2d, 0x27, 0x24, 0x20, 0x1c, 0x1a, 0x1b,\n    0x1a, 0x1a, 0x1a, 0x1c, 0x1e, 0x20, 0x20, 0x20, 0x22, 0x25, 0x28, 0x2a, 0x2b, 0x2b, 0x2c, 0x2c,\n    0x29, 0x2b, 0x28, 0x27, 0x2a, 0x28, 0x2a, 0x33, 0x45, 0x5c, 0x5d, 0x56, 0x4f, 0x4a, 0x4e, 0x4d,\n    0x43, 0x49, 0x52, 0x5c, 0x67, 0x6e, 0x6c, 0x66, 0x67, 0x6f, 0x74, 0x75, 0x73, 0x6b, 0x6a, 0x74,\n    0x82, 0x7d, 0x71, 0x62, 0x5b, 0x61, 0x69, 0x6e, 0x64, 0x61, 0x60, 0x63, 0x66, 0x61, 0x52, 0x44,\n    0x46, 0x56, 0x67, 0x65, 0x55, 0x4b, 0x43, 0x38, 0x37, 0x3c, 0x40, 0x43, 0x46, 0x4f, 0x5c, 0x67,\n    0x6b, 0x6c, 0x68, 0x62, 0x64, 0x69, 0x64, 0x5a, 0x4f, 0x42, 0x3b, 0x42, 0x50, 0x55, 0x51, 0x4c,\n    0x47, 0x58, 0x62, 0x60, 0x63, 0x6e, 0x73, 0x6f, 0x66, 0x70, 0x78, 0x78, 0x73, 0x6c, 0x61, 0x57,\n    0x54, 0x54, 0x56, 0x52, 0x48, 0x45, 0x44, 0x3e, 0x3e, 0x3a, 0x37, 0x36, 0x35, 0x37, 0x3c, 0x42,\n    0x47, 0x49, 0x4b, 0x4c, 0x4c, 0x4b, 0x48, 0x46, 0x49, 0x4f, 0x55, 0x54, 0x4e, 0x4c, 0x54, 0x5e,\n    0x62, 0x5f, 0x5d, 0x61, 0x6c, 0x76, 0x75, 0x6e, 0x64, 0x65, 0x66, 0x6d, 0x78, 0x81, 0x7f, 0x78,\n    0x6b, 0x63, 0x5d, 0x5e, 0x62, 0x63, 0x62, 0x61, 0x64, 0x6a, 0x75, 0x80, 0x84, 0x81, 0x7b, 0x79,\n    0x76, 0x6f, 0x6a, 0x62, 0x5c, 0x63, 0x6d, 0x6e, 0x68, 0x60, 0x5c, 0x65, 0x79, 0x8c, 0x98, 0x9d,\n    0xa1, 0x99, 0x94, 0x91, 0x87, 0x77, 0x72, 0x76, 0x7d, 0x80, 0x84, 0x90, 0x9d, 0x9c, 0x95, 0x97,\n    0x94, 0x8d, 0x88, 0x85, 0x7b, 0x69, 0x5a, 0x55, 0x62, 0x70, 0x75, 0x67, 0x53, 0x49, 0x49, 0x4a,\n    0x4a, 0x4c, 0x4d, 0x4d, 0x4d, 0x4d, 0x4f, 0x51, 0x4b, 0x4e, 0x4d, 0x45, 0x38, 0x30, 0x30, 0x34,\n    0x36, 0x35, 0x37, 0x3b, 0x3f, 0x44, 0x4d, 0x55, 0x5d, 0x62, 0x67, 0x66, 0x64, 0x60, 0x5c, 0x58,\n    0x4a, 0x40, 0x33, 0x2c, 0x2e, 0x34, 0x3a, 0x3d, 0x3f, 0x42, 0x44, 0x47, 0x4f, 0x5e, 0x6c, 0x73,\n    0x79, 0x75, 0x75, 0x7a, 0x7f, 0x83, 0x88, 0x8f, 0x8c, 0x8f, 0x91, 0x90, 0x8d, 0x89, 0x86, 0x85,\n    0x87, 0x89, 0x8c, 0x90, 0x93, 0x96, 0x98, 0x99, 0x96, 0x96, 0x98, 0x9b, 0x9e, 0x9e, 0x9d, 0x9c,\n    0x9b, 0x99, 0x99, 0x9e, 0xa2, 0xa5, 0xa9, 0xac, 0xaa, 0xaa, 0xab, 0xab, 0xac, 0xac, 0xac, 0xac,\n    0xad, 0xae, 0xaf, 0xb2, 0xb4, 0xb5, 0xb4, 0xb2, 0xb5, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb5,\n    0xb2, 0xb3, 0xb3, 0xb4, 0xb4, 0xb5, 0xb5, 0xb6, 0xb9, 0xb7, 0xb5, 0xb3, 0xb2, 0xb4, 0xb6, 0xb8,\n    0xb8, 0xb5, 0xb2, 0xb0, 0xaf, 0xae, 0xad, 0xac, 0xab, 0xa8, 0xa5, 0xa3, 0xa2, 0xa1, 0x9f, 0x9e,\n    0xa0, 0x9d, 0x9c, 0x9e, 0x9d, 0x9a, 0x96, 0x95, 0x90, 0x90, 0x91, 0x90, 0x8f, 0x8d, 0x8b, 0x8a,\n    0x8e, 0x8c, 0x8b, 0x8b, 0x8a, 0x88, 0x87, 0x88, 0x80, 0x82, 0x85, 0x86, 0x85, 0x83, 0x81, 0x81,\n    0x7e, 0x7c, 0x78, 0x76, 0x76, 0x76, 0x76, 0x75, 0x74, 0x71, 0x6f, 0x70, 0x70, 0x6f, 0x6e, 0x70,\n    0x6d, 0x6a, 0x67, 0x64, 0x62, 0x60, 0x5e, 0x5d, 0x53, 0x54, 0x52, 0x52, 0x62, 0x74, 0x73, 0x64,\n    0x4e, 0x48, 0x47, 0x4d, 0x4e, 0x48, 0x45, 0x48, 0x45, 0x45, 0x49, 0x50, 0x53, 0x50, 0x4b, 0x49,\n    0x3b, 0x45, 0x4d, 0x4e, 0x51, 0x55, 0x53, 0x4d, 0x3d, 0x36, 0x32, 0x35, 0x39, 0x38, 0x36, 0x36,\n    0x3e, 0x48, 0x4d, 0x48, 0x45, 0x47, 0x49, 0x48, 0x4c, 0x4d, 0x4e, 0x4f, 0x4e, 0x4e, 0x4e, 0x4f,\n    0x53, 0x52, 0x52, 0x53, 0x54, 0x53, 0x53, 0x54, 0x57, 0x53, 0x50, 0x4f, 0x51, 0x53, 0x54, 0x54,\n    0x57, 0x57, 0x57, 0x5a, 0x60, 0x65, 0x65, 0x62, 0x67, 0x62, 0x59, 0x50, 0x4e, 0x53, 0x57, 0x59,\n    0x5e, 0x5f, 0x64, 0x6c, 0x70, 0x72, 0x74, 0x78, 0x64, 0x6b, 0x76, 0x7f, 0x7d, 0x75, 0x74, 0x79,\n    0x7f, 0x73, 0x64, 0x62, 0x74, 0x87, 0x89, 0x80, 0x86, 0x8f, 0x83, 0x64, 0x5e, 0x7e, 0x94, 0x8d,\n    0x77, 0x6b, 0x47, 0x23, 0x21, 0x2d, 0x2d, 0x24, 0x37, 0x5e, 0x7e, 0x74, 0x52, 0x3a, 0x38, 0x3f,\n    0x50, 0x53, 0x50, 0x48, 0x4f, 0x5e, 0x51, 0x2d, 0x29, 0x52, 0x64, 0x71, 0x6c, 0x51, 0x41, 0x36,\n    0x36, 0x4c, 0x4b, 0x43, 0x3e, 0x3e, 0x45, 0x45, 0x3e, 0x4d, 0x53, 0x4b, 0x45, 0x49, 0x4b, 0x49,\n    0x3f, 0x3d, 0x38, 0x33, 0x2f, 0x30, 0x34, 0x38, 0x37, 0x29, 0x23, 0x2f, 0x41, 0x4e, 0x59, 0x63,\n    0x68, 0x68, 0x5c, 0x49, 0x42, 0x42, 0x39, 0x2a, 0x2f, 0x34, 0x38, 0x36, 0x2f, 0x27, 0x24, 0x24,\n    0x48, 0x43, 0x3d, 0x35, 0x31, 0x2f, 0x30, 0x31, 0x2d, 0x28, 0x22, 0x1f, 0x1d, 0x19, 0x18, 0x19,\n    0x19, 0x19, 0x1a, 0x1c, 0x1e, 0x20, 0x21, 0x21, 0x24, 0x26, 0x2a, 0x2c, 0x2c, 0x2d, 0x2d, 0x2e,\n    0x2f, 0x31, 0x2e, 0x2c, 0x2f, 0x2d, 0x2f, 0x38, 0x64, 0x7e, 0x7c, 0x6d, 0x63, 0x5e, 0x5e, 0x56,\n    0x49, 0x44, 0x44, 0x53, 0x69, 0x75, 0x73, 0x6b, 0x73, 0x77, 0x77, 0x74, 0x71, 0x6d, 0x71, 0x7e,\n    0x8c, 0x86, 0x7a, 0x6b, 0x64, 0x67, 0x6c, 0x6e, 0x6b, 0x68, 0x61, 0x5c, 0x5b, 0x59, 0x50, 0x45,\n    0x43, 0x4e, 0x5c, 0x5b, 0x4d, 0x46, 0x45, 0x40, 0x31, 0x32, 0x38, 0x43, 0x51, 0x5d, 0x63, 0x64,\n    0x5b, 0x5c, 0x5a, 0x57, 0x5d, 0x68, 0x6b, 0x66, 0x4f, 0x44, 0x3e, 0x44, 0x4f, 0x52, 0x4f, 0x4b,\n    0x43, 0x50, 0x61, 0x6e, 0x75, 0x77, 0x76, 0x74, 0x79, 0x7a, 0x78, 0x72, 0x6a, 0x5d, 0x4b, 0x3d,\n    0x3a, 0x3a, 0x43, 0x4f, 0x55, 0x58, 0x4f, 0x3f, 0x39, 0x37, 0x35, 0x36, 0x37, 0x3a, 0x40, 0x46,\n    0x4e, 0x4c, 0x4c, 0x51, 0x58, 0x5d, 0x5d, 0x5b, 0x56, 0x56, 0x57, 0x5b, 0x5e, 0x5d, 0x5c, 0x5a,\n    0x53, 0x4a, 0x44, 0x4c, 0x63, 0x75, 0x77, 0x6f, 0x65, 0x68, 0x6d, 0x72, 0x79, 0x7b, 0x74, 0x6a,\n    0x5b, 0x56, 0x54, 0x57, 0x5b, 0x5d, 0x5e, 0x60, 0x6b, 0x69, 0x6a, 0x6d, 0x6f, 0x6e, 0x6f, 0x71,\n    0x70, 0x6e, 0x6d, 0x68, 0x60, 0x65, 0x6f, 0x70, 0x66, 0x54, 0x47, 0x51, 0x6d, 0x8b, 0x9c, 0xa2,\n    0x9c, 0x8f, 0x85, 0x81, 0x7b, 0x71, 0x6b, 0x6c, 0x7d, 0x82, 0x87, 0x91, 0x9a, 0x95, 0x8c, 0x8b,\n    0x93, 0x92, 0x96, 0x9b, 0x97, 0x88, 0x7c, 0x77, 0x7c, 0x80, 0x7b, 0x6b, 0x5f, 0x5e, 0x62, 0x64,\n    0x5a, 0x56, 0x52, 0x51, 0x53, 0x53, 0x50, 0x4e, 0x61, 0x5c, 0x52, 0x43, 0x36, 0x31, 0x35, 0x3a,\n    0x42, 0x43, 0x46, 0x4c, 0x4f, 0x50, 0x53, 0x57, 0x62, 0x65, 0x64, 0x60, 0x5c, 0x5a, 0x59, 0x58,\n    0x5a, 0x50, 0x42, 0x36, 0x31, 0x34, 0x3a, 0x3f, 0x42, 0x43, 0x45, 0x4a, 0x56, 0x66, 0x72, 0x77,\n    0x77, 0x75, 0x77, 0x7d, 0x82, 0x84, 0x88, 0x8d, 0x8d, 0x8e, 0x8f, 0x8d, 0x89, 0x85, 0x83, 0x83,\n    0x8a, 0x8c, 0x8f, 0x92, 0x94, 0x95, 0x96, 0x96, 0x96, 0x97, 0x9a, 0x9c, 0x9d, 0x9d, 0x9c, 0x9c,\n    0x9e, 0x9d, 0x9e, 0xa3, 0xa7, 0xaa, 0xad, 0xb0, 0xab, 0xab, 0xac, 0xad, 0xad, 0xad, 0xad, 0xad,\n    0xae, 0xae, 0xaf, 0xb1, 0xb3, 0xb4, 0xb3, 0xb1, 0xb2, 0xb3, 0xb3, 0xb4, 0xb4, 0xb4, 0xb4, 0xb4,\n    0xb1, 0xb1, 0xb2, 0xb4, 0xb6, 0xb7, 0xb9, 0xb9, 0xb6, 0xb5, 0xb3, 0xb3, 0xb3, 0xb4, 0xb6, 0xb8,\n    0xb8, 0xb6, 0xb3, 0xb1, 0xb1, 0xb0, 0xaf, 0xae, 0xab, 0xaa, 0xa7, 0xa6, 0xa5, 0xa4, 0xa2, 0xa1,\n    0xa4, 0xa1, 0x9f, 0xa0, 0x9f, 0x9a, 0x97, 0x96, 0x92, 0x92, 0x93, 0x94, 0x93, 0x91, 0x8f, 0x8e,\n    0x8f, 0x8c, 0x8c, 0x8d, 0x8c, 0x89, 0x89, 0x8b, 0x84, 0x86, 0x88, 0x88, 0x86, 0x84, 0x83, 0x83,\n    0x80, 0x7e, 0x7a, 0x78, 0x77, 0x76, 0x75, 0x74, 0x75, 0x73, 0x72, 0x72, 0x71, 0x6e, 0x6e, 0x70,\n    0x6e, 0x6c, 0x69, 0x66, 0x65, 0x63, 0x61, 0x60, 0x5a, 0x5a, 0x55, 0x53, 0x5c, 0x69, 0x68, 0x5e,\n    0x52, 0x4b, 0x49, 0x4d, 0x4e, 0x46, 0x3f, 0x3e, 0x37, 0x38, 0x3d, 0x44, 0x48, 0x45, 0x3f, 0x3c,\n    0x40, 0x48, 0x4d, 0x4c, 0x4c, 0x4d, 0x4a, 0x45, 0x39, 0x31, 0x2c, 0x30, 0x36, 0x38, 0x37, 0x37,\n    0x38, 0x41, 0x47, 0x45, 0x44, 0x48, 0x4b, 0x49, 0x4a, 0x4b, 0x4d, 0x4d, 0x4c, 0x4c, 0x4d, 0x4e,\n    0x49, 0x4d, 0x53, 0x56, 0x55, 0x52, 0x50, 0x4f, 0x54, 0x54, 0x54, 0x56, 0x56, 0x54, 0x51, 0x4e,\n    0x4d, 0x47, 0x45, 0x4d, 0x5c, 0x6c, 0x77, 0x7c, 0x78, 0x6c, 0x57, 0x42, 0x37, 0x39, 0x3f, 0x44,\n    0x4a, 0x52, 0x5a, 0x5d, 0x5b, 0x58, 0x57, 0x58, 0x6b, 0x6b, 0x71, 0x7d, 0x83, 0x7c, 0x6e, 0x64,\n    0x46, 0x47, 0x5a, 0x7a, 0x8a, 0x85, 0x80, 0x83, 0x79, 0x80, 0x7a, 0x69, 0x65, 0x74, 0x88, 0x93,\n    0x94, 0x81, 0x5c, 0x3c, 0x37, 0x3f, 0x48, 0x50, 0x6f, 0x7b, 0x78, 0x5c, 0x40, 0x3c, 0x4c, 0x5b,\n    0x58, 0x62, 0x7f, 0x8a, 0x68, 0x3e, 0x37, 0x45, 0x55, 0x64, 0x5b, 0x4f, 0x41, 0x3b, 0x4e, 0x5a,\n    0x54, 0x4a, 0x39, 0x3f, 0x3e, 0x32, 0x3e, 0x52, 0x41, 0x47, 0x48, 0x43, 0x43, 0x47, 0x43, 0x3a,\n    0x37, 0x31, 0x29, 0x21, 0x1e, 0x20, 0x26, 0x2b, 0x26, 0x24, 0x2a, 0x38, 0x44, 0x48, 0x4c, 0x52,\n    0x42, 0x3c, 0x2f, 0x24, 0x2a, 0x3c, 0x48, 0x49, 0x35, 0x33, 0x2f, 0x29, 0x25, 0x23, 0x23, 0x24,\n    0x4a, 0x46, 0x3f, 0x39, 0x33, 0x2f, 0x2e, 0x2d, 0x28, 0x23, 0x1e, 0x1c, 0x1a, 0x17, 0x17, 0x18,\n    0x18, 0x18, 0x19, 0x1b, 0x1f, 0x21, 0x22, 0x22, 0x26, 0x29, 0x2c, 0x2e, 0x2e, 0x2f, 0x2f, 0x30,\n    0x30, 0x32, 0x2f, 0x2d, 0x2f, 0x2e, 0x2f, 0x38, 0x55, 0x74, 0x75, 0x67, 0x60, 0x62, 0x67, 0x5f,\n    0x65, 0x62, 0x66, 0x71, 0x7a, 0x7b, 0x79, 0x79, 0x76, 0x77, 0x72, 0x6d, 0x6e, 0x6e, 0x74, 0x81,\n    0x88, 0x83, 0x7a, 0x70, 0x6c, 0x6e, 0x70, 0x70, 0x6d, 0x6c, 0x65, 0x5c, 0x5b, 0x5c, 0x56, 0x4b,\n    0x47, 0x51, 0x63, 0x68, 0x58, 0x46, 0x3b, 0x35, 0x2e, 0x30, 0x37, 0x46, 0x58, 0x64, 0x66, 0x65,\n    0x5f, 0x5c, 0x54, 0x4b, 0x4a, 0x4f, 0x53, 0x51, 0x50, 0x4d, 0x4a, 0x47, 0x45, 0x46, 0x4b, 0x52,\n    0x4b, 0x51, 0x64, 0x7b, 0x83, 0x7c, 0x77, 0x7a, 0x7e, 0x76, 0x6a, 0x61, 0x5e, 0x58, 0x4b, 0x3f,\n    0x3d, 0x39, 0x3f, 0x4a, 0x54, 0x5c, 0x58, 0x4a, 0x3a, 0x37, 0x34, 0x34, 0x36, 0x3a, 0x42, 0x4a,\n    0x40, 0x3e, 0x3f, 0x46, 0x51, 0x57, 0x55, 0x50, 0x55, 0x55, 0x56, 0x5b, 0x62, 0x65, 0x62, 0x5e,\n    0x59, 0x54, 0x4f, 0x4d, 0x53, 0x5b, 0x5e, 0x5c, 0x5e, 0x62, 0x66, 0x69, 0x6b, 0x69, 0x61, 0x5a,\n    0x4f, 0x4b, 0x49, 0x4c, 0x51, 0x56, 0x5c, 0x60, 0x60, 0x64, 0x6d, 0x75, 0x77, 0x74, 0x71, 0x70,\n    0x6b, 0x6d, 0x72, 0x70, 0x6a, 0x6d, 0x75, 0x75, 0x66, 0x54, 0x47, 0x4f, 0x66, 0x7e, 0x8d, 0x94,\n    0x95, 0x8c, 0x82, 0x7b, 0x74, 0x6e, 0x6e, 0x72, 0x7b, 0x82, 0x86, 0x8c, 0x8f, 0x87, 0x7d, 0x7d,\n    0x7c, 0x7d, 0x83, 0x8a, 0x8a, 0x83, 0x7f, 0x80, 0x8d, 0x8e, 0x89, 0x80, 0x7a, 0x77, 0x73, 0x6d,\n    0x60, 0x5f, 0x5e, 0x5f, 0x61, 0x62, 0x63, 0x63, 0x62, 0x5e, 0x54, 0x47, 0x3a, 0x32, 0x31, 0x32,\n    0x3f, 0x40, 0x46, 0x50, 0x58, 0x5e, 0x62, 0x66, 0x6a, 0x69, 0x62, 0x58, 0x50, 0x4f, 0x50, 0x51,\n    0x50, 0x49, 0x3d, 0x32, 0x2d, 0x31, 0x3a, 0x41, 0x3c, 0x3d, 0x41, 0x4a, 0x59, 0x69, 0x71, 0x72,\n    0x75, 0x76, 0x7a, 0x81, 0x85, 0x87, 0x89, 0x8b, 0x8e, 0x8d, 0x8c, 0x89, 0x86, 0x83, 0x82, 0x83,\n    0x8b, 0x8d, 0x90, 0x93, 0x94, 0x95, 0x94, 0x94, 0x96, 0x99, 0x9b, 0x9c, 0x9c, 0x9c, 0x9d, 0x9e,\n    0xa3, 0xa1, 0xa3, 0xa8, 0xab, 0xac, 0xad, 0xae, 0xac, 0xad, 0xae, 0xae, 0xaf, 0xaf, 0xaf, 0xaf,\n    0xaf, 0xaf, 0xaf, 0xb1, 0xb2, 0xb2, 0xb1, 0xb0, 0xb0, 0xb0, 0xb1, 0xb2, 0xb2, 0xb3, 0xb3, 0xb2,\n    0xb2, 0xb3, 0xb3, 0xb4, 0xb6, 0xb8, 0xb9, 0xba, 0xb3, 0xb3, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7, 0xb8,\n    0xb6, 0xb5, 0xb3, 0xb2, 0xb2, 0xb2, 0xb0, 0xaf, 0xae, 0xac, 0xaa, 0xa9, 0xa9, 0xa9, 0xa8, 0xa7,\n    0xa7, 0xa4, 0xa1, 0xa0, 0x9e, 0x9a, 0x98, 0x97, 0x94, 0x95, 0x97, 0x98, 0x98, 0x96, 0x94, 0x92,\n    0x90, 0x8e, 0x8d, 0x8f, 0x8e, 0x8d, 0x8d, 0x8f, 0x8a, 0x8b, 0x8b, 0x8a, 0x88, 0x86, 0x85, 0x86,\n    0x82, 0x80, 0x7d, 0x7b, 0x79, 0x77, 0x75, 0x73, 0x75, 0x75, 0x75, 0x75, 0x72, 0x6e, 0x6e, 0x70,\n    0x6f, 0x6d, 0x6a, 0x68, 0x67, 0x65, 0x63, 0x62, 0x5f, 0x5c, 0x57, 0x54, 0x57, 0x5d, 0x60, 0x5f,\n    0x5d, 0x55, 0x4f, 0x51, 0x51, 0x4a, 0x41, 0x3c, 0x36, 0x37, 0x3c, 0x44, 0x48, 0x46, 0x40, 0x3e,\n    0x3f, 0x44, 0x46, 0x42, 0x3f, 0x3f, 0x3c, 0x37, 0x36, 0x30, 0x2d, 0x31, 0x36, 0x38, 0x36, 0x35,\n    0x35, 0x3c, 0x41, 0x42, 0x44, 0x49, 0x4a, 0x47, 0x4a, 0x4b, 0x4d, 0x4d, 0x4d, 0x4d, 0x4d, 0x4e,\n    0x4f, 0x52, 0x54, 0x53, 0x50, 0x4e, 0x50, 0x52, 0x50, 0x52, 0x56, 0x59, 0x5a, 0x58, 0x55, 0x53,\n    0x4f, 0x46, 0x42, 0x4b, 0x58, 0x60, 0x65, 0x69, 0x69, 0x64, 0x59, 0x49, 0x3d, 0x39, 0x39, 0x3a,\n    0x43, 0x53, 0x60, 0x60, 0x59, 0x57, 0x57, 0x57, 0x5f, 0x67, 0x74, 0x7f, 0x87, 0x87, 0x7d, 0x73,\n    0x62, 0x60, 0x62, 0x69, 0x70, 0x70, 0x67, 0x5f, 0x58, 0x68, 0x6a, 0x63, 0x63, 0x69, 0x79, 0x8f,\n    0x9e, 0x8d, 0x73, 0x60, 0x55, 0x4d, 0x53, 0x64, 0x66, 0x75, 0x7a, 0x65, 0x4d, 0x4e, 0x6c, 0x89,\n    0x8f, 0x8f, 0x7b, 0x4d, 0x2c, 0x31, 0x44, 0x49, 0x51, 0x51, 0x4e, 0x56, 0x5a, 0x5c, 0x5e, 0x52,\n    0x4b, 0x4e, 0x3d, 0x37, 0x3f, 0x44, 0x46, 0x3f, 0x4e, 0x4f, 0x4b, 0x45, 0x45, 0x47, 0x3f, 0x33,\n    0x32, 0x2c, 0x23, 0x1c, 0x1a, 0x1c, 0x20, 0x22, 0x29, 0x2e, 0x38, 0x3e, 0x3a, 0x2f, 0x2b, 0x2c,\n    0x2b, 0x2e, 0x32, 0x36, 0x39, 0x38, 0x31, 0x29, 0x31, 0x2a, 0x21, 0x1b, 0x19, 0x1a, 0x1b, 0x1b,\n    0x3e, 0x3d, 0x3c, 0x3b, 0x38, 0x35, 0x30, 0x2e, 0x27, 0x22, 0x1e, 0x1c, 0x1a, 0x18, 0x17, 0x19,\n    0x18, 0x18, 0x19, 0x1c, 0x1f, 0x22, 0x23, 0x23, 0x27, 0x2a, 0x2d, 0x2f, 0x30, 0x30, 0x31, 0x31,\n    0x31, 0x33, 0x2f, 0x2d, 0x2f, 0x2d, 0x2f, 0x37, 0x51, 0x6c, 0x6e, 0x63, 0x5c, 0x5c, 0x66, 0x67,\n    0x67, 0x63, 0x63, 0x66, 0x61, 0x5a, 0x5c, 0x65, 0x72, 0x71, 0x6a, 0x66, 0x6c, 0x6f, 0x72, 0x7a,\n    0x74, 0x71, 0x6c, 0x68, 0x67, 0x66, 0x64, 0x61, 0x60, 0x64, 0x64, 0x62, 0x66, 0x6a, 0x62, 0x54,\n    0x4c, 0x52, 0x63, 0x6b, 0x59, 0x3f, 0x2e, 0x27, 0x2c, 0x32, 0x3b, 0x47, 0x51, 0x58, 0x5c, 0x5e,\n    0x53, 0x4f, 0x47, 0x3f, 0x3b, 0x3e, 0x43, 0x46, 0x50, 0x58, 0x5b, 0x4f, 0x3d, 0x38, 0x45, 0x56,\n    0x5d, 0x60, 0x6d, 0x7e, 0x82, 0x7b, 0x79, 0x7f, 0x7a, 0x6f, 0x62, 0x5b, 0x5a, 0x59, 0x53, 0x4c,\n    0x45, 0x44, 0x47, 0x48, 0x46, 0x4a, 0x4c, 0x46, 0x3d, 0x38, 0x34, 0x33, 0x34, 0x38, 0x40, 0x48,\n    0x4e, 0x50, 0x56, 0x60, 0x68, 0x68, 0x60, 0x58, 0x54, 0x59, 0x5d, 0x5d, 0x5b, 0x5c, 0x5f, 0x61,\n    0x56, 0x57, 0x57, 0x55, 0x52, 0x54, 0x57, 0x5a, 0x56, 0x57, 0x56, 0x56, 0x55, 0x55, 0x54, 0x54,\n    0x47, 0x40, 0x3b, 0x3c, 0x41, 0x49, 0x50, 0x56, 0x57, 0x5b, 0x60, 0x62, 0x60, 0x5e, 0x62, 0x69,\n    0x66, 0x68, 0x6e, 0x70, 0x6e, 0x73, 0x79, 0x77, 0x6c, 0x68, 0x69, 0x6f, 0x76, 0x79, 0x7d, 0x81,\n    0x80, 0x83, 0x81, 0x75, 0x67, 0x61, 0x68, 0x71, 0x77, 0x7d, 0x7d, 0x7c, 0x7c, 0x75, 0x6e, 0x70,\n    0x73, 0x72, 0x75, 0x7a, 0x7c, 0x7f, 0x85, 0x8c, 0x85, 0x86, 0x87, 0x86, 0x85, 0x82, 0x79, 0x6f,\n    0x73, 0x77, 0x7a, 0x76, 0x6f, 0x6a, 0x6a, 0x6d, 0x6d, 0x6d, 0x68, 0x5c, 0x4e, 0x43, 0x40, 0x40,\n    0x44, 0x40, 0x40, 0x46, 0x4e, 0x54, 0x5a, 0x5f, 0x6e, 0x6c, 0x64, 0x57, 0x4c, 0x49, 0x4a, 0x4b,\n    0x49, 0x43, 0x3a, 0x34, 0x32, 0x37, 0x3f, 0x44, 0x39, 0x3f, 0x4a, 0x57, 0x66, 0x73, 0x77, 0x76,\n    0x76, 0x79, 0x7e, 0x83, 0x86, 0x88, 0x8a, 0x8b, 0x8d, 0x8c, 0x89, 0x87, 0x85, 0x84, 0x85, 0x86,\n    0x8a, 0x8c, 0x8f, 0x93, 0x95, 0x95, 0x95, 0x94, 0x96, 0x9a, 0x9d, 0x9e, 0x9c, 0x9c, 0x9f, 0xa2,\n    0xa5, 0xa3, 0xa5, 0xa9, 0xab, 0xaa, 0xa8, 0xa8, 0xad, 0xad, 0xae, 0xae, 0xaf, 0xaf, 0xaf, 0xaf,\n    0xb0, 0xaf, 0xaf, 0xb0, 0xb1, 0xb2, 0xb1, 0xb0, 0xb0, 0xb0, 0xb1, 0xb2, 0xb3, 0xb3, 0xb4, 0xb4,\n    0xb6, 0xb6, 0xb5, 0xb4, 0xb4, 0xb5, 0xb5, 0xb6, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7, 0xb8, 0xb8, 0xb8,\n    0xb3, 0xb3, 0xb2, 0xb2, 0xb2, 0xb2, 0xb0, 0xaf, 0xb1, 0xae, 0xab, 0xa9, 0xaa, 0xab, 0xac, 0xac,\n    0xa7, 0xa4, 0xa1, 0xa0, 0x9e, 0x9a, 0x98, 0x99, 0x97, 0x98, 0x9a, 0x9b, 0x9a, 0x98, 0x96, 0x94,\n    0x92, 0x90, 0x8f, 0x91, 0x91, 0x8f, 0x90, 0x92, 0x8e, 0x8e, 0x8d, 0x8b, 0x88, 0x86, 0x86, 0x86,\n    0x83, 0x81, 0x80, 0x7e, 0x7c, 0x7a, 0x77, 0x74, 0x75, 0x76, 0x77, 0x78, 0x73, 0x6f, 0x6f, 0x72,\n    0x70, 0x6e, 0x6c, 0x69, 0x68, 0x66, 0x63, 0x61, 0x5f, 0x5c, 0x58, 0x56, 0x55, 0x58, 0x5f, 0x66,\n    0x5d, 0x51, 0x46, 0x42, 0x42, 0x41, 0x3b, 0x37, 0x36, 0x35, 0x38, 0x3f, 0x44, 0x43, 0x41, 0x40,\n    0x41, 0x42, 0x40, 0x3a, 0x36, 0x36, 0x35, 0x33, 0x36, 0x35, 0x36, 0x37, 0x38, 0x36, 0x34, 0x32,\n    0x38, 0x3d, 0x40, 0x42, 0x45, 0x49, 0x48, 0x45, 0x49, 0x4b, 0x4c, 0x4c, 0x4c, 0x4c, 0x4c, 0x4d,\n    0x4f, 0x50, 0x50, 0x4d, 0x4c, 0x4e, 0x50, 0x52, 0x4d, 0x4e, 0x4e, 0x4f, 0x50, 0x51, 0x52, 0x53,\n    0x4e, 0x4a, 0x4d, 0x59, 0x60, 0x5c, 0x56, 0x54, 0x65, 0x6c, 0x72, 0x70, 0x6a, 0x64, 0x5e, 0x59,\n    0x4d, 0x60, 0x6c, 0x64, 0x59, 0x58, 0x5d, 0x5f, 0x68, 0x71, 0x7a, 0x7f, 0x84, 0x85, 0x7e, 0x74,\n    0x4e, 0x4e, 0x4d, 0x4e, 0x56, 0x5e, 0x5a, 0x51, 0x56, 0x6f, 0x6c, 0x5a, 0x5e, 0x6b, 0x7e, 0x98,\n    0x9e, 0x94, 0x81, 0x6f, 0x5f, 0x50, 0x54, 0x66, 0x7b, 0x7e, 0x6c, 0x5c, 0x79, 0xab, 0xac, 0x8a,\n    0x76, 0x58, 0x39, 0x27, 0x27, 0x3a, 0x52, 0x5c, 0x37, 0x44, 0x5d, 0x6c, 0x61, 0x55, 0x4f, 0x40,\n    0x34, 0x3b, 0x3c, 0x49, 0x4d, 0x40, 0x41, 0x46, 0x50, 0x4e, 0x48, 0x3f, 0x3b, 0x38, 0x31, 0x29,\n    0x26, 0x24, 0x20, 0x1f, 0x1f, 0x1f, 0x1e, 0x1c, 0x15, 0x20, 0x2e, 0x36, 0x36, 0x34, 0x38, 0x3d,\n    0x3d, 0x34, 0x2b, 0x27, 0x27, 0x26, 0x27, 0x29, 0x23, 0x1f, 0x1b, 0x18, 0x17, 0x16, 0x13, 0x12,\n    0x36, 0x36, 0x37, 0x39, 0x3a, 0x3a, 0x37, 0x35, 0x29, 0x24, 0x1f, 0x1d, 0x1b, 0x19, 0x18, 0x19,\n    0x18, 0x18, 0x1a, 0x1c, 0x20, 0x23, 0x24, 0x24, 0x28, 0x2a, 0x2e, 0x30, 0x30, 0x31, 0x31, 0x32,\n    0x34, 0x36, 0x32, 0x31, 0x32, 0x30, 0x32, 0x3b, 0x51, 0x65, 0x68, 0x66, 0x5f, 0x5a, 0x69, 0x76,\n    0x7b, 0x6d, 0x63, 0x64, 0x65, 0x65, 0x6c, 0x75, 0x77, 0x72, 0x66, 0x62, 0x6a, 0x6f, 0x70, 0x72,\n    0x71, 0x6f, 0x6d, 0x6c, 0x6a, 0x65, 0x5e, 0x5a, 0x53, 0x59, 0x5e, 0x63, 0x6d, 0x73, 0x6a, 0x5b,\n    0x4a, 0x45, 0x49, 0x4d, 0x3f, 0x2f, 0x2a, 0x2a, 0x28, 0x2e, 0x37, 0x40, 0x47, 0x4a, 0x48, 0x46,\n    0x40, 0x3d, 0x38, 0x35, 0x33, 0x35, 0x3a, 0x3f, 0x4a, 0x59, 0x64, 0x5d, 0x4a, 0x3e, 0x40, 0x47,\n    0x5f, 0x67, 0x72, 0x77, 0x75, 0x74, 0x77, 0x7c, 0x74, 0x6a, 0x5b, 0x50, 0x48, 0x43, 0x3f, 0x3d,\n    0x42, 0x44, 0x4c, 0x4d, 0x45, 0x40, 0x3b, 0x31, 0x35, 0x33, 0x33, 0x34, 0x35, 0x36, 0x3a, 0x3f,\n    0x4b, 0x51, 0x5c, 0x65, 0x6a, 0x68, 0x62, 0x5d, 0x65, 0x6d, 0x71, 0x6c, 0x64, 0x60, 0x60, 0x60,\n    0x57, 0x50, 0x4b, 0x4d, 0x52, 0x56, 0x56, 0x54, 0x53, 0x51, 0x50, 0x4e, 0x4c, 0x4d, 0x51, 0x55,\n    0x5b, 0x54, 0x4e, 0x50, 0x56, 0x5b, 0x5e, 0x61, 0x5c, 0x61, 0x66, 0x63, 0x57, 0x4f, 0x51, 0x58,\n    0x60, 0x5e, 0x62, 0x66, 0x6a, 0x73, 0x78, 0x73, 0x67, 0x69, 0x70, 0x78, 0x77, 0x6d, 0x67, 0x66,\n    0x6e, 0x78, 0x7c, 0x72, 0x68, 0x66, 0x6c, 0x71, 0x73, 0x75, 0x6f, 0x67, 0x64, 0x60, 0x5d, 0x62,\n    0x5c, 0x5f, 0x64, 0x6a, 0x6e, 0x71, 0x76, 0x7b, 0x72, 0x72, 0x72, 0x73, 0x78, 0x7c, 0x7d, 0x7b,\n    0x78, 0x7b, 0x7e, 0x7e, 0x7a, 0x76, 0x73, 0x71, 0x71, 0x71, 0x6b, 0x5b, 0x48, 0x3d, 0x3e, 0x43,\n    0x57, 0x53, 0x51, 0x56, 0x5d, 0x64, 0x6b, 0x70, 0x6a, 0x6c, 0x69, 0x60, 0x58, 0x55, 0x55, 0x55,\n    0x54, 0x4d, 0x44, 0x3e, 0x3c, 0x3c, 0x3b, 0x3a, 0x33, 0x40, 0x50, 0x60, 0x6d, 0x76, 0x79, 0x78,\n    0x78, 0x7c, 0x80, 0x83, 0x85, 0x87, 0x8a, 0x8b, 0x89, 0x88, 0x86, 0x85, 0x85, 0x87, 0x89, 0x8a,\n    0x8d, 0x8f, 0x91, 0x94, 0x96, 0x96, 0x95, 0x95, 0x97, 0x9a, 0x9e, 0x9e, 0x9d, 0x9f, 0xa2, 0xa6,\n    0xa3, 0xa2, 0xa4, 0xa8, 0xaa, 0xa9, 0xa7, 0xa6, 0xac, 0xac, 0xad, 0xad, 0xae, 0xae, 0xae, 0xae,\n    0xb0, 0xaf, 0xaf, 0xaf, 0xb0, 0xb1, 0xb1, 0xb1, 0xb2, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb6, 0xb6,\n    0xb7, 0xb6, 0xb4, 0xb3, 0xb2, 0xb2, 0xb3, 0xb3, 0xb4, 0xb5, 0xb6, 0xb8, 0xb8, 0xb8, 0xb7, 0xb6,\n    0xb3, 0xb3, 0xb2, 0xb2, 0xb3, 0xb3, 0xb2, 0xb0, 0xb1, 0xad, 0xa9, 0xa6, 0xa7, 0xa9, 0xab, 0xac,\n    0xa6, 0xa3, 0xa2, 0xa1, 0x9f, 0x9c, 0x9b, 0x9d, 0x99, 0x9a, 0x9b, 0x9c, 0x9b, 0x98, 0x96, 0x94,\n    0x95, 0x93, 0x91, 0x92, 0x92, 0x91, 0x92, 0x94, 0x90, 0x8f, 0x8e, 0x8b, 0x88, 0x86, 0x86, 0x86,\n    0x83, 0x82, 0x81, 0x80, 0x7f, 0x7d, 0x7a, 0x78, 0x74, 0x75, 0x78, 0x78, 0x75, 0x71, 0x71, 0x75,\n    0x73, 0x71, 0x6e, 0x6c, 0x6a, 0x67, 0x64, 0x62, 0x60, 0x5d, 0x5b, 0x58, 0x54, 0x53, 0x5b, 0x64,\n    0x5e, 0x52, 0x42, 0x37, 0x36, 0x39, 0x3a, 0x39, 0x37, 0x34, 0x34, 0x39, 0x3d, 0x3f, 0x40, 0x41,\n    0x47, 0x46, 0x41, 0x3a, 0x35, 0x35, 0x36, 0x36, 0x37, 0x39, 0x3a, 0x36, 0x32, 0x31, 0x33, 0x35,\n    0x3d, 0x3f, 0x41, 0x44, 0x47, 0x4a, 0x4a, 0x47, 0x49, 0x4b, 0x4c, 0x4c, 0x4b, 0x4b, 0x4b, 0x4c,\n    0x4c, 0x4f, 0x51, 0x51, 0x54, 0x57, 0x56, 0x52, 0x56, 0x54, 0x51, 0x50, 0x50, 0x50, 0x51, 0x52,\n    0x56, 0x54, 0x56, 0x5d, 0x5f, 0x59, 0x54, 0x52, 0x65, 0x6c, 0x72, 0x71, 0x6b, 0x65, 0x60, 0x5c,\n    0x60, 0x6d, 0x71, 0x63, 0x55, 0x55, 0x5d, 0x62, 0x73, 0x74, 0x74, 0x79, 0x82, 0x84, 0x77, 0x65,\n    0x51, 0x48, 0x47, 0x4c, 0x46, 0x3b, 0x43, 0x56, 0x78, 0x82, 0x6d, 0x4f, 0x4a, 0x4f, 0x5d, 0x75,\n    0x8e, 0x8c, 0x7f, 0x6d, 0x5f, 0x54, 0x55, 0x60, 0x72, 0x67, 0x73, 0x8d, 0x89, 0x68, 0x54, 0x59,\n    0x49, 0x46, 0x58, 0x6b, 0x5c, 0x41, 0x40, 0x4e, 0x5e, 0x63, 0x75, 0x70, 0x53, 0x3c, 0x30, 0x26,\n    0x2e, 0x38, 0x38, 0x43, 0x4f, 0x4f, 0x4f, 0x4a, 0x4d, 0x45, 0x3a, 0x34, 0x33, 0x30, 0x28, 0x20,\n    0x1f, 0x1f, 0x21, 0x25, 0x28, 0x2a, 0x28, 0x26, 0x32, 0x38, 0x3c, 0x38, 0x31, 0x2e, 0x2f, 0x31,\n    0x2f, 0x2d, 0x30, 0x34, 0x31, 0x26, 0x1b, 0x16, 0x18, 0x1b, 0x1d, 0x1d, 0x19, 0x16, 0x14, 0x13,\n    0x3a, 0x37, 0x33, 0x32, 0x34, 0x36, 0x37, 0x37, 0x29, 0x24, 0x1f, 0x1d, 0x1b, 0x18, 0x18, 0x19,\n    0x1a, 0x1a, 0x1b, 0x1e, 0x21, 0x24, 0x25, 0x25, 0x29, 0x2b, 0x2e, 0x30, 0x31, 0x31, 0x32, 0x32,\n    0x35, 0x37, 0x34, 0x32, 0x34, 0x32, 0x34, 0x3d, 0x47, 0x58, 0x5d, 0x63, 0x5f, 0x56, 0x63, 0x71,\n    0x6d, 0x69, 0x68, 0x6b, 0x6d, 0x6f, 0x75, 0x7d, 0x7c, 0x76, 0x67, 0x5f, 0x65, 0x6b, 0x6b, 0x6c,\n    0x6e, 0x6d, 0x6d, 0x6e, 0x6c, 0x66, 0x61, 0x5f, 0x55, 0x57, 0x5b, 0x62, 0x6c, 0x71, 0x6c, 0x64,\n    0x4a, 0x3e, 0x3a, 0x39, 0x31, 0x2a, 0x2c, 0x2d, 0x28, 0x28, 0x2e, 0x3a, 0x45, 0x47, 0x3d, 0x33,\n    0x38, 0x33, 0x30, 0x30, 0x2e, 0x2b, 0x2d, 0x31, 0x40, 0x4d, 0x5c, 0x62, 0x5e, 0x52, 0x44, 0x3a,\n    0x52, 0x60, 0x6b, 0x6b, 0x68, 0x6a, 0x6f, 0x72, 0x7b, 0x6d, 0x5a, 0x47, 0x3b, 0x39, 0x40, 0x4a,\n    0x54, 0x4e, 0x4e, 0x4f, 0x4d, 0x49, 0x3d, 0x2b, 0x28, 0x2a, 0x2f, 0x35, 0x36, 0x35, 0x35, 0x37,\n    0x42, 0x4a, 0x53, 0x5b, 0x5f, 0x62, 0x65, 0x68, 0x71, 0x76, 0x79, 0x78, 0x76, 0x75, 0x6e, 0x66,\n    0x60, 0x57, 0x4d, 0x46, 0x41, 0x3f, 0x41, 0x45, 0x50, 0x50, 0x52, 0x53, 0x52, 0x4f, 0x4f, 0x52,\n    0x56, 0x53, 0x54, 0x58, 0x5d, 0x5e, 0x5d, 0x5d, 0x5a, 0x63, 0x6c, 0x6c, 0x61, 0x56, 0x55, 0x59,\n    0x60, 0x5b, 0x5c, 0x60, 0x65, 0x70, 0x75, 0x70, 0x69, 0x62, 0x62, 0x68, 0x67, 0x5b, 0x4f, 0x4b,\n    0x5b, 0x67, 0x6e, 0x6f, 0x75, 0x7e, 0x7e, 0x77, 0x6b, 0x6b, 0x61, 0x54, 0x51, 0x4f, 0x50, 0x55,\n    0x5c, 0x64, 0x6e, 0x76, 0x77, 0x72, 0x6b, 0x67, 0x65, 0x66, 0x69, 0x6d, 0x71, 0x75, 0x77, 0x77,\n    0x6c, 0x6a, 0x6c, 0x73, 0x7c, 0x7e, 0x78, 0x71, 0x75, 0x79, 0x77, 0x67, 0x51, 0x40, 0x3c, 0x3f,\n    0x3f, 0x3e, 0x42, 0x4a, 0x52, 0x57, 0x5d, 0x61, 0x65, 0x6b, 0x6f, 0x6d, 0x69, 0x69, 0x6b, 0x6c,\n    0x67, 0x61, 0x58, 0x53, 0x4f, 0x4a, 0x44, 0x3e, 0x3a, 0x46, 0x55, 0x61, 0x6b, 0x72, 0x76, 0x76,\n    0x78, 0x7d, 0x80, 0x81, 0x81, 0x84, 0x87, 0x88, 0x83, 0x83, 0x82, 0x83, 0x86, 0x89, 0x8b, 0x8c,\n    0x93, 0x94, 0x95, 0x96, 0x96, 0x96, 0x96, 0x95, 0x99, 0x9b, 0x9d, 0x9e, 0x9e, 0xa0, 0xa3, 0xa6,\n    0xa2, 0xa1, 0xa4, 0xa9, 0xac, 0xab, 0xa9, 0xa9, 0xaa, 0xab, 0xab, 0xac, 0xad, 0xad, 0xac, 0xac,\n    0xaf, 0xad, 0xad, 0xad, 0xaf, 0xb1, 0xb2, 0xb2, 0xb3, 0xb4, 0xb4, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6,\n    0xb3, 0xb2, 0xb1, 0xb1, 0xb1, 0xb3, 0xb4, 0xb5, 0xb5, 0xb6, 0xb7, 0xb8, 0xb8, 0xb7, 0xb6, 0xb5,\n    0xb5, 0xb4, 0xb3, 0xb4, 0xb4, 0xb5, 0xb4, 0xb3, 0xae, 0xab, 0xa7, 0xa5, 0xa5, 0xa6, 0xa7, 0xa7,\n    0xa5, 0xa3, 0xa3, 0xa4, 0xa2, 0x9e, 0x9e, 0xa0, 0x9c, 0x9c, 0x9c, 0x9c, 0x9b, 0x99, 0x96, 0x95,\n    0x98, 0x95, 0x93, 0x93, 0x93, 0x91, 0x92, 0x94, 0x91, 0x91, 0x8f, 0x8c, 0x89, 0x86, 0x86, 0x86,\n    0x84, 0x83, 0x82, 0x82, 0x81, 0x80, 0x7e, 0x7c, 0x76, 0x76, 0x77, 0x78, 0x76, 0x72, 0x73, 0x76,\n    0x74, 0x73, 0x70, 0x6e, 0x6c, 0x6a, 0x67, 0x64, 0x64, 0x62, 0x5f, 0x5a, 0x54, 0x50, 0x53, 0x59,\n    0x61, 0x5a, 0x4b, 0x3c, 0x38, 0x3d, 0x41, 0x41, 0x3a, 0x35, 0x32, 0x34, 0x38, 0x3a, 0x3d, 0x3f,\n    0x45, 0x43, 0x3e, 0x38, 0x34, 0x32, 0x33, 0x35, 0x38, 0x3a, 0x37, 0x30, 0x2b, 0x2f, 0x37, 0x3c,\n    0x3e, 0x3f, 0x42, 0x45, 0x49, 0x4c, 0x4e, 0x4e, 0x4f, 0x50, 0x51, 0x51, 0x50, 0x4f, 0x4f, 0x4f,\n    0x50, 0x53, 0x53, 0x51, 0x52, 0x57, 0x58, 0x55, 0x5a, 0x58, 0x56, 0x57, 0x58, 0x58, 0x55, 0x52,\n    0x56, 0x50, 0x4a, 0x49, 0x4d, 0x53, 0x57, 0x59, 0x66, 0x6b, 0x6d, 0x68, 0x61, 0x59, 0x52, 0x4c,\n    0x58, 0x60, 0x63, 0x5b, 0x53, 0x58, 0x62, 0x69, 0x6d, 0x73, 0x7a, 0x7e, 0x80, 0x7c, 0x72, 0x69,\n    0x5e, 0x4f, 0x42, 0x3e, 0x3d, 0x43, 0x58, 0x6f, 0x75, 0x74, 0x6b, 0x69, 0x6f, 0x6b, 0x6c, 0x7a,\n    0x81, 0x74, 0x54, 0x39, 0x36, 0x44, 0x5b, 0x6f, 0x5f, 0x66, 0x6a, 0x67, 0x65, 0x63, 0x59, 0x4c,\n    0x23, 0x4a, 0x78, 0x8a, 0x82, 0x7b, 0x78, 0x71, 0x77, 0x68, 0x60, 0x4c, 0x35, 0x28, 0x1c, 0x1a,\n    0x27, 0x51, 0x5a, 0x4b, 0x46, 0x50, 0x5a, 0x52, 0x45, 0x37, 0x2a, 0x2a, 0x30, 0x2e, 0x24, 0x1a,\n    0x1a, 0x1a, 0x1c, 0x1f, 0x23, 0x28, 0x2b, 0x2d, 0x2c, 0x33, 0x36, 0x32, 0x2f, 0x31, 0x32, 0x30,\n    0x36, 0x30, 0x29, 0x23, 0x1e, 0x18, 0x14, 0x13, 0x13, 0x18, 0x1c, 0x1b, 0x16, 0x14, 0x16, 0x19,\n    0x42, 0x3c, 0x35, 0x31, 0x31, 0x32, 0x33, 0x33, 0x29, 0x24, 0x1f, 0x1d, 0x1b, 0x19, 0x18, 0x1a,\n    0x1b, 0x1b, 0x1c, 0x1f, 0x22, 0x25, 0x26, 0x26, 0x2a, 0x2c, 0x2f, 0x31, 0x32, 0x32, 0x33, 0x33,\n    0x34, 0x36, 0x33, 0x32, 0x34, 0x33, 0x35, 0x3d, 0x51, 0x63, 0x68, 0x6e, 0x6c, 0x5f, 0x5e, 0x5f,\n    0x59, 0x5d, 0x62, 0x65, 0x67, 0x69, 0x6d, 0x71, 0x76, 0x77, 0x6d, 0x63, 0x65, 0x67, 0x67, 0x6a,\n    0x63, 0x60, 0x60, 0x61, 0x5e, 0x59, 0x58, 0x5a, 0x5b, 0x5a, 0x5d, 0x63, 0x66, 0x66, 0x66, 0x67,\n    0x50, 0x43, 0x3d, 0x3b, 0x34, 0x30, 0x2e, 0x29, 0x2a, 0x29, 0x2b, 0x34, 0x3e, 0x41, 0x3b, 0x34,\n    0x34, 0x2f, 0x2e, 0x33, 0x33, 0x30, 0x31, 0x36, 0x38, 0x42, 0x4e, 0x57, 0x5d, 0x5d, 0x55, 0x4c,\n    0x54, 0x60, 0x69, 0x69, 0x66, 0x67, 0x6a, 0x6c, 0x82, 0x79, 0x6b, 0x5e, 0x53, 0x51, 0x5b, 0x66,\n    0x60, 0x51, 0x47, 0x45, 0x46, 0x49, 0x40, 0x2f, 0x27, 0x28, 0x2c, 0x31, 0x33, 0x34, 0x36, 0x39,\n    0x39, 0x3e, 0x44, 0x48, 0x4b, 0x50, 0x57, 0x5d, 0x64, 0x68, 0x69, 0x6a, 0x6f, 0x74, 0x71, 0x69,\n    0x5c, 0x58, 0x52, 0x48, 0x3d, 0x39, 0x3f, 0x49, 0x4e, 0x50, 0x56, 0x5c, 0x5b, 0x55, 0x51, 0x51,\n    0x55, 0x57, 0x5d, 0x63, 0x65, 0x65, 0x68, 0x6d, 0x68, 0x63, 0x5d, 0x56, 0x51, 0x52, 0x5b, 0x65,\n    0x63, 0x5d, 0x5d, 0x5f, 0x63, 0x6c, 0x72, 0x6d, 0x75, 0x6d, 0x6a, 0x6b, 0x64, 0x54, 0x48, 0x46,\n    0x4e, 0x5c, 0x66, 0x6b, 0x76, 0x82, 0x7e, 0x71, 0x5d, 0x5e, 0x54, 0x49, 0x48, 0x49, 0x4a, 0x4e,\n    0x56, 0x5d, 0x66, 0x6d, 0x6e, 0x68, 0x5e, 0x55, 0x5a, 0x5e, 0x67, 0x70, 0x73, 0x70, 0x69, 0x64,\n    0x69, 0x67, 0x67, 0x6a, 0x6e, 0x6d, 0x68, 0x63, 0x66, 0x6c, 0x6e, 0x63, 0x4f, 0x3d, 0x34, 0x33,\n    0x42, 0x43, 0x46, 0x4a, 0x4c, 0x4c, 0x4d, 0x50, 0x66, 0x6d, 0x74, 0x73, 0x72, 0x73, 0x77, 0x79,\n    0x7a, 0x78, 0x74, 0x71, 0x6e, 0x6b, 0x66, 0x63, 0x60, 0x63, 0x66, 0x69, 0x6f, 0x75, 0x79, 0x79,\n    0x76, 0x7c, 0x80, 0x7f, 0x7e, 0x81, 0x83, 0x82, 0x80, 0x80, 0x81, 0x85, 0x89, 0x8c, 0x8d, 0x8d,\n    0x95, 0x95, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x9c, 0x9c, 0x9c, 0x9c, 0x9d, 0x9f, 0xa2, 0xa4,\n    0xa5, 0xa4, 0xa6, 0xab, 0xad, 0xac, 0xaa, 0xaa, 0xaa, 0xaa, 0xab, 0xab, 0xac, 0xac, 0xac, 0xac,\n    0xac, 0xab, 0xaa, 0xab, 0xad, 0xb0, 0xb2, 0xb3, 0xb2, 0xb2, 0xb3, 0xb3, 0xb4, 0xb4, 0xb3, 0xb3,\n    0xb0, 0xb0, 0xaf, 0xb0, 0xb1, 0xb4, 0xb6, 0xb8, 0xb8, 0xb8, 0xb9, 0xba, 0xba, 0xba, 0xb9, 0xb8,\n    0xb7, 0xb5, 0xb4, 0xb3, 0xb4, 0xb4, 0xb4, 0xb4, 0xad, 0xac, 0xaa, 0xa9, 0xa9, 0xa7, 0xa5, 0xa3,\n    0xa3, 0xa3, 0xa4, 0xa5, 0xa3, 0x9f, 0x9e, 0xa0, 0x9e, 0x9d, 0x9d, 0x9c, 0x9b, 0x9a, 0x9a, 0x99,\n    0x9a, 0x97, 0x94, 0x94, 0x92, 0x90, 0x91, 0x93, 0x92, 0x92, 0x91, 0x8f, 0x8b, 0x89, 0x87, 0x87,\n    0x86, 0x85, 0x83, 0x83, 0x82, 0x81, 0x7f, 0x7e, 0x79, 0x77, 0x76, 0x77, 0x75, 0x73, 0x73, 0x75,\n    0x73, 0x71, 0x70, 0x6f, 0x6e, 0x6c, 0x69, 0x67, 0x64, 0x64, 0x62, 0x5c, 0x56, 0x53, 0x52, 0x52,\n    0x58, 0x5a, 0x55, 0x48, 0x41, 0x44, 0x47, 0x46, 0x3d, 0x37, 0x33, 0x33, 0x35, 0x36, 0x37, 0x39,\n    0x41, 0x40, 0x3f, 0x3d, 0x3a, 0x38, 0x37, 0x38, 0x3b, 0x3b, 0x37, 0x30, 0x2f, 0x35, 0x3c, 0x3e,\n    0x40, 0x40, 0x42, 0x45, 0x48, 0x4c, 0x4f, 0x52, 0x55, 0x56, 0x57, 0x56, 0x54, 0x53, 0x52, 0x53,\n    0x51, 0x5e, 0x69, 0x6c, 0x6d, 0x71, 0x72, 0x70, 0x6e, 0x6a, 0x67, 0x67, 0x68, 0x66, 0x5f, 0x59,\n    0x4c, 0x4a, 0x45, 0x46, 0x53, 0x62, 0x67, 0x62, 0x51, 0x53, 0x54, 0x50, 0x4a, 0x45, 0x3d, 0x37,\n    0x45, 0x4a, 0x4e, 0x4f, 0x4f, 0x52, 0x58, 0x5d, 0x63, 0x6f, 0x7b, 0x7c, 0x71, 0x66, 0x66, 0x6c,\n    0x67, 0x5e, 0x4f, 0x43, 0x44, 0x4e, 0x57, 0x5b, 0x72, 0x6c, 0x6a, 0x72, 0x78, 0x6e, 0x5c, 0x4f,\n    0x42, 0x40, 0x3a, 0x3a, 0x45, 0x4d, 0x4e, 0x52, 0x65, 0x67, 0x68, 0x66, 0x60, 0x51, 0x3a, 0x27,\n    0x2c, 0x3c, 0x5d, 0x78, 0x7b, 0x76, 0x71, 0x6c, 0x6a, 0x5f, 0x53, 0x38, 0x2a, 0x30, 0x3d, 0x5b,\n    0x64, 0x55, 0x40, 0x4d, 0x60, 0x59, 0x49, 0x3a, 0x30, 0x28, 0x24, 0x26, 0x27, 0x21, 0x19, 0x14,\n    0x13, 0x12, 0x11, 0x10, 0x11, 0x15, 0x19, 0x1d, 0x20, 0x28, 0x2c, 0x26, 0x23, 0x25, 0x24, 0x21,\n    0x1b, 0x18, 0x13, 0x0e, 0x0e, 0x11, 0x13, 0x14, 0x12, 0x16, 0x1a, 0x18, 0x14, 0x13, 0x16, 0x1a,\n    0x48, 0x43, 0x3c, 0x38, 0x36, 0x35, 0x32, 0x2f, 0x28, 0x23, 0x1f, 0x1e, 0x1c, 0x1a, 0x1a, 0x1b,\n    0x1c, 0x1c, 0x1d, 0x20, 0x23, 0x25, 0x26, 0x26, 0x2b, 0x2d, 0x30, 0x32, 0x33, 0x33, 0x34, 0x34,\n    0x35, 0x37, 0x35, 0x33, 0x36, 0x35, 0x37, 0x40, 0x4d, 0x64, 0x6e, 0x78, 0x7e, 0x77, 0x6f, 0x64,\n    0x62, 0x58, 0x4d, 0x4e, 0x5c, 0x6c, 0x6f, 0x6b, 0x6e, 0x76, 0x74, 0x6d, 0x6b, 0x69, 0x68, 0x6b,\n    0x6b, 0x67, 0x63, 0x60, 0x5a, 0x54, 0x55, 0x59, 0x5a, 0x59, 0x5c, 0x62, 0x5f, 0x5a, 0x5c, 0x63,\n    0x56, 0x48, 0x3d, 0x37, 0x32, 0x32, 0x31, 0x2b, 0x29, 0x2b, 0x2d, 0x2e, 0x30, 0x34, 0x3a, 0x3e,\n    0x46, 0x3e, 0x3a, 0x3e, 0x3c, 0x35, 0x33, 0x37, 0x35, 0x3d, 0x44, 0x47, 0x4d, 0x59, 0x65, 0x6b,\n    0x68, 0x6c, 0x70, 0x71, 0x6e, 0x6c, 0x6e, 0x71, 0x70, 0x73, 0x77, 0x77, 0x6d, 0x5e, 0x55, 0x55,\n    0x4a, 0x3e, 0x36, 0x35, 0x36, 0x3a, 0x36, 0x28, 0x2f, 0x2c, 0x2b, 0x2c, 0x2e, 0x32, 0x39, 0x3f,\n    0x42, 0x44, 0x46, 0x47, 0x48, 0x4b, 0x50, 0x54, 0x52, 0x56, 0x56, 0x52, 0x54, 0x5e, 0x63, 0x63,\n    0x63, 0x59, 0x51, 0x4d, 0x4c, 0x48, 0x47, 0x48, 0x4f, 0x52, 0x59, 0x61, 0x61, 0x5b, 0x56, 0x55,\n    0x51, 0x56, 0x5d, 0x62, 0x62, 0x65, 0x70, 0x7b, 0x8a, 0x80, 0x74, 0x6b, 0x65, 0x63, 0x64, 0x67,\n    0x62, 0x5e, 0x5f, 0x5f, 0x5f, 0x67, 0x6d, 0x6a, 0x6e, 0x6e, 0x72, 0x71, 0x61, 0x4b, 0x42, 0x46,\n    0x5a, 0x6d, 0x78, 0x76, 0x77, 0x7d, 0x77, 0x6a, 0x50, 0x53, 0x4c, 0x45, 0x47, 0x4a, 0x4b, 0x4d,\n    0x4a, 0x4d, 0x52, 0x58, 0x5d, 0x5f, 0x5b, 0x57, 0x50, 0x54, 0x5d, 0x68, 0x6d, 0x69, 0x61, 0x5b,\n    0x5a, 0x60, 0x65, 0x65, 0x62, 0x61, 0x65, 0x6a, 0x6c, 0x6d, 0x6a, 0x5f, 0x50, 0x46, 0x43, 0x45,\n    0x45, 0x46, 0x4b, 0x50, 0x52, 0x54, 0x58, 0x5d, 0x6b, 0x72, 0x76, 0x74, 0x71, 0x72, 0x76, 0x79,\n    0x7d, 0x7e, 0x7f, 0x7e, 0x7b, 0x7a, 0x79, 0x79, 0x7b, 0x76, 0x6d, 0x68, 0x6a, 0x70, 0x73, 0x72,\n    0x73, 0x7a, 0x7f, 0x7e, 0x7d, 0x7e, 0x7f, 0x7e, 0x80, 0x81, 0x83, 0x87, 0x8c, 0x8f, 0x90, 0x8f,\n    0x91, 0x91, 0x91, 0x92, 0x93, 0x95, 0x97, 0x98, 0x9e, 0x9d, 0x9b, 0x9b, 0x9c, 0x9f, 0xa0, 0xa1,\n    0xaa, 0xa9, 0xa9, 0xac, 0xad, 0xaa, 0xa8, 0xa8, 0xa9, 0xaa, 0xab, 0xab, 0xac, 0xac, 0xac, 0xab,\n    0xa9, 0xa8, 0xa8, 0xa9, 0xac, 0xaf, 0xb2, 0xb3, 0xb0, 0xb0, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb0,\n    0xb1, 0xb0, 0xb0, 0xb0, 0xb1, 0xb4, 0xb6, 0xb8, 0xba, 0xbb, 0xbc, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd,\n    0xb7, 0xb5, 0xb2, 0xb2, 0xb2, 0xb3, 0xb3, 0xb3, 0xae, 0xae, 0xaf, 0xaf, 0xae, 0xaa, 0xa5, 0xa2,\n    0xa2, 0xa2, 0xa4, 0xa5, 0xa2, 0x9d, 0x9c, 0x9e, 0x9f, 0x9e, 0x9e, 0x9d, 0x9d, 0x9c, 0x9d, 0x9d,\n    0x9b, 0x98, 0x95, 0x94, 0x92, 0x8f, 0x90, 0x92, 0x93, 0x94, 0x93, 0x91, 0x8e, 0x8b, 0x89, 0x89,\n    0x88, 0x86, 0x84, 0x83, 0x83, 0x82, 0x80, 0x7f, 0x7c, 0x78, 0x76, 0x76, 0x75, 0x73, 0x72, 0x73,\n    0x70, 0x6f, 0x6e, 0x6d, 0x6d, 0x6c, 0x69, 0x67, 0x61, 0x64, 0x63, 0x5e, 0x5a, 0x5a, 0x57, 0x53,\n    0x56, 0x60, 0x64, 0x5b, 0x54, 0x55, 0x55, 0x52, 0x4c, 0x46, 0x42, 0x41, 0x41, 0x40, 0x40, 0x40,\n    0x43, 0x44, 0x48, 0x4a, 0x49, 0x47, 0x45, 0x45, 0x3e, 0x3e, 0x3b, 0x38, 0x39, 0x3e, 0x3f, 0x3b,\n    0x41, 0x41, 0x43, 0x45, 0x47, 0x49, 0x4e, 0x52, 0x55, 0x56, 0x56, 0x55, 0x53, 0x51, 0x51, 0x51,\n    0x5a, 0x79, 0x9c, 0xb0, 0xb5, 0xb4, 0xae, 0xa6, 0xa2, 0x9a, 0x91, 0x8b, 0x89, 0x83, 0x79, 0x71,\n    0x62, 0x63, 0x62, 0x64, 0x6f, 0x76, 0x6a, 0x56, 0x53, 0x51, 0x4b, 0x44, 0x42, 0x43, 0x43, 0x42,\n    0x51, 0x51, 0x53, 0x56, 0x53, 0x4d, 0x48, 0x47, 0x4c, 0x51, 0x5b, 0x63, 0x63, 0x62, 0x68, 0x72,\n    0x75, 0x65, 0x5c, 0x5a, 0x52, 0x4b, 0x59, 0x71, 0x62, 0x5e, 0x5c, 0x60, 0x6f, 0x7c, 0x6e, 0x51,\n    0x3f, 0x34, 0x28, 0x2e, 0x43, 0x52, 0x5b, 0x65, 0x55, 0x5f, 0x65, 0x5e, 0x4f, 0x40, 0x31, 0x27,\n    0x2e, 0x39, 0x48, 0x49, 0x3b, 0x35, 0x37, 0x38, 0x39, 0x2c, 0x24, 0x1f, 0x31, 0x42, 0x41, 0x56,\n    0x60, 0x6d, 0x5f, 0x4c, 0x3c, 0x32, 0x39, 0x3e, 0x29, 0x2d, 0x33, 0x33, 0x27, 0x1a, 0x18, 0x1e,\n    0x1c, 0x1b, 0x19, 0x15, 0x11, 0x10, 0x12, 0x14, 0x1d, 0x25, 0x26, 0x1d, 0x16, 0x16, 0x16, 0x11,\n    0x0d, 0x10, 0x10, 0x0f, 0x12, 0x18, 0x1a, 0x18, 0x14, 0x18, 0x1b, 0x1b, 0x18, 0x16, 0x18, 0x1b,\n    0x40, 0x3e, 0x3d, 0x3d, 0x3e, 0x3c, 0x37, 0x34, 0x28, 0x21, 0x1f, 0x1d, 0x18, 0x19, 0x1e, 0x1d,\n    0x1a, 0x1a, 0x1c, 0x20, 0x24, 0x27, 0x27, 0x26, 0x29, 0x2d, 0x31, 0x32, 0x31, 0x31, 0x33, 0x35,\n    0x36, 0x36, 0x33, 0x32, 0x34, 0x33, 0x38, 0x45, 0x4e, 0x63, 0x70, 0x75, 0x7f, 0x81, 0x76, 0x6c,\n    0x75, 0x72, 0x72, 0x76, 0x78, 0x73, 0x6d, 0x6a, 0x6b, 0x6e, 0x75, 0x7e, 0x82, 0x7d, 0x71, 0x66,\n    0x64, 0x64, 0x67, 0x6a, 0x69, 0x65, 0x61, 0x60, 0x61, 0x5c, 0x54, 0x4e, 0x4d, 0x52, 0x5a, 0x5f,\n    0x57, 0x46, 0x38, 0x36, 0x36, 0x33, 0x30, 0x31, 0x2e, 0x2c, 0x30, 0x37, 0x39, 0x35, 0x36, 0x3b,\n    0x49, 0x47, 0x43, 0x3e, 0x3e, 0x40, 0x3f, 0x3a, 0x3f, 0x40, 0x44, 0x47, 0x47, 0x48, 0x51, 0x5a,\n    0x6f, 0x6f, 0x6e, 0x6c, 0x6b, 0x6c, 0x71, 0x75, 0x75, 0x72, 0x6c, 0x68, 0x6a, 0x6b, 0x62, 0x57,\n    0x4b, 0x3b, 0x36, 0x3b, 0x3b, 0x36, 0x30, 0x27, 0x2d, 0x2c, 0x2f, 0x35, 0x3b, 0x3e, 0x40, 0x42,\n    0x44, 0x49, 0x4c, 0x4a, 0x4c, 0x53, 0x5a, 0x5e, 0x66, 0x60, 0x5d, 0x5e, 0x5d, 0x5b, 0x61, 0x69,\n    0x5e, 0x56, 0x4d, 0x4b, 0x50, 0x56, 0x59, 0x5a, 0x5b, 0x54, 0x50, 0x56, 0x5d, 0x5f, 0x5c, 0x59,\n    0x5b, 0x61, 0x61, 0x5d, 0x60, 0x6e, 0x7c, 0x83, 0x85, 0x7d, 0x75, 0x72, 0x71, 0x6d, 0x67, 0x62,\n    0x66, 0x63, 0x5d, 0x65, 0x5c, 0x69, 0x6a, 0x6c, 0x63, 0x66, 0x6a, 0x6b, 0x64, 0x57, 0x4d, 0x48,\n    0x4d, 0x5a, 0x63, 0x65, 0x6c, 0x7a, 0x80, 0x7e, 0x68, 0x62, 0x57, 0x4c, 0x48, 0x48, 0x48, 0x47,\n    0x43, 0x50, 0x58, 0x54, 0x4f, 0x51, 0x59, 0x5e, 0x54, 0x4e, 0x52, 0x5c, 0x61, 0x66, 0x65, 0x5e,\n    0x5d, 0x5c, 0x59, 0x53, 0x50, 0x53, 0x59, 0x5e, 0x62, 0x66, 0x65, 0x5e, 0x54, 0x4f, 0x4d, 0x4e,\n    0x48, 0x4a, 0x51, 0x5a, 0x5f, 0x5d, 0x59, 0x58, 0x6a, 0x71, 0x70, 0x66, 0x64, 0x6b, 0x6c, 0x65,\n    0x6a, 0x73, 0x79, 0x76, 0x76, 0x7b, 0x7e, 0x7d, 0x79, 0x75, 0x6c, 0x64, 0x65, 0x6d, 0x71, 0x71,\n    0x71, 0x75, 0x7a, 0x7a, 0x79, 0x79, 0x7c, 0x80, 0x7f, 0x81, 0x82, 0x84, 0x88, 0x8f, 0x92, 0x91,\n    0x95, 0x94, 0x93, 0x95, 0x97, 0x9a, 0x9b, 0x9c, 0x9c, 0x9b, 0x9a, 0x9b, 0x9e, 0xa1, 0xa5, 0xa6,\n    0xab, 0xaa, 0xaa, 0xaa, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa8, 0xa8, 0xaa, 0xaa, 0xaa, 0xa9,\n    0xa9, 0xa9, 0xaa, 0xad, 0xb0, 0xb2, 0xb1, 0xb0, 0xac, 0xad, 0xae, 0xb0, 0xb2, 0xb3, 0xb4, 0xb5,\n    0xb4, 0xb3, 0xb3, 0xb3, 0xb5, 0xb7, 0xba, 0xbc, 0xba, 0xba, 0xbb, 0xbb, 0xbb, 0xbb, 0xba, 0xb9,\n    0xb7, 0xb7, 0xb6, 0xb6, 0xb5, 0xb4, 0xb3, 0xb3, 0xb0, 0xb1, 0xb2, 0xb3, 0xb1, 0xad, 0xa6, 0xa2,\n    0xa2, 0xa3, 0xa5, 0xa4, 0xa2, 0xa0, 0xa1, 0xa2, 0xa3, 0xa2, 0xa1, 0xa0, 0x9e, 0x9c, 0x9a, 0x99,\n    0x97, 0x96, 0x96, 0x97, 0x97, 0x96, 0x94, 0x92, 0x93, 0x94, 0x95, 0x93, 0x8f, 0x8c, 0x8a, 0x8a,\n    0x87, 0x86, 0x85, 0x85, 0x85, 0x84, 0x82, 0x7f, 0x7d, 0x7c, 0x7a, 0x79, 0x78, 0x78, 0x76, 0x74,\n    0x72, 0x71, 0x70, 0x6f, 0x6d, 0x6c, 0x6a, 0x69, 0x64, 0x64, 0x63, 0x62, 0x60, 0x5c, 0x57, 0x53,\n    0x59, 0x5d, 0x5d, 0x59, 0x58, 0x59, 0x59, 0x57, 0x58, 0x58, 0x5a, 0x5a, 0x55, 0x4b, 0x43, 0x40,\n    0x46, 0x4d, 0x56, 0x5d, 0x5c, 0x58, 0x57, 0x59, 0x54, 0x58, 0x55, 0x51, 0x54, 0x5b, 0x58, 0x50,\n    0x4d, 0x4d, 0x46, 0x41, 0x43, 0x43, 0x45, 0x4c, 0x4d, 0x4e, 0x55, 0x55, 0x4a, 0x44, 0x41, 0x3c,\n    0x4d, 0x78, 0xa9, 0xc3, 0xc8, 0xca, 0xcc, 0xcd, 0xcc, 0xd1, 0xd5, 0xd1, 0xc1, 0xa6, 0x9a, 0xa1,\n    0x8a, 0x79, 0x6b, 0x65, 0x61, 0x5c, 0x5e, 0x65, 0x5a, 0x52, 0x52, 0x5d, 0x64, 0x63, 0x62, 0x63,\n    0x6f, 0x6f, 0x6f, 0x69, 0x5b, 0x4f, 0x4d, 0x52, 0x56, 0x53, 0x54, 0x57, 0x52, 0x4d, 0x54, 0x61,\n    0x65, 0x70, 0x75, 0x6d, 0x62, 0x5a, 0x52, 0x49, 0x4f, 0x4f, 0x4d, 0x4b, 0x4a, 0x47, 0x3a, 0x2e,\n    0x28, 0x28, 0x2d, 0x35, 0x3b, 0x42, 0x4c, 0x56, 0x62, 0x59, 0x4e, 0x44, 0x3b, 0x32, 0x2e, 0x2e,\n    0x2e, 0x3f, 0x4a, 0x4d, 0x4c, 0x41, 0x31, 0x29, 0x30, 0x32, 0x25, 0x20, 0x28, 0x29, 0x30, 0x46,\n    0x5a, 0x49, 0x37, 0x2f, 0x2e, 0x31, 0x38, 0x3f, 0x29, 0x37, 0x3a, 0x2a, 0x1a, 0x18, 0x1d, 0x1e,\n    0x1e, 0x1a, 0x17, 0x15, 0x12, 0x11, 0x15, 0x1a, 0x22, 0x2d, 0x2a, 0x1f, 0x1e, 0x1e, 0x18, 0x12,\n    0x10, 0x11, 0x0f, 0x0d, 0x10, 0x17, 0x1b, 0x1a, 0x18, 0x1b, 0x1e, 0x1e, 0x1b, 0x1b, 0x1f, 0x22,\n    0x32, 0x33, 0x36, 0x3b, 0x3e, 0x3e, 0x3b, 0x37, 0x2a, 0x1f, 0x1b, 0x1b, 0x19, 0x1b, 0x1e, 0x1b,\n    0x1a, 0x1a, 0x1b, 0x1f, 0x23, 0x26, 0x27, 0x27, 0x29, 0x2d, 0x31, 0x33, 0x33, 0x33, 0x35, 0x37,\n    0x39, 0x39, 0x36, 0x36, 0x38, 0x36, 0x3b, 0x48, 0x58, 0x6c, 0x76, 0x74, 0x75, 0x71, 0x65, 0x5c,\n    0x4e, 0x5d, 0x71, 0x7e, 0x7f, 0x78, 0x6e, 0x68, 0x66, 0x64, 0x65, 0x6a, 0x6e, 0x6a, 0x5f, 0x54,\n    0x58, 0x5b, 0x62, 0x68, 0x67, 0x60, 0x58, 0x55, 0x57, 0x57, 0x56, 0x53, 0x52, 0x56, 0x5d, 0x62,\n    0x52, 0x45, 0x3a, 0x3a, 0x3a, 0x36, 0x31, 0x2f, 0x2d, 0x31, 0x3e, 0x4e, 0x53, 0x4e, 0x49, 0x48,\n    0x4f, 0x49, 0x3f, 0x39, 0x3c, 0x41, 0x41, 0x3c, 0x3e, 0x3e, 0x41, 0x46, 0x48, 0x48, 0x49, 0x4d,\n    0x51, 0x55, 0x5a, 0x5f, 0x65, 0x6c, 0x73, 0x78, 0x7e, 0x7a, 0x71, 0x68, 0x66, 0x68, 0x65, 0x5e,\n    0x48, 0x3e, 0x42, 0x52, 0x5c, 0x59, 0x47, 0x31, 0x31, 0x30, 0x32, 0x37, 0x3c, 0x3f, 0x42, 0x46,\n    0x46, 0x47, 0x45, 0x41, 0x41, 0x47, 0x4c, 0x4e, 0x59, 0x5d, 0x62, 0x66, 0x65, 0x62, 0x62, 0x64,\n    0x67, 0x5a, 0x4d, 0x4c, 0x56, 0x60, 0x65, 0x64, 0x65, 0x58, 0x4c, 0x4a, 0x52, 0x5c, 0x66, 0x6d,\n    0x65, 0x68, 0x67, 0x64, 0x6a, 0x7a, 0x88, 0x8d, 0x74, 0x6a, 0x65, 0x6c, 0x73, 0x72, 0x6d, 0x69,\n    0x7a, 0x7b, 0x79, 0x72, 0x5d, 0x5b, 0x60, 0x66, 0x6b, 0x66, 0x63, 0x64, 0x65, 0x63, 0x5f, 0x5e,\n    0x58, 0x62, 0x68, 0x66, 0x67, 0x6e, 0x6f, 0x6b, 0x6f, 0x69, 0x5f, 0x54, 0x4a, 0x44, 0x44, 0x47,\n    0x47, 0x4a, 0x53, 0x5f, 0x61, 0x59, 0x51, 0x4f, 0x5d, 0x53, 0x50, 0x53, 0x56, 0x5d, 0x62, 0x5e,\n    0x56, 0x56, 0x50, 0x49, 0x49, 0x50, 0x55, 0x56, 0x4d, 0x54, 0x54, 0x4a, 0x44, 0x47, 0x49, 0x47,\n    0x54, 0x54, 0x57, 0x5c, 0x5f, 0x60, 0x62, 0x66, 0x63, 0x67, 0x66, 0x61, 0x62, 0x67, 0x65, 0x5e,\n    0x63, 0x67, 0x68, 0x67, 0x6c, 0x74, 0x76, 0x72, 0x6d, 0x6c, 0x68, 0x63, 0x64, 0x6a, 0x6d, 0x6d,\n    0x71, 0x73, 0x75, 0x75, 0x76, 0x78, 0x7c, 0x80, 0x80, 0x83, 0x86, 0x87, 0x8b, 0x90, 0x93, 0x93,\n    0x93, 0x93, 0x94, 0x96, 0x99, 0x9a, 0x9b, 0x9a, 0x9c, 0x9b, 0x9b, 0x9c, 0x9e, 0xa1, 0xa3, 0xa4,\n    0xa7, 0xa7, 0xa8, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xab, 0xaa, 0xa8, 0xa8, 0xa9, 0xaa, 0xaa, 0xaa,\n    0xaa, 0xaa, 0xab, 0xae, 0xb2, 0xb4, 0xb3, 0xb2, 0xb0, 0xb1, 0xb2, 0xb2, 0xb4, 0xb4, 0xb5, 0xb6,\n    0xb6, 0xb6, 0xb7, 0xb8, 0xb9, 0xb9, 0xba, 0xba, 0xb8, 0xb9, 0xb9, 0xba, 0xba, 0xba, 0xb9, 0xb9,\n    0xb8, 0xb7, 0xb7, 0xb7, 0xb6, 0xb6, 0xb5, 0xb5, 0xb2, 0xb1, 0xb1, 0xb1, 0xb0, 0xac, 0xa8, 0xa4,\n    0xa2, 0xa4, 0xa5, 0xa4, 0xa2, 0xa1, 0xa2, 0xa3, 0xa1, 0xa2, 0xa2, 0xa1, 0xa1, 0xa0, 0x9f, 0x9e,\n    0x9d, 0x9c, 0x9b, 0x9a, 0x99, 0x97, 0x94, 0x92, 0x92, 0x94, 0x95, 0x93, 0x90, 0x8d, 0x8c, 0x8c,\n    0x87, 0x86, 0x85, 0x85, 0x86, 0x85, 0x82, 0x80, 0x80, 0x7f, 0x7d, 0x7c, 0x7b, 0x7b, 0x79, 0x77,\n    0x73, 0x73, 0x72, 0x71, 0x6f, 0x6d, 0x6b, 0x69, 0x65, 0x63, 0x62, 0x62, 0x60, 0x5d, 0x57, 0x53,\n    0x54, 0x57, 0x57, 0x53, 0x4f, 0x50, 0x52, 0x51, 0x57, 0x57, 0x58, 0x58, 0x53, 0x49, 0x42, 0x3f,\n    0x48, 0x4f, 0x59, 0x5f, 0x5e, 0x5b, 0x5d, 0x61, 0x69, 0x6c, 0x6d, 0x6b, 0x6d, 0x71, 0x71, 0x6e,\n    0x6f, 0x67, 0x54, 0x45, 0x43, 0x41, 0x41, 0x45, 0x4c, 0x46, 0x44, 0x44, 0x42, 0x42, 0x43, 0x42,\n    0x3a, 0x4e, 0x63, 0x6a, 0x6d, 0x74, 0x7d, 0x82, 0x8e, 0x90, 0x94, 0x9e, 0xa0, 0x8e, 0x7b, 0x79,\n    0x6a, 0x68, 0x63, 0x5e, 0x5d, 0x61, 0x64, 0x65, 0x5c, 0x57, 0x5b, 0x69, 0x72, 0x72, 0x75, 0x7d,\n    0x8e, 0x82, 0x71, 0x61, 0x54, 0x50, 0x58, 0x63, 0x6d, 0x6a, 0x65, 0x5c, 0x50, 0x48, 0x4c, 0x56,\n    0x66, 0x74, 0x8b, 0xa8, 0xbd, 0xb4, 0x83, 0x51, 0x47, 0x42, 0x38, 0x2e, 0x2a, 0x2c, 0x2d, 0x2a,\n    0x2b, 0x28, 0x29, 0x32, 0x3f, 0x4c, 0x56, 0x5b, 0x55, 0x48, 0x39, 0x33, 0x31, 0x2e, 0x29, 0x26,\n    0x2f, 0x3c, 0x45, 0x47, 0x46, 0x3d, 0x33, 0x32, 0x1f, 0x1d, 0x22, 0x27, 0x24, 0x27, 0x3a, 0x4d,\n    0x57, 0x59, 0x54, 0x47, 0x3f, 0x3e, 0x3d, 0x39, 0x2c, 0x39, 0x3d, 0x30, 0x1f, 0x1b, 0x21, 0x27,\n    0x1c, 0x19, 0x17, 0x15, 0x11, 0x10, 0x14, 0x1a, 0x28, 0x32, 0x2e, 0x22, 0x20, 0x21, 0x1b, 0x16,\n    0x10, 0x11, 0x10, 0x0f, 0x12, 0x19, 0x1d, 0x1c, 0x1a, 0x1f, 0x23, 0x21, 0x1d, 0x1c, 0x1f, 0x24,\n    0x2f, 0x2f, 0x32, 0x37, 0x3b, 0x3d, 0x3b, 0x39, 0x2b, 0x1d, 0x17, 0x19, 0x19, 0x1c, 0x1d, 0x19,\n    0x1b, 0x1b, 0x1b, 0x1d, 0x21, 0x25, 0x28, 0x29, 0x2b, 0x2e, 0x32, 0x34, 0x35, 0x35, 0x38, 0x3a,\n    0x3a, 0x3a, 0x37, 0x37, 0x39, 0x37, 0x3b, 0x48, 0x65, 0x78, 0x7f, 0x78, 0x73, 0x6c, 0x60, 0x58,\n    0x4c, 0x5e, 0x6f, 0x71, 0x6b, 0x66, 0x62, 0x5f, 0x64, 0x61, 0x5f, 0x62, 0x65, 0x60, 0x54, 0x49,\n    0x48, 0x4d, 0x57, 0x5f, 0x5f, 0x57, 0x50, 0x4c, 0x4d, 0x49, 0x47, 0x47, 0x4b, 0x4d, 0x4d, 0x4c,\n    0x4c, 0x40, 0x36, 0x35, 0x35, 0x32, 0x2f, 0x2f, 0x2e, 0x33, 0x41, 0x54, 0x5f, 0x60, 0x5d, 0x5d,\n    0x5e, 0x5b, 0x53, 0x4b, 0x46, 0x45, 0x43, 0x41, 0x47, 0x44, 0x43, 0x46, 0x48, 0x46, 0x43, 0x42,\n    0x48, 0x4c, 0x52, 0x56, 0x5a, 0x5d, 0x62, 0x65, 0x6e, 0x6e, 0x68, 0x62, 0x62, 0x67, 0x69, 0x66,\n    0x54, 0x4a, 0x4b, 0x5b, 0x6b, 0x71, 0x61, 0x47, 0x32, 0x30, 0x30, 0x33, 0x35, 0x38, 0x3d, 0x43,\n    0x4d, 0x4d, 0x49, 0x44, 0x41, 0x43, 0x44, 0x44, 0x4b, 0x52, 0x59, 0x5c, 0x5f, 0x64, 0x69, 0x6b,\n    0x61, 0x5a, 0x56, 0x5c, 0x66, 0x6b, 0x65, 0x5d, 0x5a, 0x53, 0x4f, 0x51, 0x57, 0x5b, 0x5e, 0x60,\n    0x63, 0x64, 0x62, 0x62, 0x6a, 0x75, 0x7a, 0x79, 0x62, 0x56, 0x51, 0x5c, 0x6d, 0x75, 0x75, 0x73,\n    0x6f, 0x6e, 0x73, 0x67, 0x5a, 0x55, 0x63, 0x69, 0x6e, 0x6b, 0x6a, 0x6b, 0x6b, 0x68, 0x66, 0x66,\n    0x73, 0x78, 0x76, 0x6e, 0x6c, 0x71, 0x74, 0x72, 0x6c, 0x69, 0x69, 0x67, 0x5c, 0x49, 0x38, 0x30,\n    0x3f, 0x3e, 0x51, 0x73, 0x82, 0x74, 0x60, 0x58, 0x59, 0x53, 0x53, 0x55, 0x56, 0x5e, 0x65, 0x63,\n    0x5e, 0x5a, 0x50, 0x46, 0x44, 0x4a, 0x4d, 0x4c, 0x51, 0x52, 0x50, 0x4c, 0x49, 0x4a, 0x4d, 0x4e,\n    0x57, 0x57, 0x5a, 0x5d, 0x5c, 0x58, 0x56, 0x56, 0x65, 0x66, 0x67, 0x67, 0x6a, 0x6c, 0x69, 0x64,\n    0x59, 0x57, 0x52, 0x52, 0x5d, 0x6a, 0x6f, 0x6b, 0x60, 0x62, 0x64, 0x63, 0x64, 0x67, 0x6a, 0x6a,\n    0x70, 0x70, 0x6f, 0x70, 0x73, 0x77, 0x7c, 0x7f, 0x80, 0x85, 0x8a, 0x8b, 0x8d, 0x91, 0x94, 0x95,\n    0x92, 0x92, 0x94, 0x97, 0x9a, 0x9b, 0x9a, 0x98, 0x9a, 0x9b, 0x9c, 0x9e, 0x9f, 0xa0, 0xa1, 0xa1,\n    0xa3, 0xa4, 0xa6, 0xa7, 0xa9, 0xa9, 0xa9, 0xa9, 0xaa, 0xa8, 0xa7, 0xa7, 0xa8, 0xa9, 0xa9, 0xa9,\n    0xab, 0xab, 0xad, 0xb0, 0xb3, 0xb4, 0xb4, 0xb4, 0xb4, 0xb4, 0xb4, 0xb4, 0xb5, 0xb5, 0xb5, 0xb5,\n    0xb7, 0xb8, 0xb9, 0xba, 0xbb, 0xba, 0xb9, 0xb8, 0xb7, 0xb7, 0xb8, 0xb8, 0xb8, 0xb8, 0xb8, 0xb7,\n    0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb6, 0xb6, 0xb5, 0xb4, 0xb2, 0xb1, 0xaf, 0xae, 0xac, 0xa9, 0xa6,\n    0xa3, 0xa4, 0xa4, 0xa4, 0xa2, 0xa2, 0xa2, 0xa3, 0xa3, 0xa3, 0xa3, 0xa3, 0xa3, 0xa3, 0xa2, 0xa2,\n    0x9f, 0x9d, 0x9a, 0x98, 0x97, 0x95, 0x94, 0x92, 0x92, 0x93, 0x94, 0x93, 0x91, 0x8f, 0x8e, 0x8e,\n    0x88, 0x87, 0x86, 0x86, 0x86, 0x85, 0x83, 0x81, 0x82, 0x81, 0x7f, 0x7e, 0x7e, 0x7d, 0x7b, 0x7a,\n    0x75, 0x75, 0x75, 0x74, 0x72, 0x6f, 0x6c, 0x6a, 0x66, 0x64, 0x62, 0x61, 0x61, 0x5e, 0x59, 0x54,\n    0x4f, 0x52, 0x51, 0x4b, 0x45, 0x45, 0x48, 0x4b, 0x4e, 0x4d, 0x4d, 0x4e, 0x4b, 0x44, 0x3f, 0x3d,\n    0x49, 0x4e, 0x54, 0x57, 0x53, 0x4f, 0x51, 0x56, 0x63, 0x62, 0x64, 0x66, 0x65, 0x64, 0x67, 0x6b,\n    0x6e, 0x6b, 0x61, 0x5b, 0x5f, 0x5f, 0x5a, 0x59, 0x52, 0x4f, 0x4e, 0x50, 0x4d, 0x47, 0x44, 0x45,\n    0x46, 0x4a, 0x4a, 0x46, 0x46, 0x4a, 0x4c, 0x4a, 0x48, 0x4f, 0x5a, 0x67, 0x6c, 0x61, 0x59, 0x5d,\n    0x5f, 0x68, 0x69, 0x61, 0x62, 0x69, 0x68, 0x5f, 0x56, 0x50, 0x55, 0x63, 0x6a, 0x68, 0x6e, 0x79,\n    0x79, 0x75, 0x6c, 0x5f, 0x53, 0x52, 0x5f, 0x6d, 0x75, 0x74, 0x6d, 0x60, 0x51, 0x48, 0x49, 0x4d,\n    0x62, 0x72, 0x8b, 0xa9, 0xc0, 0xb6, 0x7f, 0x46, 0x3f, 0x3d, 0x37, 0x2f, 0x29, 0x27, 0x27, 0x25,\n    0x28, 0x26, 0x27, 0x31, 0x43, 0x51, 0x53, 0x4f, 0x40, 0x36, 0x2e, 0x2f, 0x32, 0x2f, 0x25, 0x1e,\n    0x14, 0x1e, 0x33, 0x4b, 0x4d, 0x34, 0x24, 0x2b, 0x33, 0x28, 0x2a, 0x26, 0x19, 0x27, 0x3e, 0x3f,\n    0x46, 0x53, 0x4f, 0x38, 0x2d, 0x37, 0x3f, 0x3d, 0x3a, 0x32, 0x27, 0x20, 0x1f, 0x21, 0x25, 0x27,\n    0x19, 0x19, 0x18, 0x15, 0x11, 0x0f, 0x14, 0x1b, 0x2c, 0x35, 0x31, 0x26, 0x26, 0x28, 0x22, 0x1d,\n    0x10, 0x11, 0x11, 0x11, 0x15, 0x1b, 0x1e, 0x1e, 0x1c, 0x21, 0x26, 0x25, 0x20, 0x1d, 0x1f, 0x21,\n    0x3a, 0x38, 0x36, 0x37, 0x39, 0x3a, 0x38, 0x37, 0x2a, 0x1c, 0x16, 0x18, 0x18, 0x1a, 0x1c, 0x1a,\n    0x1d, 0x1c, 0x1c, 0x1e, 0x21, 0x26, 0x2a, 0x2d, 0x2e, 0x30, 0x33, 0x35, 0x36, 0x37, 0x38, 0x3a,\n    0x3a, 0x3b, 0x38, 0x38, 0x3a, 0x37, 0x3b, 0x48, 0x60, 0x72, 0x78, 0x73, 0x71, 0x6f, 0x67, 0x61,\n    0x51, 0x5c, 0x60, 0x5a, 0x55, 0x5a, 0x5e, 0x5d, 0x58, 0x54, 0x51, 0x50, 0x50, 0x4d, 0x47, 0x42,\n    0x42, 0x46, 0x4d, 0x53, 0x54, 0x52, 0x52, 0x55, 0x5c, 0x5a, 0x56, 0x51, 0x4d, 0x4b, 0x4c, 0x4e,\n    0x5a, 0x4b, 0x3a, 0x31, 0x2d, 0x2b, 0x2c, 0x2e, 0x2f, 0x34, 0x41, 0x55, 0x64, 0x69, 0x69, 0x68,\n    0x6a, 0x70, 0x72, 0x6a, 0x5a, 0x4c, 0x46, 0x45, 0x49, 0x46, 0x43, 0x44, 0x46, 0x48, 0x48, 0x49,\n    0x4e, 0x53, 0x57, 0x56, 0x52, 0x50, 0x53, 0x57, 0x59, 0x5d, 0x5f, 0x61, 0x66, 0x6c, 0x6b, 0x65,\n    0x5c, 0x52, 0x4f, 0x56, 0x62, 0x6c, 0x62, 0x4c, 0x33, 0x30, 0x2d, 0x2d, 0x2d, 0x2f, 0x35, 0x3c,\n    0x45, 0x48, 0x4c, 0x4e, 0x50, 0x55, 0x5b, 0x5e, 0x5d, 0x60, 0x5e, 0x59, 0x59, 0x5d, 0x5d, 0x59,\n    0x5b, 0x5c, 0x61, 0x69, 0x6e, 0x6c, 0x63, 0x5b, 0x5d, 0x57, 0x52, 0x52, 0x54, 0x56, 0x59, 0x5b,\n    0x5f, 0x60, 0x63, 0x6a, 0x73, 0x77, 0x70, 0x66, 0x61, 0x59, 0x4f, 0x52, 0x64, 0x78, 0x81, 0x80,\n    0x71, 0x69, 0x6c, 0x60, 0x60, 0x59, 0x64, 0x60, 0x64, 0x65, 0x67, 0x65, 0x5f, 0x5a, 0x5c, 0x62,\n    0x65, 0x68, 0x66, 0x62, 0x68, 0x7a, 0x8a, 0x92, 0x7a, 0x6f, 0x68, 0x6b, 0x6d, 0x68, 0x60, 0x5d,\n    0x4d, 0x4b, 0x59, 0x73, 0x7d, 0x6e, 0x5b, 0x54, 0x4e, 0x55, 0x62, 0x67, 0x62, 0x60, 0x5f, 0x5a,\n    0x5e, 0x58, 0x53, 0x51, 0x50, 0x50, 0x53, 0x59, 0x5b, 0x4f, 0x47, 0x48, 0x47, 0x41, 0x43, 0x4a,\n    0x4f, 0x50, 0x55, 0x5f, 0x67, 0x6b, 0x6e, 0x6f, 0x66, 0x65, 0x64, 0x63, 0x61, 0x5e, 0x5c, 0x5b,\n    0x55, 0x50, 0x49, 0x47, 0x4e, 0x58, 0x5e, 0x5e, 0x5a, 0x5e, 0x62, 0x64, 0x65, 0x67, 0x69, 0x6a,\n    0x6f, 0x6d, 0x6d, 0x6f, 0x74, 0x79, 0x7c, 0x7d, 0x7f, 0x86, 0x8c, 0x8d, 0x8e, 0x90, 0x93, 0x94,\n    0x92, 0x92, 0x93, 0x96, 0x98, 0x9a, 0x99, 0x99, 0x99, 0x9b, 0x9d, 0x9f, 0x9f, 0x9e, 0x9e, 0x9e,\n    0xa1, 0xa2, 0xa4, 0xa6, 0xa8, 0xa8, 0xa8, 0xa8, 0xa6, 0xa5, 0xa5, 0xa7, 0xa8, 0xa9, 0xa8, 0xa7,\n    0xac, 0xad, 0xae, 0xb0, 0xb2, 0xb3, 0xb3, 0xb3, 0xb4, 0xb4, 0xb4, 0xb4, 0xb4, 0xb4, 0xb4, 0xb4,\n    0xb6, 0xb7, 0xb8, 0xb9, 0xb9, 0xb8, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb6, 0xb6, 0xb6, 0xb5, 0xb5,\n    0xb4, 0xb5, 0xb6, 0xb6, 0xb6, 0xb5, 0xb5, 0xb4, 0xb5, 0xb3, 0xb1, 0xb0, 0xae, 0xac, 0xa8, 0xa6,\n    0xa3, 0xa3, 0xa3, 0xa3, 0xa2, 0xa2, 0xa2, 0xa2, 0xa5, 0xa5, 0xa5, 0xa4, 0xa4, 0xa2, 0xa2, 0xa1,\n    0x9e, 0x9c, 0x99, 0x97, 0x96, 0x96, 0x95, 0x94, 0x93, 0x94, 0x93, 0x93, 0x91, 0x8f, 0x8e, 0x8e,\n    0x88, 0x88, 0x88, 0x88, 0x87, 0x86, 0x84, 0x82, 0x83, 0x81, 0x80, 0x7f, 0x7e, 0x7d, 0x7b, 0x7a,\n    0x78, 0x78, 0x79, 0x78, 0x75, 0x72, 0x6e, 0x6c, 0x69, 0x66, 0x63, 0x62, 0x63, 0x61, 0x5b, 0x57,\n    0x4f, 0x51, 0x4f, 0x48, 0x40, 0x3d, 0x41, 0x45, 0x40, 0x3d, 0x3c, 0x3d, 0x3d, 0x3c, 0x3c, 0x3d,\n    0x48, 0x48, 0x4a, 0x4c, 0x4b, 0x4a, 0x4c, 0x4f, 0x5c, 0x53, 0x50, 0x54, 0x53, 0x4d, 0x50, 0x58,\n    0x63, 0x66, 0x65, 0x67, 0x6e, 0x6f, 0x6b, 0x6b, 0x6a, 0x72, 0x78, 0x78, 0x6c, 0x56, 0x47, 0x45,\n    0x44, 0x45, 0x45, 0x46, 0x4a, 0x4f, 0x4d, 0x48, 0x48, 0x4d, 0x50, 0x52, 0x51, 0x4b, 0x4d, 0x5a,\n    0x5f, 0x65, 0x67, 0x65, 0x6b, 0x72, 0x6b, 0x5c, 0x4a, 0x42, 0x44, 0x4e, 0x51, 0x4c, 0x4f, 0x59,\n    0x54, 0x60, 0x68, 0x60, 0x4f, 0x49, 0x56, 0x67, 0x69, 0x6b, 0x68, 0x60, 0x58, 0x54, 0x52, 0x4f,\n    0x55, 0x5d, 0x62, 0x68, 0x75, 0x7e, 0x70, 0x59, 0x4d, 0x44, 0x35, 0x28, 0x23, 0x26, 0x2d, 0x32,\n    0x29, 0x2c, 0x33, 0x40, 0x4f, 0x56, 0x4c, 0x3e, 0x2d, 0x2e, 0x33, 0x38, 0x35, 0x29, 0x1d, 0x15,\n    0x17, 0x1d, 0x20, 0x25, 0x2b, 0x2a, 0x2e, 0x38, 0x1b, 0x19, 0x19, 0x18, 0x27, 0x49, 0x58, 0x49,\n    0x58, 0x5f, 0x52, 0x32, 0x22, 0x2e, 0x3c, 0x3f, 0x31, 0x20, 0x12, 0x13, 0x1a, 0x1d, 0x1c, 0x1a,\n    0x19, 0x19, 0x1a, 0x17, 0x12, 0x0f, 0x14, 0x1c, 0x2b, 0x35, 0x33, 0x2a, 0x2d, 0x30, 0x28, 0x21,\n    0x12, 0x12, 0x11, 0x13, 0x16, 0x1a, 0x1c, 0x1c, 0x1c, 0x21, 0x26, 0x28, 0x25, 0x20, 0x1d, 0x1b,\n    0x41, 0x3f, 0x3e, 0x3d, 0x3e, 0x3c, 0x38, 0x34, 0x28, 0x1b, 0x16, 0x19, 0x17, 0x17, 0x1b, 0x1c,\n    0x1f, 0x1f, 0x1f, 0x20, 0x23, 0x28, 0x2d, 0x31, 0x31, 0x33, 0x34, 0x35, 0x36, 0x37, 0x38, 0x39,\n    0x3d, 0x3e, 0x3b, 0x3b, 0x3d, 0x3a, 0x3e, 0x4a, 0x58, 0x68, 0x6d, 0x6b, 0x72, 0x77, 0x72, 0x6d,\n    0x54, 0x59, 0x5a, 0x56, 0x56, 0x59, 0x54, 0x4a, 0x4e, 0x4d, 0x4c, 0x49, 0x46, 0x45, 0x47, 0x49,\n    0x47, 0x47, 0x48, 0x49, 0x4b, 0x50, 0x5c, 0x66, 0x6d, 0x6f, 0x6d, 0x60, 0x52, 0x4e, 0x56, 0x61,\n    0x69, 0x5a, 0x46, 0x36, 0x2e, 0x2b, 0x2d, 0x2f, 0x2f, 0x37, 0x48, 0x5c, 0x6a, 0x6d, 0x68, 0x63,\n    0x63, 0x69, 0x6f, 0x6c, 0x61, 0x53, 0x49, 0x45, 0x3f, 0x42, 0x45, 0x47, 0x49, 0x4e, 0x53, 0x57,\n    0x6c, 0x70, 0x6f, 0x66, 0x59, 0x51, 0x52, 0x56, 0x51, 0x54, 0x55, 0x58, 0x60, 0x64, 0x5d, 0x53,\n    0x52, 0x50, 0x52, 0x54, 0x56, 0x59, 0x50, 0x3e, 0x35, 0x30, 0x2d, 0x2c, 0x2e, 0x30, 0x37, 0x3d,\n    0x40, 0x42, 0x46, 0x47, 0x49, 0x4e, 0x58, 0x61, 0x71, 0x73, 0x71, 0x6e, 0x6d, 0x6d, 0x64, 0x5a,\n    0x5c, 0x60, 0x64, 0x65, 0x64, 0x65, 0x6a, 0x6e, 0x66, 0x62, 0x5f, 0x60, 0x60, 0x5c, 0x58, 0x56,\n    0x54, 0x56, 0x5b, 0x66, 0x72, 0x74, 0x6a, 0x5e, 0x65, 0x65, 0x5c, 0x54, 0x5f, 0x78, 0x84, 0x80,\n    0x6c, 0x65, 0x6e, 0x6a, 0x6f, 0x65, 0x67, 0x5b, 0x5c, 0x57, 0x52, 0x4e, 0x4c, 0x4e, 0x57, 0x5f,\n    0x5c, 0x5e, 0x5b, 0x5a, 0x62, 0x75, 0x89, 0x93, 0x9e, 0x90, 0x81, 0x78, 0x71, 0x6a, 0x68, 0x6b,\n    0x74, 0x75, 0x77, 0x77, 0x71, 0x66, 0x5f, 0x5c, 0x62, 0x73, 0x88, 0x8b, 0x7a, 0x6b, 0x61, 0x57,\n    0x4e, 0x4d, 0x58, 0x68, 0x6b, 0x64, 0x67, 0x74, 0x81, 0x73, 0x5e, 0x4b, 0x40, 0x3b, 0x3c, 0x3e,\n    0x49, 0x42, 0x3f, 0x45, 0x52, 0x5e, 0x68, 0x6e, 0x77, 0x77, 0x74, 0x6c, 0x61, 0x5a, 0x5a, 0x5d,\n    0x59, 0x57, 0x53, 0x4f, 0x4c, 0x4d, 0x4c, 0x4b, 0x5a, 0x5d, 0x61, 0x64, 0x66, 0x66, 0x69, 0x6c,\n    0x6d, 0x6c, 0x6e, 0x72, 0x78, 0x7c, 0x7d, 0x7c, 0x7f, 0x86, 0x8b, 0x8d, 0x8d, 0x8f, 0x91, 0x92,\n    0x93, 0x92, 0x92, 0x93, 0x96, 0x98, 0x9a, 0x9a, 0x98, 0x9b, 0x9d, 0x9e, 0x9e, 0x9d, 0x9d, 0x9d,\n    0xa1, 0xa2, 0xa3, 0xa5, 0xa6, 0xa6, 0xa6, 0xa6, 0xa2, 0xa4, 0xa6, 0xa9, 0xac, 0xac, 0xaa, 0xa8,\n    0xac, 0xad, 0xae, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb3, 0xb3, 0xb3, 0xb4, 0xb4, 0xb4, 0xb5, 0xb5,\n    0xb5, 0xb5, 0xb5, 0xb6, 0xb7, 0xb7, 0xb8, 0xb9, 0xb8, 0xb8, 0xb7, 0xb6, 0xb5, 0xb4, 0xb3, 0xb3,\n    0xb4, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb5, 0xb4, 0xb4, 0xb4, 0xb2, 0xb1, 0xaf, 0xac, 0xa8, 0xa4,\n    0xa5, 0xa4, 0xa2, 0xa2, 0xa1, 0xa1, 0xa1, 0xa1, 0xa4, 0xa4, 0xa4, 0xa3, 0xa3, 0xa2, 0xa1, 0xa0,\n    0xa1, 0x9e, 0x9b, 0x99, 0x98, 0x98, 0x97, 0x97, 0x95, 0x94, 0x93, 0x92, 0x90, 0x8f, 0x8d, 0x8c,\n    0x89, 0x89, 0x8a, 0x89, 0x88, 0x86, 0x85, 0x84, 0x84, 0x82, 0x80, 0x7f, 0x7f, 0x7e, 0x7c, 0x7b,\n    0x7a, 0x7b, 0x7b, 0x7a, 0x78, 0x74, 0x70, 0x6e, 0x6c, 0x69, 0x66, 0x65, 0x65, 0x63, 0x5f, 0x5b,\n    0x52, 0x52, 0x4f, 0x48, 0x3e, 0x38, 0x3b, 0x3f, 0x38, 0x33, 0x30, 0x31, 0x34, 0x38, 0x3c, 0x40,\n    0x46, 0x44, 0x45, 0x4a, 0x51, 0x56, 0x5a, 0x5d, 0x5f, 0x50, 0x47, 0x4a, 0x49, 0x41, 0x42, 0x4b,\n    0x57, 0x68, 0x7f, 0x93, 0x9c, 0x93, 0x87, 0x87, 0x8b, 0x90, 0x8c, 0x82, 0x77, 0x60, 0x4b, 0x47,\n    0x47, 0x45, 0x43, 0x42, 0x44, 0x47, 0x47, 0x45, 0x4b, 0x47, 0x3f, 0x40, 0x48, 0x4b, 0x51, 0x5b,\n    0x5c, 0x57, 0x57, 0x60, 0x6d, 0x71, 0x67, 0x5c, 0x41, 0x39, 0x39, 0x42, 0x47, 0x44, 0x46, 0x4c,\n    0x65, 0x6e, 0x71, 0x63, 0x4f, 0x48, 0x52, 0x5f, 0x62, 0x62, 0x60, 0x5d, 0x5d, 0x5d, 0x59, 0x53,\n    0x53, 0x4f, 0x46, 0x42, 0x4d, 0x5f, 0x63, 0x5b, 0x4d, 0x4e, 0x4f, 0x50, 0x4c, 0x42, 0x35, 0x2d,\n    0x20, 0x26, 0x30, 0x3e, 0x49, 0x49, 0x3d, 0x30, 0x2d, 0x34, 0x3b, 0x38, 0x28, 0x18, 0x12, 0x14,\n    0x1c, 0x46, 0x5d, 0x59, 0x5c, 0x5d, 0x45, 0x25, 0x1e, 0x22, 0x1c, 0x1f, 0x36, 0x3e, 0x2f, 0x20,\n    0x37, 0x3b, 0x34, 0x20, 0x13, 0x16, 0x1d, 0x1f, 0x16, 0x12, 0x13, 0x18, 0x17, 0x11, 0x10, 0x14,\n    0x1a, 0x1b, 0x1c, 0x1a, 0x14, 0x11, 0x16, 0x1d, 0x29, 0x34, 0x33, 0x2e, 0x32, 0x34, 0x29, 0x1f,\n    0x15, 0x13, 0x12, 0x13, 0x15, 0x17, 0x19, 0x1a, 0x1d, 0x20, 0x25, 0x2a, 0x2b, 0x26, 0x1e, 0x18,\n    0x3c, 0x3d, 0x40, 0x43, 0x45, 0x41, 0x3b, 0x35, 0x28, 0x1a, 0x16, 0x19, 0x17, 0x16, 0x1b, 0x1d,\n    0x21, 0x21, 0x21, 0x22, 0x25, 0x2a, 0x30, 0x34, 0x34, 0x35, 0x35, 0x36, 0x37, 0x38, 0x39, 0x39,\n    0x3d, 0x3e, 0x3b, 0x3b, 0x3d, 0x3a, 0x3d, 0x49, 0x51, 0x5e, 0x61, 0x5e, 0x66, 0x6e, 0x6b, 0x67,\n    0x59, 0x5a, 0x59, 0x59, 0x5c, 0x5b, 0x4f, 0x41, 0x47, 0x51, 0x5d, 0x61, 0x5d, 0x56, 0x50, 0x4e,\n    0x4a, 0x48, 0x45, 0x43, 0x43, 0x4a, 0x5a, 0x69, 0x6d, 0x66, 0x5d, 0x57, 0x55, 0x56, 0x57, 0x57,\n    0x58, 0x4e, 0x41, 0x35, 0x2e, 0x2e, 0x2f, 0x31, 0x35, 0x3a, 0x44, 0x51, 0x5a, 0x5d, 0x5b, 0x58,\n    0x4e, 0x4b, 0x4b, 0x50, 0x53, 0x50, 0x4a, 0x45, 0x4d, 0x55, 0x5c, 0x5d, 0x5c, 0x5d, 0x61, 0x63,\n    0x69, 0x6b, 0x6b, 0x64, 0x5a, 0x54, 0x54, 0x57, 0x58, 0x57, 0x53, 0x53, 0x5b, 0x62, 0x5e, 0x55,\n    0x50, 0x4e, 0x4f, 0x4f, 0x4a, 0x49, 0x46, 0x3c, 0x36, 0x31, 0x2e, 0x2f, 0x33, 0x37, 0x3d, 0x42,\n    0x4a, 0x49, 0x47, 0x46, 0x46, 0x4b, 0x55, 0x5f, 0x5b, 0x5a, 0x57, 0x57, 0x5c, 0x5e, 0x5b, 0x55,\n    0x55, 0x5c, 0x62, 0x63, 0x61, 0x64, 0x6d, 0x76, 0x70, 0x6d, 0x6d, 0x6e, 0x6a, 0x5e, 0x50, 0x48,\n    0x4c, 0x4a, 0x4b, 0x53, 0x5c, 0x5f, 0x58, 0x51, 0x5a, 0x62, 0x5f, 0x56, 0x5b, 0x6c, 0x72, 0x6b,\n    0x5f, 0x66, 0x79, 0x7f, 0x7e, 0x75, 0x72, 0x69, 0x63, 0x59, 0x51, 0x52, 0x57, 0x59, 0x58, 0x56,\n    0x61, 0x64, 0x64, 0x63, 0x67, 0x71, 0x7b, 0x80, 0x88, 0x8a, 0x88, 0x7f, 0x74, 0x71, 0x79, 0x83,\n    0x8f, 0x98, 0x9b, 0x93, 0x85, 0x7b, 0x72, 0x6b, 0x6b, 0x7d, 0x91, 0x91, 0x7d, 0x70, 0x68, 0x60,\n    0x5e, 0x62, 0x74, 0x89, 0x8a, 0x7d, 0x7b, 0x86, 0x92, 0x94, 0x83, 0x64, 0x59, 0x67, 0x75, 0x74,\n    0x6e, 0x65, 0x5c, 0x5b, 0x60, 0x64, 0x66, 0x68, 0x6d, 0x71, 0x70, 0x66, 0x5d, 0x5c, 0x62, 0x67,\n    0x66, 0x66, 0x65, 0x64, 0x61, 0x5b, 0x54, 0x4f, 0x5b, 0x5c, 0x5f, 0x63, 0x65, 0x66, 0x68, 0x6c,\n    0x6c, 0x6e, 0x71, 0x76, 0x7b, 0x7e, 0x7e, 0x7c, 0x80, 0x86, 0x8a, 0x8b, 0x8c, 0x8f, 0x90, 0x90,\n    0x93, 0x92, 0x91, 0x92, 0x95, 0x98, 0x99, 0x9a, 0x99, 0x9b, 0x9d, 0x9d, 0x9b, 0x9b, 0x9c, 0x9e,\n    0xa0, 0xa1, 0xa1, 0xa2, 0xa2, 0xa3, 0xa4, 0xa4, 0xa4, 0xa5, 0xa8, 0xab, 0xae, 0xae, 0xac, 0xaa,\n    0xaa, 0xac, 0xae, 0xae, 0xae, 0xae, 0xae, 0xaf, 0xb2, 0xb2, 0xb3, 0xb3, 0xb4, 0xb5, 0xb5, 0xb5,\n    0xb4, 0xb5, 0xb5, 0xb6, 0xb7, 0xb8, 0xb9, 0xba, 0xb9, 0xb8, 0xb7, 0xb5, 0xb4, 0xb3, 0xb3, 0xb3,\n    0xb6, 0xb6, 0xb7, 0xb8, 0xb8, 0xb7, 0xb5, 0xb4, 0xb3, 0xb3, 0xb2, 0xb1, 0xb0, 0xad, 0xa9, 0xa6,\n    0xa7, 0xa5, 0xa3, 0xa1, 0xa1, 0xa1, 0xa1, 0xa0, 0xa0, 0xa1, 0xa1, 0xa2, 0xa2, 0xa2, 0xa2, 0xa1,\n    0xa2, 0x9f, 0x9b, 0x98, 0x96, 0x95, 0x94, 0x92, 0x96, 0x94, 0x92, 0x91, 0x90, 0x8f, 0x8d, 0x8c,\n    0x89, 0x8a, 0x8b, 0x8a, 0x88, 0x87, 0x86, 0x86, 0x86, 0x84, 0x82, 0x82, 0x81, 0x80, 0x7e, 0x7d,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x79, 0x76, 0x73, 0x71, 0x6d, 0x6b, 0x69, 0x67, 0x65, 0x63, 0x61, 0x5f,\n    0x54, 0x53, 0x50, 0x49, 0x3e, 0x36, 0x35, 0x38, 0x38, 0x32, 0x2e, 0x30, 0x35, 0x3a, 0x40, 0x45,\n    0x49, 0x45, 0x44, 0x49, 0x50, 0x56, 0x5b, 0x5f, 0x5b, 0x4a, 0x41, 0x43, 0x43, 0x3d, 0x3c, 0x44,\n    0x48, 0x5e, 0x7f, 0xa0, 0xac, 0x9f, 0x96, 0x9f, 0xbb, 0xb4, 0x98, 0x80, 0x7f, 0x79, 0x6b, 0x68,\n    0x65, 0x65, 0x65, 0x64, 0x62, 0x60, 0x5e, 0x5d, 0x58, 0x59, 0x55, 0x52, 0x55, 0x55, 0x59, 0x64,\n    0x66, 0x5c, 0x58, 0x62, 0x68, 0x62, 0x58, 0x52, 0x5d, 0x5b, 0x5e, 0x66, 0x6f, 0x74, 0x78, 0x7a,\n    0x7e, 0x83, 0x82, 0x77, 0x69, 0x62, 0x62, 0x64, 0x63, 0x60, 0x5c, 0x5c, 0x5c, 0x5a, 0x55, 0x51,\n    0x52, 0x56, 0x5a, 0x5c, 0x5c, 0x59, 0x4e, 0x45, 0x48, 0x43, 0x3e, 0x3b, 0x37, 0x30, 0x28, 0x24,\n    0x18, 0x1a, 0x22, 0x2e, 0x36, 0x37, 0x33, 0x30, 0x40, 0x41, 0x3d, 0x2e, 0x1a, 0x0e, 0x13, 0x1e,\n    0x34, 0x51, 0x64, 0x62, 0x5a, 0x49, 0x2f, 0x1b, 0x1f, 0x1e, 0x18, 0x22, 0x33, 0x24, 0x13, 0x1c,\n    0x19, 0x1d, 0x1e, 0x19, 0x14, 0x13, 0x16, 0x17, 0x18, 0x13, 0x10, 0x13, 0x14, 0x13, 0x15, 0x1a,\n    0x1d, 0x1d, 0x1e, 0x1c, 0x17, 0x14, 0x17, 0x1c, 0x28, 0x32, 0x33, 0x2f, 0x34, 0x35, 0x28, 0x1b,\n    0x19, 0x16, 0x13, 0x14, 0x16, 0x16, 0x17, 0x19, 0x1f, 0x22, 0x27, 0x2c, 0x2e, 0x2b, 0x23, 0x1d,\n    0x39, 0x3a, 0x3d, 0x41, 0x43, 0x41, 0x3c, 0x38, 0x2b, 0x1a, 0x13, 0x18, 0x19, 0x18, 0x1b, 0x1d,\n    0x21, 0x22, 0x23, 0x24, 0x26, 0x2b, 0x31, 0x35, 0x36, 0x36, 0x36, 0x37, 0x39, 0x3a, 0x3b, 0x3b,\n    0x3c, 0x3d, 0x3b, 0x3b, 0x3d, 0x39, 0x3c, 0x48, 0x51, 0x5d, 0x5d, 0x54, 0x56, 0x5a, 0x57, 0x54,\n    0x53, 0x51, 0x52, 0x56, 0x5c, 0x5d, 0x58, 0x52, 0x42, 0x4e, 0x5d, 0x64, 0x61, 0x57, 0x4d, 0x48,\n    0x4a, 0x4a, 0x48, 0x45, 0x41, 0x44, 0x4f, 0x5c, 0x68, 0x5e, 0x55, 0x57, 0x5f, 0x60, 0x55, 0x4a,\n    0x44, 0x3f, 0x37, 0x2f, 0x2c, 0x2e, 0x32, 0x34, 0x39, 0x3b, 0x3e, 0x41, 0x45, 0x48, 0x4a, 0x4a,\n    0x3f, 0x39, 0x36, 0x3b, 0x41, 0x44, 0x45, 0x47, 0x42, 0x4a, 0x4f, 0x4d, 0x48, 0x47, 0x49, 0x49,\n    0x46, 0x48, 0x4c, 0x51, 0x56, 0x5a, 0x5c, 0x5c, 0x61, 0x5f, 0x5a, 0x58, 0x60, 0x6b, 0x6f, 0x6c,\n    0x5c, 0x51, 0x4b, 0x4a, 0x47, 0x47, 0x49, 0x46, 0x3c, 0x36, 0x32, 0x35, 0x3b, 0x3f, 0x42, 0x44,\n    0x4c, 0x4b, 0x4d, 0x54, 0x5c, 0x61, 0x68, 0x6d, 0x63, 0x5e, 0x5a, 0x59, 0x59, 0x59, 0x5b, 0x5d,\n    0x54, 0x5c, 0x67, 0x6e, 0x6f, 0x6d, 0x6b, 0x6a, 0x78, 0x6e, 0x64, 0x60, 0x5f, 0x5b, 0x56, 0x52,\n    0x50, 0x4b, 0x49, 0x4c, 0x52, 0x55, 0x54, 0x52, 0x54, 0x58, 0x5b, 0x5a, 0x5e, 0x63, 0x62, 0x5e,\n    0x6d, 0x75, 0x81, 0x89, 0x7c, 0x76, 0x6f, 0x69, 0x6d, 0x69, 0x66, 0x67, 0x67, 0x61, 0x59, 0x54,\n    0x59, 0x5f, 0x67, 0x6c, 0x71, 0x76, 0x7b, 0x7d, 0x90, 0x92, 0x8b, 0x7a, 0x6e, 0x74, 0x83, 0x8e,\n    0x8f, 0x95, 0x98, 0x95, 0x91, 0x8a, 0x80, 0x76, 0x86, 0x93, 0xa1, 0xa2, 0x9a, 0x9b, 0x9f, 0x9c,\n    0x94, 0x98, 0xa2, 0xab, 0xa9, 0xa3, 0xa2, 0xa6, 0xc2, 0xc7, 0xb7, 0x8e, 0x6a, 0x5f, 0x64, 0x68,\n    0x69, 0x67, 0x67, 0x6a, 0x6c, 0x6c, 0x6d, 0x6f, 0x74, 0x7d, 0x80, 0x7a, 0x79, 0x83, 0x8d, 0x91,\n    0x82, 0x79, 0x72, 0x72, 0x76, 0x74, 0x6a, 0x61, 0x5b, 0x5a, 0x5d, 0x63, 0x67, 0x67, 0x69, 0x6b,\n    0x6e, 0x70, 0x74, 0x79, 0x7d, 0x7f, 0x7f, 0x7f, 0x83, 0x87, 0x8a, 0x8b, 0x8d, 0x91, 0x91, 0x90,\n    0x92, 0x91, 0x91, 0x93, 0x96, 0x98, 0x99, 0x98, 0x99, 0x9b, 0x9c, 0x9b, 0x99, 0x99, 0x9c, 0x9f,\n    0x9e, 0x9e, 0x9e, 0x9e, 0x9f, 0xa0, 0xa2, 0xa3, 0xa7, 0xa7, 0xa8, 0xaa, 0xac, 0xac, 0xab, 0xaa,\n    0xa7, 0xaa, 0xac, 0xad, 0xad, 0xad, 0xae, 0xaf, 0xb0, 0xb1, 0xb1, 0xb2, 0xb2, 0xb3, 0xb3, 0xb3,\n    0xb3, 0xb4, 0xb5, 0xb7, 0xb8, 0xb9, 0xb9, 0xb8, 0xb8, 0xb8, 0xb6, 0xb5, 0xb5, 0xb4, 0xb5, 0xb5,\n    0xb6, 0xb7, 0xb8, 0xb8, 0xb8, 0xb6, 0xb4, 0xb3, 0xb2, 0xb1, 0xb0, 0xaf, 0xaf, 0xae, 0xac, 0xab,\n    0xaa, 0xa7, 0xa4, 0xa3, 0xa2, 0xa2, 0xa1, 0xa0, 0xa0, 0xa0, 0xa0, 0xa1, 0xa1, 0xa0, 0xa0, 0xa0,\n    0x9e, 0x9c, 0x98, 0x96, 0x94, 0x93, 0x91, 0x90, 0x96, 0x94, 0x92, 0x91, 0x91, 0x91, 0x8f, 0x8d,\n    0x8a, 0x8b, 0x8c, 0x8b, 0x89, 0x87, 0x86, 0x87, 0x87, 0x85, 0x84, 0x83, 0x82, 0x81, 0x80, 0x7e,\n    0x7e, 0x7d, 0x7d, 0x7c, 0x7a, 0x77, 0x75, 0x74, 0x6d, 0x6c, 0x6b, 0x68, 0x65, 0x62, 0x62, 0x62,\n    0x58, 0x55, 0x51, 0x4b, 0x41, 0x36, 0x31, 0x32, 0x35, 0x30, 0x2e, 0x32, 0x3a, 0x40, 0x45, 0x49,\n    0x4c, 0x48, 0x46, 0x45, 0x45, 0x45, 0x4a, 0x4f, 0x50, 0x46, 0x41, 0x45, 0x46, 0x41, 0x42, 0x49,\n    0x4b, 0x4f, 0x5d, 0x73, 0x7a, 0x6f, 0x75, 0x8e, 0xa6, 0xa2, 0x7f, 0x5d, 0x5d, 0x61, 0x5b, 0x5b,\n    0x61, 0x65, 0x6d, 0x74, 0x77, 0x78, 0x7a, 0x7c, 0x7e, 0x84, 0x81, 0x78, 0x6d, 0x61, 0x5c, 0x63,\n    0x66, 0x62, 0x62, 0x64, 0x5e, 0x52, 0x4c, 0x4d, 0x5d, 0x63, 0x68, 0x6b, 0x71, 0x7a, 0x7e, 0x7d,\n    0x7a, 0x89, 0x96, 0x92, 0x83, 0x74, 0x69, 0x63, 0x5d, 0x5c, 0x5f, 0x65, 0x65, 0x5d, 0x57, 0x56,\n    0x52, 0x5c, 0x6a, 0x73, 0x6b, 0x5a, 0x4c, 0x48, 0x3b, 0x3a, 0x3c, 0x3d, 0x36, 0x28, 0x1c, 0x17,\n    0x24, 0x1d, 0x1d, 0x27, 0x2e, 0x2f, 0x33, 0x3a, 0x43, 0x3b, 0x2d, 0x20, 0x15, 0x12, 0x17, 0x1f,\n    0x41, 0x4c, 0x52, 0x4d, 0x3c, 0x25, 0x1d, 0x27, 0x26, 0x1d, 0x19, 0x1d, 0x1e, 0x15, 0x13, 0x1c,\n    0x19, 0x1c, 0x1b, 0x13, 0x0d, 0x0d, 0x10, 0x10, 0x20, 0x17, 0x0e, 0x0f, 0x16, 0x1c, 0x1f, 0x1e,\n    0x1f, 0x1f, 0x1e, 0x1d, 0x19, 0x15, 0x16, 0x1a, 0x24, 0x2e, 0x2e, 0x2c, 0x34, 0x36, 0x29, 0x1c,\n    0x1e, 0x19, 0x16, 0x17, 0x17, 0x17, 0x19, 0x1c, 0x21, 0x24, 0x29, 0x2c, 0x2c, 0x2b, 0x29, 0x28,\n    0x3d, 0x3b, 0x39, 0x39, 0x3b, 0x3c, 0x3b, 0x3a, 0x2d, 0x19, 0x11, 0x17, 0x1a, 0x1b, 0x1c, 0x1b,\n    0x21, 0x22, 0x23, 0x25, 0x27, 0x2b, 0x31, 0x36, 0x36, 0x36, 0x37, 0x38, 0x3a, 0x3d, 0x3e, 0x3e,\n    0x3f, 0x40, 0x3e, 0x3e, 0x3f, 0x3c, 0x3f, 0x4a, 0x68, 0x74, 0x71, 0x63, 0x5d, 0x5d, 0x5a, 0x58,\n    0x58, 0x56, 0x58, 0x5a, 0x59, 0x53, 0x4e, 0x4d, 0x4f, 0x50, 0x51, 0x50, 0x4e, 0x4c, 0x4d, 0x4e,\n    0x4c, 0x4e, 0x51, 0x4e, 0x47, 0x43, 0x48, 0x50, 0x59, 0x5e, 0x64, 0x65, 0x5e, 0x56, 0x4f, 0x4c,\n    0x48, 0x43, 0x3a, 0x31, 0x2c, 0x2e, 0x33, 0x35, 0x36, 0x3c, 0x43, 0x46, 0x46, 0x44, 0x3f, 0x3b,\n    0x3c, 0x3c, 0x3c, 0x3b, 0x37, 0x37, 0x40, 0x4b, 0x51, 0x56, 0x58, 0x54, 0x51, 0x54, 0x57, 0x58,\n    0x5a, 0x58, 0x58, 0x5e, 0x65, 0x67, 0x62, 0x5c, 0x57, 0x56, 0x52, 0x4f, 0x56, 0x63, 0x6b, 0x6c,\n    0x62, 0x52, 0x4c, 0x50, 0x50, 0x4f, 0x4d, 0x49, 0x45, 0x3e, 0x39, 0x3c, 0x42, 0x45, 0x45, 0x45,\n    0x49, 0x46, 0x4a, 0x55, 0x5c, 0x5a, 0x54, 0x50, 0x51, 0x52, 0x59, 0x61, 0x61, 0x5d, 0x5d, 0x62,\n    0x65, 0x68, 0x6f, 0x77, 0x7a, 0x76, 0x6b, 0x62, 0x5e, 0x5a, 0x5a, 0x62, 0x68, 0x66, 0x5e, 0x58,\n    0x4c, 0x49, 0x48, 0x4c, 0x52, 0x56, 0x58, 0x59, 0x5c, 0x59, 0x5d, 0x65, 0x6a, 0x67, 0x64, 0x65,\n    0x67, 0x69, 0x68, 0x71, 0x63, 0x67, 0x5f, 0x5c, 0x6e, 0x6f, 0x6f, 0x6a, 0x60, 0x59, 0x5a, 0x5f,\n    0x6d, 0x72, 0x79, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x77, 0x7e, 0x7e, 0x78, 0x78, 0x81, 0x83, 0x7e,\n    0x7d, 0x78, 0x75, 0x7e, 0x8e, 0x9e, 0xa3, 0xa3, 0x8c, 0x93, 0x9e, 0xa1, 0xa3, 0xb0, 0xbd, 0xbd,\n    0xbb, 0xc0, 0xc1, 0xbf, 0xc2, 0xcb, 0xd3, 0xd5, 0xd1, 0xd0, 0xc8, 0xa9, 0x75, 0x4a, 0x45, 0x56,\n    0x53, 0x54, 0x56, 0x58, 0x5a, 0x5e, 0x67, 0x70, 0x7f, 0x8a, 0x8e, 0x8a, 0x8d, 0x9d, 0xa7, 0xa7,\n    0xa0, 0x8b, 0x76, 0x73, 0x7b, 0x7d, 0x74, 0x69, 0x5b, 0x59, 0x5c, 0x64, 0x6a, 0x6a, 0x6a, 0x6b,\n    0x6f, 0x71, 0x75, 0x79, 0x7d, 0x7f, 0x80, 0x81, 0x86, 0x89, 0x8a, 0x8c, 0x8f, 0x92, 0x93, 0x91,\n    0x90, 0x90, 0x92, 0x94, 0x97, 0x98, 0x98, 0x97, 0x9a, 0x9b, 0x9b, 0x99, 0x97, 0x98, 0x9d, 0xa1,\n    0x9c, 0x9c, 0x9b, 0x9b, 0x9c, 0x9e, 0xa1, 0xa3, 0xa9, 0xa8, 0xa6, 0xa6, 0xa8, 0xa9, 0xa9, 0xa9,\n    0xa5, 0xa8, 0xab, 0xad, 0xad, 0xae, 0xaf, 0xb1, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xb0, 0xb0, 0xb0,\n    0xb1, 0xb3, 0xb6, 0xb8, 0xb9, 0xb8, 0xb6, 0xb5, 0xb7, 0xb7, 0xb6, 0xb5, 0xb5, 0xb6, 0xb7, 0xb7,\n    0xb5, 0xb6, 0xb7, 0xb7, 0xb7, 0xb5, 0xb3, 0xb1, 0xb2, 0xb0, 0xae, 0xad, 0xae, 0xaf, 0xaf, 0xaf,\n    0xac, 0xa9, 0xa6, 0xa4, 0xa3, 0xa3, 0xa2, 0xa0, 0xa2, 0xa2, 0xa1, 0xa1, 0xa0, 0x9e, 0x9d, 0x9d,\n    0x9c, 0x9a, 0x98, 0x97, 0x97, 0x96, 0x94, 0x93, 0x95, 0x93, 0x91, 0x91, 0x92, 0x92, 0x91, 0x90,\n    0x8a, 0x8c, 0x8d, 0x8c, 0x89, 0x87, 0x87, 0x87, 0x87, 0x85, 0x83, 0x82, 0x82, 0x81, 0x7f, 0x7e,\n    0x7e, 0x7e, 0x7d, 0x7c, 0x7a, 0x78, 0x77, 0x76, 0x6c, 0x6d, 0x6c, 0x68, 0x64, 0x61, 0x62, 0x64,\n    0x5b, 0x57, 0x53, 0x4e, 0x44, 0x37, 0x2f, 0x2e, 0x2f, 0x2c, 0x2d, 0x34, 0x3d, 0x44, 0x49, 0x4c,\n    0x4c, 0x4b, 0x49, 0x44, 0x3d, 0x3a, 0x3f, 0x46, 0x41, 0x3d, 0x3e, 0x44, 0x44, 0x41, 0x43, 0x4b,\n    0x48, 0x4b, 0x5e, 0x7c, 0x81, 0x6b, 0x68, 0x7e, 0x83, 0x8e, 0x75, 0x50, 0x48, 0x48, 0x44, 0x48,\n    0x47, 0x47, 0x49, 0x4b, 0x4e, 0x52, 0x59, 0x5f, 0x65, 0x64, 0x60, 0x60, 0x64, 0x5d, 0x50, 0x4b,\n    0x4d, 0x55, 0x5d, 0x5d, 0x53, 0x4a, 0x4d, 0x55, 0x5e, 0x68, 0x6d, 0x69, 0x68, 0x6f, 0x72, 0x6e,\n    0x74, 0x8f, 0xa5, 0x9e, 0x83, 0x69, 0x5c, 0x58, 0x51, 0x57, 0x66, 0x75, 0x75, 0x69, 0x62, 0x63,\n    0x65, 0x5e, 0x5c, 0x5e, 0x58, 0x49, 0x40, 0x40, 0x3e, 0x3a, 0x35, 0x2f, 0x25, 0x1b, 0x19, 0x1d,\n    0x27, 0x1a, 0x14, 0x1c, 0x22, 0x22, 0x28, 0x34, 0x32, 0x24, 0x16, 0x12, 0x14, 0x15, 0x13, 0x12,\n    0x2e, 0x4a, 0x4a, 0x2b, 0x18, 0x1c, 0x24, 0x29, 0x1a, 0x15, 0x19, 0x18, 0x13, 0x1e, 0x23, 0x13,\n    0x12, 0x1a, 0x1c, 0x14, 0x10, 0x16, 0x1a, 0x19, 0x11, 0x16, 0x1b, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c,\n    0x21, 0x1f, 0x1e, 0x1d, 0x1a, 0x16, 0x16, 0x18, 0x1f, 0x29, 0x2a, 0x29, 0x33, 0x38, 0x2d, 0x21,\n    0x21, 0x1b, 0x17, 0x18, 0x19, 0x19, 0x1b, 0x1f, 0x20, 0x25, 0x2a, 0x2b, 0x29, 0x28, 0x2c, 0x30,\n    0x47, 0x3d, 0x33, 0x32, 0x36, 0x39, 0x39, 0x39, 0x2f, 0x1f, 0x15, 0x19, 0x1c, 0x19, 0x1b, 0x21,\n    0x22, 0x23, 0x23, 0x25, 0x29, 0x2d, 0x31, 0x33, 0x35, 0x36, 0x38, 0x3a, 0x3c, 0x3d, 0x3f, 0x3f,\n    0x42, 0x41, 0x3f, 0x3f, 0x3f, 0x41, 0x44, 0x46, 0x53, 0x5e, 0x65, 0x61, 0x5e, 0x60, 0x5c, 0x55,\n    0x59, 0x57, 0x51, 0x4b, 0x49, 0x4c, 0x4f, 0x4f, 0x54, 0x52, 0x52, 0x54, 0x50, 0x48, 0x47, 0x4b,\n    0x4f, 0x51, 0x52, 0x4f, 0x4b, 0x4a, 0x4e, 0x52, 0x54, 0x54, 0x53, 0x4f, 0x4e, 0x4f, 0x4e, 0x4b,\n    0x47, 0x3f, 0x34, 0x2d, 0x2c, 0x2f, 0x33, 0x35, 0x38, 0x3e, 0x48, 0x4f, 0x51, 0x4f, 0x4b, 0x48,\n    0x3f, 0x3a, 0x3a, 0x3f, 0x3f, 0x3f, 0x4b, 0x5c, 0x5f, 0x60, 0x63, 0x65, 0x63, 0x5c, 0x53, 0x4c,\n    0x46, 0x48, 0x4e, 0x58, 0x65, 0x6c, 0x6a, 0x66, 0x56, 0x4c, 0x3f, 0x3e, 0x4e, 0x60, 0x64, 0x5d,\n    0x5d, 0x5a, 0x58, 0x5e, 0x67, 0x64, 0x50, 0x3a, 0x33, 0x33, 0x36, 0x3a, 0x40, 0x44, 0x45, 0x45,\n    0x46, 0x46, 0x49, 0x4f, 0x59, 0x60, 0x5f, 0x59, 0x5a, 0x53, 0x51, 0x57, 0x5c, 0x5a, 0x58, 0x59,\n    0x64, 0x6d, 0x77, 0x7c, 0x7f, 0x7e, 0x76, 0x6d, 0x6c, 0x63, 0x5c, 0x62, 0x6f, 0x76, 0x6f, 0x63,\n    0x55, 0x5b, 0x5c, 0x5b, 0x59, 0x52, 0x4e, 0x53, 0x60, 0x62, 0x5f, 0x61, 0x69, 0x6a, 0x64, 0x62,\n    0x61, 0x65, 0x69, 0x68, 0x65, 0x63, 0x63, 0x63, 0x6c, 0x6f, 0x6e, 0x67, 0x63, 0x64, 0x65, 0x65,\n    0x6d, 0x71, 0x77, 0x79, 0x76, 0x75, 0x7a, 0x82, 0x7e, 0x83, 0x7d, 0x78, 0x8f, 0xb0, 0xb5, 0xa2,\n    0x7d, 0x63, 0x5b, 0x67, 0x74, 0x85, 0x93, 0x93, 0x8f, 0x8f, 0x91, 0x8e, 0x86, 0x87, 0x9a, 0xb0,\n    0xbe, 0xbf, 0xc0, 0xc2, 0xc5, 0xc7, 0xc8, 0xc9, 0xc9, 0xca, 0xc8, 0xad, 0x7c, 0x58, 0x50, 0x53,\n    0x54, 0x53, 0x51, 0x50, 0x52, 0x58, 0x5f, 0x65, 0x7d, 0x87, 0x92, 0x96, 0x97, 0x94, 0x8b, 0x82,\n    0x7f, 0x81, 0x73, 0x73, 0x7a, 0x77, 0x74, 0x6d, 0x5b, 0x5f, 0x5f, 0x62, 0x69, 0x6a, 0x69, 0x6c,\n    0x72, 0x74, 0x76, 0x77, 0x7b, 0x7f, 0x80, 0x80, 0x85, 0x88, 0x8b, 0x8f, 0x91, 0x92, 0x91, 0x90,\n    0x8e, 0x90, 0x94, 0x96, 0x97, 0x98, 0x9a, 0x9b, 0x9e, 0x9a, 0x96, 0x96, 0x99, 0x9d, 0x9e, 0x9d,\n    0x99, 0x9d, 0x9f, 0x9f, 0x9d, 0x9c, 0x9e, 0xa1, 0xa3, 0xa5, 0xa7, 0xa9, 0xa9, 0xa8, 0xa8, 0xa7,\n    0xa8, 0xab, 0xaf, 0xb1, 0xb2, 0xb1, 0xb1, 0xb1, 0xac, 0xad, 0xad, 0xad, 0xad, 0xad, 0xaf, 0xb0,\n    0xb0, 0xb2, 0xb4, 0xb5, 0xb4, 0xb4, 0xb4, 0xb4, 0xb8, 0xb6, 0xb4, 0xb3, 0xb4, 0xb5, 0xb6, 0xb6,\n    0xb4, 0xb5, 0xb6, 0xb5, 0xb4, 0xb4, 0xb4, 0xb5, 0xb4, 0xb4, 0xb2, 0xb1, 0xb0, 0xb0, 0xb0, 0xb0,\n    0xaa, 0xa9, 0xa7, 0xa6, 0xa5, 0xa5, 0xa4, 0xa3, 0xa2, 0xa2, 0xa1, 0xa0, 0x9f, 0x9d, 0x9d, 0x9c,\n    0x9d, 0x9c, 0x99, 0x97, 0x96, 0x96, 0x96, 0x97, 0x97, 0x94, 0x91, 0x90, 0x91, 0x91, 0x8f, 0x8d,\n    0x8b, 0x8d, 0x8e, 0x8d, 0x8b, 0x88, 0x87, 0x88, 0x86, 0x86, 0x85, 0x83, 0x82, 0x80, 0x7f, 0x7f,\n    0x7d, 0x7d, 0x7e, 0x7e, 0x7d, 0x79, 0x75, 0x71, 0x71, 0x6f, 0x6c, 0x69, 0x67, 0x64, 0x63, 0x61,\n    0x5f, 0x58, 0x52, 0x4f, 0x49, 0x3c, 0x30, 0x2a, 0x25, 0x2b, 0x36, 0x44, 0x4e, 0x51, 0x52, 0x53,\n    0x55, 0x54, 0x4e, 0x42, 0x38, 0x36, 0x3d, 0x44, 0x42, 0x44, 0x45, 0x43, 0x3d, 0x3b, 0x43, 0x4c,\n    0x4d, 0x4f, 0x5f, 0x74, 0x76, 0x6a, 0x6a, 0x77, 0x94, 0x88, 0x6b, 0x4b, 0x3f, 0x45, 0x46, 0x3e,\n    0x3c, 0x37, 0x36, 0x39, 0x3c, 0x3c, 0x3a, 0x3a, 0x3f, 0x44, 0x47, 0x49, 0x4d, 0x52, 0x53, 0x4f,\n    0x59, 0x64, 0x70, 0x6f, 0x5d, 0x4e, 0x52, 0x60, 0x55, 0x56, 0x53, 0x53, 0x5d, 0x67, 0x63, 0x58,\n    0x76, 0x9a, 0xab, 0x90, 0x6d, 0x5f, 0x59, 0x51, 0x44, 0x50, 0x66, 0x73, 0x71, 0x70, 0x73, 0x71,\n    0x70, 0x68, 0x5b, 0x4f, 0x49, 0x45, 0x41, 0x3e, 0x33, 0x3b, 0x39, 0x30, 0x27, 0x1d, 0x1a, 0x20,\n    0x29, 0x20, 0x18, 0x16, 0x19, 0x1d, 0x21, 0x25, 0x21, 0x18, 0x10, 0x0f, 0x11, 0x13, 0x15, 0x17,\n    0x32, 0x2e, 0x27, 0x1d, 0x17, 0x18, 0x1f, 0x25, 0x22, 0x1c, 0x16, 0x16, 0x19, 0x1b, 0x19, 0x16,\n    0x17, 0x21, 0x22, 0x17, 0x13, 0x1a, 0x20, 0x1e, 0x17, 0x16, 0x16, 0x19, 0x1d, 0x20, 0x1f, 0x1b,\n    0x1c, 0x1d, 0x22, 0x24, 0x1d, 0x15, 0x18, 0x21, 0x29, 0x2b, 0x2b, 0x2c, 0x35, 0x3d, 0x34, 0x24,\n    0x23, 0x1e, 0x1d, 0x1a, 0x16, 0x19, 0x1e, 0x1c, 0x21, 0x27, 0x2d, 0x2f, 0x30, 0x31, 0x31, 0x30,\n    0x48, 0x42, 0x3c, 0x39, 0x38, 0x36, 0x36, 0x38, 0x2d, 0x1e, 0x14, 0x18, 0x1c, 0x1a, 0x1c, 0x21,\n    0x22, 0x23, 0x24, 0x27, 0x2b, 0x2f, 0x34, 0x36, 0x36, 0x37, 0x39, 0x3b, 0x3d, 0x3f, 0x40, 0x40,\n    0x42, 0x41, 0x3f, 0x3e, 0x3f, 0x41, 0x43, 0x45, 0x60, 0x5c, 0x58, 0x57, 0x58, 0x5a, 0x58, 0x55,\n    0x54, 0x4e, 0x47, 0x45, 0x4b, 0x54, 0x56, 0x54, 0x5a, 0x5a, 0x5b, 0x59, 0x53, 0x4b, 0x47, 0x47,\n    0x4e, 0x52, 0x57, 0x59, 0x57, 0x54, 0x52, 0x50, 0x57, 0x5a, 0x5a, 0x55, 0x51, 0x51, 0x53, 0x53,\n    0x50, 0x46, 0x3a, 0x31, 0x2e, 0x30, 0x33, 0x34, 0x39, 0x41, 0x4d, 0x55, 0x57, 0x53, 0x4e, 0x4b,\n    0x3b, 0x39, 0x3d, 0x45, 0x4a, 0x4c, 0x51, 0x59, 0x5d, 0x60, 0x66, 0x6b, 0x68, 0x5d, 0x4c, 0x40,\n    0x46, 0x44, 0x40, 0x3e, 0x43, 0x4b, 0x50, 0x4f, 0x4a, 0x45, 0x40, 0x42, 0x4b, 0x56, 0x59, 0x58,\n    0x5a, 0x68, 0x73, 0x6f, 0x61, 0x56, 0x4f, 0x4d, 0x3b, 0x36, 0x2f, 0x2a, 0x2d, 0x37, 0x45, 0x4f,\n    0x49, 0x47, 0x46, 0x4a, 0x55, 0x5f, 0x62, 0x5f, 0x68, 0x65, 0x63, 0x63, 0x62, 0x60, 0x61, 0x63,\n    0x5f, 0x64, 0x6b, 0x71, 0x77, 0x7b, 0x78, 0x71, 0x71, 0x67, 0x5c, 0x5c, 0x64, 0x6c, 0x6c, 0x68,\n    0x6e, 0x71, 0x6b, 0x61, 0x59, 0x54, 0x5a, 0x69, 0x62, 0x66, 0x61, 0x5b, 0x5c, 0x5d, 0x5d, 0x60,\n    0x6a, 0x67, 0x65, 0x62, 0x5f, 0x5e, 0x65, 0x6f, 0x71, 0x6f, 0x6b, 0x6a, 0x6f, 0x75, 0x74, 0x6f,\n    0x6a, 0x6c, 0x71, 0x75, 0x76, 0x76, 0x7a, 0x80, 0x87, 0x87, 0x81, 0x7d, 0x89, 0x9e, 0xa8, 0xa4,\n    0x8e, 0x78, 0x66, 0x61, 0x65, 0x7a, 0x9b, 0xb2, 0xa8, 0x9a, 0x92, 0x93, 0x8f, 0x85, 0x85, 0x8f,\n    0xa7, 0xaf, 0xb9, 0xc1, 0xc7, 0xcc, 0xd1, 0xd5, 0xd7, 0xd3, 0xcb, 0xae, 0x7f, 0x5d, 0x56, 0x57,\n    0x52, 0x56, 0x5b, 0x60, 0x62, 0x62, 0x63, 0x63, 0x81, 0x8f, 0x9c, 0x9a, 0x90, 0x87, 0x83, 0x81,\n    0x7a, 0x77, 0x67, 0x68, 0x73, 0x78, 0x7b, 0x73, 0x54, 0x5d, 0x62, 0x64, 0x68, 0x67, 0x66, 0x6c,\n    0x72, 0x72, 0x74, 0x79, 0x7d, 0x80, 0x81, 0x81, 0x86, 0x87, 0x89, 0x8c, 0x8d, 0x8e, 0x8e, 0x8e,\n    0x8e, 0x90, 0x93, 0x95, 0x97, 0x98, 0x99, 0x9a, 0x9d, 0x9a, 0x97, 0x97, 0x9a, 0x9d, 0x9d, 0x9c,\n    0x9b, 0x9c, 0x9e, 0x9d, 0x9c, 0x9b, 0x9d, 0x9e, 0xa0, 0xa4, 0xa8, 0xa8, 0xa6, 0xa5, 0xa6, 0xa8,\n    0xa8, 0xaa, 0xad, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xaf, 0xaf, 0xaf, 0xae, 0xaf, 0xb0, 0xb2,\n    0xb0, 0xb2, 0xb4, 0xb5, 0xb4, 0xb4, 0xb4, 0xb4, 0xb9, 0xb7, 0xb5, 0xb4, 0xb4, 0xb4, 0xb4, 0xb4,\n    0xb4, 0xb5, 0xb5, 0xb5, 0xb4, 0xb3, 0xb4, 0xb5, 0xb4, 0xb3, 0xb2, 0xb1, 0xb0, 0xb0, 0xb0, 0xb0,\n    0xac, 0xaa, 0xa8, 0xa6, 0xa5, 0xa4, 0xa2, 0xa1, 0xa2, 0xa2, 0xa1, 0xa0, 0x9f, 0x9d, 0x9d, 0x9c,\n    0x9e, 0x9d, 0x9d, 0x9c, 0x9b, 0x9a, 0x99, 0x98, 0x95, 0x94, 0x93, 0x91, 0x8f, 0x8e, 0x8e, 0x8e,\n    0x8d, 0x8f, 0x90, 0x8f, 0x8c, 0x8a, 0x89, 0x89, 0x86, 0x86, 0x86, 0x86, 0x84, 0x82, 0x7f, 0x7e,\n    0x80, 0x80, 0x7f, 0x7f, 0x7d, 0x7a, 0x76, 0x73, 0x72, 0x70, 0x6d, 0x6a, 0x68, 0x65, 0x62, 0x60,\n    0x5e, 0x58, 0x52, 0x4f, 0x48, 0x3c, 0x2f, 0x29, 0x2a, 0x32, 0x43, 0x53, 0x5d, 0x5e, 0x5d, 0x5d,\n    0x5f, 0x5e, 0x59, 0x4d, 0x40, 0x38, 0x3a, 0x3e, 0x3e, 0x40, 0x43, 0x44, 0x41, 0x40, 0x46, 0x4d,\n    0x4b, 0x46, 0x4b, 0x57, 0x58, 0x51, 0x54, 0x5e, 0x68, 0x63, 0x54, 0x44, 0x41, 0x46, 0x46, 0x3e,\n    0x33, 0x33, 0x36, 0x39, 0x3a, 0x38, 0x38, 0x3a, 0x33, 0x35, 0x36, 0x3a, 0x45, 0x54, 0x5d, 0x60,\n    0x4f, 0x59, 0x67, 0x6d, 0x64, 0x54, 0x46, 0x40, 0x3a, 0x39, 0x3c, 0x42, 0x47, 0x49, 0x49, 0x4b,\n    0x5b, 0x73, 0x7d, 0x6d, 0x5e, 0x5c, 0x54, 0x45, 0x48, 0x53, 0x68, 0x78, 0x79, 0x79, 0x78, 0x73,\n    0x71, 0x6c, 0x61, 0x54, 0x48, 0x41, 0x3e, 0x3c, 0x36, 0x3d, 0x3b, 0x30, 0x25, 0x1b, 0x18, 0x1e,\n    0x22, 0x1c, 0x18, 0x17, 0x18, 0x19, 0x1a, 0x1c, 0x13, 0x0f, 0x0d, 0x11, 0x15, 0x17, 0x18, 0x18,\n    0x20, 0x1d, 0x18, 0x13, 0x10, 0x13, 0x1a, 0x20, 0x21, 0x1c, 0x17, 0x18, 0x1c, 0x1e, 0x1c, 0x19,\n    0x19, 0x20, 0x20, 0x16, 0x10, 0x13, 0x16, 0x15, 0x16, 0x18, 0x1b, 0x1c, 0x1d, 0x1e, 0x1e, 0x1d,\n    0x22, 0x21, 0x23, 0x25, 0x20, 0x19, 0x1c, 0x23, 0x2a, 0x2d, 0x2f, 0x35, 0x43, 0x4c, 0x43, 0x32,\n    0x1e, 0x1b, 0x1e, 0x20, 0x1b, 0x1b, 0x1d, 0x1a, 0x23, 0x29, 0x2e, 0x30, 0x30, 0x32, 0x32, 0x30,\n    0x47, 0x46, 0x45, 0x42, 0x3c, 0x37, 0x39, 0x3e, 0x33, 0x23, 0x18, 0x18, 0x1c, 0x1b, 0x1c, 0x20,\n    0x22, 0x22, 0x24, 0x27, 0x2b, 0x31, 0x36, 0x38, 0x38, 0x38, 0x3a, 0x3c, 0x3e, 0x40, 0x41, 0x42,\n    0x42, 0x40, 0x3f, 0x3e, 0x3e, 0x40, 0x42, 0x44, 0x4d, 0x4d, 0x51, 0x5b, 0x5e, 0x5a, 0x56, 0x56,\n    0x4f, 0x4e, 0x50, 0x5a, 0x69, 0x6e, 0x66, 0x59, 0x57, 0x5b, 0x5d, 0x5a, 0x56, 0x52, 0x4d, 0x4a,\n    0x4d, 0x53, 0x5b, 0x61, 0x64, 0x62, 0x5e, 0x5b, 0x61, 0x65, 0x65, 0x5e, 0x55, 0x51, 0x53, 0x54,\n    0x58, 0x4d, 0x3f, 0x33, 0x2f, 0x2f, 0x2f, 0x30, 0x34, 0x3f, 0x4c, 0x55, 0x56, 0x52, 0x4d, 0x4a,\n    0x3e, 0x3b, 0x39, 0x3d, 0x46, 0x4f, 0x56, 0x58, 0x5c, 0x5b, 0x59, 0x58, 0x57, 0x53, 0x4c, 0x46,\n    0x45, 0x49, 0x47, 0x40, 0x3d, 0x40, 0x3f, 0x3a, 0x3b, 0x3e, 0x44, 0x4c, 0x50, 0x53, 0x58, 0x5d,\n    0x5a, 0x65, 0x6e, 0x6a, 0x5d, 0x4f, 0x45, 0x40, 0x48, 0x46, 0x42, 0x3d, 0x39, 0x3b, 0x42, 0x47,\n    0x46, 0x43, 0x3f, 0x40, 0x47, 0x52, 0x59, 0x5b, 0x5f, 0x5f, 0x5f, 0x61, 0x66, 0x6b, 0x6b, 0x68,\n    0x5e, 0x5e, 0x5e, 0x61, 0x68, 0x70, 0x72, 0x71, 0x67, 0x5f, 0x57, 0x56, 0x5c, 0x67, 0x70, 0x75,\n    0x78, 0x76, 0x6c, 0x61, 0x5c, 0x59, 0x60, 0x6d, 0x68, 0x70, 0x6c, 0x5e, 0x55, 0x50, 0x52, 0x59,\n    0x55, 0x59, 0x61, 0x68, 0x65, 0x5f, 0x61, 0x67, 0x68, 0x63, 0x5c, 0x5a, 0x60, 0x67, 0x69, 0x67,\n    0x6f, 0x6d, 0x6e, 0x72, 0x75, 0x76, 0x77, 0x79, 0x79, 0x7c, 0x83, 0x8a, 0x8c, 0x8b, 0x8d, 0x91,\n    0x87, 0x78, 0x64, 0x5e, 0x68, 0x77, 0x8b, 0x9e, 0x94, 0x8c, 0x91, 0xa0, 0x9d, 0x8b, 0x83, 0x8b,\n    0x91, 0x9b, 0xa6, 0xae, 0xb3, 0xb9, 0xc2, 0xca, 0xcc, 0xc6, 0xbb, 0x9e, 0x74, 0x5a, 0x56, 0x58,\n    0x60, 0x61, 0x60, 0x5f, 0x5d, 0x5c, 0x5c, 0x5c, 0x74, 0x88, 0x99, 0x9a, 0x8f, 0x8a, 0x8f, 0x96,\n    0xa6, 0xa9, 0x9a, 0x8b, 0x7e, 0x76, 0x79, 0x73, 0x4d, 0x5b, 0x64, 0x66, 0x66, 0x63, 0x64, 0x6d,\n    0x72, 0x70, 0x73, 0x7b, 0x81, 0x81, 0x81, 0x83, 0x87, 0x88, 0x88, 0x89, 0x8b, 0x8c, 0x8d, 0x8d,\n    0x8e, 0x90, 0x93, 0x95, 0x96, 0x97, 0x98, 0x9a, 0x9a, 0x98, 0x96, 0x97, 0x9a, 0x9c, 0x9c, 0x9b,\n    0x9c, 0x9b, 0x9b, 0x9a, 0x9a, 0x9a, 0x9b, 0x9c, 0x9d, 0xa1, 0xa6, 0xa6, 0xa2, 0xa1, 0xa3, 0xa7,\n    0xa7, 0xa9, 0xaa, 0xab, 0xaa, 0xaa, 0xab, 0xab, 0xaf, 0xaf, 0xb0, 0xaf, 0xaf, 0xaf, 0xb0, 0xb1,\n    0xaf, 0xb1, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb4, 0xb8, 0xb7, 0xb6, 0xb5, 0xb5, 0xb4, 0xb3, 0xb1,\n    0xb2, 0xb3, 0xb4, 0xb4, 0xb3, 0xb3, 0xb4, 0xb5, 0xb3, 0xb3, 0xb2, 0xb1, 0xb0, 0xb0, 0xaf, 0xaf,\n    0xae, 0xac, 0xa9, 0xa7, 0xa5, 0xa3, 0xa1, 0xa0, 0xa3, 0xa2, 0xa1, 0xa0, 0x9f, 0x9e, 0x9d, 0x9c,\n    0x9d, 0x9e, 0x9f, 0x9f, 0x9e, 0x9d, 0x9b, 0x9a, 0x95, 0x96, 0x96, 0x93, 0x8f, 0x8d, 0x8e, 0x8f,\n    0x8f, 0x90, 0x90, 0x8f, 0x8c, 0x8a, 0x89, 0x88, 0x85, 0x86, 0x87, 0x87, 0x85, 0x82, 0x7e, 0x7c,\n    0x80, 0x7f, 0x7e, 0x7d, 0x7d, 0x7b, 0x79, 0x76, 0x73, 0x71, 0x6e, 0x6c, 0x69, 0x66, 0x62, 0x5f,\n    0x5f, 0x5a, 0x55, 0x51, 0x4b, 0x3f, 0x32, 0x2a, 0x2b, 0x33, 0x42, 0x4f, 0x55, 0x55, 0x54, 0x54,\n    0x59, 0x5b, 0x5a, 0x53, 0x47, 0x3f, 0x3c, 0x3e, 0x41, 0x42, 0x44, 0x46, 0x45, 0x44, 0x46, 0x4a,\n    0x4b, 0x46, 0x43, 0x45, 0x46, 0x45, 0x47, 0x4c, 0x49, 0x47, 0x42, 0x3f, 0x3f, 0x41, 0x3e, 0x3a,\n    0x3a, 0x3c, 0x42, 0x4b, 0x50, 0x4e, 0x4a, 0x48, 0x47, 0x45, 0x42, 0x44, 0x4e, 0x5b, 0x63, 0x66,\n    0x62, 0x63, 0x60, 0x59, 0x54, 0x51, 0x4e, 0x4c, 0x46, 0x3e, 0x3b, 0x3c, 0x38, 0x34, 0x41, 0x55,\n    0x75, 0x80, 0x7a, 0x60, 0x4f, 0x52, 0x55, 0x4f, 0x4b, 0x55, 0x6b, 0x7c, 0x7f, 0x80, 0x7d, 0x76,\n    0x75, 0x70, 0x66, 0x57, 0x47, 0x3d, 0x3b, 0x3c, 0x3c, 0x42, 0x3e, 0x32, 0x25, 0x1a, 0x18, 0x1f,\n    0x1d, 0x1a, 0x19, 0x1a, 0x19, 0x15, 0x13, 0x14, 0x13, 0x11, 0x13, 0x18, 0x1b, 0x19, 0x16, 0x15,\n    0x16, 0x14, 0x11, 0x0f, 0x11, 0x15, 0x1b, 0x1f, 0x23, 0x1e, 0x1a, 0x1b, 0x20, 0x22, 0x1f, 0x1b,\n    0x1f, 0x22, 0x22, 0x1c, 0x14, 0x12, 0x13, 0x14, 0x17, 0x1b, 0x1f, 0x20, 0x1e, 0x1d, 0x1d, 0x1f,\n    0x24, 0x23, 0x24, 0x24, 0x1f, 0x19, 0x1b, 0x21, 0x2e, 0x30, 0x32, 0x37, 0x40, 0x43, 0x35, 0x22,\n    0x1b, 0x19, 0x21, 0x28, 0x25, 0x20, 0x1f, 0x1b, 0x23, 0x29, 0x2f, 0x31, 0x33, 0x35, 0x34, 0x32,\n    0x42, 0x43, 0x43, 0x41, 0x3c, 0x38, 0x3d, 0x44, 0x3e, 0x2e, 0x1f, 0x1a, 0x1b, 0x1c, 0x1d, 0x1f,\n    0x21, 0x22, 0x23, 0x26, 0x2b, 0x30, 0x35, 0x38, 0x39, 0x39, 0x3b, 0x3c, 0x3e, 0x40, 0x42, 0x43,\n    0x42, 0x41, 0x3f, 0x3e, 0x3e, 0x40, 0x42, 0x43, 0x44, 0x51, 0x61, 0x69, 0x66, 0x5f, 0x5c, 0x5d,\n    0x55, 0x57, 0x5d, 0x68, 0x75, 0x77, 0x6a, 0x5b, 0x52, 0x57, 0x59, 0x57, 0x58, 0x5c, 0x5c, 0x58,\n    0x56, 0x5a, 0x60, 0x64, 0x66, 0x65, 0x65, 0x64, 0x67, 0x6a, 0x6a, 0x63, 0x5b, 0x57, 0x57, 0x57,\n    0x5b, 0x50, 0x42, 0x35, 0x2f, 0x2d, 0x2d, 0x2d, 0x2e, 0x37, 0x43, 0x49, 0x4a, 0x47, 0x45, 0x45,\n    0x49, 0x49, 0x45, 0x42, 0x48, 0x52, 0x57, 0x56, 0x46, 0x4b, 0x51, 0x55, 0x56, 0x52, 0x4d, 0x4a,\n    0x53, 0x5e, 0x61, 0x5a, 0x54, 0x53, 0x4e, 0x46, 0x4e, 0x50, 0x56, 0x59, 0x52, 0x48, 0x46, 0x4b,\n    0x56, 0x56, 0x57, 0x5a, 0x59, 0x4f, 0x3d, 0x2f, 0x3a, 0x41, 0x4b, 0x53, 0x56, 0x54, 0x50, 0x4d,\n    0x4b, 0x4b, 0x49, 0x46, 0x48, 0x4f, 0x58, 0x5c, 0x58, 0x58, 0x58, 0x5c, 0x68, 0x70, 0x6a, 0x5e,\n    0x5f, 0x5c, 0x58, 0x57, 0x5c, 0x65, 0x6e, 0x73, 0x65, 0x5f, 0x59, 0x57, 0x5b, 0x63, 0x6c, 0x74,\n    0x73, 0x69, 0x59, 0x52, 0x58, 0x5c, 0x60, 0x69, 0x6d, 0x77, 0x74, 0x64, 0x55, 0x49, 0x46, 0x4c,\n    0x4d, 0x61, 0x78, 0x84, 0x82, 0x78, 0x6d, 0x65, 0x63, 0x62, 0x5e, 0x59, 0x57, 0x5c, 0x65, 0x6b,\n    0x6b, 0x65, 0x60, 0x62, 0x65, 0x66, 0x66, 0x66, 0x65, 0x6c, 0x79, 0x86, 0x86, 0x7d, 0x78, 0x79,\n    0x72, 0x73, 0x6b, 0x6a, 0x74, 0x74, 0x71, 0x78, 0x7f, 0x7e, 0x87, 0x96, 0x99, 0x90, 0x8c, 0x91,\n    0x94, 0x97, 0x9b, 0x9c, 0x9f, 0xa6, 0xb2, 0xbb, 0xb2, 0xaf, 0xa9, 0x92, 0x6f, 0x5d, 0x5f, 0x64,\n    0x63, 0x61, 0x5e, 0x5a, 0x59, 0x5b, 0x5f, 0x62, 0x63, 0x73, 0x83, 0x89, 0x87, 0x88, 0x8f, 0x97,\n    0x9a, 0xa2, 0x9b, 0x8f, 0x7e, 0x75, 0x75, 0x67, 0x4d, 0x5b, 0x64, 0x66, 0x65, 0x62, 0x65, 0x6e,\n    0x73, 0x70, 0x74, 0x7e, 0x82, 0x80, 0x7f, 0x82, 0x87, 0x88, 0x89, 0x8a, 0x8c, 0x8c, 0x8d, 0x8d,\n    0x8d, 0x8f, 0x92, 0x94, 0x95, 0x96, 0x97, 0x98, 0x97, 0x96, 0x95, 0x96, 0x98, 0x9a, 0x99, 0x98,\n    0x9a, 0x99, 0x97, 0x97, 0x98, 0x99, 0x9a, 0x9a, 0x9c, 0x9f, 0xa2, 0xa2, 0xa0, 0xa0, 0xa2, 0xa5,\n    0xa6, 0xa7, 0xa8, 0xa8, 0xa8, 0xa9, 0xaa, 0xac, 0xae, 0xae, 0xaf, 0xae, 0xad, 0xae, 0xaf, 0xb0,\n    0xae, 0xb0, 0xb1, 0xb2, 0xb1, 0xb1, 0xb2, 0xb3, 0xb7, 0xb6, 0xb5, 0xb5, 0xb6, 0xb5, 0xb3, 0xb1,\n    0xb1, 0xb2, 0xb3, 0xb3, 0xb2, 0xb2, 0xb3, 0xb4, 0xb3, 0xb2, 0xb1, 0xb1, 0xb0, 0xaf, 0xaf, 0xae,\n    0xae, 0xac, 0xa9, 0xa7, 0xa5, 0xa4, 0xa2, 0xa0, 0xa3, 0xa2, 0xa1, 0xa0, 0x9f, 0x9e, 0x9d, 0x9d,\n    0x9c, 0x9d, 0x9d, 0x9e, 0x9d, 0x9c, 0x9b, 0x9a, 0x98, 0x98, 0x98, 0x95, 0x92, 0x8f, 0x8f, 0x90,\n    0x8f, 0x8f, 0x8f, 0x8d, 0x8b, 0x89, 0x87, 0x86, 0x85, 0x85, 0x85, 0x84, 0x82, 0x80, 0x7d, 0x7b,\n    0x7d, 0x7c, 0x7b, 0x7b, 0x7c, 0x7c, 0x7b, 0x79, 0x75, 0x72, 0x70, 0x6e, 0x6b, 0x67, 0x62, 0x5e,\n    0x5f, 0x5c, 0x58, 0x55, 0x50, 0x45, 0x39, 0x30, 0x2f, 0x32, 0x38, 0x3d, 0x3e, 0x3c, 0x3e, 0x41,\n    0x42, 0x47, 0x4c, 0x4b, 0x46, 0x42, 0x42, 0x43, 0x49, 0x47, 0x46, 0x47, 0x47, 0x44, 0x44, 0x45,\n    0x45, 0x46, 0x46, 0x45, 0x45, 0x46, 0x46, 0x45, 0x46, 0x41, 0x3d, 0x3d, 0x3c, 0x3b, 0x3a, 0x3b,\n    0x42, 0x44, 0x4f, 0x61, 0x6f, 0x6e, 0x63, 0x59, 0x64, 0x62, 0x5f, 0x5e, 0x5e, 0x5c, 0x56, 0x51,\n    0x48, 0x54, 0x5d, 0x59, 0x55, 0x57, 0x5c, 0x5e, 0x54, 0x4b, 0x43, 0x3d, 0x34, 0x31, 0x43, 0x5b,\n    0x92, 0x94, 0x82, 0x60, 0x4c, 0x4f, 0x57, 0x57, 0x4e, 0x58, 0x6d, 0x7c, 0x7f, 0x7f, 0x7f, 0x7a,\n    0x7b, 0x72, 0x64, 0x54, 0x45, 0x3b, 0x39, 0x3b, 0x40, 0x45, 0x41, 0x34, 0x28, 0x1d, 0x1b, 0x23,\n    0x1e, 0x1c, 0x1c, 0x1c, 0x19, 0x14, 0x13, 0x14, 0x17, 0x16, 0x17, 0x1a, 0x1a, 0x17, 0x14, 0x14,\n    0x18, 0x16, 0x13, 0x13, 0x16, 0x1b, 0x1f, 0x22, 0x25, 0x20, 0x1c, 0x1e, 0x23, 0x25, 0x21, 0x1b,\n    0x22, 0x24, 0x25, 0x22, 0x1c, 0x17, 0x16, 0x18, 0x1b, 0x1c, 0x1f, 0x21, 0x1f, 0x1d, 0x1e, 0x21,\n    0x26, 0x27, 0x2a, 0x28, 0x21, 0x1b, 0x1c, 0x21, 0x2c, 0x32, 0x38, 0x3d, 0x42, 0x42, 0x36, 0x27,\n    0x19, 0x16, 0x20, 0x2c, 0x2a, 0x25, 0x22, 0x1f, 0x22, 0x29, 0x30, 0x35, 0x38, 0x39, 0x37, 0x34,\n    0x41, 0x3f, 0x3d, 0x3b, 0x38, 0x37, 0x3d, 0x44, 0x46, 0x37, 0x26, 0x1b, 0x19, 0x1c, 0x1f, 0x21,\n    0x24, 0x24, 0x25, 0x28, 0x2b, 0x30, 0x34, 0x37, 0x39, 0x3a, 0x3b, 0x3c, 0x3e, 0x41, 0x43, 0x44,\n    0x44, 0x43, 0x40, 0x3f, 0x3f, 0x40, 0x42, 0x43, 0x4c, 0x58, 0x60, 0x5c, 0x57, 0x59, 0x5b, 0x5b,\n    0x5d, 0x5a, 0x57, 0x56, 0x5c, 0x63, 0x65, 0x63, 0x5d, 0x5e, 0x5c, 0x5b, 0x60, 0x69, 0x6b, 0x67,\n    0x62, 0x66, 0x69, 0x6a, 0x68, 0x66, 0x67, 0x69, 0x6b, 0x6c, 0x6c, 0x69, 0x69, 0x6a, 0x69, 0x67,\n    0x5d, 0x55, 0x48, 0x3c, 0x33, 0x2f, 0x30, 0x31, 0x30, 0x35, 0x3b, 0x3e, 0x3e, 0x3d, 0x3e, 0x3f,\n    0x44, 0x4d, 0x53, 0x4f, 0x4b, 0x4a, 0x47, 0x42, 0x44, 0x48, 0x4b, 0x4b, 0x4a, 0x4d, 0x53, 0x58,\n    0x66, 0x6c, 0x6b, 0x62, 0x5d, 0x61, 0x64, 0x62, 0x60, 0x5f, 0x61, 0x61, 0x59, 0x4b, 0x43, 0x44,\n    0x4a, 0x4b, 0x4d, 0x4f, 0x4f, 0x49, 0x42, 0x3d, 0x38, 0x3c, 0x43, 0x4c, 0x54, 0x55, 0x50, 0x4b,\n    0x46, 0x4d, 0x50, 0x4d, 0x49, 0x4d, 0x54, 0x5a, 0x73, 0x74, 0x71, 0x6f, 0x72, 0x76, 0x71, 0x68,\n    0x61, 0x5d, 0x58, 0x54, 0x54, 0x5c, 0x68, 0x72, 0x72, 0x6a, 0x61, 0x5c, 0x5a, 0x5b, 0x62, 0x69,\n    0x71, 0x68, 0x58, 0x52, 0x5a, 0x60, 0x65, 0x6e, 0x6d, 0x74, 0x72, 0x67, 0x58, 0x48, 0x42, 0x49,\n    0x5e, 0x78, 0x90, 0x98, 0x96, 0x90, 0x82, 0x73, 0x64, 0x64, 0x64, 0x63, 0x62, 0x65, 0x6b, 0x71,\n    0x67, 0x5f, 0x59, 0x5a, 0x5f, 0x62, 0x63, 0x65, 0x69, 0x6a, 0x6d, 0x71, 0x74, 0x75, 0x75, 0x74,\n    0x77, 0x84, 0x83, 0x7a, 0x77, 0x70, 0x6f, 0x7a, 0x78, 0x73, 0x71, 0x7b, 0x8e, 0x9d, 0xa1, 0x9d,\n    0x95, 0x92, 0x8e, 0x8d, 0x91, 0x99, 0xa1, 0xa6, 0xaa, 0xab, 0xa8, 0x8e, 0x66, 0x50, 0x50, 0x54,\n    0x4a, 0x4c, 0x50, 0x54, 0x59, 0x5f, 0x65, 0x69, 0x70, 0x74, 0x7a, 0x81, 0x84, 0x84, 0x83, 0x83,\n    0x7c, 0x7c, 0x77, 0x7c, 0x82, 0x87, 0x80, 0x60, 0x51, 0x5c, 0x63, 0x64, 0x66, 0x65, 0x67, 0x6f,\n    0x74, 0x73, 0x77, 0x7f, 0x81, 0x7e, 0x7d, 0x7f, 0x83, 0x85, 0x88, 0x8b, 0x8d, 0x8d, 0x8c, 0x8b,\n    0x8d, 0x8f, 0x92, 0x94, 0x94, 0x95, 0x96, 0x97, 0x94, 0x94, 0x94, 0x95, 0x96, 0x97, 0x97, 0x96,\n    0x97, 0x96, 0x95, 0x95, 0x97, 0x99, 0x9b, 0x9b, 0x9d, 0x9d, 0x9d, 0x9e, 0xa0, 0xa1, 0xa2, 0xa2,\n    0xa5, 0xa6, 0xa7, 0xa8, 0xa8, 0xa9, 0xab, 0xad, 0xad, 0xae, 0xae, 0xae, 0xad, 0xae, 0xaf, 0xb0,\n    0xaf, 0xb0, 0xb2, 0xb2, 0xb2, 0xb2, 0xb3, 0xb4, 0xb5, 0xb4, 0xb4, 0xb5, 0xb6, 0xb5, 0xb3, 0xb1,\n    0xb1, 0xb1, 0xb2, 0xb2, 0xb1, 0xb1, 0xb1, 0xb2, 0xb2, 0xb2, 0xb1, 0xb0, 0xb0, 0xaf, 0xae, 0xae,\n    0xac, 0xaa, 0xa8, 0xa7, 0xa6, 0xa5, 0xa4, 0xa2, 0xa3, 0xa3, 0xa2, 0xa1, 0x9f, 0x9e, 0x9d, 0x9d,\n    0x9d, 0x9c, 0x9c, 0x9c, 0x9c, 0x9c, 0x9c, 0x9c, 0x9b, 0x99, 0x96, 0x94, 0x93, 0x92, 0x90, 0x8f,\n    0x90, 0x8f, 0x8e, 0x8c, 0x8b, 0x89, 0x87, 0x86, 0x87, 0x86, 0x84, 0x82, 0x81, 0x7f, 0x7f, 0x7e,\n    0x7f, 0x7e, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x77, 0x74, 0x70, 0x6e, 0x6d, 0x69, 0x63, 0x5e,\n    0x5e, 0x5d, 0x5a, 0x57, 0x53, 0x4c, 0x41, 0x38, 0x36, 0x35, 0x36, 0x37, 0x36, 0x34, 0x36, 0x3a,\n    0x36, 0x3b, 0x40, 0x41, 0x3e, 0x3c, 0x3d, 0x40, 0x44, 0x41, 0x3e, 0x40, 0x41, 0x40, 0x40, 0x40,\n    0x3a, 0x41, 0x44, 0x41, 0x3f, 0x40, 0x40, 0x3d, 0x43, 0x3e, 0x3b, 0x3c, 0x3c, 0x3b, 0x3d, 0x41,\n    0x3b, 0x44, 0x58, 0x6e, 0x7b, 0x78, 0x6e, 0x66, 0x6e, 0x6d, 0x6d, 0x6c, 0x66, 0x59, 0x4a, 0x40,\n    0x41, 0x51, 0x5c, 0x59, 0x51, 0x4e, 0x4e, 0x4e, 0x50, 0x51, 0x4f, 0x49, 0x43, 0x44, 0x4f, 0x59,\n    0x73, 0x6f, 0x60, 0x4f, 0x4f, 0x5a, 0x5c, 0x55, 0x54, 0x5e, 0x71, 0x7c, 0x7b, 0x7b, 0x7f, 0x7f,\n    0x82, 0x71, 0x5c, 0x4c, 0x3f, 0x38, 0x35, 0x37, 0x3f, 0x44, 0x3f, 0x33, 0x2a, 0x21, 0x1f, 0x27,\n    0x22, 0x1f, 0x1d, 0x1c, 0x19, 0x16, 0x17, 0x1a, 0x13, 0x11, 0x11, 0x12, 0x13, 0x13, 0x15, 0x19,\n    0x1a, 0x17, 0x15, 0x14, 0x17, 0x1c, 0x20, 0x22, 0x24, 0x1f, 0x1b, 0x1f, 0x26, 0x29, 0x24, 0x1e,\n    0x23, 0x25, 0x26, 0x24, 0x1e, 0x19, 0x18, 0x19, 0x1c, 0x1a, 0x1b, 0x1f, 0x20, 0x1e, 0x1e, 0x21,\n    0x26, 0x2c, 0x31, 0x2e, 0x25, 0x1d, 0x1e, 0x23, 0x2e, 0x38, 0x40, 0x41, 0x3e, 0x39, 0x30, 0x28,\n    0x1b, 0x14, 0x1b, 0x29, 0x2b, 0x26, 0x25, 0x24, 0x26, 0x2d, 0x35, 0x3a, 0x3d, 0x3c, 0x38, 0x32,\n    0x4a, 0x45, 0x41, 0x3c, 0x39, 0x38, 0x3d, 0x44, 0x46, 0x3c, 0x2c, 0x1d, 0x19, 0x1c, 0x21, 0x23,\n    0x27, 0x27, 0x28, 0x2a, 0x2d, 0x31, 0x35, 0x37, 0x3a, 0x3b, 0x3b, 0x3d, 0x3f, 0x41, 0x43, 0x45,\n    0x46, 0x45, 0x42, 0x41, 0x40, 0x41, 0x43, 0x44, 0x46, 0x4e, 0x51, 0x50, 0x57, 0x63, 0x65, 0x5e,\n    0x5b, 0x5a, 0x56, 0x51, 0x52, 0x5c, 0x69, 0x72, 0x6d, 0x68, 0x63, 0x64, 0x6c, 0x74, 0x73, 0x6e,\n    0x66, 0x6a, 0x6f, 0x73, 0x74, 0x74, 0x74, 0x75, 0x78, 0x75, 0x70, 0x6f, 0x72, 0x77, 0x77, 0x73,\n    0x61, 0x5d, 0x53, 0x46, 0x3a, 0x34, 0x35, 0x38, 0x37, 0x39, 0x3c, 0x3e, 0x3f, 0x3f, 0x3f, 0x40,\n    0x48, 0x55, 0x5d, 0x57, 0x4b, 0x43, 0x40, 0x3e, 0x4e, 0x4b, 0x44, 0x3c, 0x3a, 0x42, 0x51, 0x5d,\n    0x5f, 0x5e, 0x5b, 0x57, 0x57, 0x5d, 0x62, 0x64, 0x67, 0x66, 0x68, 0x6a, 0x68, 0x60, 0x57, 0x53,\n    0x44, 0x42, 0x42, 0x43, 0x43, 0x43, 0x44, 0x47, 0x40, 0x3e, 0x3f, 0x43, 0x49, 0x4b, 0x47, 0x42,\n    0x3f, 0x47, 0x4d, 0x4c, 0x49, 0x4b, 0x51, 0x56, 0x62, 0x67, 0x68, 0x63, 0x5e, 0x61, 0x69, 0x6f,\n    0x67, 0x60, 0x58, 0x51, 0x4c, 0x4d, 0x55, 0x5d, 0x6a, 0x64, 0x5f, 0x5c, 0x59, 0x5b, 0x65, 0x71,\n    0x6e, 0x75, 0x76, 0x74, 0x71, 0x69, 0x67, 0x6f, 0x6e, 0x6f, 0x6e, 0x6d, 0x64, 0x53, 0x4e, 0x59,\n    0x69, 0x80, 0x97, 0x9f, 0xa0, 0x9b, 0x8c, 0x7c, 0x67, 0x63, 0x61, 0x66, 0x6a, 0x69, 0x65, 0x61,\n    0x60, 0x5b, 0x58, 0x5b, 0x61, 0x67, 0x6b, 0x6f, 0x73, 0x71, 0x6e, 0x6c, 0x70, 0x76, 0x77, 0x75,\n    0x8a, 0x90, 0x8c, 0x81, 0x7c, 0x7a, 0x79, 0x7b, 0x6c, 0x72, 0x78, 0x7e, 0x8c, 0x9d, 0xa3, 0x9f,\n    0x90, 0x8b, 0x86, 0x86, 0x8a, 0x8d, 0x8d, 0x8b, 0x98, 0x9e, 0x9f, 0x89, 0x63, 0x4d, 0x4b, 0x4c,\n    0x4f, 0x50, 0x50, 0x52, 0x56, 0x5d, 0x66, 0x6c, 0x76, 0x74, 0x77, 0x7e, 0x82, 0x81, 0x7c, 0x78,\n    0x82, 0x80, 0x7d, 0x81, 0x85, 0x8c, 0x85, 0x5f, 0x54, 0x5e, 0x63, 0x65, 0x68, 0x67, 0x68, 0x6f,\n    0x72, 0x77, 0x7c, 0x7e, 0x7d, 0x7c, 0x7c, 0x7d, 0x7f, 0x82, 0x86, 0x89, 0x8b, 0x8a, 0x89, 0x88,\n    0x8c, 0x8e, 0x91, 0x93, 0x93, 0x94, 0x95, 0x96, 0x93, 0x93, 0x93, 0x94, 0x94, 0x95, 0x96, 0x96,\n    0x95, 0x95, 0x95, 0x96, 0x97, 0x99, 0x9b, 0x9c, 0x9f, 0x9c, 0x9b, 0x9c, 0xa0, 0xa2, 0xa2, 0xa1,\n    0xa4, 0xa5, 0xa7, 0xa7, 0xa8, 0xa9, 0xab, 0xad, 0xad, 0xae, 0xae, 0xae, 0xae, 0xaf, 0xb0, 0xb2,\n    0xb1, 0xb3, 0xb4, 0xb4, 0xb3, 0xb4, 0xb5, 0xb6, 0xb4, 0xb4, 0xb4, 0xb5, 0xb5, 0xb5, 0xb4, 0xb2,\n    0xb0, 0xb1, 0xb2, 0xb1, 0xb0, 0xaf, 0xb0, 0xb0, 0xb1, 0xb1, 0xb1, 0xb0, 0xaf, 0xae, 0xad, 0xad,\n    0xab, 0xaa, 0xa8, 0xa7, 0xa7, 0xa6, 0xa5, 0xa4, 0xa3, 0xa3, 0xa2, 0xa1, 0xa0, 0x9e, 0x9e, 0x9d,\n    0x9e, 0x9d, 0x9c, 0x9c, 0x9c, 0x9c, 0x9c, 0x9c, 0x9a, 0x97, 0x93, 0x92, 0x93, 0x93, 0x90, 0x8d,\n    0x90, 0x8f, 0x8d, 0x8c, 0x8b, 0x8a, 0x89, 0x87, 0x89, 0x87, 0x85, 0x83, 0x82, 0x81, 0x82, 0x82,\n    0x83, 0x82, 0x80, 0x7e, 0x7d, 0x7c, 0x79, 0x78, 0x78, 0x75, 0x71, 0x6e, 0x6d, 0x6a, 0x64, 0x60,\n    0x5c, 0x5b, 0x59, 0x56, 0x54, 0x4f, 0x46, 0x3e, 0x36, 0x35, 0x37, 0x3a, 0x3c, 0x3a, 0x3a, 0x3c,\n    0x3e, 0x40, 0x41, 0x3e, 0x39, 0x35, 0x35, 0x36, 0x35, 0x32, 0x31, 0x34, 0x38, 0x39, 0x3a, 0x3b,\n    0x3a, 0x3e, 0x3e, 0x39, 0x35, 0x36, 0x37, 0x36, 0x38, 0x37, 0x38, 0x39, 0x39, 0x38, 0x3a, 0x3d,\n    0x36, 0x48, 0x61, 0x73, 0x76, 0x70, 0x6e, 0x70, 0x75, 0x75, 0x76, 0x75, 0x6e, 0x60, 0x52, 0x4a,\n    0x66, 0x62, 0x5a, 0x50, 0x48, 0x46, 0x44, 0x42, 0x52, 0x57, 0x55, 0x4d, 0x4b, 0x53, 0x5a, 0x5b,\n    0x52, 0x52, 0x4c, 0x47, 0x50, 0x62, 0x6c, 0x6c, 0x5e, 0x66, 0x76, 0x7d, 0x79, 0x79, 0x7f, 0x80,\n    0x80, 0x6a, 0x50, 0x41, 0x39, 0x33, 0x31, 0x32, 0x3b, 0x3e, 0x39, 0x30, 0x2b, 0x24, 0x22, 0x28,\n    0x24, 0x20, 0x1d, 0x1d, 0x1c, 0x1b, 0x1d, 0x1f, 0x17, 0x14, 0x12, 0x11, 0x10, 0x10, 0x16, 0x1d,\n    0x1c, 0x1a, 0x17, 0x15, 0x17, 0x1b, 0x21, 0x25, 0x22, 0x1d, 0x1a, 0x1f, 0x28, 0x2c, 0x29, 0x23,\n    0x28, 0x2b, 0x2b, 0x26, 0x20, 0x1d, 0x1b, 0x18, 0x18, 0x17, 0x19, 0x20, 0x23, 0x20, 0x20, 0x22,\n    0x20, 0x26, 0x2c, 0x2a, 0x22, 0x1c, 0x1d, 0x21, 0x31, 0x3a, 0x41, 0x3d, 0x35, 0x2e, 0x29, 0x27,\n    0x27, 0x18, 0x1a, 0x29, 0x2d, 0x2b, 0x2b, 0x2d, 0x30, 0x35, 0x3b, 0x3e, 0x40, 0x3f, 0x39, 0x33,\n    0x51, 0x4e, 0x49, 0x42, 0x3b, 0x38, 0x3d, 0x44, 0x47, 0x41, 0x34, 0x24, 0x1c, 0x1d, 0x21, 0x22,\n    0x28, 0x28, 0x29, 0x2a, 0x2e, 0x32, 0x36, 0x38, 0x3c, 0x3c, 0x3c, 0x3e, 0x40, 0x42, 0x45, 0x46,\n    0x49, 0x47, 0x44, 0x42, 0x42, 0x42, 0x44, 0x45, 0x46, 0x4c, 0x54, 0x5c, 0x67, 0x6f, 0x6d, 0x67,\n    0x62, 0x67, 0x68, 0x60, 0x59, 0x5b, 0x65, 0x6d, 0x68, 0x61, 0x5f, 0x69, 0x77, 0x7c, 0x77, 0x71,\n    0x66, 0x67, 0x6a, 0x71, 0x79, 0x7e, 0x7d, 0x7b, 0x77, 0x70, 0x67, 0x61, 0x65, 0x6c, 0x6f, 0x6e,\n    0x64, 0x63, 0x5c, 0x4e, 0x3e, 0x34, 0x35, 0x39, 0x37, 0x3a, 0x3f, 0x46, 0x4b, 0x4c, 0x4b, 0x49,\n    0x5a, 0x66, 0x6f, 0x6a, 0x5c, 0x50, 0x4e, 0x51, 0x47, 0x4b, 0x50, 0x53, 0x53, 0x50, 0x4d, 0x4c,\n    0x4a, 0x46, 0x45, 0x4a, 0x50, 0x54, 0x56, 0x59, 0x6e, 0x6f, 0x6e, 0x6c, 0x6a, 0x64, 0x58, 0x4d,\n    0x45, 0x41, 0x3e, 0x40, 0x40, 0x3d, 0x3b, 0x3c, 0x35, 0x36, 0x3a, 0x42, 0x4a, 0x50, 0x50, 0x4e,\n    0x4a, 0x4e, 0x50, 0x50, 0x50, 0x54, 0x58, 0x59, 0x59, 0x5d, 0x63, 0x65, 0x64, 0x68, 0x74, 0x80,\n    0x6c, 0x62, 0x58, 0x51, 0x4b, 0x47, 0x47, 0x49, 0x51, 0x53, 0x58, 0x5b, 0x58, 0x58, 0x65, 0x75,\n    0x73, 0x81, 0x8b, 0x8b, 0x81, 0x6e, 0x63, 0x65, 0x6f, 0x6e, 0x74, 0x7e, 0x79, 0x64, 0x5e, 0x6e,\n    0x78, 0x83, 0x92, 0x9d, 0x9b, 0x8e, 0x7e, 0x74, 0x6b, 0x64, 0x60, 0x62, 0x65, 0x62, 0x5d, 0x5a,\n    0x57, 0x56, 0x58, 0x5c, 0x61, 0x64, 0x68, 0x6d, 0x72, 0x74, 0x75, 0x75, 0x74, 0x74, 0x75, 0x77,\n    0x8c, 0x8a, 0x88, 0x85, 0x83, 0x85, 0x7e, 0x6f, 0x71, 0x7e, 0x89, 0x89, 0x84, 0x83, 0x85, 0x87,\n    0x8c, 0x89, 0x86, 0x87, 0x89, 0x89, 0x84, 0x7f, 0x7f, 0x89, 0x91, 0x84, 0x69, 0x5c, 0x5c, 0x5b,\n    0x5f, 0x5d, 0x5b, 0x59, 0x5a, 0x60, 0x67, 0x6c, 0x65, 0x68, 0x70, 0x77, 0x77, 0x73, 0x72, 0x74,\n    0x79, 0x80, 0x84, 0x83, 0x7b, 0x7f, 0x7b, 0x57, 0x53, 0x5f, 0x65, 0x67, 0x69, 0x67, 0x67, 0x6e,\n    0x6f, 0x79, 0x7f, 0x7c, 0x79, 0x7b, 0x7d, 0x7c, 0x80, 0x81, 0x83, 0x86, 0x87, 0x87, 0x86, 0x86,\n    0x8c, 0x8e, 0x91, 0x92, 0x93, 0x93, 0x94, 0x95, 0x93, 0x93, 0x93, 0x94, 0x94, 0x95, 0x96, 0x97,\n    0x94, 0x96, 0x98, 0x98, 0x97, 0x98, 0x9a, 0x9c, 0x9e, 0x9d, 0x9c, 0x9d, 0x9f, 0xa2, 0xa3, 0xa4,\n    0xa3, 0xa4, 0xa6, 0xa6, 0xa6, 0xa7, 0xa8, 0xaa, 0xab, 0xac, 0xad, 0xad, 0xae, 0xae, 0xb0, 0xb2,\n    0xb2, 0xb3, 0xb4, 0xb4, 0xb3, 0xb4, 0xb5, 0xb6, 0xb6, 0xb5, 0xb4, 0xb4, 0xb4, 0xb4, 0xb3, 0xb1,\n    0xb1, 0xb1, 0xb1, 0xb0, 0xaf, 0xae, 0xae, 0xaf, 0xb0, 0xb0, 0xb0, 0xb0, 0xaf, 0xae, 0xad, 0xac,\n    0xab, 0xaa, 0xa8, 0xa7, 0xa7, 0xa6, 0xa5, 0xa4, 0xa4, 0xa3, 0xa2, 0xa1, 0xa0, 0x9f, 0x9e, 0x9d,\n    0x9c, 0x9d, 0x9d, 0x9d, 0x9d, 0x9c, 0x9b, 0x9a, 0x98, 0x96, 0x95, 0x93, 0x92, 0x91, 0x90, 0x8f,\n    0x90, 0x8e, 0x8c, 0x8b, 0x8b, 0x8a, 0x89, 0x87, 0x88, 0x87, 0x86, 0x84, 0x84, 0x83, 0x83, 0x83,\n    0x83, 0x82, 0x80, 0x7f, 0x7e, 0x7d, 0x7a, 0x78, 0x7a, 0x75, 0x70, 0x6e, 0x6d, 0x6b, 0x66, 0x61,\n    0x5c, 0x5b, 0x58, 0x55, 0x53, 0x51, 0x4a, 0x41, 0x38, 0x36, 0x37, 0x3c, 0x3f, 0x3e, 0x3c, 0x3b,\n    0x44, 0x45, 0x45, 0x42, 0x3c, 0x39, 0x38, 0x39, 0x37, 0x35, 0x36, 0x39, 0x3b, 0x3b, 0x3a, 0x3b,\n    0x3f, 0x3d, 0x38, 0x32, 0x2f, 0x2f, 0x30, 0x2f, 0x2c, 0x30, 0x33, 0x33, 0x32, 0x32, 0x33, 0x33,\n    0x39, 0x46, 0x57, 0x62, 0x61, 0x5e, 0x61, 0x67, 0x6d, 0x6e, 0x70, 0x71, 0x6b, 0x60, 0x59, 0x57,\n    0x61, 0x5b, 0x55, 0x53, 0x4f, 0x48, 0x41, 0x3d, 0x41, 0x45, 0x43, 0x3d, 0x40, 0x4b, 0x52, 0x52,\n    0x4e, 0x50, 0x4f, 0x4e, 0x59, 0x6c, 0x7b, 0x81, 0x67, 0x6c, 0x79, 0x7f, 0x7a, 0x7a, 0x7e, 0x7d,\n    0x70, 0x5b, 0x43, 0x37, 0x33, 0x30, 0x30, 0x33, 0x38, 0x3a, 0x35, 0x2f, 0x2d, 0x28, 0x25, 0x29,\n    0x23, 0x1f, 0x1f, 0x21, 0x24, 0x23, 0x23, 0x23, 0x21, 0x1e, 0x1c, 0x18, 0x14, 0x12, 0x17, 0x1d,\n    0x24, 0x22, 0x1d, 0x19, 0x18, 0x1c, 0x23, 0x29, 0x26, 0x20, 0x1c, 0x20, 0x29, 0x2e, 0x2a, 0x24,\n    0x2b, 0x31, 0x30, 0x27, 0x22, 0x23, 0x20, 0x1a, 0x14, 0x16, 0x1f, 0x29, 0x2a, 0x25, 0x24, 0x27,\n    0x22, 0x25, 0x27, 0x26, 0x24, 0x24, 0x25, 0x26, 0x2c, 0x35, 0x3d, 0x3f, 0x3d, 0x3e, 0x42, 0x46,\n    0x33, 0x1e, 0x1a, 0x28, 0x2f, 0x2d, 0x2e, 0x30, 0x38, 0x3b, 0x3e, 0x40, 0x42, 0x43, 0x3f, 0x3a,\n    0x51, 0x4f, 0x4c, 0x44, 0x3a, 0x35, 0x3a, 0x42, 0x49, 0x47, 0x3c, 0x2a, 0x1f, 0x1e, 0x20, 0x1f,\n    0x27, 0x27, 0x27, 0x29, 0x2d, 0x31, 0x35, 0x38, 0x3d, 0x3d, 0x3e, 0x3f, 0x41, 0x43, 0x46, 0x48,\n    0x4a, 0x48, 0x46, 0x43, 0x43, 0x43, 0x45, 0x46, 0x4d, 0x50, 0x56, 0x5c, 0x5c, 0x57, 0x57, 0x5a,\n    0x76, 0x7a, 0x77, 0x67, 0x54, 0x4c, 0x4f, 0x55, 0x56, 0x4e, 0x52, 0x67, 0x7b, 0x80, 0x7a, 0x73,\n    0x69, 0x64, 0x60, 0x66, 0x71, 0x77, 0x76, 0x71, 0x63, 0x5b, 0x50, 0x49, 0x4d, 0x58, 0x60, 0x63,\n    0x65, 0x65, 0x60, 0x50, 0x3d, 0x32, 0x32, 0x37, 0x31, 0x36, 0x40, 0x4c, 0x56, 0x59, 0x55, 0x51,\n    0x55, 0x65, 0x76, 0x79, 0x6a, 0x59, 0x51, 0x51, 0x52, 0x57, 0x5f, 0x67, 0x6b, 0x66, 0x5c, 0x55,\n    0x44, 0x39, 0x36, 0x3f, 0x49, 0x4f, 0x55, 0x5b, 0x5b, 0x5f, 0x60, 0x60, 0x60, 0x5f, 0x54, 0x47,\n    0x46, 0x49, 0x4e, 0x4e, 0x43, 0x36, 0x32, 0x34, 0x38, 0x38, 0x3a, 0x3e, 0x45, 0x4b, 0x50, 0x53,\n    0x50, 0x4f, 0x4c, 0x4a, 0x4e, 0x54, 0x56, 0x54, 0x58, 0x55, 0x58, 0x61, 0x67, 0x67, 0x69, 0x6d,\n    0x6c, 0x60, 0x56, 0x54, 0x54, 0x50, 0x4c, 0x4b, 0x46, 0x4f, 0x5a, 0x5e, 0x55, 0x4d, 0x55, 0x64,\n    0x83, 0x87, 0x86, 0x81, 0x79, 0x6a, 0x5f, 0x61, 0x6d, 0x6e, 0x7a, 0x8d, 0x89, 0x6e, 0x65, 0x76,\n    0x89, 0x81, 0x81, 0x85, 0x7c, 0x67, 0x59, 0x59, 0x5e, 0x5a, 0x57, 0x55, 0x52, 0x50, 0x56, 0x5e,\n    0x60, 0x61, 0x65, 0x69, 0x6a, 0x69, 0x6c, 0x6f, 0x72, 0x72, 0x76, 0x77, 0x72, 0x6d, 0x73, 0x7e,\n    0x81, 0x85, 0x8e, 0x8b, 0x80, 0x81, 0x80, 0x71, 0x75, 0x74, 0x75, 0x77, 0x77, 0x76, 0x79, 0x7f,\n    0x7b, 0x79, 0x79, 0x7b, 0x7e, 0x80, 0x7d, 0x7a, 0x86, 0x8c, 0x8f, 0x7d, 0x5e, 0x4b, 0x43, 0x3c,\n    0x42, 0x47, 0x4f, 0x55, 0x59, 0x5c, 0x5d, 0x5d, 0x67, 0x70, 0x7c, 0x7f, 0x76, 0x6c, 0x6e, 0x75,\n    0x80, 0x84, 0x88, 0x8a, 0x84, 0x87, 0x7d, 0x4f, 0x51, 0x5f, 0x68, 0x6a, 0x6a, 0x66, 0x66, 0x6d,\n    0x6d, 0x7a, 0x81, 0x7b, 0x76, 0x7a, 0x7e, 0x7d, 0x82, 0x82, 0x83, 0x84, 0x84, 0x85, 0x85, 0x85,\n    0x8c, 0x8e, 0x90, 0x92, 0x92, 0x93, 0x94, 0x95, 0x94, 0x94, 0x94, 0x94, 0x94, 0x95, 0x97, 0x98,\n    0x94, 0x97, 0x9a, 0x9a, 0x98, 0x97, 0x99, 0x9b, 0x9d, 0x9e, 0x9f, 0x9e, 0x9e, 0xa0, 0xa4, 0xa7,\n    0xa2, 0xa3, 0xa5, 0xa5, 0xa5, 0xa5, 0xa5, 0xa6, 0xa9, 0xaa, 0xab, 0xac, 0xac, 0xad, 0xaf, 0xb1,\n    0xb0, 0xb1, 0xb2, 0xb2, 0xb1, 0xb2, 0xb3, 0xb5, 0xb7, 0xb6, 0xb4, 0xb4, 0xb4, 0xb3, 0xb2, 0xb1,\n    0xb1, 0xb1, 0xb1, 0xb0, 0xae, 0xad, 0xad, 0xae, 0xb0, 0xb0, 0xb0, 0xb0, 0xaf, 0xae, 0xad, 0xac,\n    0xac, 0xaa, 0xa8, 0xa7, 0xa7, 0xa6, 0xa5, 0xa4, 0xa4, 0xa3, 0xa2, 0xa1, 0xa0, 0x9f, 0x9e, 0x9d,\n    0x9a, 0x9b, 0x9d, 0x9e, 0x9d, 0x9b, 0x98, 0x97, 0x96, 0x97, 0x98, 0x95, 0x92, 0x90, 0x91, 0x93,\n    0x8e, 0x8b, 0x89, 0x89, 0x89, 0x89, 0x87, 0x86, 0x85, 0x85, 0x85, 0x85, 0x84, 0x83, 0x82, 0x81,\n    0x7e, 0x7e, 0x7d, 0x7e, 0x7e, 0x7e, 0x7c, 0x7a, 0x7b, 0x76, 0x70, 0x6e, 0x6e, 0x6c, 0x67, 0x63,\n    0x5d, 0x5d, 0x59, 0x55, 0x54, 0x52, 0x4c, 0x44, 0x41, 0x3c, 0x3a, 0x3d, 0x40, 0x40, 0x3e, 0x3c,\n    0x40, 0x43, 0x45, 0x45, 0x43, 0x42, 0x43, 0x46, 0x48, 0x47, 0x48, 0x4b, 0x4a, 0x45, 0x42, 0x41,\n    0x3e, 0x38, 0x31, 0x2d, 0x2b, 0x2a, 0x28, 0x26, 0x24, 0x2a, 0x2d, 0x2b, 0x2c, 0x30, 0x33, 0x33,\n    0x38, 0x38, 0x3d, 0x43, 0x48, 0x49, 0x4a, 0x4c, 0x50, 0x52, 0x58, 0x5c, 0x59, 0x52, 0x50, 0x52,\n    0x5f, 0x57, 0x50, 0x4a, 0x40, 0x32, 0x2b, 0x2b, 0x24, 0x2b, 0x33, 0x39, 0x40, 0x48, 0x4c, 0x4b,\n    0x48, 0x45, 0x44, 0x50, 0x69, 0x7c, 0x7e, 0x75, 0x6c, 0x6f, 0x79, 0x7f, 0x7c, 0x7b, 0x7c, 0x78,\n    0x60, 0x4d, 0x39, 0x32, 0x30, 0x2f, 0x32, 0x37, 0x38, 0x3a, 0x34, 0x2f, 0x30, 0x2c, 0x28, 0x2a,\n    0x21, 0x1f, 0x21, 0x27, 0x2b, 0x2a, 0x27, 0x25, 0x21, 0x20, 0x20, 0x1e, 0x19, 0x16, 0x19, 0x1f,\n    0x2b, 0x28, 0x23, 0x1b, 0x18, 0x1b, 0x23, 0x2a, 0x2b, 0x24, 0x1e, 0x21, 0x29, 0x2d, 0x28, 0x22,\n    0x29, 0x31, 0x30, 0x26, 0x22, 0x25, 0x23, 0x1c, 0x12, 0x18, 0x26, 0x32, 0x31, 0x2a, 0x28, 0x2d,\n    0x30, 0x2f, 0x2d, 0x2d, 0x30, 0x35, 0x36, 0x35, 0x31, 0x37, 0x3d, 0x3e, 0x3f, 0x43, 0x4a, 0x4f,\n    0x37, 0x1d, 0x16, 0x24, 0x2b, 0x2a, 0x2a, 0x2c, 0x3c, 0x3e, 0x3e, 0x40, 0x43, 0x47, 0x46, 0x43,\n    0x54, 0x4d, 0x44, 0x3c, 0x34, 0x33, 0x3b, 0x46, 0x48, 0x48, 0x3f, 0x2d, 0x20, 0x1d, 0x21, 0x23,\n    0x25, 0x2a, 0x2e, 0x2c, 0x2d, 0x33, 0x39, 0x3b, 0x3f, 0x3c, 0x3d, 0x41, 0x43, 0x42, 0x44, 0x48,\n    0x4a, 0x47, 0x45, 0x45, 0x42, 0x3f, 0x41, 0x46, 0x4c, 0x49, 0x4a, 0x4e, 0x4a, 0x42, 0x42, 0x49,\n    0x58, 0x63, 0x67, 0x5e, 0x51, 0x4d, 0x4e, 0x50, 0x55, 0x59, 0x5b, 0x5b, 0x5f, 0x67, 0x6b, 0x6c,\n    0x65, 0x5e, 0x55, 0x51, 0x58, 0x63, 0x67, 0x66, 0x5c, 0x58, 0x53, 0x4e, 0x4a, 0x4c, 0x53, 0x5b,\n    0x68, 0x69, 0x63, 0x53, 0x40, 0x34, 0x31, 0x32, 0x34, 0x39, 0x43, 0x50, 0x5c, 0x60, 0x5f, 0x5c,\n    0x63, 0x68, 0x70, 0x75, 0x71, 0x66, 0x5d, 0x5a, 0x61, 0x6a, 0x75, 0x7a, 0x79, 0x71, 0x63, 0x58,\n    0x43, 0x38, 0x36, 0x3f, 0x4e, 0x5c, 0x5e, 0x54, 0x42, 0x3b, 0x39, 0x41, 0x4a, 0x4c, 0x49, 0x47,\n    0x44, 0x47, 0x48, 0x44, 0x3c, 0x35, 0x32, 0x33, 0x2d, 0x2f, 0x35, 0x3f, 0x44, 0x44, 0x44, 0x46,\n    0x4e, 0x54, 0x5c, 0x61, 0x63, 0x64, 0x65, 0x67, 0x63, 0x65, 0x6d, 0x77, 0x7a, 0x76, 0x73, 0x72,\n    0x70, 0x67, 0x5e, 0x5e, 0x62, 0x63, 0x60, 0x5c, 0x53, 0x50, 0x55, 0x5b, 0x51, 0x42, 0x45, 0x55,\n    0x72, 0x7a, 0x7d, 0x77, 0x75, 0x7b, 0x80, 0x81, 0x81, 0x78, 0x72, 0x70, 0x6f, 0x6d, 0x70, 0x76,\n    0x6c, 0x6f, 0x77, 0x7f, 0x80, 0x77, 0x6b, 0x64, 0x63, 0x5d, 0x5a, 0x56, 0x50, 0x57, 0x65, 0x6a,\n    0x6f, 0x70, 0x6d, 0x69, 0x6c, 0x71, 0x6f, 0x68, 0x6f, 0x71, 0x78, 0x7f, 0x7c, 0x75, 0x77, 0x80,\n    0x8e, 0x95, 0x96, 0x90, 0x89, 0x86, 0x7f, 0x77, 0x6e, 0x73, 0x77, 0x78, 0x76, 0x74, 0x74, 0x75,\n    0x72, 0x6f, 0x6c, 0x6c, 0x70, 0x73, 0x74, 0x73, 0x71, 0x7e, 0x87, 0x7d, 0x63, 0x49, 0x39, 0x33,\n    0x39, 0x43, 0x4d, 0x54, 0x5a, 0x5f, 0x5e, 0x59, 0x55, 0x60, 0x6c, 0x6d, 0x60, 0x57, 0x61, 0x72,\n    0x83, 0x89, 0x92, 0x8d, 0x99, 0xa7, 0x82, 0x4e, 0x56, 0x5e, 0x68, 0x6e, 0x6b, 0x67, 0x6b, 0x73,\n    0x75, 0x77, 0x79, 0x7a, 0x7b, 0x7b, 0x7d, 0x7e, 0x83, 0x84, 0x84, 0x82, 0x81, 0x82, 0x86, 0x89,\n    0x8c, 0x8f, 0x91, 0x93, 0x93, 0x92, 0x92, 0x92, 0x95, 0x94, 0x92, 0x91, 0x91, 0x92, 0x94, 0x95,\n    0x96, 0x95, 0x94, 0x94, 0x94, 0x95, 0x97, 0x98, 0x98, 0x99, 0x99, 0x9a, 0x9e, 0xa3, 0xa5, 0xa4,\n    0xa3, 0xa3, 0xa3, 0xa4, 0xa6, 0xa8, 0xaa, 0xab, 0xaa, 0xab, 0xac, 0xad, 0xad, 0xae, 0xb0, 0xb2,\n    0xae, 0xae, 0xb0, 0xb1, 0xb2, 0xb2, 0xb2, 0xb1, 0xb1, 0xb3, 0xb4, 0xb5, 0xb3, 0xb2, 0xb1, 0xb1,\n    0xb0, 0xb1, 0xb1, 0xb0, 0xae, 0xad, 0xae, 0xb0, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xae, 0xad,\n    0xa9, 0xa8, 0xa6, 0xa5, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa3, 0xa1, 0xa0, 0x9f, 0x9f, 0x9e,\n    0x9e, 0x9e, 0x9e, 0x9e, 0x9d, 0x9b, 0x99, 0x98, 0x98, 0x96, 0x92, 0x90, 0x90, 0x91, 0x91, 0x92,\n    0x8f, 0x8d, 0x8b, 0x89, 0x88, 0x88, 0x89, 0x8a, 0x88, 0x86, 0x84, 0x83, 0x83, 0x82, 0x81, 0x80,\n    0x80, 0x7f, 0x7e, 0x7e, 0x7f, 0x7e, 0x7b, 0x79, 0x78, 0x76, 0x73, 0x70, 0x6e, 0x6c, 0x69, 0x67,\n    0x5f, 0x5b, 0x5a, 0x5a, 0x55, 0x4e, 0x50, 0x56, 0x54, 0x4f, 0x42, 0x3b, 0x3f, 0x3e, 0x3b, 0x3d,\n    0x41, 0x45, 0x4b, 0x4e, 0x4e, 0x4e, 0x51, 0x54, 0x52, 0x51, 0x50, 0x51, 0x52, 0x52, 0x51, 0x51,\n    0x51, 0x3d, 0x31, 0x2f, 0x2b, 0x26, 0x25, 0x21, 0x25, 0x26, 0x2b, 0x2a, 0x23, 0x27, 0x2f, 0x2f,\n    0x2f, 0x2c, 0x32, 0x2f, 0x30, 0x34, 0x2d, 0x2c, 0x30, 0x36, 0x36, 0x35, 0x3e, 0x4b, 0x59, 0x65,\n    0x5b, 0x4a, 0x4e, 0x56, 0x44, 0x2f, 0x28, 0x27, 0x28, 0x28, 0x2c, 0x32, 0x39, 0x48, 0x4e, 0x48,\n    0x3d, 0x40, 0x47, 0x53, 0x60, 0x6a, 0x70, 0x72, 0x70, 0x76, 0x7a, 0x7a, 0x7a, 0x79, 0x70, 0x64,\n    0x4c, 0x3b, 0x30, 0x31, 0x2f, 0x29, 0x2e, 0x3b, 0x3e, 0x3a, 0x35, 0x31, 0x2e, 0x2b, 0x2a, 0x29,\n    0x24, 0x22, 0x26, 0x2b, 0x2b, 0x2c, 0x2b, 0x25, 0x21, 0x22, 0x25, 0x23, 0x1b, 0x14, 0x19, 0x24,\n    0x2f, 0x2e, 0x27, 0x1d, 0x1a, 0x21, 0x2a, 0x2f, 0x2e, 0x27, 0x20, 0x22, 0x2c, 0x34, 0x31, 0x2a,\n    0x28, 0x2f, 0x31, 0x2b, 0x25, 0x23, 0x21, 0x1e, 0x15, 0x1b, 0x2c, 0x37, 0x36, 0x35, 0x36, 0x32,\n    0x32, 0x30, 0x32, 0x37, 0x3b, 0x3b, 0x39, 0x37, 0x30, 0x28, 0x29, 0x32, 0x3a, 0x42, 0x42, 0x39,\n    0x2a, 0x1d, 0x1a, 0x27, 0x30, 0x2f, 0x2f, 0x34, 0x35, 0x3a, 0x3e, 0x42, 0x46, 0x4a, 0x4a, 0x47,\n    0x4f, 0x4b, 0x46, 0x3f, 0x38, 0x35, 0x3d, 0x46, 0x43, 0x43, 0x3f, 0x33, 0x26, 0x1f, 0x1e, 0x21,\n    0x29, 0x2c, 0x2c, 0x2b, 0x2e, 0x35, 0x3b, 0x3d, 0x3f, 0x3e, 0x3e, 0x41, 0x43, 0x44, 0x46, 0x49,\n    0x4a, 0x47, 0x45, 0x44, 0x42, 0x41, 0x44, 0x49, 0x51, 0x55, 0x5f, 0x68, 0x66, 0x5a, 0x51, 0x4e,\n    0x50, 0x55, 0x57, 0x53, 0x4f, 0x4e, 0x50, 0x51, 0x5e, 0x5f, 0x5c, 0x58, 0x58, 0x5d, 0x61, 0x61,\n    0x60, 0x55, 0x4a, 0x47, 0x4d, 0x53, 0x56, 0x55, 0x5a, 0x58, 0x57, 0x55, 0x53, 0x52, 0x52, 0x54,\n    0x53, 0x56, 0x56, 0x4c, 0x3e, 0x35, 0x32, 0x33, 0x34, 0x3c, 0x4c, 0x5d, 0x63, 0x5e, 0x58, 0x56,\n    0x5b, 0x60, 0x68, 0x6e, 0x6c, 0x65, 0x60, 0x5e, 0x69, 0x6d, 0x70, 0x70, 0x6e, 0x6a, 0x63, 0x5c,\n    0x51, 0x40, 0x35, 0x3a, 0x47, 0x55, 0x59, 0x4f, 0x41, 0x39, 0x35, 0x39, 0x3f, 0x40, 0x3f, 0x3f,\n    0x3e, 0x43, 0x47, 0x43, 0x3b, 0x34, 0x34, 0x37, 0x31, 0x32, 0x37, 0x3e, 0x41, 0x40, 0x41, 0x43,\n    0x46, 0x4a, 0x51, 0x58, 0x5d, 0x61, 0x64, 0x66, 0x6a, 0x6c, 0x71, 0x77, 0x78, 0x74, 0x71, 0x71,\n    0x73, 0x70, 0x6d, 0x6c, 0x6c, 0x6a, 0x67, 0x65, 0x69, 0x67, 0x64, 0x61, 0x5b, 0x56, 0x56, 0x59,\n    0x55, 0x58, 0x5b, 0x5d, 0x67, 0x78, 0x89, 0x92, 0x90, 0x80, 0x71, 0x6b, 0x6c, 0x6f, 0x74, 0x7a,\n    0x72, 0x76, 0x7d, 0x82, 0x81, 0x7d, 0x7c, 0x7d, 0x82, 0x77, 0x71, 0x70, 0x71, 0x78, 0x7f, 0x7c,\n    0x81, 0x7d, 0x73, 0x67, 0x65, 0x6a, 0x6c, 0x68, 0x6b, 0x6e, 0x74, 0x78, 0x76, 0x73, 0x76, 0x7b,\n    0x82, 0x86, 0x84, 0x7d, 0x7b, 0x7c, 0x7a, 0x75, 0x74, 0x7a, 0x81, 0x84, 0x80, 0x79, 0x74, 0x71,\n    0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x72, 0x71, 0x7c, 0x7e, 0x7f, 0x7e, 0x79, 0x6f, 0x61, 0x56,\n    0x5d, 0x61, 0x64, 0x66, 0x66, 0x62, 0x58, 0x4d, 0x46, 0x4d, 0x5c, 0x68, 0x65, 0x60, 0x6c, 0x7e,\n    0x98, 0x90, 0x8b, 0x7f, 0x81, 0x86, 0x6a, 0x4b, 0x5d, 0x64, 0x6b, 0x6c, 0x69, 0x68, 0x6b, 0x6e,\n    0x73, 0x76, 0x79, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x81, 0x82, 0x82, 0x81, 0x80, 0x82, 0x86, 0x89,\n    0x8c, 0x8e, 0x91, 0x92, 0x92, 0x91, 0x90, 0x91, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x93, 0x93,\n    0x91, 0x91, 0x90, 0x91, 0x92, 0x94, 0x96, 0x97, 0x99, 0x9b, 0x9b, 0x9b, 0x9e, 0xa2, 0xa3, 0xa1,\n    0xa1, 0xa2, 0xa3, 0xa5, 0xa6, 0xa6, 0xa7, 0xa7, 0xa7, 0xa9, 0xab, 0xad, 0xad, 0xad, 0xad, 0xae,\n    0xae, 0xaf, 0xb0, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb0, 0xb1, 0xb3, 0xb3, 0xb3, 0xb2, 0xb2, 0xb3,\n    0xb1, 0xb1, 0xb2, 0xb1, 0xaf, 0xae, 0xaf, 0xb1, 0xae, 0xae, 0xae, 0xad, 0xad, 0xad, 0xac, 0xac,\n    0xa9, 0xa8, 0xa7, 0xa6, 0xa5, 0xa4, 0xa4, 0xa4, 0xa5, 0xa5, 0xa4, 0xa2, 0xa1, 0xa0, 0xa0, 0x9f,\n    0x9e, 0x9e, 0x9f, 0x9f, 0x9e, 0x9c, 0x9a, 0x99, 0x98, 0x97, 0x95, 0x94, 0x94, 0x93, 0x92, 0x91,\n    0x8f, 0x8d, 0x8b, 0x89, 0x88, 0x89, 0x8a, 0x8a, 0x88, 0x86, 0x84, 0x83, 0x83, 0x83, 0x83, 0x82,\n    0x80, 0x7f, 0x7e, 0x7e, 0x7f, 0x7e, 0x7b, 0x79, 0x78, 0x76, 0x72, 0x70, 0x6e, 0x6b, 0x69, 0x67,\n    0x60, 0x5b, 0x58, 0x58, 0x56, 0x53, 0x56, 0x5d, 0x62, 0x5a, 0x49, 0x3e, 0x3f, 0x3e, 0x3c, 0x3f,\n    0x3f, 0x44, 0x4c, 0x54, 0x5b, 0x60, 0x64, 0x65, 0x66, 0x65, 0x63, 0x61, 0x61, 0x64, 0x6a, 0x6f,\n    0x63, 0x4b, 0x3a, 0x35, 0x30, 0x2b, 0x28, 0x22, 0x24, 0x25, 0x29, 0x2b, 0x2e, 0x39, 0x3f, 0x3a,\n    0x35, 0x26, 0x28, 0x26, 0x24, 0x2d, 0x30, 0x35, 0x33, 0x35, 0x35, 0x38, 0x47, 0x5c, 0x64, 0x60,\n    0x4b, 0x4a, 0x56, 0x60, 0x58, 0x4f, 0x49, 0x40, 0x31, 0x2e, 0x34, 0x3e, 0x49, 0x51, 0x49, 0x36,\n    0x35, 0x36, 0x3a, 0x45, 0x54, 0x63, 0x6e, 0x73, 0x73, 0x74, 0x73, 0x72, 0x76, 0x77, 0x6c, 0x5e,\n    0x45, 0x35, 0x2b, 0x2d, 0x30, 0x30, 0x3b, 0x4a, 0x4d, 0x4a, 0x41, 0x35, 0x2d, 0x2c, 0x2b, 0x2b,\n    0x2a, 0x25, 0x27, 0x2c, 0x2e, 0x32, 0x32, 0x2c, 0x26, 0x27, 0x28, 0x24, 0x19, 0x13, 0x1a, 0x26,\n    0x36, 0x33, 0x2a, 0x21, 0x1e, 0x26, 0x2f, 0x34, 0x35, 0x29, 0x1f, 0x23, 0x2f, 0x35, 0x30, 0x29,\n    0x2b, 0x34, 0x37, 0x2f, 0x25, 0x23, 0x24, 0x24, 0x1a, 0x1f, 0x2d, 0x39, 0x39, 0x39, 0x3b, 0x38,\n    0x38, 0x36, 0x34, 0x34, 0x38, 0x3c, 0x3e, 0x3d, 0x31, 0x2a, 0x2c, 0x34, 0x3b, 0x41, 0x3f, 0x36,\n    0x23, 0x18, 0x16, 0x22, 0x2b, 0x2a, 0x2a, 0x2f, 0x37, 0x3b, 0x40, 0x42, 0x46, 0x4b, 0x4e, 0x4f,\n    0x4c, 0x4c, 0x4b, 0x45, 0x3b, 0x36, 0x39, 0x40, 0x40, 0x3e, 0x3c, 0x37, 0x2c, 0x21, 0x1f, 0x24,\n    0x28, 0x2a, 0x2d, 0x2f, 0x33, 0x38, 0x3a, 0x3a, 0x3b, 0x3d, 0x3f, 0x3f, 0x42, 0x45, 0x46, 0x45,\n    0x49, 0x46, 0x44, 0x43, 0x42, 0x42, 0x46, 0x4a, 0x49, 0x50, 0x59, 0x5e, 0x5b, 0x52, 0x48, 0x42,\n    0x4c, 0x48, 0x46, 0x48, 0x4d, 0x50, 0x52, 0x54, 0x5d, 0x5e, 0x5c, 0x59, 0x57, 0x59, 0x5b, 0x5b,\n    0x58, 0x4c, 0x43, 0x46, 0x4c, 0x4d, 0x4b, 0x4a, 0x51, 0x53, 0x56, 0x58, 0x59, 0x57, 0x54, 0x51,\n    0x4e, 0x52, 0x52, 0x4b, 0x3e, 0x34, 0x32, 0x34, 0x36, 0x40, 0x54, 0x69, 0x6e, 0x66, 0x62, 0x64,\n    0x62, 0x61, 0x62, 0x64, 0x61, 0x5c, 0x59, 0x58, 0x5f, 0x64, 0x68, 0x6a, 0x6a, 0x69, 0x66, 0x61,\n    0x4f, 0x45, 0x40, 0x3f, 0x3e, 0x42, 0x45, 0x40, 0x3e, 0x39, 0x36, 0x36, 0x37, 0x36, 0x35, 0x35,\n    0x36, 0x3c, 0x41, 0x3f, 0x37, 0x32, 0x34, 0x38, 0x32, 0x34, 0x38, 0x3d, 0x3f, 0x3f, 0x41, 0x45,\n    0x40, 0x41, 0x43, 0x46, 0x49, 0x4c, 0x4e, 0x4f, 0x5b, 0x5d, 0x61, 0x66, 0x67, 0x66, 0x68, 0x6b,\n    0x68, 0x6c, 0x6f, 0x6e, 0x6a, 0x69, 0x6c, 0x6f, 0x6b, 0x6c, 0x69, 0x69, 0x72, 0x81, 0x86, 0x82,\n    0x63, 0x5b, 0x55, 0x57, 0x5f, 0x6a, 0x77, 0x81, 0x66, 0x61, 0x60, 0x68, 0x72, 0x75, 0x70, 0x6b,\n    0x72, 0x76, 0x7e, 0x84, 0x85, 0x86, 0x8b, 0x92, 0x90, 0x81, 0x79, 0x79, 0x7e, 0x84, 0x82, 0x78,\n    0x7c, 0x78, 0x6c, 0x60, 0x5d, 0x64, 0x6a, 0x6c, 0x71, 0x75, 0x77, 0x73, 0x6f, 0x6e, 0x6e, 0x6d,\n    0x72, 0x73, 0x72, 0x6f, 0x73, 0x7a, 0x7c, 0x79, 0x6d, 0x75, 0x7f, 0x85, 0x84, 0x7e, 0x78, 0x75,\n    0x6f, 0x71, 0x75, 0x77, 0x77, 0x75, 0x73, 0x72, 0x75, 0x6e, 0x67, 0x69, 0x70, 0x76, 0x75, 0x72,\n    0x6c, 0x65, 0x5d, 0x58, 0x5a, 0x5e, 0x5e, 0x5a, 0x5c, 0x58, 0x5b, 0x64, 0x69, 0x6e, 0x81, 0x96,\n    0x97, 0x89, 0x83, 0x79, 0x74, 0x6e, 0x5a, 0x51, 0x61, 0x66, 0x69, 0x66, 0x65, 0x69, 0x6c, 0x6a,\n    0x71, 0x74, 0x78, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7f, 0x80, 0x81, 0x80, 0x80, 0x81, 0x85, 0x89,\n    0x8b, 0x8d, 0x8f, 0x90, 0x90, 0x8f, 0x8e, 0x8e, 0x8f, 0x90, 0x91, 0x92, 0x92, 0x92, 0x91, 0x91,\n    0x8f, 0x8f, 0x8f, 0x90, 0x91, 0x93, 0x95, 0x96, 0x9b, 0x9c, 0x9c, 0x9c, 0x9e, 0xa0, 0x9f, 0x9d,\n    0x9f, 0xa0, 0xa3, 0xa4, 0xa5, 0xa5, 0xa4, 0xa3, 0xa4, 0xa6, 0xaa, 0xab, 0xab, 0xab, 0xab, 0xab,\n    0xad, 0xad, 0xae, 0xae, 0xaf, 0xaf, 0xae, 0xae, 0xaf, 0xb0, 0xb1, 0xb2, 0xb1, 0xb2, 0xb3, 0xb4,\n    0xb1, 0xb2, 0xb2, 0xb1, 0xaf, 0xaf, 0xb0, 0xb1, 0xae, 0xad, 0xac, 0xab, 0xaa, 0xaa, 0xab, 0xab,\n    0xa8, 0xa8, 0xa8, 0xa7, 0xa6, 0xa5, 0xa4, 0xa4, 0xa5, 0xa4, 0xa4, 0xa3, 0xa2, 0xa1, 0xa0, 0xa0,\n    0x9e, 0x9e, 0x9f, 0x9f, 0x9e, 0x9d, 0x9c, 0x9b, 0x98, 0x98, 0x98, 0x98, 0x98, 0x96, 0x93, 0x90,\n    0x8e, 0x8d, 0x8b, 0x8a, 0x89, 0x89, 0x8a, 0x8b, 0x88, 0x86, 0x84, 0x83, 0x83, 0x84, 0x84, 0x84,\n    0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7b, 0x7a, 0x78, 0x75, 0x72, 0x6f, 0x6d, 0x6b, 0x69, 0x67,\n    0x64, 0x5c, 0x55, 0x55, 0x55, 0x54, 0x58, 0x5e, 0x69, 0x60, 0x4c, 0x3d, 0x3c, 0x3b, 0x3b, 0x3f,\n    0x41, 0x48, 0x55, 0x64, 0x71, 0x78, 0x79, 0x78, 0x7e, 0x7d, 0x7b, 0x75, 0x70, 0x6f, 0x74, 0x79,\n    0x64, 0x4c, 0x3a, 0x35, 0x31, 0x2f, 0x2c, 0x25, 0x26, 0x2e, 0x39, 0x3c, 0x41, 0x52, 0x5b, 0x55,\n    0x43, 0x26, 0x26, 0x27, 0x1d, 0x21, 0x29, 0x2f, 0x31, 0x3a, 0x4e, 0x5a, 0x61, 0x6a, 0x61, 0x46,\n    0x40, 0x4c, 0x5f, 0x68, 0x68, 0x6a, 0x65, 0x57, 0x4d, 0x45, 0x46, 0x50, 0x5e, 0x63, 0x52, 0x36,\n    0x2f, 0x2f, 0x34, 0x3f, 0x4f, 0x5f, 0x6c, 0x72, 0x6f, 0x6b, 0x67, 0x69, 0x72, 0x77, 0x6e, 0x60,\n    0x47, 0x37, 0x2b, 0x2a, 0x2d, 0x32, 0x40, 0x4f, 0x54, 0x54, 0x4a, 0x38, 0x2d, 0x2e, 0x31, 0x30,\n    0x2f, 0x27, 0x26, 0x2b, 0x31, 0x38, 0x3a, 0x34, 0x2e, 0x2e, 0x2c, 0x26, 0x1a, 0x15, 0x1f, 0x2d,\n    0x3b, 0x35, 0x2b, 0x21, 0x20, 0x27, 0x30, 0x35, 0x3a, 0x2a, 0x1f, 0x25, 0x31, 0x34, 0x2e, 0x28,\n    0x2c, 0x37, 0x3b, 0x32, 0x25, 0x22, 0x25, 0x28, 0x1d, 0x1f, 0x2c, 0x38, 0x3a, 0x3b, 0x3c, 0x3a,\n    0x39, 0x3a, 0x35, 0x2f, 0x32, 0x3d, 0x43, 0x40, 0x33, 0x2d, 0x2f, 0x37, 0x3d, 0x42, 0x40, 0x37,\n    0x29, 0x1d, 0x1b, 0x25, 0x2d, 0x2d, 0x2e, 0x33, 0x37, 0x3c, 0x40, 0x41, 0x43, 0x49, 0x4f, 0x53,\n    0x46, 0x4a, 0x4c, 0x47, 0x3e, 0x37, 0x39, 0x3e, 0x3f, 0x39, 0x38, 0x38, 0x30, 0x23, 0x21, 0x29,\n    0x26, 0x29, 0x2c, 0x2d, 0x2f, 0x33, 0x39, 0x3c, 0x3a, 0x3e, 0x3f, 0x3f, 0x41, 0x45, 0x46, 0x44,\n    0x47, 0x45, 0x44, 0x43, 0x42, 0x43, 0x45, 0x47, 0x51, 0x57, 0x5a, 0x55, 0x50, 0x4f, 0x51, 0x52,\n    0x4b, 0x41, 0x3d, 0x42, 0x49, 0x4d, 0x51, 0x56, 0x52, 0x55, 0x59, 0x59, 0x57, 0x55, 0x53, 0x52,\n    0x4c, 0x42, 0x3f, 0x49, 0x50, 0x4d, 0x47, 0x46, 0x44, 0x49, 0x4e, 0x50, 0x51, 0x53, 0x54, 0x54,\n    0x59, 0x5a, 0x59, 0x4f, 0x41, 0x35, 0x33, 0x36, 0x39, 0x3e, 0x4f, 0x63, 0x6c, 0x6a, 0x6c, 0x72,\n    0x6e, 0x67, 0x60, 0x5d, 0x5a, 0x56, 0x52, 0x50, 0x4e, 0x58, 0x63, 0x69, 0x6a, 0x67, 0x5f, 0x58,\n    0x49, 0x41, 0x3e, 0x3e, 0x39, 0x39, 0x3b, 0x38, 0x3b, 0x3b, 0x3b, 0x3b, 0x39, 0x36, 0x34, 0x33,\n    0x36, 0x39, 0x3b, 0x3a, 0x36, 0x33, 0x34, 0x36, 0x33, 0x36, 0x3b, 0x3e, 0x3f, 0x3f, 0x41, 0x44,\n    0x4a, 0x4b, 0x4b, 0x49, 0x46, 0x46, 0x49, 0x4c, 0x4d, 0x50, 0x53, 0x56, 0x58, 0x5b, 0x60, 0x64,\n    0x71, 0x79, 0x7e, 0x7a, 0x73, 0x73, 0x7b, 0x83, 0x81, 0x7c, 0x72, 0x6c, 0x72, 0x7c, 0x7b, 0x72,\n    0x6f, 0x62, 0x5b, 0x5f, 0x66, 0x6a, 0x70, 0x77, 0x7f, 0x74, 0x69, 0x66, 0x6c, 0x73, 0x74, 0x71,\n    0x6a, 0x6f, 0x7a, 0x87, 0x8e, 0x90, 0x90, 0x92, 0x84, 0x77, 0x71, 0x73, 0x77, 0x7d, 0x7e, 0x76,\n    0x73, 0x73, 0x6e, 0x67, 0x65, 0x6b, 0x72, 0x75, 0x76, 0x7b, 0x79, 0x70, 0x6b, 0x6c, 0x6a, 0x65,\n    0x6c, 0x6b, 0x6a, 0x6a, 0x70, 0x77, 0x77, 0x72, 0x6c, 0x72, 0x79, 0x7d, 0x7c, 0x77, 0x73, 0x70,\n    0x6d, 0x6e, 0x6f, 0x71, 0x71, 0x71, 0x70, 0x6f, 0x6d, 0x65, 0x5b, 0x55, 0x56, 0x60, 0x70, 0x7e,\n    0x76, 0x6c, 0x5e, 0x56, 0x58, 0x61, 0x69, 0x6c, 0x69, 0x6a, 0x6f, 0x76, 0x7a, 0x7a, 0x79, 0x79,\n    0x7c, 0x78, 0x7d, 0x7b, 0x76, 0x67, 0x54, 0x55, 0x5f, 0x63, 0x63, 0x5f, 0x62, 0x6b, 0x6e, 0x69,\n    0x6f, 0x73, 0x78, 0x7b, 0x7d, 0x7c, 0x7c, 0x7c, 0x7e, 0x7f, 0x80, 0x80, 0x80, 0x82, 0x86, 0x89,\n    0x8c, 0x8d, 0x8f, 0x8f, 0x8e, 0x8d, 0x8d, 0x8d, 0x8d, 0x8e, 0x8f, 0x90, 0x90, 0x91, 0x91, 0x91,\n    0x92, 0x92, 0x92, 0x92, 0x92, 0x93, 0x93, 0x94, 0x9a, 0x9c, 0x9c, 0x9c, 0x9d, 0x9f, 0x9e, 0x9a,\n    0x9e, 0x9f, 0xa1, 0xa2, 0xa3, 0xa4, 0xa3, 0xa3, 0xa4, 0xa6, 0xa8, 0xa9, 0xa9, 0xa9, 0xa9, 0xaa,\n    0xab, 0xab, 0xab, 0xac, 0xac, 0xac, 0xab, 0xab, 0xae, 0xaf, 0xb0, 0xb0, 0xb0, 0xb0, 0xb2, 0xb3,\n    0xb1, 0xb1, 0xb0, 0xaf, 0xaf, 0xae, 0xaf, 0xaf, 0xad, 0xac, 0xab, 0xa9, 0xa8, 0xa9, 0xaa, 0xaa,\n    0xa7, 0xa8, 0xa8, 0xa8, 0xa7, 0xa6, 0xa5, 0xa4, 0xa4, 0xa4, 0xa3, 0xa3, 0xa2, 0xa1, 0xa0, 0x9f,\n    0x9d, 0x9e, 0x9e, 0x9e, 0x9e, 0x9e, 0x9d, 0x9d, 0x9a, 0x99, 0x99, 0x99, 0x99, 0x97, 0x94, 0x91,\n    0x8e, 0x8d, 0x8b, 0x8a, 0x8a, 0x8a, 0x8a, 0x8b, 0x89, 0x86, 0x84, 0x82, 0x82, 0x83, 0x83, 0x83,\n    0x7d, 0x7d, 0x7d, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x78, 0x75, 0x71, 0x6e, 0x6c, 0x6a, 0x68, 0x67,\n    0x66, 0x5d, 0x55, 0x52, 0x53, 0x53, 0x54, 0x57, 0x67, 0x5f, 0x4d, 0x3f, 0x3e, 0x3e, 0x3e, 0x44,\n    0x41, 0x4b, 0x5b, 0x6c, 0x77, 0x7c, 0x7b, 0x79, 0x6f, 0x70, 0x6f, 0x6a, 0x62, 0x5b, 0x58, 0x58,\n    0x5c, 0x49, 0x3b, 0x36, 0x32, 0x32, 0x30, 0x2b, 0x34, 0x48, 0x5b, 0x5c, 0x59, 0x67, 0x73, 0x6f,\n    0x55, 0x26, 0x1c, 0x1c, 0x16, 0x2a, 0x4a, 0x5e, 0x6b, 0x6e, 0x7f, 0x82, 0x6f, 0x65, 0x5b, 0x44,\n    0x3f, 0x4e, 0x5d, 0x62, 0x65, 0x6a, 0x66, 0x5b, 0x60, 0x58, 0x58, 0x62, 0x6e, 0x70, 0x5a, 0x3a,\n    0x32, 0x37, 0x3f, 0x49, 0x54, 0x5f, 0x69, 0x6e, 0x64, 0x5d, 0x57, 0x59, 0x65, 0x6f, 0x6d, 0x65,\n    0x4f, 0x40, 0x31, 0x2b, 0x2c, 0x31, 0x3d, 0x4a, 0x55, 0x59, 0x51, 0x3c, 0x2f, 0x32, 0x35, 0x32,\n    0x30, 0x26, 0x23, 0x2a, 0x33, 0x3d, 0x3f, 0x37, 0x33, 0x31, 0x2f, 0x28, 0x1e, 0x1c, 0x28, 0x38,\n    0x40, 0x38, 0x2d, 0x23, 0x21, 0x27, 0x2f, 0x34, 0x3b, 0x2b, 0x22, 0x28, 0x32, 0x31, 0x2b, 0x26,\n    0x2d, 0x38, 0x3d, 0x35, 0x2a, 0x26, 0x27, 0x28, 0x1f, 0x1e, 0x2a, 0x38, 0x3c, 0x3c, 0x3c, 0x39,\n    0x37, 0x3c, 0x39, 0x30, 0x34, 0x43, 0x48, 0x42, 0x31, 0x2a, 0x2d, 0x35, 0x3d, 0x44, 0x43, 0x3b,\n    0x2d, 0x21, 0x1a, 0x20, 0x26, 0x27, 0x29, 0x2f, 0x3b, 0x41, 0x46, 0x46, 0x44, 0x48, 0x4e, 0x52,\n    0x3e, 0x44, 0x48, 0x45, 0x3e, 0x3a, 0x3c, 0x3f, 0x3d, 0x36, 0x35, 0x3a, 0x34, 0x26, 0x21, 0x26,\n    0x2a, 0x2f, 0x33, 0x32, 0x30, 0x32, 0x3a, 0x43, 0x3f, 0x3f, 0x3e, 0x3c, 0x3d, 0x42, 0x46, 0x48,\n    0x45, 0x45, 0x44, 0x43, 0x43, 0x43, 0x43, 0x43, 0x41, 0x4a, 0x4f, 0x4a, 0x42, 0x42, 0x47, 0x4c,\n    0x46, 0x3d, 0x38, 0x3b, 0x40, 0x43, 0x49, 0x51, 0x49, 0x4c, 0x4f, 0x50, 0x4c, 0x48, 0x47, 0x47,\n    0x49, 0x3f, 0x3c, 0x44, 0x49, 0x46, 0x42, 0x43, 0x3e, 0x46, 0x4a, 0x47, 0x45, 0x4b, 0x55, 0x5b,\n    0x5f, 0x60, 0x60, 0x58, 0x49, 0x39, 0x33, 0x35, 0x3a, 0x39, 0x42, 0x54, 0x61, 0x65, 0x69, 0x6e,\n    0x62, 0x5b, 0x56, 0x55, 0x54, 0x4f, 0x47, 0x42, 0x4f, 0x57, 0x60, 0x62, 0x5f, 0x58, 0x4f, 0x47,\n    0x4b, 0x41, 0x3d, 0x40, 0x3e, 0x3f, 0x40, 0x3c, 0x3c, 0x3d, 0x3e, 0x3c, 0x3a, 0x39, 0x3a, 0x3a,\n    0x3c, 0x3a, 0x37, 0x36, 0x36, 0x36, 0x35, 0x34, 0x36, 0x3a, 0x3f, 0x43, 0x44, 0x45, 0x47, 0x47,\n    0x4a, 0x4e, 0x51, 0x50, 0x4c, 0x4d, 0x54, 0x5b, 0x5c, 0x5e, 0x5e, 0x5e, 0x5d, 0x60, 0x63, 0x65,\n    0x67, 0x70, 0x75, 0x6e, 0x65, 0x64, 0x6a, 0x6f, 0x71, 0x6a, 0x65, 0x6a, 0x74, 0x7d, 0x80, 0x80,\n    0x6d, 0x60, 0x59, 0x60, 0x67, 0x67, 0x69, 0x6f, 0x7e, 0x7e, 0x7b, 0x77, 0x75, 0x72, 0x69, 0x60,\n    0x65, 0x69, 0x76, 0x8a, 0x97, 0x96, 0x8b, 0x81, 0x68, 0x63, 0x64, 0x65, 0x66, 0x6f, 0x7a, 0x7c,\n    0x70, 0x70, 0x6b, 0x65, 0x61, 0x64, 0x69, 0x6d, 0x6d, 0x73, 0x73, 0x6b, 0x69, 0x6e, 0x6f, 0x69,\n    0x6e, 0x6a, 0x64, 0x62, 0x66, 0x69, 0x68, 0x64, 0x69, 0x70, 0x7a, 0x83, 0x88, 0x88, 0x86, 0x85,\n    0x72, 0x6f, 0x6b, 0x6a, 0x6b, 0x6d, 0x6d, 0x6d, 0x6b, 0x65, 0x5b, 0x50, 0x47, 0x4b, 0x5c, 0x6d,\n    0x77, 0x72, 0x6c, 0x67, 0x63, 0x60, 0x5f, 0x5f, 0x70, 0x75, 0x76, 0x75, 0x76, 0x76, 0x6a, 0x5b,\n    0x68, 0x6e, 0x78, 0x77, 0x72, 0x62, 0x4c, 0x50, 0x5e, 0x61, 0x5f, 0x5c, 0x61, 0x6c, 0x6e, 0x69,\n    0x6e, 0x72, 0x77, 0x7b, 0x7d, 0x7c, 0x7b, 0x7b, 0x7d, 0x7f, 0x80, 0x81, 0x81, 0x82, 0x86, 0x89,\n    0x8c, 0x8d, 0x8e, 0x8e, 0x8d, 0x8c, 0x8c, 0x8c, 0x8d, 0x8d, 0x8c, 0x8d, 0x8e, 0x8f, 0x91, 0x92,\n    0x92, 0x92, 0x92, 0x92, 0x93, 0x93, 0x94, 0x94, 0x98, 0x9a, 0x9a, 0x9a, 0x9c, 0x9e, 0x9d, 0x9a,\n    0x9d, 0x9e, 0x9e, 0xa0, 0xa1, 0xa3, 0xa4, 0xa5, 0xa5, 0xa6, 0xa6, 0xa6, 0xa6, 0xa7, 0xa9, 0xab,\n    0xab, 0xab, 0xab, 0xab, 0xab, 0xab, 0xab, 0xab, 0xae, 0xaf, 0xaf, 0xaf, 0xae, 0xae, 0xaf, 0xb0,\n    0xaf, 0xae, 0xad, 0xad, 0xad, 0xad, 0xac, 0xac, 0xac, 0xab, 0xa9, 0xa8, 0xa8, 0xa8, 0xa9, 0xaa,\n    0xa7, 0xa7, 0xa8, 0xa8, 0xa8, 0xa6, 0xa5, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa3, 0xa2, 0xa1, 0xa0,\n    0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9b, 0x9a, 0x98, 0x97, 0x97, 0x96, 0x94, 0x92,\n    0x8e, 0x8d, 0x8c, 0x8b, 0x8a, 0x8a, 0x8a, 0x8a, 0x88, 0x86, 0x83, 0x81, 0x81, 0x80, 0x80, 0x7f,\n    0x7d, 0x7d, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x77, 0x74, 0x71, 0x6e, 0x6c, 0x6a, 0x68, 0x66,\n    0x65, 0x5e, 0x56, 0x53, 0x53, 0x52, 0x51, 0x51, 0x5d, 0x58, 0x4b, 0x42, 0x42, 0x41, 0x3f, 0x43,\n    0x46, 0x4f, 0x5b, 0x66, 0x6c, 0x70, 0x73, 0x75, 0x7a, 0x7a, 0x7a, 0x78, 0x75, 0x6f, 0x69, 0x64,\n    0x58, 0x4c, 0x44, 0x40, 0x39, 0x38, 0x38, 0x33, 0x45, 0x59, 0x6d, 0x6f, 0x6b, 0x75, 0x7b, 0x73,\n    0x5f, 0x2c, 0x1d, 0x1c, 0x1d, 0x3f, 0x6c, 0x88, 0x87, 0x7e, 0x8b, 0x91, 0x78, 0x62, 0x5a, 0x4f,\n    0x44, 0x4c, 0x52, 0x57, 0x5b, 0x5e, 0x5d, 0x5d, 0x5d, 0x5a, 0x5f, 0x69, 0x70, 0x6e, 0x59, 0x3c,\n    0x41, 0x46, 0x4d, 0x53, 0x58, 0x5d, 0x64, 0x69, 0x62, 0x59, 0x4d, 0x48, 0x4d, 0x58, 0x60, 0x62,\n    0x59, 0x4c, 0x3d, 0x34, 0x31, 0x33, 0x3b, 0x43, 0x4e, 0x56, 0x53, 0x42, 0x36, 0x36, 0x37, 0x33,\n    0x31, 0x26, 0x24, 0x2c, 0x36, 0x40, 0x41, 0x38, 0x32, 0x2f, 0x2d, 0x29, 0x22, 0x22, 0x2f, 0x3e,\n    0x45, 0x3e, 0x33, 0x2a, 0x27, 0x2a, 0x31, 0x37, 0x3b, 0x30, 0x2a, 0x2e, 0x33, 0x31, 0x2c, 0x29,\n    0x31, 0x3a, 0x3f, 0x3b, 0x34, 0x31, 0x2d, 0x29, 0x22, 0x1f, 0x29, 0x3a, 0x3f, 0x3e, 0x3c, 0x38,\n    0x38, 0x3f, 0x3f, 0x38, 0x3e, 0x4c, 0x4d, 0x43, 0x2e, 0x26, 0x28, 0x32, 0x3d, 0x47, 0x49, 0x41,\n    0x35, 0x28, 0x1f, 0x20, 0x24, 0x26, 0x2a, 0x31, 0x43, 0x4b, 0x51, 0x50, 0x4c, 0x4b, 0x4e, 0x50,\n    0x42, 0x46, 0x47, 0x41, 0x3b, 0x38, 0x39, 0x3a, 0x3c, 0x34, 0x34, 0x3b, 0x3a, 0x2e, 0x26, 0x25,\n    0x2c, 0x39, 0x48, 0x4e, 0x47, 0x3e, 0x3d, 0x41, 0x42, 0x3e, 0x3a, 0x3a, 0x3b, 0x3e, 0x43, 0x48,\n    0x43, 0x44, 0x44, 0x43, 0x44, 0x47, 0x48, 0x46, 0x42, 0x4d, 0x59, 0x58, 0x4e, 0x43, 0x40, 0x42,\n    0x42, 0x3e, 0x39, 0x37, 0x36, 0x39, 0x40, 0x47, 0x43, 0x43, 0x44, 0x44, 0x41, 0x40, 0x44, 0x4a,\n    0x52, 0x48, 0x41, 0x40, 0x41, 0x40, 0x40, 0x43, 0x44, 0x4c, 0x4f, 0x47, 0x42, 0x49, 0x57, 0x60,\n    0x61, 0x63, 0x66, 0x61, 0x4f, 0x3b, 0x30, 0x30, 0x36, 0x35, 0x3c, 0x4d, 0x5e, 0x68, 0x6a, 0x6a,\n    0x6b, 0x6b, 0x6c, 0x6e, 0x68, 0x5d, 0x51, 0x4b, 0x56, 0x59, 0x58, 0x53, 0x4e, 0x4b, 0x4a, 0x48,\n    0x47, 0x4d, 0x5b, 0x5d, 0x4b, 0x3c, 0x3c, 0x3f, 0x3f, 0x40, 0x3f, 0x3b, 0x3a, 0x3d, 0x41, 0x43,\n    0x3d, 0x37, 0x30, 0x2f, 0x32, 0x35, 0x33, 0x31, 0x36, 0x3b, 0x41, 0x47, 0x4e, 0x55, 0x59, 0x59,\n    0x44, 0x49, 0x4d, 0x4d, 0x4b, 0x4d, 0x55, 0x5c, 0x64, 0x66, 0x67, 0x66, 0x68, 0x6b, 0x6c, 0x6b,\n    0x69, 0x72, 0x78, 0x76, 0x73, 0x75, 0x77, 0x76, 0x70, 0x64, 0x5f, 0x65, 0x6c, 0x6d, 0x6f, 0x73,\n    0x6f, 0x63, 0x5b, 0x5c, 0x5d, 0x5b, 0x5c, 0x60, 0x75, 0x7b, 0x7c, 0x76, 0x74, 0x75, 0x70, 0x68,\n    0x62, 0x64, 0x6f, 0x81, 0x8d, 0x89, 0x79, 0x6c, 0x5d, 0x5d, 0x60, 0x5f, 0x5b, 0x64, 0x76, 0x80,\n    0x6e, 0x69, 0x60, 0x56, 0x52, 0x55, 0x5d, 0x64, 0x67, 0x6e, 0x6f, 0x6a, 0x67, 0x6b, 0x6d, 0x6a,\n    0x6c, 0x64, 0x5b, 0x57, 0x5a, 0x60, 0x63, 0x63, 0x5e, 0x66, 0x74, 0x81, 0x8a, 0x8c, 0x8a, 0x87,\n    0x72, 0x70, 0x6e, 0x6d, 0x6f, 0x74, 0x78, 0x7b, 0x77, 0x6e, 0x63, 0x5a, 0x50, 0x49, 0x4b, 0x51,\n    0x5b, 0x5b, 0x5d, 0x61, 0x62, 0x60, 0x61, 0x63, 0x7e, 0x7e, 0x78, 0x71, 0x75, 0x7b, 0x75, 0x68,\n    0x66, 0x6d, 0x73, 0x6e, 0x6c, 0x5f, 0x4d, 0x56, 0x61, 0x61, 0x5f, 0x5e, 0x64, 0x6b, 0x6c, 0x68,\n    0x6e, 0x72, 0x77, 0x7b, 0x7c, 0x7b, 0x7a, 0x7a, 0x7d, 0x7f, 0x81, 0x81, 0x81, 0x82, 0x86, 0x89,\n    0x8b, 0x8c, 0x8d, 0x8d, 0x8c, 0x8b, 0x8b, 0x8c, 0x8d, 0x8c, 0x8b, 0x8b, 0x8c, 0x8f, 0x91, 0x93,\n    0x8f, 0x8f, 0x90, 0x92, 0x93, 0x94, 0x95, 0x95, 0x96, 0x97, 0x98, 0x98, 0x9a, 0x9d, 0x9d, 0x9a,\n    0x9c, 0x9c, 0x9d, 0x9d, 0x9f, 0xa1, 0xa4, 0xa5, 0xa6, 0xa6, 0xa5, 0xa4, 0xa4, 0xa5, 0xa8, 0xaa,\n    0xab, 0xab, 0xab, 0xab, 0xab, 0xac, 0xac, 0xad, 0xad, 0xae, 0xae, 0xae, 0xac, 0xab, 0xab, 0xac,\n    0xad, 0xab, 0xaa, 0xaa, 0xaa, 0xab, 0xaa, 0xa9, 0xa9, 0xa9, 0xa8, 0xa7, 0xa7, 0xa8, 0xa8, 0xa9,\n    0xa7, 0xa7, 0xa7, 0xa7, 0xa7, 0xa6, 0xa5, 0xa5, 0xa5, 0xa5, 0xa6, 0xa6, 0xa5, 0xa4, 0xa3, 0xa2,\n    0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9a, 0x98, 0x96, 0x95, 0x95, 0x94, 0x93,\n    0x8f, 0x8e, 0x8d, 0x8c, 0x8b, 0x8a, 0x89, 0x89, 0x87, 0x85, 0x83, 0x81, 0x80, 0x7f, 0x7d, 0x7c,\n    0x7d, 0x7e, 0x7e, 0x7d, 0x7b, 0x79, 0x79, 0x78, 0x76, 0x73, 0x71, 0x6e, 0x6c, 0x6a, 0x67, 0x64,\n    0x63, 0x5d, 0x57, 0x54, 0x54, 0x54, 0x53, 0x51, 0x63, 0x63, 0x5c, 0x58, 0x59, 0x56, 0x52, 0x54,\n    0x5b, 0x5f, 0x63, 0x66, 0x69, 0x6e, 0x76, 0x7d, 0x80, 0x7e, 0x7c, 0x7b, 0x7a, 0x78, 0x74, 0x72,\n    0x76, 0x70, 0x6f, 0x6e, 0x69, 0x69, 0x6b, 0x67, 0x6b, 0x76, 0x84, 0x8d, 0x95, 0xa0, 0x9e, 0x8f,\n    0x68, 0x3b, 0x25, 0x1a, 0x1f, 0x49, 0x77, 0x94, 0x86, 0x75, 0x79, 0x86, 0x78, 0x5f, 0x50, 0x47,\n    0x4a, 0x4e, 0x4e, 0x52, 0x59, 0x59, 0x5a, 0x62, 0x5e, 0x5c, 0x5e, 0x60, 0x63, 0x68, 0x64, 0x56,\n    0x52, 0x52, 0x52, 0x52, 0x54, 0x59, 0x5f, 0x64, 0x69, 0x60, 0x51, 0x45, 0x42, 0x49, 0x54, 0x5d,\n    0x66, 0x5d, 0x4f, 0x43, 0x3b, 0x37, 0x35, 0x36, 0x37, 0x42, 0x47, 0x41, 0x3c, 0x3c, 0x3c, 0x39,\n    0x34, 0x29, 0x27, 0x30, 0x3a, 0x44, 0x43, 0x39, 0x30, 0x2c, 0x2a, 0x28, 0x24, 0x24, 0x2f, 0x3c,\n    0x45, 0x3f, 0x37, 0x30, 0x2b, 0x2b, 0x31, 0x39, 0x3f, 0x38, 0x32, 0x31, 0x35, 0x36, 0x33, 0x2e,\n    0x30, 0x37, 0x3c, 0x3b, 0x39, 0x37, 0x30, 0x28, 0x22, 0x1b, 0x24, 0x36, 0x3d, 0x3d, 0x3b, 0x36,\n    0x39, 0x3f, 0x40, 0x3d, 0x45, 0x51, 0x4d, 0x40, 0x31, 0x28, 0x29, 0x36, 0x44, 0x50, 0x50, 0x47,\n    0x39, 0x2d, 0x23, 0x23, 0x27, 0x2b, 0x32, 0x3a, 0x47, 0x50, 0x57, 0x56, 0x51, 0x4d, 0x4b, 0x4a,\n    0x48, 0x49, 0x45, 0x3d, 0x37, 0x37, 0x38, 0x38, 0x3d, 0x34, 0x31, 0x38, 0x3e, 0x3c, 0x37, 0x35,\n    0x36, 0x42, 0x51, 0x58, 0x50, 0x43, 0x3c, 0x3d, 0x42, 0x3e, 0x41, 0x49, 0x4a, 0x43, 0x41, 0x45,\n    0x43, 0x44, 0x43, 0x42, 0x47, 0x4e, 0x51, 0x50, 0x44, 0x49, 0x51, 0x54, 0x4d, 0x42, 0x3e, 0x41,\n    0x4c, 0x4a, 0x44, 0x3b, 0x36, 0x37, 0x3b, 0x3d, 0x3f, 0x3e, 0x3e, 0x3e, 0x3c, 0x3b, 0x42, 0x4a,\n    0x4f, 0x4a, 0x43, 0x3e, 0x3c, 0x3d, 0x40, 0x42, 0x43, 0x4c, 0x4e, 0x46, 0x41, 0x47, 0x52, 0x58,\n    0x5a, 0x5b, 0x5d, 0x5a, 0x4a, 0x37, 0x2e, 0x30, 0x34, 0x36, 0x3d, 0x49, 0x5a, 0x67, 0x68, 0x63,\n    0x5f, 0x65, 0x6b, 0x68, 0x5a, 0x4b, 0x43, 0x44, 0x57, 0x58, 0x55, 0x4e, 0x4a, 0x4c, 0x50, 0x52,\n    0x47, 0x54, 0x69, 0x6b, 0x52, 0x3c, 0x3b, 0x40, 0x42, 0x45, 0x45, 0x42, 0x42, 0x45, 0x47, 0x46,\n    0x3a, 0x34, 0x2d, 0x2b, 0x2f, 0x33, 0x35, 0x34, 0x37, 0x3a, 0x3d, 0x42, 0x4c, 0x58, 0x5d, 0x5d,\n    0x4b, 0x4d, 0x4e, 0x4e, 0x4e, 0x4f, 0x52, 0x54, 0x57, 0x5a, 0x5d, 0x61, 0x67, 0x6d, 0x6d, 0x69,\n    0x68, 0x6c, 0x6e, 0x6f, 0x77, 0x82, 0x85, 0x82, 0x63, 0x57, 0x4f, 0x53, 0x59, 0x5a, 0x5b, 0x5e,\n    0x61, 0x5d, 0x5a, 0x5c, 0x5e, 0x5e, 0x61, 0x65, 0x70, 0x82, 0x92, 0x95, 0x91, 0x88, 0x72, 0x5d,\n    0x5a, 0x5a, 0x5e, 0x65, 0x68, 0x63, 0x5c, 0x58, 0x5d, 0x5d, 0x60, 0x5f, 0x5b, 0x65, 0x78, 0x82,\n    0x75, 0x6b, 0x5d, 0x53, 0x50, 0x56, 0x62, 0x6c, 0x6d, 0x72, 0x74, 0x6f, 0x69, 0x68, 0x69, 0x68,\n    0x66, 0x5f, 0x57, 0x54, 0x57, 0x5c, 0x60, 0x63, 0x5e, 0x63, 0x6a, 0x71, 0x73, 0x70, 0x6b, 0x67,\n    0x73, 0x77, 0x7a, 0x7b, 0x7a, 0x7d, 0x83, 0x89, 0x8a, 0x7e, 0x71, 0x6a, 0x5f, 0x50, 0x46, 0x42,\n    0x40, 0x3e, 0x40, 0x4b, 0x57, 0x63, 0x6e, 0x76, 0x74, 0x74, 0x77, 0x7e, 0x84, 0x82, 0x78, 0x6e,\n    0x6a, 0x6c, 0x6e, 0x6c, 0x6f, 0x60, 0x4e, 0x5e, 0x61, 0x5e, 0x5d, 0x60, 0x66, 0x69, 0x69, 0x67,\n    0x6f, 0x73, 0x77, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7c, 0x7e, 0x80, 0x80, 0x80, 0x81, 0x84, 0x87,\n    0x89, 0x8a, 0x8b, 0x8b, 0x8a, 0x8a, 0x8a, 0x8b, 0x8b, 0x8b, 0x8b, 0x8c, 0x8d, 0x8f, 0x91, 0x92,\n    0x8e, 0x8f, 0x90, 0x92, 0x93, 0x94, 0x95, 0x95, 0x95, 0x96, 0x96, 0x95, 0x97, 0x9b, 0x9c, 0x9a,\n    0x9a, 0x9b, 0x9c, 0x9d, 0x9f, 0xa0, 0xa0, 0xa1, 0xa4, 0xa4, 0xa5, 0xa4, 0xa4, 0xa4, 0xa6, 0xa8,\n    0xaa, 0xaa, 0xa9, 0xa9, 0xaa, 0xab, 0xac, 0xad, 0xab, 0xac, 0xad, 0xad, 0xab, 0xaa, 0xa9, 0xa9,\n    0xab, 0xaa, 0xa8, 0xa8, 0xa9, 0xa9, 0xa8, 0xa7, 0xa6, 0xa6, 0xa6, 0xa6, 0xa7, 0xa7, 0xa7, 0xa7,\n    0xa7, 0xa7, 0xa6, 0xa6, 0xa5, 0xa5, 0xa5, 0xa6, 0xa3, 0xa4, 0xa5, 0xa5, 0xa4, 0xa3, 0xa2, 0xa1,\n    0x9f, 0x9e, 0x9e, 0x9e, 0x9d, 0x9d, 0x9d, 0x9d, 0x9c, 0x9a, 0x98, 0x96, 0x95, 0x94, 0x93, 0x92,\n    0x90, 0x8f, 0x8e, 0x8c, 0x8b, 0x8a, 0x89, 0x88, 0x85, 0x83, 0x82, 0x81, 0x81, 0x7f, 0x7d, 0x7b,\n    0x7d, 0x7e, 0x7f, 0x7d, 0x7b, 0x78, 0x77, 0x77, 0x74, 0x73, 0x71, 0x6f, 0x6d, 0x6a, 0x66, 0x63,\n    0x62, 0x5e, 0x58, 0x54, 0x53, 0x54, 0x54, 0x53, 0x74, 0x78, 0x77, 0x77, 0x7b, 0x78, 0x72, 0x73,\n    0x6f, 0x70, 0x71, 0x71, 0x72, 0x77, 0x7c, 0x81, 0x7d, 0x7d, 0x7c, 0x7a, 0x79, 0x78, 0x79, 0x79,\n    0x7a, 0x76, 0x77, 0x79, 0x77, 0x7c, 0x7e, 0x7a, 0x74, 0x76, 0x7f, 0x89, 0x92, 0x9a, 0x95, 0x85,\n    0x72, 0x51, 0x35, 0x21, 0x2b, 0x59, 0x82, 0x9b, 0x94, 0x7b, 0x69, 0x67, 0x5f, 0x4f, 0x45, 0x45,\n    0x4a, 0x51, 0x50, 0x4f, 0x55, 0x52, 0x4e, 0x54, 0x54, 0x54, 0x58, 0x5a, 0x5d, 0x6b, 0x75, 0x73,\n    0x5c, 0x54, 0x4d, 0x4d, 0x53, 0x5b, 0x5e, 0x5f, 0x61, 0x5f, 0x5b, 0x55, 0x4f, 0x4f, 0x55, 0x5b,\n    0x6b, 0x66, 0x5d, 0x51, 0x46, 0x3c, 0x33, 0x2c, 0x26, 0x31, 0x3d, 0x42, 0x42, 0x42, 0x41, 0x3f,\n    0x38, 0x2d, 0x2b, 0x32, 0x3b, 0x45, 0x45, 0x3c, 0x32, 0x2d, 0x2a, 0x29, 0x26, 0x24, 0x2a, 0x33,\n    0x3f, 0x3c, 0x38, 0x33, 0x2d, 0x2a, 0x30, 0x39, 0x45, 0x3f, 0x34, 0x2e, 0x34, 0x3c, 0x3b, 0x33,\n    0x2e, 0x35, 0x39, 0x39, 0x39, 0x38, 0x32, 0x2a, 0x21, 0x17, 0x1e, 0x30, 0x39, 0x3b, 0x3b, 0x38,\n    0x3e, 0x3f, 0x3d, 0x3d, 0x46, 0x4f, 0x4a, 0x3c, 0x35, 0x2b, 0x2c, 0x39, 0x49, 0x53, 0x4f, 0x42,\n    0x2b, 0x22, 0x1b, 0x1d, 0x24, 0x2b, 0x34, 0x3c, 0x47, 0x50, 0x58, 0x58, 0x53, 0x4e, 0x4a, 0x47,\n    0x44, 0x44, 0x3f, 0x39, 0x37, 0x3b, 0x3f, 0x3f, 0x41, 0x35, 0x2d, 0x33, 0x3f, 0x48, 0x4b, 0x4b,\n    0x47, 0x47, 0x46, 0x43, 0x3c, 0x36, 0x3a, 0x42, 0x42, 0x42, 0x4f, 0x60, 0x60, 0x4f, 0x43, 0x43,\n    0x43, 0x44, 0x42, 0x41, 0x48, 0x53, 0x59, 0x5a, 0x45, 0x3f, 0x3e, 0x44, 0x45, 0x44, 0x4b, 0x57,\n    0x5b, 0x5a, 0x51, 0x43, 0x3b, 0x3b, 0x3b, 0x38, 0x3e, 0x3d, 0x3e, 0x3d, 0x38, 0x33, 0x36, 0x3c,\n    0x3c, 0x3e, 0x3c, 0x38, 0x36, 0x39, 0x3b, 0x3b, 0x38, 0x41, 0x45, 0x3f, 0x3c, 0x41, 0x48, 0x49,\n    0x49, 0x49, 0x4a, 0x48, 0x3e, 0x32, 0x32, 0x39, 0x35, 0x39, 0x3c, 0x40, 0x4c, 0x59, 0x5a, 0x53,\n    0x5d, 0x66, 0x6d, 0x65, 0x52, 0x44, 0x46, 0x4f, 0x56, 0x59, 0x59, 0x55, 0x51, 0x51, 0x53, 0x54,\n    0x57, 0x4e, 0x50, 0x55, 0x50, 0x4a, 0x48, 0x46, 0x42, 0x48, 0x4d, 0x4e, 0x4d, 0x4d, 0x4a, 0x45,\n    0x3b, 0x36, 0x30, 0x2d, 0x30, 0x35, 0x3a, 0x3d, 0x3e, 0x3c, 0x39, 0x39, 0x40, 0x49, 0x4d, 0x4b,\n    0x4b, 0x49, 0x48, 0x49, 0x4b, 0x4c, 0x4a, 0x48, 0x4d, 0x50, 0x54, 0x59, 0x62, 0x69, 0x67, 0x61,\n    0x65, 0x62, 0x5c, 0x5b, 0x68, 0x7a, 0x81, 0x7e, 0x68, 0x5c, 0x51, 0x4f, 0x54, 0x58, 0x58, 0x57,\n    0x58, 0x5a, 0x5d, 0x61, 0x63, 0x64, 0x66, 0x68, 0x6c, 0x77, 0x7d, 0x7b, 0x7a, 0x79, 0x6e, 0x5e,\n    0x50, 0x4e, 0x4c, 0x48, 0x42, 0x3f, 0x42, 0x48, 0x4b, 0x49, 0x4e, 0x51, 0x52, 0x5f, 0x73, 0x7c,\n    0x76, 0x6a, 0x5b, 0x50, 0x4d, 0x54, 0x60, 0x6a, 0x72, 0x76, 0x79, 0x75, 0x6e, 0x6a, 0x6b, 0x6d,\n    0x65, 0x5f, 0x59, 0x56, 0x56, 0x56, 0x57, 0x58, 0x62, 0x65, 0x69, 0x6f, 0x73, 0x75, 0x75, 0x74,\n    0x7b, 0x84, 0x8b, 0x89, 0x81, 0x7e, 0x83, 0x8a, 0x8a, 0x7e, 0x71, 0x66, 0x57, 0x44, 0x37, 0x34,\n    0x33, 0x2d, 0x2d, 0x39, 0x48, 0x54, 0x5e, 0x65, 0x6d, 0x62, 0x61, 0x6e, 0x75, 0x70, 0x6d, 0x6f,\n    0x6e, 0x6c, 0x6d, 0x70, 0x75, 0x5e, 0x47, 0x59, 0x5d, 0x5a, 0x5a, 0x60, 0x66, 0x68, 0x67, 0x68,\n    0x70, 0x73, 0x77, 0x79, 0x7a, 0x79, 0x79, 0x79, 0x7b, 0x7d, 0x7f, 0x80, 0x7f, 0x80, 0x83, 0x86,\n    0x88, 0x89, 0x8a, 0x8a, 0x89, 0x88, 0x89, 0x8a, 0x89, 0x8a, 0x8c, 0x8e, 0x8f, 0x90, 0x91, 0x91,\n    0x91, 0x92, 0x92, 0x93, 0x93, 0x93, 0x93, 0x93, 0x95, 0x95, 0x95, 0x94, 0x96, 0x9a, 0x9b, 0x99,\n    0x98, 0x9a, 0x9c, 0x9e, 0x9f, 0x9e, 0x9d, 0x9d, 0xa2, 0xa3, 0xa4, 0xa5, 0xa4, 0xa4, 0xa4, 0xa5,\n    0xa7, 0xa7, 0xa7, 0xa7, 0xa8, 0xa9, 0xaa, 0xab, 0xa9, 0xaa, 0xac, 0xac, 0xab, 0xa9, 0xa8, 0xa8,\n    0xab, 0xa9, 0xa7, 0xa7, 0xa8, 0xa9, 0xa8, 0xa6, 0xa3, 0xa4, 0xa5, 0xa5, 0xa6, 0xa6, 0xa6, 0xa6,\n    0xa7, 0xa6, 0xa5, 0xa5, 0xa4, 0xa5, 0xa5, 0xa6, 0xa1, 0xa2, 0xa2, 0xa3, 0xa2, 0xa1, 0xa0, 0x9f,\n    0xa0, 0xa0, 0x9f, 0x9e, 0x9e, 0x9e, 0x9e, 0x9e, 0x9c, 0x9a, 0x98, 0x97, 0x96, 0x95, 0x93, 0x91,\n    0x90, 0x90, 0x8e, 0x8d, 0x8b, 0x89, 0x88, 0x88, 0x83, 0x82, 0x82, 0x82, 0x82, 0x80, 0x7d, 0x7b,\n    0x7d, 0x7f, 0x7f, 0x7e, 0x7a, 0x77, 0x76, 0x77, 0x73, 0x72, 0x71, 0x6f, 0x6d, 0x6a, 0x65, 0x62,\n    0x63, 0x5f, 0x59, 0x53, 0x51, 0x52, 0x52, 0x52, 0x6c, 0x72, 0x74, 0x78, 0x7e, 0x7c, 0x77, 0x78,\n    0x74, 0x74, 0x75, 0x77, 0x79, 0x79, 0x78, 0x76, 0x73, 0x77, 0x7b, 0x7c, 0x7b, 0x7b, 0x7e, 0x81,\n    0x85, 0x7f, 0x7d, 0x7e, 0x7e, 0x82, 0x83, 0x7d, 0x82, 0x81, 0x86, 0x89, 0x87, 0x85, 0x80, 0x75,\n    0x75, 0x6e, 0x67, 0x58, 0x5d, 0x71, 0x74, 0x73, 0x65, 0x5b, 0x51, 0x51, 0x53, 0x49, 0x41, 0x44,\n    0x45, 0x51, 0x4f, 0x48, 0x4b, 0x45, 0x3a, 0x39, 0x37, 0x41, 0x52, 0x5d, 0x64, 0x71, 0x7a, 0x77,\n    0x5e, 0x53, 0x49, 0x4c, 0x57, 0x60, 0x5f, 0x5a, 0x4c, 0x54, 0x5e, 0x63, 0x61, 0x5c, 0x59, 0x59,\n    0x63, 0x63, 0x5f, 0x57, 0x4d, 0x43, 0x37, 0x2e, 0x2b, 0x34, 0x40, 0x48, 0x49, 0x44, 0x41, 0x3f,\n    0x3b, 0x30, 0x2c, 0x32, 0x3a, 0x44, 0x45, 0x3e, 0x36, 0x30, 0x2c, 0x2b, 0x28, 0x24, 0x26, 0x2b,\n    0x3b, 0x3a, 0x39, 0x36, 0x2f, 0x2c, 0x32, 0x3c, 0x4a, 0x42, 0x33, 0x2a, 0x31, 0x3f, 0x3f, 0x34,\n    0x2f, 0x36, 0x3b, 0x3a, 0x39, 0x39, 0x36, 0x30, 0x24, 0x18, 0x1c, 0x2e, 0x39, 0x3d, 0x3f, 0x3e,\n    0x46, 0x42, 0x3d, 0x3d, 0x47, 0x50, 0x4a, 0x3d, 0x33, 0x28, 0x29, 0x37, 0x47, 0x4f, 0x47, 0x36,\n    0x25, 0x1e, 0x1b, 0x20, 0x29, 0x32, 0x3c, 0x44, 0x49, 0x51, 0x59, 0x5a, 0x56, 0x52, 0x4d, 0x49,\n    0x44, 0x44, 0x43, 0x41, 0x3e, 0x42, 0x4f, 0x5b, 0x55, 0x3b, 0x27, 0x2b, 0x3d, 0x4b, 0x4c, 0x49,\n    0x45, 0x3e, 0x38, 0x37, 0x38, 0x38, 0x3a, 0x3b, 0x3d, 0x40, 0x4f, 0x5f, 0x5c, 0x48, 0x3c, 0x3e,\n    0x3e, 0x3d, 0x3e, 0x3d, 0x40, 0x4f, 0x5b, 0x5a, 0x4c, 0x42, 0x3e, 0x46, 0x50, 0x54, 0x56, 0x5a,\n    0x5e, 0x54, 0x49, 0x40, 0x39, 0x34, 0x35, 0x39, 0x41, 0x3e, 0x40, 0x44, 0x42, 0x3b, 0x38, 0x3a,\n    0x3a, 0x39, 0x38, 0x37, 0x34, 0x33, 0x37, 0x3c, 0x40, 0x40, 0x41, 0x41, 0x3c, 0x39, 0x40, 0x4b,\n    0x52, 0x4a, 0x44, 0x42, 0x3d, 0x36, 0x34, 0x36, 0x34, 0x35, 0x38, 0x3d, 0x46, 0x50, 0x5a, 0x60,\n    0x60, 0x60, 0x58, 0x4c, 0x46, 0x4a, 0x4c, 0x49, 0x4f, 0x50, 0x53, 0x58, 0x5c, 0x5c, 0x57, 0x52,\n    0x47, 0x4c, 0x51, 0x52, 0x51, 0x51, 0x50, 0x4e, 0x4a, 0x4b, 0x4e, 0x50, 0x4f, 0x49, 0x3f, 0x38,\n    0x36, 0x33, 0x2f, 0x2f, 0x32, 0x35, 0x38, 0x39, 0x3c, 0x37, 0x35, 0x36, 0x38, 0x3b, 0x42, 0x4b,\n    0x48, 0x47, 0x49, 0x4e, 0x50, 0x4f, 0x51, 0x56, 0x5b, 0x5e, 0x60, 0x61, 0x67, 0x6c, 0x65, 0x5a,\n    0x62, 0x57, 0x4c, 0x4c, 0x55, 0x61, 0x6c, 0x74, 0x69, 0x59, 0x4e, 0x4f, 0x51, 0x4f, 0x52, 0x59,\n    0x58, 0x5b, 0x5c, 0x5c, 0x60, 0x65, 0x65, 0x61, 0x6a, 0x6e, 0x6e, 0x67, 0x61, 0x5f, 0x5f, 0x5e,\n    0x5e, 0x51, 0x46, 0x44, 0x42, 0x3e, 0x3d, 0x3f, 0x3a, 0x3b, 0x3d, 0x40, 0x46, 0x52, 0x6a, 0x7e,\n    0x8a, 0x70, 0x57, 0x51, 0x57, 0x5c, 0x60, 0x65, 0x65, 0x70, 0x72, 0x72, 0x6d, 0x74, 0x82, 0x7c,\n    0x65, 0x5b, 0x5d, 0x65, 0x62, 0x5c, 0x5b, 0x5c, 0x63, 0x64, 0x69, 0x70, 0x75, 0x6f, 0x60, 0x52,\n    0x5e, 0x6a, 0x78, 0x7f, 0x82, 0x84, 0x86, 0x86, 0x81, 0x7c, 0x6e, 0x5c, 0x51, 0x4e, 0x4f, 0x4d,\n    0x49, 0x4d, 0x53, 0x5a, 0x60, 0x63, 0x64, 0x64, 0x63, 0x62, 0x66, 0x6d, 0x6d, 0x67, 0x67, 0x6d,\n    0x6c, 0x6d, 0x77, 0x72, 0x6f, 0x50, 0x4f, 0x59, 0x5d, 0x5c, 0x5d, 0x60, 0x62, 0x62, 0x64, 0x67,\n    0x6e, 0x74, 0x79, 0x7a, 0x78, 0x78, 0x79, 0x78, 0x7c, 0x7e, 0x7e, 0x7c, 0x7c, 0x80, 0x82, 0x83,\n    0x83, 0x85, 0x88, 0x8a, 0x89, 0x88, 0x87, 0x86, 0x86, 0x87, 0x8a, 0x8c, 0x8d, 0x8d, 0x8d, 0x8c,\n    0x8e, 0x90, 0x91, 0x91, 0x91, 0x91, 0x93, 0x94, 0x94, 0x97, 0x97, 0x95, 0x96, 0x99, 0x9a, 0x97,\n    0x98, 0x99, 0x9a, 0x9c, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9e, 0xa0, 0xa2, 0xa3, 0xa4, 0xa4, 0xa4,\n    0xa6, 0xa6, 0xa7, 0xa7, 0xa8, 0xa8, 0xa8, 0xa8, 0xa9, 0xa9, 0xa9, 0xa7, 0xa5, 0xa4, 0xa4, 0xa5,\n    0xa8, 0xa7, 0xa7, 0xa7, 0xa7, 0xa7, 0xa7, 0xa8, 0xa9, 0xa8, 0xa7, 0xa6, 0xa5, 0xa4, 0xa4, 0xa4,\n    0xa7, 0xa7, 0xa6, 0xa6, 0xa6, 0xa5, 0xa5, 0xa5, 0xa3, 0xa3, 0xa3, 0xa2, 0xa2, 0xa1, 0xa1, 0xa1,\n    0xa0, 0x9f, 0x9f, 0x9e, 0x9e, 0x9e, 0x9e, 0x9f, 0x99, 0x98, 0x97, 0x97, 0x97, 0x95, 0x93, 0x91,\n    0x8e, 0x90, 0x90, 0x8e, 0x8d, 0x8c, 0x89, 0x85, 0x87, 0x85, 0x82, 0x80, 0x7f, 0x7f, 0x7e, 0x7d,\n    0x7a, 0x7a, 0x79, 0x79, 0x78, 0x76, 0x75, 0x75, 0x73, 0x73, 0x71, 0x6e, 0x6a, 0x67, 0x64, 0x63,\n    0x5f, 0x5f, 0x5c, 0x56, 0x53, 0x52, 0x50, 0x4e, 0x62, 0x6c, 0x6e, 0x74, 0x72, 0x6d, 0x73, 0x72,\n    0x6e, 0x70, 0x70, 0x6c, 0x69, 0x67, 0x67, 0x67, 0x64, 0x6a, 0x70, 0x74, 0x75, 0x78, 0x7d, 0x81,\n    0x7b, 0x7c, 0x7e, 0x80, 0x83, 0x86, 0x87, 0x88, 0x88, 0x83, 0x81, 0x84, 0x86, 0x85, 0x84, 0x86,\n    0x7f, 0x80, 0x7d, 0x77, 0x73, 0x73, 0x72, 0x6e, 0x61, 0x68, 0x68, 0x5d, 0x4e, 0x47, 0x49, 0x4d,\n    0x49, 0x4a, 0x4e, 0x54, 0x54, 0x4c, 0x42, 0x3c, 0x38, 0x48, 0x5c, 0x69, 0x70, 0x73, 0x75, 0x77,\n    0x60, 0x5e, 0x5d, 0x5f, 0x5f, 0x5d, 0x5c, 0x5c, 0x4f, 0x4f, 0x5b, 0x64, 0x66, 0x6c, 0x67, 0x53,\n    0x4d, 0x4f, 0x58, 0x5e, 0x56, 0x46, 0x3e, 0x40, 0x3e, 0x42, 0x47, 0x4c, 0x4d, 0x48, 0x41, 0x3b,\n    0x38, 0x32, 0x31, 0x34, 0x39, 0x43, 0x45, 0x3c, 0x3e, 0x38, 0x31, 0x2a, 0x25, 0x23, 0x28, 0x2e,\n    0x38, 0x41, 0x43, 0x3e, 0x38, 0x30, 0x2f, 0x37, 0x45, 0x41, 0x30, 0x2e, 0x36, 0x3c, 0x3d, 0x2f,\n    0x2b, 0x30, 0x38, 0x39, 0x36, 0x3b, 0x3e, 0x38, 0x30, 0x25, 0x1e, 0x2b, 0x3f, 0x42, 0x3f, 0x43,\n    0x46, 0x49, 0x3a, 0x37, 0x4e, 0x51, 0x3f, 0x38, 0x21, 0x25, 0x31, 0x3b, 0x3d, 0x3e, 0x39, 0x2e,\n    0x28, 0x21, 0x1e, 0x23, 0x2f, 0x38, 0x3c, 0x3d, 0x41, 0x48, 0x51, 0x58, 0x5a, 0x59, 0x57, 0x57,\n    0x47, 0x46, 0x47, 0x47, 0x46, 0x4a, 0x55, 0x5f, 0x59, 0x44, 0x2f, 0x2e, 0x3c, 0x47, 0x45, 0x3f,\n    0x40, 0x3f, 0x3e, 0x3d, 0x3a, 0x37, 0x39, 0x3e, 0x3f, 0x3e, 0x44, 0x4b, 0x47, 0x3c, 0x39, 0x3d,\n    0x3e, 0x3c, 0x41, 0x44, 0x42, 0x45, 0x4c, 0x4d, 0x4c, 0x44, 0x3e, 0x41, 0x46, 0x4b, 0x51, 0x56,\n    0x58, 0x50, 0x43, 0x37, 0x30, 0x30, 0x34, 0x37, 0x3c, 0x46, 0x4d, 0x49, 0x41, 0x3c, 0x3f, 0x43,\n    0x3d, 0x37, 0x31, 0x31, 0x32, 0x35, 0x39, 0x3d, 0x45, 0x47, 0x46, 0x41, 0x3f, 0x41, 0x43, 0x43,\n    0x44, 0x3f, 0x3d, 0x3f, 0x3c, 0x35, 0x32, 0x33, 0x36, 0x36, 0x37, 0x39, 0x3f, 0x49, 0x55, 0x5d,\n    0x5e, 0x5e, 0x59, 0x53, 0x53, 0x57, 0x56, 0x50, 0x4c, 0x4c, 0x4e, 0x51, 0x54, 0x53, 0x4f, 0x4b,\n    0x47, 0x4c, 0x51, 0x54, 0x56, 0x55, 0x4e, 0x47, 0x46, 0x4a, 0x51, 0x58, 0x59, 0x50, 0x40, 0x34,\n    0x33, 0x33, 0x33, 0x35, 0x38, 0x3a, 0x3a, 0x39, 0x3c, 0x39, 0x38, 0x3c, 0x42, 0x46, 0x49, 0x4b,\n    0x49, 0x47, 0x47, 0x4b, 0x4d, 0x4d, 0x4f, 0x52, 0x52, 0x55, 0x5c, 0x64, 0x67, 0x65, 0x61, 0x5f,\n    0x58, 0x56, 0x53, 0x50, 0x50, 0x56, 0x65, 0x73, 0x6a, 0x5e, 0x51, 0x4d, 0x4d, 0x53, 0x62, 0x70,\n    0x76, 0x6c, 0x66, 0x66, 0x60, 0x55, 0x52, 0x58, 0x62, 0x6b, 0x72, 0x6e, 0x66, 0x61, 0x5f, 0x5d,\n    0x57, 0x55, 0x50, 0x48, 0x41, 0x3e, 0x3e, 0x3e, 0x40, 0x3e, 0x3b, 0x37, 0x39, 0x47, 0x63, 0x7b,\n    0x79, 0x68, 0x55, 0x51, 0x56, 0x5e, 0x64, 0x68, 0x6b, 0x70, 0x77, 0x87, 0x8c, 0x8c, 0x8d, 0x7f,\n    0x77, 0x71, 0x79, 0x83, 0x7c, 0x6d, 0x63, 0x5c, 0x61, 0x6b, 0x72, 0x73, 0x77, 0x75, 0x61, 0x49,\n    0x42, 0x50, 0x62, 0x6f, 0x74, 0x76, 0x79, 0x7d, 0x74, 0x72, 0x6c, 0x62, 0x5d, 0x5f, 0x63, 0x63,\n    0x61, 0x62, 0x63, 0x65, 0x67, 0x69, 0x6b, 0x6d, 0x70, 0x72, 0x76, 0x76, 0x6e, 0x66, 0x66, 0x6b,\n    0x68, 0x6a, 0x76, 0x72, 0x6c, 0x4f, 0x4f, 0x59, 0x5d, 0x5b, 0x5a, 0x5d, 0x5f, 0x60, 0x63, 0x67,\n    0x6d, 0x73, 0x78, 0x79, 0x78, 0x79, 0x7a, 0x79, 0x7b, 0x7d, 0x7d, 0x7b, 0x7c, 0x7f, 0x82, 0x82,\n    0x82, 0x84, 0x86, 0x87, 0x87, 0x86, 0x85, 0x85, 0x86, 0x88, 0x8a, 0x8c, 0x8d, 0x8d, 0x8c, 0x8b,\n    0x8d, 0x8e, 0x90, 0x90, 0x8f, 0x8f, 0x91, 0x92, 0x93, 0x95, 0x96, 0x94, 0x95, 0x97, 0x98, 0x96,\n    0x96, 0x97, 0x98, 0x99, 0x9a, 0x9b, 0x9b, 0x9a, 0x9c, 0x9d, 0x9e, 0xa0, 0xa1, 0xa2, 0xa3, 0xa3,\n    0xa3, 0xa4, 0xa4, 0xa4, 0xa5, 0xa5, 0xa5, 0xa5, 0xa6, 0xa7, 0xa7, 0xa6, 0xa5, 0xa4, 0xa5, 0xa6,\n    0xa7, 0xa7, 0xa6, 0xa6, 0xa6, 0xa6, 0xa7, 0xa7, 0xa8, 0xa8, 0xa7, 0xa6, 0xa5, 0xa4, 0xa4, 0xa4,\n    0xa5, 0xa5, 0xa5, 0xa5, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa3, 0xa2, 0xa2, 0xa2, 0xa1,\n    0xa0, 0x9f, 0x9f, 0x9e, 0x9d, 0x9d, 0x9c, 0x9c, 0x9a, 0x99, 0x98, 0x97, 0x97, 0x96, 0x93, 0x92,\n    0x8f, 0x8f, 0x8f, 0x8d, 0x8c, 0x8b, 0x88, 0x83, 0x86, 0x84, 0x81, 0x80, 0x7f, 0x7e, 0x7d, 0x7c,\n    0x7b, 0x7a, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x75, 0x72, 0x72, 0x71, 0x6e, 0x6a, 0x67, 0x65, 0x63,\n    0x60, 0x5f, 0x5c, 0x56, 0x52, 0x52, 0x50, 0x4e, 0x52, 0x5a, 0x58, 0x59, 0x58, 0x57, 0x60, 0x5f,\n    0x62, 0x65, 0x69, 0x6a, 0x69, 0x69, 0x69, 0x69, 0x66, 0x67, 0x69, 0x6b, 0x6d, 0x6e, 0x70, 0x72,\n    0x7a, 0x7a, 0x7b, 0x7d, 0x80, 0x83, 0x84, 0x85, 0x83, 0x82, 0x84, 0x88, 0x87, 0x83, 0x82, 0x84,\n    0x83, 0x85, 0x84, 0x80, 0x7f, 0x81, 0x81, 0x80, 0x83, 0x87, 0x80, 0x69, 0x4d, 0x3e, 0x3d, 0x42,\n    0x42, 0x45, 0x4b, 0x54, 0x57, 0x55, 0x51, 0x50, 0x4f, 0x5c, 0x65, 0x65, 0x65, 0x69, 0x6a, 0x65,\n    0x5f, 0x61, 0x64, 0x67, 0x68, 0x65, 0x5d, 0x56, 0x58, 0x56, 0x59, 0x5a, 0x58, 0x5e, 0x5d, 0x4e,\n    0x48, 0x4a, 0x54, 0x60, 0x60, 0x55, 0x4b, 0x49, 0x4f, 0x52, 0x55, 0x52, 0x4b, 0x43, 0x3d, 0x3b,\n    0x3c, 0x35, 0x31, 0x30, 0x34, 0x40, 0x46, 0x40, 0x3e, 0x38, 0x32, 0x2e, 0x2b, 0x2a, 0x2b, 0x2e,\n    0x38, 0x40, 0x42, 0x3e, 0x38, 0x30, 0x2f, 0x38, 0x4a, 0x46, 0x34, 0x30, 0x36, 0x3d, 0x43, 0x39,\n    0x2e, 0x30, 0x36, 0x38, 0x35, 0x39, 0x3e, 0x3b, 0x35, 0x2a, 0x21, 0x2e, 0x42, 0x47, 0x44, 0x48,\n    0x45, 0x46, 0x3c, 0x40, 0x57, 0x53, 0x39, 0x2b, 0x22, 0x23, 0x2e, 0x3b, 0x43, 0x4a, 0x47, 0x3a,\n    0x21, 0x1d, 0x1c, 0x22, 0x2c, 0x35, 0x3b, 0x3d, 0x48, 0x4d, 0x53, 0x57, 0x5a, 0x5b, 0x57, 0x51,\n    0x45, 0x44, 0x44, 0x45, 0x44, 0x45, 0x4a, 0x50, 0x4d, 0x40, 0x30, 0x2b, 0x36, 0x43, 0x42, 0x3a,\n    0x3d, 0x40, 0x45, 0x45, 0x3f, 0x3a, 0x3c, 0x41, 0x40, 0x3e, 0x3e, 0x3e, 0x3c, 0x3c, 0x40, 0x45,\n    0x45, 0x43, 0x4b, 0x52, 0x4b, 0x42, 0x42, 0x44, 0x41, 0x3f, 0x3d, 0x3d, 0x3f, 0x41, 0x42, 0x42,\n    0x41, 0x43, 0x40, 0x38, 0x35, 0x35, 0x33, 0x2f, 0x3b, 0x4a, 0x52, 0x4b, 0x42, 0x41, 0x44, 0x45,\n    0x42, 0x39, 0x32, 0x34, 0x3a, 0x3e, 0x3f, 0x3f, 0x3f, 0x44, 0x42, 0x3c, 0x3f, 0x49, 0x48, 0x40,\n    0x43, 0x41, 0x42, 0x45, 0x42, 0x39, 0x34, 0x34, 0x37, 0x38, 0x39, 0x39, 0x3a, 0x40, 0x49, 0x51,\n    0x59, 0x59, 0x56, 0x55, 0x59, 0x5c, 0x56, 0x4d, 0x4c, 0x4b, 0x4a, 0x4b, 0x4c, 0x4c, 0x49, 0x46,\n    0x4b, 0x4c, 0x4e, 0x51, 0x56, 0x57, 0x50, 0x48, 0x48, 0x4b, 0x53, 0x5c, 0x5e, 0x55, 0x43, 0x35,\n    0x33, 0x33, 0x34, 0x35, 0x38, 0x3a, 0x3b, 0x3b, 0x3b, 0x3b, 0x3e, 0x46, 0x52, 0x5b, 0x5c, 0x59,\n    0x52, 0x50, 0x51, 0x55, 0x57, 0x56, 0x55, 0x54, 0x52, 0x50, 0x53, 0x59, 0x58, 0x56, 0x5d, 0x68,\n    0x6b, 0x63, 0x5a, 0x58, 0x59, 0x5d, 0x63, 0x67, 0x64, 0x62, 0x5e, 0x58, 0x57, 0x5b, 0x65, 0x6d,\n    0x71, 0x6a, 0x68, 0x6b, 0x63, 0x51, 0x47, 0x47, 0x59, 0x64, 0x6e, 0x6d, 0x66, 0x60, 0x5e, 0x5e,\n    0x63, 0x6a, 0x67, 0x57, 0x49, 0x45, 0x45, 0x44, 0x47, 0x4a, 0x4b, 0x47, 0x41, 0x41, 0x4d, 0x5b,\n    0x65, 0x64, 0x61, 0x5f, 0x64, 0x6c, 0x71, 0x73, 0x6d, 0x69, 0x6d, 0x86, 0x95, 0x97, 0x98, 0x8b,\n    0x7a, 0x72, 0x75, 0x7c, 0x76, 0x6c, 0x66, 0x61, 0x61, 0x6e, 0x72, 0x6e, 0x79, 0x8c, 0x8a, 0x79,\n    0x55, 0x50, 0x53, 0x63, 0x74, 0x7a, 0x76, 0x73, 0x70, 0x6e, 0x68, 0x5d, 0x54, 0x50, 0x4f, 0x4f,\n    0x48, 0x47, 0x45, 0x45, 0x47, 0x4c, 0x51, 0x54, 0x5e, 0x64, 0x69, 0x6b, 0x6b, 0x6a, 0x68, 0x65,\n    0x63, 0x68, 0x75, 0x72, 0x66, 0x4e, 0x50, 0x5a, 0x5d, 0x5b, 0x5a, 0x5c, 0x5e, 0x60, 0x64, 0x69,\n    0x6b, 0x71, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7a, 0x79, 0x7b, 0x7b, 0x7a, 0x7a, 0x7e, 0x81, 0x81,\n    0x80, 0x82, 0x84, 0x84, 0x83, 0x83, 0x83, 0x83, 0x86, 0x87, 0x89, 0x8b, 0x8c, 0x8c, 0x8b, 0x8b,\n    0x8d, 0x8e, 0x8e, 0x8e, 0x8e, 0x8d, 0x8e, 0x8f, 0x91, 0x93, 0x93, 0x92, 0x93, 0x95, 0x95, 0x94,\n    0x94, 0x95, 0x96, 0x97, 0x98, 0x98, 0x99, 0x99, 0x9b, 0x9b, 0x9c, 0x9d, 0x9e, 0xa0, 0xa1, 0xa2,\n    0xa1, 0xa1, 0xa1, 0xa2, 0xa2, 0xa3, 0xa3, 0xa3, 0xa2, 0xa4, 0xa5, 0xa5, 0xa5, 0xa4, 0xa5, 0xa6,\n    0xa6, 0xa6, 0xa5, 0xa5, 0xa5, 0xa5, 0xa6, 0xa6, 0xa7, 0xa6, 0xa5, 0xa4, 0xa4, 0xa3, 0xa3, 0xa3,\n    0xa3, 0xa3, 0xa3, 0xa3, 0xa3, 0xa3, 0xa3, 0xa3, 0xa4, 0xa3, 0xa3, 0xa2, 0xa1, 0xa1, 0xa0, 0xa0,\n    0xa0, 0x9f, 0x9e, 0x9d, 0x9c, 0x9b, 0x9a, 0x9a, 0x9b, 0x99, 0x98, 0x98, 0x98, 0x96, 0x94, 0x93,\n    0x90, 0x8f, 0x8d, 0x8b, 0x8b, 0x8b, 0x87, 0x81, 0x84, 0x82, 0x81, 0x7f, 0x7f, 0x7e, 0x7c, 0x7b,\n    0x7b, 0x7b, 0x79, 0x78, 0x77, 0x76, 0x75, 0x75, 0x71, 0x71, 0x6f, 0x6d, 0x6b, 0x68, 0x65, 0x63,\n    0x60, 0x5f, 0x5b, 0x55, 0x51, 0x51, 0x50, 0x4f, 0x54, 0x5d, 0x57, 0x50, 0x4b, 0x4c, 0x55, 0x52,\n    0x53, 0x57, 0x5d, 0x62, 0x64, 0x64, 0x64, 0x65, 0x64, 0x64, 0x65, 0x67, 0x69, 0x69, 0x66, 0x63,\n    0x6c, 0x6b, 0x6b, 0x6d, 0x70, 0x72, 0x74, 0x74, 0x71, 0x77, 0x7f, 0x84, 0x83, 0x80, 0x80, 0x83,\n    0x82, 0x84, 0x83, 0x80, 0x7e, 0x80, 0x82, 0x82, 0x78, 0x7c, 0x74, 0x5a, 0x3d, 0x31, 0x37, 0x41,\n    0x46, 0x45, 0x47, 0x4b, 0x4d, 0x4f, 0x53, 0x58, 0x57, 0x5d, 0x5b, 0x51, 0x52, 0x5d, 0x62, 0x5d,\n    0x57, 0x5e, 0x65, 0x69, 0x6c, 0x69, 0x5e, 0x51, 0x57, 0x53, 0x51, 0x4e, 0x4a, 0x50, 0x52, 0x4a,\n    0x42, 0x3c, 0x3b, 0x44, 0x4d, 0x4e, 0x4d, 0x4d, 0x58, 0x5b, 0x5c, 0x54, 0x47, 0x3e, 0x3d, 0x3f,\n    0x39, 0x33, 0x30, 0x2d, 0x30, 0x3d, 0x44, 0x3f, 0x3b, 0x38, 0x35, 0x2f, 0x27, 0x24, 0x28, 0x2f,\n    0x3a, 0x42, 0x44, 0x41, 0x3c, 0x32, 0x32, 0x3b, 0x48, 0x44, 0x34, 0x30, 0x34, 0x3b, 0x42, 0x3b,\n    0x33, 0x31, 0x37, 0x3a, 0x35, 0x36, 0x3c, 0x3e, 0x38, 0x2c, 0x24, 0x30, 0x44, 0x49, 0x43, 0x44,\n    0x43, 0x45, 0x41, 0x4a, 0x5a, 0x50, 0x35, 0x29, 0x2b, 0x29, 0x30, 0x3e, 0x4a, 0x52, 0x4d, 0x3d,\n    0x24, 0x20, 0x1e, 0x23, 0x29, 0x2d, 0x30, 0x32, 0x40, 0x47, 0x4e, 0x53, 0x5c, 0x64, 0x61, 0x57,\n    0x47, 0x46, 0x46, 0x48, 0x47, 0x46, 0x46, 0x49, 0x46, 0x42, 0x37, 0x2e, 0x36, 0x46, 0x48, 0x40,\n    0x3f, 0x3f, 0x42, 0x45, 0x44, 0x41, 0x40, 0x41, 0x41, 0x43, 0x42, 0x3e, 0x3e, 0x41, 0x45, 0x46,\n    0x48, 0x46, 0x4e, 0x54, 0x4d, 0x46, 0x43, 0x40, 0x3d, 0x3b, 0x39, 0x3a, 0x3d, 0x3f, 0x3d, 0x39,\n    0x35, 0x3c, 0x3f, 0x3c, 0x3b, 0x3e, 0x3a, 0x31, 0x38, 0x41, 0x47, 0x46, 0x43, 0x42, 0x40, 0x3d,\n    0x3f, 0x38, 0x36, 0x3c, 0x45, 0x48, 0x47, 0x44, 0x3f, 0x43, 0x42, 0x41, 0x48, 0x55, 0x57, 0x52,\n    0x47, 0x45, 0x46, 0x48, 0x44, 0x3c, 0x38, 0x39, 0x36, 0x3a, 0x3d, 0x3d, 0x3a, 0x3a, 0x3d, 0x41,\n    0x4b, 0x4d, 0x4e, 0x50, 0x55, 0x57, 0x52, 0x4a, 0x4f, 0x4c, 0x49, 0x47, 0x47, 0x48, 0x48, 0x47,\n    0x46, 0x45, 0x44, 0x46, 0x4d, 0x55, 0x57, 0x56, 0x51, 0x4f, 0x50, 0x55, 0x58, 0x52, 0x45, 0x3a,\n    0x35, 0x33, 0x31, 0x30, 0x32, 0x36, 0x3a, 0x3d, 0x3e, 0x41, 0x45, 0x4b, 0x57, 0x62, 0x63, 0x5f,\n    0x5c, 0x5d, 0x60, 0x67, 0x6d, 0x6f, 0x6e, 0x6b, 0x66, 0x63, 0x62, 0x60, 0x5b, 0x59, 0x5f, 0x69,\n    0x73, 0x67, 0x5b, 0x59, 0x5c, 0x5e, 0x5f, 0x5f, 0x5d, 0x5e, 0x5e, 0x5e, 0x64, 0x6a, 0x69, 0x63,\n    0x5d, 0x63, 0x69, 0x6d, 0x74, 0x77, 0x71, 0x68, 0x61, 0x67, 0x6c, 0x6c, 0x69, 0x67, 0x69, 0x6b,\n    0x66, 0x6a, 0x66, 0x57, 0x49, 0x45, 0x49, 0x4c, 0x5e, 0x64, 0x6a, 0x6a, 0x62, 0x58, 0x54, 0x54,\n    0x64, 0x74, 0x80, 0x7f, 0x7d, 0x81, 0x84, 0x84, 0x74, 0x6d, 0x68, 0x75, 0x81, 0x8c, 0x9b, 0x97,\n    0x75, 0x66, 0x61, 0x64, 0x63, 0x62, 0x61, 0x5d, 0x5e, 0x68, 0x68, 0x64, 0x73, 0x91, 0xa3, 0xa2,\n    0x7f, 0x69, 0x5c, 0x65, 0x75, 0x7a, 0x76, 0x73, 0x73, 0x72, 0x6c, 0x62, 0x57, 0x51, 0x50, 0x51,\n    0x57, 0x56, 0x55, 0x56, 0x59, 0x5e, 0x63, 0x66, 0x62, 0x69, 0x70, 0x78, 0x83, 0x8b, 0x84, 0x76,\n    0x62, 0x68, 0x74, 0x71, 0x5e, 0x4d, 0x53, 0x5d, 0x5f, 0x5d, 0x5d, 0x5f, 0x62, 0x63, 0x67, 0x6a,\n    0x6c, 0x71, 0x75, 0x76, 0x77, 0x79, 0x79, 0x78, 0x76, 0x79, 0x79, 0x78, 0x78, 0x7c, 0x7f, 0x7f,\n    0x7f, 0x81, 0x82, 0x82, 0x81, 0x81, 0x82, 0x82, 0x85, 0x86, 0x88, 0x8a, 0x8b, 0x8c, 0x8c, 0x8b,\n    0x8d, 0x8e, 0x8e, 0x8e, 0x8d, 0x8d, 0x8e, 0x8f, 0x90, 0x91, 0x91, 0x91, 0x92, 0x93, 0x93, 0x93,\n    0x95, 0x95, 0x96, 0x97, 0x97, 0x98, 0x98, 0x98, 0x9a, 0x9a, 0x9a, 0x9b, 0x9c, 0x9d, 0x9f, 0xa0,\n    0xa0, 0xa0, 0xa1, 0xa1, 0xa2, 0xa2, 0xa2, 0xa2, 0xa0, 0xa1, 0xa3, 0xa4, 0xa3, 0xa3, 0xa3, 0xa4,\n    0xa4, 0xa4, 0xa4, 0xa3, 0xa3, 0xa4, 0xa4, 0xa4, 0xa4, 0xa3, 0xa3, 0xa2, 0xa2, 0xa2, 0xa2, 0xa2,\n    0xa2, 0xa2, 0xa2, 0xa2, 0xa2, 0xa2, 0xa2, 0xa2, 0xa1, 0xa1, 0xa1, 0xa0, 0x9f, 0x9e, 0x9d, 0x9d,\n    0x9f, 0x9e, 0x9e, 0x9d, 0x9c, 0x9b, 0x9b, 0x9a, 0x9b, 0x9a, 0x98, 0x98, 0x98, 0x97, 0x95, 0x94,\n    0x92, 0x90, 0x8c, 0x8a, 0x8c, 0x8c, 0x87, 0x80, 0x83, 0x82, 0x80, 0x7f, 0x7f, 0x7e, 0x7c, 0x7a,\n    0x7b, 0x7a, 0x78, 0x76, 0x74, 0x74, 0x74, 0x74, 0x70, 0x6f, 0x6e, 0x6c, 0x6b, 0x68, 0x64, 0x62,\n    0x60, 0x5f, 0x5a, 0x53, 0x50, 0x50, 0x50, 0x4f, 0x54, 0x61, 0x59, 0x4b, 0x3f, 0x3d, 0x46, 0x42,\n    0x4b, 0x4c, 0x51, 0x56, 0x58, 0x57, 0x57, 0x58, 0x5a, 0x5d, 0x61, 0x65, 0x66, 0x63, 0x5e, 0x5b,\n    0x5a, 0x58, 0x56, 0x57, 0x5b, 0x5e, 0x5f, 0x60, 0x62, 0x6a, 0x74, 0x77, 0x74, 0x71, 0x72, 0x76,\n    0x78, 0x79, 0x77, 0x73, 0x6f, 0x6e, 0x6f, 0x70, 0x74, 0x75, 0x6a, 0x4f, 0x33, 0x28, 0x2e, 0x39,\n    0x48, 0x41, 0x38, 0x30, 0x2b, 0x2a, 0x31, 0x38, 0x3d, 0x42, 0x46, 0x46, 0x4a, 0x50, 0x50, 0x4b,\n    0x48, 0x52, 0x5b, 0x5e, 0x61, 0x62, 0x5b, 0x52, 0x4e, 0x4a, 0x47, 0x44, 0x47, 0x4d, 0x50, 0x4c,\n    0x49, 0x3e, 0x34, 0x34, 0x3c, 0x46, 0x4c, 0x50, 0x5c, 0x5f, 0x5d, 0x53, 0x46, 0x3d, 0x3d, 0x40,\n    0x33, 0x32, 0x32, 0x30, 0x32, 0x3e, 0x45, 0x3e, 0x39, 0x3c, 0x3b, 0x30, 0x20, 0x19, 0x23, 0x32,\n    0x3d, 0x44, 0x46, 0x44, 0x3e, 0x33, 0x32, 0x3c, 0x47, 0x41, 0x31, 0x2f, 0x35, 0x3a, 0x3f, 0x37,\n    0x36, 0x33, 0x38, 0x3d, 0x36, 0x33, 0x3a, 0x3f, 0x3a, 0x30, 0x27, 0x32, 0x46, 0x49, 0x42, 0x40,\n    0x42, 0x46, 0x48, 0x50, 0x57, 0x4a, 0x3a, 0x38, 0x2e, 0x2d, 0x36, 0x45, 0x50, 0x56, 0x4e, 0x3c,\n    0x2e, 0x26, 0x23, 0x28, 0x2e, 0x2e, 0x2c, 0x2c, 0x32, 0x3e, 0x49, 0x50, 0x5e, 0x6d, 0x6d, 0x64,\n    0x3f, 0x3e, 0x41, 0x45, 0x47, 0x45, 0x45, 0x46, 0x4d, 0x4e, 0x46, 0x3a, 0x3c, 0x48, 0x4c, 0x46,\n    0x3f, 0x38, 0x34, 0x3a, 0x42, 0x44, 0x40, 0x3b, 0x41, 0x43, 0x41, 0x3c, 0x3b, 0x3e, 0x3f, 0x3e,\n    0x3f, 0x3f, 0x43, 0x45, 0x45, 0x4a, 0x4b, 0x42, 0x41, 0x3b, 0x36, 0x39, 0x42, 0x48, 0x46, 0x42,\n    0x40, 0x44, 0x41, 0x3a, 0x39, 0x3e, 0x3f, 0x3a, 0x31, 0x34, 0x3c, 0x43, 0x43, 0x3e, 0x3d, 0x3f,\n    0x3e, 0x3a, 0x39, 0x3f, 0x46, 0x49, 0x49, 0x48, 0x3f, 0x3f, 0x3f, 0x41, 0x47, 0x50, 0x57, 0x59,\n    0x44, 0x42, 0x41, 0x42, 0x3e, 0x38, 0x36, 0x39, 0x35, 0x39, 0x3d, 0x3d, 0x3a, 0x39, 0x3b, 0x3e,\n    0x42, 0x47, 0x4c, 0x4f, 0x52, 0x54, 0x53, 0x51, 0x4f, 0x4b, 0x46, 0x43, 0x42, 0x44, 0x46, 0x48,\n    0x41, 0x43, 0x43, 0x43, 0x47, 0x52, 0x5b, 0x60, 0x57, 0x51, 0x4c, 0x4c, 0x4e, 0x4b, 0x43, 0x3b,\n    0x34, 0x33, 0x30, 0x2f, 0x30, 0x34, 0x38, 0x3c, 0x44, 0x46, 0x47, 0x4a, 0x50, 0x56, 0x57, 0x55,\n    0x50, 0x50, 0x52, 0x59, 0x63, 0x6c, 0x71, 0x71, 0x72, 0x77, 0x79, 0x76, 0x72, 0x70, 0x6b, 0x66,\n    0x5d, 0x5a, 0x56, 0x52, 0x4e, 0x4f, 0x58, 0x61, 0x5c, 0x54, 0x4d, 0x52, 0x66, 0x7a, 0x79, 0x6e,\n    0x61, 0x5e, 0x5b, 0x5d, 0x68, 0x74, 0x76, 0x70, 0x63, 0x62, 0x62, 0x63, 0x64, 0x65, 0x66, 0x68,\n    0x64, 0x5d, 0x56, 0x52, 0x4e, 0x4e, 0x55, 0x5e, 0x69, 0x67, 0x65, 0x64, 0x65, 0x67, 0x68, 0x69,\n    0x64, 0x79, 0x87, 0x81, 0x76, 0x75, 0x79, 0x7a, 0x83, 0x84, 0x7a, 0x72, 0x6a, 0x70, 0x80, 0x7b,\n    0x7b, 0x6b, 0x65, 0x67, 0x66, 0x63, 0x5b, 0x52, 0x55, 0x5a, 0x5c, 0x5c, 0x63, 0x72, 0x80, 0x86,\n    0x7f, 0x72, 0x68, 0x69, 0x6a, 0x69, 0x6e, 0x77, 0x79, 0x78, 0x72, 0x67, 0x5b, 0x53, 0x54, 0x58,\n    0x63, 0x63, 0x64, 0x65, 0x66, 0x67, 0x68, 0x68, 0x6b, 0x75, 0x7c, 0x7f, 0x84, 0x86, 0x7b, 0x6b,\n    0x61, 0x67, 0x70, 0x6d, 0x54, 0x4c, 0x54, 0x5d, 0x5f, 0x5e, 0x60, 0x63, 0x66, 0x66, 0x67, 0x6a,\n    0x6e, 0x72, 0x75, 0x75, 0x75, 0x77, 0x77, 0x75, 0x75, 0x77, 0x77, 0x75, 0x76, 0x79, 0x7c, 0x7d,\n    0x7e, 0x80, 0x81, 0x82, 0x81, 0x81, 0x82, 0x83, 0x83, 0x84, 0x86, 0x88, 0x8a, 0x8b, 0x8c, 0x8c,\n    0x8d, 0x8e, 0x8f, 0x8e, 0x8d, 0x8d, 0x8e, 0x8f, 0x8f, 0x8f, 0x8f, 0x90, 0x91, 0x91, 0x91, 0x92,\n    0x94, 0x94, 0x94, 0x95, 0x95, 0x96, 0x96, 0x97, 0x99, 0x99, 0x99, 0x99, 0x9a, 0x9c, 0x9d, 0x9e,\n    0x9f, 0x9f, 0x9f, 0x9f, 0xa0, 0xa0, 0xa1, 0xa1, 0x9f, 0xa0, 0xa2, 0xa2, 0xa1, 0xa0, 0xa1, 0xa2,\n    0xa3, 0xa2, 0xa2, 0xa2, 0xa2, 0xa2, 0xa2, 0xa3, 0xa3, 0xa3, 0xa2, 0xa2, 0xa2, 0xa2, 0xa2, 0xa3,\n    0xa2, 0xa2, 0xa2, 0xa2, 0xa1, 0xa1, 0xa1, 0xa1, 0xa0, 0x9f, 0x9f, 0x9e, 0x9e, 0x9d, 0x9c, 0x9c,\n    0x9d, 0x9d, 0x9e, 0x9e, 0x9d, 0x9d, 0x9c, 0x9b, 0x9a, 0x99, 0x97, 0x97, 0x97, 0x96, 0x95, 0x94,\n    0x93, 0x91, 0x8d, 0x8b, 0x8c, 0x8d, 0x88, 0x81, 0x83, 0x82, 0x80, 0x7f, 0x7e, 0x7d, 0x7b, 0x7a,\n    0x79, 0x77, 0x75, 0x72, 0x71, 0x70, 0x71, 0x71, 0x6f, 0x6d, 0x6c, 0x6b, 0x6a, 0x67, 0x63, 0x60,\n    0x5f, 0x5e, 0x59, 0x52, 0x4f, 0x4f, 0x4f, 0x4e, 0x54, 0x61, 0x59, 0x48, 0x3a, 0x3a, 0x47, 0x45,\n    0x49, 0x47, 0x48, 0x4b, 0x4d, 0x4b, 0x4b, 0x4d, 0x50, 0x54, 0x58, 0x59, 0x57, 0x55, 0x54, 0x55,\n    0x52, 0x4f, 0x4c, 0x4c, 0x50, 0x54, 0x56, 0x56, 0x5e, 0x64, 0x68, 0x65, 0x5e, 0x5a, 0x5b, 0x5f,\n    0x67, 0x67, 0x67, 0x64, 0x5f, 0x5c, 0x5d, 0x5f, 0x64, 0x66, 0x5f, 0x50, 0x42, 0x42, 0x4e, 0x58,\n    0x5a, 0x51, 0x45, 0x38, 0x2e, 0x28, 0x2b, 0x30, 0x34, 0x3b, 0x4d, 0x5e, 0x60, 0x53, 0x44, 0x3e,\n    0x43, 0x4c, 0x52, 0x53, 0x54, 0x59, 0x5a, 0x59, 0x52, 0x4d, 0x44, 0x41, 0x48, 0x4e, 0x50, 0x50,\n    0x4a, 0x44, 0x3c, 0x37, 0x39, 0x3f, 0x44, 0x46, 0x60, 0x5f, 0x5b, 0x51, 0x45, 0x3d, 0x3b, 0x3b,\n    0x35, 0x34, 0x34, 0x31, 0x33, 0x42, 0x4a, 0x44, 0x3a, 0x3e, 0x3e, 0x35, 0x26, 0x1f, 0x26, 0x33,\n    0x3d, 0x43, 0x46, 0x45, 0x3f, 0x33, 0x31, 0x3c, 0x4d, 0x42, 0x2d, 0x2d, 0x37, 0x3c, 0x40, 0x37,\n    0x30, 0x2f, 0x37, 0x3c, 0x35, 0x31, 0x38, 0x3e, 0x40, 0x34, 0x29, 0x30, 0x42, 0x49, 0x45, 0x45,\n    0x3f, 0x3f, 0x43, 0x4d, 0x53, 0x4b, 0x40, 0x3d, 0x26, 0x2a, 0x39, 0x4a, 0x55, 0x5a, 0x52, 0x43,\n    0x30, 0x26, 0x22, 0x2c, 0x38, 0x39, 0x34, 0x30, 0x2e, 0x3d, 0x4a, 0x52, 0x5f, 0x6e, 0x70, 0x68,\n    0x3c, 0x3b, 0x3d, 0x40, 0x40, 0x3d, 0x3c, 0x3d, 0x47, 0x4b, 0x47, 0x3c, 0x3a, 0x42, 0x47, 0x45,\n    0x3b, 0x2f, 0x28, 0x2f, 0x3c, 0x42, 0x3d, 0x37, 0x3b, 0x3b, 0x38, 0x35, 0x36, 0x3c, 0x40, 0x42,\n    0x3b, 0x3b, 0x3e, 0x3f, 0x44, 0x51, 0x56, 0x4d, 0x3a, 0x34, 0x36, 0x44, 0x50, 0x4e, 0x44, 0x3d,\n    0x44, 0x46, 0x44, 0x3f, 0x3b, 0x3c, 0x39, 0x34, 0x2d, 0x32, 0x3d, 0x46, 0x43, 0x3d, 0x42, 0x4e,\n    0x4e, 0x47, 0x40, 0x3f, 0x3f, 0x40, 0x41, 0x43, 0x44, 0x42, 0x40, 0x3f, 0x40, 0x45, 0x4b, 0x50,\n    0x48, 0x45, 0x45, 0x44, 0x3d, 0x34, 0x31, 0x34, 0x34, 0x37, 0x38, 0x38, 0x38, 0x3b, 0x40, 0x45,\n    0x49, 0x4e, 0x54, 0x54, 0x52, 0x4f, 0x50, 0x52, 0x4c, 0x4a, 0x47, 0x44, 0x42, 0x43, 0x44, 0x45,\n    0x4e, 0x52, 0x53, 0x4e, 0x4b, 0x4d, 0x53, 0x58, 0x53, 0x4e, 0x48, 0x46, 0x47, 0x44, 0x3d, 0x37,\n    0x31, 0x32, 0x33, 0x33, 0x34, 0x36, 0x39, 0x3b, 0x44, 0x43, 0x46, 0x4c, 0x50, 0x51, 0x51, 0x51,\n    0x4c, 0x4a, 0x47, 0x47, 0x4e, 0x59, 0x62, 0x65, 0x66, 0x6a, 0x6c, 0x6b, 0x70, 0x77, 0x74, 0x6c,\n    0x60, 0x5a, 0x55, 0x52, 0x52, 0x53, 0x58, 0x5e, 0x5b, 0x50, 0x46, 0x4d, 0x65, 0x78, 0x77, 0x6b,\n    0x60, 0x53, 0x4f, 0x5a, 0x64, 0x63, 0x61, 0x63, 0x5e, 0x5b, 0x59, 0x5c, 0x5e, 0x5c, 0x5a, 0x59,\n    0x67, 0x5a, 0x52, 0x55, 0x59, 0x5a, 0x5e, 0x63, 0x5d, 0x56, 0x4d, 0x4b, 0x53, 0x5f, 0x67, 0x69,\n    0x65, 0x71, 0x75, 0x69, 0x5c, 0x5d, 0x66, 0x6d, 0x6c, 0x7c, 0x84, 0x88, 0x87, 0x92, 0xa3, 0x9d,\n    0x7e, 0x6f, 0x66, 0x65, 0x62, 0x61, 0x5d, 0x55, 0x56, 0x53, 0x53, 0x55, 0x56, 0x57, 0x5f, 0x68,\n    0x6a, 0x67, 0x68, 0x6b, 0x6b, 0x68, 0x69, 0x6e, 0x71, 0x6f, 0x68, 0x5c, 0x4c, 0x42, 0x43, 0x49,\n    0x49, 0x4b, 0x4f, 0x52, 0x55, 0x55, 0x55, 0x55, 0x62, 0x6d, 0x73, 0x6c, 0x62, 0x5c, 0x55, 0x4d,\n    0x5e, 0x63, 0x6b, 0x6a, 0x4d, 0x4c, 0x56, 0x5c, 0x5f, 0x5e, 0x61, 0x65, 0x67, 0x66, 0x66, 0x68,\n    0x70, 0x73, 0x74, 0x74, 0x74, 0x76, 0x75, 0x72, 0x73, 0x76, 0x76, 0x74, 0x74, 0x77, 0x79, 0x7a,\n    0x7d, 0x7e, 0x81, 0x82, 0x82, 0x82, 0x83, 0x84, 0x82, 0x83, 0x85, 0x87, 0x89, 0x8a, 0x8b, 0x8c,\n    0x8b, 0x8c, 0x8d, 0x8d, 0x8c, 0x8c, 0x8d, 0x8e, 0x8e, 0x8c, 0x8d, 0x8f, 0x8f, 0x8f, 0x8f, 0x91,\n    0x91, 0x91, 0x91, 0x91, 0x91, 0x92, 0x92, 0x93, 0x97, 0x97, 0x98, 0x98, 0x99, 0x9a, 0x9b, 0x9c,\n    0x9b, 0x9c, 0x9c, 0x9c, 0x9d, 0x9d, 0x9d, 0x9d, 0x9f, 0xa0, 0xa0, 0x9f, 0x9e, 0x9e, 0x9f, 0xa0,\n    0xa1, 0xa1, 0xa0, 0xa0, 0xa0, 0xa0, 0xa1, 0xa1, 0xa3, 0xa2, 0xa2, 0xa2, 0xa2, 0xa3, 0xa3, 0xa4,\n    0xa2, 0xa1, 0xa1, 0xa1, 0xa0, 0xa0, 0x9f, 0x9f, 0x9f, 0x9f, 0x9e, 0x9e, 0x9e, 0x9d, 0x9d, 0x9d,\n    0x9c, 0x9d, 0x9d, 0x9e, 0x9e, 0x9d, 0x9c, 0x9b, 0x99, 0x97, 0x96, 0x95, 0x95, 0x95, 0x94, 0x93,\n    0x93, 0x92, 0x8f, 0x8c, 0x8d, 0x8d, 0x89, 0x84, 0x84, 0x82, 0x7f, 0x7d, 0x7c, 0x7b, 0x7a, 0x79,\n    0x78, 0x76, 0x72, 0x6f, 0x6e, 0x6e, 0x6e, 0x6f, 0x6e, 0x6c, 0x6a, 0x6a, 0x69, 0x66, 0x61, 0x5d,\n    0x5d, 0x5c, 0x58, 0x51, 0x4e, 0x4e, 0x4d, 0x4c, 0x58, 0x61, 0x59, 0x4f, 0x47, 0x4a, 0x5a, 0x5d,\n    0x4c, 0x47, 0x45, 0x47, 0x48, 0x45, 0x46, 0x49, 0x4d, 0x4d, 0x4d, 0x49, 0x45, 0x46, 0x4c, 0x52,\n    0x4d, 0x49, 0x44, 0x45, 0x49, 0x4e, 0x50, 0x50, 0x55, 0x58, 0x57, 0x50, 0x4b, 0x4a, 0x4d, 0x4f,\n    0x50, 0x52, 0x55, 0x56, 0x53, 0x51, 0x53, 0x57, 0x60, 0x60, 0x5a, 0x4d, 0x42, 0x40, 0x46, 0x4b,\n    0x4e, 0x49, 0x43, 0x3c, 0x35, 0x2e, 0x2b, 0x2c, 0x3b, 0x40, 0x52, 0x65, 0x63, 0x50, 0x43, 0x44,\n    0x4f, 0x51, 0x54, 0x55, 0x56, 0x59, 0x5e, 0x63, 0x61, 0x5b, 0x4b, 0x42, 0x46, 0x48, 0x48, 0x4d,\n    0x49, 0x48, 0x41, 0x36, 0x33, 0x3a, 0x42, 0x46, 0x57, 0x55, 0x50, 0x49, 0x42, 0x3e, 0x3c, 0x3c,\n    0x39, 0x36, 0x31, 0x2b, 0x2f, 0x42, 0x4d, 0x47, 0x3a, 0x39, 0x38, 0x36, 0x30, 0x2a, 0x2b, 0x2e,\n    0x3e, 0x43, 0x47, 0x48, 0x43, 0x36, 0x34, 0x41, 0x50, 0x40, 0x28, 0x28, 0x33, 0x3b, 0x40, 0x38,\n    0x2a, 0x2d, 0x36, 0x39, 0x31, 0x30, 0x39, 0x3e, 0x40, 0x35, 0x26, 0x28, 0x38, 0x42, 0x42, 0x46,\n    0x36, 0x34, 0x39, 0x46, 0x50, 0x4c, 0x3e, 0x30, 0x26, 0x2b, 0x3a, 0x4a, 0x52, 0x57, 0x52, 0x45,\n    0x2f, 0x22, 0x1e, 0x2b, 0x39, 0x39, 0x31, 0x2b, 0x2c, 0x3a, 0x49, 0x54, 0x61, 0x6d, 0x6f, 0x6a,\n    0x44, 0x43, 0x44, 0x44, 0x41, 0x3b, 0x3a, 0x3b, 0x38, 0x40, 0x42, 0x3b, 0x37, 0x3a, 0x3f, 0x40,\n    0x36, 0x2d, 0x28, 0x2e, 0x3a, 0x40, 0x3e, 0x3b, 0x39, 0x36, 0x33, 0x33, 0x37, 0x3c, 0x42, 0x47,\n    0x42, 0x3e, 0x40, 0x43, 0x46, 0x4e, 0x54, 0x51, 0x38, 0x31, 0x37, 0x49, 0x50, 0x44, 0x36, 0x30,\n    0x37, 0x3a, 0x3e, 0x40, 0x3e, 0x38, 0x32, 0x2d, 0x31, 0x35, 0x3a, 0x3c, 0x3b, 0x3d, 0x44, 0x4d,\n    0x4f, 0x46, 0x3e, 0x3b, 0x3c, 0x3d, 0x3e, 0x3f, 0x4d, 0x4f, 0x4a, 0x42, 0x41, 0x48, 0x4a, 0x47,\n    0x44, 0x44, 0x48, 0x4a, 0x43, 0x37, 0x30, 0x31, 0x33, 0x34, 0x36, 0x37, 0x3a, 0x3e, 0x43, 0x47,\n    0x48, 0x4d, 0x52, 0x52, 0x4d, 0x47, 0x47, 0x49, 0x4f, 0x50, 0x50, 0x4f, 0x4d, 0x4a, 0x47, 0x46,\n    0x56, 0x5a, 0x5a, 0x53, 0x4a, 0x48, 0x4a, 0x4d, 0x4d, 0x49, 0x44, 0x42, 0x41, 0x3e, 0x39, 0x34,\n    0x31, 0x32, 0x34, 0x35, 0x36, 0x39, 0x3d, 0x40, 0x41, 0x3d, 0x44, 0x54, 0x5d, 0x59, 0x54, 0x54,\n    0x5b, 0x5b, 0x5a, 0x58, 0x5b, 0x64, 0x6a, 0x6c, 0x5f, 0x5b, 0x57, 0x58, 0x60, 0x69, 0x6c, 0x6b,\n    0x6b, 0x61, 0x58, 0x58, 0x5d, 0x5e, 0x5c, 0x5a, 0x5a, 0x53, 0x4e, 0x51, 0x5a, 0x5f, 0x5c, 0x55,\n    0x52, 0x4e, 0x56, 0x69, 0x76, 0x75, 0x73, 0x76, 0x65, 0x61, 0x5e, 0x5e, 0x5c, 0x58, 0x55, 0x54,\n    0x61, 0x5a, 0x55, 0x5a, 0x62, 0x62, 0x5b, 0x54, 0x57, 0x53, 0x4c, 0x4a, 0x51, 0x5b, 0x5f, 0x5e,\n    0x64, 0x65, 0x61, 0x58, 0x56, 0x60, 0x6f, 0x79, 0x6d, 0x72, 0x73, 0x79, 0x78, 0x7a, 0x81, 0x76,\n    0x73, 0x65, 0x5b, 0x55, 0x51, 0x57, 0x61, 0x63, 0x67, 0x5e, 0x58, 0x5a, 0x5d, 0x5d, 0x60, 0x65,\n    0x63, 0x67, 0x6f, 0x75, 0x76, 0x70, 0x66, 0x5e, 0x59, 0x59, 0x58, 0x52, 0x47, 0x40, 0x45, 0x4f,\n    0x51, 0x54, 0x58, 0x5e, 0x64, 0x6a, 0x6d, 0x6f, 0x6a, 0x6e, 0x6c, 0x64, 0x5c, 0x5a, 0x5a, 0x59,\n    0x5a, 0x60, 0x69, 0x6b, 0x4d, 0x51, 0x59, 0x5c, 0x61, 0x60, 0x61, 0x64, 0x66, 0x65, 0x66, 0x68,\n    0x70, 0x73, 0x73, 0x73, 0x74, 0x75, 0x74, 0x71, 0x73, 0x75, 0x75, 0x72, 0x72, 0x75, 0x77, 0x77,\n    0x7a, 0x7d, 0x80, 0x82, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x85, 0x87, 0x88, 0x89, 0x89, 0x8a,\n    0x88, 0x89, 0x8a, 0x8a, 0x8a, 0x8a, 0x8b, 0x8c, 0x8c, 0x8a, 0x8a, 0x8d, 0x8e, 0x8c, 0x8c, 0x8f,\n    0x8f, 0x8e, 0x8e, 0x8e, 0x8e, 0x8f, 0x90, 0x90, 0x95, 0x95, 0x96, 0x97, 0x98, 0x98, 0x98, 0x98,\n    0x99, 0x99, 0x99, 0x9a, 0x9a, 0x9b, 0x9b, 0x9b, 0x9e, 0x9e, 0x9e, 0x9c, 0x9b, 0x9c, 0x9e, 0xa0,\n    0xa0, 0xa0, 0x9f, 0x9f, 0x9f, 0x9f, 0xa0, 0xa0, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa2, 0xa3, 0xa3,\n    0xa1, 0xa1, 0xa0, 0x9f, 0x9e, 0x9e, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d,\n    0x9c, 0x9c, 0x9d, 0x9d, 0x9d, 0x9b, 0x9a, 0x99, 0x97, 0x96, 0x94, 0x93, 0x94, 0x94, 0x93, 0x92,\n    0x92, 0x92, 0x8f, 0x8d, 0x8c, 0x8c, 0x8a, 0x86, 0x84, 0x81, 0x7d, 0x7a, 0x79, 0x78, 0x78, 0x77,\n    0x77, 0x75, 0x71, 0x6d, 0x6c, 0x6c, 0x6d, 0x6e, 0x6d, 0x6b, 0x69, 0x68, 0x68, 0x64, 0x5f, 0x5a,\n    0x5b, 0x5b, 0x57, 0x51, 0x4d, 0x4d, 0x4c, 0x49, 0x53, 0x58, 0x52, 0x52, 0x53, 0x55, 0x61, 0x61,\n    0x51, 0x4a, 0x46, 0x48, 0x47, 0x43, 0x42, 0x46, 0x46, 0x45, 0x42, 0x3e, 0x3d, 0x40, 0x46, 0x4b,\n    0x43, 0x3e, 0x39, 0x39, 0x3e, 0x44, 0x46, 0x47, 0x48, 0x48, 0x44, 0x3f, 0x3e, 0x42, 0x46, 0x47,\n    0x41, 0x44, 0x49, 0x4c, 0x4a, 0x47, 0x49, 0x4e, 0x49, 0x4d, 0x4d, 0x46, 0x3f, 0x3e, 0x42, 0x46,\n    0x45, 0x42, 0x40, 0x40, 0x3e, 0x3a, 0x37, 0x37, 0x35, 0x3b, 0x48, 0x52, 0x4f, 0x44, 0x42, 0x49,\n    0x54, 0x50, 0x51, 0x58, 0x5c, 0x5b, 0x5c, 0x60, 0x64, 0x62, 0x52, 0x44, 0x40, 0x3a, 0x37, 0x3f,\n    0x4a, 0x4d, 0x49, 0x40, 0x3e, 0x48, 0x52, 0x56, 0x50, 0x4e, 0x4a, 0x45, 0x40, 0x3f, 0x41, 0x44,\n    0x3d, 0x38, 0x31, 0x2a, 0x2f, 0x43, 0x4d, 0x46, 0x37, 0x37, 0x36, 0x32, 0x2c, 0x28, 0x2b, 0x31,\n    0x3b, 0x41, 0x45, 0x48, 0x44, 0x38, 0x37, 0x45, 0x46, 0x39, 0x25, 0x28, 0x33, 0x38, 0x3d, 0x35,\n    0x2e, 0x33, 0x3b, 0x38, 0x2e, 0x2f, 0x39, 0x3c, 0x3d, 0x34, 0x28, 0x28, 0x34, 0x39, 0x36, 0x38,\n    0x33, 0x36, 0x41, 0x4b, 0x4f, 0x4b, 0x3e, 0x2d, 0x2e, 0x2e, 0x37, 0x42, 0x49, 0x50, 0x4e, 0x43,\n    0x31, 0x24, 0x20, 0x2c, 0x36, 0x32, 0x27, 0x21, 0x2a, 0x34, 0x42, 0x52, 0x62, 0x6b, 0x6a, 0x65,\n    0x3c, 0x3c, 0x3d, 0x3e, 0x3a, 0x36, 0x36, 0x38, 0x37, 0x40, 0x46, 0x41, 0x3a, 0x38, 0x3a, 0x3c,\n    0x34, 0x2f, 0x2e, 0x34, 0x3c, 0x40, 0x42, 0x43, 0x3f, 0x39, 0x36, 0x37, 0x38, 0x38, 0x3b, 0x40,\n    0x45, 0x3d, 0x3f, 0x45, 0x42, 0x41, 0x46, 0x49, 0x48, 0x3a, 0x36, 0x40, 0x41, 0x34, 0x2c, 0x30,\n    0x2f, 0x2e, 0x30, 0x34, 0x35, 0x34, 0x33, 0x35, 0x34, 0x33, 0x2f, 0x2a, 0x2f, 0x3a, 0x3e, 0x3b,\n    0x3a, 0x33, 0x30, 0x35, 0x3d, 0x42, 0x43, 0x43, 0x44, 0x4a, 0x46, 0x39, 0x39, 0x44, 0x43, 0x37,\n    0x31, 0x35, 0x40, 0x48, 0x45, 0x3a, 0x33, 0x33, 0x32, 0x34, 0x37, 0x3a, 0x3d, 0x40, 0x41, 0x42,\n    0x39, 0x3e, 0x44, 0x48, 0x46, 0x42, 0x42, 0x43, 0x55, 0x58, 0x5b, 0x5c, 0x59, 0x53, 0x4d, 0x4a,\n    0x4b, 0x4e, 0x4e, 0x48, 0x43, 0x44, 0x49, 0x4c, 0x4b, 0x46, 0x41, 0x3d, 0x3c, 0x3a, 0x37, 0x35,\n    0x33, 0x33, 0x32, 0x31, 0x33, 0x39, 0x41, 0x46, 0x42, 0x3c, 0x45, 0x5b, 0x67, 0x5e, 0x53, 0x50,\n    0x58, 0x5e, 0x65, 0x68, 0x6d, 0x74, 0x77, 0x76, 0x6c, 0x62, 0x5d, 0x60, 0x63, 0x5f, 0x5d, 0x5e,\n    0x5c, 0x5b, 0x5b, 0x5b, 0x59, 0x57, 0x59, 0x5e, 0x5b, 0x58, 0x53, 0x4d, 0x47, 0x44, 0x45, 0x49,\n    0x49, 0x50, 0x56, 0x5a, 0x61, 0x68, 0x69, 0x65, 0x64, 0x5e, 0x59, 0x55, 0x4f, 0x49, 0x49, 0x4c,\n    0x5f, 0x61, 0x62, 0x68, 0x71, 0x74, 0x66, 0x54, 0x54, 0x52, 0x4d, 0x4a, 0x4d, 0x54, 0x57, 0x55,\n    0x51, 0x4d, 0x47, 0x48, 0x52, 0x64, 0x76, 0x81, 0x79, 0x6b, 0x5e, 0x64, 0x68, 0x6a, 0x70, 0x68,\n    0x66, 0x5e, 0x58, 0x52, 0x4c, 0x53, 0x62, 0x69, 0x78, 0x6f, 0x68, 0x69, 0x6d, 0x6c, 0x64, 0x5e,\n    0x61, 0x73, 0x83, 0x83, 0x76, 0x67, 0x5c, 0x57, 0x4f, 0x50, 0x52, 0x4f, 0x45, 0x3f, 0x44, 0x4e,\n    0x51, 0x52, 0x56, 0x5b, 0x63, 0x6b, 0x72, 0x76, 0x71, 0x67, 0x5c, 0x59, 0x5d, 0x65, 0x68, 0x67,\n    0x57, 0x5e, 0x69, 0x6f, 0x4f, 0x56, 0x5d, 0x5e, 0x64, 0x62, 0x62, 0x64, 0x65, 0x65, 0x67, 0x6a,\n    0x70, 0x72, 0x73, 0x72, 0x73, 0x75, 0x74, 0x72, 0x73, 0x75, 0x74, 0x72, 0x71, 0x73, 0x75, 0x76,\n    0x78, 0x7b, 0x80, 0x82, 0x83, 0x83, 0x83, 0x84, 0x85, 0x86, 0x86, 0x86, 0x87, 0x87, 0x88, 0x88,\n    0x85, 0x86, 0x88, 0x88, 0x88, 0x88, 0x89, 0x8a, 0x8b, 0x88, 0x88, 0x8c, 0x8c, 0x8a, 0x8b, 0x8e,\n    0x8e, 0x8e, 0x8d, 0x8d, 0x8d, 0x8e, 0x8f, 0x8f, 0x93, 0x94, 0x95, 0x96, 0x97, 0x97, 0x96, 0x96,\n    0x99, 0x99, 0x99, 0x99, 0x9a, 0x9a, 0x9b, 0x9b, 0x9e, 0x9d, 0x9c, 0x9b, 0x9a, 0x9c, 0x9f, 0xa1,\n    0x9f, 0x9f, 0x9f, 0x9e, 0x9e, 0x9f, 0x9f, 0x9f, 0x9e, 0x9e, 0x9e, 0x9e, 0x9f, 0xa0, 0xa0, 0xa1,\n    0xa1, 0xa0, 0x9f, 0x9e, 0x9d, 0x9c, 0x9b, 0x9b, 0x9a, 0x9a, 0x9b, 0x9b, 0x9b, 0x9c, 0x9c, 0x9c,\n    0x9c, 0x9c, 0x9d, 0x9d, 0x9c, 0x9a, 0x98, 0x97, 0x96, 0x95, 0x93, 0x92, 0x92, 0x93, 0x92, 0x92,\n    0x90, 0x91, 0x90, 0x8d, 0x8b, 0x8b, 0x8a, 0x87, 0x84, 0x81, 0x7c, 0x78, 0x76, 0x76, 0x76, 0x76,\n    0x77, 0x74, 0x70, 0x6d, 0x6b, 0x6b, 0x6d, 0x6e, 0x6d, 0x6a, 0x68, 0x67, 0x67, 0x63, 0x5d, 0x58,\n    0x5a, 0x5a, 0x56, 0x51, 0x4d, 0x4c, 0x4b, 0x48, 0x51, 0x53, 0x50, 0x59, 0x5f, 0x5e, 0x60, 0x59,\n    0x55, 0x4d, 0x49, 0x4a, 0x48, 0x42, 0x3f, 0x42, 0x3b, 0x3a, 0x38, 0x39, 0x3c, 0x3f, 0x41, 0x41,\n    0x3b, 0x35, 0x2f, 0x2f, 0x35, 0x3b, 0x3e, 0x3e, 0x44, 0x42, 0x3b, 0x35, 0x36, 0x3c, 0x3e, 0x3d,\n    0x3e, 0x41, 0x46, 0x49, 0x46, 0x41, 0x41, 0x46, 0x5b, 0x60, 0x5f, 0x53, 0x45, 0x3c, 0x3a, 0x3a,\n    0x38, 0x34, 0x31, 0x33, 0x34, 0x34, 0x33, 0x34, 0x34, 0x42, 0x52, 0x59, 0x54, 0x4c, 0x4b, 0x4e,\n    0x4b, 0x43, 0x45, 0x52, 0x5a, 0x57, 0x53, 0x55, 0x5b, 0x5f, 0x54, 0x45, 0x3c, 0x2e, 0x28, 0x31,\n    0x39, 0x45, 0x4c, 0x4c, 0x4d, 0x55, 0x59, 0x57, 0x58, 0x56, 0x51, 0x49, 0x41, 0x40, 0x44, 0x49,\n    0x41, 0x3d, 0x38, 0x31, 0x37, 0x49, 0x50, 0x45, 0x38, 0x3c, 0x3c, 0x31, 0x22, 0x1d, 0x2b, 0x3c,\n    0x34, 0x3a, 0x3f, 0x44, 0x41, 0x35, 0x35, 0x43, 0x3b, 0x34, 0x28, 0x2f, 0x38, 0x38, 0x3a, 0x32,\n    0x37, 0x3d, 0x42, 0x39, 0x2c, 0x2e, 0x38, 0x3a, 0x3b, 0x38, 0x30, 0x31, 0x38, 0x36, 0x2c, 0x29,\n    0x38, 0x45, 0x57, 0x5a, 0x51, 0x4b, 0x45, 0x3a, 0x30, 0x2c, 0x30, 0x38, 0x41, 0x4b, 0x4d, 0x44,\n    0x33, 0x28, 0x25, 0x30, 0x38, 0x31, 0x27, 0x23, 0x2e, 0x32, 0x3e, 0x50, 0x60, 0x65, 0x5f, 0x59,\n    0x43, 0x44, 0x41, 0x40, 0x3e, 0x37, 0x35, 0x3e, 0x38, 0x3c, 0x3e, 0x40, 0x40, 0x38, 0x30, 0x33,\n    0x3a, 0x3b, 0x3d, 0x3e, 0x3e, 0x3c, 0x3a, 0x38, 0x39, 0x35, 0x33, 0x35, 0x39, 0x3b, 0x3d, 0x40,\n    0x3f, 0x3f, 0x3c, 0x3a, 0x39, 0x3a, 0x39, 0x37, 0x3c, 0x3e, 0x3c, 0x37, 0x35, 0x38, 0x3b, 0x3a,\n    0x3b, 0x39, 0x35, 0x30, 0x2e, 0x2e, 0x2c, 0x29, 0x2e, 0x2e, 0x30, 0x31, 0x30, 0x32, 0x39, 0x41,\n    0x36, 0x2c, 0x2d, 0x3e, 0x4f, 0x50, 0x47, 0x40, 0x3a, 0x39, 0x39, 0x3b, 0x3d, 0x3c, 0x36, 0x31,\n    0x2e, 0x2f, 0x33, 0x38, 0x3a, 0x38, 0x36, 0x36, 0x32, 0x32, 0x37, 0x3d, 0x3f, 0x3b, 0x3a, 0x3d,\n    0x3e, 0x3f, 0x41, 0x43, 0x44, 0x43, 0x42, 0x41, 0x44, 0x47, 0x4c, 0x54, 0x59, 0x58, 0x54, 0x50,\n    0x42, 0x45, 0x46, 0x43, 0x3f, 0x40, 0x48, 0x4f, 0x4b, 0x46, 0x40, 0x3e, 0x3e, 0x3b, 0x34, 0x2d,\n    0x35, 0x34, 0x32, 0x32, 0x34, 0x39, 0x40, 0x44, 0x43, 0x42, 0x44, 0x4b, 0x53, 0x57, 0x57, 0x54,\n    0x50, 0x57, 0x60, 0x66, 0x6a, 0x6d, 0x71, 0x74, 0x6e, 0x6c, 0x6d, 0x70, 0x71, 0x6c, 0x64, 0x5f,\n    0x55, 0x52, 0x56, 0x58, 0x55, 0x58, 0x5d, 0x5c, 0x5c, 0x57, 0x51, 0x4f, 0x4d, 0x42, 0x3f, 0x49,\n    0x4b, 0x51, 0x57, 0x56, 0x54, 0x52, 0x52, 0x50, 0x57, 0x61, 0x66, 0x62, 0x57, 0x49, 0x46, 0x4f,\n    0x62, 0x6a, 0x65, 0x65, 0x74, 0x79, 0x6f, 0x69, 0x60, 0x5b, 0x55, 0x52, 0x4f, 0x4e, 0x51, 0x55,\n    0x50, 0x4d, 0x49, 0x49, 0x4d, 0x56, 0x63, 0x6d, 0x6c, 0x6b, 0x67, 0x61, 0x64, 0x6c, 0x70, 0x70,\n    0x6e, 0x6b, 0x62, 0x53, 0x4a, 0x4a, 0x53, 0x5b, 0x6a, 0x6e, 0x6e, 0x6b, 0x6b, 0x6c, 0x6c, 0x69,\n    0x69, 0x73, 0x7b, 0x79, 0x6e, 0x5f, 0x53, 0x4c, 0x4c, 0x47, 0x46, 0x4a, 0x48, 0x42, 0x44, 0x4c,\n    0x4e, 0x5c, 0x63, 0x62, 0x66, 0x68, 0x6a, 0x70, 0x78, 0x6e, 0x5e, 0x58, 0x5b, 0x5a, 0x5c, 0x64,\n    0x5e, 0x60, 0x5e, 0x54, 0x53, 0x4c, 0x5d, 0x60, 0x68, 0x65, 0x64, 0x67, 0x67, 0x66, 0x69, 0x6d,\n    0x6f, 0x6f, 0x70, 0x71, 0x72, 0x74, 0x75, 0x76, 0x76, 0x74, 0x72, 0x70, 0x70, 0x71, 0x72, 0x73,\n    0x77, 0x78, 0x7b, 0x7e, 0x81, 0x82, 0x83, 0x83, 0x83, 0x84, 0x85, 0x86, 0x87, 0x87, 0x87, 0x87,\n    0x86, 0x86, 0x86, 0x87, 0x88, 0x89, 0x88, 0x87, 0x89, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x89,\n    0x89, 0x8a, 0x8b, 0x8d, 0x8e, 0x8f, 0x90, 0x90, 0x90, 0x91, 0x92, 0x93, 0x95, 0x96, 0x97, 0x97,\n    0x98, 0x99, 0x99, 0x98, 0x97, 0x97, 0x98, 0x99, 0x98, 0x99, 0x99, 0x9a, 0x9b, 0x9b, 0x9b, 0x9c,\n    0x9b, 0x9b, 0x9c, 0x9c, 0x9d, 0x9d, 0x9e, 0x9e, 0x9c, 0x9c, 0x9c, 0x9c, 0x9c, 0x9d, 0x9d, 0x9d,\n    0xa2, 0xa0, 0x9d, 0x9c, 0x9d, 0x9d, 0x9d, 0x9d, 0x9b, 0x9c, 0x9c, 0x9b, 0x9a, 0x99, 0x99, 0x9a,\n    0x9c, 0x9c, 0x9b, 0x9a, 0x99, 0x98, 0x97, 0x96, 0x92, 0x93, 0x94, 0x94, 0x94, 0x92, 0x8f, 0x8e,\n    0x8e, 0x8e, 0x8e, 0x8e, 0x8c, 0x89, 0x86, 0x84, 0x80, 0x7f, 0x7d, 0x7b, 0x79, 0x79, 0x79, 0x79,\n    0x78, 0x75, 0x71, 0x6e, 0x6d, 0x6c, 0x6b, 0x6b, 0x6a, 0x69, 0x66, 0x64, 0x62, 0x5f, 0x5b, 0x59,\n    0x5d, 0x59, 0x53, 0x51, 0x50, 0x4e, 0x4a, 0x47, 0x51, 0x57, 0x5a, 0x5f, 0x67, 0x63, 0x5a, 0x58,\n    0x51, 0x4f, 0x4a, 0x46, 0x46, 0x46, 0x41, 0x3a, 0x3a, 0x38, 0x37, 0x38, 0x3a, 0x3d, 0x3e, 0x3d,\n    0x3c, 0x35, 0x32, 0x32, 0x30, 0x35, 0x3c, 0x3e, 0x41, 0x3b, 0x36, 0x35, 0x34, 0x36, 0x3c, 0x42,\n    0x51, 0x53, 0x53, 0x4d, 0x42, 0x3e, 0x47, 0x54, 0x64, 0x70, 0x68, 0x56, 0x52, 0x4c, 0x40, 0x3c,\n    0x34, 0x2a, 0x22, 0x23, 0x26, 0x27, 0x28, 0x2b, 0x31, 0x42, 0x4f, 0x57, 0x5a, 0x52, 0x45, 0x3f,\n    0x4d, 0x48, 0x45, 0x4a, 0x51, 0x55, 0x53, 0x4f, 0x5c, 0x54, 0x4e, 0x4f, 0x52, 0x52, 0x50, 0x4e,\n    0x52, 0x56, 0x58, 0x53, 0x49, 0x47, 0x56, 0x69, 0x7a, 0x66, 0x4b, 0x40, 0x41, 0x41, 0x44, 0x4d,\n    0x45, 0x33, 0x30, 0x35, 0x3d, 0x53, 0x59, 0x43, 0x37, 0x3a, 0x3e, 0x39, 0x2b, 0x2b, 0x38, 0x40,\n    0x45, 0x3e, 0x3e, 0x42, 0x44, 0x45, 0x3e, 0x30, 0x27, 0x2a, 0x27, 0x2a, 0x36, 0x3c, 0x38, 0x37,\n    0x36, 0x3e, 0x40, 0x38, 0x30, 0x31, 0x38, 0x3d, 0x3c, 0x3b, 0x30, 0x3a, 0x34, 0x34, 0x2e, 0x3c,\n    0x42, 0x4b, 0x51, 0x4f, 0x4d, 0x4c, 0x46, 0x3e, 0x32, 0x29, 0x33, 0x3f, 0x42, 0x50, 0x55, 0x42,\n    0x39, 0x28, 0x1f, 0x2c, 0x39, 0x36, 0x2a, 0x21, 0x30, 0x38, 0x42, 0x4d, 0x58, 0x5e, 0x59, 0x50,\n    0x4f, 0x52, 0x51, 0x51, 0x4e, 0x44, 0x41, 0x49, 0x41, 0x44, 0x40, 0x3a, 0x37, 0x30, 0x2c, 0x2f,\n    0x2b, 0x2e, 0x31, 0x35, 0x38, 0x3a, 0x3c, 0x3e, 0x3f, 0x37, 0x30, 0x32, 0x37, 0x3b, 0x3c, 0x3d,\n    0x41, 0x46, 0x46, 0x3d, 0x33, 0x2f, 0x32, 0x36, 0x3f, 0x42, 0x41, 0x3c, 0x3b, 0x3f, 0x45, 0x48,\n    0x43, 0x3d, 0x33, 0x2d, 0x2e, 0x31, 0x2e, 0x2a, 0x2b, 0x2c, 0x2d, 0x2e, 0x2d, 0x2e, 0x35, 0x3d,\n    0x3f, 0x3a, 0x36, 0x3a, 0x44, 0x4b, 0x49, 0x43, 0x3a, 0x39, 0x37, 0x35, 0x34, 0x35, 0x38, 0x3a,\n    0x34, 0x36, 0x3a, 0x3f, 0x3f, 0x3a, 0x35, 0x34, 0x36, 0x37, 0x3b, 0x41, 0x42, 0x3d, 0x3b, 0x3b,\n    0x3b, 0x3d, 0x3f, 0x42, 0x43, 0x44, 0x44, 0x44, 0x46, 0x46, 0x48, 0x4a, 0x4c, 0x4a, 0x45, 0x41,\n    0x45, 0x44, 0x42, 0x3f, 0x3c, 0x3b, 0x3d, 0x3f, 0x4a, 0x46, 0x40, 0x3b, 0x39, 0x37, 0x35, 0x34,\n    0x35, 0x34, 0x34, 0x34, 0x35, 0x38, 0x3b, 0x3d, 0x3d, 0x3f, 0x43, 0x4a, 0x51, 0x56, 0x56, 0x54,\n    0x4a, 0x4b, 0x4e, 0x52, 0x56, 0x5a, 0x5c, 0x5c, 0x68, 0x69, 0x6d, 0x70, 0x6f, 0x68, 0x5f, 0x58,\n    0x5b, 0x56, 0x57, 0x58, 0x55, 0x57, 0x5a, 0x56, 0x58, 0x54, 0x4d, 0x4b, 0x4b, 0x46, 0x46, 0x51,\n    0x57, 0x55, 0x50, 0x4c, 0x4b, 0x4d, 0x4b, 0x48, 0x4d, 0x57, 0x65, 0x67, 0x5b, 0x4d, 0x49, 0x4c,\n    0x56, 0x5f, 0x66, 0x6f, 0x7d, 0x80, 0x74, 0x68, 0x5b, 0x59, 0x57, 0x52, 0x4b, 0x46, 0x49, 0x4e,\n    0x4f, 0x4f, 0x4f, 0x4d, 0x4b, 0x4d, 0x54, 0x5b, 0x58, 0x5f, 0x62, 0x60, 0x62, 0x6b, 0x70, 0x6f,\n    0x79, 0x6e, 0x60, 0x55, 0x52, 0x51, 0x4f, 0x4c, 0x56, 0x5d, 0x63, 0x64, 0x65, 0x69, 0x6c, 0x6c,\n    0x70, 0x71, 0x6d, 0x61, 0x55, 0x54, 0x5f, 0x6a, 0x61, 0x57, 0x4f, 0x4e, 0x51, 0x57, 0x65, 0x74,\n    0x6f, 0x75, 0x76, 0x7a, 0x84, 0x86, 0x7e, 0x7a, 0x76, 0x70, 0x64, 0x5f, 0x65, 0x69, 0x6d, 0x75,\n    0x74, 0x7a, 0x73, 0x5e, 0x4d, 0x59, 0x60, 0x5f, 0x64, 0x63, 0x65, 0x68, 0x69, 0x68, 0x6a, 0x6e,\n    0x70, 0x71, 0x72, 0x73, 0x75, 0x76, 0x76, 0x77, 0x76, 0x73, 0x70, 0x6e, 0x6e, 0x70, 0x72, 0x73,\n    0x75, 0x77, 0x7a, 0x7d, 0x80, 0x82, 0x82, 0x82, 0x83, 0x83, 0x83, 0x83, 0x83, 0x84, 0x86, 0x86,\n    0x85, 0x85, 0x85, 0x86, 0x87, 0x87, 0x87, 0x85, 0x87, 0x87, 0x88, 0x89, 0x89, 0x8a, 0x8a, 0x8a,\n    0x88, 0x88, 0x8a, 0x8b, 0x8d, 0x8e, 0x8e, 0x8e, 0x8f, 0x8f, 0x90, 0x91, 0x92, 0x93, 0x94, 0x95,\n    0x96, 0x96, 0x97, 0x96, 0x95, 0x95, 0x96, 0x97, 0x96, 0x96, 0x97, 0x97, 0x98, 0x99, 0x99, 0x9a,\n    0x9b, 0x9b, 0x9b, 0x9c, 0x9c, 0x9c, 0x9d, 0x9d, 0x9c, 0x9c, 0x9c, 0x9d, 0x9d, 0x9d, 0x9d, 0x9e,\n    0xa1, 0x9f, 0x9c, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x99, 0x99, 0x9a, 0x99, 0x97, 0x96, 0x97, 0x97,\n    0x9a, 0x9a, 0x9a, 0x99, 0x98, 0x97, 0x96, 0x95, 0x94, 0x94, 0x94, 0x94, 0x93, 0x92, 0x90, 0x90,\n    0x8d, 0x8d, 0x8d, 0x8d, 0x8b, 0x89, 0x86, 0x84, 0x7f, 0x7e, 0x7e, 0x7c, 0x7b, 0x79, 0x78, 0x77,\n    0x76, 0x73, 0x70, 0x6e, 0x6d, 0x6d, 0x6c, 0x6c, 0x6b, 0x69, 0x66, 0x64, 0x62, 0x60, 0x5d, 0x5b,\n    0x5a, 0x57, 0x53, 0x51, 0x4f, 0x4d, 0x48, 0x44, 0x55, 0x5a, 0x59, 0x5a, 0x5f, 0x5c, 0x57, 0x58,\n    0x55, 0x50, 0x4b, 0x4b, 0x4c, 0x4a, 0x46, 0x43, 0x38, 0x39, 0x3a, 0x3b, 0x3b, 0x38, 0x35, 0x32,\n    0x35, 0x2e, 0x2d, 0x2f, 0x30, 0x36, 0x3c, 0x3c, 0x38, 0x39, 0x3a, 0x3b, 0x3c, 0x3f, 0x43, 0x45,\n    0x4c, 0x4f, 0x53, 0x54, 0x4c, 0x45, 0x4b, 0x57, 0x67, 0x6e, 0x6d, 0x64, 0x5b, 0x51, 0x4a, 0x4b,\n    0x35, 0x2a, 0x20, 0x1e, 0x1e, 0x1e, 0x24, 0x2d, 0x44, 0x4f, 0x54, 0x54, 0x55, 0x4f, 0x48, 0x48,\n    0x4a, 0x45, 0x46, 0x50, 0x56, 0x53, 0x4c, 0x48, 0x44, 0x4b, 0x4e, 0x4b, 0x4e, 0x58, 0x5c, 0x59,\n    0x59, 0x50, 0x4b, 0x4e, 0x4e, 0x4e, 0x57, 0x64, 0x66, 0x58, 0x4c, 0x47, 0x42, 0x3e, 0x41, 0x45,\n    0x3e, 0x32, 0x33, 0x37, 0x3a, 0x4b, 0x50, 0x3d, 0x2f, 0x37, 0x3f, 0x36, 0x23, 0x23, 0x39, 0x4a,\n    0x44, 0x3e, 0x3f, 0x42, 0x42, 0x43, 0x3f, 0x35, 0x2e, 0x30, 0x2c, 0x2c, 0x36, 0x3b, 0x39, 0x38,\n    0x39, 0x3e, 0x3f, 0x39, 0x34, 0x35, 0x3a, 0x3e, 0x3d, 0x3d, 0x32, 0x37, 0x31, 0x34, 0x31, 0x3e,\n    0x4d, 0x4a, 0x4b, 0x53, 0x5a, 0x57, 0x4a, 0x3f, 0x36, 0x28, 0x2c, 0x38, 0x3f, 0x4e, 0x53, 0x43,\n    0x36, 0x28, 0x23, 0x2e, 0x38, 0x35, 0x2c, 0x27, 0x2b, 0x33, 0x3a, 0x41, 0x4d, 0x56, 0x52, 0x46,\n    0x4e, 0x53, 0x55, 0x55, 0x51, 0x47, 0x43, 0x4b, 0x4d, 0x53, 0x4c, 0x3e, 0x36, 0x31, 0x2d, 0x2f,\n    0x2b, 0x2c, 0x2e, 0x31, 0x36, 0x3f, 0x48, 0x4f, 0x49, 0x3d, 0x31, 0x30, 0x35, 0x38, 0x38, 0x36,\n    0x3e, 0x43, 0x42, 0x37, 0x2c, 0x28, 0x2c, 0x31, 0x3a, 0x3c, 0x3b, 0x38, 0x37, 0x3d, 0x44, 0x49,\n    0x4a, 0x3f, 0x32, 0x2b, 0x2e, 0x33, 0x32, 0x2d, 0x23, 0x24, 0x27, 0x2a, 0x2a, 0x2b, 0x30, 0x37,\n    0x44, 0x44, 0x3d, 0x35, 0x35, 0x3c, 0x3c, 0x35, 0x31, 0x32, 0x32, 0x2e, 0x2c, 0x2f, 0x38, 0x40,\n    0x3b, 0x3d, 0x41, 0x45, 0x43, 0x3c, 0x35, 0x33, 0x34, 0x36, 0x3b, 0x40, 0x41, 0x3e, 0x3a, 0x39,\n    0x3a, 0x3b, 0x3d, 0x3e, 0x3f, 0x40, 0x41, 0x41, 0x42, 0x41, 0x41, 0x43, 0x45, 0x46, 0x43, 0x41,\n    0x48, 0x44, 0x3f, 0x3d, 0x3c, 0x3c, 0x3a, 0x38, 0x42, 0x42, 0x40, 0x3c, 0x38, 0x36, 0x38, 0x3b,\n    0x35, 0x35, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x3b, 0x3f, 0x46, 0x4d, 0x53, 0x56, 0x57, 0x57,\n    0x51, 0x4b, 0x46, 0x47, 0x4e, 0x55, 0x59, 0x59, 0x63, 0x62, 0x61, 0x5f, 0x5e, 0x5e, 0x5d, 0x5c,\n    0x5e, 0x58, 0x57, 0x57, 0x54, 0x56, 0x57, 0x53, 0x57, 0x56, 0x50, 0x4e, 0x4e, 0x49, 0x48, 0x51,\n    0x5a, 0x52, 0x4a, 0x47, 0x4c, 0x51, 0x4e, 0x47, 0x44, 0x48, 0x58, 0x60, 0x54, 0x4e, 0x51, 0x4f,\n    0x59, 0x5f, 0x6c, 0x74, 0x76, 0x76, 0x6c, 0x5d, 0x52, 0x56, 0x5b, 0x59, 0x51, 0x4a, 0x4b, 0x51,\n    0x4e, 0x52, 0x54, 0x50, 0x49, 0x47, 0x4b, 0x51, 0x59, 0x63, 0x67, 0x60, 0x5f, 0x66, 0x69, 0x67,\n    0x67, 0x5e, 0x54, 0x52, 0x56, 0x59, 0x58, 0x55, 0x59, 0x5e, 0x61, 0x5e, 0x5b, 0x5e, 0x65, 0x6a,\n    0x65, 0x60, 0x56, 0x4c, 0x4a, 0x55, 0x69, 0x79, 0x68, 0x65, 0x64, 0x66, 0x63, 0x5c, 0x5a, 0x5b,\n    0x60, 0x67, 0x68, 0x67, 0x6c, 0x6e, 0x6f, 0x72, 0x74, 0x75, 0x6e, 0x69, 0x70, 0x78, 0x7d, 0x84,\n    0x88, 0x7f, 0x79, 0x68, 0x50, 0x5e, 0x58, 0x63, 0x61, 0x62, 0x66, 0x6a, 0x6a, 0x6a, 0x6b, 0x6f,\n    0x6d, 0x6e, 0x71, 0x73, 0x74, 0x75, 0x75, 0x75, 0x76, 0x73, 0x6f, 0x6c, 0x6d, 0x6f, 0x71, 0x72,\n    0x73, 0x75, 0x79, 0x7c, 0x7f, 0x81, 0x82, 0x82, 0x84, 0x83, 0x81, 0x80, 0x80, 0x82, 0x84, 0x85,\n    0x84, 0x84, 0x83, 0x84, 0x85, 0x86, 0x85, 0x84, 0x84, 0x85, 0x86, 0x87, 0x88, 0x88, 0x89, 0x89,\n    0x86, 0x87, 0x88, 0x89, 0x8b, 0x8c, 0x8c, 0x8c, 0x8c, 0x8c, 0x8d, 0x8e, 0x8f, 0x8f, 0x90, 0x90,\n    0x91, 0x92, 0x93, 0x92, 0x92, 0x92, 0x93, 0x95, 0x94, 0x94, 0x94, 0x94, 0x95, 0x96, 0x97, 0x98,\n    0x9a, 0x9a, 0x9a, 0x9a, 0x9b, 0x9b, 0x9b, 0x9b, 0x9a, 0x9a, 0x9a, 0x9b, 0x9c, 0x9d, 0x9d, 0x9d,\n    0x9f, 0x9d, 0x9b, 0x9a, 0x99, 0x99, 0x98, 0x98, 0x97, 0x97, 0x98, 0x97, 0x96, 0x95, 0x95, 0x96,\n    0x97, 0x98, 0x97, 0x97, 0x96, 0x96, 0x95, 0x94, 0x95, 0x94, 0x92, 0x91, 0x90, 0x90, 0x90, 0x90,\n    0x8c, 0x8c, 0x8c, 0x8c, 0x8a, 0x88, 0x86, 0x84, 0x7e, 0x7f, 0x7e, 0x7e, 0x7c, 0x79, 0x76, 0x74,\n    0x74, 0x72, 0x6f, 0x6d, 0x6d, 0x6d, 0x6c, 0x6c, 0x6a, 0x68, 0x65, 0x63, 0x62, 0x60, 0x5e, 0x5d,\n    0x59, 0x56, 0x54, 0x52, 0x50, 0x4c, 0x47, 0x42, 0x56, 0x59, 0x57, 0x56, 0x58, 0x55, 0x50, 0x51,\n    0x4a, 0x47, 0x46, 0x4a, 0x4d, 0x4b, 0x48, 0x46, 0x3d, 0x3b, 0x37, 0x33, 0x30, 0x30, 0x33, 0x35,\n    0x3a, 0x34, 0x34, 0x35, 0x34, 0x38, 0x3b, 0x37, 0x38, 0x3d, 0x3f, 0x3d, 0x3f, 0x45, 0x48, 0x47,\n    0x49, 0x4a, 0x52, 0x5a, 0x56, 0x4d, 0x4e, 0x58, 0x59, 0x55, 0x5d, 0x6c, 0x6e, 0x63, 0x52, 0x42,\n    0x3b, 0x2f, 0x26, 0x25, 0x24, 0x24, 0x2f, 0x3e, 0x58, 0x62, 0x63, 0x5c, 0x54, 0x48, 0x3d, 0x3b,\n    0x46, 0x44, 0x4a, 0x56, 0x5c, 0x56, 0x4b, 0x45, 0x39, 0x3e, 0x41, 0x40, 0x42, 0x48, 0x4b, 0x4a,\n    0x57, 0x4d, 0x4b, 0x54, 0x57, 0x51, 0x4d, 0x50, 0x58, 0x4b, 0x48, 0x44, 0x38, 0x39, 0x43, 0x47,\n    0x37, 0x32, 0x35, 0x37, 0x38, 0x44, 0x48, 0x38, 0x30, 0x35, 0x3b, 0x32, 0x21, 0x23, 0x3a, 0x4b,\n    0x3f, 0x3c, 0x40, 0x44, 0x42, 0x41, 0x3d, 0x35, 0x30, 0x32, 0x2d, 0x2c, 0x34, 0x3a, 0x3a, 0x3d,\n    0x3b, 0x3c, 0x3b, 0x37, 0x35, 0x37, 0x3a, 0x3b, 0x3f, 0x3e, 0x34, 0x34, 0x2e, 0x2f, 0x30, 0x3f,\n    0x4d, 0x43, 0x41, 0x4d, 0x55, 0x51, 0x49, 0x44, 0x32, 0x26, 0x2e, 0x41, 0x4c, 0x52, 0x4c, 0x39,\n    0x2b, 0x23, 0x21, 0x2b, 0x31, 0x2e, 0x29, 0x28, 0x2a, 0x35, 0x3a, 0x3b, 0x44, 0x51, 0x51, 0x46,\n    0x49, 0x4e, 0x4f, 0x4e, 0x4a, 0x40, 0x3e, 0x48, 0x4c, 0x56, 0x50, 0x3f, 0x36, 0x31, 0x2c, 0x2b,\n    0x30, 0x2f, 0x2d, 0x2d, 0x31, 0x3b, 0x48, 0x52, 0x48, 0x3d, 0x33, 0x32, 0x36, 0x38, 0x38, 0x37,\n    0x3a, 0x39, 0x35, 0x2f, 0x2d, 0x2e, 0x30, 0x2f, 0x35, 0x34, 0x32, 0x31, 0x34, 0x38, 0x3d, 0x40,\n    0x44, 0x3b, 0x2e, 0x27, 0x29, 0x2f, 0x2f, 0x2c, 0x24, 0x26, 0x2a, 0x2d, 0x2d, 0x2b, 0x2c, 0x30,\n    0x39, 0x39, 0x36, 0x30, 0x2e, 0x2f, 0x2c, 0x27, 0x24, 0x28, 0x2b, 0x2c, 0x2b, 0x2e, 0x36, 0x3d,\n    0x39, 0x3a, 0x3d, 0x40, 0x3e, 0x37, 0x32, 0x30, 0x32, 0x33, 0x37, 0x3c, 0x3e, 0x3e, 0x3c, 0x3b,\n    0x3b, 0x3a, 0x3a, 0x3a, 0x39, 0x39, 0x39, 0x38, 0x37, 0x38, 0x3c, 0x42, 0x49, 0x4e, 0x4f, 0x4f,\n    0x4a, 0x45, 0x3f, 0x3b, 0x3a, 0x3a, 0x38, 0x37, 0x35, 0x38, 0x3b, 0x3b, 0x39, 0x37, 0x37, 0x39,\n    0x37, 0x36, 0x36, 0x36, 0x36, 0x35, 0x34, 0x33, 0x39, 0x3e, 0x46, 0x4c, 0x4f, 0x51, 0x52, 0x53,\n    0x57, 0x55, 0x56, 0x5c, 0x65, 0x6a, 0x69, 0x66, 0x5d, 0x5c, 0x58, 0x53, 0x50, 0x52, 0x53, 0x54,\n    0x59, 0x55, 0x57, 0x59, 0x55, 0x56, 0x57, 0x53, 0x50, 0x54, 0x52, 0x50, 0x50, 0x4a, 0x45, 0x48,\n    0x4a, 0x46, 0x43, 0x47, 0x51, 0x58, 0x54, 0x4b, 0x44, 0x3d, 0x4a, 0x55, 0x51, 0x5a, 0x68, 0x65,\n    0x62, 0x63, 0x6c, 0x6b, 0x5f, 0x5f, 0x62, 0x5a, 0x55, 0x5a, 0x5f, 0x60, 0x5a, 0x53, 0x52, 0x56,\n    0x57, 0x5d, 0x5e, 0x57, 0x4d, 0x48, 0x4a, 0x4d, 0x5f, 0x65, 0x62, 0x57, 0x52, 0x59, 0x5c, 0x59,\n    0x4f, 0x50, 0x52, 0x54, 0x56, 0x5a, 0x62, 0x69, 0x61, 0x5f, 0x5b, 0x57, 0x59, 0x64, 0x72, 0x7d,\n    0x80, 0x76, 0x6c, 0x6a, 0x6d, 0x6f, 0x6e, 0x6c, 0x74, 0x6e, 0x66, 0x5d, 0x55, 0x50, 0x4f, 0x50,\n    0x4c, 0x56, 0x5b, 0x5d, 0x61, 0x63, 0x65, 0x6d, 0x6f, 0x79, 0x7c, 0x7c, 0x81, 0x82, 0x7e, 0x7f,\n    0x9d, 0xa3, 0xab, 0x7a, 0x55, 0x5d, 0x5d, 0x6a, 0x62, 0x64, 0x67, 0x69, 0x6a, 0x6a, 0x6d, 0x6f,\n    0x6a, 0x6c, 0x70, 0x73, 0x75, 0x76, 0x75, 0x74, 0x77, 0x73, 0x6e, 0x6b, 0x6c, 0x6f, 0x72, 0x72,\n    0x73, 0x75, 0x78, 0x7c, 0x7f, 0x80, 0x81, 0x81, 0x83, 0x83, 0x81, 0x81, 0x81, 0x82, 0x83, 0x84,\n    0x83, 0x83, 0x83, 0x83, 0x84, 0x85, 0x84, 0x82, 0x82, 0x83, 0x84, 0x85, 0x86, 0x86, 0x86, 0x86,\n    0x85, 0x85, 0x87, 0x88, 0x89, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8b, 0x8c, 0x8c, 0x8d, 0x8d,\n    0x8e, 0x8f, 0x90, 0x8f, 0x8f, 0x90, 0x91, 0x92, 0x93, 0x92, 0x92, 0x92, 0x93, 0x95, 0x96, 0x97,\n    0x99, 0x99, 0x99, 0x99, 0x99, 0x98, 0x98, 0x98, 0x97, 0x97, 0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9c,\n    0x9e, 0x9c, 0x9a, 0x98, 0x98, 0x98, 0x96, 0x95, 0x96, 0x97, 0x98, 0x97, 0x96, 0x95, 0x96, 0x96,\n    0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x94, 0x93, 0x93, 0x92, 0x8f, 0x8d, 0x8c, 0x8d, 0x8e, 0x8f,\n    0x8c, 0x8c, 0x8c, 0x8b, 0x8a, 0x88, 0x86, 0x84, 0x7f, 0x7f, 0x7e, 0x7c, 0x7a, 0x77, 0x75, 0x74,\n    0x74, 0x71, 0x6f, 0x6d, 0x6c, 0x6c, 0x6b, 0x6a, 0x67, 0x65, 0x62, 0x61, 0x60, 0x5f, 0x5e, 0x5c,\n    0x5b, 0x59, 0x56, 0x53, 0x50, 0x4d, 0x48, 0x45, 0x56, 0x58, 0x56, 0x56, 0x5a, 0x56, 0x4d, 0x4b,\n    0x44, 0x46, 0x46, 0x45, 0x47, 0x48, 0x43, 0x3c, 0x3e, 0x3a, 0x34, 0x2f, 0x2c, 0x30, 0x37, 0x3d,\n    0x3d, 0x3b, 0x3d, 0x3c, 0x36, 0x36, 0x39, 0x35, 0x3e, 0x42, 0x40, 0x38, 0x37, 0x40, 0x46, 0x45,\n    0x3a, 0x38, 0x42, 0x54, 0x5c, 0x59, 0x5c, 0x65, 0x5e, 0x51, 0x58, 0x6b, 0x75, 0x78, 0x6f, 0x5d,\n    0x49, 0x3c, 0x30, 0x2e, 0x2a, 0x28, 0x32, 0x40, 0x59, 0x61, 0x5f, 0x54, 0x4a, 0x3c, 0x30, 0x2e,\n    0x40, 0x45, 0x4b, 0x52, 0x58, 0x58, 0x4e, 0x43, 0x32, 0x29, 0x29, 0x36, 0x3f, 0x3e, 0x41, 0x48,\n    0x4e, 0x44, 0x3b, 0x37, 0x39, 0x3e, 0x47, 0x4f, 0x4f, 0x43, 0x46, 0x46, 0x38, 0x3b, 0x49, 0x48,\n    0x38, 0x35, 0x38, 0x39, 0x3d, 0x48, 0x4a, 0x3c, 0x38, 0x35, 0x34, 0x30, 0x29, 0x2f, 0x3c, 0x42,\n    0x41, 0x3d, 0x41, 0x48, 0x47, 0x44, 0x3f, 0x35, 0x2f, 0x31, 0x2b, 0x29, 0x31, 0x39, 0x3d, 0x43,\n    0x40, 0x3e, 0x3a, 0x38, 0x38, 0x39, 0x39, 0x38, 0x41, 0x3c, 0x35, 0x36, 0x31, 0x28, 0x2c, 0x41,\n    0x53, 0x4e, 0x49, 0x46, 0x3f, 0x37, 0x35, 0x37, 0x2e, 0x28, 0x34, 0x49, 0x53, 0x52, 0x46, 0x34,\n    0x1d, 0x19, 0x1d, 0x2a, 0x34, 0x36, 0x34, 0x35, 0x3e, 0x4b, 0x4f, 0x4a, 0x4f, 0x5b, 0x59, 0x4b,\n    0x51, 0x53, 0x50, 0x4d, 0x48, 0x3f, 0x3e, 0x48, 0x4d, 0x57, 0x53, 0x44, 0x3d, 0x3b, 0x38, 0x39,\n    0x3f, 0x3d, 0x3b, 0x39, 0x3a, 0x3e, 0x46, 0x4b, 0x3d, 0x38, 0x34, 0x35, 0x38, 0x39, 0x3a, 0x3d,\n    0x3a, 0x39, 0x35, 0x31, 0x32, 0x35, 0x36, 0x34, 0x36, 0x32, 0x2f, 0x33, 0x38, 0x3d, 0x3d, 0x3d,\n    0x3b, 0x36, 0x2d, 0x25, 0x23, 0x26, 0x27, 0x26, 0x2a, 0x2d, 0x32, 0x36, 0x34, 0x2e, 0x2c, 0x2c,\n    0x30, 0x2b, 0x29, 0x2e, 0x30, 0x2d, 0x2a, 0x2a, 0x21, 0x24, 0x27, 0x29, 0x2b, 0x2e, 0x32, 0x34,\n    0x2f, 0x2e, 0x2f, 0x32, 0x32, 0x2e, 0x2d, 0x2d, 0x32, 0x33, 0x34, 0x36, 0x39, 0x3b, 0x3b, 0x3a,\n    0x38, 0x38, 0x37, 0x36, 0x35, 0x34, 0x33, 0x33, 0x32, 0x34, 0x39, 0x40, 0x48, 0x4c, 0x4c, 0x4b,\n    0x49, 0x45, 0x3f, 0x39, 0x35, 0x34, 0x35, 0x36, 0x31, 0x32, 0x34, 0x36, 0x37, 0x36, 0x35, 0x33,\n    0x39, 0x37, 0x35, 0x34, 0x35, 0x36, 0x36, 0x35, 0x35, 0x39, 0x40, 0x44, 0x45, 0x46, 0x48, 0x4a,\n    0x4b, 0x51, 0x5d, 0x68, 0x70, 0x6f, 0x6a, 0x65, 0x66, 0x6b, 0x6d, 0x6a, 0x65, 0x60, 0x59, 0x52,\n    0x53, 0x53, 0x58, 0x5a, 0x54, 0x54, 0x56, 0x54, 0x4c, 0x51, 0x4f, 0x4b, 0x4b, 0x46, 0x41, 0x42,\n    0x3d, 0x3d, 0x3d, 0x42, 0x4b, 0x52, 0x4f, 0x49, 0x49, 0x3e, 0x49, 0x58, 0x5c, 0x69, 0x77, 0x71,\n    0x5a, 0x5b, 0x63, 0x5e, 0x4f, 0x53, 0x64, 0x69, 0x65, 0x62, 0x5e, 0x5c, 0x58, 0x56, 0x57, 0x5a,\n    0x5d, 0x65, 0x68, 0x60, 0x55, 0x4b, 0x46, 0x42, 0x4f, 0x50, 0x4c, 0x44, 0x45, 0x4c, 0x4f, 0x4d,\n    0x4f, 0x54, 0x5b, 0x5f, 0x5c, 0x5a, 0x60, 0x69, 0x6c, 0x64, 0x5a, 0x55, 0x59, 0x64, 0x71, 0x7a,\n    0x86, 0x7f, 0x7a, 0x7e, 0x81, 0x7c, 0x72, 0x6b, 0x73, 0x6d, 0x61, 0x55, 0x50, 0x55, 0x5f, 0x65,\n    0x60, 0x66, 0x6b, 0x76, 0x83, 0x83, 0x7a, 0x78, 0x79, 0x7d, 0x78, 0x71, 0x71, 0x73, 0x77, 0x7f,\n    0xab, 0xdc, 0xeb, 0x76, 0x46, 0x53, 0x63, 0x62, 0x66, 0x66, 0x67, 0x67, 0x68, 0x6b, 0x6e, 0x6f,\n    0x6b, 0x6d, 0x71, 0x76, 0x78, 0x79, 0x79, 0x78, 0x78, 0x73, 0x6d, 0x6b, 0x6d, 0x70, 0x72, 0x72,\n    0x73, 0x75, 0x78, 0x7c, 0x7e, 0x80, 0x81, 0x81, 0x82, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83,\n    0x83, 0x83, 0x82, 0x83, 0x84, 0x84, 0x83, 0x81, 0x82, 0x82, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83,\n    0x84, 0x85, 0x86, 0x87, 0x88, 0x88, 0x89, 0x89, 0x88, 0x88, 0x89, 0x89, 0x8a, 0x8b, 0x8b, 0x8b,\n    0x8c, 0x8d, 0x8e, 0x8e, 0x8d, 0x8e, 0x8f, 0x91, 0x91, 0x91, 0x91, 0x92, 0x93, 0x94, 0x96, 0x97,\n    0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x96, 0x96, 0x95, 0x96, 0x97, 0x98, 0x99, 0x9a, 0x9b, 0x9c,\n    0x9c, 0x9b, 0x99, 0x98, 0x97, 0x97, 0x95, 0x94, 0x95, 0x96, 0x96, 0x96, 0x95, 0x94, 0x95, 0x96,\n    0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x93, 0x93, 0x92, 0x90, 0x8e, 0x8c, 0x8b, 0x8c, 0x8d, 0x8e,\n    0x8c, 0x8b, 0x8b, 0x8a, 0x88, 0x86, 0x85, 0x84, 0x80, 0x7f, 0x7c, 0x7a, 0x77, 0x75, 0x74, 0x74,\n    0x74, 0x72, 0x6f, 0x6d, 0x6b, 0x6a, 0x69, 0x68, 0x66, 0x64, 0x62, 0x60, 0x60, 0x5f, 0x5d, 0x5c,\n    0x5d, 0x5a, 0x56, 0x51, 0x4e, 0x4c, 0x4a, 0x49, 0x58, 0x57, 0x52, 0x52, 0x5a, 0x58, 0x4f, 0x4c,\n    0x4f, 0x53, 0x4d, 0x40, 0x3d, 0x43, 0x41, 0x37, 0x37, 0x38, 0x39, 0x38, 0x36, 0x36, 0x39, 0x3b,\n    0x36, 0x3a, 0x3f, 0x3c, 0x33, 0x34, 0x39, 0x37, 0x3d, 0x42, 0x3f, 0x36, 0x34, 0x3d, 0x44, 0x44,\n    0x46, 0x3f, 0x43, 0x52, 0x5b, 0x5a, 0x5a, 0x5f, 0x58, 0x58, 0x64, 0x6d, 0x6e, 0x78, 0x7e, 0x76,\n    0x6b, 0x5a, 0x48, 0x3c, 0x34, 0x2e, 0x32, 0x39, 0x46, 0x4b, 0x45, 0x3a, 0x36, 0x33, 0x32, 0x37,\n    0x3c, 0x45, 0x48, 0x45, 0x4a, 0x54, 0x4f, 0x40, 0x3a, 0x34, 0x34, 0x3b, 0x3e, 0x3c, 0x41, 0x4a,\n    0x39, 0x46, 0x55, 0x60, 0x67, 0x68, 0x5f, 0x54, 0x47, 0x40, 0x4b, 0x51, 0x45, 0x45, 0x4b, 0x43,\n    0x3d, 0x39, 0x37, 0x3a, 0x46, 0x54, 0x53, 0x45, 0x3a, 0x36, 0x37, 0x38, 0x35, 0x39, 0x41, 0x41,\n    0x4a, 0x41, 0x41, 0x48, 0x4a, 0x49, 0x44, 0x3b, 0x32, 0x33, 0x2c, 0x28, 0x31, 0x3a, 0x40, 0x47,\n    0x47, 0x43, 0x40, 0x3f, 0x3e, 0x3d, 0x3a, 0x38, 0x3f, 0x35, 0x35, 0x3a, 0x36, 0x22, 0x29, 0x46,\n    0x42, 0x45, 0x44, 0x3a, 0x30, 0x2d, 0x2b, 0x29, 0x2c, 0x2b, 0x35, 0x43, 0x4c, 0x4c, 0x45, 0x3c,\n    0x2e, 0x28, 0x29, 0x33, 0x3b, 0x3c, 0x37, 0x34, 0x3d, 0x44, 0x44, 0x43, 0x4c, 0x53, 0x42, 0x26,\n    0x56, 0x56, 0x52, 0x4e, 0x4a, 0x3f, 0x3b, 0x42, 0x4c, 0x53, 0x4e, 0x44, 0x42, 0x43, 0x45, 0x4a,\n    0x4c, 0x4b, 0x4a, 0x49, 0x47, 0x45, 0x43, 0x42, 0x3a, 0x39, 0x38, 0x37, 0x35, 0x32, 0x33, 0x37,\n    0x36, 0x3a, 0x3b, 0x37, 0x32, 0x32, 0x34, 0x36, 0x31, 0x2d, 0x2b, 0x31, 0x38, 0x3b, 0x3b, 0x3a,\n    0x3a, 0x39, 0x33, 0x2a, 0x24, 0x23, 0x24, 0x25, 0x23, 0x26, 0x2d, 0x34, 0x35, 0x32, 0x30, 0x30,\n    0x36, 0x2c, 0x29, 0x2e, 0x32, 0x2e, 0x2b, 0x2d, 0x28, 0x27, 0x26, 0x27, 0x29, 0x2b, 0x2d, 0x2e,\n    0x29, 0x28, 0x28, 0x2b, 0x2c, 0x2c, 0x2e, 0x30, 0x31, 0x31, 0x2f, 0x2f, 0x31, 0x35, 0x36, 0x33,\n    0x33, 0x33, 0x34, 0x34, 0x34, 0x33, 0x33, 0x32, 0x34, 0x34, 0x36, 0x3a, 0x3c, 0x3b, 0x37, 0x34,\n    0x3d, 0x3d, 0x3c, 0x38, 0x34, 0x35, 0x3a, 0x3f, 0x3b, 0x37, 0x34, 0x34, 0x36, 0x37, 0x36, 0x34,\n    0x39, 0x36, 0x33, 0x32, 0x34, 0x37, 0x37, 0x37, 0x34, 0x37, 0x3b, 0x3d, 0x3f, 0x41, 0x44, 0x47,\n    0x42, 0x46, 0x4b, 0x51, 0x55, 0x58, 0x5a, 0x5c, 0x6c, 0x72, 0x75, 0x73, 0x71, 0x6e, 0x67, 0x5e,\n    0x50, 0x4e, 0x52, 0x54, 0x4e, 0x4e, 0x51, 0x4e, 0x57, 0x5a, 0x52, 0x46, 0x43, 0x40, 0x3d, 0x3d,\n    0x40, 0x40, 0x3e, 0x3e, 0x41, 0x46, 0x47, 0x44, 0x4c, 0x46, 0x50, 0x5c, 0x5e, 0x5f, 0x5f, 0x55,\n    0x4e, 0x54, 0x5c, 0x59, 0x4e, 0x51, 0x62, 0x6f, 0x6a, 0x60, 0x55, 0x51, 0x53, 0x58, 0x5f, 0x64,\n    0x65, 0x71, 0x7b, 0x7c, 0x76, 0x6c, 0x5d, 0x51, 0x43, 0x41, 0x3f, 0x40, 0x44, 0x49, 0x4c, 0x4e,\n    0x53, 0x54, 0x5a, 0x62, 0x64, 0x62, 0x62, 0x66, 0x6d, 0x63, 0x5a, 0x56, 0x56, 0x58, 0x5c, 0x5f,\n    0x62, 0x5d, 0x5c, 0x5e, 0x5f, 0x61, 0x68, 0x70, 0x70, 0x73, 0x6f, 0x62, 0x58, 0x57, 0x58, 0x58,\n    0x5f, 0x64, 0x67, 0x6c, 0x72, 0x71, 0x71, 0x77, 0x82, 0x88, 0x89, 0x86, 0x82, 0x79, 0x75, 0x7c,\n    0xb1, 0xdd, 0xd7, 0x5b, 0x47, 0x52, 0x66, 0x61, 0x69, 0x68, 0x66, 0x65, 0x69, 0x6d, 0x6e, 0x6d,\n    0x6c, 0x6e, 0x72, 0x75, 0x78, 0x79, 0x78, 0x78, 0x77, 0x72, 0x6d, 0x6b, 0x6e, 0x71, 0x71, 0x71,\n    0x74, 0x75, 0x78, 0x7b, 0x7e, 0x7f, 0x80, 0x80, 0x81, 0x82, 0x83, 0x84, 0x84, 0x84, 0x83, 0x82,\n    0x83, 0x82, 0x81, 0x82, 0x83, 0x83, 0x81, 0x80, 0x81, 0x81, 0x82, 0x82, 0x82, 0x81, 0x81, 0x81,\n    0x83, 0x83, 0x84, 0x86, 0x86, 0x87, 0x87, 0x87, 0x86, 0x87, 0x87, 0x88, 0x89, 0x8a, 0x8a, 0x8b,\n    0x8c, 0x8c, 0x8d, 0x8d, 0x8c, 0x8c, 0x8e, 0x8f, 0x8e, 0x8f, 0x90, 0x91, 0x92, 0x93, 0x94, 0x95,\n    0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x96, 0x97, 0x98, 0x99, 0x9a, 0x9b, 0x9b,\n    0x9a, 0x99, 0x97, 0x96, 0x96, 0x95, 0x94, 0x93, 0x92, 0x93, 0x94, 0x93, 0x92, 0x92, 0x93, 0x94,\n    0x94, 0x94, 0x94, 0x94, 0x93, 0x92, 0x91, 0x91, 0x91, 0x90, 0x8e, 0x8d, 0x8c, 0x8c, 0x8c, 0x8c,\n    0x8b, 0x8a, 0x89, 0x88, 0x86, 0x84, 0x82, 0x81, 0x7f, 0x7e, 0x7b, 0x77, 0x75, 0x74, 0x73, 0x73,\n    0x73, 0x71, 0x6e, 0x6c, 0x6b, 0x69, 0x67, 0x66, 0x65, 0x64, 0x63, 0x62, 0x62, 0x60, 0x5e, 0x5c,\n    0x5b, 0x58, 0x54, 0x4f, 0x4c, 0x4a, 0x4a, 0x4a, 0x56, 0x53, 0x4a, 0x48, 0x50, 0x53, 0x4f, 0x4f,\n    0x54, 0x55, 0x49, 0x38, 0x35, 0x41, 0x45, 0x40, 0x3d, 0x3d, 0x3c, 0x3a, 0x39, 0x39, 0x3b, 0x3c,\n    0x3d, 0x41, 0x46, 0x40, 0x36, 0x37, 0x3b, 0x39, 0x3b, 0x41, 0x42, 0x3f, 0x3e, 0x43, 0x47, 0x48,\n    0x5b, 0x57, 0x57, 0x5c, 0x5e, 0x5b, 0x59, 0x5b, 0x61, 0x5d, 0x5a, 0x57, 0x5b, 0x6a, 0x75, 0x74,\n    0x7b, 0x6e, 0x5c, 0x4c, 0x41, 0x3c, 0x3b, 0x3b, 0x37, 0x3c, 0x3a, 0x35, 0x37, 0x37, 0x37, 0x3b,\n    0x3c, 0x44, 0x43, 0x3b, 0x40, 0x4e, 0x4d, 0x41, 0x3e, 0x4a, 0x4d, 0x40, 0x38, 0x3c, 0x42, 0x44,\n    0x46, 0x53, 0x65, 0x76, 0x82, 0x81, 0x70, 0x5d, 0x4b, 0x47, 0x4d, 0x50, 0x48, 0x49, 0x4d, 0x48,\n    0x3d, 0x38, 0x31, 0x36, 0x4a, 0x5a, 0x55, 0x47, 0x35, 0x3a, 0x43, 0x42, 0x39, 0x3b, 0x46, 0x4d,\n    0x4b, 0x3d, 0x3b, 0x43, 0x47, 0x48, 0x46, 0x3f, 0x3a, 0x38, 0x2e, 0x29, 0x31, 0x39, 0x3f, 0x45,\n    0x47, 0x45, 0x44, 0x44, 0x41, 0x3c, 0x38, 0x37, 0x37, 0x2e, 0x33, 0x38, 0x35, 0x1c, 0x27, 0x45,\n    0x4a, 0x4f, 0x51, 0x4d, 0x4c, 0x4a, 0x3f, 0x31, 0x26, 0x30, 0x3c, 0x47, 0x4e, 0x4e, 0x46, 0x3f,\n    0x35, 0x2e, 0x2a, 0x31, 0x39, 0x3b, 0x38, 0x34, 0x46, 0x45, 0x43, 0x48, 0x59, 0x5d, 0x41, 0x1d,\n    0x4d, 0x4f, 0x4e, 0x4f, 0x4d, 0x41, 0x38, 0x3b, 0x3c, 0x40, 0x3e, 0x3b, 0x3e, 0x40, 0x42, 0x4a,\n    0x49, 0x46, 0x43, 0x41, 0x3f, 0x3d, 0x38, 0x35, 0x3b, 0x39, 0x37, 0x34, 0x2f, 0x2a, 0x2a, 0x2d,\n    0x30, 0x33, 0x35, 0x34, 0x33, 0x34, 0x33, 0x32, 0x2d, 0x29, 0x28, 0x2c, 0x30, 0x31, 0x33, 0x37,\n    0x38, 0x38, 0x33, 0x2b, 0x25, 0x24, 0x26, 0x27, 0x21, 0x23, 0x28, 0x2e, 0x30, 0x2f, 0x2f, 0x30,\n    0x32, 0x2e, 0x2c, 0x2c, 0x2d, 0x2c, 0x2a, 0x28, 0x28, 0x27, 0x26, 0x26, 0x27, 0x27, 0x28, 0x28,\n    0x29, 0x27, 0x28, 0x2b, 0x2d, 0x2e, 0x31, 0x34, 0x2f, 0x2f, 0x2e, 0x2d, 0x30, 0x35, 0x34, 0x30,\n    0x2d, 0x2e, 0x30, 0x32, 0x32, 0x32, 0x32, 0x31, 0x33, 0x32, 0x32, 0x33, 0x34, 0x31, 0x2c, 0x28,\n    0x33, 0x35, 0x36, 0x36, 0x35, 0x37, 0x3b, 0x3e, 0x3a, 0x37, 0x35, 0x35, 0x37, 0x38, 0x37, 0x35,\n    0x37, 0x34, 0x31, 0x32, 0x35, 0x37, 0x37, 0x36, 0x37, 0x38, 0x39, 0x3c, 0x3f, 0x44, 0x49, 0x4d,\n    0x4c, 0x4b, 0x4b, 0x4b, 0x4e, 0x53, 0x58, 0x5c, 0x60, 0x64, 0x66, 0x64, 0x65, 0x67, 0x62, 0x5a,\n    0x4c, 0x44, 0x43, 0x44, 0x43, 0x47, 0x49, 0x45, 0x5a, 0x5e, 0x53, 0x44, 0x3f, 0x3f, 0x3c, 0x3c,\n    0x41, 0x41, 0x3f, 0x3d, 0x3f, 0x43, 0x45, 0x45, 0x4b, 0x4c, 0x50, 0x54, 0x51, 0x49, 0x41, 0x3d,\n    0x4a, 0x55, 0x5a, 0x57, 0x51, 0x4d, 0x53, 0x5e, 0x5a, 0x51, 0x49, 0x49, 0x4f, 0x57, 0x5e, 0x64,\n    0x68, 0x75, 0x84, 0x8d, 0x8f, 0x88, 0x76, 0x65, 0x47, 0x41, 0x40, 0x44, 0x47, 0x49, 0x51, 0x5b,\n    0x5d, 0x58, 0x57, 0x5d, 0x61, 0x62, 0x66, 0x6d, 0x63, 0x5f, 0x5c, 0x5c, 0x5c, 0x5a, 0x5a, 0x5d,\n    0x58, 0x4f, 0x47, 0x44, 0x44, 0x49, 0x59, 0x6a, 0x7b, 0x7d, 0x74, 0x5e, 0x4b, 0x46, 0x47, 0x47,\n    0x47, 0x51, 0x56, 0x56, 0x55, 0x54, 0x5e, 0x6f, 0x7f, 0x91, 0xa7, 0xb5, 0xac, 0x8c, 0x71, 0x6b,\n    0xab, 0xc2, 0xa0, 0x4d, 0x5a, 0x5e, 0x6a, 0x71, 0x69, 0x68, 0x65, 0x65, 0x6b, 0x71, 0x6f, 0x6a,\n    0x6e, 0x70, 0x72, 0x75, 0x76, 0x77, 0x76, 0x76, 0x76, 0x71, 0x6c, 0x6b, 0x6e, 0x70, 0x70, 0x6f,\n    0x73, 0x75, 0x78, 0x7a, 0x7c, 0x7d, 0x7e, 0x7e, 0x80, 0x80, 0x80, 0x81, 0x81, 0x82, 0x82, 0x83,\n    0x81, 0x81, 0x80, 0x80, 0x81, 0x81, 0x80, 0x7e, 0x7f, 0x80, 0x80, 0x81, 0x81, 0x81, 0x81, 0x81,\n    0x81, 0x82, 0x83, 0x84, 0x84, 0x85, 0x85, 0x85, 0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x8a,\n    0x8b, 0x8c, 0x8c, 0x8c, 0x8b, 0x8b, 0x8c, 0x8d, 0x8a, 0x8c, 0x8d, 0x8f, 0x91, 0x91, 0x91, 0x91,\n    0x93, 0x93, 0x93, 0x93, 0x94, 0x94, 0x94, 0x95, 0x93, 0x94, 0x95, 0x95, 0x96, 0x97, 0x98, 0x98,\n    0x97, 0x96, 0x95, 0x95, 0x95, 0x94, 0x93, 0x91, 0x90, 0x91, 0x92, 0x92, 0x91, 0x91, 0x91, 0x92,\n    0x93, 0x93, 0x93, 0x92, 0x91, 0x90, 0x8f, 0x8e, 0x8e, 0x8e, 0x8e, 0x8e, 0x8d, 0x8c, 0x8b, 0x8a,\n    0x89, 0x88, 0x87, 0x85, 0x83, 0x80, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x77, 0x75, 0x73, 0x72, 0x71,\n    0x71, 0x70, 0x6d, 0x6c, 0x6b, 0x69, 0x68, 0x66, 0x64, 0x63, 0x63, 0x63, 0x62, 0x60, 0x5d, 0x5a,\n    0x57, 0x56, 0x53, 0x4f, 0x4b, 0x49, 0x49, 0x49, 0x51, 0x50, 0x49, 0x46, 0x4c, 0x4e, 0x4f, 0x53,\n    0x4f, 0x49, 0x40, 0x38, 0x37, 0x3c, 0x42, 0x45, 0x44, 0x41, 0x3d, 0x3a, 0x3a, 0x3b, 0x3c, 0x3d,\n    0x44, 0x45, 0x46, 0x3f, 0x37, 0x3a, 0x3e, 0x38, 0x3c, 0x40, 0x44, 0x44, 0x42, 0x41, 0x43, 0x46,\n    0x51, 0x59, 0x62, 0x65, 0x64, 0x64, 0x66, 0x69, 0x79, 0x65, 0x4b, 0x41, 0x4c, 0x5a, 0x66, 0x70,\n    0x69, 0x6c, 0x68, 0x5c, 0x53, 0x4f, 0x48, 0x41, 0x3d, 0x43, 0x42, 0x40, 0x41, 0x3d, 0x35, 0x33,\n    0x36, 0x37, 0x36, 0x35, 0x3b, 0x45, 0x48, 0x45, 0x36, 0x46, 0x4b, 0x40, 0x3e, 0x4a, 0x4f, 0x49,\n    0x4e, 0x5f, 0x7e, 0x9a, 0x9d, 0x85, 0x66, 0x53, 0x51, 0x50, 0x4f, 0x4a, 0x45, 0x46, 0x4b, 0x4e,\n    0x3c, 0x38, 0x2f, 0x34, 0x4c, 0x5c, 0x54, 0x45, 0x38, 0x3f, 0x4a, 0x46, 0x39, 0x3a, 0x4b, 0x56,\n    0x3e, 0x35, 0x39, 0x45, 0x49, 0x47, 0x43, 0x3c, 0x3c, 0x38, 0x2b, 0x25, 0x2d, 0x35, 0x39, 0x3e,\n    0x43, 0x44, 0x46, 0x46, 0x41, 0x39, 0x35, 0x36, 0x37, 0x35, 0x3c, 0x36, 0x32, 0x1c, 0x29, 0x41,\n    0x54, 0x52, 0x51, 0x50, 0x4c, 0x3e, 0x28, 0x15, 0x28, 0x3a, 0x46, 0x4c, 0x52, 0x51, 0x45, 0x39,\n    0x26, 0x20, 0x1e, 0x25, 0x32, 0x3d, 0x43, 0x45, 0x45, 0x44, 0x40, 0x3e, 0x44, 0x43, 0x31, 0x1b,\n    0x44, 0x48, 0x4c, 0x52, 0x54, 0x47, 0x3a, 0x3a, 0x37, 0x3c, 0x3e, 0x42, 0x48, 0x46, 0x46, 0x4d,\n    0x4c, 0x45, 0x3c, 0x38, 0x39, 0x3a, 0x39, 0x37, 0x35, 0x32, 0x30, 0x2f, 0x2c, 0x29, 0x2a, 0x2d,\n    0x2d, 0x2b, 0x2a, 0x2f, 0x39, 0x3e, 0x38, 0x2f, 0x30, 0x2d, 0x2d, 0x2d, 0x2c, 0x2b, 0x30, 0x37,\n    0x31, 0x30, 0x2c, 0x25, 0x22, 0x24, 0x26, 0x27, 0x2f, 0x2d, 0x2e, 0x2f, 0x2d, 0x29, 0x27, 0x28,\n    0x1f, 0x25, 0x28, 0x27, 0x28, 0x2c, 0x2a, 0x24, 0x1f, 0x22, 0x26, 0x27, 0x27, 0x25, 0x25, 0x25,\n    0x27, 0x26, 0x27, 0x2a, 0x2c, 0x2d, 0x2f, 0x32, 0x30, 0x31, 0x31, 0x31, 0x36, 0x3b, 0x3a, 0x35,\n    0x2a, 0x2c, 0x2e, 0x2f, 0x30, 0x30, 0x2e, 0x2d, 0x2f, 0x2e, 0x2f, 0x31, 0x34, 0x34, 0x31, 0x2f,\n    0x33, 0x34, 0x34, 0x34, 0x32, 0x30, 0x2f, 0x2f, 0x2e, 0x2f, 0x31, 0x34, 0x35, 0x35, 0x33, 0x31,\n    0x35, 0x32, 0x30, 0x32, 0x35, 0x37, 0x35, 0x33, 0x38, 0x37, 0x38, 0x3b, 0x40, 0x47, 0x4e, 0x52,\n    0x57, 0x5c, 0x63, 0x6a, 0x6e, 0x6c, 0x66, 0x61, 0x60, 0x67, 0x6c, 0x6c, 0x6c, 0x6a, 0x5d, 0x4f,\n    0x46, 0x3a, 0x34, 0x35, 0x39, 0x41, 0x44, 0x3e, 0x4b, 0x52, 0x4c, 0x40, 0x3f, 0x41, 0x3f, 0x3e,\n    0x39, 0x3a, 0x3a, 0x3c, 0x40, 0x46, 0x48, 0x47, 0x49, 0x4d, 0x4d, 0x4b, 0x48, 0x41, 0x3f, 0x46,\n    0x4a, 0x55, 0x56, 0x52, 0x52, 0x49, 0x44, 0x4d, 0x49, 0x45, 0x43, 0x47, 0x4c, 0x4f, 0x51, 0x54,\n    0x51, 0x5c, 0x6a, 0x73, 0x79, 0x76, 0x63, 0x4f, 0x49, 0x40, 0x3d, 0x42, 0x44, 0x47, 0x56, 0x69,\n    0x74, 0x6b, 0x62, 0x5c, 0x56, 0x57, 0x63, 0x72, 0x74, 0x71, 0x6e, 0x6c, 0x65, 0x5e, 0x5c, 0x5e,\n    0x53, 0x46, 0x3c, 0x3e, 0x45, 0x4f, 0x5e, 0x6b, 0x6c, 0x74, 0x70, 0x5c, 0x4a, 0x45, 0x46, 0x46,\n    0x4a, 0x54, 0x5e, 0x69, 0x71, 0x6e, 0x6d, 0x74, 0x8a, 0x8f, 0x96, 0x9a, 0x8e, 0x72, 0x63, 0x6a,\n    0x90, 0xb8, 0x8d, 0x46, 0x53, 0x59, 0x60, 0x6d, 0x68, 0x67, 0x64, 0x66, 0x6e, 0x74, 0x70, 0x68,\n    0x74, 0x75, 0x76, 0x77, 0x78, 0x78, 0x77, 0x76, 0x74, 0x70, 0x6b, 0x6a, 0x6e, 0x70, 0x6f, 0x6d,\n    0x73, 0x75, 0x77, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7f, 0x7e, 0x7d, 0x7d, 0x7e, 0x80, 0x82, 0x83,\n    0x80, 0x7f, 0x7f, 0x7f, 0x80, 0x80, 0x7e, 0x7d, 0x7e, 0x7e, 0x7f, 0x80, 0x81, 0x82, 0x82, 0x82,\n    0x80, 0x80, 0x81, 0x82, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x84, 0x86, 0x87, 0x88, 0x89, 0x8a,\n    0x8b, 0x8b, 0x8c, 0x8b, 0x8a, 0x89, 0x8a, 0x8c, 0x87, 0x89, 0x8b, 0x8e, 0x8f, 0x8f, 0x8f, 0x8e,\n    0x91, 0x92, 0x92, 0x93, 0x93, 0x94, 0x94, 0x94, 0x91, 0x91, 0x92, 0x93, 0x93, 0x94, 0x95, 0x95,\n    0x95, 0x94, 0x93, 0x93, 0x93, 0x93, 0x91, 0x90, 0x90, 0x91, 0x92, 0x91, 0x91, 0x90, 0x91, 0x92,\n    0x92, 0x92, 0x92, 0x91, 0x90, 0x8e, 0x8d, 0x8c, 0x8b, 0x8c, 0x8d, 0x8d, 0x8d, 0x8b, 0x88, 0x87,\n    0x88, 0x87, 0x85, 0x83, 0x80, 0x7e, 0x7c, 0x7b, 0x7a, 0x7a, 0x79, 0x78, 0x76, 0x73, 0x71, 0x6f,\n    0x70, 0x6e, 0x6c, 0x6b, 0x6b, 0x6a, 0x68, 0x67, 0x62, 0x62, 0x62, 0x62, 0x61, 0x5f, 0x5b, 0x58,\n    0x55, 0x55, 0x53, 0x50, 0x4d, 0x4a, 0x49, 0x48, 0x4f, 0x53, 0x51, 0x4f, 0x51, 0x51, 0x52, 0x58,\n    0x4f, 0x45, 0x3f, 0x41, 0x3e, 0x37, 0x38, 0x3f, 0x3d, 0x3e, 0x40, 0x42, 0x43, 0x3f, 0x39, 0x34,\n    0x3b, 0x3a, 0x39, 0x35, 0x33, 0x3a, 0x3d, 0x36, 0x3d, 0x3e, 0x3f, 0x3f, 0x3a, 0x35, 0x37, 0x3b,\n    0x4d, 0x5e, 0x6b, 0x69, 0x60, 0x5c, 0x5e, 0x5f, 0x59, 0x57, 0x52, 0x56, 0x5a, 0x4d, 0x45, 0x50,\n    0x63, 0x75, 0x80, 0x7a, 0x71, 0x6a, 0x5d, 0x4e, 0x4d, 0x4e, 0x46, 0x3e, 0x3e, 0x3b, 0x35, 0x34,\n    0x2b, 0x26, 0x26, 0x2f, 0x37, 0x3b, 0x40, 0x45, 0x47, 0x47, 0x46, 0x47, 0x4e, 0x53, 0x4e, 0x44,\n    0x4f, 0x5b, 0x76, 0x8d, 0x83, 0x62, 0x50, 0x52, 0x4a, 0x52, 0x53, 0x4e, 0x4a, 0x45, 0x44, 0x48,\n    0x40, 0x3d, 0x34, 0x39, 0x52, 0x60, 0x56, 0x47, 0x41, 0x44, 0x49, 0x44, 0x38, 0x3b, 0x4c, 0x57,\n    0x32, 0x30, 0x3e, 0x4f, 0x52, 0x4b, 0x42, 0x3a, 0x38, 0x33, 0x25, 0x1e, 0x28, 0x31, 0x34, 0x37,\n    0x42, 0x44, 0x49, 0x4a, 0x43, 0x3a, 0x36, 0x39, 0x41, 0x45, 0x4b, 0x39, 0x33, 0x21, 0x30, 0x41,\n    0x55, 0x52, 0x53, 0x58, 0x52, 0x3f, 0x2c, 0x22, 0x34, 0x43, 0x47, 0x43, 0x48, 0x4b, 0x42, 0x37,\n    0x38, 0x30, 0x27, 0x26, 0x2c, 0x34, 0x3b, 0x3f, 0x4d, 0x4f, 0x48, 0x37, 0x26, 0x1e, 0x1d, 0x1c,\n    0x4e, 0x4c, 0x4f, 0x55, 0x53, 0x48, 0x3e, 0x39, 0x2f, 0x39, 0x44, 0x48, 0x47, 0x46, 0x43, 0x40,\n    0x3e, 0x3e, 0x3b, 0x38, 0x35, 0x34, 0x34, 0x33, 0x33, 0x35, 0x34, 0x32, 0x30, 0x2f, 0x30, 0x2f,\n    0x2c, 0x2d, 0x36, 0x45, 0x4c, 0x46, 0x3f, 0x3d, 0x3e, 0x38, 0x35, 0x34, 0x32, 0x2e, 0x2c, 0x2e,\n    0x31, 0x2d, 0x28, 0x27, 0x28, 0x27, 0x24, 0x21, 0x30, 0x2f, 0x2f, 0x2d, 0x29, 0x26, 0x26, 0x28,\n    0x26, 0x23, 0x21, 0x22, 0x25, 0x26, 0x26, 0x24, 0x25, 0x23, 0x21, 0x23, 0x25, 0x25, 0x22, 0x1f,\n    0x22, 0x24, 0x27, 0x29, 0x2b, 0x2c, 0x2d, 0x2e, 0x31, 0x35, 0x39, 0x3d, 0x41, 0x43, 0x40, 0x3b,\n    0x33, 0x2d, 0x28, 0x2a, 0x30, 0x32, 0x2f, 0x2c, 0x2a, 0x2c, 0x2d, 0x2e, 0x2d, 0x2c, 0x2b, 0x2b,\n    0x33, 0x33, 0x33, 0x32, 0x30, 0x2e, 0x2d, 0x2c, 0x2d, 0x33, 0x37, 0x35, 0x31, 0x30, 0x32, 0x33,\n    0x38, 0x36, 0x34, 0x32, 0x32, 0x34, 0x38, 0x3a, 0x37, 0x38, 0x3a, 0x3e, 0x43, 0x47, 0x4a, 0x4b,\n    0x4d, 0x5a, 0x67, 0x69, 0x66, 0x65, 0x68, 0x6b, 0x74, 0x6d, 0x67, 0x6a, 0x74, 0x78, 0x6e, 0x61,\n    0x4e, 0x45, 0x3c, 0x38, 0x3b, 0x3f, 0x40, 0x40, 0x42, 0x47, 0x49, 0x44, 0x3e, 0x3d, 0x3d, 0x3e,\n    0x38, 0x37, 0x39, 0x3d, 0x40, 0x40, 0x42, 0x44, 0x4b, 0x4e, 0x4e, 0x4a, 0x47, 0x44, 0x3f, 0x3b,\n    0x48, 0x54, 0x5d, 0x58, 0x4d, 0x46, 0x43, 0x42, 0x3e, 0x42, 0x43, 0x42, 0x46, 0x4f, 0x59, 0x5c,\n    0x5e, 0x5e, 0x5f, 0x61, 0x61, 0x5d, 0x53, 0x4a, 0x44, 0x40, 0x3f, 0x42, 0x47, 0x4d, 0x58, 0x62,\n    0x73, 0x67, 0x61, 0x60, 0x5a, 0x56, 0x67, 0x80, 0x85, 0x7c, 0x6f, 0x65, 0x60, 0x5d, 0x5a, 0x57,\n    0x51, 0x4b, 0x49, 0x4f, 0x5a, 0x62, 0x61, 0x5e, 0x64, 0x66, 0x66, 0x60, 0x56, 0x4d, 0x48, 0x47,\n    0x42, 0x49, 0x50, 0x57, 0x5c, 0x5b, 0x63, 0x74, 0x8d, 0x98, 0xa1, 0x8f, 0x70, 0x54, 0x47, 0x57,\n    0x95, 0xa6, 0x7f, 0x4e, 0x55, 0x66, 0x67, 0x6d, 0x6b, 0x69, 0x69, 0x6b, 0x6b, 0x69, 0x6b, 0x70,\n    0x78, 0x7a, 0x7a, 0x78, 0x77, 0x77, 0x76, 0x73, 0x74, 0x6e, 0x6b, 0x6d, 0x71, 0x71, 0x70, 0x70,\n    0x71, 0x74, 0x78, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7f, 0x7e, 0x7e, 0x7d, 0x7e, 0x7f, 0x80, 0x81,\n    0x81, 0x80, 0x7f, 0x7e, 0x7e, 0x7e, 0x7e, 0x7f, 0x7c, 0x7c, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f,\n    0x7c, 0x7f, 0x82, 0x84, 0x84, 0x84, 0x86, 0x87, 0x83, 0x83, 0x84, 0x85, 0x86, 0x86, 0x87, 0x87,\n    0x86, 0x87, 0x88, 0x89, 0x8a, 0x8a, 0x89, 0x89, 0x8b, 0x8c, 0x8c, 0x8d, 0x8d, 0x8e, 0x8e, 0x8e,\n    0x8e, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x90, 0x92, 0x91, 0x91, 0x90, 0x91, 0x91, 0x92, 0x93, 0x94,\n    0x91, 0x91, 0x8f, 0x8e, 0x8d, 0x8c, 0x8c, 0x8c, 0x90, 0x8f, 0x8e, 0x8e, 0x8e, 0x8f, 0x90, 0x90,\n    0x8f, 0x8c, 0x8c, 0x8d, 0x8d, 0x8b, 0x8b, 0x8d, 0x8a, 0x8b, 0x8a, 0x87, 0x86, 0x87, 0x87, 0x85,\n    0x86, 0x85, 0x84, 0x82, 0x80, 0x7e, 0x7d, 0x7c, 0x79, 0x78, 0x76, 0x74, 0x73, 0x71, 0x6e, 0x6c,\n    0x6d, 0x6b, 0x69, 0x68, 0x68, 0x68, 0x67, 0x67, 0x65, 0x64, 0x62, 0x60, 0x60, 0x5f, 0x5d, 0x5c,\n    0x58, 0x55, 0x54, 0x4c, 0x4b, 0x4a, 0x42, 0x4b, 0x4e, 0x5b, 0x65, 0x70, 0x69, 0x5b, 0x62, 0x67,\n    0x5c, 0x50, 0x4e, 0x4e, 0x42, 0x37, 0x37, 0x3a, 0x3e, 0x31, 0x3d, 0x4d, 0x45, 0x45, 0x4e, 0x4d,\n    0x47, 0x45, 0x42, 0x3f, 0x3e, 0x3d, 0x37, 0x30, 0x36, 0x3a, 0x3d, 0x3b, 0x39, 0x3a, 0x3a, 0x38,\n    0x45, 0x52, 0x62, 0x66, 0x5d, 0x53, 0x53, 0x58, 0x52, 0x50, 0x60, 0x76, 0x7d, 0x74, 0x65, 0x57,\n    0x61, 0x70, 0x7d, 0x7e, 0x7a, 0x74, 0x6b, 0x61, 0x5a, 0x4f, 0x41, 0x3a, 0x3a, 0x38, 0x31, 0x2a,\n    0x1f, 0x2f, 0x40, 0x45, 0x3f, 0x3a, 0x3e, 0x45, 0x4e, 0x4c, 0x4f, 0x55, 0x55, 0x4d, 0x47, 0x46,\n    0x4d, 0x66, 0x6e, 0x74, 0x68, 0x65, 0x51, 0x4c, 0x42, 0x53, 0x53, 0x49, 0x43, 0x3e, 0x42, 0x52,\n    0x45, 0x41, 0x3e, 0x42, 0x4f, 0x5a, 0x56, 0x4b, 0x3d, 0x3e, 0x45, 0x41, 0x3b, 0x50, 0x5f, 0x51,\n    0x32, 0x35, 0x3d, 0x46, 0x49, 0x47, 0x45, 0x45, 0x35, 0x28, 0x1b, 0x1a, 0x26, 0x34, 0x3d, 0x40,\n    0x37, 0x39, 0x3d, 0x45, 0x43, 0x34, 0x33, 0x42, 0x41, 0x49, 0x4b, 0x45, 0x39, 0x2d, 0x31, 0x42,\n    0x53, 0x4c, 0x4b, 0x5a, 0x5f, 0x46, 0x28, 0x1f, 0x2d, 0x3a, 0x49, 0x4f, 0x4f, 0x4b, 0x41, 0x37,\n    0x36, 0x2e, 0x25, 0x23, 0x29, 0x33, 0x3a, 0x3e, 0x4d, 0x4c, 0x3f, 0x2c, 0x25, 0x29, 0x27, 0x1d,\n    0x53, 0x51, 0x4f, 0x4f, 0x52, 0x53, 0x4d, 0x45, 0x3e, 0x43, 0x47, 0x45, 0x41, 0x3c, 0x36, 0x31,\n    0x28, 0x2e, 0x34, 0x38, 0x38, 0x35, 0x30, 0x2c, 0x2f, 0x2e, 0x2d, 0x2e, 0x30, 0x34, 0x3a, 0x3f,\n    0x34, 0x33, 0x3a, 0x45, 0x4a, 0x44, 0x3d, 0x3b, 0x3f, 0x3a, 0x36, 0x35, 0x33, 0x2f, 0x2d, 0x2e,\n    0x2c, 0x2d, 0x2f, 0x2f, 0x2c, 0x29, 0x25, 0x24, 0x2b, 0x2a, 0x28, 0x26, 0x24, 0x22, 0x24, 0x26,\n    0x22, 0x21, 0x22, 0x25, 0x28, 0x2a, 0x28, 0x26, 0x25, 0x22, 0x20, 0x21, 0x22, 0x22, 0x1f, 0x1c,\n    0x1e, 0x21, 0x24, 0x27, 0x29, 0x2b, 0x2e, 0x2f, 0x33, 0x35, 0x38, 0x3a, 0x3e, 0x41, 0x40, 0x3d,\n    0x33, 0x2c, 0x27, 0x29, 0x2e, 0x31, 0x30, 0x2e, 0x2a, 0x2c, 0x2f, 0x30, 0x2f, 0x2e, 0x2e, 0x2f,\n    0x2d, 0x2d, 0x2d, 0x2d, 0x2c, 0x2a, 0x2a, 0x29, 0x2c, 0x32, 0x35, 0x34, 0x31, 0x30, 0x30, 0x2f,\n    0x32, 0x31, 0x30, 0x31, 0x32, 0x34, 0x36, 0x36, 0x3b, 0x3b, 0x3a, 0x3c, 0x3e, 0x41, 0x43, 0x44,\n    0x52, 0x5b, 0x61, 0x60, 0x5d, 0x61, 0x69, 0x70, 0x6f, 0x69, 0x64, 0x66, 0x71, 0x79, 0x77, 0x6f,\n    0x61, 0x5b, 0x53, 0x4e, 0x4d, 0x4d, 0x4b, 0x49, 0x45, 0x4a, 0x4d, 0x4a, 0x44, 0x40, 0x3c, 0x39,\n    0x3a, 0x38, 0x38, 0x3b, 0x3b, 0x3a, 0x3b, 0x3d, 0x3b, 0x3f, 0x42, 0x41, 0x40, 0x40, 0x40, 0x3e,\n    0x43, 0x4b, 0x51, 0x4f, 0x4a, 0x46, 0x44, 0x42, 0x3d, 0x3e, 0x3d, 0x3a, 0x3e, 0x4a, 0x56, 0x5c,\n    0x61, 0x5e, 0x5b, 0x5c, 0x60, 0x63, 0x62, 0x5f, 0x63, 0x5a, 0x50, 0x4d, 0x50, 0x57, 0x62, 0x6b,\n    0x74, 0x6a, 0x65, 0x64, 0x5e, 0x56, 0x5b, 0x68, 0x6e, 0x65, 0x5b, 0x57, 0x5a, 0x5d, 0x5c, 0x59,\n    0x59, 0x5e, 0x68, 0x75, 0x7c, 0x77, 0x68, 0x5c, 0x5f, 0x63, 0x64, 0x5d, 0x50, 0x47, 0x44, 0x46,\n    0x50, 0x4f, 0x4c, 0x4e, 0x53, 0x54, 0x5c, 0x6c, 0x88, 0x9a, 0xaa, 0x96, 0x70, 0x4f, 0x42, 0x55,\n    0x74, 0x7c, 0x62, 0x4a, 0x57, 0x64, 0x63, 0x68, 0x6a, 0x67, 0x67, 0x69, 0x6a, 0x69, 0x6d, 0x72,\n    0x76, 0x78, 0x79, 0x77, 0x77, 0x77, 0x75, 0x72, 0x71, 0x6d, 0x6a, 0x6d, 0x70, 0x71, 0x70, 0x6f,\n    0x72, 0x75, 0x78, 0x7a, 0x7b, 0x7a, 0x7a, 0x7b, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7f, 0x7f, 0x80,\n    0x7f, 0x7f, 0x7e, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7d, 0x7e, 0x7e, 0x7f, 0x7f, 0x7f, 0x7e, 0x7e,\n    0x7e, 0x80, 0x83, 0x84, 0x84, 0x84, 0x86, 0x87, 0x84, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86,\n    0x86, 0x87, 0x88, 0x88, 0x89, 0x88, 0x88, 0x88, 0x8a, 0x8b, 0x8b, 0x8c, 0x8c, 0x8d, 0x8d, 0x8d,\n    0x8e, 0x8e, 0x8f, 0x8e, 0x8d, 0x8d, 0x8e, 0x8f, 0x90, 0x90, 0x8f, 0x8f, 0x90, 0x91, 0x92, 0x93,\n    0x91, 0x90, 0x8f, 0x8d, 0x8c, 0x8c, 0x8c, 0x8c, 0x8e, 0x8e, 0x8e, 0x8d, 0x8d, 0x8d, 0x8e, 0x8e,\n    0x8d, 0x8b, 0x8a, 0x8b, 0x8b, 0x89, 0x89, 0x8b, 0x88, 0x8a, 0x89, 0x86, 0x85, 0x86, 0x86, 0x84,\n    0x85, 0x84, 0x83, 0x81, 0x7f, 0x7d, 0x7c, 0x7b, 0x79, 0x77, 0x75, 0x74, 0x72, 0x70, 0x6e, 0x6c,\n    0x6c, 0x6a, 0x68, 0x67, 0x67, 0x67, 0x66, 0x66, 0x64, 0x63, 0x61, 0x60, 0x60, 0x5e, 0x5c, 0x5a,\n    0x59, 0x54, 0x53, 0x4d, 0x4c, 0x49, 0x44, 0x51, 0x61, 0x6f, 0x75, 0x7a, 0x72, 0x6a, 0x76, 0x7d,\n    0x73, 0x64, 0x55, 0x4c, 0x4c, 0x5a, 0x69, 0x6d, 0x57, 0x3f, 0x3c, 0x45, 0x42, 0x4a, 0x5e, 0x65,\n    0x6b, 0x65, 0x5b, 0x53, 0x4f, 0x4b, 0x41, 0x38, 0x40, 0x45, 0x46, 0x44, 0x46, 0x48, 0x43, 0x3b,\n    0x3f, 0x45, 0x4a, 0x4c, 0x4f, 0x57, 0x60, 0x64, 0x68, 0x58, 0x52, 0x59, 0x63, 0x6f, 0x76, 0x74,\n    0x64, 0x63, 0x62, 0x67, 0x72, 0x7a, 0x78, 0x70, 0x64, 0x5a, 0x4d, 0x44, 0x3b, 0x32, 0x2d, 0x2d,\n    0x30, 0x38, 0x40, 0x42, 0x41, 0x43, 0x4b, 0x53, 0x54, 0x51, 0x4f, 0x4e, 0x4b, 0x45, 0x3f, 0x3c,\n    0x44, 0x65, 0x7d, 0x75, 0x63, 0x4a, 0x3b, 0x37, 0x44, 0x53, 0x59, 0x51, 0x47, 0x41, 0x45, 0x4f,\n    0x53, 0x4f, 0x48, 0x46, 0x50, 0x5b, 0x56, 0x49, 0x38, 0x43, 0x4c, 0x42, 0x39, 0x48, 0x4f, 0x40,\n    0x35, 0x3c, 0x47, 0x50, 0x4f, 0x45, 0x3b, 0x36, 0x2f, 0x2c, 0x28, 0x27, 0x2b, 0x33, 0x37, 0x38,\n    0x28, 0x2e, 0x37, 0x3e, 0x3a, 0x2b, 0x2a, 0x3a, 0x44, 0x50, 0x55, 0x4d, 0x3d, 0x2e, 0x32, 0x44,\n    0x52, 0x53, 0x57, 0x5d, 0x5a, 0x44, 0x31, 0x30, 0x3a, 0x44, 0x4a, 0x4a, 0x4a, 0x4c, 0x47, 0x3f,\n    0x2e, 0x26, 0x27, 0x33, 0x3e, 0x43, 0x47, 0x4c, 0x47, 0x47, 0x3e, 0x30, 0x2e, 0x33, 0x2f, 0x24,\n    0x50, 0x4c, 0x44, 0x40, 0x47, 0x52, 0x51, 0x48, 0x48, 0x4a, 0x49, 0x43, 0x3d, 0x37, 0x31, 0x2b,\n    0x28, 0x2b, 0x2e, 0x30, 0x30, 0x30, 0x30, 0x30, 0x33, 0x2e, 0x2c, 0x2e, 0x2f, 0x31, 0x38, 0x40,\n    0x39, 0x37, 0x3a, 0x41, 0x42, 0x3b, 0x34, 0x31, 0x39, 0x37, 0x37, 0x38, 0x37, 0x33, 0x30, 0x2f,\n    0x31, 0x38, 0x3f, 0x3e, 0x37, 0x2e, 0x28, 0x27, 0x28, 0x29, 0x2a, 0x29, 0x27, 0x25, 0x25, 0x25,\n    0x1e, 0x1f, 0x22, 0x26, 0x29, 0x29, 0x26, 0x23, 0x21, 0x1f, 0x1d, 0x1d, 0x1f, 0x20, 0x1f, 0x1d,\n    0x1d, 0x1f, 0x22, 0x25, 0x27, 0x29, 0x2b, 0x2d, 0x30, 0x32, 0x34, 0x36, 0x3a, 0x3f, 0x41, 0x40,\n    0x3a, 0x34, 0x2d, 0x2b, 0x2d, 0x2e, 0x2c, 0x2a, 0x27, 0x2b, 0x30, 0x31, 0x2f, 0x2c, 0x2c, 0x2d,\n    0x2c, 0x2c, 0x2c, 0x2c, 0x2d, 0x2d, 0x2d, 0x2d, 0x2e, 0x32, 0x36, 0x35, 0x33, 0x32, 0x30, 0x2e,\n    0x30, 0x30, 0x30, 0x32, 0x36, 0x37, 0x37, 0x35, 0x33, 0x33, 0x33, 0x35, 0x38, 0x3d, 0x42, 0x45,\n    0x4b, 0x51, 0x54, 0x50, 0x4d, 0x50, 0x56, 0x5b, 0x66, 0x63, 0x5f, 0x60, 0x68, 0x71, 0x73, 0x71,\n    0x6e, 0x6a, 0x64, 0x60, 0x5d, 0x59, 0x54, 0x50, 0x46, 0x4a, 0x4b, 0x48, 0x43, 0x3e, 0x3a, 0x35,\n    0x38, 0x36, 0x36, 0x38, 0x38, 0x36, 0x36, 0x38, 0x37, 0x3c, 0x3f, 0x3c, 0x39, 0x39, 0x39, 0x39,\n    0x3d, 0x40, 0x43, 0x44, 0x46, 0x46, 0x42, 0x3d, 0x3e, 0x3f, 0x3d, 0x3b, 0x3e, 0x48, 0x53, 0x5a,\n    0x5d, 0x59, 0x57, 0x5a, 0x62, 0x6b, 0x70, 0x73, 0x6e, 0x67, 0x5f, 0x5c, 0x5b, 0x5b, 0x5d, 0x60,\n    0x64, 0x5e, 0x5b, 0x5d, 0x5d, 0x5a, 0x59, 0x5b, 0x58, 0x4d, 0x44, 0x46, 0x54, 0x63, 0x6b, 0x6e,\n    0x68, 0x6e, 0x79, 0x82, 0x83, 0x79, 0x6a, 0x5f, 0x5e, 0x62, 0x64, 0x5d, 0x53, 0x4e, 0x53, 0x5a,\n    0x5d, 0x58, 0x51, 0x53, 0x5c, 0x62, 0x69, 0x75, 0x76, 0x84, 0x92, 0x83, 0x68, 0x51, 0x4a, 0x5d,\n    0x60, 0x59, 0x4c, 0x4c, 0x5c, 0x64, 0x63, 0x65, 0x67, 0x65, 0x65, 0x67, 0x68, 0x6a, 0x6f, 0x74,\n    0x76, 0x79, 0x7b, 0x79, 0x78, 0x78, 0x75, 0x72, 0x6f, 0x6c, 0x6c, 0x6f, 0x72, 0x71, 0x70, 0x70,\n    0x74, 0x76, 0x79, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x7c, 0x7d, 0x7d, 0x7e, 0x7e, 0x7f, 0x7f, 0x7e,\n    0x7f, 0x7f, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7f, 0x7e, 0x7e, 0x7f, 0x7f, 0x7e, 0x7e, 0x7d, 0x7d,\n    0x80, 0x81, 0x82, 0x82, 0x82, 0x83, 0x84, 0x86, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85,\n    0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x86, 0x86, 0x89, 0x89, 0x89, 0x8a, 0x8b, 0x8b, 0x8c, 0x8c,\n    0x8c, 0x8d, 0x8e, 0x8d, 0x8c, 0x8b, 0x8c, 0x8d, 0x8e, 0x8e, 0x8e, 0x8e, 0x8f, 0x90, 0x91, 0x91,\n    0x8f, 0x8e, 0x8e, 0x8d, 0x8c, 0x8c, 0x8c, 0x8c, 0x8c, 0x8c, 0x8d, 0x8c, 0x8c, 0x8c, 0x8b, 0x8a,\n    0x8a, 0x88, 0x88, 0x89, 0x89, 0x87, 0x86, 0x88, 0x86, 0x88, 0x87, 0x84, 0x83, 0x84, 0x84, 0x82,\n    0x83, 0x83, 0x81, 0x7f, 0x7e, 0x7c, 0x7b, 0x7a, 0x78, 0x77, 0x74, 0x73, 0x71, 0x70, 0x6d, 0x6b,\n    0x6b, 0x69, 0x67, 0x66, 0x66, 0x66, 0x65, 0x64, 0x63, 0x62, 0x61, 0x60, 0x60, 0x5e, 0x5b, 0x59,\n    0x5b, 0x53, 0x52, 0x4e, 0x4d, 0x49, 0x48, 0x5b, 0x69, 0x74, 0x74, 0x77, 0x75, 0x73, 0x7b, 0x79,\n    0x78, 0x73, 0x6a, 0x63, 0x69, 0x7e, 0x86, 0x7a, 0x58, 0x3e, 0x38, 0x41, 0x41, 0x48, 0x5b, 0x67,\n    0x71, 0x70, 0x6f, 0x70, 0x70, 0x68, 0x55, 0x43, 0x4e, 0x5a, 0x61, 0x5c, 0x58, 0x59, 0x56, 0x4e,\n    0x46, 0x48, 0x48, 0x4c, 0x58, 0x67, 0x6d, 0x6b, 0x64, 0x5b, 0x55, 0x54, 0x59, 0x6b, 0x7c, 0x80,\n    0x74, 0x66, 0x59, 0x5a, 0x65, 0x70, 0x75, 0x77, 0x77, 0x6c, 0x5d, 0x4c, 0x38, 0x29, 0x28, 0x2f,\n    0x46, 0x46, 0x46, 0x45, 0x46, 0x49, 0x4f, 0x53, 0x57, 0x56, 0x54, 0x50, 0x4d, 0x4a, 0x44, 0x3e,\n    0x45, 0x5e, 0x75, 0x64, 0x57, 0x39, 0x37, 0x38, 0x39, 0x44, 0x51, 0x4e, 0x42, 0x3f, 0x46, 0x4a,\n    0x48, 0x47, 0x40, 0x3d, 0x4b, 0x5c, 0x58, 0x49, 0x32, 0x44, 0x4b, 0x41, 0x3e, 0x4b, 0x51, 0x4a,\n    0x36, 0x3c, 0x44, 0x48, 0x40, 0x31, 0x24, 0x1e, 0x19, 0x21, 0x27, 0x26, 0x26, 0x2a, 0x2d, 0x2d,\n    0x2a, 0x34, 0x3d, 0x40, 0x36, 0x25, 0x25, 0x36, 0x47, 0x51, 0x54, 0x49, 0x37, 0x27, 0x2b, 0x3d,\n    0x4c, 0x54, 0x58, 0x58, 0x53, 0x45, 0x38, 0x37, 0x3e, 0x4d, 0x55, 0x54, 0x55, 0x57, 0x4c, 0x3b,\n    0x27, 0x20, 0x25, 0x38, 0x44, 0x40, 0x3d, 0x40, 0x42, 0x43, 0x3e, 0x35, 0x36, 0x3b, 0x35, 0x28,\n    0x47, 0x40, 0x38, 0x35, 0x3a, 0x42, 0x44, 0x41, 0x45, 0x47, 0x45, 0x42, 0x3f, 0x3b, 0x36, 0x30,\n    0x31, 0x2f, 0x2c, 0x2a, 0x28, 0x29, 0x2d, 0x32, 0x38, 0x31, 0x2e, 0x30, 0x2f, 0x2c, 0x31, 0x38,\n    0x3f, 0x3e, 0x3f, 0x42, 0x40, 0x38, 0x2f, 0x2c, 0x30, 0x31, 0x34, 0x38, 0x3a, 0x38, 0x35, 0x33,\n    0x3b, 0x42, 0x48, 0x46, 0x3d, 0x31, 0x2a, 0x26, 0x2a, 0x2d, 0x30, 0x2f, 0x2d, 0x2a, 0x25, 0x20,\n    0x1d, 0x1e, 0x20, 0x23, 0x25, 0x24, 0x20, 0x1d, 0x1c, 0x1a, 0x1a, 0x1b, 0x1d, 0x20, 0x21, 0x20,\n    0x1f, 0x21, 0x22, 0x23, 0x23, 0x24, 0x25, 0x26, 0x29, 0x2c, 0x2f, 0x32, 0x37, 0x3e, 0x41, 0x41,\n    0x3c, 0x39, 0x33, 0x2e, 0x2e, 0x2e, 0x2c, 0x28, 0x28, 0x2e, 0x33, 0x34, 0x31, 0x2c, 0x29, 0x29,\n    0x2e, 0x2d, 0x2d, 0x2e, 0x2f, 0x31, 0x31, 0x32, 0x32, 0x35, 0x37, 0x36, 0x35, 0x35, 0x34, 0x31,\n    0x32, 0x31, 0x31, 0x33, 0x37, 0x38, 0x37, 0x35, 0x30, 0x30, 0x31, 0x34, 0x38, 0x3f, 0x47, 0x4c,\n    0x4b, 0x50, 0x55, 0x57, 0x58, 0x5a, 0x5a, 0x58, 0x5a, 0x5c, 0x5c, 0x5b, 0x5d, 0x60, 0x5f, 0x5d,\n    0x64, 0x5f, 0x5a, 0x59, 0x59, 0x56, 0x4e, 0x48, 0x42, 0x43, 0x41, 0x3c, 0x39, 0x38, 0x36, 0x33,\n    0x31, 0x31, 0x33, 0x37, 0x38, 0x36, 0x34, 0x35, 0x39, 0x3e, 0x3f, 0x3a, 0x34, 0x32, 0x32, 0x33,\n    0x3b, 0x3b, 0x3d, 0x44, 0x4c, 0x4c, 0x43, 0x3a, 0x34, 0x37, 0x38, 0x39, 0x3b, 0x40, 0x47, 0x4c,\n    0x52, 0x50, 0x51, 0x58, 0x61, 0x69, 0x6e, 0x71, 0x6e, 0x6c, 0x69, 0x67, 0x65, 0x62, 0x60, 0x5f,\n    0x57, 0x53, 0x50, 0x50, 0x53, 0x56, 0x56, 0x56, 0x4e, 0x49, 0x47, 0x4d, 0x5a, 0x68, 0x70, 0x73,\n    0x6b, 0x6f, 0x74, 0x75, 0x71, 0x69, 0x61, 0x5b, 0x63, 0x63, 0x60, 0x57, 0x4d, 0x49, 0x4f, 0x55,\n    0x4c, 0x4c, 0x4b, 0x51, 0x5c, 0x60, 0x62, 0x6a, 0x6c, 0x67, 0x66, 0x5f, 0x5e, 0x5b, 0x55, 0x62,\n    0x60, 0x50, 0x49, 0x51, 0x5c, 0x62, 0x64, 0x64, 0x64, 0x63, 0x63, 0x65, 0x67, 0x6b, 0x71, 0x76,\n    0x79, 0x7c, 0x7e, 0x7c, 0x7b, 0x79, 0x76, 0x71, 0x6e, 0x6d, 0x6e, 0x72, 0x73, 0x72, 0x71, 0x72,\n    0x75, 0x76, 0x78, 0x79, 0x79, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7f, 0x7e, 0x7e, 0x7d,\n    0x80, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x80, 0x80, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e,\n    0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x80, 0x81, 0x83, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85,\n    0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x86, 0x86, 0x87, 0x87, 0x87, 0x88, 0x89, 0x89, 0x8a, 0x8a,\n    0x8a, 0x8b, 0x8c, 0x8c, 0x8b, 0x8b, 0x8b, 0x8c, 0x8d, 0x8d, 0x8e, 0x8e, 0x8f, 0x8f, 0x90, 0x90,\n    0x8d, 0x8d, 0x8d, 0x8c, 0x8b, 0x8b, 0x8b, 0x8a, 0x8a, 0x8a, 0x8b, 0x8b, 0x8a, 0x89, 0x88, 0x87,\n    0x88, 0x87, 0x86, 0x88, 0x88, 0x85, 0x85, 0x86, 0x85, 0x86, 0x85, 0x83, 0x82, 0x83, 0x83, 0x81,\n    0x81, 0x81, 0x7f, 0x7e, 0x7c, 0x7a, 0x79, 0x79, 0x78, 0x76, 0x73, 0x71, 0x70, 0x6e, 0x6c, 0x6b,\n    0x6b, 0x69, 0x67, 0x65, 0x65, 0x65, 0x65, 0x64, 0x63, 0x62, 0x61, 0x60, 0x60, 0x5e, 0x5b, 0x59,\n    0x5c, 0x53, 0x52, 0x4f, 0x4d, 0x48, 0x4a, 0x63, 0x7c, 0x7a, 0x6b, 0x67, 0x69, 0x6c, 0x70, 0x65,\n    0x6b, 0x72, 0x7a, 0x7e, 0x83, 0x8b, 0x82, 0x6a, 0x56, 0x4a, 0x52, 0x60, 0x5c, 0x55, 0x5c, 0x66,\n    0x6d, 0x6c, 0x6e, 0x72, 0x76, 0x6f, 0x5b, 0x48, 0x4c, 0x63, 0x70, 0x65, 0x55, 0x53, 0x56, 0x56,\n    0x45, 0x43, 0x43, 0x4a, 0x55, 0x5f, 0x62, 0x61, 0x64, 0x6e, 0x79, 0x76, 0x6f, 0x75, 0x7d, 0x7b,\n    0x83, 0x78, 0x6e, 0x68, 0x61, 0x5e, 0x66, 0x73, 0x75, 0x70, 0x61, 0x4a, 0x36, 0x2e, 0x31, 0x37,\n    0x49, 0x49, 0x4a, 0x4a, 0x4b, 0x4b, 0x4a, 0x4a, 0x54, 0x57, 0x56, 0x50, 0x4c, 0x4a, 0x43, 0x3b,\n    0x41, 0x52, 0x65, 0x66, 0x68, 0x54, 0x46, 0x3d, 0x3f, 0x42, 0x4d, 0x4a, 0x3a, 0x3a, 0x44, 0x44,\n    0x36, 0x38, 0x34, 0x35, 0x48, 0x60, 0x5d, 0x4a, 0x33, 0x46, 0x50, 0x4d, 0x49, 0x42, 0x36, 0x2f,\n    0x23, 0x23, 0x23, 0x21, 0x1b, 0x15, 0x12, 0x13, 0x22, 0x2a, 0x2e, 0x2a, 0x28, 0x2c, 0x32, 0x35,\n    0x39, 0x43, 0x47, 0x40, 0x30, 0x1f, 0x22, 0x35, 0x4b, 0x4e, 0x49, 0x3f, 0x33, 0x25, 0x26, 0x34,\n    0x49, 0x52, 0x55, 0x53, 0x53, 0x4a, 0x3a, 0x31, 0x3d, 0x51, 0x5d, 0x5c, 0x5c, 0x5c, 0x4b, 0x34,\n    0x26, 0x21, 0x26, 0x37, 0x43, 0x42, 0x3d, 0x3b, 0x48, 0x48, 0x43, 0x3c, 0x3d, 0x40, 0x37, 0x28,\n    0x44, 0x3c, 0x38, 0x3a, 0x39, 0x34, 0x35, 0x3b, 0x44, 0x46, 0x46, 0x44, 0x42, 0x40, 0x3b, 0x36,\n    0x2b, 0x2a, 0x2a, 0x2b, 0x29, 0x28, 0x2c, 0x32, 0x38, 0x32, 0x2e, 0x2f, 0x2f, 0x30, 0x37, 0x3f,\n    0x48, 0x48, 0x49, 0x4a, 0x46, 0x3e, 0x35, 0x31, 0x2f, 0x2f, 0x30, 0x32, 0x35, 0x38, 0x39, 0x39,\n    0x3a, 0x3d, 0x40, 0x3f, 0x3a, 0x32, 0x2b, 0x27, 0x2c, 0x2f, 0x2f, 0x2c, 0x29, 0x26, 0x21, 0x1b,\n    0x1c, 0x1d, 0x1e, 0x1f, 0x20, 0x1f, 0x1d, 0x1c, 0x1a, 0x19, 0x19, 0x1a, 0x1c, 0x1e, 0x20, 0x20,\n    0x21, 0x21, 0x22, 0x22, 0x21, 0x21, 0x22, 0x23, 0x25, 0x2a, 0x2f, 0x33, 0x37, 0x3c, 0x3e, 0x3e,\n    0x34, 0x35, 0x32, 0x2f, 0x2f, 0x31, 0x30, 0x2c, 0x2e, 0x33, 0x39, 0x3a, 0x35, 0x2f, 0x2a, 0x28,\n    0x2b, 0x2a, 0x29, 0x29, 0x2c, 0x2e, 0x2f, 0x2f, 0x33, 0x35, 0x36, 0x34, 0x34, 0x35, 0x34, 0x32,\n    0x33, 0x32, 0x31, 0x32, 0x34, 0x35, 0x34, 0x33, 0x3a, 0x3a, 0x39, 0x39, 0x3b, 0x40, 0x48, 0x4d,\n    0x4b, 0x4c, 0x4f, 0x55, 0x5f, 0x67, 0x68, 0x65, 0x61, 0x66, 0x6a, 0x6a, 0x68, 0x65, 0x60, 0x5a,\n    0x51, 0x4a, 0x44, 0x45, 0x49, 0x48, 0x3f, 0x37, 0x3c, 0x3c, 0x3a, 0x35, 0x32, 0x31, 0x30, 0x2e,\n    0x2b, 0x2c, 0x30, 0x35, 0x36, 0x33, 0x30, 0x30, 0x35, 0x39, 0x3b, 0x36, 0x31, 0x30, 0x32, 0x34,\n    0x3a, 0x3a, 0x3f, 0x4b, 0x55, 0x53, 0x47, 0x3d, 0x37, 0x39, 0x3d, 0x40, 0x43, 0x46, 0x4c, 0x51,\n    0x4f, 0x4c, 0x4d, 0x53, 0x59, 0x5d, 0x61, 0x65, 0x6d, 0x6c, 0x69, 0x63, 0x5e, 0x5d, 0x5e, 0x60,\n    0x59, 0x56, 0x50, 0x4c, 0x4c, 0x4e, 0x50, 0x50, 0x56, 0x5b, 0x62, 0x67, 0x68, 0x67, 0x65, 0x64,\n    0x64, 0x69, 0x6f, 0x6e, 0x68, 0x5e, 0x57, 0x54, 0x58, 0x58, 0x57, 0x54, 0x51, 0x50, 0x53, 0x57,\n    0x61, 0x66, 0x69, 0x6e, 0x76, 0x75, 0x73, 0x78, 0x6b, 0x5c, 0x53, 0x52, 0x5d, 0x5f, 0x53, 0x55,\n    0x5b, 0x4d, 0x4a, 0x53, 0x59, 0x5f, 0x64, 0x60, 0x61, 0x62, 0x63, 0x63, 0x66, 0x6c, 0x73, 0x77,\n    0x7a, 0x7d, 0x7d, 0x7b, 0x79, 0x76, 0x72, 0x6e, 0x6d, 0x6d, 0x6f, 0x73, 0x73, 0x71, 0x71, 0x73,\n    0x74, 0x76, 0x77, 0x78, 0x78, 0x78, 0x7a, 0x7b, 0x7b, 0x7c, 0x7d, 0x7e, 0x7f, 0x7e, 0x7e, 0x7d,\n    0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7f, 0x7f, 0x7f,\n    0x81, 0x80, 0x7f, 0x7e, 0x7f, 0x80, 0x80, 0x81, 0x82, 0x83, 0x83, 0x84, 0x84, 0x85, 0x85, 0x86,\n    0x82, 0x82, 0x83, 0x83, 0x84, 0x85, 0x85, 0x86, 0x85, 0x85, 0x86, 0x86, 0x87, 0x88, 0x88, 0x88,\n    0x88, 0x89, 0x8b, 0x8c, 0x8c, 0x8b, 0x8c, 0x8d, 0x8c, 0x8d, 0x8d, 0x8e, 0x8f, 0x8f, 0x8f, 0x90,\n    0x8c, 0x8c, 0x8c, 0x8b, 0x8a, 0x8a, 0x89, 0x89, 0x88, 0x89, 0x89, 0x89, 0x89, 0x87, 0x86, 0x85,\n    0x87, 0x86, 0x86, 0x88, 0x87, 0x85, 0x84, 0x85, 0x84, 0x85, 0x84, 0x82, 0x81, 0x83, 0x83, 0x81,\n    0x7f, 0x7f, 0x7e, 0x7c, 0x7b, 0x79, 0x78, 0x78, 0x77, 0x75, 0x72, 0x70, 0x6e, 0x6d, 0x6b, 0x6a,\n    0x6b, 0x69, 0x67, 0x65, 0x65, 0x65, 0x65, 0x64, 0x63, 0x62, 0x61, 0x60, 0x5f, 0x5e, 0x5b, 0x59,\n    0x5b, 0x53, 0x52, 0x4f, 0x4c, 0x48, 0x4b, 0x66, 0x91, 0x88, 0x6f, 0x60, 0x5d, 0x60, 0x67, 0x61,\n    0x64, 0x6a, 0x78, 0x82, 0x84, 0x84, 0x7c, 0x6d, 0x67, 0x6a, 0x7a, 0x85, 0x7c, 0x6e, 0x70, 0x7a,\n    0x7e, 0x74, 0x66, 0x5f, 0x5f, 0x5f, 0x56, 0x4b, 0x55, 0x69, 0x73, 0x65, 0x53, 0x4e, 0x51, 0x53,\n    0x51, 0x4b, 0x49, 0x50, 0x56, 0x5a, 0x62, 0x6b, 0x76, 0x83, 0x91, 0x8f, 0x87, 0x86, 0x85, 0x7a,\n    0x70, 0x6e, 0x6e, 0x68, 0x56, 0x45, 0x48, 0x55, 0x5a, 0x5e, 0x57, 0x46, 0x3d, 0x41, 0x43, 0x40,\n    0x3e, 0x42, 0x47, 0x4a, 0x4c, 0x4b, 0x4a, 0x49, 0x46, 0x4c, 0x50, 0x50, 0x54, 0x5e, 0x63, 0x63,\n    0x64, 0x65, 0x5d, 0x67, 0x6c, 0x6d, 0x5d, 0x59, 0x5f, 0x59, 0x57, 0x4c, 0x3a, 0x3a, 0x43, 0x42,\n    0x3b, 0x3c, 0x37, 0x3a, 0x51, 0x67, 0x60, 0x49, 0x36, 0x3a, 0x3c, 0x3e, 0x3c, 0x31, 0x28, 0x2a,\n    0x24, 0x1d, 0x17, 0x17, 0x1b, 0x22, 0x2c, 0x34, 0x3d, 0x3a, 0x32, 0x29, 0x26, 0x2b, 0x34, 0x3b,\n    0x3e, 0x46, 0x44, 0x36, 0x25, 0x1a, 0x24, 0x39, 0x51, 0x4e, 0x46, 0x43, 0x41, 0x37, 0x31, 0x35,\n    0x4c, 0x5a, 0x60, 0x5c, 0x59, 0x4d, 0x39, 0x2b, 0x3f, 0x52, 0x5e, 0x5a, 0x58, 0x58, 0x49, 0x34,\n    0x2d, 0x2d, 0x31, 0x3c, 0x4d, 0x5a, 0x59, 0x53, 0x51, 0x50, 0x4a, 0x43, 0x43, 0x43, 0x39, 0x2b,\n    0x47, 0x40, 0x40, 0x44, 0x3d, 0x2f, 0x30, 0x3a, 0x4a, 0x4c, 0x4c, 0x49, 0x46, 0x43, 0x3f, 0x3b,\n    0x2d, 0x2a, 0x29, 0x2a, 0x2a, 0x2c, 0x34, 0x3f, 0x3d, 0x3a, 0x34, 0x30, 0x30, 0x36, 0x3f, 0x46,\n    0x44, 0x45, 0x46, 0x45, 0x42, 0x3c, 0x36, 0x32, 0x36, 0x34, 0x2e, 0x2a, 0x2d, 0x34, 0x39, 0x3b,\n    0x33, 0x33, 0x34, 0x34, 0x34, 0x32, 0x2f, 0x2d, 0x31, 0x31, 0x2c, 0x25, 0x22, 0x23, 0x21, 0x1c,\n    0x1b, 0x1b, 0x1c, 0x1d, 0x1d, 0x1e, 0x1e, 0x1e, 0x1b, 0x1b, 0x1b, 0x1b, 0x1b, 0x1c, 0x1c, 0x1c,\n    0x1e, 0x1e, 0x1f, 0x1f, 0x1f, 0x1f, 0x21, 0x22, 0x26, 0x2c, 0x31, 0x35, 0x37, 0x3b, 0x3b, 0x3a,\n    0x35, 0x37, 0x34, 0x2e, 0x2c, 0x2e, 0x2d, 0x29, 0x2e, 0x32, 0x35, 0x37, 0x35, 0x31, 0x2d, 0x2a,\n    0x2b, 0x29, 0x26, 0x26, 0x29, 0x2b, 0x2c, 0x2c, 0x2f, 0x33, 0x34, 0x33, 0x31, 0x32, 0x32, 0x31,\n    0x36, 0x37, 0x37, 0x37, 0x36, 0x36, 0x35, 0x35, 0x3d, 0x3d, 0x3b, 0x3a, 0x3a, 0x3f, 0x46, 0x4b,\n    0x47, 0x44, 0x40, 0x42, 0x4c, 0x58, 0x5e, 0x5f, 0x63, 0x68, 0x6c, 0x6e, 0x6d, 0x69, 0x62, 0x5b,\n    0x4a, 0x44, 0x3e, 0x3f, 0x42, 0x41, 0x38, 0x2f, 0x36, 0x39, 0x3a, 0x36, 0x32, 0x2f, 0x2b, 0x27,\n    0x28, 0x29, 0x2c, 0x30, 0x31, 0x2d, 0x2b, 0x2b, 0x36, 0x38, 0x38, 0x34, 0x30, 0x31, 0x33, 0x34,\n    0x34, 0x35, 0x3c, 0x49, 0x51, 0x4e, 0x44, 0x3c, 0x40, 0x41, 0x44, 0x49, 0x4d, 0x52, 0x5a, 0x61,\n    0x59, 0x51, 0x4b, 0x4d, 0x50, 0x54, 0x5c, 0x63, 0x6f, 0x71, 0x70, 0x6a, 0x62, 0x5a, 0x53, 0x4e,\n    0x51, 0x50, 0x4e, 0x4e, 0x50, 0x53, 0x57, 0x5a, 0x6b, 0x6f, 0x73, 0x70, 0x68, 0x63, 0x65, 0x68,\n    0x66, 0x6a, 0x6c, 0x68, 0x60, 0x59, 0x55, 0x55, 0x4c, 0x4f, 0x53, 0x56, 0x58, 0x58, 0x58, 0x58,\n    0x54, 0x5b, 0x5e, 0x60, 0x65, 0x65, 0x65, 0x6a, 0x61, 0x58, 0x56, 0x57, 0x5e, 0x5b, 0x49, 0x49,\n    0x50, 0x48, 0x4a, 0x55, 0x5c, 0x61, 0x64, 0x61, 0x60, 0x62, 0x63, 0x64, 0x67, 0x6d, 0x73, 0x76,\n    0x78, 0x7a, 0x7a, 0x77, 0x75, 0x73, 0x6f, 0x6b, 0x6d, 0x6e, 0x71, 0x74, 0x72, 0x70, 0x71, 0x73,\n    0x75, 0x76, 0x77, 0x77, 0x77, 0x78, 0x79, 0x7b, 0x7c, 0x7d, 0x7d, 0x7e, 0x7e, 0x7f, 0x7f, 0x7e,\n    0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7f, 0x80, 0x80,\n    0x82, 0x81, 0x80, 0x80, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x82, 0x82, 0x83, 0x84, 0x85, 0x85,\n    0x82, 0x82, 0x82, 0x82, 0x83, 0x84, 0x85, 0x85, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x87, 0x87,\n    0x85, 0x87, 0x8a, 0x8b, 0x8b, 0x8b, 0x8c, 0x8c, 0x8b, 0x8c, 0x8d, 0x8e, 0x8e, 0x8f, 0x8f, 0x8f,\n    0x8c, 0x8c, 0x8b, 0x8b, 0x8a, 0x88, 0x87, 0x86, 0x87, 0x87, 0x87, 0x87, 0x87, 0x86, 0x85, 0x85,\n    0x86, 0x85, 0x85, 0x87, 0x87, 0x84, 0x83, 0x84, 0x82, 0x83, 0x83, 0x80, 0x80, 0x82, 0x82, 0x80,\n    0x7e, 0x7e, 0x7d, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x74, 0x71, 0x6e, 0x6d, 0x6c, 0x6b, 0x69,\n    0x6a, 0x68, 0x66, 0x65, 0x65, 0x65, 0x64, 0x64, 0x63, 0x61, 0x5f, 0x5e, 0x5e, 0x5d, 0x5b, 0x59,\n    0x5a, 0x53, 0x53, 0x4e, 0x4b, 0x48, 0x4b, 0x62, 0x79, 0x7c, 0x71, 0x69, 0x60, 0x5a, 0x62, 0x61,\n    0x66, 0x68, 0x74, 0x7d, 0x79, 0x74, 0x72, 0x6e, 0x6a, 0x71, 0x79, 0x7c, 0x75, 0x6e, 0x74, 0x81,\n    0x82, 0x78, 0x69, 0x5f, 0x5e, 0x61, 0x5e, 0x59, 0x65, 0x6c, 0x6d, 0x64, 0x58, 0x53, 0x4f, 0x4c,\n    0x54, 0x52, 0x54, 0x5b, 0x5e, 0x5e, 0x61, 0x66, 0x6a, 0x70, 0x7b, 0x82, 0x86, 0x8b, 0x85, 0x75,\n    0x62, 0x62, 0x64, 0x62, 0x54, 0x40, 0x37, 0x39, 0x47, 0x4d, 0x4d, 0x47, 0x47, 0x4b, 0x46, 0x3b,\n    0x3c, 0x3f, 0x43, 0x45, 0x47, 0x47, 0x48, 0x48, 0x41, 0x46, 0x49, 0x4c, 0x56, 0x68, 0x7d, 0x8b,\n    0x91, 0x81, 0x63, 0x64, 0x63, 0x6f, 0x69, 0x71, 0x6b, 0x61, 0x55, 0x46, 0x3b, 0x3e, 0x46, 0x47,\n    0x44, 0x3f, 0x38, 0x3f, 0x59, 0x6d, 0x61, 0x47, 0x2b, 0x29, 0x2e, 0x38, 0x3b, 0x3a, 0x3e, 0x43,\n    0x3a, 0x30, 0x29, 0x2d, 0x38, 0x45, 0x4e, 0x53, 0x43, 0x37, 0x2b, 0x26, 0x24, 0x28, 0x32, 0x3c,\n    0x3d, 0x44, 0x40, 0x30, 0x25, 0x23, 0x33, 0x49, 0x51, 0x4e, 0x4b, 0x4f, 0x53, 0x4a, 0x3d, 0x3b,\n    0x4e, 0x63, 0x6d, 0x67, 0x5d, 0x4a, 0x34, 0x28, 0x3c, 0x53, 0x64, 0x63, 0x5d, 0x56, 0x47, 0x36,\n    0x3c, 0x3c, 0x3b, 0x41, 0x52, 0x62, 0x62, 0x58, 0x50, 0x50, 0x4b, 0x46, 0x46, 0x44, 0x3a, 0x2e,\n    0x48, 0x46, 0x47, 0x47, 0x3e, 0x34, 0x34, 0x3b, 0x45, 0x48, 0x49, 0x45, 0x42, 0x42, 0x42, 0x41,\n    0x3a, 0x35, 0x32, 0x32, 0x2f, 0x2d, 0x36, 0x41, 0x43, 0x44, 0x40, 0x38, 0x36, 0x3c, 0x3f, 0x3f,\n    0x3a, 0x3a, 0x3a, 0x38, 0x36, 0x34, 0x33, 0x31, 0x37, 0x35, 0x31, 0x2c, 0x2d, 0x33, 0x37, 0x37,\n    0x33, 0x32, 0x31, 0x30, 0x2f, 0x2f, 0x2f, 0x2f, 0x30, 0x31, 0x2d, 0x27, 0x25, 0x27, 0x25, 0x1f,\n    0x1a, 0x1b, 0x1c, 0x1c, 0x1c, 0x1c, 0x1b, 0x1b, 0x1a, 0x1b, 0x1b, 0x1b, 0x1a, 0x1a, 0x19, 0x19,\n    0x1b, 0x1b, 0x1c, 0x1c, 0x1c, 0x1d, 0x1f, 0x21, 0x23, 0x29, 0x2f, 0x32, 0x35, 0x38, 0x3a, 0x3a,\n    0x3e, 0x3f, 0x3a, 0x2f, 0x29, 0x2a, 0x29, 0x26, 0x2b, 0x2b, 0x2c, 0x2e, 0x31, 0x33, 0x33, 0x32,\n    0x2f, 0x2b, 0x27, 0x27, 0x29, 0x2b, 0x2c, 0x2b, 0x2b, 0x32, 0x37, 0x36, 0x34, 0x33, 0x33, 0x32,\n    0x37, 0x3a, 0x3e, 0x3e, 0x3b, 0x38, 0x38, 0x38, 0x3a, 0x3a, 0x3a, 0x39, 0x39, 0x3e, 0x45, 0x4b,\n    0x4d, 0x4e, 0x4d, 0x4c, 0x4e, 0x54, 0x59, 0x5a, 0x59, 0x59, 0x57, 0x55, 0x55, 0x55, 0x50, 0x4a,\n    0x47, 0x45, 0x42, 0x43, 0x43, 0x3f, 0x37, 0x30, 0x30, 0x35, 0x37, 0x34, 0x2e, 0x2b, 0x29, 0x28,\n    0x2a, 0x28, 0x29, 0x2b, 0x2b, 0x2a, 0x29, 0x2b, 0x35, 0x37, 0x35, 0x30, 0x2e, 0x30, 0x32, 0x32,\n    0x32, 0x33, 0x38, 0x40, 0x43, 0x3e, 0x39, 0x37, 0x36, 0x38, 0x3d, 0x44, 0x48, 0x4a, 0x50, 0x57,\n    0x57, 0x4c, 0x43, 0x43, 0x48, 0x4f, 0x5d, 0x6a, 0x71, 0x77, 0x7b, 0x7c, 0x7a, 0x71, 0x61, 0x53,\n    0x4c, 0x47, 0x46, 0x4b, 0x52, 0x58, 0x5f, 0x66, 0x71, 0x73, 0x71, 0x69, 0x5f, 0x5e, 0x65, 0x6e,\n    0x6b, 0x6c, 0x69, 0x63, 0x5a, 0x54, 0x54, 0x55, 0x50, 0x52, 0x52, 0x50, 0x4d, 0x4a, 0x4a, 0x4b,\n    0x49, 0x50, 0x51, 0x52, 0x59, 0x5b, 0x5c, 0x61, 0x57, 0x51, 0x53, 0x53, 0x58, 0x55, 0x48, 0x4e,\n    0x55, 0x4b, 0x4a, 0x57, 0x62, 0x61, 0x60, 0x63, 0x5f, 0x63, 0x65, 0x65, 0x67, 0x6e, 0x73, 0x75,\n    0x79, 0x7b, 0x7a, 0x77, 0x75, 0x74, 0x71, 0x6e, 0x70, 0x71, 0x74, 0x76, 0x74, 0x71, 0x72, 0x76,\n    0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x78, 0x7a, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7f, 0x7f, 0x80,\n    0x82, 0x82, 0x82, 0x81, 0x80, 0x7f, 0x7e, 0x7d, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7e, 0x7f, 0x80,\n    0x81, 0x80, 0x80, 0x81, 0x82, 0x83, 0x81, 0x80, 0x80, 0x81, 0x81, 0x81, 0x82, 0x82, 0x83, 0x83,\n    0x84, 0x84, 0x83, 0x82, 0x82, 0x82, 0x83, 0x83, 0x83, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x86,\n    0x84, 0x86, 0x89, 0x8a, 0x8a, 0x89, 0x8a, 0x8a, 0x8a, 0x8b, 0x8c, 0x8d, 0x8d, 0x8d, 0x8d, 0x8d,\n    0x8c, 0x8c, 0x8b, 0x8a, 0x89, 0x87, 0x85, 0x84, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86,\n    0x84, 0x83, 0x84, 0x86, 0x86, 0x83, 0x81, 0x82, 0x80, 0x81, 0x81, 0x7e, 0x7e, 0x80, 0x80, 0x7f,\n    0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x78, 0x77, 0x77, 0x76, 0x73, 0x70, 0x6d, 0x6c, 0x6b, 0x6a, 0x69,\n    0x69, 0x67, 0x65, 0x64, 0x64, 0x64, 0x63, 0x62, 0x62, 0x60, 0x5d, 0x5b, 0x5b, 0x5a, 0x59, 0x59,\n    0x58, 0x54, 0x54, 0x4c, 0x49, 0x49, 0x49, 0x5b, 0x63, 0x6a, 0x6c, 0x72, 0x6e, 0x63, 0x63, 0x60,\n    0x68, 0x6d, 0x7a, 0x7f, 0x76, 0x6c, 0x66, 0x60, 0x5f, 0x66, 0x69, 0x69, 0x6c, 0x70, 0x73, 0x79,\n    0x77, 0x77, 0x76, 0x73, 0x72, 0x6f, 0x68, 0x62, 0x60, 0x60, 0x60, 0x5d, 0x57, 0x50, 0x4b, 0x48,\n    0x43, 0x49, 0x4d, 0x51, 0x59, 0x61, 0x5f, 0x57, 0x55, 0x57, 0x60, 0x6a, 0x71, 0x7b, 0x7c, 0x73,\n    0x72, 0x71, 0x71, 0x70, 0x66, 0x57, 0x4c, 0x47, 0x4b, 0x47, 0x45, 0x48, 0x4a, 0x47, 0x3e, 0x36,\n    0x3d, 0x3d, 0x3e, 0x40, 0x43, 0x46, 0x47, 0x47, 0x49, 0x47, 0x43, 0x3e, 0x3d, 0x47, 0x5e, 0x72,\n    0x7e, 0x73, 0x67, 0x6f, 0x78, 0x72, 0x62, 0x5e, 0x5c, 0x55, 0x44, 0x39, 0x3d, 0x46, 0x4d, 0x52,\n    0x49, 0x3d, 0x34, 0x3f, 0x5e, 0x71, 0x64, 0x4a, 0x2c, 0x34, 0x4a, 0x57, 0x52, 0x4f, 0x4b, 0x3f,\n    0x3a, 0x2e, 0x28, 0x30, 0x40, 0x4b, 0x4c, 0x4a, 0x41, 0x34, 0x2e, 0x32, 0x33, 0x2f, 0x34, 0x3f,\n    0x3e, 0x45, 0x41, 0x34, 0x2d, 0x32, 0x42, 0x55, 0x50, 0x51, 0x50, 0x53, 0x54, 0x49, 0x3e, 0x3f,\n    0x51, 0x61, 0x6a, 0x67, 0x5f, 0x4b, 0x33, 0x26, 0x3a, 0x53, 0x68, 0x6a, 0x5f, 0x53, 0x46, 0x3b,\n    0x42, 0x3d, 0x3c, 0x44, 0x53, 0x5d, 0x58, 0x4f, 0x4d, 0x4e, 0x4d, 0x4b, 0x49, 0x46, 0x3c, 0x32,\n    0x4a, 0x4c, 0x4b, 0x46, 0x3f, 0x3b, 0x3c, 0x3e, 0x35, 0x39, 0x3b, 0x39, 0x39, 0x3d, 0x43, 0x45,\n    0x40, 0x3f, 0x41, 0x41, 0x39, 0x2d, 0x2a, 0x2e, 0x3f, 0x48, 0x49, 0x41, 0x3e, 0x41, 0x3e, 0x36,\n    0x37, 0x37, 0x36, 0x33, 0x32, 0x33, 0x35, 0x36, 0x31, 0x34, 0x34, 0x32, 0x33, 0x36, 0x35, 0x31,\n    0x36, 0x35, 0x32, 0x2e, 0x29, 0x27, 0x27, 0x28, 0x29, 0x2e, 0x2f, 0x2c, 0x2b, 0x2c, 0x27, 0x1e,\n    0x1b, 0x1c, 0x1d, 0x1d, 0x1b, 0x19, 0x17, 0x16, 0x17, 0x18, 0x1a, 0x1a, 0x1a, 0x1a, 0x19, 0x19,\n    0x1a, 0x1b, 0x1b, 0x1b, 0x1a, 0x1b, 0x1d, 0x1f, 0x1d, 0x23, 0x2a, 0x2e, 0x32, 0x37, 0x3b, 0x3c,\n    0x42, 0x42, 0x3b, 0x2e, 0x28, 0x2b, 0x2d, 0x2c, 0x2a, 0x27, 0x26, 0x2a, 0x31, 0x38, 0x3c, 0x3d,\n    0x31, 0x2d, 0x28, 0x27, 0x29, 0x2b, 0x2b, 0x2a, 0x2b, 0x34, 0x3c, 0x3d, 0x3a, 0x37, 0x36, 0x34,\n    0x33, 0x39, 0x3f, 0x40, 0x3c, 0x38, 0x37, 0x37, 0x3e, 0x3f, 0x3e, 0x3c, 0x3b, 0x3e, 0x44, 0x4a,\n    0x4e, 0x58, 0x62, 0x64, 0x62, 0x5f, 0x5e, 0x5d, 0x61, 0x5b, 0x51, 0x4a, 0x4a, 0x4c, 0x4a, 0x45,\n    0x40, 0x42, 0x44, 0x44, 0x41, 0x3b, 0x34, 0x30, 0x2d, 0x31, 0x31, 0x2d, 0x28, 0x28, 0x2b, 0x2d,\n    0x2b, 0x28, 0x27, 0x28, 0x29, 0x29, 0x2c, 0x30, 0x2c, 0x2d, 0x2c, 0x29, 0x2a, 0x2e, 0x31, 0x32,\n    0x39, 0x37, 0x39, 0x3b, 0x39, 0x34, 0x32, 0x35, 0x2f, 0x32, 0x3b, 0x43, 0x46, 0x44, 0x45, 0x49,\n    0x47, 0x3d, 0x35, 0x38, 0x3f, 0x4b, 0x5c, 0x6c, 0x67, 0x6a, 0x6e, 0x76, 0x7f, 0x82, 0x79, 0x6c,\n    0x58, 0x4b, 0x43, 0x46, 0x4c, 0x51, 0x59, 0x61, 0x65, 0x6a, 0x6c, 0x66, 0x5c, 0x56, 0x58, 0x5c,\n    0x68, 0x6b, 0x6c, 0x67, 0x5e, 0x55, 0x4f, 0x4d, 0x4e, 0x50, 0x50, 0x4d, 0x4b, 0x50, 0x5a, 0x63,\n    0x6b, 0x71, 0x70, 0x71, 0x78, 0x7a, 0x77, 0x79, 0x5b, 0x51, 0x4c, 0x49, 0x50, 0x53, 0x4e, 0x58,\n    0x63, 0x52, 0x49, 0x56, 0x62, 0x5c, 0x57, 0x61, 0x5f, 0x64, 0x66, 0x65, 0x68, 0x6f, 0x73, 0x73,\n    0x7c, 0x7e, 0x7d, 0x7b, 0x79, 0x79, 0x77, 0x74, 0x74, 0x75, 0x78, 0x79, 0x76, 0x73, 0x75, 0x7a,\n    0x79, 0x79, 0x78, 0x77, 0x75, 0x75, 0x77, 0x78, 0x7f, 0x7e, 0x7e, 0x7d, 0x7e, 0x7f, 0x80, 0x81,\n    0x85, 0x85, 0x85, 0x84, 0x83, 0x81, 0x80, 0x7f, 0x80, 0x7f, 0x7e, 0x7d, 0x7d, 0x7d, 0x7e, 0x7f,\n    0x7f, 0x7f, 0x7f, 0x80, 0x82, 0x82, 0x80, 0x7e, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81,\n    0x86, 0x85, 0x84, 0x82, 0x81, 0x81, 0x81, 0x81, 0x83, 0x83, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86,\n    0x84, 0x86, 0x88, 0x89, 0x88, 0x87, 0x87, 0x88, 0x89, 0x89, 0x8a, 0x8c, 0x8c, 0x8c, 0x8c, 0x8c,\n    0x8c, 0x8c, 0x8b, 0x8a, 0x88, 0x86, 0x84, 0x83, 0x86, 0x85, 0x84, 0x84, 0x84, 0x85, 0x86, 0x87,\n    0x83, 0x82, 0x83, 0x85, 0x85, 0x82, 0x80, 0x81, 0x7f, 0x80, 0x7f, 0x7d, 0x7d, 0x7f, 0x7f, 0x7d,\n    0x7d, 0x7d, 0x7c, 0x7b, 0x79, 0x78, 0x77, 0x77, 0x75, 0x73, 0x6f, 0x6d, 0x6c, 0x6b, 0x69, 0x69,\n    0x68, 0x66, 0x64, 0x63, 0x63, 0x63, 0x62, 0x61, 0x62, 0x5f, 0x5c, 0x59, 0x59, 0x59, 0x58, 0x58,\n    0x57, 0x55, 0x54, 0x4a, 0x48, 0x49, 0x48, 0x56, 0x77, 0x72, 0x6b, 0x74, 0x77, 0x6e, 0x6d, 0x67,\n    0x6c, 0x74, 0x81, 0x82, 0x77, 0x6e, 0x66, 0x5b, 0x61, 0x6a, 0x6f, 0x74, 0x82, 0x89, 0x83, 0x7d,\n    0x78, 0x7d, 0x80, 0x7e, 0x77, 0x6e, 0x63, 0x5a, 0x59, 0x5c, 0x61, 0x63, 0x5c, 0x53, 0x51, 0x55,\n    0x50, 0x57, 0x55, 0x52, 0x65, 0x80, 0x85, 0x76, 0x5f, 0x5e, 0x61, 0x60, 0x5e, 0x68, 0x77, 0x7d,\n    0x77, 0x77, 0x78, 0x75, 0x6d, 0x65, 0x5f, 0x5d, 0x53, 0x44, 0x3e, 0x46, 0x49, 0x40, 0x3a, 0x3c,\n    0x35, 0x35, 0x36, 0x3d, 0x45, 0x4a, 0x4b, 0x49, 0x44, 0x40, 0x3b, 0x35, 0x30, 0x35, 0x4b, 0x62,\n    0x63, 0x57, 0x5a, 0x66, 0x82, 0x74, 0x62, 0x52, 0x51, 0x4d, 0x3c, 0x34, 0x43, 0x4e, 0x52, 0x5b,\n    0x54, 0x42, 0x35, 0x43, 0x63, 0x75, 0x67, 0x4e, 0x43, 0x49, 0x58, 0x56, 0x49, 0x53, 0x5d, 0x50,\n    0x2e, 0x22, 0x1e, 0x2b, 0x3f, 0x4a, 0x48, 0x41, 0x3c, 0x32, 0x32, 0x3d, 0x3b, 0x2e, 0x2b, 0x35,\n    0x3d, 0x44, 0x40, 0x35, 0x31, 0x36, 0x44, 0x54, 0x54, 0x56, 0x53, 0x50, 0x4b, 0x3e, 0x39, 0x40,\n    0x56, 0x5c, 0x5f, 0x61, 0x63, 0x54, 0x38, 0x27, 0x41, 0x54, 0x63, 0x5f, 0x52, 0x48, 0x46, 0x47,\n    0x3a, 0x34, 0x38, 0x4a, 0x5d, 0x63, 0x5d, 0x58, 0x4f, 0x52, 0x54, 0x52, 0x50, 0x4b, 0x41, 0x37,\n    0x4a, 0x49, 0x45, 0x3e, 0x39, 0x3a, 0x42, 0x4a, 0x40, 0x3c, 0x36, 0x32, 0x31, 0x33, 0x37, 0x39,\n    0x3b, 0x3b, 0x3c, 0x3e, 0x3e, 0x37, 0x2c, 0x24, 0x34, 0x3d, 0x43, 0x42, 0x3e, 0x3b, 0x38, 0x35,\n    0x38, 0x35, 0x33, 0x34, 0x31, 0x2d, 0x2d, 0x30, 0x35, 0x3b, 0x3d, 0x38, 0x35, 0x38, 0x3a, 0x37,\n    0x34, 0x37, 0x3a, 0x3b, 0x37, 0x32, 0x2d, 0x2a, 0x26, 0x25, 0x26, 0x29, 0x2c, 0x2b, 0x26, 0x22,\n    0x1c, 0x1d, 0x1e, 0x1c, 0x19, 0x17, 0x17, 0x18, 0x17, 0x18, 0x19, 0x19, 0x18, 0x18, 0x18, 0x19,\n    0x18, 0x18, 0x19, 0x18, 0x19, 0x1a, 0x1d, 0x1f, 0x1d, 0x20, 0x24, 0x29, 0x2d, 0x31, 0x35, 0x37,\n    0x38, 0x38, 0x35, 0x2e, 0x28, 0x27, 0x26, 0x24, 0x29, 0x27, 0x26, 0x27, 0x2a, 0x2c, 0x2d, 0x2c,\n    0x25, 0x23, 0x24, 0x2a, 0x2d, 0x2a, 0x27, 0x27, 0x27, 0x2e, 0x36, 0x3a, 0x38, 0x35, 0x34, 0x34,\n    0x30, 0x30, 0x2f, 0x2f, 0x30, 0x33, 0x36, 0x39, 0x3c, 0x3b, 0x3c, 0x3f, 0x40, 0x3f, 0x40, 0x42,\n    0x4c, 0x52, 0x5b, 0x5f, 0x5f, 0x5d, 0x5d, 0x5d, 0x5f, 0x62, 0x65, 0x66, 0x66, 0x63, 0x5a, 0x52,\n    0x45, 0x40, 0x42, 0x41, 0x39, 0x35, 0x34, 0x32, 0x2c, 0x2e, 0x30, 0x2e, 0x2a, 0x28, 0x28, 0x2a,\n    0x2b, 0x2b, 0x29, 0x28, 0x27, 0x29, 0x2b, 0x2e, 0x35, 0x37, 0x36, 0x31, 0x2c, 0x2b, 0x31, 0x36,\n    0x3a, 0x3b, 0x39, 0x36, 0x33, 0x33, 0x33, 0x33, 0x31, 0x34, 0x39, 0x3e, 0x41, 0x41, 0x3e, 0x3c,\n    0x35, 0x3a, 0x35, 0x30, 0x3a, 0x4a, 0x58, 0x63, 0x67, 0x6a, 0x6c, 0x69, 0x64, 0x61, 0x62, 0x63,\n    0x69, 0x69, 0x67, 0x5f, 0x55, 0x4f, 0x56, 0x60, 0x68, 0x6c, 0x6d, 0x66, 0x5e, 0x58, 0x54, 0x51,\n    0x58, 0x60, 0x68, 0x61, 0x54, 0x54, 0x59, 0x56, 0x54, 0x51, 0x4b, 0x4d, 0x58, 0x5b, 0x58, 0x59,\n    0x57, 0x5e, 0x65, 0x68, 0x67, 0x66, 0x67, 0x6a, 0x63, 0x67, 0x6b, 0x6e, 0x6d, 0x6b, 0x68, 0x64,\n    0x56, 0x4f, 0x51, 0x58, 0x57, 0x57, 0x5c, 0x5c, 0x5f, 0x62, 0x67, 0x6b, 0x6f, 0x73, 0x77, 0x7a,\n    0x7a, 0x7e, 0x7f, 0x7d, 0x7b, 0x7a, 0x79, 0x76, 0x75, 0x76, 0x76, 0x77, 0x77, 0x76, 0x75, 0x74,\n    0x77, 0x77, 0x76, 0x76, 0x77, 0x78, 0x7a, 0x7b, 0x7f, 0x80, 0x80, 0x7f, 0x7f, 0x80, 0x82, 0x83,\n    0x84, 0x84, 0x84, 0x84, 0x83, 0x82, 0x81, 0x80, 0x81, 0x80, 0x80, 0x7f, 0x7e, 0x7e, 0x7e, 0x7e,\n    0x7c, 0x7d, 0x7e, 0x80, 0x81, 0x82, 0x82, 0x83, 0x81, 0x82, 0x83, 0x83, 0x84, 0x84, 0x83, 0x83,\n    0x83, 0x83, 0x82, 0x83, 0x84, 0x85, 0x84, 0x83, 0x83, 0x84, 0x85, 0x86, 0x86, 0x86, 0x85, 0x84,\n    0x87, 0x89, 0x8b, 0x8a, 0x87, 0x85, 0x85, 0x87, 0x89, 0x89, 0x89, 0x89, 0x89, 0x89, 0x89, 0x8a,\n    0x88, 0x88, 0x87, 0x87, 0x86, 0x86, 0x85, 0x85, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83,\n    0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x7f, 0x7e, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a,\n    0x7b, 0x7a, 0x78, 0x78, 0x78, 0x78, 0x77, 0x76, 0x75, 0x73, 0x70, 0x6d, 0x6b, 0x69, 0x69, 0x69,\n    0x67, 0x67, 0x66, 0x65, 0x64, 0x63, 0x63, 0x62, 0x61, 0x60, 0x5f, 0x5d, 0x5b, 0x59, 0x57, 0x56,\n    0x59, 0x4f, 0x49, 0x49, 0x44, 0x3f, 0x49, 0x5a, 0x6e, 0x6d, 0x71, 0x79, 0x80, 0x7f, 0x78, 0x72,\n    0x71, 0x76, 0x7a, 0x7a, 0x79, 0x79, 0x74, 0x6e, 0x66, 0x6c, 0x6f, 0x6f, 0x75, 0x7e, 0x7f, 0x79,\n    0x79, 0x72, 0x66, 0x68, 0x64, 0x59, 0x58, 0x55, 0x5a, 0x50, 0x4d, 0x54, 0x56, 0x52, 0x54, 0x5c,\n    0x54, 0x55, 0x57, 0x5c, 0x62, 0x69, 0x6e, 0x71, 0x6f, 0x65, 0x61, 0x67, 0x6c, 0x68, 0x61, 0x5d,\n    0x5f, 0x63, 0x60, 0x57, 0x50, 0x51, 0x51, 0x50, 0x47, 0x48, 0x46, 0x44, 0x46, 0x47, 0x42, 0x3a,\n    0x3b, 0x44, 0x45, 0x3f, 0x40, 0x4b, 0x53, 0x53, 0x49, 0x43, 0x34, 0x24, 0x23, 0x33, 0x4a, 0x58,\n    0x53, 0x5a, 0x5d, 0x63, 0x67, 0x57, 0x49, 0x4f, 0x52, 0x45, 0x3a, 0x3e, 0x47, 0x4f, 0x54, 0x58,\n    0x52, 0x37, 0x33, 0x4d, 0x68, 0x77, 0x6c, 0x53, 0x3c, 0x41, 0x4e, 0x57, 0x58, 0x57, 0x51, 0x44,\n    0x32, 0x25, 0x23, 0x32, 0x43, 0x48, 0x46, 0x45, 0x41, 0x35, 0x3a, 0x40, 0x3f, 0x37, 0x2a, 0x30,\n    0x37, 0x3f, 0x40, 0x3b, 0x39, 0x3a, 0x42, 0x50, 0x5c, 0x5f, 0x51, 0x4a, 0x53, 0x4d, 0x44, 0x4e,\n    0x53, 0x64, 0x61, 0x5d, 0x5d, 0x40, 0x24, 0x2a, 0x4f, 0x5b, 0x61, 0x5b, 0x55, 0x54, 0x4f, 0x48,\n    0x42, 0x41, 0x44, 0x4f, 0x5e, 0x65, 0x60, 0x57, 0x5a, 0x54, 0x4f, 0x47, 0x3e, 0x3c, 0x38, 0x2f,\n    0x45, 0x43, 0x3f, 0x3a, 0x36, 0x38, 0x3e, 0x43, 0x42, 0x3f, 0x3a, 0x34, 0x30, 0x30, 0x32, 0x34,\n    0x39, 0x38, 0x37, 0x38, 0x3a, 0x3b, 0x3a, 0x38, 0x2c, 0x32, 0x37, 0x38, 0x3a, 0x3c, 0x3c, 0x3a,\n    0x39, 0x35, 0x32, 0x31, 0x2e, 0x2e, 0x34, 0x3b, 0x42, 0x3e, 0x3a, 0x38, 0x37, 0x35, 0x34, 0x35,\n    0x3a, 0x3c, 0x3e, 0x3c, 0x37, 0x30, 0x2a, 0x27, 0x20, 0x21, 0x25, 0x2a, 0x2e, 0x2e, 0x29, 0x25,\n    0x1c, 0x1d, 0x1d, 0x1c, 0x19, 0x18, 0x19, 0x19, 0x19, 0x19, 0x19, 0x18, 0x17, 0x17, 0x19, 0x1b,\n    0x17, 0x18, 0x19, 0x19, 0x19, 0x1a, 0x1b, 0x1d, 0x1b, 0x1e, 0x23, 0x28, 0x2c, 0x30, 0x34, 0x36,\n    0x3b, 0x3c, 0x39, 0x32, 0x2c, 0x2a, 0x29, 0x27, 0x26, 0x25, 0x25, 0x26, 0x29, 0x2a, 0x2a, 0x2a,\n    0x25, 0x23, 0x23, 0x27, 0x28, 0x26, 0x26, 0x27, 0x25, 0x2b, 0x32, 0x35, 0x34, 0x32, 0x32, 0x34,\n    0x2e, 0x2d, 0x2c, 0x2c, 0x2e, 0x32, 0x37, 0x3a, 0x3e, 0x3d, 0x3e, 0x41, 0x42, 0x42, 0x43, 0x47,\n    0x48, 0x4e, 0x54, 0x58, 0x57, 0x56, 0x57, 0x58, 0x5d, 0x61, 0x66, 0x6a, 0x6d, 0x6d, 0x67, 0x60,\n    0x53, 0x44, 0x3b, 0x38, 0x35, 0x36, 0x36, 0x31, 0x2d, 0x2f, 0x30, 0x2e, 0x2b, 0x2a, 0x2c, 0x2e,\n    0x27, 0x28, 0x2b, 0x2c, 0x2c, 0x2a, 0x27, 0x25, 0x2a, 0x2b, 0x2a, 0x28, 0x26, 0x25, 0x27, 0x2a,\n    0x2c, 0x32, 0x38, 0x3b, 0x3e, 0x40, 0x3c, 0x36, 0x37, 0x40, 0x49, 0x48, 0x41, 0x3c, 0x3e, 0x43,\n    0x51, 0x4e, 0x41, 0x38, 0x3e, 0x47, 0x4d, 0x52, 0x59, 0x5a, 0x5c, 0x5e, 0x61, 0x64, 0x63, 0x60,\n    0x62, 0x67, 0x6d, 0x6d, 0x69, 0x66, 0x67, 0x6a, 0x6f, 0x77, 0x7e, 0x7b, 0x71, 0x64, 0x57, 0x4e,\n    0x52, 0x51, 0x54, 0x57, 0x5c, 0x68, 0x6d, 0x65, 0x54, 0x54, 0x4c, 0x48, 0x4a, 0x48, 0x47, 0x4c,\n    0x4f, 0x51, 0x56, 0x5d, 0x65, 0x67, 0x65, 0x61, 0x63, 0x68, 0x6e, 0x71, 0x6e, 0x66, 0x58, 0x4e,\n    0x48, 0x44, 0x4a, 0x53, 0x53, 0x56, 0x5e, 0x63, 0x60, 0x63, 0x69, 0x6e, 0x72, 0x75, 0x79, 0x7b,\n    0x7c, 0x80, 0x81, 0x7f, 0x7c, 0x7c, 0x7a, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x78,\n    0x78, 0x78, 0x77, 0x77, 0x78, 0x7a, 0x7c, 0x7d, 0x7e, 0x7f, 0x81, 0x81, 0x81, 0x83, 0x84, 0x86,\n    0x86, 0x86, 0x86, 0x85, 0x84, 0x83, 0x82, 0x81, 0x80, 0x7f, 0x7e, 0x7e, 0x7d, 0x7e, 0x7e, 0x7f,\n    0x7d, 0x7e, 0x7f, 0x80, 0x82, 0x82, 0x83, 0x83, 0x83, 0x83, 0x84, 0x85, 0x85, 0x85, 0x85, 0x84,\n    0x84, 0x83, 0x83, 0x83, 0x84, 0x85, 0x84, 0x83, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85,\n    0x88, 0x8a, 0x8b, 0x89, 0x86, 0x85, 0x86, 0x88, 0x88, 0x87, 0x87, 0x87, 0x87, 0x88, 0x88, 0x88,\n    0x87, 0x87, 0x86, 0x86, 0x85, 0x85, 0x84, 0x84, 0x82, 0x82, 0x83, 0x83, 0x83, 0x83, 0x82, 0x82,\n    0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x80, 0x80, 0x7f, 0x7d, 0x7d, 0x7c, 0x7c, 0x7b, 0x7a,\n    0x7b, 0x79, 0x78, 0x77, 0x77, 0x77, 0x76, 0x75, 0x74, 0x72, 0x70, 0x6d, 0x6a, 0x69, 0x68, 0x68,\n    0x66, 0x66, 0x65, 0x64, 0x63, 0x62, 0x61, 0x61, 0x60, 0x60, 0x5e, 0x5c, 0x5a, 0x58, 0x57, 0x56,\n    0x55, 0x4d, 0x4a, 0x4b, 0x45, 0x3f, 0x48, 0x58, 0x6e, 0x70, 0x74, 0x7a, 0x80, 0x82, 0x7e, 0x78,\n    0x6f, 0x6d, 0x6d, 0x72, 0x74, 0x71, 0x6e, 0x6e, 0x66, 0x62, 0x5f, 0x62, 0x68, 0x70, 0x76, 0x79,\n    0x74, 0x70, 0x67, 0x6d, 0x69, 0x5c, 0x58, 0x51, 0x57, 0x54, 0x57, 0x60, 0x62, 0x59, 0x52, 0x51,\n    0x47, 0x4a, 0x50, 0x57, 0x5d, 0x60, 0x60, 0x5f, 0x61, 0x5c, 0x5a, 0x5d, 0x62, 0x62, 0x60, 0x5e,\n    0x4a, 0x4f, 0x51, 0x4b, 0x42, 0x3e, 0x3f, 0x41, 0x46, 0x47, 0x46, 0x44, 0x45, 0x49, 0x48, 0x45,\n    0x46, 0x42, 0x39, 0x33, 0x3b, 0x4b, 0x4f, 0x49, 0x40, 0x3d, 0x32, 0x24, 0x20, 0x2c, 0x3f, 0x4c,\n    0x4f, 0x51, 0x50, 0x58, 0x62, 0x59, 0x4e, 0x51, 0x43, 0x3e, 0x39, 0x3c, 0x48, 0x52, 0x52, 0x4e,\n    0x47, 0x38, 0x38, 0x50, 0x6e, 0x7c, 0x70, 0x5b, 0x3c, 0x41, 0x4e, 0x58, 0x55, 0x50, 0x48, 0x3e,\n    0x3b, 0x2d, 0x26, 0x31, 0x40, 0x47, 0x49, 0x4b, 0x45, 0x37, 0x39, 0x3c, 0x3b, 0x33, 0x28, 0x2f,\n    0x3b, 0x46, 0x49, 0x42, 0x3b, 0x38, 0x41, 0x51, 0x55, 0x58, 0x4e, 0x4b, 0x54, 0x4c, 0x3f, 0x44,\n    0x58, 0x67, 0x63, 0x5c, 0x5a, 0x40, 0x2b, 0x35, 0x41, 0x49, 0x4c, 0x45, 0x42, 0x46, 0x47, 0x43,\n    0x43, 0x40, 0x42, 0x50, 0x62, 0x6b, 0x68, 0x62, 0x67, 0x5f, 0x59, 0x52, 0x48, 0x41, 0x38, 0x2a,\n    0x3f, 0x3b, 0x36, 0x32, 0x31, 0x34, 0x38, 0x3c, 0x3b, 0x3c, 0x3a, 0x36, 0x32, 0x30, 0x33, 0x36,\n    0x36, 0x36, 0x35, 0x35, 0x36, 0x3a, 0x3f, 0x43, 0x34, 0x34, 0x34, 0x35, 0x39, 0x3c, 0x3b, 0x37,\n    0x37, 0x35, 0x33, 0x32, 0x30, 0x32, 0x39, 0x41, 0x45, 0x38, 0x30, 0x33, 0x34, 0x31, 0x30, 0x32,\n    0x32, 0x35, 0x37, 0x38, 0x35, 0x30, 0x2c, 0x2a, 0x23, 0x25, 0x29, 0x2e, 0x31, 0x2f, 0x29, 0x24,\n    0x1a, 0x1b, 0x1b, 0x1a, 0x19, 0x18, 0x19, 0x1a, 0x1a, 0x1a, 0x19, 0x17, 0x16, 0x17, 0x1a, 0x1c,\n    0x16, 0x18, 0x19, 0x1a, 0x19, 0x19, 0x19, 0x1a, 0x1a, 0x1d, 0x22, 0x26, 0x2b, 0x2f, 0x33, 0x36,\n    0x3b, 0x3c, 0x39, 0x32, 0x2b, 0x28, 0x27, 0x26, 0x23, 0x23, 0x23, 0x25, 0x27, 0x27, 0x27, 0x26,\n    0x25, 0x24, 0x23, 0x24, 0x24, 0x23, 0x25, 0x27, 0x2a, 0x2f, 0x34, 0x35, 0x34, 0x32, 0x32, 0x34,\n    0x31, 0x31, 0x30, 0x32, 0x34, 0x38, 0x3a, 0x3b, 0x43, 0x41, 0x42, 0x44, 0x45, 0x45, 0x49, 0x4d,\n    0x53, 0x56, 0x58, 0x57, 0x53, 0x51, 0x51, 0x53, 0x51, 0x54, 0x58, 0x5c, 0x62, 0x67, 0x66, 0x62,\n    0x56, 0x46, 0x3b, 0x35, 0x30, 0x30, 0x30, 0x2c, 0x2e, 0x2f, 0x30, 0x30, 0x2e, 0x2e, 0x30, 0x33,\n    0x28, 0x29, 0x2b, 0x2d, 0x2e, 0x2b, 0x25, 0x20, 0x21, 0x22, 0x23, 0x26, 0x29, 0x2a, 0x27, 0x25,\n    0x27, 0x2d, 0x31, 0x36, 0x41, 0x4d, 0x4f, 0x48, 0x42, 0x44, 0x46, 0x46, 0x43, 0x3f, 0x3c, 0x3a,\n    0x3c, 0x3a, 0x33, 0x34, 0x43, 0x4d, 0x4f, 0x51, 0x52, 0x5c, 0x67, 0x6b, 0x6b, 0x6a, 0x67, 0x64,\n    0x54, 0x59, 0x5c, 0x5d, 0x63, 0x6c, 0x71, 0x71, 0x77, 0x7c, 0x7f, 0x7a, 0x72, 0x6b, 0x65, 0x61,\n    0x5e, 0x57, 0x55, 0x59, 0x61, 0x6e, 0x70, 0x66, 0x5a, 0x5e, 0x59, 0x4f, 0x4b, 0x48, 0x4b, 0x54,\n    0x5c, 0x5c, 0x5e, 0x64, 0x6c, 0x70, 0x6f, 0x6d, 0x6d, 0x6e, 0x6e, 0x6d, 0x6c, 0x67, 0x5b, 0x50,\n    0x49, 0x45, 0x4c, 0x53, 0x53, 0x55, 0x5e, 0x63, 0x61, 0x65, 0x6b, 0x71, 0x75, 0x78, 0x7b, 0x7d,\n    0x7e, 0x81, 0x82, 0x80, 0x7e, 0x7e, 0x7d, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7b, 0x7a, 0x79,\n    0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7c, 0x7e, 0x7f, 0x7e, 0x80, 0x83, 0x84, 0x85, 0x87, 0x89, 0x8a,\n    0x89, 0x89, 0x88, 0x88, 0x86, 0x85, 0x84, 0x83, 0x80, 0x7f, 0x7e, 0x7d, 0x7d, 0x7e, 0x7f, 0x80,\n    0x7f, 0x80, 0x81, 0x82, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x84, 0x84, 0x85, 0x85, 0x84, 0x84,\n    0x85, 0x84, 0x83, 0x84, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85,\n    0x89, 0x8a, 0x8a, 0x89, 0x86, 0x85, 0x86, 0x88, 0x88, 0x88, 0x88, 0x89, 0x89, 0x89, 0x89, 0x89,\n    0x85, 0x85, 0x85, 0x84, 0x84, 0x83, 0x83, 0x83, 0x82, 0x82, 0x82, 0x83, 0x83, 0x82, 0x82, 0x82,\n    0x82, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x80, 0x7e, 0x7d, 0x7c, 0x7c, 0x7c, 0x7a, 0x79,\n    0x7a, 0x78, 0x77, 0x76, 0x76, 0x75, 0x74, 0x72, 0x72, 0x71, 0x6e, 0x6c, 0x6a, 0x68, 0x68, 0x68,\n    0x65, 0x65, 0x64, 0x63, 0x62, 0x61, 0x60, 0x5f, 0x60, 0x5f, 0x5d, 0x5b, 0x59, 0x57, 0x56, 0x55,\n    0x52, 0x4d, 0x4a, 0x4a, 0x44, 0x40, 0x4d, 0x5f, 0x64, 0x67, 0x68, 0x67, 0x6b, 0x72, 0x74, 0x71,\n    0x6e, 0x66, 0x66, 0x6e, 0x6e, 0x65, 0x60, 0x64, 0x64, 0x68, 0x73, 0x7f, 0x81, 0x7b, 0x7b, 0x82,\n    0x79, 0x76, 0x6f, 0x75, 0x72, 0x66, 0x62, 0x5b, 0x5c, 0x54, 0x4c, 0x4a, 0x4b, 0x4d, 0x4f, 0x51,\n    0x4d, 0x4a, 0x46, 0x48, 0x50, 0x5c, 0x68, 0x70, 0x71, 0x6c, 0x64, 0x5c, 0x59, 0x5a, 0x5b, 0x5a,\n    0x5c, 0x60, 0x61, 0x59, 0x48, 0x38, 0x32, 0x34, 0x42, 0x42, 0x3f, 0x3d, 0x3f, 0x46, 0x4b, 0x4d,\n    0x54, 0x4a, 0x3b, 0x33, 0x3c, 0x4a, 0x4b, 0x43, 0x3c, 0x3d, 0x39, 0x30, 0x2c, 0x33, 0x43, 0x4f,\n    0x4d, 0x51, 0x56, 0x5f, 0x68, 0x62, 0x59, 0x5a, 0x4b, 0x47, 0x42, 0x42, 0x4e, 0x59, 0x54, 0x48,\n    0x3f, 0x3a, 0x37, 0x48, 0x64, 0x6f, 0x60, 0x4f, 0x40, 0x43, 0x52, 0x5c, 0x54, 0x47, 0x3f, 0x38,\n    0x3b, 0x2e, 0x28, 0x32, 0x3f, 0x46, 0x4a, 0x4e, 0x47, 0x36, 0x33, 0x32, 0x30, 0x2b, 0x22, 0x29,\n    0x38, 0x47, 0x4e, 0x46, 0x3c, 0x36, 0x3f, 0x50, 0x51, 0x53, 0x4b, 0x4a, 0x52, 0x4c, 0x41, 0x45,\n    0x56, 0x67, 0x66, 0x60, 0x59, 0x3c, 0x26, 0x2d, 0x3e, 0x48, 0x4d, 0x49, 0x45, 0x46, 0x45, 0x40,\n    0x3d, 0x34, 0x34, 0x45, 0x5b, 0x66, 0x67, 0x66, 0x60, 0x51, 0x46, 0x44, 0x44, 0x48, 0x47, 0x3f,\n    0x3e, 0x38, 0x30, 0x2c, 0x2d, 0x31, 0x35, 0x37, 0x34, 0x39, 0x3c, 0x3a, 0x35, 0x31, 0x32, 0x34,\n    0x37, 0x3b, 0x3e, 0x3e, 0x3b, 0x3a, 0x3b, 0x3e, 0x42, 0x3d, 0x38, 0x38, 0x3c, 0x3d, 0x38, 0x32,\n    0x34, 0x34, 0x35, 0x36, 0x36, 0x36, 0x37, 0x38, 0x37, 0x2e, 0x28, 0x2a, 0x2d, 0x2d, 0x2e, 0x2f,\n    0x29, 0x2e, 0x33, 0x36, 0x35, 0x31, 0x2d, 0x2b, 0x29, 0x2a, 0x2b, 0x2c, 0x2c, 0x27, 0x21, 0x1d,\n    0x19, 0x1a, 0x1a, 0x19, 0x18, 0x18, 0x18, 0x18, 0x1a, 0x1a, 0x1a, 0x19, 0x17, 0x18, 0x19, 0x1b,\n    0x18, 0x18, 0x19, 0x19, 0x18, 0x18, 0x19, 0x1a, 0x19, 0x1d, 0x21, 0x26, 0x2b, 0x2f, 0x33, 0x36,\n    0x3a, 0x3c, 0x39, 0x31, 0x2a, 0x26, 0x25, 0x24, 0x20, 0x21, 0x23, 0x24, 0x25, 0x25, 0x23, 0x22,\n    0x24, 0x25, 0x25, 0x25, 0x23, 0x23, 0x25, 0x28, 0x33, 0x37, 0x3a, 0x3b, 0x38, 0x34, 0x33, 0x33,\n    0x34, 0x35, 0x37, 0x39, 0x3b, 0x3c, 0x3b, 0x3a, 0x45, 0x43, 0x43, 0x43, 0x43, 0x44, 0x49, 0x4f,\n    0x55, 0x57, 0x59, 0x58, 0x55, 0x56, 0x59, 0x5d, 0x59, 0x58, 0x56, 0x55, 0x58, 0x5c, 0x5c, 0x59,\n    0x4c, 0x47, 0x46, 0x42, 0x36, 0x2e, 0x2c, 0x29, 0x28, 0x2a, 0x2d, 0x2e, 0x2d, 0x2e, 0x2f, 0x30,\n    0x2e, 0x2c, 0x29, 0x2a, 0x2a, 0x29, 0x25, 0x21, 0x1f, 0x1f, 0x22, 0x2a, 0x31, 0x33, 0x2e, 0x29,\n    0x29, 0x2d, 0x2e, 0x31, 0x3d, 0x4d, 0x50, 0x49, 0x3f, 0x3d, 0x3d, 0x3e, 0x3e, 0x3b, 0x34, 0x2e,\n    0x29, 0x2b, 0x2c, 0x36, 0x46, 0x4c, 0x4a, 0x4b, 0x4f, 0x5c, 0x69, 0x6d, 0x6d, 0x69, 0x62, 0x5b,\n    0x59, 0x5b, 0x5a, 0x5a, 0x66, 0x79, 0x83, 0x82, 0x7c, 0x7b, 0x76, 0x6b, 0x64, 0x64, 0x67, 0x69,\n    0x5e, 0x5a, 0x5a, 0x57, 0x53, 0x56, 0x55, 0x4c, 0x56, 0x5c, 0x57, 0x4a, 0x41, 0x3c, 0x3e, 0x47,\n    0x48, 0x4b, 0x4e, 0x4f, 0x51, 0x55, 0x5c, 0x62, 0x6f, 0x6e, 0x6b, 0x69, 0x6c, 0x6e, 0x68, 0x60,\n    0x51, 0x4b, 0x4e, 0x55, 0x55, 0x57, 0x5d, 0x60, 0x62, 0x66, 0x6d, 0x73, 0x77, 0x7a, 0x7d, 0x7e,\n    0x7e, 0x81, 0x82, 0x81, 0x80, 0x80, 0x80, 0x7e, 0x7c, 0x7d, 0x7d, 0x7e, 0x7e, 0x7d, 0x7c, 0x7b,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7e, 0x80, 0x81, 0x81, 0x83, 0x86, 0x88, 0x8a, 0x8b, 0x8c, 0x8d,\n    0x8c, 0x8c, 0x8c, 0x8b, 0x8a, 0x88, 0x87, 0x86, 0x83, 0x82, 0x80, 0x7f, 0x7f, 0x80, 0x81, 0x82,\n    0x82, 0x82, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x85, 0x85,\n    0x87, 0x86, 0x85, 0x85, 0x86, 0x86, 0x86, 0x85, 0x85, 0x84, 0x83, 0x83, 0x83, 0x84, 0x85, 0x86,\n    0x89, 0x8a, 0x8b, 0x8a, 0x87, 0x86, 0x85, 0x86, 0x87, 0x87, 0x88, 0x88, 0x89, 0x89, 0x89, 0x89,\n    0x83, 0x83, 0x83, 0x83, 0x83, 0x82, 0x82, 0x82, 0x82, 0x82, 0x83, 0x83, 0x83, 0x83, 0x82, 0x82,\n    0x83, 0x82, 0x82, 0x82, 0x82, 0x81, 0x81, 0x81, 0x7e, 0x7d, 0x7c, 0x7c, 0x7c, 0x7b, 0x79, 0x78,\n    0x79, 0x77, 0x76, 0x75, 0x75, 0x74, 0x72, 0x70, 0x70, 0x6f, 0x6d, 0x6b, 0x69, 0x68, 0x67, 0x67,\n    0x65, 0x65, 0x64, 0x62, 0x61, 0x5f, 0x5e, 0x5e, 0x5e, 0x5d, 0x5c, 0x5a, 0x58, 0x56, 0x55, 0x54,\n    0x53, 0x4d, 0x49, 0x46, 0x41, 0x43, 0x56, 0x6c, 0x63, 0x65, 0x62, 0x5c, 0x5d, 0x67, 0x6d, 0x6e,\n    0x65, 0x64, 0x67, 0x6c, 0x69, 0x5f, 0x5a, 0x5c, 0x69, 0x78, 0x8c, 0x97, 0x8d, 0x7a, 0x70, 0x71,\n    0x77, 0x73, 0x69, 0x6c, 0x6b, 0x63, 0x64, 0x5f, 0x54, 0x4f, 0x47, 0x43, 0x44, 0x48, 0x4a, 0x4a,\n    0x4c, 0x47, 0x41, 0x42, 0x4a, 0x58, 0x65, 0x6d, 0x78, 0x79, 0x75, 0x6d, 0x6a, 0x6a, 0x64, 0x5c,\n    0x58, 0x57, 0x57, 0x53, 0x48, 0x3a, 0x37, 0x3b, 0x3f, 0x3a, 0x34, 0x32, 0x36, 0x3e, 0x45, 0x48,\n    0x4a, 0x47, 0x3f, 0x37, 0x37, 0x3c, 0x3b, 0x34, 0x32, 0x36, 0x38, 0x33, 0x2e, 0x31, 0x3b, 0x44,\n    0x4b, 0x51, 0x58, 0x5d, 0x61, 0x61, 0x64, 0x6a, 0x58, 0x4a, 0x3c, 0x3b, 0x47, 0x4e, 0x46, 0x38,\n    0x3f, 0x3f, 0x39, 0x44, 0x63, 0x6d, 0x5e, 0x52, 0x44, 0x46, 0x56, 0x62, 0x58, 0x46, 0x3c, 0x37,\n    0x2f, 0x28, 0x2a, 0x38, 0x46, 0x4a, 0x4c, 0x50, 0x4f, 0x3c, 0x35, 0x32, 0x33, 0x31, 0x29, 0x2d,\n    0x37, 0x47, 0x4f, 0x49, 0x40, 0x3b, 0x42, 0x52, 0x52, 0x52, 0x49, 0x46, 0x4b, 0x4a, 0x49, 0x51,\n    0x56, 0x63, 0x63, 0x5d, 0x54, 0x3a, 0x25, 0x2a, 0x3f, 0x48, 0x4c, 0x45, 0x3d, 0x3b, 0x3a, 0x37,\n    0x3b, 0x32, 0x33, 0x45, 0x5b, 0x66, 0x68, 0x69, 0x62, 0x54, 0x50, 0x54, 0x52, 0x48, 0x36, 0x24,\n    0x48, 0x3e, 0x33, 0x2c, 0x2c, 0x30, 0x33, 0x34, 0x35, 0x3b, 0x40, 0x3e, 0x36, 0x2e, 0x2c, 0x2c,\n    0x3a, 0x40, 0x46, 0x46, 0x41, 0x3c, 0x3b, 0x3c, 0x44, 0x3e, 0x39, 0x3b, 0x40, 0x40, 0x3a, 0x34,\n    0x37, 0x36, 0x35, 0x34, 0x35, 0x34, 0x2f, 0x2b, 0x2a, 0x2c, 0x2a, 0x26, 0x26, 0x2a, 0x2c, 0x2a,\n    0x2e, 0x32, 0x37, 0x38, 0x35, 0x2f, 0x29, 0x25, 0x28, 0x27, 0x25, 0x23, 0x21, 0x1d, 0x1a, 0x17,\n    0x1b, 0x1b, 0x1a, 0x19, 0x19, 0x18, 0x17, 0x17, 0x18, 0x19, 0x1a, 0x1a, 0x19, 0x18, 0x18, 0x18,\n    0x1a, 0x1a, 0x1a, 0x18, 0x17, 0x18, 0x19, 0x1b, 0x1a, 0x1e, 0x22, 0x27, 0x2b, 0x30, 0x34, 0x36,\n    0x3c, 0x3f, 0x3d, 0x34, 0x2c, 0x27, 0x26, 0x25, 0x1e, 0x20, 0x22, 0x24, 0x24, 0x23, 0x21, 0x20,\n    0x22, 0x25, 0x27, 0x26, 0x25, 0x26, 0x28, 0x29, 0x33, 0x37, 0x3a, 0x3b, 0x38, 0x34, 0x31, 0x30,\n    0x31, 0x31, 0x33, 0x33, 0x34, 0x35, 0x38, 0x39, 0x43, 0x42, 0x41, 0x40, 0x3f, 0x40, 0x46, 0x4c,\n    0x4a, 0x4d, 0x50, 0x52, 0x54, 0x59, 0x60, 0x66, 0x6a, 0x69, 0x66, 0x62, 0x60, 0x5f, 0x5a, 0x55,\n    0x48, 0x46, 0x4b, 0x4d, 0x43, 0x39, 0x32, 0x2b, 0x22, 0x24, 0x28, 0x2a, 0x2b, 0x2a, 0x2a, 0x2a,\n    0x2e, 0x2b, 0x28, 0x27, 0x27, 0x26, 0x23, 0x1f, 0x1e, 0x1e, 0x21, 0x29, 0x31, 0x33, 0x2f, 0x29,\n    0x27, 0x2c, 0x30, 0x33, 0x3b, 0x44, 0x41, 0x37, 0x37, 0x3d, 0x42, 0x40, 0x37, 0x30, 0x2e, 0x2f,\n    0x2c, 0x2f, 0x32, 0x3b, 0x46, 0x48, 0x49, 0x51, 0x5c, 0x60, 0x61, 0x60, 0x61, 0x63, 0x5e, 0x55,\n    0x52, 0x55, 0x56, 0x58, 0x66, 0x79, 0x81, 0x7d, 0x80, 0x7f, 0x77, 0x6a, 0x5e, 0x57, 0x56, 0x55,\n    0x55, 0x54, 0x57, 0x57, 0x52, 0x50, 0x4d, 0x44, 0x49, 0x52, 0x51, 0x4b, 0x4a, 0x4c, 0x4f, 0x56,\n    0x6c, 0x6c, 0x6c, 0x6a, 0x68, 0x67, 0x69, 0x6c, 0x6c, 0x6f, 0x70, 0x6e, 0x70, 0x71, 0x6b, 0x61,\n    0x51, 0x47, 0x48, 0x52, 0x57, 0x5b, 0x60, 0x60, 0x63, 0x67, 0x6e, 0x74, 0x78, 0x7b, 0x7d, 0x7f,\n    0x7d, 0x80, 0x82, 0x81, 0x81, 0x83, 0x83, 0x82, 0x81, 0x82, 0x83, 0x83, 0x83, 0x82, 0x81, 0x80,\n    0x7d, 0x7d, 0x7d, 0x7d, 0x7f, 0x81, 0x83, 0x84, 0x86, 0x88, 0x8b, 0x8d, 0x8d, 0x8e, 0x8f, 0x90,\n    0x90, 0x90, 0x90, 0x8f, 0x8e, 0x8c, 0x8b, 0x8b, 0x8a, 0x89, 0x87, 0x85, 0x84, 0x84, 0x85, 0x85,\n    0x86, 0x86, 0x87, 0x87, 0x87, 0x87, 0x86, 0x86, 0x89, 0x89, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88,\n    0x8a, 0x89, 0x87, 0x87, 0x88, 0x88, 0x88, 0x87, 0x85, 0x84, 0x84, 0x83, 0x84, 0x84, 0x85, 0x86,\n    0x87, 0x89, 0x8a, 0x8b, 0x89, 0x86, 0x84, 0x82, 0x82, 0x83, 0x84, 0x85, 0x85, 0x85, 0x85, 0x85,\n    0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x83, 0x83,\n    0x82, 0x82, 0x81, 0x81, 0x80, 0x80, 0x80, 0x7f, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x78, 0x77,\n    0x77, 0x76, 0x75, 0x74, 0x74, 0x73, 0x70, 0x6f, 0x6f, 0x6e, 0x6c, 0x6b, 0x69, 0x68, 0x67, 0x67,\n    0x66, 0x65, 0x64, 0x62, 0x60, 0x5f, 0x5d, 0x5d, 0x5c, 0x5b, 0x5a, 0x58, 0x56, 0x54, 0x53, 0x52,\n    0x52, 0x4d, 0x49, 0x46, 0x41, 0x44, 0x57, 0x6c, 0x5c, 0x5f, 0x5f, 0x5a, 0x5a, 0x60, 0x64, 0x64,\n    0x5a, 0x62, 0x68, 0x67, 0x62, 0x60, 0x60, 0x61, 0x68, 0x72, 0x7c, 0x80, 0x7e, 0x7a, 0x76, 0x74,\n    0x75, 0x72, 0x67, 0x68, 0x68, 0x63, 0x65, 0x60, 0x4f, 0x4b, 0x44, 0x3e, 0x3d, 0x40, 0x42, 0x43,\n    0x45, 0x47, 0x4b, 0x51, 0x56, 0x56, 0x53, 0x4f, 0x52, 0x5d, 0x6a, 0x75, 0x7e, 0x7f, 0x74, 0x65,\n    0x5b, 0x50, 0x45, 0x40, 0x3c, 0x39, 0x3d, 0x43, 0x43, 0x3a, 0x31, 0x2e, 0x33, 0x3a, 0x3f, 0x41,\n    0x41, 0x44, 0x45, 0x43, 0x42, 0x40, 0x38, 0x2f, 0x33, 0x36, 0x37, 0x35, 0x30, 0x2d, 0x31, 0x36,\n    0x41, 0x41, 0x43, 0x47, 0x51, 0x61, 0x6f, 0x75, 0x61, 0x49, 0x36, 0x3c, 0x48, 0x49, 0x3e, 0x35,\n    0x39, 0x3a, 0x38, 0x49, 0x6b, 0x75, 0x65, 0x59, 0x41, 0x43, 0x53, 0x62, 0x5b, 0x4b, 0x41, 0x3b,\n    0x27, 0x23, 0x2a, 0x3c, 0x4a, 0x4d, 0x4d, 0x50, 0x4a, 0x38, 0x33, 0x31, 0x35, 0x36, 0x2d, 0x30,\n    0x3f, 0x4c, 0x52, 0x4e, 0x49, 0x45, 0x4a, 0x56, 0x52, 0x50, 0x49, 0x44, 0x43, 0x44, 0x4a, 0x55,\n    0x5a, 0x5f, 0x5c, 0x56, 0x4e, 0x3b, 0x2f, 0x35, 0x43, 0x46, 0x42, 0x34, 0x29, 0x2a, 0x30, 0x35,\n    0x25, 0x23, 0x2b, 0x3f, 0x51, 0x56, 0x53, 0x4f, 0x2c, 0x23, 0x2a, 0x3f, 0x49, 0x46, 0x39, 0x2a,\n    0x50, 0x45, 0x38, 0x30, 0x2f, 0x31, 0x32, 0x32, 0x32, 0x38, 0x3e, 0x3c, 0x35, 0x2e, 0x2b, 0x2b,\n    0x35, 0x3b, 0x41, 0x41, 0x3d, 0x3a, 0x3b, 0x3d, 0x44, 0x3e, 0x3b, 0x3d, 0x41, 0x40, 0x3d, 0x3a,\n    0x3e, 0x3b, 0x36, 0x30, 0x2e, 0x2e, 0x2a, 0x26, 0x2a, 0x31, 0x31, 0x29, 0x25, 0x28, 0x29, 0x27,\n    0x2f, 0x32, 0x35, 0x36, 0x32, 0x2d, 0x27, 0x24, 0x26, 0x25, 0x22, 0x1f, 0x1d, 0x1c, 0x1b, 0x1b,\n    0x1d, 0x1c, 0x1b, 0x1a, 0x1a, 0x1a, 0x19, 0x18, 0x16, 0x18, 0x1a, 0x1b, 0x1a, 0x18, 0x16, 0x16,\n    0x1a, 0x1b, 0x1b, 0x1a, 0x19, 0x19, 0x1a, 0x1c, 0x1c, 0x1f, 0x24, 0x28, 0x2c, 0x30, 0x34, 0x36,\n    0x3c, 0x3f, 0x3d, 0x34, 0x2b, 0x25, 0x24, 0x23, 0x1e, 0x20, 0x22, 0x23, 0x22, 0x20, 0x1f, 0x1f,\n    0x21, 0x24, 0x26, 0x25, 0x26, 0x29, 0x2a, 0x2a, 0x2d, 0x30, 0x33, 0x34, 0x32, 0x30, 0x2e, 0x2d,\n    0x2f, 0x2f, 0x2e, 0x2b, 0x29, 0x2d, 0x36, 0x3d, 0x42, 0x41, 0x40, 0x40, 0x3e, 0x3f, 0x45, 0x4c,\n    0x52, 0x54, 0x55, 0x54, 0x52, 0x53, 0x57, 0x5b, 0x60, 0x61, 0x62, 0x62, 0x62, 0x61, 0x5b, 0x55,\n    0x4c, 0x41, 0x3f, 0x45, 0x47, 0x43, 0x39, 0x2b, 0x23, 0x25, 0x28, 0x2a, 0x2b, 0x2a, 0x29, 0x28,\n    0x27, 0x27, 0x27, 0x28, 0x28, 0x25, 0x1f, 0x1a, 0x21, 0x20, 0x21, 0x26, 0x2c, 0x2e, 0x2c, 0x28,\n    0x29, 0x2b, 0x2c, 0x2e, 0x34, 0x3b, 0x3e, 0x3d, 0x40, 0x41, 0x41, 0x3f, 0x3a, 0x35, 0x32, 0x30,\n    0x2e, 0x2f, 0x2f, 0x34, 0x3c, 0x40, 0x4d, 0x61, 0x72, 0x78, 0x73, 0x61, 0x52, 0x51, 0x54, 0x55,\n    0x59, 0x58, 0x56, 0x59, 0x66, 0x77, 0x81, 0x83, 0x83, 0x81, 0x77, 0x68, 0x5a, 0x52, 0x50, 0x4f,\n    0x53, 0x4e, 0x50, 0x58, 0x5c, 0x5e, 0x59, 0x4d, 0x46, 0x50, 0x51, 0x50, 0x57, 0x5e, 0x62, 0x67,\n    0x62, 0x61, 0x62, 0x6a, 0x73, 0x77, 0x74, 0x6f, 0x7c, 0x7f, 0x7b, 0x71, 0x6c, 0x6e, 0x6c, 0x66,\n    0x56, 0x49, 0x48, 0x52, 0x59, 0x5e, 0x61, 0x5e, 0x65, 0x69, 0x6f, 0x74, 0x78, 0x7b, 0x7e, 0x7f,\n    0x7d, 0x81, 0x83, 0x82, 0x82, 0x85, 0x86, 0x85, 0x84, 0x85, 0x85, 0x86, 0x86, 0x85, 0x84, 0x83,\n    0x81, 0x80, 0x80, 0x81, 0x82, 0x84, 0x87, 0x88, 0x8a, 0x8c, 0x8e, 0x90, 0x90, 0x91, 0x92, 0x94,\n    0x95, 0x95, 0x95, 0x94, 0x93, 0x92, 0x91, 0x91, 0x92, 0x91, 0x90, 0x8e, 0x8d, 0x8c, 0x8b, 0x8b,\n    0x8c, 0x8c, 0x8c, 0x8c, 0x8b, 0x8b, 0x8a, 0x8a, 0x89, 0x89, 0x88, 0x87, 0x87, 0x87, 0x88, 0x88,\n    0x8c, 0x8a, 0x88, 0x87, 0x88, 0x89, 0x88, 0x88, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86,\n    0x87, 0x88, 0x89, 0x8a, 0x88, 0x86, 0x83, 0x81, 0x81, 0x82, 0x83, 0x84, 0x85, 0x85, 0x85, 0x84,\n    0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x84, 0x84, 0x84, 0x85, 0x85, 0x84, 0x84, 0x84,\n    0x80, 0x80, 0x80, 0x7f, 0x7f, 0x7e, 0x7e, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x77, 0x75,\n    0x76, 0x75, 0x74, 0x74, 0x74, 0x72, 0x70, 0x6e, 0x6d, 0x6d, 0x6c, 0x6b, 0x6a, 0x69, 0x68, 0x67,\n    0x66, 0x65, 0x63, 0x62, 0x5f, 0x5e, 0x5c, 0x5b, 0x5a, 0x59, 0x58, 0x56, 0x54, 0x52, 0x50, 0x50,\n    0x4e, 0x4c, 0x4a, 0x47, 0x42, 0x42, 0x4f, 0x5f, 0x4d, 0x52, 0x58, 0x5c, 0x5c, 0x58, 0x53, 0x50,\n    0x57, 0x5f, 0x64, 0x60, 0x5c, 0x60, 0x65, 0x67, 0x69, 0x66, 0x65, 0x69, 0x75, 0x7e, 0x7d, 0x77,\n    0x72, 0x72, 0x6a, 0x6c, 0x6c, 0x65, 0x63, 0x5b, 0x53, 0x4e, 0x49, 0x44, 0x40, 0x3d, 0x3e, 0x42,\n    0x48, 0x45, 0x44, 0x47, 0x4c, 0x50, 0x50, 0x4f, 0x52, 0x59, 0x64, 0x72, 0x7f, 0x85, 0x80, 0x78,\n    0x77, 0x65, 0x4e, 0x42, 0x3f, 0x41, 0x45, 0x48, 0x47, 0x3e, 0x35, 0x33, 0x35, 0x38, 0x3a, 0x3c,\n    0x40, 0x43, 0x47, 0x4c, 0x4f, 0x4d, 0x43, 0x38, 0x38, 0x37, 0x37, 0x39, 0x37, 0x35, 0x34, 0x36,\n    0x33, 0x2f, 0x36, 0x44, 0x58, 0x6e, 0x76, 0x6e, 0x5f, 0x47, 0x3b, 0x47, 0x54, 0x52, 0x48, 0x44,\n    0x40, 0x3f, 0x43, 0x59, 0x72, 0x72, 0x5d, 0x4c, 0x38, 0x3b, 0x4b, 0x5b, 0x5b, 0x52, 0x47, 0x3d,\n    0x23, 0x1f, 0x25, 0x37, 0x46, 0x49, 0x4a, 0x4c, 0x41, 0x37, 0x38, 0x38, 0x39, 0x39, 0x31, 0x35,\n    0x46, 0x50, 0x52, 0x4e, 0x4a, 0x47, 0x4a, 0x54, 0x4e, 0x4b, 0x47, 0x42, 0x3e, 0x3e, 0x45, 0x4d,\n    0x56, 0x5b, 0x5b, 0x57, 0x4b, 0x37, 0x2c, 0x30, 0x40, 0x43, 0x41, 0x37, 0x2e, 0x2b, 0x2b, 0x2c,\n    0x23, 0x2e, 0x3f, 0x52, 0x5e, 0x5d, 0x54, 0x4c, 0x3a, 0x2b, 0x2c, 0x3c, 0x45, 0x43, 0x3d, 0x36,\n    0x4a, 0x42, 0x38, 0x32, 0x31, 0x33, 0x34, 0x33, 0x30, 0x34, 0x37, 0x36, 0x31, 0x2d, 0x2c, 0x2e,\n    0x2e, 0x33, 0x37, 0x38, 0x35, 0x33, 0x36, 0x39, 0x40, 0x3a, 0x37, 0x3a, 0x3c, 0x3c, 0x3d, 0x3f,\n    0x44, 0x44, 0x3e, 0x34, 0x2d, 0x2b, 0x2b, 0x29, 0x2c, 0x2e, 0x2e, 0x2b, 0x27, 0x27, 0x29, 0x2b,\n    0x2c, 0x2e, 0x30, 0x2f, 0x2e, 0x2b, 0x2a, 0x29, 0x2c, 0x2a, 0x27, 0x23, 0x1f, 0x1d, 0x1d, 0x1d,\n    0x1c, 0x1a, 0x19, 0x19, 0x1a, 0x1a, 0x19, 0x18, 0x17, 0x18, 0x19, 0x19, 0x18, 0x16, 0x16, 0x16,\n    0x18, 0x1b, 0x1d, 0x1e, 0x1e, 0x1c, 0x1b, 0x1b, 0x1d, 0x20, 0x24, 0x28, 0x2c, 0x2f, 0x33, 0x35,\n    0x38, 0x3b, 0x3a, 0x31, 0x26, 0x20, 0x1f, 0x1e, 0x1d, 0x1f, 0x21, 0x21, 0x1f, 0x1e, 0x1d, 0x1e,\n    0x20, 0x21, 0x21, 0x21, 0x24, 0x2a, 0x2c, 0x2b, 0x2e, 0x2e, 0x2f, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e,\n    0x30, 0x32, 0x32, 0x2d, 0x28, 0x29, 0x33, 0x3b, 0x3b, 0x3b, 0x3b, 0x3c, 0x3a, 0x3b, 0x42, 0x4a,\n    0x5c, 0x5e, 0x5e, 0x5b, 0x56, 0x54, 0x56, 0x58, 0x59, 0x59, 0x58, 0x58, 0x5a, 0x5d, 0x5c, 0x59,\n    0x4f, 0x3f, 0x37, 0x3b, 0x3e, 0x3e, 0x35, 0x28, 0x27, 0x27, 0x27, 0x27, 0x28, 0x28, 0x27, 0x27,\n    0x23, 0x25, 0x28, 0x2a, 0x29, 0x24, 0x1f, 0x1a, 0x24, 0x23, 0x23, 0x25, 0x29, 0x2c, 0x2e, 0x2f,\n    0x30, 0x2c, 0x29, 0x2a, 0x2b, 0x31, 0x3c, 0x46, 0x47, 0x40, 0x38, 0x37, 0x3a, 0x3b, 0x37, 0x32,\n    0x37, 0x35, 0x32, 0x34, 0x3a, 0x40, 0x54, 0x70, 0x8b, 0x91, 0x8d, 0x79, 0x64, 0x58, 0x4f, 0x46,\n    0x46, 0x43, 0x43, 0x47, 0x52, 0x60, 0x6c, 0x73, 0x7a, 0x78, 0x6f, 0x61, 0x56, 0x54, 0x57, 0x5a,\n    0x52, 0x48, 0x48, 0x4f, 0x55, 0x59, 0x55, 0x4b, 0x53, 0x59, 0x54, 0x4a, 0x4b, 0x4d, 0x4d, 0x4e,\n    0x3b, 0x3c, 0x41, 0x4e, 0x5f, 0x6a, 0x6c, 0x6a, 0x7f, 0x83, 0x7d, 0x6c, 0x62, 0x64, 0x68, 0x67,\n    0x5c, 0x50, 0x4e, 0x55, 0x5a, 0x5d, 0x60, 0x5e, 0x68, 0x6c, 0x70, 0x75, 0x78, 0x7b, 0x7e, 0x80,\n    0x80, 0x84, 0x85, 0x84, 0x84, 0x86, 0x87, 0x87, 0x87, 0x87, 0x88, 0x88, 0x88, 0x87, 0x86, 0x86,\n    0x84, 0x84, 0x84, 0x85, 0x86, 0x88, 0x8b, 0x8c, 0x8e, 0x8f, 0x90, 0x91, 0x92, 0x94, 0x96, 0x98,\n    0x99, 0x9a, 0x9a, 0x9a, 0x99, 0x99, 0x98, 0x98, 0x98, 0x98, 0x98, 0x97, 0x96, 0x95, 0x93, 0x92,\n    0x92, 0x92, 0x92, 0x92, 0x91, 0x90, 0x8f, 0x8e, 0x8a, 0x8a, 0x89, 0x88, 0x88, 0x88, 0x88, 0x89,\n    0x8c, 0x8a, 0x88, 0x87, 0x87, 0x88, 0x88, 0x88, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86,\n    0x89, 0x88, 0x87, 0x86, 0x85, 0x84, 0x82, 0x81, 0x82, 0x83, 0x84, 0x86, 0x87, 0x87, 0x86, 0x86,\n    0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83,\n    0x81, 0x81, 0x80, 0x80, 0x7f, 0x7e, 0x7e, 0x7d, 0x7b, 0x7b, 0x7a, 0x7b, 0x7a, 0x79, 0x77, 0x75,\n    0x74, 0x74, 0x74, 0x74, 0x74, 0x73, 0x70, 0x6e, 0x6d, 0x6c, 0x6c, 0x6b, 0x6a, 0x69, 0x68, 0x68,\n    0x65, 0x64, 0x62, 0x60, 0x5e, 0x5c, 0x5a, 0x59, 0x58, 0x57, 0x56, 0x54, 0x52, 0x50, 0x4f, 0x4e,\n    0x4c, 0x4a, 0x48, 0x45, 0x40, 0x40, 0x4a, 0x56, 0x4f, 0x51, 0x59, 0x63, 0x61, 0x54, 0x49, 0x45,\n    0x4b, 0x4f, 0x56, 0x5d, 0x61, 0x64, 0x68, 0x6c, 0x73, 0x6d, 0x69, 0x6c, 0x6d, 0x67, 0x60, 0x5c,\n    0x68, 0x6a, 0x63, 0x65, 0x63, 0x5a, 0x55, 0x4a, 0x49, 0x4e, 0x59, 0x61, 0x5a, 0x48, 0x3c, 0x3c,\n    0x40, 0x3b, 0x37, 0x39, 0x44, 0x50, 0x59, 0x5e, 0x6d, 0x69, 0x66, 0x68, 0x6d, 0x70, 0x73, 0x75,\n    0x69, 0x5d, 0x4f, 0x47, 0x4a, 0x4f, 0x4f, 0x4a, 0x42, 0x3d, 0x39, 0x37, 0x34, 0x32, 0x34, 0x38,\n    0x37, 0x3c, 0x41, 0x43, 0x42, 0x42, 0x41, 0x40, 0x3a, 0x34, 0x30, 0x33, 0x35, 0x33, 0x30, 0x2e,\n    0x2b, 0x2d, 0x3a, 0x49, 0x56, 0x66, 0x67, 0x56, 0x4c, 0x40, 0x3b, 0x44, 0x4e, 0x4e, 0x4b, 0x4a,\n    0x52, 0x4b, 0x56, 0x6e, 0x79, 0x6e, 0x59, 0x46, 0x34, 0x36, 0x44, 0x54, 0x58, 0x54, 0x48, 0x38,\n    0x20, 0x1b, 0x22, 0x35, 0x45, 0x49, 0x47, 0x48, 0x49, 0x48, 0x52, 0x4f, 0x47, 0x3f, 0x38, 0x3e,\n    0x45, 0x4e, 0x4e, 0x49, 0x45, 0x41, 0x45, 0x50, 0x4d, 0x45, 0x40, 0x3f, 0x3c, 0x3e, 0x45, 0x49,\n    0x4f, 0x54, 0x56, 0x4f, 0x3e, 0x2d, 0x2b, 0x34, 0x45, 0x48, 0x4a, 0x48, 0x43, 0x37, 0x28, 0x1c,\n    0x20, 0x32, 0x46, 0x52, 0x57, 0x58, 0x52, 0x4a, 0x38, 0x2e, 0x36, 0x49, 0x4b, 0x3d, 0x2f, 0x25,\n    0x3f, 0x39, 0x33, 0x30, 0x32, 0x34, 0x35, 0x35, 0x36, 0x37, 0x36, 0x31, 0x2b, 0x28, 0x28, 0x2a,\n    0x2c, 0x31, 0x35, 0x35, 0x32, 0x30, 0x31, 0x33, 0x33, 0x2f, 0x2d, 0x31, 0x34, 0x38, 0x3e, 0x45,\n    0x46, 0x4a, 0x47, 0x3c, 0x31, 0x2d, 0x2d, 0x2d, 0x29, 0x25, 0x25, 0x29, 0x29, 0x26, 0x2a, 0x32,\n    0x32, 0x32, 0x30, 0x2e, 0x2c, 0x2b, 0x2c, 0x2e, 0x32, 0x30, 0x2b, 0x25, 0x1f, 0x1b, 0x19, 0x18,\n    0x18, 0x17, 0x16, 0x17, 0x19, 0x19, 0x18, 0x17, 0x18, 0x18, 0x18, 0x17, 0x16, 0x15, 0x16, 0x17,\n    0x16, 0x1a, 0x1f, 0x22, 0x21, 0x1e, 0x1c, 0x1a, 0x1d, 0x20, 0x24, 0x28, 0x2b, 0x2f, 0x32, 0x34,\n    0x37, 0x3a, 0x39, 0x30, 0x25, 0x1f, 0x1d, 0x1d, 0x1c, 0x1e, 0x20, 0x1f, 0x1d, 0x1c, 0x1c, 0x1d,\n    0x1f, 0x1f, 0x1d, 0x1c, 0x21, 0x29, 0x2d, 0x2c, 0x35, 0x33, 0x31, 0x2e, 0x2d, 0x2e, 0x30, 0x32,\n    0x30, 0x35, 0x38, 0x33, 0x2b, 0x27, 0x2c, 0x33, 0x2f, 0x30, 0x32, 0x33, 0x32, 0x34, 0x3b, 0x43,\n    0x51, 0x55, 0x5a, 0x5d, 0x5e, 0x61, 0x66, 0x6b, 0x70, 0x6a, 0x61, 0x59, 0x59, 0x5e, 0x61, 0x61,\n    0x51, 0x43, 0x3c, 0x3b, 0x37, 0x34, 0x2f, 0x27, 0x25, 0x23, 0x21, 0x20, 0x20, 0x21, 0x21, 0x22,\n    0x24, 0x27, 0x2a, 0x2b, 0x28, 0x25, 0x21, 0x1f, 0x23, 0x23, 0x23, 0x24, 0x27, 0x2c, 0x32, 0x37,\n    0x32, 0x2e, 0x2e, 0x2e, 0x29, 0x25, 0x2b, 0x36, 0x3c, 0x3a, 0x37, 0x33, 0x30, 0x31, 0x37, 0x3c,\n    0x37, 0x37, 0x38, 0x40, 0x4c, 0x57, 0x72, 0x92, 0xab, 0xa6, 0x9e, 0x99, 0x99, 0x8b, 0x62, 0x3a,\n    0x35, 0x39, 0x42, 0x4f, 0x58, 0x5e, 0x63, 0x67, 0x6b, 0x6c, 0x69, 0x60, 0x59, 0x58, 0x59, 0x5b,\n    0x57, 0x4e, 0x4d, 0x50, 0x4f, 0x52, 0x54, 0x4f, 0x63, 0x68, 0x62, 0x56, 0x55, 0x58, 0x59, 0x5b,\n    0x64, 0x62, 0x5f, 0x5c, 0x59, 0x59, 0x5a, 0x5c, 0x66, 0x71, 0x74, 0x67, 0x5c, 0x5b, 0x5b, 0x59,\n    0x58, 0x4e, 0x4e, 0x56, 0x58, 0x5c, 0x61, 0x61, 0x6b, 0x6d, 0x71, 0x75, 0x78, 0x7c, 0x7f, 0x81,\n    0x83, 0x86, 0x87, 0x86, 0x85, 0x87, 0x88, 0x87, 0x8b, 0x8c, 0x8c, 0x8d, 0x8d, 0x8c, 0x8b, 0x8a,\n    0x87, 0x87, 0x87, 0x87, 0x89, 0x8b, 0x8e, 0x8f, 0x8f, 0x90, 0x91, 0x92, 0x93, 0x95, 0x98, 0x9b,\n    0x9c, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9c, 0x9c, 0x9b, 0x9b, 0x9c, 0x9c, 0x9c, 0x9a, 0x99, 0x98,\n    0x96, 0x96, 0x96, 0x95, 0x94, 0x93, 0x92, 0x92, 0x8f, 0x8f, 0x8e, 0x8d, 0x8c, 0x8d, 0x8d, 0x8e,\n    0x8b, 0x89, 0x87, 0x86, 0x87, 0x87, 0x87, 0x87, 0x85, 0x85, 0x86, 0x87, 0x87, 0x87, 0x86, 0x86,\n    0x8b, 0x89, 0x85, 0x83, 0x83, 0x83, 0x83, 0x83, 0x80, 0x81, 0x83, 0x84, 0x85, 0x85, 0x84, 0x84,\n    0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x84, 0x84, 0x83, 0x83, 0x83,\n    0x83, 0x83, 0x82, 0x82, 0x81, 0x80, 0x7f, 0x7f, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x76, 0x74,\n    0x74, 0x73, 0x73, 0x74, 0x74, 0x73, 0x71, 0x6f, 0x6c, 0x6c, 0x6c, 0x6b, 0x6b, 0x6a, 0x69, 0x68,\n    0x64, 0x63, 0x61, 0x5f, 0x5d, 0x5b, 0x59, 0x58, 0x57, 0x56, 0x55, 0x53, 0x51, 0x4f, 0x4d, 0x4d,\n    0x4d, 0x49, 0x44, 0x40, 0x3d, 0x3f, 0x4a, 0x56, 0x54, 0x51, 0x56, 0x5f, 0x5b, 0x4a, 0x3d, 0x3b,\n    0x35, 0x38, 0x46, 0x5d, 0x6b, 0x6d, 0x6f, 0x75, 0x74, 0x72, 0x76, 0x7a, 0x6d, 0x5b, 0x58, 0x63,\n    0x6b, 0x6c, 0x63, 0x63, 0x5f, 0x56, 0x52, 0x47, 0x43, 0x45, 0x4d, 0x55, 0x4d, 0x3c, 0x36, 0x3c,\n    0x38, 0x3d, 0x48, 0x57, 0x64, 0x69, 0x67, 0x63, 0x59, 0x53, 0x4f, 0x4f, 0x4b, 0x46, 0x47, 0x4d,\n    0x51, 0x51, 0x4e, 0x4d, 0x51, 0x54, 0x4a, 0x3d, 0x39, 0x39, 0x39, 0x37, 0x30, 0x2a, 0x2d, 0x34,\n    0x35, 0x40, 0x47, 0x40, 0x35, 0x34, 0x41, 0x4f, 0x49, 0x3e, 0x35, 0x35, 0x36, 0x31, 0x29, 0x24,\n    0x2d, 0x30, 0x3b, 0x3c, 0x38, 0x43, 0x4c, 0x42, 0x45, 0x42, 0x3f, 0x41, 0x45, 0x4a, 0x4d, 0x4e,\n    0x48, 0x3e, 0x4f, 0x6c, 0x71, 0x68, 0x5a, 0x4c, 0x36, 0x38, 0x42, 0x4f, 0x55, 0x54, 0x45, 0x30,\n    0x1e, 0x1b, 0x24, 0x3b, 0x4d, 0x4f, 0x4b, 0x49, 0x4a, 0x50, 0x5f, 0x58, 0x46, 0x38, 0x30, 0x39,\n    0x42, 0x4b, 0x4c, 0x46, 0x41, 0x3e, 0x44, 0x51, 0x4f, 0x42, 0x3b, 0x3a, 0x3b, 0x42, 0x4b, 0x4d,\n    0x50, 0x50, 0x4a, 0x3c, 0x2a, 0x25, 0x38, 0x50, 0x63, 0x60, 0x5c, 0x5b, 0x57, 0x49, 0x34, 0x22,\n    0x26, 0x3a, 0x4a, 0x4e, 0x50, 0x56, 0x57, 0x53, 0x47, 0x3a, 0x3e, 0x4c, 0x4a, 0x3b, 0x30, 0x2a,\n    0x34, 0x2f, 0x2e, 0x32, 0x31, 0x2d, 0x2e, 0x33, 0x37, 0x33, 0x2f, 0x2d, 0x2a, 0x26, 0x29, 0x2f,\n    0x2b, 0x2f, 0x2e, 0x28, 0x28, 0x2d, 0x2e, 0x2b, 0x2c, 0x2e, 0x33, 0x33, 0x2e, 0x2b, 0x32, 0x3c,\n    0x41, 0x42, 0x3d, 0x32, 0x2a, 0x2a, 0x2d, 0x2e, 0x28, 0x26, 0x25, 0x26, 0x28, 0x2a, 0x2c, 0x2d,\n    0x2e, 0x2c, 0x2c, 0x2d, 0x2c, 0x2a, 0x2d, 0x33, 0x31, 0x35, 0x37, 0x31, 0x25, 0x1c, 0x1a, 0x1b,\n    0x20, 0x1e, 0x1a, 0x1a, 0x1b, 0x1b, 0x1a, 0x19, 0x17, 0x17, 0x17, 0x18, 0x18, 0x19, 0x1a, 0x1a,\n    0x18, 0x1a, 0x1e, 0x20, 0x1f, 0x1e, 0x1d, 0x1d, 0x22, 0x20, 0x21, 0x25, 0x29, 0x2b, 0x2e, 0x31,\n    0x37, 0x39, 0x3a, 0x35, 0x2b, 0x23, 0x1e, 0x1d, 0x1b, 0x1c, 0x1d, 0x1d, 0x1c, 0x1c, 0x1c, 0x1c,\n    0x1d, 0x1f, 0x21, 0x21, 0x21, 0x23, 0x28, 0x2d, 0x34, 0x36, 0x37, 0x36, 0x33, 0x31, 0x31, 0x33,\n    0x2e, 0x31, 0x34, 0x33, 0x2f, 0x2c, 0x2c, 0x2e, 0x2a, 0x2b, 0x2a, 0x28, 0x29, 0x2f, 0x39, 0x42,\n    0x4a, 0x50, 0x53, 0x54, 0x58, 0x60, 0x66, 0x68, 0x6f, 0x72, 0x6f, 0x65, 0x62, 0x67, 0x6b, 0x6a,\n    0x5a, 0x40, 0x2f, 0x2e, 0x2d, 0x2a, 0x26, 0x1f, 0x22, 0x22, 0x22, 0x22, 0x21, 0x22, 0x24, 0x25,\n    0x23, 0x25, 0x28, 0x2a, 0x27, 0x22, 0x20, 0x21, 0x22, 0x24, 0x26, 0x27, 0x28, 0x2d, 0x34, 0x3a,\n    0x39, 0x39, 0x3c, 0x3d, 0x36, 0x2c, 0x2e, 0x36, 0x30, 0x2f, 0x2f, 0x30, 0x33, 0x36, 0x38, 0x39,\n    0x34, 0x39, 0x42, 0x4a, 0x4f, 0x57, 0x6b, 0x7e, 0x9c, 0xab, 0xa5, 0xb0, 0xcd, 0xc3, 0x83, 0x3c,\n    0x34, 0x35, 0x3a, 0x43, 0x4b, 0x50, 0x51, 0x51, 0x54, 0x61, 0x61, 0x56, 0x56, 0x5d, 0x62, 0x67,\n    0x60, 0x5a, 0x53, 0x4f, 0x50, 0x53, 0x55, 0x56, 0x63, 0x65, 0x65, 0x5d, 0x53, 0x4f, 0x53, 0x58,\n    0x66, 0x68, 0x68, 0x68, 0x6e, 0x73, 0x70, 0x68, 0x66, 0x61, 0x65, 0x72, 0x77, 0x6f, 0x64, 0x60,\n    0x5d, 0x4f, 0x50, 0x5d, 0x5e, 0x5b, 0x60, 0x67, 0x6e, 0x6f, 0x72, 0x77, 0x7b, 0x7e, 0x7f, 0x7f,\n    0x84, 0x85, 0x87, 0x87, 0x86, 0x86, 0x88, 0x8a, 0x8a, 0x8b, 0x8c, 0x8d, 0x8d, 0x8e, 0x8e, 0x8e,\n    0x8c, 0x8a, 0x8b, 0x8d, 0x8d, 0x8a, 0x8d, 0x92, 0x93, 0x93, 0x94, 0x95, 0x97, 0x98, 0x9a, 0x9b,\n    0xa0, 0xa0, 0xa0, 0x9f, 0x9f, 0x9f, 0x9f, 0x9e, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9c,\n    0x9b, 0x9a, 0x98, 0x95, 0x93, 0x92, 0x92, 0x93, 0x90, 0x8e, 0x8c, 0x8c, 0x8e, 0x8f, 0x8e, 0x8d,\n    0x8b, 0x8a, 0x89, 0x8a, 0x8b, 0x8a, 0x89, 0x88, 0x84, 0x85, 0x85, 0x85, 0x86, 0x87, 0x87, 0x87,\n    0x89, 0x88, 0x87, 0x86, 0x85, 0x83, 0x82, 0x82, 0x81, 0x82, 0x83, 0x85, 0x86, 0x86, 0x84, 0x83,\n    0x85, 0x86, 0x86, 0x85, 0x83, 0x82, 0x84, 0x86, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85,\n    0x81, 0x81, 0x81, 0x80, 0x7f, 0x7e, 0x7e, 0x7d, 0x7b, 0x7a, 0x78, 0x78, 0x79, 0x78, 0x76, 0x74,\n    0x74, 0x75, 0x75, 0x76, 0x75, 0x73, 0x71, 0x70, 0x6d, 0x6c, 0x6a, 0x69, 0x68, 0x67, 0x66, 0x64,\n    0x64, 0x63, 0x60, 0x5c, 0x5b, 0x5c, 0x5b, 0x58, 0x57, 0x55, 0x53, 0x50, 0x4f, 0x4e, 0x4f, 0x4f,\n    0x52, 0x4a, 0x41, 0x3c, 0x3b, 0x3e, 0x45, 0x4b, 0x4d, 0x4e, 0x51, 0x51, 0x4b, 0x43, 0x40, 0x42,\n    0x3b, 0x48, 0x5f, 0x70, 0x70, 0x63, 0x5b, 0x5c, 0x62, 0x6f, 0x6d, 0x66, 0x61, 0x4f, 0x4a, 0x5e,\n    0x77, 0x6a, 0x5f, 0x60, 0x67, 0x65, 0x56, 0x46, 0x3e, 0x3e, 0x3b, 0x3d, 0x41, 0x3c, 0x35, 0x37,\n    0x2b, 0x35, 0x3f, 0x50, 0x65, 0x6c, 0x63, 0x5c, 0x4a, 0x44, 0x41, 0x42, 0x40, 0x3b, 0x3a, 0x3d,\n    0x4a, 0x44, 0x43, 0x49, 0x4d, 0x48, 0x40, 0x3a, 0x3b, 0x34, 0x2f, 0x2f, 0x2e, 0x2b, 0x29, 0x2a,\n    0x25, 0x28, 0x2f, 0x39, 0x41, 0x49, 0x52, 0x5a, 0x45, 0x3e, 0x36, 0x30, 0x2d, 0x2a, 0x25, 0x21,\n    0x2a, 0x38, 0x3f, 0x40, 0x43, 0x42, 0x40, 0x41, 0x49, 0x45, 0x48, 0x3f, 0x4e, 0x4e, 0x50, 0x42,\n    0x2a, 0x36, 0x58, 0x74, 0x70, 0x60, 0x4d, 0x38, 0x27, 0x1e, 0x2d, 0x4c, 0x58, 0x50, 0x45, 0x3e,\n    0x2f, 0x26, 0x2c, 0x3c, 0x45, 0x4a, 0x4d, 0x4c, 0x4e, 0x51, 0x4e, 0x43, 0x39, 0x37, 0x39, 0x3b,\n    0x4e, 0x57, 0x57, 0x4b, 0x41, 0x41, 0x45, 0x44, 0x48, 0x41, 0x43, 0x42, 0x3b, 0x40, 0x44, 0x3b,\n    0x3a, 0x45, 0x4a, 0x3d, 0x2a, 0x2a, 0x46, 0x63, 0x6c, 0x59, 0x47, 0x43, 0x47, 0x44, 0x35, 0x26,\n    0x31, 0x3e, 0x50, 0x5a, 0x5c, 0x5e, 0x57, 0x46, 0x28, 0x2f, 0x44, 0x51, 0x4c, 0x47, 0x40, 0x31,\n    0x37, 0x2d, 0x26, 0x26, 0x27, 0x25, 0x26, 0x2a, 0x33, 0x2f, 0x2b, 0x29, 0x24, 0x22, 0x25, 0x2b,\n    0x29, 0x31, 0x34, 0x2f, 0x2c, 0x2e, 0x2f, 0x2c, 0x2f, 0x30, 0x32, 0x33, 0x31, 0x2e, 0x32, 0x38,\n    0x39, 0x36, 0x30, 0x29, 0x28, 0x2b, 0x2c, 0x29, 0x2b, 0x29, 0x27, 0x27, 0x28, 0x29, 0x2a, 0x2a,\n    0x26, 0x24, 0x25, 0x28, 0x29, 0x29, 0x2d, 0x32, 0x2e, 0x30, 0x30, 0x2d, 0x27, 0x24, 0x25, 0x28,\n    0x26, 0x22, 0x1d, 0x1b, 0x1a, 0x19, 0x18, 0x16, 0x17, 0x17, 0x16, 0x16, 0x17, 0x17, 0x18, 0x18,\n    0x15, 0x18, 0x1b, 0x1d, 0x1c, 0x1b, 0x19, 0x18, 0x1e, 0x1d, 0x1f, 0x25, 0x2a, 0x2e, 0x31, 0x34,\n    0x3b, 0x3c, 0x3b, 0x36, 0x2e, 0x26, 0x22, 0x20, 0x1e, 0x1e, 0x1d, 0x1c, 0x1b, 0x1b, 0x1c, 0x1c,\n    0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x22, 0x29, 0x2f, 0x37, 0x37, 0x37, 0x36, 0x35, 0x32, 0x2f, 0x2c,\n    0x2e, 0x2f, 0x31, 0x31, 0x30, 0x2e, 0x2c, 0x2b, 0x29, 0x2a, 0x2b, 0x2b, 0x2e, 0x35, 0x3f, 0x46,\n    0x44, 0x47, 0x47, 0x45, 0x48, 0x51, 0x59, 0x5c, 0x5b, 0x61, 0x63, 0x61, 0x61, 0x65, 0x64, 0x5f,\n    0x50, 0x3a, 0x2c, 0x2a, 0x26, 0x23, 0x22, 0x20, 0x21, 0x22, 0x22, 0x21, 0x20, 0x20, 0x21, 0x22,\n    0x25, 0x24, 0x26, 0x27, 0x24, 0x20, 0x20, 0x22, 0x23, 0x24, 0x25, 0x25, 0x25, 0x27, 0x2c, 0x31,\n    0x39, 0x3b, 0x40, 0x42, 0x3b, 0x31, 0x31, 0x38, 0x28, 0x29, 0x2d, 0x33, 0x39, 0x3c, 0x3d, 0x3b,\n    0x3d, 0x40, 0x46, 0x4d, 0x51, 0x56, 0x62, 0x6e, 0x7c, 0x9a, 0xa3, 0xa9, 0xaf, 0xa2, 0x7b, 0x49,\n    0x44, 0x42, 0x40, 0x41, 0x43, 0x45, 0x4a, 0x4e, 0x63, 0x67, 0x5d, 0x50, 0x4f, 0x56, 0x5d, 0x64,\n    0x65, 0x5f, 0x57, 0x52, 0x51, 0x51, 0x52, 0x52, 0x55, 0x58, 0x58, 0x50, 0x45, 0x3f, 0x42, 0x46,\n    0x45, 0x4a, 0x50, 0x54, 0x5a, 0x64, 0x6c, 0x70, 0x6e, 0x69, 0x69, 0x71, 0x7d, 0x80, 0x77, 0x6c,\n    0x5c, 0x51, 0x54, 0x5f, 0x5f, 0x5e, 0x63, 0x68, 0x6d, 0x6f, 0x72, 0x75, 0x78, 0x7b, 0x7d, 0x7f,\n    0x84, 0x85, 0x86, 0x87, 0x87, 0x88, 0x8a, 0x8b, 0x8d, 0x8d, 0x8e, 0x8f, 0x8f, 0x90, 0x90, 0x90,\n    0x8d, 0x8c, 0x8d, 0x8f, 0x8e, 0x8c, 0x8f, 0x93, 0x92, 0x93, 0x94, 0x96, 0x98, 0x9b, 0x9c, 0x9d,\n    0x9f, 0xa0, 0xa0, 0x9f, 0x9f, 0x9e, 0x9d, 0x9d, 0x9a, 0x9a, 0x99, 0x98, 0x98, 0x98, 0x98, 0x98,\n    0x99, 0x99, 0x99, 0x97, 0x94, 0x92, 0x91, 0x91, 0x92, 0x90, 0x8e, 0x8d, 0x8d, 0x8d, 0x8c, 0x8a,\n    0x8a, 0x8a, 0x89, 0x89, 0x8a, 0x89, 0x88, 0x87, 0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86,\n    0x88, 0x87, 0x87, 0x86, 0x85, 0x84, 0x84, 0x84, 0x83, 0x82, 0x82, 0x83, 0x84, 0x85, 0x84, 0x83,\n    0x84, 0x85, 0x85, 0x84, 0x83, 0x83, 0x84, 0x86, 0x84, 0x84, 0x83, 0x83, 0x83, 0x83, 0x84, 0x84,\n    0x82, 0x81, 0x81, 0x80, 0x7f, 0x7f, 0x7e, 0x7e, 0x7c, 0x7b, 0x79, 0x79, 0x79, 0x78, 0x76, 0x74,\n    0x75, 0x74, 0x74, 0x73, 0x72, 0x71, 0x70, 0x70, 0x6c, 0x6b, 0x69, 0x68, 0x68, 0x66, 0x65, 0x63,\n    0x63, 0x63, 0x60, 0x5c, 0x5b, 0x5c, 0x5a, 0x57, 0x57, 0x55, 0x52, 0x50, 0x4e, 0x4e, 0x4e, 0x4e,\n    0x4d, 0x48, 0x43, 0x40, 0x3f, 0x3f, 0x42, 0x46, 0x41, 0x41, 0x43, 0x47, 0x4b, 0x4d, 0x4b, 0x48,\n    0x45, 0x41, 0x48, 0x58, 0x64, 0x60, 0x54, 0x4d, 0x52, 0x5c, 0x5e, 0x5f, 0x5e, 0x51, 0x4c, 0x58,\n    0x77, 0x78, 0x72, 0x68, 0x64, 0x62, 0x5a, 0x4f, 0x52, 0x4c, 0x3f, 0x37, 0x39, 0x35, 0x2e, 0x2e,\n    0x2e, 0x3d, 0x48, 0x50, 0x5b, 0x62, 0x67, 0x6d, 0x6d, 0x69, 0x65, 0x65, 0x64, 0x61, 0x5e, 0x5d,\n    0x46, 0x41, 0x3e, 0x41, 0x44, 0x43, 0x3d, 0x38, 0x31, 0x2f, 0x2e, 0x31, 0x31, 0x30, 0x33, 0x37,\n    0x42, 0x39, 0x37, 0x3d, 0x3e, 0x3b, 0x40, 0x4a, 0x52, 0x48, 0x3a, 0x2f, 0x2a, 0x2a, 0x2a, 0x2b,\n    0x34, 0x3e, 0x3f, 0x39, 0x36, 0x33, 0x34, 0x39, 0x45, 0x41, 0x43, 0x3c, 0x4c, 0x50, 0x54, 0x4a,\n    0x39, 0x3f, 0x54, 0x64, 0x5c, 0x4e, 0x3c, 0x28, 0x29, 0x30, 0x44, 0x55, 0x57, 0x55, 0x51, 0x4a,\n    0x3c, 0x2b, 0x2b, 0x3b, 0x46, 0x4b, 0x4e, 0x4e, 0x4f, 0x49, 0x3d, 0x33, 0x33, 0x3e, 0x49, 0x4e,\n    0x4d, 0x4f, 0x48, 0x3b, 0x32, 0x36, 0x3f, 0x45, 0x4d, 0x49, 0x49, 0x41, 0x34, 0x37, 0x3f, 0x3c,\n    0x3a, 0x38, 0x37, 0x33, 0x2d, 0x2f, 0x40, 0x53, 0x58, 0x4a, 0x3d, 0x3a, 0x3b, 0x37, 0x30, 0x2b,\n    0x35, 0x3e, 0x4f, 0x59, 0x59, 0x56, 0x4c, 0x3c, 0x2f, 0x3b, 0x4d, 0x54, 0x4a, 0x3e, 0x34, 0x2c,\n    0x3e, 0x33, 0x2a, 0x2a, 0x2b, 0x2a, 0x28, 0x29, 0x31, 0x2e, 0x2b, 0x27, 0x22, 0x20, 0x24, 0x2a,\n    0x32, 0x3b, 0x42, 0x3f, 0x3a, 0x3a, 0x39, 0x38, 0x36, 0x33, 0x30, 0x2e, 0x2a, 0x26, 0x24, 0x25,\n    0x2a, 0x2b, 0x2a, 0x26, 0x23, 0x21, 0x20, 0x1f, 0x2a, 0x29, 0x28, 0x28, 0x28, 0x29, 0x28, 0x28,\n    0x25, 0x23, 0x22, 0x25, 0x27, 0x28, 0x29, 0x2a, 0x2a, 0x2b, 0x2a, 0x27, 0x25, 0x26, 0x29, 0x2d,\n    0x2a, 0x26, 0x20, 0x1c, 0x19, 0x18, 0x15, 0x13, 0x17, 0x17, 0x16, 0x16, 0x16, 0x17, 0x17, 0x18,\n    0x1b, 0x1e, 0x22, 0x23, 0x22, 0x1f, 0x1d, 0x1b, 0x1c, 0x1b, 0x1e, 0x26, 0x2d, 0x32, 0x37, 0x3b,\n    0x41, 0x41, 0x3e, 0x38, 0x30, 0x29, 0x23, 0x21, 0x20, 0x1f, 0x1e, 0x1d, 0x1c, 0x1c, 0x1c, 0x1c,\n    0x20, 0x1f, 0x1d, 0x1c, 0x1d, 0x23, 0x2c, 0x33, 0x34, 0x33, 0x34, 0x37, 0x39, 0x37, 0x32, 0x2e,\n    0x2d, 0x2d, 0x2e, 0x2f, 0x31, 0x30, 0x2d, 0x2a, 0x28, 0x28, 0x29, 0x2a, 0x2e, 0x35, 0x3e, 0x44,\n    0x44, 0x47, 0x48, 0x46, 0x44, 0x46, 0x48, 0x49, 0x4a, 0x4d, 0x4d, 0x4b, 0x4e, 0x55, 0x58, 0x56,\n    0x4c, 0x38, 0x2a, 0x27, 0x22, 0x20, 0x23, 0x24, 0x1f, 0x20, 0x21, 0x21, 0x20, 0x1f, 0x1f, 0x20,\n    0x24, 0x23, 0x22, 0x23, 0x21, 0x1e, 0x1f, 0x22, 0x24, 0x26, 0x27, 0x27, 0x26, 0x27, 0x2a, 0x2c,\n    0x36, 0x3d, 0x48, 0x4e, 0x46, 0x37, 0x2f, 0x2f, 0x28, 0x28, 0x2a, 0x31, 0x38, 0x3c, 0x3c, 0x3b,\n    0x38, 0x3b, 0x41, 0x4b, 0x54, 0x59, 0x5d, 0x60, 0x78, 0x8c, 0x92, 0x90, 0x8b, 0x86, 0x75, 0x50,\n    0x4b, 0x48, 0x45, 0x42, 0x3e, 0x3b, 0x3d, 0x41, 0x41, 0x44, 0x42, 0x45, 0x50, 0x57, 0x5c, 0x63,\n    0x5f, 0x5c, 0x59, 0x56, 0x53, 0x51, 0x4f, 0x4d, 0x44, 0x48, 0x4b, 0x49, 0x45, 0x45, 0x4a, 0x4f,\n    0x4d, 0x50, 0x55, 0x5a, 0x5a, 0x58, 0x58, 0x59, 0x64, 0x67, 0x68, 0x69, 0x71, 0x79, 0x74, 0x68,\n    0x59, 0x53, 0x57, 0x60, 0x61, 0x62, 0x68, 0x6a, 0x6e, 0x70, 0x73, 0x75, 0x76, 0x79, 0x7d, 0x80,\n    0x84, 0x84, 0x85, 0x87, 0x89, 0x8b, 0x8c, 0x8c, 0x90, 0x90, 0x91, 0x92, 0x92, 0x93, 0x93, 0x93,\n    0x91, 0x90, 0x91, 0x92, 0x92, 0x91, 0x92, 0x95, 0x97, 0x98, 0x99, 0x9b, 0x9c, 0x9d, 0x9e, 0x9e,\n    0x9f, 0x9f, 0xa0, 0xa0, 0x9f, 0x9d, 0x9b, 0x9a, 0x97, 0x96, 0x95, 0x94, 0x93, 0x92, 0x92, 0x92,\n    0x94, 0x95, 0x97, 0x96, 0x94, 0x92, 0x90, 0x8f, 0x94, 0x92, 0x91, 0x90, 0x8f, 0x8e, 0x8d, 0x8c,\n    0x8a, 0x89, 0x89, 0x89, 0x89, 0x88, 0x87, 0x85, 0x83, 0x83, 0x83, 0x83, 0x84, 0x84, 0x85, 0x85,\n    0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x83, 0x81, 0x81, 0x82, 0x83, 0x84, 0x84,\n    0x84, 0x84, 0x85, 0x84, 0x83, 0x83, 0x85, 0x86, 0x83, 0x83, 0x82, 0x82, 0x82, 0x82, 0x83, 0x83,\n    0x82, 0x81, 0x81, 0x80, 0x80, 0x7f, 0x7f, 0x7e, 0x7d, 0x7c, 0x7a, 0x79, 0x79, 0x78, 0x77, 0x75,\n    0x75, 0x74, 0x73, 0x71, 0x70, 0x6f, 0x6f, 0x6f, 0x6d, 0x6b, 0x6a, 0x68, 0x68, 0x67, 0x65, 0x63,\n    0x62, 0x62, 0x5f, 0x5c, 0x5b, 0x5b, 0x59, 0x56, 0x55, 0x53, 0x51, 0x4f, 0x4d, 0x4d, 0x4d, 0x4d,\n    0x4a, 0x46, 0x43, 0x42, 0x41, 0x42, 0x45, 0x49, 0x4a, 0x47, 0x43, 0x45, 0x52, 0x63, 0x6a, 0x69,\n    0x55, 0x4a, 0x41, 0x42, 0x47, 0x4a, 0x4d, 0x50, 0x56, 0x54, 0x53, 0x53, 0x51, 0x4b, 0x4b, 0x50,\n    0x5f, 0x72, 0x7c, 0x74, 0x6c, 0x6c, 0x6a, 0x63, 0x54, 0x4f, 0x42, 0x39, 0x3b, 0x39, 0x31, 0x2d,\n    0x40, 0x54, 0x63, 0x66, 0x69, 0x6e, 0x7b, 0x8b, 0x8d, 0x86, 0x7a, 0x6d, 0x66, 0x65, 0x65, 0x63,\n    0x61, 0x5b, 0x51, 0x49, 0x44, 0x41, 0x39, 0x32, 0x2e, 0x2f, 0x31, 0x33, 0x33, 0x34, 0x39, 0x3f,\n    0x46, 0x3d, 0x3d, 0x46, 0x45, 0x37, 0x34, 0x3c, 0x47, 0x42, 0x3a, 0x33, 0x2f, 0x2f, 0x32, 0x34,\n    0x34, 0x3e, 0x3e, 0x36, 0x30, 0x2c, 0x2e, 0x37, 0x41, 0x3e, 0x3e, 0x3b, 0x49, 0x50, 0x56, 0x50,\n    0x4c, 0x4b, 0x4d, 0x46, 0x37, 0x32, 0x32, 0x2d, 0x42, 0x49, 0x53, 0x55, 0x51, 0x54, 0x58, 0x53,\n    0x44, 0x2c, 0x27, 0x3b, 0x49, 0x4d, 0x4e, 0x4e, 0x4d, 0x47, 0x3e, 0x3a, 0x43, 0x50, 0x55, 0x51,\n    0x4f, 0x48, 0x3d, 0x31, 0x2b, 0x31, 0x3f, 0x4a, 0x56, 0x5b, 0x60, 0x55, 0x44, 0x41, 0x45, 0x42,\n    0x3b, 0x42, 0x4f, 0x56, 0x4c, 0x3b, 0x39, 0x43, 0x3f, 0x33, 0x2b, 0x30, 0x35, 0x34, 0x32, 0x33,\n    0x30, 0x37, 0x4b, 0x5c, 0x60, 0x5d, 0x55, 0x49, 0x29, 0x3e, 0x51, 0x56, 0x4e, 0x3f, 0x36, 0x38,\n    0x3f, 0x39, 0x36, 0x38, 0x38, 0x34, 0x2f, 0x2d, 0x2d, 0x2c, 0x2a, 0x26, 0x21, 0x21, 0x24, 0x29,\n    0x29, 0x30, 0x36, 0x36, 0x34, 0x33, 0x32, 0x30, 0x30, 0x2e, 0x2c, 0x2b, 0x2a, 0x29, 0x2b, 0x2c,\n    0x2f, 0x39, 0x41, 0x3b, 0x2c, 0x21, 0x1f, 0x22, 0x26, 0x25, 0x25, 0x26, 0x28, 0x29, 0x28, 0x27,\n    0x24, 0x23, 0x23, 0x26, 0x28, 0x28, 0x26, 0x24, 0x29, 0x2b, 0x2a, 0x27, 0x23, 0x21, 0x23, 0x26,\n    0x28, 0x24, 0x1e, 0x1b, 0x19, 0x18, 0x16, 0x14, 0x17, 0x17, 0x17, 0x17, 0x17, 0x18, 0x19, 0x19,\n    0x20, 0x22, 0x25, 0x26, 0x25, 0x22, 0x1f, 0x1e, 0x1b, 0x1a, 0x1c, 0x23, 0x2c, 0x33, 0x39, 0x3f,\n    0x45, 0x43, 0x3f, 0x38, 0x2f, 0x27, 0x21, 0x1e, 0x1f, 0x1f, 0x1f, 0x20, 0x20, 0x1f, 0x1e, 0x1d,\n    0x21, 0x20, 0x1e, 0x1d, 0x1f, 0x25, 0x2d, 0x33, 0x33, 0x33, 0x35, 0x37, 0x38, 0x37, 0x33, 0x30,\n    0x2b, 0x2a, 0x2a, 0x2b, 0x2c, 0x2c, 0x2c, 0x2c, 0x2c, 0x2b, 0x29, 0x28, 0x2b, 0x31, 0x39, 0x3e,\n    0x4e, 0x55, 0x5b, 0x5d, 0x5a, 0x56, 0x53, 0x51, 0x4e, 0x50, 0x4f, 0x4d, 0x4f, 0x56, 0x5c, 0x5d,\n    0x56, 0x3c, 0x2a, 0x27, 0x26, 0x27, 0x29, 0x28, 0x1f, 0x21, 0x22, 0x23, 0x21, 0x20, 0x20, 0x20,\n    0x21, 0x1f, 0x1e, 0x20, 0x1f, 0x1d, 0x1e, 0x20, 0x22, 0x24, 0x26, 0x27, 0x28, 0x29, 0x2a, 0x2c,\n    0x30, 0x37, 0x42, 0x47, 0x42, 0x37, 0x31, 0x31, 0x34, 0x30, 0x2c, 0x2d, 0x32, 0x38, 0x3b, 0x3c,\n    0x3b, 0x3f, 0x48, 0x55, 0x62, 0x69, 0x67, 0x62, 0x57, 0x65, 0x7b, 0x9d, 0xbb, 0xc9, 0xb5, 0x81,\n    0x44, 0x40, 0x40, 0x42, 0x40, 0x3b, 0x38, 0x39, 0x38, 0x3b, 0x3f, 0x4d, 0x5d, 0x60, 0x5e, 0x63,\n    0x60, 0x60, 0x5f, 0x5d, 0x59, 0x54, 0x4f, 0x4c, 0x5a, 0x57, 0x52, 0x4a, 0x44, 0x40, 0x40, 0x41,\n    0x50, 0x4f, 0x55, 0x63, 0x6d, 0x71, 0x73, 0x77, 0x6d, 0x77, 0x7c, 0x76, 0x6d, 0x67, 0x5f, 0x58,\n    0x57, 0x53, 0x59, 0x60, 0x61, 0x66, 0x6c, 0x6b, 0x70, 0x73, 0x75, 0x75, 0x75, 0x78, 0x7e, 0x83,\n    0x85, 0x84, 0x85, 0x88, 0x8c, 0x8f, 0x8f, 0x8e, 0x92, 0x93, 0x94, 0x94, 0x95, 0x95, 0x95, 0x95,\n    0x94, 0x94, 0x95, 0x95, 0x95, 0x95, 0x96, 0x97, 0x9a, 0x9a, 0x9b, 0x9b, 0x9b, 0x9a, 0x99, 0x98,\n    0x99, 0x99, 0x9a, 0x9a, 0x99, 0x96, 0x94, 0x92, 0x92, 0x91, 0x8f, 0x8e, 0x8c, 0x8b, 0x8b, 0x8b,\n    0x8d, 0x8e, 0x91, 0x91, 0x91, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x8f, 0x8e, 0x8d, 0x8c,\n    0x8a, 0x89, 0x88, 0x88, 0x88, 0x87, 0x85, 0x84, 0x82, 0x83, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84,\n    0x83, 0x83, 0x83, 0x84, 0x84, 0x85, 0x85, 0x85, 0x86, 0x84, 0x82, 0x82, 0x83, 0x84, 0x84, 0x84,\n    0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x82, 0x82, 0x82, 0x81, 0x81, 0x82, 0x82, 0x82,\n    0x81, 0x81, 0x81, 0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x7d, 0x7c, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x75,\n    0x75, 0x74, 0x73, 0x71, 0x70, 0x6f, 0x6f, 0x6e, 0x6e, 0x6d, 0x6b, 0x6a, 0x69, 0x68, 0x66, 0x64,\n    0x61, 0x61, 0x5f, 0x5c, 0x5b, 0x5b, 0x58, 0x55, 0x52, 0x51, 0x4f, 0x4e, 0x4d, 0x4d, 0x4d, 0x4e,\n    0x4d, 0x47, 0x41, 0x3f, 0x41, 0x44, 0x4c, 0x53, 0x5e, 0x58, 0x4a, 0x40, 0x47, 0x5c, 0x6b, 0x6f,\n    0x51, 0x4c, 0x48, 0x48, 0x4a, 0x51, 0x5d, 0x68, 0x61, 0x59, 0x56, 0x53, 0x4b, 0x45, 0x45, 0x44,\n    0x50, 0x63, 0x73, 0x72, 0x69, 0x61, 0x59, 0x51, 0x43, 0x47, 0x44, 0x42, 0x46, 0x42, 0x37, 0x33,\n    0x3d, 0x51, 0x60, 0x67, 0x6d, 0x71, 0x77, 0x81, 0x87, 0x86, 0x7d, 0x6e, 0x63, 0x61, 0x5f, 0x5b,\n    0x5c, 0x58, 0x50, 0x48, 0x45, 0x45, 0x42, 0x3c, 0x36, 0x34, 0x32, 0x30, 0x2e, 0x2f, 0x33, 0x38,\n    0x36, 0x31, 0x33, 0x39, 0x36, 0x2b, 0x29, 0x2f, 0x30, 0x35, 0x3b, 0x3f, 0x3d, 0x38, 0x33, 0x30,\n    0x2f, 0x3c, 0x40, 0x3b, 0x35, 0x2f, 0x30, 0x38, 0x3f, 0x3f, 0x3f, 0x41, 0x4b, 0x53, 0x56, 0x53,\n    0x53, 0x55, 0x50, 0x40, 0x31, 0x33, 0x3f, 0x47, 0x5e, 0x54, 0x55, 0x59, 0x56, 0x53, 0x51, 0x4e,\n    0x47, 0x2b, 0x26, 0x3f, 0x50, 0x51, 0x4f, 0x4f, 0x55, 0x4a, 0x3a, 0x33, 0x3f, 0x54, 0x60, 0x60,\n    0x52, 0x48, 0x3c, 0x34, 0x32, 0x39, 0x47, 0x54, 0x57, 0x5f, 0x61, 0x53, 0x44, 0x41, 0x44, 0x44,\n    0x46, 0x48, 0x51, 0x56, 0x47, 0x33, 0x32, 0x40, 0x3e, 0x30, 0x2b, 0x38, 0x46, 0x48, 0x44, 0x43,\n    0x39, 0x3d, 0x4e, 0x5f, 0x60, 0x5a, 0x50, 0x46, 0x36, 0x4c, 0x59, 0x5a, 0x52, 0x3d, 0x30, 0x35,\n    0x37, 0x36, 0x37, 0x38, 0x36, 0x31, 0x2d, 0x2b, 0x27, 0x27, 0x26, 0x23, 0x20, 0x20, 0x22, 0x23,\n    0x1f, 0x22, 0x24, 0x25, 0x28, 0x29, 0x28, 0x25, 0x2a, 0x2b, 0x29, 0x26, 0x25, 0x27, 0x2b, 0x2e,\n    0x3b, 0x42, 0x46, 0x3e, 0x2e, 0x20, 0x1d, 0x20, 0x22, 0x22, 0x23, 0x25, 0x26, 0x26, 0x25, 0x23,\n    0x1e, 0x1f, 0x21, 0x24, 0x27, 0x27, 0x24, 0x21, 0x25, 0x29, 0x2b, 0x28, 0x21, 0x1d, 0x1d, 0x1f,\n    0x21, 0x1e, 0x1b, 0x19, 0x1a, 0x1a, 0x19, 0x17, 0x16, 0x16, 0x16, 0x17, 0x17, 0x18, 0x19, 0x1a,\n    0x1b, 0x1d, 0x1f, 0x20, 0x1e, 0x1c, 0x1a, 0x19, 0x1c, 0x19, 0x19, 0x1e, 0x26, 0x2f, 0x37, 0x3e,\n    0x41, 0x40, 0x3c, 0x35, 0x2d, 0x25, 0x20, 0x1e, 0x1e, 0x1e, 0x20, 0x23, 0x25, 0x24, 0x20, 0x1d,\n    0x20, 0x1f, 0x1e, 0x1e, 0x21, 0x26, 0x2d, 0x31, 0x37, 0x39, 0x39, 0x37, 0x33, 0x2e, 0x2c, 0x2b,\n    0x28, 0x29, 0x29, 0x28, 0x26, 0x28, 0x2c, 0x30, 0x32, 0x30, 0x2c, 0x29, 0x29, 0x2f, 0x37, 0x3d,\n    0x47, 0x4d, 0x54, 0x58, 0x59, 0x59, 0x5c, 0x60, 0x5f, 0x65, 0x6b, 0x6d, 0x6d, 0x6e, 0x6f, 0x70,\n    0x61, 0x40, 0x27, 0x25, 0x2a, 0x2e, 0x2e, 0x29, 0x23, 0x24, 0x25, 0x24, 0x22, 0x20, 0x1f, 0x1f,\n    0x1d, 0x1c, 0x1c, 0x1f, 0x1f, 0x1e, 0x1d, 0x1f, 0x1d, 0x1f, 0x21, 0x24, 0x25, 0x26, 0x27, 0x28,\n    0x2c, 0x2e, 0x32, 0x34, 0x33, 0x33, 0x37, 0x3d, 0x3a, 0x34, 0x2f, 0x2e, 0x32, 0x39, 0x3e, 0x40,\n    0x41, 0x48, 0x52, 0x5d, 0x68, 0x6d, 0x67, 0x5c, 0x5b, 0x61, 0x73, 0x9c, 0xc3, 0xd6, 0xc1, 0x8b,\n    0x51, 0x43, 0x38, 0x39, 0x3d, 0x3d, 0x3d, 0x3f, 0x42, 0x42, 0x44, 0x52, 0x63, 0x66, 0x65, 0x6c,\n    0x6d, 0x6c, 0x68, 0x62, 0x5c, 0x58, 0x57, 0x57, 0x51, 0x4e, 0x4b, 0x4e, 0x56, 0x61, 0x69, 0x6d,\n    0x6e, 0x66, 0x60, 0x5f, 0x61, 0x64, 0x6f, 0x7b, 0x99, 0xa0, 0xa5, 0x9f, 0x8d, 0x74, 0x61, 0x57,\n    0x5a, 0x54, 0x58, 0x5f, 0x62, 0x68, 0x6e, 0x6d, 0x72, 0x74, 0x75, 0x75, 0x75, 0x79, 0x7f, 0x85,\n    0x85, 0x85, 0x86, 0x8a, 0x8e, 0x91, 0x92, 0x91, 0x94, 0x95, 0x96, 0x96, 0x97, 0x97, 0x97, 0x97,\n    0x95, 0x96, 0x96, 0x96, 0x97, 0x98, 0x97, 0x97, 0x95, 0x95, 0x95, 0x94, 0x93, 0x92, 0x91, 0x90,\n    0x91, 0x91, 0x92, 0x92, 0x90, 0x8e, 0x8b, 0x89, 0x8c, 0x8b, 0x8a, 0x88, 0x86, 0x85, 0x84, 0x84,\n    0x85, 0x86, 0x87, 0x87, 0x88, 0x8a, 0x8d, 0x8f, 0x8b, 0x8c, 0x8d, 0x8c, 0x8b, 0x8a, 0x88, 0x87,\n    0x89, 0x88, 0x87, 0x87, 0x87, 0x86, 0x84, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83,\n    0x81, 0x81, 0x81, 0x82, 0x82, 0x83, 0x83, 0x84, 0x85, 0x84, 0x83, 0x84, 0x85, 0x85, 0x84, 0x83,\n    0x83, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x82, 0x82, 0x82, 0x81, 0x81, 0x82, 0x82, 0x82,\n    0x81, 0x81, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x7c, 0x7c, 0x7a, 0x78, 0x77, 0x75, 0x75, 0x75,\n    0x73, 0x74, 0x74, 0x74, 0x73, 0x71, 0x6f, 0x6e, 0x6f, 0x6e, 0x6b, 0x6a, 0x69, 0x68, 0x66, 0x64,\n    0x61, 0x61, 0x5f, 0x5b, 0x5a, 0x5a, 0x58, 0x55, 0x4f, 0x4e, 0x4e, 0x4d, 0x4d, 0x4d, 0x4d, 0x4e,\n    0x4e, 0x48, 0x41, 0x3f, 0x40, 0x43, 0x4a, 0x50, 0x65, 0x63, 0x56, 0x41, 0x38, 0x3f, 0x48, 0x4b,\n    0x4b, 0x4d, 0x54, 0x5c, 0x61, 0x60, 0x5d, 0x5b, 0x59, 0x57, 0x58, 0x57, 0x4d, 0x47, 0x45, 0x42,\n    0x53, 0x57, 0x5f, 0x65, 0x63, 0x58, 0x4d, 0x48, 0x38, 0x3f, 0x41, 0x43, 0x45, 0x40, 0x3b, 0x3d,\n    0x3c, 0x48, 0x52, 0x5d, 0x6b, 0x6f, 0x69, 0x66, 0x6e, 0x7a, 0x82, 0x7f, 0x78, 0x71, 0x6a, 0x62,\n    0x57, 0x55, 0x4f, 0x4a, 0x48, 0x48, 0x47, 0x44, 0x3e, 0x38, 0x30, 0x29, 0x28, 0x2b, 0x2e, 0x2f,\n    0x43, 0x3f, 0x37, 0x2d, 0x26, 0x24, 0x26, 0x2a, 0x2b, 0x34, 0x3e, 0x44, 0x40, 0x38, 0x2f, 0x29,\n    0x2e, 0x39, 0x3e, 0x3c, 0x38, 0x31, 0x30, 0x38, 0x3e, 0x41, 0x44, 0x4c, 0x52, 0x59, 0x58, 0x56,\n    0x52, 0x57, 0x57, 0x52, 0x4f, 0x50, 0x53, 0x58, 0x63, 0x4e, 0x4f, 0x61, 0x60, 0x4f, 0x48, 0x4b,\n    0x4a, 0x2e, 0x29, 0x41, 0x52, 0x53, 0x52, 0x52, 0x47, 0x42, 0x36, 0x30, 0x3d, 0x54, 0x62, 0x63,\n    0x54, 0x49, 0x3d, 0x36, 0x37, 0x3f, 0x4f, 0x5c, 0x60, 0x61, 0x54, 0x3e, 0x35, 0x3b, 0x45, 0x4a,\n    0x47, 0x40, 0x41, 0x48, 0x44, 0x37, 0x34, 0x3d, 0x3e, 0x35, 0x33, 0x3c, 0x44, 0x41, 0x3d, 0x3c,\n    0x3a, 0x3e, 0x4d, 0x5b, 0x5a, 0x52, 0x4a, 0x41, 0x41, 0x51, 0x59, 0x5a, 0x53, 0x3e, 0x2e, 0x32,\n    0x32, 0x30, 0x2e, 0x2b, 0x29, 0x27, 0x27, 0x28, 0x24, 0x26, 0x26, 0x25, 0x26, 0x27, 0x25, 0x21,\n    0x25, 0x23, 0x22, 0x25, 0x29, 0x2c, 0x2b, 0x2a, 0x28, 0x2b, 0x2c, 0x2b, 0x2c, 0x30, 0x35, 0x37,\n    0x3d, 0x38, 0x31, 0x2c, 0x25, 0x1e, 0x19, 0x18, 0x20, 0x21, 0x22, 0x24, 0x24, 0x23, 0x20, 0x1e,\n    0x1f, 0x21, 0x21, 0x20, 0x21, 0x22, 0x20, 0x1d, 0x1e, 0x22, 0x24, 0x22, 0x1d, 0x1a, 0x19, 0x1b,\n    0x1b, 0x1a, 0x18, 0x19, 0x1b, 0x1c, 0x1b, 0x19, 0x15, 0x15, 0x15, 0x15, 0x16, 0x17, 0x17, 0x18,\n    0x19, 0x1a, 0x1c, 0x1c, 0x1b, 0x19, 0x19, 0x19, 0x1f, 0x1b, 0x1a, 0x1f, 0x26, 0x2e, 0x37, 0x3d,\n    0x3a, 0x3c, 0x3b, 0x35, 0x2b, 0x23, 0x20, 0x20, 0x1e, 0x1e, 0x20, 0x24, 0x26, 0x26, 0x22, 0x1e,\n    0x1e, 0x1e, 0x1d, 0x1f, 0x22, 0x27, 0x2d, 0x30, 0x36, 0x38, 0x39, 0x36, 0x30, 0x2c, 0x2a, 0x2a,\n    0x2a, 0x2c, 0x2d, 0x2b, 0x29, 0x2b, 0x31, 0x37, 0x33, 0x32, 0x2f, 0x2b, 0x28, 0x2c, 0x34, 0x3c,\n    0x41, 0x41, 0x43, 0x44, 0x45, 0x4a, 0x56, 0x60, 0x6b, 0x6e, 0x70, 0x71, 0x70, 0x71, 0x74, 0x77,\n    0x5e, 0x3c, 0x24, 0x23, 0x2b, 0x30, 0x2e, 0x27, 0x27, 0x28, 0x28, 0x26, 0x23, 0x21, 0x20, 0x20,\n    0x1f, 0x1d, 0x1d, 0x1f, 0x20, 0x1f, 0x1e, 0x1e, 0x1d, 0x1f, 0x21, 0x23, 0x24, 0x25, 0x25, 0x25,\n    0x2a, 0x2e, 0x33, 0x35, 0x33, 0x32, 0x32, 0x34, 0x2e, 0x2d, 0x2d, 0x30, 0x35, 0x3a, 0x3f, 0x41,\n    0x45, 0x50, 0x5b, 0x62, 0x6a, 0x6e, 0x67, 0x5c, 0x54, 0x61, 0x6e, 0x89, 0xa6, 0xbc, 0xc0, 0xab,\n    0x7e, 0x5d, 0x3c, 0x2f, 0x32, 0x38, 0x41, 0x48, 0x41, 0x45, 0x4a, 0x57, 0x65, 0x67, 0x65, 0x6a,\n    0x6c, 0x69, 0x63, 0x5b, 0x57, 0x58, 0x60, 0x66, 0x67, 0x61, 0x59, 0x57, 0x5a, 0x62, 0x68, 0x6c,\n    0x70, 0x73, 0x75, 0x74, 0x74, 0x7d, 0x93, 0xa6, 0xb4, 0xb4, 0xb6, 0xb8, 0xaf, 0x98, 0x7d, 0x6b,\n    0x64, 0x58, 0x58, 0x60, 0x64, 0x69, 0x6f, 0x6f, 0x71, 0x73, 0x74, 0x74, 0x76, 0x7a, 0x7f, 0x84,\n    0x85, 0x86, 0x88, 0x8c, 0x90, 0x92, 0x93, 0x93, 0x96, 0x97, 0x97, 0x98, 0x99, 0x99, 0x99, 0x99,\n    0x96, 0x97, 0x97, 0x96, 0x97, 0x99, 0x98, 0x95, 0x92, 0x91, 0x91, 0x90, 0x90, 0x90, 0x90, 0x90,\n    0x90, 0x91, 0x91, 0x90, 0x8f, 0x8d, 0x8b, 0x89, 0x8a, 0x89, 0x87, 0x84, 0x82, 0x80, 0x7f, 0x7e,\n    0x7d, 0x7d, 0x7c, 0x7b, 0x7c, 0x7f, 0x83, 0x87, 0x87, 0x89, 0x8b, 0x8b, 0x89, 0x86, 0x85, 0x84,\n    0x86, 0x85, 0x85, 0x84, 0x85, 0x84, 0x82, 0x81, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83,\n    0x80, 0x80, 0x80, 0x81, 0x81, 0x81, 0x81, 0x82, 0x84, 0x83, 0x83, 0x84, 0x85, 0x85, 0x84, 0x83,\n    0x83, 0x83, 0x83, 0x83, 0x84, 0x85, 0x84, 0x83, 0x82, 0x82, 0x81, 0x81, 0x81, 0x81, 0x82, 0x82,\n    0x80, 0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7c, 0x7c, 0x7b, 0x78, 0x76, 0x74, 0x74, 0x75,\n    0x72, 0x73, 0x75, 0x75, 0x74, 0x72, 0x70, 0x6f, 0x70, 0x6e, 0x6c, 0x6a, 0x69, 0x68, 0x66, 0x64,\n    0x62, 0x61, 0x5e, 0x5a, 0x59, 0x5a, 0x59, 0x56, 0x4f, 0x4e, 0x4e, 0x4d, 0x4c, 0x4c, 0x4c, 0x4c,\n    0x4a, 0x47, 0x43, 0x42, 0x40, 0x3e, 0x3e, 0x40, 0x4c, 0x52, 0x50, 0x43, 0x35, 0x2e, 0x2c, 0x2b,\n    0x3c, 0x46, 0x52, 0x57, 0x54, 0x4d, 0x4a, 0x49, 0x4d, 0x4d, 0x4a, 0x46, 0x44, 0x45, 0x4b, 0x51,\n    0x4b, 0x43, 0x42, 0x49, 0x4b, 0x45, 0x3e, 0x3d, 0x35, 0x36, 0x36, 0x3a, 0x3e, 0x3b, 0x40, 0x4f,\n    0x5b, 0x61, 0x64, 0x6b, 0x79, 0x7a, 0x6f, 0x68, 0x6c, 0x71, 0x74, 0x72, 0x6e, 0x69, 0x65, 0x61,\n    0x66, 0x60, 0x58, 0x51, 0x49, 0x42, 0x3e, 0x3e, 0x42, 0x3c, 0x32, 0x2a, 0x2a, 0x2f, 0x32, 0x32,\n    0x48, 0x48, 0x43, 0x39, 0x33, 0x30, 0x2a, 0x23, 0x2d, 0x31, 0x36, 0x37, 0x35, 0x32, 0x2f, 0x2e,\n    0x2c, 0x32, 0x33, 0x33, 0x34, 0x32, 0x33, 0x3c, 0x3c, 0x43, 0x48, 0x56, 0x58, 0x5e, 0x59, 0x58,\n    0x55, 0x53, 0x4d, 0x50, 0x5a, 0x5b, 0x57, 0x5a, 0x61, 0x45, 0x41, 0x52, 0x52, 0x46, 0x49, 0x56,\n    0x44, 0x2e, 0x2c, 0x40, 0x4d, 0x4f, 0x51, 0x52, 0x43, 0x46, 0x42, 0x3d, 0x45, 0x55, 0x5c, 0x58,\n    0x4f, 0x47, 0x3b, 0x32, 0x33, 0x3f, 0x4f, 0x5b, 0x61, 0x62, 0x50, 0x3a, 0x37, 0x40, 0x47, 0x4b,\n    0x49, 0x48, 0x4e, 0x54, 0x4c, 0x3f, 0x3c, 0x44, 0x3b, 0x3b, 0x3c, 0x37, 0x2e, 0x28, 0x29, 0x2f,\n    0x3d, 0x43, 0x52, 0x5c, 0x58, 0x54, 0x50, 0x49, 0x45, 0x4c, 0x53, 0x57, 0x51, 0x40, 0x32, 0x31,\n    0x31, 0x2d, 0x28, 0x25, 0x25, 0x29, 0x2b, 0x2b, 0x27, 0x29, 0x2b, 0x2d, 0x31, 0x32, 0x2c, 0x24,\n    0x23, 0x21, 0x21, 0x22, 0x24, 0x26, 0x27, 0x28, 0x21, 0x27, 0x2d, 0x35, 0x3e, 0x48, 0x4c, 0x4b,\n    0x3b, 0x31, 0x2a, 0x28, 0x28, 0x24, 0x1f, 0x1d, 0x1d, 0x1f, 0x21, 0x23, 0x24, 0x23, 0x1f, 0x1c,\n    0x21, 0x22, 0x21, 0x1e, 0x1e, 0x22, 0x25, 0x26, 0x25, 0x22, 0x1d, 0x1b, 0x1a, 0x1a, 0x1a, 0x19,\n    0x1b, 0x1a, 0x1a, 0x1b, 0x1d, 0x1d, 0x1a, 0x17, 0x17, 0x16, 0x16, 0x15, 0x15, 0x15, 0x16, 0x16,\n    0x19, 0x1a, 0x1b, 0x1b, 0x1a, 0x1a, 0x1b, 0x1c, 0x1f, 0x1c, 0x1c, 0x21, 0x27, 0x2e, 0x35, 0x3a,\n    0x39, 0x3d, 0x3e, 0x37, 0x2c, 0x22, 0x1f, 0x20, 0x20, 0x1f, 0x1f, 0x22, 0x24, 0x25, 0x22, 0x1f,\n    0x1e, 0x1d, 0x1d, 0x1f, 0x24, 0x2b, 0x31, 0x34, 0x35, 0x36, 0x38, 0x37, 0x35, 0x31, 0x2d, 0x2b,\n    0x2a, 0x2c, 0x2d, 0x2d, 0x2e, 0x30, 0x33, 0x36, 0x33, 0x35, 0x34, 0x30, 0x2a, 0x2b, 0x32, 0x39,\n    0x4a, 0x4b, 0x4d, 0x4e, 0x4d, 0x4f, 0x58, 0x63, 0x6a, 0x64, 0x5e, 0x5b, 0x5c, 0x5f, 0x62, 0x64,\n    0x4f, 0x35, 0x24, 0x26, 0x2a, 0x2d, 0x2e, 0x2a, 0x28, 0x29, 0x29, 0x29, 0x28, 0x28, 0x29, 0x2a,\n    0x26, 0x22, 0x1f, 0x20, 0x21, 0x1f, 0x1f, 0x20, 0x20, 0x21, 0x22, 0x24, 0x26, 0x28, 0x28, 0x28,\n    0x28, 0x2f, 0x36, 0x39, 0x35, 0x2f, 0x2a, 0x27, 0x27, 0x2a, 0x2e, 0x32, 0x36, 0x3a, 0x3e, 0x41,\n    0x4d, 0x5d, 0x6a, 0x6d, 0x6f, 0x73, 0x6f, 0x66, 0x63, 0x81, 0x92, 0xa2, 0xad, 0xb2, 0xb7, 0xb2,\n    0x97, 0x6d, 0x3f, 0x2b, 0x2d, 0x38, 0x48, 0x55, 0x5f, 0x63, 0x62, 0x61, 0x63, 0x5d, 0x56, 0x57,\n    0x5c, 0x5b, 0x58, 0x52, 0x4f, 0x52, 0x5c, 0x64, 0x66, 0x61, 0x57, 0x4b, 0x42, 0x40, 0x44, 0x48,\n    0x4c, 0x55, 0x5e, 0x64, 0x6e, 0x7f, 0x92, 0x9f, 0xaa, 0xae, 0xb1, 0xb4, 0xb4, 0xac, 0x97, 0x83,\n    0x72, 0x5f, 0x5a, 0x63, 0x68, 0x6b, 0x6f, 0x71, 0x72, 0x72, 0x73, 0x74, 0x78, 0x7c, 0x81, 0x84,\n    0x85, 0x87, 0x8b, 0x8e, 0x91, 0x92, 0x94, 0x95, 0x98, 0x99, 0x99, 0x9a, 0x9b, 0x9b, 0x9b, 0x9b,\n    0x98, 0x9a, 0x99, 0x98, 0x9a, 0x9c, 0x9b, 0x97, 0x95, 0x94, 0x92, 0x90, 0x90, 0x90, 0x92, 0x92,\n    0x94, 0x94, 0x94, 0x93, 0x92, 0x90, 0x8f, 0x8e, 0x8b, 0x8a, 0x87, 0x83, 0x80, 0x7d, 0x7b, 0x7a,\n    0x77, 0x76, 0x74, 0x72, 0x71, 0x72, 0x75, 0x78, 0x7e, 0x81, 0x85, 0x86, 0x85, 0x84, 0x83, 0x83,\n    0x83, 0x82, 0x81, 0x81, 0x82, 0x81, 0x80, 0x7f, 0x82, 0x82, 0x82, 0x82, 0x81, 0x81, 0x81, 0x81,\n    0x81, 0x81, 0x81, 0x81, 0x81, 0x80, 0x80, 0x80, 0x83, 0x82, 0x81, 0x81, 0x82, 0x83, 0x84, 0x83,\n    0x84, 0x83, 0x82, 0x83, 0x85, 0x84, 0x83, 0x81, 0x81, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x81,\n    0x7f, 0x7f, 0x7f, 0x7f, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7c, 0x79, 0x76, 0x74, 0x75, 0x76,\n    0x73, 0x73, 0x73, 0x74, 0x73, 0x72, 0x72, 0x71, 0x72, 0x71, 0x6e, 0x6d, 0x6c, 0x6a, 0x68, 0x66,\n    0x63, 0x62, 0x5e, 0x5a, 0x58, 0x5a, 0x5a, 0x57, 0x51, 0x50, 0x4f, 0x4e, 0x4c, 0x4b, 0x4a, 0x4a,\n    0x47, 0x45, 0x44, 0x43, 0x3f, 0x38, 0x34, 0x33, 0x30, 0x35, 0x3a, 0x3c, 0x39, 0x34, 0x31, 0x30,\n    0x34, 0x3d, 0x45, 0x44, 0x3f, 0x3f, 0x46, 0x4d, 0x43, 0x46, 0x3d, 0x35, 0x3b, 0x3f, 0x43, 0x4f,\n    0x58, 0x59, 0x5b, 0x5c, 0x57, 0x4d, 0x43, 0x3f, 0x36, 0x31, 0x31, 0x3c, 0x43, 0x3f, 0x45, 0x59,\n    0x74, 0x7f, 0x82, 0x80, 0x7f, 0x79, 0x71, 0x70, 0x71, 0x64, 0x55, 0x4e, 0x4f, 0x54, 0x5a, 0x5f,\n    0x5b, 0x51, 0x4a, 0x47, 0x40, 0x37, 0x36, 0x3c, 0x41, 0x3e, 0x37, 0x2e, 0x2c, 0x2f, 0x32, 0x32,\n    0x32, 0x34, 0x3a, 0x44, 0x48, 0x40, 0x2c, 0x1c, 0x2a, 0x2b, 0x2b, 0x2c, 0x2d, 0x2f, 0x32, 0x35,\n    0x2e, 0x2e, 0x2b, 0x2d, 0x34, 0x34, 0x34, 0x3c, 0x3b, 0x44, 0x49, 0x58, 0x56, 0x5b, 0x52, 0x52,\n    0x56, 0x53, 0x4a, 0x4a, 0x50, 0x4c, 0x4d, 0x5c, 0x63, 0x49, 0x3a, 0x3e, 0x45, 0x4c, 0x53, 0x53,\n    0x33, 0x29, 0x30, 0x44, 0x4e, 0x50, 0x52, 0x52, 0x5a, 0x57, 0x48, 0x38, 0x3a, 0x4b, 0x55, 0x53,\n    0x46, 0x45, 0x3d, 0x33, 0x32, 0x3d, 0x4a, 0x51, 0x53, 0x59, 0x4b, 0x39, 0x3c, 0x44, 0x46, 0x47,\n    0x53, 0x53, 0x52, 0x4b, 0x3e, 0x36, 0x3d, 0x4a, 0x3d, 0x42, 0x40, 0x33, 0x26, 0x27, 0x32, 0x3d,\n    0x4a, 0x53, 0x5f, 0x60, 0x57, 0x54, 0x52, 0x4b, 0x50, 0x4f, 0x55, 0x58, 0x4c, 0x3b, 0x2f, 0x29,\n    0x2f, 0x2b, 0x26, 0x25, 0x2a, 0x30, 0x31, 0x2f, 0x28, 0x2b, 0x2d, 0x32, 0x37, 0x39, 0x30, 0x25,\n    0x21, 0x21, 0x22, 0x22, 0x21, 0x21, 0x23, 0x26, 0x23, 0x26, 0x2a, 0x2f, 0x37, 0x3d, 0x38, 0x30,\n    0x2c, 0x29, 0x28, 0x29, 0x26, 0x20, 0x1c, 0x1d, 0x1a, 0x1b, 0x1f, 0x22, 0x25, 0x24, 0x21, 0x1f,\n    0x1b, 0x1e, 0x1e, 0x1c, 0x20, 0x2b, 0x35, 0x3a, 0x35, 0x2b, 0x1f, 0x1a, 0x1b, 0x1e, 0x1d, 0x1a,\n    0x1d, 0x1c, 0x1c, 0x1d, 0x1e, 0x1d, 0x18, 0x15, 0x1a, 0x19, 0x18, 0x17, 0x16, 0x15, 0x15, 0x15,\n    0x16, 0x16, 0x17, 0x16, 0x16, 0x17, 0x19, 0x1b, 0x19, 0x17, 0x19, 0x1f, 0x25, 0x2a, 0x2f, 0x34,\n    0x3c, 0x41, 0x42, 0x3b, 0x2c, 0x21, 0x1e, 0x1f, 0x23, 0x20, 0x1e, 0x1f, 0x21, 0x23, 0x21, 0x1f,\n    0x20, 0x1e, 0x1e, 0x20, 0x26, 0x2e, 0x36, 0x3a, 0x3c, 0x3b, 0x3b, 0x3c, 0x3a, 0x35, 0x2d, 0x27,\n    0x25, 0x25, 0x26, 0x29, 0x2c, 0x2f, 0x2f, 0x2e, 0x37, 0x3b, 0x3d, 0x38, 0x30, 0x2d, 0x32, 0x39,\n    0x45, 0x4b, 0x56, 0x5e, 0x5d, 0x59, 0x5b, 0x60, 0x63, 0x5b, 0x55, 0x55, 0x57, 0x56, 0x50, 0x4b,\n    0x42, 0x30, 0x28, 0x2b, 0x2b, 0x2b, 0x2e, 0x2f, 0x27, 0x28, 0x2a, 0x2b, 0x2d, 0x30, 0x34, 0x36,\n    0x2c, 0x27, 0x22, 0x21, 0x20, 0x20, 0x20, 0x21, 0x1f, 0x20, 0x21, 0x24, 0x27, 0x29, 0x2a, 0x2b,\n    0x26, 0x29, 0x2b, 0x2a, 0x28, 0x29, 0x2a, 0x2c, 0x2d, 0x30, 0x34, 0x36, 0x37, 0x3a, 0x3f, 0x43,\n    0x4c, 0x5e, 0x6b, 0x6a, 0x67, 0x68, 0x65, 0x5d, 0x78, 0x93, 0x98, 0x9b, 0xa0, 0x9d, 0x9f, 0xa0,\n    0x8d, 0x65, 0x3b, 0x2b, 0x31, 0x41, 0x55, 0x65, 0x76, 0x74, 0x67, 0x58, 0x51, 0x4d, 0x4d, 0x52,\n    0x55, 0x57, 0x57, 0x52, 0x4c, 0x4a, 0x4e, 0x52, 0x5c, 0x5b, 0x53, 0x43, 0x32, 0x2b, 0x2f, 0x36,\n    0x3a, 0x3c, 0x3f, 0x4a, 0x63, 0x82, 0x95, 0x9b, 0xa0, 0xac, 0xb2, 0xac, 0xab, 0xad, 0xa1, 0x90,\n    0x7d, 0x65, 0x5c, 0x66, 0x6b, 0x6b, 0x6f, 0x72, 0x74, 0x73, 0x74, 0x76, 0x7b, 0x80, 0x83, 0x85,\n    0x84, 0x88, 0x8d, 0x90, 0x91, 0x92, 0x94, 0x96, 0x99, 0x9a, 0x9b, 0x9c, 0x9c, 0x9d, 0x9d, 0x9d,\n    0x9c, 0x9d, 0x9d, 0x9b, 0x9d, 0xa0, 0x9e, 0x99, 0x98, 0x96, 0x92, 0x90, 0x8e, 0x8e, 0x8f, 0x90,\n    0x95, 0x94, 0x93, 0x92, 0x91, 0x90, 0x90, 0x8f, 0x8e, 0x8c, 0x88, 0x84, 0x7f, 0x7b, 0x78, 0x77,\n    0x74, 0x73, 0x70, 0x6d, 0x6a, 0x69, 0x6a, 0x6c, 0x71, 0x75, 0x7a, 0x7e, 0x7f, 0x80, 0x81, 0x82,\n    0x80, 0x7f, 0x7f, 0x7f, 0x80, 0x80, 0x7e, 0x7d, 0x81, 0x81, 0x81, 0x81, 0x80, 0x80, 0x80, 0x80,\n    0x82, 0x82, 0x82, 0x81, 0x81, 0x80, 0x80, 0x80, 0x83, 0x81, 0x7e, 0x7e, 0x7f, 0x82, 0x84, 0x85,\n    0x84, 0x83, 0x82, 0x83, 0x85, 0x84, 0x82, 0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x80,\n    0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x79, 0x76, 0x74, 0x75, 0x77,\n    0x73, 0x73, 0x72, 0x71, 0x71, 0x72, 0x72, 0x73, 0x76, 0x74, 0x72, 0x70, 0x6f, 0x6d, 0x6b, 0x69,\n    0x64, 0x63, 0x5e, 0x59, 0x58, 0x5a, 0x5a, 0x58, 0x53, 0x52, 0x51, 0x4e, 0x4c, 0x4a, 0x48, 0x47,\n    0x45, 0x43, 0x42, 0x41, 0x3d, 0x36, 0x31, 0x30, 0x37, 0x35, 0x37, 0x3f, 0x47, 0x4b, 0x4e, 0x50,\n    0x56, 0x50, 0x48, 0x45, 0x46, 0x46, 0x3f, 0x38, 0x39, 0x44, 0x3d, 0x38, 0x41, 0x3a, 0x2f, 0x34,\n    0x39, 0x4c, 0x60, 0x65, 0x5d, 0x52, 0x45, 0x3b, 0x3b, 0x35, 0x38, 0x49, 0x50, 0x44, 0x43, 0x53,\n    0x7c, 0x8f, 0x98, 0x8e, 0x7e, 0x6f, 0x6b, 0x71, 0x6a, 0x55, 0x41, 0x3f, 0x4a, 0x58, 0x64, 0x6d,\n    0x58, 0x4b, 0x43, 0x43, 0x3c, 0x31, 0x32, 0x3d, 0x3d, 0x3d, 0x38, 0x2e, 0x27, 0x28, 0x2b, 0x2b,\n    0x2f, 0x2a, 0x33, 0x4b, 0x5a, 0x51, 0x3a, 0x2a, 0x2b, 0x2b, 0x2c, 0x2e, 0x30, 0x32, 0x33, 0x34,\n    0x36, 0x34, 0x2e, 0x30, 0x36, 0x33, 0x2e, 0x32, 0x3b, 0x44, 0x47, 0x57, 0x51, 0x54, 0x49, 0x4a,\n    0x51, 0x58, 0x59, 0x57, 0x51, 0x41, 0x46, 0x61, 0x65, 0x52, 0x3f, 0x3d, 0x4e, 0x61, 0x59, 0x3e,\n    0x25, 0x26, 0x38, 0x50, 0x59, 0x59, 0x58, 0x55, 0x54, 0x53, 0x48, 0x3a, 0x39, 0x44, 0x46, 0x3e,\n    0x3f, 0x44, 0x43, 0x39, 0x37, 0x3f, 0x47, 0x47, 0x55, 0x5b, 0x4b, 0x38, 0x3f, 0x4b, 0x51, 0x56,\n    0x4e, 0x4c, 0x4a, 0x4a, 0x48, 0x41, 0x39, 0x35, 0x36, 0x38, 0x31, 0x24, 0x20, 0x2e, 0x3f, 0x48,\n    0x3e, 0x4b, 0x5a, 0x5a, 0x54, 0x58, 0x5c, 0x56, 0x49, 0x44, 0x4f, 0x58, 0x4c, 0x40, 0x3c, 0x35,\n    0x3d, 0x2c, 0x20, 0x25, 0x2d, 0x2e, 0x2b, 0x2b, 0x27, 0x27, 0x27, 0x29, 0x2b, 0x2b, 0x28, 0x25,\n    0x1e, 0x1f, 0x21, 0x21, 0x21, 0x22, 0x24, 0x26, 0x26, 0x29, 0x29, 0x26, 0x27, 0x2d, 0x2d, 0x29,\n    0x2a, 0x2b, 0x2b, 0x28, 0x24, 0x21, 0x20, 0x20, 0x21, 0x23, 0x22, 0x1f, 0x21, 0x24, 0x23, 0x1f,\n    0x1f, 0x22, 0x23, 0x23, 0x24, 0x27, 0x28, 0x27, 0x26, 0x23, 0x21, 0x20, 0x1d, 0x1a, 0x1b, 0x1e,\n    0x1e, 0x1d, 0x1b, 0x19, 0x18, 0x19, 0x19, 0x1a, 0x1a, 0x18, 0x16, 0x15, 0x16, 0x17, 0x17, 0x16,\n    0x11, 0x14, 0x18, 0x1b, 0x1c, 0x1c, 0x1a, 0x18, 0x1b, 0x1a, 0x1b, 0x1e, 0x24, 0x2b, 0x30, 0x33,\n    0x3a, 0x3c, 0x3c, 0x36, 0x2b, 0x22, 0x1e, 0x1d, 0x20, 0x1f, 0x1f, 0x1f, 0x20, 0x20, 0x1d, 0x1b,\n    0x1e, 0x1c, 0x1f, 0x24, 0x28, 0x2b, 0x32, 0x39, 0x3c, 0x3f, 0x3d, 0x38, 0x35, 0x35, 0x31, 0x2b,\n    0x26, 0x27, 0x28, 0x29, 0x2c, 0x30, 0x33, 0x35, 0x3d, 0x42, 0x42, 0x3d, 0x38, 0x2e, 0x2b, 0x31,\n    0x43, 0x49, 0x4e, 0x4f, 0x50, 0x57, 0x61, 0x67, 0x64, 0x65, 0x65, 0x64, 0x63, 0x60, 0x5d, 0x5b,\n    0x4b, 0x38, 0x28, 0x27, 0x2b, 0x2c, 0x2a, 0x2b, 0x24, 0x24, 0x25, 0x2a, 0x2b, 0x29, 0x26, 0x26,\n    0x28, 0x27, 0x26, 0x24, 0x23, 0x23, 0x24, 0x26, 0x24, 0x25, 0x24, 0x23, 0x26, 0x2c, 0x2c, 0x29,\n    0x23, 0x22, 0x24, 0x27, 0x29, 0x28, 0x28, 0x29, 0x29, 0x2e, 0x33, 0x36, 0x3b, 0x41, 0x45, 0x46,\n    0x47, 0x53, 0x5e, 0x5e, 0x56, 0x51, 0x55, 0x5b, 0x70, 0x7e, 0x78, 0x70, 0x87, 0xa4, 0x9b, 0x7f,\n    0x6b, 0x5b, 0x52, 0x56, 0x5d, 0x5e, 0x5f, 0x63, 0x66, 0x69, 0x66, 0x5b, 0x51, 0x4d, 0x50, 0x53,\n    0x59, 0x53, 0x4f, 0x4f, 0x51, 0x51, 0x50, 0x51, 0x50, 0x59, 0x5d, 0x5d, 0x5b, 0x52, 0x48, 0x48,\n    0x42, 0x3a, 0x35, 0x43, 0x64, 0x85, 0x90, 0x8c, 0xa1, 0xa4, 0xaa, 0xb0, 0xb1, 0xad, 0xa5, 0xa0,\n    0x8a, 0x73, 0x61, 0x62, 0x6c, 0x72, 0x73, 0x74, 0x77, 0x74, 0x73, 0x77, 0x7c, 0x7f, 0x82, 0x85,\n    0x86, 0x8a, 0x8f, 0x92, 0x93, 0x95, 0x97, 0x9a, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9e, 0x9f, 0x9f,\n    0x9d, 0x9e, 0x9f, 0xa0, 0xa0, 0xa0, 0x9f, 0x9e, 0x9c, 0x9b, 0x9a, 0x98, 0x97, 0x96, 0x96, 0x96,\n    0x95, 0x94, 0x95, 0x95, 0x95, 0x94, 0x91, 0x8f, 0x8f, 0x8d, 0x8a, 0x87, 0x83, 0x7d, 0x77, 0x73,\n    0x6f, 0x69, 0x68, 0x6b, 0x6a, 0x64, 0x64, 0x68, 0x6b, 0x6c, 0x6d, 0x71, 0x76, 0x7a, 0x7d, 0x7e,\n    0x7d, 0x7e, 0x7f, 0x7e, 0x7d, 0x7d, 0x7e, 0x7e, 0x7f, 0x7d, 0x7c, 0x7d, 0x7f, 0x80, 0x80, 0x7f,\n    0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x82, 0x81, 0x7f, 0x80, 0x82, 0x82, 0x81, 0x80,\n    0x7e, 0x80, 0x82, 0x85, 0x85, 0x83, 0x80, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x80, 0x80, 0x81,\n    0x81, 0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7d, 0x7d, 0x7c, 0x79, 0x76, 0x75, 0x76, 0x78,\n    0x77, 0x77, 0x76, 0x75, 0x75, 0x75, 0x76, 0x76, 0x75, 0x75, 0x74, 0x74, 0x73, 0x71, 0x6e, 0x6c,\n    0x67, 0x62, 0x5d, 0x5b, 0x5b, 0x5c, 0x5a, 0x58, 0x52, 0x51, 0x4f, 0x4e, 0x4e, 0x4d, 0x4b, 0x49,\n    0x49, 0x44, 0x40, 0x3f, 0x3b, 0x34, 0x32, 0x33, 0x3b, 0x3b, 0x41, 0x47, 0x4e, 0x58, 0x57, 0x4a,\n    0x42, 0x42, 0x49, 0x51, 0x56, 0x5c, 0x57, 0x47, 0x3e, 0x3f, 0x49, 0x4c, 0x3f, 0x32, 0x2f, 0x2e,\n    0x2c, 0x3c, 0x4e, 0x56, 0x4f, 0x43, 0x3b, 0x37, 0x34, 0x33, 0x48, 0x69, 0x71, 0x5e, 0x55, 0x5e,\n    0x7e, 0x87, 0x86, 0x78, 0x6c, 0x69, 0x67, 0x64, 0x5c, 0x56, 0x53, 0x4b, 0x3c, 0x34, 0x38, 0x3b,\n    0x4d, 0x51, 0x4d, 0x3e, 0x30, 0x2b, 0x2c, 0x2e, 0x32, 0x2d, 0x25, 0x20, 0x1f, 0x23, 0x28, 0x2a,\n    0x2f, 0x2b, 0x2c, 0x38, 0x43, 0x43, 0x3b, 0x33, 0x30, 0x25, 0x23, 0x2f, 0x34, 0x2d, 0x27, 0x29,\n    0x30, 0x2d, 0x2c, 0x2f, 0x34, 0x35, 0x31, 0x2b, 0x36, 0x3f, 0x50, 0x5c, 0x59, 0x4e, 0x48, 0x4b,\n    0x54, 0x51, 0x52, 0x56, 0x53, 0x4c, 0x4d, 0x55, 0x61, 0x3f, 0x3c, 0x52, 0x5a, 0x5b, 0x53, 0x41,\n    0x2a, 0x29, 0x3a, 0x52, 0x59, 0x59, 0x5d, 0x60, 0x54, 0x58, 0x48, 0x33, 0x36, 0x48, 0x51, 0x53,\n    0x55, 0x4e, 0x44, 0x37, 0x37, 0x36, 0x33, 0x47, 0x54, 0x61, 0x51, 0x49, 0x4d, 0x41, 0x3c, 0x40,\n    0x42, 0x49, 0x4e, 0x4e, 0x48, 0x40, 0x39, 0x33, 0x36, 0x28, 0x2e, 0x1d, 0x2e, 0x3a, 0x42, 0x46,\n    0x41, 0x52, 0x58, 0x4e, 0x4d, 0x56, 0x54, 0x47, 0x46, 0x49, 0x51, 0x56, 0x4c, 0x3a, 0x2e, 0x2c,\n    0x3c, 0x37, 0x2f, 0x2a, 0x29, 0x29, 0x27, 0x25, 0x20, 0x22, 0x24, 0x24, 0x22, 0x20, 0x1f, 0x20,\n    0x1f, 0x20, 0x20, 0x20, 0x1f, 0x20, 0x22, 0x24, 0x21, 0x28, 0x2f, 0x34, 0x35, 0x31, 0x29, 0x20,\n    0x24, 0x25, 0x27, 0x28, 0x29, 0x27, 0x24, 0x21, 0x22, 0x24, 0x24, 0x20, 0x1e, 0x20, 0x21, 0x20,\n    0x23, 0x24, 0x21, 0x1e, 0x1d, 0x20, 0x21, 0x20, 0x1d, 0x1c, 0x1c, 0x1c, 0x1a, 0x18, 0x19, 0x1b,\n    0x1a, 0x19, 0x18, 0x17, 0x17, 0x18, 0x18, 0x18, 0x19, 0x18, 0x18, 0x19, 0x1a, 0x1a, 0x19, 0x17,\n    0x16, 0x18, 0x1b, 0x1d, 0x1e, 0x1e, 0x1d, 0x1c, 0x1d, 0x1d, 0x1e, 0x22, 0x29, 0x30, 0x35, 0x38,\n    0x3d, 0x3f, 0x3e, 0x37, 0x2b, 0x20, 0x1a, 0x19, 0x1e, 0x1d, 0x1c, 0x1d, 0x1e, 0x1e, 0x1d, 0x1b,\n    0x1e, 0x1c, 0x1e, 0x23, 0x28, 0x2c, 0x31, 0x36, 0x3d, 0x3f, 0x3e, 0x3a, 0x36, 0x32, 0x2c, 0x27,\n    0x2a, 0x2b, 0x2c, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x30, 0x35, 0x35, 0x32, 0x30, 0x2b, 0x2e, 0x38,\n    0x3e, 0x44, 0x48, 0x47, 0x47, 0x4d, 0x56, 0x5c, 0x62, 0x63, 0x65, 0x68, 0x6a, 0x69, 0x66, 0x64,\n    0x4e, 0x3b, 0x2a, 0x26, 0x28, 0x27, 0x25, 0x26, 0x23, 0x20, 0x1e, 0x21, 0x24, 0x26, 0x29, 0x2c,\n    0x28, 0x28, 0x29, 0x29, 0x2a, 0x2a, 0x29, 0x29, 0x28, 0x29, 0x28, 0x27, 0x2b, 0x30, 0x31, 0x2f,\n    0x22, 0x20, 0x20, 0x23, 0x25, 0x27, 0x2a, 0x2e, 0x31, 0x34, 0x35, 0x35, 0x35, 0x39, 0x3b, 0x3b,\n    0x43, 0x4b, 0x51, 0x4e, 0x47, 0x44, 0x48, 0x4e, 0x6a, 0x70, 0x6b, 0x6d, 0x89, 0x9d, 0x88, 0x68,\n    0x5e, 0x55, 0x4e, 0x4b, 0x47, 0x42, 0x41, 0x44, 0x4f, 0x50, 0x50, 0x4f, 0x52, 0x59, 0x60, 0x63,\n    0x5a, 0x55, 0x50, 0x4e, 0x4d, 0x4e, 0x52, 0x58, 0x5b, 0x5e, 0x5a, 0x59, 0x5e, 0x5f, 0x5f, 0x64,\n    0x5d, 0x60, 0x63, 0x69, 0x72, 0x7d, 0x83, 0x84, 0x91, 0x9a, 0xa4, 0xa8, 0xaa, 0xaa, 0xa6, 0xa0,\n    0x94, 0x7f, 0x6c, 0x69, 0x6d, 0x70, 0x73, 0x75, 0x77, 0x74, 0x74, 0x77, 0x7c, 0x7f, 0x82, 0x85,\n    0x89, 0x8c, 0x90, 0x93, 0x94, 0x96, 0x99, 0x9c, 0x9e, 0x9e, 0x9e, 0x9f, 0x9e, 0x9e, 0x9d, 0x9d,\n    0x9e, 0x9f, 0xa0, 0xa1, 0xa1, 0xa1, 0xa0, 0x9f, 0x9e, 0x9d, 0x9b, 0x9a, 0x99, 0x99, 0x99, 0x99,\n    0x97, 0x97, 0x97, 0x97, 0x97, 0x95, 0x92, 0x90, 0x8f, 0x8d, 0x8a, 0x86, 0x82, 0x7c, 0x76, 0x72,\n    0x6f, 0x69, 0x65, 0x67, 0x66, 0x62, 0x63, 0x67, 0x65, 0x65, 0x66, 0x6a, 0x6e, 0x72, 0x75, 0x76,\n    0x77, 0x79, 0x7a, 0x7b, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7c, 0x7b, 0x7c, 0x7e, 0x7f, 0x7e, 0x7d,\n    0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7f, 0x80, 0x7f, 0x7f, 0x80, 0x81, 0x82, 0x82, 0x81,\n    0x80, 0x80, 0x81, 0x82, 0x82, 0x81, 0x7f, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x80, 0x80, 0x81, 0x81,\n    0x81, 0x81, 0x81, 0x81, 0x81, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x7e, 0x7b, 0x78, 0x76, 0x77, 0x78,\n    0x78, 0x78, 0x77, 0x77, 0x77, 0x78, 0x78, 0x79, 0x78, 0x77, 0x76, 0x75, 0x74, 0x72, 0x6f, 0x6d,\n    0x6a, 0x65, 0x60, 0x5d, 0x5c, 0x5c, 0x5a, 0x57, 0x52, 0x50, 0x4f, 0x4e, 0x4d, 0x4c, 0x4a, 0x49,\n    0x46, 0x42, 0x40, 0x3f, 0x3c, 0x39, 0x39, 0x3c, 0x45, 0x43, 0x43, 0x41, 0x42, 0x4d, 0x53, 0x4e,\n    0x44, 0x40, 0x48, 0x55, 0x5c, 0x61, 0x61, 0x5c, 0x49, 0x3b, 0x35, 0x38, 0x36, 0x32, 0x2e, 0x28,\n    0x2d, 0x35, 0x3e, 0x44, 0x45, 0x43, 0x41, 0x41, 0x35, 0x32, 0x3d, 0x55, 0x68, 0x6f, 0x75, 0x7d,\n    0x79, 0x7f, 0x7e, 0x71, 0x64, 0x5e, 0x5d, 0x5c, 0x61, 0x5b, 0x58, 0x50, 0x43, 0x3b, 0x38, 0x33,\n    0x3f, 0x47, 0x4d, 0x49, 0x3c, 0x31, 0x2e, 0x2f, 0x30, 0x2c, 0x25, 0x22, 0x22, 0x25, 0x29, 0x2b,\n    0x29, 0x27, 0x2b, 0x35, 0x41, 0x4b, 0x54, 0x5a, 0x3e, 0x2b, 0x25, 0x35, 0x3c, 0x2f, 0x26, 0x29,\n    0x2c, 0x28, 0x26, 0x2a, 0x2f, 0x31, 0x2d, 0x28, 0x31, 0x41, 0x50, 0x50, 0x44, 0x3e, 0x47, 0x54,\n    0x55, 0x58, 0x61, 0x66, 0x5e, 0x4f, 0x4a, 0x4f, 0x56, 0x48, 0x4d, 0x56, 0x51, 0x52, 0x53, 0x47,\n    0x3f, 0x3a, 0x48, 0x5d, 0x62, 0x5c, 0x5b, 0x5c, 0x5b, 0x59, 0x43, 0x2d, 0x32, 0x43, 0x4c, 0x4e,\n    0x4d, 0x46, 0x3d, 0x31, 0x33, 0x31, 0x2d, 0x40, 0x41, 0x5d, 0x5a, 0x50, 0x49, 0x38, 0x34, 0x39,\n    0x46, 0x46, 0x47, 0x48, 0x48, 0x44, 0x3a, 0x32, 0x39, 0x36, 0x42, 0x30, 0x35, 0x3d, 0x4b, 0x59,\n    0x50, 0x49, 0x43, 0x49, 0x59, 0x62, 0x56, 0x44, 0x46, 0x4a, 0x50, 0x51, 0x49, 0x3f, 0x42, 0x4b,\n    0x33, 0x39, 0x37, 0x2a, 0x21, 0x21, 0x20, 0x1d, 0x20, 0x24, 0x27, 0x24, 0x1d, 0x19, 0x1b, 0x1f,\n    0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x21, 0x24, 0x27, 0x25, 0x29, 0x31, 0x3a, 0x3a, 0x30, 0x25, 0x1e,\n    0x24, 0x25, 0x28, 0x2e, 0x32, 0x32, 0x2e, 0x2a, 0x1f, 0x21, 0x21, 0x1f, 0x1e, 0x22, 0x28, 0x2c,\n    0x2e, 0x2c, 0x27, 0x20, 0x1d, 0x1f, 0x20, 0x1f, 0x18, 0x17, 0x18, 0x19, 0x18, 0x16, 0x16, 0x19,\n    0x1e, 0x1c, 0x1a, 0x1a, 0x1c, 0x1d, 0x1d, 0x1c, 0x19, 0x19, 0x1a, 0x1c, 0x1d, 0x1d, 0x1b, 0x18,\n    0x19, 0x19, 0x19, 0x1a, 0x1b, 0x1b, 0x1c, 0x1c, 0x1d, 0x1d, 0x1f, 0x23, 0x29, 0x30, 0x34, 0x36,\n    0x36, 0x38, 0x38, 0x31, 0x26, 0x1d, 0x19, 0x19, 0x1f, 0x1e, 0x1d, 0x1e, 0x1f, 0x20, 0x1f, 0x1f,\n    0x22, 0x1f, 0x20, 0x26, 0x2e, 0x32, 0x35, 0x37, 0x3b, 0x3b, 0x3b, 0x3b, 0x37, 0x2f, 0x28, 0x25,\n    0x27, 0x2a, 0x2d, 0x2e, 0x2d, 0x2c, 0x2a, 0x2a, 0x2b, 0x32, 0x33, 0x31, 0x2f, 0x2b, 0x2f, 0x3c,\n    0x51, 0x57, 0x5b, 0x59, 0x57, 0x59, 0x5d, 0x5f, 0x59, 0x58, 0x57, 0x59, 0x5b, 0x5b, 0x58, 0x55,\n    0x42, 0x34, 0x28, 0x25, 0x25, 0x24, 0x24, 0x25, 0x23, 0x1f, 0x1c, 0x1e, 0x21, 0x24, 0x28, 0x2c,\n    0x26, 0x28, 0x2c, 0x31, 0x35, 0x35, 0x32, 0x2e, 0x28, 0x29, 0x29, 0x2a, 0x2c, 0x30, 0x31, 0x2f,\n    0x23, 0x20, 0x1d, 0x1e, 0x21, 0x24, 0x2a, 0x30, 0x36, 0x39, 0x39, 0x36, 0x35, 0x37, 0x38, 0x38,\n    0x3a, 0x40, 0x46, 0x46, 0x43, 0x42, 0x46, 0x4b, 0x5a, 0x60, 0x61, 0x64, 0x70, 0x71, 0x5f, 0x4e,\n    0x4d, 0x58, 0x64, 0x69, 0x64, 0x5e, 0x5c, 0x5c, 0x69, 0x63, 0x59, 0x54, 0x56, 0x59, 0x57, 0x52,\n    0x58, 0x54, 0x4f, 0x4a, 0x46, 0x46, 0x4f, 0x58, 0x61, 0x5f, 0x56, 0x50, 0x50, 0x4d, 0x48, 0x4a,\n    0x4e, 0x51, 0x58, 0x65, 0x6e, 0x72, 0x72, 0x72, 0x7b, 0x89, 0x98, 0x9f, 0xa4, 0xa7, 0xa7, 0xa3,\n    0x9c, 0x8a, 0x78, 0x70, 0x6f, 0x70, 0x73, 0x77, 0x77, 0x75, 0x75, 0x79, 0x7d, 0x7f, 0x82, 0x86,\n    0x8c, 0x8f, 0x92, 0x94, 0x95, 0x97, 0x9b, 0x9f, 0xa0, 0xa0, 0xa0, 0xa0, 0xa0, 0x9f, 0x9f, 0x9e,\n    0xa0, 0xa1, 0xa2, 0xa2, 0xa3, 0xa2, 0xa2, 0xa1, 0xa0, 0x9f, 0x9e, 0x9d, 0x9d, 0x9c, 0x9c, 0x9c,\n    0x9b, 0x9a, 0x99, 0x99, 0x99, 0x97, 0x95, 0x93, 0x90, 0x8e, 0x8b, 0x88, 0x83, 0x7e, 0x78, 0x74,\n    0x6f, 0x69, 0x66, 0x67, 0x66, 0x62, 0x61, 0x64, 0x5f, 0x5f, 0x5f, 0x62, 0x66, 0x69, 0x6c, 0x6c,\n    0x6f, 0x72, 0x75, 0x76, 0x77, 0x77, 0x78, 0x78, 0x79, 0x79, 0x79, 0x7b, 0x7c, 0x7c, 0x7b, 0x7a,\n    0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7f, 0x81, 0x82, 0x82, 0x81,\n    0x81, 0x81, 0x80, 0x7f, 0x7f, 0x7e, 0x7e, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x80, 0x80, 0x80,\n    0x82, 0x82, 0x83, 0x84, 0x84, 0x84, 0x83, 0x82, 0x82, 0x81, 0x7f, 0x7d, 0x7a, 0x78, 0x78, 0x79,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7b, 0x7a, 0x79, 0x77, 0x76, 0x73, 0x70, 0x6e,\n    0x6c, 0x68, 0x63, 0x5f, 0x5e, 0x5c, 0x59, 0x57, 0x52, 0x50, 0x4e, 0x4d, 0x4c, 0x4b, 0x49, 0x48,\n    0x47, 0x44, 0x40, 0x3d, 0x38, 0x36, 0x38, 0x3d, 0x3f, 0x3f, 0x43, 0x47, 0x4b, 0x54, 0x55, 0x4c,\n    0x49, 0x3c, 0x38, 0x3c, 0x3a, 0x38, 0x39, 0x3a, 0x40, 0x3b, 0x3f, 0x46, 0x3f, 0x34, 0x29, 0x1f,\n    0x25, 0x28, 0x2e, 0x36, 0x3d, 0x40, 0x3d, 0x39, 0x33, 0x32, 0x36, 0x49, 0x67, 0x83, 0x90, 0x91,\n    0x82, 0x79, 0x71, 0x71, 0x76, 0x77, 0x71, 0x6a, 0x6c, 0x67, 0x64, 0x5e, 0x57, 0x53, 0x49, 0x39,\n    0x37, 0x3d, 0x45, 0x47, 0x3c, 0x2e, 0x29, 0x2d, 0x30, 0x2c, 0x26, 0x22, 0x20, 0x20, 0x20, 0x20,\n    0x20, 0x21, 0x26, 0x2d, 0x36, 0x44, 0x56, 0x65, 0x4b, 0x31, 0x27, 0x38, 0x3f, 0x30, 0x24, 0x27,\n    0x28, 0x23, 0x21, 0x24, 0x2b, 0x2f, 0x2c, 0x27, 0x36, 0x44, 0x4e, 0x4a, 0x43, 0x47, 0x51, 0x58,\n    0x55, 0x58, 0x5d, 0x5d, 0x52, 0x45, 0x47, 0x52, 0x5d, 0x4d, 0x48, 0x4d, 0x56, 0x65, 0x63, 0x4d,\n    0x35, 0x2d, 0x3b, 0x57, 0x61, 0x5b, 0x58, 0x57, 0x5f, 0x54, 0x3a, 0x28, 0x33, 0x49, 0x54, 0x57,\n    0x54, 0x4f, 0x48, 0x3d, 0x3e, 0x38, 0x2e, 0x3c, 0x4f, 0x60, 0x53, 0x46, 0x45, 0x41, 0x43, 0x46,\n    0x54, 0x52, 0x50, 0x4f, 0x4c, 0x45, 0x3b, 0x34, 0x40, 0x3a, 0x3e, 0x31, 0x33, 0x36, 0x3a, 0x3e,\n    0x46, 0x3d, 0x3d, 0x49, 0x50, 0x44, 0x32, 0x26, 0x26, 0x3b, 0x56, 0x62, 0x58, 0x46, 0x3e, 0x40,\n    0x2a, 0x31, 0x32, 0x2a, 0x23, 0x22, 0x22, 0x20, 0x25, 0x28, 0x2a, 0x25, 0x1e, 0x19, 0x1b, 0x1f,\n    0x1d, 0x1d, 0x1e, 0x1f, 0x22, 0x26, 0x2b, 0x2e, 0x2b, 0x27, 0x28, 0x2d, 0x2c, 0x25, 0x20, 0x21,\n    0x1e, 0x1f, 0x22, 0x26, 0x2a, 0x2c, 0x2d, 0x2c, 0x26, 0x24, 0x20, 0x1e, 0x1f, 0x26, 0x2e, 0x33,\n    0x34, 0x32, 0x2d, 0x25, 0x22, 0x22, 0x22, 0x21, 0x1b, 0x19, 0x19, 0x19, 0x17, 0x15, 0x16, 0x18,\n    0x1c, 0x18, 0x16, 0x15, 0x18, 0x1a, 0x1b, 0x1a, 0x1b, 0x1b, 0x1b, 0x1d, 0x1e, 0x1d, 0x1b, 0x19,\n    0x19, 0x18, 0x18, 0x17, 0x17, 0x18, 0x1a, 0x1b, 0x1c, 0x1d, 0x1f, 0x23, 0x29, 0x2e, 0x32, 0x33,\n    0x34, 0x35, 0x33, 0x2c, 0x23, 0x1c, 0x1a, 0x1c, 0x1e, 0x1f, 0x1f, 0x20, 0x21, 0x20, 0x1f, 0x1e,\n    0x22, 0x20, 0x22, 0x2a, 0x32, 0x38, 0x3a, 0x39, 0x37, 0x35, 0x36, 0x38, 0x34, 0x2b, 0x26, 0x27,\n    0x26, 0x29, 0x2c, 0x2d, 0x2c, 0x2a, 0x2a, 0x2b, 0x2b, 0x33, 0x35, 0x33, 0x31, 0x2d, 0x31, 0x3d,\n    0x4f, 0x58, 0x60, 0x62, 0x61, 0x61, 0x60, 0x5f, 0x56, 0x53, 0x50, 0x50, 0x53, 0x53, 0x50, 0x4c,\n    0x3f, 0x34, 0x2a, 0x27, 0x26, 0x25, 0x25, 0x26, 0x25, 0x23, 0x22, 0x24, 0x24, 0x22, 0x21, 0x21,\n    0x21, 0x24, 0x2a, 0x32, 0x38, 0x38, 0x33, 0x2e, 0x26, 0x28, 0x2a, 0x2c, 0x2d, 0x2e, 0x2d, 0x2b,\n    0x25, 0x21, 0x1d, 0x1d, 0x1f, 0x21, 0x27, 0x2d, 0x31, 0x35, 0x37, 0x37, 0x38, 0x3a, 0x3b, 0x3a,\n    0x36, 0x3c, 0x44, 0x49, 0x4a, 0x49, 0x4a, 0x4b, 0x58, 0x5c, 0x5d, 0x5f, 0x61, 0x59, 0x55, 0x5b,\n    0x5d, 0x6d, 0x7c, 0x7e, 0x76, 0x6e, 0x6a, 0x68, 0x66, 0x5e, 0x56, 0x57, 0x62, 0x6b, 0x69, 0x62,\n    0x55, 0x50, 0x4b, 0x47, 0x44, 0x45, 0x4b, 0x52, 0x54, 0x58, 0x57, 0x58, 0x60, 0x64, 0x66, 0x6d,\n    0x62, 0x5e, 0x62, 0x6c, 0x73, 0x70, 0x6b, 0x6a, 0x66, 0x70, 0x81, 0x93, 0x9e, 0xa1, 0xa2, 0xa2,\n    0x9e, 0x8f, 0x7e, 0x74, 0x71, 0x71, 0x74, 0x78, 0x77, 0x75, 0x76, 0x7a, 0x7d, 0x80, 0x83, 0x87,\n    0x8e, 0x91, 0x93, 0x95, 0x96, 0x98, 0x9d, 0xa0, 0xa0, 0xa0, 0xa1, 0xa2, 0xa2, 0xa2, 0xa2, 0xa2,\n    0xa2, 0xa3, 0xa3, 0xa4, 0xa4, 0xa4, 0xa4, 0xa3, 0xa2, 0xa2, 0xa1, 0xa1, 0xa0, 0xa0, 0xa0, 0xa0,\n    0x9f, 0x9d, 0x9c, 0x9b, 0x9a, 0x99, 0x97, 0x95, 0x93, 0x91, 0x8e, 0x8b, 0x87, 0x83, 0x7e, 0x7b,\n    0x70, 0x6c, 0x6b, 0x6c, 0x6c, 0x67, 0x62, 0x61, 0x5e, 0x5d, 0x5d, 0x5e, 0x61, 0x64, 0x66, 0x66,\n    0x68, 0x6b, 0x6f, 0x72, 0x73, 0x74, 0x75, 0x75, 0x75, 0x76, 0x78, 0x79, 0x7a, 0x7a, 0x79, 0x78,\n    0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7f, 0x80, 0x80, 0x80,\n    0x80, 0x80, 0x80, 0x7f, 0x7f, 0x7e, 0x7e, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f,\n    0x83, 0x84, 0x85, 0x87, 0x87, 0x87, 0x86, 0x86, 0x84, 0x84, 0x82, 0x80, 0x7d, 0x7c, 0x7c, 0x7c,\n    0x7d, 0x7d, 0x7e, 0x7e, 0x7f, 0x80, 0x80, 0x81, 0x81, 0x7f, 0x7d, 0x7a, 0x78, 0x75, 0x72, 0x6f,\n    0x6d, 0x69, 0x65, 0x62, 0x5f, 0x5c, 0x59, 0x57, 0x52, 0x50, 0x4e, 0x4d, 0x4c, 0x4b, 0x49, 0x47,\n    0x49, 0x45, 0x40, 0x39, 0x35, 0x37, 0x3d, 0x43, 0x43, 0x3b, 0x3b, 0x44, 0x53, 0x66, 0x6e, 0x68,\n    0x4e, 0x3e, 0x32, 0x2d, 0x2a, 0x2d, 0x32, 0x30, 0x37, 0x31, 0x35, 0x38, 0x31, 0x2a, 0x29, 0x27,\n    0x2c, 0x2c, 0x2e, 0x36, 0x3e, 0x41, 0x3e, 0x3a, 0x36, 0x32, 0x31, 0x3e, 0x5e, 0x7f, 0x90, 0x92,\n    0x91, 0x7b, 0x67, 0x63, 0x6c, 0x73, 0x73, 0x71, 0x71, 0x6e, 0x6e, 0x6f, 0x74, 0x7b, 0x73, 0x5f,\n    0x3e, 0x3a, 0x3a, 0x3e, 0x36, 0x29, 0x25, 0x2b, 0x2f, 0x2c, 0x27, 0x24, 0x21, 0x1f, 0x1e, 0x1d,\n    0x20, 0x22, 0x29, 0x31, 0x39, 0x42, 0x4e, 0x58, 0x4d, 0x36, 0x2a, 0x32, 0x36, 0x2b, 0x22, 0x23,\n    0x25, 0x21, 0x1e, 0x22, 0x2a, 0x2f, 0x2e, 0x2b, 0x39, 0x49, 0x51, 0x4a, 0x45, 0x4c, 0x52, 0x50,\n    0x51, 0x51, 0x52, 0x50, 0x46, 0x3e, 0x47, 0x56, 0x5f, 0x58, 0x52, 0x4a, 0x46, 0x4f, 0x53, 0x49,\n    0x3b, 0x3b, 0x47, 0x4b, 0x36, 0x25, 0x31, 0x45, 0x65, 0x53, 0x35, 0x26, 0x35, 0x49, 0x52, 0x55,\n    0x52, 0x50, 0x4d, 0x45, 0x46, 0x3c, 0x2c, 0x35, 0x49, 0x5d, 0x55, 0x41, 0x2b, 0x24, 0x40, 0x5d,\n    0x61, 0x5f, 0x5b, 0x54, 0x4a, 0x3f, 0x39, 0x38, 0x36, 0x43, 0x50, 0x43, 0x30, 0x2a, 0x38, 0x4a,\n    0x48, 0x3b, 0x30, 0x2b, 0x21, 0x17, 0x1c, 0x28, 0x28, 0x3c, 0x54, 0x5d, 0x51, 0x3e, 0x35, 0x37,\n    0x28, 0x28, 0x29, 0x2a, 0x2b, 0x2a, 0x29, 0x29, 0x24, 0x25, 0x25, 0x22, 0x1d, 0x19, 0x19, 0x1a,\n    0x1c, 0x1d, 0x1e, 0x1f, 0x22, 0x26, 0x2b, 0x2f, 0x2a, 0x24, 0x21, 0x24, 0x23, 0x1f, 0x1d, 0x20,\n    0x1f, 0x21, 0x24, 0x25, 0x27, 0x2b, 0x32, 0x38, 0x37, 0x2e, 0x23, 0x1d, 0x1e, 0x22, 0x27, 0x29,\n    0x2d, 0x2d, 0x2a, 0x25, 0x22, 0x22, 0x21, 0x1f, 0x1e, 0x1b, 0x1a, 0x19, 0x17, 0x16, 0x18, 0x1c,\n    0x1e, 0x1b, 0x18, 0x17, 0x18, 0x1b, 0x1d, 0x1d, 0x1e, 0x1d, 0x1c, 0x1b, 0x1c, 0x1b, 0x1a, 0x18,\n    0x1a, 0x19, 0x18, 0x17, 0x17, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x20, 0x25, 0x2c, 0x32, 0x36, 0x38,\n    0x3c, 0x3c, 0x37, 0x2e, 0x23, 0x1c, 0x1b, 0x1d, 0x1b, 0x1c, 0x1f, 0x20, 0x1f, 0x1d, 0x1a, 0x19,\n    0x1d, 0x1f, 0x24, 0x2b, 0x33, 0x39, 0x3b, 0x3a, 0x37, 0x33, 0x32, 0x33, 0x2e, 0x26, 0x24, 0x27,\n    0x29, 0x2b, 0x2d, 0x2c, 0x2b, 0x2a, 0x2c, 0x2f, 0x29, 0x2f, 0x2f, 0x2c, 0x2b, 0x2a, 0x31, 0x3f,\n    0x41, 0x4b, 0x55, 0x5a, 0x5d, 0x60, 0x61, 0x61, 0x60, 0x5f, 0x61, 0x66, 0x6c, 0x6c, 0x67, 0x62,\n    0x52, 0x45, 0x35, 0x2a, 0x25, 0x23, 0x24, 0x25, 0x29, 0x26, 0x26, 0x27, 0x25, 0x20, 0x1c, 0x1a,\n    0x1e, 0x20, 0x25, 0x2c, 0x31, 0x30, 0x2a, 0x25, 0x26, 0x28, 0x2c, 0x2f, 0x2e, 0x2b, 0x28, 0x26,\n    0x24, 0x20, 0x1e, 0x1f, 0x20, 0x21, 0x25, 0x29, 0x29, 0x2f, 0x34, 0x36, 0x38, 0x3a, 0x3b, 0x39,\n    0x3b, 0x3f, 0x45, 0x48, 0x49, 0x49, 0x49, 0x49, 0x57, 0x52, 0x4e, 0x53, 0x5a, 0x58, 0x59, 0x65,\n    0x6e, 0x73, 0x73, 0x6b, 0x62, 0x5e, 0x5f, 0x60, 0x6e, 0x65, 0x5a, 0x57, 0x5d, 0x60, 0x59, 0x4f,\n    0x51, 0x4b, 0x47, 0x48, 0x4a, 0x4b, 0x4c, 0x4e, 0x61, 0x62, 0x5b, 0x52, 0x4f, 0x4f, 0x53, 0x5d,\n    0x69, 0x6a, 0x70, 0x75, 0x70, 0x66, 0x62, 0x65, 0x57, 0x58, 0x68, 0x82, 0x93, 0x96, 0x98, 0x9c,\n    0x9f, 0x93, 0x84, 0x7a, 0x74, 0x73, 0x74, 0x76, 0x76, 0x75, 0x77, 0x7b, 0x7f, 0x81, 0x85, 0x89,\n    0x8f, 0x92, 0x94, 0x95, 0x96, 0x99, 0x9d, 0xa0, 0xa1, 0xa2, 0xa3, 0xa3, 0xa4, 0xa4, 0xa4, 0xa4,\n    0xa4, 0xa5, 0xa5, 0xa5, 0xa5, 0xa6, 0xa5, 0xa5, 0xa4, 0xa4, 0xa4, 0xa3, 0xa3, 0xa2, 0xa2, 0xa2,\n    0xa1, 0x9f, 0x9d, 0x9c, 0x9b, 0x9a, 0x99, 0x97, 0x94, 0x92, 0x90, 0x8e, 0x8c, 0x89, 0x85, 0x83,\n    0x78, 0x74, 0x6f, 0x6e, 0x6d, 0x6a, 0x66, 0x64, 0x60, 0x5e, 0x5d, 0x5d, 0x5e, 0x60, 0x61, 0x61,\n    0x61, 0x64, 0x69, 0x6c, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x73, 0x75, 0x77, 0x78, 0x78, 0x78, 0x78,\n    0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7d, 0x7d, 0x7e, 0x7e, 0x7d, 0x7d, 0x7e, 0x7e,\n    0x7d, 0x7e, 0x7f, 0x80, 0x80, 0x80, 0x7e, 0x7d, 0x7d, 0x7e, 0x7f, 0x7f, 0x80, 0x80, 0x80, 0x80,\n    0x84, 0x85, 0x87, 0x89, 0x8a, 0x8a, 0x8a, 0x89, 0x89, 0x88, 0x87, 0x86, 0x85, 0x84, 0x83, 0x82,\n    0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x86, 0x84, 0x81, 0x7e, 0x7b, 0x77, 0x74, 0x71,\n    0x6b, 0x69, 0x66, 0x63, 0x60, 0x5d, 0x5a, 0x59, 0x53, 0x51, 0x4f, 0x4d, 0x4c, 0x4b, 0x49, 0x47,\n    0x48, 0x45, 0x3e, 0x38, 0x38, 0x3f, 0x49, 0x50, 0x47, 0x46, 0x4e, 0x55, 0x56, 0x57, 0x51, 0x45,\n    0x38, 0x32, 0x2e, 0x2e, 0x37, 0x4a, 0x52, 0x4a, 0x2f, 0x22, 0x20, 0x29, 0x2e, 0x31, 0x32, 0x2e,\n    0x33, 0x2e, 0x2a, 0x2b, 0x31, 0x38, 0x3c, 0x3d, 0x3c, 0x34, 0x2e, 0x37, 0x50, 0x6d, 0x82, 0x8c,\n    0x8c, 0x7e, 0x6b, 0x58, 0x4a, 0x45, 0x4c, 0x54, 0x4c, 0x48, 0x4a, 0x51, 0x5e, 0x6e, 0x6d, 0x5c,\n    0x41, 0x38, 0x36, 0x3e, 0x3d, 0x31, 0x2a, 0x2d, 0x2c, 0x2a, 0x28, 0x28, 0x29, 0x29, 0x29, 0x29,\n    0x1e, 0x1f, 0x26, 0x34, 0x41, 0x47, 0x4a, 0x4b, 0x4d, 0x3e, 0x30, 0x2a, 0x28, 0x24, 0x20, 0x1e,\n    0x24, 0x20, 0x1f, 0x22, 0x2a, 0x2f, 0x2f, 0x2d, 0x33, 0x49, 0x51, 0x41, 0x35, 0x3d, 0x4a, 0x4f,\n    0x4e, 0x50, 0x56, 0x59, 0x4f, 0x43, 0x44, 0x4d, 0x3d, 0x2e, 0x24, 0x2b, 0x3e, 0x4e, 0x49, 0x39,\n    0x31, 0x26, 0x28, 0x2f, 0x2e, 0x33, 0x47, 0x59, 0x51, 0x3e, 0x25, 0x21, 0x38, 0x4c, 0x55, 0x5a,\n    0x5c, 0x59, 0x55, 0x4d, 0x4e, 0x46, 0x38, 0x44, 0x59, 0x57, 0x49, 0x43, 0x3a, 0x32, 0x43, 0x54,\n    0x68, 0x5e, 0x52, 0x49, 0x42, 0x3e, 0x3f, 0x42, 0x4d, 0x55, 0x53, 0x48, 0x33, 0x2d, 0x3b, 0x4b,\n    0x3b, 0x33, 0x2d, 0x2d, 0x2b, 0x25, 0x22, 0x24, 0x3e, 0x4a, 0x58, 0x5b, 0x4f, 0x40, 0x38, 0x36,\n    0x2b, 0x26, 0x23, 0x25, 0x27, 0x26, 0x25, 0x26, 0x21, 0x20, 0x20, 0x1e, 0x1c, 0x1a, 0x18, 0x18,\n    0x1d, 0x1d, 0x1e, 0x1e, 0x1f, 0x21, 0x25, 0x27, 0x25, 0x25, 0x28, 0x2c, 0x2c, 0x28, 0x23, 0x20,\n    0x25, 0x29, 0x2b, 0x2c, 0x2c, 0x31, 0x3a, 0x43, 0x38, 0x2d, 0x21, 0x1c, 0x1e, 0x1f, 0x20, 0x21,\n    0x24, 0x25, 0x24, 0x21, 0x20, 0x20, 0x1f, 0x1d, 0x1c, 0x1a, 0x19, 0x1a, 0x19, 0x18, 0x1b, 0x1f,\n    0x1f, 0x1e, 0x1c, 0x1b, 0x1a, 0x1b, 0x1d, 0x1e, 0x1e, 0x1d, 0x1b, 0x1b, 0x1b, 0x1a, 0x19, 0x17,\n    0x18, 0x18, 0x17, 0x17, 0x17, 0x18, 0x19, 0x1a, 0x19, 0x1a, 0x1d, 0x23, 0x2c, 0x34, 0x39, 0x3c,\n    0x3b, 0x3b, 0x37, 0x2f, 0x24, 0x1e, 0x1e, 0x20, 0x1b, 0x1d, 0x20, 0x20, 0x1f, 0x1c, 0x1a, 0x18,\n    0x1e, 0x24, 0x2b, 0x30, 0x34, 0x39, 0x3b, 0x3b, 0x3b, 0x38, 0x34, 0x2f, 0x28, 0x21, 0x20, 0x22,\n    0x23, 0x26, 0x29, 0x2b, 0x2b, 0x2e, 0x34, 0x39, 0x31, 0x32, 0x2b, 0x24, 0x23, 0x24, 0x2d, 0x3c,\n    0x48, 0x4f, 0x55, 0x59, 0x5c, 0x60, 0x63, 0x64, 0x67, 0x6b, 0x71, 0x79, 0x7e, 0x7b, 0x73, 0x6c,\n    0x5e, 0x4e, 0x37, 0x26, 0x1f, 0x20, 0x24, 0x26, 0x29, 0x25, 0x22, 0x22, 0x21, 0x1e, 0x1d, 0x1d,\n    0x24, 0x25, 0x27, 0x2a, 0x2b, 0x29, 0x24, 0x20, 0x24, 0x26, 0x29, 0x2c, 0x2a, 0x25, 0x21, 0x21,\n    0x21, 0x1f, 0x1e, 0x20, 0x22, 0x23, 0x26, 0x29, 0x2b, 0x31, 0x36, 0x38, 0x39, 0x3b, 0x3a, 0x38,\n    0x3d, 0x3e, 0x40, 0x41, 0x43, 0x47, 0x4c, 0x4f, 0x52, 0x52, 0x4f, 0x4e, 0x4d, 0x46, 0x47, 0x53,\n    0x5c, 0x5c, 0x5c, 0x5b, 0x59, 0x58, 0x58, 0x59, 0x58, 0x55, 0x52, 0x52, 0x56, 0x58, 0x54, 0x4d,\n    0x4c, 0x45, 0x41, 0x45, 0x4c, 0x4e, 0x4d, 0x4b, 0x4c, 0x52, 0x50, 0x4a, 0x46, 0x42, 0x43, 0x4c,\n    0x4d, 0x4f, 0x56, 0x61, 0x66, 0x61, 0x59, 0x53, 0x52, 0x4f, 0x59, 0x71, 0x85, 0x8b, 0x90, 0x97,\n    0x9e, 0x99, 0x8f, 0x84, 0x7a, 0x74, 0x73, 0x74, 0x74, 0x74, 0x77, 0x7c, 0x80, 0x82, 0x87, 0x8c,\n    0x90, 0x92, 0x95, 0x97, 0x97, 0x99, 0x9d, 0xa0, 0xa4, 0xa4, 0xa5, 0xa5, 0xa5, 0xa5, 0xa4, 0xa4,\n    0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa7, 0xa7, 0xa7, 0xa5, 0xa5, 0xa5, 0xa5, 0xa4, 0xa3, 0xa2, 0xa2,\n    0xa1, 0x9f, 0x9c, 0x9b, 0x9b, 0x9a, 0x99, 0x99, 0x95, 0x93, 0x91, 0x90, 0x8f, 0x8d, 0x8a, 0x88,\n    0x84, 0x7d, 0x74, 0x6f, 0x6d, 0x6c, 0x6b, 0x69, 0x62, 0x60, 0x5d, 0x5b, 0x5b, 0x5c, 0x5c, 0x5c,\n    0x5b, 0x5e, 0x62, 0x65, 0x67, 0x68, 0x6a, 0x6b, 0x6d, 0x6f, 0x72, 0x74, 0x75, 0x75, 0x76, 0x77,\n    0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7d,\n    0x7c, 0x7d, 0x7f, 0x80, 0x80, 0x80, 0x7e, 0x7d, 0x7d, 0x7e, 0x80, 0x81, 0x82, 0x83, 0x83, 0x82,\n    0x85, 0x87, 0x88, 0x8a, 0x8c, 0x8d, 0x8d, 0x8d, 0x8f, 0x8e, 0x8d, 0x8d, 0x8e, 0x8e, 0x8d, 0x8c,\n    0x8a, 0x8a, 0x8b, 0x8b, 0x8a, 0x8a, 0x89, 0x88, 0x8b, 0x89, 0x85, 0x81, 0x7d, 0x79, 0x75, 0x73,\n    0x6a, 0x69, 0x67, 0x65, 0x62, 0x5e, 0x5c, 0x5a, 0x54, 0x53, 0x50, 0x4f, 0x4e, 0x4c, 0x4a, 0x48,\n    0x4a, 0x46, 0x3e, 0x37, 0x38, 0x40, 0x48, 0x4d, 0x4b, 0x5a, 0x71, 0x77, 0x64, 0x4b, 0x35, 0x25,\n    0x23, 0x24, 0x26, 0x27, 0x2f, 0x40, 0x43, 0x33, 0x2a, 0x22, 0x24, 0x2d, 0x2f, 0x30, 0x31, 0x2e,\n    0x27, 0x25, 0x25, 0x29, 0x30, 0x36, 0x37, 0x37, 0x38, 0x36, 0x3a, 0x49, 0x5b, 0x69, 0x73, 0x79,\n    0x74, 0x76, 0x76, 0x6f, 0x62, 0x53, 0x47, 0x41, 0x45, 0x3e, 0x3b, 0x3e, 0x46, 0x53, 0x54, 0x49,\n    0x34, 0x2f, 0x34, 0x41, 0x44, 0x38, 0x2d, 0x2a, 0x2d, 0x2b, 0x29, 0x29, 0x29, 0x2a, 0x2b, 0x2b,\n    0x31, 0x2f, 0x34, 0x42, 0x52, 0x59, 0x59, 0x56, 0x4f, 0x46, 0x37, 0x29, 0x22, 0x20, 0x1e, 0x1c,\n    0x22, 0x21, 0x21, 0x23, 0x28, 0x2b, 0x2d, 0x2c, 0x36, 0x41, 0x41, 0x33, 0x31, 0x44, 0x55, 0x59,\n    0x50, 0x54, 0x5b, 0x5d, 0x50, 0x3e, 0x39, 0x3e, 0x49, 0x54, 0x5a, 0x53, 0x49, 0x43, 0x41, 0x40,\n    0x30, 0x23, 0x23, 0x33, 0x42, 0x4c, 0x4e, 0x49, 0x3c, 0x2c, 0x1d, 0x25, 0x40, 0x51, 0x57, 0x5d,\n    0x55, 0x4f, 0x45, 0x36, 0x33, 0x2e, 0x27, 0x38, 0x54, 0x5f, 0x60, 0x5b, 0x47, 0x3d, 0x59, 0x72,\n    0x6e, 0x5a, 0x46, 0x41, 0x45, 0x4b, 0x50, 0x54, 0x5d, 0x51, 0x36, 0x33, 0x2e, 0x35, 0x3d, 0x40,\n    0x52, 0x43, 0x32, 0x28, 0x27, 0x2b, 0x32, 0x37, 0x46, 0x52, 0x61, 0x67, 0x5e, 0x4d, 0x3b, 0x31,\n    0x39, 0x38, 0x31, 0x26, 0x1f, 0x1e, 0x1d, 0x1b, 0x1c, 0x1d, 0x1e, 0x1e, 0x1d, 0x1b, 0x1a, 0x1a,\n    0x1d, 0x1e, 0x1e, 0x1d, 0x1c, 0x1c, 0x1e, 0x1f, 0x22, 0x27, 0x2d, 0x30, 0x32, 0x30, 0x2a, 0x24,\n    0x21, 0x24, 0x27, 0x28, 0x27, 0x29, 0x2e, 0x32, 0x2a, 0x22, 0x1d, 0x1e, 0x20, 0x20, 0x21, 0x22,\n    0x20, 0x21, 0x21, 0x1e, 0x1d, 0x1e, 0x1e, 0x1c, 0x1b, 0x1b, 0x1c, 0x1d, 0x1c, 0x1a, 0x1a, 0x1d,\n    0x17, 0x1a, 0x1c, 0x1b, 0x18, 0x15, 0x14, 0x15, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1b, 0x18, 0x16,\n    0x17, 0x17, 0x18, 0x19, 0x19, 0x19, 0x19, 0x19, 0x18, 0x19, 0x1b, 0x20, 0x28, 0x31, 0x37, 0x3a,\n    0x34, 0x36, 0x36, 0x31, 0x28, 0x21, 0x20, 0x21, 0x1c, 0x1e, 0x1f, 0x1f, 0x1d, 0x1c, 0x1c, 0x1c,\n    0x21, 0x2c, 0x35, 0x36, 0x34, 0x35, 0x38, 0x39, 0x3e, 0x3e, 0x39, 0x2e, 0x25, 0x20, 0x1e, 0x1d,\n    0x1e, 0x22, 0x26, 0x28, 0x29, 0x2d, 0x34, 0x3a, 0x36, 0x35, 0x2c, 0x25, 0x25, 0x24, 0x29, 0x35,\n    0x49, 0x4f, 0x56, 0x59, 0x5a, 0x5c, 0x5d, 0x5b, 0x63, 0x65, 0x68, 0x6c, 0x6c, 0x69, 0x63, 0x5f,\n    0x57, 0x48, 0x33, 0x24, 0x1f, 0x21, 0x23, 0x23, 0x25, 0x21, 0x1f, 0x1f, 0x20, 0x20, 0x20, 0x22,\n    0x28, 0x28, 0x28, 0x28, 0x27, 0x26, 0x25, 0x24, 0x24, 0x23, 0x24, 0x26, 0x24, 0x1f, 0x1e, 0x21,\n    0x22, 0x20, 0x20, 0x22, 0x23, 0x23, 0x25, 0x28, 0x2d, 0x32, 0x36, 0x38, 0x39, 0x3c, 0x3e, 0x3d,\n    0x38, 0x39, 0x3b, 0x3c, 0x3f, 0x45, 0x4c, 0x52, 0x53, 0x5b, 0x5a, 0x55, 0x4f, 0x48, 0x45, 0x4c,\n    0x49, 0x49, 0x4e, 0x56, 0x56, 0x4d, 0x43, 0x3f, 0x4b, 0x50, 0x53, 0x53, 0x52, 0x51, 0x4e, 0x4b,\n    0x4f, 0x45, 0x3e, 0x40, 0x46, 0x4a, 0x49, 0x48, 0x56, 0x5f, 0x63, 0x62, 0x60, 0x5a, 0x55, 0x59,\n    0x57, 0x56, 0x58, 0x60, 0x6a, 0x69, 0x5a, 0x49, 0x50, 0x51, 0x54, 0x5e, 0x6e, 0x7f, 0x8a, 0x8f,\n    0x98, 0x9c, 0x9b, 0x8e, 0x7e, 0x73, 0x72, 0x75, 0x72, 0x74, 0x77, 0x7d, 0x81, 0x83, 0x89, 0x8e,\n    0x90, 0x93, 0x97, 0x99, 0x99, 0x9a, 0x9d, 0xa0, 0xa3, 0xa4, 0xa5, 0xa5, 0xa6, 0xa6, 0xa6, 0xa6,\n    0xa7, 0xa7, 0xa6, 0xa6, 0xa7, 0xa7, 0xa7, 0xa8, 0xa5, 0xa6, 0xa5, 0xa5, 0xa4, 0xa3, 0xa1, 0xa1,\n    0xa0, 0x9e, 0x9b, 0x9a, 0x9a, 0x9a, 0x9a, 0x99, 0x98, 0x97, 0x95, 0x93, 0x92, 0x91, 0x8f, 0x8d,\n    0x8b, 0x85, 0x7c, 0x76, 0x74, 0x73, 0x6f, 0x6b, 0x64, 0x61, 0x5d, 0x5a, 0x59, 0x59, 0x58, 0x58,\n    0x5a, 0x5c, 0x5f, 0x61, 0x62, 0x64, 0x66, 0x68, 0x69, 0x6b, 0x6e, 0x70, 0x71, 0x72, 0x75, 0x77,\n    0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x7a, 0x7b, 0x7d, 0x7c, 0x7b, 0x7b, 0x7c, 0x7e,\n    0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7d, 0x7d, 0x7c, 0x7b, 0x7c, 0x7e, 0x81, 0x82, 0x83, 0x83, 0x83,\n    0x87, 0x87, 0x89, 0x8a, 0x8c, 0x8e, 0x8f, 0x90, 0x91, 0x90, 0x90, 0x92, 0x94, 0x95, 0x94, 0x93,\n    0x92, 0x92, 0x92, 0x91, 0x90, 0x8f, 0x8d, 0x8c, 0x8f, 0x8c, 0x88, 0x83, 0x7f, 0x7b, 0x77, 0x74,\n    0x6b, 0x6b, 0x6a, 0x67, 0x63, 0x5f, 0x5c, 0x5b, 0x56, 0x54, 0x52, 0x50, 0x4f, 0x4d, 0x4b, 0x49,\n    0x4c, 0x47, 0x3f, 0x38, 0x39, 0x3f, 0x42, 0x41, 0x33, 0x3a, 0x47, 0x48, 0x39, 0x2d, 0x2b, 0x29,\n    0x29, 0x29, 0x2b, 0x29, 0x28, 0x2f, 0x30, 0x25, 0x2e, 0x24, 0x23, 0x25, 0x23, 0x24, 0x2b, 0x2e,\n    0x20, 0x22, 0x28, 0x33, 0x3e, 0x41, 0x3c, 0x36, 0x31, 0x3b, 0x4c, 0x5f, 0x6b, 0x6c, 0x64, 0x5c,\n    0x53, 0x5f, 0x70, 0x7e, 0x84, 0x7d, 0x67, 0x52, 0x4a, 0x3f, 0x38, 0x35, 0x33, 0x37, 0x39, 0x33,\n    0x2b, 0x2a, 0x2f, 0x39, 0x3a, 0x31, 0x28, 0x25, 0x2e, 0x2b, 0x27, 0x24, 0x23, 0x23, 0x24, 0x24,\n    0x24, 0x24, 0x28, 0x34, 0x41, 0x47, 0x4a, 0x4a, 0x50, 0x45, 0x37, 0x2d, 0x25, 0x21, 0x1f, 0x1f,\n    0x24, 0x24, 0x25, 0x26, 0x26, 0x27, 0x28, 0x29, 0x3b, 0x3e, 0x3b, 0x36, 0x41, 0x57, 0x5f, 0x5a,\n    0x4f, 0x54, 0x5b, 0x59, 0x47, 0x33, 0x2f, 0x36, 0x4f, 0x5a, 0x59, 0x4e, 0x4d, 0x4d, 0x3f, 0x2e,\n    0x12, 0x23, 0x3a, 0x44, 0x3e, 0x3e, 0x46, 0x4a, 0x3f, 0x31, 0x27, 0x32, 0x47, 0x4e, 0x4b, 0x4e,\n    0x59, 0x53, 0x47, 0x35, 0x30, 0x2c, 0x29, 0x3e, 0x58, 0x5c, 0x56, 0x54, 0x50, 0x56, 0x6a, 0x6d,\n    0x6a, 0x5b, 0x4d, 0x49, 0x4a, 0x4b, 0x4f, 0x54, 0x42, 0x47, 0x37, 0x39, 0x2a, 0x31, 0x4b, 0x60,\n    0x4f, 0x47, 0x3f, 0x3a, 0x33, 0x2e, 0x31, 0x39, 0x55, 0x5a, 0x5f, 0x5d, 0x56, 0x4a, 0x3e, 0x36,\n    0x4d, 0x53, 0x4a, 0x31, 0x1f, 0x1e, 0x1e, 0x19, 0x17, 0x1a, 0x1d, 0x1e, 0x1c, 0x1a, 0x1a, 0x1b,\n    0x1d, 0x1d, 0x1d, 0x1d, 0x1b, 0x1b, 0x1c, 0x1d, 0x20, 0x25, 0x28, 0x28, 0x2b, 0x2f, 0x2d, 0x27,\n    0x24, 0x25, 0x28, 0x29, 0x28, 0x26, 0x24, 0x23, 0x20, 0x1d, 0x1e, 0x22, 0x23, 0x20, 0x20, 0x22,\n    0x1e, 0x1f, 0x1e, 0x1b, 0x1a, 0x1c, 0x1c, 0x1a, 0x1d, 0x1d, 0x20, 0x22, 0x1f, 0x1b, 0x18, 0x19,\n    0x1c, 0x22, 0x27, 0x27, 0x22, 0x1c, 0x1a, 0x1a, 0x19, 0x1a, 0x1c, 0x1e, 0x1e, 0x1c, 0x19, 0x16,\n    0x19, 0x1a, 0x1c, 0x1d, 0x1e, 0x1e, 0x1d, 0x1c, 0x1c, 0x1c, 0x1c, 0x20, 0x27, 0x2e, 0x34, 0x37,\n    0x38, 0x3b, 0x3c, 0x37, 0x2d, 0x23, 0x1e, 0x1e, 0x1a, 0x1b, 0x1b, 0x1a, 0x18, 0x19, 0x1b, 0x1e,\n    0x22, 0x2f, 0x3a, 0x38, 0x31, 0x2f, 0x32, 0x34, 0x3e, 0x41, 0x3c, 0x2f, 0x24, 0x21, 0x1e, 0x1b,\n    0x23, 0x26, 0x29, 0x28, 0x25, 0x25, 0x29, 0x2d, 0x2d, 0x2e, 0x2a, 0x29, 0x2b, 0x29, 0x2a, 0x32,\n    0x3f, 0x49, 0x55, 0x5c, 0x60, 0x60, 0x5d, 0x59, 0x5b, 0x59, 0x57, 0x56, 0x55, 0x56, 0x57, 0x57,\n    0x52, 0x46, 0x36, 0x2a, 0x25, 0x24, 0x1f, 0x1a, 0x21, 0x1f, 0x1f, 0x21, 0x23, 0x22, 0x22, 0x23,\n    0x25, 0x24, 0x24, 0x23, 0x22, 0x23, 0x25, 0x27, 0x27, 0x25, 0x24, 0x25, 0x22, 0x1f, 0x21, 0x26,\n    0x26, 0x24, 0x22, 0x23, 0x23, 0x22, 0x23, 0x26, 0x29, 0x2d, 0x31, 0x33, 0x37, 0x3d, 0x41, 0x42,\n    0x34, 0x37, 0x3a, 0x3b, 0x3c, 0x3e, 0x43, 0x47, 0x4b, 0x4d, 0x4a, 0x4d, 0x5a, 0x60, 0x58, 0x51,\n    0x47, 0x44, 0x48, 0x52, 0x53, 0x47, 0x3d, 0x3a, 0x3e, 0x49, 0x53, 0x55, 0x53, 0x51, 0x52, 0x53,\n    0x58, 0x4d, 0x42, 0x40, 0x43, 0x46, 0x47, 0x48, 0x4f, 0x54, 0x53, 0x53, 0x57, 0x58, 0x58, 0x5e,\n    0x5b, 0x62, 0x66, 0x65, 0x64, 0x62, 0x5a, 0x50, 0x4c, 0x52, 0x50, 0x4d, 0x59, 0x72, 0x83, 0x85,\n    0x91, 0x9c, 0xa1, 0x95, 0x7f, 0x72, 0x72, 0x78, 0x71, 0x73, 0x78, 0x7d, 0x81, 0x84, 0x8a, 0x8f,\n    0x90, 0x94, 0x98, 0x9a, 0x9b, 0x9c, 0x9e, 0xa0, 0xa1, 0xa2, 0xa3, 0xa5, 0xa7, 0xa8, 0xa9, 0xa9,\n    0xa7, 0xa7, 0xa7, 0xa7, 0xa7, 0xa7, 0xa8, 0xa8, 0xa6, 0xa6, 0xa6, 0xa5, 0xa4, 0xa2, 0xa1, 0xa0,\n    0x9f, 0x9d, 0x9a, 0x99, 0x99, 0x99, 0x9a, 0x99, 0x9c, 0x9b, 0x99, 0x97, 0x96, 0x94, 0x92, 0x90,\n    0x8c, 0x89, 0x84, 0x80, 0x7e, 0x7a, 0x71, 0x69, 0x66, 0x63, 0x5e, 0x5a, 0x58, 0x57, 0x56, 0x56,\n    0x5a, 0x5c, 0x5e, 0x60, 0x61, 0x63, 0x65, 0x67, 0x66, 0x68, 0x6b, 0x6d, 0x6e, 0x70, 0x74, 0x76,\n    0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x7a, 0x7c, 0x7c, 0x7b, 0x7b, 0x7d, 0x7f,\n    0x7f, 0x7e, 0x7c, 0x7b, 0x7a, 0x7b, 0x7b, 0x7c, 0x78, 0x79, 0x7c, 0x7f, 0x81, 0x82, 0x82, 0x82,\n    0x87, 0x88, 0x89, 0x8a, 0x8c, 0x8e, 0x90, 0x91, 0x91, 0x90, 0x90, 0x92, 0x96, 0x97, 0x97, 0x96,\n    0x98, 0x97, 0x97, 0x96, 0x94, 0x92, 0x90, 0x8f, 0x91, 0x8e, 0x89, 0x84, 0x80, 0x7c, 0x77, 0x75,\n    0x6d, 0x6d, 0x6c, 0x69, 0x65, 0x60, 0x5d, 0x5b, 0x57, 0x55, 0x53, 0x51, 0x50, 0x4e, 0x4c, 0x4a,\n    0x49, 0x46, 0x40, 0x3c, 0x3e, 0x44, 0x44, 0x3f, 0x39, 0x32, 0x31, 0x2f, 0x28, 0x25, 0x26, 0x24,\n    0x29, 0x27, 0x2c, 0x30, 0x31, 0x39, 0x43, 0x45, 0x2a, 0x1f, 0x24, 0x34, 0x3e, 0x3d, 0x30, 0x21,\n    0x1d, 0x1b, 0x1d, 0x27, 0x35, 0x3c, 0x39, 0x33, 0x34, 0x42, 0x53, 0x60, 0x69, 0x68, 0x5a, 0x49,\n    0x38, 0x4a, 0x5c, 0x68, 0x72, 0x78, 0x73, 0x68, 0x54, 0x47, 0x40, 0x3d, 0x38, 0x38, 0x3d, 0x3c,\n    0x30, 0x2e, 0x2d, 0x2d, 0x29, 0x23, 0x22, 0x24, 0x2a, 0x27, 0x23, 0x20, 0x20, 0x22, 0x23, 0x24,\n    0x22, 0x25, 0x2e, 0x3a, 0x44, 0x4a, 0x50, 0x55, 0x4f, 0x40, 0x34, 0x30, 0x2c, 0x24, 0x21, 0x25,\n    0x26, 0x28, 0x29, 0x28, 0x25, 0x24, 0x25, 0x27, 0x37, 0x42, 0x49, 0x47, 0x4a, 0x53, 0x55, 0x4f,\n    0x47, 0x51, 0x5f, 0x5f, 0x4a, 0x32, 0x2d, 0x35, 0x56, 0x67, 0x60, 0x49, 0x44, 0x47, 0x38, 0x21,\n    0x19, 0x20, 0x2b, 0x30, 0x33, 0x3f, 0x46, 0x42, 0x2f, 0x27, 0x25, 0x37, 0x4f, 0x53, 0x50, 0x53,\n    0x51, 0x4f, 0x48, 0x3a, 0x38, 0x35, 0x35, 0x4b, 0x51, 0x62, 0x64, 0x5c, 0x52, 0x5a, 0x6a, 0x62,\n    0x5d, 0x5a, 0x58, 0x53, 0x46, 0x3a, 0x3b, 0x44, 0x46, 0x4f, 0x3f, 0x43, 0x2f, 0x30, 0x45, 0x57,\n    0x54, 0x42, 0x34, 0x34, 0x35, 0x36, 0x42, 0x51, 0x5a, 0x5d, 0x5f, 0x5a, 0x51, 0x45, 0x3a, 0x32,\n    0x5c, 0x4d, 0x35, 0x22, 0x1f, 0x26, 0x26, 0x20, 0x1d, 0x1a, 0x18, 0x19, 0x1a, 0x19, 0x19, 0x1a,\n    0x1c, 0x1f, 0x21, 0x20, 0x1c, 0x1a, 0x1b, 0x1e, 0x24, 0x21, 0x1d, 0x1b, 0x1c, 0x1d, 0x1e, 0x1d,\n    0x1d, 0x1f, 0x21, 0x23, 0x23, 0x23, 0x24, 0x24, 0x1d, 0x1f, 0x20, 0x22, 0x22, 0x22, 0x21, 0x21,\n    0x1f, 0x1f, 0x1f, 0x1f, 0x1e, 0x1d, 0x1c, 0x1b, 0x1e, 0x23, 0x26, 0x25, 0x22, 0x20, 0x1c, 0x18,\n    0x1b, 0x25, 0x2f, 0x30, 0x2e, 0x2b, 0x26, 0x20, 0x1e, 0x1a, 0x1a, 0x1d, 0x1e, 0x1a, 0x17, 0x17,\n    0x1b, 0x1b, 0x1a, 0x18, 0x17, 0x18, 0x1b, 0x1e, 0x1e, 0x1d, 0x20, 0x27, 0x2d, 0x2f, 0x31, 0x33,\n    0x3c, 0x3e, 0x3f, 0x3a, 0x30, 0x25, 0x1e, 0x1c, 0x20, 0x1e, 0x1c, 0x1a, 0x18, 0x17, 0x1b, 0x21,\n    0x27, 0x2d, 0x30, 0x2e, 0x2c, 0x2e, 0x32, 0x35, 0x38, 0x37, 0x33, 0x2c, 0x25, 0x20, 0x1e, 0x1e,\n    0x24, 0x25, 0x25, 0x26, 0x27, 0x2a, 0x2d, 0x30, 0x27, 0x2d, 0x31, 0x36, 0x3a, 0x35, 0x30, 0x34,\n    0x3c, 0x46, 0x4f, 0x51, 0x52, 0x57, 0x5f, 0x64, 0x6a, 0x6c, 0x6f, 0x6f, 0x67, 0x5b, 0x51, 0x4b,\n    0x54, 0x44, 0x39, 0x31, 0x25, 0x1f, 0x20, 0x1f, 0x21, 0x25, 0x2a, 0x2d, 0x2d, 0x2a, 0x25, 0x20,\n    0x29, 0x26, 0x22, 0x1f, 0x1e, 0x20, 0x23, 0x25, 0x22, 0x1e, 0x1e, 0x23, 0x28, 0x28, 0x25, 0x24,\n    0x23, 0x23, 0x24, 0x23, 0x22, 0x21, 0x24, 0x28, 0x2d, 0x2f, 0x32, 0x31, 0x30, 0x34, 0x3d, 0x45,\n    0x44, 0x41, 0x40, 0x44, 0x46, 0x45, 0x45, 0x46, 0x4a, 0x45, 0x43, 0x4a, 0x53, 0x53, 0x4c, 0x44,\n    0x3b, 0x38, 0x3e, 0x4c, 0x54, 0x4d, 0x42, 0x3d, 0x42, 0x4b, 0x54, 0x5a, 0x60, 0x66, 0x68, 0x65,\n    0x5d, 0x52, 0x49, 0x47, 0x49, 0x49, 0x47, 0x45, 0x46, 0x44, 0x44, 0x46, 0x45, 0x44, 0x46, 0x48,\n    0x51, 0x4c, 0x4b, 0x53, 0x5c, 0x5e, 0x58, 0x51, 0x49, 0x52, 0x4f, 0x4c, 0x56, 0x61, 0x6f, 0x82,\n    0x8a, 0x94, 0x9e, 0x9c, 0x8c, 0x79, 0x6e, 0x6c, 0x6f, 0x72, 0x77, 0x7c, 0x80, 0x85, 0x8a, 0x8e,\n    0x91, 0x93, 0x97, 0x9a, 0x9d, 0x9f, 0xa1, 0xa2, 0xa2, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7, 0xa7,\n    0xa9, 0xa7, 0xa7, 0xa7, 0xa7, 0xa7, 0xa7, 0xa6, 0xa7, 0xa6, 0xa5, 0xa4, 0xa2, 0xa0, 0x9f, 0x9e,\n    0x9c, 0x9d, 0x9d, 0x9b, 0x98, 0x97, 0x98, 0x99, 0x99, 0x99, 0x99, 0x99, 0x97, 0x95, 0x93, 0x92,\n    0x90, 0x90, 0x8d, 0x88, 0x83, 0x7d, 0x76, 0x6f, 0x67, 0x65, 0x62, 0x5d, 0x58, 0x55, 0x55, 0x55,\n    0x59, 0x59, 0x5a, 0x5b, 0x5d, 0x5f, 0x61, 0x62, 0x62, 0x64, 0x67, 0x6a, 0x6c, 0x6f, 0x72, 0x75,\n    0x75, 0x78, 0x7b, 0x7b, 0x78, 0x76, 0x76, 0x77, 0x7b, 0x79, 0x78, 0x7a, 0x7d, 0x7f, 0x7d, 0x7b,\n    0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x79, 0x79, 0x78, 0x7a, 0x7c, 0x7c, 0x7c, 0x7c, 0x7e, 0x80,\n    0x83, 0x84, 0x86, 0x89, 0x8c, 0x8e, 0x8f, 0x90, 0x92, 0x90, 0x8e, 0x90, 0x93, 0x96, 0x96, 0x95,\n    0x94, 0x97, 0x97, 0x95, 0x91, 0x8e, 0x8f, 0x90, 0x92, 0x90, 0x8d, 0x89, 0x85, 0x7f, 0x79, 0x75,\n    0x6e, 0x6e, 0x6d, 0x6b, 0x67, 0x62, 0x5e, 0x5b, 0x57, 0x57, 0x57, 0x55, 0x51, 0x4e, 0x4c, 0x4b,\n    0x48, 0x44, 0x3e, 0x3c, 0x42, 0x48, 0x46, 0x3f, 0x2f, 0x27, 0x21, 0x23, 0x2a, 0x2e, 0x2f, 0x2e,\n    0x25, 0x1f, 0x1e, 0x2c, 0x3f, 0x49, 0x43, 0x39, 0x28, 0x27, 0x2a, 0x32, 0x35, 0x2e, 0x24, 0x1f,\n    0x1a, 0x1f, 0x27, 0x30, 0x39, 0x3d, 0x3b, 0x37, 0x35, 0x40, 0x55, 0x67, 0x68, 0x5d, 0x56, 0x57,\n    0x44, 0x43, 0x42, 0x4b, 0x60, 0x72, 0x74, 0x6b, 0x5f, 0x5b, 0x51, 0x47, 0x45, 0x47, 0x43, 0x3c,\n    0x33, 0x2b, 0x26, 0x28, 0x28, 0x23, 0x1f, 0x20, 0x21, 0x27, 0x2b, 0x2b, 0x2b, 0x2a, 0x24, 0x1d,\n    0x20, 0x20, 0x26, 0x34, 0x44, 0x4f, 0x59, 0x5f, 0x56, 0x3f, 0x42, 0x54, 0x4a, 0x2e, 0x24, 0x2d,\n    0x36, 0x2c, 0x2c, 0x26, 0x23, 0x24, 0x22, 0x2c, 0x3d, 0x48, 0x4d, 0x48, 0x44, 0x47, 0x46, 0x42,\n    0x4e, 0x56, 0x5e, 0x60, 0x49, 0x36, 0x23, 0x35, 0x5d, 0x6d, 0x62, 0x4f, 0x42, 0x38, 0x32, 0x26,\n    0x1b, 0x24, 0x2a, 0x2e, 0x3b, 0x48, 0x44, 0x36, 0x29, 0x1d, 0x21, 0x3b, 0x4e, 0x4c, 0x48, 0x4b,\n    0x51, 0x57, 0x4b, 0x44, 0x4a, 0x44, 0x40, 0x4f, 0x52, 0x51, 0x52, 0x4f, 0x4b, 0x55, 0x61, 0x64,\n    0x67, 0x65, 0x61, 0x5e, 0x5e, 0x5e, 0x58, 0x51, 0x40, 0x3c, 0x2e, 0x17, 0x19, 0x44, 0x62, 0x5a,\n    0x50, 0x45, 0x3e, 0x3d, 0x3a, 0x39, 0x48, 0x5b, 0x61, 0x65, 0x64, 0x57, 0x42, 0x30, 0x2c, 0x2f,\n    0x49, 0x3a, 0x2a, 0x21, 0x20, 0x20, 0x20, 0x1f, 0x1c, 0x1b, 0x1c, 0x1f, 0x1e, 0x1b, 0x1a, 0x1b,\n    0x1e, 0x22, 0x25, 0x23, 0x1f, 0x1c, 0x1e, 0x21, 0x24, 0x21, 0x1e, 0x1c, 0x1d, 0x1e, 0x1e, 0x1d,\n    0x1c, 0x1e, 0x20, 0x21, 0x21, 0x21, 0x20, 0x1f, 0x1e, 0x21, 0x24, 0x26, 0x26, 0x25, 0x24, 0x24,\n    0x21, 0x21, 0x21, 0x22, 0x22, 0x1f, 0x1b, 0x17, 0x1e, 0x23, 0x26, 0x26, 0x24, 0x22, 0x1f, 0x1b,\n    0x1a, 0x23, 0x2a, 0x2b, 0x2b, 0x2b, 0x29, 0x26, 0x23, 0x1e, 0x1c, 0x1e, 0x1f, 0x1e, 0x1d, 0x1f,\n    0x1e, 0x1d, 0x1b, 0x19, 0x17, 0x17, 0x19, 0x1a, 0x1c, 0x1b, 0x1e, 0x26, 0x2d, 0x2f, 0x2e, 0x2d,\n    0x33, 0x37, 0x3b, 0x39, 0x31, 0x28, 0x21, 0x1e, 0x1d, 0x1c, 0x1c, 0x1d, 0x1c, 0x1b, 0x1f, 0x24,\n    0x28, 0x2b, 0x2d, 0x2d, 0x2f, 0x32, 0x35, 0x36, 0x34, 0x32, 0x2d, 0x26, 0x20, 0x1d, 0x1e, 0x1f,\n    0x20, 0x22, 0x25, 0x26, 0x25, 0x26, 0x27, 0x29, 0x28, 0x2d, 0x2e, 0x32, 0x37, 0x36, 0x37, 0x3e,\n    0x50, 0x56, 0x58, 0x55, 0x52, 0x55, 0x5d, 0x63, 0x67, 0x68, 0x6a, 0x6c, 0x6b, 0x67, 0x63, 0x60,\n    0x52, 0x41, 0x35, 0x2e, 0x25, 0x23, 0x28, 0x2b, 0x33, 0x32, 0x31, 0x31, 0x30, 0x2e, 0x29, 0x24,\n    0x24, 0x24, 0x23, 0x22, 0x22, 0x21, 0x21, 0x21, 0x23, 0x1f, 0x1d, 0x20, 0x22, 0x22, 0x20, 0x20,\n    0x22, 0x22, 0x22, 0x21, 0x20, 0x20, 0x22, 0x24, 0x2e, 0x31, 0x34, 0x34, 0x34, 0x38, 0x40, 0x47,\n    0x4a, 0x4a, 0x49, 0x4a, 0x4c, 0x4c, 0x4a, 0x48, 0x47, 0x45, 0x41, 0x40, 0x3f, 0x3e, 0x39, 0x35,\n    0x37, 0x35, 0x39, 0x3f, 0x3f, 0x39, 0x36, 0x38, 0x44, 0x47, 0x49, 0x4b, 0x4f, 0x54, 0x55, 0x53,\n    0x5c, 0x55, 0x4f, 0x4f, 0x50, 0x4f, 0x4b, 0x49, 0x52, 0x51, 0x52, 0x55, 0x57, 0x59, 0x5e, 0x63,\n    0x5b, 0x59, 0x5b, 0x64, 0x6b, 0x66, 0x58, 0x4c, 0x47, 0x4f, 0x4c, 0x4a, 0x54, 0x5d, 0x66, 0x76,\n    0x82, 0x8d, 0x98, 0x99, 0x8d, 0x7c, 0x70, 0x6b, 0x6f, 0x73, 0x79, 0x7d, 0x81, 0x85, 0x89, 0x8c,\n    0x91, 0x94, 0x97, 0x9a, 0x9c, 0x9e, 0xa0, 0xa1, 0xa1, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7, 0xa7,\n    0xa9, 0xa9, 0xa8, 0xa8, 0xa8, 0xa8, 0xa6, 0xa4, 0xa4, 0xa3, 0xa2, 0xa0, 0x9e, 0x9d, 0x9b, 0x9b,\n    0x99, 0x9a, 0x99, 0x97, 0x95, 0x94, 0x95, 0x96, 0x95, 0x96, 0x96, 0x96, 0x96, 0x95, 0x93, 0x92,\n    0x90, 0x90, 0x8e, 0x8a, 0x86, 0x81, 0x7b, 0x74, 0x6d, 0x6a, 0x65, 0x60, 0x5c, 0x59, 0x58, 0x57,\n    0x57, 0x57, 0x58, 0x59, 0x5b, 0x5d, 0x5f, 0x60, 0x63, 0x65, 0x67, 0x68, 0x6a, 0x6d, 0x70, 0x73,\n    0x73, 0x76, 0x79, 0x7a, 0x78, 0x76, 0x76, 0x78, 0x7b, 0x79, 0x77, 0x77, 0x7a, 0x7d, 0x7c, 0x7b,\n    0x7b, 0x7a, 0x78, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x80,\n    0x80, 0x81, 0x83, 0x86, 0x88, 0x8a, 0x8b, 0x8c, 0x8a, 0x89, 0x88, 0x8a, 0x8c, 0x8e, 0x8f, 0x8f,\n    0x91, 0x92, 0x92, 0x90, 0x8c, 0x8a, 0x8b, 0x8d, 0x8f, 0x8d, 0x8b, 0x89, 0x85, 0x80, 0x7a, 0x76,\n    0x70, 0x6e, 0x6d, 0x6a, 0x67, 0x63, 0x5f, 0x5c, 0x58, 0x58, 0x57, 0x55, 0x52, 0x4f, 0x4d, 0x4b,\n    0x47, 0x45, 0x3f, 0x39, 0x38, 0x3a, 0x39, 0x34, 0x33, 0x30, 0x2d, 0x2d, 0x2f, 0x31, 0x32, 0x33,\n    0x1f, 0x1d, 0x20, 0x2c, 0x38, 0x39, 0x2b, 0x1e, 0x24, 0x26, 0x2a, 0x2a, 0x25, 0x1f, 0x22, 0x29,\n    0x36, 0x3a, 0x3e, 0x40, 0x40, 0x3e, 0x3b, 0x39, 0x3f, 0x4d, 0x65, 0x7a, 0x7f, 0x74, 0x66, 0x5d,\n    0x4d, 0x4c, 0x4c, 0x4d, 0x4f, 0x52, 0x58, 0x5e, 0x66, 0x63, 0x5b, 0x51, 0x48, 0x42, 0x3b, 0x35,\n    0x2f, 0x28, 0x23, 0x25, 0x28, 0x28, 0x26, 0x24, 0x26, 0x26, 0x24, 0x25, 0x2c, 0x34, 0x36, 0x33,\n    0x1e, 0x2d, 0x3f, 0x4d, 0x55, 0x56, 0x4d, 0x43, 0x47, 0x3c, 0x3d, 0x41, 0x34, 0x25, 0x25, 0x2a,\n    0x2d, 0x27, 0x2c, 0x2a, 0x25, 0x23, 0x24, 0x31, 0x51, 0x49, 0x3b, 0x34, 0x3c, 0x4c, 0x50, 0x4b,\n    0x45, 0x53, 0x60, 0x60, 0x43, 0x2d, 0x1e, 0x35, 0x50, 0x5f, 0x56, 0x4b, 0x43, 0x39, 0x33, 0x27,\n    0x17, 0x2d, 0x3f, 0x43, 0x44, 0x48, 0x47, 0x3f, 0x29, 0x23, 0x2b, 0x42, 0x4e, 0x49, 0x46, 0x4b,\n    0x56, 0x53, 0x43, 0x39, 0x39, 0x35, 0x36, 0x44, 0x4e, 0x4f, 0x51, 0x4f, 0x4e, 0x57, 0x5f, 0x5f,\n    0x61, 0x6c, 0x6f, 0x69, 0x69, 0x6c, 0x62, 0x51, 0x3d, 0x23, 0x16, 0x1b, 0x28, 0x41, 0x5a, 0x61,\n    0x47, 0x44, 0x44, 0x43, 0x3c, 0x39, 0x47, 0x5a, 0x63, 0x5d, 0x50, 0x40, 0x34, 0x32, 0x37, 0x3d,\n    0x31, 0x26, 0x1f, 0x20, 0x20, 0x1c, 0x1a, 0x1e, 0x18, 0x1a, 0x1f, 0x22, 0x20, 0x1b, 0x19, 0x1a,\n    0x1e, 0x22, 0x25, 0x24, 0x20, 0x1d, 0x1e, 0x20, 0x22, 0x20, 0x1e, 0x1d, 0x1e, 0x20, 0x21, 0x21,\n    0x1c, 0x1e, 0x20, 0x21, 0x21, 0x20, 0x1e, 0x1c, 0x1b, 0x1f, 0x24, 0x28, 0x2a, 0x29, 0x26, 0x24,\n    0x1f, 0x1f, 0x20, 0x23, 0x25, 0x24, 0x1f, 0x1a, 0x1f, 0x23, 0x27, 0x27, 0x26, 0x25, 0x22, 0x1f,\n    0x1e, 0x23, 0x27, 0x28, 0x28, 0x2a, 0x2b, 0x2b, 0x28, 0x23, 0x1e, 0x1d, 0x1e, 0x1e, 0x21, 0x23,\n    0x20, 0x1e, 0x1b, 0x19, 0x18, 0x19, 0x19, 0x19, 0x19, 0x19, 0x1f, 0x28, 0x30, 0x31, 0x2f, 0x2d,\n    0x2d, 0x32, 0x38, 0x37, 0x30, 0x27, 0x20, 0x1d, 0x19, 0x19, 0x1a, 0x1c, 0x1c, 0x1c, 0x20, 0x25,\n    0x29, 0x2b, 0x2c, 0x2e, 0x33, 0x3a, 0x3c, 0x3a, 0x3c, 0x38, 0x30, 0x27, 0x21, 0x1e, 0x1f, 0x21,\n    0x20, 0x24, 0x29, 0x2b, 0x29, 0x27, 0x28, 0x29, 0x28, 0x2a, 0x28, 0x28, 0x2d, 0x2f, 0x35, 0x40,\n    0x4c, 0x55, 0x5e, 0x5f, 0x5c, 0x5c, 0x5d, 0x5e, 0x5c, 0x5b, 0x5a, 0x5a, 0x5c, 0x5d, 0x5b, 0x5a,\n    0x4e, 0x3c, 0x2f, 0x29, 0x23, 0x26, 0x30, 0x35, 0x3e, 0x38, 0x32, 0x30, 0x31, 0x30, 0x2b, 0x26,\n    0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x21, 0x21, 0x23, 0x20, 0x1d, 0x1d, 0x1d, 0x1b, 0x1c, 0x1e,\n    0x24, 0x25, 0x25, 0x22, 0x20, 0x1f, 0x20, 0x22, 0x2a, 0x2d, 0x30, 0x31, 0x31, 0x33, 0x39, 0x3d,\n    0x45, 0x4c, 0x52, 0x55, 0x57, 0x58, 0x52, 0x4a, 0x52, 0x56, 0x56, 0x4d, 0x45, 0x41, 0x3e, 0x3b,\n    0x3c, 0x3d, 0x3f, 0x40, 0x3b, 0x35, 0x37, 0x3f, 0x3f, 0x42, 0x45, 0x48, 0x4c, 0x4d, 0x4b, 0x46,\n    0x51, 0x4e, 0x4d, 0x51, 0x53, 0x52, 0x4f, 0x4f, 0x4b, 0x4b, 0x4e, 0x52, 0x55, 0x54, 0x54, 0x56,\n    0x5e, 0x5e, 0x62, 0x6a, 0x6e, 0x66, 0x55, 0x45, 0x47, 0x4c, 0x4b, 0x4c, 0x55, 0x59, 0x5e, 0x67,\n    0x78, 0x83, 0x90, 0x94, 0x8d, 0x7f, 0x70, 0x67, 0x6f, 0x74, 0x7b, 0x7f, 0x82, 0x85, 0x88, 0x8b,\n    0x91, 0x94, 0x97, 0x99, 0x9b, 0x9c, 0x9e, 0x9f, 0xa0, 0xa1, 0xa3, 0xa5, 0xa6, 0xa6, 0xa6, 0xa6,\n    0xa7, 0xa7, 0xa7, 0xa7, 0xa7, 0xa5, 0xa2, 0xa0, 0xa2, 0xa1, 0xa0, 0x9e, 0x9c, 0x9a, 0x99, 0x98,\n    0x94, 0x94, 0x93, 0x91, 0x8f, 0x8f, 0x8f, 0x90, 0x91, 0x92, 0x93, 0x94, 0x94, 0x94, 0x93, 0x93,\n    0x8f, 0x90, 0x8f, 0x8b, 0x88, 0x85, 0x80, 0x7a, 0x74, 0x6f, 0x69, 0x64, 0x61, 0x5e, 0x5a, 0x58,\n    0x55, 0x55, 0x55, 0x56, 0x58, 0x5a, 0x5c, 0x5d, 0x63, 0x64, 0x65, 0x66, 0x68, 0x6a, 0x6e, 0x71,\n    0x71, 0x74, 0x77, 0x78, 0x77, 0x76, 0x77, 0x78, 0x7b, 0x78, 0x75, 0x75, 0x77, 0x7a, 0x7a, 0x7a,\n    0x79, 0x78, 0x77, 0x75, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x76, 0x79, 0x7a, 0x7b, 0x7b,\n    0x7a, 0x7b, 0x7d, 0x7f, 0x81, 0x82, 0x83, 0x84, 0x82, 0x83, 0x83, 0x84, 0x84, 0x85, 0x87, 0x88,\n    0x8a, 0x8b, 0x8b, 0x89, 0x86, 0x85, 0x87, 0x88, 0x89, 0x88, 0x88, 0x87, 0x84, 0x80, 0x7b, 0x77,\n    0x72, 0x70, 0x6c, 0x6a, 0x68, 0x65, 0x61, 0x5d, 0x59, 0x59, 0x58, 0x56, 0x54, 0x51, 0x4e, 0x4d,\n    0x45, 0x45, 0x40, 0x39, 0x33, 0x31, 0x31, 0x30, 0x38, 0x37, 0x33, 0x2e, 0x28, 0x24, 0x23, 0x23,\n    0x22, 0x1d, 0x1b, 0x21, 0x2c, 0x33, 0x32, 0x2f, 0x22, 0x24, 0x24, 0x22, 0x21, 0x29, 0x3c, 0x4d,\n    0x57, 0x59, 0x59, 0x54, 0x4a, 0x42, 0x3f, 0x40, 0x3e, 0x4f, 0x65, 0x77, 0x80, 0x7d, 0x72, 0x66,\n    0x60, 0x5c, 0x59, 0x55, 0x4a, 0x3d, 0x3d, 0x45, 0x45, 0x48, 0x4d, 0x50, 0x4b, 0x43, 0x3c, 0x3a,\n    0x2e, 0x2a, 0x26, 0x27, 0x30, 0x37, 0x37, 0x33, 0x28, 0x24, 0x20, 0x23, 0x2f, 0x3f, 0x47, 0x49,\n    0x39, 0x44, 0x4a, 0x47, 0x49, 0x51, 0x54, 0x4f, 0x48, 0x4b, 0x4b, 0x40, 0x2f, 0x2b, 0x2d, 0x2a,\n    0x24, 0x20, 0x29, 0x29, 0x24, 0x24, 0x2d, 0x45, 0x4a, 0x3d, 0x2d, 0x2c, 0x3c, 0x4f, 0x54, 0x4f,\n    0x42, 0x50, 0x5b, 0x58, 0x3a, 0x25, 0x17, 0x2e, 0x47, 0x53, 0x4c, 0x46, 0x40, 0x33, 0x2b, 0x21,\n    0x22, 0x3d, 0x54, 0x58, 0x52, 0x4f, 0x4a, 0x43, 0x31, 0x2f, 0x38, 0x48, 0x4c, 0x46, 0x49, 0x53,\n    0x5a, 0x53, 0x47, 0x3e, 0x3d, 0x41, 0x48, 0x4e, 0x4b, 0x51, 0x54, 0x53, 0x55, 0x5b, 0x5f, 0x5d,\n    0x62, 0x74, 0x79, 0x6e, 0x6c, 0x73, 0x65, 0x4c, 0x40, 0x30, 0x1e, 0x1d, 0x39, 0x62, 0x6c, 0x58,\n    0x47, 0x46, 0x47, 0x47, 0x41, 0x3e, 0x4a, 0x5a, 0x6d, 0x62, 0x4e, 0x3d, 0x3a, 0x43, 0x4c, 0x4f,\n    0x23, 0x1f, 0x1e, 0x20, 0x1f, 0x1c, 0x1b, 0x1c, 0x19, 0x1c, 0x21, 0x24, 0x21, 0x1c, 0x1a, 0x1c,\n    0x1f, 0x20, 0x22, 0x22, 0x21, 0x1f, 0x1d, 0x1c, 0x1e, 0x1d, 0x1c, 0x1d, 0x1e, 0x21, 0x23, 0x24,\n    0x1e, 0x1f, 0x20, 0x22, 0x23, 0x22, 0x1f, 0x1d, 0x1b, 0x1d, 0x21, 0x29, 0x2f, 0x30, 0x2c, 0x27,\n    0x20, 0x20, 0x20, 0x21, 0x22, 0x22, 0x20, 0x1f, 0x20, 0x24, 0x27, 0x27, 0x26, 0x26, 0x24, 0x22,\n    0x25, 0x27, 0x28, 0x28, 0x27, 0x27, 0x29, 0x2a, 0x28, 0x24, 0x1f, 0x1c, 0x1b, 0x1c, 0x1f, 0x21,\n    0x20, 0x1d, 0x1a, 0x19, 0x1b, 0x1c, 0x1c, 0x1b, 0x18, 0x1b, 0x23, 0x2c, 0x32, 0x33, 0x33, 0x35,\n    0x34, 0x37, 0x38, 0x35, 0x2d, 0x24, 0x20, 0x1e, 0x1a, 0x1a, 0x1b, 0x1c, 0x1b, 0x1b, 0x1f, 0x24,\n    0x2a, 0x2c, 0x2e, 0x31, 0x37, 0x3f, 0x42, 0x41, 0x47, 0x41, 0x36, 0x2a, 0x22, 0x20, 0x20, 0x22,\n    0x22, 0x27, 0x2d, 0x2f, 0x2e, 0x2c, 0x2d, 0x2e, 0x2d, 0x2c, 0x26, 0x22, 0x24, 0x25, 0x2c, 0x38,\n    0x3c, 0x49, 0x57, 0x5e, 0x61, 0x63, 0x64, 0x64, 0x68, 0x65, 0x61, 0x5e, 0x5d, 0x5b, 0x56, 0x50,\n    0x47, 0x35, 0x28, 0x23, 0x1f, 0x23, 0x2d, 0x32, 0x3a, 0x33, 0x2e, 0x2f, 0x33, 0x31, 0x2b, 0x26,\n    0x25, 0x23, 0x21, 0x20, 0x1f, 0x21, 0x23, 0x25, 0x22, 0x1f, 0x1d, 0x1c, 0x1a, 0x19, 0x1c, 0x20,\n    0x26, 0x2b, 0x2c, 0x27, 0x21, 0x1f, 0x22, 0x25, 0x28, 0x2a, 0x2c, 0x2d, 0x2e, 0x2f, 0x32, 0x35,\n    0x33, 0x3b, 0x3f, 0x3f, 0x44, 0x4e, 0x50, 0x4b, 0x5d, 0x64, 0x64, 0x58, 0x4a, 0x42, 0x3c, 0x36,\n    0x39, 0x38, 0x39, 0x3a, 0x38, 0x35, 0x37, 0x3c, 0x44, 0x45, 0x46, 0x46, 0x45, 0x45, 0x43, 0x41,\n    0x46, 0x45, 0x48, 0x4e, 0x53, 0x56, 0x59, 0x5c, 0x59, 0x4e, 0x43, 0x41, 0x44, 0x4b, 0x52, 0x57,\n    0x4c, 0x4e, 0x53, 0x5b, 0x63, 0x63, 0x57, 0x4b, 0x49, 0x4a, 0x4d, 0x52, 0x59, 0x5b, 0x5b, 0x5d,\n    0x6f, 0x79, 0x86, 0x8e, 0x8b, 0x80, 0x71, 0x65, 0x6e, 0x74, 0x7c, 0x81, 0x83, 0x86, 0x89, 0x8b,\n    0x91, 0x93, 0x96, 0x99, 0x9a, 0x9b, 0x9c, 0x9e, 0x9f, 0xa0, 0xa3, 0xa5, 0xa6, 0xa6, 0xa5, 0xa5,\n    0xa3, 0xa3, 0xa3, 0xa3, 0xa3, 0xa1, 0x9e, 0x9c, 0x9e, 0x9d, 0x9c, 0x9a, 0x97, 0x95, 0x94, 0x93,\n    0x8f, 0x8f, 0x8d, 0x8b, 0x8a, 0x8a, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8e, 0x8f, 0x8f, 0x8f, 0x8f,\n    0x8d, 0x8e, 0x8d, 0x8a, 0x88, 0x86, 0x82, 0x7d, 0x78, 0x73, 0x6c, 0x67, 0x64, 0x61, 0x5c, 0x58,\n    0x55, 0x54, 0x54, 0x55, 0x56, 0x58, 0x5a, 0x5b, 0x61, 0x62, 0x63, 0x64, 0x66, 0x69, 0x6d, 0x70,\n    0x70, 0x73, 0x75, 0x76, 0x76, 0x75, 0x76, 0x77, 0x79, 0x77, 0x75, 0x75, 0x77, 0x78, 0x78, 0x78,\n    0x78, 0x77, 0x75, 0x73, 0x72, 0x71, 0x71, 0x71, 0x6e, 0x6d, 0x6c, 0x6e, 0x71, 0x73, 0x72, 0x71,\n    0x71, 0x72, 0x74, 0x76, 0x77, 0x78, 0x79, 0x79, 0x79, 0x7c, 0x7d, 0x7d, 0x7a, 0x7a, 0x7c, 0x7e,\n    0x7f, 0x81, 0x83, 0x83, 0x82, 0x82, 0x82, 0x83, 0x82, 0x82, 0x83, 0x83, 0x82, 0x7f, 0x7a, 0x77,\n    0x74, 0x71, 0x6d, 0x6b, 0x69, 0x67, 0x63, 0x60, 0x5c, 0x5b, 0x59, 0x58, 0x56, 0x53, 0x50, 0x4e,\n    0x46, 0x45, 0x41, 0x3a, 0x35, 0x33, 0x33, 0x33, 0x2c, 0x2c, 0x29, 0x23, 0x20, 0x1f, 0x1f, 0x1e,\n    0x1b, 0x24, 0x32, 0x3e, 0x43, 0x3c, 0x2e, 0x24, 0x1f, 0x21, 0x26, 0x2b, 0x32, 0x3d, 0x4a, 0x54,\n    0x58, 0x59, 0x5a, 0x57, 0x50, 0x49, 0x49, 0x4b, 0x4c, 0x5b, 0x68, 0x6c, 0x6e, 0x71, 0x70, 0x6a,\n    0x5b, 0x54, 0x4f, 0x4f, 0x4c, 0x41, 0x35, 0x2f, 0x3d, 0x41, 0x4b, 0x54, 0x51, 0x43, 0x38, 0x35,\n    0x2e, 0x2b, 0x27, 0x28, 0x34, 0x41, 0x43, 0x3c, 0x2b, 0x26, 0x20, 0x1f, 0x25, 0x2c, 0x32, 0x34,\n    0x3c, 0x45, 0x48, 0x43, 0x41, 0x46, 0x4a, 0x4b, 0x4d, 0x53, 0x52, 0x40, 0x2c, 0x2a, 0x2a, 0x21,\n    0x22, 0x26, 0x37, 0x39, 0x31, 0x2c, 0x33, 0x4b, 0x44, 0x42, 0x42, 0x47, 0x4f, 0x53, 0x4f, 0x47,\n    0x43, 0x4d, 0x54, 0x52, 0x39, 0x2a, 0x1d, 0x32, 0x4a, 0x55, 0x4f, 0x4b, 0x44, 0x35, 0x2e, 0x29,\n    0x2c, 0x3d, 0x4c, 0x4e, 0x4b, 0x46, 0x39, 0x2c, 0x2d, 0x2c, 0x31, 0x3a, 0x3b, 0x39, 0x42, 0x4f,\n    0x54, 0x50, 0x49, 0x40, 0x3f, 0x4b, 0x4e, 0x44, 0x46, 0x51, 0x55, 0x54, 0x58, 0x5c, 0x5b, 0x59,\n    0x5f, 0x6c, 0x6e, 0x66, 0x69, 0x71, 0x65, 0x4d, 0x45, 0x30, 0x21, 0x28, 0x38, 0x44, 0x46, 0x41,\n    0x48, 0x47, 0x46, 0x43, 0x3f, 0x3f, 0x4a, 0x58, 0x5b, 0x51, 0x40, 0x33, 0x33, 0x3b, 0x3b, 0x35,\n    0x1f, 0x22, 0x22, 0x1d, 0x1c, 0x1e, 0x1e, 0x1b, 0x1d, 0x1e, 0x22, 0x23, 0x20, 0x1d, 0x1e, 0x21,\n    0x23, 0x21, 0x20, 0x22, 0x26, 0x25, 0x1f, 0x1a, 0x1c, 0x1c, 0x1b, 0x1b, 0x1b, 0x1d, 0x1f, 0x20,\n    0x1d, 0x1e, 0x1f, 0x22, 0x24, 0x24, 0x22, 0x1f, 0x20, 0x1e, 0x20, 0x28, 0x33, 0x38, 0x34, 0x2f,\n    0x27, 0x25, 0x23, 0x20, 0x1d, 0x1d, 0x1e, 0x20, 0x21, 0x25, 0x28, 0x27, 0x26, 0x26, 0x25, 0x23,\n    0x27, 0x27, 0x27, 0x27, 0x26, 0x24, 0x24, 0x24, 0x23, 0x22, 0x20, 0x1e, 0x1d, 0x1e, 0x20, 0x20,\n    0x20, 0x1e, 0x1b, 0x1b, 0x1c, 0x1d, 0x1c, 0x1b, 0x1a, 0x1f, 0x26, 0x2d, 0x2e, 0x2f, 0x34, 0x3a,\n    0x3d, 0x3c, 0x39, 0x32, 0x28, 0x22, 0x21, 0x22, 0x20, 0x1e, 0x1d, 0x1d, 0x1b, 0x1a, 0x1e, 0x24,\n    0x28, 0x2d, 0x31, 0x33, 0x38, 0x3e, 0x43, 0x45, 0x44, 0x3c, 0x31, 0x26, 0x20, 0x1f, 0x21, 0x22,\n    0x21, 0x26, 0x2b, 0x2d, 0x2d, 0x2d, 0x2f, 0x31, 0x31, 0x31, 0x29, 0x23, 0x22, 0x22, 0x28, 0x34,\n    0x44, 0x4c, 0x55, 0x59, 0x5d, 0x64, 0x6b, 0x6e, 0x7b, 0x7b, 0x78, 0x75, 0x72, 0x6f, 0x66, 0x5d,\n    0x45, 0x34, 0x2a, 0x27, 0x22, 0x23, 0x29, 0x2a, 0x34, 0x2e, 0x2d, 0x33, 0x37, 0x32, 0x2a, 0x24,\n    0x24, 0x23, 0x22, 0x20, 0x20, 0x22, 0x23, 0x24, 0x1d, 0x1c, 0x1b, 0x1b, 0x19, 0x19, 0x1d, 0x23,\n    0x27, 0x2e, 0x32, 0x2c, 0x23, 0x22, 0x26, 0x29, 0x2a, 0x2b, 0x2c, 0x2e, 0x31, 0x34, 0x37, 0x39,\n    0x42, 0x43, 0x3d, 0x37, 0x3e, 0x51, 0x61, 0x66, 0x63, 0x69, 0x6b, 0x66, 0x63, 0x65, 0x66, 0x65,\n    0x53, 0x4b, 0x45, 0x46, 0x4b, 0x4e, 0x4f, 0x4e, 0x54, 0x51, 0x4c, 0x46, 0x3f, 0x3c, 0x3e, 0x40,\n    0x3c, 0x3a, 0x3a, 0x3f, 0x45, 0x4c, 0x55, 0x5d, 0x5d, 0x53, 0x4a, 0x4c, 0x54, 0x5a, 0x5c, 0x5d,\n    0x5b, 0x5c, 0x5d, 0x60, 0x65, 0x64, 0x5a, 0x4e, 0x4a, 0x48, 0x4f, 0x59, 0x5e, 0x5e, 0x5c, 0x5a,\n    0x64, 0x6e, 0x7b, 0x84, 0x87, 0x82, 0x74, 0x68, 0x6c, 0x73, 0x7c, 0x81, 0x84, 0x86, 0x8a, 0x8d,\n    0x90, 0x93, 0x96, 0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9e, 0xa0, 0xa2, 0xa4, 0xa5, 0xa5, 0xa3, 0xa2,\n    0xa0, 0xa0, 0xa0, 0xa1, 0xa1, 0x9f, 0x9c, 0x99, 0x98, 0x97, 0x95, 0x92, 0x90, 0x8d, 0x8b, 0x8a,\n    0x8c, 0x8a, 0x88, 0x86, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x88, 0x89, 0x89, 0x89,\n    0x8b, 0x8c, 0x8b, 0x89, 0x87, 0x86, 0x83, 0x7e, 0x7b, 0x76, 0x6f, 0x6a, 0x67, 0x64, 0x5e, 0x5a,\n    0x57, 0x56, 0x55, 0x55, 0x55, 0x57, 0x59, 0x5a, 0x5e, 0x5f, 0x61, 0x62, 0x65, 0x68, 0x6c, 0x6f,\n    0x70, 0x72, 0x73, 0x74, 0x74, 0x74, 0x74, 0x75, 0x76, 0x76, 0x76, 0x77, 0x78, 0x77, 0x76, 0x74,\n    0x76, 0x75, 0x72, 0x70, 0x6e, 0x6d, 0x6d, 0x6c, 0x6a, 0x68, 0x67, 0x67, 0x69, 0x6a, 0x69, 0x67,\n    0x68, 0x69, 0x6a, 0x6c, 0x6d, 0x6e, 0x6f, 0x6f, 0x70, 0x73, 0x75, 0x73, 0x70, 0x6e, 0x70, 0x72,\n    0x73, 0x76, 0x7a, 0x7d, 0x7e, 0x7d, 0x7c, 0x7b, 0x7b, 0x7c, 0x7d, 0x7e, 0x7e, 0x7c, 0x79, 0x76,\n    0x74, 0x72, 0x6f, 0x6c, 0x6b, 0x69, 0x65, 0x63, 0x5f, 0x5d, 0x5b, 0x59, 0x58, 0x55, 0x51, 0x4e,\n    0x49, 0x44, 0x3e, 0x39, 0x36, 0x33, 0x30, 0x2f, 0x2f, 0x2c, 0x26, 0x20, 0x20, 0x22, 0x20, 0x1b,\n    0x1b, 0x2e, 0x47, 0x59, 0x5a, 0x4b, 0x37, 0x28, 0x27, 0x33, 0x43, 0x4f, 0x52, 0x50, 0x4a, 0x46,\n    0x45, 0x45, 0x49, 0x4c, 0x4c, 0x4b, 0x4e, 0x53, 0x69, 0x78, 0x80, 0x76, 0x6b, 0x67, 0x65, 0x62,\n    0x5b, 0x5a, 0x58, 0x5b, 0x63, 0x64, 0x59, 0x4a, 0x40, 0x3e, 0x42, 0x48, 0x45, 0x39, 0x2f, 0x2b,\n    0x29, 0x26, 0x21, 0x22, 0x2d, 0x39, 0x3a, 0x34, 0x25, 0x23, 0x21, 0x20, 0x23, 0x29, 0x31, 0x37,\n    0x44, 0x48, 0x4c, 0x4c, 0x46, 0x42, 0x45, 0x4b, 0x55, 0x50, 0x47, 0x35, 0x24, 0x23, 0x27, 0x23,\n    0x2b, 0x37, 0x50, 0x54, 0x46, 0x39, 0x33, 0x41, 0x3c, 0x3e, 0x43, 0x49, 0x4b, 0x44, 0x39, 0x32,\n    0x42, 0x50, 0x5b, 0x58, 0x3f, 0x32, 0x27, 0x3d, 0x4e, 0x5b, 0x56, 0x52, 0x4b, 0x3f, 0x3d, 0x3c,\n    0x46, 0x4d, 0x51, 0x4f, 0x4c, 0x47, 0x39, 0x2b, 0x2d, 0x2d, 0x32, 0x39, 0x3c, 0x3e, 0x46, 0x51,\n    0x57, 0x56, 0x4e, 0x40, 0x40, 0x4e, 0x48, 0x30, 0x3e, 0x4e, 0x52, 0x50, 0x56, 0x5a, 0x56, 0x54,\n    0x55, 0x58, 0x5a, 0x5f, 0x6b, 0x72, 0x68, 0x59, 0x50, 0x50, 0x47, 0x3b, 0x34, 0x32, 0x35, 0x3a,\n    0x3e, 0x45, 0x48, 0x41, 0x36, 0x35, 0x44, 0x55, 0x5f, 0x56, 0x49, 0x3f, 0x40, 0x43, 0x3d, 0x34,\n    0x1f, 0x23, 0x22, 0x1b, 0x19, 0x1f, 0x20, 0x1c, 0x1e, 0x1d, 0x1d, 0x1e, 0x1d, 0x1b, 0x1d, 0x22,\n    0x26, 0x23, 0x22, 0x26, 0x2a, 0x29, 0x23, 0x1c, 0x1d, 0x1d, 0x1c, 0x1a, 0x19, 0x18, 0x19, 0x1a,\n    0x1c, 0x1c, 0x1c, 0x1f, 0x22, 0x24, 0x22, 0x20, 0x21, 0x1e, 0x1d, 0x23, 0x2d, 0x35, 0x36, 0x35,\n    0x2c, 0x2a, 0x27, 0x24, 0x23, 0x23, 0x24, 0x26, 0x22, 0x25, 0x27, 0x26, 0x25, 0x26, 0x26, 0x24,\n    0x22, 0x22, 0x23, 0x24, 0x24, 0x20, 0x1f, 0x1f, 0x1d, 0x20, 0x21, 0x20, 0x20, 0x22, 0x23, 0x22,\n    0x21, 0x1f, 0x1d, 0x1b, 0x1b, 0x1a, 0x1a, 0x19, 0x1c, 0x20, 0x26, 0x2a, 0x2a, 0x2b, 0x30, 0x37,\n    0x3a, 0x39, 0x34, 0x2c, 0x23, 0x1e, 0x1f, 0x21, 0x20, 0x1f, 0x1d, 0x1c, 0x1a, 0x18, 0x1b, 0x20,\n    0x28, 0x2c, 0x30, 0x32, 0x35, 0x3b, 0x40, 0x42, 0x38, 0x32, 0x29, 0x22, 0x20, 0x21, 0x24, 0x26,\n    0x24, 0x26, 0x28, 0x2a, 0x2c, 0x2d, 0x2e, 0x2f, 0x2d, 0x2e, 0x28, 0x22, 0x21, 0x21, 0x28, 0x35,\n    0x50, 0x59, 0x61, 0x65, 0x65, 0x67, 0x68, 0x67, 0x67, 0x6b, 0x6d, 0x6c, 0x6b, 0x6a, 0x62, 0x59,\n    0x4c, 0x3d, 0x36, 0x35, 0x30, 0x2e, 0x2e, 0x2c, 0x2e, 0x2c, 0x2e, 0x35, 0x35, 0x2d, 0x24, 0x21,\n    0x20, 0x21, 0x23, 0x24, 0x24, 0x22, 0x20, 0x1f, 0x1a, 0x19, 0x19, 0x1a, 0x1a, 0x19, 0x1d, 0x21,\n    0x25, 0x2d, 0x31, 0x2c, 0x27, 0x29, 0x2d, 0x2e, 0x27, 0x26, 0x27, 0x2a, 0x30, 0x36, 0x3b, 0x3d,\n    0x3d, 0x3d, 0x3a, 0x35, 0x3a, 0x49, 0x56, 0x5c, 0x4b, 0x49, 0x48, 0x4b, 0x53, 0x5f, 0x6c, 0x74,\n    0x6f, 0x61, 0x53, 0x52, 0x5b, 0x64, 0x65, 0x62, 0x58, 0x5a, 0x5e, 0x61, 0x5e, 0x57, 0x53, 0x52,\n    0x47, 0x40, 0x3a, 0x39, 0x3e, 0x48, 0x54, 0x5e, 0x50, 0x49, 0x45, 0x48, 0x4d, 0x4e, 0x4b, 0x49,\n    0x5d, 0x5f, 0x60, 0x61, 0x65, 0x65, 0x5b, 0x4e, 0x4a, 0x46, 0x50, 0x5e, 0x61, 0x61, 0x5f, 0x5a,\n    0x5b, 0x64, 0x6f, 0x77, 0x7f, 0x80, 0x78, 0x6e, 0x6a, 0x72, 0x7b, 0x81, 0x83, 0x85, 0x8a, 0x8e,\n    0x8f, 0x91, 0x94, 0x97, 0x98, 0x99, 0x9a, 0x9b, 0x9d, 0x9f, 0xa2, 0xa4, 0xa4, 0xa3, 0xa1, 0x9f,\n    0x9f, 0x9e, 0x9e, 0x9e, 0x9d, 0x9b, 0x98, 0x96, 0x92, 0x91, 0x8f, 0x8c, 0x89, 0x86, 0x84, 0x83,\n    0x85, 0x83, 0x80, 0x7e, 0x7e, 0x7e, 0x7f, 0x7e, 0x80, 0x81, 0x82, 0x82, 0x83, 0x84, 0x85, 0x86,\n    0x87, 0x88, 0x87, 0x85, 0x85, 0x85, 0x82, 0x7e, 0x7c, 0x78, 0x72, 0x6d, 0x6a, 0x66, 0x61, 0x5d,\n    0x5a, 0x59, 0x57, 0x56, 0x56, 0x57, 0x58, 0x59, 0x5b, 0x5d, 0x60, 0x62, 0x65, 0x67, 0x6b, 0x6d,\n    0x70, 0x70, 0x71, 0x72, 0x73, 0x73, 0x74, 0x74, 0x74, 0x75, 0x76, 0x77, 0x77, 0x75, 0x73, 0x72,\n    0x73, 0x71, 0x6f, 0x6c, 0x6a, 0x68, 0x68, 0x67, 0x66, 0x65, 0x64, 0x63, 0x63, 0x62, 0x61, 0x60,\n    0x60, 0x61, 0x62, 0x64, 0x65, 0x66, 0x67, 0x67, 0x6b, 0x6d, 0x6f, 0x6e, 0x6b, 0x6a, 0x6b, 0x6d,\n    0x6b, 0x6e, 0x72, 0x76, 0x78, 0x77, 0x76, 0x75, 0x76, 0x76, 0x77, 0x78, 0x79, 0x78, 0x76, 0x74,\n    0x72, 0x72, 0x71, 0x6f, 0x6c, 0x6a, 0x68, 0x67, 0x62, 0x60, 0x5d, 0x5b, 0x5a, 0x57, 0x52, 0x4f,\n    0x4c, 0x43, 0x3a, 0x35, 0x33, 0x2e, 0x29, 0x26, 0x2f, 0x2b, 0x25, 0x21, 0x25, 0x2a, 0x26, 0x1e,\n    0x19, 0x23, 0x30, 0x37, 0x37, 0x32, 0x2f, 0x2d, 0x2c, 0x3b, 0x4d, 0x55, 0x55, 0x53, 0x51, 0x51,\n    0x41, 0x3f, 0x41, 0x45, 0x45, 0x45, 0x4a, 0x52, 0x6f, 0x7f, 0x89, 0x82, 0x73, 0x67, 0x5c, 0x54,\n    0x54, 0x5a, 0x5c, 0x5a, 0x5c, 0x60, 0x5c, 0x53, 0x3e, 0x39, 0x36, 0x35, 0x33, 0x30, 0x2d, 0x2c,\n    0x27, 0x22, 0x1d, 0x1d, 0x24, 0x2c, 0x2c, 0x28, 0x21, 0x20, 0x20, 0x22, 0x26, 0x2e, 0x3b, 0x45,\n    0x47, 0x46, 0x46, 0x45, 0x41, 0x40, 0x4a, 0x57, 0x56, 0x47, 0x37, 0x28, 0x1b, 0x1d, 0x28, 0x2c,\n    0x33, 0x3f, 0x53, 0x51, 0x46, 0x41, 0x3e, 0x47, 0x4b, 0x44, 0x43, 0x4c, 0x54, 0x56, 0x54, 0x53,\n    0x44, 0x57, 0x64, 0x5c, 0x3b, 0x2b, 0x21, 0x39, 0x4e, 0x5c, 0x56, 0x4f, 0x49, 0x3f, 0x3f, 0x3c,\n    0x44, 0x4a, 0x4c, 0x47, 0x41, 0x3b, 0x32, 0x28, 0x32, 0x35, 0x3e, 0x48, 0x4f, 0x52, 0x55, 0x59,\n    0x5c, 0x59, 0x4c, 0x43, 0x4e, 0x5b, 0x4f, 0x39, 0x3c, 0x4d, 0x4e, 0x4c, 0x59, 0x5f, 0x58, 0x55,\n    0x51, 0x4e, 0x52, 0x61, 0x6f, 0x70, 0x66, 0x5c, 0x46, 0x4e, 0x3c, 0x22, 0x25, 0x36, 0x35, 0x2a,\n    0x37, 0x46, 0x4f, 0x43, 0x30, 0x2f, 0x44, 0x59, 0x5d, 0x51, 0x43, 0x3f, 0x43, 0x44, 0x3f, 0x38,\n    0x1e, 0x1e, 0x1c, 0x1a, 0x1b, 0x1e, 0x20, 0x21, 0x1f, 0x1c, 0x1b, 0x1b, 0x1b, 0x1b, 0x1d, 0x21,\n    0x23, 0x23, 0x24, 0x27, 0x29, 0x27, 0x21, 0x1c, 0x1f, 0x1f, 0x1f, 0x1d, 0x1b, 0x19, 0x1a, 0x1c,\n    0x1d, 0x1b, 0x1b, 0x1d, 0x21, 0x23, 0x22, 0x20, 0x20, 0x1e, 0x1c, 0x1d, 0x22, 0x2b, 0x34, 0x39,\n    0x3b, 0x38, 0x34, 0x34, 0x34, 0x32, 0x2c, 0x26, 0x21, 0x25, 0x27, 0x26, 0x26, 0x28, 0x28, 0x27,\n    0x21, 0x1f, 0x1f, 0x21, 0x21, 0x1d, 0x1b, 0x1b, 0x1a, 0x1f, 0x21, 0x1f, 0x1e, 0x20, 0x20, 0x1f,\n    0x1d, 0x1d, 0x1c, 0x1a, 0x19, 0x18, 0x18, 0x19, 0x1d, 0x1f, 0x23, 0x29, 0x2d, 0x2f, 0x32, 0x37,\n    0x35, 0x35, 0x33, 0x2c, 0x24, 0x1e, 0x1d, 0x1e, 0x1e, 0x1e, 0x1f, 0x20, 0x1e, 0x1b, 0x1c, 0x20,\n    0x2b, 0x2d, 0x2e, 0x30, 0x35, 0x3b, 0x3d, 0x3c, 0x35, 0x2f, 0x27, 0x22, 0x21, 0x23, 0x25, 0x26,\n    0x27, 0x27, 0x28, 0x2a, 0x2b, 0x2b, 0x2a, 0x28, 0x25, 0x27, 0x22, 0x1e, 0x1e, 0x20, 0x28, 0x36,\n    0x4e, 0x5a, 0x68, 0x6f, 0x6f, 0x6c, 0x66, 0x61, 0x59, 0x5e, 0x60, 0x5c, 0x5a, 0x5a, 0x55, 0x4e,\n    0x4c, 0x3f, 0x3b, 0x3d, 0x3a, 0x36, 0x33, 0x2e, 0x2c, 0x2b, 0x2e, 0x33, 0x30, 0x26, 0x20, 0x21,\n    0x1f, 0x20, 0x22, 0x23, 0x23, 0x21, 0x1e, 0x1c, 0x1b, 0x1a, 0x1b, 0x1d, 0x1c, 0x1b, 0x1c, 0x1f,\n    0x24, 0x29, 0x2b, 0x2a, 0x2e, 0x35, 0x36, 0x33, 0x27, 0x25, 0x24, 0x27, 0x2e, 0x36, 0x3c, 0x3f,\n    0x3f, 0x40, 0x41, 0x42, 0x44, 0x48, 0x4d, 0x51, 0x4f, 0x43, 0x39, 0x36, 0x38, 0x3d, 0x48, 0x53,\n    0x5b, 0x4f, 0x42, 0x3f, 0x47, 0x50, 0x53, 0x52, 0x4f, 0x55, 0x63, 0x74, 0x7e, 0x7b, 0x74, 0x6f,\n    0x64, 0x58, 0x4c, 0x46, 0x49, 0x52, 0x60, 0x6a, 0x61, 0x57, 0x4a, 0x41, 0x3d, 0x3e, 0x45, 0x4d,\n    0x41, 0x46, 0x4b, 0x50, 0x5a, 0x63, 0x60, 0x57, 0x4a, 0x45, 0x52, 0x62, 0x63, 0x62, 0x62, 0x5c,\n    0x57, 0x5f, 0x67, 0x6d, 0x75, 0x7b, 0x77, 0x6f, 0x6b, 0x73, 0x7b, 0x80, 0x81, 0x83, 0x88, 0x8d,\n    0x8e, 0x90, 0x93, 0x96, 0x97, 0x98, 0x9a, 0x9b, 0x9d, 0x9f, 0xa1, 0xa3, 0xa3, 0xa1, 0x9e, 0x9c,\n    0x9b, 0x99, 0x97, 0x96, 0x94, 0x92, 0x8f, 0x8d, 0x8a, 0x88, 0x86, 0x83, 0x80, 0x7d, 0x7b, 0x7a,\n    0x7a, 0x77, 0x73, 0x71, 0x72, 0x73, 0x73, 0x72, 0x76, 0x77, 0x78, 0x79, 0x7b, 0x7d, 0x7f, 0x80,\n    0x7e, 0x80, 0x80, 0x7f, 0x80, 0x81, 0x7f, 0x7c, 0x79, 0x76, 0x73, 0x6e, 0x69, 0x65, 0x61, 0x5f,\n    0x5d, 0x5b, 0x59, 0x57, 0x56, 0x56, 0x58, 0x59, 0x5a, 0x5d, 0x60, 0x63, 0x65, 0x67, 0x69, 0x6b,\n    0x6e, 0x6e, 0x6f, 0x70, 0x72, 0x74, 0x74, 0x74, 0x73, 0x74, 0x75, 0x75, 0x74, 0x72, 0x71, 0x71,\n    0x6f, 0x6e, 0x6b, 0x68, 0x65, 0x64, 0x63, 0x62, 0x62, 0x62, 0x62, 0x60, 0x5e, 0x5c, 0x5c, 0x5c,\n    0x5b, 0x5b, 0x5d, 0x5f, 0x61, 0x62, 0x63, 0x63, 0x67, 0x6a, 0x6c, 0x6c, 0x6b, 0x6a, 0x6b, 0x6c,\n    0x6c, 0x6d, 0x6f, 0x71, 0x73, 0x74, 0x73, 0x72, 0x73, 0x73, 0x72, 0x73, 0x74, 0x74, 0x73, 0x71,\n    0x70, 0x72, 0x73, 0x72, 0x6e, 0x6a, 0x6a, 0x6a, 0x65, 0x62, 0x5f, 0x5d, 0x5b, 0x58, 0x53, 0x4e,\n    0x4a, 0x41, 0x39, 0x35, 0x33, 0x2e, 0x2a, 0x29, 0x25, 0x27, 0x27, 0x29, 0x32, 0x3b, 0x39, 0x30,\n    0x2c, 0x34, 0x3c, 0x3d, 0x37, 0x2e, 0x29, 0x28, 0x25, 0x2c, 0x33, 0x37, 0x3c, 0x44, 0x4c, 0x4f,\n    0x42, 0x40, 0x40, 0x41, 0x3f, 0x3f, 0x49, 0x57, 0x67, 0x71, 0x7b, 0x7e, 0x7b, 0x71, 0x62, 0x56,\n    0x5f, 0x65, 0x69, 0x65, 0x5c, 0x55, 0x52, 0x51, 0x4e, 0x4c, 0x44, 0x3a, 0x31, 0x2e, 0x2c, 0x2b,\n    0x27, 0x20, 0x1d, 0x20, 0x26, 0x29, 0x2a, 0x2a, 0x28, 0x23, 0x1f, 0x1f, 0x1f, 0x21, 0x27, 0x2e,\n    0x2e, 0x37, 0x3f, 0x40, 0x3e, 0x3e, 0x42, 0x45, 0x4b, 0x40, 0x38, 0x2e, 0x21, 0x1e, 0x24, 0x26,\n    0x31, 0x3b, 0x48, 0x42, 0x40, 0x4a, 0x4e, 0x55, 0x4a, 0x41, 0x3e, 0x46, 0x4f, 0x52, 0x57, 0x5c,\n    0x4c, 0x56, 0x58, 0x4c, 0x2f, 0x24, 0x1c, 0x32, 0x4d, 0x5a, 0x52, 0x49, 0x47, 0x43, 0x40, 0x36,\n    0x48, 0x4d, 0x52, 0x52, 0x50, 0x4c, 0x42, 0x38, 0x2d, 0x33, 0x3f, 0x4a, 0x52, 0x56, 0x59, 0x5a,\n    0x5a, 0x4e, 0x3d, 0x41, 0x58, 0x5a, 0x46, 0x3a, 0x40, 0x4d, 0x47, 0x47, 0x5f, 0x6b, 0x5f, 0x59,\n    0x4e, 0x4d, 0x52, 0x5f, 0x69, 0x68, 0x5f, 0x58, 0x55, 0x37, 0x18, 0x1c, 0x31, 0x35, 0x34, 0x3f,\n    0x42, 0x4a, 0x49, 0x3a, 0x2f, 0x37, 0x4d, 0x5f, 0x58, 0x48, 0x3e, 0x44, 0x4f, 0x4e, 0x45, 0x3e,\n    0x1e, 0x18, 0x17, 0x1c, 0x1e, 0x1d, 0x21, 0x27, 0x23, 0x20, 0x1e, 0x1f, 0x20, 0x20, 0x22, 0x24,\n    0x1d, 0x20, 0x24, 0x25, 0x24, 0x21, 0x1d, 0x1b, 0x20, 0x21, 0x21, 0x21, 0x1f, 0x1e, 0x20, 0x22,\n    0x1f, 0x1c, 0x1b, 0x1d, 0x20, 0x23, 0x22, 0x21, 0x21, 0x22, 0x20, 0x1d, 0x1c, 0x24, 0x33, 0x3f,\n    0x51, 0x4b, 0x45, 0x44, 0x44, 0x3c, 0x2b, 0x1e, 0x21, 0x24, 0x27, 0x26, 0x27, 0x29, 0x2b, 0x2a,\n    0x24, 0x20, 0x1f, 0x20, 0x1f, 0x1b, 0x18, 0x19, 0x1a, 0x1e, 0x1f, 0x1b, 0x19, 0x1a, 0x19, 0x17,\n    0x18, 0x19, 0x1a, 0x19, 0x18, 0x17, 0x19, 0x1b, 0x1e, 0x1d, 0x21, 0x2a, 0x33, 0x37, 0x39, 0x3a,\n    0x37, 0x39, 0x39, 0x34, 0x2c, 0x24, 0x20, 0x1f, 0x1f, 0x21, 0x25, 0x28, 0x27, 0x23, 0x22, 0x25,\n    0x2f, 0x2e, 0x2d, 0x2f, 0x36, 0x3c, 0x3c, 0x38, 0x38, 0x32, 0x29, 0x23, 0x21, 0x21, 0x21, 0x21,\n    0x28, 0x27, 0x26, 0x28, 0x29, 0x28, 0x23, 0x1f, 0x22, 0x24, 0x20, 0x1c, 0x1d, 0x20, 0x2a, 0x39,\n    0x48, 0x53, 0x5f, 0x67, 0x6b, 0x6d, 0x6d, 0x6b, 0x71, 0x74, 0x72, 0x68, 0x62, 0x60, 0x5c, 0x56,\n    0x44, 0x38, 0x36, 0x3a, 0x38, 0x34, 0x30, 0x2a, 0x2e, 0x2d, 0x30, 0x33, 0x2d, 0x23, 0x22, 0x27,\n    0x21, 0x21, 0x20, 0x1f, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1d, 0x1d, 0x20, 0x20, 0x1d, 0x1c, 0x1d,\n    0x25, 0x26, 0x27, 0x29, 0x34, 0x3f, 0x3e, 0x36, 0x31, 0x2d, 0x2a, 0x2b, 0x32, 0x3a, 0x40, 0x43,\n    0x43, 0x3e, 0x3a, 0x39, 0x39, 0x3b, 0x44, 0x4c, 0x50, 0x41, 0x36, 0x33, 0x31, 0x2f, 0x38, 0x46,\n    0x4b, 0x46, 0x3f, 0x3d, 0x42, 0x49, 0x4c, 0x4c, 0x4b, 0x4a, 0x53, 0x68, 0x7b, 0x83, 0x82, 0x81,\n    0x6b, 0x5d, 0x4c, 0x44, 0x46, 0x50, 0x5d, 0x67, 0x70, 0x73, 0x76, 0x74, 0x6a, 0x5f, 0x5b, 0x5c,\n    0x59, 0x5a, 0x58, 0x57, 0x5d, 0x64, 0x61, 0x59, 0x4c, 0x46, 0x54, 0x65, 0x65, 0x64, 0x64, 0x5f,\n    0x59, 0x5f, 0x64, 0x66, 0x6d, 0x75, 0x74, 0x6d, 0x6c, 0x74, 0x7c, 0x80, 0x80, 0x82, 0x87, 0x8c,\n    0x8d, 0x8f, 0x93, 0x95, 0x97, 0x98, 0x9a, 0x9b, 0x9c, 0x9e, 0xa1, 0xa3, 0xa2, 0xa0, 0x9c, 0x9a,\n    0x95, 0x93, 0x90, 0x8d, 0x8b, 0x88, 0x85, 0x83, 0x7f, 0x7e, 0x7c, 0x79, 0x75, 0x72, 0x70, 0x6f,\n    0x6f, 0x6c, 0x68, 0x67, 0x67, 0x68, 0x68, 0x68, 0x69, 0x6a, 0x6b, 0x6d, 0x70, 0x73, 0x75, 0x76,\n    0x77, 0x78, 0x79, 0x79, 0x7b, 0x7d, 0x7c, 0x79, 0x75, 0x74, 0x71, 0x6d, 0x67, 0x63, 0x60, 0x5f,\n    0x5e, 0x5c, 0x59, 0x57, 0x56, 0x56, 0x57, 0x58, 0x5a, 0x5d, 0x61, 0x64, 0x65, 0x66, 0x67, 0x68,\n    0x6c, 0x6c, 0x6d, 0x6f, 0x72, 0x74, 0x75, 0x75, 0x74, 0x74, 0x73, 0x72, 0x71, 0x70, 0x70, 0x71,\n    0x6d, 0x6b, 0x68, 0x65, 0x62, 0x60, 0x5f, 0x5f, 0x5e, 0x5f, 0x5f, 0x5d, 0x5a, 0x58, 0x59, 0x5a,\n    0x58, 0x59, 0x5b, 0x5d, 0x5f, 0x60, 0x61, 0x61, 0x63, 0x64, 0x67, 0x68, 0x69, 0x69, 0x6a, 0x6b,\n    0x71, 0x70, 0x70, 0x70, 0x71, 0x72, 0x73, 0x73, 0x72, 0x71, 0x70, 0x70, 0x71, 0x71, 0x70, 0x70,\n    0x6e, 0x72, 0x75, 0x73, 0x6f, 0x6b, 0x6b, 0x6c, 0x67, 0x64, 0x60, 0x5d, 0x5c, 0x58, 0x53, 0x4e,\n    0x46, 0x3f, 0x3a, 0x39, 0x37, 0x34, 0x32, 0x34, 0x3b, 0x3d, 0x3d, 0x3b, 0x3e, 0x40, 0x39, 0x2d,\n    0x22, 0x2b, 0x34, 0x37, 0x32, 0x2c, 0x28, 0x28, 0x2d, 0x2b, 0x2a, 0x2e, 0x39, 0x42, 0x41, 0x3a,\n    0x36, 0x37, 0x3a, 0x3c, 0x3a, 0x3e, 0x50, 0x64, 0x6e, 0x6e, 0x71, 0x7a, 0x81, 0x7f, 0x71, 0x63,\n    0x5d, 0x5f, 0x64, 0x66, 0x5b, 0x4a, 0x43, 0x45, 0x48, 0x4c, 0x4a, 0x3d, 0x33, 0x2f, 0x2d, 0x2a,\n    0x25, 0x1f, 0x1d, 0x24, 0x2a, 0x2c, 0x2e, 0x31, 0x25, 0x20, 0x1f, 0x24, 0x27, 0x28, 0x2a, 0x2e,\n    0x36, 0x42, 0x48, 0x43, 0x3f, 0x44, 0x46, 0x42, 0x4d, 0x4d, 0x50, 0x4b, 0x3c, 0x30, 0x2a, 0x22,\n    0x2a, 0x37, 0x48, 0x45, 0x47, 0x54, 0x53, 0x52, 0x51, 0x4d, 0x4d, 0x4f, 0x49, 0x40, 0x3f, 0x45,\n    0x52, 0x4d, 0x41, 0x37, 0x29, 0x2c, 0x26, 0x38, 0x4d, 0x5b, 0x52, 0x4c, 0x51, 0x53, 0x4e, 0x3f,\n    0x47, 0x49, 0x4e, 0x56, 0x5e, 0x5d, 0x4d, 0x3c, 0x2f, 0x36, 0x41, 0x4b, 0x53, 0x59, 0x5e, 0x61,\n    0x66, 0x52, 0x3c, 0x47, 0x5f, 0x4f, 0x2f, 0x2a, 0x41, 0x4a, 0x40, 0x41, 0x62, 0x71, 0x63, 0x59,\n    0x46, 0x49, 0x4f, 0x57, 0x5e, 0x61, 0x5d, 0x59, 0x55, 0x43, 0x24, 0x19, 0x29, 0x36, 0x3e, 0x4d,\n    0x53, 0x4a, 0x38, 0x2a, 0x2d, 0x41, 0x55, 0x5f, 0x4d, 0x3e, 0x3a, 0x4b, 0x5b, 0x56, 0x45, 0x3a,\n    0x1f, 0x1c, 0x1a, 0x1b, 0x1d, 0x1d, 0x1c, 0x1b, 0x21, 0x1f, 0x1e, 0x1d, 0x1a, 0x19, 0x1e, 0x24,\n    0x1d, 0x1f, 0x23, 0x25, 0x23, 0x20, 0x21, 0x25, 0x21, 0x22, 0x26, 0x29, 0x2c, 0x2d, 0x30, 0x34,\n    0x25, 0x22, 0x1d, 0x1c, 0x20, 0x27, 0x2e, 0x32, 0x35, 0x33, 0x30, 0x2b, 0x28, 0x2b, 0x33, 0x39,\n    0x3e, 0x37, 0x31, 0x31, 0x32, 0x2d, 0x25, 0x20, 0x26, 0x26, 0x28, 0x2a, 0x2b, 0x2a, 0x28, 0x26,\n    0x28, 0x24, 0x22, 0x22, 0x22, 0x21, 0x21, 0x23, 0x23, 0x26, 0x28, 0x28, 0x24, 0x1e, 0x19, 0x17,\n    0x16, 0x16, 0x15, 0x17, 0x19, 0x1a, 0x1b, 0x1b, 0x1d, 0x1d, 0x1e, 0x22, 0x29, 0x32, 0x39, 0x3e,\n    0x3c, 0x40, 0x41, 0x39, 0x2b, 0x21, 0x1f, 0x22, 0x22, 0x24, 0x29, 0x2e, 0x2d, 0x27, 0x25, 0x27,\n    0x2b, 0x2f, 0x32, 0x34, 0x36, 0x38, 0x36, 0x33, 0x32, 0x35, 0x34, 0x2f, 0x27, 0x23, 0x25, 0x29,\n    0x2b, 0x2b, 0x2a, 0x29, 0x27, 0x25, 0x25, 0x25, 0x21, 0x22, 0x22, 0x1f, 0x1c, 0x21, 0x30, 0x3f,\n    0x4a, 0x4e, 0x52, 0x57, 0x5d, 0x62, 0x62, 0x60, 0x68, 0x6f, 0x74, 0x74, 0x73, 0x6f, 0x62, 0x53,\n    0x40, 0x35, 0x35, 0x39, 0x33, 0x2d, 0x2d, 0x2d, 0x30, 0x38, 0x3d, 0x37, 0x29, 0x1f, 0x20, 0x24,\n    0x21, 0x1f, 0x1d, 0x1d, 0x1e, 0x1e, 0x1d, 0x1b, 0x1d, 0x1e, 0x1f, 0x1e, 0x1d, 0x1d, 0x1d, 0x1e,\n    0x23, 0x22, 0x23, 0x27, 0x2f, 0x37, 0x3b, 0x3d, 0x37, 0x31, 0x2c, 0x2d, 0x2f, 0x33, 0x37, 0x3b,\n    0x3d, 0x40, 0x41, 0x3f, 0x3c, 0x3a, 0x3b, 0x3d, 0x42, 0x3b, 0x34, 0x32, 0x30, 0x30, 0x35, 0x3b,\n    0x41, 0x3e, 0x3e, 0x45, 0x4f, 0x51, 0x4a, 0x41, 0x3d, 0x3e, 0x3e, 0x43, 0x53, 0x66, 0x6e, 0x6c,\n    0x53, 0x4b, 0x46, 0x45, 0x45, 0x43, 0x47, 0x4e, 0x48, 0x4a, 0x4e, 0x51, 0x52, 0x54, 0x59, 0x5e,\n    0x5a, 0x60, 0x62, 0x60, 0x62, 0x66, 0x62, 0x5a, 0x4e, 0x4f, 0x5c, 0x69, 0x69, 0x66, 0x64, 0x60,\n    0x5e, 0x5f, 0x60, 0x63, 0x68, 0x6d, 0x6f, 0x6e, 0x6b, 0x74, 0x7c, 0x7e, 0x7e, 0x82, 0x88, 0x8c,\n    0x8c, 0x8e, 0x91, 0x94, 0x95, 0x96, 0x98, 0x99, 0x9a, 0x9d, 0x9f, 0x9f, 0x9f, 0x9e, 0x9a, 0x95,\n    0x90, 0x8d, 0x89, 0x86, 0x83, 0x7f, 0x7a, 0x76, 0x76, 0x73, 0x6f, 0x6a, 0x66, 0x63, 0x61, 0x61,\n    0x61, 0x5c, 0x57, 0x55, 0x56, 0x58, 0x58, 0x57, 0x59, 0x5b, 0x5c, 0x5e, 0x61, 0x66, 0x6c, 0x70,\n    0x6b, 0x71, 0x74, 0x73, 0x74, 0x76, 0x76, 0x73, 0x70, 0x6f, 0x6c, 0x68, 0x66, 0x65, 0x61, 0x5c,\n    0x5c, 0x5b, 0x59, 0x58, 0x58, 0x58, 0x58, 0x58, 0x5b, 0x5d, 0x5f, 0x61, 0x64, 0x66, 0x68, 0x69,\n    0x6a, 0x6b, 0x6e, 0x70, 0x72, 0x72, 0x71, 0x70, 0x73, 0x72, 0x72, 0x72, 0x72, 0x71, 0x6e, 0x6c,\n    0x6b, 0x69, 0x66, 0x64, 0x62, 0x60, 0x5e, 0x5c, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x59, 0x59, 0x58,\n    0x5b, 0x5b, 0x5b, 0x5c, 0x5d, 0x5e, 0x5f, 0x60, 0x5f, 0x61, 0x63, 0x63, 0x65, 0x68, 0x69, 0x67,\n    0x6c, 0x6f, 0x73, 0x75, 0x74, 0x73, 0x74, 0x75, 0x72, 0x71, 0x71, 0x6f, 0x6d, 0x6b, 0x6b, 0x6c,\n    0x6f, 0x71, 0x73, 0x72, 0x6f, 0x6d, 0x6f, 0x71, 0x6b, 0x64, 0x5d, 0x5b, 0x5d, 0x5b, 0x54, 0x4d,\n    0x45, 0x3f, 0x3a, 0x37, 0x2f, 0x26, 0x26, 0x2c, 0x40, 0x48, 0x4e, 0x4d, 0x48, 0x41, 0x38, 0x2f,\n    0x28, 0x2e, 0x27, 0x20, 0x29, 0x33, 0x31, 0x2c, 0x2c, 0x2e, 0x2e, 0x31, 0x3c, 0x45, 0x42, 0x38,\n    0x35, 0x3b, 0x41, 0x40, 0x3e, 0x46, 0x59, 0x6b, 0x7a, 0x6e, 0x6c, 0x69, 0x5f, 0x5d, 0x60, 0x5a,\n    0x58, 0x52, 0x53, 0x57, 0x52, 0x45, 0x3d, 0x3e, 0x40, 0x41, 0x3c, 0x33, 0x2f, 0x31, 0x30, 0x2c,\n    0x23, 0x24, 0x27, 0x2b, 0x32, 0x35, 0x32, 0x2c, 0x25, 0x24, 0x26, 0x2a, 0x2c, 0x2a, 0x26, 0x24,\n    0x2a, 0x2b, 0x33, 0x3f, 0x42, 0x3f, 0x40, 0x46, 0x48, 0x40, 0x36, 0x37, 0x3d, 0x38, 0x2d, 0x2c,\n    0x2f, 0x32, 0x3a, 0x43, 0x49, 0x4b, 0x4f, 0x55, 0x52, 0x46, 0x4d, 0x54, 0x45, 0x3a, 0x43, 0x4c,\n    0x52, 0x45, 0x3e, 0x36, 0x33, 0x2e, 0x2b, 0x3c, 0x53, 0x50, 0x47, 0x43, 0x49, 0x49, 0x45, 0x44,\n    0x4d, 0x4d, 0x52, 0x5a, 0x5b, 0x52, 0x42, 0x36, 0x2f, 0x31, 0x3d, 0x50, 0x5d, 0x60, 0x63, 0x69,\n    0x68, 0x45, 0x3d, 0x4d, 0x57, 0x46, 0x29, 0x24, 0x44, 0x43, 0x49, 0x5a, 0x69, 0x62, 0x53, 0x4f,\n    0x4f, 0x53, 0x59, 0x5b, 0x55, 0x4e, 0x4e, 0x52, 0x45, 0x3f, 0x35, 0x31, 0x39, 0x46, 0x4c, 0x4c,\n    0x4b, 0x4f, 0x4b, 0x40, 0x41, 0x4d, 0x52, 0x4e, 0x3c, 0x34, 0x3b, 0x50, 0x57, 0x48, 0x3a, 0x38,\n    0x2b, 0x24, 0x1d, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1c, 0x1b, 0x1b, 0x1c, 0x1b, 0x19, 0x1b, 0x1e,\n    0x1d, 0x1f, 0x22, 0x25, 0x23, 0x20, 0x22, 0x25, 0x25, 0x28, 0x2b, 0x2d, 0x2e, 0x30, 0x30, 0x31,\n    0x2c, 0x27, 0x21, 0x1f, 0x20, 0x24, 0x27, 0x29, 0x33, 0x33, 0x31, 0x2d, 0x29, 0x29, 0x2d, 0x30,\n    0x2d, 0x2a, 0x2a, 0x2d, 0x2f, 0x2c, 0x28, 0x26, 0x27, 0x26, 0x28, 0x2c, 0x31, 0x32, 0x2e, 0x2a,\n    0x28, 0x24, 0x20, 0x21, 0x23, 0x24, 0x26, 0x28, 0x2b, 0x2d, 0x2f, 0x2e, 0x2a, 0x24, 0x1f, 0x1d,\n    0x17, 0x16, 0x15, 0x16, 0x17, 0x18, 0x18, 0x18, 0x1b, 0x1b, 0x1d, 0x21, 0x28, 0x30, 0x37, 0x3b,\n    0x35, 0x38, 0x39, 0x34, 0x2c, 0x25, 0x21, 0x21, 0x20, 0x21, 0x24, 0x26, 0x26, 0x23, 0x23, 0x24,\n    0x29, 0x2f, 0x34, 0x36, 0x39, 0x3c, 0x3c, 0x3b, 0x3e, 0x3d, 0x3b, 0x35, 0x2e, 0x2a, 0x2c, 0x2e,\n    0x2f, 0x2e, 0x2e, 0x30, 0x30, 0x2c, 0x23, 0x1c, 0x25, 0x24, 0x23, 0x23, 0x26, 0x2f, 0x3f, 0x4d,\n    0x56, 0x5a, 0x5e, 0x63, 0x68, 0x6b, 0x69, 0x64, 0x5f, 0x62, 0x61, 0x5f, 0x61, 0x62, 0x5a, 0x50,\n    0x4b, 0x3c, 0x36, 0x39, 0x34, 0x2d, 0x29, 0x26, 0x2b, 0x30, 0x33, 0x2f, 0x25, 0x1f, 0x1f, 0x22,\n    0x20, 0x1e, 0x1d, 0x1c, 0x1c, 0x1c, 0x1c, 0x1b, 0x19, 0x1a, 0x1d, 0x1f, 0x1f, 0x1f, 0x1f, 0x1e,\n    0x21, 0x22, 0x24, 0x27, 0x2d, 0x34, 0x3c, 0x42, 0x48, 0x40, 0x37, 0x33, 0x31, 0x31, 0x33, 0x37,\n    0x43, 0x42, 0x3f, 0x3c, 0x3a, 0x39, 0x38, 0x38, 0x39, 0x36, 0x34, 0x34, 0x33, 0x31, 0x33, 0x37,\n    0x37, 0x37, 0x39, 0x40, 0x48, 0x4c, 0x49, 0x45, 0x42, 0x41, 0x3c, 0x39, 0x3f, 0x49, 0x4b, 0x46,\n    0x3f, 0x48, 0x4b, 0x42, 0x3a, 0x3b, 0x3e, 0x3f, 0x40, 0x3f, 0x42, 0x4a, 0x50, 0x50, 0x48, 0x42,\n    0x48, 0x48, 0x4c, 0x57, 0x64, 0x6b, 0x6a, 0x66, 0x52, 0x54, 0x60, 0x6b, 0x69, 0x65, 0x64, 0x61,\n    0x60, 0x61, 0x63, 0x65, 0x68, 0x6c, 0x6e, 0x6f, 0x6d, 0x75, 0x7c, 0x7e, 0x7f, 0x83, 0x88, 0x8b,\n    0x8d, 0x8f, 0x92, 0x94, 0x95, 0x95, 0x97, 0x98, 0x9a, 0x9c, 0x9c, 0x9c, 0x9c, 0x9b, 0x95, 0x8f,\n    0x8b, 0x86, 0x80, 0x7b, 0x78, 0x74, 0x70, 0x6c, 0x65, 0x64, 0x62, 0x60, 0x5d, 0x59, 0x55, 0x52,\n    0x4c, 0x49, 0x44, 0x42, 0x42, 0x42, 0x42, 0x41, 0x48, 0x48, 0x49, 0x4b, 0x4d, 0x51, 0x56, 0x59,\n    0x62, 0x67, 0x6a, 0x6b, 0x6c, 0x6e, 0x6f, 0x6d, 0x6a, 0x6a, 0x68, 0x65, 0x63, 0x62, 0x5f, 0x5a,\n    0x5b, 0x5a, 0x59, 0x58, 0x58, 0x58, 0x59, 0x5a, 0x5b, 0x5c, 0x5d, 0x60, 0x63, 0x66, 0x68, 0x69,\n    0x6c, 0x6e, 0x70, 0x72, 0x74, 0x74, 0x74, 0x74, 0x72, 0x72, 0x71, 0x72, 0x72, 0x70, 0x6e, 0x6c,\n    0x6b, 0x68, 0x64, 0x60, 0x5f, 0x5e, 0x5d, 0x5c, 0x59, 0x59, 0x59, 0x59, 0x59, 0x59, 0x58, 0x58,\n    0x5a, 0x5a, 0x5a, 0x5b, 0x5d, 0x5f, 0x60, 0x61, 0x61, 0x64, 0x66, 0x67, 0x6a, 0x6e, 0x6f, 0x6e,\n    0x70, 0x73, 0x76, 0x78, 0x77, 0x77, 0x77, 0x78, 0x77, 0x77, 0x75, 0x73, 0x70, 0x6d, 0x69, 0x67,\n    0x6c, 0x70, 0x73, 0x73, 0x71, 0x6f, 0x6e, 0x6f, 0x6a, 0x65, 0x60, 0x5e, 0x5e, 0x5b, 0x55, 0x50,\n    0x47, 0x42, 0x41, 0x40, 0x37, 0x27, 0x1c, 0x19, 0x2d, 0x3a, 0x45, 0x48, 0x44, 0x40, 0x3c, 0x38,\n    0x33, 0x38, 0x33, 0x32, 0x40, 0x48, 0x40, 0x34, 0x35, 0x3b, 0x44, 0x4a, 0x49, 0x42, 0x3c, 0x39,\n    0x34, 0x3c, 0x3e, 0x3d, 0x47, 0x5b, 0x68, 0x6b, 0x7f, 0x80, 0x7e, 0x72, 0x5f, 0x59, 0x5f, 0x64,\n    0x5f, 0x55, 0x4e, 0x4f, 0x51, 0x4f, 0x4b, 0x49, 0x43, 0x39, 0x2c, 0x27, 0x2b, 0x30, 0x2d, 0x27,\n    0x29, 0x28, 0x28, 0x28, 0x2b, 0x2c, 0x2a, 0x27, 0x21, 0x23, 0x26, 0x2c, 0x31, 0x30, 0x28, 0x21,\n    0x24, 0x21, 0x25, 0x2f, 0x35, 0x35, 0x37, 0x3b, 0x38, 0x31, 0x28, 0x28, 0x2e, 0x2c, 0x29, 0x2e,\n    0x33, 0x36, 0x3a, 0x40, 0x45, 0x4b, 0x51, 0x54, 0x48, 0x3f, 0x49, 0x52, 0x45, 0x3c, 0x45, 0x4e,\n    0x4d, 0x5c, 0x67, 0x50, 0x31, 0x1e, 0x1f, 0x39, 0x66, 0x58, 0x50, 0x5a, 0x5e, 0x4c, 0x40, 0x48,\n    0x47, 0x4a, 0x52, 0x5a, 0x5d, 0x56, 0x48, 0x3d, 0x34, 0x3a, 0x47, 0x58, 0x63, 0x68, 0x6c, 0x70,\n    0x65, 0x4a, 0x49, 0x59, 0x5d, 0x48, 0x2e, 0x2d, 0x42, 0x55, 0x61, 0x62, 0x64, 0x60, 0x56, 0x51,\n    0x4c, 0x51, 0x59, 0x5c, 0x57, 0x4d, 0x47, 0x45, 0x45, 0x3d, 0x34, 0x30, 0x36, 0x40, 0x48, 0x4b,\n    0x56, 0x51, 0x54, 0x57, 0x4b, 0x37, 0x31, 0x3a, 0x34, 0x3c, 0x49, 0x52, 0x50, 0x48, 0x42, 0x41,\n    0x3e, 0x36, 0x2a, 0x20, 0x1a, 0x1a, 0x1c, 0x1d, 0x1b, 0x1a, 0x1d, 0x22, 0x23, 0x20, 0x1c, 0x1b,\n    0x1b, 0x1c, 0x1f, 0x22, 0x21, 0x1f, 0x21, 0x24, 0x27, 0x2b, 0x2d, 0x2a, 0x2a, 0x2f, 0x30, 0x2f,\n    0x2b, 0x27, 0x23, 0x22, 0x25, 0x29, 0x29, 0x29, 0x2f, 0x30, 0x2f, 0x2d, 0x29, 0x27, 0x27, 0x28,\n    0x28, 0x25, 0x24, 0x26, 0x26, 0x24, 0x24, 0x26, 0x29, 0x26, 0x25, 0x2a, 0x31, 0x35, 0x33, 0x30,\n    0x27, 0x21, 0x1c, 0x1c, 0x1f, 0x21, 0x23, 0x25, 0x26, 0x28, 0x29, 0x28, 0x25, 0x20, 0x1c, 0x19,\n    0x17, 0x16, 0x15, 0x15, 0x16, 0x17, 0x17, 0x17, 0x1a, 0x1b, 0x1e, 0x22, 0x28, 0x2e, 0x34, 0x37,\n    0x33, 0x33, 0x33, 0x32, 0x2e, 0x29, 0x24, 0x20, 0x1f, 0x20, 0x21, 0x20, 0x21, 0x23, 0x25, 0x24,\n    0x29, 0x2f, 0x35, 0x37, 0x38, 0x3d, 0x41, 0x43, 0x45, 0x41, 0x3b, 0x34, 0x30, 0x2e, 0x2e, 0x2f,\n    0x2b, 0x2a, 0x2c, 0x32, 0x37, 0x35, 0x2b, 0x23, 0x23, 0x22, 0x23, 0x26, 0x2c, 0x34, 0x42, 0x4d,\n    0x54, 0x58, 0x5e, 0x64, 0x6b, 0x6f, 0x6c, 0x67, 0x67, 0x66, 0x63, 0x62, 0x67, 0x6c, 0x68, 0x60,\n    0x56, 0x42, 0x38, 0x39, 0x36, 0x2f, 0x2a, 0x25, 0x2e, 0x30, 0x30, 0x2d, 0x27, 0x22, 0x20, 0x20,\n    0x20, 0x20, 0x20, 0x1f, 0x1e, 0x1e, 0x1f, 0x21, 0x25, 0x26, 0x27, 0x28, 0x27, 0x25, 0x21, 0x1e,\n    0x20, 0x24, 0x27, 0x27, 0x29, 0x2f, 0x39, 0x42, 0x43, 0x3c, 0x34, 0x30, 0x2f, 0x30, 0x34, 0x38,\n    0x3f, 0x41, 0x47, 0x4d, 0x51, 0x4e, 0x46, 0x3f, 0x39, 0x39, 0x39, 0x39, 0x36, 0x33, 0x33, 0x35,\n    0x41, 0x46, 0x4e, 0x54, 0x57, 0x56, 0x54, 0x52, 0x49, 0x48, 0x42, 0x3c, 0x3b, 0x3f, 0x3e, 0x3a,\n    0x40, 0x4f, 0x5c, 0x5a, 0x50, 0x4b, 0x4e, 0x54, 0x55, 0x50, 0x4b, 0x4d, 0x52, 0x53, 0x4d, 0x46,\n    0x4b, 0x43, 0x45, 0x56, 0x66, 0x69, 0x65, 0x63, 0x58, 0x5a, 0x65, 0x6c, 0x67, 0x63, 0x63, 0x61,\n    0x62, 0x62, 0x63, 0x63, 0x63, 0x65, 0x6a, 0x6f, 0x70, 0x76, 0x7c, 0x7e, 0x80, 0x85, 0x88, 0x89,\n    0x8d, 0x8f, 0x92, 0x94, 0x94, 0x95, 0x96, 0x97, 0x99, 0x9a, 0x99, 0x98, 0x98, 0x96, 0x8f, 0x87,\n    0x85, 0x7d, 0x74, 0x6f, 0x6d, 0x6c, 0x69, 0x66, 0x62, 0x60, 0x5c, 0x57, 0x52, 0x4d, 0x47, 0x43,\n    0x49, 0x47, 0x45, 0x43, 0x42, 0x41, 0x41, 0x41, 0x3a, 0x3a, 0x3a, 0x3a, 0x3b, 0x3e, 0x42, 0x45,\n    0x4c, 0x51, 0x57, 0x5a, 0x5e, 0x64, 0x67, 0x68, 0x65, 0x66, 0x65, 0x63, 0x62, 0x61, 0x5e, 0x5a,\n    0x59, 0x59, 0x58, 0x58, 0x58, 0x59, 0x5b, 0x5c, 0x5b, 0x5c, 0x5d, 0x5f, 0x62, 0x65, 0x68, 0x6a,\n    0x6e, 0x6f, 0x71, 0x72, 0x74, 0x75, 0x75, 0x75, 0x72, 0x71, 0x70, 0x70, 0x70, 0x6f, 0x6d, 0x6b,\n    0x6a, 0x67, 0x61, 0x5d, 0x5b, 0x5b, 0x5b, 0x5b, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58,\n    0x59, 0x59, 0x5a, 0x5b, 0x5d, 0x61, 0x63, 0x65, 0x65, 0x69, 0x6c, 0x6e, 0x71, 0x75, 0x77, 0x76,\n    0x77, 0x79, 0x7b, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7b, 0x79, 0x78, 0x75, 0x71, 0x6b, 0x66,\n    0x6a, 0x6e, 0x72, 0x74, 0x72, 0x70, 0x6f, 0x6f, 0x6c, 0x69, 0x64, 0x61, 0x5e, 0x5a, 0x55, 0x51,\n    0x4b, 0x40, 0x36, 0x32, 0x30, 0x2d, 0x2e, 0x32, 0x31, 0x33, 0x36, 0x3c, 0x42, 0x42, 0x38, 0x2d,\n    0x35, 0x3b, 0x35, 0x2d, 0x32, 0x3a, 0x3e, 0x41, 0x36, 0x36, 0x3b, 0x40, 0x3d, 0x35, 0x34, 0x3b,\n    0x37, 0x3a, 0x3e, 0x44, 0x51, 0x61, 0x6a, 0x6a, 0x5e, 0x6d, 0x7b, 0x83, 0x86, 0x7d, 0x69, 0x5a,\n    0x5d, 0x55, 0x4b, 0x4a, 0x52, 0x5a, 0x58, 0x51, 0x46, 0x38, 0x2b, 0x2a, 0x31, 0x36, 0x37, 0x35,\n    0x2b, 0x29, 0x27, 0x26, 0x27, 0x29, 0x2c, 0x2d, 0x2f, 0x2c, 0x27, 0x26, 0x2b, 0x31, 0x2f, 0x28,\n    0x25, 0x1f, 0x1e, 0x24, 0x2c, 0x30, 0x35, 0x3a, 0x37, 0x2f, 0x22, 0x1c, 0x1f, 0x21, 0x27, 0x35,\n    0x36, 0x39, 0x3b, 0x3b, 0x42, 0x4d, 0x53, 0x53, 0x51, 0x49, 0x54, 0x5c, 0x4d, 0x42, 0x49, 0x50,\n    0x53, 0x4b, 0x40, 0x2c, 0x28, 0x2a, 0x27, 0x30, 0x4f, 0x50, 0x50, 0x54, 0x5a, 0x51, 0x41, 0x3b,\n    0x3d, 0x43, 0x4d, 0x57, 0x5a, 0x55, 0x4a, 0x41, 0x30, 0x3c, 0x4a, 0x56, 0x5f, 0x66, 0x69, 0x69,\n    0x5a, 0x47, 0x4d, 0x5a, 0x55, 0x3b, 0x23, 0x29, 0x38, 0x3c, 0x46, 0x5a, 0x69, 0x61, 0x52, 0x4e,\n    0x4c, 0x4b, 0x4c, 0x4d, 0x4a, 0x45, 0x43, 0x43, 0x47, 0x34, 0x26, 0x2e, 0x43, 0x52, 0x54, 0x4f,\n    0x50, 0x58, 0x54, 0x42, 0x33, 0x2d, 0x27, 0x20, 0x25, 0x41, 0x5d, 0x68, 0x6c, 0x70, 0x6d, 0x65,\n    0x3f, 0x3d, 0x36, 0x2a, 0x1f, 0x1b, 0x1c, 0x1d, 0x1d, 0x1d, 0x22, 0x2a, 0x2e, 0x2a, 0x23, 0x1f,\n    0x18, 0x18, 0x1b, 0x1e, 0x1e, 0x1d, 0x1e, 0x21, 0x27, 0x2b, 0x2a, 0x24, 0x24, 0x2b, 0x2e, 0x2d,\n    0x25, 0x22, 0x20, 0x22, 0x28, 0x2b, 0x2b, 0x2a, 0x29, 0x2a, 0x2c, 0x2c, 0x2d, 0x2f, 0x32, 0x34,\n    0x38, 0x30, 0x28, 0x23, 0x21, 0x1f, 0x1f, 0x21, 0x29, 0x26, 0x22, 0x23, 0x28, 0x2d, 0x30, 0x30,\n    0x27, 0x20, 0x1a, 0x1a, 0x1c, 0x1c, 0x1c, 0x1c, 0x22, 0x24, 0x27, 0x27, 0x25, 0x22, 0x20, 0x1f,\n    0x1c, 0x1b, 0x1a, 0x1a, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1d, 0x20, 0x24, 0x28, 0x2c, 0x31, 0x34,\n    0x37, 0x36, 0x34, 0x31, 0x2e, 0x29, 0x25, 0x22, 0x1f, 0x22, 0x23, 0x21, 0x23, 0x28, 0x2a, 0x28,\n    0x2c, 0x32, 0x36, 0x34, 0x34, 0x39, 0x40, 0x46, 0x42, 0x3b, 0x32, 0x2d, 0x2c, 0x2c, 0x2c, 0x2b,\n    0x28, 0x29, 0x2b, 0x2e, 0x31, 0x31, 0x2e, 0x2c, 0x1f, 0x21, 0x25, 0x29, 0x2b, 0x2f, 0x39, 0x42,\n    0x45, 0x48, 0x4c, 0x52, 0x5b, 0x63, 0x64, 0x62, 0x6a, 0x6a, 0x6a, 0x6e, 0x75, 0x79, 0x75, 0x6d,\n    0x53, 0x40, 0x36, 0x37, 0x34, 0x2f, 0x2d, 0x29, 0x36, 0x36, 0x35, 0x31, 0x2a, 0x24, 0x20, 0x1e,\n    0x1f, 0x21, 0x21, 0x21, 0x1f, 0x20, 0x23, 0x26, 0x2f, 0x2e, 0x2d, 0x2c, 0x2a, 0x27, 0x22, 0x1e,\n    0x22, 0x25, 0x27, 0x27, 0x27, 0x2b, 0x33, 0x3a, 0x33, 0x2e, 0x2b, 0x2b, 0x2d, 0x30, 0x36, 0x3b,\n    0x39, 0x3f, 0x4a, 0x54, 0x59, 0x56, 0x4c, 0x45, 0x3f, 0x40, 0x41, 0x3e, 0x39, 0x35, 0x33, 0x34,\n    0x3f, 0x4a, 0x58, 0x5d, 0x59, 0x52, 0x4d, 0x4c, 0x4c, 0x4d, 0x4b, 0x47, 0x47, 0x4b, 0x4b, 0x4a,\n    0x42, 0x47, 0x57, 0x65, 0x60, 0x50, 0x50, 0x5d, 0x64, 0x65, 0x65, 0x65, 0x68, 0x6f, 0x75, 0x78,\n    0x64, 0x5c, 0x5b, 0x67, 0x70, 0x6f, 0x69, 0x65, 0x5c, 0x5f, 0x68, 0x6c, 0x65, 0x61, 0x63, 0x61,\n    0x60, 0x5f, 0x5e, 0x5c, 0x5a, 0x5c, 0x64, 0x6d, 0x71, 0x77, 0x7c, 0x7f, 0x81, 0x85, 0x88, 0x87,\n    0x8c, 0x8e, 0x91, 0x93, 0x94, 0x95, 0x96, 0x97, 0x99, 0x99, 0x97, 0x96, 0x96, 0x94, 0x8c, 0x84,\n    0x7b, 0x71, 0x65, 0x5e, 0x5b, 0x5a, 0x58, 0x55, 0x50, 0x4d, 0x48, 0x45, 0x45, 0x44, 0x43, 0x42,\n    0x39, 0x39, 0x38, 0x36, 0x34, 0x32, 0x32, 0x33, 0x32, 0x32, 0x32, 0x31, 0x31, 0x34, 0x37, 0x3a,\n    0x3a, 0x3e, 0x43, 0x48, 0x4d, 0x53, 0x58, 0x5b, 0x5c, 0x5f, 0x5f, 0x5e, 0x5d, 0x5d, 0x5b, 0x57,\n    0x57, 0x57, 0x56, 0x56, 0x58, 0x5a, 0x5c, 0x5e, 0x5d, 0x5e, 0x5f, 0x60, 0x63, 0x66, 0x69, 0x6b,\n    0x6f, 0x6f, 0x6f, 0x70, 0x71, 0x71, 0x72, 0x72, 0x71, 0x70, 0x6f, 0x6f, 0x6e, 0x6e, 0x6c, 0x6a,\n    0x69, 0x66, 0x61, 0x5e, 0x5c, 0x5b, 0x5a, 0x59, 0x58, 0x58, 0x58, 0x58, 0x58, 0x59, 0x59, 0x59,\n    0x5b, 0x5b, 0x5c, 0x5e, 0x61, 0x65, 0x69, 0x6b, 0x6d, 0x71, 0x74, 0x76, 0x79, 0x7d, 0x7f, 0x7d,\n    0x7d, 0x7f, 0x80, 0x81, 0x81, 0x81, 0x81, 0x81, 0x80, 0x7d, 0x7b, 0x7a, 0x7a, 0x77, 0x71, 0x6d,\n    0x6c, 0x6f, 0x72, 0x73, 0x72, 0x71, 0x70, 0x70, 0x6e, 0x6c, 0x68, 0x64, 0x5f, 0x59, 0x54, 0x51,\n    0x4a, 0x43, 0x3b, 0x38, 0x34, 0x30, 0x2e, 0x2f, 0x29, 0x28, 0x2a, 0x33, 0x3d, 0x3e, 0x35, 0x2b,\n    0x2c, 0x31, 0x2e, 0x2a, 0x2e, 0x30, 0x2e, 0x2f, 0x32, 0x2d, 0x2d, 0x33, 0x38, 0x3a, 0x3b, 0x3e,\n    0x39, 0x35, 0x3c, 0x4d, 0x56, 0x55, 0x5c, 0x6a, 0x70, 0x70, 0x64, 0x60, 0x72, 0x7b, 0x73, 0x6e,\n    0x5e, 0x5f, 0x5b, 0x54, 0x56, 0x5b, 0x56, 0x4a, 0x3b, 0x32, 0x2c, 0x2c, 0x2c, 0x2a, 0x2e, 0x33,\n    0x2b, 0x28, 0x26, 0x25, 0x25, 0x27, 0x2e, 0x34, 0x3e, 0x3a, 0x30, 0x27, 0x28, 0x30, 0x32, 0x2d,\n    0x2b, 0x25, 0x21, 0x23, 0x27, 0x2e, 0x37, 0x3e, 0x43, 0x3a, 0x28, 0x1b, 0x19, 0x1a, 0x26, 0x39,\n    0x40, 0x43, 0x41, 0x3d, 0x41, 0x4c, 0x4f, 0x4a, 0x48, 0x42, 0x4e, 0x56, 0x47, 0x3f, 0x48, 0x4f,\n    0x5c, 0x52, 0x49, 0x3e, 0x3d, 0x3a, 0x2d, 0x31, 0x52, 0x5c, 0x5e, 0x5b, 0x5c, 0x54, 0x40, 0x31,\n    0x3b, 0x43, 0x4d, 0x54, 0x56, 0x51, 0x47, 0x3d, 0x31, 0x42, 0x51, 0x59, 0x60, 0x68, 0x6a, 0x66,\n    0x54, 0x44, 0x4b, 0x53, 0x46, 0x29, 0x15, 0x20, 0x3b, 0x4b, 0x60, 0x73, 0x75, 0x61, 0x4e, 0x4c,\n    0x39, 0x37, 0x37, 0x38, 0x38, 0x39, 0x3e, 0x44, 0x40, 0x2d, 0x20, 0x2b, 0x3f, 0x48, 0x43, 0x3a,\n    0x36, 0x30, 0x37, 0x47, 0x46, 0x34, 0x2b, 0x30, 0x40, 0x56, 0x65, 0x63, 0x5f, 0x5c, 0x4f, 0x3e,\n    0x2b, 0x33, 0x37, 0x30, 0x25, 0x1f, 0x1e, 0x1e, 0x1d, 0x1e, 0x23, 0x2c, 0x31, 0x2d, 0x25, 0x20,\n    0x17, 0x17, 0x18, 0x1b, 0x1c, 0x1b, 0x1c, 0x1f, 0x25, 0x2a, 0x2b, 0x28, 0x27, 0x29, 0x29, 0x26,\n    0x21, 0x1f, 0x1e, 0x21, 0x25, 0x28, 0x28, 0x27, 0x2a, 0x2a, 0x2b, 0x2e, 0x32, 0x39, 0x40, 0x45,\n    0x42, 0x38, 0x2d, 0x29, 0x28, 0x25, 0x22, 0x20, 0x24, 0x24, 0x24, 0x23, 0x23, 0x23, 0x25, 0x27,\n    0x24, 0x1e, 0x1b, 0x1c, 0x1c, 0x1b, 0x18, 0x18, 0x1c, 0x1e, 0x22, 0x24, 0x24, 0x24, 0x24, 0x24,\n    0x25, 0x24, 0x22, 0x21, 0x21, 0x21, 0x20, 0x1f, 0x1c, 0x1e, 0x21, 0x24, 0x26, 0x29, 0x2d, 0x30,\n    0x38, 0x38, 0x36, 0x30, 0x29, 0x26, 0x26, 0x27, 0x20, 0x23, 0x26, 0x27, 0x28, 0x2c, 0x2d, 0x2d,\n    0x32, 0x36, 0x37, 0x32, 0x2f, 0x34, 0x3d, 0x43, 0x40, 0x37, 0x2d, 0x29, 0x2b, 0x2e, 0x2e, 0x2c,\n    0x2c, 0x30, 0x32, 0x2e, 0x26, 0x21, 0x21, 0x23, 0x20, 0x23, 0x27, 0x28, 0x27, 0x2a, 0x35, 0x41,\n    0x3f, 0x40, 0x41, 0x42, 0x48, 0x50, 0x54, 0x54, 0x55, 0x56, 0x58, 0x5d, 0x65, 0x68, 0x63, 0x5c,\n    0x4a, 0x3a, 0x33, 0x33, 0x2f, 0x2c, 0x2e, 0x2f, 0x36, 0x38, 0x37, 0x32, 0x2a, 0x22, 0x1e, 0x1c,\n    0x1c, 0x1d, 0x1e, 0x1e, 0x1e, 0x1f, 0x23, 0x26, 0x29, 0x28, 0x27, 0x26, 0x25, 0x23, 0x21, 0x1f,\n    0x22, 0x23, 0x25, 0x28, 0x2b, 0x2f, 0x32, 0x34, 0x31, 0x2d, 0x2c, 0x2d, 0x2e, 0x30, 0x35, 0x3a,\n    0x3f, 0x40, 0x41, 0x42, 0x41, 0x3e, 0x3b, 0x39, 0x40, 0x44, 0x47, 0x46, 0x42, 0x3d, 0x38, 0x35,\n    0x36, 0x43, 0x51, 0x55, 0x50, 0x4a, 0x4a, 0x4e, 0x4a, 0x4b, 0x49, 0x45, 0x42, 0x41, 0x3f, 0x3e,\n    0x43, 0x41, 0x4c, 0x5c, 0x5e, 0x52, 0x4c, 0x50, 0x52, 0x56, 0x58, 0x58, 0x5a, 0x5f, 0x62, 0x62,\n    0x5b, 0x5e, 0x62, 0x67, 0x6c, 0x6f, 0x6d, 0x6a, 0x5e, 0x61, 0x69, 0x6a, 0x62, 0x60, 0x61, 0x5e,\n    0x5d, 0x5a, 0x57, 0x54, 0x52, 0x54, 0x5f, 0x6a, 0x71, 0x76, 0x7c, 0x7e, 0x81, 0x85, 0x87, 0x86,\n    0x8a, 0x8c, 0x8f, 0x92, 0x94, 0x95, 0x97, 0x98, 0x99, 0x99, 0x97, 0x96, 0x96, 0x95, 0x90, 0x89,\n    0x7a, 0x71, 0x64, 0x5b, 0x56, 0x53, 0x50, 0x4d, 0x49, 0x43, 0x3c, 0x37, 0x32, 0x2e, 0x28, 0x24,\n    0x29, 0x29, 0x29, 0x28, 0x27, 0x27, 0x28, 0x2a, 0x29, 0x29, 0x28, 0x27, 0x27, 0x28, 0x2c, 0x2e,\n    0x30, 0x31, 0x34, 0x38, 0x3b, 0x3f, 0x44, 0x47, 0x50, 0x54, 0x57, 0x57, 0x57, 0x57, 0x56, 0x53,\n    0x55, 0x54, 0x54, 0x54, 0x56, 0x59, 0x5c, 0x5e, 0x61, 0x61, 0x62, 0x63, 0x65, 0x67, 0x6a, 0x6b,\n    0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x6e, 0x6d, 0x6d, 0x6d, 0x6c, 0x6a, 0x69,\n    0x67, 0x65, 0x63, 0x61, 0x5f, 0x5d, 0x5b, 0x59, 0x59, 0x59, 0x59, 0x59, 0x59, 0x5a, 0x5b, 0x5c,\n    0x5f, 0x5f, 0x61, 0x64, 0x68, 0x6d, 0x71, 0x73, 0x78, 0x7b, 0x7e, 0x80, 0x82, 0x85, 0x85, 0x84,\n    0x83, 0x83, 0x83, 0x84, 0x85, 0x85, 0x84, 0x83, 0x83, 0x80, 0x7c, 0x7b, 0x7c, 0x7b, 0x78, 0x74,\n    0x71, 0x71, 0x72, 0x72, 0x71, 0x71, 0x72, 0x73, 0x6d, 0x6c, 0x69, 0x65, 0x60, 0x5a, 0x56, 0x53,\n    0x49, 0x44, 0x3e, 0x39, 0x33, 0x2e, 0x2b, 0x2b, 0x2c, 0x36, 0x41, 0x46, 0x40, 0x38, 0x33, 0x32,\n    0x3e, 0x36, 0x2b, 0x31, 0x43, 0x46, 0x36, 0x28, 0x2c, 0x32, 0x39, 0x3e, 0x43, 0x45, 0x3f, 0x36,\n    0x39, 0x34, 0x3c, 0x51, 0x5d, 0x5d, 0x61, 0x6b, 0x7b, 0x87, 0x84, 0x77, 0x70, 0x65, 0x5b, 0x5c,\n    0x68, 0x74, 0x74, 0x63, 0x55, 0x51, 0x4b, 0x40, 0x3a, 0x34, 0x31, 0x31, 0x2c, 0x24, 0x21, 0x24,\n    0x2b, 0x28, 0x25, 0x24, 0x23, 0x23, 0x29, 0x31, 0x3d, 0x3f, 0x3c, 0x35, 0x32, 0x33, 0x31, 0x2c,\n    0x2e, 0x2a, 0x24, 0x20, 0x1e, 0x22, 0x2c, 0x36, 0x40, 0x3b, 0x2e, 0x23, 0x1e, 0x1b, 0x23, 0x34,\n    0x43, 0x46, 0x44, 0x3e, 0x40, 0x46, 0x44, 0x3d, 0x3b, 0x36, 0x43, 0x4d, 0x42, 0x40, 0x4f, 0x59,\n    0x53, 0x4b, 0x4b, 0x47, 0x3d, 0x2a, 0x1a, 0x26, 0x46, 0x48, 0x50, 0x5c, 0x5c, 0x48, 0x38, 0x3b,\n    0x49, 0x4f, 0x55, 0x56, 0x54, 0x4c, 0x40, 0x34, 0x2d, 0x3f, 0x50, 0x58, 0x5f, 0x68, 0x6a, 0x64,\n    0x5a, 0x49, 0x4d, 0x50, 0x41, 0x26, 0x17, 0x25, 0x39, 0x4c, 0x4e, 0x4a, 0x5b, 0x6d, 0x61, 0x4a,\n    0x32, 0x33, 0x36, 0x36, 0x32, 0x2b, 0x29, 0x2a, 0x1f, 0x24, 0x31, 0x42, 0x51, 0x5a, 0x61, 0x65,\n    0x56, 0x4a, 0x47, 0x4b, 0x40, 0x2a, 0x25, 0x2f, 0x4f, 0x59, 0x5c, 0x55, 0x51, 0x53, 0x53, 0x4f,\n    0x23, 0x2f, 0x37, 0x33, 0x2b, 0x25, 0x21, 0x1d, 0x1b, 0x1b, 0x20, 0x27, 0x2b, 0x27, 0x20, 0x1c,\n    0x18, 0x17, 0x18, 0x1b, 0x1c, 0x1b, 0x1c, 0x1e, 0x23, 0x28, 0x2f, 0x32, 0x30, 0x2a, 0x23, 0x1f,\n    0x1f, 0x1e, 0x1f, 0x22, 0x26, 0x2a, 0x2d, 0x2e, 0x35, 0x33, 0x30, 0x2e, 0x30, 0x34, 0x38, 0x3c,\n    0x38, 0x30, 0x29, 0x2a, 0x2c, 0x29, 0x23, 0x1f, 0x1e, 0x22, 0x27, 0x27, 0x23, 0x1f, 0x1c, 0x1b,\n    0x1b, 0x19, 0x18, 0x1a, 0x1a, 0x18, 0x18, 0x18, 0x17, 0x1a, 0x1e, 0x21, 0x22, 0x24, 0x25, 0x26,\n    0x29, 0x27, 0x23, 0x21, 0x1f, 0x1d, 0x1b, 0x19, 0x1b, 0x1d, 0x20, 0x21, 0x22, 0x25, 0x2a, 0x2d,\n    0x34, 0x35, 0x33, 0x2c, 0x24, 0x21, 0x25, 0x2a, 0x21, 0x23, 0x27, 0x2a, 0x2a, 0x29, 0x2a, 0x2e,\n    0x35, 0x39, 0x39, 0x34, 0x30, 0x33, 0x3b, 0x40, 0x41, 0x38, 0x2e, 0x2c, 0x30, 0x35, 0x35, 0x33,\n    0x2a, 0x31, 0x36, 0x32, 0x26, 0x1d, 0x1a, 0x1b, 0x20, 0x22, 0x24, 0x23, 0x21, 0x26, 0x37, 0x47,\n    0x48, 0x4a, 0x48, 0x45, 0x44, 0x47, 0x4b, 0x4c, 0x49, 0x48, 0x49, 0x4c, 0x50, 0x52, 0x4f, 0x4c,\n    0x47, 0x39, 0x35, 0x36, 0x30, 0x2d, 0x32, 0x36, 0x34, 0x34, 0x33, 0x2e, 0x28, 0x23, 0x21, 0x20,\n    0x1d, 0x1d, 0x1d, 0x1d, 0x1e, 0x21, 0x24, 0x26, 0x2a, 0x2a, 0x29, 0x26, 0x22, 0x20, 0x1f, 0x1f,\n    0x21, 0x20, 0x22, 0x28, 0x2f, 0x34, 0x35, 0x33, 0x32, 0x2f, 0x2e, 0x2f, 0x2f, 0x31, 0x36, 0x3c,\n    0x43, 0x42, 0x41, 0x3d, 0x39, 0x36, 0x34, 0x33, 0x3e, 0x45, 0x4c, 0x4f, 0x50, 0x4c, 0x45, 0x3e,\n    0x3c, 0x45, 0x4f, 0x50, 0x4d, 0x4f, 0x59, 0x62, 0x61, 0x5e, 0x58, 0x50, 0x47, 0x3e, 0x36, 0x32,\n    0x45, 0x4b, 0x51, 0x57, 0x61, 0x67, 0x5f, 0x51, 0x4c, 0x4a, 0x44, 0x40, 0x44, 0x4c, 0x4c, 0x47,\n    0x4a, 0x54, 0x5c, 0x60, 0x61, 0x64, 0x67, 0x68, 0x61, 0x63, 0x69, 0x68, 0x60, 0x5e, 0x5f, 0x59,\n    0x5a, 0x56, 0x53, 0x51, 0x4e, 0x4f, 0x59, 0x64, 0x6e, 0x75, 0x7b, 0x7e, 0x80, 0x83, 0x85, 0x86,\n    0x88, 0x8b, 0x8e, 0x91, 0x93, 0x95, 0x97, 0x99, 0x99, 0x9a, 0x9a, 0x99, 0x99, 0x9b, 0x99, 0x96,\n    0x90, 0x8b, 0x84, 0x7f, 0x7d, 0x7c, 0x7b, 0x7a, 0x7b, 0x75, 0x6c, 0x62, 0x56, 0x47, 0x37, 0x2c,\n    0x2b, 0x2a, 0x28, 0x27, 0x28, 0x2b, 0x2f, 0x31, 0x23, 0x22, 0x21, 0x1f, 0x1e, 0x1f, 0x22, 0x24,\n    0x24, 0x24, 0x26, 0x2a, 0x2d, 0x31, 0x36, 0x3c, 0x43, 0x49, 0x4f, 0x51, 0x53, 0x55, 0x54, 0x53,\n    0x52, 0x52, 0x51, 0x52, 0x54, 0x58, 0x5b, 0x5d, 0x62, 0x62, 0x64, 0x66, 0x68, 0x6a, 0x6b, 0x6c,\n    0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x70, 0x6f, 0x6d, 0x6c, 0x6c, 0x6c, 0x6a, 0x69,\n    0x66, 0x65, 0x64, 0x63, 0x62, 0x60, 0x5d, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x5c, 0x5d, 0x5e, 0x5f,\n    0x63, 0x65, 0x67, 0x6b, 0x70, 0x74, 0x78, 0x7a, 0x80, 0x84, 0x86, 0x87, 0x89, 0x8a, 0x8a, 0x87,\n    0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x85, 0x84, 0x85, 0x83, 0x7f, 0x7e, 0x7d, 0x7c, 0x7a, 0x78,\n    0x76, 0x75, 0x74, 0x73, 0x72, 0x72, 0x73, 0x73, 0x6b, 0x6a, 0x68, 0x66, 0x62, 0x5e, 0x5a, 0x57,\n    0x4a, 0x44, 0x3c, 0x37, 0x36, 0x36, 0x35, 0x34, 0x34, 0x39, 0x43, 0x49, 0x47, 0x3e, 0x34, 0x30,\n    0x40, 0x3d, 0x3c, 0x4a, 0x5b, 0x55, 0x3e, 0x2e, 0x39, 0x45, 0x4e, 0x4b, 0x48, 0x47, 0x42, 0x3a,\n    0x40, 0x41, 0x45, 0x53, 0x6a, 0x7b, 0x7b, 0x72, 0x79, 0x80, 0x7c, 0x6d, 0x5c, 0x50, 0x50, 0x5a,\n    0x68, 0x77, 0x79, 0x63, 0x4e, 0x47, 0x45, 0x41, 0x42, 0x3c, 0x39, 0x39, 0x38, 0x32, 0x29, 0x23,\n    0x28, 0x25, 0x25, 0x28, 0x28, 0x27, 0x2b, 0x33, 0x3a, 0x3a, 0x39, 0x37, 0x34, 0x33, 0x34, 0x35,\n    0x30, 0x2e, 0x27, 0x1d, 0x16, 0x16, 0x1e, 0x26, 0x30, 0x32, 0x30, 0x2e, 0x2d, 0x25, 0x24, 0x2e,\n    0x30, 0x35, 0x38, 0x38, 0x3a, 0x3e, 0x3d, 0x39, 0x46, 0x41, 0x4c, 0x51, 0x43, 0x41, 0x51, 0x5b,\n    0x5c, 0x4c, 0x49, 0x4d, 0x4c, 0x38, 0x22, 0x2a, 0x2c, 0x3c, 0x4a, 0x53, 0x54, 0x49, 0x42, 0x46,\n    0x55, 0x59, 0x5a, 0x56, 0x51, 0x48, 0x39, 0x2b, 0x27, 0x39, 0x4b, 0x57, 0x61, 0x6a, 0x6a, 0x65,\n    0x57, 0x46, 0x4b, 0x4f, 0x40, 0x27, 0x1c, 0x2d, 0x49, 0x43, 0x33, 0x35, 0x56, 0x6b, 0x53, 0x2f,\n    0x21, 0x22, 0x25, 0x28, 0x26, 0x21, 0x1d, 0x1c, 0x25, 0x33, 0x44, 0x50, 0x57, 0x59, 0x58, 0x55,\n    0x51, 0x52, 0x48, 0x33, 0x25, 0x2a, 0x3c, 0x4a, 0x47, 0x50, 0x53, 0x49, 0x3d, 0x3a, 0x3e, 0x42,\n    0x23, 0x2c, 0x32, 0x30, 0x2e, 0x2d, 0x29, 0x22, 0x1f, 0x1e, 0x1f, 0x24, 0x25, 0x21, 0x1c, 0x1a,\n    0x19, 0x17, 0x17, 0x19, 0x1b, 0x1a, 0x1b, 0x1c, 0x1f, 0x22, 0x2b, 0x34, 0x33, 0x29, 0x21, 0x21,\n    0x21, 0x21, 0x23, 0x24, 0x26, 0x2a, 0x2f, 0x32, 0x36, 0x35, 0x32, 0x30, 0x2e, 0x2e, 0x2e, 0x2e,\n    0x31, 0x2a, 0x24, 0x24, 0x24, 0x22, 0x1f, 0x1d, 0x1e, 0x21, 0x25, 0x26, 0x23, 0x1d, 0x18, 0x15,\n    0x16, 0x15, 0x16, 0x17, 0x17, 0x16, 0x18, 0x1c, 0x1e, 0x20, 0x23, 0x25, 0x27, 0x28, 0x2a, 0x2b,\n    0x26, 0x24, 0x21, 0x1e, 0x1c, 0x1a, 0x17, 0x16, 0x18, 0x1b, 0x1e, 0x20, 0x21, 0x24, 0x2a, 0x2e,\n    0x30, 0x31, 0x30, 0x2a, 0x22, 0x1f, 0x22, 0x26, 0x23, 0x22, 0x26, 0x2b, 0x28, 0x21, 0x23, 0x2d,\n    0x31, 0x36, 0x38, 0x36, 0x34, 0x36, 0x3a, 0x3d, 0x3f, 0x36, 0x2e, 0x2c, 0x31, 0x36, 0x36, 0x34,\n    0x28, 0x2c, 0x32, 0x34, 0x31, 0x2c, 0x27, 0x25, 0x20, 0x21, 0x21, 0x21, 0x20, 0x25, 0x32, 0x40,\n    0x4b, 0x51, 0x56, 0x54, 0x52, 0x52, 0x54, 0x55, 0x57, 0x57, 0x57, 0x57, 0x57, 0x55, 0x52, 0x50,\n    0x46, 0x39, 0x36, 0x38, 0x34, 0x32, 0x38, 0x3d, 0x34, 0x30, 0x2a, 0x26, 0x25, 0x25, 0x25, 0x25,\n    0x21, 0x1f, 0x1e, 0x1d, 0x1f, 0x21, 0x23, 0x24, 0x2b, 0x2d, 0x2e, 0x2a, 0x23, 0x1e, 0x1c, 0x1d,\n    0x1f, 0x1f, 0x20, 0x26, 0x2d, 0x33, 0x34, 0x34, 0x31, 0x2e, 0x2c, 0x2c, 0x2e, 0x32, 0x39, 0x41,\n    0x45, 0x44, 0x43, 0x43, 0x44, 0x43, 0x41, 0x3e, 0x40, 0x45, 0x4a, 0x4e, 0x53, 0x55, 0x50, 0x49,\n    0x44, 0x49, 0x4b, 0x47, 0x44, 0x48, 0x54, 0x5f, 0x71, 0x6c, 0x66, 0x60, 0x58, 0x4e, 0x45, 0x3f,\n    0x40, 0x49, 0x4f, 0x53, 0x60, 0x6d, 0x66, 0x54, 0x57, 0x57, 0x53, 0x51, 0x58, 0x66, 0x6e, 0x6e,\n    0x5e, 0x63, 0x6a, 0x6c, 0x66, 0x5e, 0x60, 0x67, 0x65, 0x66, 0x6a, 0x68, 0x60, 0x5e, 0x5c, 0x54,\n    0x56, 0x52, 0x50, 0x51, 0x4e, 0x4b, 0x51, 0x5a, 0x6b, 0x73, 0x7b, 0x7d, 0x7e, 0x80, 0x84, 0x85,\n    0x88, 0x8b, 0x8e, 0x91, 0x93, 0x94, 0x96, 0x97, 0x98, 0x9c, 0x9d, 0x9d, 0x9e, 0xa2, 0xa5, 0xa5,\n    0xa9, 0xa9, 0xa9, 0xaa, 0xab, 0xad, 0xaf, 0xb0, 0xb1, 0xae, 0xaa, 0xa6, 0xa1, 0x96, 0x88, 0x7e,\n    0x54, 0x4c, 0x41, 0x38, 0x32, 0x2f, 0x2d, 0x2b, 0x25, 0x24, 0x22, 0x1f, 0x1d, 0x1d, 0x1f, 0x21,\n    0x1e, 0x1d, 0x1e, 0x21, 0x24, 0x26, 0x2b, 0x31, 0x35, 0x3c, 0x45, 0x4a, 0x4e, 0x51, 0x53, 0x52,\n    0x50, 0x4f, 0x4f, 0x4f, 0x52, 0x56, 0x59, 0x5c, 0x60, 0x61, 0x64, 0x68, 0x6a, 0x6c, 0x6d, 0x6e,\n    0x71, 0x72, 0x73, 0x74, 0x74, 0x73, 0x72, 0x71, 0x71, 0x70, 0x6e, 0x6d, 0x6d, 0x6d, 0x6c, 0x6b,\n    0x67, 0x66, 0x64, 0x63, 0x63, 0x62, 0x60, 0x5e, 0x5d, 0x5d, 0x5d, 0x5d, 0x5e, 0x60, 0x62, 0x63,\n    0x67, 0x69, 0x6d, 0x72, 0x76, 0x7a, 0x7d, 0x7f, 0x82, 0x86, 0x88, 0x89, 0x8a, 0x8b, 0x8a, 0x87,\n    0x86, 0x85, 0x84, 0x85, 0x86, 0x86, 0x85, 0x83, 0x83, 0x83, 0x82, 0x81, 0x80, 0x7e, 0x7c, 0x7a,\n    0x7a, 0x79, 0x77, 0x76, 0x75, 0x74, 0x73, 0x72, 0x6d, 0x6b, 0x69, 0x67, 0x65, 0x61, 0x5b, 0x58,\n    0x4a, 0x47, 0x45, 0x4a, 0x51, 0x51, 0x48, 0x3d, 0x39, 0x2e, 0x29, 0x35, 0x44, 0x48, 0x40, 0x37,\n    0x30, 0x3a, 0x47, 0x56, 0x5b, 0x4b, 0x35, 0x2d, 0x49, 0x4b, 0x4b, 0x4a, 0x49, 0x4b, 0x4e, 0x50,\n    0x4b, 0x4e, 0x51, 0x5a, 0x6f, 0x82, 0x80, 0x73, 0x5f, 0x57, 0x56, 0x58, 0x53, 0x50, 0x52, 0x55,\n    0x61, 0x6e, 0x6e, 0x5b, 0x47, 0x41, 0x43, 0x43, 0x44, 0x43, 0x41, 0x3c, 0x39, 0x34, 0x2d, 0x26,\n    0x27, 0x25, 0x28, 0x2e, 0x2f, 0x2c, 0x2d, 0x32, 0x35, 0x30, 0x2f, 0x32, 0x34, 0x32, 0x35, 0x3b,\n    0x33, 0x31, 0x2a, 0x1f, 0x17, 0x16, 0x1a, 0x1e, 0x28, 0x2c, 0x2e, 0x32, 0x34, 0x2c, 0x26, 0x2b,\n    0x24, 0x29, 0x2f, 0x35, 0x38, 0x3a, 0x3b, 0x3c, 0x47, 0x43, 0x4d, 0x50, 0x41, 0x3f, 0x4e, 0x58,\n    0x54, 0x53, 0x5c, 0x5e, 0x54, 0x39, 0x1d, 0x21, 0x41, 0x5f, 0x6e, 0x64, 0x5a, 0x54, 0x4e, 0x4b,\n    0x58, 0x5a, 0x59, 0x55, 0x51, 0x4b, 0x3d, 0x2e, 0x31, 0x3f, 0x52, 0x61, 0x6d, 0x74, 0x72, 0x6e,\n    0x4c, 0x3f, 0x48, 0x4e, 0x40, 0x26, 0x1c, 0x2f, 0x43, 0x45, 0x48, 0x4f, 0x4d, 0x35, 0x1b, 0x13,\n    0x20, 0x1f, 0x24, 0x2e, 0x36, 0x35, 0x2f, 0x2a, 0x2f, 0x3e, 0x4f, 0x5c, 0x68, 0x6d, 0x63, 0x54,\n    0x4e, 0x3d, 0x36, 0x37, 0x2c, 0x1c, 0x25, 0x3c, 0x38, 0x46, 0x4e, 0x49, 0x43, 0x43, 0x43, 0x41,\n    0x1d, 0x22, 0x24, 0x26, 0x2d, 0x35, 0x34, 0x2d, 0x25, 0x23, 0x23, 0x24, 0x23, 0x1f, 0x1c, 0x1b,\n    0x18, 0x16, 0x15, 0x18, 0x19, 0x18, 0x19, 0x1a, 0x1c, 0x1b, 0x22, 0x2e, 0x2f, 0x26, 0x22, 0x27,\n    0x26, 0x27, 0x26, 0x23, 0x20, 0x21, 0x25, 0x29, 0x2d, 0x2e, 0x30, 0x32, 0x34, 0x34, 0x33, 0x31,\n    0x38, 0x2f, 0x26, 0x1f, 0x1b, 0x19, 0x1a, 0x1d, 0x22, 0x21, 0x20, 0x1f, 0x1f, 0x1d, 0x19, 0x16,\n    0x18, 0x18, 0x18, 0x18, 0x17, 0x16, 0x1a, 0x20, 0x1a, 0x1c, 0x1f, 0x20, 0x21, 0x22, 0x23, 0x24,\n    0x26, 0x24, 0x21, 0x20, 0x1f, 0x1e, 0x1c, 0x1b, 0x18, 0x1b, 0x1e, 0x20, 0x21, 0x26, 0x2c, 0x32,\n    0x30, 0x30, 0x2e, 0x29, 0x22, 0x1e, 0x1f, 0x20, 0x26, 0x22, 0x25, 0x2b, 0x25, 0x1b, 0x1e, 0x2c,\n    0x2a, 0x31, 0x36, 0x37, 0x37, 0x39, 0x3b, 0x3b, 0x3a, 0x32, 0x2a, 0x28, 0x2d, 0x32, 0x32, 0x31,\n    0x2c, 0x2c, 0x2e, 0x34, 0x3b, 0x3c, 0x37, 0x31, 0x23, 0x23, 0x24, 0x25, 0x25, 0x26, 0x2c, 0x33,\n    0x44, 0x50, 0x5c, 0x60, 0x60, 0x61, 0x63, 0x64, 0x68, 0x69, 0x6b, 0x6c, 0x68, 0x61, 0x5b, 0x58,\n    0x42, 0x35, 0x32, 0x35, 0x34, 0x34, 0x3a, 0x3d, 0x34, 0x2b, 0x20, 0x1c, 0x20, 0x24, 0x25, 0x24,\n    0x21, 0x1e, 0x1b, 0x1b, 0x1c, 0x1f, 0x1f, 0x1f, 0x1f, 0x24, 0x28, 0x26, 0x20, 0x1b, 0x1a, 0x1c,\n    0x1f, 0x1e, 0x1f, 0x23, 0x28, 0x2e, 0x31, 0x32, 0x36, 0x32, 0x2e, 0x2c, 0x2d, 0x31, 0x3b, 0x44,\n    0x4c, 0x44, 0x3b, 0x3a, 0x40, 0x47, 0x4a, 0x4b, 0x42, 0x43, 0x43, 0x44, 0x4b, 0x52, 0x52, 0x4d,\n    0x4d, 0x4e, 0x4c, 0x44, 0x3c, 0x3c, 0x45, 0x4d, 0x54, 0x51, 0x4f, 0x4f, 0x4d, 0x48, 0x42, 0x3e,\n    0x40, 0x44, 0x4a, 0x53, 0x5d, 0x60, 0x5a, 0x51, 0x50, 0x5b, 0x62, 0x5f, 0x5c, 0x61, 0x67, 0x68,\n    0x71, 0x6e, 0x72, 0x74, 0x67, 0x54, 0x52, 0x5d, 0x68, 0x69, 0x6b, 0x68, 0x60, 0x5d, 0x5a, 0x50,\n    0x53, 0x4f, 0x4f, 0x51, 0x4e, 0x49, 0x4b, 0x51, 0x69, 0x72, 0x7b, 0x7d, 0x7d, 0x7f, 0x83, 0x85,\n    0x89, 0x8c, 0x8f, 0x91, 0x92, 0x93, 0x95, 0x96, 0x98, 0x9d, 0xa0, 0xa0, 0xa1, 0xa6, 0xac, 0xaf,\n    0xb0, 0xb3, 0xb6, 0xb8, 0xb8, 0xb9, 0xbb, 0xbc, 0xc1, 0xbe, 0xbb, 0xba, 0xb9, 0xb4, 0xab, 0xa4,\n    0xa4, 0x95, 0x7e, 0x66, 0x53, 0x44, 0x38, 0x31, 0x29, 0x27, 0x25, 0x21, 0x1e, 0x1d, 0x1e, 0x20,\n    0x25, 0x21, 0x1f, 0x1f, 0x1d, 0x1b, 0x1e, 0x23, 0x27, 0x2f, 0x39, 0x40, 0x46, 0x4b, 0x4e, 0x4e,\n    0x4f, 0x4e, 0x4d, 0x4e, 0x50, 0x54, 0x58, 0x5b, 0x5d, 0x60, 0x64, 0x68, 0x6c, 0x6e, 0x6f, 0x6f,\n    0x6f, 0x71, 0x73, 0x75, 0x75, 0x75, 0x73, 0x72, 0x73, 0x71, 0x6f, 0x6f, 0x6f, 0x6e, 0x6d, 0x6c,\n    0x68, 0x66, 0x64, 0x62, 0x62, 0x62, 0x62, 0x61, 0x5f, 0x5f, 0x5e, 0x5f, 0x60, 0x62, 0x64, 0x65,\n    0x68, 0x6b, 0x70, 0x75, 0x7a, 0x7e, 0x80, 0x81, 0x80, 0x84, 0x87, 0x87, 0x88, 0x89, 0x88, 0x85,\n    0x87, 0x85, 0x84, 0x84, 0x85, 0x85, 0x84, 0x82, 0x7f, 0x81, 0x83, 0x83, 0x82, 0x7f, 0x7e, 0x7d,\n    0x7b, 0x7a, 0x7a, 0x79, 0x78, 0x75, 0x72, 0x70, 0x72, 0x6f, 0x6c, 0x69, 0x66, 0x61, 0x5a, 0x55,\n    0x4d, 0x43, 0x3d, 0x46, 0x5c, 0x70, 0x75, 0x71, 0x62, 0x4e, 0x3d, 0x3c, 0x44, 0x49, 0x47, 0x45,\n    0x4e, 0x42, 0x32, 0x2e, 0x34, 0x36, 0x38, 0x41, 0x3c, 0x31, 0x2e, 0x37, 0x43, 0x49, 0x4d, 0x50,\n    0x51, 0x51, 0x55, 0x5e, 0x68, 0x6c, 0x6d, 0x6c, 0x69, 0x59, 0x5a, 0x64, 0x61, 0x5f, 0x62, 0x60,\n    0x63, 0x6c, 0x6a, 0x58, 0x47, 0x40, 0x3f, 0x3e, 0x4f, 0x56, 0x55, 0x46, 0x37, 0x30, 0x2d, 0x2b,\n    0x2b, 0x28, 0x2a, 0x30, 0x30, 0x29, 0x25, 0x27, 0x28, 0x24, 0x29, 0x37, 0x3c, 0x35, 0x30, 0x32,\n    0x34, 0x31, 0x2a, 0x21, 0x1c, 0x1b, 0x1c, 0x1d, 0x29, 0x2b, 0x2b, 0x2e, 0x31, 0x2a, 0x24, 0x28,\n    0x2f, 0x31, 0x36, 0x3b, 0x3c, 0x39, 0x39, 0x3c, 0x38, 0x38, 0x47, 0x50, 0x48, 0x4b, 0x5f, 0x6a,\n    0x5f, 0x55, 0x51, 0x4d, 0x4e, 0x44, 0x2f, 0x2d, 0x46, 0x5a, 0x6a, 0x6a, 0x5b, 0x45, 0x40, 0x4c,\n    0x56, 0x59, 0x58, 0x56, 0x56, 0x55, 0x48, 0x3a, 0x34, 0x3f, 0x51, 0x62, 0x6e, 0x71, 0x6e, 0x6a,\n    0x47, 0x3e, 0x4c, 0x53, 0x43, 0x27, 0x1d, 0x30, 0x45, 0x4b, 0x49, 0x43, 0x45, 0x4c, 0x59, 0x68,\n    0x64, 0x62, 0x65, 0x6d, 0x6d, 0x5c, 0x41, 0x2d, 0x2c, 0x44, 0x58, 0x5e, 0x60, 0x62, 0x58, 0x49,\n    0x44, 0x39, 0x2a, 0x20, 0x21, 0x29, 0x2e, 0x2e, 0x3e, 0x47, 0x49, 0x44, 0x49, 0x54, 0x53, 0x47,\n    0x1e, 0x1e, 0x1c, 0x1d, 0x27, 0x31, 0x30, 0x27, 0x20, 0x23, 0x29, 0x2c, 0x29, 0x1f, 0x18, 0x15,\n    0x14, 0x1b, 0x21, 0x22, 0x1f, 0x1b, 0x1c, 0x1e, 0x1d, 0x1d, 0x20, 0x21, 0x20, 0x1e, 0x22, 0x27,\n    0x28, 0x29, 0x28, 0x25, 0x23, 0x25, 0x26, 0x25, 0x26, 0x27, 0x2a, 0x30, 0x39, 0x41, 0x46, 0x48,\n    0x45, 0x3d, 0x31, 0x24, 0x1c, 0x1a, 0x1b, 0x1d, 0x20, 0x21, 0x1f, 0x1d, 0x1c, 0x1b, 0x18, 0x14,\n    0x15, 0x17, 0x19, 0x1c, 0x1d, 0x1e, 0x1e, 0x1d, 0x17, 0x18, 0x19, 0x18, 0x16, 0x18, 0x1c, 0x21,\n    0x28, 0x23, 0x20, 0x1e, 0x1c, 0x19, 0x19, 0x1a, 0x1b, 0x1d, 0x20, 0x23, 0x27, 0x2b, 0x30, 0x33,\n    0x32, 0x34, 0x34, 0x2e, 0x25, 0x1f, 0x1d, 0x1e, 0x22, 0x26, 0x29, 0x26, 0x21, 0x20, 0x26, 0x2b,\n    0x2d, 0x2f, 0x35, 0x3b, 0x41, 0x42, 0x3f, 0x3c, 0x36, 0x32, 0x2c, 0x28, 0x28, 0x29, 0x29, 0x29,\n    0x2b, 0x2b, 0x29, 0x28, 0x2d, 0x34, 0x36, 0x32, 0x27, 0x29, 0x27, 0x26, 0x28, 0x28, 0x30, 0x40,\n    0x43, 0x45, 0x49, 0x4e, 0x52, 0x54, 0x53, 0x52, 0x55, 0x50, 0x52, 0x5b, 0x61, 0x5e, 0x59, 0x56,\n    0x40, 0x2e, 0x27, 0x2b, 0x2f, 0x31, 0x30, 0x2b, 0x23, 0x22, 0x21, 0x21, 0x22, 0x23, 0x23, 0x23,\n    0x1d, 0x1b, 0x1c, 0x20, 0x21, 0x1e, 0x1e, 0x20, 0x25, 0x2b, 0x2e, 0x29, 0x20, 0x1a, 0x1b, 0x1f,\n    0x1f, 0x1f, 0x1f, 0x20, 0x25, 0x2c, 0x2e, 0x2e, 0x33, 0x32, 0x32, 0x34, 0x36, 0x39, 0x40, 0x47,\n    0x49, 0x48, 0x47, 0x46, 0x4a, 0x4f, 0x50, 0x4d, 0x44, 0x3f, 0x40, 0x49, 0x51, 0x53, 0x51, 0x51,\n    0x4f, 0x4a, 0x47, 0x45, 0x42, 0x3e, 0x3d, 0x3f, 0x41, 0x48, 0x4b, 0x47, 0x45, 0x47, 0x47, 0x44,\n    0x48, 0x48, 0x4b, 0x51, 0x56, 0x56, 0x4f, 0x48, 0x3c, 0x3e, 0x42, 0x45, 0x47, 0x49, 0x4b, 0x4d,\n    0x53, 0x56, 0x5d, 0x60, 0x58, 0x4f, 0x51, 0x5b, 0x69, 0x69, 0x6a, 0x6a, 0x66, 0x5f, 0x57, 0x54,\n    0x4f, 0x4c, 0x4c, 0x4e, 0x4c, 0x48, 0x48, 0x4c, 0x64, 0x75, 0x7d, 0x7c, 0x7e, 0x81, 0x82, 0x85,\n    0x88, 0x8c, 0x90, 0x93, 0x94, 0x95, 0x97, 0x99, 0x9a, 0x9d, 0xa1, 0xa5, 0xa9, 0xae, 0xb2, 0xb5,\n    0xb7, 0xb9, 0xba, 0xba, 0xb9, 0xb9, 0xba, 0xbc, 0xbc, 0xbf, 0xc1, 0xc2, 0xc1, 0xbf, 0xbf, 0xc0,\n    0xb7, 0xb4, 0xac, 0xa2, 0x95, 0x80, 0x61, 0x48, 0x33, 0x2f, 0x29, 0x26, 0x25, 0x22, 0x1e, 0x1a,\n    0x21, 0x1f, 0x1d, 0x1e, 0x1f, 0x20, 0x1f, 0x1d, 0x21, 0x28, 0x31, 0x38, 0x3f, 0x47, 0x4d, 0x50,\n    0x51, 0x4e, 0x4d, 0x4f, 0x51, 0x52, 0x56, 0x5a, 0x5f, 0x62, 0x65, 0x69, 0x6d, 0x6f, 0x71, 0x71,\n    0x70, 0x71, 0x72, 0x73, 0x73, 0x72, 0x72, 0x71, 0x6f, 0x6f, 0x70, 0x71, 0x71, 0x6f, 0x6c, 0x69,\n    0x65, 0x67, 0x66, 0x62, 0x63, 0x65, 0x64, 0x61, 0x5f, 0x5f, 0x5e, 0x5f, 0x60, 0x62, 0x64, 0x64,\n    0x6a, 0x6c, 0x6f, 0x73, 0x77, 0x7b, 0x7d, 0x7e, 0x7e, 0x7e, 0x7f, 0x81, 0x82, 0x83, 0x83, 0x83,\n    0x81, 0x82, 0x83, 0x82, 0x81, 0x80, 0x80, 0x80, 0x80, 0x80, 0x81, 0x82, 0x82, 0x80, 0x7f, 0x7e,\n    0x80, 0x7e, 0x7b, 0x78, 0x77, 0x76, 0x74, 0x73, 0x71, 0x6e, 0x6a, 0x68, 0x69, 0x67, 0x5d, 0x52,\n    0x4d, 0x42, 0x48, 0x68, 0x87, 0x90, 0x8d, 0x8a, 0x81, 0x74, 0x60, 0x47, 0x32, 0x32, 0x3d, 0x41,\n    0x4a, 0x40, 0x36, 0x33, 0x3a, 0x41, 0x42, 0x3e, 0x32, 0x2f, 0x30, 0x31, 0x34, 0x3c, 0x3d, 0x35,\n    0x42, 0x58, 0x67, 0x67, 0x67, 0x66, 0x63, 0x65, 0x64, 0x65, 0x69, 0x68, 0x65, 0x6c, 0x71, 0x6d,\n    0x72, 0x6d, 0x62, 0x50, 0x4a, 0x3f, 0x31, 0x3a, 0x3b, 0x3c, 0x3c, 0x3d, 0x41, 0x42, 0x3a, 0x30,\n    0x30, 0x2d, 0x2a, 0x2a, 0x2c, 0x2c, 0x2a, 0x28, 0x24, 0x22, 0x21, 0x23, 0x27, 0x2c, 0x2e, 0x2f,\n    0x2a, 0x2a, 0x2a, 0x29, 0x21, 0x1a, 0x1c, 0x23, 0x29, 0x22, 0x1e, 0x25, 0x29, 0x1e, 0x1a, 0x23,\n    0x2b, 0x34, 0x43, 0x45, 0x41, 0x36, 0x28, 0x2e, 0x2d, 0x31, 0x42, 0x52, 0x46, 0x48, 0x65, 0x6d,\n    0x5e, 0x4c, 0x40, 0x3f, 0x38, 0x29, 0x25, 0x2c, 0x47, 0x5b, 0x69, 0x65, 0x53, 0x3f, 0x3e, 0x4d,\n    0x54, 0x5d, 0x54, 0x4e, 0x4f, 0x50, 0x4c, 0x36, 0x3b, 0x49, 0x5d, 0x69, 0x6f, 0x75, 0x6e, 0x5d,\n    0x40, 0x41, 0x63, 0x5d, 0x4c, 0x1a, 0x29, 0x3a, 0x4a, 0x4d, 0x53, 0x59, 0x60, 0x64, 0x67, 0x68,\n    0x69, 0x67, 0x72, 0x6e, 0x55, 0x48, 0x42, 0x2f, 0x3c, 0x42, 0x53, 0x63, 0x68, 0x67, 0x5a, 0x48,\n    0x36, 0x27, 0x1d, 0x20, 0x26, 0x2a, 0x32, 0x3d, 0x4b, 0x59, 0x5e, 0x56, 0x51, 0x54, 0x51, 0x47,\n    0x25, 0x1d, 0x18, 0x1c, 0x24, 0x29, 0x29, 0x26, 0x22, 0x23, 0x26, 0x2b, 0x2b, 0x24, 0x1c, 0x17,\n    0x16, 0x1d, 0x25, 0x28, 0x25, 0x21, 0x20, 0x20, 0x20, 0x20, 0x22, 0x23, 0x21, 0x1e, 0x20, 0x24,\n    0x26, 0x27, 0x25, 0x22, 0x22, 0x26, 0x28, 0x29, 0x26, 0x27, 0x2a, 0x30, 0x39, 0x42, 0x48, 0x4b,\n    0x46, 0x3f, 0x35, 0x2a, 0x22, 0x1e, 0x1e, 0x1e, 0x21, 0x23, 0x21, 0x1b, 0x18, 0x18, 0x19, 0x19,\n    0x1c, 0x1d, 0x1e, 0x1f, 0x1f, 0x1d, 0x1b, 0x1a, 0x14, 0x16, 0x18, 0x18, 0x18, 0x19, 0x1c, 0x1f,\n    0x20, 0x20, 0x21, 0x22, 0x1e, 0x1a, 0x1a, 0x1c, 0x29, 0x29, 0x2a, 0x2a, 0x2a, 0x2a, 0x2b, 0x2c,\n    0x33, 0x35, 0x35, 0x2f, 0x26, 0x1f, 0x1c, 0x1d, 0x20, 0x23, 0x25, 0x23, 0x20, 0x21, 0x28, 0x2e,\n    0x34, 0x36, 0x3a, 0x3d, 0x3e, 0x3b, 0x37, 0x33, 0x30, 0x2d, 0x2a, 0x29, 0x29, 0x2a, 0x28, 0x27,\n    0x26, 0x28, 0x27, 0x24, 0x25, 0x29, 0x2b, 0x2a, 0x27, 0x27, 0x24, 0x24, 0x29, 0x2d, 0x38, 0x49,\n    0x58, 0x5d, 0x63, 0x67, 0x65, 0x60, 0x5c, 0x59, 0x4c, 0x4a, 0x4a, 0x4f, 0x55, 0x55, 0x50, 0x4b,\n    0x35, 0x2b, 0x2a, 0x2e, 0x2b, 0x2a, 0x2d, 0x2d, 0x27, 0x24, 0x1f, 0x1d, 0x1d, 0x1e, 0x1e, 0x1e,\n    0x19, 0x18, 0x19, 0x1d, 0x1e, 0x1c, 0x1d, 0x1f, 0x20, 0x23, 0x25, 0x25, 0x21, 0x1f, 0x1f, 0x20,\n    0x21, 0x22, 0x24, 0x26, 0x2b, 0x31, 0x33, 0x32, 0x31, 0x2f, 0x2d, 0x30, 0x33, 0x38, 0x40, 0x48,\n    0x49, 0x49, 0x47, 0x46, 0x4a, 0x4e, 0x4f, 0x4c, 0x40, 0x40, 0x44, 0x49, 0x4b, 0x4b, 0x4d, 0x51,\n    0x59, 0x59, 0x53, 0x46, 0x38, 0x32, 0x35, 0x3a, 0x37, 0x3c, 0x3d, 0x3a, 0x39, 0x3e, 0x46, 0x4c,\n    0x51, 0x4e, 0x4c, 0x4d, 0x50, 0x50, 0x4d, 0x4a, 0x3a, 0x3c, 0x3e, 0x3f, 0x40, 0x3f, 0x3f, 0x3e,\n    0x48, 0x4a, 0x50, 0x57, 0x58, 0x57, 0x5d, 0x66, 0x6f, 0x6f, 0x70, 0x70, 0x6c, 0x63, 0x5a, 0x54,\n    0x4f, 0x4d, 0x4c, 0x4c, 0x49, 0x46, 0x46, 0x49, 0x65, 0x76, 0x7e, 0x7d, 0x80, 0x82, 0x82, 0x85,\n    0x89, 0x8d, 0x91, 0x94, 0x95, 0x96, 0x99, 0x9b, 0x9a, 0x9d, 0xa2, 0xa6, 0xaa, 0xae, 0xb2, 0xb5,\n    0xb6, 0xb7, 0xb9, 0xb8, 0xb7, 0xb7, 0xb8, 0xb9, 0xb9, 0xbb, 0xbd, 0xbd, 0xbc, 0xbc, 0xbc, 0xbd,\n    0xb8, 0xb7, 0xb4, 0xb0, 0xae, 0xa7, 0x97, 0x88, 0x6d, 0x5c, 0x44, 0x31, 0x27, 0x24, 0x24, 0x24,\n    0x22, 0x20, 0x1e, 0x1e, 0x21, 0x22, 0x21, 0x20, 0x1f, 0x24, 0x2a, 0x30, 0x38, 0x42, 0x4c, 0x52,\n    0x50, 0x4d, 0x4d, 0x4f, 0x51, 0x53, 0x57, 0x5b, 0x5f, 0x61, 0x65, 0x69, 0x6d, 0x6f, 0x71, 0x71,\n    0x74, 0x74, 0x75, 0x76, 0x76, 0x75, 0x74, 0x74, 0x71, 0x71, 0x70, 0x70, 0x70, 0x6f, 0x6d, 0x6c,\n    0x67, 0x68, 0x67, 0x64, 0x64, 0x65, 0x63, 0x5f, 0x5c, 0x5d, 0x5f, 0x5f, 0x5e, 0x5f, 0x62, 0x65,\n    0x6a, 0x6b, 0x6d, 0x70, 0x73, 0x76, 0x79, 0x7a, 0x7b, 0x7b, 0x7c, 0x7d, 0x7e, 0x7e, 0x7f, 0x7f,\n    0x7a, 0x7c, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7f, 0x81, 0x82, 0x82, 0x82, 0x81, 0x80, 0x7f, 0x7e,\n    0x81, 0x7f, 0x7c, 0x79, 0x78, 0x76, 0x74, 0x73, 0x71, 0x6e, 0x6a, 0x69, 0x6a, 0x67, 0x5d, 0x52,\n    0x52, 0x55, 0x62, 0x77, 0x85, 0x87, 0x86, 0x88, 0x7b, 0x73, 0x6a, 0x5a, 0x44, 0x3b, 0x3c, 0x3b,\n    0x3b, 0x34, 0x29, 0x28, 0x38, 0x49, 0x49, 0x3d, 0x40, 0x37, 0x32, 0x36, 0x38, 0x32, 0x30, 0x35,\n    0x41, 0x5e, 0x77, 0x80, 0x80, 0x77, 0x6b, 0x66, 0x62, 0x57, 0x54, 0x5a, 0x5f, 0x68, 0x6e, 0x6d,\n    0x5a, 0x60, 0x5d, 0x4a, 0x42, 0x38, 0x24, 0x24, 0x2c, 0x31, 0x36, 0x39, 0x3c, 0x3c, 0x35, 0x2c,\n    0x2c, 0x2b, 0x2b, 0x2d, 0x2f, 0x2f, 0x2c, 0x2a, 0x29, 0x26, 0x24, 0x26, 0x2b, 0x30, 0x32, 0x32,\n    0x31, 0x2a, 0x27, 0x2b, 0x2e, 0x2b, 0x28, 0x27, 0x25, 0x22, 0x21, 0x26, 0x2a, 0x20, 0x19, 0x1e,\n    0x24, 0x28, 0x32, 0x2f, 0x2b, 0x24, 0x1b, 0x27, 0x30, 0x30, 0x36, 0x43, 0x40, 0x43, 0x5a, 0x60,\n    0x63, 0x4f, 0x41, 0x40, 0x3a, 0x29, 0x20, 0x21, 0x44, 0x5d, 0x6c, 0x64, 0x4e, 0x3c, 0x40, 0x52,\n    0x57, 0x5b, 0x51, 0x4e, 0x4e, 0x4d, 0x4d, 0x3f, 0x35, 0x42, 0x57, 0x67, 0x6f, 0x74, 0x6a, 0x55,\n    0x40, 0x47, 0x64, 0x5a, 0x41, 0x19, 0x28, 0x39, 0x5b, 0x54, 0x55, 0x5f, 0x66, 0x65, 0x64, 0x67,\n    0x5c, 0x5a, 0x64, 0x61, 0x4d, 0x47, 0x45, 0x38, 0x3b, 0x43, 0x55, 0x66, 0x6b, 0x68, 0x59, 0x46,\n    0x2c, 0x22, 0x1d, 0x22, 0x27, 0x2a, 0x34, 0x40, 0x58, 0x64, 0x68, 0x60, 0x57, 0x52, 0x4b, 0x43,\n    0x2f, 0x20, 0x17, 0x1c, 0x23, 0x25, 0x26, 0x2a, 0x25, 0x23, 0x24, 0x29, 0x2b, 0x26, 0x1e, 0x19,\n    0x18, 0x1f, 0x26, 0x29, 0x26, 0x20, 0x1c, 0x1a, 0x1d, 0x1e, 0x20, 0x22, 0x20, 0x1d, 0x1e, 0x21,\n    0x24, 0x24, 0x22, 0x1f, 0x20, 0x24, 0x27, 0x27, 0x24, 0x24, 0x26, 0x2b, 0x32, 0x3a, 0x40, 0x43,\n    0x3a, 0x36, 0x2f, 0x28, 0x23, 0x20, 0x20, 0x20, 0x22, 0x26, 0x26, 0x21, 0x1c, 0x1c, 0x1e, 0x20,\n    0x1f, 0x20, 0x21, 0x21, 0x20, 0x1d, 0x1a, 0x19, 0x14, 0x15, 0x17, 0x19, 0x1a, 0x1b, 0x1c, 0x1d,\n    0x18, 0x1c, 0x21, 0x24, 0x21, 0x1c, 0x1b, 0x1d, 0x27, 0x29, 0x2c, 0x2d, 0x2e, 0x2e, 0x2f, 0x30,\n    0x32, 0x35, 0x35, 0x30, 0x27, 0x1f, 0x1c, 0x1d, 0x20, 0x22, 0x23, 0x22, 0x20, 0x22, 0x28, 0x2e,\n    0x35, 0x37, 0x3a, 0x3a, 0x36, 0x31, 0x2c, 0x29, 0x2b, 0x2a, 0x29, 0x2b, 0x2c, 0x2c, 0x29, 0x27,\n    0x25, 0x28, 0x2a, 0x27, 0x26, 0x28, 0x2c, 0x2e, 0x2c, 0x2b, 0x28, 0x29, 0x30, 0x33, 0x3c, 0x4c,\n    0x58, 0x5f, 0x66, 0x69, 0x69, 0x69, 0x6b, 0x6e, 0x69, 0x6a, 0x66, 0x62, 0x5f, 0x5c, 0x52, 0x46,\n    0x30, 0x28, 0x29, 0x2e, 0x2c, 0x2b, 0x2d, 0x2c, 0x25, 0x20, 0x1c, 0x1a, 0x1c, 0x1d, 0x1c, 0x1a,\n    0x1a, 0x19, 0x1a, 0x1d, 0x1f, 0x1e, 0x1e, 0x20, 0x1e, 0x1d, 0x1e, 0x20, 0x22, 0x23, 0x22, 0x21,\n    0x20, 0x23, 0x25, 0x28, 0x2c, 0x32, 0x33, 0x32, 0x2c, 0x29, 0x28, 0x2b, 0x30, 0x35, 0x3a, 0x3f,\n    0x43, 0x45, 0x48, 0x4b, 0x4f, 0x53, 0x51, 0x4d, 0x5c, 0x5e, 0x5e, 0x57, 0x4a, 0x43, 0x47, 0x4f,\n    0x61, 0x6a, 0x68, 0x54, 0x3c, 0x31, 0x32, 0x35, 0x34, 0x36, 0x38, 0x38, 0x35, 0x37, 0x41, 0x4b,\n    0x4b, 0x49, 0x49, 0x4b, 0x4f, 0x52, 0x52, 0x51, 0x46, 0x48, 0x4b, 0x50, 0x54, 0x58, 0x5a, 0x5a,\n    0x5a, 0x57, 0x56, 0x55, 0x53, 0x50, 0x55, 0x5c, 0x6a, 0x6b, 0x6e, 0x70, 0x6f, 0x69, 0x5f, 0x58,\n    0x55, 0x53, 0x50, 0x4e, 0x4b, 0x47, 0x47, 0x4a, 0x68, 0x77, 0x7f, 0x7f, 0x81, 0x82, 0x81, 0x84,\n    0x89, 0x8d, 0x92, 0x95, 0x97, 0x98, 0x9b, 0x9d, 0x9b, 0x9e, 0xa4, 0xa8, 0xac, 0xaf, 0xb2, 0xb4,\n    0xb5, 0xb5, 0xb6, 0xb5, 0xb4, 0xb3, 0xb4, 0xb4, 0xb4, 0xb4, 0xb5, 0xb5, 0xb4, 0xb4, 0xb6, 0xb7,\n    0xb6, 0xb4, 0xb2, 0xb1, 0xb4, 0xb6, 0xb3, 0xaf, 0xa1, 0x8f, 0x76, 0x5e, 0x4d, 0x3f, 0x33, 0x2b,\n    0x22, 0x20, 0x1e, 0x1e, 0x21, 0x23, 0x23, 0x23, 0x24, 0x26, 0x29, 0x2c, 0x32, 0x3c, 0x4a, 0x54,\n    0x52, 0x50, 0x4f, 0x51, 0x54, 0x55, 0x59, 0x5d, 0x60, 0x62, 0x66, 0x6a, 0x6e, 0x70, 0x72, 0x73,\n    0x75, 0x75, 0x76, 0x76, 0x76, 0x75, 0x74, 0x73, 0x74, 0x72, 0x71, 0x70, 0x70, 0x70, 0x6f, 0x6e,\n    0x6a, 0x6a, 0x69, 0x66, 0x64, 0x64, 0x61, 0x5d, 0x5b, 0x5e, 0x60, 0x5f, 0x5c, 0x5c, 0x5f, 0x63,\n    0x65, 0x65, 0x66, 0x68, 0x6b, 0x6e, 0x71, 0x73, 0x74, 0x74, 0x75, 0x75, 0x76, 0x77, 0x77, 0x78,\n    0x76, 0x78, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7f, 0x7f, 0x7f, 0x7f, 0x80, 0x80, 0x80, 0x80,\n    0x82, 0x80, 0x7d, 0x7a, 0x78, 0x77, 0x75, 0x73, 0x6f, 0x6d, 0x6b, 0x6a, 0x6a, 0x67, 0x5d, 0x53,\n    0x53, 0x61, 0x72, 0x7f, 0x84, 0x84, 0x83, 0x83, 0x78, 0x6f, 0x69, 0x5f, 0x4b, 0x3e, 0x3e, 0x40,\n    0x3b, 0x35, 0x2c, 0x2f, 0x48, 0x61, 0x60, 0x4f, 0x48, 0x39, 0x2c, 0x31, 0x34, 0x23, 0x22, 0x39,\n    0x4a, 0x5e, 0x6e, 0x79, 0x84, 0x88, 0x85, 0x85, 0x73, 0x5d, 0x51, 0x55, 0x5a, 0x5e, 0x60, 0x5d,\n    0x4d, 0x4e, 0x4f, 0x45, 0x3f, 0x37, 0x26, 0x28, 0x21, 0x29, 0x32, 0x37, 0x38, 0x35, 0x2f, 0x29,\n    0x2b, 0x2d, 0x30, 0x32, 0x33, 0x31, 0x2e, 0x2c, 0x2c, 0x28, 0x23, 0x24, 0x2a, 0x2e, 0x30, 0x2f,\n    0x2d, 0x26, 0x24, 0x2a, 0x2e, 0x2c, 0x28, 0x28, 0x2a, 0x2b, 0x27, 0x27, 0x28, 0x22, 0x1b, 0x1d,\n    0x1e, 0x20, 0x26, 0x22, 0x1f, 0x1b, 0x18, 0x28, 0x35, 0x40, 0x46, 0x4b, 0x44, 0x43, 0x5c, 0x6e,\n    0x6b, 0x53, 0x3f, 0x3b, 0x38, 0x2d, 0x28, 0x2b, 0x40, 0x5d, 0x6e, 0x62, 0x4a, 0x38, 0x3d, 0x4f,\n    0x5d, 0x5a, 0x4f, 0x4f, 0x4d, 0x48, 0x4d, 0x4b, 0x45, 0x52, 0x62, 0x65, 0x5e, 0x5b, 0x52, 0x43,\n    0x3a, 0x4f, 0x67, 0x5b, 0x37, 0x21, 0x2f, 0x41, 0x55, 0x49, 0x4a, 0x5a, 0x66, 0x63, 0x5f, 0x61,\n    0x5a, 0x58, 0x5f, 0x5e, 0x4d, 0x46, 0x41, 0x33, 0x39, 0x41, 0x53, 0x61, 0x64, 0x60, 0x53, 0x42,\n    0x3e, 0x36, 0x31, 0x31, 0x30, 0x2e, 0x34, 0x3f, 0x47, 0x50, 0x59, 0x5b, 0x57, 0x53, 0x50, 0x4d,\n    0x33, 0x26, 0x1b, 0x1c, 0x23, 0x27, 0x2a, 0x2c, 0x26, 0x24, 0x23, 0x26, 0x27, 0x22, 0x1c, 0x19,\n    0x1d, 0x21, 0x26, 0x27, 0x24, 0x1e, 0x19, 0x17, 0x17, 0x18, 0x1c, 0x1f, 0x20, 0x1f, 0x1f, 0x22,\n    0x23, 0x23, 0x21, 0x1e, 0x1e, 0x21, 0x22, 0x21, 0x20, 0x20, 0x21, 0x24, 0x28, 0x2d, 0x31, 0x34,\n    0x31, 0x2e, 0x28, 0x23, 0x1f, 0x1e, 0x1e, 0x1f, 0x20, 0x25, 0x28, 0x26, 0x22, 0x21, 0x1f, 0x1e,\n    0x1a, 0x1c, 0x1e, 0x1f, 0x20, 0x1e, 0x1d, 0x1b, 0x17, 0x17, 0x17, 0x19, 0x1b, 0x1c, 0x1d, 0x1d,\n    0x17, 0x19, 0x1f, 0x23, 0x21, 0x1d, 0x1a, 0x1b, 0x1b, 0x1f, 0x25, 0x2a, 0x2d, 0x30, 0x33, 0x34,\n    0x31, 0x34, 0x35, 0x30, 0x27, 0x20, 0x1d, 0x1e, 0x21, 0x23, 0x24, 0x23, 0x22, 0x23, 0x28, 0x2c,\n    0x2f, 0x32, 0x35, 0x35, 0x32, 0x2e, 0x2b, 0x2a, 0x2b, 0x2b, 0x2b, 0x2e, 0x30, 0x30, 0x2d, 0x2b,\n    0x27, 0x2a, 0x2c, 0x2d, 0x2e, 0x31, 0x35, 0x38, 0x33, 0x33, 0x30, 0x33, 0x38, 0x38, 0x3b, 0x45,\n    0x48, 0x4a, 0x4d, 0x51, 0x57, 0x61, 0x6d, 0x76, 0x7c, 0x80, 0x7c, 0x71, 0x6c, 0x69, 0x5c, 0x4c,\n    0x36, 0x27, 0x24, 0x2b, 0x30, 0x32, 0x2f, 0x28, 0x1d, 0x1a, 0x18, 0x19, 0x1c, 0x1d, 0x1b, 0x18,\n    0x1c, 0x1b, 0x1c, 0x1d, 0x1e, 0x1e, 0x1e, 0x1f, 0x20, 0x1e, 0x1c, 0x1c, 0x1f, 0x22, 0x23, 0x22,\n    0x23, 0x25, 0x26, 0x27, 0x2a, 0x2e, 0x30, 0x30, 0x2c, 0x29, 0x29, 0x2d, 0x32, 0x34, 0x35, 0x37,\n    0x39, 0x40, 0x48, 0x50, 0x55, 0x57, 0x52, 0x4c, 0x4f, 0x58, 0x61, 0x5e, 0x53, 0x4c, 0x50, 0x57,\n    0x55, 0x64, 0x67, 0x56, 0x3f, 0x32, 0x2b, 0x27, 0x2f, 0x30, 0x36, 0x3d, 0x3d, 0x39, 0x3c, 0x42,\n    0x4d, 0x4d, 0x4e, 0x4f, 0x4f, 0x4c, 0x46, 0x41, 0x3f, 0x3f, 0x40, 0x43, 0x45, 0x46, 0x46, 0x44,\n    0x50, 0x50, 0x50, 0x4d, 0x49, 0x4b, 0x56, 0x63, 0x68, 0x6b, 0x6f, 0x71, 0x70, 0x6c, 0x64, 0x5c,\n    0x5d, 0x5b, 0x58, 0x54, 0x50, 0x4e, 0x4e, 0x4f, 0x6b, 0x78, 0x7f, 0x7f, 0x82, 0x81, 0x80, 0x84,\n    0x89, 0x8d, 0x92, 0x96, 0x97, 0x99, 0x9b, 0x9e, 0x9c, 0xa0, 0xa6, 0xab, 0xae, 0xb0, 0xb2, 0xb3,\n    0xb2, 0xb2, 0xb2, 0xb1, 0xb0, 0xaf, 0xaf, 0xaf, 0xad, 0xac, 0xac, 0xab, 0xaa, 0xab, 0xac, 0xad,\n    0xac, 0xaa, 0xa7, 0xa5, 0xa6, 0xa8, 0xaa, 0xaa, 0xae, 0xa6, 0x9b, 0x90, 0x83, 0x70, 0x5b, 0x4b,\n    0x39, 0x35, 0x30, 0x2c, 0x2a, 0x28, 0x25, 0x23, 0x27, 0x29, 0x2a, 0x2a, 0x2b, 0x35, 0x48, 0x59,\n    0x58, 0x55, 0x54, 0x56, 0x58, 0x58, 0x5b, 0x5f, 0x62, 0x64, 0x67, 0x6b, 0x6f, 0x72, 0x74, 0x75,\n    0x76, 0x76, 0x77, 0x77, 0x76, 0x75, 0x74, 0x73, 0x75, 0x74, 0x73, 0x72, 0x72, 0x71, 0x70, 0x6f,\n    0x6b, 0x6a, 0x68, 0x66, 0x64, 0x61, 0x5d, 0x59, 0x59, 0x5b, 0x5c, 0x5c, 0x5a, 0x59, 0x5b, 0x5c,\n    0x5e, 0x5d, 0x5d, 0x5e, 0x61, 0x64, 0x68, 0x6a, 0x6b, 0x6b, 0x6c, 0x6d, 0x6e, 0x70, 0x71, 0x71,\n    0x71, 0x73, 0x76, 0x78, 0x77, 0x77, 0x77, 0x77, 0x78, 0x79, 0x79, 0x7b, 0x7c, 0x7e, 0x80, 0x81,\n    0x81, 0x7f, 0x7d, 0x7b, 0x79, 0x77, 0x75, 0x73, 0x6e, 0x6d, 0x6b, 0x6a, 0x6b, 0x68, 0x5f, 0x55,\n    0x58, 0x65, 0x73, 0x7c, 0x84, 0x88, 0x82, 0x78, 0x75, 0x69, 0x64, 0x5f, 0x4e, 0x42, 0x44, 0x48,\n    0x36, 0x2d, 0x27, 0x30, 0x4a, 0x5f, 0x5d, 0x4f, 0x4b, 0x40, 0x30, 0x33, 0x39, 0x2a, 0x2d, 0x4e,\n    0x77, 0x7a, 0x75, 0x72, 0x78, 0x7f, 0x82, 0x86, 0x75, 0x5f, 0x4f, 0x4b, 0x50, 0x5c, 0x66, 0x67,\n    0x5b, 0x4c, 0x49, 0x45, 0x3f, 0x31, 0x1e, 0x20, 0x20, 0x28, 0x32, 0x37, 0x38, 0x37, 0x36, 0x35,\n    0x32, 0x34, 0x37, 0x37, 0x36, 0x33, 0x30, 0x2f, 0x2f, 0x28, 0x20, 0x1e, 0x21, 0x26, 0x27, 0x27,\n    0x24, 0x24, 0x26, 0x26, 0x20, 0x1b, 0x1f, 0x27, 0x32, 0x34, 0x2c, 0x24, 0x24, 0x22, 0x1e, 0x1f,\n    0x1b, 0x1d, 0x26, 0x25, 0x24, 0x20, 0x1e, 0x2f, 0x33, 0x46, 0x4c, 0x4e, 0x48, 0x45, 0x5c, 0x72,\n    0x5e, 0x52, 0x4f, 0x54, 0x50, 0x3d, 0x2d, 0x27, 0x42, 0x5a, 0x65, 0x57, 0x43, 0x39, 0x42, 0x54,\n    0x5f, 0x59, 0x4e, 0x50, 0x4b, 0x41, 0x49, 0x4f, 0x4f, 0x5a, 0x60, 0x4e, 0x32, 0x27, 0x2a, 0x2b,\n    0x34, 0x54, 0x67, 0x5a, 0x2e, 0x2a, 0x3b, 0x50, 0x58, 0x51, 0x52, 0x61, 0x6d, 0x6d, 0x68, 0x66,\n    0x60, 0x5b, 0x5c, 0x59, 0x51, 0x4d, 0x47, 0x39, 0x33, 0x3c, 0x4e, 0x59, 0x57, 0x53, 0x4d, 0x42,\n    0x39, 0x33, 0x2f, 0x31, 0x31, 0x31, 0x37, 0x40, 0x4d, 0x4e, 0x52, 0x57, 0x58, 0x55, 0x52, 0x52,\n    0x32, 0x2e, 0x25, 0x20, 0x23, 0x2b, 0x2e, 0x2b, 0x27, 0x26, 0x25, 0x25, 0x21, 0x1c, 0x19, 0x19,\n    0x22, 0x24, 0x26, 0x28, 0x28, 0x26, 0x23, 0x22, 0x18, 0x18, 0x1c, 0x21, 0x23, 0x23, 0x24, 0x26,\n    0x23, 0x23, 0x21, 0x1f, 0x20, 0x22, 0x21, 0x1f, 0x21, 0x22, 0x24, 0x25, 0x27, 0x29, 0x2b, 0x2c,\n    0x32, 0x2f, 0x2a, 0x24, 0x21, 0x20, 0x20, 0x21, 0x24, 0x26, 0x25, 0x22, 0x20, 0x1e, 0x1a, 0x15,\n    0x16, 0x18, 0x1b, 0x1d, 0x1f, 0x1f, 0x1f, 0x1f, 0x1d, 0x1b, 0x19, 0x19, 0x1a, 0x1c, 0x1d, 0x1e,\n    0x1c, 0x1a, 0x1b, 0x1e, 0x20, 0x1c, 0x19, 0x17, 0x18, 0x1c, 0x21, 0x26, 0x29, 0x2b, 0x2d, 0x2e,\n    0x30, 0x33, 0x35, 0x30, 0x28, 0x21, 0x1f, 0x20, 0x1f, 0x21, 0x24, 0x26, 0x27, 0x28, 0x2b, 0x2d,\n    0x2d, 0x30, 0x33, 0x33, 0x32, 0x30, 0x30, 0x31, 0x30, 0x2f, 0x2f, 0x31, 0x33, 0x33, 0x31, 0x2f,\n    0x2a, 0x29, 0x2a, 0x2c, 0x2e, 0x30, 0x32, 0x34, 0x33, 0x34, 0x32, 0x34, 0x3a, 0x39, 0x3c, 0x46,\n    0x4a, 0x4a, 0x4a, 0x4d, 0x53, 0x5b, 0x62, 0x66, 0x5f, 0x64, 0x61, 0x59, 0x58, 0x5e, 0x5a, 0x4e,\n    0x38, 0x29, 0x24, 0x2b, 0x30, 0x31, 0x2f, 0x29, 0x23, 0x1f, 0x1a, 0x19, 0x1a, 0x1c, 0x1b, 0x1a,\n    0x1d, 0x1d, 0x1c, 0x1b, 0x1a, 0x1a, 0x1a, 0x19, 0x1e, 0x1d, 0x1b, 0x19, 0x1a, 0x1d, 0x21, 0x24,\n    0x2a, 0x2b, 0x2a, 0x27, 0x28, 0x2d, 0x30, 0x30, 0x32, 0x2f, 0x2d, 0x30, 0x35, 0x37, 0x3a, 0x3c,\n    0x3d, 0x44, 0x4c, 0x51, 0x54, 0x54, 0x4f, 0x49, 0x50, 0x5b, 0x65, 0x65, 0x5b, 0x52, 0x4e, 0x4e,\n    0x55, 0x5e, 0x5e, 0x50, 0x42, 0x3a, 0x33, 0x2c, 0x2e, 0x2e, 0x35, 0x40, 0x45, 0x41, 0x3e, 0x3f,\n    0x42, 0x44, 0x47, 0x4c, 0x4e, 0x4b, 0x44, 0x3e, 0x33, 0x39, 0x44, 0x4f, 0x58, 0x5c, 0x5d, 0x5d,\n    0x4b, 0x51, 0x54, 0x50, 0x49, 0x4d, 0x60, 0x72, 0x6f, 0x74, 0x78, 0x77, 0x75, 0x71, 0x69, 0x62,\n    0x62, 0x62, 0x61, 0x5e, 0x5b, 0x5b, 0x5c, 0x5d, 0x6e, 0x79, 0x7e, 0x7e, 0x81, 0x80, 0x7f, 0x83,\n    0x89, 0x8d, 0x92, 0x95, 0x97, 0x98, 0x9b, 0x9d, 0x9e, 0xa2, 0xa7, 0xab, 0xae, 0xaf, 0xb0, 0xb1,\n    0xaf, 0xae, 0xad, 0xac, 0xac, 0xab, 0xaa, 0xa9, 0xa6, 0xa5, 0xa2, 0xa0, 0xa0, 0xa0, 0xa0, 0xa1,\n    0x9f, 0x9e, 0x9e, 0x9e, 0x9e, 0x9e, 0x9f, 0xa1, 0xa5, 0xa2, 0xa0, 0x9f, 0x9f, 0x98, 0x8d, 0x84,\n    0x6d, 0x66, 0x5c, 0x52, 0x4a, 0x42, 0x3a, 0x35, 0x33, 0x32, 0x2f, 0x29, 0x25, 0x2e, 0x48, 0x60,\n    0x5f, 0x5c, 0x5b, 0x5c, 0x5c, 0x5b, 0x5d, 0x60, 0x64, 0x66, 0x68, 0x6c, 0x6f, 0x72, 0x74, 0x75,\n    0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x75, 0x73, 0x70, 0x6d,\n    0x6c, 0x69, 0x66, 0x64, 0x61, 0x5d, 0x59, 0x56, 0x56, 0x55, 0x54, 0x56, 0x57, 0x57, 0x56, 0x53,\n    0x56, 0x54, 0x53, 0x52, 0x53, 0x55, 0x58, 0x5a, 0x5b, 0x5b, 0x5c, 0x5e, 0x60, 0x63, 0x65, 0x67,\n    0x64, 0x67, 0x6a, 0x6d, 0x6e, 0x6f, 0x70, 0x71, 0x74, 0x74, 0x75, 0x77, 0x79, 0x7c, 0x7e, 0x7f,\n    0x80, 0x7e, 0x7c, 0x7a, 0x79, 0x77, 0x75, 0x73, 0x6f, 0x6e, 0x6c, 0x6b, 0x6b, 0x69, 0x61, 0x59,\n    0x63, 0x6f, 0x78, 0x7c, 0x82, 0x86, 0x7e, 0x70, 0x6e, 0x64, 0x62, 0x61, 0x52, 0x43, 0x3f, 0x3f,\n    0x2d, 0x22, 0x1f, 0x2d, 0x3f, 0x46, 0x43, 0x41, 0x38, 0x3a, 0x31, 0x32, 0x3c, 0x37, 0x3b, 0x54,\n    0x76, 0x80, 0x80, 0x76, 0x6c, 0x62, 0x5e, 0x63, 0x6f, 0x64, 0x55, 0x48, 0x48, 0x5d, 0x71, 0x74,\n    0x61, 0x52, 0x4d, 0x49, 0x4b, 0x4c, 0x3b, 0x30, 0x28, 0x2d, 0x34, 0x3a, 0x3c, 0x3e, 0x42, 0x46,\n    0x3d, 0x3d, 0x3d, 0x3b, 0x37, 0x34, 0x32, 0x31, 0x36, 0x2d, 0x22, 0x1c, 0x1c, 0x20, 0x22, 0x23,\n    0x26, 0x26, 0x26, 0x23, 0x19, 0x14, 0x1c, 0x28, 0x31, 0x35, 0x2f, 0x26, 0x25, 0x24, 0x20, 0x21,\n    0x1d, 0x1d, 0x24, 0x25, 0x26, 0x22, 0x20, 0x33, 0x3b, 0x47, 0x47, 0x4d, 0x50, 0x4e, 0x5a, 0x63,\n    0x5e, 0x58, 0x58, 0x5a, 0x51, 0x3d, 0x30, 0x2d, 0x4c, 0x5b, 0x5e, 0x50, 0x43, 0x3f, 0x4a, 0x5c,\n    0x61, 0x5c, 0x51, 0x52, 0x4b, 0x40, 0x48, 0x4e, 0x4f, 0x52, 0x4f, 0x38, 0x1c, 0x17, 0x25, 0x2e,\n    0x3e, 0x5a, 0x60, 0x4f, 0x22, 0x2c, 0x43, 0x5d, 0x68, 0x66, 0x64, 0x64, 0x69, 0x6c, 0x69, 0x63,\n    0x5c, 0x56, 0x52, 0x52, 0x53, 0x55, 0x4e, 0x42, 0x2a, 0x39, 0x4f, 0x5a, 0x55, 0x51, 0x4f, 0x48,\n    0x3b, 0x34, 0x30, 0x30, 0x32, 0x33, 0x37, 0x3c, 0x4c, 0x47, 0x46, 0x4d, 0x55, 0x57, 0x57, 0x57,\n    0x32, 0x35, 0x32, 0x2b, 0x2c, 0x32, 0x33, 0x2e, 0x2a, 0x28, 0x26, 0x24, 0x20, 0x1b, 0x1a, 0x1c,\n    0x20, 0x21, 0x23, 0x27, 0x2a, 0x2d, 0x2e, 0x2d, 0x1f, 0x1f, 0x21, 0x25, 0x27, 0x27, 0x27, 0x29,\n    0x23, 0x23, 0x21, 0x20, 0x22, 0x25, 0x25, 0x22, 0x25, 0x27, 0x2b, 0x2d, 0x2d, 0x2c, 0x2b, 0x2b,\n    0x2b, 0x29, 0x27, 0x25, 0x25, 0x27, 0x29, 0x2b, 0x2e, 0x2b, 0x24, 0x1d, 0x1a, 0x19, 0x16, 0x12,\n    0x17, 0x18, 0x1a, 0x1b, 0x1d, 0x1e, 0x1f, 0x1f, 0x1f, 0x1e, 0x1c, 0x1a, 0x1a, 0x1b, 0x1d, 0x1f,\n    0x22, 0x1d, 0x1a, 0x1c, 0x1d, 0x1b, 0x17, 0x14, 0x17, 0x1a, 0x1f, 0x24, 0x26, 0x28, 0x2a, 0x2b,\n    0x32, 0x34, 0x34, 0x2f, 0x27, 0x21, 0x1f, 0x21, 0x1d, 0x1e, 0x22, 0x26, 0x2a, 0x2e, 0x31, 0x32,\n    0x30, 0x30, 0x30, 0x30, 0x2f, 0x2f, 0x30, 0x31, 0x34, 0x32, 0x31, 0x31, 0x32, 0x32, 0x30, 0x2e,\n    0x2e, 0x2b, 0x29, 0x2a, 0x29, 0x27, 0x26, 0x27, 0x2d, 0x2e, 0x2b, 0x2e, 0x35, 0x39, 0x42, 0x51,\n    0x5b, 0x5d, 0x60, 0x64, 0x66, 0x65, 0x61, 0x5e, 0x54, 0x55, 0x4f, 0x45, 0x44, 0x4c, 0x4c, 0x45,\n    0x32, 0x29, 0x29, 0x2d, 0x2b, 0x2b, 0x2d, 0x2d, 0x35, 0x2e, 0x25, 0x1e, 0x1b, 0x1c, 0x1f, 0x22,\n    0x20, 0x21, 0x1f, 0x1c, 0x1a, 0x1a, 0x19, 0x17, 0x18, 0x19, 0x18, 0x17, 0x17, 0x1a, 0x1f, 0x24,\n    0x2a, 0x2a, 0x29, 0x26, 0x26, 0x2a, 0x2e, 0x30, 0x34, 0x2f, 0x2c, 0x2d, 0x31, 0x36, 0x3d, 0x43,\n    0x4d, 0x51, 0x53, 0x53, 0x53, 0x53, 0x50, 0x4c, 0x46, 0x4b, 0x4f, 0x50, 0x54, 0x5c, 0x65, 0x6a,\n    0x60, 0x5f, 0x57, 0x4a, 0x42, 0x42, 0x43, 0x43, 0x44, 0x42, 0x42, 0x47, 0x4b, 0x4a, 0x46, 0x43,\n    0x35, 0x36, 0x3a, 0x43, 0x4d, 0x51, 0x4f, 0x4b, 0x4f, 0x55, 0x5e, 0x63, 0x62, 0x5d, 0x58, 0x54,\n    0x60, 0x63, 0x60, 0x54, 0x47, 0x45, 0x51, 0x5f, 0x69, 0x73, 0x7b, 0x7c, 0x7a, 0x79, 0x75, 0x70,\n    0x6c, 0x6f, 0x6f, 0x6d, 0x6d, 0x6e, 0x70, 0x6f, 0x72, 0x7b, 0x7d, 0x7d, 0x80, 0x7e, 0x7e, 0x84,\n    0x89, 0x8d, 0x92, 0x95, 0x96, 0x97, 0x9a, 0x9c, 0x9e, 0xa2, 0xa6, 0xaa, 0xab, 0xac, 0xac, 0xad,\n    0xac, 0xaa, 0xa9, 0xa8, 0xa8, 0xa7, 0xa6, 0xa4, 0xa0, 0x9e, 0x9a, 0x98, 0x96, 0x96, 0x95, 0x94,\n    0x92, 0x92, 0x94, 0x97, 0x97, 0x95, 0x95, 0x96, 0x98, 0x97, 0x97, 0x9b, 0x9f, 0xa0, 0x9d, 0x9a,\n    0x92, 0x8d, 0x84, 0x7c, 0x75, 0x6d, 0x65, 0x60, 0x59, 0x53, 0x4a, 0x3d, 0x33, 0x36, 0x4c, 0x64,\n    0x66, 0x63, 0x62, 0x62, 0x62, 0x60, 0x61, 0x64, 0x67, 0x68, 0x6a, 0x6d, 0x70, 0x72, 0x74, 0x75,\n    0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x79, 0x79, 0x78, 0x78, 0x77, 0x74, 0x70, 0x6c,\n    0x6b, 0x67, 0x64, 0x62, 0x5f, 0x5a, 0x56, 0x56, 0x56, 0x54, 0x52, 0x53, 0x55, 0x54, 0x50, 0x4b,\n    0x45, 0x43, 0x40, 0x3d, 0x3c, 0x3d, 0x3e, 0x3f, 0x40, 0x41, 0x42, 0x44, 0x47, 0x4a, 0x4d, 0x4f,\n    0x52, 0x55, 0x5a, 0x5e, 0x62, 0x66, 0x69, 0x6c, 0x6f, 0x70, 0x72, 0x74, 0x76, 0x78, 0x7a, 0x7b,\n    0x7d, 0x7c, 0x7a, 0x79, 0x78, 0x77, 0x74, 0x73, 0x70, 0x6f, 0x6d, 0x6b, 0x6b, 0x6a, 0x64, 0x5d,\n    0x65, 0x74, 0x7f, 0x7f, 0x7e, 0x7f, 0x7a, 0x70, 0x65, 0x5a, 0x55, 0x52, 0x45, 0x3a, 0x34, 0x2f,\n    0x2a, 0x21, 0x21, 0x2f, 0x36, 0x31, 0x2f, 0x34, 0x22, 0x2f, 0x32, 0x32, 0x3c, 0x41, 0x44, 0x4f,\n    0x57, 0x6f, 0x7e, 0x7a, 0x69, 0x57, 0x52, 0x5b, 0x66, 0x6a, 0x6b, 0x62, 0x5e, 0x6c, 0x76, 0x70,\n    0x5a, 0x4e, 0x44, 0x37, 0x45, 0x66, 0x64, 0x50, 0x36, 0x36, 0x37, 0x3b, 0x3d, 0x3e, 0x40, 0x44,\n    0x41, 0x40, 0x3d, 0x3b, 0x38, 0x37, 0x35, 0x34, 0x3b, 0x33, 0x28, 0x21, 0x1f, 0x21, 0x24, 0x26,\n    0x2b, 0x24, 0x1e, 0x1d, 0x1b, 0x1a, 0x20, 0x28, 0x2d, 0x34, 0x33, 0x30, 0x31, 0x2c, 0x26, 0x25,\n    0x25, 0x1f, 0x21, 0x22, 0x24, 0x23, 0x23, 0x36, 0x41, 0x4d, 0x52, 0x54, 0x4c, 0x47, 0x57, 0x5e,\n    0x5e, 0x54, 0x4a, 0x43, 0x38, 0x2f, 0x33, 0x3e, 0x52, 0x62, 0x69, 0x61, 0x51, 0x41, 0x40, 0x4d,\n    0x67, 0x67, 0x5c, 0x59, 0x52, 0x4b, 0x52, 0x54, 0x51, 0x4a, 0x40, 0x32, 0x26, 0x2d, 0x3d, 0x43,\n    0x55, 0x5e, 0x54, 0x41, 0x1e, 0x2d, 0x48, 0x61, 0x69, 0x69, 0x64, 0x5c, 0x5c, 0x63, 0x64, 0x5f,\n    0x56, 0x56, 0x55, 0x57, 0x57, 0x4f, 0x3c, 0x2b, 0x29, 0x39, 0x53, 0x60, 0x5c, 0x59, 0x55, 0x4d,\n    0x46, 0x40, 0x3b, 0x3a, 0x39, 0x38, 0x38, 0x39, 0x3c, 0x39, 0x3b, 0x47, 0x56, 0x60, 0x64, 0x65,\n    0x2b, 0x30, 0x35, 0x37, 0x36, 0x36, 0x35, 0x34, 0x2e, 0x2a, 0x26, 0x25, 0x24, 0x21, 0x21, 0x23,\n    0x21, 0x20, 0x20, 0x23, 0x27, 0x2a, 0x2a, 0x29, 0x22, 0x21, 0x21, 0x25, 0x27, 0x27, 0x27, 0x29,\n    0x27, 0x25, 0x20, 0x1d, 0x1f, 0x24, 0x25, 0x23, 0x24, 0x29, 0x2e, 0x30, 0x2e, 0x29, 0x25, 0x22,\n    0x21, 0x22, 0x23, 0x25, 0x28, 0x2b, 0x2d, 0x2f, 0x2d, 0x2c, 0x25, 0x1d, 0x17, 0x16, 0x16, 0x15,\n    0x17, 0x17, 0x17, 0x18, 0x19, 0x1b, 0x1d, 0x1e, 0x1c, 0x1d, 0x1e, 0x1c, 0x1b, 0x1b, 0x1d, 0x1f,\n    0x25, 0x20, 0x1d, 0x1d, 0x1c, 0x18, 0x15, 0x14, 0x14, 0x17, 0x1d, 0x22, 0x27, 0x2b, 0x2e, 0x30,\n    0x35, 0x36, 0x35, 0x2f, 0x26, 0x1f, 0x1f, 0x20, 0x1e, 0x1e, 0x1f, 0x23, 0x29, 0x30, 0x34, 0x37,\n    0x34, 0x32, 0x2e, 0x2c, 0x2b, 0x2c, 0x2d, 0x2d, 0x33, 0x31, 0x2f, 0x2f, 0x2f, 0x2d, 0x29, 0x26,\n    0x2d, 0x2b, 0x2a, 0x29, 0x25, 0x1f, 0x1f, 0x22, 0x28, 0x2a, 0x29, 0x2c, 0x34, 0x39, 0x44, 0x56,\n    0x5c, 0x60, 0x65, 0x68, 0x69, 0x68, 0x66, 0x64, 0x67, 0x66, 0x5f, 0x54, 0x4e, 0x4c, 0x47, 0x3f,\n    0x2f, 0x27, 0x29, 0x2f, 0x2d, 0x2c, 0x2e, 0x2d, 0x34, 0x30, 0x29, 0x21, 0x1d, 0x1d, 0x21, 0x24,\n    0x23, 0x24, 0x22, 0x1d, 0x1b, 0x1c, 0x1b, 0x18, 0x15, 0x16, 0x17, 0x18, 0x19, 0x1a, 0x1d, 0x1f,\n    0x21, 0x24, 0x24, 0x22, 0x23, 0x28, 0x2d, 0x2e, 0x2f, 0x2c, 0x2b, 0x2c, 0x2e, 0x32, 0x38, 0x3f,\n    0x4b, 0x50, 0x54, 0x55, 0x55, 0x55, 0x52, 0x4f, 0x50, 0x4d, 0x45, 0x3d, 0x3d, 0x45, 0x4e, 0x51,\n    0x52, 0x51, 0x4c, 0x43, 0x3c, 0x3c, 0x43, 0x4a, 0x57, 0x54, 0x50, 0x4b, 0x4a, 0x4a, 0x48, 0x43,\n    0x43, 0x3f, 0x3f, 0x45, 0x4e, 0x51, 0x4c, 0x46, 0x47, 0x4c, 0x52, 0x56, 0x58, 0x5b, 0x61, 0x65,\n    0x64, 0x61, 0x58, 0x4c, 0x43, 0x41, 0x45, 0x49, 0x59, 0x6a, 0x7a, 0x7f, 0x80, 0x82, 0x81, 0x7d,\n    0x7b, 0x7e, 0x7f, 0x7b, 0x7a, 0x7a, 0x7a, 0x78, 0x77, 0x7d, 0x7d, 0x7d, 0x80, 0x7e, 0x7e, 0x85,\n    0x8a, 0x8e, 0x92, 0x95, 0x96, 0x97, 0x9a, 0x9c, 0x9e, 0xa0, 0xa4, 0xa6, 0xa7, 0xa7, 0xa7, 0xa8,\n    0xa9, 0xa7, 0xa5, 0xa5, 0xa5, 0xa4, 0xa3, 0xa1, 0x9c, 0x99, 0x95, 0x92, 0x90, 0x8d, 0x8b, 0x89,\n    0x88, 0x86, 0x87, 0x8a, 0x89, 0x86, 0x85, 0x87, 0x89, 0x8b, 0x8d, 0x90, 0x92, 0x93, 0x91, 0x8f,\n    0x94, 0x92, 0x8e, 0x8c, 0x8a, 0x87, 0x83, 0x7f, 0x7c, 0x76, 0x6f, 0x68, 0x5e, 0x59, 0x61, 0x6d,\n    0x6f, 0x6c, 0x6b, 0x6b, 0x6b, 0x69, 0x6a, 0x6c, 0x6d, 0x6e, 0x6f, 0x71, 0x73, 0x76, 0x78, 0x79,\n    0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x7d, 0x7c, 0x7a, 0x79, 0x77, 0x74, 0x70, 0x6d,\n    0x6c, 0x66, 0x62, 0x60, 0x5d, 0x58, 0x56, 0x56, 0x58, 0x55, 0x52, 0x4f, 0x4b, 0x46, 0x3f, 0x3a,\n    0x2f, 0x2d, 0x2a, 0x28, 0x26, 0x26, 0x26, 0x26, 0x28, 0x28, 0x29, 0x2b, 0x2e, 0x32, 0x35, 0x37,\n    0x3e, 0x41, 0x46, 0x4b, 0x51, 0x57, 0x5c, 0x60, 0x65, 0x67, 0x6a, 0x6e, 0x72, 0x75, 0x77, 0x78,\n    0x7a, 0x79, 0x78, 0x78, 0x77, 0x76, 0x74, 0x72, 0x71, 0x70, 0x6e, 0x6b, 0x6b, 0x6b, 0x66, 0x61,\n    0x66, 0x73, 0x7c, 0x7c, 0x78, 0x75, 0x6c, 0x62, 0x56, 0x4e, 0x4b, 0x49, 0x43, 0x3d, 0x35, 0x2a,\n    0x23, 0x1f, 0x23, 0x2b, 0x2b, 0x24, 0x22, 0x27, 0x29, 0x35, 0x3d, 0x3e, 0x46, 0x53, 0x5c, 0x5e,\n    0x65, 0x74, 0x7d, 0x7d, 0x78, 0x6d, 0x67, 0x6d, 0x60, 0x66, 0x6e, 0x70, 0x70, 0x78, 0x79, 0x70,\n    0x54, 0x3e, 0x31, 0x24, 0x2f, 0x50, 0x53, 0x42, 0x33, 0x30, 0x31, 0x37, 0x3c, 0x3c, 0x3a, 0x3a,\n    0x3d, 0x3b, 0x39, 0x38, 0x3a, 0x3a, 0x39, 0x38, 0x37, 0x32, 0x2c, 0x25, 0x22, 0x23, 0x26, 0x28,\n    0x28, 0x1e, 0x17, 0x18, 0x1b, 0x1c, 0x20, 0x25, 0x2d, 0x33, 0x36, 0x37, 0x37, 0x2f, 0x27, 0x28,\n    0x29, 0x20, 0x20, 0x23, 0x2a, 0x2a, 0x2a, 0x3e, 0x3e, 0x4d, 0x58, 0x53, 0x38, 0x33, 0x4f, 0x5b,\n    0x4c, 0x48, 0x46, 0x42, 0x39, 0x2f, 0x30, 0x38, 0x52, 0x64, 0x70, 0x6b, 0x52, 0x36, 0x34, 0x46,\n    0x69, 0x6f, 0x65, 0x5c, 0x57, 0x58, 0x60, 0x5b, 0x50, 0x43, 0x37, 0x2e, 0x2c, 0x3a, 0x4b, 0x50,\n    0x5e, 0x52, 0x40, 0x32, 0x23, 0x32, 0x49, 0x5b, 0x5d, 0x5c, 0x5c, 0x5d, 0x61, 0x66, 0x66, 0x63,\n    0x59, 0x5c, 0x5a, 0x55, 0x50, 0x42, 0x2f, 0x23, 0x34, 0x3e, 0x51, 0x5c, 0x5b, 0x5a, 0x55, 0x4b,\n    0x34, 0x35, 0x38, 0x3b, 0x3b, 0x3b, 0x3b, 0x3d, 0x49, 0x4c, 0x51, 0x58, 0x62, 0x68, 0x69, 0x66,\n    0x1f, 0x24, 0x2f, 0x3a, 0x39, 0x33, 0x33, 0x38, 0x32, 0x2b, 0x26, 0x26, 0x28, 0x29, 0x28, 0x29,\n    0x26, 0x24, 0x23, 0x23, 0x24, 0x24, 0x20, 0x1d, 0x1f, 0x1d, 0x1d, 0x21, 0x24, 0x24, 0x26, 0x28,\n    0x2b, 0x27, 0x1f, 0x1a, 0x1b, 0x20, 0x22, 0x20, 0x21, 0x26, 0x2b, 0x2d, 0x28, 0x21, 0x1a, 0x16,\n    0x24, 0x25, 0x27, 0x28, 0x29, 0x29, 0x28, 0x28, 0x22, 0x25, 0x24, 0x1e, 0x17, 0x15, 0x15, 0x15,\n    0x15, 0x14, 0x14, 0x14, 0x16, 0x18, 0x1b, 0x1d, 0x19, 0x1c, 0x1e, 0x1e, 0x1b, 0x1b, 0x1d, 0x1f,\n    0x25, 0x22, 0x21, 0x20, 0x1c, 0x17, 0x14, 0x15, 0x14, 0x18, 0x1d, 0x22, 0x27, 0x2b, 0x2f, 0x32,\n    0x37, 0x38, 0x36, 0x2e, 0x25, 0x1e, 0x1d, 0x1f, 0x21, 0x1f, 0x1e, 0x21, 0x27, 0x2e, 0x35, 0x38,\n    0x3a, 0x35, 0x2f, 0x2c, 0x2b, 0x2d, 0x2e, 0x2e, 0x30, 0x2f, 0x2d, 0x2d, 0x2c, 0x29, 0x23, 0x1f,\n    0x26, 0x27, 0x29, 0x28, 0x22, 0x1c, 0x1e, 0x25, 0x26, 0x2b, 0x2d, 0x31, 0x37, 0x39, 0x43, 0x53,\n    0x51, 0x53, 0x55, 0x55, 0x55, 0x5a, 0x61, 0x68, 0x6d, 0x6f, 0x6d, 0x67, 0x5f, 0x57, 0x4a, 0x40,\n    0x31, 0x24, 0x23, 0x2e, 0x34, 0x35, 0x30, 0x28, 0x22, 0x23, 0x22, 0x1f, 0x1b, 0x1a, 0x1c, 0x1f,\n    0x22, 0x23, 0x21, 0x1b, 0x19, 0x1a, 0x19, 0x16, 0x16, 0x17, 0x19, 0x1b, 0x1d, 0x1c, 0x1b, 0x19,\n    0x1b, 0x1f, 0x22, 0x22, 0x24, 0x29, 0x2e, 0x2f, 0x2b, 0x2c, 0x2f, 0x32, 0x32, 0x31, 0x33, 0x37,\n    0x39, 0x42, 0x4c, 0x52, 0x56, 0x56, 0x52, 0x4d, 0x4a, 0x4d, 0x4c, 0x47, 0x44, 0x43, 0x3f, 0x3a,\n    0x43, 0x48, 0x4d, 0x4c, 0x43, 0x3e, 0x44, 0x4e, 0x50, 0x51, 0x4d, 0x45, 0x42, 0x44, 0x43, 0x3f,\n    0x46, 0x43, 0x43, 0x4c, 0x56, 0x58, 0x51, 0x48, 0x3b, 0x3d, 0x3e, 0x3e, 0x43, 0x51, 0x64, 0x72,\n    0x74, 0x6a, 0x5d, 0x53, 0x50, 0x50, 0x4d, 0x48, 0x55, 0x69, 0x7d, 0x85, 0x85, 0x87, 0x85, 0x81,\n    0x83, 0x86, 0x86, 0x80, 0x7c, 0x7a, 0x77, 0x73, 0x7a, 0x7e, 0x7e, 0x7d, 0x80, 0x7e, 0x7f, 0x87,\n    0x8b, 0x8f, 0x93, 0x96, 0x96, 0x97, 0x99, 0x9c, 0x9d, 0x9f, 0xa2, 0xa3, 0xa4, 0xa4, 0xa4, 0xa5,\n    0xa7, 0xa5, 0xa3, 0xa3, 0xa3, 0xa3, 0xa1, 0x9f, 0x9a, 0x97, 0x92, 0x8f, 0x8c, 0x89, 0x85, 0x82,\n    0x81, 0x7e, 0x7d, 0x80, 0x80, 0x7e, 0x7e, 0x80, 0x7e, 0x7f, 0x80, 0x82, 0x84, 0x86, 0x89, 0x8b,\n    0x8a, 0x89, 0x87, 0x88, 0x89, 0x88, 0x84, 0x81, 0x85, 0x83, 0x86, 0x8a, 0x87, 0x7e, 0x79, 0x7b,\n    0x75, 0x73, 0x72, 0x73, 0x72, 0x71, 0x72, 0x74, 0x73, 0x73, 0x74, 0x76, 0x78, 0x7a, 0x7c, 0x7d,\n    0x7e, 0x7f, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x80, 0x7e, 0x7b, 0x78, 0x76, 0x73, 0x71, 0x6f,\n    0x6c, 0x66, 0x61, 0x5f, 0x5c, 0x58, 0x56, 0x58, 0x56, 0x54, 0x4f, 0x47, 0x3d, 0x33, 0x2a, 0x26,\n    0x21, 0x20, 0x1e, 0x1d, 0x1c, 0x1d, 0x1d, 0x1e, 0x1e, 0x1e, 0x1f, 0x20, 0x23, 0x26, 0x29, 0x2b,\n    0x2f, 0x32, 0x35, 0x3a, 0x40, 0x46, 0x4c, 0x51, 0x5a, 0x5d, 0x63, 0x69, 0x6f, 0x73, 0x76, 0x77,\n    0x78, 0x77, 0x77, 0x77, 0x77, 0x76, 0x74, 0x72, 0x72, 0x71, 0x6e, 0x6b, 0x6b, 0x6b, 0x68, 0x63,\n    0x6d, 0x72, 0x75, 0x75, 0x72, 0x69, 0x58, 0x48, 0x46, 0x48, 0x51, 0x59, 0x59, 0x53, 0x43, 0x2e,\n    0x20, 0x23, 0x28, 0x2b, 0x29, 0x24, 0x22, 0x23, 0x32, 0x37, 0x3e, 0x40, 0x46, 0x59, 0x6a, 0x6b,\n    0x6b, 0x6b, 0x6a, 0x74, 0x84, 0x87, 0x7f, 0x7b, 0x79, 0x6e, 0x66, 0x63, 0x60, 0x64, 0x67, 0x63,\n    0x46, 0x28, 0x26, 0x2f, 0x39, 0x44, 0x3f, 0x37, 0x21, 0x1f, 0x24, 0x31, 0x3c, 0x3f, 0x3d, 0x3b,\n    0x36, 0x34, 0x34, 0x36, 0x3b, 0x3d, 0x3c, 0x3a, 0x2e, 0x2d, 0x2a, 0x26, 0x22, 0x22, 0x24, 0x27,\n    0x23, 0x1d, 0x19, 0x19, 0x19, 0x19, 0x1e, 0x25, 0x2f, 0x32, 0x33, 0x33, 0x33, 0x29, 0x22, 0x27,\n    0x27, 0x1e, 0x21, 0x27, 0x31, 0x33, 0x31, 0x43, 0x49, 0x4f, 0x56, 0x50, 0x35, 0x35, 0x54, 0x5b,\n    0x56, 0x50, 0x4a, 0x44, 0x39, 0x30, 0x32, 0x3a, 0x53, 0x60, 0x67, 0x5b, 0x3f, 0x29, 0x38, 0x5c,\n    0x65, 0x6f, 0x65, 0x58, 0x55, 0x5c, 0x65, 0x5d, 0x55, 0x49, 0x3e, 0x34, 0x32, 0x41, 0x58, 0x62,\n    0x55, 0x3d, 0x2b, 0x27, 0x29, 0x36, 0x46, 0x50, 0x4a, 0x49, 0x4f, 0x5d, 0x66, 0x65, 0x60, 0x5d,\n    0x60, 0x5e, 0x50, 0x41, 0x3d, 0x3c, 0x3e, 0x43, 0x41, 0x42, 0x4b, 0x52, 0x53, 0x54, 0x4f, 0x44,\n    0x35, 0x3a, 0x40, 0x41, 0x3d, 0x37, 0x36, 0x37, 0x4a, 0x53, 0x5c, 0x62, 0x66, 0x68, 0x66, 0x62,\n    0x1c, 0x23, 0x2c, 0x33, 0x39, 0x3b, 0x37, 0x32, 0x34, 0x30, 0x2d, 0x2f, 0x37, 0x3c, 0x39, 0x33,\n    0x2f, 0x30, 0x30, 0x2c, 0x27, 0x24, 0x20, 0x1c, 0x16, 0x19, 0x1f, 0x24, 0x24, 0x1f, 0x1c, 0x1d,\n    0x22, 0x25, 0x25, 0x20, 0x1d, 0x1e, 0x22, 0x25, 0x26, 0x27, 0x28, 0x2b, 0x2c, 0x2b, 0x29, 0x27,\n    0x2a, 0x29, 0x27, 0x27, 0x27, 0x27, 0x27, 0x27, 0x24, 0x22, 0x21, 0x20, 0x1c, 0x17, 0x14, 0x15,\n    0x14, 0x13, 0x13, 0x16, 0x17, 0x18, 0x1d, 0x22, 0x1e, 0x1e, 0x1d, 0x1d, 0x1c, 0x1d, 0x1d, 0x1e,\n    0x20, 0x23, 0x25, 0x22, 0x1d, 0x18, 0x15, 0x16, 0x15, 0x15, 0x1b, 0x24, 0x29, 0x2b, 0x2e, 0x31,\n    0x35, 0x39, 0x38, 0x31, 0x27, 0x22, 0x1f, 0x1e, 0x21, 0x1e, 0x1c, 0x1e, 0x23, 0x28, 0x2e, 0x32,\n    0x34, 0x36, 0x33, 0x2b, 0x26, 0x28, 0x2c, 0x2e, 0x2c, 0x2b, 0x2b, 0x2c, 0x2d, 0x2b, 0x26, 0x22,\n    0x22, 0x23, 0x2a, 0x32, 0x33, 0x2b, 0x24, 0x21, 0x21, 0x22, 0x26, 0x2c, 0x33, 0x3b, 0x46, 0x50,\n    0x46, 0x46, 0x45, 0x45, 0x47, 0x4c, 0x54, 0x5b, 0x57, 0x5a, 0x5a, 0x59, 0x60, 0x63, 0x55, 0x40,\n    0x2c, 0x25, 0x22, 0x23, 0x26, 0x2c, 0x2b, 0x20, 0x1c, 0x1a, 0x18, 0x18, 0x19, 0x1b, 0x1d, 0x1e,\n    0x21, 0x22, 0x21, 0x1e, 0x1b, 0x19, 0x19, 0x1a, 0x19, 0x18, 0x16, 0x17, 0x19, 0x1a, 0x18, 0x17,\n    0x1d, 0x1f, 0x22, 0x24, 0x22, 0x21, 0x28, 0x2f, 0x2e, 0x2e, 0x2e, 0x2f, 0x31, 0x35, 0x3a, 0x3e,\n    0x47, 0x41, 0x40, 0x48, 0x53, 0x57, 0x56, 0x53, 0x53, 0x54, 0x55, 0x56, 0x53, 0x4e, 0x46, 0x41,\n    0x4d, 0x57, 0x53, 0x4d, 0x52, 0x54, 0x56, 0x60, 0x54, 0x48, 0x43, 0x48, 0x4a, 0x45, 0x44, 0x4a,\n    0x4e, 0x52, 0x54, 0x56, 0x5d, 0x65, 0x63, 0x5d, 0x5d, 0x58, 0x54, 0x53, 0x53, 0x59, 0x66, 0x73,\n    0x7a, 0x74, 0x69, 0x5b, 0x4f, 0x49, 0x47, 0x46, 0x53, 0x69, 0x7a, 0x81, 0x8a, 0x8d, 0x88, 0x84,\n    0x89, 0x89, 0x86, 0x83, 0x7d, 0x70, 0x6e, 0x79, 0x7e, 0x7d, 0x7e, 0x80, 0x80, 0x80, 0x84, 0x88,\n    0x8e, 0x8f, 0x92, 0x93, 0x94, 0x96, 0x98, 0x9a, 0x9b, 0x9d, 0x9e, 0xa0, 0xa1, 0xa1, 0xa0, 0xa0,\n    0xa0, 0xa0, 0xa0, 0xa0, 0x9f, 0x9d, 0x9c, 0x9b, 0x9b, 0x96, 0x91, 0x8d, 0x89, 0x84, 0x7d, 0x78,\n    0x78, 0x76, 0x74, 0x73, 0x73, 0x73, 0x73, 0x72, 0x78, 0x77, 0x78, 0x79, 0x7b, 0x7d, 0x7d, 0x7d,\n    0x81, 0x7f, 0x7f, 0x81, 0x82, 0x81, 0x81, 0x82, 0x81, 0x84, 0x89, 0x8c, 0x8a, 0x86, 0x80, 0x7c,\n    0x7c, 0x7e, 0x7d, 0x7b, 0x7b, 0x7d, 0x7d, 0x7b, 0x78, 0x79, 0x7b, 0x7b, 0x7b, 0x7c, 0x7f, 0x82,\n    0x82, 0x81, 0x82, 0x83, 0x84, 0x85, 0x84, 0x83, 0x80, 0x7f, 0x7c, 0x7a, 0x77, 0x74, 0x70, 0x6d,\n    0x68, 0x66, 0x63, 0x61, 0x5f, 0x5c, 0x59, 0x56, 0x50, 0x58, 0x4b, 0x35, 0x27, 0x1a, 0x14, 0x1b,\n    0x15, 0x16, 0x18, 0x1a, 0x1b, 0x1a, 0x1a, 0x19, 0x18, 0x1d, 0x1e, 0x1c, 0x1f, 0x26, 0x27, 0x23,\n    0x23, 0x28, 0x2f, 0x35, 0x38, 0x3b, 0x3e, 0x40, 0x4d, 0x52, 0x59, 0x60, 0x66, 0x6a, 0x6e, 0x70,\n    0x73, 0x78, 0x79, 0x73, 0x72, 0x76, 0x77, 0x74, 0x75, 0x6d, 0x6b, 0x6c, 0x69, 0x6a, 0x6d, 0x6a,\n    0x68, 0x74, 0x74, 0x6a, 0x5e, 0x4d, 0x3e, 0x38, 0x40, 0x49, 0x50, 0x4f, 0x4a, 0x45, 0x3e, 0x36,\n    0x2a, 0x24, 0x21, 0x25, 0x29, 0x29, 0x29, 0x2b, 0x3d, 0x3f, 0x36, 0x32, 0x41, 0x4c, 0x55, 0x63,\n    0x73, 0x74, 0x76, 0x72, 0x6c, 0x75, 0x82, 0x85, 0x86, 0x73, 0x61, 0x54, 0x4f, 0x52, 0x55, 0x4f,\n    0x3b, 0x37, 0x37, 0x3c, 0x42, 0x43, 0x40, 0x3f, 0x2b, 0x1e, 0x1a, 0x2d, 0x34, 0x2d, 0x2f, 0x2b,\n    0x21, 0x22, 0x25, 0x29, 0x2a, 0x28, 0x29, 0x2c, 0x27, 0x28, 0x28, 0x27, 0x28, 0x2a, 0x2a, 0x28,\n    0x27, 0x2a, 0x2f, 0x30, 0x2a, 0x22, 0x20, 0x22, 0x2a, 0x21, 0x1e, 0x23, 0x27, 0x26, 0x25, 0x27,\n    0x20, 0x1a, 0x1d, 0x27, 0x2c, 0x2c, 0x31, 0x3a, 0x4c, 0x52, 0x56, 0x4a, 0x3b, 0x41, 0x54, 0x5d,\n    0x52, 0x52, 0x52, 0x43, 0x33, 0x29, 0x2a, 0x41, 0x4e, 0x5b, 0x5c, 0x58, 0x42, 0x2d, 0x3f, 0x5c,\n    0x72, 0x6b, 0x61, 0x5c, 0x5e, 0x62, 0x63, 0x61, 0x56, 0x48, 0x39, 0x2c, 0x3d, 0x61, 0x6c, 0x6d,\n    0x70, 0x73, 0x61, 0x43, 0x34, 0x32, 0x2e, 0x2b, 0x24, 0x44, 0x64, 0x6e, 0x6d, 0x6a, 0x61, 0x57,\n    0x53, 0x53, 0x4a, 0x47, 0x4a, 0x43, 0x43, 0x54, 0x4f, 0x43, 0x3e, 0x46, 0x4d, 0x4b, 0x45, 0x41,\n    0x3c, 0x44, 0x49, 0x3a, 0x2d, 0x29, 0x2b, 0x3e, 0x4d, 0x5d, 0x5e, 0x5e, 0x5e, 0x61, 0x64, 0x57,\n    0x1d, 0x1f, 0x20, 0x23, 0x2a, 0x33, 0x38, 0x38, 0x2f, 0x2d, 0x2b, 0x2b, 0x2d, 0x30, 0x30, 0x2f,\n    0x2d, 0x2c, 0x29, 0x28, 0x29, 0x2a, 0x26, 0x20, 0x17, 0x16, 0x16, 0x19, 0x19, 0x18, 0x18, 0x1a,\n    0x1d, 0x1e, 0x1c, 0x19, 0x1a, 0x1e, 0x22, 0x23, 0x20, 0x21, 0x24, 0x27, 0x2a, 0x2b, 0x29, 0x28,\n    0x23, 0x23, 0x24, 0x27, 0x29, 0x29, 0x27, 0x24, 0x23, 0x20, 0x1f, 0x1f, 0x1c, 0x17, 0x14, 0x14,\n    0x16, 0x14, 0x14, 0x16, 0x16, 0x17, 0x1a, 0x1f, 0x1f, 0x1e, 0x1d, 0x1b, 0x1b, 0x1a, 0x1b, 0x1b,\n    0x20, 0x23, 0x25, 0x24, 0x1f, 0x1a, 0x16, 0x14, 0x14, 0x14, 0x17, 0x1f, 0x24, 0x27, 0x2b, 0x2f,\n    0x35, 0x37, 0x36, 0x2e, 0x27, 0x23, 0x22, 0x21, 0x21, 0x20, 0x20, 0x24, 0x28, 0x2c, 0x2e, 0x2f,\n    0x2b, 0x2d, 0x2c, 0x28, 0x25, 0x28, 0x2a, 0x2a, 0x2f, 0x30, 0x31, 0x33, 0x33, 0x2f, 0x2a, 0x25,\n    0x25, 0x24, 0x27, 0x2d, 0x2f, 0x2b, 0x26, 0x24, 0x26, 0x24, 0x24, 0x26, 0x2a, 0x31, 0x3c, 0x46,\n    0x51, 0x58, 0x61, 0x66, 0x64, 0x5f, 0x59, 0x56, 0x4d, 0x46, 0x43, 0x4b, 0x52, 0x50, 0x4a, 0x47,\n    0x38, 0x2b, 0x24, 0x22, 0x21, 0x23, 0x23, 0x1b, 0x1c, 0x1b, 0x1a, 0x1b, 0x1c, 0x1e, 0x20, 0x20,\n    0x24, 0x25, 0x25, 0x22, 0x1e, 0x1b, 0x1b, 0x1c, 0x19, 0x18, 0x17, 0x18, 0x19, 0x1a, 0x1a, 0x19,\n    0x1c, 0x1d, 0x20, 0x22, 0x22, 0x22, 0x28, 0x2f, 0x2f, 0x2f, 0x2f, 0x30, 0x33, 0x37, 0x3c, 0x3f,\n    0x40, 0x3c, 0x3f, 0x4d, 0x5e, 0x67, 0x69, 0x68, 0x55, 0x53, 0x52, 0x52, 0x52, 0x50, 0x4b, 0x46,\n    0x5a, 0x61, 0x59, 0x4e, 0x51, 0x53, 0x59, 0x65, 0x71, 0x67, 0x5a, 0x4e, 0x46, 0x45, 0x4a, 0x4f,\n    0x57, 0x59, 0x58, 0x55, 0x52, 0x4f, 0x4b, 0x47, 0x4f, 0x4f, 0x53, 0x59, 0x5b, 0x5c, 0x5f, 0x64,\n    0x64, 0x61, 0x5a, 0x4f, 0x45, 0x3e, 0x38, 0x34, 0x44, 0x5d, 0x74, 0x80, 0x8a, 0x90, 0x90, 0x90,\n    0x8b, 0x89, 0x82, 0x7c, 0x75, 0x6b, 0x6e, 0x7d, 0x80, 0x7f, 0x7f, 0x81, 0x81, 0x81, 0x83, 0x87,\n    0x8b, 0x8d, 0x8f, 0x91, 0x92, 0x93, 0x96, 0x97, 0x9a, 0x9b, 0x9c, 0x9e, 0x9f, 0x9f, 0x9e, 0x9e,\n    0x9e, 0x9f, 0x9f, 0x9f, 0x9f, 0x9e, 0x9d, 0x9c, 0x9d, 0x9a, 0x96, 0x92, 0x8e, 0x87, 0x7e, 0x77,\n    0x72, 0x6f, 0x6b, 0x69, 0x68, 0x68, 0x69, 0x68, 0x68, 0x68, 0x6a, 0x6c, 0x6f, 0x70, 0x70, 0x6f,\n    0x75, 0x74, 0x76, 0x7b, 0x7d, 0x7d, 0x7d, 0x7f, 0x80, 0x80, 0x81, 0x81, 0x81, 0x82, 0x82, 0x82,\n    0x84, 0x86, 0x85, 0x83, 0x83, 0x85, 0x85, 0x83, 0x7e, 0x7f, 0x80, 0x80, 0x7f, 0x80, 0x82, 0x84,\n    0x85, 0x85, 0x84, 0x85, 0x86, 0x87, 0x86, 0x85, 0x83, 0x81, 0x7f, 0x7c, 0x7a, 0x76, 0x72, 0x6f,\n    0x6c, 0x6a, 0x68, 0x65, 0x64, 0x61, 0x5f, 0x5d, 0x59, 0x4f, 0x3a, 0x27, 0x1d, 0x16, 0x14, 0x17,\n    0x19, 0x19, 0x19, 0x18, 0x18, 0x17, 0x16, 0x16, 0x18, 0x1a, 0x19, 0x17, 0x1b, 0x23, 0x24, 0x21,\n    0x1e, 0x20, 0x24, 0x27, 0x2b, 0x30, 0x36, 0x3a, 0x3d, 0x42, 0x4a, 0x52, 0x59, 0x61, 0x68, 0x6c,\n    0x6c, 0x72, 0x74, 0x71, 0x71, 0x76, 0x77, 0x74, 0x72, 0x6d, 0x6c, 0x6c, 0x67, 0x68, 0x6c, 0x6a,\n    0x68, 0x6a, 0x64, 0x59, 0x4b, 0x3a, 0x33, 0x3a, 0x45, 0x46, 0x43, 0x3d, 0x3a, 0x39, 0x32, 0x2a,\n    0x24, 0x25, 0x26, 0x26, 0x22, 0x20, 0x24, 0x2a, 0x2f, 0x3a, 0x33, 0x2c, 0x3f, 0x58, 0x67, 0x6f,\n    0x81, 0x82, 0x81, 0x76, 0x65, 0x5e, 0x5e, 0x59, 0x67, 0x64, 0x64, 0x61, 0x59, 0x55, 0x4e, 0x41,\n    0x42, 0x3d, 0x39, 0x39, 0x3a, 0x39, 0x38, 0x39, 0x2a, 0x27, 0x1e, 0x1f, 0x1f, 0x22, 0x2a, 0x20,\n    0x1b, 0x1c, 0x1f, 0x22, 0x21, 0x1f, 0x21, 0x24, 0x29, 0x2a, 0x2b, 0x2d, 0x2f, 0x2e, 0x2a, 0x26,\n    0x2c, 0x38, 0x43, 0x41, 0x31, 0x20, 0x1c, 0x20, 0x26, 0x23, 0x23, 0x25, 0x26, 0x25, 0x24, 0x25,\n    0x1f, 0x1e, 0x27, 0x34, 0x3a, 0x38, 0x3b, 0x43, 0x4f, 0x52, 0x52, 0x45, 0x38, 0x41, 0x55, 0x5f,\n    0x59, 0x53, 0x4d, 0x3e, 0x31, 0x26, 0x23, 0x35, 0x45, 0x5a, 0x5e, 0x55, 0x3b, 0x27, 0x40, 0x62,\n    0x6f, 0x6a, 0x63, 0x5f, 0x5f, 0x5f, 0x5e, 0x5b, 0x51, 0x3b, 0x2e, 0x31, 0x54, 0x79, 0x78, 0x6d,\n    0x59, 0x54, 0x47, 0x3e, 0x3f, 0x3c, 0x36, 0x35, 0x41, 0x52, 0x61, 0x64, 0x63, 0x63, 0x5f, 0x57,\n    0x4c, 0x55, 0x53, 0x4e, 0x50, 0x4b, 0x48, 0x50, 0x40, 0x3b, 0x3a, 0x40, 0x41, 0x38, 0x2f, 0x2c,\n    0x3a, 0x40, 0x43, 0x35, 0x2e, 0x2e, 0x2d, 0x3b, 0x47, 0x55, 0x55, 0x57, 0x5b, 0x5f, 0x61, 0x53,\n    0x1d, 0x1b, 0x18, 0x17, 0x1e, 0x2a, 0x35, 0x39, 0x2b, 0x2b, 0x2b, 0x28, 0x27, 0x28, 0x2d, 0x31,\n    0x2f, 0x2c, 0x28, 0x28, 0x2f, 0x34, 0x30, 0x28, 0x1e, 0x1a, 0x18, 0x18, 0x18, 0x17, 0x18, 0x1a,\n    0x1b, 0x1b, 0x19, 0x19, 0x1e, 0x25, 0x29, 0x29, 0x2a, 0x29, 0x29, 0x2a, 0x2a, 0x29, 0x27, 0x25,\n    0x1c, 0x1c, 0x1c, 0x1f, 0x22, 0x24, 0x23, 0x22, 0x23, 0x20, 0x1d, 0x1e, 0x1d, 0x19, 0x15, 0x14,\n    0x18, 0x16, 0x15, 0x16, 0x15, 0x15, 0x17, 0x1b, 0x1e, 0x1d, 0x1b, 0x1a, 0x19, 0x1a, 0x1a, 0x1b,\n    0x1e, 0x20, 0x23, 0x23, 0x21, 0x1c, 0x17, 0x14, 0x15, 0x15, 0x18, 0x1e, 0x24, 0x29, 0x2f, 0x34,\n    0x36, 0x36, 0x32, 0x2a, 0x24, 0x22, 0x21, 0x20, 0x21, 0x21, 0x23, 0x29, 0x2f, 0x32, 0x31, 0x2f,\n    0x28, 0x2a, 0x2a, 0x28, 0x29, 0x2b, 0x2b, 0x2a, 0x2c, 0x2f, 0x33, 0x34, 0x32, 0x2d, 0x29, 0x26,\n    0x25, 0x21, 0x20, 0x23, 0x26, 0x26, 0x24, 0x23, 0x25, 0x22, 0x1f, 0x1f, 0x22, 0x29, 0x35, 0x3f,\n    0x47, 0x4f, 0x5b, 0x66, 0x6d, 0x72, 0x75, 0x78, 0x71, 0x68, 0x61, 0x5f, 0x5d, 0x55, 0x4f, 0x4d,\n    0x40, 0x2e, 0x23, 0x20, 0x1b, 0x1a, 0x1c, 0x1a, 0x1b, 0x1b, 0x1c, 0x1d, 0x1f, 0x20, 0x22, 0x23,\n    0x23, 0x25, 0x26, 0x23, 0x1e, 0x1b, 0x1b, 0x1c, 0x1a, 0x19, 0x19, 0x19, 0x1b, 0x1c, 0x1c, 0x1c,\n    0x1d, 0x1c, 0x1d, 0x20, 0x23, 0x25, 0x2a, 0x30, 0x2d, 0x2d, 0x2f, 0x32, 0x38, 0x3f, 0x46, 0x4a,\n    0x3a, 0x38, 0x3b, 0x47, 0x54, 0x5a, 0x5a, 0x59, 0x59, 0x55, 0x51, 0x52, 0x54, 0x55, 0x52, 0x4f,\n    0x62, 0x66, 0x5f, 0x55, 0x54, 0x57, 0x5e, 0x69, 0x6b, 0x67, 0x58, 0x43, 0x38, 0x3d, 0x47, 0x4e,\n    0x5c, 0x5a, 0x58, 0x54, 0x4e, 0x48, 0x47, 0x48, 0x47, 0x45, 0x46, 0x4a, 0x4e, 0x52, 0x57, 0x5b,\n    0x65, 0x62, 0x5b, 0x51, 0x4b, 0x49, 0x46, 0x43, 0x48, 0x5f, 0x77, 0x83, 0x87, 0x8a, 0x8b, 0x8b,\n    0x89, 0x87, 0x7e, 0x76, 0x6d, 0x64, 0x6b, 0x7e, 0x83, 0x81, 0x81, 0x82, 0x82, 0x81, 0x83, 0x87,\n    0x8c, 0x8e, 0x90, 0x92, 0x93, 0x94, 0x97, 0x98, 0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9c, 0x9c, 0x9c,\n    0x9c, 0x9d, 0x9e, 0x9f, 0xa0, 0xa0, 0x9f, 0x9f, 0xa0, 0x9e, 0x9d, 0x9b, 0x97, 0x90, 0x87, 0x80,\n    0x79, 0x74, 0x6d, 0x66, 0x62, 0x5f, 0x5d, 0x5b, 0x5d, 0x5e, 0x5f, 0x62, 0x65, 0x67, 0x67, 0x67,\n    0x6b, 0x6b, 0x6d, 0x71, 0x74, 0x74, 0x75, 0x77, 0x77, 0x77, 0x79, 0x7c, 0x80, 0x86, 0x8b, 0x8e,\n    0x8c, 0x8d, 0x8c, 0x8a, 0x8a, 0x8c, 0x8c, 0x8a, 0x87, 0x88, 0x88, 0x87, 0x86, 0x85, 0x86, 0x87,\n    0x89, 0x88, 0x88, 0x88, 0x89, 0x89, 0x88, 0x87, 0x87, 0x85, 0x82, 0x80, 0x7d, 0x79, 0x75, 0x72,\n    0x6f, 0x6c, 0x69, 0x67, 0x66, 0x65, 0x63, 0x62, 0x6a, 0x4b, 0x2e, 0x1f, 0x19, 0x1a, 0x1a, 0x18,\n    0x1b, 0x1a, 0x18, 0x17, 0x16, 0x17, 0x17, 0x18, 0x1f, 0x1f, 0x1d, 0x1c, 0x22, 0x2b, 0x2e, 0x2c,\n    0x23, 0x22, 0x21, 0x21, 0x23, 0x27, 0x2e, 0x33, 0x38, 0x3e, 0x46, 0x4d, 0x52, 0x57, 0x5d, 0x61,\n    0x65, 0x6b, 0x6f, 0x6f, 0x71, 0x75, 0x75, 0x73, 0x6f, 0x6b, 0x6c, 0x6b, 0x65, 0x66, 0x6a, 0x68,\n    0x65, 0x5e, 0x52, 0x46, 0x38, 0x2a, 0x2f, 0x42, 0x46, 0x43, 0x3c, 0x36, 0x38, 0x3a, 0x35, 0x2b,\n    0x2e, 0x35, 0x3b, 0x38, 0x2e, 0x29, 0x31, 0x3d, 0x43, 0x47, 0x3e, 0x3f, 0x61, 0x85, 0x8e, 0x86,\n    0x72, 0x70, 0x77, 0x81, 0x82, 0x79, 0x61, 0x47, 0x46, 0x4f, 0x5c, 0x61, 0x5f, 0x5f, 0x59, 0x4b,\n    0x41, 0x38, 0x2f, 0x2a, 0x29, 0x2a, 0x2d, 0x32, 0x30, 0x2d, 0x22, 0x20, 0x20, 0x26, 0x30, 0x27,\n    0x1a, 0x1c, 0x1f, 0x20, 0x1f, 0x1f, 0x24, 0x2b, 0x28, 0x26, 0x25, 0x29, 0x2d, 0x2f, 0x2b, 0x27,\n    0x2b, 0x30, 0x37, 0x3a, 0x34, 0x29, 0x20, 0x1c, 0x22, 0x26, 0x29, 0x28, 0x26, 0x26, 0x25, 0x23,\n    0x20, 0x22, 0x2b, 0x39, 0x3f, 0x3f, 0x43, 0x4a, 0x52, 0x51, 0x4d, 0x41, 0x37, 0x42, 0x56, 0x5f,\n    0x58, 0x4c, 0x43, 0x36, 0x2e, 0x26, 0x20, 0x2e, 0x36, 0x50, 0x57, 0x51, 0x3d, 0x2e, 0x42, 0x5a,\n    0x60, 0x61, 0x64, 0x66, 0x65, 0x61, 0x5c, 0x59, 0x45, 0x38, 0x35, 0x35, 0x46, 0x5a, 0x5a, 0x59,\n    0x57, 0x4d, 0x42, 0x43, 0x46, 0x3f, 0x3e, 0x48, 0x61, 0x5f, 0x59, 0x53, 0x52, 0x56, 0x57, 0x57,\n    0x51, 0x57, 0x50, 0x43, 0x3d, 0x36, 0x2f, 0x2e, 0x36, 0x37, 0x3b, 0x40, 0x3d, 0x38, 0x37, 0x3b,\n    0x46, 0x45, 0x3f, 0x2d, 0x2a, 0x30, 0x31, 0x3d, 0x44, 0x4d, 0x4b, 0x50, 0x59, 0x5f, 0x60, 0x50,\n    0x1c, 0x1b, 0x18, 0x18, 0x1d, 0x27, 0x2f, 0x32, 0x28, 0x28, 0x28, 0x26, 0x24, 0x25, 0x2c, 0x34,\n    0x33, 0x30, 0x2d, 0x2e, 0x34, 0x37, 0x33, 0x2c, 0x22, 0x21, 0x20, 0x1f, 0x1c, 0x19, 0x19, 0x1b,\n    0x1c, 0x1f, 0x20, 0x22, 0x26, 0x2c, 0x30, 0x30, 0x33, 0x30, 0x2c, 0x29, 0x27, 0x26, 0x25, 0x24,\n    0x21, 0x20, 0x1d, 0x1a, 0x19, 0x1c, 0x20, 0x24, 0x25, 0x21, 0x1e, 0x20, 0x20, 0x1d, 0x19, 0x17,\n    0x18, 0x16, 0x15, 0x16, 0x15, 0x13, 0x16, 0x19, 0x1b, 0x1a, 0x19, 0x19, 0x1a, 0x1b, 0x1d, 0x1e,\n    0x1b, 0x1c, 0x1d, 0x1f, 0x1e, 0x1c, 0x18, 0x15, 0x14, 0x15, 0x19, 0x20, 0x27, 0x2e, 0x34, 0x38,\n    0x3a, 0x38, 0x33, 0x2b, 0x25, 0x22, 0x20, 0x1d, 0x1f, 0x20, 0x23, 0x28, 0x31, 0x37, 0x37, 0x35,\n    0x2e, 0x2d, 0x2b, 0x2a, 0x2a, 0x2b, 0x2c, 0x2b, 0x27, 0x2b, 0x2f, 0x30, 0x2c, 0x28, 0x26, 0x26,\n    0x25, 0x21, 0x1e, 0x1f, 0x23, 0x24, 0x22, 0x21, 0x21, 0x1e, 0x1d, 0x1f, 0x24, 0x2d, 0x3b, 0x46,\n    0x4d, 0x4f, 0x51, 0x53, 0x57, 0x5e, 0x68, 0x6e, 0x68, 0x6e, 0x6d, 0x65, 0x62, 0x64, 0x5d, 0x52,\n    0x3d, 0x2a, 0x1f, 0x1e, 0x19, 0x17, 0x1b, 0x1d, 0x1a, 0x1b, 0x1d, 0x1e, 0x1f, 0x20, 0x22, 0x23,\n    0x22, 0x24, 0x26, 0x24, 0x20, 0x1d, 0x1d, 0x1e, 0x1b, 0x1b, 0x1b, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f,\n    0x1f, 0x1c, 0x1c, 0x20, 0x24, 0x28, 0x2d, 0x31, 0x2d, 0x2d, 0x2e, 0x32, 0x39, 0x41, 0x47, 0x4b,\n    0x42, 0x43, 0x47, 0x4e, 0x52, 0x52, 0x51, 0x52, 0x5b, 0x55, 0x50, 0x51, 0x56, 0x58, 0x56, 0x52,\n    0x5c, 0x62, 0x62, 0x5d, 0x5b, 0x5e, 0x63, 0x68, 0x6e, 0x6b, 0x5f, 0x4d, 0x3f, 0x3e, 0x43, 0x46,\n    0x4e, 0x48, 0x46, 0x4b, 0x4f, 0x4f, 0x51, 0x55, 0x50, 0x4e, 0x4c, 0x4c, 0x4e, 0x55, 0x60, 0x68,\n    0x77, 0x70, 0x60, 0x50, 0x48, 0x48, 0x49, 0x48, 0x45, 0x56, 0x71, 0x83, 0x89, 0x8e, 0x91, 0x91,\n    0x87, 0x86, 0x7e, 0x74, 0x6a, 0x62, 0x6b, 0x80, 0x83, 0x81, 0x81, 0x82, 0x82, 0x81, 0x84, 0x87,\n    0x8c, 0x8e, 0x90, 0x92, 0x93, 0x94, 0x97, 0x98, 0x97, 0x98, 0x99, 0x9a, 0x9b, 0x9b, 0x9b, 0x9b,\n    0x9c, 0x9d, 0x9f, 0xa0, 0xa2, 0xa2, 0xa2, 0xa2, 0xa3, 0xa3, 0xa3, 0xa3, 0xa2, 0x9e, 0x97, 0x93,\n    0x8e, 0x89, 0x7f, 0x75, 0x6c, 0x64, 0x5d, 0x5a, 0x5b, 0x5a, 0x59, 0x59, 0x5b, 0x5d, 0x5e, 0x5e,\n    0x62, 0x60, 0x61, 0x63, 0x65, 0x65, 0x68, 0x6c, 0x6c, 0x71, 0x7a, 0x84, 0x8c, 0x92, 0x96, 0x97,\n    0x92, 0x93, 0x93, 0x90, 0x90, 0x92, 0x92, 0x91, 0x90, 0x90, 0x8f, 0x8e, 0x8c, 0x8b, 0x8a, 0x8a,\n    0x8a, 0x89, 0x89, 0x8a, 0x8b, 0x8b, 0x8a, 0x89, 0x89, 0x87, 0x85, 0x82, 0x7f, 0x7b, 0x77, 0x74,\n    0x71, 0x6f, 0x6b, 0x6a, 0x69, 0x69, 0x68, 0x68, 0x6d, 0x46, 0x2a, 0x22, 0x1f, 0x20, 0x21, 0x19,\n    0x1e, 0x1d, 0x1b, 0x19, 0x19, 0x1b, 0x1e, 0x1f, 0x1b, 0x1b, 0x1a, 0x1c, 0x24, 0x2d, 0x30, 0x2e,\n    0x2b, 0x29, 0x26, 0x23, 0x22, 0x23, 0x26, 0x28, 0x30, 0x37, 0x41, 0x49, 0x4d, 0x52, 0x58, 0x5d,\n    0x62, 0x68, 0x6d, 0x6f, 0x71, 0x73, 0x73, 0x71, 0x6e, 0x6a, 0x6a, 0x68, 0x64, 0x66, 0x68, 0x63,\n    0x5c, 0x54, 0x45, 0x39, 0x31, 0x2c, 0x35, 0x47, 0x46, 0x44, 0x41, 0x3e, 0x41, 0x44, 0x3e, 0x34,\n    0x33, 0x3c, 0x43, 0x40, 0x37, 0x33, 0x3b, 0x45, 0x41, 0x3c, 0x38, 0x42, 0x5d, 0x73, 0x76, 0x71,\n    0x67, 0x5f, 0x64, 0x75, 0x84, 0x88, 0x78, 0x62, 0x50, 0x53, 0x57, 0x57, 0x57, 0x5e, 0x5b, 0x4d,\n    0x3f, 0x34, 0x27, 0x21, 0x21, 0x24, 0x29, 0x2d, 0x2f, 0x27, 0x21, 0x2b, 0x2b, 0x25, 0x29, 0x23,\n    0x1d, 0x1e, 0x20, 0x21, 0x21, 0x25, 0x30, 0x3b, 0x31, 0x27, 0x1f, 0x1e, 0x23, 0x27, 0x27, 0x26,\n    0x21, 0x1f, 0x21, 0x27, 0x2b, 0x29, 0x24, 0x20, 0x23, 0x29, 0x2c, 0x29, 0x28, 0x29, 0x26, 0x21,\n    0x22, 0x21, 0x26, 0x32, 0x3c, 0x42, 0x4a, 0x53, 0x52, 0x4f, 0x4b, 0x40, 0x3a, 0x46, 0x57, 0x5c,\n    0x4d, 0x41, 0x3a, 0x32, 0x2f, 0x2a, 0x25, 0x35, 0x56, 0x60, 0x56, 0x4b, 0x44, 0x42, 0x52, 0x5e,\n    0x53, 0x5b, 0x65, 0x6c, 0x6a, 0x62, 0x5a, 0x57, 0x52, 0x53, 0x58, 0x4b, 0x3e, 0x3e, 0x46, 0x5a,\n    0x65, 0x5f, 0x53, 0x49, 0x3f, 0x37, 0x42, 0x5a, 0x66, 0x64, 0x64, 0x64, 0x63, 0x5f, 0x58, 0x54,\n    0x5c, 0x59, 0x50, 0x46, 0x3b, 0x2d, 0x1f, 0x18, 0x20, 0x2b, 0x3a, 0x42, 0x3f, 0x3b, 0x40, 0x48,\n    0x47, 0x45, 0x3f, 0x2e, 0x2d, 0x34, 0x33, 0x3c, 0x45, 0x4b, 0x48, 0x4f, 0x5a, 0x60, 0x60, 0x4f,\n    0x1c, 0x1c, 0x1a, 0x1a, 0x1e, 0x26, 0x2c, 0x2d, 0x27, 0x24, 0x22, 0x22, 0x20, 0x20, 0x26, 0x2d,\n    0x31, 0x31, 0x2f, 0x2e, 0x2e, 0x2e, 0x2a, 0x24, 0x1d, 0x1e, 0x1f, 0x1e, 0x19, 0x16, 0x19, 0x1f,\n    0x22, 0x27, 0x2b, 0x2b, 0x2a, 0x2c, 0x2e, 0x2e, 0x29, 0x25, 0x20, 0x1e, 0x1e, 0x21, 0x24, 0x25,\n    0x2f, 0x2f, 0x2c, 0x24, 0x1c, 0x1a, 0x1f, 0x24, 0x24, 0x20, 0x1e, 0x20, 0x22, 0x1f, 0x1b, 0x19,\n    0x17, 0x15, 0x15, 0x16, 0x15, 0x13, 0x15, 0x19, 0x1b, 0x1b, 0x1b, 0x1b, 0x1b, 0x1c, 0x1d, 0x1e,\n    0x1b, 0x1a, 0x19, 0x19, 0x18, 0x17, 0x15, 0x14, 0x12, 0x15, 0x1a, 0x1f, 0x26, 0x2c, 0x31, 0x33,\n    0x3a, 0x39, 0x35, 0x2e, 0x29, 0x26, 0x22, 0x1f, 0x1c, 0x1e, 0x1f, 0x23, 0x2c, 0x36, 0x3a, 0x39,\n    0x34, 0x30, 0x2b, 0x28, 0x26, 0x26, 0x27, 0x28, 0x28, 0x2b, 0x2e, 0x2d, 0x2a, 0x27, 0x28, 0x2a,\n    0x28, 0x27, 0x25, 0x24, 0x26, 0x27, 0x24, 0x20, 0x1d, 0x1d, 0x1f, 0x25, 0x2c, 0x36, 0x44, 0x50,\n    0x55, 0x57, 0x58, 0x56, 0x52, 0x4f, 0x4e, 0x4e, 0x52, 0x5a, 0x5d, 0x58, 0x57, 0x58, 0x51, 0x45,\n    0x34, 0x24, 0x1d, 0x1f, 0x1b, 0x18, 0x1d, 0x20, 0x1a, 0x1b, 0x1d, 0x1e, 0x1d, 0x1e, 0x1f, 0x21,\n    0x20, 0x22, 0x24, 0x25, 0x23, 0x22, 0x21, 0x21, 0x1b, 0x1b, 0x1a, 0x1a, 0x1b, 0x1c, 0x1e, 0x1f,\n    0x20, 0x1c, 0x1b, 0x1f, 0x24, 0x28, 0x2d, 0x31, 0x31, 0x2f, 0x2e, 0x30, 0x34, 0x3a, 0x3d, 0x3f,\n    0x40, 0x47, 0x50, 0x57, 0x58, 0x57, 0x5b, 0x61, 0x5a, 0x55, 0x51, 0x52, 0x56, 0x58, 0x55, 0x51,\n    0x57, 0x5b, 0x60, 0x60, 0x5d, 0x60, 0x64, 0x65, 0x65, 0x60, 0x5b, 0x57, 0x51, 0x4d, 0x4e, 0x52,\n    0x42, 0x3b, 0x3b, 0x47, 0x53, 0x54, 0x50, 0x4e, 0x4a, 0x50, 0x55, 0x56, 0x57, 0x5a, 0x61, 0x66,\n    0x63, 0x60, 0x55, 0x48, 0x43, 0x48, 0x4b, 0x49, 0x49, 0x52, 0x6c, 0x83, 0x8a, 0x90, 0x94, 0x91,\n    0x8b, 0x88, 0x7f, 0x73, 0x68, 0x60, 0x6c, 0x83, 0x81, 0x80, 0x80, 0x82, 0x82, 0x81, 0x84, 0x88,\n    0x89, 0x8b, 0x8d, 0x8f, 0x90, 0x92, 0x94, 0x95, 0x97, 0x98, 0x98, 0x99, 0x9a, 0x9b, 0x9b, 0x9b,\n    0x9d, 0x9e, 0xa0, 0xa2, 0xa4, 0xa5, 0xa6, 0xa6, 0xa7, 0xa7, 0xa7, 0xa8, 0xa8, 0xa7, 0xa5, 0xa3,\n    0xa1, 0x9d, 0x96, 0x8d, 0x84, 0x7b, 0x72, 0x6d, 0x64, 0x60, 0x5a, 0x55, 0x54, 0x54, 0x54, 0x54,\n    0x58, 0x57, 0x57, 0x5a, 0x5c, 0x5f, 0x66, 0x6c, 0x74, 0x7b, 0x85, 0x90, 0x98, 0x9b, 0x9b, 0x9a,\n    0x99, 0x9a, 0x9a, 0x98, 0x97, 0x99, 0x9a, 0x98, 0x97, 0x96, 0x95, 0x93, 0x92, 0x90, 0x8e, 0x8d,\n    0x8b, 0x8a, 0x8a, 0x8b, 0x8c, 0x8d, 0x8c, 0x8b, 0x8b, 0x89, 0x87, 0x84, 0x81, 0x7d, 0x79, 0x76,\n    0x76, 0x74, 0x71, 0x6f, 0x6f, 0x70, 0x6f, 0x6f, 0x64, 0x46, 0x35, 0x35, 0x33, 0x33, 0x31, 0x29,\n    0x25, 0x23, 0x1f, 0x1d, 0x1b, 0x1b, 0x1c, 0x1d, 0x22, 0x22, 0x23, 0x26, 0x2d, 0x33, 0x35, 0x34,\n    0x34, 0x33, 0x31, 0x2f, 0x2d, 0x2a, 0x28, 0x27, 0x29, 0x2e, 0x35, 0x3c, 0x42, 0x4a, 0x53, 0x59,\n    0x5d, 0x63, 0x69, 0x6d, 0x70, 0x72, 0x72, 0x71, 0x70, 0x69, 0x66, 0x65, 0x64, 0x68, 0x66, 0x5b,\n    0x4f, 0x4c, 0x3e, 0x31, 0x31, 0x35, 0x3b, 0x44, 0x49, 0x4a, 0x48, 0x45, 0x45, 0x46, 0x41, 0x3a,\n    0x3f, 0x43, 0x45, 0x44, 0x40, 0x3f, 0x41, 0x43, 0x43, 0x3e, 0x47, 0x55, 0x53, 0x4d, 0x59, 0x6d,\n    0x78, 0x6a, 0x5f, 0x59, 0x57, 0x5f, 0x6a, 0x6d, 0x68, 0x61, 0x5b, 0x55, 0x52, 0x52, 0x47, 0x31,\n    0x39, 0x2f, 0x28, 0x28, 0x2c, 0x2d, 0x2d, 0x2c, 0x2f, 0x36, 0x3d, 0x44, 0x37, 0x27, 0x26, 0x1e,\n    0x1d, 0x1d, 0x1d, 0x1d, 0x1d, 0x24, 0x32, 0x40, 0x3b, 0x2d, 0x1f, 0x1b, 0x1d, 0x1f, 0x20, 0x21,\n    0x1c, 0x1f, 0x22, 0x24, 0x21, 0x1f, 0x22, 0x28, 0x27, 0x2b, 0x2b, 0x28, 0x28, 0x2b, 0x29, 0x23,\n    0x26, 0x21, 0x21, 0x2c, 0x3a, 0x45, 0x50, 0x58, 0x52, 0x4d, 0x49, 0x43, 0x41, 0x4c, 0x56, 0x55,\n    0x46, 0x3d, 0x3c, 0x37, 0x33, 0x2c, 0x2a, 0x3d, 0x60, 0x66, 0x58, 0x50, 0x4e, 0x48, 0x4a, 0x47,\n    0x51, 0x58, 0x64, 0x69, 0x64, 0x5b, 0x58, 0x5b, 0x66, 0x66, 0x6c, 0x5e, 0x4d, 0x49, 0x51, 0x66,\n    0x69, 0x68, 0x59, 0x43, 0x34, 0x32, 0x42, 0x59, 0x62, 0x62, 0x62, 0x63, 0x63, 0x63, 0x65, 0x67,\n    0x5d, 0x50, 0x4c, 0x50, 0x4a, 0x37, 0x24, 0x1b, 0x19, 0x2b, 0x42, 0x4c, 0x47, 0x40, 0x41, 0x47,\n    0x41, 0x43, 0x44, 0x3a, 0x38, 0x39, 0x32, 0x3a, 0x4b, 0x52, 0x4e, 0x55, 0x5f, 0x64, 0x64, 0x56,\n    0x1e, 0x1d, 0x19, 0x17, 0x1b, 0x23, 0x2a, 0x2c, 0x29, 0x25, 0x22, 0x22, 0x1f, 0x1c, 0x1f, 0x25,\n    0x2a, 0x2b, 0x2a, 0x25, 0x21, 0x1e, 0x1b, 0x18, 0x17, 0x17, 0x18, 0x17, 0x15, 0x15, 0x1d, 0x26,\n    0x29, 0x2f, 0x32, 0x2f, 0x2a, 0x28, 0x28, 0x27, 0x20, 0x1c, 0x18, 0x16, 0x18, 0x1c, 0x20, 0x22,\n    0x30, 0x34, 0x35, 0x30, 0x26, 0x1e, 0x1c, 0x1e, 0x20, 0x1d, 0x1c, 0x1f, 0x20, 0x1d, 0x1b, 0x1a,\n    0x17, 0x15, 0x15, 0x16, 0x15, 0x14, 0x15, 0x19, 0x1d, 0x1d, 0x1d, 0x1d, 0x1d, 0x1c, 0x1b, 0x1a,\n    0x1b, 0x1a, 0x18, 0x16, 0x13, 0x12, 0x11, 0x11, 0x14, 0x18, 0x1c, 0x20, 0x25, 0x2b, 0x2e, 0x2e,\n    0x32, 0x34, 0x32, 0x2c, 0x27, 0x24, 0x22, 0x20, 0x1b, 0x1f, 0x20, 0x21, 0x28, 0x32, 0x37, 0x36,\n    0x39, 0x33, 0x2d, 0x28, 0x25, 0x24, 0x27, 0x2b, 0x2b, 0x2d, 0x2e, 0x2c, 0x29, 0x27, 0x29, 0x2b,\n    0x27, 0x29, 0x2a, 0x29, 0x29, 0x28, 0x24, 0x20, 0x1a, 0x1a, 0x1e, 0x24, 0x2c, 0x36, 0x43, 0x4e,\n    0x4f, 0x55, 0x5b, 0x60, 0x61, 0x61, 0x61, 0x62, 0x6b, 0x64, 0x5e, 0x5c, 0x55, 0x47, 0x39, 0x32,\n    0x2d, 0x22, 0x20, 0x21, 0x1d, 0x1c, 0x20, 0x21, 0x1c, 0x1e, 0x1e, 0x1d, 0x1b, 0x1a, 0x1c, 0x1e,\n    0x1d, 0x1d, 0x1f, 0x21, 0x23, 0x22, 0x20, 0x1e, 0x1a, 0x1b, 0x1a, 0x1a, 0x19, 0x1a, 0x1d, 0x1f,\n    0x21, 0x1d, 0x1b, 0x1e, 0x22, 0x26, 0x2c, 0x31, 0x31, 0x2f, 0x2e, 0x30, 0x36, 0x3c, 0x40, 0x41,\n    0x42, 0x4a, 0x54, 0x58, 0x55, 0x53, 0x58, 0x60, 0x5e, 0x5a, 0x57, 0x57, 0x5b, 0x5c, 0x59, 0x56,\n    0x5c, 0x5b, 0x5e, 0x5d, 0x5a, 0x5e, 0x63, 0x60, 0x4d, 0x49, 0x4a, 0x50, 0x54, 0x54, 0x56, 0x5b,\n    0x52, 0x50, 0x52, 0x5b, 0x60, 0x5b, 0x4e, 0x44, 0x43, 0x49, 0x4d, 0x4e, 0x4f, 0x53, 0x59, 0x5d,\n    0x67, 0x6d, 0x6d, 0x67, 0x64, 0x68, 0x68, 0x63, 0x4e, 0x50, 0x69, 0x82, 0x88, 0x8d, 0x93, 0x8e,\n    0x8e, 0x8a, 0x7e, 0x70, 0x63, 0x5c, 0x67, 0x7e, 0x81, 0x80, 0x80, 0x82, 0x82, 0x82, 0x84, 0x88,\n    0x8a, 0x8b, 0x8d, 0x8f, 0x90, 0x92, 0x94, 0x95, 0x98, 0x98, 0x99, 0x99, 0x9a, 0x9b, 0x9c, 0x9c,\n    0x9e, 0xa0, 0xa2, 0xa4, 0xa6, 0xa7, 0xa7, 0xa7, 0xaa, 0xaa, 0xa9, 0xa9, 0xa9, 0xa9, 0xaa, 0xaa,\n    0xa9, 0xa7, 0xa4, 0xa1, 0x9c, 0x96, 0x90, 0x8b, 0x7f, 0x79, 0x70, 0x68, 0x63, 0x61, 0x5f, 0x5f,\n    0x60, 0x60, 0x62, 0x65, 0x6a, 0x6f, 0x79, 0x81, 0x8c, 0x8f, 0x94, 0x98, 0x9b, 0x9c, 0x9c, 0x9b,\n    0x9d, 0x9e, 0x9e, 0x9c, 0x9b, 0x9d, 0x9e, 0x9c, 0x9d, 0x9c, 0x9a, 0x99, 0x98, 0x96, 0x93, 0x91,\n    0x8e, 0x8e, 0x8d, 0x8e, 0x8f, 0x8f, 0x8e, 0x8d, 0x8d, 0x8b, 0x89, 0x87, 0x84, 0x81, 0x7d, 0x7a,\n    0x79, 0x77, 0x75, 0x74, 0x74, 0x74, 0x74, 0x73, 0x6a, 0x5e, 0x5a, 0x5e, 0x5e, 0x5c, 0x59, 0x54,\n    0x4a, 0x47, 0x43, 0x3e, 0x3a, 0x37, 0x35, 0x35, 0x3d, 0x3e, 0x3f, 0x42, 0x46, 0x49, 0x4a, 0x4a,\n    0x4f, 0x4f, 0x50, 0x50, 0x50, 0x4d, 0x49, 0x46, 0x4a, 0x48, 0x45, 0x41, 0x40, 0x43, 0x47, 0x4b,\n    0x56, 0x5c, 0x63, 0x6a, 0x6f, 0x71, 0x72, 0x73, 0x71, 0x6a, 0x65, 0x63, 0x64, 0x68, 0x64, 0x55,\n    0x45, 0x45, 0x38, 0x2e, 0x32, 0x39, 0x3d, 0x41, 0x4f, 0x51, 0x4f, 0x4a, 0x49, 0x4d, 0x4d, 0x4a,\n    0x51, 0x51, 0x50, 0x4e, 0x4d, 0x4d, 0x4a, 0x46, 0x44, 0x3c, 0x49, 0x5c, 0x56, 0x4c, 0x5b, 0x72,\n    0x74, 0x67, 0x5f, 0x5b, 0x56, 0x55, 0x56, 0x53, 0x55, 0x50, 0x53, 0x59, 0x5a, 0x54, 0x40, 0x28,\n    0x23, 0x21, 0x24, 0x2d, 0x34, 0x35, 0x32, 0x2f, 0x32, 0x50, 0x5f, 0x57, 0x3e, 0x33, 0x36, 0x2a,\n    0x1f, 0x1d, 0x1c, 0x1b, 0x1b, 0x21, 0x2e, 0x3a, 0x33, 0x26, 0x1b, 0x1b, 0x1f, 0x20, 0x20, 0x21,\n    0x22, 0x21, 0x22, 0x24, 0x24, 0x23, 0x23, 0x25, 0x2b, 0x2a, 0x27, 0x24, 0x26, 0x2a, 0x2b, 0x2a,\n    0x30, 0x29, 0x24, 0x29, 0x33, 0x3e, 0x48, 0x4f, 0x53, 0x4c, 0x47, 0x43, 0x44, 0x4f, 0x56, 0x50,\n    0x49, 0x43, 0x46, 0x42, 0x3b, 0x30, 0x2c, 0x42, 0x4f, 0x57, 0x4e, 0x49, 0x47, 0x3f, 0x3f, 0x3e,\n    0x4d, 0x53, 0x5c, 0x60, 0x5a, 0x55, 0x5c, 0x68, 0x6a, 0x6b, 0x70, 0x63, 0x53, 0x4f, 0x51, 0x60,\n    0x68, 0x66, 0x54, 0x3c, 0x32, 0x34, 0x3c, 0x46, 0x59, 0x5f, 0x63, 0x62, 0x63, 0x6a, 0x72, 0x78,\n    0x69, 0x51, 0x47, 0x4d, 0x47, 0x38, 0x2d, 0x28, 0x2a, 0x38, 0x47, 0x4b, 0x47, 0x45, 0x4c, 0x55,\n    0x53, 0x4c, 0x48, 0x3d, 0x39, 0x37, 0x35, 0x44, 0x58, 0x60, 0x5e, 0x61, 0x64, 0x64, 0x66, 0x5c,\n    0x22, 0x1f, 0x1a, 0x16, 0x18, 0x1f, 0x25, 0x27, 0x29, 0x26, 0x25, 0x25, 0x21, 0x1b, 0x1c, 0x23,\n    0x28, 0x28, 0x24, 0x1d, 0x18, 0x17, 0x16, 0x14, 0x18, 0x16, 0x16, 0x18, 0x1b, 0x1d, 0x22, 0x27,\n    0x29, 0x2b, 0x2b, 0x27, 0x23, 0x22, 0x21, 0x20, 0x1d, 0x1b, 0x18, 0x17, 0x18, 0x19, 0x1b, 0x1c,\n    0x22, 0x28, 0x2f, 0x31, 0x2d, 0x26, 0x20, 0x1d, 0x1d, 0x1b, 0x1b, 0x1e, 0x1d, 0x1b, 0x1a, 0x1a,\n    0x18, 0x16, 0x16, 0x17, 0x16, 0x14, 0x15, 0x18, 0x1d, 0x1d, 0x1e, 0x1f, 0x1e, 0x1c, 0x1a, 0x18,\n    0x19, 0x19, 0x19, 0x17, 0x13, 0x11, 0x11, 0x11, 0x17, 0x1a, 0x1d, 0x1f, 0x25, 0x2c, 0x31, 0x31,\n    0x2e, 0x31, 0x2f, 0x28, 0x22, 0x20, 0x21, 0x21, 0x1f, 0x26, 0x29, 0x27, 0x29, 0x2e, 0x30, 0x2d,\n    0x38, 0x33, 0x2e, 0x2b, 0x27, 0x26, 0x2a, 0x31, 0x30, 0x31, 0x31, 0x2f, 0x2b, 0x28, 0x28, 0x28,\n    0x25, 0x2a, 0x2e, 0x2c, 0x2a, 0x28, 0x25, 0x21, 0x1b, 0x1a, 0x1d, 0x22, 0x29, 0x32, 0x3e, 0x48,\n    0x55, 0x56, 0x58, 0x59, 0x5c, 0x62, 0x69, 0x6f, 0x6e, 0x64, 0x5e, 0x5e, 0x5b, 0x4e, 0x3e, 0x34,\n    0x2a, 0x25, 0x25, 0x24, 0x20, 0x21, 0x25, 0x22, 0x21, 0x22, 0x21, 0x1e, 0x1a, 0x18, 0x1a, 0x1d,\n    0x1d, 0x1c, 0x1c, 0x20, 0x24, 0x24, 0x20, 0x1b, 0x1d, 0x1d, 0x1d, 0x1c, 0x1a, 0x1b, 0x1e, 0x20,\n    0x23, 0x20, 0x1e, 0x1f, 0x22, 0x26, 0x2c, 0x32, 0x30, 0x2e, 0x2f, 0x34, 0x3d, 0x45, 0x4b, 0x4d,\n    0x52, 0x57, 0x5c, 0x5e, 0x59, 0x54, 0x56, 0x5c, 0x62, 0x5f, 0x5c, 0x5c, 0x5d, 0x5f, 0x5e, 0x5d,\n    0x62, 0x5c, 0x5d, 0x5e, 0x59, 0x5e, 0x62, 0x5b, 0x56, 0x58, 0x59, 0x59, 0x59, 0x59, 0x56, 0x53,\n    0x63, 0x68, 0x6c, 0x6a, 0x64, 0x5b, 0x51, 0x4a, 0x50, 0x4f, 0x4b, 0x49, 0x4d, 0x57, 0x60, 0x63,\n    0x69, 0x6f, 0x6b, 0x5d, 0x52, 0x4f, 0x4c, 0x46, 0x41, 0x43, 0x60, 0x7e, 0x85, 0x8d, 0x9a, 0x98,\n    0x91, 0x8e, 0x84, 0x77, 0x69, 0x5d, 0x62, 0x74, 0x84, 0x82, 0x82, 0x83, 0x83, 0x82, 0x84, 0x88,\n    0x8a, 0x8c, 0x8e, 0x90, 0x91, 0x92, 0x95, 0x96, 0x98, 0x98, 0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9c,\n    0x9f, 0xa1, 0xa2, 0xa4, 0xa6, 0xa7, 0xa7, 0xa7, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xab, 0xac, 0xad,\n    0xac, 0xab, 0xaa, 0xaa, 0xa9, 0xa8, 0xa5, 0xa2, 0x9c, 0x97, 0x90, 0x8a, 0x85, 0x82, 0x80, 0x7f,\n    0x7c, 0x7d, 0x80, 0x83, 0x86, 0x8a, 0x91, 0x99, 0x9e, 0x9e, 0x9e, 0x9e, 0x9f, 0xa0, 0xa1, 0xa1,\n    0xa1, 0xa2, 0xa2, 0xa0, 0x9f, 0xa1, 0xa1, 0xa0, 0xa2, 0xa0, 0x9f, 0x9e, 0x9e, 0x9c, 0x99, 0x97,\n    0x94, 0x93, 0x92, 0x92, 0x92, 0x91, 0x90, 0x8e, 0x90, 0x8f, 0x8d, 0x8b, 0x89, 0x86, 0x82, 0x7f,\n    0x7c, 0x7b, 0x79, 0x79, 0x79, 0x79, 0x77, 0x76, 0x78, 0x7c, 0x7d, 0x7e, 0x80, 0x7e, 0x7a, 0x7b,\n    0x79, 0x78, 0x76, 0x73, 0x6f, 0x6c, 0x69, 0x67, 0x60, 0x61, 0x63, 0x65, 0x66, 0x68, 0x6c, 0x6f,\n    0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x79, 0x77, 0x7c, 0x77, 0x6f, 0x67, 0x5f, 0x57, 0x50, 0x4b,\n    0x55, 0x5a, 0x61, 0x69, 0x6e, 0x71, 0x73, 0x74, 0x71, 0x6b, 0x67, 0x63, 0x62, 0x66, 0x61, 0x53,\n    0x46, 0x42, 0x37, 0x31, 0x36, 0x3d, 0x45, 0x50, 0x5e, 0x5f, 0x5b, 0x56, 0x56, 0x5c, 0x5d, 0x5b,\n    0x59, 0x5a, 0x59, 0x55, 0x54, 0x53, 0x4f, 0x4a, 0x4f, 0x4b, 0x5a, 0x6d, 0x70, 0x72, 0x79, 0x79,\n    0x61, 0x58, 0x5c, 0x6b, 0x72, 0x6e, 0x5d, 0x49, 0x43, 0x42, 0x4d, 0x5b, 0x5a, 0x50, 0x42, 0x34,\n    0x21, 0x22, 0x27, 0x2e, 0x31, 0x31, 0x30, 0x31, 0x35, 0x4e, 0x55, 0x49, 0x34, 0x32, 0x3b, 0x2f,\n    0x25, 0x23, 0x21, 0x21, 0x22, 0x25, 0x2e, 0x36, 0x2a, 0x1f, 0x18, 0x1c, 0x22, 0x23, 0x25, 0x28,\n    0x28, 0x21, 0x1d, 0x21, 0x27, 0x29, 0x26, 0x23, 0x2d, 0x28, 0x23, 0x21, 0x21, 0x24, 0x2b, 0x33,\n    0x36, 0x2e, 0x26, 0x23, 0x28, 0x35, 0x47, 0x53, 0x58, 0x4d, 0x43, 0x3f, 0x42, 0x50, 0x56, 0x4f,\n    0x4d, 0x4a, 0x4f, 0x4e, 0x45, 0x37, 0x31, 0x46, 0x5e, 0x5a, 0x43, 0x39, 0x3a, 0x3e, 0x4f, 0x5b,\n    0x4b, 0x52, 0x5c, 0x60, 0x58, 0x53, 0x5d, 0x6c, 0x6d, 0x6f, 0x74, 0x65, 0x57, 0x56, 0x56, 0x61,\n    0x68, 0x64, 0x51, 0x3e, 0x38, 0x38, 0x39, 0x3d, 0x4f, 0x64, 0x78, 0x7f, 0x7f, 0x7d, 0x76, 0x6e,\n    0x6e, 0x56, 0x4c, 0x4d, 0x45, 0x3e, 0x3c, 0x38, 0x31, 0x3a, 0x41, 0x42, 0x42, 0x47, 0x53, 0x5d,\n    0x57, 0x47, 0x3d, 0x36, 0x37, 0x37, 0x3b, 0x52, 0x62, 0x6c, 0x69, 0x65, 0x5c, 0x54, 0x55, 0x4f,\n    0x25, 0x22, 0x1d, 0x18, 0x18, 0x1d, 0x20, 0x20, 0x24, 0x23, 0x24, 0x26, 0x20, 0x18, 0x1b, 0x23,\n    0x2b, 0x28, 0x22, 0x1b, 0x18, 0x19, 0x19, 0x18, 0x19, 0x17, 0x18, 0x1e, 0x23, 0x24, 0x22, 0x21,\n    0x20, 0x20, 0x1d, 0x1a, 0x1a, 0x1c, 0x1c, 0x1a, 0x18, 0x17, 0x17, 0x18, 0x1a, 0x1b, 0x1b, 0x1b,\n    0x16, 0x1c, 0x24, 0x2d, 0x31, 0x2f, 0x29, 0x23, 0x1b, 0x1a, 0x1c, 0x1e, 0x1d, 0x1a, 0x1a, 0x1c,\n    0x19, 0x18, 0x17, 0x18, 0x16, 0x13, 0x14, 0x17, 0x19, 0x1b, 0x1d, 0x1f, 0x1f, 0x1d, 0x1b, 0x19,\n    0x14, 0x17, 0x1a, 0x19, 0x16, 0x13, 0x14, 0x15, 0x14, 0x18, 0x1a, 0x1c, 0x23, 0x2d, 0x34, 0x35,\n    0x33, 0x35, 0x32, 0x29, 0x21, 0x1f, 0x22, 0x24, 0x25, 0x2e, 0x33, 0x30, 0x2d, 0x2e, 0x2b, 0x26,\n    0x32, 0x2f, 0x2d, 0x2b, 0x28, 0x26, 0x2c, 0x34, 0x35, 0x36, 0x36, 0x34, 0x30, 0x2c, 0x29, 0x27,\n    0x26, 0x2d, 0x32, 0x30, 0x2c, 0x2b, 0x29, 0x26, 0x20, 0x1f, 0x20, 0x24, 0x2a, 0x32, 0x3f, 0x4a,\n    0x52, 0x51, 0x4f, 0x4c, 0x4c, 0x50, 0x58, 0x5e, 0x60, 0x62, 0x60, 0x5c, 0x5f, 0x5e, 0x4d, 0x36,\n    0x28, 0x26, 0x27, 0x25, 0x21, 0x25, 0x29, 0x25, 0x25, 0x25, 0x23, 0x1f, 0x1a, 0x18, 0x1a, 0x1c,\n    0x23, 0x21, 0x20, 0x24, 0x2a, 0x2a, 0x24, 0x1d, 0x20, 0x21, 0x21, 0x1f, 0x1d, 0x1e, 0x21, 0x23,\n    0x27, 0x24, 0x22, 0x22, 0x24, 0x27, 0x2e, 0x34, 0x32, 0x30, 0x30, 0x36, 0x3f, 0x48, 0x4d, 0x4f,\n    0x53, 0x55, 0x59, 0x5c, 0x5b, 0x59, 0x5a, 0x5e, 0x61, 0x5e, 0x5b, 0x5a, 0x5a, 0x5c, 0x5e, 0x5f,\n    0x62, 0x5b, 0x5e, 0x61, 0x5c, 0x61, 0x62, 0x57, 0x57, 0x63, 0x69, 0x64, 0x62, 0x65, 0x60, 0x56,\n    0x5e, 0x69, 0x6d, 0x63, 0x56, 0x51, 0x52, 0x52, 0x55, 0x51, 0x4c, 0x4a, 0x52, 0x5e, 0x62, 0x60,\n    0x6a, 0x6d, 0x63, 0x4f, 0x43, 0x45, 0x49, 0x49, 0x45, 0x45, 0x62, 0x7e, 0x7e, 0x84, 0x91, 0x92,\n    0x94, 0x95, 0x90, 0x86, 0x78, 0x65, 0x62, 0x6e, 0x86, 0x84, 0x84, 0x84, 0x83, 0x82, 0x84, 0x88,\n    0x88, 0x8a, 0x8c, 0x8e, 0x8f, 0x90, 0x92, 0x94, 0x98, 0x98, 0x98, 0x99, 0x99, 0x9b, 0x9b, 0x9c,\n    0xa0, 0xa1, 0xa3, 0xa4, 0xa6, 0xa6, 0xa6, 0xa6, 0xa7, 0xa8, 0xaa, 0xab, 0xac, 0xad, 0xae, 0xb0,\n    0xb0, 0xaf, 0xae, 0xad, 0xae, 0xad, 0xac, 0xab, 0xa9, 0xa7, 0xa3, 0xa0, 0x9e, 0x9c, 0x99, 0x98,\n    0x95, 0x96, 0x99, 0x9b, 0x9a, 0x99, 0x9d, 0xa3, 0xa3, 0xa3, 0xa3, 0xa3, 0xa5, 0xa7, 0xa8, 0xa9,\n    0xa7, 0xa8, 0xa8, 0xa5, 0xa5, 0xa7, 0xa7, 0xa6, 0xa5, 0xa4, 0xa2, 0xa2, 0xa2, 0xa0, 0x9d, 0x9b,\n    0x99, 0x98, 0x96, 0x96, 0x95, 0x93, 0x91, 0x8f, 0x93, 0x91, 0x90, 0x8e, 0x8c, 0x89, 0x86, 0x83,\n    0x81, 0x80, 0x7f, 0x7f, 0x7f, 0x7f, 0x7d, 0x7b, 0x7a, 0x86, 0x86, 0x82, 0x86, 0x83, 0x7e, 0x83,\n    0x81, 0x82, 0x83, 0x83, 0x82, 0x81, 0x7f, 0x7e, 0x83, 0x84, 0x87, 0x89, 0x8a, 0x8d, 0x94, 0x9a,\n    0x97, 0x95, 0x93, 0x93, 0x95, 0x96, 0x96, 0x95, 0x91, 0x90, 0x8e, 0x8b, 0x85, 0x7a, 0x6b, 0x61,\n    0x59, 0x5c, 0x63, 0x6b, 0x6f, 0x70, 0x72, 0x74, 0x70, 0x6c, 0x69, 0x64, 0x61, 0x64, 0x60, 0x52,\n    0x4b, 0x42, 0x38, 0x37, 0x3c, 0x41, 0x4e, 0x63, 0x6f, 0x6f, 0x6a, 0x64, 0x63, 0x65, 0x63, 0x5c,\n    0x60, 0x65, 0x66, 0x62, 0x5e, 0x5d, 0x5b, 0x58, 0x4e, 0x5c, 0x72, 0x7a, 0x78, 0x7f, 0x80, 0x6f,\n    0x63, 0x5a, 0x5c, 0x68, 0x6d, 0x6d, 0x67, 0x5d, 0x57, 0x52, 0x57, 0x5a, 0x4d, 0x3e, 0x37, 0x33,\n    0x3b, 0x39, 0x37, 0x33, 0x2d, 0x29, 0x2c, 0x32, 0x47, 0x46, 0x3e, 0x39, 0x30, 0x2e, 0x36, 0x2f,\n    0x28, 0x27, 0x27, 0x28, 0x2a, 0x2c, 0x31, 0x36, 0x32, 0x26, 0x1e, 0x20, 0x24, 0x25, 0x27, 0x2c,\n    0x29, 0x28, 0x26, 0x24, 0x21, 0x20, 0x25, 0x2c, 0x2d, 0x26, 0x21, 0x1f, 0x1c, 0x1e, 0x2b, 0x39,\n    0x33, 0x2c, 0x22, 0x1d, 0x22, 0x37, 0x53, 0x69, 0x5c, 0x4d, 0x40, 0x3a, 0x3f, 0x4f, 0x56, 0x50,\n    0x4e, 0x4b, 0x53, 0x54, 0x4d, 0x3e, 0x38, 0x4c, 0x5c, 0x55, 0x42, 0x42, 0x48, 0x46, 0x4b, 0x4e,\n    0x51, 0x5a, 0x66, 0x68, 0x5c, 0x50, 0x54, 0x61, 0x6d, 0x68, 0x66, 0x5c, 0x5d, 0x67, 0x66, 0x69,\n    0x64, 0x5f, 0x50, 0x41, 0x3b, 0x38, 0x3b, 0x44, 0x5a, 0x6b, 0x77, 0x74, 0x72, 0x74, 0x71, 0x6a,\n    0x4a, 0x42, 0x48, 0x4f, 0x4a, 0x47, 0x45, 0x3a, 0x32, 0x3d, 0x49, 0x4e, 0x4f, 0x51, 0x55, 0x57,\n    0x3a, 0x2c, 0x2c, 0x34, 0x3e, 0x3e, 0x3e, 0x54, 0x63, 0x6e, 0x69, 0x5f, 0x4c, 0x3d, 0x3d, 0x38,\n    0x30, 0x26, 0x1f, 0x1e, 0x1c, 0x19, 0x1c, 0x22, 0x22, 0x1f, 0x20, 0x22, 0x21, 0x1b, 0x19, 0x1a,\n    0x25, 0x25, 0x23, 0x1e, 0x18, 0x16, 0x17, 0x1a, 0x22, 0x20, 0x1f, 0x20, 0x20, 0x1e, 0x1d, 0x1f,\n    0x1d, 0x1a, 0x17, 0x18, 0x1c, 0x1e, 0x1e, 0x1c, 0x1d, 0x1c, 0x1b, 0x1b, 0x1c, 0x1d, 0x1d, 0x1c,\n    0x1c, 0x19, 0x19, 0x1d, 0x23, 0x28, 0x27, 0x24, 0x1f, 0x1f, 0x20, 0x20, 0x1f, 0x1f, 0x1e, 0x1e,\n    0x1f, 0x1c, 0x1a, 0x1a, 0x1a, 0x1a, 0x19, 0x17, 0x17, 0x1a, 0x1c, 0x1d, 0x1e, 0x1e, 0x1a, 0x14,\n    0x14, 0x14, 0x14, 0x15, 0x16, 0x16, 0x16, 0x15, 0x17, 0x18, 0x1a, 0x1c, 0x1f, 0x24, 0x2b, 0x30,\n    0x37, 0x3a, 0x37, 0x2b, 0x23, 0x24, 0x25, 0x23, 0x2a, 0x30, 0x37, 0x3c, 0x3b, 0x36, 0x2e, 0x29,\n    0x2c, 0x2d, 0x2d, 0x2a, 0x26, 0x25, 0x26, 0x29, 0x2d, 0x2d, 0x2f, 0x33, 0x36, 0x36, 0x31, 0x2d,\n    0x2e, 0x2e, 0x2c, 0x2a, 0x2b, 0x2e, 0x2e, 0x2b, 0x21, 0x20, 0x1f, 0x21, 0x25, 0x31, 0x44, 0x54,\n    0x63, 0x5e, 0x57, 0x52, 0x4f, 0x52, 0x59, 0x60, 0x59, 0x55, 0x54, 0x59, 0x5c, 0x54, 0x44, 0x38,\n    0x25, 0x28, 0x28, 0x25, 0x25, 0x28, 0x27, 0x24, 0x22, 0x22, 0x23, 0x23, 0x22, 0x21, 0x1f, 0x1e,\n    0x1b, 0x1e, 0x24, 0x2a, 0x2d, 0x2b, 0x24, 0x1f, 0x1e, 0x26, 0x27, 0x20, 0x1c, 0x22, 0x2b, 0x2f,\n    0x2a, 0x27, 0x23, 0x20, 0x21, 0x27, 0x2f, 0x34, 0x32, 0x36, 0x39, 0x3f, 0x4a, 0x56, 0x55, 0x4d,\n    0x53, 0x59, 0x60, 0x61, 0x5c, 0x58, 0x58, 0x59, 0x59, 0x58, 0x5a, 0x5d, 0x61, 0x62, 0x5f, 0x5c,\n    0x5e, 0x60, 0x63, 0x63, 0x61, 0x60, 0x62, 0x65, 0x64, 0x61, 0x61, 0x65, 0x67, 0x64, 0x61, 0x62,\n    0x62, 0x61, 0x5e, 0x57, 0x50, 0x4a, 0x44, 0x3f, 0x3a, 0x38, 0x3c, 0x46, 0x50, 0x51, 0x4d, 0x4a,\n    0x53, 0x5d, 0x64, 0x62, 0x58, 0x49, 0x44, 0x4c, 0x4c, 0x47, 0x59, 0x7b, 0x87, 0x7d, 0x7f, 0x91,\n    0x99, 0xa0, 0x9e, 0x9d, 0xa1, 0x95, 0x84, 0x81, 0x89, 0x85, 0x82, 0x83, 0x86, 0x88, 0x87, 0x85,\n    0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x91, 0x93, 0x93, 0x95, 0x97, 0x99, 0x9a, 0x9a, 0x9c, 0x9d,\n    0xa2, 0xa1, 0xa0, 0xa0, 0xa2, 0xa3, 0xa5, 0xa5, 0xa7, 0xa8, 0xa9, 0xac, 0xae, 0xb0, 0xb1, 0xb2,\n    0xb1, 0xb2, 0xb4, 0xb5, 0xb5, 0xb3, 0xb1, 0xaf, 0xae, 0xad, 0xab, 0xa8, 0xa6, 0xa5, 0xa5, 0xa5,\n    0xa4, 0xa3, 0xa4, 0xa6, 0xa8, 0xaa, 0xaa, 0xaa, 0xa8, 0xa8, 0xa8, 0xa9, 0xa9, 0xaa, 0xaa, 0xaa,\n    0xab, 0xab, 0xaa, 0xaa, 0xaa, 0xab, 0xac, 0xac, 0xaa, 0xaa, 0xaa, 0xa9, 0xa7, 0xa4, 0xa2, 0xa0,\n    0x9d, 0x9b, 0x9a, 0x99, 0x99, 0x98, 0x97, 0x95, 0x98, 0x96, 0x93, 0x91, 0x90, 0x8f, 0x8d, 0x8c,\n    0x89, 0x86, 0x84, 0x84, 0x85, 0x85, 0x81, 0x7e, 0x7d, 0x7d, 0x7e, 0x80, 0x82, 0x81, 0x7f, 0x7d,\n    0x87, 0x87, 0x8a, 0x8e, 0x93, 0x96, 0x96, 0x94, 0x96, 0x97, 0x97, 0x97, 0x97, 0x97, 0x99, 0x9a,\n    0x9d, 0x9d, 0x9e, 0x9f, 0xa1, 0xa2, 0xa1, 0xa1, 0x9e, 0x9c, 0x99, 0x97, 0x93, 0x8c, 0x82, 0x7a,\n    0x72, 0x70, 0x6e, 0x6f, 0x71, 0x72, 0x72, 0x70, 0x70, 0x6d, 0x66, 0x61, 0x64, 0x67, 0x5d, 0x4f,\n    0x45, 0x3f, 0x36, 0x3c, 0x47, 0x47, 0x56, 0x77, 0x71, 0x6f, 0x6e, 0x6f, 0x70, 0x70, 0x6f, 0x6d,\n    0x6e, 0x70, 0x72, 0x71, 0x6d, 0x67, 0x60, 0x5c, 0x64, 0x71, 0x7f, 0x7e, 0x71, 0x61, 0x57, 0x54,\n    0x65, 0x65, 0x5d, 0x5b, 0x63, 0x64, 0x68, 0x76, 0x7d, 0x77, 0x5e, 0x47, 0x41, 0x3a, 0x36, 0x3e,\n    0x47, 0x3d, 0x33, 0x2d, 0x2b, 0x2c, 0x32, 0x39, 0x40, 0x42, 0x34, 0x36, 0x37, 0x35, 0x3e, 0x36,\n    0x2c, 0x22, 0x29, 0x32, 0x2e, 0x2e, 0x34, 0x32, 0x2c, 0x2a, 0x27, 0x25, 0x28, 0x2c, 0x2c, 0x29,\n    0x2b, 0x2b, 0x27, 0x23, 0x24, 0x29, 0x2b, 0x29, 0x2c, 0x28, 0x23, 0x1f, 0x1c, 0x1c, 0x21, 0x27,\n    0x25, 0x26, 0x1a, 0x14, 0x24, 0x35, 0x48, 0x5c, 0x59, 0x53, 0x48, 0x45, 0x49, 0x48, 0x47, 0x4c,\n    0x4e, 0x4b, 0x4a, 0x45, 0x35, 0x29, 0x36, 0x4d, 0x5c, 0x4c, 0x30, 0x27, 0x38, 0x42, 0x44, 0x4b,\n    0x4a, 0x53, 0x67, 0x6e, 0x5c, 0x4c, 0x51, 0x5c, 0x68, 0x64, 0x59, 0x51, 0x52, 0x52, 0x57, 0x63,\n    0x66, 0x58, 0x4d, 0x4b, 0x46, 0x40, 0x43, 0x4d, 0x61, 0x6d, 0x75, 0x70, 0x6e, 0x79, 0x77, 0x65,\n    0x4f, 0x47, 0x3f, 0x3f, 0x42, 0x43, 0x40, 0x3c, 0x3b, 0x4d, 0x56, 0x56, 0x5d, 0x5e, 0x51, 0x44,\n    0x34, 0x3d, 0x4e, 0x4e, 0x45, 0x3c, 0x40, 0x5d, 0x73, 0x71, 0x6f, 0x64, 0x49, 0x2c, 0x20, 0x23,\n    0x38, 0x2d, 0x23, 0x21, 0x20, 0x1f, 0x23, 0x2a, 0x28, 0x24, 0x21, 0x20, 0x1e, 0x1b, 0x1c, 0x1f,\n    0x22, 0x23, 0x24, 0x21, 0x1e, 0x1c, 0x1d, 0x20, 0x22, 0x21, 0x20, 0x21, 0x20, 0x1e, 0x1e, 0x21,\n    0x22, 0x20, 0x1e, 0x1e, 0x21, 0x23, 0x24, 0x24, 0x1f, 0x1e, 0x1f, 0x20, 0x22, 0x23, 0x22, 0x21,\n    0x21, 0x1d, 0x19, 0x18, 0x1b, 0x20, 0x25, 0x28, 0x24, 0x22, 0x20, 0x1e, 0x1e, 0x1d, 0x1b, 0x19,\n    0x1a, 0x1a, 0x19, 0x1a, 0x1a, 0x1b, 0x1b, 0x1a, 0x1a, 0x1c, 0x1e, 0x1f, 0x21, 0x21, 0x1c, 0x16,\n    0x15, 0x15, 0x15, 0x15, 0x16, 0x16, 0x16, 0x15, 0x16, 0x19, 0x1d, 0x21, 0x24, 0x27, 0x2b, 0x2e,\n    0x32, 0x35, 0x32, 0x28, 0x23, 0x28, 0x2d, 0x2e, 0x30, 0x32, 0x37, 0x3c, 0x3f, 0x3c, 0x36, 0x31,\n    0x29, 0x2b, 0x2b, 0x28, 0x24, 0x23, 0x24, 0x26, 0x28, 0x29, 0x2c, 0x2f, 0x31, 0x32, 0x31, 0x30,\n    0x37, 0x34, 0x2f, 0x2b, 0x2c, 0x2e, 0x2d, 0x29, 0x2c, 0x31, 0x39, 0x3c, 0x3b, 0x3c, 0x44, 0x4d,\n    0x49, 0x4e, 0x56, 0x5e, 0x63, 0x67, 0x6a, 0x6d, 0x66, 0x68, 0x6a, 0x68, 0x61, 0x53, 0x41, 0x34,\n    0x26, 0x28, 0x28, 0x25, 0x23, 0x23, 0x25, 0x27, 0x23, 0x23, 0x22, 0x21, 0x1f, 0x1e, 0x1e, 0x1e,\n    0x20, 0x22, 0x25, 0x2a, 0x2c, 0x2a, 0x25, 0x20, 0x22, 0x29, 0x2a, 0x22, 0x20, 0x28, 0x32, 0x37,\n    0x35, 0x32, 0x2d, 0x29, 0x27, 0x28, 0x2a, 0x2c, 0x30, 0x34, 0x3c, 0x46, 0x4f, 0x54, 0x56, 0x58,\n    0x55, 0x58, 0x5a, 0x58, 0x54, 0x51, 0x52, 0x54, 0x57, 0x57, 0x59, 0x5c, 0x60, 0x61, 0x61, 0x60,\n    0x60, 0x5f, 0x5d, 0x59, 0x58, 0x5c, 0x64, 0x6a, 0x6d, 0x69, 0x66, 0x67, 0x67, 0x65, 0x65, 0x67,\n    0x63, 0x62, 0x60, 0x5b, 0x55, 0x4e, 0x4b, 0x4b, 0x50, 0x4a, 0x45, 0x47, 0x4a, 0x4e, 0x52, 0x56,\n    0x63, 0x66, 0x63, 0x5e, 0x5a, 0x51, 0x4e, 0x56, 0x4b, 0x48, 0x58, 0x77, 0x84, 0x7d, 0x7c, 0x86,\n    0x93, 0x9f, 0xa2, 0xa5, 0xa9, 0x9d, 0x8c, 0x88, 0x88, 0x86, 0x84, 0x84, 0x86, 0x87, 0x87, 0x87,\n    0x89, 0x8a, 0x8b, 0x8b, 0x8c, 0x8e, 0x91, 0x93, 0x92, 0x94, 0x97, 0x98, 0x99, 0x9a, 0x9c, 0x9d,\n    0x9f, 0x9f, 0x9f, 0xa0, 0xa3, 0xa5, 0xa8, 0xa9, 0xac, 0xad, 0xae, 0xb0, 0xb2, 0xb4, 0xb6, 0xb6,\n    0xb6, 0xb7, 0xb8, 0xb8, 0xb8, 0xb6, 0xb4, 0xb3, 0xb2, 0xb1, 0xb0, 0xae, 0xac, 0xab, 0xaa, 0xa9,\n    0xaa, 0xaa, 0xaa, 0xab, 0xac, 0xad, 0xad, 0xac, 0xac, 0xad, 0xad, 0xad, 0xae, 0xae, 0xaf, 0xaf,\n    0xad, 0xad, 0xad, 0xad, 0xae, 0xaf, 0xaf, 0xb0, 0xae, 0xae, 0xae, 0xad, 0xab, 0xa9, 0xa7, 0xa6,\n    0xa1, 0x9f, 0x9d, 0x9b, 0x9a, 0x99, 0x98, 0x96, 0x98, 0x96, 0x95, 0x93, 0x93, 0x92, 0x91, 0x90,\n    0x8c, 0x8a, 0x88, 0x87, 0x88, 0x88, 0x85, 0x82, 0x81, 0x7f, 0x7c, 0x7a, 0x79, 0x7a, 0x7b, 0x7c,\n    0x7b, 0x7b, 0x7d, 0x7f, 0x83, 0x85, 0x87, 0x87, 0x8d, 0x8f, 0x90, 0x91, 0x92, 0x93, 0x95, 0x97,\n    0x9b, 0x9b, 0x9c, 0x9d, 0x9f, 0xa0, 0xa0, 0xa0, 0xa0, 0x9e, 0x9d, 0x9c, 0x9b, 0x96, 0x8f, 0x89,\n    0x81, 0x7e, 0x7a, 0x78, 0x77, 0x76, 0x73, 0x70, 0x6f, 0x6c, 0x65, 0x61, 0x64, 0x65, 0x5c, 0x4e,\n    0x48, 0x3b, 0x41, 0x47, 0x48, 0x61, 0x78, 0x71, 0x6f, 0x6f, 0x6f, 0x71, 0x73, 0x75, 0x75, 0x74,\n    0x68, 0x6c, 0x70, 0x6f, 0x6a, 0x64, 0x60, 0x5f, 0x63, 0x6f, 0x79, 0x7d, 0x7e, 0x79, 0x67, 0x55,\n    0x56, 0x5c, 0x66, 0x6e, 0x6b, 0x64, 0x6f, 0x87, 0x92, 0x7f, 0x61, 0x4c, 0x45, 0x3f, 0x3b, 0x3e,\n    0x4a, 0x40, 0x39, 0x3b, 0x40, 0x3f, 0x3b, 0x37, 0x3c, 0x42, 0x38, 0x38, 0x38, 0x37, 0x3e, 0x37,\n    0x37, 0x30, 0x33, 0x35, 0x2e, 0x2e, 0x33, 0x31, 0x33, 0x35, 0x36, 0x32, 0x2f, 0x2f, 0x2f, 0x2f,\n    0x2d, 0x2c, 0x2b, 0x2b, 0x30, 0x35, 0x35, 0x31, 0x2c, 0x28, 0x24, 0x22, 0x20, 0x1e, 0x20, 0x24,\n    0x21, 0x24, 0x1f, 0x1b, 0x22, 0x32, 0x48, 0x5b, 0x5c, 0x51, 0x4a, 0x49, 0x4a, 0x4b, 0x4d, 0x4f,\n    0x48, 0x4d, 0x53, 0x50, 0x3f, 0x31, 0x39, 0x4a, 0x4e, 0x49, 0x3b, 0x33, 0x3d, 0x4a, 0x4d, 0x4c,\n    0x48, 0x55, 0x66, 0x66, 0x55, 0x4f, 0x59, 0x60, 0x68, 0x66, 0x5c, 0x52, 0x4f, 0x4e, 0x55, 0x62,\n    0x73, 0x65, 0x59, 0x52, 0x49, 0x44, 0x4c, 0x5a, 0x75, 0x6e, 0x68, 0x66, 0x6a, 0x72, 0x6b, 0x59,\n    0x48, 0x48, 0x48, 0x44, 0x3e, 0x3b, 0x40, 0x46, 0x4d, 0x5b, 0x5c, 0x55, 0x55, 0x55, 0x4c, 0x44,\n    0x42, 0x3c, 0x47, 0x4f, 0x48, 0x36, 0x3b, 0x61, 0x6f, 0x76, 0x6d, 0x53, 0x47, 0x54, 0x66, 0x6e,\n    0x37, 0x2d, 0x25, 0x24, 0x24, 0x23, 0x24, 0x28, 0x27, 0x23, 0x20, 0x1f, 0x1d, 0x1b, 0x1c, 0x1e,\n    0x22, 0x25, 0x27, 0x27, 0x25, 0x23, 0x23, 0x24, 0x22, 0x21, 0x21, 0x21, 0x1f, 0x1d, 0x1e, 0x22,\n    0x24, 0x24, 0x23, 0x22, 0x22, 0x24, 0x27, 0x2a, 0x1e, 0x1d, 0x1e, 0x20, 0x22, 0x23, 0x22, 0x21,\n    0x22, 0x1f, 0x1a, 0x16, 0x17, 0x1b, 0x21, 0x26, 0x28, 0x25, 0x22, 0x1f, 0x1d, 0x1b, 0x17, 0x14,\n    0x16, 0x17, 0x19, 0x1a, 0x1a, 0x1b, 0x1c, 0x1c, 0x1b, 0x1d, 0x1e, 0x20, 0x22, 0x23, 0x1e, 0x17,\n    0x15, 0x15, 0x14, 0x15, 0x16, 0x17, 0x16, 0x15, 0x18, 0x1a, 0x1e, 0x22, 0x27, 0x2c, 0x30, 0x34,\n    0x2e, 0x30, 0x2b, 0x22, 0x1e, 0x25, 0x2c, 0x30, 0x34, 0x33, 0x34, 0x38, 0x3c, 0x3c, 0x37, 0x32,\n    0x2a, 0x2b, 0x2b, 0x29, 0x25, 0x23, 0x24, 0x25, 0x27, 0x2a, 0x2d, 0x2e, 0x2d, 0x2e, 0x31, 0x34,\n    0x39, 0x35, 0x2e, 0x29, 0x2a, 0x2d, 0x2d, 0x2b, 0x38, 0x3c, 0x42, 0x44, 0x42, 0x44, 0x50, 0x5d,\n    0x68, 0x65, 0x5e, 0x56, 0x4f, 0x4f, 0x52, 0x56, 0x68, 0x6e, 0x72, 0x6f, 0x69, 0x5c, 0x47, 0x34,\n    0x27, 0x27, 0x27, 0x27, 0x25, 0x23, 0x25, 0x28, 0x27, 0x26, 0x24, 0x22, 0x1f, 0x1f, 0x20, 0x22,\n    0x23, 0x23, 0x25, 0x29, 0x2b, 0x2b, 0x27, 0x23, 0x23, 0x28, 0x27, 0x21, 0x1e, 0x26, 0x31, 0x37,\n    0x38, 0x37, 0x35, 0x33, 0x32, 0x31, 0x2f, 0x2e, 0x30, 0x33, 0x3f, 0x4c, 0x4f, 0x4e, 0x52, 0x5c,\n    0x57, 0x56, 0x54, 0x51, 0x4e, 0x4e, 0x50, 0x52, 0x53, 0x54, 0x57, 0x59, 0x5a, 0x5c, 0x5d, 0x5f,\n    0x63, 0x60, 0x5b, 0x56, 0x55, 0x59, 0x62, 0x69, 0x60, 0x5f, 0x5f, 0x60, 0x5f, 0x5e, 0x5f, 0x62,\n    0x5d, 0x5d, 0x5f, 0x5f, 0x59, 0x50, 0x50, 0x55, 0x54, 0x54, 0x57, 0x5a, 0x5b, 0x58, 0x58, 0x5a,\n    0x62, 0x61, 0x5b, 0x58, 0x5a, 0x55, 0x50, 0x53, 0x51, 0x50, 0x5c, 0x73, 0x81, 0x7f, 0x7a, 0x7a,\n    0x89, 0x96, 0x9f, 0xa4, 0xa6, 0x9b, 0x8e, 0x8a, 0x87, 0x86, 0x86, 0x85, 0x86, 0x87, 0x87, 0x88,\n    0x89, 0x8a, 0x8b, 0x8b, 0x8b, 0x8d, 0x90, 0x92, 0x91, 0x93, 0x96, 0x98, 0x99, 0x9a, 0x9c, 0x9d,\n    0x9c, 0x9d, 0x9f, 0xa2, 0xa5, 0xa9, 0xac, 0xae, 0xb2, 0xb3, 0xb4, 0xb6, 0xb8, 0xb9, 0xbb, 0xbb,\n    0xba, 0xbb, 0xbb, 0xbb, 0xba, 0xb9, 0xb8, 0xb8, 0xb6, 0xb6, 0xb5, 0xb4, 0xb3, 0xb1, 0xb0, 0xaf,\n    0xb1, 0xb0, 0xaf, 0xb0, 0xb0, 0xb1, 0xb0, 0xaf, 0xb0, 0xb0, 0xb0, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1,\n    0xae, 0xaf, 0xb0, 0xb1, 0xb2, 0xb2, 0xb3, 0xb3, 0xb2, 0xb2, 0xb2, 0xb1, 0xb0, 0xae, 0xad, 0xac,\n    0xa9, 0xa6, 0xa2, 0x9f, 0x9e, 0x9c, 0x9b, 0x9a, 0x9a, 0x99, 0x98, 0x97, 0x98, 0x97, 0x96, 0x95,\n    0x92, 0x8f, 0x8d, 0x8d, 0x8e, 0x8d, 0x8b, 0x89, 0x86, 0x82, 0x7a, 0x73, 0x70, 0x70, 0x74, 0x77,\n    0x78, 0x79, 0x7a, 0x7a, 0x7b, 0x7d, 0x7f, 0x81, 0x82, 0x83, 0x86, 0x88, 0x8a, 0x8c, 0x8f, 0x91,\n    0x96, 0x96, 0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9d, 0x9c, 0x9b, 0x9c, 0x9c, 0x9a, 0x96, 0x92,\n    0x8e, 0x8a, 0x85, 0x81, 0x7e, 0x7a, 0x75, 0x71, 0x6e, 0x6b, 0x65, 0x62, 0x64, 0x64, 0x59, 0x4c,\n    0x42, 0x45, 0x43, 0x48, 0x5e, 0x73, 0x76, 0x72, 0x6f, 0x6f, 0x70, 0x72, 0x74, 0x76, 0x77, 0x77,\n    0x6c, 0x71, 0x75, 0x74, 0x6d, 0x67, 0x66, 0x67, 0x66, 0x6a, 0x69, 0x68, 0x74, 0x84, 0x83, 0x77,\n    0x64, 0x5b, 0x5e, 0x68, 0x69, 0x70, 0x86, 0x9b, 0x94, 0x75, 0x5a, 0x51, 0x4e, 0x4c, 0x49, 0x45,\n    0x41, 0x40, 0x40, 0x3f, 0x3c, 0x3c, 0x40, 0x46, 0x40, 0x49, 0x45, 0x41, 0x3e, 0x3f, 0x46, 0x41,\n    0x37, 0x37, 0x3a, 0x38, 0x32, 0x36, 0x40, 0x40, 0x3b, 0x41, 0x44, 0x3e, 0x35, 0x30, 0x31, 0x32,\n    0x2b, 0x2a, 0x2a, 0x2d, 0x35, 0x3b, 0x39, 0x35, 0x2c, 0x29, 0x26, 0x25, 0x24, 0x22, 0x21, 0x22,\n    0x22, 0x24, 0x26, 0x24, 0x25, 0x36, 0x4e, 0x5b, 0x4b, 0x40, 0x44, 0x4e, 0x4c, 0x4d, 0x4e, 0x49,\n    0x48, 0x52, 0x59, 0x52, 0x41, 0x37, 0x3d, 0x4a, 0x52, 0x49, 0x3b, 0x2f, 0x35, 0x4c, 0x57, 0x4f,\n    0x51, 0x5d, 0x6a, 0x65, 0x5a, 0x5a, 0x5d, 0x59, 0x5f, 0x67, 0x68, 0x63, 0x5a, 0x4f, 0x4f, 0x59,\n    0x6d, 0x65, 0x5b, 0x51, 0x44, 0x40, 0x4d, 0x5e, 0x69, 0x62, 0x65, 0x6f, 0x72, 0x6c, 0x58, 0x41,\n    0x41, 0x41, 0x3f, 0x3a, 0x33, 0x31, 0x3a, 0x44, 0x5f, 0x71, 0x76, 0x6e, 0x6a, 0x64, 0x59, 0x51,\n    0x49, 0x41, 0x43, 0x40, 0x38, 0x30, 0x3d, 0x65, 0x79, 0x73, 0x5a, 0x3b, 0x3b, 0x58, 0x6a, 0x68,\n    0x30, 0x2a, 0x26, 0x27, 0x28, 0x24, 0x21, 0x20, 0x21, 0x21, 0x21, 0x21, 0x20, 0x1e, 0x1d, 0x1c,\n    0x23, 0x26, 0x29, 0x29, 0x27, 0x24, 0x22, 0x22, 0x22, 0x21, 0x20, 0x1f, 0x1c, 0x1a, 0x1c, 0x20,\n    0x1f, 0x21, 0x22, 0x20, 0x1e, 0x1f, 0x25, 0x29, 0x20, 0x1f, 0x1d, 0x1e, 0x1e, 0x1f, 0x1e, 0x1e,\n    0x1e, 0x1c, 0x1a, 0x19, 0x1a, 0x1c, 0x1d, 0x1e, 0x27, 0x27, 0x26, 0x23, 0x1f, 0x1a, 0x16, 0x14,\n    0x15, 0x17, 0x1a, 0x1b, 0x1a, 0x19, 0x1a, 0x1b, 0x1e, 0x1f, 0x20, 0x22, 0x24, 0x25, 0x21, 0x1b,\n    0x15, 0x14, 0x13, 0x14, 0x16, 0x17, 0x17, 0x16, 0x1a, 0x1a, 0x1c, 0x1f, 0x25, 0x2e, 0x36, 0x3c,\n    0x3b, 0x3b, 0x36, 0x2c, 0x27, 0x2b, 0x32, 0x36, 0x38, 0x37, 0x36, 0x37, 0x38, 0x38, 0x35, 0x33,\n    0x30, 0x30, 0x2f, 0x2d, 0x29, 0x27, 0x26, 0x27, 0x29, 0x2c, 0x2f, 0x2d, 0x29, 0x29, 0x2e, 0x34,\n    0x33, 0x31, 0x2c, 0x27, 0x26, 0x2b, 0x2f, 0x30, 0x37, 0x36, 0x36, 0x36, 0x38, 0x41, 0x53, 0x62,\n    0x67, 0x6e, 0x73, 0x71, 0x68, 0x5e, 0x54, 0x4e, 0x55, 0x5a, 0x5f, 0x62, 0x65, 0x60, 0x4c, 0x37,\n    0x2f, 0x29, 0x25, 0x28, 0x2a, 0x28, 0x26, 0x27, 0x29, 0x29, 0x29, 0x26, 0x24, 0x23, 0x24, 0x26,\n    0x22, 0x22, 0x24, 0x28, 0x2c, 0x2c, 0x29, 0x26, 0x25, 0x29, 0x28, 0x23, 0x20, 0x24, 0x2d, 0x32,\n    0x38, 0x39, 0x3a, 0x3c, 0x3c, 0x3a, 0x36, 0x34, 0x36, 0x3b, 0x45, 0x4d, 0x4e, 0x4c, 0x50, 0x57,\n    0x55, 0x52, 0x4f, 0x4d, 0x4d, 0x4e, 0x4f, 0x51, 0x52, 0x55, 0x59, 0x59, 0x58, 0x58, 0x5a, 0x5c,\n    0x63, 0x62, 0x61, 0x5e, 0x5c, 0x5c, 0x5e, 0x60, 0x5b, 0x5f, 0x63, 0x65, 0x64, 0x62, 0x61, 0x62,\n    0x60, 0x60, 0x60, 0x5c, 0x4d, 0x3d, 0x38, 0x3e, 0x41, 0x3f, 0x3e, 0x42, 0x47, 0x4d, 0x56, 0x5d,\n    0x64, 0x61, 0x59, 0x55, 0x59, 0x5a, 0x58, 0x5c, 0x5e, 0x5e, 0x63, 0x70, 0x7e, 0x82, 0x7c, 0x73,\n    0x81, 0x8c, 0x97, 0x9e, 0x9d, 0x95, 0x8c, 0x88, 0x86, 0x86, 0x86, 0x86, 0x85, 0x86, 0x87, 0x88,\n    0x88, 0x89, 0x8a, 0x8b, 0x8b, 0x8d, 0x8f, 0x91, 0x91, 0x93, 0x96, 0x98, 0x99, 0x9b, 0x9d, 0x9e,\n    0x9e, 0xa0, 0xa3, 0xa6, 0xa9, 0xad, 0xb1, 0xb4, 0xb5, 0xb6, 0xb7, 0xb9, 0xba, 0xbc, 0xbd, 0xbd,\n    0xbb, 0xbb, 0xba, 0xba, 0xba, 0xbb, 0xbb, 0xbb, 0xb8, 0xb9, 0xb9, 0xb8, 0xb7, 0xb5, 0xb4, 0xb3,\n    0xb4, 0xb3, 0xb2, 0xb2, 0xb2, 0xb2, 0xb1, 0xb0, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb0, 0xb0,\n    0xaf, 0xb0, 0xb1, 0xb3, 0xb4, 0xb4, 0xb3, 0xb3, 0xb4, 0xb4, 0xb4, 0xb3, 0xb3, 0xb2, 0xb1, 0xb0,\n    0xb1, 0xae, 0xa9, 0xa6, 0xa4, 0xa3, 0xa2, 0xa1, 0xa0, 0x9f, 0x9e, 0x9d, 0x9d, 0x9d, 0x9b, 0x9a,\n    0x97, 0x95, 0x93, 0x93, 0x93, 0x93, 0x91, 0x90, 0x8a, 0x85, 0x7d, 0x74, 0x6c, 0x69, 0x6a, 0x6b,\n    0x6d, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x73, 0x76, 0x77, 0x79, 0x7c, 0x7e, 0x81, 0x84, 0x87, 0x8a,\n    0x8e, 0x8f, 0x90, 0x91, 0x92, 0x93, 0x95, 0x96, 0x98, 0x97, 0x97, 0x97, 0x98, 0x96, 0x94, 0x91,\n    0x8f, 0x8c, 0x87, 0x84, 0x81, 0x7d, 0x77, 0x73, 0x6e, 0x6b, 0x66, 0x63, 0x64, 0x62, 0x57, 0x4b,\n    0x43, 0x46, 0x45, 0x56, 0x72, 0x70, 0x68, 0x75, 0x72, 0x71, 0x71, 0x72, 0x73, 0x73, 0x74, 0x74,\n    0x76, 0x79, 0x7b, 0x79, 0x74, 0x6f, 0x6e, 0x6e, 0x6e, 0x69, 0x5c, 0x4d, 0x4f, 0x5f, 0x6d, 0x71,\n    0x71, 0x5d, 0x4e, 0x47, 0x4f, 0x71, 0x95, 0xa0, 0x81, 0x62, 0x54, 0x5a, 0x5a, 0x59, 0x56, 0x4d,\n    0x46, 0x4b, 0x4d, 0x49, 0x40, 0x3e, 0x46, 0x50, 0x45, 0x4d, 0x4c, 0x45, 0x40, 0x43, 0x4a, 0x4a,\n    0x45, 0x51, 0x58, 0x4e, 0x3d, 0x33, 0x2f, 0x2a, 0x3a, 0x41, 0x44, 0x3e, 0x34, 0x30, 0x30, 0x31,\n    0x2c, 0x2a, 0x29, 0x2a, 0x2f, 0x35, 0x37, 0x37, 0x2f, 0x2a, 0x27, 0x27, 0x28, 0x26, 0x25, 0x26,\n    0x28, 0x25, 0x2a, 0x2d, 0x30, 0x45, 0x5b, 0x5d, 0x4d, 0x3f, 0x47, 0x53, 0x4e, 0x4f, 0x54, 0x4c,\n    0x4d, 0x55, 0x55, 0x49, 0x3a, 0x37, 0x40, 0x49, 0x52, 0x3f, 0x30, 0x2b, 0x35, 0x51, 0x5d, 0x50,\n    0x5a, 0x63, 0x6d, 0x6d, 0x65, 0x64, 0x5e, 0x50, 0x61, 0x63, 0x5b, 0x4c, 0x3f, 0x3a, 0x46, 0x59,\n    0x61, 0x5f, 0x5b, 0x51, 0x43, 0x41, 0x4f, 0x61, 0x72, 0x69, 0x63, 0x5d, 0x52, 0x4c, 0x48, 0x3f,\n    0x4d, 0x42, 0x39, 0x3a, 0x40, 0x44, 0x49, 0x4d, 0x53, 0x67, 0x70, 0x6c, 0x68, 0x62, 0x59, 0x55,\n    0x50, 0x53, 0x4a, 0x2f, 0x26, 0x34, 0x45, 0x5c, 0x72, 0x60, 0x4f, 0x53, 0x69, 0x79, 0x75, 0x6a,\n    0x30, 0x2b, 0x28, 0x28, 0x28, 0x25, 0x21, 0x1f, 0x20, 0x21, 0x21, 0x21, 0x22, 0x22, 0x21, 0x21,\n    0x24, 0x26, 0x28, 0x29, 0x28, 0x25, 0x22, 0x21, 0x22, 0x20, 0x1e, 0x1c, 0x19, 0x16, 0x18, 0x1c,\n    0x1c, 0x1f, 0x21, 0x1f, 0x1b, 0x1c, 0x21, 0x27, 0x28, 0x25, 0x23, 0x20, 0x1f, 0x1f, 0x1d, 0x1c,\n    0x1b, 0x18, 0x17, 0x1a, 0x1e, 0x1f, 0x1d, 0x19, 0x21, 0x25, 0x29, 0x28, 0x22, 0x1b, 0x18, 0x17,\n    0x19, 0x1b, 0x1e, 0x1e, 0x1b, 0x19, 0x19, 0x19, 0x21, 0x22, 0x23, 0x23, 0x25, 0x26, 0x24, 0x20,\n    0x15, 0x13, 0x12, 0x13, 0x16, 0x18, 0x18, 0x16, 0x19, 0x19, 0x19, 0x1d, 0x24, 0x2c, 0x34, 0x38,\n    0x3b, 0x3b, 0x37, 0x2f, 0x2a, 0x2b, 0x30, 0x34, 0x3c, 0x3d, 0x3e, 0x3d, 0x3a, 0x38, 0x39, 0x3a,\n    0x34, 0x34, 0x33, 0x30, 0x2d, 0x2b, 0x29, 0x29, 0x29, 0x2c, 0x2e, 0x2c, 0x28, 0x28, 0x2d, 0x32,\n    0x31, 0x33, 0x32, 0x2b, 0x27, 0x29, 0x2e, 0x32, 0x2e, 0x2c, 0x2b, 0x2e, 0x33, 0x39, 0x43, 0x4b,\n    0x59, 0x61, 0x68, 0x69, 0x69, 0x6d, 0x71, 0x72, 0x63, 0x6b, 0x72, 0x75, 0x75, 0x72, 0x66, 0x59,\n    0x44, 0x36, 0x28, 0x26, 0x2a, 0x2b, 0x29, 0x25, 0x26, 0x28, 0x2a, 0x2a, 0x27, 0x24, 0x25, 0x26,\n    0x22, 0x23, 0x25, 0x2a, 0x2d, 0x2d, 0x29, 0x26, 0x29, 0x2c, 0x2d, 0x29, 0x26, 0x28, 0x2d, 0x31,\n    0x38, 0x3b, 0x3f, 0x41, 0x40, 0x3e, 0x3b, 0x3a, 0x40, 0x46, 0x4b, 0x4c, 0x4e, 0x52, 0x53, 0x51,\n    0x52, 0x50, 0x4e, 0x4e, 0x4e, 0x4e, 0x4d, 0x4c, 0x51, 0x56, 0x5b, 0x5c, 0x5b, 0x5a, 0x5b, 0x5e,\n    0x60, 0x62, 0x64, 0x64, 0x61, 0x5e, 0x5b, 0x5a, 0x5e, 0x62, 0x66, 0x66, 0x65, 0x64, 0x63, 0x63,\n    0x67, 0x67, 0x65, 0x5e, 0x4e, 0x40, 0x40, 0x47, 0x48, 0x46, 0x47, 0x4f, 0x58, 0x60, 0x67, 0x6b,\n    0x68, 0x67, 0x5b, 0x52, 0x53, 0x56, 0x5b, 0x64, 0x64, 0x64, 0x64, 0x6a, 0x78, 0x84, 0x81, 0x76,\n    0x7c, 0x85, 0x94, 0x9f, 0x9f, 0x99, 0x91, 0x89, 0x85, 0x86, 0x86, 0x86, 0x85, 0x86, 0x87, 0x88,\n    0x88, 0x89, 0x8a, 0x8b, 0x8b, 0x8d, 0x8f, 0x92, 0x92, 0x94, 0x97, 0x99, 0x9b, 0x9d, 0x9f, 0xa1,\n    0xa4, 0xa6, 0xa9, 0xab, 0xad, 0xb0, 0xb4, 0xb6, 0xb5, 0xb6, 0xb7, 0xb8, 0xb9, 0xbb, 0xbb, 0xbc,\n    0xba, 0xba, 0xba, 0xba, 0xbb, 0xbc, 0xbd, 0xbe, 0xba, 0xba, 0xbb, 0xbb, 0xba, 0xb8, 0xb7, 0xb6,\n    0xb5, 0xb4, 0xb3, 0xb3, 0xb4, 0xb4, 0xb3, 0xb2, 0xb2, 0xb2, 0xb2, 0xb1, 0xb1, 0xb1, 0xb0, 0xb0,\n    0xb1, 0xb2, 0xb3, 0xb4, 0xb5, 0xb5, 0xb4, 0xb4, 0xb5, 0xb5, 0xb6, 0xb6, 0xb6, 0xb5, 0xb5, 0xb5,\n    0xb7, 0xb4, 0xb0, 0xad, 0xab, 0xab, 0xaa, 0xa9, 0xa7, 0xa6, 0xa5, 0xa4, 0xa3, 0xa2, 0x9f, 0x9d,\n    0x9c, 0x9b, 0x99, 0x98, 0x98, 0x98, 0x97, 0x96, 0x90, 0x8c, 0x85, 0x7b, 0x70, 0x67, 0x60, 0x5c,\n    0x5e, 0x60, 0x63, 0x65, 0x65, 0x67, 0x6a, 0x6c, 0x6e, 0x70, 0x72, 0x75, 0x77, 0x79, 0x7d, 0x7f,\n    0x82, 0x84, 0x85, 0x86, 0x87, 0x89, 0x8c, 0x8e, 0x95, 0x95, 0x95, 0x96, 0x96, 0x95, 0x94, 0x92,\n    0x8f, 0x8c, 0x89, 0x86, 0x84, 0x80, 0x7a, 0x76, 0x70, 0x6c, 0x67, 0x64, 0x64, 0x60, 0x56, 0x4b,\n    0x4b, 0x40, 0x56, 0x72, 0x70, 0x6c, 0x73, 0x74, 0x75, 0x75, 0x74, 0x73, 0x73, 0x72, 0x73, 0x74,\n    0x79, 0x78, 0x77, 0x77, 0x76, 0x75, 0x73, 0x72, 0x69, 0x62, 0x59, 0x52, 0x4e, 0x4e, 0x55, 0x5d,\n    0x68, 0x66, 0x5c, 0x4c, 0x54, 0x81, 0x9f, 0x98, 0x6f, 0x59, 0x56, 0x62, 0x63, 0x60, 0x5c, 0x53,\n    0x50, 0x51, 0x52, 0x52, 0x52, 0x4f, 0x4b, 0x48, 0x4a, 0x4c, 0x4c, 0x42, 0x3d, 0x42, 0x48, 0x4e,\n    0x67, 0x7b, 0x86, 0x7a, 0x60, 0x46, 0x35, 0x2d, 0x33, 0x35, 0x35, 0x31, 0x2f, 0x2f, 0x31, 0x31,\n    0x33, 0x31, 0x2d, 0x2a, 0x28, 0x2c, 0x33, 0x3a, 0x33, 0x2d, 0x29, 0x29, 0x2a, 0x2a, 0x2a, 0x2c,\n    0x30, 0x28, 0x2a, 0x32, 0x3e, 0x57, 0x64, 0x5c, 0x53, 0x40, 0x43, 0x4b, 0x42, 0x43, 0x4d, 0x4b,\n    0x4e, 0x53, 0x51, 0x45, 0x39, 0x37, 0x3d, 0x42, 0x43, 0x35, 0x34, 0x3e, 0x49, 0x59, 0x5e, 0x54,\n    0x59, 0x62, 0x6f, 0x6d, 0x5f, 0x57, 0x57, 0x54, 0x62, 0x61, 0x54, 0x42, 0x36, 0x34, 0x43, 0x59,\n    0x65, 0x65, 0x60, 0x53, 0x47, 0x4a, 0x5c, 0x6e, 0x6c, 0x69, 0x67, 0x5f, 0x5a, 0x66, 0x75, 0x78,\n    0x52, 0x43, 0x39, 0x3e, 0x49, 0x4d, 0x4b, 0x4a, 0x44, 0x54, 0x59, 0x53, 0x51, 0x50, 0x4e, 0x4f,\n    0x52, 0x54, 0x49, 0x2c, 0x2e, 0x42, 0x42, 0x40, 0x31, 0x32, 0x41, 0x5e, 0x74, 0x75, 0x68, 0x5e,\n    0x33, 0x2f, 0x29, 0x24, 0x22, 0x21, 0x22, 0x22, 0x20, 0x20, 0x1e, 0x1c, 0x1d, 0x21, 0x24, 0x25,\n    0x28, 0x29, 0x2b, 0x2d, 0x2d, 0x2c, 0x2a, 0x29, 0x24, 0x1f, 0x1b, 0x1a, 0x18, 0x16, 0x17, 0x1a,\n    0x1d, 0x21, 0x23, 0x21, 0x1d, 0x1d, 0x21, 0x27, 0x2c, 0x2a, 0x28, 0x26, 0x24, 0x21, 0x1d, 0x1b,\n    0x1c, 0x18, 0x15, 0x18, 0x1d, 0x20, 0x1e, 0x1b, 0x1c, 0x21, 0x27, 0x28, 0x24, 0x1f, 0x1d, 0x1d,\n    0x1e, 0x20, 0x22, 0x22, 0x20, 0x1d, 0x1b, 0x19, 0x1d, 0x20, 0x21, 0x1f, 0x1f, 0x20, 0x22, 0x21,\n    0x19, 0x15, 0x13, 0x14, 0x17, 0x19, 0x18, 0x16, 0x15, 0x16, 0x1a, 0x1f, 0x25, 0x2a, 0x2d, 0x2e,\n    0x2d, 0x2e, 0x2c, 0x27, 0x24, 0x25, 0x2a, 0x2f, 0x3a, 0x3d, 0x41, 0x40, 0x3c, 0x39, 0x3a, 0x3c,\n    0x32, 0x32, 0x31, 0x30, 0x2e, 0x2c, 0x2b, 0x2a, 0x2b, 0x2d, 0x2f, 0x2e, 0x2d, 0x2d, 0x30, 0x34,\n    0x35, 0x39, 0x39, 0x33, 0x2c, 0x2b, 0x2d, 0x2e, 0x2a, 0x26, 0x25, 0x29, 0x31, 0x38, 0x40, 0x46,\n    0x4b, 0x56, 0x5f, 0x5f, 0x5c, 0x5b, 0x59, 0x56, 0x66, 0x70, 0x79, 0x77, 0x6b, 0x60, 0x5d, 0x5e,\n    0x59, 0x4b, 0x36, 0x28, 0x26, 0x2a, 0x2a, 0x26, 0x22, 0x26, 0x2a, 0x2a, 0x26, 0x23, 0x21, 0x22,\n    0x25, 0x26, 0x28, 0x2c, 0x2f, 0x2f, 0x2b, 0x28, 0x26, 0x29, 0x2a, 0x29, 0x27, 0x27, 0x2b, 0x2f,\n    0x34, 0x39, 0x3e, 0x41, 0x40, 0x41, 0x43, 0x46, 0x45, 0x48, 0x48, 0x46, 0x4b, 0x54, 0x53, 0x4d,\n    0x53, 0x54, 0x54, 0x55, 0x54, 0x51, 0x4e, 0x4b, 0x4b, 0x4f, 0x55, 0x57, 0x58, 0x59, 0x5b, 0x5e,\n    0x5e, 0x5f, 0x60, 0x60, 0x5f, 0x5e, 0x5c, 0x5b, 0x56, 0x59, 0x5a, 0x5a, 0x5d, 0x62, 0x67, 0x68,\n    0x6b, 0x6d, 0x6a, 0x5f, 0x51, 0x4b, 0x4e, 0x55, 0x53, 0x54, 0x59, 0x62, 0x68, 0x66, 0x62, 0x5f,\n    0x69, 0x6f, 0x6c, 0x63, 0x5f, 0x5a, 0x59, 0x5d, 0x60, 0x62, 0x61, 0x63, 0x71, 0x82, 0x85, 0x7d,\n    0x79, 0x7e, 0x90, 0xa0, 0xa3, 0xa1, 0x98, 0x8b, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x87,\n    0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8e, 0x91, 0x93, 0x94, 0x96, 0x99, 0x9c, 0x9e, 0xa0, 0xa2, 0xa4,\n    0xa8, 0xab, 0xae, 0xaf, 0xaf, 0xb1, 0xb3, 0xb6, 0xb4, 0xb4, 0xb5, 0xb6, 0xb7, 0xb8, 0xb8, 0xb9,\n    0xba, 0xba, 0xba, 0xbb, 0xbb, 0xbc, 0xbd, 0xbe, 0xbb, 0xbb, 0xbb, 0xbb, 0xba, 0xb9, 0xb8, 0xb8,\n    0xb5, 0xb4, 0xb3, 0xb4, 0xb5, 0xb5, 0xb4, 0xb3, 0xb4, 0xb4, 0xb3, 0xb3, 0xb2, 0xb1, 0xb1, 0xb1,\n    0xb1, 0xb2, 0xb3, 0xb4, 0xb5, 0xb5, 0xb6, 0xb6, 0xb9, 0xb9, 0xb9, 0xb9, 0xba, 0xba, 0xbb, 0xbb,\n    0xbc, 0xb9, 0xb6, 0xb3, 0xb2, 0xb1, 0xb0, 0xaf, 0xad, 0xac, 0xab, 0xaa, 0xa8, 0xa6, 0xa3, 0xa1,\n    0xa1, 0xa0, 0x9f, 0x9d, 0x9c, 0x9c, 0x9d, 0x9d, 0x97, 0x94, 0x8f, 0x87, 0x7c, 0x6e, 0x61, 0x58,\n    0x56, 0x57, 0x59, 0x5a, 0x5b, 0x5e, 0x61, 0x63, 0x64, 0x65, 0x67, 0x69, 0x6b, 0x6e, 0x71, 0x73,\n    0x74, 0x77, 0x7a, 0x7c, 0x7d, 0x80, 0x85, 0x89, 0x8f, 0x90, 0x92, 0x94, 0x95, 0x95, 0x94, 0x94,\n    0x91, 0x8f, 0x8c, 0x8a, 0x87, 0x83, 0x7c, 0x78, 0x71, 0x6c, 0x67, 0x65, 0x64, 0x5e, 0x54, 0x4b,\n    0x47, 0x54, 0x67, 0x70, 0x6e, 0x70, 0x76, 0x77, 0x75, 0x75, 0x75, 0x74, 0x73, 0x73, 0x74, 0x76,\n    0x77, 0x74, 0x72, 0x73, 0x76, 0x78, 0x77, 0x75, 0x64, 0x5b, 0x57, 0x5c, 0x5f, 0x5a, 0x57, 0x59,\n    0x5a, 0x63, 0x67, 0x6a, 0x82, 0xa2, 0x9b, 0x77, 0x5c, 0x54, 0x59, 0x66, 0x6a, 0x66, 0x60, 0x5c,\n    0x55, 0x57, 0x57, 0x56, 0x59, 0x5e, 0x62, 0x63, 0x59, 0x51, 0x4f, 0x46, 0x42, 0x47, 0x4a, 0x56,\n    0x5d, 0x6a, 0x6a, 0x5b, 0x4a, 0x3a, 0x34, 0x3a, 0x35, 0x31, 0x2b, 0x28, 0x2b, 0x32, 0x36, 0x35,\n    0x39, 0x36, 0x31, 0x2b, 0x25, 0x25, 0x2d, 0x37, 0x36, 0x30, 0x2b, 0x2a, 0x2a, 0x2a, 0x2d, 0x30,\n    0x38, 0x32, 0x31, 0x3a, 0x4e, 0x63, 0x65, 0x56, 0x3e, 0x35, 0x3f, 0x4a, 0x43, 0x3d, 0x41, 0x43,\n    0x4a, 0x4f, 0x50, 0x48, 0x3d, 0x38, 0x3a, 0x3d, 0x48, 0x40, 0x41, 0x49, 0x50, 0x58, 0x5e, 0x5d,\n    0x5c, 0x67, 0x70, 0x60, 0x43, 0x3c, 0x4c, 0x5a, 0x60, 0x60, 0x58, 0x4d, 0x46, 0x41, 0x47, 0x54,\n    0x69, 0x65, 0x58, 0x48, 0x41, 0x4b, 0x61, 0x72, 0x64, 0x66, 0x6a, 0x65, 0x5c, 0x5a, 0x57, 0x4d,\n    0x50, 0x45, 0x3c, 0x3b, 0x38, 0x30, 0x2e, 0x31, 0x49, 0x56, 0x5a, 0x55, 0x53, 0x4d, 0x46, 0x43,\n    0x3f, 0x37, 0x31, 0x2f, 0x3e, 0x46, 0x33, 0x2a, 0x2e, 0x4a, 0x68, 0x72, 0x6c, 0x61, 0x57, 0x51,\n    0x34, 0x32, 0x2c, 0x24, 0x1f, 0x1f, 0x21, 0x23, 0x22, 0x22, 0x20, 0x1d, 0x1e, 0x23, 0x27, 0x27,\n    0x2c, 0x2c, 0x2d, 0x2e, 0x2f, 0x2f, 0x2f, 0x2e, 0x25, 0x1f, 0x1a, 0x19, 0x1a, 0x1a, 0x1a, 0x1c,\n    0x20, 0x23, 0x26, 0x24, 0x20, 0x1f, 0x22, 0x26, 0x2a, 0x2b, 0x2c, 0x2c, 0x2a, 0x26, 0x1f, 0x1b,\n    0x1a, 0x18, 0x17, 0x19, 0x1d, 0x1f, 0x1f, 0x1d, 0x1b, 0x1d, 0x21, 0x24, 0x25, 0x24, 0x22, 0x20,\n    0x23, 0x24, 0x25, 0x26, 0x26, 0x24, 0x20, 0x1d, 0x1a, 0x1e, 0x1f, 0x1b, 0x18, 0x1a, 0x1f, 0x22,\n    0x1e, 0x1a, 0x16, 0x16, 0x19, 0x1a, 0x18, 0x15, 0x14, 0x16, 0x1a, 0x21, 0x27, 0x2c, 0x2e, 0x2e,\n    0x30, 0x2f, 0x2d, 0x29, 0x26, 0x26, 0x2c, 0x31, 0x35, 0x38, 0x3c, 0x3c, 0x39, 0x35, 0x32, 0x31,\n    0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2c, 0x2b, 0x2d, 0x2d, 0x2e, 0x2f, 0x30, 0x30, 0x30, 0x2f,\n    0x31, 0x35, 0x36, 0x34, 0x31, 0x30, 0x2e, 0x2b, 0x29, 0x26, 0x25, 0x2b, 0x36, 0x42, 0x50, 0x5b,\n    0x67, 0x69, 0x63, 0x55, 0x4d, 0x50, 0x58, 0x5b, 0x63, 0x66, 0x6c, 0x6c, 0x60, 0x52, 0x4f, 0x55,\n    0x5c, 0x5a, 0x4c, 0x35, 0x27, 0x27, 0x2a, 0x28, 0x24, 0x29, 0x2d, 0x2c, 0x27, 0x22, 0x21, 0x21,\n    0x28, 0x28, 0x2a, 0x2e, 0x32, 0x34, 0x33, 0x31, 0x2b, 0x2b, 0x2b, 0x2a, 0x27, 0x27, 0x2b, 0x2f,\n    0x32, 0x38, 0x3e, 0x3f, 0x3e, 0x41, 0x49, 0x50, 0x4b, 0x46, 0x42, 0x42, 0x48, 0x4d, 0x4e, 0x4b,\n    0x51, 0x53, 0x57, 0x58, 0x57, 0x53, 0x4e, 0x4b, 0x46, 0x48, 0x4b, 0x4d, 0x4f, 0x52, 0x57, 0x5b,\n    0x5e, 0x5e, 0x5c, 0x5c, 0x5b, 0x5b, 0x5a, 0x5a, 0x56, 0x58, 0x58, 0x59, 0x5f, 0x68, 0x6e, 0x6f,\n    0x6a, 0x71, 0x6d, 0x5c, 0x49, 0x3f, 0x3a, 0x38, 0x42, 0x40, 0x40, 0x43, 0x47, 0x4a, 0x4f, 0x53,\n    0x72, 0x7d, 0x7e, 0x76, 0x6f, 0x66, 0x5f, 0x5f, 0x5e, 0x61, 0x61, 0x62, 0x6e, 0x80, 0x87, 0x83,\n    0x7b, 0x79, 0x87, 0x97, 0x9d, 0xa0, 0x9a, 0x8a, 0x89, 0x87, 0x86, 0x87, 0x89, 0x8a, 0x89, 0x87,\n    0x87, 0x88, 0x8a, 0x8b, 0x8c, 0x8f, 0x92, 0x94, 0x96, 0x98, 0x9c, 0x9f, 0xa1, 0xa3, 0xa5, 0xa7,\n    0xaa, 0xac, 0xaf, 0xb0, 0xaf, 0xaf, 0xb1, 0xb3, 0xb2, 0xb2, 0xb3, 0xb4, 0xb4, 0xb5, 0xb6, 0xb6,\n    0xba, 0xba, 0xba, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xb9, 0xb9, 0xb8, 0xb8, 0xb7, 0xb7, 0xb7, 0xb7,\n    0xb5, 0xb4, 0xb3, 0xb3, 0xb4, 0xb4, 0xb3, 0xb2, 0xb2, 0xb2, 0xb1, 0xb0, 0xaf, 0xaf, 0xae, 0xae,\n    0xaf, 0xaf, 0xb0, 0xb1, 0xb3, 0xb5, 0xb6, 0xb7, 0xbb, 0xbc, 0xbc, 0xbd, 0xbd, 0xbe, 0xbf, 0xc0,\n    0xbf, 0xbd, 0xba, 0xb8, 0xb7, 0xb5, 0xb3, 0xb2, 0xb1, 0xb0, 0xaf, 0xae, 0xad, 0xaa, 0xa7, 0xa5,\n    0xa5, 0xa4, 0xa3, 0xa2, 0xa1, 0xa0, 0xa1, 0xa2, 0x9e, 0x9b, 0x98, 0x94, 0x8d, 0x82, 0x74, 0x6a,\n    0x5a, 0x57, 0x52, 0x4f, 0x4f, 0x50, 0x52, 0x53, 0x58, 0x59, 0x5c, 0x5d, 0x5f, 0x62, 0x65, 0x67,\n    0x67, 0x6b, 0x6f, 0x73, 0x76, 0x7b, 0x82, 0x87, 0x8a, 0x8d, 0x90, 0x92, 0x93, 0x93, 0x92, 0x92,\n    0x91, 0x8f, 0x8d, 0x8b, 0x88, 0x83, 0x7d, 0x78, 0x72, 0x6c, 0x66, 0x64, 0x62, 0x5c, 0x52, 0x4b,\n    0x4f, 0x6f, 0x70, 0x62, 0x6b, 0x6f, 0x6c, 0x75, 0x71, 0x71, 0x71, 0x70, 0x6e, 0x6e, 0x70, 0x72,\n    0x74, 0x73, 0x71, 0x70, 0x71, 0x73, 0x73, 0x73, 0x6d, 0x65, 0x5d, 0x5b, 0x5b, 0x58, 0x54, 0x51,\n    0x4f, 0x51, 0x57, 0x74, 0x9c, 0xa3, 0x7e, 0x56, 0x4f, 0x58, 0x64, 0x72, 0x7b, 0x74, 0x67, 0x63,\n    0x5f, 0x61, 0x5f, 0x5a, 0x5d, 0x69, 0x79, 0x83, 0x67, 0x55, 0x52, 0x4c, 0x4b, 0x4d, 0x4b, 0x5b,\n    0x63, 0x61, 0x51, 0x41, 0x3c, 0x39, 0x3f, 0x4f, 0x4a, 0x41, 0x33, 0x2c, 0x30, 0x39, 0x3e, 0x3e,\n    0x3c, 0x39, 0x34, 0x30, 0x29, 0x26, 0x2a, 0x31, 0x37, 0x32, 0x2e, 0x2c, 0x2a, 0x29, 0x2c, 0x30,\n    0x42, 0x46, 0x45, 0x4b, 0x5e, 0x6a, 0x61, 0x53, 0x37, 0x3a, 0x49, 0x57, 0x54, 0x47, 0x44, 0x4a,\n    0x4d, 0x4f, 0x4e, 0x44, 0x37, 0x32, 0x3c, 0x48, 0x59, 0x4f, 0x3e, 0x39, 0x48, 0x59, 0x61, 0x64,\n    0x65, 0x6d, 0x69, 0x4c, 0x2f, 0x36, 0x51, 0x60, 0x64, 0x5c, 0x4a, 0x3e, 0x3c, 0x3f, 0x49, 0x57,\n    0x65, 0x5d, 0x4d, 0x3d, 0x3c, 0x4d, 0x63, 0x71, 0x6b, 0x67, 0x68, 0x67, 0x5e, 0x59, 0x5b, 0x5b,\n    0x5f, 0x53, 0x46, 0x3a, 0x2b, 0x21, 0x27, 0x35, 0x52, 0x5d, 0x61, 0x5e, 0x5b, 0x4f, 0x3f, 0x36,\n    0x37, 0x2c, 0x2d, 0x33, 0x3e, 0x3a, 0x2b, 0x30, 0x4e, 0x68, 0x7c, 0x79, 0x6d, 0x65, 0x5d, 0x53,\n    0x34, 0x34, 0x31, 0x2a, 0x24, 0x21, 0x22, 0x24, 0x24, 0x27, 0x28, 0x26, 0x26, 0x2a, 0x2a, 0x28,\n    0x2b, 0x2b, 0x2a, 0x2a, 0x2b, 0x2c, 0x2b, 0x2b, 0x26, 0x1f, 0x19, 0x19, 0x1c, 0x1d, 0x1e, 0x1e,\n    0x20, 0x23, 0x26, 0x25, 0x22, 0x20, 0x22, 0x25, 0x29, 0x2c, 0x30, 0x33, 0x32, 0x2c, 0x23, 0x1d,\n    0x16, 0x18, 0x1b, 0x1e, 0x1f, 0x1f, 0x1d, 0x1c, 0x1d, 0x1b, 0x1b, 0x1f, 0x25, 0x27, 0x25, 0x21,\n    0x25, 0x25, 0x27, 0x29, 0x2b, 0x29, 0x25, 0x22, 0x1c, 0x20, 0x22, 0x1d, 0x18, 0x1b, 0x21, 0x26,\n    0x23, 0x1e, 0x19, 0x18, 0x1a, 0x1a, 0x18, 0x14, 0x16, 0x17, 0x19, 0x20, 0x28, 0x30, 0x35, 0x37,\n    0x34, 0x31, 0x2d, 0x27, 0x22, 0x21, 0x26, 0x2c, 0x34, 0x35, 0x37, 0x38, 0x36, 0x31, 0x2a, 0x26,\n    0x28, 0x29, 0x2a, 0x2b, 0x2d, 0x2e, 0x2d, 0x2c, 0x2c, 0x2b, 0x2a, 0x2b, 0x2d, 0x2c, 0x28, 0x25,\n    0x27, 0x2a, 0x2d, 0x30, 0x34, 0x35, 0x31, 0x2b, 0x26, 0x28, 0x2e, 0x38, 0x42, 0x4e, 0x5c, 0x67,\n    0x68, 0x73, 0x78, 0x71, 0x68, 0x62, 0x5c, 0x56, 0x50, 0x4a, 0x4b, 0x52, 0x52, 0x47, 0x41, 0x42,\n    0x53, 0x5f, 0x5c, 0x43, 0x2c, 0x28, 0x2a, 0x2a, 0x2a, 0x2e, 0x31, 0x2f, 0x29, 0x24, 0x23, 0x24,\n    0x29, 0x28, 0x2a, 0x2e, 0x34, 0x3a, 0x3c, 0x3c, 0x39, 0x37, 0x35, 0x32, 0x2e, 0x2d, 0x31, 0x35,\n    0x3a, 0x3f, 0x43, 0x40, 0x3b, 0x3c, 0x45, 0x4e, 0x52, 0x47, 0x41, 0x44, 0x48, 0x48, 0x49, 0x4d,\n    0x48, 0x4c, 0x52, 0x54, 0x53, 0x50, 0x4c, 0x4a, 0x49, 0x48, 0x48, 0x48, 0x4a, 0x4f, 0x54, 0x58,\n    0x5f, 0x5e, 0x5d, 0x5c, 0x5b, 0x59, 0x57, 0x56, 0x57, 0x59, 0x5a, 0x5a, 0x5e, 0x64, 0x65, 0x62,\n    0x5e, 0x6c, 0x71, 0x63, 0x53, 0x48, 0x3e, 0x34, 0x3a, 0x41, 0x4e, 0x5c, 0x64, 0x69, 0x70, 0x76,\n    0x76, 0x7c, 0x75, 0x68, 0x61, 0x5e, 0x5d, 0x62, 0x61, 0x65, 0x65, 0x65, 0x6f, 0x7f, 0x87, 0x85,\n    0x84, 0x7a, 0x80, 0x8d, 0x94, 0x9c, 0x9a, 0x8b, 0x8b, 0x88, 0x87, 0x88, 0x8b, 0x8c, 0x8a, 0x88,\n    0x87, 0x88, 0x8a, 0x8b, 0x8d, 0x90, 0x93, 0x95, 0x98, 0x9a, 0x9d, 0xa0, 0xa3, 0xa5, 0xa8, 0xa9,\n    0xa9, 0xac, 0xaf, 0xaf, 0xad, 0xad, 0xaf, 0xb1, 0xb1, 0xb2, 0xb2, 0xb3, 0xb4, 0xb4, 0xb5, 0xb5,\n    0xb9, 0xba, 0xba, 0xba, 0xb9, 0xb9, 0xb8, 0xb7, 0xb7, 0xb6, 0xb5, 0xb4, 0xb4, 0xb4, 0xb5, 0xb5,\n    0xb4, 0xb3, 0xb2, 0xb2, 0xb2, 0xb1, 0xb0, 0xaf, 0xae, 0xae, 0xad, 0xac, 0xab, 0xaa, 0xaa, 0xa9,\n    0xab, 0xab, 0xac, 0xae, 0xb0, 0xb3, 0xb6, 0xb8, 0xbc, 0xbd, 0xbd, 0xbe, 0xbf, 0xc0, 0xc1, 0xc2,\n    0xc1, 0xbf, 0xbc, 0xba, 0xb8, 0xb6, 0xb4, 0xb2, 0xb3, 0xb2, 0xb1, 0xb0, 0xaf, 0xad, 0xaa, 0xa7,\n    0xa8, 0xa7, 0xa6, 0xa4, 0xa3, 0xa3, 0xa4, 0xa5, 0xa2, 0x9f, 0x9c, 0x9c, 0x9b, 0x94, 0x88, 0x7f,\n    0x70, 0x68, 0x5e, 0x55, 0x52, 0x51, 0x52, 0x52, 0x4f, 0x51, 0x53, 0x55, 0x57, 0x5a, 0x5d, 0x5f,\n    0x5f, 0x64, 0x69, 0x6e, 0x72, 0x79, 0x81, 0x87, 0x8b, 0x8d, 0x91, 0x92, 0x92, 0x91, 0x90, 0x8f,\n    0x8d, 0x8b, 0x8a, 0x89, 0x87, 0x83, 0x7c, 0x77, 0x72, 0x6b, 0x65, 0x62, 0x60, 0x5a, 0x51, 0x4b,\n    0x6b, 0x70, 0x76, 0x6b, 0x5d, 0x67, 0x71, 0x67, 0x6d, 0x6d, 0x6c, 0x6a, 0x67, 0x66, 0x68, 0x6a,\n    0x72, 0x72, 0x70, 0x6d, 0x6a, 0x69, 0x6b, 0x6d, 0x6c, 0x6e, 0x6b, 0x64, 0x62, 0x64, 0x64, 0x61,\n    0x55, 0x4f, 0x55, 0x7a, 0x9d, 0x91, 0x6d, 0x5d, 0x51, 0x66, 0x76, 0x84, 0x8f, 0x82, 0x6b, 0x63,\n    0x61, 0x5b, 0x53, 0x52, 0x5d, 0x6a, 0x6e, 0x6b, 0x68, 0x50, 0x4d, 0x4a, 0x4a, 0x4a, 0x45, 0x56,\n    0x5d, 0x59, 0x4b, 0x47, 0x4f, 0x50, 0x53, 0x63, 0x62, 0x55, 0x43, 0x36, 0x36, 0x3e, 0x44, 0x44,\n    0x3f, 0x3b, 0x38, 0x36, 0x31, 0x2c, 0x2b, 0x2e, 0x36, 0x34, 0x31, 0x2e, 0x2a, 0x27, 0x2a, 0x2e,\n    0x4b, 0x58, 0x58, 0x5b, 0x6b, 0x6e, 0x5f, 0x53, 0x45, 0x47, 0x4d, 0x53, 0x4f, 0x41, 0x41, 0x50,\n    0x55, 0x52, 0x4a, 0x3a, 0x2a, 0x2a, 0x40, 0x59, 0x59, 0x4c, 0x2f, 0x26, 0x46, 0x64, 0x67, 0x62,\n    0x67, 0x6b, 0x5d, 0x3d, 0x2e, 0x46, 0x63, 0x69, 0x60, 0x58, 0x4a, 0x43, 0x46, 0x47, 0x4a, 0x52,\n    0x64, 0x5d, 0x4d, 0x40, 0x44, 0x58, 0x6c, 0x76, 0x73, 0x6c, 0x70, 0x72, 0x65, 0x5c, 0x68, 0x77,\n    0x68, 0x57, 0x44, 0x33, 0x26, 0x25, 0x38, 0x4e, 0x61, 0x67, 0x63, 0x5d, 0x5a, 0x51, 0x42, 0x3b,\n    0x47, 0x45, 0x46, 0x3d, 0x34, 0x2e, 0x2e, 0x44, 0x5e, 0x61, 0x65, 0x6b, 0x72, 0x70, 0x61, 0x51,\n    0x31, 0x37, 0x39, 0x30, 0x25, 0x1f, 0x22, 0x25, 0x2b, 0x2a, 0x28, 0x28, 0x29, 0x2c, 0x2f, 0x31,\n    0x2d, 0x2a, 0x29, 0x2c, 0x2b, 0x26, 0x23, 0x23, 0x24, 0x20, 0x1c, 0x1a, 0x1b, 0x1d, 0x1d, 0x1d,\n    0x21, 0x20, 0x1f, 0x21, 0x23, 0x25, 0x24, 0x23, 0x24, 0x22, 0x25, 0x2b, 0x2d, 0x28, 0x22, 0x20,\n    0x1c, 0x19, 0x1a, 0x1f, 0x23, 0x22, 0x1e, 0x1c, 0x18, 0x1a, 0x1b, 0x1d, 0x23, 0x28, 0x26, 0x1f,\n    0x25, 0x21, 0x23, 0x2a, 0x2e, 0x2c, 0x29, 0x28, 0x23, 0x22, 0x21, 0x20, 0x1d, 0x1a, 0x1d, 0x21,\n    0x24, 0x21, 0x1d, 0x1a, 0x17, 0x15, 0x12, 0x10, 0x11, 0x14, 0x18, 0x1e, 0x24, 0x2a, 0x31, 0x35,\n    0x37, 0x38, 0x34, 0x2c, 0x24, 0x22, 0x22, 0x22, 0x2d, 0x2f, 0x32, 0x34, 0x34, 0x30, 0x2c, 0x29,\n    0x27, 0x2a, 0x2a, 0x29, 0x2b, 0x2f, 0x2e, 0x29, 0x29, 0x2b, 0x2c, 0x2b, 0x2a, 0x2a, 0x2c, 0x2e,\n    0x2c, 0x2e, 0x31, 0x34, 0x35, 0x32, 0x2d, 0x29, 0x28, 0x29, 0x2a, 0x31, 0x40, 0x50, 0x58, 0x58,\n    0x54, 0x59, 0x60, 0x67, 0x6c, 0x6e, 0x70, 0x70, 0x67, 0x5c, 0x54, 0x54, 0x56, 0x50, 0x46, 0x3f,\n    0x43, 0x48, 0x45, 0x3a, 0x33, 0x32, 0x30, 0x29, 0x28, 0x2d, 0x30, 0x2f, 0x29, 0x25, 0x26, 0x29,\n    0x24, 0x26, 0x2a, 0x32, 0x39, 0x3d, 0x3c, 0x39, 0x3c, 0x37, 0x38, 0x3d, 0x3a, 0x30, 0x2e, 0x34,\n    0x3f, 0x3f, 0x40, 0x40, 0x40, 0x40, 0x40, 0x3f, 0x42, 0x45, 0x48, 0x4a, 0x49, 0x48, 0x47, 0x47,\n    0x46, 0x48, 0x4a, 0x4b, 0x4a, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x4a, 0x4c, 0x4e, 0x50, 0x52,\n    0x57, 0x5a, 0x5b, 0x58, 0x58, 0x5c, 0x60, 0x60, 0x5a, 0x5a, 0x5b, 0x5d, 0x60, 0x62, 0x64, 0x64,\n    0x5d, 0x5f, 0x5d, 0x57, 0x4c, 0x43, 0x3e, 0x3c, 0x41, 0x49, 0x52, 0x57, 0x58, 0x5a, 0x61, 0x67,\n    0x65, 0x6a, 0x6f, 0x6f, 0x68, 0x61, 0x5d, 0x5b, 0x62, 0x64, 0x66, 0x66, 0x6a, 0x73, 0x81, 0x8b,\n    0x86, 0x7e, 0x7c, 0x88, 0x8a, 0x8d, 0x93, 0x85, 0x89, 0x88, 0x88, 0x88, 0x89, 0x8a, 0x8b, 0x8c,\n    0x8a, 0x8a, 0x8c, 0x8d, 0x90, 0x92, 0x94, 0x95, 0x97, 0x9a, 0x9e, 0xa2, 0xa5, 0xa6, 0xa6, 0xa6,\n    0xa9, 0xaa, 0xab, 0xab, 0xab, 0xab, 0xac, 0xad, 0xaf, 0xaf, 0xaf, 0xaf, 0xb0, 0xb0, 0xb1, 0xb2,\n    0xb3, 0xb4, 0xb4, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb4, 0xb2, 0xb0, 0xaf, 0xb0, 0xb0, 0xb1, 0xb1,\n    0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xaf, 0xac, 0xaa, 0xa7, 0xa6, 0xa4, 0xa3, 0xa2, 0xa2, 0xa2, 0xa2,\n    0xa4, 0xa5, 0xa8, 0xab, 0xae, 0xb3, 0xb6, 0xb8, 0xbc, 0xbe, 0xc0, 0xc1, 0xc1, 0xc1, 0xc2, 0xc4,\n    0xc2, 0xc1, 0xbf, 0xbd, 0xbb, 0xba, 0xb9, 0xb8, 0xb6, 0xb4, 0xb2, 0xb1, 0xb0, 0xaf, 0xac, 0xab,\n    0xa7, 0xa7, 0xa8, 0xa7, 0xa7, 0xa5, 0xa4, 0xa3, 0xa4, 0xa5, 0xa6, 0xa5, 0xa0, 0x9b, 0x97, 0x95,\n    0x8a, 0x84, 0x7a, 0x6f, 0x64, 0x5d, 0x58, 0x56, 0x57, 0x56, 0x56, 0x56, 0x58, 0x5a, 0x5d, 0x5f,\n    0x64, 0x68, 0x6f, 0x75, 0x7a, 0x80, 0x86, 0x8a, 0x8e, 0x8e, 0x8e, 0x8f, 0x90, 0x90, 0x8e, 0x8c,\n    0x8d, 0x8b, 0x88, 0x86, 0x84, 0x81, 0x7c, 0x78, 0x73, 0x6f, 0x64, 0x5f, 0x62, 0x58, 0x51, 0x5b,\n    0x73, 0x81, 0x80, 0x6d, 0x61, 0x66, 0x6a, 0x68, 0x65, 0x67, 0x69, 0x67, 0x62, 0x5e, 0x62, 0x69,\n    0x6f, 0x70, 0x6f, 0x6a, 0x65, 0x61, 0x5c, 0x58, 0x56, 0x5d, 0x60, 0x5a, 0x50, 0x4c, 0x51, 0x57,\n    0x52, 0x46, 0x67, 0x90, 0x8e, 0x7c, 0x6a, 0x53, 0x5b, 0x65, 0x7e, 0x95, 0x93, 0x7b, 0x68, 0x64,\n    0x69, 0x69, 0x5f, 0x56, 0x5a, 0x60, 0x64, 0x68, 0x59, 0x4c, 0x42, 0x4c, 0x44, 0x54, 0x54, 0x52,\n    0x60, 0x5c, 0x53, 0x4a, 0x4a, 0x51, 0x57, 0x58, 0x52, 0x46, 0x3e, 0x3c, 0x3b, 0x40, 0x43, 0x3f,\n    0x42, 0x41, 0x52, 0x54, 0x4e, 0x38, 0x36, 0x31, 0x39, 0x31, 0x31, 0x37, 0x35, 0x2a, 0x27, 0x2c,\n    0x3e, 0x58, 0x6f, 0x74, 0x70, 0x6b, 0x60, 0x53, 0x4d, 0x4e, 0x56, 0x4c, 0x45, 0x36, 0x3f, 0x48,\n    0x4f, 0x4a, 0x3e, 0x29, 0x1c, 0x2d, 0x4d, 0x60, 0x69, 0x47, 0x2c, 0x34, 0x4f, 0x62, 0x65, 0x62,\n    0x64, 0x65, 0x60, 0x50, 0x49, 0x57, 0x66, 0x66, 0x62, 0x60, 0x5a, 0x55, 0x4c, 0x3d, 0x3c, 0x4a,\n    0x46, 0x45, 0x3c, 0x31, 0x33, 0x45, 0x55, 0x5c, 0x5a, 0x53, 0x45, 0x3d, 0x4a, 0x5a, 0x56, 0x45,\n    0x40, 0x41, 0x3c, 0x30, 0x2d, 0x3a, 0x4e, 0x5b, 0x65, 0x71, 0x74, 0x6e, 0x64, 0x54, 0x48, 0x47,\n    0x4f, 0x51, 0x4b, 0x46, 0x42, 0x34, 0x32, 0x45, 0x51, 0x61, 0x5e, 0x59, 0x51, 0x48, 0x4d, 0x50,\n    0x3b, 0x38, 0x36, 0x33, 0x2c, 0x26, 0x29, 0x31, 0x2a, 0x2b, 0x2b, 0x2d, 0x2f, 0x31, 0x33, 0x35,\n    0x34, 0x33, 0x34, 0x34, 0x30, 0x28, 0x23, 0x23, 0x21, 0x1f, 0x1c, 0x1b, 0x1c, 0x1d, 0x1f, 0x1f,\n    0x1f, 0x20, 0x20, 0x20, 0x20, 0x21, 0x23, 0x25, 0x23, 0x20, 0x1f, 0x22, 0x22, 0x1f, 0x1b, 0x1a,\n    0x1c, 0x1a, 0x1b, 0x20, 0x24, 0x23, 0x1f, 0x1d, 0x18, 0x19, 0x19, 0x1a, 0x1f, 0x25, 0x27, 0x24,\n    0x24, 0x20, 0x21, 0x27, 0x2b, 0x2a, 0x27, 0x26, 0x25, 0x23, 0x22, 0x22, 0x1f, 0x1c, 0x1d, 0x1f,\n    0x23, 0x20, 0x1d, 0x1a, 0x17, 0x16, 0x15, 0x14, 0x15, 0x16, 0x17, 0x1a, 0x1f, 0x27, 0x2f, 0x35,\n    0x35, 0x34, 0x30, 0x29, 0x23, 0x20, 0x1c, 0x18, 0x21, 0x24, 0x28, 0x2c, 0x2e, 0x2e, 0x2d, 0x2c,\n    0x2b, 0x2b, 0x2a, 0x28, 0x2b, 0x31, 0x33, 0x31, 0x29, 0x2a, 0x2c, 0x2c, 0x2c, 0x2b, 0x2b, 0x2b,\n    0x2d, 0x2f, 0x31, 0x32, 0x32, 0x2f, 0x2c, 0x2a, 0x2c, 0x2e, 0x32, 0x37, 0x41, 0x49, 0x4a, 0x45,\n    0x45, 0x4f, 0x5d, 0x67, 0x6a, 0x6a, 0x6a, 0x6a, 0x70, 0x6b, 0x6c, 0x74, 0x77, 0x6b, 0x57, 0x48,\n    0x43, 0x43, 0x3b, 0x30, 0x2b, 0x2e, 0x2d, 0x29, 0x29, 0x2d, 0x2f, 0x2d, 0x28, 0x24, 0x26, 0x28,\n    0x25, 0x28, 0x2e, 0x35, 0x3b, 0x3f, 0x3f, 0x3e, 0x3c, 0x3a, 0x3b, 0x3e, 0x3b, 0x35, 0x35, 0x39,\n    0x3c, 0x3d, 0x3f, 0x40, 0x41, 0x40, 0x3f, 0x3e, 0x42, 0x44, 0x47, 0x48, 0x48, 0x47, 0x46, 0x46,\n    0x47, 0x47, 0x47, 0x46, 0x47, 0x48, 0x49, 0x4b, 0x4a, 0x49, 0x48, 0x47, 0x48, 0x4b, 0x4e, 0x51,\n    0x54, 0x57, 0x59, 0x57, 0x57, 0x5c, 0x5f, 0x60, 0x5a, 0x59, 0x58, 0x5b, 0x60, 0x62, 0x61, 0x5e,\n    0x5c, 0x5c, 0x59, 0x51, 0x45, 0x3b, 0x36, 0x34, 0x3a, 0x3d, 0x41, 0x43, 0x46, 0x4d, 0x58, 0x60,\n    0x6b, 0x6c, 0x6b, 0x67, 0x61, 0x60, 0x65, 0x6a, 0x69, 0x67, 0x64, 0x63, 0x65, 0x6e, 0x7f, 0x8f,\n    0x8b, 0x82, 0x7b, 0x81, 0x80, 0x83, 0x8e, 0x84, 0x88, 0x89, 0x89, 0x89, 0x8a, 0x8b, 0x8b, 0x8c,\n    0x8b, 0x8b, 0x8c, 0x8e, 0x90, 0x92, 0x94, 0x95, 0x98, 0x9a, 0x9e, 0xa1, 0xa3, 0xa4, 0xa4, 0xa3,\n    0xa6, 0xa7, 0xa9, 0xaa, 0xaa, 0xaa, 0xab, 0xac, 0xa9, 0xa9, 0xaa, 0xab, 0xac, 0xad, 0xae, 0xae,\n    0xb0, 0xb1, 0xb2, 0xb2, 0xb3, 0xb3, 0xb3, 0xb3, 0xaf, 0xae, 0xab, 0xaa, 0xab, 0xab, 0xaa, 0xa9,\n    0xab, 0xa9, 0xa7, 0xa6, 0xa6, 0xa5, 0xa3, 0xa2, 0x9e, 0x9d, 0x9c, 0x9a, 0x99, 0x98, 0x98, 0x98,\n    0x9b, 0x9e, 0xa2, 0xa7, 0xab, 0xb0, 0xb6, 0xb9, 0xbd, 0xbf, 0xc2, 0xc3, 0xc3, 0xc4, 0xc4, 0xc5,\n    0xc4, 0xc3, 0xc1, 0xbf, 0xbd, 0xbb, 0xba, 0xb9, 0xb7, 0xb5, 0xb3, 0xb2, 0xb1, 0xb0, 0xad, 0xac,\n    0xa9, 0xa9, 0xa9, 0xa9, 0xa8, 0xa7, 0xa7, 0xa6, 0xa5, 0xa7, 0xa8, 0xa6, 0xa3, 0x9f, 0x9d, 0x9b,\n    0x9c, 0x98, 0x92, 0x8b, 0x84, 0x7d, 0x79, 0x76, 0x70, 0x6f, 0x6d, 0x6c, 0x6d, 0x6f, 0x72, 0x74,\n    0x79, 0x7c, 0x81, 0x85, 0x88, 0x8b, 0x8f, 0x92, 0x91, 0x91, 0x91, 0x92, 0x92, 0x91, 0x8f, 0x8d,\n    0x8e, 0x8b, 0x88, 0x86, 0x85, 0x82, 0x7d, 0x79, 0x74, 0x70, 0x68, 0x63, 0x60, 0x59, 0x5a, 0x64,\n    0x74, 0x83, 0x8a, 0x7f, 0x6b, 0x60, 0x61, 0x65, 0x5a, 0x5c, 0x5f, 0x62, 0x60, 0x5f, 0x62, 0x68,\n    0x6a, 0x6b, 0x6a, 0x68, 0x65, 0x60, 0x56, 0x4d, 0x48, 0x56, 0x5d, 0x5b, 0x5b, 0x5e, 0x59, 0x4e,\n    0x46, 0x62, 0x8d, 0x98, 0x7e, 0x6a, 0x61, 0x51, 0x63, 0x6b, 0x7d, 0x8c, 0x86, 0x72, 0x68, 0x6c,\n    0x71, 0x69, 0x58, 0x51, 0x5a, 0x5f, 0x59, 0x54, 0x55, 0x4e, 0x46, 0x4e, 0x48, 0x53, 0x51, 0x50,\n    0x5d, 0x60, 0x60, 0x5b, 0x57, 0x56, 0x55, 0x53, 0x49, 0x43, 0x42, 0x42, 0x3f, 0x41, 0x42, 0x3d,\n    0x3c, 0x3b, 0x54, 0x66, 0x6e, 0x57, 0x46, 0x33, 0x37, 0x2d, 0x28, 0x2a, 0x2c, 0x29, 0x2b, 0x30,\n    0x32, 0x52, 0x71, 0x7d, 0x79, 0x6f, 0x5f, 0x4f, 0x4d, 0x49, 0x4e, 0x47, 0x44, 0x36, 0x3e, 0x47,\n    0x53, 0x4e, 0x40, 0x27, 0x18, 0x2e, 0x5b, 0x78, 0x61, 0x41, 0x2b, 0x36, 0x4e, 0x5a, 0x58, 0x54,\n    0x6a, 0x6c, 0x5e, 0x4a, 0x47, 0x57, 0x63, 0x65, 0x64, 0x6a, 0x63, 0x50, 0x40, 0x33, 0x2e, 0x31,\n    0x1e, 0x23, 0x23, 0x1f, 0x24, 0x32, 0x3d, 0x3f, 0x37, 0x2c, 0x2a, 0x3a, 0x51, 0x5d, 0x5e, 0x5a,\n    0x4e, 0x49, 0x40, 0x38, 0x39, 0x45, 0x57, 0x65, 0x71, 0x70, 0x6b, 0x6c, 0x70, 0x64, 0x51, 0x46,\n    0x48, 0x57, 0x5d, 0x5a, 0x4b, 0x30, 0x2a, 0x3d, 0x64, 0x67, 0x60, 0x6a, 0x74, 0x6a, 0x5e, 0x51,\n    0x48, 0x42, 0x42, 0x44, 0x3d, 0x2e, 0x28, 0x2b, 0x29, 0x2a, 0x2c, 0x2e, 0x30, 0x31, 0x32, 0x33,\n    0x2d, 0x2f, 0x31, 0x31, 0x2d, 0x26, 0x23, 0x23, 0x21, 0x21, 0x20, 0x1f, 0x1e, 0x1e, 0x1f, 0x20,\n    0x21, 0x22, 0x23, 0x21, 0x20, 0x21, 0x25, 0x29, 0x27, 0x22, 0x1d, 0x1d, 0x1d, 0x1b, 0x1a, 0x1a,\n    0x1c, 0x1a, 0x1c, 0x21, 0x24, 0x21, 0x1e, 0x1c, 0x1b, 0x1b, 0x1a, 0x18, 0x1b, 0x22, 0x27, 0x28,\n    0x24, 0x20, 0x1e, 0x21, 0x24, 0x25, 0x23, 0x22, 0x22, 0x1f, 0x1e, 0x1f, 0x1e, 0x1c, 0x1b, 0x1c,\n    0x20, 0x1f, 0x1d, 0x19, 0x16, 0x14, 0x14, 0x14, 0x16, 0x17, 0x18, 0x1a, 0x1d, 0x23, 0x29, 0x2e,\n    0x33, 0x33, 0x31, 0x2e, 0x2d, 0x2c, 0x28, 0x24, 0x26, 0x27, 0x28, 0x2a, 0x2b, 0x2c, 0x2c, 0x2c,\n    0x29, 0x29, 0x28, 0x28, 0x2a, 0x2f, 0x31, 0x30, 0x2c, 0x2d, 0x2e, 0x30, 0x31, 0x30, 0x2e, 0x2c,\n    0x33, 0x35, 0x36, 0x35, 0x32, 0x30, 0x2f, 0x2f, 0x32, 0x36, 0x3b, 0x43, 0x4d, 0x55, 0x58, 0x56,\n    0x4c, 0x51, 0x56, 0x58, 0x58, 0x5b, 0x62, 0x69, 0x61, 0x65, 0x6e, 0x76, 0x73, 0x63, 0x4e, 0x40,\n    0x52, 0x4a, 0x3c, 0x30, 0x2f, 0x34, 0x35, 0x32, 0x2c, 0x2f, 0x31, 0x2e, 0x29, 0x26, 0x27, 0x2a,\n    0x27, 0x2b, 0x31, 0x36, 0x3a, 0x3b, 0x3c, 0x3d, 0x3c, 0x3d, 0x3e, 0x3d, 0x3d, 0x3d, 0x3e, 0x3f,\n    0x3c, 0x3d, 0x3f, 0x41, 0x41, 0x3f, 0x3d, 0x3b, 0x41, 0x43, 0x45, 0x45, 0x45, 0x44, 0x44, 0x45,\n    0x44, 0x42, 0x41, 0x41, 0x42, 0x46, 0x4a, 0x4d, 0x4b, 0x4a, 0x47, 0x45, 0x46, 0x49, 0x4c, 0x4e,\n    0x51, 0x54, 0x55, 0x54, 0x55, 0x57, 0x5a, 0x5a, 0x57, 0x55, 0x54, 0x59, 0x5f, 0x62, 0x5f, 0x5b,\n    0x4f, 0x51, 0x52, 0x4f, 0x4b, 0x49, 0x4a, 0x4c, 0x49, 0x4a, 0x4b, 0x4d, 0x50, 0x58, 0x62, 0x6a,\n    0x5f, 0x60, 0x5f, 0x5b, 0x59, 0x5e, 0x69, 0x73, 0x6d, 0x68, 0x66, 0x66, 0x65, 0x69, 0x7a, 0x8d,\n    0x8f, 0x8a, 0x82, 0x82, 0x7f, 0x80, 0x8b, 0x87, 0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8c, 0x8b, 0x8b,\n    0x8c, 0x8c, 0x8d, 0x8e, 0x90, 0x92, 0x94, 0x95, 0x98, 0x9a, 0x9d, 0x9f, 0xa1, 0xa1, 0xa1, 0xa0,\n    0xa3, 0xa5, 0xa7, 0xa8, 0xa7, 0xa7, 0xa6, 0xa7, 0xa5, 0xa6, 0xa7, 0xa8, 0xaa, 0xab, 0xac, 0xad,\n    0xad, 0xad, 0xae, 0xae, 0xaf, 0xae, 0xae, 0xae, 0xad, 0xab, 0xa9, 0xa8, 0xa7, 0xa6, 0xa4, 0xa2,\n    0xa5, 0xa2, 0x9f, 0x9d, 0x9c, 0x9b, 0x9a, 0x9a, 0x93, 0x92, 0x90, 0x8f, 0x8e, 0x8e, 0x8e, 0x8e,\n    0x93, 0x98, 0x9e, 0xa3, 0xa7, 0xac, 0xb3, 0xb8, 0xbd, 0xbf, 0xc3, 0xc5, 0xc6, 0xc6, 0xc6, 0xc6,\n    0xc6, 0xc5, 0xc4, 0xc1, 0xbf, 0xbc, 0xba, 0xb9, 0xb7, 0xb5, 0xb4, 0xb2, 0xb1, 0xaf, 0xad, 0xab,\n    0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa6, 0xa8, 0xa8, 0xa8, 0xa6, 0xa4, 0xa3, 0xa3,\n    0xa4, 0xa3, 0xa2, 0xa0, 0x9c, 0x98, 0x95, 0x92, 0x90, 0x8e, 0x8c, 0x8a, 0x89, 0x8a, 0x8c, 0x8d,\n    0x90, 0x92, 0x94, 0x95, 0x95, 0x96, 0x97, 0x98, 0x98, 0x97, 0x96, 0x96, 0x95, 0x93, 0x90, 0x8d,\n    0x8d, 0x8b, 0x88, 0x86, 0x85, 0x82, 0x7d, 0x7a, 0x73, 0x6c, 0x68, 0x64, 0x5b, 0x59, 0x62, 0x69,\n    0x6a, 0x7a, 0x8d, 0x92, 0x7f, 0x67, 0x62, 0x6a, 0x64, 0x63, 0x62, 0x60, 0x5d, 0x5b, 0x5f, 0x64,\n    0x6c, 0x6a, 0x66, 0x65, 0x66, 0x63, 0x59, 0x4d, 0x46, 0x5c, 0x69, 0x66, 0x6a, 0x75, 0x70, 0x5e,\n    0x6d, 0x90, 0xa2, 0x8b, 0x71, 0x6b, 0x64, 0x55, 0x66, 0x6a, 0x75, 0x7a, 0x71, 0x63, 0x64, 0x70,\n    0x72, 0x6d, 0x5d, 0x50, 0x50, 0x50, 0x4e, 0x4f, 0x4b, 0x4f, 0x4a, 0x50, 0x51, 0x55, 0x4e, 0x4f,\n    0x56, 0x5f, 0x66, 0x64, 0x5b, 0x53, 0x4c, 0x49, 0x44, 0x44, 0x47, 0x45, 0x3f, 0x41, 0x43, 0x3e,\n    0x37, 0x35, 0x54, 0x76, 0x8d, 0x75, 0x57, 0x38, 0x30, 0x2e, 0x2e, 0x31, 0x32, 0x2e, 0x29, 0x26,\n    0x3a, 0x53, 0x6d, 0x75, 0x71, 0x6a, 0x5f, 0x56, 0x58, 0x4b, 0x4c, 0x4a, 0x4c, 0x3e, 0x46, 0x4f,\n    0x59, 0x4f, 0x43, 0x36, 0x34, 0x47, 0x5e, 0x65, 0x53, 0x39, 0x2e, 0x44, 0x5f, 0x65, 0x61, 0x60,\n    0x6c, 0x6d, 0x55, 0x3d, 0x44, 0x56, 0x5e, 0x61, 0x61, 0x67, 0x60, 0x4f, 0x3c, 0x2d, 0x29, 0x31,\n    0x55, 0x5c, 0x5d, 0x57, 0x54, 0x55, 0x52, 0x4b, 0x36, 0x36, 0x41, 0x52, 0x5d, 0x5f, 0x5f, 0x62,\n    0x4d, 0x43, 0x3a, 0x38, 0x3a, 0x41, 0x50, 0x5e, 0x69, 0x6f, 0x74, 0x7a, 0x77, 0x62, 0x4c, 0x45,\n    0x4a, 0x54, 0x53, 0x4b, 0x3e, 0x2a, 0x2e, 0x48, 0x53, 0x5d, 0x61, 0x74, 0x7f, 0x70, 0x5c, 0x4a,\n    0x39, 0x38, 0x3a, 0x3d, 0x38, 0x2e, 0x28, 0x29, 0x2a, 0x2b, 0x2b, 0x2c, 0x2d, 0x2e, 0x2e, 0x2e,\n    0x2a, 0x28, 0x27, 0x25, 0x23, 0x21, 0x20, 0x20, 0x25, 0x26, 0x26, 0x24, 0x20, 0x1e, 0x1e, 0x1f,\n    0x22, 0x22, 0x22, 0x22, 0x22, 0x23, 0x25, 0x26, 0x28, 0x23, 0x1e, 0x1c, 0x1d, 0x1e, 0x1e, 0x1e,\n    0x1b, 0x1b, 0x1e, 0x22, 0x22, 0x1e, 0x1b, 0x1a, 0x1e, 0x1e, 0x1c, 0x1a, 0x1a, 0x1e, 0x24, 0x28,\n    0x27, 0x22, 0x1e, 0x1e, 0x21, 0x23, 0x23, 0x23, 0x22, 0x1d, 0x1a, 0x1b, 0x1d, 0x1d, 0x1d, 0x1d,\n    0x1f, 0x20, 0x1f, 0x1d, 0x19, 0x16, 0x14, 0x14, 0x14, 0x17, 0x1a, 0x1d, 0x1f, 0x21, 0x23, 0x24,\n    0x2c, 0x2f, 0x32, 0x33, 0x36, 0x39, 0x3b, 0x3a, 0x34, 0x32, 0x30, 0x2e, 0x2c, 0x2b, 0x2b, 0x2b,\n    0x26, 0x28, 0x2a, 0x2d, 0x2e, 0x2f, 0x2d, 0x2c, 0x2f, 0x2e, 0x2e, 0x31, 0x33, 0x34, 0x33, 0x31,\n    0x36, 0x39, 0x3b, 0x39, 0x35, 0x32, 0x31, 0x33, 0x38, 0x38, 0x3b, 0x43, 0x51, 0x61, 0x6e, 0x73,\n    0x80, 0x7a, 0x70, 0x62, 0x56, 0x52, 0x54, 0x57, 0x59, 0x61, 0x69, 0x6b, 0x63, 0x5a, 0x55, 0x55,\n    0x57, 0x4a, 0x3a, 0x2f, 0x2f, 0x34, 0x35, 0x33, 0x33, 0x34, 0x35, 0x32, 0x2d, 0x2a, 0x2c, 0x2e,\n    0x2e, 0x32, 0x37, 0x39, 0x38, 0x37, 0x37, 0x38, 0x3b, 0x3f, 0x3f, 0x3c, 0x3d, 0x41, 0x43, 0x40,\n    0x40, 0x41, 0x41, 0x40, 0x3f, 0x3d, 0x3b, 0x39, 0x40, 0x41, 0x43, 0x43, 0x43, 0x43, 0x43, 0x44,\n    0x41, 0x3f, 0x3d, 0x3e, 0x41, 0x46, 0x4a, 0x4d, 0x4c, 0x4b, 0x49, 0x47, 0x47, 0x49, 0x4a, 0x4c,\n    0x50, 0x51, 0x52, 0x52, 0x51, 0x51, 0x51, 0x51, 0x50, 0x50, 0x52, 0x58, 0x5e, 0x61, 0x5f, 0x5d,\n    0x52, 0x53, 0x51, 0x4c, 0x46, 0x43, 0x45, 0x48, 0x43, 0x45, 0x49, 0x4d, 0x51, 0x55, 0x58, 0x5a,\n    0x57, 0x5b, 0x5e, 0x5d, 0x5c, 0x5e, 0x65, 0x6b, 0x6a, 0x66, 0x68, 0x6c, 0x69, 0x66, 0x71, 0x83,\n    0x8c, 0x90, 0x8a, 0x89, 0x84, 0x82, 0x8a, 0x88, 0x88, 0x89, 0x8b, 0x8d, 0x8d, 0x8d, 0x8c, 0x8b,\n    0x8d, 0x8d, 0x8e, 0x8f, 0x91, 0x92, 0x94, 0x95, 0x97, 0x99, 0x9b, 0x9e, 0x9f, 0xa0, 0x9f, 0x9f,\n    0xa2, 0xa4, 0xa6, 0xa6, 0xa4, 0xa1, 0x9f, 0x9f, 0xa1, 0xa2, 0xa3, 0xa5, 0xa7, 0xa9, 0xaa, 0xab,\n    0xaa, 0xaa, 0xab, 0xab, 0xab, 0xaa, 0xaa, 0xaa, 0xa9, 0xa8, 0xa6, 0xa4, 0xa2, 0xa0, 0x9d, 0x9a,\n    0x9d, 0x9a, 0x97, 0x95, 0x93, 0x91, 0x90, 0x8e, 0x89, 0x87, 0x85, 0x83, 0x83, 0x86, 0x88, 0x8a,\n    0x91, 0x97, 0x9d, 0xa1, 0xa3, 0xa7, 0xae, 0xb4, 0xb9, 0xbc, 0xc1, 0xc4, 0xc6, 0xc6, 0xc7, 0xc7,\n    0xc7, 0xc6, 0xc5, 0xc2, 0xc0, 0xbd, 0xbb, 0xba, 0xb6, 0xb5, 0xb3, 0xb2, 0xb0, 0xae, 0xab, 0xa8,\n    0xa8, 0xa8, 0xa7, 0xa7, 0xa8, 0xa8, 0xa9, 0xa9, 0xa7, 0xa8, 0xa9, 0xa8, 0xa7, 0xa6, 0xa7, 0xa8,\n    0xa4, 0xa5, 0xa6, 0xa6, 0xa5, 0xa4, 0xa2, 0xa0, 0xa3, 0xa2, 0xa1, 0xa0, 0x9f, 0x9e, 0x9e, 0x9e,\n    0xa0, 0xa0, 0xa0, 0xa0, 0x9f, 0x9e, 0x9d, 0x9d, 0x9e, 0x9d, 0x9b, 0x9a, 0x98, 0x95, 0x92, 0x8f,\n    0x8d, 0x8a, 0x87, 0x85, 0x84, 0x81, 0x7d, 0x79, 0x73, 0x68, 0x67, 0x66, 0x5b, 0x5d, 0x68, 0x69,\n    0x61, 0x6f, 0x86, 0x96, 0x90, 0x7b, 0x6d, 0x6a, 0x71, 0x6d, 0x67, 0x5f, 0x58, 0x55, 0x5b, 0x63,\n    0x70, 0x6b, 0x64, 0x61, 0x63, 0x65, 0x61, 0x59, 0x71, 0x80, 0x80, 0x6e, 0x64, 0x6d, 0x72, 0x6e,\n    0x8a, 0x9c, 0x91, 0x74, 0x6c, 0x72, 0x6b, 0x60, 0x66, 0x66, 0x6a, 0x6c, 0x63, 0x5b, 0x62, 0x71,\n    0x75, 0x70, 0x5e, 0x4e, 0x4a, 0x49, 0x4b, 0x52, 0x46, 0x51, 0x4f, 0x51, 0x58, 0x59, 0x51, 0x55,\n    0x55, 0x5f, 0x66, 0x63, 0x57, 0x4c, 0x47, 0x46, 0x48, 0x4a, 0x4c, 0x47, 0x40, 0x44, 0x49, 0x45,\n    0x3c, 0x38, 0x59, 0x81, 0x9a, 0x83, 0x66, 0x48, 0x45, 0x3b, 0x2f, 0x2b, 0x2f, 0x33, 0x34, 0x32,\n    0x4d, 0x5d, 0x6c, 0x6d, 0x66, 0x61, 0x5f, 0x5d, 0x58, 0x45, 0x43, 0x43, 0x49, 0x3b, 0x42, 0x4c,\n    0x55, 0x58, 0x56, 0x46, 0x36, 0x42, 0x5e, 0x6f, 0x5b, 0x43, 0x3e, 0x57, 0x6c, 0x6b, 0x63, 0x63,\n    0x6c, 0x69, 0x49, 0x34, 0x47, 0x5a, 0x5b, 0x5d, 0x62, 0x5c, 0x53, 0x4a, 0x39, 0x24, 0x28, 0x3f,\n    0x53, 0x5c, 0x60, 0x5d, 0x5b, 0x5c, 0x57, 0x4e, 0x46, 0x52, 0x5d, 0x60, 0x63, 0x63, 0x5a, 0x4e,\n    0x45, 0x3f, 0x3f, 0x44, 0x44, 0x45, 0x52, 0x63, 0x6d, 0x79, 0x82, 0x7f, 0x6b, 0x4d, 0x3b, 0x3e,\n    0x4a, 0x4d, 0x49, 0x47, 0x45, 0x37, 0x35, 0x48, 0x5b, 0x6c, 0x6f, 0x76, 0x79, 0x6e, 0x64, 0x58,\n    0x64, 0x62, 0x56, 0x42, 0x32, 0x2b, 0x27, 0x24, 0x2c, 0x2b, 0x2b, 0x2b, 0x2b, 0x2d, 0x2e, 0x2f,\n    0x34, 0x2f, 0x27, 0x21, 0x20, 0x21, 0x22, 0x21, 0x28, 0x29, 0x29, 0x27, 0x23, 0x21, 0x20, 0x21,\n    0x22, 0x20, 0x20, 0x23, 0x26, 0x27, 0x24, 0x20, 0x20, 0x1e, 0x1b, 0x1a, 0x1c, 0x1f, 0x1f, 0x1e,\n    0x1e, 0x1e, 0x21, 0x23, 0x22, 0x1d, 0x1a, 0x1a, 0x1d, 0x1d, 0x1d, 0x1c, 0x1b, 0x1c, 0x21, 0x25,\n    0x29, 0x26, 0x23, 0x23, 0x28, 0x2d, 0x2e, 0x2d, 0x2a, 0x23, 0x1d, 0x1d, 0x1f, 0x20, 0x20, 0x21,\n    0x1e, 0x20, 0x22, 0x22, 0x20, 0x1c, 0x19, 0x16, 0x15, 0x18, 0x1a, 0x1c, 0x1d, 0x1e, 0x20, 0x21,\n    0x26, 0x2d, 0x31, 0x31, 0x31, 0x36, 0x3c, 0x3f, 0x3c, 0x39, 0x35, 0x30, 0x2d, 0x2b, 0x2a, 0x2a,\n    0x28, 0x2b, 0x2f, 0x32, 0x34, 0x33, 0x32, 0x31, 0x2e, 0x2d, 0x2c, 0x2d, 0x31, 0x34, 0x35, 0x35,\n    0x34, 0x38, 0x3b, 0x3a, 0x36, 0x32, 0x31, 0x32, 0x38, 0x34, 0x33, 0x39, 0x46, 0x56, 0x63, 0x6b,\n    0x67, 0x67, 0x67, 0x67, 0x67, 0x65, 0x62, 0x60, 0x52, 0x54, 0x54, 0x52, 0x52, 0x56, 0x5c, 0x62,\n    0x52, 0x46, 0x38, 0x33, 0x35, 0x36, 0x36, 0x35, 0x37, 0x38, 0x39, 0x36, 0x31, 0x2f, 0x30, 0x32,\n    0x35, 0x39, 0x3d, 0x3d, 0x3a, 0x37, 0x37, 0x39, 0x3b, 0x3f, 0x3f, 0x3b, 0x3c, 0x42, 0x43, 0x3f,\n    0x43, 0x42, 0x40, 0x3e, 0x3d, 0x3c, 0x3c, 0x3c, 0x41, 0x42, 0x44, 0x45, 0x44, 0x45, 0x46, 0x47,\n    0x45, 0x43, 0x41, 0x41, 0x44, 0x47, 0x48, 0x49, 0x4b, 0x4b, 0x4b, 0x4b, 0x4b, 0x4b, 0x4a, 0x4a,\n    0x4e, 0x4f, 0x50, 0x51, 0x52, 0x50, 0x4f, 0x4e, 0x4d, 0x50, 0x54, 0x58, 0x5b, 0x5c, 0x5d, 0x5e,\n    0x5c, 0x5a, 0x55, 0x4d, 0x44, 0x3f, 0x3f, 0x41, 0x3d, 0x40, 0x46, 0x4c, 0x51, 0x54, 0x54, 0x54,\n    0x65, 0x68, 0x6b, 0x69, 0x63, 0x5f, 0x5d, 0x5e, 0x64, 0x61, 0x65, 0x6b, 0x67, 0x61, 0x69, 0x77,\n    0x89, 0x94, 0x90, 0x8c, 0x86, 0x81, 0x87, 0x86, 0x88, 0x89, 0x8b, 0x8d, 0x8e, 0x8d, 0x8c, 0x8b,\n    0x8d, 0x8e, 0x8e, 0x8f, 0x90, 0x92, 0x93, 0x94, 0x96, 0x97, 0x99, 0x9c, 0x9e, 0x9e, 0x9f, 0x9f,\n    0x9e, 0xa0, 0xa2, 0xa1, 0x9f, 0x9d, 0x9b, 0x9b, 0x9b, 0x9d, 0x9e, 0xa1, 0xa3, 0xa4, 0xa5, 0xa5,\n    0xa7, 0xa8, 0xa8, 0xa8, 0xa7, 0xa7, 0xa6, 0xa6, 0xa2, 0xa1, 0x9e, 0x9b, 0x99, 0x96, 0x92, 0x90,\n    0x91, 0x8f, 0x8d, 0x8b, 0x89, 0x86, 0x83, 0x80, 0x7e, 0x7c, 0x7a, 0x7a, 0x7c, 0x82, 0x88, 0x8c,\n    0x92, 0x97, 0x9d, 0xa0, 0xa1, 0xa4, 0xaa, 0xaf, 0xb4, 0xb8, 0xbd, 0xc1, 0xc4, 0xc5, 0xc6, 0xc7,\n    0xc7, 0xc6, 0xc5, 0xc3, 0xc1, 0xbe, 0xbc, 0xbb, 0xb6, 0xb5, 0xb3, 0xb1, 0xaf, 0xac, 0xa8, 0xa6,\n    0xa6, 0xa5, 0xa5, 0xa4, 0xa5, 0xa6, 0xa7, 0xa8, 0xa7, 0xa8, 0xa9, 0xa9, 0xa8, 0xa9, 0xaa, 0xab,\n    0xaa, 0xaa, 0xab, 0xab, 0xab, 0xab, 0xab, 0xab, 0xa9, 0xaa, 0xab, 0xab, 0xaa, 0xa8, 0xa6, 0xa5,\n    0xa9, 0xa8, 0xa8, 0xa7, 0xa7, 0xa6, 0xa5, 0xa4, 0xa2, 0xa1, 0x9f, 0x9d, 0x9b, 0x97, 0x93, 0x90,\n    0x8c, 0x89, 0x86, 0x83, 0x82, 0x7f, 0x7b, 0x78, 0x75, 0x69, 0x68, 0x6a, 0x65, 0x68, 0x6d, 0x67,\n    0x65, 0x6c, 0x7b, 0x8d, 0x97, 0x8f, 0x78, 0x62, 0x66, 0x65, 0x62, 0x5c, 0x54, 0x53, 0x5c, 0x67,\n    0x6e, 0x69, 0x61, 0x5d, 0x60, 0x64, 0x63, 0x5f, 0x66, 0x71, 0x76, 0x71, 0x68, 0x65, 0x65, 0x64,\n    0x6c, 0x77, 0x71, 0x67, 0x6b, 0x6a, 0x65, 0x6b, 0x65, 0x63, 0x64, 0x66, 0x63, 0x60, 0x68, 0x74,\n    0x7c, 0x6d, 0x56, 0x4b, 0x4f, 0x51, 0x4d, 0x4e, 0x54, 0x5a, 0x55, 0x4e, 0x57, 0x5a, 0x5b, 0x62,\n    0x5b, 0x62, 0x69, 0x67, 0x5c, 0x50, 0x4c, 0x4d, 0x4f, 0x51, 0x52, 0x4b, 0x47, 0x50, 0x55, 0x4d,\n    0x43, 0x42, 0x65, 0x8a, 0x9c, 0x83, 0x6f, 0x5f, 0x4a, 0x3c, 0x32, 0x3e, 0x59, 0x6b, 0x6a, 0x5f,\n    0x55, 0x61, 0x6e, 0x70, 0x68, 0x5e, 0x58, 0x55, 0x55, 0x42, 0x3f, 0x40, 0x47, 0x39, 0x41, 0x4c,\n    0x56, 0x4e, 0x47, 0x43, 0x47, 0x57, 0x63, 0x62, 0x5a, 0x46, 0x43, 0x5b, 0x6d, 0x69, 0x62, 0x64,\n    0x6b, 0x62, 0x42, 0x35, 0x4f, 0x60, 0x5a, 0x57, 0x64, 0x5b, 0x4c, 0x3e, 0x30, 0x25, 0x2f, 0x49,\n    0x50, 0x56, 0x59, 0x56, 0x58, 0x5e, 0x5d, 0x57, 0x4f, 0x5a, 0x60, 0x61, 0x65, 0x67, 0x5a, 0x48,\n    0x3b, 0x3f, 0x49, 0x52, 0x4e, 0x49, 0x57, 0x6c, 0x72, 0x79, 0x77, 0x6a, 0x56, 0x3f, 0x38, 0x41,\n    0x56, 0x54, 0x4b, 0x48, 0x47, 0x3c, 0x3b, 0x4d, 0x78, 0x82, 0x70, 0x5c, 0x50, 0x46, 0x40, 0x33,\n    0x4a, 0x4f, 0x4a, 0x3a, 0x31, 0x32, 0x31, 0x2b, 0x27, 0x27, 0x27, 0x27, 0x29, 0x2b, 0x2d, 0x2f,\n    0x36, 0x32, 0x2b, 0x25, 0x25, 0x29, 0x2c, 0x2c, 0x29, 0x29, 0x29, 0x28, 0x26, 0x25, 0x25, 0x25,\n    0x25, 0x23, 0x23, 0x26, 0x2b, 0x2b, 0x26, 0x20, 0x1b, 0x1a, 0x19, 0x19, 0x1c, 0x20, 0x20, 0x1e,\n    0x20, 0x22, 0x24, 0x26, 0x23, 0x1f, 0x1e, 0x1f, 0x1c, 0x1c, 0x1d, 0x1e, 0x1e, 0x1d, 0x1f, 0x23,\n    0x27, 0x28, 0x2a, 0x2d, 0x34, 0x3b, 0x3b, 0x38, 0x2f, 0x27, 0x21, 0x20, 0x21, 0x20, 0x20, 0x21,\n    0x1b, 0x1c, 0x1e, 0x21, 0x22, 0x20, 0x1b, 0x18, 0x1a, 0x1a, 0x19, 0x18, 0x19, 0x1c, 0x21, 0x24,\n    0x2e, 0x34, 0x38, 0x35, 0x30, 0x32, 0x37, 0x3c, 0x44, 0x41, 0x3b, 0x35, 0x2f, 0x2a, 0x27, 0x25,\n    0x2b, 0x2c, 0x2e, 0x32, 0x33, 0x33, 0x35, 0x38, 0x30, 0x2f, 0x2e, 0x2f, 0x32, 0x36, 0x38, 0x3a,\n    0x36, 0x39, 0x3c, 0x3c, 0x39, 0x37, 0x35, 0x35, 0x34, 0x31, 0x31, 0x3a, 0x46, 0x4d, 0x51, 0x52,\n    0x52, 0x53, 0x56, 0x5b, 0x5f, 0x5e, 0x59, 0x55, 0x59, 0x52, 0x4a, 0x47, 0x4d, 0x53, 0x52, 0x4d,\n    0x48, 0x3f, 0x39, 0x3a, 0x3b, 0x39, 0x38, 0x39, 0x38, 0x3a, 0x3a, 0x38, 0x34, 0x32, 0x32, 0x33,\n    0x35, 0x39, 0x3c, 0x3d, 0x3a, 0x38, 0x38, 0x3a, 0x3b, 0x3d, 0x3d, 0x3b, 0x3d, 0x41, 0x41, 0x3d,\n    0x41, 0x40, 0x3e, 0x3c, 0x3c, 0x3e, 0x40, 0x41, 0x42, 0x44, 0x46, 0x48, 0x48, 0x48, 0x49, 0x4a,\n    0x4d, 0x4a, 0x47, 0x46, 0x47, 0x47, 0x47, 0x45, 0x49, 0x4a, 0x4c, 0x4d, 0x4d, 0x4c, 0x4b, 0x4a,\n    0x4b, 0x4b, 0x4d, 0x52, 0x54, 0x53, 0x51, 0x51, 0x4f, 0x53, 0x57, 0x58, 0x57, 0x57, 0x59, 0x5b,\n    0x57, 0x57, 0x54, 0x4d, 0x47, 0x44, 0x47, 0x4a, 0x46, 0x49, 0x4c, 0x52, 0x58, 0x5f, 0x65, 0x68,\n    0x6c, 0x6b, 0x69, 0x65, 0x60, 0x5c, 0x5a, 0x5a, 0x60, 0x5d, 0x5e, 0x62, 0x60, 0x5d, 0x64, 0x70,\n    0x8d, 0x9d, 0x98, 0x91, 0x8b, 0x84, 0x87, 0x88, 0x88, 0x89, 0x8b, 0x8d, 0x8e, 0x8d, 0x8c, 0x8b,\n    0x8e, 0x8e, 0x8e, 0x8f, 0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x97, 0x99, 0x9b, 0x9c, 0x9d, 0x9d,\n    0x97, 0x99, 0x9b, 0x9c, 0x9c, 0x9b, 0x9b, 0x9b, 0x9a, 0x9b, 0x9d, 0x9f, 0xa1, 0xa2, 0xa2, 0xa2,\n    0xa4, 0xa4, 0xa4, 0xa3, 0xa3, 0xa2, 0xa1, 0xa0, 0x9d, 0x9a, 0x97, 0x94, 0x91, 0x8e, 0x8a, 0x88,\n    0x88, 0x86, 0x85, 0x83, 0x81, 0x7d, 0x79, 0x76, 0x74, 0x73, 0x74, 0x77, 0x7d, 0x85, 0x8d, 0x92,\n    0x95, 0x99, 0x9f, 0xa1, 0xa3, 0xa5, 0xa9, 0xad, 0xb1, 0xb4, 0xb9, 0xbd, 0xbf, 0xc1, 0xc3, 0xc4,\n    0xc4, 0xc4, 0xc3, 0xc2, 0xc0, 0xbe, 0xbc, 0xbb, 0xb7, 0xb5, 0xb3, 0xb1, 0xae, 0xaa, 0xa5, 0xa2,\n    0xa2, 0xa1, 0x9f, 0x9e, 0x9f, 0xa0, 0xa2, 0xa4, 0xa4, 0xa6, 0xa7, 0xa8, 0xa9, 0xaa, 0xac, 0xad,\n    0xad, 0xad, 0xad, 0xad, 0xad, 0xae, 0xae, 0xaf, 0xab, 0xac, 0xae, 0xaf, 0xae, 0xac, 0xaa, 0xa8,\n    0xab, 0xaa, 0xa9, 0xa9, 0xa9, 0xa9, 0xa7, 0xa6, 0xa4, 0xa2, 0xa0, 0x9f, 0x9c, 0x98, 0x94, 0x91,\n    0x8d, 0x89, 0x85, 0x83, 0x81, 0x7e, 0x7a, 0x77, 0x74, 0x6b, 0x67, 0x6a, 0x6e, 0x70, 0x6d, 0x65,\n    0x68, 0x69, 0x6e, 0x7e, 0x94, 0x9b, 0x86, 0x69, 0x5c, 0x5d, 0x5d, 0x5b, 0x56, 0x56, 0x5e, 0x67,\n    0x6c, 0x68, 0x61, 0x5e, 0x62, 0x67, 0x66, 0x63, 0x4b, 0x49, 0x4c, 0x55, 0x5b, 0x5c, 0x5e, 0x62,\n    0x59, 0x5a, 0x58, 0x60, 0x69, 0x61, 0x5c, 0x69, 0x60, 0x5d, 0x5f, 0x63, 0x64, 0x65, 0x6c, 0x76,\n    0x75, 0x6a, 0x58, 0x4f, 0x52, 0x52, 0x50, 0x54, 0x69, 0x64, 0x5a, 0x49, 0x52, 0x5a, 0x68, 0x6e,\n    0x5b, 0x62, 0x6c, 0x6e, 0x67, 0x5b, 0x53, 0x52, 0x51, 0x53, 0x53, 0x4f, 0x53, 0x61, 0x64, 0x56,\n    0x41, 0x43, 0x68, 0x88, 0x8f, 0x73, 0x6b, 0x68, 0x5f, 0x4d, 0x46, 0x59, 0x74, 0x79, 0x64, 0x4c,\n    0x59, 0x60, 0x68, 0x6a, 0x63, 0x57, 0x4f, 0x4d, 0x4c, 0x40, 0x42, 0x42, 0x47, 0x3c, 0x47, 0x52,\n    0x45, 0x4d, 0x55, 0x4f, 0x44, 0x4b, 0x5c, 0x64, 0x56, 0x46, 0x46, 0x5b, 0x6a, 0x68, 0x64, 0x68,\n    0x62, 0x53, 0x3a, 0x38, 0x50, 0x5c, 0x55, 0x51, 0x5d, 0x5f, 0x4d, 0x35, 0x31, 0x3f, 0x51, 0x5f,\n    0x6d, 0x6e, 0x69, 0x5f, 0x5b, 0x5d, 0x5a, 0x53, 0x56, 0x62, 0x69, 0x61, 0x51, 0x47, 0x48, 0x4c,\n    0x43, 0x47, 0x50, 0x54, 0x4b, 0x44, 0x52, 0x67, 0x71, 0x79, 0x72, 0x58, 0x3b, 0x27, 0x26, 0x34,\n    0x4f, 0x51, 0x48, 0x40, 0x39, 0x2e, 0x36, 0x51, 0x63, 0x79, 0x74, 0x63, 0x55, 0x4c, 0x50, 0x4d,\n    0x3c, 0x42, 0x44, 0x41, 0x3d, 0x39, 0x31, 0x29, 0x25, 0x25, 0x26, 0x27, 0x29, 0x2a, 0x2b, 0x2c,\n    0x2e, 0x31, 0x31, 0x2d, 0x2b, 0x2e, 0x32, 0x34, 0x2a, 0x29, 0x28, 0x27, 0x27, 0x27, 0x26, 0x26,\n    0x26, 0x25, 0x25, 0x28, 0x2b, 0x2b, 0x27, 0x24, 0x1d, 0x1d, 0x1c, 0x1b, 0x1e, 0x22, 0x23, 0x1f,\n    0x21, 0x22, 0x25, 0x27, 0x24, 0x21, 0x22, 0x25, 0x24, 0x22, 0x22, 0x23, 0x22, 0x1f, 0x1f, 0x22,\n    0x22, 0x27, 0x2e, 0x36, 0x3d, 0x40, 0x3b, 0x33, 0x2c, 0x28, 0x24, 0x25, 0x25, 0x23, 0x22, 0x22,\n    0x1f, 0x1d, 0x1d, 0x1f, 0x21, 0x20, 0x1b, 0x17, 0x1a, 0x1a, 0x18, 0x17, 0x18, 0x1c, 0x22, 0x26,\n    0x32, 0x38, 0x3c, 0x3b, 0x38, 0x39, 0x3c, 0x3e, 0x45, 0x42, 0x3d, 0x37, 0x31, 0x2b, 0x27, 0x24,\n    0x2b, 0x2b, 0x2d, 0x31, 0x30, 0x2e, 0x2f, 0x33, 0x33, 0x34, 0x34, 0x35, 0x36, 0x38, 0x3a, 0x3c,\n    0x3a, 0x3a, 0x3b, 0x3c, 0x3b, 0x3b, 0x3a, 0x3a, 0x35, 0x34, 0x3b, 0x4a, 0x55, 0x55, 0x4d, 0x46,\n    0x45, 0x46, 0x4a, 0x50, 0x59, 0x61, 0x66, 0x69, 0x71, 0x6d, 0x67, 0x63, 0x64, 0x60, 0x53, 0x45,\n    0x3c, 0x37, 0x36, 0x3a, 0x39, 0x33, 0x30, 0x33, 0x39, 0x3a, 0x3b, 0x3a, 0x37, 0x35, 0x34, 0x35,\n    0x34, 0x37, 0x3a, 0x3b, 0x39, 0x38, 0x39, 0x39, 0x3c, 0x3c, 0x3c, 0x3d, 0x3f, 0x41, 0x40, 0x3d,\n    0x3e, 0x3d, 0x3c, 0x3c, 0x3c, 0x3e, 0x40, 0x41, 0x3f, 0x42, 0x46, 0x48, 0x49, 0x49, 0x4a, 0x4a,\n    0x4e, 0x4b, 0x47, 0x46, 0x47, 0x48, 0x47, 0x46, 0x48, 0x48, 0x49, 0x4a, 0x4b, 0x4b, 0x4b, 0x4b,\n    0x49, 0x48, 0x4b, 0x52, 0x55, 0x54, 0x51, 0x51, 0x51, 0x53, 0x55, 0x55, 0x55, 0x56, 0x57, 0x57,\n    0x53, 0x52, 0x4f, 0x48, 0x40, 0x3d, 0x3f, 0x42, 0x46, 0x46, 0x48, 0x4b, 0x51, 0x5c, 0x67, 0x6f,\n    0x6a, 0x66, 0x5f, 0x5b, 0x5b, 0x5c, 0x5d, 0x5d, 0x5d, 0x5b, 0x5b, 0x5c, 0x5d, 0x5e, 0x64, 0x6b,\n    0x8d, 0xa3, 0xa1, 0x9d, 0x99, 0x8e, 0x8c, 0x8b, 0x88, 0x89, 0x8b, 0x8c, 0x8d, 0x8c, 0x8c, 0x8b,\n    0x8e, 0x8e, 0x8e, 0x8e, 0x8f, 0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x97, 0x98, 0x98, 0x99, 0x99,\n    0x94, 0x95, 0x97, 0x98, 0x98, 0x98, 0x99, 0x9a, 0x9a, 0x9b, 0x9d, 0x9e, 0x9f, 0x9f, 0x9f, 0x9f,\n    0x9f, 0x9f, 0x9f, 0x9e, 0x9d, 0x9c, 0x9b, 0x9b, 0x97, 0x94, 0x90, 0x8c, 0x89, 0x86, 0x83, 0x81,\n    0x81, 0x7f, 0x7c, 0x79, 0x77, 0x74, 0x71, 0x6f, 0x6f, 0x72, 0x77, 0x7f, 0x88, 0x91, 0x99, 0x9d,\n    0xa0, 0xa2, 0xa5, 0xa6, 0xa7, 0xa7, 0xa9, 0xaa, 0xad, 0xb0, 0xb3, 0xb6, 0xb8, 0xb9, 0xbb, 0xbc,\n    0xbc, 0xbd, 0xbd, 0xbd, 0xbc, 0xbb, 0xb9, 0xb8, 0xb5, 0xb3, 0xb1, 0xae, 0xab, 0xa6, 0xa0, 0x9d,\n    0x9a, 0x99, 0x97, 0x95, 0x96, 0x97, 0x99, 0x9b, 0x9d, 0x9f, 0xa2, 0xa5, 0xa7, 0xa8, 0xaa, 0xac,\n    0xac, 0xac, 0xac, 0xad, 0xae, 0xae, 0xaf, 0xaf, 0xae, 0xae, 0xaf, 0xaf, 0xae, 0xad, 0xac, 0xac,\n    0xab, 0xaa, 0xa8, 0xa8, 0xa9, 0xa8, 0xa6, 0xa4, 0xa4, 0xa2, 0xa1, 0x9f, 0x9d, 0x99, 0x95, 0x92,\n    0x8e, 0x8b, 0x86, 0x83, 0x80, 0x7d, 0x79, 0x76, 0x70, 0x6d, 0x67, 0x6a, 0x74, 0x76, 0x6d, 0x68,\n    0x68, 0x65, 0x66, 0x73, 0x8b, 0x9a, 0x91, 0x7f, 0x66, 0x61, 0x5c, 0x59, 0x58, 0x5a, 0x60, 0x67,\n    0x6e, 0x66, 0x5c, 0x5b, 0x64, 0x6e, 0x70, 0x6c, 0x6a, 0x59, 0x46, 0x3e, 0x3f, 0x46, 0x54, 0x61,\n    0x5a, 0x56, 0x54, 0x5d, 0x64, 0x5d, 0x57, 0x5d, 0x59, 0x58, 0x59, 0x5d, 0x60, 0x64, 0x6e, 0x77,\n    0x6e, 0x68, 0x59, 0x50, 0x50, 0x52, 0x5a, 0x68, 0x6d, 0x61, 0x5b, 0x4a, 0x51, 0x5b, 0x6f, 0x6f,\n    0x57, 0x5c, 0x66, 0x6e, 0x6b, 0x61, 0x57, 0x53, 0x50, 0x4d, 0x49, 0x48, 0x55, 0x6d, 0x71, 0x5f,\n    0x3c, 0x3d, 0x5d, 0x75, 0x75, 0x58, 0x58, 0x60, 0x6a, 0x5f, 0x5c, 0x6a, 0x79, 0x7d, 0x7b, 0x7a,\n    0x63, 0x62, 0x64, 0x64, 0x5d, 0x51, 0x4a, 0x48, 0x38, 0x35, 0x3d, 0x3c, 0x40, 0x38, 0x47, 0x54,\n    0x5f, 0x57, 0x4d, 0x42, 0x3f, 0x4e, 0x5e, 0x62, 0x5f, 0x53, 0x50, 0x5b, 0x63, 0x5f, 0x5a, 0x5a,\n    0x51, 0x3e, 0x31, 0x3a, 0x4c, 0x54, 0x53, 0x52, 0x5a, 0x5e, 0x4b, 0x32, 0x36, 0x4e, 0x61, 0x68,\n    0x6e, 0x70, 0x6b, 0x62, 0x5e, 0x61, 0x5d, 0x55, 0x58, 0x69, 0x6b, 0x50, 0x33, 0x2f, 0x3e, 0x4c,\n    0x57, 0x54, 0x51, 0x4d, 0x47, 0x48, 0x58, 0x6b, 0x76, 0x78, 0x64, 0x40, 0x25, 0x1c, 0x23, 0x31,\n    0x3c, 0x48, 0x4c, 0x4a, 0x41, 0x2f, 0x30, 0x49, 0x68, 0x7b, 0x79, 0x6f, 0x5d, 0x4a, 0x4d, 0x53,\n    0x2c, 0x2a, 0x2d, 0x34, 0x39, 0x38, 0x33, 0x30, 0x28, 0x29, 0x2b, 0x2c, 0x2d, 0x2c, 0x2b, 0x2a,\n    0x2b, 0x35, 0x3a, 0x35, 0x2e, 0x2d, 0x30, 0x32, 0x2e, 0x2b, 0x27, 0x26, 0x26, 0x26, 0x25, 0x23,\n    0x23, 0x23, 0x23, 0x24, 0x25, 0x25, 0x24, 0x23, 0x1f, 0x20, 0x1d, 0x1b, 0x1d, 0x22, 0x22, 0x1f,\n    0x1f, 0x21, 0x24, 0x26, 0x23, 0x21, 0x24, 0x28, 0x2f, 0x2b, 0x28, 0x28, 0x25, 0x20, 0x1e, 0x20,\n    0x1c, 0x25, 0x30, 0x38, 0x3e, 0x3d, 0x33, 0x27, 0x2a, 0x28, 0x28, 0x2b, 0x2b, 0x29, 0x28, 0x28,\n    0x2a, 0x25, 0x21, 0x21, 0x23, 0x22, 0x1d, 0x18, 0x17, 0x18, 0x19, 0x1b, 0x1c, 0x1e, 0x22, 0x24,\n    0x2b, 0x31, 0x37, 0x3a, 0x3d, 0x41, 0x43, 0x43, 0x39, 0x38, 0x37, 0x34, 0x31, 0x2e, 0x2b, 0x29,\n    0x2b, 0x2c, 0x31, 0x35, 0x33, 0x2c, 0x29, 0x2a, 0x32, 0x34, 0x36, 0x37, 0x36, 0x36, 0x38, 0x3a,\n    0x3a, 0x39, 0x37, 0x37, 0x39, 0x3a, 0x3b, 0x3b, 0x39, 0x3a, 0x44, 0x56, 0x61, 0x5c, 0x4e, 0x42,\n    0x46, 0x48, 0x4c, 0x4f, 0x53, 0x57, 0x5c, 0x60, 0x6b, 0x71, 0x75, 0x71, 0x68, 0x5b, 0x4c, 0x40,\n    0x41, 0x3d, 0x3f, 0x43, 0x3f, 0x35, 0x32, 0x37, 0x3a, 0x3c, 0x3d, 0x3c, 0x3a, 0x38, 0x36, 0x36,\n    0x37, 0x39, 0x3b, 0x3c, 0x3c, 0x3b, 0x3a, 0x3a, 0x3c, 0x3b, 0x3c, 0x3f, 0x42, 0x41, 0x40, 0x3f,\n    0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3e, 0x3c, 0x3f, 0x44, 0x47, 0x48, 0x48, 0x48, 0x48,\n    0x4b, 0x47, 0x42, 0x42, 0x45, 0x48, 0x49, 0x49, 0x46, 0x47, 0x47, 0x47, 0x48, 0x4a, 0x4b, 0x4b,\n    0x49, 0x47, 0x4a, 0x51, 0x54, 0x51, 0x4e, 0x4e, 0x51, 0x51, 0x50, 0x52, 0x55, 0x57, 0x57, 0x56,\n    0x50, 0x50, 0x4f, 0x4a, 0x46, 0x45, 0x48, 0x4c, 0x4f, 0x50, 0x50, 0x52, 0x58, 0x62, 0x6f, 0x78,\n    0x70, 0x69, 0x60, 0x5c, 0x5c, 0x5f, 0x60, 0x60, 0x5a, 0x5b, 0x5c, 0x5e, 0x60, 0x63, 0x66, 0x67,\n    0x86, 0xa1, 0xa6, 0xa6, 0xa4, 0x96, 0x8e, 0x8a, 0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8c, 0x8c, 0x8b,\n    0x8e, 0x8e, 0x8e, 0x8e, 0x8f, 0x90, 0x91, 0x91, 0x93, 0x93, 0x94, 0x95, 0x96, 0x96, 0x95, 0x95,\n    0x94, 0x95, 0x96, 0x96, 0x96, 0x96, 0x97, 0x98, 0x97, 0x98, 0x9a, 0x9b, 0x9c, 0x9b, 0x9a, 0x9a,\n    0x9c, 0x9c, 0x9b, 0x9b, 0x9a, 0x98, 0x97, 0x97, 0x90, 0x8d, 0x88, 0x84, 0x80, 0x7e, 0x7b, 0x7a,\n    0x7a, 0x77, 0x73, 0x6f, 0x6d, 0x6b, 0x69, 0x68, 0x6f, 0x74, 0x7e, 0x89, 0x94, 0x9d, 0xa4, 0xa8,\n    0xab, 0xab, 0xac, 0xac, 0xab, 0xaa, 0xa9, 0xa8, 0xaa, 0xac, 0xae, 0xb0, 0xb1, 0xb2, 0xb4, 0xb5,\n    0xb6, 0xb6, 0xb7, 0xb8, 0xb7, 0xb6, 0xb5, 0xb4, 0xb2, 0xb1, 0xae, 0xab, 0xa7, 0xa1, 0x9c, 0x98,\n    0x93, 0x91, 0x8f, 0x8e, 0x8e, 0x8f, 0x92, 0x93, 0x96, 0x99, 0x9d, 0xa1, 0xa4, 0xa6, 0xa8, 0xaa,\n    0xac, 0xad, 0xaf, 0xb1, 0xb2, 0xb2, 0xb2, 0xb2, 0xb1, 0xb0, 0xaf, 0xae, 0xad, 0xad, 0xae, 0xae,\n    0xae, 0xac, 0xaa, 0xaa, 0xaa, 0xa9, 0xa7, 0xa4, 0xa3, 0xa2, 0xa0, 0x9f, 0x9d, 0x99, 0x95, 0x92,\n    0x8f, 0x8c, 0x87, 0x83, 0x81, 0x7e, 0x79, 0x76, 0x70, 0x72, 0x6b, 0x6c, 0x7a, 0x7b, 0x71, 0x6f,\n    0x6c, 0x67, 0x66, 0x70, 0x83, 0x91, 0x93, 0x8d, 0x71, 0x65, 0x58, 0x53, 0x55, 0x5c, 0x65, 0x6c,\n    0x6e, 0x61, 0x53, 0x52, 0x61, 0x72, 0x78, 0x75, 0x68, 0x69, 0x68, 0x61, 0x56, 0x4c, 0x49, 0x4c,\n    0x4a, 0x54, 0x5f, 0x62, 0x5e, 0x57, 0x53, 0x52, 0x57, 0x56, 0x58, 0x5b, 0x5d, 0x63, 0x6f, 0x7b,\n    0x75, 0x64, 0x4d, 0x47, 0x52, 0x5e, 0x68, 0x74, 0x64, 0x58, 0x5a, 0x4d, 0x54, 0x5e, 0x72, 0x6a,\n    0x55, 0x58, 0x60, 0x6a, 0x6b, 0x62, 0x59, 0x55, 0x4f, 0x47, 0x3e, 0x3c, 0x51, 0x71, 0x79, 0x67,\n    0x3e, 0x39, 0x52, 0x64, 0x60, 0x43, 0x49, 0x56, 0x5e, 0x63, 0x6e, 0x70, 0x61, 0x52, 0x57, 0x68,\n    0x69, 0x68, 0x6b, 0x6d, 0x66, 0x55, 0x48, 0x43, 0x30, 0x34, 0x41, 0x3f, 0x43, 0x3e, 0x50, 0x5d,\n    0x56, 0x59, 0x5a, 0x51, 0x47, 0x4e, 0x5c, 0x60, 0x55, 0x4c, 0x4b, 0x54, 0x5c, 0x5a, 0x57, 0x57,\n    0x45, 0x31, 0x2d, 0x3e, 0x4a, 0x50, 0x56, 0x5b, 0x63, 0x5d, 0x46, 0x31, 0x32, 0x3f, 0x4a, 0x53,\n    0x61, 0x65, 0x63, 0x5e, 0x5d, 0x60, 0x5c, 0x54, 0x5d, 0x6d, 0x62, 0x3f, 0x34, 0x4d, 0x5f, 0x5c,\n    0x58, 0x4d, 0x41, 0x3c, 0x3f, 0x4c, 0x61, 0x73, 0x69, 0x57, 0x31, 0x16, 0x21, 0x3f, 0x58, 0x64,\n    0x56, 0x59, 0x53, 0x4b, 0x44, 0x38, 0x3d, 0x58, 0x6b, 0x66, 0x56, 0x5a, 0x5e, 0x59, 0x63, 0x6f,\n    0x33, 0x2b, 0x28, 0x2e, 0x33, 0x32, 0x33, 0x36, 0x32, 0x2b, 0x28, 0x2b, 0x2c, 0x27, 0x25, 0x28,\n    0x2c, 0x32, 0x3a, 0x3b, 0x37, 0x31, 0x2f, 0x2f, 0x2b, 0x2a, 0x29, 0x29, 0x26, 0x23, 0x23, 0x26,\n    0x27, 0x23, 0x20, 0x20, 0x24, 0x25, 0x24, 0x21, 0x1e, 0x1d, 0x1d, 0x20, 0x23, 0x25, 0x25, 0x24,\n    0x1f, 0x23, 0x27, 0x27, 0x25, 0x24, 0x25, 0x27, 0x29, 0x2a, 0x2d, 0x2e, 0x28, 0x20, 0x1e, 0x22,\n    0x1d, 0x23, 0x28, 0x2b, 0x30, 0x35, 0x31, 0x29, 0x2a, 0x29, 0x27, 0x25, 0x25, 0x25, 0x26, 0x27,\n    0x2a, 0x2e, 0x30, 0x2c, 0x28, 0x25, 0x22, 0x1f, 0x1e, 0x1d, 0x1d, 0x1d, 0x1f, 0x20, 0x21, 0x21,\n    0x24, 0x29, 0x30, 0x35, 0x36, 0x34, 0x31, 0x2f, 0x30, 0x32, 0x33, 0x31, 0x2d, 0x2b, 0x2d, 0x2f,\n    0x33, 0x31, 0x30, 0x31, 0x33, 0x32, 0x2e, 0x2b, 0x2c, 0x2f, 0x36, 0x3b, 0x3b, 0x39, 0x3a, 0x3d,\n    0x3b, 0x3a, 0x3b, 0x3c, 0x3b, 0x39, 0x3a, 0x3d, 0x3c, 0x3c, 0x40, 0x4a, 0x55, 0x5d, 0x5f, 0x5d,\n    0x64, 0x61, 0x5c, 0x56, 0x52, 0x50, 0x51, 0x53, 0x57, 0x61, 0x63, 0x5c, 0x58, 0x58, 0x50, 0x43,\n    0x47, 0x49, 0x49, 0x46, 0x45, 0x44, 0x3f, 0x38, 0x3c, 0x3c, 0x3d, 0x3d, 0x3c, 0x3a, 0x38, 0x36,\n    0x39, 0x38, 0x36, 0x36, 0x39, 0x3b, 0x3d, 0x3d, 0x3b, 0x3b, 0x3c, 0x3e, 0x3f, 0x40, 0x3f, 0x3e,\n    0x42, 0x3d, 0x3a, 0x3d, 0x3e, 0x3c, 0x3b, 0x3c, 0x3a, 0x3e, 0x44, 0x48, 0x4a, 0x48, 0x46, 0x44,\n    0x41, 0x40, 0x41, 0x45, 0x47, 0x47, 0x49, 0x4b, 0x49, 0x4b, 0x4c, 0x4c, 0x4b, 0x49, 0x49, 0x4a,\n    0x49, 0x48, 0x4b, 0x51, 0x55, 0x55, 0x54, 0x54, 0x55, 0x58, 0x59, 0x58, 0x59, 0x5b, 0x58, 0x53,\n    0x53, 0x57, 0x57, 0x50, 0x4d, 0x50, 0x55, 0x57, 0x54, 0x57, 0x59, 0x58, 0x56, 0x56, 0x59, 0x5c,\n    0x61, 0x60, 0x5e, 0x5c, 0x5b, 0x5c, 0x5d, 0x5e, 0x5d, 0x5d, 0x5c, 0x5c, 0x5f, 0x63, 0x62, 0x5e,\n    0x7b, 0x99, 0xab, 0xab, 0xa9, 0xa3, 0x92, 0x84, 0x86, 0x87, 0x89, 0x8a, 0x8b, 0x8b, 0x8b, 0x8a,\n    0x8e, 0x8d, 0x8d, 0x8d, 0x8d, 0x8e, 0x8f, 0x8f, 0x93, 0x91, 0x90, 0x90, 0x91, 0x92, 0x92, 0x91,\n    0x90, 0x92, 0x93, 0x94, 0x93, 0x93, 0x94, 0x95, 0x94, 0x96, 0x98, 0x99, 0x98, 0x98, 0x98, 0x99,\n    0x98, 0x98, 0x97, 0x96, 0x95, 0x91, 0x8d, 0x8a, 0x88, 0x86, 0x82, 0x7f, 0x7c, 0x79, 0x76, 0x74,\n    0x75, 0x70, 0x6d, 0x6b, 0x69, 0x67, 0x67, 0x6a, 0x71, 0x7a, 0x8a, 0x98, 0xa3, 0xaa, 0xad, 0xaf,\n    0xaf, 0xb1, 0xb1, 0xb0, 0xb0, 0xaf, 0xab, 0xa6, 0xa4, 0xa5, 0xa7, 0xa9, 0xab, 0xac, 0xac, 0xac,\n    0xb1, 0xb1, 0xb2, 0xb2, 0xb2, 0xb2, 0xb1, 0xb1, 0xaf, 0xae, 0xac, 0xa8, 0xa2, 0x9c, 0x97, 0x93,\n    0x93, 0x8f, 0x8a, 0x87, 0x85, 0x84, 0x85, 0x87, 0x8a, 0x90, 0x96, 0x9a, 0x9e, 0xa3, 0xa7, 0xa8,\n    0xaa, 0xac, 0xae, 0xaf, 0xae, 0xaf, 0xb3, 0xb5, 0xb2, 0xb1, 0xaf, 0xae, 0xad, 0xae, 0xaf, 0xb0,\n    0xad, 0xac, 0xac, 0xac, 0xac, 0xaa, 0xa8, 0xa6, 0xa6, 0xa5, 0xa3, 0xa1, 0x9e, 0x9a, 0x96, 0x92,\n    0x8f, 0x8c, 0x87, 0x83, 0x7f, 0x7b, 0x76, 0x74, 0x74, 0x66, 0x68, 0x77, 0x7e, 0x7b, 0x75, 0x6d,\n    0x6f, 0x6a, 0x66, 0x6b, 0x79, 0x8b, 0x94, 0x96, 0x7b, 0x70, 0x60, 0x56, 0x57, 0x5e, 0x68, 0x6e,\n    0x6d, 0x66, 0x59, 0x57, 0x62, 0x65, 0x5e, 0x59, 0x59, 0x72, 0x87, 0x80, 0x66, 0x4f, 0x46, 0x45,\n    0x4d, 0x56, 0x59, 0x62, 0x65, 0x60, 0x60, 0x57, 0x58, 0x5b, 0x62, 0x60, 0x56, 0x5a, 0x6c, 0x78,\n    0x76, 0x66, 0x4e, 0x46, 0x56, 0x64, 0x64, 0x62, 0x49, 0x4f, 0x55, 0x54, 0x56, 0x66, 0x70, 0x6a,\n    0x60, 0x59, 0x60, 0x6d, 0x6b, 0x5f, 0x54, 0x4b, 0x4f, 0x53, 0x4d, 0x49, 0x5b, 0x76, 0x78, 0x68,\n    0x43, 0x35, 0x42, 0x4f, 0x41, 0x3a, 0x46, 0x4c, 0x58, 0x6a, 0x73, 0x6a, 0x57, 0x4a, 0x51, 0x64,\n    0x67, 0x6b, 0x77, 0x85, 0x7d, 0x5c, 0x49, 0x50, 0x49, 0x44, 0x45, 0x49, 0x46, 0x40, 0x44, 0x4f,\n    0x5d, 0x52, 0x4b, 0x41, 0x38, 0x46, 0x59, 0x5a, 0x52, 0x49, 0x4c, 0x58, 0x5b, 0x5a, 0x57, 0x52,\n    0x49, 0x3e, 0x39, 0x41, 0x4e, 0x54, 0x55, 0x56, 0x56, 0x55, 0x48, 0x35, 0x32, 0x3f, 0x49, 0x48,\n    0x4e, 0x5f, 0x65, 0x67, 0x6e, 0x68, 0x5b, 0x5a, 0x5d, 0x60, 0x48, 0x31, 0x44, 0x63, 0x6a, 0x65,\n    0x4e, 0x42, 0x33, 0x33, 0x42, 0x53, 0x62, 0x71, 0x59, 0x31, 0x1f, 0x37, 0x5e, 0x74, 0x71, 0x62,\n    0x58, 0x4e, 0x43, 0x40, 0x40, 0x3f, 0x3b, 0x38, 0x39, 0x37, 0x3e, 0x3a, 0x35, 0x4e, 0x65, 0x5c,\n    0x31, 0x2a, 0x27, 0x2c, 0x30, 0x31, 0x33, 0x38, 0x31, 0x2b, 0x28, 0x2a, 0x29, 0x23, 0x21, 0x24,\n    0x29, 0x2b, 0x2f, 0x32, 0x32, 0x2f, 0x2b, 0x28, 0x2b, 0x2c, 0x2e, 0x2e, 0x2a, 0x26, 0x27, 0x2b,\n    0x26, 0x23, 0x21, 0x23, 0x26, 0x28, 0x27, 0x25, 0x28, 0x25, 0x23, 0x23, 0x25, 0x29, 0x2b, 0x2c,\n    0x2f, 0x30, 0x2f, 0x2b, 0x27, 0x25, 0x27, 0x2a, 0x2c, 0x2d, 0x2f, 0x31, 0x2e, 0x27, 0x25, 0x28,\n    0x24, 0x25, 0x27, 0x28, 0x2c, 0x2f, 0x2d, 0x29, 0x2b, 0x2a, 0x28, 0x26, 0x25, 0x25, 0x25, 0x25,\n    0x25, 0x29, 0x2c, 0x2c, 0x2b, 0x2b, 0x29, 0x26, 0x20, 0x22, 0x24, 0x24, 0x23, 0x23, 0x25, 0x27,\n    0x2f, 0x33, 0x3a, 0x40, 0x40, 0x3c, 0x35, 0x30, 0x2c, 0x2e, 0x2f, 0x2e, 0x2c, 0x2c, 0x2e, 0x31,\n    0x33, 0x31, 0x2f, 0x30, 0x31, 0x31, 0x2e, 0x2b, 0x2c, 0x2f, 0x34, 0x38, 0x38, 0x37, 0x39, 0x3c,\n    0x3b, 0x3a, 0x3a, 0x3b, 0x3b, 0x39, 0x3b, 0x3f, 0x40, 0x3c, 0x3a, 0x42, 0x51, 0x60, 0x69, 0x6c,\n    0x61, 0x64, 0x6a, 0x73, 0x78, 0x75, 0x6c, 0x63, 0x52, 0x55, 0x5a, 0x5d, 0x5b, 0x52, 0x47, 0x40,\n    0x3e, 0x41, 0x42, 0x42, 0x44, 0x45, 0x42, 0x3d, 0x3c, 0x3d, 0x3f, 0x3f, 0x3f, 0x3c, 0x3a, 0x38,\n    0x3a, 0x39, 0x38, 0x39, 0x3b, 0x3d, 0x3e, 0x3e, 0x40, 0x40, 0x41, 0x41, 0x41, 0x40, 0x40, 0x40,\n    0x45, 0x42, 0x42, 0x45, 0x44, 0x40, 0x3d, 0x3d, 0x3d, 0x40, 0x45, 0x49, 0x4a, 0x49, 0x47, 0x46,\n    0x45, 0x45, 0x47, 0x4b, 0x4d, 0x4c, 0x4d, 0x4f, 0x4b, 0x4b, 0x4c, 0x4c, 0x4d, 0x4e, 0x50, 0x51,\n    0x4d, 0x4b, 0x4b, 0x4e, 0x51, 0x51, 0x51, 0x52, 0x55, 0x56, 0x55, 0x54, 0x57, 0x5a, 0x58, 0x54,\n    0x57, 0x56, 0x50, 0x46, 0x3f, 0x3f, 0x42, 0x43, 0x42, 0x4a, 0x4e, 0x4c, 0x50, 0x5a, 0x60, 0x60,\n    0x67, 0x64, 0x5f, 0x5b, 0x59, 0x58, 0x5a, 0x5b, 0x5b, 0x5a, 0x59, 0x59, 0x5b, 0x5d, 0x5d, 0x5d,\n    0x78, 0x96, 0xa8, 0xa8, 0xa6, 0xa1, 0x92, 0x85, 0x86, 0x87, 0x89, 0x8b, 0x8c, 0x8b, 0x8b, 0x8a,\n    0x8c, 0x8c, 0x8c, 0x8c, 0x8d, 0x8e, 0x8f, 0x90, 0x8e, 0x8d, 0x8c, 0x8d, 0x8f, 0x90, 0x91, 0x91,\n    0x8f, 0x90, 0x91, 0x91, 0x90, 0x8f, 0x8f, 0x90, 0x92, 0x94, 0x96, 0x96, 0x95, 0x95, 0x95, 0x95,\n    0x95, 0x94, 0x93, 0x91, 0x90, 0x8d, 0x8a, 0x87, 0x83, 0x80, 0x7e, 0x7b, 0x78, 0x75, 0x72, 0x6f,\n    0x6e, 0x6a, 0x66, 0x64, 0x62, 0x61, 0x64, 0x68, 0x74, 0x7f, 0x8f, 0x9e, 0xa8, 0xae, 0xb2, 0xb4,\n    0xb3, 0xb4, 0xb4, 0xb2, 0xb1, 0xb0, 0xab, 0xa6, 0xa0, 0xa1, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa6,\n    0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xa9, 0xa9, 0xa8, 0xa7, 0xa4, 0xa0, 0x9c, 0x96, 0x92, 0x90,\n    0x8f, 0x8d, 0x8b, 0x88, 0x85, 0x80, 0x7c, 0x7a, 0x7e, 0x84, 0x8b, 0x91, 0x96, 0x9b, 0x9e, 0xa0,\n    0xa3, 0xa7, 0xab, 0xad, 0xad, 0xae, 0xb0, 0xb3, 0xb1, 0xb0, 0xaf, 0xae, 0xae, 0xae, 0xae, 0xae,\n    0xad, 0xac, 0xab, 0xab, 0xab, 0xaa, 0xa8, 0xa6, 0xa5, 0xa4, 0xa1, 0x9f, 0x9d, 0x99, 0x95, 0x92,\n    0x8e, 0x8b, 0x86, 0x82, 0x7d, 0x79, 0x75, 0x72, 0x71, 0x65, 0x69, 0x79, 0x80, 0x7d, 0x76, 0x6e,\n    0x70, 0x6b, 0x65, 0x66, 0x73, 0x85, 0x92, 0x97, 0x87, 0x78, 0x64, 0x59, 0x5b, 0x64, 0x6d, 0x73,\n    0x6d, 0x6c, 0x64, 0x5d, 0x5d, 0x54, 0x44, 0x3c, 0x47, 0x48, 0x49, 0x4c, 0x55, 0x5d, 0x5e, 0x5b,\n    0x5e, 0x5a, 0x4d, 0x4f, 0x54, 0x59, 0x65, 0x66, 0x66, 0x63, 0x62, 0x5b, 0x50, 0x54, 0x66, 0x71,\n    0x73, 0x6d, 0x5f, 0x59, 0x61, 0x61, 0x58, 0x52, 0x44, 0x4d, 0x57, 0x59, 0x5c, 0x69, 0x70, 0x6a,\n    0x62, 0x5a, 0x5f, 0x69, 0x69, 0x61, 0x56, 0x4a, 0x47, 0x4a, 0x49, 0x4c, 0x5f, 0x76, 0x75, 0x65,\n    0x46, 0x33, 0x37, 0x40, 0x34, 0x33, 0x43, 0x4c, 0x5c, 0x6b, 0x70, 0x67, 0x5c, 0x54, 0x58, 0x65,\n    0x65, 0x69, 0x6e, 0x73, 0x6e, 0x58, 0x46, 0x45, 0x45, 0x45, 0x4a, 0x4f, 0x4b, 0x45, 0x4b, 0x58,\n    0x5a, 0x55, 0x53, 0x47, 0x36, 0x3d, 0x54, 0x5e, 0x64, 0x58, 0x56, 0x59, 0x56, 0x54, 0x58, 0x5b,\n    0x47, 0x3e, 0x3a, 0x41, 0x4a, 0x4f, 0x52, 0x56, 0x53, 0x44, 0x36, 0x36, 0x3d, 0x43, 0x48, 0x4a,\n    0x4d, 0x60, 0x68, 0x67, 0x68, 0x61, 0x58, 0x5a, 0x6e, 0x62, 0x52, 0x54, 0x67, 0x6b, 0x65, 0x67,\n    0x4a, 0x32, 0x2e, 0x48, 0x5b, 0x5d, 0x65, 0x75, 0x55, 0x39, 0x38, 0x55, 0x63, 0x5a, 0x51, 0x50,\n    0x6d, 0x68, 0x61, 0x5a, 0x52, 0x47, 0x3c, 0x35, 0x31, 0x2d, 0x37, 0x41, 0x4b, 0x61, 0x68, 0x55,\n    0x2e, 0x28, 0x25, 0x28, 0x2c, 0x2e, 0x32, 0x38, 0x32, 0x2f, 0x2d, 0x2d, 0x29, 0x23, 0x21, 0x24,\n    0x26, 0x26, 0x27, 0x2b, 0x30, 0x31, 0x2d, 0x29, 0x2f, 0x30, 0x32, 0x32, 0x2d, 0x26, 0x25, 0x26,\n    0x28, 0x26, 0x25, 0x27, 0x29, 0x2a, 0x29, 0x28, 0x28, 0x26, 0x24, 0x24, 0x26, 0x29, 0x2b, 0x2d,\n    0x34, 0x34, 0x33, 0x30, 0x2b, 0x28, 0x27, 0x28, 0x2a, 0x2b, 0x2d, 0x31, 0x30, 0x2d, 0x2b, 0x2b,\n    0x27, 0x23, 0x22, 0x25, 0x2a, 0x2d, 0x2f, 0x32, 0x2d, 0x2d, 0x2b, 0x2a, 0x28, 0x27, 0x25, 0x25,\n    0x21, 0x24, 0x27, 0x28, 0x2c, 0x30, 0x30, 0x2e, 0x25, 0x28, 0x2b, 0x2a, 0x28, 0x28, 0x2b, 0x2e,\n    0x2f, 0x33, 0x39, 0x41, 0x47, 0x47, 0x43, 0x40, 0x32, 0x33, 0x32, 0x2f, 0x2c, 0x2b, 0x2d, 0x2f,\n    0x34, 0x32, 0x30, 0x2f, 0x31, 0x31, 0x30, 0x2e, 0x2d, 0x2f, 0x33, 0x37, 0x37, 0x37, 0x39, 0x3d,\n    0x3b, 0x39, 0x39, 0x39, 0x39, 0x38, 0x3b, 0x3f, 0x40, 0x3e, 0x3f, 0x47, 0x51, 0x57, 0x58, 0x55,\n    0x5a, 0x5d, 0x66, 0x73, 0x7e, 0x7b, 0x6e, 0x61, 0x5f, 0x59, 0x5e, 0x6b, 0x6a, 0x58, 0x4a, 0x49,\n    0x40, 0x40, 0x3f, 0x3d, 0x3d, 0x3f, 0x3e, 0x3c, 0x3d, 0x3e, 0x3f, 0x40, 0x3f, 0x3d, 0x3a, 0x38,\n    0x3d, 0x3c, 0x3d, 0x3e, 0x40, 0x41, 0x40, 0x3f, 0x43, 0x44, 0x45, 0x43, 0x40, 0x3f, 0x3f, 0x40,\n    0x49, 0x48, 0x49, 0x49, 0x47, 0x43, 0x40, 0x41, 0x3f, 0x41, 0x44, 0x45, 0x45, 0x44, 0x44, 0x44,\n    0x44, 0x44, 0x47, 0x4c, 0x4e, 0x4c, 0x4b, 0x4c, 0x49, 0x48, 0x48, 0x48, 0x4b, 0x4d, 0x4f, 0x50,\n    0x4f, 0x4b, 0x4a, 0x4b, 0x4e, 0x4f, 0x51, 0x54, 0x54, 0x52, 0x50, 0x51, 0x56, 0x5a, 0x59, 0x55,\n    0x4f, 0x4b, 0x42, 0x38, 0x34, 0x36, 0x39, 0x3a, 0x42, 0x4e, 0x55, 0x56, 0x61, 0x74, 0x7e, 0x7b,\n    0x6f, 0x6a, 0x63, 0x5c, 0x57, 0x56, 0x56, 0x57, 0x59, 0x56, 0x56, 0x59, 0x59, 0x57, 0x59, 0x5e,\n    0x74, 0x92, 0xa5, 0xa5, 0xa3, 0x9e, 0x91, 0x87, 0x87, 0x88, 0x89, 0x8b, 0x8c, 0x8b, 0x8b, 0x8a,\n    0x8a, 0x8a, 0x8b, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f, 0x8b, 0x8a, 0x89, 0x8a, 0x8b, 0x8c, 0x8c, 0x8c,\n    0x8e, 0x8f, 0x8f, 0x8f, 0x8d, 0x8c, 0x8c, 0x8c, 0x8f, 0x90, 0x92, 0x92, 0x91, 0x90, 0x90, 0x91,\n    0x90, 0x8f, 0x8d, 0x8b, 0x8a, 0x87, 0x84, 0x82, 0x7d, 0x7b, 0x79, 0x76, 0x74, 0x70, 0x6c, 0x69,\n    0x68, 0x65, 0x61, 0x5e, 0x5c, 0x5c, 0x61, 0x68, 0x75, 0x82, 0x93, 0xa2, 0xaa, 0xb0, 0xb4, 0xb8,\n    0xb8, 0xb9, 0xb8, 0xb5, 0xb3, 0xb1, 0xac, 0xa7, 0x9f, 0x9f, 0x9f, 0x9f, 0xa0, 0xa1, 0xa2, 0xa3,\n    0xa3, 0xa3, 0xa4, 0xa3, 0xa3, 0xa2, 0xa2, 0xa1, 0xa3, 0xa1, 0x9f, 0x9b, 0x98, 0x95, 0x93, 0x92,\n    0x93, 0x93, 0x92, 0x90, 0x8b, 0x83, 0x79, 0x72, 0x72, 0x77, 0x7e, 0x86, 0x8d, 0x92, 0x97, 0x9a,\n    0x9d, 0xa2, 0xa8, 0xac, 0xad, 0xae, 0xb0, 0xb1, 0xb0, 0xb0, 0xb0, 0xb0, 0xaf, 0xae, 0xad, 0xad,\n    0xad, 0xac, 0xab, 0xab, 0xab, 0xaa, 0xa8, 0xa6, 0xa5, 0xa3, 0xa0, 0x9d, 0x9b, 0x97, 0x94, 0x91,\n    0x8c, 0x89, 0x85, 0x80, 0x7c, 0x78, 0x73, 0x70, 0x6d, 0x64, 0x6a, 0x7a, 0x80, 0x7e, 0x78, 0x71,\n    0x6e, 0x6b, 0x65, 0x65, 0x6f, 0x7f, 0x8c, 0x92, 0x8d, 0x7d, 0x69, 0x5e, 0x60, 0x67, 0x6e, 0x71,\n    0x69, 0x6c, 0x64, 0x5b, 0x59, 0x55, 0x4e, 0x4d, 0x40, 0x3f, 0x3d, 0x3f, 0x47, 0x4f, 0x52, 0x50,\n    0x53, 0x58, 0x59, 0x66, 0x6c, 0x6d, 0x7a, 0x7f, 0x6d, 0x65, 0x61, 0x5c, 0x53, 0x55, 0x62, 0x6a,\n    0x70, 0x74, 0x70, 0x68, 0x62, 0x56, 0x47, 0x40, 0x3e, 0x49, 0x58, 0x5f, 0x61, 0x6a, 0x6f, 0x68,\n    0x60, 0x5a, 0x5e, 0x67, 0x6a, 0x68, 0x5c, 0x4b, 0x41, 0x40, 0x42, 0x4d, 0x64, 0x76, 0x72, 0x64,\n    0x4a, 0x37, 0x35, 0x38, 0x2f, 0x30, 0x42, 0x4e, 0x65, 0x6e, 0x6d, 0x65, 0x62, 0x61, 0x61, 0x66,\n    0x5e, 0x60, 0x5a, 0x57, 0x59, 0x56, 0x4d, 0x4a, 0x44, 0x47, 0x4e, 0x53, 0x4d, 0x48, 0x4f, 0x5d,\n    0x5a, 0x53, 0x51, 0x45, 0x2f, 0x32, 0x49, 0x56, 0x5f, 0x4a, 0x42, 0x4e, 0x59, 0x5e, 0x5e, 0x58,\n    0x4e, 0x47, 0x42, 0x46, 0x4a, 0x4d, 0x51, 0x57, 0x60, 0x4f, 0x40, 0x3f, 0x47, 0x4d, 0x52, 0x56,\n    0x57, 0x6b, 0x74, 0x70, 0x6a, 0x64, 0x60, 0x63, 0x72, 0x67, 0x59, 0x5b, 0x66, 0x5e, 0x48, 0x3c,\n    0x2e, 0x27, 0x37, 0x51, 0x5c, 0x62, 0x69, 0x67, 0x4b, 0x36, 0x38, 0x52, 0x5f, 0x64, 0x76, 0x8a,\n    0x79, 0x79, 0x76, 0x6f, 0x62, 0x52, 0x44, 0x3c, 0x2e, 0x25, 0x2a, 0x38, 0x48, 0x5e, 0x62, 0x50,\n    0x2b, 0x27, 0x25, 0x27, 0x29, 0x2b, 0x2f, 0x33, 0x32, 0x31, 0x31, 0x31, 0x2c, 0x26, 0x25, 0x28,\n    0x29, 0x28, 0x29, 0x2e, 0x35, 0x38, 0x37, 0x34, 0x32, 0x31, 0x32, 0x34, 0x32, 0x2c, 0x27, 0x26,\n    0x2b, 0x2b, 0x2a, 0x2a, 0x2a, 0x29, 0x28, 0x27, 0x22, 0x23, 0x25, 0x26, 0x28, 0x29, 0x28, 0x28,\n    0x2c, 0x30, 0x35, 0x37, 0x34, 0x2e, 0x29, 0x26, 0x29, 0x29, 0x2b, 0x2e, 0x31, 0x31, 0x2f, 0x2d,\n    0x2c, 0x25, 0x22, 0x27, 0x2b, 0x2d, 0x30, 0x36, 0x2f, 0x2f, 0x2f, 0x2e, 0x2c, 0x2b, 0x29, 0x28,\n    0x22, 0x23, 0x23, 0x24, 0x2a, 0x31, 0x34, 0x34, 0x2d, 0x2e, 0x2e, 0x2d, 0x2c, 0x2d, 0x30, 0x33,\n    0x3c, 0x3a, 0x39, 0x3b, 0x3e, 0x3f, 0x3c, 0x39, 0x38, 0x37, 0x35, 0x32, 0x2f, 0x2e, 0x2f, 0x31,\n    0x35, 0x33, 0x31, 0x30, 0x31, 0x32, 0x32, 0x31, 0x2f, 0x30, 0x33, 0x37, 0x38, 0x39, 0x3c, 0x40,\n    0x3b, 0x38, 0x37, 0x37, 0x36, 0x35, 0x38, 0x3c, 0x3e, 0x42, 0x48, 0x4e, 0x51, 0x4e, 0x49, 0x44,\n    0x45, 0x45, 0x47, 0x4d, 0x55, 0x58, 0x57, 0x54, 0x58, 0x4e, 0x4f, 0x5d, 0x5e, 0x4f, 0x45, 0x46,\n    0x46, 0x44, 0x40, 0x3d, 0x3c, 0x3d, 0x3e, 0x3e, 0x42, 0x42, 0x42, 0x41, 0x40, 0x3e, 0x3c, 0x3b,\n    0x41, 0x41, 0x42, 0x43, 0x44, 0x44, 0x42, 0x40, 0x41, 0x43, 0x44, 0x42, 0x3e, 0x3c, 0x3e, 0x40,\n    0x4a, 0x4a, 0x4a, 0x48, 0x44, 0x42, 0x42, 0x44, 0x43, 0x44, 0x45, 0x43, 0x40, 0x3f, 0x3f, 0x41,\n    0x3f, 0x3f, 0x43, 0x48, 0x49, 0x47, 0x45, 0x46, 0x47, 0x46, 0x46, 0x47, 0x49, 0x4a, 0x4b, 0x4a,\n    0x4c, 0x4a, 0x49, 0x4b, 0x4d, 0x4f, 0x53, 0x57, 0x53, 0x50, 0x4e, 0x51, 0x58, 0x5c, 0x5a, 0x55,\n    0x52, 0x4d, 0x45, 0x40, 0x3f, 0x42, 0x45, 0x46, 0x50, 0x55, 0x57, 0x56, 0x5b, 0x64, 0x67, 0x62,\n    0x65, 0x62, 0x5e, 0x59, 0x56, 0x56, 0x57, 0x58, 0x58, 0x55, 0x58, 0x5d, 0x5b, 0x55, 0x56, 0x5e,\n    0x70, 0x8d, 0xa1, 0xa3, 0xa1, 0x9c, 0x90, 0x88, 0x87, 0x88, 0x8a, 0x8b, 0x8b, 0x8b, 0x8a, 0x89,\n    0x8a, 0x8a, 0x8a, 0x8a, 0x8b, 0x8b, 0x8b, 0x8c, 0x8b, 0x8a, 0x88, 0x87, 0x87, 0x87, 0x86, 0x85,\n    0x89, 0x8a, 0x8b, 0x8a, 0x89, 0x88, 0x87, 0x88, 0x8c, 0x8d, 0x8e, 0x8e, 0x8d, 0x8c, 0x8c, 0x8c,\n    0x8c, 0x8a, 0x88, 0x86, 0x84, 0x83, 0x80, 0x7e, 0x7a, 0x78, 0x75, 0x73, 0x70, 0x6c, 0x68, 0x64,\n    0x64, 0x61, 0x5e, 0x5b, 0x59, 0x59, 0x5f, 0x66, 0x71, 0x7f, 0x92, 0xa0, 0xa8, 0xac, 0xb1, 0xb5,\n    0xb8, 0xb9, 0xb7, 0xb4, 0xb1, 0xae, 0xa8, 0xa3, 0x9e, 0x9d, 0x9b, 0x9a, 0x9a, 0x9c, 0x9d, 0x9f,\n    0x9d, 0x9d, 0x9d, 0x9d, 0x9c, 0x9c, 0x9b, 0x9a, 0x9d, 0x9b, 0x99, 0x98, 0x97, 0x97, 0x98, 0x98,\n    0x9a, 0x9c, 0x9c, 0x9a, 0x94, 0x8a, 0x7c, 0x72, 0x6b, 0x6c, 0x71, 0x79, 0x81, 0x88, 0x8f, 0x95,\n    0x98, 0x9d, 0xa3, 0xa7, 0xa9, 0xaa, 0xac, 0xae, 0xaf, 0xaf, 0xb0, 0xb0, 0xb0, 0xaf, 0xad, 0xac,\n    0xad, 0xac, 0xac, 0xac, 0xac, 0xaa, 0xa8, 0xa6, 0xa5, 0xa2, 0x9f, 0x9c, 0x98, 0x94, 0x91, 0x8e,\n    0x8a, 0x87, 0x83, 0x7f, 0x7b, 0x76, 0x72, 0x6e, 0x6b, 0x64, 0x6a, 0x78, 0x7d, 0x7e, 0x7b, 0x76,\n    0x6c, 0x6c, 0x6a, 0x6a, 0x70, 0x7b, 0x85, 0x89, 0x89, 0x7d, 0x6d, 0x62, 0x60, 0x64, 0x68, 0x6a,\n    0x72, 0x71, 0x63, 0x51, 0x4a, 0x46, 0x43, 0x43, 0x46, 0x52, 0x5f, 0x65, 0x60, 0x56, 0x4c, 0x46,\n    0x3f, 0x54, 0x68, 0x7c, 0x77, 0x67, 0x6a, 0x6d, 0x6e, 0x67, 0x67, 0x66, 0x5d, 0x58, 0x5b, 0x5b,\n    0x65, 0x6f, 0x6f, 0x65, 0x5a, 0x4c, 0x41, 0x40, 0x3e, 0x48, 0x59, 0x62, 0x63, 0x68, 0x6b, 0x65,\n    0x5b, 0x57, 0x5c, 0x66, 0x6f, 0x74, 0x6b, 0x58, 0x44, 0x3c, 0x3a, 0x4b, 0x66, 0x76, 0x71, 0x64,\n    0x4b, 0x3d, 0x3a, 0x3b, 0x30, 0x30, 0x41, 0x50, 0x6a, 0x70, 0x6a, 0x61, 0x63, 0x66, 0x64, 0x63,\n    0x65, 0x66, 0x5f, 0x5a, 0x59, 0x50, 0x43, 0x3f, 0x48, 0x49, 0x4d, 0x4f, 0x4b, 0x47, 0x4f, 0x5b,\n    0x61, 0x53, 0x4d, 0x46, 0x38, 0x3e, 0x54, 0x5e, 0x52, 0x3e, 0x3c, 0x50, 0x62, 0x66, 0x5f, 0x54,\n    0x5d, 0x53, 0x4c, 0x4d, 0x50, 0x51, 0x54, 0x59, 0x51, 0x4c, 0x3d, 0x2e, 0x30, 0x3f, 0x4c, 0x4f,\n    0x62, 0x73, 0x7c, 0x78, 0x71, 0x6e, 0x6d, 0x6d, 0x72, 0x69, 0x65, 0x6d, 0x70, 0x5d, 0x3f, 0x2c,\n    0x1e, 0x2b, 0x4c, 0x61, 0x5b, 0x5f, 0x67, 0x5f, 0x5b, 0x50, 0x53, 0x60, 0x68, 0x6f, 0x74, 0x74,\n    0x7a, 0x78, 0x71, 0x63, 0x54, 0x44, 0x37, 0x2f, 0x25, 0x21, 0x29, 0x3a, 0x4b, 0x5e, 0x66, 0x5f,\n    0x2a, 0x27, 0x25, 0x27, 0x29, 0x2a, 0x2a, 0x2b, 0x2c, 0x2e, 0x31, 0x32, 0x2f, 0x2b, 0x2a, 0x2b,\n    0x2e, 0x2f, 0x31, 0x35, 0x38, 0x3b, 0x3d, 0x3d, 0x34, 0x31, 0x31, 0x36, 0x39, 0x36, 0x30, 0x2c,\n    0x2b, 0x2b, 0x2b, 0x29, 0x28, 0x27, 0x26, 0x27, 0x25, 0x27, 0x29, 0x2b, 0x2b, 0x2c, 0x2b, 0x2b,\n    0x2a, 0x30, 0x38, 0x3c, 0x3c, 0x36, 0x30, 0x2c, 0x2b, 0x2b, 0x2c, 0x2f, 0x32, 0x34, 0x32, 0x30,\n    0x34, 0x2d, 0x29, 0x2c, 0x2e, 0x2c, 0x2c, 0x2f, 0x2f, 0x30, 0x30, 0x2f, 0x2f, 0x2e, 0x2d, 0x2d,\n    0x2a, 0x28, 0x25, 0x24, 0x28, 0x31, 0x36, 0x37, 0x33, 0x30, 0x2d, 0x2c, 0x2f, 0x32, 0x34, 0x35,\n    0x3b, 0x38, 0x35, 0x36, 0x38, 0x39, 0x38, 0x35, 0x32, 0x32, 0x31, 0x31, 0x31, 0x32, 0x35, 0x37,\n    0x34, 0x33, 0x31, 0x30, 0x30, 0x32, 0x33, 0x33, 0x30, 0x30, 0x32, 0x36, 0x39, 0x3a, 0x3d, 0x41,\n    0x3d, 0x3a, 0x38, 0x37, 0x35, 0x34, 0x36, 0x3a, 0x3f, 0x43, 0x47, 0x49, 0x49, 0x4c, 0x50, 0x54,\n    0x58, 0x57, 0x52, 0x4b, 0x45, 0x45, 0x4b, 0x51, 0x51, 0x49, 0x46, 0x4c, 0x4f, 0x49, 0x44, 0x45,\n    0x44, 0x45, 0x46, 0x48, 0x49, 0x49, 0x49, 0x49, 0x4a, 0x49, 0x46, 0x43, 0x41, 0x40, 0x3f, 0x3f,\n    0x45, 0x45, 0x46, 0x47, 0x47, 0x46, 0x43, 0x40, 0x3f, 0x41, 0x43, 0x42, 0x3e, 0x3d, 0x3f, 0x41,\n    0x45, 0x48, 0x4a, 0x49, 0x46, 0x43, 0x42, 0x42, 0x49, 0x4a, 0x49, 0x46, 0x41, 0x3e, 0x3e, 0x3f,\n    0x3d, 0x3e, 0x41, 0x45, 0x46, 0x44, 0x42, 0x43, 0x46, 0x47, 0x49, 0x4b, 0x4c, 0x4c, 0x4b, 0x4a,\n    0x4a, 0x49, 0x4a, 0x4d, 0x4f, 0x50, 0x53, 0x56, 0x54, 0x51, 0x50, 0x55, 0x5c, 0x5d, 0x59, 0x55,\n    0x57, 0x51, 0x4a, 0x46, 0x44, 0x44, 0x43, 0x42, 0x43, 0x42, 0x45, 0x4a, 0x4d, 0x4c, 0x4c, 0x4d,\n    0x55, 0x55, 0x54, 0x54, 0x55, 0x57, 0x58, 0x5a, 0x56, 0x55, 0x5a, 0x60, 0x5d, 0x55, 0x56, 0x5d,\n    0x6c, 0x87, 0x9b, 0x9f, 0x9f, 0x99, 0x8e, 0x87, 0x88, 0x88, 0x8a, 0x8b, 0x8b, 0x8a, 0x89, 0x88,\n    0x89, 0x89, 0x89, 0x89, 0x88, 0x88, 0x87, 0x87, 0x88, 0x87, 0x86, 0x85, 0x85, 0x84, 0x82, 0x81,\n    0x82, 0x83, 0x84, 0x84, 0x84, 0x83, 0x84, 0x84, 0x88, 0x8a, 0x8b, 0x8b, 0x8a, 0x89, 0x89, 0x89,\n    0x89, 0x87, 0x85, 0x83, 0x81, 0x7f, 0x7d, 0x7b, 0x77, 0x75, 0x72, 0x6f, 0x6c, 0x68, 0x64, 0x61,\n    0x5e, 0x5b, 0x59, 0x57, 0x56, 0x56, 0x5a, 0x5f, 0x6d, 0x7b, 0x8e, 0x9d, 0xa4, 0xa7, 0xab, 0xaf,\n    0xb2, 0xb2, 0xb1, 0xad, 0xaa, 0xa7, 0xa1, 0x9c, 0x97, 0x96, 0x94, 0x93, 0x92, 0x94, 0x95, 0x97,\n    0x94, 0x94, 0x94, 0x94, 0x94, 0x93, 0x93, 0x92, 0x94, 0x93, 0x93, 0x93, 0x95, 0x98, 0x9c, 0x9e,\n    0x9f, 0xa1, 0xa0, 0x9c, 0x97, 0x8e, 0x81, 0x75, 0x66, 0x63, 0x64, 0x6a, 0x73, 0x7b, 0x85, 0x8d,\n    0x92, 0x96, 0x9b, 0x9e, 0xa0, 0xa3, 0xa6, 0xa9, 0xad, 0xae, 0xaf, 0xb0, 0xb0, 0xae, 0xad, 0xac,\n    0xad, 0xac, 0xac, 0xac, 0xab, 0xaa, 0xa8, 0xa6, 0xa5, 0xa3, 0x9f, 0x9b, 0x97, 0x92, 0x8d, 0x8a,\n    0x88, 0x85, 0x82, 0x7e, 0x79, 0x75, 0x70, 0x6c, 0x6b, 0x65, 0x69, 0x73, 0x77, 0x7a, 0x7c, 0x7a,\n    0x71, 0x72, 0x71, 0x70, 0x73, 0x7c, 0x82, 0x85, 0x86, 0x7e, 0x71, 0x64, 0x5d, 0x5e, 0x63, 0x69,\n    0x7b, 0x79, 0x69, 0x55, 0x4d, 0x46, 0x3e, 0x3a, 0x44, 0x4b, 0x59, 0x68, 0x6f, 0x69, 0x59, 0x4d,\n    0x49, 0x58, 0x65, 0x72, 0x6d, 0x63, 0x6c, 0x73, 0x72, 0x6c, 0x6e, 0x6f, 0x63, 0x56, 0x51, 0x4d,\n    0x5a, 0x66, 0x68, 0x5f, 0x55, 0x4b, 0x47, 0x4b, 0x43, 0x4a, 0x59, 0x63, 0x64, 0x66, 0x68, 0x65,\n    0x5c, 0x56, 0x58, 0x62, 0x6f, 0x7c, 0x7c, 0x70, 0x53, 0x42, 0x3a, 0x49, 0x64, 0x73, 0x6f, 0x65,\n    0x4b, 0x42, 0x3e, 0x3a, 0x2f, 0x2e, 0x3f, 0x53, 0x6c, 0x6f, 0x68, 0x5f, 0x62, 0x63, 0x61, 0x60,\n    0x5c, 0x61, 0x68, 0x71, 0x6c, 0x54, 0x41, 0x40, 0x4e, 0x49, 0x46, 0x46, 0x47, 0x48, 0x50, 0x59,\n    0x4c, 0x40, 0x3c, 0x36, 0x2d, 0x39, 0x53, 0x5f, 0x57, 0x4c, 0x51, 0x5f, 0x61, 0x5b, 0x5a, 0x59,\n    0x61, 0x55, 0x4b, 0x4c, 0x52, 0x55, 0x57, 0x5b, 0x57, 0x50, 0x41, 0x35, 0x3a, 0x4d, 0x5c, 0x62,\n    0x66, 0x71, 0x7a, 0x78, 0x75, 0x77, 0x77, 0x6f, 0x6b, 0x54, 0x57, 0x70, 0x6a, 0x41, 0x24, 0x21,\n    0x21, 0x29, 0x50, 0x6e, 0x62, 0x53, 0x54, 0x53, 0x3f, 0x3e, 0x4d, 0x64, 0x70, 0x71, 0x69, 0x5e,\n    0x65, 0x60, 0x54, 0x45, 0x3a, 0x35, 0x31, 0x2c, 0x1f, 0x26, 0x36, 0x49, 0x57, 0x60, 0x5d, 0x53,\n    0x2d, 0x2a, 0x27, 0x28, 0x2a, 0x2b, 0x29, 0x26, 0x28, 0x2c, 0x31, 0x36, 0x36, 0x34, 0x32, 0x30,\n    0x32, 0x34, 0x37, 0x38, 0x38, 0x39, 0x3b, 0x3e, 0x3b, 0x36, 0x33, 0x36, 0x38, 0x34, 0x2e, 0x2a,\n    0x2a, 0x2b, 0x2b, 0x29, 0x27, 0x27, 0x29, 0x2b, 0x2d, 0x2d, 0x2d, 0x2c, 0x2b, 0x2c, 0x2e, 0x30,\n    0x2f, 0x32, 0x36, 0x39, 0x3a, 0x38, 0x35, 0x33, 0x2f, 0x30, 0x2f, 0x2e, 0x30, 0x33, 0x32, 0x30,\n    0x33, 0x2f, 0x2e, 0x30, 0x32, 0x31, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x31, 0x31,\n    0x32, 0x30, 0x2c, 0x28, 0x2a, 0x31, 0x36, 0x38, 0x35, 0x31, 0x2d, 0x2e, 0x32, 0x36, 0x36, 0x34,\n    0x2f, 0x2f, 0x32, 0x36, 0x3a, 0x3c, 0x3b, 0x39, 0x31, 0x30, 0x30, 0x2f, 0x30, 0x31, 0x32, 0x34,\n    0x32, 0x32, 0x30, 0x30, 0x30, 0x31, 0x33, 0x33, 0x31, 0x30, 0x32, 0x36, 0x39, 0x3a, 0x3b, 0x3e,\n    0x3f, 0x3d, 0x3b, 0x3a, 0x38, 0x36, 0x37, 0x3a, 0x3e, 0x42, 0x46, 0x46, 0x45, 0x47, 0x4c, 0x52,\n    0x64, 0x67, 0x67, 0x61, 0x58, 0x55, 0x5b, 0x63, 0x6a, 0x64, 0x5f, 0x5d, 0x5b, 0x56, 0x51, 0x4f,\n    0x46, 0x4a, 0x51, 0x57, 0x57, 0x51, 0x4d, 0x4b, 0x4a, 0x48, 0x45, 0x42, 0x40, 0x3f, 0x3f, 0x3f,\n    0x44, 0x45, 0x46, 0x47, 0x47, 0x46, 0x43, 0x40, 0x3f, 0x41, 0x43, 0x44, 0x42, 0x41, 0x42, 0x43,\n    0x43, 0x48, 0x4d, 0x4d, 0x4b, 0x48, 0x43, 0x3e, 0x47, 0x49, 0x4a, 0x46, 0x41, 0x3d, 0x3c, 0x3d,\n    0x3e, 0x3d, 0x3f, 0x42, 0x43, 0x41, 0x41, 0x42, 0x43, 0x46, 0x4a, 0x4c, 0x4c, 0x4b, 0x4b, 0x4b,\n    0x4a, 0x4a, 0x4b, 0x4e, 0x4f, 0x4e, 0x51, 0x54, 0x56, 0x53, 0x53, 0x58, 0x5d, 0x5c, 0x58, 0x55,\n    0x54, 0x4e, 0x49, 0x46, 0x43, 0x3e, 0x3b, 0x3b, 0x3a, 0x39, 0x40, 0x4d, 0x55, 0x56, 0x5b, 0x62,\n    0x59, 0x58, 0x57, 0x56, 0x55, 0x55, 0x54, 0x54, 0x56, 0x56, 0x5b, 0x5f, 0x5d, 0x57, 0x56, 0x5a,\n    0x65, 0x7e, 0x8f, 0x94, 0x98, 0x95, 0x8c, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x8a, 0x89, 0x87, 0x86,\n    0x88, 0x88, 0x87, 0x87, 0x86, 0x85, 0x84, 0x83, 0x83, 0x82, 0x82, 0x82, 0x83, 0x83, 0x82, 0x81,\n    0x7f, 0x81, 0x82, 0x83, 0x83, 0x83, 0x84, 0x85, 0x85, 0x86, 0x88, 0x88, 0x87, 0x86, 0x86, 0x86,\n    0x86, 0x84, 0x82, 0x80, 0x7f, 0x7d, 0x7a, 0x78, 0x73, 0x70, 0x6d, 0x6a, 0x67, 0x64, 0x61, 0x5f,\n    0x57, 0x55, 0x55, 0x57, 0x57, 0x56, 0x56, 0x58, 0x68, 0x75, 0x88, 0x97, 0x9f, 0xa2, 0xa4, 0xa6,\n    0xa9, 0xaa, 0xa9, 0xa6, 0xa3, 0xa1, 0x9b, 0x96, 0x90, 0x8f, 0x8d, 0x8c, 0x8c, 0x8d, 0x8e, 0x8f,\n    0x8d, 0x8d, 0x8d, 0x8e, 0x8e, 0x8e, 0x8d, 0x8d, 0x8e, 0x8e, 0x8f, 0x91, 0x95, 0x9a, 0x9f, 0xa2,\n    0xa1, 0xa3, 0xa1, 0x9c, 0x98, 0x91, 0x85, 0x78, 0x66, 0x60, 0x5c, 0x61, 0x68, 0x70, 0x7b, 0x85,\n    0x8c, 0x90, 0x95, 0x98, 0x9b, 0x9e, 0xa2, 0xa6, 0xa9, 0xaa, 0xac, 0xad, 0xad, 0xad, 0xac, 0xab,\n    0xac, 0xab, 0xaa, 0xaa, 0xaa, 0xa9, 0xa7, 0xa5, 0xa4, 0xa2, 0x9f, 0x9b, 0x97, 0x91, 0x8b, 0x88,\n    0x85, 0x83, 0x7f, 0x7c, 0x77, 0x72, 0x6d, 0x6a, 0x6a, 0x64, 0x67, 0x6d, 0x6e, 0x73, 0x79, 0x79,\n    0x79, 0x78, 0x75, 0x72, 0x75, 0x7d, 0x84, 0x87, 0x88, 0x81, 0x75, 0x67, 0x5d, 0x5d, 0x64, 0x6c,\n    0x7c, 0x7b, 0x6c, 0x5c, 0x5b, 0x5e, 0x5d, 0x5c, 0x54, 0x4e, 0x4b, 0x51, 0x58, 0x59, 0x54, 0x4f,\n    0x4a, 0x4f, 0x4a, 0x4f, 0x53, 0x58, 0x69, 0x6e, 0x6e, 0x68, 0x6b, 0x6d, 0x61, 0x55, 0x52, 0x52,\n    0x5f, 0x69, 0x6a, 0x63, 0x5b, 0x51, 0x49, 0x49, 0x49, 0x4b, 0x58, 0x63, 0x65, 0x67, 0x69, 0x67,\n    0x62, 0x58, 0x56, 0x5e, 0x6a, 0x7a, 0x84, 0x82, 0x69, 0x57, 0x49, 0x51, 0x64, 0x70, 0x6d, 0x65,\n    0x51, 0x4a, 0x40, 0x38, 0x31, 0x32, 0x46, 0x5d, 0x70, 0x6f, 0x67, 0x63, 0x65, 0x64, 0x62, 0x64,\n    0x53, 0x56, 0x60, 0x6e, 0x6a, 0x52, 0x48, 0x55, 0x4f, 0x46, 0x3f, 0x3f, 0x44, 0x4c, 0x54, 0x5a,\n    0x51, 0x4d, 0x4d, 0x41, 0x30, 0x3c, 0x58, 0x64, 0x55, 0x46, 0x47, 0x54, 0x56, 0x54, 0x58, 0x5d,\n    0x57, 0x4b, 0x42, 0x45, 0x4d, 0x54, 0x59, 0x5d, 0x5c, 0x45, 0x33, 0x37, 0x42, 0x4b, 0x54, 0x5d,\n    0x6b, 0x72, 0x7a, 0x7c, 0x7c, 0x82, 0x80, 0x70, 0x51, 0x3b, 0x3a, 0x46, 0x3d, 0x27, 0x1d, 0x1f,\n    0x2c, 0x3d, 0x5b, 0x6c, 0x66, 0x5f, 0x54, 0x42, 0x2f, 0x29, 0x3c, 0x5c, 0x64, 0x5d, 0x5b, 0x60,\n    0x5d, 0x58, 0x4b, 0x3c, 0x34, 0x34, 0x34, 0x32, 0x20, 0x2d, 0x3f, 0x51, 0x62, 0x6a, 0x63, 0x58,\n    0x32, 0x2d, 0x28, 0x28, 0x2c, 0x2f, 0x2c, 0x27, 0x25, 0x2a, 0x32, 0x39, 0x3d, 0x3c, 0x38, 0x33,\n    0x33, 0x35, 0x37, 0x38, 0x38, 0x39, 0x3b, 0x3d, 0x3c, 0x38, 0x36, 0x35, 0x33, 0x2f, 0x2c, 0x2b,\n    0x30, 0x31, 0x31, 0x2e, 0x2b, 0x2a, 0x2e, 0x31, 0x31, 0x31, 0x30, 0x2d, 0x2b, 0x2a, 0x2c, 0x2e,\n    0x32, 0x32, 0x33, 0x35, 0x36, 0x37, 0x37, 0x37, 0x36, 0x36, 0x34, 0x30, 0x30, 0x33, 0x33, 0x31,\n    0x32, 0x33, 0x33, 0x34, 0x38, 0x3b, 0x3a, 0x37, 0x34, 0x33, 0x33, 0x32, 0x33, 0x33, 0x34, 0x35,\n    0x35, 0x35, 0x32, 0x2e, 0x2e, 0x31, 0x35, 0x37, 0x33, 0x32, 0x32, 0x34, 0x37, 0x38, 0x36, 0x34,\n    0x37, 0x38, 0x38, 0x38, 0x37, 0x34, 0x31, 0x2f, 0x36, 0x35, 0x33, 0x32, 0x31, 0x31, 0x30, 0x30,\n    0x33, 0x33, 0x33, 0x32, 0x32, 0x33, 0x34, 0x35, 0x35, 0x33, 0x35, 0x38, 0x3a, 0x39, 0x3a, 0x3b,\n    0x3f, 0x3d, 0x3c, 0x3c, 0x3a, 0x37, 0x38, 0x3b, 0x3c, 0x41, 0x49, 0x4f, 0x50, 0x4f, 0x4e, 0x4d,\n    0x4e, 0x54, 0x5b, 0x5e, 0x5f, 0x62, 0x67, 0x6c, 0x6f, 0x6b, 0x6a, 0x6a, 0x65, 0x5a, 0x51, 0x4e,\n    0x4d, 0x4e, 0x53, 0x56, 0x53, 0x4b, 0x46, 0x46, 0x46, 0x46, 0x45, 0x43, 0x42, 0x40, 0x3e, 0x3e,\n    0x40, 0x41, 0x42, 0x44, 0x45, 0x45, 0x42, 0x40, 0x40, 0x42, 0x45, 0x46, 0x47, 0x46, 0x45, 0x44,\n    0x49, 0x4c, 0x4e, 0x4c, 0x4b, 0x4a, 0x45, 0x3f, 0x41, 0x44, 0x48, 0x46, 0x42, 0x3e, 0x3e, 0x3f,\n    0x41, 0x3f, 0x3f, 0x41, 0x41, 0x40, 0x41, 0x44, 0x42, 0x46, 0x4a, 0x4a, 0x48, 0x46, 0x47, 0x49,\n    0x49, 0x48, 0x4a, 0x4c, 0x4d, 0x4d, 0x51, 0x55, 0x59, 0x55, 0x54, 0x58, 0x5a, 0x58, 0x55, 0x55,\n    0x58, 0x53, 0x4e, 0x4d, 0x4a, 0x45, 0x44, 0x45, 0x46, 0x47, 0x4b, 0x4f, 0x52, 0x54, 0x59, 0x5e,\n    0x62, 0x60, 0x5c, 0x58, 0x55, 0x53, 0x52, 0x51, 0x58, 0x5a, 0x5c, 0x5c, 0x5b, 0x59, 0x5a, 0x5b,\n    0x5d, 0x71, 0x7f, 0x85, 0x8c, 0x8e, 0x89, 0x86, 0x87, 0x88, 0x89, 0x89, 0x89, 0x87, 0x86, 0x85,\n    0x85, 0x85, 0x85, 0x85, 0x84, 0x83, 0x82, 0x81, 0x7f, 0x7f, 0x7f, 0x80, 0x81, 0x81, 0x80, 0x7e,\n    0x7e, 0x7f, 0x81, 0x82, 0x81, 0x81, 0x82, 0x83, 0x81, 0x82, 0x84, 0x85, 0x84, 0x83, 0x84, 0x84,\n    0x81, 0x80, 0x7f, 0x7e, 0x7c, 0x7a, 0x76, 0x73, 0x6f, 0x6c, 0x69, 0x66, 0x65, 0x64, 0x62, 0x61,\n    0x59, 0x58, 0x5a, 0x60, 0x63, 0x61, 0x5d, 0x5b, 0x61, 0x6d, 0x7f, 0x8e, 0x96, 0x99, 0x9a, 0x9a,\n    0x9c, 0x9d, 0x9d, 0x9a, 0x98, 0x97, 0x92, 0x8d, 0x87, 0x87, 0x86, 0x85, 0x85, 0x85, 0x86, 0x87,\n    0x86, 0x86, 0x87, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x89, 0x8a, 0x8e, 0x93, 0x99, 0x9e, 0xa1,\n    0xa1, 0xa3, 0xa0, 0x9b, 0x97, 0x92, 0x85, 0x78, 0x66, 0x5d, 0x57, 0x5b, 0x61, 0x66, 0x70, 0x7a,\n    0x82, 0x87, 0x8e, 0x93, 0x96, 0x9a, 0x9d, 0xa0, 0xa5, 0xa6, 0xa7, 0xa9, 0xa9, 0xaa, 0xaa, 0xa9,\n    0xa9, 0xa9, 0xa8, 0xa8, 0xa8, 0xa7, 0xa5, 0xa3, 0xa1, 0xa0, 0x9e, 0x9c, 0x98, 0x92, 0x8b, 0x87,\n    0x82, 0x80, 0x7d, 0x79, 0x75, 0x70, 0x6a, 0x67, 0x67, 0x62, 0x64, 0x67, 0x67, 0x6b, 0x73, 0x74,\n    0x78, 0x77, 0x75, 0x74, 0x78, 0x7f, 0x84, 0x84, 0x85, 0x81, 0x78, 0x6d, 0x64, 0x61, 0x64, 0x67,\n    0x7d, 0x7e, 0x70, 0x5f, 0x5d, 0x63, 0x64, 0x65, 0x65, 0x5d, 0x56, 0x51, 0x4e, 0x4d, 0x4f, 0x53,\n    0x5f, 0x68, 0x63, 0x5f, 0x5a, 0x5b, 0x66, 0x65, 0x66, 0x62, 0x67, 0x6b, 0x60, 0x57, 0x5a, 0x60,\n    0x67, 0x6e, 0x6d, 0x67, 0x63, 0x59, 0x4b, 0x45, 0x48, 0x47, 0x52, 0x61, 0x66, 0x68, 0x6a, 0x68,\n    0x64, 0x59, 0x59, 0x61, 0x68, 0x72, 0x7e, 0x82, 0x80, 0x74, 0x67, 0x64, 0x6a, 0x70, 0x6d, 0x67,\n    0x5b, 0x52, 0x45, 0x3d, 0x3c, 0x41, 0x53, 0x6a, 0x6e, 0x69, 0x61, 0x63, 0x69, 0x65, 0x62, 0x67,\n    0x62, 0x60, 0x60, 0x64, 0x5a, 0x43, 0x40, 0x53, 0x4e, 0x44, 0x3c, 0x3b, 0x42, 0x4c, 0x55, 0x5b,\n    0x56, 0x55, 0x53, 0x41, 0x2e, 0x38, 0x4d, 0x50, 0x43, 0x31, 0x33, 0x47, 0x53, 0x55, 0x58, 0x5a,\n    0x4e, 0x44, 0x3e, 0x42, 0x4a, 0x51, 0x5a, 0x62, 0x66, 0x4c, 0x37, 0x39, 0x43, 0x49, 0x51, 0x59,\n    0x6e, 0x72, 0x7b, 0x7e, 0x7e, 0x87, 0x82, 0x6d, 0x41, 0x39, 0x3d, 0x42, 0x3f, 0x43, 0x46, 0x3f,\n    0x49, 0x67, 0x77, 0x6d, 0x69, 0x72, 0x66, 0x4b, 0x2b, 0x2a, 0x41, 0x61, 0x68, 0x60, 0x60, 0x64,\n    0x66, 0x65, 0x5b, 0x47, 0x37, 0x30, 0x2b, 0x25, 0x23, 0x39, 0x4c, 0x55, 0x64, 0x72, 0x76, 0x76,\n    0x36, 0x2f, 0x28, 0x27, 0x2d, 0x31, 0x2f, 0x29, 0x21, 0x27, 0x2f, 0x38, 0x3d, 0x3e, 0x38, 0x32,\n    0x32, 0x33, 0x34, 0x37, 0x3a, 0x3c, 0x3e, 0x3e, 0x35, 0x35, 0x36, 0x36, 0x34, 0x32, 0x34, 0x38,\n    0x39, 0x3a, 0x38, 0x34, 0x2f, 0x2e, 0x31, 0x35, 0x31, 0x33, 0x34, 0x33, 0x2f, 0x2b, 0x29, 0x28,\n    0x31, 0x32, 0x33, 0x36, 0x38, 0x3a, 0x3b, 0x3a, 0x3e, 0x3f, 0x3b, 0x35, 0x33, 0x36, 0x37, 0x35,\n    0x38, 0x3b, 0x3b, 0x39, 0x3b, 0x40, 0x3e, 0x38, 0x38, 0x37, 0x36, 0x35, 0x36, 0x36, 0x38, 0x39,\n    0x33, 0x36, 0x35, 0x32, 0x30, 0x31, 0x34, 0x34, 0x30, 0x33, 0x37, 0x3a, 0x3a, 0x38, 0x36, 0x34,\n    0x36, 0x36, 0x35, 0x33, 0x32, 0x32, 0x33, 0x35, 0x36, 0x35, 0x35, 0x36, 0x36, 0x37, 0x36, 0x36,\n    0x34, 0x35, 0x35, 0x36, 0x35, 0x36, 0x37, 0x38, 0x39, 0x37, 0x38, 0x3b, 0x3c, 0x3a, 0x39, 0x3a,\n    0x3d, 0x3c, 0x3c, 0x3c, 0x3a, 0x38, 0x38, 0x3b, 0x3c, 0x41, 0x4a, 0x56, 0x60, 0x66, 0x66, 0x65,\n    0x65, 0x63, 0x60, 0x5f, 0x5e, 0x5c, 0x5b, 0x59, 0x59, 0x58, 0x5f, 0x69, 0x67, 0x57, 0x4c, 0x4c,\n    0x4e, 0x4c, 0x4b, 0x4b, 0x47, 0x42, 0x42, 0x46, 0x46, 0x47, 0x48, 0x49, 0x48, 0x45, 0x42, 0x41,\n    0x3d, 0x3d, 0x3f, 0x41, 0x43, 0x44, 0x42, 0x41, 0x41, 0x43, 0x45, 0x48, 0x49, 0x48, 0x46, 0x44,\n    0x51, 0x51, 0x4c, 0x47, 0x46, 0x49, 0x48, 0x43, 0x3d, 0x43, 0x48, 0x49, 0x46, 0x43, 0x43, 0x44,\n    0x46, 0x43, 0x42, 0x43, 0x43, 0x43, 0x45, 0x48, 0x47, 0x4a, 0x4d, 0x4a, 0x45, 0x42, 0x45, 0x48,\n    0x46, 0x45, 0x47, 0x4a, 0x4c, 0x4d, 0x53, 0x59, 0x5a, 0x56, 0x54, 0x56, 0x57, 0x54, 0x53, 0x54,\n    0x57, 0x51, 0x4d, 0x4a, 0x47, 0x42, 0x41, 0x44, 0x44, 0x49, 0x4b, 0x47, 0x46, 0x4d, 0x53, 0x55,\n    0x5c, 0x5a, 0x57, 0x54, 0x53, 0x53, 0x55, 0x56, 0x5b, 0x5d, 0x5d, 0x5a, 0x59, 0x5c, 0x5d, 0x5c,\n    0x58, 0x68, 0x73, 0x79, 0x84, 0x89, 0x87, 0x86, 0x87, 0x87, 0x88, 0x88, 0x88, 0x87, 0x85, 0x84,\n    0x83, 0x83, 0x83, 0x84, 0x83, 0x82, 0x81, 0x81, 0x80, 0x7f, 0x7e, 0x7f, 0x7f, 0x7e, 0x7c, 0x7a,\n    0x79, 0x7b, 0x7c, 0x7d, 0x7c, 0x7c, 0x7d, 0x7d, 0x7e, 0x80, 0x82, 0x83, 0x82, 0x82, 0x82, 0x83,\n    0x7e, 0x7e, 0x7d, 0x7c, 0x7b, 0x78, 0x73, 0x70, 0x6d, 0x6a, 0x67, 0x65, 0x64, 0x65, 0x65, 0x64,\n    0x5f, 0x5f, 0x63, 0x6b, 0x70, 0x6e, 0x67, 0x63, 0x59, 0x65, 0x76, 0x85, 0x8e, 0x91, 0x91, 0x90,\n    0x8d, 0x8f, 0x8f, 0x8d, 0x8c, 0x8a, 0x86, 0x81, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e,\n    0x7e, 0x7f, 0x80, 0x80, 0x81, 0x82, 0x82, 0x82, 0x81, 0x82, 0x84, 0x88, 0x8d, 0x93, 0x98, 0x9b,\n    0x9c, 0x9f, 0x9d, 0x97, 0x94, 0x8f, 0x82, 0x73, 0x61, 0x57, 0x52, 0x55, 0x5a, 0x5e, 0x66, 0x6f,\n    0x75, 0x7c, 0x84, 0x8c, 0x90, 0x93, 0x96, 0x98, 0xa2, 0xa3, 0xa4, 0xa5, 0xa7, 0xa7, 0xa8, 0xa8,\n    0xa8, 0xa7, 0xa6, 0xa6, 0xa6, 0xa5, 0xa3, 0xa1, 0x9f, 0x9e, 0x9e, 0x9c, 0x99, 0x93, 0x8c, 0x88,\n    0x80, 0x7e, 0x7b, 0x77, 0x73, 0x6e, 0x68, 0x64, 0x64, 0x60, 0x62, 0x65, 0x62, 0x67, 0x6e, 0x70,\n    0x70, 0x72, 0x74, 0x76, 0x7c, 0x81, 0x81, 0x7d, 0x7f, 0x7c, 0x78, 0x72, 0x6c, 0x65, 0x60, 0x5e,\n    0x76, 0x7f, 0x7a, 0x6e, 0x6a, 0x69, 0x63, 0x5f, 0x50, 0x4b, 0x4b, 0x52, 0x57, 0x57, 0x56, 0x56,\n    0x57, 0x6f, 0x77, 0x70, 0x62, 0x5d, 0x67, 0x67, 0x66, 0x62, 0x69, 0x6d, 0x61, 0x57, 0x5c, 0x64,\n    0x64, 0x68, 0x67, 0x66, 0x68, 0x61, 0x53, 0x4b, 0x44, 0x41, 0x4d, 0x5e, 0x65, 0x68, 0x6a, 0x68,\n    0x62, 0x59, 0x5d, 0x68, 0x6b, 0x6c, 0x73, 0x78, 0x90, 0x8a, 0x7f, 0x76, 0x72, 0x71, 0x6f, 0x6a,\n    0x5f, 0x56, 0x47, 0x42, 0x47, 0x4d, 0x5b, 0x6e, 0x67, 0x5e, 0x56, 0x5d, 0x66, 0x62, 0x5d, 0x64,\n    0x60, 0x62, 0x65, 0x68, 0x5e, 0x47, 0x42, 0x50, 0x4c, 0x44, 0x3c, 0x3a, 0x40, 0x4a, 0x53, 0x59,\n    0x5c, 0x58, 0x52, 0x42, 0x35, 0x43, 0x4f, 0x47, 0x38, 0x32, 0x40, 0x55, 0x58, 0x52, 0x53, 0x58,\n    0x4c, 0x45, 0x40, 0x43, 0x49, 0x50, 0x5c, 0x67, 0x67, 0x5a, 0x46, 0x38, 0x3b, 0x4b, 0x5a, 0x61,\n    0x68, 0x6c, 0x77, 0x7a, 0x78, 0x80, 0x7b, 0x63, 0x4a, 0x3e, 0x4d, 0x63, 0x5e, 0x4c, 0x40, 0x38,\n    0x5e, 0x75, 0x7b, 0x6d, 0x64, 0x63, 0x60, 0x5b, 0x57, 0x53, 0x59, 0x61, 0x61, 0x60, 0x5e, 0x56,\n    0x50, 0x57, 0x57, 0x49, 0x39, 0x31, 0x2b, 0x26, 0x2e, 0x4e, 0x60, 0x59, 0x51, 0x52, 0x56, 0x5a,\n    0x33, 0x33, 0x2e, 0x27, 0x24, 0x28, 0x2b, 0x2b, 0x2a, 0x29, 0x2a, 0x31, 0x39, 0x3d, 0x3a, 0x35,\n    0x32, 0x35, 0x36, 0x36, 0x35, 0x35, 0x39, 0x3c, 0x3b, 0x37, 0x33, 0x32, 0x35, 0x37, 0x37, 0x36,\n    0x36, 0x39, 0x3a, 0x35, 0x32, 0x32, 0x34, 0x35, 0x34, 0x36, 0x37, 0x34, 0x31, 0x2e, 0x2a, 0x26,\n    0x2d, 0x30, 0x32, 0x33, 0x33, 0x32, 0x32, 0x33, 0x37, 0x3b, 0x41, 0x42, 0x3d, 0x37, 0x38, 0x3d,\n    0x3d, 0x39, 0x34, 0x33, 0x39, 0x3e, 0x3e, 0x3a, 0x3e, 0x3a, 0x38, 0x3d, 0x44, 0x47, 0x42, 0x3c,\n    0x36, 0x35, 0x37, 0x39, 0x35, 0x2e, 0x2f, 0x36, 0x34, 0x38, 0x3b, 0x3a, 0x37, 0x35, 0x34, 0x34,\n    0x35, 0x34, 0x34, 0x36, 0x38, 0x38, 0x35, 0x32, 0x32, 0x32, 0x31, 0x30, 0x32, 0x36, 0x38, 0x38,\n    0x34, 0x36, 0x3b, 0x40, 0x3e, 0x38, 0x36, 0x39, 0x3a, 0x3a, 0x3c, 0x3e, 0x3b, 0x36, 0x37, 0x3b,\n    0x3c, 0x3d, 0x3d, 0x3b, 0x3a, 0x39, 0x3a, 0x3b, 0x3b, 0x3d, 0x44, 0x4f, 0x5e, 0x69, 0x6e, 0x70,\n    0x69, 0x64, 0x60, 0x63, 0x66, 0x66, 0x64, 0x63, 0x5b, 0x5f, 0x5d, 0x54, 0x4c, 0x4a, 0x4a, 0x4a,\n    0x4a, 0x48, 0x46, 0x45, 0x46, 0x46, 0x45, 0x43, 0x45, 0x46, 0x47, 0x49, 0x49, 0x48, 0x45, 0x43,\n    0x3e, 0x3e, 0x3e, 0x3f, 0x3f, 0x40, 0x40, 0x40, 0x42, 0x48, 0x4c, 0x4d, 0x4d, 0x4e, 0x4e, 0x4d,\n    0x49, 0x4a, 0x4a, 0x48, 0x47, 0x46, 0x48, 0x4a, 0x47, 0x48, 0x49, 0x49, 0x46, 0x43, 0x44, 0x49,\n    0x48, 0x47, 0x45, 0x44, 0x44, 0x45, 0x47, 0x48, 0x45, 0x45, 0x46, 0x47, 0x47, 0x47, 0x47, 0x47,\n    0x45, 0x44, 0x43, 0x47, 0x4d, 0x52, 0x53, 0x53, 0x58, 0x54, 0x50, 0x4f, 0x51, 0x52, 0x50, 0x4e,\n    0x4e, 0x4d, 0x4b, 0x48, 0x46, 0x45, 0x46, 0x47, 0x51, 0x50, 0x4c, 0x48, 0x4b, 0x55, 0x5e, 0x62,\n    0x66, 0x5c, 0x52, 0x4d, 0x50, 0x56, 0x5c, 0x5e, 0x5d, 0x5a, 0x55, 0x54, 0x58, 0x5d, 0x60, 0x5f,\n    0x59, 0x57, 0x5f, 0x6b, 0x73, 0x7e, 0x86, 0x86, 0x88, 0x87, 0x86, 0x86, 0x87, 0x86, 0x84, 0x83,\n    0x82, 0x81, 0x81, 0x80, 0x7f, 0x7e, 0x7d, 0x7c, 0x7c, 0x7b, 0x7a, 0x7a, 0x7b, 0x7b, 0x7a, 0x79,\n    0x7a, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7f, 0x7f, 0x7f, 0x7f, 0x80, 0x81,\n    0x7e, 0x7c, 0x79, 0x77, 0x76, 0x74, 0x73, 0x72, 0x6f, 0x6c, 0x68, 0x63, 0x5f, 0x5e, 0x5f, 0x60,\n    0x64, 0x66, 0x6c, 0x74, 0x7a, 0x7a, 0x76, 0x71, 0x62, 0x5f, 0x65, 0x76, 0x83, 0x85, 0x83, 0x83,\n    0x86, 0x82, 0x7f, 0x7d, 0x7d, 0x7c, 0x7a, 0x78, 0x71, 0x72, 0x73, 0x75, 0x75, 0x75, 0x75, 0x75,\n    0x77, 0x78, 0x79, 0x79, 0x79, 0x79, 0x78, 0x77, 0x7d, 0x7d, 0x7f, 0x83, 0x86, 0x89, 0x8e, 0x93,\n    0x94, 0x94, 0x94, 0x94, 0x90, 0x87, 0x7b, 0x73, 0x60, 0x59, 0x51, 0x4f, 0x51, 0x56, 0x5e, 0x65,\n    0x70, 0x76, 0x7f, 0x85, 0x89, 0x8c, 0x91, 0x94, 0x99, 0x9b, 0x9e, 0xa1, 0xa4, 0xa4, 0xa4, 0xa4,\n    0xa5, 0xa6, 0xa6, 0xa5, 0xa4, 0xa3, 0xa2, 0xa1, 0xa0, 0x9e, 0x9c, 0x9a, 0x98, 0x93, 0x8b, 0x85,\n    0x7f, 0x79, 0x74, 0x72, 0x71, 0x6d, 0x68, 0x66, 0x5b, 0x71, 0x79, 0x6c, 0x60, 0x5e, 0x65, 0x6f,\n    0x6d, 0x6d, 0x6d, 0x71, 0x7a, 0x83, 0x84, 0x81, 0x7c, 0x7d, 0x78, 0x75, 0x71, 0x66, 0x5b, 0x5b,\n    0x70, 0x7d, 0x7f, 0x77, 0x7a, 0x87, 0x8a, 0x81, 0x72, 0x65, 0x65, 0x76, 0x7d, 0x73, 0x6d, 0x72,\n    0x68, 0x62, 0x5d, 0x60, 0x64, 0x66, 0x66, 0x65, 0x60, 0x60, 0x65, 0x69, 0x65, 0x5d, 0x5f, 0x67,\n    0x67, 0x61, 0x5e, 0x63, 0x6e, 0x71, 0x63, 0x50, 0x46, 0x4a, 0x50, 0x59, 0x63, 0x6a, 0x69, 0x64,\n    0x61, 0x5d, 0x5c, 0x61, 0x6b, 0x71, 0x71, 0x6f, 0x7a, 0x85, 0x8f, 0x8e, 0x82, 0x75, 0x6e, 0x6c,\n    0x63, 0x59, 0x50, 0x4d, 0x51, 0x59, 0x66, 0x71, 0x65, 0x58, 0x50, 0x55, 0x5f, 0x61, 0x5f, 0x5d,\n    0x61, 0x62, 0x69, 0x6a, 0x56, 0x3e, 0x40, 0x51, 0x49, 0x3b, 0x3b, 0x46, 0x4c, 0x50, 0x59, 0x5e,\n    0x55, 0x52, 0x46, 0x37, 0x38, 0x44, 0x46, 0x3e, 0x2e, 0x30, 0x37, 0x43, 0x4c, 0x4d, 0x4a, 0x48,\n    0x45, 0x4c, 0x4c, 0x4a, 0x4f, 0x53, 0x59, 0x61, 0x5c, 0x4a, 0x3d, 0x39, 0x3d, 0x4d, 0x5e, 0x64,\n    0x61, 0x60, 0x6b, 0x76, 0x78, 0x7b, 0x6f, 0x55, 0x41, 0x48, 0x5b, 0x57, 0x5d, 0x5a, 0x60, 0x55,\n    0x57, 0x6b, 0x69, 0x62, 0x63, 0x6a, 0x67, 0x50, 0x44, 0x3e, 0x4c, 0x64, 0x6a, 0x62, 0x5b, 0x58,\n    0x5b, 0x59, 0x4e, 0x3b, 0x2d, 0x2b, 0x30, 0x34, 0x38, 0x54, 0x5d, 0x49, 0x39, 0x37, 0x3b, 0x3f,\n    0x33, 0x31, 0x2b, 0x24, 0x24, 0x2a, 0x2e, 0x30, 0x2d, 0x2c, 0x2d, 0x33, 0x39, 0x3c, 0x38, 0x34,\n    0x2e, 0x32, 0x38, 0x3a, 0x39, 0x37, 0x37, 0x38, 0x3a, 0x39, 0x39, 0x38, 0x37, 0x35, 0x31, 0x2d,\n    0x2f, 0x34, 0x38, 0x38, 0x36, 0x35, 0x35, 0x34, 0x34, 0x34, 0x33, 0x32, 0x33, 0x35, 0x33, 0x2f,\n    0x31, 0x33, 0x35, 0x36, 0x36, 0x35, 0x33, 0x32, 0x3b, 0x3f, 0x45, 0x46, 0x40, 0x3b, 0x3d, 0x43,\n    0x3e, 0x3d, 0x3a, 0x36, 0x38, 0x3c, 0x3f, 0x3f, 0x39, 0x3c, 0x40, 0x42, 0x41, 0x3d, 0x3a, 0x38,\n    0x3d, 0x3e, 0x3f, 0x3e, 0x3a, 0x35, 0x34, 0x36, 0x39, 0x39, 0x39, 0x39, 0x39, 0x38, 0x34, 0x31,\n    0x36, 0x36, 0x36, 0x35, 0x34, 0x33, 0x34, 0x34, 0x33, 0x34, 0x35, 0x36, 0x38, 0x3b, 0x3c, 0x3b,\n    0x3c, 0x3c, 0x40, 0x46, 0x45, 0x3f, 0x39, 0x37, 0x38, 0x38, 0x3a, 0x3e, 0x3f, 0x3e, 0x3f, 0x43,\n    0x3d, 0x3d, 0x3c, 0x3b, 0x3b, 0x3c, 0x40, 0x42, 0x40, 0x3f, 0x41, 0x47, 0x4f, 0x58, 0x5d, 0x5f,\n    0x5b, 0x5b, 0x5f, 0x68, 0x6e, 0x6d, 0x69, 0x66, 0x6d, 0x71, 0x70, 0x65, 0x57, 0x4d, 0x48, 0x45,\n    0x43, 0x41, 0x41, 0x45, 0x4b, 0x4d, 0x4a, 0x46, 0x42, 0x44, 0x47, 0x49, 0x4b, 0x49, 0x46, 0x43,\n    0x41, 0x40, 0x40, 0x40, 0x40, 0x3f, 0x3f, 0x3f, 0x40, 0x46, 0x4b, 0x4d, 0x4e, 0x4f, 0x4d, 0x4a,\n    0x45, 0x47, 0x49, 0x49, 0x4a, 0x4b, 0x4e, 0x50, 0x4c, 0x4a, 0x49, 0x4c, 0x4c, 0x4a, 0x49, 0x49,\n    0x4c, 0x4c, 0x4c, 0x4c, 0x4b, 0x49, 0x47, 0x46, 0x42, 0x45, 0x4a, 0x4d, 0x4e, 0x4b, 0x48, 0x45,\n    0x40, 0x40, 0x40, 0x42, 0x46, 0x4c, 0x50, 0x53, 0x59, 0x55, 0x4f, 0x4d, 0x4e, 0x50, 0x50, 0x4f,\n    0x4d, 0x4c, 0x4a, 0x46, 0x42, 0x42, 0x44, 0x46, 0x4f, 0x52, 0x56, 0x59, 0x5d, 0x60, 0x60, 0x5d,\n    0x61, 0x59, 0x51, 0x4e, 0x52, 0x58, 0x5c, 0x5d, 0x5c, 0x58, 0x54, 0x53, 0x56, 0x5b, 0x5e, 0x5d,\n    0x54, 0x50, 0x54, 0x5c, 0x62, 0x70, 0x7e, 0x82, 0x87, 0x86, 0x86, 0x86, 0x86, 0x86, 0x84, 0x82,\n    0x80, 0x7f, 0x7e, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x79, 0x78,\n    0x76, 0x77, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7c, 0x7d, 0x7e, 0x7e, 0x7e, 0x7d, 0x7e, 0x7e,\n    0x7d, 0x7b, 0x78, 0x76, 0x75, 0x74, 0x72, 0x71, 0x6d, 0x6c, 0x6a, 0x64, 0x60, 0x5f, 0x63, 0x68,\n    0x6c, 0x6f, 0x74, 0x7a, 0x7e, 0x80, 0x7f, 0x7d, 0x73, 0x69, 0x61, 0x63, 0x6d, 0x75, 0x79, 0x7b,\n    0x6e, 0x71, 0x75, 0x77, 0x76, 0x72, 0x6d, 0x6a, 0x6b, 0x6a, 0x69, 0x68, 0x69, 0x6c, 0x6f, 0x71,\n    0x70, 0x71, 0x72, 0x74, 0x75, 0x75, 0x75, 0x75, 0x74, 0x75, 0x77, 0x7c, 0x7f, 0x81, 0x86, 0x8a,\n    0x89, 0x89, 0x8a, 0x8b, 0x89, 0x7f, 0x71, 0x66, 0x58, 0x52, 0x4d, 0x4c, 0x4e, 0x52, 0x59, 0x5f,\n    0x68, 0x6e, 0x77, 0x7d, 0x82, 0x86, 0x8a, 0x8e, 0x93, 0x95, 0x99, 0x9d, 0xa0, 0xa2, 0xa3, 0xa4,\n    0xa2, 0xa2, 0xa2, 0xa3, 0xa3, 0xa2, 0xa1, 0xa1, 0xa0, 0x9e, 0x9b, 0x98, 0x96, 0x90, 0x89, 0x83,\n    0x7e, 0x78, 0x73, 0x71, 0x6f, 0x6a, 0x66, 0x64, 0x5f, 0x79, 0x87, 0x7e, 0x6d, 0x60, 0x60, 0x69,\n    0x6f, 0x6d, 0x6a, 0x6a, 0x71, 0x7b, 0x81, 0x82, 0x7d, 0x7e, 0x79, 0x75, 0x72, 0x65, 0x59, 0x58,\n    0x6b, 0x78, 0x87, 0x89, 0x80, 0x7e, 0x8a, 0x9a, 0x94, 0x86, 0x78, 0x70, 0x6c, 0x69, 0x6a, 0x6d,\n    0x6c, 0x63, 0x5c, 0x5c, 0x62, 0x67, 0x6a, 0x6d, 0x5f, 0x65, 0x6b, 0x6c, 0x66, 0x60, 0x64, 0x6b,\n    0x66, 0x62, 0x60, 0x66, 0x71, 0x75, 0x6b, 0x5d, 0x57, 0x55, 0x53, 0x57, 0x60, 0x68, 0x68, 0x63,\n    0x61, 0x5e, 0x5d, 0x62, 0x6a, 0x6f, 0x6e, 0x6c, 0x6a, 0x75, 0x83, 0x8a, 0x87, 0x7f, 0x78, 0x74,\n    0x67, 0x5e, 0x56, 0x56, 0x5c, 0x63, 0x6b, 0x72, 0x66, 0x5a, 0x52, 0x56, 0x5f, 0x62, 0x63, 0x64,\n    0x5f, 0x61, 0x6b, 0x6f, 0x5f, 0x48, 0x42, 0x4c, 0x53, 0x45, 0x43, 0x4a, 0x4b, 0x4c, 0x52, 0x55,\n    0x54, 0x53, 0x4c, 0x41, 0x3b, 0x3c, 0x40, 0x41, 0x36, 0x40, 0x4e, 0x57, 0x54, 0x4a, 0x43, 0x42,\n    0x4a, 0x4f, 0x4b, 0x48, 0x50, 0x58, 0x5a, 0x5c, 0x56, 0x4b, 0x42, 0x3c, 0x3b, 0x49, 0x5e, 0x69,\n    0x6b, 0x61, 0x67, 0x77, 0x7e, 0x7a, 0x64, 0x45, 0x39, 0x42, 0x58, 0x5a, 0x61, 0x5c, 0x5f, 0x56,\n    0x60, 0x5f, 0x5d, 0x6e, 0x7a, 0x71, 0x5f, 0x48, 0x3d, 0x3f, 0x4f, 0x62, 0x66, 0x63, 0x5d, 0x55,\n    0x57, 0x51, 0x42, 0x32, 0x2d, 0x30, 0x33, 0x31, 0x44, 0x51, 0x61, 0x6d, 0x6a, 0x50, 0x38, 0x32,\n    0x40, 0x3b, 0x31, 0x2a, 0x29, 0x2e, 0x32, 0x33, 0x34, 0x30, 0x2c, 0x2b, 0x30, 0x34, 0x37, 0x37,\n    0x37, 0x3b, 0x3f, 0x3f, 0x3c, 0x38, 0x36, 0x35, 0x3c, 0x3e, 0x3f, 0x3d, 0x39, 0x34, 0x30, 0x2e,\n    0x32, 0x37, 0x3b, 0x3a, 0x38, 0x37, 0x36, 0x34, 0x34, 0x32, 0x2f, 0x2e, 0x33, 0x39, 0x39, 0x37,\n    0x35, 0x36, 0x38, 0x3a, 0x3b, 0x3a, 0x38, 0x36, 0x3e, 0x43, 0x49, 0x49, 0x43, 0x3d, 0x40, 0x47,\n    0x43, 0x45, 0x43, 0x3d, 0x39, 0x3b, 0x3f, 0x42, 0x3c, 0x3e, 0x41, 0x41, 0x3e, 0x3a, 0x37, 0x36,\n    0x3b, 0x3e, 0x41, 0x40, 0x41, 0x42, 0x40, 0x3e, 0x3c, 0x39, 0x38, 0x3a, 0x3d, 0x3d, 0x37, 0x32,\n    0x33, 0x36, 0x39, 0x39, 0x37, 0x36, 0x37, 0x39, 0x30, 0x33, 0x36, 0x37, 0x3a, 0x3d, 0x3e, 0x3d,\n    0x3c, 0x3d, 0x42, 0x4a, 0x4d, 0x49, 0x43, 0x3e, 0x40, 0x3f, 0x40, 0x42, 0x42, 0x41, 0x42, 0x44,\n    0x44, 0x43, 0x40, 0x3e, 0x3d, 0x3e, 0x42, 0x45, 0x48, 0x49, 0x4a, 0x4a, 0x49, 0x45, 0x41, 0x3f,\n    0x44, 0x4c, 0x59, 0x63, 0x66, 0x64, 0x66, 0x6a, 0x70, 0x74, 0x72, 0x64, 0x52, 0x44, 0x3c, 0x39,\n    0x3d, 0x3b, 0x3d, 0x44, 0x4d, 0x50, 0x4b, 0x46, 0x40, 0x43, 0x46, 0x4a, 0x4c, 0x4b, 0x47, 0x43,\n    0x41, 0x41, 0x41, 0x41, 0x40, 0x40, 0x40, 0x40, 0x41, 0x44, 0x46, 0x47, 0x49, 0x4b, 0x49, 0x46,\n    0x44, 0x47, 0x4a, 0x4c, 0x4e, 0x50, 0x52, 0x53, 0x4d, 0x49, 0x47, 0x4b, 0x50, 0x4f, 0x4b, 0x48,\n    0x4c, 0x4c, 0x4c, 0x4b, 0x4a, 0x49, 0x48, 0x47, 0x48, 0x4b, 0x4e, 0x51, 0x50, 0x4c, 0x48, 0x44,\n    0x41, 0x41, 0x41, 0x40, 0x41, 0x46, 0x4d, 0x54, 0x5b, 0x55, 0x4f, 0x4b, 0x4b, 0x4d, 0x4f, 0x50,\n    0x4a, 0x4a, 0x47, 0x42, 0x3f, 0x3f, 0x43, 0x48, 0x49, 0x4a, 0x4a, 0x4c, 0x50, 0x56, 0x58, 0x57,\n    0x5a, 0x56, 0x51, 0x51, 0x55, 0x59, 0x5a, 0x5a, 0x57, 0x54, 0x52, 0x53, 0x56, 0x5a, 0x5c, 0x5c,\n    0x56, 0x50, 0x4f, 0x50, 0x54, 0x64, 0x7a, 0x83, 0x86, 0x85, 0x85, 0x85, 0x86, 0x85, 0x83, 0x81,\n    0x7f, 0x7e, 0x7c, 0x7a, 0x79, 0x79, 0x7a, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x77, 0x77, 0x76, 0x75,\n    0x72, 0x73, 0x75, 0x76, 0x77, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x7a,\n    0x7b, 0x79, 0x77, 0x75, 0x74, 0x73, 0x71, 0x70, 0x6b, 0x6c, 0x6b, 0x66, 0x62, 0x63, 0x6b, 0x72,\n    0x75, 0x78, 0x7d, 0x81, 0x83, 0x86, 0x88, 0x89, 0x80, 0x73, 0x61, 0x58, 0x5c, 0x67, 0x6e, 0x6f,\n    0x6f, 0x6f, 0x6c, 0x67, 0x62, 0x61, 0x64, 0x67, 0x63, 0x63, 0x63, 0x63, 0x64, 0x67, 0x69, 0x6a,\n    0x6b, 0x6c, 0x6c, 0x6d, 0x6c, 0x6b, 0x6a, 0x69, 0x6c, 0x6d, 0x70, 0x74, 0x76, 0x77, 0x79, 0x7d,\n    0x7f, 0x7f, 0x80, 0x80, 0x7d, 0x72, 0x63, 0x57, 0x51, 0x4d, 0x49, 0x49, 0x4b, 0x4e, 0x54, 0x59,\n    0x60, 0x66, 0x6e, 0x75, 0x7a, 0x7f, 0x84, 0x87, 0x8d, 0x8f, 0x93, 0x97, 0x9b, 0x9e, 0x9f, 0xa0,\n    0x9d, 0x9e, 0x9f, 0xa0, 0xa0, 0xa0, 0xa0, 0xa0, 0xa0, 0x9d, 0x99, 0x95, 0x92, 0x8c, 0x86, 0x81,\n    0x7c, 0x77, 0x72, 0x6f, 0x6d, 0x68, 0x63, 0x62, 0x5b, 0x74, 0x87, 0x85, 0x76, 0x64, 0x5e, 0x66,\n    0x70, 0x6d, 0x67, 0x62, 0x66, 0x71, 0x7c, 0x81, 0x7e, 0x7f, 0x7a, 0x76, 0x72, 0x64, 0x57, 0x54,\n    0x61, 0x71, 0x83, 0x83, 0x6f, 0x61, 0x6e, 0x83, 0x7a, 0x7b, 0x75, 0x6c, 0x6c, 0x77, 0x7f, 0x80,\n    0x6f, 0x63, 0x57, 0x54, 0x57, 0x5d, 0x62, 0x66, 0x68, 0x72, 0x78, 0x73, 0x69, 0x66, 0x6a, 0x6f,\n    0x66, 0x64, 0x63, 0x69, 0x73, 0x79, 0x75, 0x6c, 0x60, 0x59, 0x53, 0x54, 0x5f, 0x69, 0x6a, 0x65,\n    0x60, 0x60, 0x61, 0x65, 0x6a, 0x6d, 0x6c, 0x6b, 0x5d, 0x66, 0x75, 0x83, 0x8b, 0x89, 0x82, 0x7c,\n    0x6d, 0x64, 0x5c, 0x5e, 0x66, 0x6c, 0x6f, 0x70, 0x69, 0x5f, 0x58, 0x5c, 0x62, 0x66, 0x6b, 0x6f,\n    0x70, 0x6b, 0x67, 0x64, 0x56, 0x46, 0x44, 0x4d, 0x52, 0x48, 0x47, 0x4d, 0x4b, 0x4c, 0x52, 0x56,\n    0x52, 0x54, 0x52, 0x49, 0x3b, 0x34, 0x3a, 0x45, 0x51, 0x52, 0x54, 0x56, 0x54, 0x52, 0x54, 0x57,\n    0x58, 0x60, 0x5b, 0x4f, 0x50, 0x57, 0x59, 0x59, 0x5d, 0x50, 0x45, 0x3d, 0x3a, 0x47, 0x5a, 0x62,\n    0x62, 0x5b, 0x63, 0x75, 0x7a, 0x6f, 0x55, 0x3a, 0x40, 0x4a, 0x5a, 0x57, 0x52, 0x42, 0x3f, 0x3b,\n    0x59, 0x6d, 0x69, 0x64, 0x6e, 0x7b, 0x70, 0x4a, 0x33, 0x3b, 0x4b, 0x58, 0x5d, 0x61, 0x60, 0x58,\n    0x62, 0x5b, 0x49, 0x34, 0x2a, 0x2c, 0x2e, 0x2b, 0x3d, 0x58, 0x71, 0x7e, 0x81, 0x75, 0x66, 0x61,\n    0x3d, 0x36, 0x2c, 0x27, 0x27, 0x2a, 0x2c, 0x2c, 0x35, 0x33, 0x30, 0x30, 0x32, 0x35, 0x37, 0x38,\n    0x34, 0x36, 0x39, 0x3a, 0x3b, 0x3c, 0x3e, 0x3f, 0x3e, 0x40, 0x40, 0x3d, 0x38, 0x35, 0x35, 0x36,\n    0x3d, 0x40, 0x40, 0x3c, 0x38, 0x36, 0x34, 0x32, 0x34, 0x32, 0x2e, 0x2c, 0x2f, 0x35, 0x39, 0x38,\n    0x37, 0x37, 0x38, 0x3b, 0x3d, 0x3f, 0x3e, 0x3d, 0x3e, 0x44, 0x4a, 0x4a, 0x42, 0x3c, 0x3f, 0x46,\n    0x47, 0x4b, 0x4b, 0x44, 0x3e, 0x3d, 0x3f, 0x40, 0x41, 0x3c, 0x36, 0x36, 0x3a, 0x3c, 0x3a, 0x36,\n    0x38, 0x3c, 0x3f, 0x3f, 0x43, 0x49, 0x48, 0x43, 0x3d, 0x3b, 0x3a, 0x3e, 0x42, 0x40, 0x3c, 0x38,\n    0x33, 0x37, 0x3b, 0x3d, 0x3c, 0x3a, 0x39, 0x38, 0x31, 0x36, 0x38, 0x37, 0x39, 0x3e, 0x3f, 0x3e,\n    0x3d, 0x3f, 0x44, 0x4a, 0x4e, 0x4c, 0x48, 0x44, 0x48, 0x49, 0x49, 0x47, 0x43, 0x41, 0x41, 0x44,\n    0x4d, 0x4b, 0x48, 0x43, 0x40, 0x3f, 0x40, 0x41, 0x45, 0x4c, 0x54, 0x57, 0x52, 0x47, 0x3a, 0x31,\n    0x3c, 0x46, 0x51, 0x52, 0x4a, 0x46, 0x4e, 0x5a, 0x5e, 0x61, 0x61, 0x57, 0x4a, 0x41, 0x40, 0x42,\n    0x3c, 0x3b, 0x3d, 0x42, 0x49, 0x4b, 0x47, 0x43, 0x43, 0x44, 0x46, 0x49, 0x4b, 0x4a, 0x48, 0x45,\n    0x3e, 0x3f, 0x3f, 0x40, 0x41, 0x42, 0x42, 0x43, 0x46, 0x46, 0x44, 0x43, 0x45, 0x48, 0x48, 0x45,\n    0x47, 0x49, 0x4c, 0x4e, 0x4f, 0x51, 0x51, 0x52, 0x4d, 0x48, 0x47, 0x4c, 0x51, 0x50, 0x4c, 0x49,\n    0x4a, 0x49, 0x48, 0x47, 0x48, 0x4b, 0x4e, 0x50, 0x55, 0x53, 0x50, 0x4d, 0x4a, 0x47, 0x45, 0x45,\n    0x46, 0x47, 0x46, 0x42, 0x3e, 0x41, 0x4a, 0x52, 0x5a, 0x56, 0x50, 0x4c, 0x4c, 0x4d, 0x4f, 0x4f,\n    0x48, 0x48, 0x46, 0x41, 0x3e, 0x40, 0x46, 0x4c, 0x4e, 0x4b, 0x47, 0x46, 0x4c, 0x56, 0x5c, 0x5d,\n    0x58, 0x56, 0x54, 0x54, 0x57, 0x58, 0x57, 0x55, 0x51, 0x50, 0x50, 0x54, 0x57, 0x58, 0x58, 0x59,\n    0x58, 0x52, 0x4f, 0x4b, 0x4c, 0x5f, 0x7a, 0x87, 0x85, 0x84, 0x84, 0x85, 0x85, 0x84, 0x82, 0x80,\n    0x7f, 0x7e, 0x7b, 0x79, 0x78, 0x78, 0x79, 0x7a, 0x77, 0x76, 0x74, 0x74, 0x75, 0x75, 0x74, 0x72,\n    0x70, 0x72, 0x74, 0x75, 0x76, 0x76, 0x75, 0x75, 0x75, 0x76, 0x77, 0x77, 0x76, 0x75, 0x75, 0x75,\n    0x78, 0x77, 0x75, 0x73, 0x73, 0x72, 0x70, 0x6f, 0x6b, 0x6b, 0x69, 0x67, 0x66, 0x6b, 0x73, 0x7a,\n    0x7b, 0x7f, 0x83, 0x86, 0x86, 0x87, 0x8a, 0x8d, 0x82, 0x7b, 0x6c, 0x5c, 0x57, 0x5a, 0x5b, 0x58,\n    0x54, 0x4e, 0x44, 0x3b, 0x36, 0x39, 0x41, 0x47, 0x55, 0x59, 0x5e, 0x63, 0x66, 0x66, 0x64, 0x62,\n    0x66, 0x66, 0x66, 0x66, 0x65, 0x64, 0x63, 0x62, 0x68, 0x69, 0x6c, 0x6f, 0x70, 0x6f, 0x70, 0x72,\n    0x79, 0x78, 0x78, 0x75, 0x6e, 0x64, 0x59, 0x52, 0x53, 0x4f, 0x4c, 0x4a, 0x4a, 0x4b, 0x50, 0x55,\n    0x5c, 0x61, 0x68, 0x70, 0x76, 0x7b, 0x80, 0x83, 0x8a, 0x8c, 0x8f, 0x93, 0x96, 0x98, 0x99, 0x9a,\n    0x9b, 0x9b, 0x9c, 0x9d, 0x9e, 0x9e, 0x9f, 0x9f, 0x9d, 0x9b, 0x96, 0x92, 0x8e, 0x89, 0x84, 0x81,\n    0x7b, 0x76, 0x71, 0x6e, 0x6b, 0x65, 0x61, 0x60, 0x5a, 0x6b, 0x79, 0x7f, 0x7a, 0x6a, 0x60, 0x63,\n    0x6b, 0x6b, 0x66, 0x61, 0x61, 0x6a, 0x76, 0x7c, 0x7d, 0x7d, 0x78, 0x75, 0x71, 0x63, 0x54, 0x50,\n    0x63, 0x77, 0x84, 0x7a, 0x64, 0x57, 0x59, 0x5e, 0x6f, 0x76, 0x75, 0x6b, 0x67, 0x6e, 0x72, 0x71,\n    0x79, 0x6d, 0x62, 0x5e, 0x61, 0x65, 0x6a, 0x6d, 0x90, 0x97, 0x94, 0x84, 0x73, 0x6e, 0x6d, 0x6b,\n    0x67, 0x66, 0x67, 0x6b, 0x73, 0x78, 0x79, 0x77, 0x67, 0x5f, 0x56, 0x56, 0x60, 0x6a, 0x6a, 0x64,\n    0x60, 0x61, 0x64, 0x68, 0x6b, 0x6d, 0x6d, 0x6c, 0x61, 0x64, 0x6d, 0x7c, 0x89, 0x8d, 0x88, 0x81,\n    0x76, 0x6b, 0x61, 0x61, 0x69, 0x6f, 0x6f, 0x6c, 0x67, 0x61, 0x5d, 0x60, 0x64, 0x66, 0x6b, 0x72,\n    0x75, 0x6c, 0x61, 0x56, 0x4a, 0x43, 0x47, 0x4f, 0x4a, 0x46, 0x4a, 0x4f, 0x49, 0x49, 0x52, 0x5a,\n    0x54, 0x58, 0x56, 0x48, 0x38, 0x34, 0x40, 0x4d, 0x56, 0x46, 0x38, 0x38, 0x44, 0x4f, 0x55, 0x57,\n    0x5a, 0x6a, 0x67, 0x52, 0x49, 0x50, 0x59, 0x5f, 0x62, 0x51, 0x43, 0x3d, 0x3f, 0x4c, 0x56, 0x54,\n    0x4c, 0x59, 0x6e, 0x7b, 0x76, 0x64, 0x4c, 0x3a, 0x36, 0x49, 0x5a, 0x57, 0x4c, 0x3d, 0x40, 0x4b,\n    0x64, 0x73, 0x78, 0x79, 0x70, 0x61, 0x58, 0x49, 0x40, 0x44, 0x51, 0x5e, 0x62, 0x68, 0x6a, 0x65,\n    0x6c, 0x69, 0x58, 0x3d, 0x29, 0x24, 0x28, 0x2b, 0x35, 0x46, 0x55, 0x65, 0x75, 0x71, 0x55, 0x3d,\n    0x35, 0x30, 0x2a, 0x2a, 0x2c, 0x2f, 0x31, 0x31, 0x31, 0x37, 0x3e, 0x42, 0x42, 0x3f, 0x3b, 0x38,\n    0x3c, 0x3c, 0x3c, 0x3b, 0x39, 0x37, 0x37, 0x37, 0x39, 0x3c, 0x3e, 0x3b, 0x37, 0x33, 0x33, 0x35,\n    0x3c, 0x3f, 0x3f, 0x3c, 0x38, 0x37, 0x34, 0x31, 0x33, 0x34, 0x32, 0x2d, 0x2c, 0x31, 0x37, 0x3a,\n    0x39, 0x38, 0x38, 0x38, 0x3a, 0x3c, 0x3e, 0x3e, 0x3e, 0x43, 0x49, 0x49, 0x41, 0x3a, 0x3c, 0x41,\n    0x44, 0x48, 0x4a, 0x47, 0x43, 0x41, 0x3f, 0x3d, 0x3f, 0x39, 0x33, 0x33, 0x37, 0x3a, 0x3b, 0x39,\n    0x3c, 0x3f, 0x3f, 0x3d, 0x41, 0x47, 0x47, 0x41, 0x41, 0x40, 0x42, 0x46, 0x45, 0x41, 0x3d, 0x3e,\n    0x3a, 0x3a, 0x3c, 0x3e, 0x40, 0x41, 0x3f, 0x3d, 0x3c, 0x40, 0x40, 0x3a, 0x39, 0x3d, 0x3f, 0x3d,\n    0x44, 0x47, 0x4a, 0x4a, 0x49, 0x47, 0x46, 0x45, 0x49, 0x4e, 0x50, 0x4c, 0x45, 0x42, 0x44, 0x48,\n    0x4c, 0x4b, 0x49, 0x46, 0x42, 0x40, 0x40, 0x40, 0x49, 0x51, 0x5d, 0x65, 0x66, 0x60, 0x58, 0x53,\n    0x4f, 0x4f, 0x4e, 0x48, 0x3e, 0x37, 0x39, 0x3f, 0x41, 0x46, 0x4a, 0x49, 0x43, 0x3f, 0x42, 0x47,\n    0x3d, 0x3e, 0x40, 0x42, 0x44, 0x45, 0x45, 0x44, 0x46, 0x46, 0x46, 0x47, 0x49, 0x49, 0x48, 0x47,\n    0x3e, 0x3e, 0x3f, 0x40, 0x40, 0x41, 0x42, 0x42, 0x49, 0x49, 0x47, 0x46, 0x47, 0x49, 0x47, 0x43,\n    0x47, 0x47, 0x49, 0x4b, 0x4d, 0x4e, 0x4e, 0x4d, 0x4c, 0x4b, 0x4c, 0x50, 0x52, 0x50, 0x4e, 0x4d,\n    0x4c, 0x4c, 0x4c, 0x4d, 0x50, 0x53, 0x56, 0x58, 0x56, 0x53, 0x4e, 0x48, 0x45, 0x43, 0x43, 0x43,\n    0x4a, 0x4b, 0x4a, 0x46, 0x42, 0x43, 0x4b, 0x53, 0x5a, 0x58, 0x54, 0x52, 0x51, 0x50, 0x50, 0x50,\n    0x4b, 0x4a, 0x48, 0x43, 0x40, 0x42, 0x47, 0x4c, 0x4a, 0x4c, 0x4f, 0x52, 0x58, 0x5e, 0x5f, 0x5e,\n    0x5c, 0x5a, 0x59, 0x59, 0x59, 0x57, 0x54, 0x51, 0x4e, 0x4d, 0x50, 0x55, 0x56, 0x53, 0x51, 0x51,\n    0x4f, 0x4c, 0x49, 0x44, 0x46, 0x5b, 0x79, 0x87, 0x83, 0x83, 0x83, 0x84, 0x84, 0x83, 0x81, 0x7f,\n    0x7e, 0x7c, 0x79, 0x77, 0x76, 0x77, 0x78, 0x78, 0x75, 0x74, 0x72, 0x72, 0x72, 0x72, 0x71, 0x70,\n    0x70, 0x71, 0x73, 0x74, 0x75, 0x74, 0x73, 0x72, 0x72, 0x73, 0x74, 0x75, 0x74, 0x73, 0x74, 0x74,\n    0x75, 0x74, 0x72, 0x72, 0x71, 0x70, 0x6f, 0x6d, 0x6c, 0x69, 0x67, 0x68, 0x6c, 0x73, 0x79, 0x7d,\n    0x7d, 0x83, 0x88, 0x8a, 0x89, 0x87, 0x89, 0x8b, 0x81, 0x81, 0x79, 0x67, 0x59, 0x50, 0x4a, 0x43,\n    0x42, 0x3f, 0x3c, 0x3a, 0x3a, 0x3b, 0x3c, 0x3b, 0x41, 0x47, 0x50, 0x59, 0x5f, 0x62, 0x61, 0x61,\n    0x60, 0x61, 0x62, 0x62, 0x62, 0x61, 0x60, 0x5f, 0x5e, 0x5e, 0x60, 0x64, 0x65, 0x65, 0x66, 0x6a,\n    0x6d, 0x6e, 0x6d, 0x68, 0x61, 0x5c, 0x5a, 0x5a, 0x5d, 0x58, 0x53, 0x4e, 0x4a, 0x49, 0x4d, 0x52,\n    0x59, 0x5d, 0x64, 0x6c, 0x73, 0x79, 0x7e, 0x81, 0x86, 0x87, 0x8a, 0x8e, 0x91, 0x94, 0x95, 0x96,\n    0x99, 0x99, 0x9a, 0x9a, 0x9a, 0x9b, 0x9b, 0x9b, 0x99, 0x96, 0x93, 0x8f, 0x8b, 0x87, 0x84, 0x81,\n    0x7a, 0x75, 0x71, 0x6e, 0x6a, 0x64, 0x61, 0x60, 0x61, 0x67, 0x6d, 0x77, 0x7d, 0x73, 0x63, 0x5d,\n    0x66, 0x69, 0x69, 0x66, 0x65, 0x6b, 0x73, 0x78, 0x7a, 0x7a, 0x75, 0x72, 0x6f, 0x62, 0x52, 0x4f,\n    0x58, 0x6c, 0x7c, 0x7b, 0x70, 0x69, 0x6a, 0x6d, 0x65, 0x66, 0x63, 0x5b, 0x58, 0x5c, 0x65, 0x6c,\n    0x68, 0x60, 0x59, 0x5b, 0x60, 0x64, 0x67, 0x69, 0x69, 0x71, 0x72, 0x6a, 0x69, 0x71, 0x77, 0x77,\n    0x6a, 0x69, 0x69, 0x6b, 0x70, 0x74, 0x77, 0x79, 0x74, 0x6a, 0x5e, 0x58, 0x5e, 0x65, 0x66, 0x62,\n    0x5e, 0x60, 0x64, 0x68, 0x6b, 0x6c, 0x6d, 0x6d, 0x6c, 0x6a, 0x6b, 0x74, 0x81, 0x89, 0x89, 0x86,\n    0x7f, 0x74, 0x67, 0x63, 0x69, 0x6e, 0x6d, 0x69, 0x60, 0x5d, 0x5d, 0x61, 0x61, 0x60, 0x63, 0x69,\n    0x61, 0x61, 0x5f, 0x59, 0x51, 0x4c, 0x4b, 0x4d, 0x46, 0x48, 0x50, 0x51, 0x45, 0x42, 0x4e, 0x57,\n    0x56, 0x5b, 0x54, 0x3f, 0x33, 0x3a, 0x4a, 0x52, 0x46, 0x37, 0x2d, 0x34, 0x44, 0x4c, 0x49, 0x43,\n    0x53, 0x60, 0x5b, 0x47, 0x43, 0x4e, 0x5a, 0x61, 0x56, 0x4c, 0x46, 0x44, 0x46, 0x4f, 0x51, 0x49,\n    0x3a, 0x58, 0x74, 0x79, 0x6b, 0x52, 0x37, 0x26, 0x35, 0x51, 0x60, 0x59, 0x45, 0x35, 0x36, 0x49,\n    0x60, 0x69, 0x67, 0x68, 0x61, 0x55, 0x4f, 0x43, 0x42, 0x41, 0x4f, 0x61, 0x66, 0x65, 0x64, 0x61,\n    0x63, 0x5c, 0x4d, 0x39, 0x29, 0x24, 0x28, 0x2e, 0x3b, 0x49, 0x5b, 0x67, 0x5e, 0x46, 0x3e, 0x4c,\n    0x39, 0x35, 0x32, 0x33, 0x35, 0x34, 0x34, 0x35, 0x35, 0x3a, 0x40, 0x43, 0x41, 0x40, 0x3f, 0x40,\n    0x49, 0x49, 0x49, 0x47, 0x43, 0x3e, 0x39, 0x36, 0x37, 0x3b, 0x3f, 0x3f, 0x3a, 0x34, 0x31, 0x30,\n    0x35, 0x38, 0x3b, 0x3b, 0x3a, 0x3a, 0x37, 0x34, 0x34, 0x37, 0x37, 0x32, 0x2f, 0x32, 0x38, 0x3b,\n    0x3a, 0x3a, 0x39, 0x37, 0x36, 0x36, 0x38, 0x3a, 0x3e, 0x42, 0x48, 0x49, 0x42, 0x3b, 0x3a, 0x3d,\n    0x3c, 0x41, 0x45, 0x46, 0x46, 0x46, 0x42, 0x3e, 0x3d, 0x3f, 0x40, 0x3e, 0x3b, 0x3b, 0x3f, 0x43,\n    0x3e, 0x3e, 0x3c, 0x3c, 0x3f, 0x45, 0x47, 0x45, 0x46, 0x46, 0x49, 0x4c, 0x48, 0x40, 0x3d, 0x40,\n    0x3f, 0x3d, 0x3c, 0x40, 0x46, 0x4d, 0x50, 0x50, 0x45, 0x49, 0x47, 0x3d, 0x39, 0x3b, 0x3c, 0x39,\n    0x44, 0x48, 0x4a, 0x48, 0x46, 0x47, 0x49, 0x4a, 0x4e, 0x53, 0x56, 0x51, 0x49, 0x45, 0x46, 0x48,\n    0x44, 0x45, 0x45, 0x45, 0x43, 0x43, 0x44, 0x45, 0x42, 0x45, 0x4a, 0x4f, 0x53, 0x56, 0x58, 0x58,\n    0x60, 0x58, 0x51, 0x51, 0x53, 0x4f, 0x47, 0x41, 0x45, 0x49, 0x4e, 0x4e, 0x48, 0x3f, 0x3c, 0x3d,\n    0x3e, 0x40, 0x41, 0x41, 0x41, 0x43, 0x45, 0x47, 0x47, 0x46, 0x45, 0x45, 0x46, 0x47, 0x48, 0x47,\n    0x41, 0x41, 0x41, 0x40, 0x40, 0x3f, 0x3f, 0x3f, 0x42, 0x45, 0x47, 0x47, 0x48, 0x47, 0x43, 0x3e,\n    0x42, 0x42, 0x43, 0x46, 0x48, 0x4a, 0x4a, 0x4a, 0x49, 0x49, 0x4b, 0x4e, 0x4e, 0x4b, 0x4b, 0x4d,\n    0x4c, 0x4f, 0x52, 0x55, 0x56, 0x56, 0x54, 0x53, 0x4d, 0x4c, 0x4a, 0x49, 0x47, 0x45, 0x44, 0x44,\n    0x4f, 0x51, 0x51, 0x4f, 0x4d, 0x4f, 0x54, 0x58, 0x59, 0x58, 0x57, 0x56, 0x55, 0x53, 0x52, 0x51,\n    0x4e, 0x4d, 0x4a, 0x46, 0x44, 0x44, 0x47, 0x49, 0x43, 0x48, 0x4c, 0x50, 0x54, 0x59, 0x5b, 0x5a,\n    0x5f, 0x5d, 0x5b, 0x59, 0x58, 0x56, 0x53, 0x51, 0x4e, 0x4c, 0x4f, 0x54, 0x54, 0x4e, 0x4b, 0x4c,\n    0x48, 0x48, 0x47, 0x43, 0x45, 0x5c, 0x78, 0x85, 0x82, 0x82, 0x82, 0x83, 0x84, 0x82, 0x80, 0x7d,\n    0x7b, 0x79, 0x77, 0x76, 0x75, 0x74, 0x75, 0x75, 0x74, 0x72, 0x71, 0x71, 0x71, 0x70, 0x6f, 0x6e,\n    0x70, 0x70, 0x71, 0x72, 0x72, 0x72, 0x71, 0x70, 0x72, 0x73, 0x74, 0x74, 0x74, 0x73, 0x74, 0x74,\n    0x72, 0x71, 0x70, 0x70, 0x70, 0x6f, 0x6d, 0x6c, 0x6b, 0x68, 0x67, 0x6a, 0x71, 0x78, 0x7c, 0x7e,\n    0x80, 0x85, 0x8b, 0x8d, 0x8b, 0x89, 0x88, 0x89, 0x80, 0x81, 0x7d, 0x71, 0x62, 0x56, 0x4f, 0x4b,\n    0x42, 0x3f, 0x3d, 0x3d, 0x3e, 0x3d, 0x38, 0x35, 0x36, 0x39, 0x40, 0x48, 0x50, 0x58, 0x5d, 0x60,\n    0x5e, 0x5e, 0x5d, 0x5b, 0x58, 0x55, 0x52, 0x51, 0x48, 0x47, 0x49, 0x4d, 0x50, 0x52, 0x56, 0x5b,\n    0x5e, 0x60, 0x62, 0x61, 0x5f, 0x60, 0x64, 0x69, 0x69, 0x64, 0x5c, 0x55, 0x4d, 0x48, 0x4a, 0x4f,\n    0x56, 0x5a, 0x60, 0x67, 0x6f, 0x75, 0x7a, 0x7c, 0x7f, 0x81, 0x84, 0x88, 0x8d, 0x90, 0x93, 0x94,\n    0x96, 0x96, 0x95, 0x95, 0x95, 0x95, 0x96, 0x96, 0x93, 0x92, 0x90, 0x8c, 0x89, 0x85, 0x82, 0x80,\n    0x78, 0x74, 0x71, 0x6e, 0x69, 0x63, 0x60, 0x61, 0x61, 0x62, 0x63, 0x6d, 0x7c, 0x79, 0x69, 0x5e,\n    0x62, 0x67, 0x6c, 0x6b, 0x6b, 0x6e, 0x73, 0x76, 0x76, 0x76, 0x70, 0x6e, 0x6e, 0x62, 0x54, 0x50,\n    0x5b, 0x63, 0x6d, 0x6b, 0x57, 0x42, 0x3f, 0x47, 0x4d, 0x4c, 0x4d, 0x50, 0x54, 0x5a, 0x65, 0x6f,\n    0x6a, 0x64, 0x61, 0x65, 0x6a, 0x6d, 0x6d, 0x6d, 0x71, 0x75, 0x73, 0x6b, 0x68, 0x6d, 0x70, 0x6e,\n    0x6c, 0x6a, 0x69, 0x6b, 0x6c, 0x6f, 0x74, 0x79, 0x77, 0x6f, 0x63, 0x5a, 0x5b, 0x61, 0x64, 0x64,\n    0x5c, 0x5e, 0x62, 0x66, 0x69, 0x6b, 0x6c, 0x6c, 0x72, 0x6e, 0x6b, 0x6e, 0x77, 0x81, 0x87, 0x8a,\n    0x86, 0x7e, 0x73, 0x6c, 0x6d, 0x70, 0x6d, 0x68, 0x5d, 0x5c, 0x5e, 0x62, 0x61, 0x5d, 0x5e, 0x63,\n    0x5d, 0x61, 0x61, 0x5c, 0x57, 0x54, 0x4f, 0x4a, 0x42, 0x46, 0x50, 0x50, 0x45, 0x43, 0x4f, 0x57,\n    0x54, 0x57, 0x4c, 0x35, 0x2d, 0x3b, 0x4b, 0x50, 0x3e, 0x39, 0x3a, 0x43, 0x4d, 0x50, 0x4d, 0x49,\n    0x56, 0x56, 0x49, 0x3c, 0x45, 0x53, 0x57, 0x57, 0x4b, 0x4d, 0x51, 0x4c, 0x45, 0x46, 0x49, 0x43,\n    0x44, 0x5d, 0x70, 0x6f, 0x5f, 0x41, 0x25, 0x19, 0x28, 0x4b, 0x57, 0x54, 0x47, 0x43, 0x43, 0x56,\n    0x6b, 0x78, 0x72, 0x6f, 0x78, 0x7f, 0x6f, 0x47, 0x2e, 0x32, 0x48, 0x5f, 0x64, 0x5f, 0x5c, 0x59,\n    0x52, 0x41, 0x31, 0x2c, 0x2a, 0x27, 0x27, 0x2b, 0x3d, 0x43, 0x46, 0x4b, 0x51, 0x4d, 0x4a, 0x4e,\n    0x37, 0x33, 0x30, 0x30, 0x2e, 0x2b, 0x2b, 0x2d, 0x34, 0x38, 0x3c, 0x3c, 0x39, 0x39, 0x3d, 0x41,\n    0x40, 0x41, 0x44, 0x47, 0x4a, 0x4c, 0x4c, 0x4b, 0x42, 0x45, 0x48, 0x47, 0x44, 0x3f, 0x3c, 0x3b,\n    0x3c, 0x3d, 0x3c, 0x3a, 0x3a, 0x3e, 0x3f, 0x3e, 0x38, 0x3b, 0x3b, 0x38, 0x35, 0x36, 0x38, 0x38,\n    0x38, 0x3b, 0x3c, 0x3a, 0x36, 0x34, 0x35, 0x37, 0x3b, 0x3f, 0x45, 0x48, 0x44, 0x3d, 0x3a, 0x3b,\n    0x3a, 0x40, 0x45, 0x47, 0x47, 0x47, 0x45, 0x42, 0x43, 0x45, 0x46, 0x43, 0x40, 0x42, 0x47, 0x4d,\n    0x42, 0x3d, 0x3a, 0x3a, 0x3c, 0x3f, 0x44, 0x48, 0x47, 0x47, 0x4b, 0x4f, 0x4b, 0x42, 0x40, 0x44,\n    0x40, 0x40, 0x42, 0x45, 0x4a, 0x4e, 0x52, 0x53, 0x45, 0x4c, 0x4b, 0x41, 0x3c, 0x3f, 0x40, 0x3c,\n    0x40, 0x43, 0x44, 0x43, 0x45, 0x4a, 0x4d, 0x4d, 0x50, 0x55, 0x56, 0x52, 0x4f, 0x4d, 0x4b, 0x48,\n    0x45, 0x45, 0x45, 0x44, 0x44, 0x46, 0x48, 0x4a, 0x54, 0x53, 0x53, 0x54, 0x57, 0x58, 0x57, 0x55,\n    0x58, 0x55, 0x57, 0x5e, 0x65, 0x65, 0x5f, 0x5b, 0x63, 0x63, 0x63, 0x60, 0x56, 0x48, 0x3e, 0x3c,\n    0x3e, 0x3e, 0x3e, 0x3f, 0x41, 0x42, 0x44, 0x44, 0x43, 0x42, 0x42, 0x43, 0x45, 0x46, 0x46, 0x46,\n    0x43, 0x43, 0x42, 0x41, 0x40, 0x3f, 0x3f, 0x3e, 0x3e, 0x42, 0x44, 0x44, 0x43, 0x43, 0x42, 0x40,\n    0x42, 0x41, 0x41, 0x43, 0x46, 0x48, 0x48, 0x48, 0x47, 0x46, 0x47, 0x49, 0x49, 0x48, 0x48, 0x49,\n    0x4b, 0x4d, 0x50, 0x53, 0x53, 0x50, 0x4c, 0x4a, 0x48, 0x49, 0x4b, 0x4c, 0x4c, 0x4c, 0x4b, 0x4b,\n    0x54, 0x54, 0x55, 0x56, 0x57, 0x57, 0x57, 0x57, 0x56, 0x56, 0x55, 0x54, 0x53, 0x51, 0x50, 0x50,\n    0x4d, 0x4a, 0x48, 0x47, 0x47, 0x48, 0x48, 0x47, 0x49, 0x4c, 0x4d, 0x4c, 0x4e, 0x55, 0x5c, 0x60,\n    0x5b, 0x59, 0x57, 0x54, 0x53, 0x52, 0x51, 0x51, 0x4f, 0x4c, 0x4e, 0x53, 0x53, 0x4f, 0x4f, 0x53,\n    0x50, 0x50, 0x4f, 0x49, 0x49, 0x5f, 0x78, 0x82, 0x81, 0x81, 0x82, 0x83, 0x83, 0x82, 0x7f, 0x7c,\n    0x79, 0x78, 0x77, 0x76, 0x75, 0x74, 0x74, 0x74, 0x73, 0x72, 0x70, 0x70, 0x70, 0x6f, 0x6e, 0x6d,\n    0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x71, 0x73, 0x73, 0x73, 0x72, 0x71, 0x71, 0x72,\n    0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6c, 0x6b, 0x68, 0x68, 0x6a, 0x6e, 0x74, 0x79, 0x7c, 0x7e,\n    0x83, 0x86, 0x8a, 0x8c, 0x8c, 0x8a, 0x89, 0x8a, 0x85, 0x81, 0x7d, 0x77, 0x6d, 0x63, 0x5c, 0x5a,\n    0x52, 0x4f, 0x4a, 0x45, 0x42, 0x3f, 0x3e, 0x3d, 0x3a, 0x39, 0x39, 0x3b, 0x40, 0x46, 0x4c, 0x50,\n    0x50, 0x4f, 0x4d, 0x4a, 0x46, 0x42, 0x3e, 0x3c, 0x3b, 0x39, 0x39, 0x3b, 0x3e, 0x42, 0x48, 0x4f,\n    0x55, 0x58, 0x5d, 0x63, 0x69, 0x6e, 0x73, 0x75, 0x73, 0x6e, 0x67, 0x5f, 0x54, 0x4c, 0x4a, 0x4d,\n    0x54, 0x57, 0x5c, 0x64, 0x6b, 0x72, 0x76, 0x78, 0x7b, 0x7c, 0x7f, 0x83, 0x87, 0x8b, 0x8d, 0x8f,\n    0x90, 0x8f, 0x8f, 0x8f, 0x8f, 0x90, 0x91, 0x91, 0x8e, 0x8e, 0x8d, 0x8a, 0x86, 0x81, 0x7e, 0x7d,\n    0x76, 0x73, 0x70, 0x6d, 0x68, 0x62, 0x60, 0x61, 0x63, 0x65, 0x61, 0x63, 0x70, 0x76, 0x6d, 0x66,\n    0x5d, 0x63, 0x69, 0x69, 0x6a, 0x6e, 0x73, 0x75, 0x73, 0x72, 0x6d, 0x6c, 0x6d, 0x63, 0x57, 0x54,\n    0x57, 0x5e, 0x67, 0x6a, 0x65, 0x61, 0x64, 0x6b, 0x5e, 0x5e, 0x5e, 0x5e, 0x5e, 0x5d, 0x5c, 0x5c,\n    0x67, 0x61, 0x5d, 0x5f, 0x64, 0x66, 0x66, 0x65, 0x68, 0x6d, 0x6f, 0x6b, 0x68, 0x69, 0x6b, 0x6c,\n    0x6d, 0x6a, 0x69, 0x6a, 0x6c, 0x6d, 0x73, 0x79, 0x78, 0x76, 0x70, 0x69, 0x65, 0x66, 0x67, 0x67,\n    0x5d, 0x5e, 0x60, 0x64, 0x68, 0x6b, 0x6b, 0x6a, 0x6f, 0x6d, 0x6c, 0x6b, 0x6f, 0x77, 0x81, 0x87,\n    0x88, 0x86, 0x80, 0x79, 0x76, 0x74, 0x6f, 0x68, 0x5e, 0x5d, 0x5f, 0x63, 0x62, 0x5d, 0x5d, 0x62,\n    0x68, 0x68, 0x62, 0x5a, 0x58, 0x5a, 0x54, 0x4a, 0x3f, 0x42, 0x4b, 0x4f, 0x49, 0x4b, 0x55, 0x5a,\n    0x55, 0x53, 0x47, 0x36, 0x2f, 0x39, 0x46, 0x4d, 0x42, 0x3e, 0x3c, 0x41, 0x47, 0x4c, 0x4f, 0x52,\n    0x59, 0x52, 0x42, 0x3c, 0x4a, 0x55, 0x53, 0x4f, 0x4d, 0x4d, 0x4d, 0x44, 0x3a, 0x41, 0x4b, 0x4b,\n    0x5b, 0x63, 0x65, 0x5f, 0x4f, 0x32, 0x27, 0x34, 0x54, 0x6d, 0x64, 0x59, 0x50, 0x53, 0x4a, 0x52,\n    0x66, 0x68, 0x6e, 0x85, 0x8a, 0x6f, 0x52, 0x37, 0x33, 0x41, 0x59, 0x69, 0x68, 0x65, 0x64, 0x60,\n    0x45, 0x2f, 0x22, 0x29, 0x2e, 0x28, 0x28, 0x2f, 0x3a, 0x5b, 0x6b, 0x62, 0x59, 0x56, 0x4d, 0x45,\n    0x34, 0x31, 0x2f, 0x30, 0x2f, 0x2c, 0x2e, 0x32, 0x27, 0x32, 0x3e, 0x43, 0x40, 0x39, 0x35, 0x34,\n    0x41, 0x3f, 0x3d, 0x3d, 0x3e, 0x41, 0x43, 0x45, 0x51, 0x51, 0x51, 0x4f, 0x4d, 0x4c, 0x4d, 0x4d,\n    0x4e, 0x49, 0x41, 0x39, 0x38, 0x3f, 0x45, 0x48, 0x3e, 0x3f, 0x3e, 0x3a, 0x39, 0x38, 0x36, 0x32,\n    0x36, 0x3b, 0x40, 0x3f, 0x39, 0x35, 0x36, 0x38, 0x38, 0x3b, 0x42, 0x46, 0x45, 0x3e, 0x3a, 0x39,\n    0x3d, 0x44, 0x49, 0x49, 0x47, 0x46, 0x46, 0x45, 0x4a, 0x44, 0x3d, 0x3c, 0x41, 0x48, 0x4e, 0x50,\n    0x4b, 0x42, 0x3c, 0x3a, 0x38, 0x37, 0x3b, 0x43, 0x45, 0x44, 0x48, 0x4e, 0x4d, 0x46, 0x43, 0x47,\n    0x41, 0x45, 0x49, 0x4a, 0x46, 0x42, 0x3f, 0x3e, 0x44, 0x4d, 0x4f, 0x47, 0x44, 0x48, 0x49, 0x44,\n    0x41, 0x42, 0x42, 0x41, 0x44, 0x49, 0x49, 0x45, 0x4b, 0x4e, 0x50, 0x51, 0x55, 0x58, 0x55, 0x50,\n    0x4d, 0x4b, 0x49, 0x46, 0x45, 0x46, 0x49, 0x4c, 0x51, 0x51, 0x53, 0x56, 0x56, 0x51, 0x48, 0x40,\n    0x48, 0x50, 0x5b, 0x62, 0x62, 0x61, 0x64, 0x6a, 0x69, 0x64, 0x60, 0x5c, 0x52, 0x45, 0x3d, 0x3c,\n    0x3e, 0x3c, 0x3b, 0x3d, 0x40, 0x41, 0x40, 0x3e, 0x3e, 0x3f, 0x40, 0x43, 0x45, 0x46, 0x45, 0x44,\n    0x42, 0x42, 0x42, 0x42, 0x41, 0x41, 0x41, 0x41, 0x43, 0x45, 0x44, 0x40, 0x40, 0x44, 0x48, 0x4b,\n    0x46, 0x44, 0x43, 0x43, 0x45, 0x47, 0x47, 0x47, 0x4a, 0x47, 0x46, 0x48, 0x4a, 0x49, 0x48, 0x49,\n    0x4b, 0x4c, 0x4c, 0x4d, 0x4c, 0x4a, 0x48, 0x47, 0x4c, 0x4d, 0x4d, 0x4e, 0x50, 0x51, 0x52, 0x53,\n    0x54, 0x53, 0x53, 0x55, 0x58, 0x57, 0x52, 0x4e, 0x52, 0x52, 0x51, 0x50, 0x4e, 0x4d, 0x4d, 0x4e,\n    0x48, 0x46, 0x45, 0x46, 0x4a, 0x4b, 0x4a, 0x48, 0x45, 0x4a, 0x4d, 0x4c, 0x4c, 0x51, 0x57, 0x5b,\n    0x56, 0x54, 0x51, 0x4e, 0x4d, 0x4e, 0x4f, 0x50, 0x4f, 0x4b, 0x4d, 0x53, 0x55, 0x54, 0x57, 0x5e,\n    0x5c, 0x5a, 0x57, 0x4f, 0x4d, 0x60, 0x76, 0x7e, 0x80, 0x81, 0x81, 0x83, 0x83, 0x81, 0x7e, 0x7c,\n    0x79, 0x79, 0x78, 0x77, 0x76, 0x75, 0x75, 0x74, 0x72, 0x71, 0x70, 0x6f, 0x6f, 0x6f, 0x6d, 0x6c,\n    0x6b, 0x6b, 0x6c, 0x6c, 0x6d, 0x6f, 0x70, 0x70, 0x71, 0x71, 0x72, 0x71, 0x6f, 0x6e, 0x6e, 0x6e,\n    0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6c, 0x6a, 0x65, 0x68, 0x6d, 0x71, 0x74, 0x78, 0x7c, 0x7e,\n    0x84, 0x86, 0x89, 0x8a, 0x8b, 0x8a, 0x8a, 0x8b, 0x8e, 0x85, 0x7d, 0x79, 0x72, 0x65, 0x5b, 0x58,\n    0x4f, 0x50, 0x50, 0x4d, 0x48, 0x44, 0x42, 0x42, 0x40, 0x3d, 0x39, 0x35, 0x33, 0x34, 0x35, 0x37,\n    0x38, 0x38, 0x38, 0x38, 0x37, 0x35, 0x33, 0x32, 0x3d, 0x3a, 0x38, 0x39, 0x3a, 0x3e, 0x45, 0x4b,\n    0x55, 0x58, 0x5f, 0x6a, 0x76, 0x7d, 0x7d, 0x7b, 0x79, 0x75, 0x6f, 0x67, 0x5a, 0x50, 0x4c, 0x4d,\n    0x53, 0x55, 0x5b, 0x62, 0x6a, 0x70, 0x75, 0x76, 0x7a, 0x7b, 0x7d, 0x80, 0x83, 0x85, 0x87, 0x88,\n    0x8b, 0x8a, 0x8a, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8c, 0x8c, 0x8b, 0x88, 0x84, 0x7f, 0x7b, 0x79,\n    0x75, 0x72, 0x6f, 0x6c, 0x67, 0x62, 0x60, 0x61, 0x71, 0x73, 0x68, 0x5e, 0x64, 0x6d, 0x6d, 0x6c,\n    0x5a, 0x5f, 0x64, 0x65, 0x67, 0x6c, 0x71, 0x74, 0x71, 0x70, 0x6b, 0x6b, 0x6d, 0x65, 0x59, 0x57,\n    0x53, 0x5d, 0x60, 0x5b, 0x63, 0x75, 0x79, 0x6f, 0x6a, 0x6b, 0x6a, 0x69, 0x6d, 0x75, 0x76, 0x73,\n    0x68, 0x61, 0x5d, 0x60, 0x67, 0x6b, 0x6e, 0x6f, 0x6e, 0x74, 0x78, 0x75, 0x6e, 0x69, 0x6a, 0x6c,\n    0x6d, 0x69, 0x68, 0x6a, 0x6c, 0x6e, 0x73, 0x7a, 0x81, 0x86, 0x86, 0x7f, 0x76, 0x6e, 0x69, 0x65,\n    0x60, 0x5f, 0x60, 0x64, 0x69, 0x6c, 0x6b, 0x6a, 0x6a, 0x6c, 0x6c, 0x6b, 0x6b, 0x70, 0x7a, 0x83,\n    0x87, 0x89, 0x89, 0x83, 0x7d, 0x78, 0x6f, 0x67, 0x5e, 0x5c, 0x5d, 0x61, 0x60, 0x5c, 0x5c, 0x60,\n    0x66, 0x66, 0x61, 0x5c, 0x60, 0x64, 0x59, 0x49, 0x44, 0x43, 0x4a, 0x4f, 0x4d, 0x50, 0x56, 0x57,\n    0x5c, 0x55, 0x4a, 0x40, 0x39, 0x3b, 0x45, 0x4f, 0x50, 0x47, 0x40, 0x41, 0x48, 0x4d, 0x4f, 0x50,\n    0x4f, 0x4b, 0x40, 0x3e, 0x4b, 0x53, 0x52, 0x52, 0x50, 0x47, 0x3c, 0x31, 0x32, 0x46, 0x59, 0x5c,\n    0x58, 0x53, 0x49, 0x3f, 0x2d, 0x15, 0x22, 0x4d, 0x66, 0x75, 0x5d, 0x50, 0x52, 0x62, 0x57, 0x5b,\n    0x5a, 0x6f, 0x73, 0x6f, 0x69, 0x66, 0x68, 0x5c, 0x46, 0x58, 0x6d, 0x6e, 0x63, 0x61, 0x62, 0x5c,\n    0x3b, 0x28, 0x23, 0x2f, 0x32, 0x29, 0x2e, 0x3e, 0x63, 0x6b, 0x6d, 0x6a, 0x66, 0x5a, 0x4d, 0x49,\n    0x31, 0x2e, 0x2d, 0x2d, 0x2b, 0x29, 0x2c, 0x31, 0x2a, 0x31, 0x3a, 0x3d, 0x3b, 0x36, 0x34, 0x34,\n    0x3c, 0x41, 0x44, 0x45, 0x43, 0x40, 0x3d, 0x3a, 0x41, 0x40, 0x41, 0x42, 0x43, 0x43, 0x47, 0x4b,\n    0x56, 0x5d, 0x60, 0x59, 0x50, 0x4c, 0x4e, 0x50, 0x4e, 0x4b, 0x45, 0x3d, 0x39, 0x39, 0x3a, 0x3a,\n    0x3b, 0x3e, 0x3d, 0x39, 0x39, 0x3c, 0x3c, 0x39, 0x3b, 0x40, 0x43, 0x41, 0x3e, 0x3d, 0x3c, 0x3b,\n    0x3e, 0x43, 0x45, 0x41, 0x3f, 0x40, 0x43, 0x43, 0x46, 0x4b, 0x4b, 0x46, 0x42, 0x45, 0x49, 0x4b,\n    0x4d, 0x49, 0x4a, 0x41, 0x3c, 0x3e, 0x3b, 0x41, 0x3a, 0x43, 0x4c, 0x4f, 0x4d, 0x4b, 0x47, 0x43,\n    0x43, 0x4c, 0x54, 0x53, 0x4b, 0x43, 0x3e, 0x3d, 0x48, 0x4d, 0x4c, 0x45, 0x47, 0x50, 0x53, 0x4e,\n    0x44, 0x44, 0x45, 0x48, 0x4b, 0x4d, 0x4d, 0x4c, 0x4b, 0x50, 0x56, 0x5c, 0x60, 0x5f, 0x56, 0x4d,\n    0x4b, 0x46, 0x42, 0x43, 0x46, 0x4c, 0x55, 0x5c, 0x57, 0x4f, 0x4b, 0x51, 0x5e, 0x66, 0x63, 0x5d,\n    0x52, 0x52, 0x51, 0x4e, 0x4f, 0x53, 0x54, 0x52, 0x46, 0x4a, 0x4f, 0x50, 0x4c, 0x45, 0x41, 0x40,\n    0x3d, 0x3c, 0x3c, 0x3e, 0x41, 0x42, 0x40, 0x3f, 0x40, 0x40, 0x40, 0x42, 0x44, 0x44, 0x43, 0x42,\n    0x41, 0x43, 0x44, 0x41, 0x3e, 0x3d, 0x3f, 0x42, 0x45, 0x44, 0x41, 0x40, 0x4a, 0x56, 0x59, 0x53,\n    0x48, 0x45, 0x41, 0x3f, 0x40, 0x43, 0x46, 0x47, 0x4b, 0x47, 0x45, 0x47, 0x48, 0x46, 0x47, 0x4a,\n    0x4a, 0x47, 0x45, 0x45, 0x48, 0x4a, 0x48, 0x45, 0x47, 0x49, 0x4d, 0x51, 0x51, 0x4e, 0x4d, 0x4e,\n    0x56, 0x54, 0x55, 0x57, 0x57, 0x55, 0x54, 0x56, 0x56, 0x52, 0x4e, 0x4c, 0x4d, 0x4d, 0x4c, 0x4a,\n    0x49, 0x49, 0x47, 0x47, 0x4d, 0x52, 0x4f, 0x48, 0x45, 0x46, 0x49, 0x4b, 0x4d, 0x51, 0x54, 0x57,\n    0x55, 0x55, 0x52, 0x4e, 0x4e, 0x51, 0x52, 0x4f, 0x42, 0x41, 0x47, 0x51, 0x54, 0x50, 0x50, 0x55,\n    0x52, 0x50, 0x50, 0x54, 0x5a, 0x63, 0x73, 0x81, 0x7e, 0x7f, 0x81, 0x82, 0x82, 0x7f, 0x7c, 0x7a,\n    0x7a, 0x79, 0x76, 0x75, 0x74, 0x73, 0x72, 0x71, 0x70, 0x6f, 0x6f, 0x6f, 0x6e, 0x6d, 0x6c, 0x6b,\n    0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6e, 0x6e, 0x6e, 0x6c, 0x6c, 0x6c, 0x6e, 0x70, 0x71, 0x70, 0x6e,\n    0x6c, 0x6d, 0x6e, 0x6f, 0x6e, 0x6c, 0x6a, 0x68, 0x63, 0x66, 0x6c, 0x70, 0x74, 0x77, 0x7a, 0x7c,\n    0x85, 0x87, 0x89, 0x8c, 0x8d, 0x8e, 0x90, 0x92, 0x90, 0x8d, 0x88, 0x81, 0x7a, 0x73, 0x6b, 0x67,\n    0x61, 0x5c, 0x56, 0x51, 0x4f, 0x4c, 0x49, 0x46, 0x46, 0x43, 0x40, 0x3e, 0x3d, 0x3c, 0x3b, 0x3a,\n    0x3d, 0x3d, 0x3b, 0x3a, 0x39, 0x3b, 0x3f, 0x41, 0x41, 0x42, 0x42, 0x44, 0x46, 0x4c, 0x52, 0x56,\n    0x5c, 0x65, 0x70, 0x76, 0x7a, 0x7f, 0x83, 0x84, 0x7e, 0x78, 0x72, 0x6c, 0x62, 0x55, 0x4b, 0x49,\n    0x4d, 0x55, 0x5d, 0x61, 0x67, 0x6f, 0x74, 0x75, 0x75, 0x77, 0x7a, 0x7e, 0x81, 0x83, 0x85, 0x85,\n    0x86, 0x87, 0x88, 0x89, 0x88, 0x88, 0x8a, 0x8b, 0x88, 0x87, 0x86, 0x83, 0x7f, 0x7b, 0x77, 0x74,\n    0x73, 0x6e, 0x6c, 0x6d, 0x68, 0x60, 0x5e, 0x63, 0x7a, 0x7c, 0x72, 0x61, 0x5b, 0x65, 0x6e, 0x70,\n    0x5f, 0x58, 0x5e, 0x66, 0x63, 0x68, 0x72, 0x71, 0x72, 0x71, 0x70, 0x6f, 0x6d, 0x69, 0x60, 0x5a,\n    0x59, 0x63, 0x71, 0x7b, 0x7f, 0x82, 0x87, 0x8b, 0x82, 0x7a, 0x6e, 0x66, 0x69, 0x6f, 0x6f, 0x6a,\n    0x55, 0x57, 0x5c, 0x62, 0x65, 0x66, 0x68, 0x6b, 0x70, 0x6d, 0x6e, 0x73, 0x70, 0x67, 0x65, 0x68,\n    0x6c, 0x67, 0x65, 0x67, 0x65, 0x63, 0x68, 0x72, 0x79, 0x78, 0x78, 0x77, 0x75, 0x70, 0x69, 0x65,\n    0x5c, 0x5e, 0x5f, 0x62, 0x67, 0x6b, 0x6a, 0x66, 0x6b, 0x6e, 0x6d, 0x67, 0x64, 0x69, 0x72, 0x78,\n    0x85, 0x88, 0x88, 0x85, 0x83, 0x7f, 0x75, 0x6b, 0x60, 0x62, 0x62, 0x5f, 0x5a, 0x59, 0x5c, 0x61,\n    0x6c, 0x63, 0x5c, 0x60, 0x66, 0x62, 0x54, 0x49, 0x44, 0x45, 0x46, 0x44, 0x44, 0x48, 0x51, 0x58,\n    0x5b, 0x5e, 0x53, 0x3e, 0x33, 0x3e, 0x4f, 0x59, 0x57, 0x42, 0x37, 0x43, 0x50, 0x4f, 0x48, 0x47,\n    0x48, 0x4d, 0x3e, 0x3c, 0x4a, 0x57, 0x5e, 0x57, 0x4c, 0x3e, 0x32, 0x34, 0x41, 0x4f, 0x59, 0x5e,\n    0x5e, 0x56, 0x45, 0x2d, 0x19, 0x1b, 0x34, 0x4e, 0x65, 0x56, 0x44, 0x38, 0x35, 0x39, 0x43, 0x4c,\n    0x6c, 0x7b, 0x79, 0x73, 0x7f, 0x81, 0x6f, 0x62, 0x59, 0x58, 0x62, 0x69, 0x6a, 0x70, 0x6a, 0x54,\n    0x32, 0x2a, 0x2a, 0x2a, 0x2f, 0x32, 0x37, 0x4f, 0x68, 0x67, 0x65, 0x68, 0x6a, 0x5e, 0x52, 0x52,\n    0x2f, 0x2e, 0x2e, 0x2f, 0x2c, 0x28, 0x2a, 0x2e, 0x32, 0x38, 0x3e, 0x3e, 0x39, 0x33, 0x31, 0x31,\n    0x35, 0x39, 0x3e, 0x3f, 0x3d, 0x3c, 0x3b, 0x3b, 0x3d, 0x3f, 0x44, 0x47, 0x45, 0x40, 0x3f, 0x40,\n    0x42, 0x48, 0x4e, 0x4f, 0x4e, 0x50, 0x51, 0x51, 0x5a, 0x55, 0x4e, 0x48, 0x46, 0x47, 0x43, 0x3e,\n    0x38, 0x3c, 0x3e, 0x3d, 0x3e, 0x3f, 0x3e, 0x3b, 0x3b, 0x40, 0x43, 0x43, 0x42, 0x41, 0x3e, 0x3c,\n    0x41, 0x43, 0x43, 0x41, 0x41, 0x42, 0x40, 0x3c, 0x43, 0x49, 0x4c, 0x4a, 0x47, 0x49, 0x4b, 0x4c,\n    0x56, 0x54, 0x59, 0x54, 0x50, 0x4c, 0x3f, 0x3d, 0x46, 0x4c, 0x52, 0x55, 0x52, 0x4d, 0x4a, 0x48,\n    0x48, 0x4d, 0x50, 0x4e, 0x4a, 0x47, 0x45, 0x44, 0x3e, 0x44, 0x46, 0x47, 0x50, 0x5d, 0x61, 0x5b,\n    0x4a, 0x47, 0x44, 0x47, 0x4c, 0x50, 0x50, 0x4e, 0x4d, 0x52, 0x57, 0x5b, 0x5d, 0x5a, 0x51, 0x48,\n    0x49, 0x45, 0x43, 0x45, 0x47, 0x4b, 0x51, 0x57, 0x4f, 0x4f, 0x4d, 0x4a, 0x48, 0x4a, 0x4f, 0x54,\n    0x58, 0x5d, 0x62, 0x60, 0x5b, 0x53, 0x4a, 0x42, 0x44, 0x49, 0x51, 0x54, 0x4f, 0x46, 0x42, 0x43,\n    0x3f, 0x3d, 0x3c, 0x3d, 0x40, 0x43, 0x43, 0x43, 0x44, 0x43, 0x43, 0x43, 0x44, 0x43, 0x41, 0x3f,\n    0x40, 0x41, 0x42, 0x41, 0x3f, 0x40, 0x43, 0x46, 0x45, 0x47, 0x46, 0x47, 0x51, 0x5e, 0x63, 0x60,\n    0x4f, 0x4b, 0x46, 0x43, 0x42, 0x43, 0x44, 0x45, 0x4c, 0x49, 0x48, 0x49, 0x48, 0x45, 0x45, 0x47,\n    0x46, 0x44, 0x43, 0x45, 0x48, 0x4b, 0x4d, 0x4d, 0x48, 0x48, 0x4b, 0x4f, 0x4f, 0x4e, 0x4f, 0x52,\n    0x59, 0x58, 0x58, 0x58, 0x58, 0x57, 0x54, 0x52, 0x51, 0x53, 0x56, 0x56, 0x54, 0x50, 0x4d, 0x4a,\n    0x4b, 0x4b, 0x49, 0x49, 0x4d, 0x51, 0x50, 0x4b, 0x48, 0x48, 0x49, 0x4b, 0x4e, 0x51, 0x54, 0x56,\n    0x56, 0x56, 0x52, 0x4d, 0x4c, 0x50, 0x53, 0x53, 0x4d, 0x4c, 0x51, 0x5a, 0x5b, 0x52, 0x49, 0x46,\n    0x4c, 0x50, 0x57, 0x5f, 0x65, 0x6a, 0x73, 0x7d, 0x7e, 0x7f, 0x80, 0x81, 0x80, 0x7f, 0x7c, 0x7b,\n    0x79, 0x78, 0x76, 0x75, 0x74, 0x73, 0x72, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6d, 0x6c, 0x6b,\n    0x6b, 0x6b, 0x6c, 0x6c, 0x6c, 0x6d, 0x6d, 0x6d, 0x6c, 0x6b, 0x6b, 0x6c, 0x6e, 0x6f, 0x6e, 0x6d,\n    0x6c, 0x6c, 0x6d, 0x6d, 0x6b, 0x68, 0x66, 0x64, 0x64, 0x67, 0x6b, 0x6f, 0x72, 0x74, 0x77, 0x79,\n    0x80, 0x83, 0x88, 0x8c, 0x8f, 0x91, 0x93, 0x95, 0x92, 0x8f, 0x8b, 0x87, 0x81, 0x7a, 0x73, 0x6f,\n    0x67, 0x63, 0x5e, 0x59, 0x57, 0x54, 0x51, 0x4e, 0x4e, 0x4c, 0x49, 0x48, 0x47, 0x46, 0x45, 0x44,\n    0x44, 0x44, 0x43, 0x42, 0x41, 0x43, 0x46, 0x48, 0x4e, 0x4e, 0x4f, 0x50, 0x53, 0x58, 0x5d, 0x61,\n    0x64, 0x6c, 0x75, 0x79, 0x7c, 0x81, 0x84, 0x85, 0x80, 0x7b, 0x75, 0x70, 0x66, 0x59, 0x50, 0x4c,\n    0x4d, 0x55, 0x5c, 0x61, 0x66, 0x6e, 0x73, 0x74, 0x76, 0x78, 0x7a, 0x7d, 0x7f, 0x81, 0x83, 0x84,\n    0x85, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x86, 0x83, 0x83, 0x82, 0x80, 0x7d, 0x79, 0x75, 0x73,\n    0x71, 0x6c, 0x6a, 0x6b, 0x67, 0x60, 0x5e, 0x62, 0x73, 0x78, 0x75, 0x67, 0x5d, 0x5f, 0x68, 0x6e,\n    0x65, 0x56, 0x56, 0x5e, 0x5f, 0x65, 0x6e, 0x70, 0x6d, 0x6e, 0x6e, 0x6c, 0x6e, 0x70, 0x6c, 0x64,\n    0x5e, 0x64, 0x68, 0x69, 0x68, 0x6f, 0x7c, 0x87, 0x86, 0x7e, 0x6f, 0x5e, 0x56, 0x58, 0x5d, 0x5f,\n    0x5c, 0x5e, 0x63, 0x67, 0x66, 0x64, 0x64, 0x67, 0x6b, 0x6a, 0x6a, 0x6b, 0x6a, 0x66, 0x67, 0x69,\n    0x6a, 0x68, 0x69, 0x6c, 0x6a, 0x64, 0x65, 0x6b, 0x6f, 0x70, 0x71, 0x70, 0x6d, 0x6a, 0x68, 0x67,\n    0x6a, 0x68, 0x64, 0x60, 0x61, 0x65, 0x68, 0x68, 0x69, 0x6b, 0x6a, 0x66, 0x64, 0x69, 0x70, 0x75,\n    0x7f, 0x84, 0x87, 0x84, 0x81, 0x7e, 0x7a, 0x75, 0x6a, 0x67, 0x63, 0x5f, 0x5d, 0x5d, 0x5f, 0x61,\n    0x6e, 0x6e, 0x63, 0x55, 0x51, 0x55, 0x4c, 0x3c, 0x35, 0x3a, 0x3f, 0x42, 0x45, 0x4a, 0x53, 0x59,\n    0x52, 0x50, 0x43, 0x31, 0x2e, 0x3e, 0x51, 0x5a, 0x4b, 0x3b, 0x35, 0x44, 0x53, 0x54, 0x4e, 0x4c,\n    0x4f, 0x52, 0x45, 0x47, 0x55, 0x59, 0x58, 0x4e, 0x4b, 0x46, 0x3c, 0x36, 0x3e, 0x4e, 0x58, 0x5a,\n    0x5c, 0x58, 0x47, 0x2e, 0x1d, 0x23, 0x3d, 0x53, 0x5e, 0x50, 0x4c, 0x54, 0x56, 0x51, 0x57, 0x65,\n    0x69, 0x68, 0x64, 0x71, 0x86, 0x81, 0x6b, 0x63, 0x54, 0x5b, 0x69, 0x6e, 0x6a, 0x6a, 0x5e, 0x45,\n    0x3f, 0x34, 0x30, 0x30, 0x38, 0x3b, 0x3c, 0x4f, 0x59, 0x65, 0x71, 0x79, 0x76, 0x65, 0x59, 0x5b,\n    0x2e, 0x2f, 0x30, 0x2f, 0x2a, 0x26, 0x26, 0x2a, 0x2b, 0x36, 0x44, 0x4a, 0x45, 0x3b, 0x33, 0x30,\n    0x35, 0x39, 0x3e, 0x3e, 0x3b, 0x39, 0x3b, 0x3e, 0x3a, 0x3e, 0x44, 0x47, 0x44, 0x3e, 0x3b, 0x3c,\n    0x44, 0x45, 0x44, 0x42, 0x42, 0x43, 0x40, 0x3c, 0x3d, 0x45, 0x52, 0x60, 0x68, 0x63, 0x50, 0x3e,\n    0x3b, 0x3e, 0x3f, 0x40, 0x41, 0x42, 0x42, 0x40, 0x3b, 0x3f, 0x43, 0x46, 0x48, 0x48, 0x45, 0x40,\n    0x45, 0x44, 0x43, 0x44, 0x47, 0x48, 0x43, 0x3b, 0x44, 0x48, 0x49, 0x45, 0x42, 0x42, 0x44, 0x46,\n    0x51, 0x4e, 0x57, 0x58, 0x5c, 0x5d, 0x53, 0x51, 0x4b, 0x4a, 0x4d, 0x50, 0x4b, 0x43, 0x40, 0x42,\n    0x47, 0x49, 0x49, 0x47, 0x46, 0x49, 0x4b, 0x4a, 0x4c, 0x50, 0x52, 0x56, 0x62, 0x6d, 0x6c, 0x63,\n    0x53, 0x4c, 0x47, 0x48, 0x4e, 0x53, 0x52, 0x4f, 0x51, 0x55, 0x5a, 0x5c, 0x5d, 0x5a, 0x51, 0x49,\n    0x45, 0x43, 0x44, 0x47, 0x49, 0x4a, 0x4c, 0x4f, 0x4f, 0x52, 0x52, 0x49, 0x3d, 0x37, 0x3b, 0x41,\n    0x4c, 0x50, 0x54, 0x54, 0x53, 0x52, 0x50, 0x4c, 0x4a, 0x4e, 0x58, 0x5f, 0x58, 0x49, 0x41, 0x43,\n    0x44, 0x40, 0x3d, 0x3d, 0x3f, 0x42, 0x44, 0x44, 0x45, 0x45, 0x45, 0x45, 0x45, 0x44, 0x41, 0x3f,\n    0x42, 0x41, 0x40, 0x40, 0x41, 0x42, 0x45, 0x46, 0x46, 0x49, 0x49, 0x49, 0x50, 0x5b, 0x61, 0x60,\n    0x55, 0x51, 0x4a, 0x45, 0x43, 0x43, 0x43, 0x43, 0x46, 0x46, 0x47, 0x48, 0x45, 0x42, 0x41, 0x44,\n    0x45, 0x44, 0x43, 0x44, 0x47, 0x4b, 0x50, 0x52, 0x4b, 0x4a, 0x4a, 0x4d, 0x4e, 0x4f, 0x53, 0x58,\n    0x58, 0x5a, 0x58, 0x56, 0x58, 0x5b, 0x57, 0x4f, 0x4f, 0x54, 0x59, 0x5b, 0x57, 0x51, 0x4d, 0x4c,\n    0x4a, 0x4a, 0x49, 0x48, 0x4a, 0x4d, 0x4d, 0x4b, 0x4b, 0x49, 0x47, 0x49, 0x4c, 0x50, 0x52, 0x52,\n    0x54, 0x54, 0x51, 0x4c, 0x4a, 0x4e, 0x54, 0x57, 0x5f, 0x56, 0x50, 0x51, 0x54, 0x52, 0x52, 0x53,\n    0x58, 0x59, 0x5b, 0x5e, 0x60, 0x66, 0x72, 0x7d, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x7d, 0x7c, 0x7b,\n    0x78, 0x77, 0x75, 0x75, 0x74, 0x73, 0x71, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6d, 0x6c, 0x6b,\n    0x6b, 0x6b, 0x6a, 0x69, 0x69, 0x69, 0x6a, 0x6b, 0x6c, 0x6b, 0x6a, 0x6b, 0x6c, 0x6d, 0x6d, 0x6c,\n    0x6c, 0x6c, 0x6b, 0x6a, 0x67, 0x64, 0x62, 0x60, 0x63, 0x66, 0x69, 0x6c, 0x6f, 0x73, 0x77, 0x79,\n    0x7e, 0x82, 0x88, 0x8e, 0x91, 0x94, 0x96, 0x97, 0x93, 0x92, 0x90, 0x8d, 0x89, 0x83, 0x7d, 0x79,\n    0x72, 0x6e, 0x6a, 0x66, 0x64, 0x60, 0x5c, 0x59, 0x57, 0x55, 0x53, 0x52, 0x51, 0x50, 0x4f, 0x4e,\n    0x4e, 0x4e, 0x4f, 0x4e, 0x4e, 0x4f, 0x51, 0x53, 0x59, 0x5a, 0x5b, 0x5c, 0x5e, 0x62, 0x67, 0x6a,\n    0x6f, 0x75, 0x7b, 0x7d, 0x7f, 0x83, 0x85, 0x86, 0x83, 0x7f, 0x7a, 0x75, 0x6d, 0x61, 0x57, 0x52,\n    0x4e, 0x54, 0x5b, 0x60, 0x66, 0x6d, 0x71, 0x72, 0x77, 0x78, 0x79, 0x7a, 0x7c, 0x7f, 0x80, 0x81,\n    0x82, 0x83, 0x83, 0x82, 0x81, 0x80, 0x80, 0x81, 0x7e, 0x7e, 0x7d, 0x7c, 0x7a, 0x76, 0x73, 0x72,\n    0x6f, 0x6b, 0x69, 0x68, 0x65, 0x5f, 0x5e, 0x62, 0x69, 0x71, 0x76, 0x6e, 0x60, 0x5a, 0x60, 0x69,\n    0x6f, 0x5b, 0x52, 0x57, 0x5b, 0x63, 0x6d, 0x72, 0x70, 0x71, 0x6f, 0x6c, 0x6d, 0x71, 0x6f, 0x69,\n    0x65, 0x61, 0x5e, 0x60, 0x67, 0x6c, 0x6d, 0x6c, 0x7a, 0x7d, 0x7d, 0x7a, 0x76, 0x70, 0x68, 0x62,\n    0x63, 0x63, 0x64, 0x65, 0x63, 0x60, 0x61, 0x64, 0x69, 0x69, 0x66, 0x61, 0x5f, 0x61, 0x63, 0x64,\n    0x66, 0x65, 0x68, 0x6b, 0x69, 0x63, 0x63, 0x67, 0x6c, 0x6f, 0x70, 0x6f, 0x6b, 0x68, 0x67, 0x68,\n    0x7a, 0x76, 0x6e, 0x66, 0x62, 0x64, 0x66, 0x66, 0x6a, 0x6b, 0x6a, 0x66, 0x66, 0x6a, 0x6d, 0x6f,\n    0x77, 0x80, 0x88, 0x89, 0x86, 0x83, 0x82, 0x81, 0x75, 0x6d, 0x63, 0x5e, 0x5e, 0x60, 0x61, 0x60,\n    0x5c, 0x65, 0x65, 0x57, 0x4d, 0x4b, 0x42, 0x35, 0x3b, 0x3e, 0x41, 0x43, 0x46, 0x4d, 0x57, 0x5f,\n    0x57, 0x4d, 0x39, 0x2a, 0x2f, 0x45, 0x58, 0x5e, 0x4a, 0x3d, 0x39, 0x44, 0x51, 0x54, 0x50, 0x4d,\n    0x4f, 0x4d, 0x3f, 0x46, 0x54, 0x53, 0x4f, 0x46, 0x4f, 0x4f, 0x47, 0x3a, 0x3a, 0x49, 0x54, 0x56,\n    0x62, 0x60, 0x4f, 0x35, 0x28, 0x35, 0x4c, 0x5b, 0x56, 0x50, 0x50, 0x57, 0x55, 0x4c, 0x4b, 0x51,\n    0x51, 0x6f, 0x7e, 0x7d, 0x7d, 0x70, 0x59, 0x4c, 0x3d, 0x4f, 0x66, 0x6f, 0x6e, 0x6c, 0x5e, 0x45,\n    0x34, 0x2f, 0x34, 0x37, 0x3c, 0x3c, 0x3b, 0x4e, 0x78, 0x7a, 0x76, 0x6d, 0x5f, 0x4c, 0x43, 0x48,\n    0x33, 0x33, 0x31, 0x2c, 0x27, 0x25, 0x26, 0x29, 0x2b, 0x36, 0x44, 0x4a, 0x46, 0x3d, 0x36, 0x33,\n    0x3a, 0x3e, 0x41, 0x40, 0x3b, 0x37, 0x39, 0x3e, 0x38, 0x3a, 0x3d, 0x40, 0x3f, 0x3d, 0x3f, 0x43,\n    0x41, 0x41, 0x41, 0x42, 0x47, 0x4e, 0x50, 0x4f, 0x3e, 0x41, 0x45, 0x4e, 0x59, 0x5f, 0x5a, 0x52,\n    0x4e, 0x4d, 0x4a, 0x47, 0x44, 0x44, 0x43, 0x43, 0x3e, 0x40, 0x42, 0x45, 0x4a, 0x4d, 0x4a, 0x45,\n    0x45, 0x44, 0x45, 0x49, 0x4d, 0x4d, 0x47, 0x41, 0x45, 0x45, 0x42, 0x3e, 0x3b, 0x3d, 0x42, 0x46,\n    0x4b, 0x46, 0x4b, 0x4b, 0x52, 0x5c, 0x5c, 0x62, 0x58, 0x53, 0x53, 0x56, 0x51, 0x47, 0x43, 0x48,\n    0x4a, 0x4d, 0x4e, 0x4b, 0x4a, 0x4f, 0x51, 0x51, 0x58, 0x59, 0x59, 0x5d, 0x66, 0x6d, 0x65, 0x59,\n    0x53, 0x4e, 0x49, 0x48, 0x4c, 0x4f, 0x4f, 0x4e, 0x50, 0x54, 0x59, 0x5b, 0x5c, 0x5a, 0x54, 0x4e,\n    0x46, 0x46, 0x48, 0x4d, 0x4e, 0x4d, 0x4d, 0x4e, 0x54, 0x54, 0x53, 0x4c, 0x42, 0x37, 0x2f, 0x2b,\n    0x31, 0x31, 0x31, 0x35, 0x3e, 0x49, 0x50, 0x51, 0x46, 0x4a, 0x57, 0x65, 0x64, 0x53, 0x46, 0x43,\n    0x48, 0x44, 0x40, 0x3e, 0x3f, 0x41, 0x41, 0x41, 0x43, 0x43, 0x44, 0x45, 0x46, 0x46, 0x45, 0x43,\n    0x45, 0x43, 0x41, 0x40, 0x40, 0x42, 0x43, 0x43, 0x46, 0x49, 0x4a, 0x4a, 0x4e, 0x56, 0x5e, 0x60,\n    0x56, 0x52, 0x4b, 0x46, 0x43, 0x42, 0x42, 0x42, 0x40, 0x43, 0x47, 0x47, 0x44, 0x42, 0x42, 0x44,\n    0x48, 0x46, 0x44, 0x43, 0x44, 0x48, 0x4e, 0x52, 0x4f, 0x4c, 0x4b, 0x4b, 0x4c, 0x4f, 0x55, 0x5b,\n    0x59, 0x5b, 0x59, 0x55, 0x59, 0x60, 0x5d, 0x54, 0x51, 0x53, 0x54, 0x54, 0x52, 0x4f, 0x4e, 0x4e,\n    0x49, 0x4a, 0x4b, 0x4b, 0x4a, 0x4b, 0x4a, 0x4a, 0x4c, 0x48, 0x45, 0x46, 0x4a, 0x4d, 0x4e, 0x4d,\n    0x4f, 0x50, 0x50, 0x4d, 0x4a, 0x4d, 0x52, 0x57, 0x56, 0x53, 0x54, 0x58, 0x59, 0x57, 0x54, 0x54,\n    0x5c, 0x5b, 0x58, 0x53, 0x53, 0x5c, 0x6d, 0x7c, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b,\n    0x77, 0x76, 0x75, 0x74, 0x74, 0x73, 0x70, 0x6e, 0x6f, 0x6f, 0x6f, 0x6e, 0x6d, 0x6c, 0x6b, 0x6b,\n    0x6b, 0x6a, 0x68, 0x66, 0x66, 0x66, 0x67, 0x68, 0x6c, 0x6b, 0x6a, 0x6a, 0x6a, 0x6b, 0x6c, 0x6c,\n    0x6d, 0x6c, 0x6a, 0x68, 0x65, 0x62, 0x60, 0x5f, 0x60, 0x62, 0x66, 0x69, 0x6e, 0x73, 0x79, 0x7c,\n    0x7d, 0x82, 0x88, 0x8e, 0x91, 0x93, 0x94, 0x95, 0x96, 0x95, 0x94, 0x92, 0x90, 0x8b, 0x85, 0x81,\n    0x7d, 0x7a, 0x76, 0x73, 0x71, 0x6c, 0x67, 0x63, 0x61, 0x60, 0x5d, 0x5c, 0x5b, 0x59, 0x57, 0x56,\n    0x55, 0x56, 0x58, 0x59, 0x5a, 0x5b, 0x5d, 0x5e, 0x61, 0x62, 0x63, 0x64, 0x66, 0x69, 0x6d, 0x70,\n    0x77, 0x7c, 0x80, 0x81, 0x82, 0x85, 0x87, 0x87, 0x85, 0x82, 0x7e, 0x7a, 0x73, 0x68, 0x5e, 0x57,\n    0x4f, 0x54, 0x5a, 0x60, 0x66, 0x6c, 0x6f, 0x71, 0x76, 0x76, 0x76, 0x77, 0x79, 0x7c, 0x7e, 0x7f,\n    0x7e, 0x7f, 0x80, 0x7f, 0x7d, 0x7d, 0x7d, 0x7e, 0x7b, 0x7b, 0x7b, 0x79, 0x77, 0x74, 0x71, 0x70,\n    0x6d, 0x6a, 0x67, 0x66, 0x63, 0x5e, 0x5f, 0x62, 0x61, 0x69, 0x72, 0x72, 0x65, 0x58, 0x59, 0x62,\n    0x6f, 0x63, 0x55, 0x4f, 0x53, 0x60, 0x6d, 0x72, 0x72, 0x70, 0x6f, 0x6e, 0x6b, 0x67, 0x68, 0x6b,\n    0x6f, 0x79, 0x7f, 0x74, 0x5f, 0x51, 0x52, 0x5a, 0x6c, 0x6c, 0x71, 0x7b, 0x86, 0x87, 0x7e, 0x73,\n    0x66, 0x61, 0x5d, 0x5d, 0x5f, 0x5f, 0x61, 0x63, 0x66, 0x69, 0x65, 0x5c, 0x5a, 0x62, 0x67, 0x66,\n    0x64, 0x63, 0x64, 0x66, 0x65, 0x63, 0x66, 0x6b, 0x70, 0x71, 0x72, 0x71, 0x6d, 0x67, 0x63, 0x60,\n    0x54, 0x57, 0x5a, 0x5c, 0x60, 0x67, 0x6b, 0x6b, 0x6c, 0x6c, 0x6a, 0x67, 0x67, 0x6a, 0x6b, 0x69,\n    0x67, 0x72, 0x7e, 0x84, 0x83, 0x80, 0x7e, 0x7c, 0x7a, 0x71, 0x66, 0x5e, 0x5d, 0x5e, 0x5e, 0x5d,\n    0x64, 0x6a, 0x6e, 0x66, 0x52, 0x3c, 0x32, 0x30, 0x3e, 0x3c, 0x39, 0x37, 0x3b, 0x46, 0x55, 0x60,\n    0x60, 0x54, 0x43, 0x3b, 0x46, 0x55, 0x5a, 0x55, 0x4c, 0x43, 0x3e, 0x43, 0x4d, 0x52, 0x51, 0x4f,\n    0x4a, 0x43, 0x32, 0x3a, 0x48, 0x49, 0x4c, 0x4c, 0x55, 0x52, 0x48, 0x3b, 0x38, 0x42, 0x50, 0x57,\n    0x5f, 0x5c, 0x4a, 0x31, 0x2c, 0x3c, 0x4c, 0x51, 0x48, 0x4e, 0x4e, 0x47, 0x44, 0x48, 0x49, 0x44,\n    0x5e, 0x7b, 0x84, 0x7c, 0x7b, 0x6c, 0x48, 0x2b, 0x44, 0x57, 0x6a, 0x6d, 0x69, 0x62, 0x4c, 0x33,\n    0x31, 0x30, 0x36, 0x35, 0x33, 0x31, 0x37, 0x52, 0x7a, 0x71, 0x60, 0x55, 0x54, 0x53, 0x56, 0x60,\n    0x3c, 0x39, 0x33, 0x2c, 0x28, 0x29, 0x2c, 0x2f, 0x3d, 0x3f, 0x40, 0x3d, 0x37, 0x34, 0x34, 0x36,\n    0x3b, 0x3d, 0x40, 0x3f, 0x39, 0x33, 0x35, 0x3a, 0x35, 0x34, 0x36, 0x39, 0x3a, 0x3b, 0x3f, 0x44,\n    0x49, 0x4b, 0x4c, 0x4a, 0x49, 0x48, 0x47, 0x44, 0x51, 0x4c, 0x45, 0x40, 0x42, 0x4a, 0x4f, 0x50,\n    0x59, 0x57, 0x53, 0x4f, 0x4b, 0x45, 0x42, 0x41, 0x42, 0x42, 0x41, 0x42, 0x46, 0x4a, 0x48, 0x43,\n    0x42, 0x43, 0x45, 0x49, 0x4b, 0x4a, 0x46, 0x43, 0x3f, 0x3f, 0x40, 0x40, 0x41, 0x45, 0x4b, 0x50,\n    0x4f, 0x4a, 0x4c, 0x46, 0x46, 0x4d, 0x4f, 0x58, 0x61, 0x5c, 0x5c, 0x5f, 0x5b, 0x50, 0x4c, 0x50,\n    0x59, 0x60, 0x62, 0x5d, 0x5a, 0x5c, 0x5d, 0x5a, 0x4e, 0x4d, 0x4d, 0x51, 0x5b, 0x5f, 0x57, 0x4b,\n    0x4c, 0x4b, 0x49, 0x49, 0x4a, 0x4b, 0x4d, 0x4e, 0x4d, 0x51, 0x54, 0x55, 0x56, 0x56, 0x53, 0x4e,\n    0x4c, 0x4c, 0x4e, 0x52, 0x54, 0x52, 0x51, 0x52, 0x5c, 0x5d, 0x5f, 0x5f, 0x5c, 0x56, 0x4d, 0x47,\n    0x34, 0x32, 0x30, 0x33, 0x3a, 0x3f, 0x3c, 0x35, 0x38, 0x3b, 0x4b, 0x61, 0x6b, 0x61, 0x51, 0x49,\n    0x49, 0x45, 0x42, 0x40, 0x41, 0x42, 0x41, 0x40, 0x42, 0x42, 0x43, 0x45, 0x47, 0x48, 0x47, 0x46,\n    0x45, 0x44, 0x42, 0x41, 0x41, 0x41, 0x41, 0x41, 0x44, 0x48, 0x4b, 0x4d, 0x51, 0x59, 0x62, 0x68,\n    0x54, 0x4f, 0x49, 0x44, 0x42, 0x42, 0x42, 0x43, 0x41, 0x45, 0x49, 0x48, 0x45, 0x44, 0x45, 0x46,\n    0x48, 0x47, 0x45, 0x43, 0x43, 0x46, 0x4c, 0x4f, 0x50, 0x4c, 0x49, 0x49, 0x49, 0x4c, 0x52, 0x59,\n    0x5d, 0x5e, 0x5a, 0x55, 0x59, 0x62, 0x61, 0x59, 0x52, 0x50, 0x4e, 0x4e, 0x4f, 0x4f, 0x4e, 0x4c,\n    0x4a, 0x4c, 0x4f, 0x50, 0x4f, 0x4d, 0x4b, 0x4b, 0x4c, 0x49, 0x46, 0x46, 0x49, 0x4b, 0x4b, 0x4a,\n    0x4b, 0x4d, 0x4f, 0x50, 0x4e, 0x4e, 0x51, 0x55, 0x55, 0x55, 0x57, 0x57, 0x55, 0x52, 0x51, 0x53,\n    0x54, 0x56, 0x55, 0x50, 0x4f, 0x58, 0x6a, 0x78, 0x7e, 0x7d, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a,\n    0x76, 0x75, 0x73, 0x73, 0x73, 0x72, 0x70, 0x6e, 0x6f, 0x6f, 0x6e, 0x6e, 0x6d, 0x6c, 0x6b, 0x6b,\n    0x6b, 0x6a, 0x68, 0x66, 0x66, 0x66, 0x66, 0x67, 0x6b, 0x6b, 0x6a, 0x6a, 0x69, 0x6a, 0x6b, 0x6c,\n    0x6c, 0x6c, 0x6a, 0x68, 0x66, 0x63, 0x61, 0x60, 0x5f, 0x61, 0x64, 0x68, 0x6d, 0x73, 0x79, 0x7d,\n    0x7b, 0x80, 0x87, 0x8d, 0x91, 0x93, 0x94, 0x94, 0x9a, 0x99, 0x98, 0x97, 0x95, 0x91, 0x8d, 0x89,\n    0x87, 0x84, 0x81, 0x7e, 0x7b, 0x77, 0x71, 0x6d, 0x6d, 0x6b, 0x68, 0x66, 0x64, 0x62, 0x5f, 0x5d,\n    0x5a, 0x5c, 0x5e, 0x60, 0x61, 0x63, 0x65, 0x67, 0x6a, 0x6b, 0x6d, 0x6d, 0x6e, 0x71, 0x74, 0x76,\n    0x7b, 0x7f, 0x82, 0x83, 0x85, 0x88, 0x8a, 0x89, 0x87, 0x85, 0x81, 0x7c, 0x76, 0x6e, 0x63, 0x5b,\n    0x53, 0x55, 0x5a, 0x61, 0x67, 0x6b, 0x6e, 0x6f, 0x72, 0x72, 0x73, 0x74, 0x76, 0x79, 0x7b, 0x7d,\n    0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7c, 0x79, 0x79, 0x79, 0x78, 0x75, 0x72, 0x70, 0x6e,\n    0x6c, 0x69, 0x67, 0x64, 0x61, 0x5f, 0x60, 0x62, 0x5e, 0x62, 0x6a, 0x6f, 0x68, 0x5b, 0x56, 0x5a,\n    0x65, 0x67, 0x5b, 0x49, 0x49, 0x59, 0x68, 0x6d, 0x6e, 0x69, 0x6b, 0x71, 0x6a, 0x5d, 0x5d, 0x68,\n    0x78, 0x6f, 0x68, 0x6b, 0x76, 0x7e, 0x7d, 0x79, 0x61, 0x53, 0x45, 0x41, 0x49, 0x57, 0x63, 0x69,\n    0x65, 0x5e, 0x59, 0x5d, 0x63, 0x65, 0x61, 0x5e, 0x63, 0x68, 0x65, 0x5d, 0x5e, 0x68, 0x6e, 0x6c,\n    0x63, 0x63, 0x64, 0x65, 0x64, 0x63, 0x67, 0x6b, 0x6e, 0x6d, 0x6e, 0x6e, 0x6d, 0x67, 0x5d, 0x55,\n    0x44, 0x49, 0x50, 0x56, 0x5e, 0x66, 0x69, 0x69, 0x6a, 0x69, 0x67, 0x65, 0x66, 0x69, 0x6a, 0x68,\n    0x67, 0x6c, 0x76, 0x7e, 0x83, 0x82, 0x7e, 0x7c, 0x7b, 0x75, 0x6c, 0x63, 0x5d, 0x5b, 0x5b, 0x5b,\n    0x5c, 0x62, 0x64, 0x59, 0x43, 0x31, 0x2e, 0x34, 0x39, 0x37, 0x34, 0x34, 0x3b, 0x4b, 0x5d, 0x69,\n    0x61, 0x58, 0x4e, 0x4e, 0x59, 0x5e, 0x53, 0x43, 0x47, 0x45, 0x43, 0x46, 0x4e, 0x55, 0x55, 0x50,\n    0x48, 0x3f, 0x2e, 0x37, 0x46, 0x4a, 0x53, 0x58, 0x56, 0x4c, 0x40, 0x39, 0x37, 0x3d, 0x4e, 0x5f,\n    0x61, 0x5c, 0x4a, 0x35, 0x37, 0x4a, 0x55, 0x51, 0x52, 0x55, 0x51, 0x48, 0x47, 0x4d, 0x50, 0x4d,\n    0x6e, 0x76, 0x76, 0x78, 0x75, 0x5b, 0x43, 0x42, 0x52, 0x61, 0x69, 0x67, 0x63, 0x56, 0x3d, 0x28,\n    0x27, 0x20, 0x20, 0x1d, 0x21, 0x2a, 0x3b, 0x5d, 0x75, 0x6f, 0x60, 0x54, 0x4f, 0x49, 0x46, 0x4c,\n    0x41, 0x3d, 0x36, 0x30, 0x2f, 0x33, 0x36, 0x36, 0x3f, 0x3f, 0x3e, 0x3c, 0x39, 0x37, 0x37, 0x37,\n    0x37, 0x39, 0x3d, 0x3f, 0x3a, 0x33, 0x33, 0x38, 0x30, 0x2e, 0x30, 0x35, 0x3a, 0x3b, 0x3d, 0x3f,\n    0x37, 0x40, 0x4a, 0x4e, 0x4f, 0x4e, 0x4b, 0x48, 0x45, 0x4a, 0x4e, 0x4d, 0x4c, 0x4a, 0x46, 0x41,\n    0x48, 0x48, 0x4a, 0x4c, 0x4b, 0x46, 0x43, 0x42, 0x45, 0x44, 0x41, 0x3f, 0x41, 0x44, 0x42, 0x3e,\n    0x40, 0x40, 0x43, 0x46, 0x45, 0x41, 0x3f, 0x3f, 0x3d, 0x3f, 0x44, 0x49, 0x4a, 0x49, 0x4a, 0x4c,\n    0x48, 0x47, 0x4d, 0x48, 0x46, 0x49, 0x47, 0x4d, 0x5a, 0x59, 0x5b, 0x60, 0x5e, 0x56, 0x51, 0x51,\n    0x65, 0x6b, 0x6c, 0x67, 0x64, 0x66, 0x64, 0x5d, 0x4b, 0x4b, 0x4b, 0x4f, 0x57, 0x5b, 0x55, 0x4d,\n    0x4c, 0x4d, 0x4d, 0x4d, 0x4c, 0x4e, 0x51, 0x54, 0x50, 0x52, 0x53, 0x51, 0x51, 0x52, 0x52, 0x4f,\n    0x4e, 0x4c, 0x4d, 0x4f, 0x4f, 0x4e, 0x4e, 0x50, 0x52, 0x58, 0x61, 0x68, 0x6e, 0x74, 0x7a, 0x7e,\n    0x7c, 0x77, 0x70, 0x6c, 0x6b, 0x67, 0x5b, 0x4f, 0x3d, 0x3f, 0x49, 0x5c, 0x6a, 0x69, 0x5c, 0x51,\n    0x47, 0x44, 0x41, 0x41, 0x43, 0x45, 0x46, 0x45, 0x45, 0x44, 0x43, 0x44, 0x45, 0x46, 0x46, 0x46,\n    0x45, 0x45, 0x45, 0x45, 0x44, 0x43, 0x43, 0x43, 0x44, 0x46, 0x49, 0x4a, 0x4d, 0x53, 0x5b, 0x61,\n    0x53, 0x4f, 0x49, 0x45, 0x43, 0x43, 0x44, 0x44, 0x45, 0x48, 0x48, 0x45, 0x43, 0x43, 0x43, 0x43,\n    0x47, 0x46, 0x44, 0x43, 0x44, 0x48, 0x4b, 0x4e, 0x4c, 0x49, 0x47, 0x47, 0x47, 0x48, 0x4d, 0x52,\n    0x5a, 0x5a, 0x55, 0x51, 0x53, 0x59, 0x59, 0x54, 0x4f, 0x4e, 0x4d, 0x4e, 0x50, 0x50, 0x4d, 0x49,\n    0x49, 0x4a, 0x4c, 0x4f, 0x4f, 0x4b, 0x4a, 0x4b, 0x4d, 0x4b, 0x48, 0x48, 0x4a, 0x4b, 0x4a, 0x49,\n    0x49, 0x4b, 0x4f, 0x52, 0x52, 0x50, 0x50, 0x53, 0x55, 0x55, 0x53, 0x4f, 0x4b, 0x4d, 0x53, 0x5a,\n    0x5f, 0x5f, 0x59, 0x4e, 0x49, 0x54, 0x6a, 0x7a, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x7a, 0x79, 0x79,\n    0x76, 0x74, 0x72, 0x71, 0x71, 0x71, 0x70, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6d, 0x6c, 0x6b, 0x6a,\n    0x6d, 0x6c, 0x6a, 0x69, 0x68, 0x67, 0x67, 0x68, 0x69, 0x6a, 0x6a, 0x6a, 0x69, 0x69, 0x6a, 0x6c,\n    0x6b, 0x6b, 0x6a, 0x68, 0x66, 0x63, 0x61, 0x5f, 0x60, 0x62, 0x65, 0x68, 0x6c, 0x71, 0x76, 0x7a,\n    0x7d, 0x83, 0x8a, 0x91, 0x95, 0x98, 0x9a, 0x9b, 0x9d, 0x9c, 0x9b, 0x9a, 0x99, 0x97, 0x93, 0x91,\n    0x8f, 0x8c, 0x89, 0x86, 0x84, 0x80, 0x7b, 0x77, 0x75, 0x73, 0x71, 0x6e, 0x6c, 0x69, 0x65, 0x63,\n    0x62, 0x63, 0x66, 0x67, 0x69, 0x6a, 0x6d, 0x6e, 0x72, 0x73, 0x75, 0x75, 0x76, 0x77, 0x79, 0x7b,\n    0x7e, 0x82, 0x85, 0x86, 0x88, 0x8c, 0x8d, 0x8c, 0x89, 0x87, 0x83, 0x7d, 0x78, 0x72, 0x68, 0x5e,\n    0x57, 0x57, 0x5b, 0x62, 0x68, 0x6b, 0x6c, 0x6e, 0x6e, 0x6f, 0x70, 0x72, 0x74, 0x76, 0x78, 0x79,\n    0x77, 0x78, 0x79, 0x79, 0x78, 0x78, 0x78, 0x79, 0x76, 0x77, 0x76, 0x75, 0x73, 0x70, 0x6e, 0x6c,\n    0x68, 0x67, 0x64, 0x61, 0x5f, 0x5f, 0x62, 0x64, 0x5f, 0x5f, 0x64, 0x69, 0x67, 0x5d, 0x55, 0x54,\n    0x5a, 0x67, 0x60, 0x4c, 0x47, 0x53, 0x60, 0x6b, 0x6f, 0x68, 0x6a, 0x71, 0x69, 0x55, 0x4f, 0x56,\n    0x65, 0x64, 0x64, 0x65, 0x6a, 0x70, 0x76, 0x7a, 0x75, 0x6b, 0x5b, 0x4c, 0x44, 0x46, 0x53, 0x60,\n    0x60, 0x5b, 0x5b, 0x64, 0x6b, 0x6a, 0x61, 0x59, 0x64, 0x68, 0x67, 0x60, 0x5f, 0x64, 0x66, 0x63,\n    0x5d, 0x60, 0x62, 0x62, 0x60, 0x5f, 0x5f, 0x61, 0x68, 0x66, 0x65, 0x68, 0x6a, 0x67, 0x5f, 0x58,\n    0x5e, 0x5d, 0x5a, 0x59, 0x5c, 0x62, 0x63, 0x62, 0x64, 0x64, 0x62, 0x60, 0x62, 0x66, 0x69, 0x69,\n    0x6e, 0x6e, 0x72, 0x7b, 0x82, 0x84, 0x82, 0x81, 0x7c, 0x7a, 0x75, 0x6d, 0x63, 0x5d, 0x59, 0x59,\n    0x52, 0x65, 0x6d, 0x5e, 0x4d, 0x48, 0x47, 0x43, 0x38, 0x38, 0x39, 0x3d, 0x45, 0x52, 0x5f, 0x68,\n    0x63, 0x55, 0x46, 0x44, 0x4e, 0x55, 0x4e, 0x42, 0x45, 0x4a, 0x4c, 0x4b, 0x4f, 0x54, 0x51, 0x4a,\n    0x47, 0x40, 0x31, 0x3b, 0x4c, 0x51, 0x57, 0x59, 0x50, 0x44, 0x3a, 0x36, 0x34, 0x3a, 0x50, 0x68,\n    0x69, 0x63, 0x51, 0x41, 0x46, 0x5a, 0x64, 0x60, 0x57, 0x4c, 0x46, 0x49, 0x4a, 0x47, 0x4b, 0x54,\n    0x62, 0x71, 0x77, 0x74, 0x69, 0x51, 0x48, 0x55, 0x53, 0x5e, 0x62, 0x63, 0x62, 0x55, 0x40, 0x35,\n    0x38, 0x2d, 0x2b, 0x2b, 0x34, 0x3b, 0x42, 0x59, 0x51, 0x59, 0x58, 0x50, 0x48, 0x41, 0x43, 0x4c,\n    0x3c, 0x3a, 0x36, 0x34, 0x38, 0x3d, 0x3c, 0x38, 0x2f, 0x33, 0x3a, 0x40, 0x43, 0x41, 0x3b, 0x35,\n    0x35, 0x35, 0x3a, 0x3f, 0x3c, 0x34, 0x31, 0x34, 0x2f, 0x2b, 0x2c, 0x33, 0x3a, 0x3e, 0x3e, 0x3e,\n    0x4b, 0x52, 0x57, 0x58, 0x55, 0x50, 0x49, 0x42, 0x44, 0x48, 0x4c, 0x4d, 0x4e, 0x4f, 0x4e, 0x4c,\n    0x3d, 0x3c, 0x3d, 0x41, 0x42, 0x41, 0x41, 0x43, 0x43, 0x43, 0x42, 0x40, 0x41, 0x43, 0x41, 0x3e,\n    0x40, 0x3e, 0x3f, 0x42, 0x42, 0x3f, 0x3e, 0x40, 0x42, 0x44, 0x49, 0x4e, 0x4e, 0x49, 0x46, 0x46,\n    0x42, 0x40, 0x46, 0x43, 0x44, 0x48, 0x44, 0x48, 0x53, 0x57, 0x5d, 0x62, 0x63, 0x5f, 0x59, 0x54,\n    0x60, 0x62, 0x5f, 0x5b, 0x60, 0x67, 0x65, 0x5b, 0x52, 0x52, 0x53, 0x55, 0x5a, 0x5e, 0x5d, 0x5a,\n    0x55, 0x53, 0x4f, 0x4d, 0x4d, 0x4f, 0x51, 0x53, 0x52, 0x53, 0x51, 0x4e, 0x4e, 0x50, 0x52, 0x51,\n    0x50, 0x4b, 0x48, 0x47, 0x46, 0x45, 0x47, 0x4b, 0x41, 0x45, 0x4d, 0x55, 0x5f, 0x6a, 0x75, 0x7b,\n    0x82, 0x7f, 0x7a, 0x75, 0x72, 0x6f, 0x67, 0x5f, 0x51, 0x4f, 0x50, 0x57, 0x63, 0x6a, 0x65, 0x5b,\n    0x4a, 0x46, 0x42, 0x41, 0x44, 0x48, 0x4a, 0x4a, 0x47, 0x45, 0x43, 0x42, 0x43, 0x45, 0x46, 0x46,\n    0x49, 0x4b, 0x4c, 0x4b, 0x48, 0x45, 0x44, 0x44, 0x46, 0x46, 0x47, 0x47, 0x48, 0x4c, 0x52, 0x58,\n    0x58, 0x53, 0x4d, 0x48, 0x46, 0x46, 0x46, 0x46, 0x49, 0x4a, 0x48, 0x43, 0x42, 0x45, 0x46, 0x45,\n    0x48, 0x46, 0x44, 0x45, 0x47, 0x4a, 0x4b, 0x4a, 0x48, 0x47, 0x46, 0x47, 0x47, 0x47, 0x4a, 0x4e,\n    0x51, 0x50, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4e, 0x4c, 0x4d, 0x4e, 0x4f, 0x4f, 0x4e, 0x4c, 0x4b,\n    0x49, 0x47, 0x47, 0x4a, 0x4b, 0x49, 0x48, 0x4a, 0x4b, 0x4b, 0x4b, 0x4a, 0x4a, 0x4a, 0x49, 0x48,\n    0x48, 0x48, 0x4c, 0x51, 0x52, 0x4f, 0x4e, 0x50, 0x47, 0x4d, 0x53, 0x57, 0x56, 0x53, 0x51, 0x4f,\n    0x5f, 0x5e, 0x56, 0x48, 0x41, 0x4e, 0x66, 0x78, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x78,\n    0x76, 0x74, 0x71, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x6e, 0x6e, 0x6e, 0x6e, 0x6d, 0x6c, 0x6b, 0x6a,\n    0x6b, 0x6b, 0x6a, 0x69, 0x69, 0x68, 0x67, 0x67, 0x66, 0x67, 0x69, 0x69, 0x69, 0x68, 0x69, 0x6b,\n    0x69, 0x6a, 0x69, 0x68, 0x65, 0x62, 0x5e, 0x5c, 0x5d, 0x5f, 0x63, 0x67, 0x6b, 0x70, 0x75, 0x78,\n    0x80, 0x85, 0x8c, 0x92, 0x96, 0x99, 0x9b, 0x9c, 0x9d, 0x9b, 0x9a, 0x9a, 0x9a, 0x99, 0x97, 0x96,\n    0x93, 0x91, 0x8e, 0x8c, 0x8b, 0x89, 0x86, 0x83, 0x80, 0x7e, 0x7c, 0x79, 0x77, 0x74, 0x71, 0x6e,\n    0x70, 0x71, 0x72, 0x73, 0x73, 0x74, 0x77, 0x78, 0x79, 0x7a, 0x7c, 0x7c, 0x7c, 0x7d, 0x7e, 0x7f,\n    0x82, 0x85, 0x88, 0x8a, 0x8d, 0x90, 0x91, 0x8f, 0x8c, 0x8a, 0x84, 0x7d, 0x79, 0x74, 0x6b, 0x61,\n    0x5b, 0x5a, 0x5d, 0x64, 0x6a, 0x6b, 0x6b, 0x6d, 0x6c, 0x6d, 0x6f, 0x70, 0x72, 0x73, 0x74, 0x74,\n    0x75, 0x75, 0x76, 0x75, 0x74, 0x73, 0x73, 0x74, 0x71, 0x72, 0x72, 0x71, 0x70, 0x6e, 0x6c, 0x6a,\n    0x63, 0x63, 0x61, 0x5e, 0x5e, 0x60, 0x64, 0x67, 0x62, 0x61, 0x61, 0x63, 0x62, 0x5c, 0x55, 0x4f,\n    0x54, 0x62, 0x60, 0x53, 0x4d, 0x4c, 0x56, 0x69, 0x6e, 0x6b, 0x6c, 0x6e, 0x67, 0x57, 0x47, 0x40,\n    0x3f, 0x3f, 0x43, 0x4d, 0x58, 0x5f, 0x5f, 0x5d, 0x6a, 0x6c, 0x6e, 0x69, 0x5c, 0x4f, 0x4b, 0x4e,\n    0x58, 0x56, 0x5a, 0x63, 0x69, 0x67, 0x60, 0x5a, 0x63, 0x66, 0x66, 0x63, 0x5f, 0x5f, 0x5d, 0x59,\n    0x5a, 0x5c, 0x5d, 0x5b, 0x59, 0x5a, 0x5d, 0x5f, 0x62, 0x5f, 0x5d, 0x5e, 0x62, 0x66, 0x66, 0x65,\n    0x65, 0x5f, 0x57, 0x53, 0x59, 0x62, 0x67, 0x66, 0x64, 0x63, 0x60, 0x5d, 0x5d, 0x63, 0x68, 0x69,\n    0x6a, 0x6a, 0x6f, 0x7a, 0x81, 0x81, 0x7e, 0x7d, 0x7d, 0x7d, 0x7b, 0x75, 0x6c, 0x62, 0x5a, 0x55,\n    0x49, 0x5c, 0x64, 0x55, 0x43, 0x3a, 0x32, 0x28, 0x32, 0x34, 0x37, 0x3b, 0x42, 0x49, 0x51, 0x55,\n    0x5f, 0x4f, 0x3d, 0x38, 0x41, 0x4a, 0x49, 0x44, 0x47, 0x4e, 0x4f, 0x49, 0x49, 0x51, 0x50, 0x48,\n    0x45, 0x3f, 0x2f, 0x3a, 0x50, 0x57, 0x58, 0x51, 0x49, 0x44, 0x3d, 0x35, 0x2f, 0x36, 0x4f, 0x67,\n    0x68, 0x60, 0x4f, 0x40, 0x44, 0x56, 0x64, 0x66, 0x50, 0x3f, 0x38, 0x42, 0x49, 0x49, 0x51, 0x5f,\n    0x69, 0x6f, 0x6a, 0x65, 0x66, 0x58, 0x45, 0x43, 0x61, 0x6a, 0x6b, 0x6b, 0x67, 0x51, 0x3d, 0x3c,\n    0x3e, 0x37, 0x37, 0x32, 0x2f, 0x27, 0x23, 0x35, 0x5b, 0x63, 0x60, 0x56, 0x4e, 0x47, 0x49, 0x52,\n    0x34, 0x34, 0x34, 0x37, 0x3e, 0x43, 0x3e, 0x36, 0x2a, 0x2c, 0x31, 0x39, 0x3f, 0x3f, 0x3a, 0x34,\n    0x33, 0x33, 0x37, 0x3d, 0x3b, 0x31, 0x2c, 0x2d, 0x31, 0x2b, 0x29, 0x30, 0x3a, 0x41, 0x43, 0x44,\n    0x42, 0x46, 0x4a, 0x4d, 0x50, 0x53, 0x51, 0x4d, 0x4c, 0x4e, 0x4f, 0x4f, 0x4f, 0x50, 0x4e, 0x4a,\n    0x4b, 0x44, 0x3e, 0x3c, 0x3a, 0x38, 0x3a, 0x3f, 0x3f, 0x41, 0x43, 0x43, 0x45, 0x47, 0x46, 0x43,\n    0x42, 0x3e, 0x3d, 0x41, 0x44, 0x42, 0x42, 0x44, 0x46, 0x46, 0x49, 0x4f, 0x4f, 0x4c, 0x4a, 0x4c,\n    0x4d, 0x44, 0x41, 0x38, 0x38, 0x3e, 0x3b, 0x3f, 0x47, 0x4f, 0x58, 0x5d, 0x60, 0x5e, 0x57, 0x50,\n    0x56, 0x53, 0x4d, 0x4b, 0x57, 0x66, 0x65, 0x5a, 0x4d, 0x4e, 0x50, 0x53, 0x57, 0x5c, 0x60, 0x61,\n    0x5b, 0x55, 0x4c, 0x47, 0x47, 0x49, 0x4a, 0x4a, 0x4f, 0x4f, 0x4d, 0x49, 0x49, 0x4d, 0x51, 0x52,\n    0x54, 0x4e, 0x47, 0x44, 0x42, 0x42, 0x45, 0x49, 0x4c, 0x48, 0x46, 0x4a, 0x53, 0x5a, 0x5a, 0x58,\n    0x5b, 0x61, 0x67, 0x6a, 0x69, 0x67, 0x61, 0x5b, 0x59, 0x56, 0x51, 0x4f, 0x5a, 0x69, 0x6c, 0x66,\n    0x4f, 0x4a, 0x44, 0x42, 0x44, 0x48, 0x4b, 0x4c, 0x47, 0x44, 0x42, 0x41, 0x43, 0x45, 0x48, 0x49,\n    0x4e, 0x51, 0x53, 0x51, 0x4b, 0x46, 0x43, 0x43, 0x47, 0x47, 0x48, 0x4a, 0x4d, 0x51, 0x58, 0x5e,\n    0x5d, 0x58, 0x51, 0x4c, 0x49, 0x48, 0x48, 0x48, 0x4e, 0x4e, 0x4b, 0x46, 0x47, 0x4c, 0x4f, 0x4d,\n    0x4b, 0x48, 0x46, 0x47, 0x49, 0x4b, 0x49, 0x47, 0x47, 0x46, 0x47, 0x49, 0x49, 0x48, 0x4a, 0x4e,\n    0x4c, 0x4a, 0x4c, 0x50, 0x51, 0x4e, 0x4d, 0x4f, 0x4c, 0x4d, 0x4e, 0x4d, 0x4a, 0x4a, 0x4c, 0x4f,\n    0x4d, 0x48, 0x46, 0x48, 0x4a, 0x49, 0x4a, 0x4d, 0x49, 0x4a, 0x4b, 0x4a, 0x49, 0x48, 0x47, 0x47,\n    0x47, 0x45, 0x47, 0x4d, 0x4f, 0x4d, 0x4b, 0x4d, 0x50, 0x51, 0x50, 0x4f, 0x50, 0x51, 0x51, 0x50,\n    0x42, 0x49, 0x4b, 0x44, 0x41, 0x4c, 0x5f, 0x6d, 0x7a, 0x7a, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x77,\n    0x76, 0x73, 0x70, 0x6e, 0x6e, 0x6f, 0x70, 0x70, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6c, 0x6b, 0x6a,\n    0x69, 0x69, 0x69, 0x68, 0x68, 0x67, 0x66, 0x65, 0x63, 0x66, 0x68, 0x69, 0x68, 0x67, 0x68, 0x69,\n    0x68, 0x69, 0x68, 0x67, 0x64, 0x60, 0x5b, 0x59, 0x59, 0x5c, 0x60, 0x66, 0x6b, 0x70, 0x76, 0x79,\n    0x7f, 0x83, 0x88, 0x8d, 0x90, 0x92, 0x93, 0x94, 0x9a, 0x99, 0x98, 0x97, 0x98, 0x99, 0x98, 0x97,\n    0x96, 0x93, 0x90, 0x90, 0x90, 0x8f, 0x8d, 0x8a, 0x8b, 0x8a, 0x88, 0x86, 0x84, 0x81, 0x7e, 0x7b,\n    0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7d, 0x7f, 0x81, 0x80, 0x81, 0x83, 0x83, 0x83, 0x83, 0x84, 0x85,\n    0x85, 0x88, 0x8b, 0x8d, 0x90, 0x93, 0x93, 0x90, 0x8e, 0x8b, 0x85, 0x7e, 0x7a, 0x76, 0x6d, 0x62,\n    0x5e, 0x5b, 0x5e, 0x66, 0x6b, 0x6b, 0x6b, 0x6d, 0x6c, 0x6d, 0x6e, 0x70, 0x70, 0x71, 0x70, 0x70,\n    0x73, 0x74, 0x74, 0x72, 0x70, 0x6f, 0x6f, 0x70, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6c, 0x6a, 0x69,\n    0x5f, 0x5f, 0x5e, 0x5c, 0x5d, 0x61, 0x66, 0x69, 0x64, 0x63, 0x61, 0x5f, 0x5e, 0x5b, 0x54, 0x4e,\n    0x4f, 0x59, 0x5a, 0x55, 0x4f, 0x44, 0x4b, 0x65, 0x66, 0x68, 0x69, 0x69, 0x68, 0x60, 0x4b, 0x37,\n    0x40, 0x4f, 0x5d, 0x59, 0x4b, 0x46, 0x51, 0x5f, 0x65, 0x68, 0x6e, 0x74, 0x71, 0x68, 0x61, 0x5f,\n    0x51, 0x51, 0x55, 0x5b, 0x60, 0x60, 0x5f, 0x60, 0x5c, 0x60, 0x65, 0x66, 0x65, 0x63, 0x60, 0x5e,\n    0x5e, 0x5e, 0x5b, 0x57, 0x56, 0x5b, 0x62, 0x67, 0x5d, 0x5a, 0x56, 0x55, 0x59, 0x60, 0x68, 0x6d,\n    0x74, 0x6b, 0x5f, 0x5a, 0x5f, 0x67, 0x6b, 0x69, 0x68, 0x67, 0x63, 0x5d, 0x5b, 0x60, 0x65, 0x68,\n    0x6c, 0x70, 0x7b, 0x89, 0x8f, 0x8b, 0x85, 0x82, 0x7e, 0x7e, 0x7d, 0x7a, 0x71, 0x65, 0x59, 0x52,\n    0x57, 0x5a, 0x5c, 0x56, 0x47, 0x39, 0x36, 0x38, 0x33, 0x34, 0x37, 0x3c, 0x42, 0x49, 0x50, 0x53,\n    0x50, 0x48, 0x41, 0x42, 0x49, 0x4b, 0x43, 0x3a, 0x45, 0x4c, 0x4a, 0x41, 0x43, 0x50, 0x57, 0x53,\n    0x46, 0x3e, 0x2c, 0x36, 0x51, 0x5b, 0x59, 0x4c, 0x45, 0x49, 0x45, 0x35, 0x2a, 0x33, 0x4c, 0x62,\n    0x6d, 0x65, 0x54, 0x43, 0x43, 0x53, 0x64, 0x6d, 0x69, 0x5b, 0x4c, 0x48, 0x4c, 0x52, 0x59, 0x5f,\n    0x74, 0x6d, 0x65, 0x67, 0x5c, 0x3c, 0x36, 0x51, 0x66, 0x6f, 0x72, 0x74, 0x6e, 0x54, 0x41, 0x47,\n    0x3c, 0x3d, 0x42, 0x3a, 0x32, 0x2e, 0x39, 0x59, 0x6a, 0x6d, 0x66, 0x5c, 0x58, 0x51, 0x4a, 0x4b,\n    0x32, 0x2f, 0x32, 0x3e, 0x4a, 0x49, 0x3c, 0x30, 0x29, 0x2b, 0x31, 0x38, 0x3b, 0x39, 0x37, 0x37,\n    0x3d, 0x3b, 0x3b, 0x3f, 0x43, 0x42, 0x3b, 0x34, 0x2d, 0x2c, 0x2e, 0x35, 0x3c, 0x3e, 0x3b, 0x39,\n    0x3c, 0x3f, 0x42, 0x40, 0x3f, 0x42, 0x4a, 0x51, 0x51, 0x4c, 0x48, 0x49, 0x4e, 0x51, 0x4e, 0x4a,\n    0x45, 0x4a, 0x4d, 0x49, 0x40, 0x39, 0x37, 0x38, 0x3e, 0x41, 0x42, 0x43, 0x47, 0x4b, 0x49, 0x43,\n    0x42, 0x43, 0x44, 0x42, 0x41, 0x42, 0x46, 0x49, 0x4c, 0x4b, 0x49, 0x49, 0x4a, 0x4a, 0x47, 0x45,\n    0x42, 0x42, 0x42, 0x41, 0x41, 0x41, 0x41, 0x42, 0x3f, 0x42, 0x4a, 0x55, 0x5d, 0x5b, 0x51, 0x48,\n    0x4f, 0x4f, 0x52, 0x56, 0x57, 0x58, 0x5d, 0x65, 0x62, 0x5d, 0x54, 0x4e, 0x52, 0x58, 0x58, 0x54,\n    0x52, 0x52, 0x51, 0x4e, 0x4a, 0x47, 0x46, 0x46, 0x4a, 0x4d, 0x4f, 0x4f, 0x50, 0x53, 0x54, 0x52,\n    0x4e, 0x4a, 0x46, 0x45, 0x48, 0x4a, 0x49, 0x48, 0x4c, 0x5c, 0x6d, 0x6f, 0x61, 0x4c, 0x3d, 0x36,\n    0x42, 0x48, 0x4f, 0x51, 0x4f, 0x4c, 0x4b, 0x4c, 0x4e, 0x4f, 0x53, 0x4f, 0x4d, 0x61, 0x75, 0x73,\n    0x5b, 0x4e, 0x44, 0x45, 0x4a, 0x4b, 0x4a, 0x4a, 0x44, 0x46, 0x48, 0x47, 0x44, 0x42, 0x43, 0x44,\n    0x4f, 0x57, 0x5c, 0x57, 0x4c, 0x45, 0x47, 0x4c, 0x4e, 0x4a, 0x47, 0x46, 0x4c, 0x55, 0x5f, 0x65,\n    0x60, 0x54, 0x4d, 0x4f, 0x4e, 0x4a, 0x4c, 0x54, 0x53, 0x50, 0x4f, 0x52, 0x56, 0x57, 0x54, 0x50,\n    0x4c, 0x4c, 0x4d, 0x4d, 0x4d, 0x4c, 0x4b, 0x4b, 0x46, 0x48, 0x4a, 0x4c, 0x4c, 0x4b, 0x4a, 0x4a,\n    0x46, 0x48, 0x4a, 0x4d, 0x52, 0x55, 0x52, 0x4c, 0x44, 0x47, 0x4a, 0x4c, 0x4d, 0x4e, 0x50, 0x51,\n    0x52, 0x4f, 0x4c, 0x4a, 0x4a, 0x4a, 0x4a, 0x4a, 0x49, 0x48, 0x45, 0x43, 0x42, 0x43, 0x44, 0x45,\n    0x45, 0x44, 0x45, 0x48, 0x4c, 0x4d, 0x4a, 0x47, 0x49, 0x4a, 0x4b, 0x4d, 0x4d, 0x4d, 0x4c, 0x4b,\n    0x49, 0x49, 0x49, 0x48, 0x44, 0x49, 0x5b, 0x6f, 0x77, 0x7c, 0x79, 0x77, 0x7a, 0x79, 0x77, 0x7a,\n    0x77, 0x75, 0x71, 0x6e, 0x6d, 0x6d, 0x6f, 0x70, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d,\n    0x68, 0x68, 0x68, 0x68, 0x68, 0x68, 0x68, 0x68, 0x64, 0x65, 0x66, 0x68, 0x68, 0x69, 0x68, 0x68,\n    0x67, 0x67, 0x66, 0x64, 0x61, 0x5d, 0x5a, 0x59, 0x57, 0x5c, 0x63, 0x67, 0x6b, 0x6f, 0x75, 0x7a,\n    0x7f, 0x82, 0x85, 0x87, 0x88, 0x89, 0x8c, 0x8e, 0x92, 0x93, 0x93, 0x93, 0x92, 0x91, 0x8f, 0x8e,\n    0x8c, 0x89, 0x86, 0x86, 0x84, 0x81, 0x81, 0x83, 0x84, 0x88, 0x8c, 0x8d, 0x8b, 0x89, 0x87, 0x87,\n    0x8a, 0x89, 0x86, 0x83, 0x80, 0x80, 0x81, 0x83, 0x83, 0x84, 0x86, 0x85, 0x85, 0x87, 0x8a, 0x8e,\n    0x8c, 0x8b, 0x8d, 0x92, 0x94, 0x91, 0x90, 0x92, 0x8d, 0x8a, 0x87, 0x83, 0x7c, 0x73, 0x6b, 0x69,\n    0x60, 0x5f, 0x62, 0x67, 0x6b, 0x6a, 0x69, 0x6a, 0x6b, 0x6a, 0x6a, 0x6a, 0x6b, 0x6c, 0x6e, 0x6e,\n    0x6c, 0x6e, 0x71, 0x71, 0x6f, 0x6d, 0x6b, 0x6b, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6a, 0x67, 0x64,\n    0x5f, 0x5d, 0x5b, 0x5b, 0x5d, 0x60, 0x63, 0x64, 0x62, 0x60, 0x5e, 0x5e, 0x5e, 0x5a, 0x53, 0x4d,\n    0x49, 0x4e, 0x56, 0x59, 0x4e, 0x42, 0x47, 0x55, 0x61, 0x65, 0x6a, 0x6b, 0x64, 0x55, 0x41, 0x34,\n    0x4f, 0x5d, 0x6a, 0x6b, 0x63, 0x5d, 0x5b, 0x5b, 0x7a, 0x7a, 0x79, 0x7b, 0x80, 0x82, 0x77, 0x69,\n    0x56, 0x52, 0x55, 0x5f, 0x67, 0x64, 0x5d, 0x58, 0x5c, 0x60, 0x65, 0x67, 0x69, 0x69, 0x65, 0x61,\n    0x5b, 0x5c, 0x5a, 0x56, 0x55, 0x57, 0x5c, 0x5f, 0x59, 0x55, 0x50, 0x4f, 0x55, 0x5b, 0x5c, 0x5a,\n    0x5c, 0x59, 0x58, 0x5f, 0x6f, 0x83, 0x90, 0x94, 0x7e, 0x75, 0x68, 0x5e, 0x5e, 0x63, 0x64, 0x63,\n    0x65, 0x6a, 0x76, 0x83, 0x89, 0x87, 0x85, 0x85, 0x7f, 0x7f, 0x7d, 0x7b, 0x77, 0x6f, 0x5f, 0x51,\n    0x4d, 0x57, 0x59, 0x51, 0x4d, 0x4e, 0x4a, 0x42, 0x49, 0x4f, 0x46, 0x3e, 0x42, 0x41, 0x40, 0x48,\n    0x3f, 0x36, 0x2e, 0x3e, 0x4e, 0x51, 0x36, 0x3a, 0x3b, 0x51, 0x46, 0x40, 0x46, 0x50, 0x5e, 0x55,\n    0x44, 0x3b, 0x3e, 0x50, 0x5e, 0x5c, 0x56, 0x55, 0x52, 0x50, 0x42, 0x30, 0x2b, 0x3e, 0x5b, 0x6d,\n    0x6b, 0x5b, 0x43, 0x35, 0x41, 0x5c, 0x6d, 0x70, 0x71, 0x5d, 0x55, 0x50, 0x55, 0x49, 0x4d, 0x51,\n    0x66, 0x6f, 0x71, 0x71, 0x6b, 0x57, 0x53, 0x67, 0x7e, 0x7c, 0x7c, 0x77, 0x66, 0x50, 0x47, 0x49,\n    0x48, 0x53, 0x49, 0x3c, 0x3d, 0x3a, 0x44, 0x60, 0x78, 0x7f, 0x75, 0x63, 0x55, 0x42, 0x36, 0x3d,\n    0x34, 0x36, 0x39, 0x3c, 0x3e, 0x3d, 0x39, 0x34, 0x2d, 0x2f, 0x34, 0x3b, 0x3d, 0x3a, 0x38, 0x38,\n    0x3a, 0x3a, 0x3b, 0x3f, 0x43, 0x42, 0x3c, 0x37, 0x31, 0x31, 0x34, 0x3b, 0x42, 0x44, 0x42, 0x40,\n    0x3b, 0x3e, 0x3f, 0x3d, 0x3b, 0x3d, 0x44, 0x4a, 0x4a, 0x49, 0x49, 0x4b, 0x4f, 0x52, 0x53, 0x54,\n    0x48, 0x4a, 0x4c, 0x4b, 0x47, 0x41, 0x3c, 0x39, 0x3d, 0x41, 0x45, 0x48, 0x4a, 0x4c, 0x48, 0x42,\n    0x49, 0x4b, 0x4b, 0x49, 0x44, 0x43, 0x45, 0x48, 0x4a, 0x4d, 0x50, 0x50, 0x4d, 0x49, 0x45, 0x43,\n    0x46, 0x45, 0x43, 0x42, 0x41, 0x41, 0x41, 0x41, 0x3e, 0x41, 0x48, 0x4f, 0x52, 0x50, 0x49, 0x43,\n    0x42, 0x43, 0x46, 0x4a, 0x4c, 0x4e, 0x53, 0x5a, 0x63, 0x5f, 0x59, 0x54, 0x56, 0x5a, 0x59, 0x54,\n    0x4c, 0x4c, 0x4b, 0x49, 0x47, 0x47, 0x47, 0x47, 0x4d, 0x4f, 0x50, 0x4f, 0x50, 0x52, 0x53, 0x52,\n    0x51, 0x4d, 0x49, 0x49, 0x4b, 0x4c, 0x4b, 0x48, 0x5e, 0x66, 0x6f, 0x71, 0x6e, 0x6a, 0x6a, 0x6d,\n    0x68, 0x67, 0x65, 0x63, 0x61, 0x5e, 0x5a, 0x58, 0x51, 0x4f, 0x52, 0x54, 0x52, 0x59, 0x69, 0x72,\n    0x67, 0x5a, 0x4e, 0x4a, 0x4d, 0x4f, 0x4a, 0x44, 0x44, 0x45, 0x46, 0x46, 0x45, 0x46, 0x47, 0x49,\n    0x4d, 0x51, 0x53, 0x50, 0x4b, 0x4a, 0x4e, 0x53, 0x4f, 0x4d, 0x4a, 0x4b, 0x50, 0x58, 0x60, 0x65,\n    0x5f, 0x50, 0x45, 0x47, 0x4a, 0x49, 0x4c, 0x52, 0x51, 0x51, 0x51, 0x53, 0x55, 0x55, 0x52, 0x4f,\n    0x47, 0x48, 0x49, 0x4a, 0x4b, 0x4b, 0x4b, 0x4b, 0x48, 0x48, 0x49, 0x4a, 0x49, 0x47, 0x46, 0x46,\n    0x45, 0x48, 0x4b, 0x4d, 0x50, 0x52, 0x4f, 0x4b, 0x47, 0x49, 0x4b, 0x4d, 0x4d, 0x4e, 0x4f, 0x50,\n    0x52, 0x4f, 0x4b, 0x49, 0x47, 0x47, 0x46, 0x45, 0x43, 0x42, 0x42, 0x41, 0x41, 0x42, 0x43, 0x43,\n    0x44, 0x43, 0x44, 0x48, 0x4c, 0x4d, 0x4a, 0x47, 0x46, 0x46, 0x46, 0x46, 0x47, 0x47, 0x46, 0x45,\n    0x44, 0x44, 0x45, 0x45, 0x42, 0x46, 0x59, 0x6c, 0x76, 0x7c, 0x7a, 0x78, 0x7a, 0x78, 0x74, 0x75,\n    0x76, 0x74, 0x71, 0x6e, 0x6d, 0x6d, 0x6e, 0x6f, 0x6f, 0x6e, 0x6e, 0x6d, 0x6d, 0x6c, 0x6c, 0x6c,\n    0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x66, 0x67, 0x68, 0x69, 0x69, 0x69, 0x69, 0x68,\n    0x65, 0x66, 0x67, 0x65, 0x62, 0x5d, 0x59, 0x57, 0x5c, 0x5f, 0x65, 0x69, 0x6c, 0x70, 0x74, 0x78,\n    0x79, 0x7b, 0x7e, 0x7f, 0x7f, 0x7f, 0x80, 0x82, 0x82, 0x82, 0x83, 0x84, 0x84, 0x83, 0x82, 0x81,\n    0x79, 0x76, 0x75, 0x76, 0x74, 0x71, 0x6f, 0x70, 0x75, 0x78, 0x7b, 0x7d, 0x7e, 0x7d, 0x7e, 0x7f,\n    0x7f, 0x7e, 0x7d, 0x7c, 0x7b, 0x7c, 0x7f, 0x81, 0x81, 0x84, 0x88, 0x89, 0x8a, 0x8c, 0x8f, 0x92,\n    0x90, 0x8f, 0x90, 0x93, 0x93, 0x90, 0x8e, 0x90, 0x8d, 0x88, 0x83, 0x7f, 0x7a, 0x72, 0x6b, 0x69,\n    0x61, 0x5f, 0x60, 0x65, 0x69, 0x69, 0x69, 0x6a, 0x6c, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b,\n    0x6a, 0x6d, 0x6f, 0x6f, 0x6d, 0x6b, 0x6a, 0x6a, 0x6a, 0x6a, 0x69, 0x6a, 0x69, 0x67, 0x64, 0x62,\n    0x5c, 0x5b, 0x59, 0x5a, 0x5c, 0x5f, 0x61, 0x61, 0x5d, 0x5f, 0x62, 0x65, 0x63, 0x5b, 0x50, 0x48,\n    0x44, 0x47, 0x50, 0x55, 0x4e, 0x43, 0x46, 0x51, 0x5d, 0x61, 0x66, 0x68, 0x64, 0x5a, 0x4f, 0x47,\n    0x5c, 0x61, 0x64, 0x62, 0x61, 0x68, 0x71, 0x78, 0x6d, 0x6f, 0x6c, 0x66, 0x63, 0x66, 0x67, 0x65,\n    0x55, 0x53, 0x55, 0x5e, 0x65, 0x63, 0x5d, 0x58, 0x58, 0x5e, 0x64, 0x69, 0x6e, 0x6f, 0x6d, 0x69,\n    0x55, 0x56, 0x55, 0x52, 0x4e, 0x4d, 0x4d, 0x4d, 0x4f, 0x4f, 0x4f, 0x51, 0x53, 0x54, 0x50, 0x4c,\n    0x53, 0x53, 0x53, 0x54, 0x5e, 0x70, 0x82, 0x8c, 0x94, 0x8c, 0x7e, 0x6e, 0x65, 0x67, 0x6c, 0x70,\n    0x77, 0x73, 0x71, 0x73, 0x75, 0x76, 0x7c, 0x82, 0x80, 0x7e, 0x7a, 0x79, 0x79, 0x73, 0x66, 0x59,\n    0x51, 0x56, 0x59, 0x58, 0x5a, 0x5c, 0x57, 0x4f, 0x42, 0x47, 0x42, 0x40, 0x4a, 0x4d, 0x48, 0x4a,\n    0x28, 0x22, 0x21, 0x3a, 0x54, 0x5c, 0x3b, 0x35, 0x42, 0x50, 0x46, 0x3e, 0x47, 0x56, 0x5d, 0x55,\n    0x3c, 0x39, 0x40, 0x51, 0x5b, 0x59, 0x58, 0x5c, 0x5a, 0x57, 0x48, 0x32, 0x2a, 0x37, 0x4d, 0x5a,\n    0x66, 0x56, 0x41, 0x3b, 0x4a, 0x5e, 0x62, 0x59, 0x40, 0x43, 0x54, 0x56, 0x53, 0x41, 0x4c, 0x5a,\n    0x67, 0x70, 0x72, 0x6f, 0x6c, 0x63, 0x68, 0x7b, 0x88, 0x7f, 0x77, 0x72, 0x66, 0x52, 0x42, 0x3c,\n    0x3c, 0x49, 0x45, 0x3d, 0x40, 0x43, 0x53, 0x72, 0x7a, 0x83, 0x78, 0x62, 0x53, 0x49, 0x48, 0x52,\n    0x38, 0x3f, 0x41, 0x39, 0x31, 0x32, 0x38, 0x3b, 0x36, 0x36, 0x39, 0x3d, 0x3d, 0x3a, 0x37, 0x37,\n    0x39, 0x3a, 0x3d, 0x40, 0x41, 0x3f, 0x3b, 0x37, 0x3c, 0x3b, 0x3a, 0x3b, 0x3d, 0x3e, 0x3d, 0x3c,\n    0x41, 0x42, 0x43, 0x40, 0x3d, 0x3f, 0x45, 0x4b, 0x4a, 0x4c, 0x4e, 0x4e, 0x4d, 0x4e, 0x51, 0x54,\n    0x4c, 0x49, 0x47, 0x48, 0x4a, 0x49, 0x44, 0x3f, 0x41, 0x45, 0x47, 0x47, 0x48, 0x48, 0x46, 0x42,\n    0x46, 0x49, 0x4b, 0x49, 0x45, 0x43, 0x46, 0x49, 0x49, 0x4d, 0x51, 0x4f, 0x4a, 0x46, 0x45, 0x46,\n    0x4b, 0x49, 0x46, 0x43, 0x41, 0x41, 0x41, 0x41, 0x46, 0x49, 0x4d, 0x50, 0x50, 0x4c, 0x49, 0x46,\n    0x40, 0x40, 0x43, 0x45, 0x46, 0x48, 0x4d, 0x52, 0x50, 0x50, 0x4f, 0x50, 0x54, 0x59, 0x5a, 0x58,\n    0x51, 0x4f, 0x4c, 0x4b, 0x4a, 0x4b, 0x4c, 0x4c, 0x4d, 0x4d, 0x4c, 0x4a, 0x4c, 0x4f, 0x50, 0x4e,\n    0x4d, 0x4a, 0x47, 0x48, 0x4c, 0x4e, 0x4c, 0x4a, 0x49, 0x4a, 0x4c, 0x4f, 0x57, 0x63, 0x70, 0x78,\n    0x7d, 0x7d, 0x7d, 0x7b, 0x77, 0x72, 0x6f, 0x6e, 0x69, 0x62, 0x59, 0x55, 0x50, 0x4b, 0x59, 0x73,\n    0x76, 0x6c, 0x5b, 0x4f, 0x4e, 0x51, 0x4c, 0x43, 0x43, 0x42, 0x42, 0x43, 0x46, 0x49, 0x4b, 0x4b,\n    0x4e, 0x4e, 0x4d, 0x4d, 0x4d, 0x4e, 0x50, 0x51, 0x4e, 0x4d, 0x4d, 0x4e, 0x51, 0x57, 0x5c, 0x60,\n    0x5d, 0x4e, 0x45, 0x49, 0x50, 0x51, 0x51, 0x53, 0x51, 0x52, 0x53, 0x54, 0x54, 0x52, 0x50, 0x4e,\n    0x47, 0x47, 0x48, 0x49, 0x4a, 0x4a, 0x4b, 0x4b, 0x4d, 0x4d, 0x4c, 0x4b, 0x49, 0x48, 0x47, 0x47,\n    0x47, 0x4b, 0x4d, 0x4e, 0x4f, 0x50, 0x4e, 0x4b, 0x4a, 0x4b, 0x4c, 0x4d, 0x4c, 0x4c, 0x4d, 0x4f,\n    0x4e, 0x4b, 0x48, 0x45, 0x45, 0x44, 0x43, 0x42, 0x3e, 0x3e, 0x3f, 0x40, 0x41, 0x42, 0x42, 0x43,\n    0x45, 0x46, 0x47, 0x4b, 0x4e, 0x4f, 0x4c, 0x4a, 0x47, 0x46, 0x45, 0x45, 0x46, 0x46, 0x44, 0x43,\n    0x44, 0x45, 0x46, 0x45, 0x42, 0x45, 0x55, 0x67, 0x71, 0x79, 0x7a, 0x78, 0x7a, 0x78, 0x73, 0x73,\n    0x74, 0x73, 0x71, 0x6f, 0x6e, 0x6d, 0x6d, 0x6d, 0x6f, 0x6e, 0x6e, 0x6d, 0x6d, 0x6c, 0x6c, 0x6c,\n    0x6a, 0x6a, 0x6a, 0x6a, 0x69, 0x69, 0x69, 0x69, 0x68, 0x68, 0x69, 0x6a, 0x6a, 0x69, 0x68, 0x68,\n    0x67, 0x67, 0x65, 0x62, 0x5c, 0x58, 0x55, 0x54, 0x5c, 0x5e, 0x62, 0x66, 0x69, 0x6c, 0x6e, 0x6f,\n    0x76, 0x77, 0x79, 0x78, 0x77, 0x75, 0x75, 0x75, 0x72, 0x71, 0x6e, 0x6b, 0x67, 0x64, 0x61, 0x5f,\n    0x5d, 0x5c, 0x5e, 0x60, 0x60, 0x5d, 0x5c, 0x5c, 0x5f, 0x61, 0x64, 0x66, 0x68, 0x6a, 0x6d, 0x6e,\n    0x69, 0x6a, 0x6a, 0x6a, 0x6b, 0x6d, 0x70, 0x73, 0x7b, 0x7f, 0x85, 0x89, 0x8b, 0x8d, 0x91, 0x94,\n    0x94, 0x93, 0x94, 0x96, 0x95, 0x92, 0x91, 0x91, 0x8d, 0x86, 0x7f, 0x7b, 0x78, 0x71, 0x6b, 0x69,\n    0x63, 0x5f, 0x5e, 0x61, 0x65, 0x67, 0x68, 0x69, 0x6c, 0x6c, 0x6c, 0x6c, 0x6b, 0x6a, 0x68, 0x67,\n    0x68, 0x6a, 0x6b, 0x6c, 0x6a, 0x69, 0x68, 0x67, 0x67, 0x66, 0x66, 0x66, 0x65, 0x63, 0x60, 0x5e,\n    0x5a, 0x59, 0x59, 0x5a, 0x5c, 0x5e, 0x5e, 0x5e, 0x58, 0x5c, 0x62, 0x64, 0x61, 0x58, 0x4d, 0x46,\n    0x3f, 0x40, 0x46, 0x4d, 0x4c, 0x44, 0x45, 0x4b, 0x53, 0x59, 0x5f, 0x64, 0x67, 0x6c, 0x72, 0x77,\n    0x73, 0x6b, 0x5b, 0x4c, 0x46, 0x4c, 0x56, 0x5c, 0x6c, 0x74, 0x77, 0x72, 0x6b, 0x66, 0x5f, 0x58,\n    0x54, 0x53, 0x55, 0x5c, 0x61, 0x60, 0x5c, 0x59, 0x54, 0x5b, 0x63, 0x6b, 0x72, 0x75, 0x72, 0x6e,\n    0x5c, 0x5a, 0x57, 0x54, 0x51, 0x4e, 0x4c, 0x4b, 0x53, 0x51, 0x4f, 0x4d, 0x4d, 0x4e, 0x50, 0x51,\n    0x54, 0x58, 0x5a, 0x58, 0x58, 0x60, 0x6c, 0x75, 0x8b, 0x90, 0x90, 0x87, 0x7d, 0x77, 0x76, 0x76,\n    0x75, 0x72, 0x70, 0x71, 0x73, 0x76, 0x7a, 0x7e, 0x83, 0x7f, 0x7b, 0x79, 0x7c, 0x7a, 0x71, 0x66,\n    0x5a, 0x5b, 0x5d, 0x61, 0x63, 0x5f, 0x56, 0x4f, 0x51, 0x50, 0x49, 0x47, 0x52, 0x52, 0x45, 0x3a,\n    0x26, 0x23, 0x20, 0x33, 0x49, 0x55, 0x39, 0x37, 0x3f, 0x45, 0x44, 0x3b, 0x49, 0x5b, 0x54, 0x4c,\n    0x34, 0x38, 0x44, 0x50, 0x53, 0x50, 0x54, 0x5c, 0x65, 0x61, 0x50, 0x39, 0x2f, 0x3a, 0x4a, 0x52,\n    0x5d, 0x4f, 0x41, 0x41, 0x52, 0x61, 0x5f, 0x54, 0x4c, 0x50, 0x62, 0x63, 0x5f, 0x4d, 0x56, 0x63,\n    0x66, 0x6a, 0x6a, 0x6c, 0x71, 0x72, 0x74, 0x7d, 0x85, 0x79, 0x6f, 0x6c, 0x69, 0x5d, 0x4f, 0x46,\n    0x3f, 0x45, 0x3e, 0x3a, 0x40, 0x44, 0x4d, 0x62, 0x6c, 0x78, 0x78, 0x6e, 0x65, 0x5a, 0x4e, 0x4b,\n    0x3c, 0x45, 0x46, 0x38, 0x2c, 0x2e, 0x39, 0x41, 0x3f, 0x3c, 0x3b, 0x3c, 0x3a, 0x37, 0x36, 0x37,\n    0x3c, 0x3e, 0x40, 0x41, 0x3f, 0x3b, 0x38, 0x35, 0x35, 0x37, 0x38, 0x3b, 0x41, 0x48, 0x4c, 0x4d,\n    0x41, 0x41, 0x3f, 0x3c, 0x3a, 0x3d, 0x45, 0x4b, 0x4d, 0x4f, 0x50, 0x4f, 0x4d, 0x4c, 0x4e, 0x50,\n    0x4e, 0x49, 0x43, 0x43, 0x47, 0x49, 0x48, 0x45, 0x49, 0x48, 0x45, 0x43, 0x42, 0x43, 0x45, 0x46,\n    0x45, 0x48, 0x4b, 0x49, 0x45, 0x42, 0x44, 0x46, 0x48, 0x4a, 0x4b, 0x49, 0x46, 0x45, 0x49, 0x4c,\n    0x4e, 0x4c, 0x48, 0x45, 0x42, 0x42, 0x43, 0x43, 0x45, 0x47, 0x4a, 0x4c, 0x4c, 0x49, 0x46, 0x44,\n    0x49, 0x49, 0x49, 0x49, 0x48, 0x49, 0x4b, 0x4e, 0x4a, 0x4c, 0x4e, 0x53, 0x59, 0x5f, 0x62, 0x62,\n    0x5a, 0x56, 0x52, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4b, 0x4a, 0x48, 0x47, 0x4b, 0x50, 0x51, 0x4f,\n    0x4c, 0x48, 0x45, 0x45, 0x48, 0x4a, 0x4a, 0x48, 0x43, 0x40, 0x3d, 0x3e, 0x42, 0x46, 0x48, 0x49,\n    0x55, 0x5f, 0x69, 0x6b, 0x66, 0x62, 0x63, 0x66, 0x6e, 0x6b, 0x5f, 0x57, 0x50, 0x45, 0x4e, 0x6a,\n    0x7b, 0x76, 0x65, 0x50, 0x48, 0x4c, 0x4b, 0x44, 0x43, 0x42, 0x42, 0x45, 0x4a, 0x4e, 0x4e, 0x4d,\n    0x4e, 0x4f, 0x50, 0x4f, 0x4e, 0x4b, 0x49, 0x47, 0x4c, 0x4c, 0x4d, 0x4e, 0x4f, 0x51, 0x53, 0x55,\n    0x55, 0x4d, 0x4b, 0x54, 0x5b, 0x59, 0x53, 0x51, 0x50, 0x52, 0x55, 0x55, 0x53, 0x50, 0x4e, 0x4d,\n    0x4b, 0x4a, 0x4a, 0x4a, 0x4a, 0x4b, 0x4c, 0x4c, 0x4f, 0x4e, 0x4c, 0x4c, 0x4c, 0x4c, 0x4c, 0x4b,\n    0x4d, 0x50, 0x50, 0x4e, 0x4c, 0x4d, 0x4d, 0x4b, 0x4a, 0x4b, 0x4b, 0x4b, 0x4a, 0x4a, 0x4b, 0x4d,\n    0x46, 0x44, 0x42, 0x42, 0x43, 0x44, 0x44, 0x43, 0x40, 0x40, 0x40, 0x40, 0x40, 0x41, 0x42, 0x43,\n    0x46, 0x47, 0x48, 0x4b, 0x4d, 0x4d, 0x4a, 0x48, 0x47, 0x46, 0x47, 0x48, 0x49, 0x49, 0x46, 0x43,\n    0x46, 0x46, 0x47, 0x46, 0x41, 0x41, 0x4e, 0x5e, 0x6a, 0x74, 0x77, 0x75, 0x78, 0x78, 0x75, 0x75,\n    0x72, 0x71, 0x71, 0x70, 0x6e, 0x6d, 0x6d, 0x6c, 0x6d, 0x6d, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d,\n    0x6a, 0x6a, 0x6a, 0x69, 0x69, 0x69, 0x69, 0x68, 0x68, 0x69, 0x69, 0x69, 0x69, 0x68, 0x67, 0x67,\n    0x68, 0x66, 0x63, 0x5d, 0x58, 0x55, 0x55, 0x57, 0x5c, 0x5e, 0x63, 0x69, 0x6d, 0x6f, 0x6f, 0x6e,\n    0x6c, 0x6d, 0x6d, 0x6b, 0x69, 0x66, 0x64, 0x63, 0x5d, 0x5c, 0x5a, 0x58, 0x58, 0x59, 0x5a, 0x5b,\n    0x56, 0x54, 0x55, 0x57, 0x56, 0x54, 0x53, 0x54, 0x52, 0x52, 0x53, 0x54, 0x56, 0x58, 0x5b, 0x5d,\n    0x5f, 0x5f, 0x60, 0x60, 0x61, 0x63, 0x67, 0x69, 0x71, 0x75, 0x7a, 0x7f, 0x83, 0x87, 0x8c, 0x90,\n    0x93, 0x93, 0x94, 0x95, 0x95, 0x93, 0x92, 0x92, 0x8c, 0x85, 0x7e, 0x7b, 0x79, 0x73, 0x6c, 0x68,\n    0x64, 0x5e, 0x5b, 0x5e, 0x63, 0x65, 0x67, 0x69, 0x6a, 0x6b, 0x6c, 0x6c, 0x6b, 0x69, 0x67, 0x65,\n    0x66, 0x67, 0x67, 0x67, 0x67, 0x66, 0x65, 0x65, 0x64, 0x63, 0x62, 0x62, 0x61, 0x60, 0x5d, 0x5b,\n    0x59, 0x59, 0x5a, 0x5c, 0x5d, 0x5d, 0x5b, 0x59, 0x57, 0x59, 0x5b, 0x5a, 0x56, 0x4f, 0x49, 0x46,\n    0x3f, 0x3c, 0x3e, 0x45, 0x47, 0x44, 0x43, 0x46, 0x52, 0x58, 0x5f, 0x5f, 0x5b, 0x59, 0x5d, 0x63,\n    0x75, 0x7a, 0x7e, 0x7e, 0x7a, 0x70, 0x61, 0x55, 0x4b, 0x54, 0x60, 0x69, 0x71, 0x71, 0x66, 0x59,\n    0x54, 0x53, 0x55, 0x59, 0x5d, 0x5d, 0x5a, 0x58, 0x52, 0x59, 0x62, 0x6b, 0x72, 0x76, 0x72, 0x6d,\n    0x59, 0x53, 0x4d, 0x4b, 0x4b, 0x4b, 0x4b, 0x4c, 0x4d, 0x4d, 0x4e, 0x4e, 0x4d, 0x4d, 0x50, 0x54,\n    0x57, 0x58, 0x57, 0x53, 0x53, 0x5a, 0x64, 0x6a, 0x7e, 0x88, 0x92, 0x94, 0x90, 0x89, 0x82, 0x7c,\n    0x71, 0x71, 0x72, 0x74, 0x77, 0x79, 0x7a, 0x7b, 0x80, 0x7f, 0x7c, 0x7a, 0x7b, 0x7b, 0x76, 0x70,\n    0x65, 0x64, 0x66, 0x67, 0x5f, 0x51, 0x47, 0x45, 0x53, 0x4c, 0x44, 0x48, 0x55, 0x57, 0x49, 0x39,\n    0x16, 0x28, 0x3a, 0x4f, 0x5b, 0x5b, 0x3d, 0x3d, 0x42, 0x47, 0x51, 0x49, 0x54, 0x61, 0x4a, 0x40,\n    0x2f, 0x38, 0x47, 0x51, 0x51, 0x50, 0x56, 0x5f, 0x55, 0x51, 0x41, 0x30, 0x32, 0x46, 0x58, 0x5f,\n    0x53, 0x47, 0x3c, 0x40, 0x52, 0x63, 0x67, 0x64, 0x69, 0x5e, 0x5b, 0x4f, 0x4d, 0x46, 0x59, 0x6a,\n    0x6c, 0x61, 0x5b, 0x63, 0x71, 0x76, 0x76, 0x77, 0x7d, 0x77, 0x6e, 0x67, 0x5f, 0x59, 0x55, 0x54,\n    0x51, 0x47, 0x35, 0x2f, 0x36, 0x34, 0x2e, 0x31, 0x3c, 0x42, 0x4c, 0x5d, 0x69, 0x63, 0x52, 0x45,\n    0x40, 0x46, 0x44, 0x37, 0x2d, 0x2f, 0x39, 0x40, 0x43, 0x3e, 0x3b, 0x39, 0x38, 0x37, 0x38, 0x3b,\n    0x3e, 0x40, 0x43, 0x43, 0x40, 0x3c, 0x39, 0x38, 0x3b, 0x41, 0x48, 0x4b, 0x50, 0x55, 0x56, 0x55,\n    0x46, 0x44, 0x42, 0x3e, 0x3e, 0x43, 0x4d, 0x54, 0x4e, 0x4d, 0x4e, 0x4f, 0x50, 0x51, 0x51, 0x50,\n    0x4d, 0x4b, 0x49, 0x48, 0x47, 0x47, 0x46, 0x45, 0x4b, 0x47, 0x44, 0x42, 0x43, 0x45, 0x49, 0x4b,\n    0x4e, 0x4f, 0x50, 0x4d, 0x48, 0x44, 0x42, 0x42, 0x47, 0x48, 0x49, 0x4a, 0x4b, 0x4d, 0x51, 0x53,\n    0x50, 0x4d, 0x4a, 0x47, 0x45, 0x44, 0x45, 0x46, 0x48, 0x49, 0x4c, 0x50, 0x53, 0x51, 0x4c, 0x48,\n    0x4f, 0x4f, 0x4e, 0x4c, 0x4a, 0x4b, 0x4c, 0x4d, 0x4e, 0x4d, 0x4d, 0x51, 0x55, 0x57, 0x59, 0x5a,\n    0x59, 0x56, 0x53, 0x4f, 0x4d, 0x4c, 0x4b, 0x4a, 0x4a, 0x49, 0x48, 0x49, 0x50, 0x56, 0x57, 0x54,\n    0x4f, 0x4a, 0x44, 0x43, 0x46, 0x49, 0x4a, 0x4a, 0x52, 0x49, 0x3e, 0x37, 0x37, 0x3a, 0x3d, 0x3d,\n    0x36, 0x3f, 0x49, 0x4f, 0x4f, 0x4d, 0x4e, 0x4f, 0x4f, 0x5b, 0x5d, 0x5a, 0x57, 0x4c, 0x4a, 0x58,\n    0x76, 0x7a, 0x70, 0x58, 0x48, 0x47, 0x47, 0x42, 0x45, 0x44, 0x45, 0x4a, 0x50, 0x53, 0x52, 0x4f,\n    0x4d, 0x4f, 0x50, 0x4d, 0x49, 0x45, 0x44, 0x45, 0x4d, 0x4f, 0x50, 0x4f, 0x4d, 0x4c, 0x4d, 0x4d,\n    0x4a, 0x49, 0x4e, 0x56, 0x59, 0x55, 0x50, 0x4f, 0x4e, 0x51, 0x54, 0x53, 0x50, 0x4d, 0x4c, 0x4c,\n    0x4c, 0x4c, 0x4b, 0x4b, 0x4b, 0x4c, 0x4e, 0x4f, 0x4c, 0x4b, 0x4a, 0x4a, 0x4d, 0x4f, 0x50, 0x50,\n    0x51, 0x51, 0x4f, 0x4a, 0x48, 0x49, 0x49, 0x49, 0x48, 0x49, 0x4a, 0x4a, 0x49, 0x49, 0x4a, 0x4a,\n    0x42, 0x41, 0x40, 0x40, 0x42, 0x43, 0x43, 0x43, 0x45, 0x43, 0x40, 0x3e, 0x3e, 0x3f, 0x41, 0x42,\n    0x43, 0x44, 0x45, 0x46, 0x47, 0x46, 0x44, 0x43, 0x43, 0x43, 0x45, 0x49, 0x4b, 0x4a, 0x45, 0x41,\n    0x43, 0x43, 0x45, 0x44, 0x3f, 0x3e, 0x48, 0x55, 0x67, 0x72, 0x75, 0x71, 0x75, 0x77, 0x75, 0x76,\n    0x71, 0x71, 0x71, 0x70, 0x6f, 0x6e, 0x6d, 0x6c, 0x6c, 0x6c, 0x6d, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e,\n    0x6a, 0x6a, 0x69, 0x69, 0x68, 0x68, 0x67, 0x67, 0x67, 0x68, 0x68, 0x68, 0x68, 0x67, 0x66, 0x65,\n    0x64, 0x65, 0x63, 0x5e, 0x57, 0x53, 0x52, 0x52, 0x55, 0x59, 0x5f, 0x67, 0x6e, 0x71, 0x71, 0x70,\n    0x67, 0x67, 0x67, 0x65, 0x63, 0x60, 0x5d, 0x5b, 0x5b, 0x58, 0x54, 0x51, 0x50, 0x51, 0x53, 0x55,\n    0x56, 0x53, 0x52, 0x52, 0x52, 0x50, 0x50, 0x52, 0x50, 0x4f, 0x4e, 0x4e, 0x4e, 0x50, 0x51, 0x51,\n    0x53, 0x54, 0x55, 0x56, 0x57, 0x5a, 0x5d, 0x60, 0x67, 0x6a, 0x6e, 0x72, 0x76, 0x7c, 0x84, 0x89,\n    0x8e, 0x90, 0x91, 0x92, 0x92, 0x92, 0x90, 0x8e, 0x8a, 0x84, 0x7e, 0x7d, 0x7b, 0x74, 0x6c, 0x66,\n    0x63, 0x5d, 0x59, 0x5c, 0x62, 0x65, 0x67, 0x68, 0x68, 0x69, 0x6a, 0x6b, 0x6a, 0x68, 0x66, 0x65,\n    0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x63, 0x63, 0x61, 0x60, 0x5f, 0x5f, 0x5d, 0x5a, 0x58,\n    0x58, 0x59, 0x5a, 0x5b, 0x5c, 0x5a, 0x57, 0x54, 0x56, 0x56, 0x55, 0x53, 0x4e, 0x4a, 0x46, 0x45,\n    0x41, 0x3b, 0x39, 0x3d, 0x41, 0x41, 0x42, 0x44, 0x4c, 0x57, 0x62, 0x62, 0x59, 0x51, 0x50, 0x53,\n    0x5e, 0x66, 0x6f, 0x74, 0x74, 0x6e, 0x61, 0x56, 0x53, 0x55, 0x57, 0x5b, 0x64, 0x6d, 0x6e, 0x69,\n    0x55, 0x54, 0x54, 0x55, 0x58, 0x5a, 0x59, 0x56, 0x50, 0x56, 0x60, 0x69, 0x72, 0x75, 0x71, 0x6b,\n    0x55, 0x4d, 0x48, 0x49, 0x4d, 0x4d, 0x4c, 0x4c, 0x45, 0x50, 0x5f, 0x6b, 0x69, 0x5d, 0x54, 0x51,\n    0x5c, 0x58, 0x53, 0x53, 0x5f, 0x71, 0x7f, 0x85, 0x8d, 0x8d, 0x8c, 0x8c, 0x8f, 0x92, 0x90, 0x8c,\n    0x82, 0x7d, 0x75, 0x6e, 0x6d, 0x70, 0x73, 0x74, 0x75, 0x7a, 0x7d, 0x7a, 0x77, 0x75, 0x75, 0x74,\n    0x6e, 0x6e, 0x6d, 0x65, 0x54, 0x44, 0x44, 0x4c, 0x54, 0x46, 0x3e, 0x44, 0x4f, 0x51, 0x47, 0x39,\n    0x29, 0x3a, 0x48, 0x55, 0x55, 0x4c, 0x2d, 0x2f, 0x41, 0x48, 0x54, 0x4b, 0x51, 0x56, 0x3c, 0x30,\n    0x2f, 0x3b, 0x4b, 0x55, 0x58, 0x59, 0x5f, 0x65, 0x5a, 0x52, 0x3f, 0x2f, 0x38, 0x51, 0x63, 0x65,\n    0x56, 0x43, 0x35, 0x3c, 0x53, 0x66, 0x69, 0x66, 0x5a, 0x5b, 0x64, 0x5d, 0x59, 0x4e, 0x60, 0x70,\n    0x85, 0x74, 0x6d, 0x74, 0x78, 0x78, 0x7b, 0x80, 0x7c, 0x7c, 0x73, 0x5e, 0x48, 0x40, 0x46, 0x4e,\n    0x4e, 0x41, 0x31, 0x30, 0x3a, 0x40, 0x41, 0x43, 0x44, 0x33, 0x2c, 0x34, 0x39, 0x36, 0x31, 0x2f,\n    0x43, 0x42, 0x3d, 0x36, 0x31, 0x31, 0x37, 0x3d, 0x45, 0x40, 0x3c, 0x3b, 0x3a, 0x3a, 0x3d, 0x40,\n    0x3e, 0x41, 0x43, 0x44, 0x43, 0x40, 0x3e, 0x3d, 0x44, 0x4f, 0x58, 0x59, 0x57, 0x54, 0x4d, 0x45,\n    0x4a, 0x48, 0x46, 0x43, 0x44, 0x49, 0x52, 0x59, 0x54, 0x51, 0x4f, 0x4f, 0x51, 0x51, 0x4e, 0x4b,\n    0x4b, 0x4f, 0x53, 0x52, 0x4d, 0x47, 0x45, 0x44, 0x49, 0x46, 0x45, 0x48, 0x4c, 0x4d, 0x4e, 0x4f,\n    0x4e, 0x4e, 0x4e, 0x4d, 0x4c, 0x4a, 0x48, 0x46, 0x48, 0x4b, 0x50, 0x53, 0x56, 0x56, 0x56, 0x56,\n    0x51, 0x4f, 0x4c, 0x49, 0x47, 0x47, 0x47, 0x48, 0x4e, 0x4f, 0x52, 0x57, 0x5a, 0x59, 0x54, 0x4f,\n    0x4f, 0x50, 0x4f, 0x4c, 0x4c, 0x4e, 0x4f, 0x4f, 0x4b, 0x48, 0x47, 0x4b, 0x4f, 0x50, 0x50, 0x50,\n    0x53, 0x53, 0x52, 0x4f, 0x4c, 0x49, 0x48, 0x48, 0x49, 0x48, 0x47, 0x4b, 0x53, 0x59, 0x58, 0x52,\n    0x4a, 0x46, 0x43, 0x45, 0x4b, 0x51, 0x54, 0x55, 0x59, 0x60, 0x6b, 0x74, 0x75, 0x6a, 0x58, 0x4b,\n    0x4a, 0x48, 0x49, 0x4d, 0x52, 0x52, 0x4e, 0x4a, 0x45, 0x51, 0x57, 0x55, 0x52, 0x4f, 0x4e, 0x51,\n    0x6d, 0x79, 0x79, 0x66, 0x52, 0x4a, 0x46, 0x43, 0x45, 0x44, 0x45, 0x49, 0x4f, 0x52, 0x51, 0x4f,\n    0x4e, 0x4e, 0x4d, 0x47, 0x42, 0x42, 0x48, 0x4d, 0x52, 0x53, 0x54, 0x52, 0x4e, 0x4c, 0x4b, 0x4c,\n    0x48, 0x4a, 0x4e, 0x53, 0x52, 0x4f, 0x4f, 0x51, 0x4d, 0x4f, 0x51, 0x51, 0x4e, 0x4d, 0x4c, 0x4d,\n    0x4d, 0x4c, 0x4a, 0x4a, 0x4a, 0x4c, 0x4e, 0x4f, 0x4b, 0x4a, 0x4a, 0x4c, 0x51, 0x55, 0x56, 0x56,\n    0x50, 0x50, 0x4d, 0x48, 0x47, 0x48, 0x47, 0x45, 0x48, 0x4a, 0x4b, 0x4b, 0x4a, 0x49, 0x49, 0x49,\n    0x44, 0x43, 0x42, 0x41, 0x42, 0x42, 0x41, 0x40, 0x46, 0x43, 0x3f, 0x3c, 0x3b, 0x3c, 0x3f, 0x41,\n    0x43, 0x43, 0x44, 0x44, 0x44, 0x44, 0x43, 0x43, 0x43, 0x43, 0x45, 0x4a, 0x4d, 0x4c, 0x46, 0x41,\n    0x42, 0x43, 0x45, 0x46, 0x42, 0x40, 0x49, 0x55, 0x66, 0x73, 0x75, 0x70, 0x72, 0x75, 0x73, 0x73,\n    0x72, 0x71, 0x71, 0x70, 0x6f, 0x6e, 0x6e, 0x6d, 0x6b, 0x6c, 0x6d, 0x6e, 0x6e, 0x6e, 0x6e, 0x6d,\n    0x6a, 0x6a, 0x69, 0x68, 0x68, 0x67, 0x67, 0x67, 0x66, 0x66, 0x67, 0x67, 0x67, 0x66, 0x65, 0x64,\n    0x64, 0x65, 0x64, 0x5d, 0x50, 0x43, 0x3a, 0x36, 0x3a, 0x3d, 0x44, 0x4a, 0x50, 0x54, 0x56, 0x58,\n    0x59, 0x58, 0x58, 0x58, 0x57, 0x54, 0x51, 0x4e, 0x4f, 0x4c, 0x47, 0x41, 0x3c, 0x39, 0x37, 0x37,\n    0x3e, 0x3c, 0x3d, 0x41, 0x44, 0x46, 0x49, 0x4d, 0x4e, 0x4d, 0x4d, 0x4d, 0x4e, 0x4e, 0x4d, 0x4c,\n    0x4a, 0x4b, 0x4d, 0x4e, 0x50, 0x52, 0x56, 0x58, 0x5c, 0x5f, 0x62, 0x65, 0x69, 0x6f, 0x78, 0x7e,\n    0x88, 0x8c, 0x8f, 0x90, 0x91, 0x91, 0x8e, 0x8b, 0x88, 0x83, 0x7f, 0x7d, 0x7a, 0x72, 0x6a, 0x65,\n    0x61, 0x5b, 0x58, 0x5c, 0x62, 0x66, 0x67, 0x67, 0x66, 0x67, 0x69, 0x69, 0x69, 0x68, 0x66, 0x65,\n    0x64, 0x62, 0x61, 0x61, 0x62, 0x63, 0x63, 0x62, 0x62, 0x60, 0x5f, 0x5d, 0x5d, 0x5b, 0x59, 0x57,\n    0x56, 0x56, 0x58, 0x5a, 0x5a, 0x59, 0x55, 0x52, 0x54, 0x54, 0x54, 0x52, 0x4f, 0x4b, 0x46, 0x43,\n    0x42, 0x3c, 0x38, 0x39, 0x3c, 0x3e, 0x40, 0x43, 0x46, 0x51, 0x5d, 0x62, 0x62, 0x67, 0x73, 0x7e,\n    0x78, 0x73, 0x68, 0x5c, 0x58, 0x5f, 0x6b, 0x73, 0x6e, 0x6d, 0x65, 0x58, 0x51, 0x54, 0x58, 0x5a,\n    0x59, 0x57, 0x54, 0x53, 0x56, 0x59, 0x58, 0x54, 0x4c, 0x52, 0x5c, 0x66, 0x70, 0x75, 0x72, 0x6c,\n    0x57, 0x50, 0x4e, 0x54, 0x5a, 0x57, 0x50, 0x4d, 0x4a, 0x56, 0x69, 0x77, 0x74, 0x64, 0x57, 0x52,\n    0x57, 0x57, 0x5a, 0x64, 0x75, 0x87, 0x8f, 0x90, 0x90, 0x89, 0x81, 0x7e, 0x86, 0x90, 0x95, 0x95,\n    0x8e, 0x89, 0x7f, 0x75, 0x70, 0x6f, 0x6c, 0x69, 0x69, 0x74, 0x7d, 0x7d, 0x78, 0x75, 0x76, 0x78,\n    0x74, 0x73, 0x6f, 0x63, 0x51, 0x47, 0x50, 0x5e, 0x57, 0x43, 0x3c, 0x45, 0x49, 0x48, 0x46, 0x42,\n    0x56, 0x50, 0x45, 0x47, 0x45, 0x3c, 0x1e, 0x23, 0x3b, 0x45, 0x4a, 0x45, 0x4b, 0x4f, 0x3f, 0x35,\n    0x38, 0x45, 0x53, 0x5a, 0x5b, 0x5b, 0x5c, 0x5d, 0x5c, 0x51, 0x3d, 0x32, 0x43, 0x61, 0x6e, 0x6a,\n    0x63, 0x48, 0x34, 0x40, 0x5a, 0x67, 0x5e, 0x51, 0x56, 0x5b, 0x67, 0x62, 0x5f, 0x54, 0x63, 0x70,\n    0x7f, 0x78, 0x7a, 0x78, 0x67, 0x5b, 0x60, 0x66, 0x76, 0x75, 0x69, 0x51, 0x3c, 0x39, 0x43, 0x4b,\n    0x43, 0x3d, 0x37, 0x36, 0x3a, 0x45, 0x55, 0x61, 0x45, 0x30, 0x24, 0x22, 0x1f, 0x26, 0x3a, 0x49,\n    0x41, 0x3a, 0x35, 0x36, 0x36, 0x36, 0x3b, 0x42, 0x4b, 0x47, 0x44, 0x42, 0x40, 0x3e, 0x3e, 0x40,\n    0x3e, 0x3f, 0x41, 0x42, 0x42, 0x41, 0x3e, 0x3c, 0x3d, 0x4a, 0x54, 0x55, 0x53, 0x53, 0x4f, 0x48,\n    0x45, 0x45, 0x44, 0x43, 0x43, 0x46, 0x4b, 0x4f, 0x56, 0x53, 0x50, 0x4f, 0x4f, 0x4d, 0x49, 0x45,\n    0x4a, 0x50, 0x55, 0x55, 0x50, 0x4c, 0x4c, 0x4d, 0x4f, 0x49, 0x46, 0x4a, 0x4f, 0x50, 0x4f, 0x4f,\n    0x4a, 0x48, 0x48, 0x4a, 0x4e, 0x51, 0x4f, 0x4e, 0x4c, 0x51, 0x57, 0x59, 0x57, 0x54, 0x54, 0x55,\n    0x52, 0x51, 0x4e, 0x4c, 0x4a, 0x48, 0x48, 0x48, 0x47, 0x49, 0x4d, 0x50, 0x50, 0x4f, 0x4c, 0x4a,\n    0x4d, 0x4e, 0x4d, 0x4a, 0x4b, 0x4f, 0x51, 0x4f, 0x4d, 0x4a, 0x4b, 0x52, 0x59, 0x59, 0x56, 0x55,\n    0x50, 0x53, 0x55, 0x53, 0x4d, 0x48, 0x46, 0x47, 0x48, 0x47, 0x47, 0x4c, 0x54, 0x59, 0x54, 0x4c,\n    0x47, 0x45, 0x44, 0x47, 0x4e, 0x53, 0x55, 0x55, 0x69, 0x66, 0x61, 0x5d, 0x5c, 0x5c, 0x5e, 0x5f,\n    0x57, 0x56, 0x56, 0x57, 0x57, 0x55, 0x50, 0x4c, 0x53, 0x51, 0x52, 0x50, 0x4b, 0x4d, 0x53, 0x52,\n    0x61, 0x6e, 0x74, 0x67, 0x55, 0x4b, 0x49, 0x47, 0x46, 0x45, 0x44, 0x47, 0x4c, 0x50, 0x52, 0x52,\n    0x55, 0x53, 0x4f, 0x49, 0x45, 0x45, 0x4b, 0x51, 0x54, 0x55, 0x55, 0x52, 0x4e, 0x4b, 0x4b, 0x4d,\n    0x4e, 0x4f, 0x51, 0x52, 0x51, 0x50, 0x52, 0x55, 0x4f, 0x50, 0x51, 0x51, 0x50, 0x50, 0x50, 0x51,\n    0x52, 0x50, 0x4d, 0x4a, 0x49, 0x4a, 0x4b, 0x4c, 0x4c, 0x4b, 0x4b, 0x4f, 0x54, 0x58, 0x59, 0x58,\n    0x50, 0x50, 0x4f, 0x4e, 0x4e, 0x4f, 0x4c, 0x47, 0x4b, 0x4d, 0x4f, 0x4f, 0x4d, 0x4a, 0x49, 0x48,\n    0x47, 0x46, 0x44, 0x43, 0x42, 0x42, 0x40, 0x3f, 0x42, 0x41, 0x3e, 0x3c, 0x3c, 0x3d, 0x40, 0x41,\n    0x44, 0x44, 0x44, 0x44, 0x44, 0x45, 0x46, 0x48, 0x48, 0x46, 0x46, 0x49, 0x4c, 0x4c, 0x48, 0x43,\n    0x46, 0x46, 0x49, 0x4b, 0x47, 0x44, 0x4b, 0x56, 0x61, 0x71, 0x75, 0x71, 0x73, 0x76, 0x73, 0x72,\n    0x72, 0x72, 0x71, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6d, 0x6d, 0x6e, 0x6f, 0x6e, 0x6d, 0x6c, 0x6b,\n    0x6b, 0x6a, 0x6a, 0x69, 0x68, 0x68, 0x67, 0x67, 0x65, 0x65, 0x66, 0x66, 0x66, 0x66, 0x65, 0x64,\n    0x64, 0x64, 0x61, 0x55, 0x44, 0x32, 0x27, 0x22, 0x24, 0x26, 0x27, 0x27, 0x27, 0x2a, 0x2e, 0x32,\n    0x34, 0x34, 0x34, 0x36, 0x36, 0x35, 0x32, 0x2f, 0x2b, 0x2c, 0x2f, 0x31, 0x31, 0x31, 0x2f, 0x2e,\n    0x2b, 0x2b, 0x2e, 0x34, 0x38, 0x3b, 0x3e, 0x42, 0x43, 0x44, 0x45, 0x47, 0x4a, 0x4a, 0x48, 0x46,\n    0x4a, 0x4b, 0x4c, 0x4d, 0x4d, 0x4f, 0x51, 0x53, 0x4f, 0x52, 0x55, 0x58, 0x5b, 0x61, 0x68, 0x6d,\n    0x78, 0x7e, 0x84, 0x88, 0x8b, 0x8d, 0x8b, 0x87, 0x86, 0x81, 0x7d, 0x7a, 0x75, 0x6d, 0x67, 0x65,\n    0x5f, 0x59, 0x58, 0x5d, 0x64, 0x67, 0x67, 0x66, 0x66, 0x67, 0x68, 0x68, 0x68, 0x66, 0x65, 0x64,\n    0x63, 0x62, 0x60, 0x60, 0x61, 0x63, 0x63, 0x62, 0x60, 0x5f, 0x5d, 0x5c, 0x5b, 0x59, 0x57, 0x55,\n    0x55, 0x56, 0x58, 0x5a, 0x5c, 0x5b, 0x58, 0x56, 0x55, 0x54, 0x52, 0x51, 0x50, 0x4d, 0x48, 0x45,\n    0x3f, 0x3b, 0x38, 0x39, 0x3a, 0x3c, 0x3f, 0x41, 0x48, 0x52, 0x5b, 0x5d, 0x5b, 0x5e, 0x69, 0x74,\n    0x75, 0x78, 0x76, 0x6c, 0x65, 0x6b, 0x7a, 0x86, 0x7d, 0x7f, 0x7b, 0x73, 0x6e, 0x6d, 0x6c, 0x68,\n    0x5e, 0x5a, 0x54, 0x52, 0x56, 0x5b, 0x59, 0x53, 0x49, 0x4f, 0x57, 0x62, 0x6c, 0x72, 0x6f, 0x69,\n    0x55, 0x4c, 0x4a, 0x53, 0x5a, 0x56, 0x4d, 0x48, 0x4a, 0x4e, 0x58, 0x61, 0x5e, 0x53, 0x4e, 0x4f,\n    0x4e, 0x54, 0x5d, 0x66, 0x71, 0x7a, 0x7e, 0x7e, 0x81, 0x7c, 0x75, 0x70, 0x75, 0x81, 0x8c, 0x92,\n    0x8e, 0x8e, 0x8b, 0x85, 0x7f, 0x78, 0x6c, 0x61, 0x5b, 0x69, 0x78, 0x7d, 0x7b, 0x78, 0x78, 0x78,\n    0x75, 0x74, 0x6f, 0x64, 0x57, 0x51, 0x54, 0x5b, 0x49, 0x33, 0x34, 0x44, 0x46, 0x45, 0x4f, 0x59,\n    0x55, 0x49, 0x40, 0x4e, 0x56, 0x4f, 0x2d, 0x31, 0x45, 0x50, 0x4b, 0x4b, 0x53, 0x55, 0x50, 0x45,\n    0x3d, 0x4c, 0x5a, 0x5d, 0x5b, 0x59, 0x57, 0x55, 0x48, 0x3f, 0x31, 0x31, 0x4d, 0x70, 0x7a, 0x6f,\n    0x65, 0x4c, 0x3b, 0x45, 0x57, 0x59, 0x4a, 0x3b, 0x4f, 0x50, 0x53, 0x40, 0x36, 0x32, 0x53, 0x6e,\n    0x83, 0x81, 0x7f, 0x6c, 0x56, 0x59, 0x6b, 0x71, 0x70, 0x66, 0x53, 0x42, 0x40, 0x48, 0x4d, 0x4a,\n    0x42, 0x3f, 0x3e, 0x3a, 0x32, 0x35, 0x43, 0x4e, 0x5c, 0x50, 0x46, 0x38, 0x29, 0x2d, 0x3d, 0x41,\n    0x3e, 0x33, 0x30, 0x36, 0x3b, 0x3b, 0x41, 0x4b, 0x52, 0x4f, 0x4c, 0x4a, 0x46, 0x40, 0x3d, 0x3c,\n    0x3e, 0x3e, 0x3f, 0x40, 0x40, 0x3e, 0x3a, 0x37, 0x49, 0x52, 0x56, 0x51, 0x4d, 0x4f, 0x4e, 0x4b,\n    0x4d, 0x4e, 0x4f, 0x4e, 0x4d, 0x4e, 0x50, 0x52, 0x4d, 0x4d, 0x4c, 0x4c, 0x4c, 0x4b, 0x49, 0x48,\n    0x49, 0x4d, 0x50, 0x50, 0x4e, 0x4f, 0x55, 0x5a, 0x59, 0x4e, 0x45, 0x47, 0x4b, 0x4d, 0x4d, 0x4d,\n    0x4f, 0x4b, 0x49, 0x4c, 0x51, 0x54, 0x52, 0x4f, 0x51, 0x56, 0x5a, 0x57, 0x50, 0x4d, 0x4f, 0x54,\n    0x53, 0x52, 0x50, 0x4d, 0x4b, 0x49, 0x48, 0x47, 0x47, 0x4a, 0x4e, 0x4f, 0x4c, 0x49, 0x49, 0x4b,\n    0x4a, 0x4b, 0x4a, 0x47, 0x48, 0x4d, 0x4e, 0x4b, 0x4c, 0x48, 0x4a, 0x53, 0x5a, 0x59, 0x53, 0x4f,\n    0x4f, 0x54, 0x58, 0x55, 0x4d, 0x46, 0x44, 0x44, 0x4c, 0x4b, 0x4b, 0x50, 0x57, 0x5a, 0x53, 0x4a,\n    0x4f, 0x4c, 0x49, 0x4a, 0x4c, 0x4c, 0x49, 0x45, 0x38, 0x3e, 0x46, 0x4e, 0x53, 0x57, 0x5a, 0x5c,\n    0x51, 0x5b, 0x65, 0x65, 0x5c, 0x54, 0x53, 0x55, 0x54, 0x4c, 0x50, 0x54, 0x4e, 0x4e, 0x53, 0x4f,\n    0x54, 0x5e, 0x63, 0x5b, 0x4d, 0x47, 0x48, 0x4a, 0x4b, 0x49, 0x47, 0x49, 0x4d, 0x52, 0x57, 0x5a,\n    0x5e, 0x5b, 0x56, 0x51, 0x4c, 0x4a, 0x4b, 0x4d, 0x52, 0x54, 0x53, 0x50, 0x4b, 0x49, 0x4a, 0x4c,\n    0x50, 0x51, 0x53, 0x54, 0x53, 0x52, 0x52, 0x53, 0x53, 0x53, 0x52, 0x53, 0x53, 0x54, 0x55, 0x55,\n    0x59, 0x56, 0x51, 0x4c, 0x49, 0x48, 0x48, 0x48, 0x4a, 0x49, 0x49, 0x4d, 0x53, 0x56, 0x56, 0x55,\n    0x52, 0x53, 0x54, 0x56, 0x58, 0x58, 0x53, 0x4c, 0x4f, 0x51, 0x53, 0x52, 0x50, 0x4c, 0x49, 0x47,\n    0x48, 0x46, 0x45, 0x44, 0x43, 0x43, 0x41, 0x40, 0x3f, 0x3e, 0x3e, 0x3e, 0x3e, 0x40, 0x42, 0x43,\n    0x42, 0x42, 0x42, 0x41, 0x42, 0x44, 0x47, 0x49, 0x4a, 0x47, 0x44, 0x45, 0x49, 0x49, 0x46, 0x42,\n    0x48, 0x48, 0x4b, 0x4c, 0x47, 0x43, 0x48, 0x52, 0x5c, 0x6d, 0x75, 0x72, 0x75, 0x78, 0x75, 0x73,\n    0x73, 0x72, 0x71, 0x70, 0x6f, 0x6f, 0x6f, 0x70, 0x6e, 0x6f, 0x6f, 0x6f, 0x6e, 0x6c, 0x6b, 0x69,\n    0x6b, 0x6b, 0x6b, 0x6a, 0x69, 0x68, 0x68, 0x67, 0x65, 0x65, 0x66, 0x67, 0x66, 0x66, 0x65, 0x65,\n    0x61, 0x5f, 0x59, 0x4d, 0x3d, 0x30, 0x29, 0x28, 0x27, 0x25, 0x20, 0x19, 0x14, 0x14, 0x19, 0x1e,\n    0x20, 0x20, 0x21, 0x23, 0x25, 0x24, 0x21, 0x1e, 0x24, 0x28, 0x2e, 0x34, 0x36, 0x35, 0x32, 0x2f,\n    0x34, 0x34, 0x35, 0x38, 0x39, 0x37, 0x37, 0x38, 0x36, 0x38, 0x3b, 0x3f, 0x43, 0x45, 0x43, 0x40,\n    0x40, 0x40, 0x40, 0x40, 0x3f, 0x3e, 0x3f, 0x41, 0x44, 0x47, 0x4c, 0x4f, 0x51, 0x55, 0x5a, 0x5e,\n    0x64, 0x6c, 0x75, 0x7b, 0x81, 0x86, 0x85, 0x81, 0x85, 0x80, 0x7b, 0x77, 0x71, 0x69, 0x65, 0x64,\n    0x5d, 0x58, 0x57, 0x5e, 0x65, 0x68, 0x67, 0x65, 0x67, 0x68, 0x68, 0x67, 0x66, 0x65, 0x64, 0x63,\n    0x64, 0x61, 0x5f, 0x5f, 0x61, 0x63, 0x63, 0x62, 0x60, 0x5e, 0x5c, 0x5a, 0x59, 0x58, 0x56, 0x54,\n    0x55, 0x56, 0x59, 0x5c, 0x5e, 0x5e, 0x5c, 0x5a, 0x59, 0x55, 0x50, 0x4e, 0x4e, 0x4d, 0x4b, 0x48,\n    0x3b, 0x3a, 0x39, 0x39, 0x39, 0x3a, 0x3d, 0x40, 0x43, 0x53, 0x63, 0x67, 0x5c, 0x4e, 0x45, 0x43,\n    0x5c, 0x65, 0x6a, 0x62, 0x59, 0x5b, 0x69, 0x75, 0x79, 0x78, 0x76, 0x77, 0x7d, 0x80, 0x77, 0x6a,\n    0x61, 0x5c, 0x55, 0x52, 0x56, 0x5c, 0x5a, 0x53, 0x48, 0x4d, 0x54, 0x5e, 0x68, 0x6d, 0x6a, 0x63,\n    0x58, 0x4e, 0x49, 0x52, 0x5a, 0x58, 0x51, 0x4d, 0x4a, 0x4b, 0x51, 0x58, 0x56, 0x4f, 0x4d, 0x52,\n    0x5a, 0x5f, 0x62, 0x61, 0x64, 0x6d, 0x79, 0x81, 0x7e, 0x7a, 0x6f, 0x63, 0x61, 0x6d, 0x81, 0x8e,\n    0x93, 0x93, 0x8f, 0x88, 0x81, 0x79, 0x6c, 0x5f, 0x4e, 0x5d, 0x6f, 0x78, 0x79, 0x78, 0x75, 0x73,\n    0x74, 0x73, 0x70, 0x68, 0x5f, 0x56, 0x4e, 0x48, 0x49, 0x31, 0x33, 0x44, 0x3f, 0x38, 0x46, 0x56,\n    0x4f, 0x3e, 0x31, 0x3f, 0x49, 0x46, 0x2f, 0x3c, 0x4d, 0x58, 0x4a, 0x4c, 0x52, 0x4e, 0x4c, 0x3a,\n    0x3a, 0x4b, 0x5c, 0x60, 0x5f, 0x5e, 0x5d, 0x5b, 0x5d, 0x53, 0x43, 0x41, 0x5b, 0x77, 0x76, 0x62,\n    0x5a, 0x49, 0x3f, 0x44, 0x4a, 0x43, 0x37, 0x31, 0x23, 0x43, 0x66, 0x59, 0x3f, 0x2c, 0x4d, 0x70,\n    0x7b, 0x70, 0x59, 0x38, 0x2d, 0x52, 0x7d, 0x88, 0x77, 0x62, 0x45, 0x39, 0x44, 0x52, 0x4c, 0x3b,\n    0x37, 0x37, 0x3f, 0x46, 0x45, 0x4a, 0x54, 0x59, 0x63, 0x5e, 0x58, 0x47, 0x38, 0x40, 0x44, 0x36,\n    0x3d, 0x38, 0x36, 0x3b, 0x41, 0x43, 0x44, 0x47, 0x40, 0x44, 0x47, 0x47, 0x43, 0x40, 0x3f, 0x40,\n    0x45, 0x46, 0x46, 0x43, 0x40, 0x3d, 0x3d, 0x3d, 0x45, 0x42, 0x44, 0x49, 0x4c, 0x49, 0x46, 0x46,\n    0x46, 0x4b, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4c, 0x48, 0x4b, 0x4f, 0x50, 0x4f, 0x4c, 0x4b, 0x4a,\n    0x4e, 0x4d, 0x4d, 0x4d, 0x4f, 0x51, 0x54, 0x55, 0x50, 0x4e, 0x4f, 0x54, 0x56, 0x52, 0x4f, 0x4f,\n    0x4e, 0x4b, 0x4b, 0x4f, 0x52, 0x4f, 0x4b, 0x48, 0x49, 0x50, 0x59, 0x5b, 0x53, 0x4c, 0x50, 0x58,\n    0x5c, 0x53, 0x4b, 0x49, 0x4a, 0x4a, 0x4b, 0x4b, 0x4f, 0x4f, 0x4f, 0x4e, 0x4b, 0x46, 0x45, 0x46,\n    0x44, 0x47, 0x48, 0x46, 0x46, 0x49, 0x4c, 0x4d, 0x48, 0x46, 0x46, 0x4a, 0x4f, 0x53, 0x53, 0x51,\n    0x51, 0x52, 0x56, 0x58, 0x52, 0x4a, 0x47, 0x49, 0x4d, 0x4e, 0x51, 0x55, 0x56, 0x52, 0x4b, 0x46,\n    0x4f, 0x49, 0x49, 0x50, 0x51, 0x4c, 0x49, 0x4a, 0x40, 0x47, 0x45, 0x42, 0x4a, 0x4f, 0x4b, 0x48,\n    0x47, 0x48, 0x4b, 0x50, 0x57, 0x5b, 0x59, 0x54, 0x54, 0x50, 0x4a, 0x47, 0x48, 0x4c, 0x50, 0x52,\n    0x4a, 0x47, 0x47, 0x4b, 0x4e, 0x4c, 0x49, 0x49, 0x48, 0x48, 0x49, 0x49, 0x4a, 0x4c, 0x50, 0x53,\n    0x59, 0x5b, 0x59, 0x52, 0x4f, 0x51, 0x50, 0x4c, 0x51, 0x52, 0x53, 0x52, 0x50, 0x4d, 0x4b, 0x4a,\n    0x54, 0x51, 0x4e, 0x4d, 0x4e, 0x4f, 0x55, 0x5a, 0x57, 0x50, 0x4d, 0x52, 0x54, 0x52, 0x51, 0x53,\n    0x50, 0x50, 0x50, 0x51, 0x52, 0x53, 0x52, 0x52, 0x52, 0x51, 0x4f, 0x4e, 0x4d, 0x4f, 0x53, 0x56,\n    0x54, 0x52, 0x53, 0x56, 0x56, 0x52, 0x51, 0x52, 0x52, 0x54, 0x55, 0x51, 0x4c, 0x49, 0x49, 0x4b,\n    0x4e, 0x48, 0x42, 0x3f, 0x3f, 0x40, 0x3e, 0x3b, 0x42, 0x42, 0x40, 0x3d, 0x3e, 0x40, 0x40, 0x3e,\n    0x40, 0x41, 0x42, 0x40, 0x3f, 0x41, 0x46, 0x4b, 0x4d, 0x47, 0x45, 0x48, 0x48, 0x44, 0x44, 0x48,\n    0x4d, 0x4d, 0x4a, 0x46, 0x45, 0x4a, 0x4d, 0x4d, 0x58, 0x68, 0x75, 0x75, 0x73, 0x76, 0x77, 0x74,\n    0x72, 0x74, 0x72, 0x6f, 0x6f, 0x71, 0x6f, 0x6b, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6d, 0x6b, 0x6b,\n    0x6b, 0x6b, 0x6b, 0x6a, 0x69, 0x69, 0x68, 0x68, 0x69, 0x67, 0x66, 0x66, 0x66, 0x66, 0x65, 0x64,\n    0x60, 0x5d, 0x53, 0x43, 0x38, 0x33, 0x30, 0x2c, 0x2d, 0x28, 0x26, 0x26, 0x20, 0x18, 0x17, 0x1d,\n    0x1a, 0x1e, 0x20, 0x21, 0x24, 0x27, 0x26, 0x22, 0x27, 0x2d, 0x37, 0x3d, 0x3f, 0x3c, 0x37, 0x34,\n    0x38, 0x3d, 0x41, 0x45, 0x47, 0x46, 0x40, 0x3a, 0x35, 0x36, 0x39, 0x3c, 0x3a, 0x35, 0x34, 0x35,\n    0x36, 0x35, 0x35, 0x36, 0x33, 0x2e, 0x2d, 0x30, 0x34, 0x3c, 0x43, 0x45, 0x48, 0x4e, 0x53, 0x54,\n    0x5c, 0x5e, 0x64, 0x6c, 0x75, 0x7a, 0x7b, 0x7b, 0x7f, 0x7a, 0x7a, 0x7a, 0x71, 0x63, 0x62, 0x6a,\n    0x65, 0x5c, 0x57, 0x5d, 0x65, 0x68, 0x67, 0x67, 0x63, 0x64, 0x65, 0x64, 0x62, 0x60, 0x61, 0x62,\n    0x62, 0x62, 0x62, 0x63, 0x63, 0x63, 0x60, 0x5e, 0x5d, 0x5c, 0x5b, 0x59, 0x57, 0x55, 0x54, 0x53,\n    0x55, 0x54, 0x56, 0x5b, 0x61, 0x66, 0x6b, 0x6e, 0x69, 0x6d, 0x6e, 0x69, 0x67, 0x67, 0x61, 0x59,\n    0x46, 0x40, 0x3b, 0x3a, 0x3d, 0x3f, 0x3e, 0x3b, 0x49, 0x59, 0x64, 0x5f, 0x54, 0x4e, 0x4e, 0x4d,\n    0x4b, 0x4b, 0x47, 0x49, 0x5a, 0x70, 0x79, 0x74, 0x77, 0x7b, 0x7b, 0x7a, 0x80, 0x83, 0x78, 0x67,\n    0x56, 0x56, 0x55, 0x55, 0x58, 0x5b, 0x5a, 0x56, 0x49, 0x4a, 0x50, 0x5c, 0x66, 0x67, 0x64, 0x61,\n    0x54, 0x50, 0x4f, 0x57, 0x61, 0x62, 0x57, 0x4b, 0x4b, 0x49, 0x4b, 0x51, 0x55, 0x53, 0x4e, 0x4b,\n    0x4c, 0x54, 0x58, 0x57, 0x58, 0x61, 0x6c, 0x72, 0x75, 0x73, 0x6c, 0x60, 0x5b, 0x62, 0x71, 0x7d,\n    0x8b, 0x8e, 0x8f, 0x8d, 0x89, 0x82, 0x78, 0x6f, 0x57, 0x5b, 0x64, 0x6e, 0x75, 0x77, 0x74, 0x71,\n    0x70, 0x73, 0x72, 0x6a, 0x61, 0x5a, 0x56, 0x53, 0x44, 0x42, 0x3f, 0x37, 0x31, 0x3c, 0x4e, 0x55,\n    0x44, 0x35, 0x2e, 0x35, 0x3e, 0x3f, 0x3c, 0x3c, 0x4b, 0x4d, 0x44, 0x40, 0x4e, 0x59, 0x52, 0x47,\n    0x3d, 0x49, 0x55, 0x5a, 0x5a, 0x5a, 0x58, 0x54, 0x4f, 0x3e, 0x3b, 0x4a, 0x5c, 0x69, 0x6b, 0x63,\n    0x52, 0x3d, 0x38, 0x4d, 0x67, 0x6f, 0x5a, 0x3d, 0x32, 0x36, 0x3f, 0x34, 0x33, 0x37, 0x5c, 0x78,\n    0x87, 0x7c, 0x5e, 0x3c, 0x3c, 0x65, 0x84, 0x84, 0x71, 0x50, 0x3c, 0x3b, 0x4a, 0x50, 0x40, 0x38,\n    0x37, 0x31, 0x35, 0x3d, 0x44, 0x52, 0x62, 0x69, 0x6f, 0x67, 0x57, 0x48, 0x45, 0x49, 0x45, 0x3d,\n    0x41, 0x3a, 0x36, 0x38, 0x3b, 0x3c, 0x3e, 0x40, 0x3a, 0x3e, 0x42, 0x42, 0x3f, 0x3d, 0x3f, 0x42,\n    0x47, 0x49, 0x4b, 0x4b, 0x49, 0x48, 0x48, 0x48, 0x48, 0x46, 0x48, 0x4c, 0x4d, 0x49, 0x46, 0x46,\n    0x45, 0x49, 0x4b, 0x48, 0x45, 0x45, 0x45, 0x44, 0x43, 0x46, 0x49, 0x49, 0x47, 0x47, 0x4a, 0x4d,\n    0x48, 0x43, 0x3e, 0x3f, 0x47, 0x4f, 0x53, 0x54, 0x53, 0x50, 0x50, 0x56, 0x59, 0x57, 0x54, 0x53,\n    0x49, 0x45, 0x44, 0x48, 0x4d, 0x4d, 0x4b, 0x4a, 0x51, 0x56, 0x5c, 0x5b, 0x54, 0x4e, 0x54, 0x5d,\n    0x69, 0x5e, 0x51, 0x4b, 0x49, 0x4a, 0x4d, 0x51, 0x54, 0x54, 0x53, 0x50, 0x4c, 0x47, 0x45, 0x45,\n    0x4b, 0x4c, 0x4b, 0x47, 0x47, 0x4a, 0x4b, 0x4b, 0x45, 0x44, 0x44, 0x49, 0x4e, 0x51, 0x50, 0x4e,\n    0x4e, 0x50, 0x53, 0x56, 0x52, 0x4a, 0x47, 0x48, 0x4f, 0x4f, 0x4e, 0x4f, 0x4e, 0x4c, 0x4a, 0x49,\n    0x48, 0x43, 0x43, 0x4b, 0x50, 0x50, 0x51, 0x55, 0x68, 0x71, 0x70, 0x6a, 0x68, 0x62, 0x55, 0x4d,\n    0x3c, 0x3d, 0x3c, 0x3a, 0x3c, 0x42, 0x47, 0x49, 0x4b, 0x49, 0x48, 0x47, 0x49, 0x4c, 0x4f, 0x50,\n    0x45, 0x42, 0x43, 0x48, 0x4b, 0x48, 0x46, 0x45, 0x49, 0x4b, 0x4e, 0x4f, 0x50, 0x51, 0x53, 0x54,\n    0x53, 0x54, 0x54, 0x51, 0x51, 0x52, 0x54, 0x53, 0x4f, 0x50, 0x51, 0x51, 0x50, 0x50, 0x52, 0x54,\n    0x59, 0x55, 0x52, 0x50, 0x4f, 0x4f, 0x54, 0x5a, 0x5a, 0x55, 0x50, 0x50, 0x51, 0x4f, 0x4d, 0x4c,\n    0x4f, 0x4c, 0x4a, 0x4b, 0x4f, 0x53, 0x53, 0x52, 0x4f, 0x4f, 0x4e, 0x4d, 0x4d, 0x4d, 0x50, 0x52,\n    0x50, 0x4e, 0x50, 0x53, 0x53, 0x50, 0x50, 0x52, 0x54, 0x55, 0x55, 0x52, 0x4e, 0x4c, 0x4d, 0x4e,\n    0x4f, 0x4a, 0x43, 0x40, 0x40, 0x41, 0x40, 0x3e, 0x3d, 0x40, 0x42, 0x43, 0x44, 0x44, 0x42, 0x3f,\n    0x42, 0x44, 0x45, 0x44, 0x41, 0x3f, 0x40, 0x42, 0x4a, 0x47, 0x45, 0x46, 0x47, 0x48, 0x4b, 0x4f,\n    0x53, 0x51, 0x4e, 0x4a, 0x46, 0x45, 0x49, 0x4d, 0x55, 0x63, 0x70, 0x75, 0x76, 0x78, 0x77, 0x75,\n    0x73, 0x74, 0x73, 0x70, 0x70, 0x71, 0x70, 0x6c, 0x6d, 0x6e, 0x6e, 0x6e, 0x6e, 0x6d, 0x6b, 0x6b,\n    0x6e, 0x6d, 0x6c, 0x6a, 0x69, 0x68, 0x67, 0x66, 0x69, 0x68, 0x67, 0x67, 0x67, 0x66, 0x65, 0x64,\n    0x5e, 0x5a, 0x51, 0x44, 0x3d, 0x3a, 0x38, 0x35, 0x30, 0x2c, 0x2a, 0x28, 0x21, 0x18, 0x19, 0x1e,\n    0x20, 0x23, 0x25, 0x25, 0x26, 0x29, 0x28, 0x25, 0x27, 0x2c, 0x35, 0x3b, 0x3e, 0x3d, 0x3c, 0x3a,\n    0x44, 0x4a, 0x4f, 0x51, 0x51, 0x50, 0x4c, 0x48, 0x41, 0x3d, 0x3a, 0x3a, 0x3a, 0x3a, 0x3d, 0x42,\n    0x40, 0x3d, 0x3a, 0x39, 0x36, 0x31, 0x2f, 0x30, 0x2e, 0x33, 0x36, 0x35, 0x37, 0x3e, 0x46, 0x4a,\n    0x4e, 0x53, 0x5a, 0x60, 0x66, 0x6d, 0x74, 0x79, 0x76, 0x73, 0x72, 0x71, 0x6b, 0x64, 0x65, 0x6c,\n    0x62, 0x5b, 0x58, 0x5e, 0x66, 0x6a, 0x69, 0x69, 0x64, 0x65, 0x65, 0x63, 0x60, 0x5f, 0x5f, 0x60,\n    0x60, 0x5f, 0x5f, 0x5f, 0x60, 0x60, 0x5e, 0x5c, 0x5b, 0x5a, 0x59, 0x58, 0x57, 0x55, 0x54, 0x53,\n    0x55, 0x55, 0x57, 0x5a, 0x5d, 0x60, 0x63, 0x65, 0x71, 0x73, 0x74, 0x73, 0x74, 0x74, 0x70, 0x6c,\n    0x61, 0x55, 0x46, 0x3c, 0x3b, 0x3e, 0x40, 0x40, 0x43, 0x4f, 0x5a, 0x5c, 0x57, 0x52, 0x51, 0x52,\n    0x45, 0x45, 0x49, 0x54, 0x64, 0x71, 0x76, 0x76, 0x70, 0x71, 0x6c, 0x67, 0x6a, 0x73, 0x72, 0x6a,\n    0x5a, 0x5a, 0x58, 0x56, 0x57, 0x59, 0x58, 0x54, 0x45, 0x45, 0x4a, 0x55, 0x5e, 0x60, 0x5e, 0x5d,\n    0x55, 0x50, 0x4f, 0x56, 0x5d, 0x5b, 0x50, 0x47, 0x47, 0x49, 0x4f, 0x58, 0x5b, 0x54, 0x49, 0x42,\n    0x47, 0x4e, 0x52, 0x51, 0x52, 0x59, 0x64, 0x6a, 0x6e, 0x6d, 0x67, 0x5d, 0x58, 0x5d, 0x68, 0x6f,\n    0x7b, 0x83, 0x8b, 0x8e, 0x8c, 0x88, 0x82, 0x7c, 0x6d, 0x64, 0x5e, 0x63, 0x70, 0x79, 0x76, 0x71,\n    0x71, 0x72, 0x6f, 0x68, 0x61, 0x5d, 0x5a, 0x57, 0x50, 0x41, 0x36, 0x35, 0x3d, 0x4e, 0x55, 0x4f,\n    0x43, 0x3a, 0x39, 0x45, 0x50, 0x50, 0x4d, 0x4c, 0x4f, 0x4f, 0x48, 0x47, 0x51, 0x51, 0x42, 0x35,\n    0x34, 0x4f, 0x62, 0x5f, 0x59, 0x59, 0x54, 0x49, 0x50, 0x44, 0x45, 0x57, 0x65, 0x69, 0x5e, 0x4d,\n    0x3d, 0x34, 0x35, 0x40, 0x4f, 0x5c, 0x5c, 0x50, 0x40, 0x42, 0x4b, 0x45, 0x49, 0x4a, 0x63, 0x76,\n    0x7d, 0x5a, 0x41, 0x4b, 0x69, 0x82, 0x84, 0x76, 0x58, 0x3a, 0x27, 0x1f, 0x1e, 0x1c, 0x11, 0x15,\n    0x16, 0x27, 0x3f, 0x47, 0x41, 0x44, 0x50, 0x57, 0x60, 0x52, 0x41, 0x3d, 0x49, 0x55, 0x50, 0x42,\n    0x42, 0x3c, 0x35, 0x34, 0x35, 0x36, 0x39, 0x3b, 0x3a, 0x3e, 0x42, 0x42, 0x3f, 0x40, 0x46, 0x4b,\n    0x4f, 0x51, 0x53, 0x53, 0x51, 0x4e, 0x4b, 0x4a, 0x48, 0x48, 0x4a, 0x4d, 0x4b, 0x47, 0x45, 0x46,\n    0x4d, 0x51, 0x51, 0x4c, 0x47, 0x46, 0x48, 0x4a, 0x46, 0x47, 0x47, 0x45, 0x43, 0x45, 0x49, 0x4e,\n    0x48, 0x40, 0x39, 0x3e, 0x4b, 0x57, 0x5a, 0x58, 0x56, 0x54, 0x53, 0x57, 0x5b, 0x5a, 0x58, 0x57,\n    0x4f, 0x48, 0x43, 0x45, 0x4a, 0x4b, 0x4a, 0x49, 0x50, 0x52, 0x54, 0x51, 0x4a, 0x47, 0x4e, 0x57,\n    0x62, 0x59, 0x4f, 0x49, 0x47, 0x49, 0x4f, 0x56, 0x57, 0x57, 0x55, 0x51, 0x4c, 0x49, 0x47, 0x46,\n    0x4d, 0x4c, 0x49, 0x47, 0x49, 0x4d, 0x4e, 0x4c, 0x47, 0x46, 0x47, 0x4b, 0x50, 0x52, 0x50, 0x4d,\n    0x4c, 0x4d, 0x50, 0x52, 0x50, 0x4a, 0x47, 0x48, 0x4f, 0x4f, 0x4e, 0x4c, 0x4a, 0x49, 0x49, 0x4a,\n    0x4c, 0x48, 0x49, 0x4f, 0x52, 0x51, 0x4f, 0x51, 0x53, 0x5d, 0x5e, 0x5b, 0x5e, 0x60, 0x5e, 0x60,\n    0x71, 0x6b, 0x5e, 0x50, 0x47, 0x42, 0x3e, 0x3b, 0x48, 0x49, 0x4a, 0x4b, 0x4a, 0x4a, 0x4a, 0x4b,\n    0x44, 0x44, 0x45, 0x49, 0x4a, 0x48, 0x45, 0x44, 0x48, 0x4b, 0x4f, 0x52, 0x53, 0x53, 0x52, 0x53,\n    0x52, 0x52, 0x54, 0x56, 0x55, 0x53, 0x52, 0x54, 0x50, 0x52, 0x53, 0x52, 0x51, 0x53, 0x58, 0x5c,\n    0x5b, 0x58, 0x55, 0x52, 0x4e, 0x4d, 0x51, 0x57, 0x57, 0x55, 0x52, 0x4f, 0x4f, 0x51, 0x50, 0x4d,\n    0x4e, 0x49, 0x45, 0x46, 0x4c, 0x52, 0x52, 0x51, 0x4e, 0x4f, 0x4f, 0x4f, 0x4e, 0x4d, 0x4e, 0x4f,\n    0x4c, 0x4b, 0x4c, 0x4f, 0x50, 0x4f, 0x4f, 0x51, 0x56, 0x56, 0x55, 0x53, 0x52, 0x50, 0x50, 0x4f,\n    0x51, 0x4c, 0x45, 0x3f, 0x3d, 0x3d, 0x3c, 0x3b, 0x39, 0x40, 0x47, 0x4a, 0x4b, 0x4a, 0x46, 0x42,\n    0x43, 0x46, 0x4a, 0x4b, 0x48, 0x44, 0x42, 0x42, 0x45, 0x48, 0x48, 0x47, 0x46, 0x4a, 0x4d, 0x4f,\n    0x54, 0x51, 0x50, 0x4e, 0x48, 0x44, 0x47, 0x4f, 0x52, 0x5b, 0x67, 0x72, 0x78, 0x79, 0x77, 0x75,\n    0x74, 0x75, 0x73, 0x71, 0x71, 0x72, 0x70, 0x6e, 0x6d, 0x6e, 0x6e, 0x6e, 0x6e, 0x6d, 0x6c, 0x6b,\n    0x6d, 0x6d, 0x6b, 0x6a, 0x69, 0x68, 0x67, 0x67, 0x69, 0x68, 0x67, 0x67, 0x67, 0x67, 0x65, 0x64,\n    0x5b, 0x57, 0x4e, 0x46, 0x43, 0x43, 0x42, 0x40, 0x37, 0x34, 0x31, 0x2e, 0x26, 0x1d, 0x1c, 0x20,\n    0x1f, 0x23, 0x26, 0x27, 0x29, 0x2d, 0x2e, 0x2d, 0x2c, 0x30, 0x34, 0x38, 0x3b, 0x3c, 0x3d, 0x3e,\n    0x4a, 0x53, 0x5a, 0x5b, 0x58, 0x56, 0x54, 0x53, 0x4e, 0x47, 0x40, 0x3f, 0x41, 0x45, 0x4a, 0x4e,\n    0x4a, 0x46, 0x42, 0x3e, 0x39, 0x33, 0x31, 0x31, 0x35, 0x35, 0x31, 0x2a, 0x27, 0x2a, 0x2f, 0x33,\n    0x3f, 0x47, 0x51, 0x56, 0x59, 0x5d, 0x65, 0x6c, 0x6a, 0x6a, 0x68, 0x65, 0x63, 0x64, 0x67, 0x6a,\n    0x5e, 0x5b, 0x5b, 0x61, 0x68, 0x6a, 0x69, 0x68, 0x64, 0x64, 0x64, 0x62, 0x5f, 0x5e, 0x5e, 0x5e,\n    0x5f, 0x5e, 0x5d, 0x5d, 0x5d, 0x5d, 0x5c, 0x5b, 0x59, 0x59, 0x58, 0x57, 0x56, 0x55, 0x54, 0x54,\n    0x55, 0x57, 0x59, 0x59, 0x58, 0x57, 0x58, 0x59, 0x53, 0x52, 0x53, 0x57, 0x58, 0x56, 0x53, 0x53,\n    0x60, 0x5a, 0x53, 0x4f, 0x4c, 0x46, 0x3e, 0x37, 0x44, 0x4b, 0x54, 0x59, 0x55, 0x4b, 0x45, 0x43,\n    0x4b, 0x4b, 0x51, 0x5a, 0x5e, 0x5b, 0x5a, 0x5c, 0x66, 0x66, 0x62, 0x5f, 0x65, 0x6d, 0x6a, 0x60,\n    0x5a, 0x59, 0x56, 0x54, 0x55, 0x57, 0x56, 0x53, 0x47, 0x45, 0x48, 0x51, 0x59, 0x5c, 0x5d, 0x5d,\n    0x5c, 0x57, 0x56, 0x5b, 0x5e, 0x59, 0x53, 0x51, 0x47, 0x48, 0x4e, 0x56, 0x57, 0x50, 0x44, 0x3d,\n    0x42, 0x48, 0x4c, 0x4b, 0x4b, 0x51, 0x5a, 0x61, 0x65, 0x65, 0x62, 0x5b, 0x58, 0x5b, 0x5f, 0x62,\n    0x6a, 0x77, 0x85, 0x8d, 0x8e, 0x8c, 0x89, 0x86, 0x80, 0x71, 0x61, 0x5e, 0x67, 0x72, 0x76, 0x74,\n    0x71, 0x6f, 0x6b, 0x63, 0x5e, 0x5c, 0x5b, 0x59, 0x47, 0x3a, 0x34, 0x39, 0x45, 0x54, 0x58, 0x4f,\n    0x4b, 0x47, 0x4c, 0x59, 0x5f, 0x57, 0x4c, 0x47, 0x42, 0x46, 0x4a, 0x55, 0x63, 0x61, 0x52, 0x48,\n    0x3f, 0x52, 0x5f, 0x5e, 0x5a, 0x5a, 0x58, 0x52, 0x54, 0x47, 0x45, 0x53, 0x61, 0x69, 0x64, 0x57,\n    0x4c, 0x3f, 0x39, 0x3e, 0x4a, 0x59, 0x5c, 0x52, 0x4d, 0x48, 0x50, 0x54, 0x5b, 0x4b, 0x42, 0x39,\n    0x2d, 0x2c, 0x41, 0x61, 0x6d, 0x66, 0x5d, 0x56, 0x41, 0x2a, 0x21, 0x1b, 0x16, 0x13, 0x19, 0x30,\n    0x4c, 0x54, 0x56, 0x46, 0x35, 0x3f, 0x59, 0x68, 0x61, 0x5c, 0x59, 0x5e, 0x68, 0x68, 0x54, 0x3e,\n    0x41, 0x3c, 0x37, 0x35, 0x36, 0x37, 0x39, 0x3a, 0x3e, 0x42, 0x46, 0x45, 0x42, 0x43, 0x4a, 0x50,\n    0x51, 0x53, 0x55, 0x55, 0x53, 0x4e, 0x49, 0x46, 0x43, 0x45, 0x48, 0x4a, 0x48, 0x46, 0x46, 0x47,\n    0x46, 0x4b, 0x4d, 0x48, 0x42, 0x42, 0x46, 0x49, 0x4d, 0x4a, 0x47, 0x45, 0x44, 0x46, 0x49, 0x4a,\n    0x49, 0x44, 0x41, 0x47, 0x53, 0x5c, 0x5c, 0x59, 0x59, 0x57, 0x55, 0x54, 0x53, 0x53, 0x54, 0x55,\n    0x54, 0x4b, 0x43, 0x43, 0x47, 0x49, 0x48, 0x47, 0x51, 0x53, 0x54, 0x50, 0x4a, 0x49, 0x50, 0x57,\n    0x53, 0x50, 0x4d, 0x4a, 0x48, 0x48, 0x4c, 0x52, 0x54, 0x55, 0x53, 0x50, 0x4d, 0x4c, 0x4b, 0x4a,\n    0x4f, 0x4c, 0x47, 0x45, 0x49, 0x4e, 0x4d, 0x4a, 0x4a, 0x48, 0x47, 0x4a, 0x4f, 0x51, 0x51, 0x4e,\n    0x4d, 0x4e, 0x4e, 0x4e, 0x4c, 0x49, 0x48, 0x48, 0x4d, 0x50, 0x51, 0x4f, 0x4c, 0x4a, 0x4a, 0x49,\n    0x50, 0x4e, 0x50, 0x55, 0x55, 0x4e, 0x47, 0x43, 0x38, 0x45, 0x4b, 0x4d, 0x55, 0x5d, 0x63, 0x6c,\n    0x64, 0x60, 0x5b, 0x5b, 0x60, 0x62, 0x5b, 0x52, 0x50, 0x51, 0x51, 0x4f, 0x4c, 0x48, 0x47, 0x46,\n    0x4a, 0x4a, 0x4b, 0x4b, 0x49, 0x47, 0x45, 0x44, 0x43, 0x46, 0x4a, 0x4d, 0x4e, 0x4e, 0x4e, 0x4e,\n    0x4e, 0x4f, 0x56, 0x5d, 0x5b, 0x53, 0x4e, 0x50, 0x53, 0x55, 0x56, 0x55, 0x52, 0x52, 0x56, 0x5a,\n    0x5c, 0x5b, 0x59, 0x55, 0x50, 0x4d, 0x51, 0x57, 0x57, 0x59, 0x56, 0x50, 0x50, 0x54, 0x53, 0x4e,\n    0x4e, 0x4b, 0x47, 0x48, 0x4b, 0x4f, 0x50, 0x4f, 0x4f, 0x51, 0x52, 0x52, 0x50, 0x4f, 0x4e, 0x4e,\n    0x4a, 0x4a, 0x4b, 0x4d, 0x4e, 0x4f, 0x51, 0x52, 0x56, 0x55, 0x55, 0x55, 0x54, 0x52, 0x4f, 0x4d,\n    0x4d, 0x49, 0x43, 0x3f, 0x3d, 0x3e, 0x3f, 0x40, 0x3e, 0x45, 0x4c, 0x4f, 0x50, 0x4f, 0x4d, 0x49,\n    0x46, 0x49, 0x4d, 0x4e, 0x4c, 0x49, 0x45, 0x44, 0x48, 0x4f, 0x52, 0x4d, 0x4a, 0x4c, 0x4c, 0x4a,\n    0x50, 0x4c, 0x4c, 0x51, 0x50, 0x4a, 0x4a, 0x51, 0x50, 0x54, 0x5f, 0x6e, 0x78, 0x79, 0x76, 0x74,\n    0x75, 0x74, 0x73, 0x72, 0x72, 0x72, 0x70, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6e, 0x6d, 0x6c, 0x6b,\n    0x6a, 0x69, 0x69, 0x68, 0x68, 0x68, 0x69, 0x69, 0x6a, 0x69, 0x68, 0x68, 0x68, 0x67, 0x65, 0x63,\n    0x5b, 0x55, 0x4e, 0x4a, 0x4a, 0x4b, 0x4b, 0x49, 0x42, 0x3d, 0x39, 0x36, 0x30, 0x27, 0x21, 0x1f,\n    0x1f, 0x23, 0x28, 0x2c, 0x2e, 0x31, 0x33, 0x34, 0x34, 0x34, 0x35, 0x35, 0x35, 0x36, 0x38, 0x3a,\n    0x4a, 0x55, 0x60, 0x62, 0x5d, 0x5a, 0x59, 0x59, 0x56, 0x4f, 0x49, 0x4a, 0x4f, 0x52, 0x53, 0x55,\n    0x57, 0x56, 0x54, 0x4e, 0x45, 0x3f, 0x3d, 0x3f, 0x40, 0x3b, 0x31, 0x25, 0x1d, 0x1a, 0x1b, 0x1d,\n    0x2b, 0x36, 0x45, 0x4e, 0x51, 0x54, 0x5a, 0x5f, 0x61, 0x63, 0x61, 0x5d, 0x5d, 0x62, 0x64, 0x62,\n    0x5a, 0x5b, 0x5e, 0x63, 0x68, 0x68, 0x66, 0x64, 0x64, 0x64, 0x62, 0x61, 0x5f, 0x5e, 0x5e, 0x5e,\n    0x5f, 0x5e, 0x5d, 0x5c, 0x5d, 0x5d, 0x5d, 0x5c, 0x59, 0x59, 0x58, 0x57, 0x56, 0x55, 0x54, 0x54,\n    0x56, 0x5a, 0x5b, 0x58, 0x53, 0x51, 0x51, 0x51, 0x4d, 0x4a, 0x4b, 0x50, 0x4f, 0x48, 0x43, 0x44,\n    0x45, 0x49, 0x50, 0x57, 0x58, 0x4f, 0x3e, 0x31, 0x43, 0x47, 0x4f, 0x55, 0x50, 0x44, 0x3e, 0x3f,\n    0x54, 0x5e, 0x6c, 0x72, 0x6e, 0x65, 0x60, 0x60, 0x65, 0x61, 0x5c, 0x5b, 0x63, 0x6a, 0x63, 0x56,\n    0x55, 0x54, 0x51, 0x4f, 0x51, 0x55, 0x55, 0x53, 0x4b, 0x48, 0x49, 0x50, 0x57, 0x5b, 0x5d, 0x5f,\n    0x59, 0x56, 0x56, 0x57, 0x56, 0x54, 0x58, 0x5f, 0x5d, 0x57, 0x51, 0x4f, 0x4c, 0x45, 0x3e, 0x3a,\n    0x3f, 0x43, 0x47, 0x47, 0x46, 0x4a, 0x53, 0x5b, 0x5d, 0x5f, 0x5f, 0x5c, 0x5b, 0x5c, 0x5b, 0x5a,\n    0x5f, 0x6c, 0x7c, 0x86, 0x8a, 0x8c, 0x8a, 0x87, 0x85, 0x7d, 0x71, 0x66, 0x61, 0x66, 0x70, 0x78,\n    0x6e, 0x6d, 0x69, 0x60, 0x59, 0x57, 0x56, 0x56, 0x49, 0x39, 0x2e, 0x2f, 0x3c, 0x50, 0x5e, 0x5d,\n    0x4b, 0x4b, 0x54, 0x62, 0x65, 0x58, 0x49, 0x43, 0x44, 0x49, 0x50, 0x5d, 0x67, 0x5d, 0x4e, 0x4a,\n    0x44, 0x42, 0x48, 0x54, 0x59, 0x53, 0x4f, 0x50, 0x4e, 0x4c, 0x55, 0x63, 0x68, 0x67, 0x5b, 0x4c,\n    0x46, 0x33, 0x2e, 0x3c, 0x4d, 0x58, 0x5a, 0x54, 0x4f, 0x4f, 0x59, 0x53, 0x4e, 0x3d, 0x44, 0x4c,\n    0x59, 0x5e, 0x6a, 0x71, 0x71, 0x6f, 0x65, 0x54, 0x2f, 0x1b, 0x18, 0x16, 0x12, 0x12, 0x22, 0x43,\n    0x5c, 0x5a, 0x51, 0x40, 0x3d, 0x54, 0x6c, 0x6f, 0x6b, 0x6c, 0x69, 0x64, 0x60, 0x5c, 0x53, 0x4a,\n    0x42, 0x41, 0x3e, 0x3c, 0x3b, 0x3b, 0x3b, 0x3a, 0x3d, 0x41, 0x45, 0x44, 0x41, 0x41, 0x45, 0x4a,\n    0x49, 0x4b, 0x4f, 0x52, 0x52, 0x4e, 0x49, 0x46, 0x41, 0x44, 0x47, 0x48, 0x48, 0x49, 0x4b, 0x4d,\n    0x41, 0x47, 0x49, 0x45, 0x40, 0x3f, 0x43, 0x46, 0x4a, 0x46, 0x42, 0x44, 0x48, 0x4b, 0x4b, 0x49,\n    0x4b, 0x49, 0x49, 0x4d, 0x52, 0x56, 0x58, 0x57, 0x5e, 0x5e, 0x5a, 0x52, 0x4b, 0x4a, 0x4e, 0x52,\n    0x4f, 0x46, 0x3e, 0x3e, 0x41, 0x43, 0x43, 0x43, 0x4d, 0x51, 0x52, 0x4f, 0x4b, 0x4b, 0x4f, 0x54,\n    0x52, 0x50, 0x4f, 0x4d, 0x49, 0x47, 0x4a, 0x4e, 0x54, 0x56, 0x54, 0x51, 0x50, 0x51, 0x50, 0x4d,\n    0x51, 0x4d, 0x48, 0x45, 0x48, 0x4c, 0x4b, 0x46, 0x48, 0x45, 0x42, 0x44, 0x49, 0x4f, 0x51, 0x51,\n    0x50, 0x50, 0x4e, 0x4a, 0x46, 0x46, 0x47, 0x48, 0x4d, 0x50, 0x51, 0x4c, 0x4a, 0x4b, 0x4c, 0x4b,\n    0x4b, 0x4b, 0x4d, 0x51, 0x52, 0x4e, 0x47, 0x43, 0x41, 0x51, 0x5c, 0x5e, 0x5b, 0x51, 0x47, 0x46,\n    0x4a, 0x4e, 0x54, 0x5c, 0x66, 0x6a, 0x66, 0x5f, 0x53, 0x52, 0x51, 0x4f, 0x4c, 0x4a, 0x49, 0x48,\n    0x4f, 0x50, 0x50, 0x4d, 0x48, 0x44, 0x43, 0x42, 0x42, 0x44, 0x46, 0x48, 0x49, 0x4a, 0x4c, 0x4d,\n    0x49, 0x4e, 0x58, 0x62, 0x60, 0x54, 0x4d, 0x4d, 0x51, 0x54, 0x56, 0x55, 0x52, 0x50, 0x50, 0x51,\n    0x5b, 0x5b, 0x5c, 0x5a, 0x53, 0x4f, 0x53, 0x59, 0x5c, 0x5e, 0x5b, 0x54, 0x51, 0x52, 0x4f, 0x4a,\n    0x4f, 0x4f, 0x4e, 0x4d, 0x4b, 0x4b, 0x4d, 0x4e, 0x50, 0x51, 0x52, 0x52, 0x50, 0x4f, 0x4e, 0x4e,\n    0x4b, 0x4c, 0x4c, 0x4d, 0x4e, 0x50, 0x52, 0x53, 0x54, 0x54, 0x54, 0x54, 0x53, 0x50, 0x4b, 0x48,\n    0x44, 0x43, 0x41, 0x40, 0x41, 0x44, 0x49, 0x4c, 0x47, 0x4c, 0x50, 0x51, 0x52, 0x53, 0x52, 0x50,\n    0x49, 0x4b, 0x4d, 0x4e, 0x4c, 0x49, 0x46, 0x45, 0x52, 0x57, 0x58, 0x52, 0x4d, 0x4e, 0x4f, 0x4c,\n    0x4f, 0x49, 0x4a, 0x55, 0x59, 0x54, 0x50, 0x52, 0x52, 0x53, 0x5b, 0x69, 0x75, 0x79, 0x77, 0x75,\n    0x76, 0x74, 0x73, 0x73, 0x73, 0x71, 0x70, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x6f, 0x6d, 0x6c, 0x6b,\n    0x68, 0x68, 0x67, 0x66, 0x67, 0x68, 0x69, 0x69, 0x6a, 0x6a, 0x69, 0x69, 0x69, 0x68, 0x65, 0x63,\n    0x5c, 0x57, 0x51, 0x50, 0x51, 0x51, 0x51, 0x50, 0x4d, 0x47, 0x41, 0x3f, 0x3c, 0x34, 0x29, 0x22,\n    0x23, 0x25, 0x2a, 0x2f, 0x33, 0x36, 0x38, 0x3a, 0x3a, 0x3a, 0x38, 0x36, 0x35, 0x35, 0x38, 0x3a,\n    0x4c, 0x59, 0x65, 0x68, 0x65, 0x61, 0x60, 0x60, 0x5a, 0x53, 0x4f, 0x52, 0x57, 0x5a, 0x5b, 0x5b,\n    0x5a, 0x5e, 0x5e, 0x56, 0x4a, 0x43, 0x45, 0x49, 0x45, 0x39, 0x29, 0x1b, 0x13, 0x12, 0x14, 0x16,\n    0x18, 0x22, 0x2f, 0x3c, 0x46, 0x4d, 0x53, 0x57, 0x59, 0x5d, 0x5c, 0x58, 0x59, 0x5e, 0x5d, 0x57,\n    0x55, 0x5a, 0x60, 0x65, 0x68, 0x68, 0x66, 0x64, 0x64, 0x63, 0x61, 0x60, 0x5f, 0x60, 0x60, 0x60,\n    0x5f, 0x5e, 0x5c, 0x5c, 0x5d, 0x5d, 0x5c, 0x5c, 0x5b, 0x5a, 0x59, 0x57, 0x56, 0x55, 0x54, 0x54,\n    0x56, 0x5a, 0x5b, 0x55, 0x50, 0x4e, 0x4e, 0x4d, 0x4a, 0x47, 0x49, 0x4d, 0x4a, 0x40, 0x39, 0x37,\n    0x39, 0x3a, 0x3f, 0x46, 0x4b, 0x4a, 0x42, 0x3b, 0x3a, 0x3e, 0x46, 0x4f, 0x51, 0x51, 0x59, 0x63,\n    0x69, 0x83, 0x9c, 0x9e, 0x90, 0x7c, 0x69, 0x5a, 0x68, 0x66, 0x60, 0x5a, 0x5b, 0x60, 0x61, 0x5e,\n    0x55, 0x53, 0x4f, 0x4d, 0x4f, 0x53, 0x54, 0x53, 0x4b, 0x48, 0x49, 0x4e, 0x53, 0x57, 0x5a, 0x5d,\n    0x59, 0x59, 0x58, 0x56, 0x55, 0x5a, 0x66, 0x71, 0x77, 0x69, 0x59, 0x4c, 0x43, 0x3c, 0x38, 0x37,\n    0x3c, 0x40, 0x43, 0x44, 0x42, 0x45, 0x4d, 0x55, 0x58, 0x5b, 0x5c, 0x5b, 0x5a, 0x59, 0x55, 0x51,\n    0x58, 0x61, 0x6e, 0x79, 0x83, 0x8a, 0x8b, 0x88, 0x84, 0x82, 0x7c, 0x71, 0x67, 0x65, 0x6b, 0x72,\n    0x6c, 0x6d, 0x69, 0x5e, 0x54, 0x50, 0x51, 0x52, 0x39, 0x29, 0x24, 0x2f, 0x3f, 0x4c, 0x4c, 0x41,\n    0x41, 0x40, 0x48, 0x58, 0x5f, 0x5a, 0x54, 0x54, 0x4b, 0x4f, 0x53, 0x5b, 0x5c, 0x4d, 0x3e, 0x3d,\n    0x42, 0x43, 0x4c, 0x58, 0x59, 0x4e, 0x45, 0x44, 0x40, 0x45, 0x55, 0x64, 0x68, 0x68, 0x61, 0x55,\n    0x3d, 0x2b, 0x2e, 0x44, 0x50, 0x53, 0x58, 0x5f, 0x56, 0x4f, 0x51, 0x4c, 0x4f, 0x45, 0x51, 0x5b,\n    0x75, 0x73, 0x6e, 0x68, 0x6c, 0x79, 0x72, 0x5b, 0x4b, 0x36, 0x2f, 0x2a, 0x22, 0x1e, 0x2a, 0x48,\n    0x54, 0x51, 0x4b, 0x43, 0x49, 0x61, 0x6c, 0x62, 0x5f, 0x68, 0x72, 0x72, 0x67, 0x55, 0x41, 0x33,\n    0x47, 0x48, 0x47, 0x44, 0x41, 0x3f, 0x3c, 0x39, 0x3c, 0x40, 0x44, 0x45, 0x42, 0x41, 0x41, 0x43,\n    0x47, 0x49, 0x4d, 0x51, 0x51, 0x4d, 0x47, 0x43, 0x44, 0x46, 0x47, 0x47, 0x49, 0x4d, 0x51, 0x52,\n    0x46, 0x4a, 0x4b, 0x47, 0x42, 0x41, 0x44, 0x46, 0x43, 0x41, 0x40, 0x45, 0x4c, 0x51, 0x50, 0x4d,\n    0x53, 0x54, 0x55, 0x54, 0x53, 0x55, 0x5b, 0x5f, 0x68, 0x68, 0x63, 0x58, 0x4e, 0x4c, 0x4f, 0x53,\n    0x4e, 0x47, 0x40, 0x3e, 0x3e, 0x3d, 0x3c, 0x3c, 0x48, 0x4d, 0x4f, 0x4d, 0x4a, 0x4a, 0x4c, 0x4d,\n    0x51, 0x4d, 0x4a, 0x47, 0x46, 0x46, 0x4c, 0x53, 0x58, 0x5a, 0x59, 0x55, 0x54, 0x55, 0x52, 0x4d,\n    0x49, 0x47, 0x44, 0x45, 0x4a, 0x50, 0x4f, 0x4c, 0x46, 0x42, 0x3e, 0x40, 0x47, 0x4e, 0x52, 0x53,\n    0x50, 0x52, 0x4f, 0x48, 0x42, 0x42, 0x45, 0x48, 0x4e, 0x4f, 0x4b, 0x45, 0x44, 0x4a, 0x4e, 0x4f,\n    0x4e, 0x4d, 0x4b, 0x4c, 0x4f, 0x4f, 0x4e, 0x4c, 0x54, 0x63, 0x6d, 0x6c, 0x64, 0x51, 0x41, 0x3d,\n    0x3a, 0x44, 0x4e, 0x52, 0x53, 0x54, 0x55, 0x56, 0x4e, 0x4c, 0x4a, 0x4a, 0x4b, 0x4d, 0x4e, 0x4e,\n    0x52, 0x56, 0x58, 0x53, 0x4c, 0x48, 0x45, 0x43, 0x44, 0x46, 0x47, 0x48, 0x49, 0x4b, 0x4d, 0x4f,\n    0x52, 0x58, 0x60, 0x65, 0x5f, 0x55, 0x4d, 0x4a, 0x4d, 0x4f, 0x52, 0x53, 0x52, 0x50, 0x4d, 0x4c,\n    0x54, 0x57, 0x5b, 0x5a, 0x53, 0x4e, 0x51, 0x57, 0x5b, 0x5c, 0x5b, 0x58, 0x55, 0x52, 0x4f, 0x4b,\n    0x51, 0x52, 0x52, 0x4f, 0x4c, 0x4a, 0x4b, 0x4e, 0x4f, 0x50, 0x50, 0x4f, 0x4d, 0x4c, 0x4d, 0x4e,\n    0x4e, 0x4f, 0x4f, 0x4d, 0x4d, 0x50, 0x52, 0x52, 0x52, 0x52, 0x52, 0x51, 0x4f, 0x4b, 0x48, 0x46,\n    0x44, 0x44, 0x43, 0x42, 0x41, 0x42, 0x46, 0x4a, 0x4e, 0x50, 0x51, 0x51, 0x53, 0x56, 0x55, 0x52,\n    0x48, 0x4a, 0x4d, 0x4f, 0x51, 0x52, 0x53, 0x53, 0x56, 0x57, 0x54, 0x4d, 0x4a, 0x4c, 0x4f, 0x50,\n    0x51, 0x4c, 0x4e, 0x58, 0x5f, 0x5c, 0x55, 0x51, 0x54, 0x54, 0x58, 0x62, 0x6f, 0x78, 0x79, 0x77,\n    0x78, 0x75, 0x73, 0x74, 0x74, 0x72, 0x71, 0x71, 0x72, 0x72, 0x72, 0x71, 0x70, 0x6e, 0x6c, 0x6b,\n    0x6a, 0x69, 0x68, 0x66, 0x66, 0x66, 0x67, 0x68, 0x6b, 0x6a, 0x6a, 0x6a, 0x6a, 0x68, 0x65, 0x63,\n    0x5f, 0x5a, 0x57, 0x58, 0x59, 0x58, 0x58, 0x58, 0x57, 0x51, 0x4a, 0x48, 0x48, 0x42, 0x38, 0x2e,\n    0x24, 0x22, 0x25, 0x2b, 0x33, 0x38, 0x3d, 0x41, 0x41, 0x41, 0x40, 0x3f, 0x3f, 0x40, 0x43, 0x45,\n    0x4e, 0x58, 0x62, 0x65, 0x64, 0x63, 0x61, 0x60, 0x5a, 0x53, 0x4e, 0x51, 0x57, 0x5c, 0x5f, 0x62,\n    0x61, 0x65, 0x64, 0x58, 0x4c, 0x47, 0x4a, 0x4f, 0x4c, 0x38, 0x21, 0x12, 0x0e, 0x10, 0x15, 0x19,\n    0x17, 0x1b, 0x21, 0x29, 0x32, 0x3b, 0x43, 0x47, 0x4e, 0x52, 0x54, 0x53, 0x55, 0x58, 0x56, 0x51,\n    0x52, 0x5a, 0x63, 0x68, 0x69, 0x6a, 0x69, 0x67, 0x64, 0x62, 0x60, 0x5f, 0x5f, 0x60, 0x60, 0x60,\n    0x5d, 0x5c, 0x5b, 0x5b, 0x5c, 0x5c, 0x5a, 0x59, 0x5c, 0x5b, 0x59, 0x57, 0x55, 0x55, 0x54, 0x54,\n    0x57, 0x5a, 0x58, 0x50, 0x4c, 0x4d, 0x4e, 0x4c, 0x4e, 0x4d, 0x4e, 0x50, 0x4e, 0x46, 0x3e, 0x3b,\n    0x39, 0x36, 0x35, 0x38, 0x3e, 0x41, 0x3f, 0x3c, 0x37, 0x3b, 0x42, 0x4b, 0x55, 0x63, 0x76, 0x85,\n    0x99, 0x99, 0x8a, 0x6d, 0x5a, 0x5b, 0x61, 0x62, 0x64, 0x6c, 0x70, 0x6c, 0x66, 0x66, 0x6a, 0x6e,\n    0x5c, 0x59, 0x53, 0x4e, 0x4f, 0x52, 0x53, 0x51, 0x4b, 0x49, 0x4a, 0x4e, 0x53, 0x55, 0x58, 0x5b,\n    0x58, 0x5a, 0x59, 0x56, 0x5a, 0x66, 0x71, 0x75, 0x6e, 0x61, 0x51, 0x46, 0x3f, 0x39, 0x36, 0x36,\n    0x39, 0x3b, 0x3f, 0x40, 0x3f, 0x3f, 0x47, 0x50, 0x55, 0x58, 0x59, 0x56, 0x54, 0x52, 0x4f, 0x4b,\n    0x52, 0x57, 0x5f, 0x69, 0x77, 0x84, 0x8b, 0x8c, 0x86, 0x83, 0x7f, 0x79, 0x74, 0x6e, 0x6a, 0x68,\n    0x6d, 0x6d, 0x66, 0x5a, 0x50, 0x4d, 0x4f, 0x50, 0x3d, 0x3a, 0x41, 0x4b, 0x4f, 0x4f, 0x4c, 0x44,\n    0x44, 0x3e, 0x3f, 0x4a, 0x52, 0x52, 0x53, 0x57, 0x54, 0x58, 0x5a, 0x5f, 0x5f, 0x52, 0x44, 0x42,\n    0x43, 0x55, 0x5f, 0x55, 0x49, 0x46, 0x46, 0x43, 0x3b, 0x3e, 0x4a, 0x59, 0x63, 0x6b, 0x6a, 0x5f,\n    0x41, 0x2d, 0x31, 0x4b, 0x5b, 0x5e, 0x62, 0x67, 0x5b, 0x50, 0x4f, 0x4a, 0x4b, 0x3e, 0x45, 0x4c,\n    0x69, 0x6a, 0x6e, 0x6d, 0x6d, 0x75, 0x76, 0x6b, 0x4a, 0x38, 0x35, 0x30, 0x2a, 0x27, 0x2f, 0x48,\n    0x65, 0x66, 0x63, 0x57, 0x53, 0x5f, 0x67, 0x5f, 0x55, 0x4f, 0x4e, 0x56, 0x64, 0x6a, 0x65, 0x5d,\n    0x4c, 0x4e, 0x4d, 0x48, 0x44, 0x42, 0x3e, 0x3a, 0x3b, 0x40, 0x46, 0x49, 0x49, 0x47, 0x43, 0x41,\n    0x47, 0x49, 0x4d, 0x50, 0x51, 0x4e, 0x48, 0x43, 0x46, 0x47, 0x45, 0x43, 0x46, 0x4c, 0x50, 0x50,\n    0x44, 0x45, 0x43, 0x3e, 0x3a, 0x3c, 0x3f, 0x40, 0x42, 0x43, 0x44, 0x47, 0x4a, 0x4c, 0x4c, 0x4b,\n    0x56, 0x5b, 0x5f, 0x5e, 0x5b, 0x5b, 0x61, 0x67, 0x6c, 0x6b, 0x66, 0x5c, 0x55, 0x52, 0x51, 0x4f,\n    0x4a, 0x46, 0x43, 0x42, 0x41, 0x3e, 0x3d, 0x3e, 0x4e, 0x52, 0x54, 0x51, 0x4f, 0x4f, 0x50, 0x4f,\n    0x4c, 0x47, 0x42, 0x40, 0x40, 0x43, 0x4b, 0x52, 0x58, 0x5c, 0x5b, 0x57, 0x56, 0x58, 0x54, 0x4c,\n    0x40, 0x41, 0x41, 0x43, 0x49, 0x50, 0x50, 0x4e, 0x46, 0x42, 0x3e, 0x3f, 0x45, 0x4a, 0x4d, 0x4e,\n    0x4c, 0x50, 0x50, 0x48, 0x40, 0x3f, 0x43, 0x46, 0x4b, 0x4c, 0x48, 0x42, 0x44, 0x4c, 0x50, 0x4e,\n    0x52, 0x50, 0x4d, 0x4b, 0x4d, 0x4f, 0x4f, 0x4e, 0x5c, 0x67, 0x6e, 0x71, 0x71, 0x6b, 0x68, 0x6d,\n    0x72, 0x75, 0x73, 0x6b, 0x61, 0x58, 0x50, 0x4a, 0x4b, 0x48, 0x45, 0x46, 0x4b, 0x4e, 0x4e, 0x4d,\n    0x4e, 0x57, 0x5d, 0x5a, 0x53, 0x4e, 0x49, 0x45, 0x46, 0x47, 0x49, 0x4a, 0x4b, 0x4d, 0x4f, 0x51,\n    0x56, 0x5c, 0x5f, 0x5c, 0x55, 0x51, 0x4f, 0x4d, 0x4d, 0x4e, 0x50, 0x53, 0x54, 0x53, 0x4f, 0x4c,\n    0x4f, 0x55, 0x5b, 0x5c, 0x54, 0x4e, 0x50, 0x56, 0x59, 0x59, 0x5a, 0x5c, 0x5a, 0x54, 0x51, 0x50,\n    0x52, 0x51, 0x4f, 0x4d, 0x4b, 0x4b, 0x4d, 0x4f, 0x4f, 0x4e, 0x4d, 0x4c, 0x4a, 0x4a, 0x4c, 0x4e,\n    0x51, 0x52, 0x50, 0x4c, 0x4c, 0x4f, 0x50, 0x4f, 0x51, 0x51, 0x4f, 0x4c, 0x48, 0x47, 0x48, 0x49,\n    0x49, 0x4a, 0x4a, 0x46, 0x43, 0x42, 0x44, 0x47, 0x4d, 0x4e, 0x4f, 0x51, 0x55, 0x57, 0x53, 0x4d,\n    0x4a, 0x4c, 0x4f, 0x54, 0x58, 0x5b, 0x5c, 0x5d, 0x55, 0x52, 0x4f, 0x4e, 0x4c, 0x4b, 0x4c, 0x4f,\n    0x51, 0x50, 0x52, 0x57, 0x5c, 0x5c, 0x57, 0x51, 0x52, 0x53, 0x54, 0x59, 0x66, 0x75, 0x7a, 0x78,\n    0x7a, 0x76, 0x75, 0x77, 0x76, 0x74, 0x72, 0x73, 0x74, 0x74, 0x74, 0x72, 0x71, 0x6e, 0x6c, 0x6b,\n    0x6b, 0x6a, 0x68, 0x67, 0x67, 0x67, 0x69, 0x6a, 0x6b, 0x6b, 0x6b, 0x6b, 0x6a, 0x68, 0x65, 0x63,\n    0x60, 0x5e, 0x5e, 0x61, 0x62, 0x60, 0x60, 0x63, 0x61, 0x5d, 0x57, 0x53, 0x52, 0x50, 0x4b, 0x46,\n    0x35, 0x2c, 0x26, 0x29, 0x2f, 0x34, 0x3a, 0x3f, 0x41, 0x42, 0x44, 0x45, 0x46, 0x48, 0x4a, 0x4c,\n    0x4c, 0x51, 0x56, 0x58, 0x59, 0x5b, 0x5a, 0x57, 0x52, 0x4d, 0x4a, 0x4e, 0x55, 0x5b, 0x60, 0x64,\n    0x6e, 0x6d, 0x65, 0x56, 0x4c, 0x4a, 0x4f, 0x52, 0x46, 0x30, 0x19, 0x10, 0x12, 0x17, 0x1b, 0x1d,\n    0x20, 0x20, 0x20, 0x21, 0x24, 0x28, 0x2e, 0x32, 0x3f, 0x43, 0x48, 0x4c, 0x50, 0x53, 0x54, 0x54,\n    0x57, 0x61, 0x6a, 0x6c, 0x6c, 0x6b, 0x6a, 0x68, 0x65, 0x62, 0x5f, 0x5e, 0x5e, 0x5f, 0x5f, 0x5e,\n    0x5b, 0x5b, 0x5b, 0x5b, 0x5c, 0x5b, 0x59, 0x58, 0x5a, 0x59, 0x57, 0x56, 0x55, 0x54, 0x55, 0x55,\n    0x56, 0x57, 0x53, 0x4a, 0x47, 0x4b, 0x4d, 0x4a, 0x45, 0x47, 0x47, 0x45, 0x44, 0x42, 0x3c, 0x37,\n    0x38, 0x36, 0x36, 0x39, 0x3d, 0x3d, 0x38, 0x33, 0x38, 0x3d, 0x43, 0x49, 0x54, 0x64, 0x72, 0x7a,\n    0x65, 0x63, 0x5e, 0x57, 0x56, 0x5a, 0x5b, 0x58, 0x5d, 0x64, 0x6c, 0x71, 0x74, 0x76, 0x76, 0x75,\n    0x62, 0x5e, 0x56, 0x50, 0x4f, 0x51, 0x52, 0x50, 0x4c, 0x4a, 0x4c, 0x50, 0x54, 0x55, 0x57, 0x5a,\n    0x51, 0x54, 0x52, 0x50, 0x5c, 0x6c, 0x6d, 0x62, 0x52, 0x49, 0x41, 0x3d, 0x3b, 0x38, 0x36, 0x36,\n    0x36, 0x38, 0x3c, 0x3e, 0x3c, 0x3c, 0x43, 0x4d, 0x52, 0x55, 0x56, 0x53, 0x50, 0x50, 0x50, 0x4e,\n    0x51, 0x53, 0x56, 0x5a, 0x65, 0x74, 0x81, 0x88, 0x87, 0x84, 0x81, 0x7e, 0x7b, 0x76, 0x6e, 0x67,\n    0x6f, 0x69, 0x5d, 0x51, 0x4c, 0x4d, 0x50, 0x50, 0x45, 0x40, 0x3f, 0x3a, 0x2f, 0x33, 0x45, 0x52,\n    0x4e, 0x45, 0x42, 0x49, 0x4f, 0x4c, 0x4a, 0x4c, 0x58, 0x5a, 0x59, 0x5c, 0x60, 0x54, 0x41, 0x37,\n    0x3b, 0x51, 0x5a, 0x4a, 0x3c, 0x41, 0x4b, 0x4e, 0x4e, 0x4b, 0x54, 0x64, 0x6f, 0x6c, 0x52, 0x32,\n    0x26, 0x1e, 0x2a, 0x47, 0x5e, 0x6c, 0x71, 0x6f, 0x61, 0x5c, 0x5a, 0x45, 0x33, 0x25, 0x45, 0x66,\n    0x7b, 0x72, 0x68, 0x61, 0x61, 0x6a, 0x68, 0x5a, 0x3c, 0x34, 0x3a, 0x38, 0x33, 0x33, 0x3b, 0x52,\n    0x56, 0x64, 0x71, 0x6b, 0x5e, 0x5f, 0x64, 0x60, 0x63, 0x52, 0x47, 0x52, 0x65, 0x69, 0x56, 0x41,\n    0x4d, 0x50, 0x4f, 0x49, 0x45, 0x44, 0x41, 0x3d, 0x3a, 0x3f, 0x46, 0x4c, 0x4e, 0x4b, 0x45, 0x41,\n    0x41, 0x44, 0x49, 0x4f, 0x53, 0x52, 0x4e, 0x4a, 0x46, 0x45, 0x41, 0x3e, 0x41, 0x48, 0x4c, 0x4b,\n    0x45, 0x44, 0x40, 0x3a, 0x39, 0x3c, 0x41, 0x43, 0x44, 0x45, 0x47, 0x45, 0x42, 0x40, 0x41, 0x42,\n    0x4f, 0x57, 0x5f, 0x62, 0x5f, 0x5d, 0x60, 0x63, 0x67, 0x65, 0x5f, 0x58, 0x54, 0x53, 0x4d, 0x46,\n    0x3b, 0x3b, 0x3e, 0x42, 0x44, 0x44, 0x46, 0x48, 0x4b, 0x4f, 0x50, 0x4c, 0x49, 0x4a, 0x4a, 0x48,\n    0x4e, 0x48, 0x42, 0x3f, 0x3e, 0x3f, 0x43, 0x48, 0x56, 0x5a, 0x5a, 0x57, 0x57, 0x59, 0x54, 0x4c,\n    0x43, 0x44, 0x43, 0x43, 0x46, 0x49, 0x48, 0x44, 0x46, 0x42, 0x3d, 0x3d, 0x40, 0x43, 0x44, 0x43,\n    0x47, 0x4e, 0x50, 0x48, 0x40, 0x3e, 0x42, 0x44, 0x47, 0x49, 0x48, 0x45, 0x48, 0x4f, 0x50, 0x4b,\n    0x4b, 0x4a, 0x49, 0x49, 0x4c, 0x4d, 0x4c, 0x49, 0x45, 0x50, 0x59, 0x61, 0x68, 0x6a, 0x6f, 0x79,\n    0x6f, 0x6d, 0x6c, 0x6f, 0x77, 0x78, 0x6f, 0x64, 0x4e, 0x4a, 0x45, 0x46, 0x4a, 0x4d, 0x4b, 0x47,\n    0x46, 0x52, 0x5c, 0x5b, 0x55, 0x4f, 0x49, 0x43, 0x44, 0x46, 0x49, 0x4b, 0x4c, 0x4d, 0x4e, 0x4f,\n    0x4a, 0x50, 0x51, 0x4b, 0x49, 0x4e, 0x53, 0x55, 0x52, 0x51, 0x52, 0x54, 0x57, 0x56, 0x52, 0x4e,\n    0x51, 0x58, 0x60, 0x61, 0x59, 0x52, 0x53, 0x59, 0x5f, 0x5d, 0x5e, 0x61, 0x5d, 0x53, 0x4e, 0x4e,\n    0x53, 0x4f, 0x4b, 0x49, 0x4a, 0x4d, 0x4f, 0x50, 0x50, 0x4f, 0x4d, 0x4a, 0x49, 0x4a, 0x4d, 0x50,\n    0x52, 0x53, 0x50, 0x4b, 0x4a, 0x4d, 0x4e, 0x4c, 0x50, 0x50, 0x4d, 0x48, 0x44, 0x44, 0x49, 0x4d,\n    0x4a, 0x4c, 0x4e, 0x4d, 0x4a, 0x4a, 0x4e, 0x51, 0x49, 0x4b, 0x4d, 0x52, 0x57, 0x58, 0x51, 0x48,\n    0x52, 0x53, 0x54, 0x57, 0x58, 0x58, 0x57, 0x56, 0x54, 0x51, 0x52, 0x56, 0x56, 0x4f, 0x4b, 0x4c,\n    0x4f, 0x51, 0x52, 0x54, 0x58, 0x5a, 0x58, 0x52, 0x4e, 0x50, 0x4f, 0x50, 0x5e, 0x71, 0x79, 0x76,\n    0x7c, 0x78, 0x76, 0x78, 0x78, 0x75, 0x73, 0x75, 0x76, 0x75, 0x75, 0x73, 0x71, 0x6f, 0x6c, 0x6b,\n    0x69, 0x68, 0x67, 0x67, 0x68, 0x6a, 0x6c, 0x6d, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x69, 0x65, 0x63,\n    0x60, 0x60, 0x63, 0x68, 0x69, 0x66, 0x67, 0x6b, 0x69, 0x66, 0x61, 0x5b, 0x59, 0x59, 0x5a, 0x59,\n    0x54, 0x44, 0x34, 0x2d, 0x2d, 0x2e, 0x31, 0x34, 0x3a, 0x3d, 0x40, 0x43, 0x44, 0x45, 0x47, 0x48,\n    0x4b, 0x4c, 0x4c, 0x4c, 0x4f, 0x53, 0x53, 0x50, 0x49, 0x46, 0x48, 0x4e, 0x56, 0x5b, 0x5f, 0x62,\n    0x67, 0x61, 0x53, 0x42, 0x39, 0x3b, 0x3f, 0x40, 0x32, 0x1f, 0x0f, 0x0f, 0x19, 0x21, 0x23, 0x22,\n    0x20, 0x22, 0x23, 0x23, 0x21, 0x22, 0x25, 0x28, 0x34, 0x37, 0x3e, 0x46, 0x4c, 0x50, 0x55, 0x59,\n    0x5e, 0x68, 0x71, 0x70, 0x6d, 0x6b, 0x69, 0x66, 0x65, 0x62, 0x5f, 0x5d, 0x5d, 0x5d, 0x5d, 0x5c,\n    0x5b, 0x5b, 0x5b, 0x5c, 0x5d, 0x5c, 0x5a, 0x58, 0x58, 0x57, 0x56, 0x54, 0x54, 0x54, 0x55, 0x56,\n    0x56, 0x56, 0x4f, 0x45, 0x44, 0x49, 0x4b, 0x48, 0x46, 0x49, 0x48, 0x43, 0x42, 0x43, 0x40, 0x3a,\n    0x39, 0x37, 0x37, 0x39, 0x3d, 0x3c, 0x37, 0x31, 0x34, 0x3b, 0x42, 0x48, 0x51, 0x5c, 0x5f, 0x5b,\n    0x4e, 0x47, 0x47, 0x54, 0x66, 0x70, 0x73, 0x73, 0x5d, 0x55, 0x51, 0x5b, 0x6f, 0x7c, 0x7c, 0x74,\n    0x63, 0x5f, 0x57, 0x50, 0x4f, 0x51, 0x52, 0x50, 0x49, 0x49, 0x4b, 0x4f, 0x52, 0x53, 0x55, 0x57,\n    0x57, 0x5a, 0x58, 0x58, 0x6a, 0x7c, 0x72, 0x5a, 0x46, 0x3f, 0x39, 0x38, 0x38, 0x36, 0x33, 0x33,\n    0x35, 0x37, 0x3b, 0x3d, 0x3c, 0x3b, 0x42, 0x4c, 0x50, 0x53, 0x55, 0x52, 0x51, 0x53, 0x56, 0x57,\n    0x54, 0x55, 0x53, 0x51, 0x56, 0x64, 0x75, 0x7f, 0x86, 0x86, 0x85, 0x82, 0x7c, 0x75, 0x71, 0x6e,\n    0x70, 0x65, 0x54, 0x49, 0x48, 0x4e, 0x51, 0x50, 0x4c, 0x44, 0x43, 0x44, 0x3f, 0x42, 0x4b, 0x50,\n    0x4c, 0x46, 0x47, 0x53, 0x59, 0x55, 0x4e, 0x4c, 0x3b, 0x3e, 0x3e, 0x46, 0x53, 0x4d, 0x38, 0x29,\n    0x38, 0x47, 0x55, 0x57, 0x52, 0x54, 0x5b, 0x61, 0x6a, 0x5a, 0x53, 0x5f, 0x6d, 0x6b, 0x4a, 0x21,\n    0x16, 0x26, 0x40, 0x53, 0x5b, 0x66, 0x70, 0x70, 0x76, 0x5d, 0x4c, 0x3c, 0x3a, 0x2f, 0x3b, 0x46,\n    0x5f, 0x6c, 0x73, 0x68, 0x5f, 0x65, 0x5f, 0x4a, 0x3a, 0x39, 0x42, 0x3c, 0x30, 0x2d, 0x33, 0x48,\n    0x59, 0x64, 0x6f, 0x66, 0x56, 0x56, 0x61, 0x65, 0x66, 0x4e, 0x3b, 0x45, 0x60, 0x6e, 0x63, 0x52,\n    0x4f, 0x53, 0x56, 0x55, 0x4e, 0x47, 0x41, 0x3e, 0x42, 0x49, 0x4d, 0x4c, 0x4c, 0x4d, 0x4b, 0x47,\n    0x40, 0x40, 0x46, 0x50, 0x55, 0x53, 0x4f, 0x4e, 0x4b, 0x46, 0x40, 0x3f, 0x43, 0x48, 0x4a, 0x4a,\n    0x45, 0x41, 0x3d, 0x3b, 0x3c, 0x3f, 0x43, 0x45, 0x47, 0x49, 0x49, 0x46, 0x44, 0x44, 0x48, 0x4b,\n    0x55, 0x58, 0x5b, 0x5c, 0x5c, 0x5d, 0x61, 0x65, 0x5f, 0x54, 0x4a, 0x4b, 0x52, 0x56, 0x50, 0x48,\n    0x41, 0x42, 0x41, 0x40, 0x40, 0x42, 0x48, 0x4d, 0x55, 0x53, 0x4f, 0x4a, 0x46, 0x44, 0x44, 0x46,\n    0x45, 0x4a, 0x4d, 0x4a, 0x43, 0x40, 0x45, 0x4a, 0x48, 0x4f, 0x52, 0x51, 0x53, 0x57, 0x56, 0x51,\n    0x4c, 0x4c, 0x49, 0x46, 0x45, 0x48, 0x4b, 0x4b, 0x48, 0x43, 0x41, 0x43, 0x46, 0x44, 0x40, 0x3e,\n    0x44, 0x4a, 0x4e, 0x4b, 0x42, 0x3d, 0x3f, 0x43, 0x42, 0x43, 0x45, 0x47, 0x4a, 0x4c, 0x4d, 0x4d,\n    0x49, 0x41, 0x3d, 0x41, 0x45, 0x46, 0x47, 0x4a, 0x44, 0x43, 0x44, 0x4a, 0x53, 0x5b, 0x5e, 0x5e,\n    0x55, 0x5c, 0x69, 0x71, 0x6f, 0x6e, 0x67, 0x5a, 0x53, 0x4e, 0x48, 0x49, 0x4d, 0x4f, 0x4e, 0x4b,\n    0x51, 0x53, 0x55, 0x57, 0x55, 0x51, 0x4c, 0x49, 0x45, 0x46, 0x47, 0x4a, 0x4d, 0x4e, 0x4e, 0x4d,\n    0x4b, 0x4d, 0x4e, 0x4c, 0x4b, 0x4d, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x53, 0x57, 0x56, 0x52,\n    0x56, 0x5a, 0x5c, 0x5a, 0x55, 0x51, 0x51, 0x54, 0x58, 0x56, 0x57, 0x5c, 0x5c, 0x57, 0x52, 0x52,\n    0x56, 0x51, 0x4d, 0x4d, 0x52, 0x56, 0x57, 0x56, 0x54, 0x58, 0x5b, 0x58, 0x51, 0x4d, 0x4d, 0x50,\n    0x55, 0x52, 0x50, 0x50, 0x4e, 0x4c, 0x4f, 0x55, 0x57, 0x50, 0x49, 0x48, 0x4d, 0x50, 0x4f, 0x4c,\n    0x47, 0x50, 0x57, 0x57, 0x53, 0x51, 0x52, 0x52, 0x56, 0x53, 0x51, 0x54, 0x5b, 0x5c, 0x51, 0x44,\n    0x4d, 0x57, 0x60, 0x61, 0x5c, 0x59, 0x57, 0x56, 0x56, 0x58, 0x56, 0x52, 0x52, 0x54, 0x52, 0x4e,\n    0x54, 0x53, 0x55, 0x59, 0x5a, 0x57, 0x54, 0x53, 0x4c, 0x52, 0x53, 0x53, 0x5d, 0x6e, 0x77, 0x74,\n    0x7c, 0x7b, 0x7b, 0x7a, 0x76, 0x71, 0x72, 0x76, 0x75, 0x75, 0x75, 0x75, 0x73, 0x70, 0x6d, 0x6b,\n    0x6a, 0x68, 0x66, 0x67, 0x69, 0x6c, 0x6c, 0x6c, 0x69, 0x6a, 0x6a, 0x69, 0x67, 0x65, 0x64, 0x64,\n    0x65, 0x65, 0x67, 0x69, 0x6b, 0x6d, 0x6e, 0x6f, 0x70, 0x70, 0x6d, 0x67, 0x62, 0x62, 0x66, 0x6c,\n    0x6c, 0x63, 0x54, 0x46, 0x3c, 0x37, 0x36, 0x35, 0x37, 0x37, 0x39, 0x3a, 0x3c, 0x3e, 0x41, 0x43,\n    0x4b, 0x4b, 0x4b, 0x4c, 0x4c, 0x4d, 0x4e, 0x4f, 0x48, 0x49, 0x4b, 0x4c, 0x4e, 0x4f, 0x4f, 0x50,\n    0x4e, 0x47, 0x3d, 0x35, 0x30, 0x2b, 0x26, 0x22, 0x20, 0x1a, 0x19, 0x1e, 0x22, 0x22, 0x25, 0x29,\n    0x2b, 0x28, 0x25, 0x23, 0x23, 0x27, 0x2b, 0x2e, 0x31, 0x36, 0x3d, 0x43, 0x4a, 0x51, 0x58, 0x5d,\n    0x6c, 0x6e, 0x6f, 0x70, 0x6f, 0x6d, 0x6b, 0x69, 0x64, 0x62, 0x60, 0x5f, 0x5f, 0x5f, 0x5d, 0x5c,\n    0x5d, 0x5c, 0x5a, 0x59, 0x59, 0x58, 0x57, 0x56, 0x54, 0x53, 0x54, 0x57, 0x55, 0x52, 0x53, 0x57,\n    0x58, 0x56, 0x4c, 0x40, 0x41, 0x4a, 0x4a, 0x42, 0x49, 0x4c, 0x4d, 0x49, 0x44, 0x41, 0x3e, 0x3b,\n    0x3a, 0x36, 0x37, 0x3e, 0x3e, 0x38, 0x34, 0x37, 0x32, 0x3a, 0x41, 0x44, 0x48, 0x4c, 0x4d, 0x4b,\n    0x43, 0x3a, 0x39, 0x4e, 0x6c, 0x7d, 0x7a, 0x71, 0x62, 0x64, 0x5f, 0x5a, 0x64, 0x78, 0x80, 0x7c,\n    0x66, 0x61, 0x5b, 0x55, 0x50, 0x4d, 0x4c, 0x4c, 0x49, 0x46, 0x4b, 0x51, 0x52, 0x55, 0x55, 0x4f,\n    0x4e, 0x52, 0x59, 0x61, 0x6c, 0x79, 0x72, 0x5b, 0x42, 0x40, 0x41, 0x42, 0x3d, 0x34, 0x2e, 0x2e,\n    0x32, 0x38, 0x3b, 0x37, 0x35, 0x3b, 0x44, 0x4a, 0x53, 0x53, 0x51, 0x4e, 0x4e, 0x52, 0x58, 0x5e,\n    0x59, 0x54, 0x4f, 0x4c, 0x49, 0x4d, 0x60, 0x75, 0x83, 0x84, 0x85, 0x84, 0x7e, 0x76, 0x71, 0x6f,\n    0x6b, 0x63, 0x54, 0x48, 0x47, 0x4f, 0x53, 0x52, 0x4d, 0x49, 0x43, 0x3d, 0x3e, 0x4e, 0x58, 0x54,\n    0x51, 0x4e, 0x4c, 0x53, 0x58, 0x4c, 0x3e, 0x3d, 0x30, 0x40, 0x43, 0x4b, 0x3e, 0x38, 0x24, 0x25,\n    0x3d, 0x4c, 0x4f, 0x5b, 0x4c, 0x58, 0x63, 0x5d, 0x61, 0x43, 0x4e, 0x5f, 0x74, 0x69, 0x4a, 0x27,\n    0x18, 0x31, 0x53, 0x6a, 0x5f, 0x5c, 0x73, 0x7b, 0x77, 0x54, 0x4a, 0x45, 0x40, 0x30, 0x39, 0x3c,\n    0x52, 0x5d, 0x5f, 0x5f, 0x67, 0x69, 0x5c, 0x4f, 0x44, 0x43, 0x34, 0x2b, 0x29, 0x1e, 0x27, 0x4a,\n    0x68, 0x64, 0x66, 0x67, 0x5c, 0x50, 0x5a, 0x70, 0x61, 0x45, 0x36, 0x4d, 0x73, 0x81, 0x6d, 0x54,\n    0x45, 0x4a, 0x4f, 0x51, 0x4e, 0x49, 0x47, 0x46, 0x4c, 0x4d, 0x4d, 0x4d, 0x4f, 0x51, 0x4f, 0x4b,\n    0x46, 0x46, 0x4a, 0x52, 0x55, 0x53, 0x4f, 0x4f, 0x48, 0x45, 0x42, 0x41, 0x43, 0x45, 0x46, 0x46,\n    0x42, 0x3f, 0x3c, 0x3a, 0x3b, 0x3e, 0x42, 0x44, 0x43, 0x46, 0x49, 0x4a, 0x4a, 0x4f, 0x57, 0x5d,\n    0x5a, 0x59, 0x58, 0x57, 0x59, 0x5d, 0x61, 0x65, 0x5a, 0x54, 0x4f, 0x4e, 0x51, 0x53, 0x51, 0x4d,\n    0x45, 0x43, 0x40, 0x3f, 0x41, 0x44, 0x48, 0x4a, 0x50, 0x4e, 0x4c, 0x4a, 0x48, 0x46, 0x44, 0x44,\n    0x42, 0x47, 0x4b, 0x49, 0x44, 0x40, 0x42, 0x44, 0x4f, 0x51, 0x50, 0x4c, 0x4e, 0x55, 0x56, 0x52,\n    0x4c, 0x4c, 0x49, 0x47, 0x47, 0x4a, 0x4c, 0x4b, 0x48, 0x46, 0x47, 0x4c, 0x4d, 0x49, 0x42, 0x3e,\n    0x3e, 0x42, 0x46, 0x45, 0x41, 0x3e, 0x3f, 0x42, 0x44, 0x45, 0x46, 0x48, 0x49, 0x4a, 0x4b, 0x4b,\n    0x47, 0x40, 0x3e, 0x43, 0x48, 0x4a, 0x4e, 0x53, 0x4a, 0x4c, 0x4c, 0x4a, 0x46, 0x46, 0x4a, 0x4e,\n    0x57, 0x4c, 0x48, 0x46, 0x42, 0x44, 0x4d, 0x51, 0x54, 0x4e, 0x48, 0x46, 0x49, 0x4c, 0x4d, 0x4d,\n    0x50, 0x52, 0x54, 0x55, 0x53, 0x4f, 0x49, 0x45, 0x4c, 0x4c, 0x4c, 0x4c, 0x4b, 0x4b, 0x4b, 0x4b,\n    0x52, 0x54, 0x55, 0x53, 0x51, 0x4e, 0x4a, 0x45, 0x4f, 0x50, 0x51, 0x52, 0x56, 0x59, 0x58, 0x53,\n    0x5a, 0x5d, 0x5f, 0x5b, 0x56, 0x53, 0x57, 0x5b, 0x51, 0x52, 0x55, 0x5b, 0x5b, 0x57, 0x54, 0x55,\n    0x58, 0x55, 0x53, 0x55, 0x58, 0x5a, 0x5a, 0x58, 0x5b, 0x5c, 0x5c, 0x58, 0x52, 0x50, 0x54, 0x58,\n    0x53, 0x50, 0x50, 0x53, 0x53, 0x51, 0x51, 0x54, 0x4d, 0x4e, 0x51, 0x57, 0x5b, 0x59, 0x50, 0x48,\n    0x48, 0x4d, 0x53, 0x54, 0x55, 0x57, 0x58, 0x57, 0x56, 0x57, 0x58, 0x5a, 0x5d, 0x5d, 0x55, 0x4d,\n    0x4f, 0x59, 0x61, 0x61, 0x5c, 0x57, 0x54, 0x52, 0x4e, 0x52, 0x57, 0x5a, 0x5e, 0x61, 0x5e, 0x58,\n    0x50, 0x51, 0x54, 0x5a, 0x5b, 0x58, 0x54, 0x52, 0x55, 0x53, 0x51, 0x51, 0x54, 0x5d, 0x6c, 0x78,\n    0x7b, 0x7a, 0x7a, 0x78, 0x77, 0x76, 0x75, 0x74, 0x74, 0x75, 0x75, 0x75, 0x73, 0x71, 0x6e, 0x6c,\n    0x6a, 0x69, 0x67, 0x67, 0x68, 0x69, 0x6a, 0x6a, 0x67, 0x69, 0x6b, 0x6b, 0x6a, 0x68, 0x67, 0x67,\n    0x6a, 0x6b, 0x6c, 0x6e, 0x70, 0x71, 0x73, 0x73, 0x75, 0x74, 0x72, 0x6d, 0x69, 0x67, 0x69, 0x6b,\n    0x71, 0x6d, 0x67, 0x5f, 0x57, 0x4f, 0x47, 0x42, 0x46, 0x42, 0x3e, 0x3c, 0x3d, 0x3e, 0x3e, 0x3d,\n    0x43, 0x43, 0x44, 0x45, 0x46, 0x48, 0x4a, 0x4b, 0x53, 0x51, 0x4e, 0x4b, 0x46, 0x42, 0x3f, 0x3d,\n    0x3e, 0x3b, 0x36, 0x33, 0x30, 0x2b, 0x26, 0x22, 0x24, 0x22, 0x24, 0x29, 0x2e, 0x2f, 0x30, 0x32,\n    0x2c, 0x2c, 0x2d, 0x2e, 0x30, 0x33, 0x36, 0x38, 0x38, 0x3c, 0x43, 0x49, 0x50, 0x58, 0x5f, 0x64,\n    0x6e, 0x6f, 0x70, 0x70, 0x6f, 0x6c, 0x69, 0x67, 0x64, 0x62, 0x60, 0x5f, 0x5f, 0x5e, 0x5d, 0x5c,\n    0x5c, 0x5b, 0x5a, 0x59, 0x59, 0x58, 0x57, 0x55, 0x55, 0x53, 0x54, 0x56, 0x54, 0x52, 0x53, 0x57,\n    0x56, 0x52, 0x48, 0x3f, 0x3f, 0x45, 0x45, 0x41, 0x44, 0x48, 0x4b, 0x49, 0x46, 0x44, 0x41, 0x3e,\n    0x36, 0x33, 0x37, 0x40, 0x40, 0x38, 0x32, 0x33, 0x2f, 0x36, 0x3c, 0x3f, 0x45, 0x4f, 0x59, 0x5d,\n    0x4e, 0x41, 0x38, 0x3f, 0x50, 0x5d, 0x5c, 0x56, 0x71, 0x69, 0x5e, 0x5f, 0x6f, 0x80, 0x81, 0x78,\n    0x6b, 0x65, 0x5e, 0x5a, 0x54, 0x4e, 0x4c, 0x4e, 0x4b, 0x48, 0x4d, 0x52, 0x51, 0x53, 0x52, 0x4c,\n    0x47, 0x49, 0x52, 0x58, 0x58, 0x57, 0x4e, 0x3e, 0x44, 0x41, 0x3f, 0x3d, 0x38, 0x30, 0x2d, 0x2e,\n    0x2f, 0x33, 0x38, 0x3f, 0x4a, 0x51, 0x4b, 0x3f, 0x50, 0x51, 0x51, 0x4c, 0x49, 0x4b, 0x54, 0x5c,\n    0x55, 0x4e, 0x48, 0x46, 0x44, 0x47, 0x54, 0x63, 0x76, 0x83, 0x8a, 0x83, 0x77, 0x70, 0x6b, 0x67,\n    0x6c, 0x62, 0x54, 0x4a, 0x4d, 0x55, 0x59, 0x58, 0x45, 0x43, 0x44, 0x46, 0x49, 0x50, 0x50, 0x45,\n    0x53, 0x44, 0x3a, 0x42, 0x4f, 0x4a, 0x3c, 0x35, 0x31, 0x3a, 0x41, 0x53, 0x4b, 0x3b, 0x24, 0x28,\n    0x3b, 0x4e, 0x56, 0x50, 0x4c, 0x53, 0x64, 0x5c, 0x4d, 0x3b, 0x53, 0x67, 0x77, 0x65, 0x44, 0x25,\n    0x1c, 0x32, 0x4c, 0x60, 0x60, 0x63, 0x70, 0x68, 0x5c, 0x48, 0x49, 0x4b, 0x48, 0x35, 0x3c, 0x45,\n    0x4b, 0x62, 0x68, 0x5c, 0x5b, 0x62, 0x61, 0x5b, 0x4f, 0x4e, 0x3f, 0x37, 0x35, 0x29, 0x2c, 0x48,\n    0x51, 0x64, 0x75, 0x7b, 0x7d, 0x75, 0x5c, 0x42, 0x33, 0x34, 0x3b, 0x45, 0x4e, 0x51, 0x51, 0x51,\n    0x43, 0x46, 0x49, 0x4a, 0x48, 0x49, 0x4b, 0x4e, 0x57, 0x51, 0x4d, 0x4e, 0x51, 0x50, 0x4e, 0x4d,\n    0x49, 0x48, 0x4a, 0x4e, 0x50, 0x4d, 0x4b, 0x4b, 0x49, 0x47, 0x45, 0x42, 0x42, 0x43, 0x47, 0x49,\n    0x46, 0x44, 0x42, 0x40, 0x40, 0x43, 0x46, 0x48, 0x4b, 0x4f, 0x51, 0x50, 0x4e, 0x50, 0x58, 0x5f,\n    0x5b, 0x59, 0x57, 0x59, 0x5f, 0x63, 0x65, 0x65, 0x5e, 0x5d, 0x5b, 0x57, 0x54, 0x53, 0x54, 0x55,\n    0x51, 0x4a, 0x42, 0x3e, 0x40, 0x45, 0x48, 0x4a, 0x4e, 0x4d, 0x4c, 0x4c, 0x4b, 0x49, 0x44, 0x41,\n    0x43, 0x47, 0x4b, 0x4c, 0x4a, 0x46, 0x45, 0x44, 0x4b, 0x4a, 0x47, 0x44, 0x48, 0x4f, 0x51, 0x4d,\n    0x4a, 0x4a, 0x4a, 0x49, 0x4b, 0x4e, 0x4d, 0x4a, 0x4a, 0x49, 0x4b, 0x4f, 0x50, 0x4b, 0x44, 0x41,\n    0x41, 0x41, 0x41, 0x40, 0x3f, 0x3e, 0x3e, 0x3f, 0x43, 0x44, 0x45, 0x46, 0x48, 0x48, 0x49, 0x49,\n    0x4e, 0x4a, 0x48, 0x4b, 0x4b, 0x49, 0x4a, 0x4f, 0x65, 0x6e, 0x74, 0x6e, 0x5e, 0x50, 0x4c, 0x4d,\n    0x47, 0x38, 0x33, 0x37, 0x36, 0x3a, 0x4a, 0x56, 0x56, 0x51, 0x4a, 0x45, 0x45, 0x48, 0x4c, 0x4e,\n    0x4f, 0x51, 0x54, 0x55, 0x54, 0x50, 0x4b, 0x47, 0x49, 0x4b, 0x4d, 0x4d, 0x4d, 0x4e, 0x50, 0x53,\n    0x5a, 0x56, 0x50, 0x4a, 0x49, 0x4b, 0x4b, 0x49, 0x51, 0x53, 0x54, 0x55, 0x59, 0x5c, 0x5a, 0x56,\n    0x5b, 0x5f, 0x62, 0x5d, 0x55, 0x51, 0x53, 0x58, 0x50, 0x52, 0x56, 0x5b, 0x5c, 0x5a, 0x59, 0x5a,\n    0x59, 0x58, 0x58, 0x5a, 0x5d, 0x5e, 0x5e, 0x5c, 0x57, 0x57, 0x55, 0x53, 0x51, 0x51, 0x54, 0x57,\n    0x57, 0x54, 0x53, 0x55, 0x58, 0x58, 0x58, 0x58, 0x54, 0x54, 0x56, 0x59, 0x5b, 0x5a, 0x56, 0x52,\n    0x4f, 0x52, 0x55, 0x56, 0x59, 0x5b, 0x5b, 0x58, 0x59, 0x5d, 0x61, 0x60, 0x5f, 0x5e, 0x5a, 0x56,\n    0x54, 0x5d, 0x64, 0x64, 0x5e, 0x59, 0x54, 0x51, 0x55, 0x56, 0x56, 0x58, 0x5a, 0x5a, 0x55, 0x4f,\n    0x53, 0x53, 0x56, 0x5b, 0x5b, 0x56, 0x51, 0x4e, 0x59, 0x51, 0x4f, 0x51, 0x4f, 0x4e, 0x60, 0x78,\n    0x7b, 0x7d, 0x7c, 0x79, 0x7a, 0x7d, 0x7b, 0x75, 0x74, 0x75, 0x75, 0x75, 0x73, 0x71, 0x6f, 0x6e,\n    0x6b, 0x6b, 0x6a, 0x68, 0x67, 0x67, 0x69, 0x6a, 0x66, 0x68, 0x6b, 0x6c, 0x6c, 0x6c, 0x6b, 0x6c,\n    0x70, 0x70, 0x72, 0x74, 0x75, 0x76, 0x77, 0x77, 0x7a, 0x7a, 0x78, 0x76, 0x73, 0x70, 0x6d, 0x6c,\n    0x6e, 0x6f, 0x72, 0x74, 0x72, 0x6d, 0x66, 0x61, 0x58, 0x52, 0x4b, 0x47, 0x47, 0x47, 0x45, 0x42,\n    0x3f, 0x3e, 0x3c, 0x3c, 0x3c, 0x3d, 0x3e, 0x3f, 0x3e, 0x3e, 0x3e, 0x3f, 0x3f, 0x40, 0x40, 0x40,\n    0x3f, 0x3e, 0x3d, 0x3a, 0x37, 0x34, 0x31, 0x2f, 0x34, 0x37, 0x3a, 0x3c, 0x3f, 0x41, 0x3f, 0x3c,\n    0x37, 0x39, 0x3c, 0x40, 0x43, 0x44, 0x45, 0x44, 0x43, 0x46, 0x4b, 0x51, 0x58, 0x60, 0x68, 0x6c,\n    0x70, 0x70, 0x70, 0x70, 0x6d, 0x6a, 0x67, 0x65, 0x64, 0x62, 0x60, 0x5e, 0x5e, 0x5d, 0x5b, 0x5a,\n    0x5b, 0x5a, 0x59, 0x58, 0x58, 0x57, 0x56, 0x55, 0x55, 0x54, 0x53, 0x54, 0x53, 0x52, 0x54, 0x58,\n    0x57, 0x4f, 0x47, 0x42, 0x41, 0x43, 0x44, 0x43, 0x40, 0x45, 0x49, 0x48, 0x46, 0x45, 0x42, 0x3e,\n    0x34, 0x33, 0x3a, 0x44, 0x45, 0x3b, 0x32, 0x31, 0x32, 0x37, 0x3d, 0x41, 0x47, 0x4f, 0x55, 0x57,\n    0x4d, 0x49, 0x42, 0x3f, 0x42, 0x4c, 0x57, 0x5e, 0x4e, 0x4c, 0x51, 0x63, 0x78, 0x82, 0x7d, 0x73,\n    0x66, 0x5f, 0x5c, 0x5e, 0x59, 0x4e, 0x48, 0x49, 0x4a, 0x47, 0x4b, 0x50, 0x50, 0x51, 0x50, 0x4a,\n    0x4a, 0x4d, 0x58, 0x5f, 0x57, 0x4e, 0x48, 0x41, 0x44, 0x41, 0x3c, 0x39, 0x34, 0x30, 0x2f, 0x32,\n    0x3c, 0x3c, 0x3f, 0x4b, 0x63, 0x70, 0x5f, 0x44, 0x4a, 0x4e, 0x51, 0x4d, 0x47, 0x47, 0x50, 0x59,\n    0x52, 0x4a, 0x44, 0x43, 0x43, 0x44, 0x4a, 0x51, 0x67, 0x7d, 0x8a, 0x7e, 0x6f, 0x6c, 0x6c, 0x68,\n    0x6b, 0x60, 0x51, 0x4a, 0x4e, 0x57, 0x59, 0x57, 0x55, 0x48, 0x40, 0x40, 0x46, 0x54, 0x60, 0x60,\n    0x5b, 0x49, 0x3e, 0x46, 0x4f, 0x48, 0x37, 0x2b, 0x2a, 0x43, 0x4f, 0x56, 0x53, 0x4f, 0x39, 0x2c,\n    0x3b, 0x53, 0x5b, 0x4b, 0x56, 0x57, 0x63, 0x54, 0x41, 0x3f, 0x63, 0x76, 0x7a, 0x5c, 0x3b, 0x25,\n    0x1f, 0x3c, 0x54, 0x63, 0x68, 0x72, 0x78, 0x65, 0x46, 0x41, 0x4a, 0x4c, 0x4c, 0x34, 0x3b, 0x4e,\n    0x69, 0x76, 0x73, 0x65, 0x64, 0x66, 0x5d, 0x53, 0x4c, 0x4e, 0x46, 0x42, 0x40, 0x34, 0x34, 0x47,\n    0x57, 0x60, 0x5f, 0x5a, 0x65, 0x72, 0x61, 0x40, 0x1c, 0x2f, 0x45, 0x50, 0x4f, 0x4b, 0x49, 0x49,\n    0x4c, 0x4b, 0x49, 0x46, 0x45, 0x47, 0x4d, 0x51, 0x57, 0x50, 0x4c, 0x4e, 0x4f, 0x4b, 0x49, 0x4b,\n    0x4c, 0x4c, 0x4c, 0x4c, 0x4c, 0x4b, 0x49, 0x49, 0x4c, 0x49, 0x44, 0x3f, 0x3e, 0x41, 0x48, 0x4d,\n    0x44, 0x43, 0x41, 0x3f, 0x3e, 0x3f, 0x41, 0x43, 0x53, 0x56, 0x58, 0x54, 0x4e, 0x4c, 0x51, 0x56,\n    0x5b, 0x5b, 0x5d, 0x65, 0x6c, 0x6f, 0x6a, 0x64, 0x66, 0x65, 0x62, 0x5b, 0x55, 0x52, 0x54, 0x56,\n    0x5d, 0x55, 0x49, 0x40, 0x3f, 0x43, 0x49, 0x4d, 0x53, 0x50, 0x4e, 0x4e, 0x4e, 0x4b, 0x45, 0x40,\n    0x43, 0x45, 0x48, 0x4b, 0x4d, 0x4c, 0x4a, 0x49, 0x42, 0x42, 0x41, 0x42, 0x48, 0x4e, 0x4d, 0x48,\n    0x47, 0x4a, 0x4c, 0x4d, 0x50, 0x50, 0x4c, 0x46, 0x48, 0x47, 0x48, 0x4b, 0x4b, 0x48, 0x45, 0x45,\n    0x42, 0x3e, 0x3a, 0x39, 0x3b, 0x3e, 0x3f, 0x3e, 0x40, 0x40, 0x42, 0x44, 0x46, 0x47, 0x48, 0x48,\n    0x45, 0x43, 0x46, 0x4b, 0x4a, 0x47, 0x49, 0x4e, 0x4d, 0x58, 0x62, 0x62, 0x59, 0x51, 0x51, 0x53,\n    0x5b, 0x56, 0x5c, 0x64, 0x5f, 0x58, 0x56, 0x54, 0x56, 0x52, 0x4d, 0x47, 0x45, 0x47, 0x4b, 0x4e,\n    0x51, 0x52, 0x54, 0x55, 0x54, 0x52, 0x50, 0x4e, 0x46, 0x4a, 0x4e, 0x50, 0x50, 0x51, 0x55, 0x59,\n    0x55, 0x51, 0x4a, 0x46, 0x49, 0x50, 0x54, 0x53, 0x54, 0x55, 0x55, 0x55, 0x58, 0x5b, 0x5b, 0x59,\n    0x63, 0x68, 0x6c, 0x67, 0x5d, 0x55, 0x54, 0x57, 0x56, 0x55, 0x56, 0x5a, 0x5d, 0x5e, 0x5e, 0x5d,\n    0x59, 0x58, 0x58, 0x59, 0x5c, 0x61, 0x64, 0x66, 0x62, 0x60, 0x5f, 0x61, 0x65, 0x66, 0x64, 0x61,\n    0x5c, 0x58, 0x54, 0x56, 0x5a, 0x5d, 0x5e, 0x5d, 0x60, 0x5d, 0x59, 0x56, 0x56, 0x57, 0x5a, 0x5b,\n    0x5c, 0x5f, 0x61, 0x61, 0x60, 0x5f, 0x5c, 0x58, 0x61, 0x65, 0x67, 0x64, 0x61, 0x5f, 0x5c, 0x5a,\n    0x5a, 0x62, 0x68, 0x68, 0x64, 0x5f, 0x5c, 0x59, 0x57, 0x54, 0x50, 0x50, 0x55, 0x59, 0x5a, 0x59,\n    0x55, 0x55, 0x57, 0x5a, 0x5b, 0x57, 0x54, 0x52, 0x55, 0x4f, 0x50, 0x54, 0x51, 0x4e, 0x5b, 0x70,\n    0x77, 0x7e, 0x80, 0x7c, 0x7b, 0x7e, 0x7c, 0x75, 0x75, 0x75, 0x75, 0x75, 0x74, 0x72, 0x71, 0x6f,\n    0x6d, 0x6e, 0x6d, 0x6a, 0x67, 0x66, 0x68, 0x6a, 0x68, 0x69, 0x6b, 0x6c, 0x6c, 0x6d, 0x6f, 0x70,\n    0x73, 0x74, 0x75, 0x77, 0x78, 0x79, 0x79, 0x79, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x77, 0x71, 0x6d,\n    0x6b, 0x6d, 0x71, 0x76, 0x7a, 0x7c, 0x7c, 0x7b, 0x6f, 0x6a, 0x64, 0x5f, 0x5b, 0x58, 0x54, 0x52,\n    0x4d, 0x4b, 0x47, 0x44, 0x40, 0x3f, 0x3e, 0x3e, 0x45, 0x45, 0x45, 0x45, 0x46, 0x46, 0x47, 0x47,\n    0x45, 0x43, 0x41, 0x3f, 0x3d, 0x3e, 0x40, 0x42, 0x43, 0x49, 0x4b, 0x49, 0x49, 0x4b, 0x47, 0x41,\n    0x4a, 0x4c, 0x4f, 0x51, 0x52, 0x51, 0x4f, 0x4d, 0x4e, 0x50, 0x53, 0x58, 0x5e, 0x65, 0x6b, 0x6f,\n    0x6f, 0x6f, 0x6f, 0x6e, 0x6c, 0x69, 0x66, 0x64, 0x63, 0x61, 0x5f, 0x5d, 0x5d, 0x5c, 0x5a, 0x59,\n    0x5a, 0x59, 0x58, 0x57, 0x58, 0x57, 0x56, 0x54, 0x55, 0x54, 0x53, 0x53, 0x54, 0x54, 0x56, 0x59,\n    0x53, 0x4b, 0x45, 0x46, 0x46, 0x43, 0x42, 0x44, 0x41, 0x44, 0x46, 0x44, 0x43, 0x42, 0x3f, 0x3b,\n    0x35, 0x36, 0x3e, 0x4a, 0x4b, 0x3f, 0x36, 0x34, 0x31, 0x34, 0x3b, 0x45, 0x4f, 0x51, 0x4a, 0x42,\n    0x40, 0x47, 0x4f, 0x56, 0x5a, 0x5b, 0x58, 0x55, 0x4a, 0x4f, 0x5f, 0x72, 0x79, 0x72, 0x6b, 0x68,\n    0x5c, 0x55, 0x56, 0x60, 0x61, 0x55, 0x4a, 0x47, 0x47, 0x44, 0x48, 0x4e, 0x4e, 0x51, 0x51, 0x4b,\n    0x49, 0x4d, 0x58, 0x5a, 0x51, 0x4d, 0x4d, 0x49, 0x41, 0x3e, 0x3a, 0x36, 0x32, 0x31, 0x33, 0x36,\n    0x3e, 0x3c, 0x38, 0x40, 0x59, 0x6c, 0x61, 0x4a, 0x46, 0x4c, 0x50, 0x50, 0x4b, 0x49, 0x4c, 0x51,\n    0x4f, 0x4a, 0x47, 0x47, 0x47, 0x46, 0x49, 0x4d, 0x5b, 0x6d, 0x79, 0x74, 0x6c, 0x6d, 0x70, 0x70,\n    0x68, 0x5b, 0x4b, 0x46, 0x4b, 0x51, 0x50, 0x4b, 0x39, 0x33, 0x38, 0x44, 0x4c, 0x55, 0x5d, 0x5d,\n    0x5f, 0x50, 0x49, 0x4b, 0x49, 0x41, 0x3a, 0x36, 0x32, 0x4e, 0x5c, 0x5a, 0x55, 0x4f, 0x3d, 0x2e,\n    0x40, 0x58, 0x5c, 0x54, 0x61, 0x5c, 0x59, 0x4b, 0x49, 0x53, 0x7a, 0x82, 0x76, 0x4d, 0x31, 0x2a,\n    0x24, 0x4b, 0x61, 0x64, 0x63, 0x6c, 0x71, 0x5e, 0x46, 0x45, 0x49, 0x46, 0x46, 0x2e, 0x39, 0x55,\n    0x71, 0x74, 0x70, 0x6c, 0x6d, 0x64, 0x51, 0x45, 0x47, 0x4e, 0x4e, 0x49, 0x42, 0x36, 0x3a, 0x4c,\n    0x50, 0x58, 0x62, 0x6d, 0x77, 0x72, 0x58, 0x3b, 0x28, 0x38, 0x4c, 0x58, 0x5c, 0x5a, 0x52, 0x4a,\n    0x50, 0x4e, 0x4c, 0x4b, 0x4c, 0x4e, 0x50, 0x52, 0x4e, 0x4a, 0x4a, 0x4d, 0x4c, 0x47, 0x47, 0x4b,\n    0x54, 0x54, 0x54, 0x53, 0x52, 0x51, 0x50, 0x4f, 0x4d, 0x4a, 0x45, 0x42, 0x41, 0x43, 0x46, 0x49,\n    0x48, 0x48, 0x46, 0x44, 0x41, 0x3f, 0x40, 0x42, 0x4b, 0x50, 0x55, 0x54, 0x51, 0x50, 0x54, 0x58,\n    0x5f, 0x60, 0x64, 0x6b, 0x72, 0x72, 0x6a, 0x63, 0x67, 0x64, 0x5d, 0x56, 0x51, 0x4f, 0x4f, 0x50,\n    0x58, 0x55, 0x4e, 0x47, 0x44, 0x45, 0x4b, 0x4f, 0x54, 0x51, 0x4f, 0x4e, 0x4f, 0x4d, 0x49, 0x45,\n    0x3f, 0x3f, 0x41, 0x45, 0x4a, 0x4c, 0x4d, 0x4c, 0x47, 0x45, 0x43, 0x45, 0x4b, 0x4f, 0x4e, 0x4a,\n    0x49, 0x4d, 0x51, 0x53, 0x53, 0x50, 0x48, 0x40, 0x41, 0x42, 0x46, 0x4b, 0x4c, 0x49, 0x48, 0x49,\n    0x41, 0x3c, 0x36, 0x34, 0x38, 0x3d, 0x40, 0x41, 0x3c, 0x3e, 0x40, 0x43, 0x46, 0x48, 0x49, 0x4a,\n    0x52, 0x50, 0x50, 0x52, 0x50, 0x4d, 0x51, 0x58, 0x4f, 0x4d, 0x49, 0x44, 0x42, 0x45, 0x4c, 0x51,\n    0x61, 0x64, 0x6c, 0x70, 0x69, 0x61, 0x57, 0x49, 0x4d, 0x4d, 0x4b, 0x49, 0x48, 0x48, 0x4b, 0x4d,\n    0x53, 0x52, 0x51, 0x50, 0x4f, 0x4f, 0x4f, 0x4f, 0x4c, 0x50, 0x54, 0x54, 0x52, 0x51, 0x51, 0x53,\n    0x4e, 0x4f, 0x50, 0x52, 0x57, 0x5a, 0x59, 0x54, 0x56, 0x56, 0x55, 0x53, 0x55, 0x5a, 0x5c, 0x5b,\n    0x5e, 0x63, 0x66, 0x62, 0x5a, 0x54, 0x55, 0x58, 0x58, 0x55, 0x53, 0x55, 0x5b, 0x5f, 0x5f, 0x5c,\n    0x5c, 0x5a, 0x58, 0x58, 0x5c, 0x64, 0x6d, 0x73, 0x74, 0x6e, 0x69, 0x6d, 0x75, 0x77, 0x70, 0x67,\n    0x5d, 0x5a, 0x57, 0x59, 0x5e, 0x62, 0x5f, 0x5c, 0x5d, 0x5d, 0x5d, 0x5d, 0x5c, 0x5c, 0x5b, 0x5b,\n    0x65, 0x6b, 0x70, 0x70, 0x6d, 0x69, 0x65, 0x61, 0x6b, 0x6c, 0x6b, 0x67, 0x63, 0x61, 0x5e, 0x5a,\n    0x5f, 0x65, 0x6a, 0x6a, 0x68, 0x67, 0x67, 0x66, 0x64, 0x5e, 0x58, 0x57, 0x5a, 0x5f, 0x63, 0x65,\n    0x56, 0x54, 0x55, 0x59, 0x5c, 0x5c, 0x5c, 0x5e, 0x55, 0x53, 0x53, 0x54, 0x54, 0x55, 0x5c, 0x65,\n    0x6e, 0x7a, 0x81, 0x7d, 0x7a, 0x7b, 0x7a, 0x75, 0x77, 0x77, 0x77, 0x76, 0x75, 0x74, 0x72, 0x71,\n    0x6e, 0x6e, 0x6d, 0x6a, 0x67, 0x66, 0x67, 0x69, 0x6c, 0x6b, 0x6b, 0x6a, 0x6b, 0x6d, 0x71, 0x74,\n    0x75, 0x76, 0x78, 0x7a, 0x7b, 0x7c, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7e, 0x7f, 0x7b, 0x75, 0x70,\n    0x71, 0x71, 0x71, 0x73, 0x77, 0x7b, 0x7d, 0x7e, 0x82, 0x82, 0x7f, 0x79, 0x72, 0x6b, 0x68, 0x66,\n    0x6b, 0x69, 0x66, 0x62, 0x5f, 0x5c, 0x5b, 0x5b, 0x5a, 0x59, 0x58, 0x55, 0x54, 0x52, 0x51, 0x51,\n    0x52, 0x52, 0x51, 0x50, 0x51, 0x53, 0x57, 0x5a, 0x57, 0x5d, 0x5f, 0x5c, 0x5c, 0x5f, 0x5d, 0x58,\n    0x59, 0x5a, 0x5b, 0x5c, 0x5b, 0x59, 0x56, 0x55, 0x56, 0x57, 0x59, 0x5c, 0x61, 0x66, 0x6a, 0x6c,\n    0x6c, 0x6c, 0x6c, 0x6b, 0x6a, 0x67, 0x65, 0x64, 0x61, 0x60, 0x5e, 0x5c, 0x5c, 0x5b, 0x5a, 0x58,\n    0x5a, 0x59, 0x57, 0x57, 0x57, 0x57, 0x56, 0x55, 0x54, 0x54, 0x54, 0x54, 0x55, 0x56, 0x57, 0x57,\n    0x49, 0x43, 0x42, 0x47, 0x47, 0x42, 0x3f, 0x41, 0x41, 0x42, 0x41, 0x3f, 0x3e, 0x3e, 0x3d, 0x3a,\n    0x38, 0x39, 0x41, 0x4d, 0x4e, 0x43, 0x39, 0x37, 0x30, 0x2e, 0x34, 0x44, 0x56, 0x5c, 0x54, 0x4a,\n    0x4b, 0x49, 0x4a, 0x50, 0x5c, 0x65, 0x61, 0x59, 0x59, 0x5a, 0x64, 0x6f, 0x6c, 0x61, 0x5e, 0x64,\n    0x5a, 0x52, 0x52, 0x5d, 0x64, 0x5e, 0x54, 0x50, 0x48, 0x44, 0x48, 0x4d, 0x4d, 0x51, 0x52, 0x4d,\n    0x4b, 0x50, 0x53, 0x4b, 0x43, 0x48, 0x4a, 0x42, 0x3e, 0x3d, 0x39, 0x34, 0x31, 0x31, 0x33, 0x34,\n    0x37, 0x37, 0x33, 0x33, 0x43, 0x58, 0x5d, 0x56, 0x49, 0x4c, 0x50, 0x52, 0x50, 0x4c, 0x47, 0x43,\n    0x49, 0x4a, 0x4b, 0x4b, 0x4a, 0x49, 0x4c, 0x51, 0x53, 0x5b, 0x65, 0x6b, 0x6e, 0x6f, 0x70, 0x71,\n    0x65, 0x57, 0x49, 0x46, 0x4b, 0x4e, 0x4a, 0x44, 0x35, 0x38, 0x47, 0x55, 0x59, 0x5c, 0x60, 0x60,\n    0x59, 0x46, 0x3f, 0x42, 0x3f, 0x40, 0x46, 0x47, 0x46, 0x4d, 0x59, 0x5e, 0x53, 0x33, 0x26, 0x2f,\n    0x43, 0x5d, 0x5b, 0x5e, 0x57, 0x50, 0x49, 0x4a, 0x58, 0x66, 0x87, 0x80, 0x67, 0x39, 0x28, 0x33,\n    0x45, 0x67, 0x6e, 0x63, 0x5e, 0x65, 0x6a, 0x5a, 0x4b, 0x47, 0x46, 0x3f, 0x40, 0x2c, 0x3b, 0x5b,\n    0x71, 0x7d, 0x7d, 0x74, 0x6d, 0x60, 0x4a, 0x3b, 0x49, 0x50, 0x50, 0x43, 0x34, 0x2f, 0x3f, 0x57,\n    0x5e, 0x58, 0x56, 0x5e, 0x68, 0x65, 0x56, 0x47, 0x38, 0x40, 0x49, 0x4c, 0x4e, 0x51, 0x54, 0x56,\n    0x4c, 0x4c, 0x4f, 0x55, 0x59, 0x59, 0x55, 0x50, 0x45, 0x45, 0x48, 0x4b, 0x4b, 0x4a, 0x4b, 0x4e,\n    0x55, 0x59, 0x5a, 0x58, 0x57, 0x57, 0x56, 0x54, 0x51, 0x4f, 0x4e, 0x4f, 0x51, 0x50, 0x4b, 0x46,\n    0x49, 0x4a, 0x4a, 0x48, 0x45, 0x43, 0x44, 0x45, 0x49, 0x4d, 0x52, 0x55, 0x55, 0x56, 0x59, 0x5c,\n    0x65, 0x64, 0x64, 0x66, 0x69, 0x68, 0x65, 0x61, 0x63, 0x5e, 0x57, 0x52, 0x50, 0x4f, 0x4d, 0x4b,\n    0x47, 0x4b, 0x4e, 0x4f, 0x4d, 0x4c, 0x4e, 0x50, 0x52, 0x50, 0x4e, 0x4e, 0x4f, 0x50, 0x4e, 0x4d,\n    0x41, 0x40, 0x41, 0x44, 0x49, 0x4d, 0x4f, 0x4f, 0x51, 0x4c, 0x47, 0x46, 0x48, 0x4c, 0x4d, 0x4c,\n    0x4d, 0x52, 0x56, 0x57, 0x54, 0x4f, 0x47, 0x41, 0x3f, 0x44, 0x4d, 0x54, 0x54, 0x4f, 0x4c, 0x4c,\n    0x4a, 0x45, 0x3f, 0x3b, 0x3b, 0x3c, 0x3d, 0x3e, 0x3c, 0x3d, 0x40, 0x43, 0x46, 0x48, 0x4a, 0x4b,\n    0x4f, 0x4a, 0x48, 0x48, 0x48, 0x49, 0x50, 0x59, 0x69, 0x62, 0x57, 0x4e, 0x4a, 0x4b, 0x4c, 0x4e,\n    0x54, 0x50, 0x4d, 0x49, 0x47, 0x4e, 0x4f, 0x46, 0x44, 0x46, 0x48, 0x4a, 0x4b, 0x4b, 0x4c, 0x4d,\n    0x50, 0x4f, 0x4c, 0x4a, 0x49, 0x49, 0x49, 0x4a, 0x50, 0x52, 0x55, 0x55, 0x54, 0x52, 0x52, 0x53,\n    0x56, 0x56, 0x55, 0x54, 0x56, 0x58, 0x57, 0x54, 0x56, 0x56, 0x55, 0x52, 0x54, 0x58, 0x5b, 0x5b,\n    0x57, 0x5a, 0x5b, 0x59, 0x55, 0x55, 0x58, 0x5d, 0x59, 0x57, 0x54, 0x54, 0x5a, 0x5f, 0x5e, 0x5a,\n    0x5e, 0x5d, 0x5c, 0x5b, 0x5f, 0x67, 0x73, 0x7c, 0x79, 0x70, 0x69, 0x6a, 0x71, 0x74, 0x6d, 0x65,\n    0x5d, 0x5e, 0x60, 0x63, 0x68, 0x6a, 0x65, 0x5e, 0x5e, 0x5e, 0x5f, 0x60, 0x61, 0x62, 0x63, 0x63,\n    0x66, 0x6f, 0x77, 0x79, 0x78, 0x76, 0x72, 0x6f, 0x71, 0x71, 0x6d, 0x69, 0x66, 0x65, 0x62, 0x5e,\n    0x62, 0x66, 0x67, 0x65, 0x65, 0x69, 0x6d, 0x6f, 0x6a, 0x65, 0x60, 0x5e, 0x5d, 0x5d, 0x5e, 0x60,\n    0x5e, 0x5b, 0x59, 0x5b, 0x5d, 0x5d, 0x5e, 0x5f, 0x5c, 0x5a, 0x55, 0x51, 0x54, 0x5a, 0x5d, 0x5d,\n    0x65, 0x73, 0x7f, 0x81, 0x7e, 0x7d, 0x7c, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x76, 0x75, 0x73, 0x73,\n    0x6e, 0x6d, 0x6b, 0x69, 0x67, 0x66, 0x67, 0x68, 0x6e, 0x6d, 0x6c, 0x6b, 0x6b, 0x6f, 0x73, 0x77,\n    0x78, 0x79, 0x7b, 0x7e, 0x7f, 0x80, 0x7f, 0x7f, 0x7d, 0x7d, 0x7d, 0x7e, 0x7f, 0x7d, 0x79, 0x75,\n    0x74, 0x73, 0x72, 0x73, 0x76, 0x7a, 0x7c, 0x7c, 0x82, 0x86, 0x88, 0x87, 0x81, 0x7d, 0x7c, 0x7d,\n    0x75, 0x74, 0x74, 0x73, 0x73, 0x72, 0x72, 0x73, 0x71, 0x70, 0x6e, 0x6c, 0x6a, 0x69, 0x69, 0x69,\n    0x67, 0x66, 0x66, 0x66, 0x65, 0x63, 0x62, 0x61, 0x5e, 0x63, 0x67, 0x69, 0x6b, 0x6e, 0x6f, 0x6e,\n    0x61, 0x61, 0x61, 0x61, 0x60, 0x5f, 0x5d, 0x5c, 0x5c, 0x5c, 0x5d, 0x60, 0x63, 0x66, 0x68, 0x68,\n    0x68, 0x68, 0x68, 0x68, 0x67, 0x65, 0x63, 0x62, 0x60, 0x5e, 0x5c, 0x5b, 0x5b, 0x5a, 0x59, 0x58,\n    0x5a, 0x58, 0x57, 0x57, 0x58, 0x57, 0x56, 0x55, 0x53, 0x54, 0x55, 0x55, 0x55, 0x56, 0x54, 0x51,\n    0x44, 0x41, 0x42, 0x47, 0x47, 0x42, 0x3e, 0x3f, 0x3d, 0x3d, 0x3c, 0x3a, 0x3b, 0x3e, 0x3e, 0x3c,\n    0x39, 0x39, 0x42, 0x4f, 0x50, 0x45, 0x3b, 0x39, 0x3c, 0x38, 0x3a, 0x47, 0x58, 0x62, 0x64, 0x64,\n    0x61, 0x63, 0x5f, 0x53, 0x4b, 0x4d, 0x52, 0x55, 0x53, 0x4f, 0x54, 0x62, 0x66, 0x5e, 0x59, 0x5a,\n    0x5a, 0x53, 0x4e, 0x53, 0x59, 0x5b, 0x59, 0x56, 0x4b, 0x46, 0x48, 0x4c, 0x4c, 0x4f, 0x51, 0x4d,\n    0x4d, 0x51, 0x50, 0x45, 0x3e, 0x47, 0x4b, 0x41, 0x3f, 0x3f, 0x3a, 0x33, 0x2e, 0x2e, 0x2f, 0x2f,\n    0x33, 0x37, 0x37, 0x36, 0x3d, 0x4d, 0x5a, 0x60, 0x50, 0x4f, 0x4f, 0x50, 0x51, 0x4c, 0x43, 0x3b,\n    0x41, 0x46, 0x4a, 0x49, 0x47, 0x48, 0x4d, 0x53, 0x53, 0x55, 0x5d, 0x69, 0x71, 0x71, 0x6e, 0x6c,\n    0x63, 0x57, 0x4c, 0x4c, 0x51, 0x52, 0x4c, 0x47, 0x3f, 0x3d, 0x41, 0x43, 0x42, 0x4b, 0x59, 0x5e,\n    0x51, 0x3b, 0x39, 0x45, 0x4a, 0x4d, 0x4c, 0x41, 0x44, 0x4e, 0x5b, 0x57, 0x4b, 0x2c, 0x26, 0x30,\n    0x42, 0x59, 0x55, 0x57, 0x3f, 0x3c, 0x43, 0x54, 0x60, 0x6e, 0x88, 0x77, 0x58, 0x2b, 0x26, 0x40,\n    0x67, 0x79, 0x6d, 0x5f, 0x62, 0x6b, 0x6e, 0x62, 0x4c, 0x43, 0x43, 0x3e, 0x3d, 0x2f, 0x44, 0x62,\n    0x74, 0x83, 0x7f, 0x6f, 0x6d, 0x6a, 0x51, 0x35, 0x3b, 0x3e, 0x3a, 0x2b, 0x1f, 0x29, 0x48, 0x64,\n    0x69, 0x64, 0x60, 0x67, 0x79, 0x7f, 0x6d, 0x54, 0x41, 0x40, 0x42, 0x49, 0x50, 0x55, 0x58, 0x5a,\n    0x4f, 0x4f, 0x51, 0x59, 0x60, 0x5f, 0x56, 0x4d, 0x45, 0x47, 0x48, 0x48, 0x4a, 0x4d, 0x4d, 0x4b,\n    0x4f, 0x54, 0x58, 0x57, 0x56, 0x56, 0x55, 0x52, 0x52, 0x50, 0x51, 0x59, 0x61, 0x61, 0x57, 0x4c,\n    0x41, 0x44, 0x46, 0x45, 0x43, 0x42, 0x44, 0x46, 0x54, 0x55, 0x56, 0x56, 0x56, 0x57, 0x59, 0x5a,\n    0x62, 0x61, 0x60, 0x5e, 0x5d, 0x5d, 0x5e, 0x5f, 0x60, 0x5c, 0x58, 0x55, 0x53, 0x50, 0x4a, 0x46,\n    0x3e, 0x43, 0x4a, 0x50, 0x54, 0x54, 0x53, 0x52, 0x50, 0x51, 0x51, 0x52, 0x52, 0x52, 0x52, 0x51,\n    0x48, 0x47, 0x47, 0x49, 0x4d, 0x4f, 0x50, 0x51, 0x51, 0x4d, 0x49, 0x47, 0x48, 0x48, 0x49, 0x4a,\n    0x4d, 0x53, 0x57, 0x57, 0x54, 0x52, 0x4f, 0x4c, 0x4d, 0x52, 0x5a, 0x5e, 0x5b, 0x52, 0x4d, 0x4c,\n    0x4d, 0x4c, 0x49, 0x45, 0x40, 0x3c, 0x3b, 0x3b, 0x3d, 0x3e, 0x40, 0x42, 0x44, 0x45, 0x46, 0x47,\n    0x49, 0x48, 0x4b, 0x54, 0x5a, 0x5d, 0x64, 0x6c, 0x72, 0x73, 0x75, 0x76, 0x76, 0x78, 0x7b, 0x7d,\n    0x70, 0x5f, 0x50, 0x49, 0x44, 0x47, 0x4a, 0x45, 0x45, 0x47, 0x49, 0x4c, 0x4e, 0x4d, 0x4c, 0x4b,\n    0x49, 0x49, 0x49, 0x48, 0x48, 0x48, 0x48, 0x48, 0x50, 0x50, 0x51, 0x52, 0x54, 0x56, 0x58, 0x59,\n    0x5d, 0x5b, 0x55, 0x4e, 0x4c, 0x50, 0x52, 0x53, 0x53, 0x55, 0x55, 0x54, 0x54, 0x57, 0x59, 0x58,\n    0x5f, 0x61, 0x63, 0x63, 0x61, 0x60, 0x60, 0x61, 0x62, 0x64, 0x64, 0x62, 0x62, 0x62, 0x60, 0x5b,\n    0x5c, 0x5e, 0x5e, 0x5e, 0x60, 0x66, 0x6f, 0x77, 0x73, 0x6f, 0x6b, 0x6d, 0x71, 0x72, 0x6d, 0x68,\n    0x61, 0x63, 0x64, 0x66, 0x6a, 0x6e, 0x6c, 0x67, 0x67, 0x64, 0x61, 0x61, 0x64, 0x68, 0x6b, 0x6d,\n    0x67, 0x6d, 0x74, 0x78, 0x7a, 0x7b, 0x77, 0x73, 0x6f, 0x70, 0x6d, 0x69, 0x66, 0x66, 0x65, 0x64,\n    0x62, 0x63, 0x60, 0x5b, 0x5c, 0x63, 0x6b, 0x70, 0x5c, 0x5a, 0x59, 0x5a, 0x59, 0x58, 0x5c, 0x61,\n    0x61, 0x5e, 0x5d, 0x5e, 0x5f, 0x5e, 0x5e, 0x5f, 0x5f, 0x5b, 0x55, 0x53, 0x57, 0x5b, 0x5b, 0x58,\n    0x5a, 0x66, 0x76, 0x80, 0x83, 0x81, 0x7f, 0x7e, 0x7c, 0x7b, 0x7a, 0x79, 0x77, 0x76, 0x74, 0x74,\n    0x6f, 0x6d, 0x6b, 0x69, 0x69, 0x69, 0x69, 0x69, 0x6c, 0x6d, 0x6e, 0x6e, 0x6f, 0x72, 0x76, 0x78,\n    0x7a, 0x7b, 0x7e, 0x81, 0x83, 0x83, 0x83, 0x83, 0x80, 0x7f, 0x7f, 0x7e, 0x7e, 0x7d, 0x7b, 0x7a,\n    0x74, 0x72, 0x72, 0x73, 0x77, 0x7a, 0x7d, 0x7e, 0x7c, 0x7f, 0x83, 0x84, 0x83, 0x83, 0x84, 0x85,\n    0x8c, 0x8c, 0x8e, 0x8f, 0x90, 0x90, 0x91, 0x91, 0x89, 0x87, 0x82, 0x7d, 0x78, 0x74, 0x72, 0x71,\n    0x6a, 0x68, 0x65, 0x63, 0x61, 0x5e, 0x5a, 0x56, 0x59, 0x5b, 0x61, 0x67, 0x69, 0x68, 0x69, 0x6c,\n    0x66, 0x67, 0x67, 0x67, 0x66, 0x65, 0x64, 0x64, 0x60, 0x60, 0x61, 0x63, 0x66, 0x68, 0x68, 0x67,\n    0x66, 0x66, 0x66, 0x65, 0x64, 0x62, 0x61, 0x60, 0x5e, 0x5c, 0x5b, 0x5a, 0x5a, 0x5a, 0x59, 0x58,\n    0x5a, 0x59, 0x58, 0x57, 0x58, 0x58, 0x57, 0x56, 0x52, 0x55, 0x56, 0x55, 0x55, 0x54, 0x4e, 0x47,\n    0x44, 0x43, 0x43, 0x44, 0x43, 0x41, 0x3e, 0x3d, 0x3a, 0x3a, 0x3a, 0x39, 0x3b, 0x3f, 0x3f, 0x3c,\n    0x38, 0x3a, 0x44, 0x51, 0x53, 0x47, 0x3b, 0x38, 0x41, 0x43, 0x48, 0x4e, 0x50, 0x54, 0x5c, 0x65,\n    0x7c, 0x8f, 0x9b, 0x8f, 0x77, 0x65, 0x5d, 0x5b, 0x59, 0x54, 0x56, 0x60, 0x63, 0x5a, 0x50, 0x4b,\n    0x56, 0x55, 0x51, 0x4c, 0x4c, 0x4f, 0x51, 0x4f, 0x49, 0x44, 0x44, 0x47, 0x48, 0x4c, 0x50, 0x4d,\n    0x45, 0x46, 0x48, 0x44, 0x3f, 0x45, 0x49, 0x42, 0x43, 0x42, 0x3c, 0x33, 0x2e, 0x2f, 0x31, 0x30,\n    0x33, 0x33, 0x34, 0x35, 0x3a, 0x42, 0x4e, 0x57, 0x56, 0x51, 0x4d, 0x4c, 0x4e, 0x4d, 0x48, 0x43,\n    0x3e, 0x42, 0x46, 0x45, 0x43, 0x46, 0x4d, 0x52, 0x54, 0x59, 0x5d, 0x60, 0x65, 0x6b, 0x6d, 0x6a,\n    0x64, 0x59, 0x52, 0x54, 0x59, 0x57, 0x50, 0x4b, 0x3c, 0x41, 0x49, 0x4c, 0x4c, 0x57, 0x60, 0x5e,\n    0x4f, 0x37, 0x38, 0x4a, 0x50, 0x51, 0x49, 0x35, 0x3e, 0x55, 0x65, 0x52, 0x4b, 0x39, 0x36, 0x31,\n    0x3e, 0x4a, 0x48, 0x42, 0x34, 0x3a, 0x52, 0x5c, 0x65, 0x74, 0x8a, 0x75, 0x55, 0x29, 0x2b, 0x50,\n    0x69, 0x73, 0x63, 0x5c, 0x66, 0x6b, 0x6b, 0x62, 0x4e, 0x40, 0x43, 0x3f, 0x39, 0x2f, 0x4c, 0x67,\n    0x6a, 0x6d, 0x68, 0x67, 0x6e, 0x66, 0x4a, 0x33, 0x29, 0x26, 0x22, 0x1c, 0x1c, 0x33, 0x56, 0x6d,\n    0x67, 0x61, 0x5a, 0x5e, 0x6d, 0x75, 0x64, 0x4c, 0x3a, 0x31, 0x34, 0x49, 0x5c, 0x61, 0x5e, 0x5d,\n    0x5a, 0x55, 0x53, 0x57, 0x5e, 0x5e, 0x54, 0x4a, 0x4b, 0x4b, 0x48, 0x45, 0x48, 0x4d, 0x4c, 0x45,\n    0x49, 0x50, 0x55, 0x55, 0x54, 0x55, 0x53, 0x50, 0x4f, 0x4b, 0x4c, 0x57, 0x64, 0x68, 0x5f, 0x54,\n    0x46, 0x4a, 0x4e, 0x4f, 0x4e, 0x4e, 0x51, 0x54, 0x5f, 0x5c, 0x58, 0x56, 0x55, 0x56, 0x57, 0x58,\n    0x5a, 0x5b, 0x5c, 0x5a, 0x58, 0x58, 0x5b, 0x5e, 0x5e, 0x5c, 0x5a, 0x58, 0x54, 0x4d, 0x45, 0x3f,\n    0x41, 0x43, 0x47, 0x4e, 0x55, 0x58, 0x58, 0x56, 0x53, 0x54, 0x56, 0x56, 0x55, 0x54, 0x53, 0x52,\n    0x4c, 0x4c, 0x4c, 0x4d, 0x4e, 0x4f, 0x4f, 0x4f, 0x4c, 0x4b, 0x4b, 0x4d, 0x4c, 0x4a, 0x49, 0x49,\n    0x4a, 0x50, 0x55, 0x55, 0x54, 0x56, 0x58, 0x5a, 0x60, 0x62, 0x65, 0x63, 0x5a, 0x50, 0x4b, 0x4b,\n    0x40, 0x44, 0x47, 0x46, 0x41, 0x3d, 0x3c, 0x3c, 0x3e, 0x3e, 0x3f, 0x40, 0x41, 0x41, 0x41, 0x41,\n    0x43, 0x43, 0x48, 0x50, 0x51, 0x4b, 0x46, 0x46, 0x5c, 0x62, 0x69, 0x6c, 0x6e, 0x75, 0x80, 0x89,\n    0x85, 0x6f, 0x63, 0x62, 0x5c, 0x53, 0x4d, 0x48, 0x4c, 0x4c, 0x4d, 0x4f, 0x50, 0x4e, 0x4b, 0x48,\n    0x43, 0x45, 0x48, 0x4a, 0x4c, 0x4c, 0x4c, 0x4b, 0x54, 0x52, 0x50, 0x50, 0x52, 0x56, 0x59, 0x5b,\n    0x57, 0x59, 0x57, 0x53, 0x50, 0x50, 0x4f, 0x4e, 0x50, 0x54, 0x56, 0x56, 0x56, 0x58, 0x57, 0x56,\n    0x5e, 0x62, 0x66, 0x68, 0x65, 0x5e, 0x57, 0x52, 0x6e, 0x75, 0x78, 0x73, 0x6c, 0x67, 0x63, 0x5e,\n    0x58, 0x5b, 0x5e, 0x5f, 0x5f, 0x62, 0x68, 0x6d, 0x61, 0x63, 0x68, 0x6c, 0x6e, 0x6d, 0x68, 0x65,\n    0x63, 0x63, 0x60, 0x5e, 0x63, 0x6b, 0x6e, 0x6d, 0x6a, 0x68, 0x68, 0x69, 0x6c, 0x6e, 0x6d, 0x6b,\n    0x69, 0x6c, 0x6f, 0x73, 0x77, 0x79, 0x74, 0x6d, 0x6a, 0x6c, 0x6c, 0x67, 0x64, 0x64, 0x67, 0x68,\n    0x62, 0x5f, 0x59, 0x53, 0x54, 0x5c, 0x67, 0x6d, 0x66, 0x61, 0x5d, 0x58, 0x52, 0x4e, 0x51, 0x57,\n    0x59, 0x58, 0x5a, 0x5f, 0x63, 0x64, 0x65, 0x66, 0x5c, 0x57, 0x54, 0x58, 0x5c, 0x5b, 0x58, 0x57,\n    0x4e, 0x58, 0x69, 0x7a, 0x82, 0x80, 0x7d, 0x7d, 0x7d, 0x7d, 0x7b, 0x7a, 0x78, 0x76, 0x75, 0x74,\n    0x72, 0x6f, 0x6c, 0x6b, 0x6c, 0x6d, 0x6d, 0x6c, 0x6b, 0x6d, 0x6f, 0x71, 0x73, 0x75, 0x77, 0x79,\n    0x7a, 0x7c, 0x7f, 0x82, 0x84, 0x85, 0x84, 0x84, 0x83, 0x82, 0x80, 0x7f, 0x7d, 0x7d, 0x7d, 0x7d,\n    0x78, 0x75, 0x72, 0x71, 0x73, 0x77, 0x7b, 0x7d, 0x7f, 0x7f, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7c,\n    0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x77, 0x75, 0x72, 0x6f, 0x6c, 0x6a, 0x69, 0x69,\n    0x68, 0x63, 0x5e, 0x5c, 0x5e, 0x5f, 0x5e, 0x5d, 0x63, 0x64, 0x69, 0x70, 0x70, 0x6b, 0x6a, 0x6d,\n    0x6c, 0x6c, 0x6d, 0x6d, 0x6c, 0x6b, 0x69, 0x68, 0x62, 0x62, 0x63, 0x66, 0x69, 0x6a, 0x69, 0x67,\n    0x65, 0x65, 0x64, 0x63, 0x62, 0x60, 0x5f, 0x5e, 0x5d, 0x5b, 0x5a, 0x59, 0x5a, 0x5a, 0x5a, 0x59,\n    0x5a, 0x59, 0x58, 0x58, 0x58, 0x58, 0x57, 0x56, 0x52, 0x56, 0x57, 0x55, 0x54, 0x51, 0x49, 0x40,\n    0x42, 0x42, 0x41, 0x3e, 0x3d, 0x3c, 0x3b, 0x39, 0x39, 0x3a, 0x3a, 0x3a, 0x3d, 0x3f, 0x3d, 0x3a,\n    0x38, 0x3a, 0x46, 0x55, 0x56, 0x49, 0x3c, 0x38, 0x33, 0x40, 0x4e, 0x50, 0x46, 0x3e, 0x46, 0x53,\n    0x59, 0x65, 0x6f, 0x70, 0x71, 0x72, 0x6f, 0x68, 0x58, 0x52, 0x50, 0x52, 0x52, 0x4e, 0x4c, 0x4e,\n    0x52, 0x59, 0x58, 0x4e, 0x47, 0x47, 0x48, 0x45, 0x43, 0x3e, 0x3f, 0x42, 0x44, 0x4a, 0x50, 0x4e,\n    0x48, 0x46, 0x4c, 0x4e, 0x49, 0x48, 0x4a, 0x48, 0x45, 0x44, 0x3d, 0x33, 0x2f, 0x32, 0x35, 0x36,\n    0x3d, 0x38, 0x35, 0x39, 0x3d, 0x41, 0x49, 0x50, 0x59, 0x52, 0x4b, 0x48, 0x4b, 0x4f, 0x51, 0x50,\n    0x40, 0x42, 0x43, 0x42, 0x42, 0x46, 0x4d, 0x51, 0x52, 0x5a, 0x5a, 0x51, 0x52, 0x60, 0x6a, 0x6a,\n    0x65, 0x5c, 0x56, 0x59, 0x5c, 0x58, 0x50, 0x4b, 0x2e, 0x36, 0x42, 0x48, 0x4f, 0x5e, 0x66, 0x60,\n    0x4e, 0x33, 0x30, 0x3e, 0x40, 0x46, 0x47, 0x3a, 0x49, 0x57, 0x67, 0x5b, 0x56, 0x3a, 0x34, 0x33,\n    0x3c, 0x3b, 0x3b, 0x30, 0x38, 0x47, 0x68, 0x5e, 0x6a, 0x79, 0x8e, 0x79, 0x5a, 0x2f, 0x33, 0x5b,\n    0x68, 0x75, 0x6b, 0x69, 0x71, 0x6c, 0x68, 0x64, 0x55, 0x42, 0x45, 0x3f, 0x34, 0x2c, 0x4f, 0x6a,\n    0x7b, 0x74, 0x73, 0x7b, 0x70, 0x48, 0x2b, 0x2a, 0x28, 0x22, 0x20, 0x21, 0x2a, 0x46, 0x63, 0x6f,\n    0x6a, 0x63, 0x60, 0x65, 0x69, 0x60, 0x4b, 0x39, 0x27, 0x1d, 0x22, 0x3a, 0x50, 0x58, 0x5e, 0x66,\n    0x5d, 0x5d, 0x5f, 0x62, 0x62, 0x60, 0x5e, 0x5e, 0x5c, 0x52, 0x4c, 0x4d, 0x4e, 0x4c, 0x4b, 0x4d,\n    0x51, 0x51, 0x54, 0x59, 0x5a, 0x58, 0x57, 0x57, 0x52, 0x50, 0x4f, 0x53, 0x5d, 0x64, 0x63, 0x5d,\n    0x57, 0x53, 0x4d, 0x4c, 0x4e, 0x50, 0x51, 0x51, 0x5c, 0x63, 0x69, 0x69, 0x67, 0x64, 0x5d, 0x56,\n    0x56, 0x54, 0x57, 0x59, 0x56, 0x5a, 0x61, 0x62, 0x5d, 0x5f, 0x60, 0x60, 0x5c, 0x56, 0x50, 0x4b,\n    0x40, 0x46, 0x4e, 0x57, 0x5c, 0x5d, 0x5a, 0x57, 0x51, 0x4e, 0x50, 0x54, 0x52, 0x4a, 0x4b, 0x52,\n    0x4c, 0x4a, 0x47, 0x45, 0x44, 0x46, 0x49, 0x4b, 0x4f, 0x52, 0x54, 0x52, 0x4f, 0x4d, 0x4c, 0x4a,\n    0x4f, 0x53, 0x5a, 0x5f, 0x5e, 0x5c, 0x62, 0x6b, 0x71, 0x75, 0x73, 0x6a, 0x60, 0x5a, 0x56, 0x52,\n    0x4f, 0x4d, 0x4e, 0x50, 0x4a, 0x3e, 0x38, 0x3a, 0x3e, 0x41, 0x42, 0x3f, 0x3b, 0x3b, 0x41, 0x46,\n    0x46, 0x49, 0x4a, 0x48, 0x49, 0x4d, 0x50, 0x4f, 0x57, 0x5a, 0x5d, 0x5d, 0x5f, 0x62, 0x64, 0x63,\n    0x6c, 0x6d, 0x6d, 0x6a, 0x63, 0x58, 0x4d, 0x45, 0x4a, 0x4b, 0x4e, 0x50, 0x4d, 0x49, 0x49, 0x4b,\n    0x46, 0x45, 0x48, 0x4e, 0x4d, 0x47, 0x46, 0x4a, 0x50, 0x51, 0x52, 0x51, 0x50, 0x52, 0x56, 0x5a,\n    0x5a, 0x5c, 0x5d, 0x5c, 0x58, 0x55, 0x53, 0x53, 0x58, 0x58, 0x58, 0x5a, 0x5c, 0x5d, 0x5c, 0x5a,\n    0x65, 0x65, 0x66, 0x66, 0x66, 0x62, 0x5e, 0x5b, 0x60, 0x65, 0x69, 0x68, 0x67, 0x67, 0x65, 0x61,\n    0x5d, 0x5c, 0x5d, 0x5f, 0x61, 0x61, 0x5e, 0x5c, 0x65, 0x64, 0x67, 0x6c, 0x6b, 0x63, 0x5d, 0x5b,\n    0x61, 0x62, 0x66, 0x69, 0x67, 0x64, 0x65, 0x67, 0x62, 0x5c, 0x5d, 0x67, 0x6f, 0x6e, 0x6d, 0x6f,\n    0x6d, 0x69, 0x69, 0x6f, 0x74, 0x75, 0x72, 0x70, 0x75, 0x70, 0x69, 0x65, 0x63, 0x62, 0x60, 0x5f,\n    0x64, 0x61, 0x5e, 0x5e, 0x5d, 0x5b, 0x5c, 0x5f, 0x5e, 0x61, 0x63, 0x62, 0x62, 0x5f, 0x57, 0x50,\n    0x53, 0x56, 0x57, 0x57, 0x5c, 0x64, 0x68, 0x68, 0x61, 0x5a, 0x58, 0x5d, 0x5e, 0x58, 0x53, 0x53,\n    0x50, 0x56, 0x61, 0x6f, 0x7b, 0x81, 0x81, 0x7f, 0x7a, 0x7c, 0x7d, 0x7b, 0x76, 0x74, 0x76, 0x79,\n    0x74, 0x73, 0x71, 0x70, 0x6e, 0x6e, 0x6d, 0x6d, 0x6e, 0x6e, 0x70, 0x74, 0x75, 0x75, 0x78, 0x7b,\n    0x7e, 0x80, 0x83, 0x85, 0x87, 0x87, 0x87, 0x87, 0x85, 0x83, 0x81, 0x7f, 0x7f, 0x7f, 0x7e, 0x7d,\n    0x7a, 0x78, 0x76, 0x73, 0x71, 0x70, 0x70, 0x70, 0x7a, 0x7c, 0x7f, 0x81, 0x81, 0x80, 0x7f, 0x7d,\n    0x7b, 0x7c, 0x7c, 0x7b, 0x77, 0x74, 0x72, 0x72, 0x6d, 0x6d, 0x6c, 0x6c, 0x6c, 0x6b, 0x6a, 0x6a,\n    0x66, 0x65, 0x64, 0x63, 0x65, 0x68, 0x6b, 0x6d, 0x6e, 0x6d, 0x6c, 0x6e, 0x70, 0x72, 0x71, 0x70,\n    0x6f, 0x6f, 0x6e, 0x6e, 0x6f, 0x6e, 0x6d, 0x6b, 0x67, 0x66, 0x65, 0x66, 0x67, 0x68, 0x67, 0x67,\n    0x63, 0x63, 0x64, 0x64, 0x63, 0x61, 0x5e, 0x5c, 0x5d, 0x5b, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x59,\n    0x56, 0x58, 0x59, 0x58, 0x56, 0x55, 0x56, 0x57, 0x58, 0x57, 0x56, 0x56, 0x52, 0x4a, 0x42, 0x3e,\n    0x3b, 0x3f, 0x43, 0x42, 0x3f, 0x3b, 0x3a, 0x3a, 0x39, 0x38, 0x38, 0x3a, 0x3c, 0x3d, 0x3b, 0x39,\n    0x34, 0x3a, 0x48, 0x55, 0x54, 0x46, 0x39, 0x35, 0x2e, 0x37, 0x47, 0x58, 0x64, 0x6b, 0x6f, 0x71,\n    0x6b, 0x58, 0x4b, 0x52, 0x5e, 0x64, 0x6b, 0x73, 0x7d, 0x81, 0x81, 0x77, 0x63, 0x52, 0x4c, 0x4d,\n    0x50, 0x4a, 0x46, 0x49, 0x49, 0x47, 0x48, 0x4d, 0x46, 0x42, 0x3d, 0x3b, 0x3e, 0x43, 0x48, 0x49,\n    0x49, 0x4c, 0x4d, 0x4a, 0x45, 0x43, 0x43, 0x44, 0x4a, 0x48, 0x45, 0x40, 0x3a, 0x3e, 0x52, 0x69,\n    0x6f, 0x63, 0x53, 0x46, 0x3f, 0x3f, 0x46, 0x4d, 0x55, 0x54, 0x4d, 0x47, 0x47, 0x48, 0x4e, 0x58,\n    0x45, 0x44, 0x44, 0x44, 0x44, 0x45, 0x4d, 0x55, 0x54, 0x5c, 0x5e, 0x59, 0x5c, 0x67, 0x69, 0x63,\n    0x63, 0x5a, 0x55, 0x5c, 0x66, 0x62, 0x4b, 0x35, 0x25, 0x3d, 0x47, 0x3b, 0x3b, 0x4f, 0x5b, 0x57,\n    0x47, 0x3c, 0x33, 0x37, 0x44, 0x4c, 0x4a, 0x45, 0x50, 0x58, 0x5d, 0x56, 0x44, 0x36, 0x38, 0x41,\n    0x41, 0x43, 0x35, 0x2f, 0x37, 0x4d, 0x68, 0x6d, 0x6d, 0x7b, 0x77, 0x63, 0x48, 0x2b, 0x34, 0x5f,\n    0x69, 0x65, 0x58, 0x57, 0x63, 0x64, 0x62, 0x6a, 0x4e, 0x52, 0x40, 0x25, 0x24, 0x3c, 0x57, 0x68,\n    0x76, 0x81, 0x81, 0x75, 0x63, 0x49, 0x32, 0x29, 0x2c, 0x28, 0x22, 0x23, 0x2f, 0x44, 0x5a, 0x68,\n    0x6b, 0x67, 0x64, 0x62, 0x5a, 0x49, 0x34, 0x26, 0x15, 0x19, 0x32, 0x4f, 0x56, 0x55, 0x5e, 0x68,\n    0x68, 0x6b, 0x71, 0x78, 0x7c, 0x7e, 0x7d, 0x7d, 0x80, 0x81, 0x7d, 0x71, 0x61, 0x57, 0x5b, 0x64,\n    0x69, 0x62, 0x5a, 0x57, 0x56, 0x59, 0x5f, 0x66, 0x6f, 0x6a, 0x61, 0x59, 0x5a, 0x65, 0x71, 0x77,\n    0x64, 0x5c, 0x50, 0x46, 0x44, 0x4c, 0x5a, 0x64, 0x63, 0x56, 0x4b, 0x52, 0x66, 0x73, 0x6b, 0x5c,\n    0x56, 0x53, 0x56, 0x58, 0x55, 0x59, 0x60, 0x5f, 0x5e, 0x5f, 0x5f, 0x5b, 0x57, 0x55, 0x56, 0x58,\n    0x62, 0x5c, 0x57, 0x56, 0x58, 0x56, 0x4f, 0x48, 0x46, 0x47, 0x4c, 0x52, 0x52, 0x4d, 0x4c, 0x50,\n    0x4c, 0x4a, 0x47, 0x46, 0x47, 0x49, 0x4b, 0x4c, 0x4f, 0x51, 0x53, 0x52, 0x50, 0x4f, 0x4f, 0x4f,\n    0x56, 0x57, 0x5b, 0x5e, 0x5c, 0x5b, 0x61, 0x69, 0x6e, 0x70, 0x6e, 0x66, 0x5f, 0x5c, 0x5b, 0x59,\n    0x5e, 0x5c, 0x5c, 0x5d, 0x54, 0x45, 0x3b, 0x3a, 0x3d, 0x3d, 0x3e, 0x40, 0x43, 0x43, 0x40, 0x3e,\n    0x47, 0x4f, 0x56, 0x55, 0x51, 0x54, 0x63, 0x70, 0x72, 0x71, 0x66, 0x52, 0x43, 0x43, 0x50, 0x5c,\n    0x63, 0x5f, 0x58, 0x51, 0x4c, 0x4a, 0x4a, 0x4b, 0x50, 0x4f, 0x4e, 0x4e, 0x4c, 0x48, 0x46, 0x47,\n    0x4b, 0x47, 0x46, 0x49, 0x48, 0x44, 0x46, 0x4c, 0x50, 0x50, 0x52, 0x54, 0x56, 0x56, 0x55, 0x53,\n    0x54, 0x56, 0x57, 0x58, 0x57, 0x57, 0x59, 0x5b, 0x5a, 0x5b, 0x5b, 0x5b, 0x5c, 0x5e, 0x62, 0x64,\n    0x63, 0x62, 0x61, 0x63, 0x65, 0x66, 0x65, 0x64, 0x62, 0x63, 0x64, 0x64, 0x64, 0x65, 0x65, 0x65,\n    0x62, 0x60, 0x5e, 0x5f, 0x63, 0x67, 0x6a, 0x6c, 0x60, 0x5f, 0x64, 0x70, 0x78, 0x75, 0x6c, 0x65,\n    0x62, 0x60, 0x61, 0x65, 0x67, 0x66, 0x67, 0x69, 0x65, 0x63, 0x67, 0x70, 0x74, 0x70, 0x6e, 0x70,\n    0x68, 0x63, 0x60, 0x65, 0x6c, 0x70, 0x71, 0x71, 0x71, 0x6e, 0x69, 0x64, 0x62, 0x60, 0x5f, 0x5f,\n    0x5e, 0x5b, 0x5b, 0x5c, 0x5b, 0x5a, 0x5a, 0x5d, 0x5f, 0x63, 0x65, 0x63, 0x61, 0x60, 0x5d, 0x5a,\n    0x50, 0x54, 0x57, 0x58, 0x5b, 0x61, 0x63, 0x62, 0x59, 0x58, 0x58, 0x5c, 0x5f, 0x5d, 0x5b, 0x5a,\n    0x5f, 0x5e, 0x5f, 0x66, 0x70, 0x79, 0x7d, 0x7e, 0x7c, 0x7c, 0x7b, 0x7a, 0x78, 0x77, 0x77, 0x78,\n    0x75, 0x74, 0x73, 0x71, 0x70, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x70, 0x74, 0x75, 0x75, 0x78, 0x7b,\n    0x7e, 0x80, 0x83, 0x86, 0x88, 0x88, 0x88, 0x87, 0x84, 0x83, 0x82, 0x82, 0x82, 0x81, 0x7f, 0x7d,\n    0x7a, 0x79, 0x78, 0x75, 0x73, 0x71, 0x6f, 0x6e, 0x71, 0x72, 0x75, 0x78, 0x7a, 0x7b, 0x7b, 0x7a,\n    0x78, 0x79, 0x79, 0x78, 0x75, 0x72, 0x70, 0x6f, 0x70, 0x70, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x6e,\n    0x67, 0x68, 0x69, 0x6a, 0x6c, 0x6f, 0x71, 0x72, 0x72, 0x71, 0x71, 0x72, 0x75, 0x76, 0x75, 0x74,\n    0x74, 0x73, 0x72, 0x72, 0x72, 0x71, 0x6f, 0x6e, 0x6a, 0x68, 0x67, 0x67, 0x67, 0x68, 0x67, 0x67,\n    0x63, 0x63, 0x63, 0x63, 0x62, 0x60, 0x5e, 0x5d, 0x5c, 0x5b, 0x59, 0x59, 0x5a, 0x5a, 0x59, 0x58,\n    0x57, 0x58, 0x59, 0x58, 0x56, 0x55, 0x55, 0x57, 0x59, 0x57, 0x56, 0x56, 0x4f, 0x44, 0x3e, 0x3e,\n    0x44, 0x45, 0x45, 0x43, 0x3f, 0x3a, 0x37, 0x34, 0x36, 0x36, 0x36, 0x38, 0x39, 0x3a, 0x3a, 0x3a,\n    0x37, 0x3d, 0x48, 0x4f, 0x4a, 0x3e, 0x37, 0x36, 0x34, 0x39, 0x48, 0x5e, 0x71, 0x78, 0x74, 0x6e,\n    0x7a, 0x6f, 0x5f, 0x50, 0x48, 0x4b, 0x58, 0x64, 0x65, 0x74, 0x7a, 0x6d, 0x5c, 0x53, 0x4b, 0x44,\n    0x4b, 0x49, 0x48, 0x48, 0x47, 0x46, 0x46, 0x48, 0x41, 0x41, 0x3f, 0x3d, 0x3e, 0x41, 0x43, 0x43,\n    0x45, 0x49, 0x4a, 0x45, 0x41, 0x40, 0x3d, 0x39, 0x42, 0x49, 0x4a, 0x45, 0x47, 0x56, 0x67, 0x70,\n    0x8f, 0x88, 0x7c, 0x6f, 0x61, 0x55, 0x50, 0x50, 0x4f, 0x51, 0x4b, 0x45, 0x42, 0x3e, 0x3d, 0x44,\n    0x42, 0x42, 0x41, 0x3f, 0x3f, 0x43, 0x4a, 0x4f, 0x54, 0x5b, 0x5d, 0x5b, 0x60, 0x6b, 0x6c, 0x66,\n    0x5f, 0x5d, 0x5c, 0x5c, 0x5a, 0x50, 0x40, 0x33, 0x43, 0x4d, 0x4a, 0x3c, 0x3e, 0x50, 0x5a, 0x56,\n    0x4c, 0x3f, 0x36, 0x3e, 0x4b, 0x50, 0x4b, 0x45, 0x4a, 0x4f, 0x52, 0x4b, 0x3c, 0x31, 0x33, 0x3b,\n    0x58, 0x5a, 0x4c, 0x44, 0x49, 0x58, 0x6a, 0x68, 0x73, 0x85, 0x76, 0x4c, 0x2a, 0x1c, 0x2e, 0x53,\n    0x66, 0x6a, 0x68, 0x68, 0x6b, 0x6c, 0x6b, 0x6d, 0x5c, 0x51, 0x3c, 0x30, 0x3a, 0x4d, 0x60, 0x70,\n    0x78, 0x82, 0x7c, 0x6c, 0x65, 0x5d, 0x48, 0x36, 0x34, 0x32, 0x2d, 0x2b, 0x33, 0x45, 0x57, 0x60,\n    0x63, 0x70, 0x75, 0x69, 0x59, 0x4c, 0x3c, 0x2e, 0x20, 0x26, 0x39, 0x47, 0x40, 0x3c, 0x49, 0x58,\n    0x59, 0x5c, 0x60, 0x62, 0x61, 0x5e, 0x5a, 0x56, 0x64, 0x60, 0x5b, 0x56, 0x55, 0x55, 0x50, 0x4a,\n    0x53, 0x50, 0x4d, 0x4d, 0x4e, 0x51, 0x55, 0x5a, 0x59, 0x57, 0x51, 0x4c, 0x4e, 0x56, 0x5d, 0x61,\n    0x6e, 0x67, 0x5a, 0x4a, 0x40, 0x45, 0x56, 0x64, 0x6a, 0x5c, 0x4d, 0x49, 0x54, 0x5f, 0x60, 0x5b,\n    0x57, 0x52, 0x53, 0x53, 0x50, 0x53, 0x56, 0x53, 0x51, 0x53, 0x55, 0x55, 0x55, 0x57, 0x5c, 0x60,\n    0x5a, 0x50, 0x46, 0x47, 0x4f, 0x55, 0x53, 0x4d, 0x47, 0x4b, 0x51, 0x53, 0x52, 0x4e, 0x49, 0x46,\n    0x4a, 0x4a, 0x4b, 0x4d, 0x50, 0x52, 0x51, 0x50, 0x4c, 0x4e, 0x4f, 0x50, 0x50, 0x50, 0x50, 0x51,\n    0x55, 0x55, 0x55, 0x57, 0x57, 0x58, 0x5e, 0x64, 0x60, 0x61, 0x60, 0x5b, 0x57, 0x58, 0x59, 0x5a,\n    0x62, 0x61, 0x63, 0x63, 0x5b, 0x4c, 0x40, 0x3d, 0x3e, 0x41, 0x46, 0x4a, 0x4a, 0x46, 0x40, 0x3c,\n    0x42, 0x47, 0x4e, 0x4e, 0x46, 0x42, 0x4e, 0x5e, 0x63, 0x6a, 0x75, 0x7e, 0x81, 0x78, 0x62, 0x4f,\n    0x53, 0x54, 0x55, 0x53, 0x4f, 0x4a, 0x45, 0x43, 0x4c, 0x49, 0x48, 0x49, 0x49, 0x47, 0x46, 0x47,\n    0x4a, 0x46, 0x45, 0x48, 0x47, 0x45, 0x48, 0x4e, 0x54, 0x52, 0x51, 0x55, 0x59, 0x5a, 0x56, 0x51,\n    0x58, 0x58, 0x58, 0x58, 0x58, 0x59, 0x5c, 0x5e, 0x5f, 0x5f, 0x5d, 0x5b, 0x5b, 0x5f, 0x66, 0x6c,\n    0x6a, 0x67, 0x66, 0x67, 0x6a, 0x6b, 0x69, 0x67, 0x66, 0x60, 0x5e, 0x60, 0x62, 0x61, 0x64, 0x69,\n    0x66, 0x63, 0x61, 0x61, 0x64, 0x6a, 0x6f, 0x71, 0x69, 0x68, 0x6b, 0x72, 0x75, 0x70, 0x67, 0x61,\n    0x62, 0x5e, 0x5d, 0x61, 0x66, 0x68, 0x68, 0x69, 0x6b, 0x6c, 0x72, 0x78, 0x76, 0x6f, 0x6b, 0x6c,\n    0x6a, 0x63, 0x5d, 0x5f, 0x65, 0x6b, 0x70, 0x73, 0x6f, 0x6e, 0x6c, 0x69, 0x65, 0x62, 0x60, 0x60,\n    0x5f, 0x5d, 0x5d, 0x5e, 0x5e, 0x5c, 0x5c, 0x5d, 0x5e, 0x62, 0x64, 0x60, 0x5b, 0x5a, 0x5c, 0x5d,\n    0x5e, 0x60, 0x63, 0x63, 0x63, 0x64, 0x63, 0x60, 0x55, 0x58, 0x59, 0x5a, 0x5b, 0x5e, 0x5d, 0x5b,\n    0x55, 0x52, 0x50, 0x55, 0x61, 0x70, 0x7c, 0x82, 0x7e, 0x7c, 0x7a, 0x7a, 0x7b, 0x7b, 0x79, 0x77,\n    0x76, 0x75, 0x73, 0x72, 0x70, 0x6f, 0x6f, 0x6e, 0x70, 0x6f, 0x71, 0x74, 0x75, 0x75, 0x78, 0x7c,\n    0x7f, 0x81, 0x84, 0x87, 0x88, 0x89, 0x89, 0x88, 0x84, 0x84, 0x84, 0x84, 0x84, 0x82, 0x7f, 0x7d,\n    0x7a, 0x7a, 0x79, 0x77, 0x75, 0x72, 0x6f, 0x6d, 0x69, 0x6a, 0x6c, 0x6e, 0x70, 0x71, 0x72, 0x72,\n    0x73, 0x74, 0x75, 0x75, 0x73, 0x71, 0x70, 0x70, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x6f, 0x6e, 0x6e,\n    0x6b, 0x6c, 0x6e, 0x71, 0x73, 0x74, 0x75, 0x75, 0x76, 0x76, 0x76, 0x77, 0x79, 0x7a, 0x7a, 0x79,\n    0x79, 0x78, 0x76, 0x76, 0x75, 0x74, 0x72, 0x70, 0x6d, 0x6c, 0x6a, 0x69, 0x68, 0x68, 0x67, 0x66,\n    0x63, 0x63, 0x62, 0x61, 0x5f, 0x5e, 0x5d, 0x5d, 0x5c, 0x5a, 0x59, 0x59, 0x59, 0x59, 0x59, 0x58,\n    0x58, 0x58, 0x58, 0x57, 0x56, 0x55, 0x55, 0x55, 0x54, 0x52, 0x54, 0x57, 0x52, 0x48, 0x45, 0x49,\n    0x50, 0x4d, 0x4b, 0x4a, 0x48, 0x44, 0x3d, 0x38, 0x35, 0x35, 0x35, 0x35, 0x35, 0x35, 0x37, 0x38,\n    0x3a, 0x41, 0x49, 0x4a, 0x42, 0x39, 0x36, 0x38, 0x3a, 0x39, 0x40, 0x52, 0x65, 0x71, 0x76, 0x78,\n    0x7d, 0x83, 0x82, 0x73, 0x62, 0x58, 0x54, 0x52, 0x5c, 0x63, 0x66, 0x63, 0x5f, 0x59, 0x4f, 0x45,\n    0x48, 0x4b, 0x4d, 0x4b, 0x48, 0x48, 0x47, 0x46, 0x43, 0x45, 0x45, 0x43, 0x42, 0x42, 0x40, 0x3c,\n    0x3c, 0x41, 0x44, 0x43, 0x43, 0x44, 0x42, 0x3c, 0x39, 0x3c, 0x40, 0x44, 0x4a, 0x50, 0x54, 0x53,\n    0x55, 0x55, 0x56, 0x54, 0x4d, 0x45, 0x42, 0x43, 0x52, 0x56, 0x51, 0x49, 0x45, 0x3e, 0x3a, 0x3f,\n    0x4a, 0x4d, 0x4c, 0x46, 0x44, 0x49, 0x4e, 0x4f, 0x4f, 0x55, 0x58, 0x59, 0x61, 0x6a, 0x6b, 0x64,\n    0x62, 0x65, 0x67, 0x67, 0x62, 0x59, 0x4f, 0x49, 0x54, 0x51, 0x46, 0x3c, 0x42, 0x55, 0x61, 0x61,\n    0x61, 0x4b, 0x3e, 0x46, 0x51, 0x4e, 0x44, 0x3f, 0x4c, 0x4f, 0x50, 0x4d, 0x44, 0x3c, 0x3c, 0x41,\n    0x4d, 0x53, 0x4b, 0x49, 0x50, 0x5d, 0x68, 0x60, 0x6a, 0x6f, 0x57, 0x33, 0x22, 0x24, 0x36, 0x50,\n    0x63, 0x6b, 0x71, 0x6c, 0x65, 0x69, 0x6d, 0x69, 0x68, 0x5a, 0x48, 0x3e, 0x3b, 0x3a, 0x48, 0x5f,\n    0x7c, 0x79, 0x71, 0x67, 0x57, 0x43, 0x3b, 0x43, 0x41, 0x40, 0x3a, 0x33, 0x3a, 0x4d, 0x5e, 0x64,\n    0x67, 0x6b, 0x6b, 0x64, 0x5c, 0x51, 0x40, 0x31, 0x2b, 0x27, 0x2f, 0x3c, 0x45, 0x51, 0x60, 0x69,\n    0x56, 0x5a, 0x5d, 0x5f, 0x5f, 0x5f, 0x5d, 0x59, 0x57, 0x62, 0x67, 0x62, 0x5a, 0x54, 0x4f, 0x4a,\n    0x42, 0x43, 0x47, 0x4d, 0x50, 0x4f, 0x4f, 0x50, 0x51, 0x4f, 0x4d, 0x50, 0x58, 0x5c, 0x56, 0x4d,\n    0x5d, 0x5c, 0x58, 0x4d, 0x42, 0x3f, 0x44, 0x4b, 0x59, 0x58, 0x54, 0x4c, 0x47, 0x4c, 0x58, 0x63,\n    0x5b, 0x55, 0x53, 0x52, 0x4d, 0x4d, 0x4d, 0x47, 0x47, 0x48, 0x4c, 0x52, 0x59, 0x5c, 0x59, 0x55,\n    0x4d, 0x45, 0x3d, 0x3e, 0x46, 0x4d, 0x4e, 0x4c, 0x4f, 0x53, 0x57, 0x57, 0x55, 0x52, 0x4c, 0x46,\n    0x46, 0x49, 0x50, 0x57, 0x5c, 0x5b, 0x55, 0x50, 0x49, 0x49, 0x49, 0x4b, 0x4c, 0x4c, 0x4e, 0x50,\n    0x4f, 0x4f, 0x4f, 0x51, 0x54, 0x59, 0x5e, 0x62, 0x5e, 0x5f, 0x60, 0x5f, 0x5d, 0x5c, 0x5d, 0x5d,\n    0x59, 0x59, 0x5d, 0x5f, 0x59, 0x4c, 0x41, 0x3c, 0x40, 0x48, 0x51, 0x50, 0x48, 0x40, 0x3f, 0x40,\n    0x3e, 0x3c, 0x40, 0x47, 0x46, 0x3e, 0x3d, 0x43, 0x5b, 0x64, 0x6c, 0x6c, 0x6a, 0x6c, 0x72, 0x77,\n    0x6c, 0x69, 0x63, 0x5c, 0x54, 0x4d, 0x4a, 0x48, 0x43, 0x43, 0x43, 0x45, 0x44, 0x41, 0x41, 0x43,\n    0x43, 0x43, 0x46, 0x4a, 0x4b, 0x49, 0x49, 0x4c, 0x51, 0x4e, 0x4e, 0x52, 0x59, 0x5e, 0x5f, 0x5e,\n    0x5e, 0x5e, 0x5d, 0x5d, 0x5d, 0x5e, 0x5f, 0x61, 0x63, 0x5f, 0x5b, 0x57, 0x58, 0x5e, 0x66, 0x6c,\n    0x6a, 0x68, 0x67, 0x69, 0x6c, 0x6c, 0x68, 0x64, 0x65, 0x5c, 0x58, 0x5c, 0x5d, 0x5b, 0x5e, 0x65,\n    0x63, 0x61, 0x5f, 0x5f, 0x60, 0x62, 0x64, 0x66, 0x6d, 0x70, 0x70, 0x6b, 0x61, 0x5a, 0x5b, 0x5f,\n    0x63, 0x60, 0x61, 0x65, 0x68, 0x69, 0x6a, 0x6c, 0x70, 0x71, 0x74, 0x77, 0x73, 0x6a, 0x64, 0x63,\n    0x6c, 0x67, 0x61, 0x5f, 0x60, 0x63, 0x6b, 0x72, 0x70, 0x73, 0x74, 0x72, 0x6d, 0x67, 0x63, 0x62,\n    0x64, 0x62, 0x61, 0x61, 0x60, 0x5e, 0x5e, 0x5f, 0x61, 0x64, 0x63, 0x5d, 0x57, 0x56, 0x57, 0x57,\n    0x64, 0x65, 0x66, 0x66, 0x65, 0x64, 0x62, 0x61, 0x5b, 0x5f, 0x5e, 0x58, 0x56, 0x59, 0x5a, 0x57,\n    0x5f, 0x5c, 0x58, 0x56, 0x5b, 0x65, 0x71, 0x79, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x79,\n    0x79, 0x78, 0x77, 0x75, 0x72, 0x71, 0x6f, 0x6f, 0x71, 0x71, 0x72, 0x74, 0x75, 0x75, 0x78, 0x7c,\n    0x7f, 0x81, 0x84, 0x87, 0x89, 0x8a, 0x8a, 0x89, 0x85, 0x84, 0x83, 0x83, 0x83, 0x82, 0x80, 0x7e,\n    0x7b, 0x7a, 0x79, 0x77, 0x74, 0x72, 0x71, 0x70, 0x6a, 0x6a, 0x69, 0x69, 0x68, 0x68, 0x68, 0x68,\n    0x6b, 0x6d, 0x6e, 0x6f, 0x6e, 0x6d, 0x6e, 0x6f, 0x6c, 0x6c, 0x6d, 0x6d, 0x6e, 0x6d, 0x6c, 0x6c,\n    0x6e, 0x6f, 0x71, 0x73, 0x75, 0x75, 0x76, 0x75, 0x78, 0x78, 0x79, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b,\n    0x7c, 0x7a, 0x79, 0x77, 0x76, 0x75, 0x72, 0x70, 0x71, 0x6f, 0x6d, 0x6b, 0x6a, 0x68, 0x67, 0x65,\n    0x63, 0x62, 0x61, 0x5f, 0x5e, 0x5d, 0x5d, 0x5d, 0x5c, 0x5b, 0x59, 0x59, 0x5a, 0x5a, 0x59, 0x59,\n    0x58, 0x58, 0x58, 0x57, 0x56, 0x55, 0x54, 0x54, 0x54, 0x50, 0x53, 0x59, 0x57, 0x4f, 0x4c, 0x4e,\n    0x44, 0x42, 0x42, 0x44, 0x47, 0x44, 0x3c, 0x34, 0x36, 0x36, 0x36, 0x34, 0x32, 0x32, 0x35, 0x37,\n    0x3b, 0x42, 0x4a, 0x4a, 0x44, 0x3e, 0x3b, 0x3a, 0x3b, 0x3d, 0x44, 0x4e, 0x57, 0x5d, 0x67, 0x71,\n    0x67, 0x71, 0x7b, 0x84, 0x8b, 0x90, 0x91, 0x8e, 0x74, 0x63, 0x5c, 0x66, 0x6b, 0x5e, 0x50, 0x4b,\n    0x47, 0x4e, 0x4f, 0x4a, 0x46, 0x48, 0x49, 0x47, 0x49, 0x49, 0x47, 0x44, 0x44, 0x44, 0x3d, 0x35,\n    0x35, 0x37, 0x3c, 0x42, 0x43, 0x41, 0x42, 0x45, 0x41, 0x38, 0x3c, 0x4d, 0x53, 0x47, 0x3d, 0x3c,\n    0x47, 0x47, 0x48, 0x46, 0x42, 0x40, 0x44, 0x4a, 0x4f, 0x53, 0x4d, 0x43, 0x3e, 0x3a, 0x39, 0x3e,\n    0x46, 0x4f, 0x52, 0x48, 0x42, 0x45, 0x49, 0x48, 0x4c, 0x50, 0x54, 0x5a, 0x63, 0x6a, 0x68, 0x61,\n    0x60, 0x62, 0x65, 0x67, 0x66, 0x5f, 0x57, 0x50, 0x4d, 0x47, 0x3e, 0x39, 0x41, 0x51, 0x5f, 0x64,\n    0x5d, 0x42, 0x36, 0x46, 0x58, 0x57, 0x51, 0x4f, 0x52, 0x54, 0x57, 0x57, 0x51, 0x47, 0x41, 0x3f,\n    0x4e, 0x59, 0x54, 0x52, 0x56, 0x5d, 0x61, 0x54, 0x63, 0x5a, 0x44, 0x31, 0x29, 0x25, 0x30, 0x46,\n    0x63, 0x69, 0x6e, 0x64, 0x5a, 0x68, 0x74, 0x6a, 0x61, 0x5a, 0x50, 0x49, 0x41, 0x3c, 0x4b, 0x66,\n    0x7b, 0x76, 0x6c, 0x61, 0x4f, 0x3b, 0x3b, 0x4e, 0x41, 0x3e, 0x35, 0x2e, 0x3a, 0x53, 0x67, 0x6c,\n    0x77, 0x68, 0x61, 0x69, 0x68, 0x57, 0x48, 0x43, 0x35, 0x2d, 0x33, 0x44, 0x52, 0x56, 0x4e, 0x40,\n    0x52, 0x55, 0x56, 0x55, 0x57, 0x5a, 0x5a, 0x58, 0x56, 0x5e, 0x64, 0x61, 0x5d, 0x58, 0x50, 0x47,\n    0x4e, 0x4c, 0x4b, 0x4c, 0x4c, 0x4b, 0x4c, 0x4f, 0x53, 0x4d, 0x45, 0x42, 0x46, 0x4b, 0x49, 0x44,\n    0x48, 0x4a, 0x4b, 0x49, 0x45, 0x41, 0x3e, 0x3d, 0x4d, 0x4d, 0x4d, 0x4c, 0x4b, 0x4e, 0x54, 0x5b,\n    0x60, 0x59, 0x57, 0x56, 0x50, 0x4e, 0x4c, 0x46, 0x4d, 0x48, 0x48, 0x51, 0x5e, 0x60, 0x56, 0x4a,\n    0x49, 0x49, 0x49, 0x4a, 0x4b, 0x4d, 0x4f, 0x50, 0x4e, 0x51, 0x54, 0x56, 0x59, 0x5b, 0x58, 0x53,\n    0x48, 0x4f, 0x59, 0x62, 0x65, 0x5f, 0x53, 0x4b, 0x49, 0x46, 0x45, 0x48, 0x49, 0x49, 0x4a, 0x4e,\n    0x4e, 0x4f, 0x50, 0x52, 0x57, 0x5d, 0x61, 0x63, 0x5e, 0x5f, 0x61, 0x61, 0x5f, 0x5a, 0x57, 0x55,\n    0x52, 0x54, 0x57, 0x5a, 0x57, 0x4e, 0x45, 0x40, 0x46, 0x4b, 0x4f, 0x4b, 0x43, 0x3e, 0x3f, 0x43,\n    0x40, 0x3d, 0x43, 0x50, 0x57, 0x54, 0x51, 0x53, 0x47, 0x51, 0x57, 0x53, 0x4e, 0x52, 0x5e, 0x68,\n    0x72, 0x70, 0x6c, 0x66, 0x5e, 0x54, 0x4b, 0x44, 0x44, 0x45, 0x47, 0x46, 0x41, 0x3b, 0x3a, 0x3d,\n    0x40, 0x42, 0x46, 0x49, 0x4a, 0x48, 0x47, 0x48, 0x46, 0x48, 0x4c, 0x52, 0x5a, 0x61, 0x68, 0x6b,\n    0x5e, 0x5e, 0x5f, 0x61, 0x62, 0x63, 0x64, 0x64, 0x60, 0x5a, 0x53, 0x52, 0x57, 0x5e, 0x64, 0x67,\n    0x61, 0x60, 0x5f, 0x61, 0x65, 0x66, 0x65, 0x63, 0x62, 0x5b, 0x58, 0x5c, 0x5c, 0x57, 0x58, 0x5f,\n    0x5e, 0x5d, 0x5a, 0x58, 0x59, 0x5b, 0x5f, 0x62, 0x67, 0x6a, 0x6a, 0x63, 0x59, 0x57, 0x5d, 0x64,\n    0x63, 0x64, 0x67, 0x6a, 0x6a, 0x68, 0x69, 0x6c, 0x70, 0x6e, 0x6e, 0x6e, 0x6d, 0x68, 0x63, 0x60,\n    0x67, 0x66, 0x64, 0x60, 0x5a, 0x5a, 0x63, 0x6d, 0x71, 0x75, 0x78, 0x78, 0x72, 0x6a, 0x64, 0x60,\n    0x63, 0x60, 0x5f, 0x5f, 0x5f, 0x5e, 0x5f, 0x62, 0x66, 0x68, 0x66, 0x60, 0x5c, 0x5a, 0x58, 0x56,\n    0x5d, 0x5c, 0x5c, 0x5d, 0x5e, 0x5e, 0x5f, 0x60, 0x62, 0x64, 0x5f, 0x56, 0x51, 0x53, 0x54, 0x51,\n    0x57, 0x56, 0x53, 0x4e, 0x4c, 0x53, 0x61, 0x6d, 0x7a, 0x7d, 0x7f, 0x7e, 0x7b, 0x7a, 0x7b, 0x7c,\n    0x7e, 0x7d, 0x7b, 0x79, 0x76, 0x73, 0x71, 0x70, 0x72, 0x71, 0x72, 0x74, 0x75, 0x75, 0x77, 0x7b,\n    0x7f, 0x81, 0x84, 0x87, 0x89, 0x8a, 0x8a, 0x8a, 0x87, 0x85, 0x82, 0x80, 0x80, 0x80, 0x7f, 0x7f,\n    0x7c, 0x7a, 0x77, 0x74, 0x72, 0x72, 0x72, 0x72, 0x6e, 0x6d, 0x6b, 0x69, 0x67, 0x65, 0x64, 0x64,\n    0x67, 0x68, 0x69, 0x68, 0x67, 0x67, 0x67, 0x68, 0x6c, 0x6c, 0x6c, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d,\n    0x6f, 0x70, 0x71, 0x73, 0x75, 0x77, 0x79, 0x79, 0x79, 0x7b, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e,\n    0x7d, 0x7c, 0x7a, 0x79, 0x78, 0x76, 0x74, 0x72, 0x74, 0x72, 0x6f, 0x6d, 0x6b, 0x69, 0x66, 0x65,\n    0x63, 0x62, 0x60, 0x5e, 0x5d, 0x5c, 0x5c, 0x5d, 0x5d, 0x5c, 0x5b, 0x5a, 0x5b, 0x5b, 0x5b, 0x5a,\n    0x59, 0x58, 0x57, 0x56, 0x56, 0x55, 0x54, 0x53, 0x59, 0x53, 0x51, 0x54, 0x54, 0x4d, 0x45, 0x40,\n    0x38, 0x39, 0x3c, 0x43, 0x48, 0x46, 0x3c, 0x33, 0x35, 0x35, 0x35, 0x34, 0x32, 0x34, 0x37, 0x3a,\n    0x3a, 0x43, 0x4a, 0x4b, 0x4a, 0x48, 0x44, 0x3e, 0x39, 0x43, 0x54, 0x64, 0x66, 0x5b, 0x52, 0x51,\n    0x4f, 0x52, 0x5d, 0x6e, 0x7b, 0x81, 0x84, 0x86, 0x83, 0x72, 0x6a, 0x6f, 0x6d, 0x5d, 0x4e, 0x4b,\n    0x46, 0x4c, 0x4c, 0x45, 0x42, 0x45, 0x48, 0x47, 0x4c, 0x49, 0x43, 0x3f, 0x42, 0x46, 0x3f, 0x34,\n    0x32, 0x2e, 0x33, 0x3e, 0x3c, 0x34, 0x37, 0x44, 0x48, 0x3d, 0x3f, 0x4f, 0x58, 0x50, 0x46, 0x44,\n    0x4d, 0x4a, 0x45, 0x3f, 0x39, 0x38, 0x3f, 0x48, 0x4f, 0x55, 0x50, 0x44, 0x3e, 0x3a, 0x39, 0x3e,\n    0x42, 0x51, 0x58, 0x4f, 0x44, 0x44, 0x49, 0x4b, 0x4e, 0x51, 0x57, 0x60, 0x69, 0x6d, 0x69, 0x63,\n    0x64, 0x68, 0x6b, 0x69, 0x61, 0x57, 0x4e, 0x4a, 0x4f, 0x4d, 0x4a, 0x47, 0x48, 0x50, 0x5c, 0x65,\n    0x54, 0x3b, 0x32, 0x49, 0x5f, 0x5e, 0x55, 0x52, 0x4c, 0x50, 0x57, 0x5b, 0x55, 0x47, 0x3a, 0x33,\n    0x3e, 0x4d, 0x4b, 0x49, 0x4b, 0x51, 0x54, 0x46, 0x36, 0x37, 0x34, 0x2e, 0x28, 0x2c, 0x46, 0x65,\n    0x6a, 0x6b, 0x6a, 0x5d, 0x5a, 0x6e, 0x7a, 0x6b, 0x54, 0x50, 0x45, 0x40, 0x42, 0x46, 0x52, 0x64,\n    0x73, 0x7d, 0x73, 0x5f, 0x5d, 0x64, 0x5d, 0x52, 0x40, 0x3b, 0x32, 0x30, 0x41, 0x5d, 0x70, 0x75,\n    0x70, 0x67, 0x67, 0x6c, 0x65, 0x53, 0x4b, 0x4e, 0x32, 0x21, 0x1b, 0x27, 0x3e, 0x5a, 0x6d, 0x71,\n    0x5a, 0x5b, 0x57, 0x50, 0x4c, 0x4e, 0x4e, 0x4b, 0x54, 0x4f, 0x4d, 0x53, 0x5e, 0x62, 0x58, 0x4b,\n    0x50, 0x4d, 0x4b, 0x4b, 0x4a, 0x47, 0x47, 0x49, 0x55, 0x55, 0x50, 0x47, 0x43, 0x47, 0x50, 0x56,\n    0x52, 0x50, 0x4e, 0x4e, 0x4f, 0x4f, 0x4b, 0x47, 0x44, 0x45, 0x48, 0x4c, 0x4f, 0x50, 0x54, 0x58,\n    0x5e, 0x59, 0x59, 0x57, 0x51, 0x4f, 0x4e, 0x49, 0x4f, 0x47, 0x43, 0x4c, 0x5c, 0x64, 0x5f, 0x56,\n    0x4d, 0x52, 0x58, 0x5a, 0x59, 0x57, 0x58, 0x5a, 0x4d, 0x4c, 0x4d, 0x52, 0x59, 0x5c, 0x5c, 0x5b,\n    0x55, 0x5c, 0x66, 0x6b, 0x69, 0x5f, 0x52, 0x49, 0x4b, 0x45, 0x43, 0x46, 0x48, 0x47, 0x49, 0x4d,\n    0x4d, 0x50, 0x51, 0x51, 0x55, 0x5b, 0x5f, 0x61, 0x5e, 0x5c, 0x5c, 0x5d, 0x59, 0x54, 0x4f, 0x4e,\n    0x51, 0x53, 0x57, 0x5b, 0x5d, 0x5b, 0x57, 0x54, 0x53, 0x4e, 0x48, 0x45, 0x46, 0x46, 0x45, 0x44,\n    0x40, 0x41, 0x45, 0x4c, 0x4e, 0x4e, 0x52, 0x59, 0x5c, 0x5b, 0x57, 0x52, 0x50, 0x51, 0x51, 0x4f,\n    0x4f, 0x52, 0x57, 0x5d, 0x5f, 0x58, 0x4c, 0x43, 0x45, 0x45, 0x46, 0x46, 0x42, 0x3e, 0x3d, 0x40,\n    0x41, 0x43, 0x46, 0x47, 0x47, 0x46, 0x45, 0x45, 0x46, 0x4b, 0x52, 0x57, 0x59, 0x5d, 0x61, 0x65,\n    0x63, 0x62, 0x61, 0x61, 0x61, 0x60, 0x5e, 0x5d, 0x59, 0x53, 0x4e, 0x4f, 0x57, 0x5e, 0x61, 0x61,\n    0x63, 0x61, 0x5e, 0x5d, 0x5e, 0x60, 0x61, 0x62, 0x65, 0x63, 0x63, 0x65, 0x63, 0x5d, 0x5c, 0x60,\n    0x61, 0x5e, 0x5a, 0x57, 0x58, 0x5e, 0x67, 0x6d, 0x6c, 0x6b, 0x68, 0x63, 0x5f, 0x5f, 0x5e, 0x5c,\n    0x5f, 0x61, 0x65, 0x67, 0x65, 0x62, 0x62, 0x65, 0x6a, 0x68, 0x67, 0x67, 0x68, 0x68, 0x67, 0x65,\n    0x62, 0x64, 0x66, 0x62, 0x5b, 0x59, 0x61, 0x6b, 0x6e, 0x71, 0x74, 0x73, 0x6f, 0x68, 0x61, 0x5c,\n    0x5d, 0x5b, 0x5c, 0x5f, 0x61, 0x61, 0x63, 0x66, 0x66, 0x68, 0x66, 0x62, 0x5f, 0x5e, 0x5c, 0x5a,\n    0x67, 0x64, 0x61, 0x60, 0x5e, 0x5c, 0x5d, 0x5f, 0x5e, 0x5d, 0x58, 0x51, 0x4e, 0x4e, 0x4e, 0x4d,\n    0x4f, 0x50, 0x4f, 0x4c, 0x4b, 0x53, 0x64, 0x71, 0x78, 0x7c, 0x7f, 0x7f, 0x7b, 0x79, 0x7b, 0x7e,\n    0x7c, 0x7b, 0x7a, 0x78, 0x75, 0x73, 0x71, 0x6f, 0x73, 0x72, 0x72, 0x74, 0x74, 0x74, 0x77, 0x7b,\n    0x7f, 0x81, 0x84, 0x87, 0x89, 0x8a, 0x8a, 0x8a, 0x89, 0x86, 0x82, 0x7f, 0x7e, 0x7e, 0x7e, 0x7e,\n    0x7d, 0x7a, 0x76, 0x72, 0x70, 0x70, 0x71, 0x72, 0x6f, 0x6e, 0x6c, 0x6b, 0x69, 0x68, 0x68, 0x67,\n    0x6b, 0x6b, 0x6b, 0x69, 0x67, 0x65, 0x65, 0x65, 0x6b, 0x6a, 0x6a, 0x6a, 0x6a, 0x6c, 0x6d, 0x6e,\n    0x6f, 0x70, 0x72, 0x75, 0x78, 0x7b, 0x7d, 0x7e, 0x7c, 0x7e, 0x80, 0x81, 0x81, 0x81, 0x81, 0x81,\n    0x7f, 0x7e, 0x7c, 0x7b, 0x7b, 0x7a, 0x77, 0x76, 0x76, 0x74, 0x71, 0x6e, 0x6b, 0x69, 0x66, 0x64,\n    0x63, 0x61, 0x60, 0x5e, 0x5d, 0x5c, 0x5c, 0x5c, 0x5e, 0x5c, 0x5b, 0x5b, 0x5b, 0x5c, 0x5b, 0x5a,\n    0x58, 0x57, 0x56, 0x56, 0x56, 0x55, 0x54, 0x53, 0x54, 0x50, 0x4a, 0x48, 0x4b, 0x4a, 0x41, 0x37,\n    0x38, 0x3b, 0x42, 0x48, 0x4b, 0x48, 0x3f, 0x37, 0x32, 0x32, 0x33, 0x34, 0x35, 0x38, 0x3c, 0x3f,\n    0x3b, 0x43, 0x47, 0x46, 0x47, 0x4c, 0x4b, 0x46, 0x3e, 0x43, 0x55, 0x6a, 0x71, 0x63, 0x52, 0x49,\n    0x30, 0x34, 0x3f, 0x4b, 0x52, 0x55, 0x5d, 0x67, 0x67, 0x70, 0x73, 0x6c, 0x60, 0x58, 0x52, 0x4d,\n    0x4a, 0x4b, 0x49, 0x45, 0x43, 0x45, 0x49, 0x4a, 0x4f, 0x4b, 0x43, 0x3e, 0x44, 0x4c, 0x49, 0x3f,\n    0x30, 0x2a, 0x2f, 0x3c, 0x3c, 0x34, 0x39, 0x47, 0x49, 0x49, 0x47, 0x47, 0x50, 0x5b, 0x5a, 0x52,\n    0x4a, 0x47, 0x43, 0x40, 0x3c, 0x3d, 0x44, 0x4c, 0x51, 0x5a, 0x57, 0x4c, 0x46, 0x41, 0x3e, 0x40,\n    0x48, 0x56, 0x5f, 0x58, 0x4c, 0x4a, 0x50, 0x55, 0x4f, 0x52, 0x5a, 0x66, 0x6e, 0x6e, 0x69, 0x65,\n    0x67, 0x70, 0x76, 0x6e, 0x5d, 0x4f, 0x4b, 0x4e, 0x4b, 0x4c, 0x4b, 0x49, 0x49, 0x4f, 0x59, 0x61,\n    0x53, 0x3e, 0x3a, 0x51, 0x64, 0x5e, 0x4c, 0x43, 0x42, 0x4a, 0x57, 0x60, 0x5c, 0x4f, 0x42, 0x3c,\n    0x40, 0x4e, 0x4b, 0x49, 0x4e, 0x59, 0x5f, 0x51, 0x39, 0x39, 0x32, 0x26, 0x21, 0x2f, 0x49, 0x5d,\n    0x70, 0x6e, 0x65, 0x58, 0x5b, 0x6b, 0x6a, 0x56, 0x47, 0x49, 0x40, 0x35, 0x33, 0x3a, 0x48, 0x5a,\n    0x6f, 0x79, 0x73, 0x66, 0x65, 0x63, 0x55, 0x48, 0x39, 0x35, 0x32, 0x35, 0x44, 0x59, 0x69, 0x6f,\n    0x6a, 0x6d, 0x6c, 0x65, 0x5f, 0x58, 0x4d, 0x42, 0x33, 0x21, 0x20, 0x39, 0x58, 0x6f, 0x75, 0x6f,\n    0x56, 0x58, 0x54, 0x4c, 0x49, 0x4d, 0x4e, 0x4a, 0x49, 0x4e, 0x54, 0x56, 0x51, 0x4c, 0x4d, 0x51,\n    0x4d, 0x4c, 0x4e, 0x51, 0x51, 0x4d, 0x4a, 0x4a, 0x48, 0x4d, 0x4f, 0x49, 0x44, 0x46, 0x4d, 0x53,\n    0x5e, 0x59, 0x55, 0x56, 0x5a, 0x5b, 0x56, 0x51, 0x3d, 0x3c, 0x3f, 0x46, 0x4d, 0x53, 0x5c, 0x65,\n    0x5c, 0x58, 0x5a, 0x59, 0x51, 0x4f, 0x4f, 0x4a, 0x47, 0x42, 0x3e, 0x43, 0x50, 0x5b, 0x61, 0x62,\n    0x5f, 0x60, 0x61, 0x62, 0x60, 0x5c, 0x57, 0x53, 0x4e, 0x48, 0x47, 0x4f, 0x56, 0x58, 0x58, 0x59,\n    0x5f, 0x64, 0x69, 0x68, 0x62, 0x58, 0x50, 0x4b, 0x4b, 0x44, 0x41, 0x44, 0x46, 0x45, 0x48, 0x4d,\n    0x4b, 0x4d, 0x4e, 0x4c, 0x4e, 0x55, 0x5c, 0x5e, 0x61, 0x5d, 0x5b, 0x5b, 0x5b, 0x5a, 0x5b, 0x5e,\n    0x5d, 0x5d, 0x5e, 0x60, 0x63, 0x65, 0x64, 0x62, 0x5d, 0x55, 0x4c, 0x48, 0x49, 0x49, 0x47, 0x43,\n    0x44, 0x45, 0x45, 0x43, 0x41, 0x43, 0x4a, 0x4f, 0x59, 0x66, 0x70, 0x6a, 0x5a, 0x4c, 0x45, 0x44,\n    0x4a, 0x43, 0x3e, 0x41, 0x4b, 0x54, 0x58, 0x58, 0x46, 0x42, 0x3f, 0x40, 0x41, 0x40, 0x40, 0x41,\n    0x3f, 0x44, 0x49, 0x4c, 0x4c, 0x4a, 0x48, 0x46, 0x4b, 0x4e, 0x53, 0x55, 0x55, 0x57, 0x5b, 0x5f,\n    0x68, 0x65, 0x61, 0x5e, 0x5c, 0x5a, 0x57, 0x55, 0x56, 0x53, 0x51, 0x53, 0x57, 0x5b, 0x5c, 0x5b,\n    0x64, 0x65, 0x66, 0x66, 0x63, 0x62, 0x61, 0x61, 0x67, 0x6a, 0x6d, 0x6c, 0x68, 0x63, 0x62, 0x63,\n    0x63, 0x60, 0x5c, 0x59, 0x59, 0x5f, 0x67, 0x6d, 0x6d, 0x6e, 0x6b, 0x65, 0x61, 0x5f, 0x5b, 0x56,\n    0x5f, 0x5e, 0x5f, 0x61, 0x60, 0x5e, 0x5e, 0x5f, 0x64, 0x65, 0x65, 0x64, 0x64, 0x65, 0x68, 0x69,\n    0x65, 0x66, 0x67, 0x64, 0x5f, 0x5d, 0x63, 0x6a, 0x69, 0x69, 0x69, 0x68, 0x66, 0x62, 0x5d, 0x5a,\n    0x58, 0x58, 0x5c, 0x62, 0x65, 0x65, 0x65, 0x67, 0x64, 0x67, 0x67, 0x62, 0x5d, 0x5c, 0x5e, 0x5e,\n    0x70, 0x6b, 0x67, 0x65, 0x61, 0x5d, 0x5c, 0x5e, 0x59, 0x55, 0x52, 0x53, 0x53, 0x51, 0x4f, 0x4f,\n    0x4e, 0x50, 0x50, 0x4f, 0x4e, 0x53, 0x5b, 0x62, 0x79, 0x7b, 0x7d, 0x7e, 0x7d, 0x7b, 0x7c, 0x7c,\n    0x78, 0x78, 0x77, 0x76, 0x75, 0x73, 0x72, 0x71, 0x73, 0x72, 0x72, 0x73, 0x73, 0x73, 0x76, 0x7a,\n    0x7e, 0x80, 0x83, 0x87, 0x89, 0x8a, 0x8a, 0x8a, 0x89, 0x87, 0x83, 0x80, 0x7f, 0x7e, 0x7c, 0x7c,\n    0x7c, 0x7a, 0x76, 0x72, 0x6f, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6c, 0x6c, 0x6b, 0x6b,\n    0x6e, 0x6e, 0x6d, 0x6b, 0x69, 0x67, 0x67, 0x67, 0x69, 0x68, 0x66, 0x65, 0x66, 0x69, 0x6b, 0x6d,\n    0x71, 0x73, 0x76, 0x79, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7f, 0x82, 0x83, 0x83, 0x82, 0x82, 0x82,\n    0x7e, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7a, 0x78, 0x78, 0x75, 0x71, 0x6e, 0x6c, 0x69, 0x66, 0x64,\n    0x62, 0x61, 0x60, 0x5f, 0x5e, 0x5d, 0x5c, 0x5c, 0x5d, 0x5c, 0x5b, 0x5a, 0x5b, 0x5b, 0x5b, 0x5a,\n    0x58, 0x56, 0x55, 0x55, 0x56, 0x56, 0x55, 0x53, 0x4c, 0x4c, 0x46, 0x3f, 0x44, 0x4c, 0x4a, 0x3f,\n    0x36, 0x3b, 0x41, 0x45, 0x45, 0x40, 0x3a, 0x36, 0x33, 0x33, 0x33, 0x34, 0x37, 0x3b, 0x3d, 0x3e,\n    0x40, 0x45, 0x43, 0x39, 0x39, 0x45, 0x4e, 0x4f, 0x4c, 0x47, 0x4a, 0x56, 0x5e, 0x5d, 0x5d, 0x60,\n    0x69, 0x66, 0x5d, 0x4e, 0x43, 0x42, 0x48, 0x4e, 0x45, 0x57, 0x60, 0x59, 0x50, 0x50, 0x52, 0x50,\n    0x4c, 0x49, 0x47, 0x47, 0x47, 0x47, 0x4a, 0x4d, 0x52, 0x51, 0x4a, 0x43, 0x47, 0x50, 0x50, 0x49,\n    0x35, 0x34, 0x38, 0x40, 0x45, 0x44, 0x45, 0x49, 0x4b, 0x51, 0x4f, 0x48, 0x4e, 0x5d, 0x60, 0x57,\n    0x4c, 0x48, 0x43, 0x40, 0x3c, 0x39, 0x3c, 0x40, 0x4c, 0x56, 0x55, 0x4b, 0x46, 0x46, 0x46, 0x4a,\n    0x55, 0x5c, 0x5f, 0x59, 0x4f, 0x4a, 0x4f, 0x57, 0x4b, 0x4f, 0x5a, 0x68, 0x6f, 0x6c, 0x68, 0x66,\n    0x64, 0x6b, 0x6f, 0x67, 0x58, 0x4e, 0x4e, 0x53, 0x40, 0x3e, 0x39, 0x38, 0x40, 0x4d, 0x58, 0x5c,\n    0x4e, 0x3d, 0x3b, 0x52, 0x65, 0x61, 0x4f, 0x43, 0x3f, 0x49, 0x58, 0x61, 0x5d, 0x52, 0x49, 0x46,\n    0x47, 0x4e, 0x42, 0x3b, 0x42, 0x4f, 0x54, 0x43, 0x38, 0x2f, 0x2a, 0x2c, 0x31, 0x40, 0x56, 0x64,\n    0x6c, 0x6b, 0x5c, 0x51, 0x5b, 0x66, 0x59, 0x45, 0x3f, 0x42, 0x3c, 0x34, 0x35, 0x3e, 0x53, 0x6c,\n    0x74, 0x70, 0x69, 0x66, 0x5f, 0x4b, 0x3d, 0x3e, 0x32, 0x2f, 0x2f, 0x33, 0x3a, 0x46, 0x57, 0x65,\n    0x74, 0x77, 0x70, 0x62, 0x59, 0x56, 0x4c, 0x3f, 0x3b, 0x20, 0x1a, 0x36, 0x59, 0x6f, 0x72, 0x6b,\n    0x5d, 0x5f, 0x5a, 0x51, 0x4d, 0x4f, 0x4e, 0x49, 0x4c, 0x4a, 0x4e, 0x58, 0x5c, 0x58, 0x53, 0x52,\n    0x50, 0x4d, 0x4b, 0x4b, 0x4a, 0x47, 0x47, 0x49, 0x4d, 0x4d, 0x4b, 0x47, 0x45, 0x47, 0x48, 0x48,\n    0x50, 0x4f, 0x50, 0x56, 0x5c, 0x5d, 0x57, 0x50, 0x55, 0x48, 0x3d, 0x40, 0x49, 0x50, 0x54, 0x57,\n    0x5f, 0x5d, 0x5f, 0x5d, 0x54, 0x50, 0x50, 0x4c, 0x41, 0x40, 0x3e, 0x3e, 0x42, 0x4b, 0x56, 0x5e,\n    0x61, 0x5e, 0x5c, 0x60, 0x65, 0x65, 0x5e, 0x57, 0x4a, 0x42, 0x42, 0x4d, 0x56, 0x56, 0x57, 0x5a,\n    0x5e, 0x60, 0x61, 0x5d, 0x55, 0x4d, 0x4b, 0x4b, 0x4a, 0x42, 0x3f, 0x43, 0x45, 0x44, 0x47, 0x4c,\n    0x49, 0x4c, 0x4b, 0x48, 0x4a, 0x53, 0x5c, 0x60, 0x5b, 0x54, 0x50, 0x52, 0x56, 0x5a, 0x62, 0x6a,\n    0x6f, 0x6d, 0x69, 0x65, 0x64, 0x63, 0x61, 0x5e, 0x5d, 0x5a, 0x54, 0x4d, 0x46, 0x42, 0x41, 0x41,\n    0x4d, 0x4d, 0x4b, 0x4a, 0x4f, 0x57, 0x5b, 0x5b, 0x56, 0x56, 0x55, 0x58, 0x5e, 0x62, 0x61, 0x5c,\n    0x53, 0x4b, 0x44, 0x46, 0x50, 0x59, 0x5a, 0x57, 0x4d, 0x42, 0x3a, 0x39, 0x3c, 0x3d, 0x3b, 0x39,\n    0x39, 0x42, 0x4d, 0x54, 0x55, 0x52, 0x4d, 0x48, 0x48, 0x49, 0x4b, 0x4d, 0x51, 0x58, 0x60, 0x66,\n    0x66, 0x62, 0x5d, 0x5a, 0x5a, 0x5a, 0x59, 0x59, 0x56, 0x56, 0x57, 0x57, 0x58, 0x58, 0x57, 0x56,\n    0x5a, 0x61, 0x6a, 0x6e, 0x6d, 0x68, 0x65, 0x63, 0x63, 0x6a, 0x6f, 0x6b, 0x65, 0x63, 0x62, 0x62,\n    0x5e, 0x5d, 0x5b, 0x58, 0x56, 0x57, 0x5b, 0x5e, 0x5e, 0x65, 0x68, 0x62, 0x5b, 0x5c, 0x60, 0x63,\n    0x65, 0x60, 0x5e, 0x60, 0x62, 0x62, 0x61, 0x61, 0x60, 0x64, 0x66, 0x63, 0x60, 0x61, 0x66, 0x69,\n    0x69, 0x67, 0x65, 0x64, 0x60, 0x5f, 0x62, 0x66, 0x66, 0x64, 0x61, 0x5f, 0x5f, 0x5e, 0x5b, 0x59,\n    0x55, 0x56, 0x5c, 0x63, 0x65, 0x64, 0x62, 0x63, 0x66, 0x6b, 0x6b, 0x64, 0x5c, 0x5a, 0x5f, 0x63,\n    0x63, 0x5f, 0x5d, 0x5e, 0x5c, 0x59, 0x59, 0x5c, 0x5b, 0x56, 0x56, 0x5c, 0x5f, 0x5a, 0x56, 0x56,\n    0x65, 0x6a, 0x71, 0x79, 0x80, 0x84, 0x87, 0x88, 0x7a, 0x7a, 0x7b, 0x7c, 0x7e, 0x7e, 0x7c, 0x7a,\n    0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x77, 0x76, 0x73, 0x72, 0x71, 0x72, 0x72, 0x72, 0x75, 0x79,\n    0x7e, 0x80, 0x83, 0x86, 0x89, 0x8a, 0x8a, 0x8a, 0x89, 0x87, 0x84, 0x82, 0x80, 0x7e, 0x7b, 0x7a,\n    0x7c, 0x7a, 0x77, 0x73, 0x70, 0x6d, 0x6b, 0x6a, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6d, 0x6c, 0x6c,\n    0x69, 0x6a, 0x6a, 0x68, 0x67, 0x66, 0x67, 0x68, 0x69, 0x68, 0x66, 0x65, 0x66, 0x69, 0x6c, 0x6e,\n    0x73, 0x76, 0x79, 0x7c, 0x7c, 0x7b, 0x78, 0x76, 0x7c, 0x7e, 0x82, 0x83, 0x82, 0x81, 0x81, 0x82,\n    0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7a, 0x79, 0x78, 0x75, 0x72, 0x6e, 0x6c, 0x69, 0x66, 0x64,\n    0x62, 0x61, 0x61, 0x60, 0x5e, 0x5d, 0x5c, 0x5b, 0x5d, 0x5c, 0x5a, 0x5a, 0x5a, 0x5b, 0x5a, 0x59,\n    0x57, 0x56, 0x54, 0x55, 0x56, 0x56, 0x55, 0x54, 0x4d, 0x51, 0x4a, 0x3e, 0x42, 0x50, 0x52, 0x49,\n    0x3c, 0x41, 0x48, 0x4a, 0x47, 0x42, 0x3f, 0x3d, 0x37, 0x35, 0x34, 0x35, 0x38, 0x3b, 0x3b, 0x3a,\n    0x44, 0x47, 0x3f, 0x2f, 0x2c, 0x3c, 0x4e, 0x55, 0x5a, 0x50, 0x4a, 0x4a, 0x49, 0x4e, 0x5f, 0x73,\n    0x7b, 0x80, 0x7b, 0x6c, 0x60, 0x5a, 0x4d, 0x3e, 0x3f, 0x42, 0x46, 0x47, 0x46, 0x45, 0x48, 0x4e,\n    0x4b, 0x45, 0x43, 0x46, 0x47, 0x45, 0x47, 0x4b, 0x53, 0x55, 0x50, 0x46, 0x45, 0x4d, 0x50, 0x4b,\n    0x41, 0x43, 0x43, 0x45, 0x4b, 0x50, 0x4b, 0x41, 0x40, 0x43, 0x45, 0x46, 0x49, 0x4e, 0x50, 0x4f,\n    0x4f, 0x4a, 0x45, 0x41, 0x3e, 0x3b, 0x3d, 0x40, 0x50, 0x5a, 0x58, 0x4e, 0x4e, 0x54, 0x5c, 0x64,\n    0x6c, 0x6b, 0x68, 0x62, 0x58, 0x52, 0x55, 0x5d, 0x4a, 0x4e, 0x5b, 0x6b, 0x71, 0x6d, 0x69, 0x69,\n    0x70, 0x6e, 0x6b, 0x65, 0x5e, 0x5a, 0x58, 0x58, 0x4f, 0x46, 0x3b, 0x3a, 0x48, 0x5d, 0x68, 0x67,\n    0x5c, 0x4a, 0x42, 0x50, 0x5f, 0x5b, 0x49, 0x3c, 0x42, 0x4b, 0x56, 0x5a, 0x51, 0x44, 0x3c, 0x3b,\n    0x46, 0x49, 0x3a, 0x36, 0x44, 0x59, 0x61, 0x4f, 0x3f, 0x32, 0x38, 0x47, 0x42, 0x3b, 0x4d, 0x66,\n    0x64, 0x65, 0x55, 0x4d, 0x61, 0x6c, 0x5d, 0x4e, 0x4c, 0x3f, 0x2f, 0x2f, 0x3b, 0x46, 0x55, 0x68,\n    0x7a, 0x71, 0x5f, 0x57, 0x5e, 0x5b, 0x4c, 0x3f, 0x40, 0x3d, 0x3d, 0x3f, 0x3f, 0x46, 0x5c, 0x72,\n    0x6e, 0x70, 0x6c, 0x5a, 0x42, 0x33, 0x37, 0x41, 0x35, 0x23, 0x27, 0x43, 0x58, 0x61, 0x65, 0x65,\n    0x7c, 0x64, 0x50, 0x4f, 0x51, 0x4c, 0x4c, 0x52, 0x56, 0x55, 0x55, 0x55, 0x55, 0x53, 0x51, 0x50,\n    0x50, 0x4f, 0x4d, 0x4b, 0x49, 0x49, 0x4a, 0x4b, 0x50, 0x51, 0x4f, 0x4b, 0x48, 0x48, 0x47, 0x45,\n    0x3f, 0x48, 0x4c, 0x4c, 0x52, 0x5c, 0x5d, 0x56, 0x53, 0x59, 0x61, 0x65, 0x60, 0x58, 0x57, 0x5b,\n    0x67, 0x6b, 0x68, 0x5e, 0x56, 0x52, 0x4e, 0x48, 0x3e, 0x38, 0x38, 0x40, 0x49, 0x4e, 0x52, 0x55,\n    0x55, 0x57, 0x5c, 0x61, 0x61, 0x5b, 0x57, 0x55, 0x47, 0x46, 0x48, 0x4d, 0x54, 0x59, 0x60, 0x66,\n    0x6b, 0x66, 0x5e, 0x56, 0x4f, 0x4b, 0x4a, 0x4a, 0x4d, 0x4b, 0x47, 0x43, 0x42, 0x45, 0x49, 0x4d,\n    0x4b, 0x49, 0x48, 0x4b, 0x52, 0x5a, 0x62, 0x66, 0x54, 0x52, 0x4d, 0x49, 0x4a, 0x53, 0x61, 0x6b,\n    0x6c, 0x69, 0x65, 0x63, 0x63, 0x60, 0x5c, 0x58, 0x55, 0x57, 0x57, 0x51, 0x48, 0x43, 0x43, 0x45,\n    0x46, 0x45, 0x46, 0x4d, 0x58, 0x64, 0x6f, 0x76, 0x61, 0x4b, 0x37, 0x39, 0x48, 0x58, 0x66, 0x6f,\n    0x6a, 0x68, 0x60, 0x56, 0x56, 0x5c, 0x57, 0x4e, 0x48, 0x44, 0x3f, 0x3e, 0x40, 0x41, 0x40, 0x3e,\n    0x3f, 0x46, 0x4e, 0x51, 0x4e, 0x48, 0x46, 0x48, 0x49, 0x52, 0x57, 0x56, 0x56, 0x5b, 0x5e, 0x5d,\n    0x61, 0x5f, 0x5c, 0x5c, 0x5c, 0x5b, 0x58, 0x55, 0x51, 0x53, 0x55, 0x59, 0x5c, 0x5e, 0x5e, 0x5e,\n    0x65, 0x6a, 0x6e, 0x6d, 0x6b, 0x6a, 0x69, 0x67, 0x6b, 0x70, 0x71, 0x6c, 0x66, 0x63, 0x63, 0x62,\n    0x62, 0x61, 0x5d, 0x57, 0x55, 0x57, 0x5a, 0x5b, 0x5c, 0x5d, 0x5f, 0x5e, 0x5c, 0x5b, 0x5c, 0x5e,\n    0x66, 0x62, 0x5f, 0x5f, 0x5f, 0x61, 0x65, 0x69, 0x62, 0x67, 0x68, 0x63, 0x61, 0x65, 0x6d, 0x72,\n    0x7b, 0x79, 0x70, 0x63, 0x5b, 0x5d, 0x61, 0x64, 0x65, 0x62, 0x5e, 0x5d, 0x5e, 0x5d, 0x5a, 0x57,\n    0x5c, 0x5e, 0x64, 0x68, 0x68, 0x65, 0x64, 0x66, 0x69, 0x72, 0x73, 0x67, 0x5f, 0x5f, 0x61, 0x5f,\n    0x5a, 0x5f, 0x5d, 0x5a, 0x59, 0x54, 0x53, 0x59, 0x68, 0x76, 0x88, 0x97, 0xa3, 0xac, 0xae, 0xac,\n    0xa8, 0xa9, 0xa1, 0x95, 0x8f, 0x8f, 0x89, 0x7f, 0x7d, 0x7b, 0x7b, 0x7d, 0x7c, 0x79, 0x78, 0x7c,\n    0x79, 0x7b, 0x7d, 0x7d, 0x7b, 0x79, 0x77, 0x76, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x76, 0x78,\n    0x7c, 0x7f, 0x82, 0x85, 0x87, 0x89, 0x8b, 0x8c, 0x8c, 0x89, 0x85, 0x82, 0x7f, 0x7d, 0x7a, 0x79,\n    0x76, 0x76, 0x75, 0x74, 0x72, 0x70, 0x6f, 0x6e, 0x6c, 0x6b, 0x6a, 0x6a, 0x6b, 0x6c, 0x6c, 0x6b,\n    0x6a, 0x69, 0x68, 0x66, 0x66, 0x66, 0x67, 0x68, 0x67, 0x68, 0x68, 0x69, 0x6a, 0x6c, 0x6d, 0x6e,\n    0x73, 0x73, 0x75, 0x77, 0x7a, 0x7b, 0x7a, 0x79, 0x80, 0x80, 0x81, 0x82, 0x82, 0x81, 0x80, 0x80,\n    0x7d, 0x7e, 0x7f, 0x7f, 0x7f, 0x7e, 0x7c, 0x7b, 0x78, 0x76, 0x73, 0x70, 0x6d, 0x6a, 0x67, 0x65,\n    0x63, 0x61, 0x5f, 0x5d, 0x5b, 0x5a, 0x5a, 0x5a, 0x5e, 0x5d, 0x5b, 0x5b, 0x5b, 0x5b, 0x5a, 0x59,\n    0x57, 0x59, 0x58, 0x55, 0x55, 0x55, 0x52, 0x4d, 0x49, 0x48, 0x45, 0x41, 0x44, 0x4c, 0x54, 0x58,\n    0x50, 0x53, 0x51, 0x48, 0x44, 0x46, 0x45, 0x40, 0x37, 0x32, 0x2f, 0x33, 0x39, 0x3c, 0x3c, 0x3a,\n    0x41, 0x47, 0x3f, 0x31, 0x31, 0x39, 0x43, 0x4c, 0x54, 0x5d, 0x60, 0x5b, 0x5c, 0x63, 0x65, 0x60,\n    0x64, 0x73, 0x7e, 0x7c, 0x75, 0x70, 0x6c, 0x67, 0x60, 0x54, 0x49, 0x45, 0x40, 0x3b, 0x3f, 0x48,\n    0x4c, 0x4a, 0x49, 0x49, 0x47, 0x46, 0x49, 0x4e, 0x54, 0x53, 0x4f, 0x49, 0x48, 0x4b, 0x4e, 0x4e,\n    0x4e, 0x50, 0x50, 0x51, 0x53, 0x53, 0x4e, 0x48, 0x3f, 0x39, 0x3a, 0x47, 0x52, 0x52, 0x4e, 0x4c,\n    0x45, 0x49, 0x47, 0x43, 0x44, 0x43, 0x41, 0x45, 0x4e, 0x59, 0x5c, 0x56, 0x59, 0x68, 0x70, 0x6e,\n    0x70, 0x6b, 0x62, 0x59, 0x54, 0x55, 0x5a, 0x5f, 0x4e, 0x51, 0x5e, 0x6e, 0x6f, 0x66, 0x65, 0x6b,\n    0x69, 0x6f, 0x6c, 0x62, 0x5e, 0x61, 0x5d, 0x53, 0x4a, 0x4c, 0x4c, 0x4e, 0x58, 0x63, 0x61, 0x57,\n    0x46, 0x35, 0x40, 0x51, 0x61, 0x5d, 0x41, 0x39, 0x3e, 0x50, 0x4e, 0x51, 0x50, 0x52, 0x46, 0x4c,\n    0x50, 0x50, 0x45, 0x40, 0x4e, 0x5b, 0x5a, 0x56, 0x48, 0x55, 0x4d, 0x38, 0x37, 0x49, 0x5b, 0x65,\n    0x79, 0x78, 0x67, 0x53, 0x4a, 0x3f, 0x3b, 0x46, 0x43, 0x3b, 0x37, 0x39, 0x37, 0x3a, 0x4f, 0x67,\n    0x76, 0x60, 0x50, 0x51, 0x56, 0x51, 0x4a, 0x47, 0x3e, 0x3f, 0x3e, 0x39, 0x3d, 0x53, 0x67, 0x68,\n    0x69, 0x6d, 0x6d, 0x61, 0x4c, 0x3a, 0x35, 0x38, 0x22, 0x21, 0x2f, 0x42, 0x4c, 0x55, 0x62, 0x6a,\n    0x74, 0x57, 0x42, 0x47, 0x55, 0x59, 0x56, 0x55, 0x5d, 0x59, 0x55, 0x53, 0x53, 0x54, 0x53, 0x52,\n    0x4d, 0x4a, 0x47, 0x44, 0x45, 0x48, 0x4e, 0x52, 0x4e, 0x4f, 0x4e, 0x4c, 0x4b, 0x4b, 0x49, 0x46,\n    0x44, 0x47, 0x46, 0x41, 0x44, 0x52, 0x5f, 0x64, 0x6d, 0x69, 0x6a, 0x6e, 0x6c, 0x65, 0x62, 0x65,\n    0x74, 0x76, 0x76, 0x73, 0x6c, 0x63, 0x57, 0x4d, 0x47, 0x44, 0x45, 0x4d, 0x52, 0x51, 0x4e, 0x4c,\n    0x52, 0x4f, 0x4f, 0x53, 0x56, 0x56, 0x57, 0x59, 0x53, 0x50, 0x4e, 0x51, 0x56, 0x5d, 0x65, 0x6c,\n    0x6e, 0x68, 0x5f, 0x55, 0x4f, 0x4d, 0x4d, 0x4f, 0x4b, 0x4a, 0x48, 0x45, 0x44, 0x44, 0x47, 0x49,\n    0x49, 0x4f, 0x57, 0x5d, 0x5e, 0x5a, 0x54, 0x50, 0x52, 0x4e, 0x48, 0x43, 0x45, 0x4e, 0x5a, 0x63,\n    0x69, 0x67, 0x63, 0x5f, 0x5b, 0x57, 0x55, 0x54, 0x52, 0x55, 0x55, 0x50, 0x47, 0x42, 0x41, 0x43,\n    0x4a, 0x49, 0x47, 0x47, 0x50, 0x5d, 0x67, 0x6b, 0x6f, 0x69, 0x5f, 0x55, 0x52, 0x52, 0x52, 0x51,\n    0x4b, 0x50, 0x55, 0x5b, 0x60, 0x60, 0x54, 0x46, 0x3e, 0x3e, 0x41, 0x46, 0x4b, 0x4a, 0x44, 0x3e,\n    0x39, 0x3f, 0x48, 0x4e, 0x4c, 0x48, 0x46, 0x46, 0x49, 0x4d, 0x50, 0x4f, 0x4e, 0x50, 0x51, 0x50,\n    0x53, 0x53, 0x53, 0x55, 0x58, 0x59, 0x56, 0x54, 0x51, 0x53, 0x57, 0x5a, 0x5d, 0x5c, 0x5b, 0x59,\n    0x66, 0x69, 0x69, 0x66, 0x64, 0x65, 0x67, 0x68, 0x6f, 0x73, 0x74, 0x71, 0x6c, 0x6a, 0x69, 0x67,\n    0x62, 0x61, 0x5d, 0x58, 0x59, 0x5e, 0x62, 0x64, 0x60, 0x62, 0x63, 0x63, 0x60, 0x5e, 0x5d, 0x5e,\n    0x61, 0x5f, 0x5d, 0x5f, 0x60, 0x61, 0x63, 0x67, 0x67, 0x69, 0x69, 0x66, 0x65, 0x69, 0x6e, 0x70,\n    0x75, 0x75, 0x6f, 0x65, 0x5e, 0x5f, 0x62, 0x63, 0x64, 0x61, 0x5e, 0x5c, 0x5b, 0x5b, 0x5b, 0x5a,\n    0x61, 0x62, 0x67, 0x6b, 0x6c, 0x69, 0x68, 0x69, 0x6b, 0x6f, 0x6e, 0x65, 0x5d, 0x5f, 0x63, 0x65,\n    0x63, 0x62, 0x5a, 0x55, 0x5b, 0x6b, 0x89, 0xa8, 0xbc, 0xb7, 0xb0, 0xaa, 0xa1, 0x94, 0x88, 0x81,\n    0x7a, 0x7b, 0x77, 0x70, 0x71, 0x7b, 0x85, 0x89, 0x80, 0x7d, 0x7a, 0x7a, 0x78, 0x75, 0x76, 0x79,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x77, 0x75, 0x76, 0x76, 0x75, 0x74, 0x75, 0x77, 0x78,\n    0x7c, 0x7f, 0x82, 0x85, 0x87, 0x89, 0x8b, 0x8d, 0x8a, 0x88, 0x86, 0x83, 0x80, 0x7c, 0x77, 0x74,\n    0x74, 0x74, 0x73, 0x72, 0x71, 0x70, 0x70, 0x70, 0x6c, 0x6a, 0x69, 0x6a, 0x6b, 0x6b, 0x6b, 0x6b,\n    0x6c, 0x6b, 0x69, 0x68, 0x67, 0x67, 0x67, 0x68, 0x68, 0x68, 0x68, 0x68, 0x69, 0x6a, 0x6b, 0x6b,\n    0x6d, 0x6f, 0x73, 0x76, 0x78, 0x7a, 0x7b, 0x7c, 0x7f, 0x80, 0x81, 0x82, 0x82, 0x81, 0x80, 0x7f,\n    0x7e, 0x7f, 0x7f, 0x7f, 0x7e, 0x7d, 0x7b, 0x7a, 0x76, 0x74, 0x71, 0x6e, 0x6b, 0x68, 0x65, 0x63,\n    0x61, 0x60, 0x5e, 0x5d, 0x5b, 0x5b, 0x5b, 0x5b, 0x5d, 0x5c, 0x5a, 0x5a, 0x5a, 0x5a, 0x58, 0x57,\n    0x56, 0x58, 0x58, 0x55, 0x54, 0x53, 0x4f, 0x49, 0x45, 0x43, 0x3f, 0x3c, 0x3e, 0x43, 0x4b, 0x50,\n    0x54, 0x56, 0x54, 0x4d, 0x48, 0x47, 0x45, 0x41, 0x38, 0x33, 0x2f, 0x30, 0x34, 0x38, 0x39, 0x39,\n    0x3f, 0x47, 0x44, 0x39, 0x39, 0x3f, 0x46, 0x4e, 0x56, 0x60, 0x6d, 0x79, 0x82, 0x81, 0x70, 0x5e,\n    0x67, 0x63, 0x60, 0x62, 0x68, 0x70, 0x77, 0x7c, 0x6a, 0x5f, 0x52, 0x49, 0x40, 0x3a, 0x3d, 0x44,\n    0x4e, 0x4f, 0x50, 0x4e, 0x4c, 0x4c, 0x4f, 0x51, 0x51, 0x51, 0x4f, 0x4b, 0x49, 0x4a, 0x4a, 0x49,\n    0x51, 0x52, 0x54, 0x56, 0x58, 0x59, 0x59, 0x59, 0x4d, 0x44, 0x40, 0x47, 0x4e, 0x4e, 0x4b, 0x4a,\n    0x49, 0x52, 0x50, 0x48, 0x46, 0x45, 0x46, 0x4c, 0x57, 0x5d, 0x5d, 0x56, 0x54, 0x5a, 0x5b, 0x57,\n    0x50, 0x4c, 0x4c, 0x54, 0x5e, 0x61, 0x5a, 0x51, 0x40, 0x49, 0x5b, 0x6b, 0x6e, 0x68, 0x66, 0x6a,\n    0x73, 0x72, 0x67, 0x58, 0x53, 0x59, 0x5c, 0x57, 0x50, 0x52, 0x4e, 0x4b, 0x50, 0x5a, 0x5d, 0x58,\n    0x4d, 0x38, 0x40, 0x53, 0x63, 0x5c, 0x3c, 0x32, 0x43, 0x53, 0x4e, 0x51, 0x51, 0x53, 0x46, 0x4a,\n    0x4f, 0x4c, 0x43, 0x46, 0x59, 0x65, 0x60, 0x59, 0x64, 0x62, 0x4f, 0x39, 0x38, 0x4a, 0x62, 0x75,\n    0x75, 0x6d, 0x57, 0x41, 0x38, 0x3b, 0x43, 0x4d, 0x50, 0x43, 0x37, 0x36, 0x3a, 0x42, 0x53, 0x63,\n    0x56, 0x4d, 0x4b, 0x52, 0x55, 0x4e, 0x4a, 0x4b, 0x3f, 0x2a, 0x24, 0x35, 0x47, 0x58, 0x6b, 0x77,\n    0x78, 0x73, 0x68, 0x5b, 0x4d, 0x3e, 0x2e, 0x22, 0x1d, 0x18, 0x27, 0x4b, 0x6d, 0x7e, 0x80, 0x79,\n    0x66, 0x5a, 0x53, 0x54, 0x55, 0x53, 0x54, 0x58, 0x58, 0x53, 0x4d, 0x4b, 0x4d, 0x50, 0x51, 0x50,\n    0x4f, 0x4b, 0x46, 0x42, 0x42, 0x45, 0x4a, 0x4d, 0x4a, 0x4b, 0x4a, 0x49, 0x4a, 0x4c, 0x49, 0x46,\n    0x44, 0x46, 0x45, 0x42, 0x40, 0x45, 0x50, 0x5b, 0x67, 0x61, 0x64, 0x70, 0x72, 0x66, 0x5a, 0x57,\n    0x63, 0x63, 0x67, 0x70, 0x75, 0x6e, 0x61, 0x58, 0x45, 0x44, 0x48, 0x50, 0x57, 0x57, 0x55, 0x53,\n    0x4b, 0x46, 0x43, 0x47, 0x4f, 0x55, 0x59, 0x5c, 0x63, 0x5f, 0x5d, 0x5e, 0x60, 0x63, 0x68, 0x6d,\n    0x68, 0x64, 0x5e, 0x58, 0x53, 0x52, 0x52, 0x53, 0x4d, 0x4c, 0x49, 0x46, 0x44, 0x45, 0x47, 0x4a,\n    0x54, 0x58, 0x5c, 0x5c, 0x57, 0x50, 0x49, 0x46, 0x49, 0x46, 0x43, 0x44, 0x4a, 0x52, 0x5a, 0x60,\n    0x61, 0x60, 0x5f, 0x5b, 0x57, 0x55, 0x56, 0x57, 0x57, 0x5b, 0x5d, 0x59, 0x50, 0x49, 0x47, 0x48,\n    0x47, 0x48, 0x42, 0x39, 0x3a, 0x43, 0x4a, 0x49, 0x4e, 0x58, 0x5f, 0x60, 0x63, 0x68, 0x66, 0x5f,\n    0x48, 0x45, 0x46, 0x4d, 0x56, 0x58, 0x53, 0x4c, 0x4e, 0x46, 0x3e, 0x3b, 0x3f, 0x44, 0x45, 0x43,\n    0x45, 0x46, 0x49, 0x4c, 0x4a, 0x45, 0x42, 0x42, 0x4d, 0x4e, 0x51, 0x55, 0x55, 0x51, 0x4e, 0x4e,\n    0x4b, 0x4c, 0x4f, 0x53, 0x58, 0x59, 0x57, 0x54, 0x50, 0x51, 0x53, 0x55, 0x56, 0x56, 0x55, 0x54,\n    0x5e, 0x61, 0x62, 0x60, 0x5e, 0x60, 0x63, 0x64, 0x6e, 0x71, 0x73, 0x72, 0x71, 0x70, 0x6d, 0x69,\n    0x5c, 0x5c, 0x5b, 0x5b, 0x5f, 0x65, 0x67, 0x66, 0x64, 0x65, 0x65, 0x64, 0x61, 0x5e, 0x5d, 0x5c,\n    0x5d, 0x5c, 0x5c, 0x5f, 0x61, 0x61, 0x62, 0x65, 0x6c, 0x6d, 0x6c, 0x6a, 0x6b, 0x6e, 0x6f, 0x6e,\n    0x71, 0x71, 0x6e, 0x68, 0x63, 0x62, 0x63, 0x64, 0x62, 0x61, 0x5e, 0x5b, 0x59, 0x5b, 0x5e, 0x61,\n    0x5f, 0x5e, 0x61, 0x67, 0x6a, 0x6a, 0x6a, 0x6b, 0x69, 0x6a, 0x68, 0x62, 0x5c, 0x5b, 0x60, 0x65,\n    0x6b, 0x6f, 0x77, 0x8d, 0xa9, 0xb4, 0xb1, 0xb0, 0xa3, 0x94, 0x86, 0x81, 0x7f, 0x78, 0x74, 0x73,\n    0x6f, 0x68, 0x64, 0x6c, 0x7c, 0x8a, 0x8f, 0x8e, 0x84, 0x7f, 0x7a, 0x77, 0x74, 0x71, 0x72, 0x74,\n    0x78, 0x77, 0x76, 0x76, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78, 0x77, 0x75, 0x74, 0x74, 0x76, 0x78,\n    0x7c, 0x7e, 0x82, 0x85, 0x88, 0x8a, 0x8c, 0x8e, 0x89, 0x88, 0x86, 0x84, 0x80, 0x7b, 0x75, 0x71,\n    0x72, 0x71, 0x70, 0x6f, 0x6f, 0x6f, 0x70, 0x71, 0x6c, 0x6b, 0x6a, 0x6a, 0x6b, 0x6c, 0x6b, 0x6b,\n    0x6c, 0x6c, 0x6b, 0x6a, 0x69, 0x68, 0x67, 0x67, 0x69, 0x68, 0x68, 0x67, 0x67, 0x67, 0x67, 0x68,\n    0x6a, 0x6d, 0x72, 0x75, 0x76, 0x78, 0x7b, 0x7d, 0x7e, 0x7f, 0x81, 0x82, 0x82, 0x81, 0x80, 0x7f,\n    0x80, 0x80, 0x80, 0x7f, 0x7e, 0x7c, 0x7a, 0x79, 0x73, 0x70, 0x6d, 0x6b, 0x68, 0x66, 0x63, 0x60,\n    0x5f, 0x5e, 0x5d, 0x5c, 0x5b, 0x5b, 0x5c, 0x5c, 0x5c, 0x5b, 0x5a, 0x5a, 0x5a, 0x59, 0x57, 0x56,\n    0x53, 0x54, 0x54, 0x53, 0x55, 0x57, 0x56, 0x54, 0x4f, 0x48, 0x44, 0x44, 0x44, 0x46, 0x4e, 0x57,\n    0x53, 0x52, 0x50, 0x4d, 0x4a, 0x47, 0x45, 0x44, 0x3b, 0x36, 0x30, 0x2e, 0x30, 0x35, 0x38, 0x38,\n    0x40, 0x49, 0x46, 0x3d, 0x3c, 0x40, 0x47, 0x50, 0x5a, 0x5d, 0x66, 0x73, 0x7e, 0x7f, 0x77, 0x6f,\n    0x61, 0x58, 0x54, 0x5a, 0x60, 0x62, 0x66, 0x6c, 0x6b, 0x64, 0x59, 0x4e, 0x45, 0x41, 0x41, 0x42,\n    0x47, 0x4d, 0x50, 0x4d, 0x4c, 0x4e, 0x4f, 0x4c, 0x4c, 0x4e, 0x4e, 0x4c, 0x4b, 0x4c, 0x4a, 0x48,\n    0x46, 0x47, 0x4d, 0x53, 0x54, 0x51, 0x52, 0x58, 0x4e, 0x48, 0x46, 0x4b, 0x4f, 0x4e, 0x4e, 0x4f,\n    0x52, 0x5f, 0x5d, 0x4f, 0x47, 0x47, 0x4e, 0x56, 0x5b, 0x5c, 0x5a, 0x57, 0x55, 0x54, 0x50, 0x4b,\n    0x48, 0x47, 0x4d, 0x5b, 0x69, 0x69, 0x5c, 0x4d, 0x4a, 0x57, 0x67, 0x6f, 0x6f, 0x6b, 0x6a, 0x6b,\n    0x71, 0x6e, 0x62, 0x54, 0x50, 0x56, 0x58, 0x56, 0x50, 0x52, 0x4c, 0x44, 0x46, 0x53, 0x5d, 0x5e,\n    0x59, 0x45, 0x4a, 0x5b, 0x63, 0x56, 0x3f, 0x3d, 0x41, 0x4b, 0x43, 0x46, 0x47, 0x49, 0x3b, 0x3f,\n    0x57, 0x50, 0x47, 0x4e, 0x62, 0x67, 0x5d, 0x54, 0x58, 0x56, 0x4b, 0x43, 0x49, 0x55, 0x66, 0x78,\n    0x74, 0x68, 0x57, 0x46, 0x40, 0x4d, 0x58, 0x57, 0x45, 0x3e, 0x35, 0x32, 0x3b, 0x4d, 0x61, 0x6e,\n    0x61, 0x57, 0x4f, 0x4a, 0x42, 0x3a, 0x3b, 0x43, 0x44, 0x32, 0x2d, 0x3d, 0x57, 0x71, 0x7f, 0x7f,\n    0x78, 0x76, 0x6b, 0x5a, 0x4a, 0x3f, 0x35, 0x2c, 0x2c, 0x26, 0x2e, 0x4b, 0x6b, 0x79, 0x74, 0x6b,\n    0x4d, 0x53, 0x59, 0x57, 0x50, 0x4d, 0x55, 0x60, 0x5c, 0x56, 0x4e, 0x49, 0x49, 0x4a, 0x49, 0x47,\n    0x4f, 0x4c, 0x48, 0x45, 0x45, 0x46, 0x48, 0x49, 0x48, 0x47, 0x44, 0x42, 0x44, 0x47, 0x46, 0x42,\n    0x45, 0x45, 0x47, 0x48, 0x45, 0x42, 0x47, 0x50, 0x5c, 0x59, 0x62, 0x72, 0x74, 0x67, 0x5d, 0x5d,\n    0x63, 0x5e, 0x61, 0x6f, 0x7a, 0x76, 0x6b, 0x64, 0x58, 0x54, 0x51, 0x51, 0x53, 0x54, 0x53, 0x52,\n    0x54, 0x4f, 0x4e, 0x56, 0x60, 0x66, 0x69, 0x6a, 0x62, 0x60, 0x61, 0x63, 0x62, 0x5f, 0x5d, 0x5e,\n    0x5b, 0x5b, 0x5c, 0x5c, 0x5b, 0x59, 0x57, 0x55, 0x56, 0x53, 0x4e, 0x49, 0x47, 0x48, 0x4c, 0x4f,\n    0x5b, 0x5b, 0x57, 0x51, 0x4b, 0x48, 0x4a, 0x4d, 0x46, 0x45, 0x45, 0x49, 0x50, 0x55, 0x57, 0x57,\n    0x57, 0x57, 0x59, 0x5b, 0x5d, 0x5f, 0x60, 0x60, 0x58, 0x5c, 0x5e, 0x5a, 0x51, 0x49, 0x45, 0x44,\n    0x4e, 0x56, 0x53, 0x45, 0x3e, 0x42, 0x45, 0x42, 0x47, 0x4b, 0x51, 0x5c, 0x6b, 0x77, 0x79, 0x73,\n    0x5d, 0x50, 0x42, 0x3f, 0x44, 0x49, 0x4e, 0x51, 0x4d, 0x47, 0x42, 0x42, 0x45, 0x46, 0x42, 0x3d,\n    0x51, 0x4c, 0x49, 0x4a, 0x47, 0x42, 0x40, 0x42, 0x46, 0x45, 0x4b, 0x54, 0x56, 0x50, 0x4a, 0x4a,\n    0x50, 0x51, 0x53, 0x58, 0x5b, 0x5b, 0x58, 0x55, 0x52, 0x52, 0x51, 0x50, 0x4f, 0x50, 0x51, 0x53,\n    0x51, 0x58, 0x5f, 0x61, 0x61, 0x61, 0x61, 0x5f, 0x66, 0x69, 0x6b, 0x6d, 0x6f, 0x70, 0x6c, 0x67,\n    0x58, 0x5a, 0x5c, 0x60, 0x66, 0x6b, 0x6a, 0x65, 0x68, 0x66, 0x64, 0x61, 0x5f, 0x5e, 0x5d, 0x5d,\n    0x5b, 0x5a, 0x5b, 0x5e, 0x60, 0x60, 0x62, 0x64, 0x6c, 0x6e, 0x6f, 0x6d, 0x6e, 0x70, 0x70, 0x6f,\n    0x6f, 0x6f, 0x6d, 0x69, 0x65, 0x64, 0x65, 0x65, 0x63, 0x62, 0x5f, 0x5c, 0x59, 0x5c, 0x62, 0x68,\n    0x65, 0x61, 0x5f, 0x61, 0x64, 0x65, 0x66, 0x67, 0x67, 0x65, 0x63, 0x61, 0x5c, 0x58, 0x5a, 0x60,\n    0x6d, 0x98, 0xbc, 0xc5, 0xbe, 0xb2, 0xa7, 0xa3, 0x95, 0x88, 0x79, 0x70, 0x6e, 0x6c, 0x6b, 0x6a,\n    0x68, 0x67, 0x6f, 0x82, 0x91, 0x94, 0x8c, 0x85, 0x85, 0x81, 0x7b, 0x76, 0x72, 0x6f, 0x6d, 0x6d,\n    0x72, 0x74, 0x75, 0x76, 0x75, 0x76, 0x77, 0x79, 0x78, 0x78, 0x77, 0x76, 0x74, 0x74, 0x76, 0x77,\n    0x7c, 0x7e, 0x82, 0x86, 0x88, 0x8a, 0x8c, 0x8e, 0x8b, 0x8a, 0x88, 0x85, 0x82, 0x7d, 0x78, 0x74,\n    0x71, 0x70, 0x6e, 0x6d, 0x6c, 0x6d, 0x6e, 0x6f, 0x6d, 0x6b, 0x6a, 0x6a, 0x6b, 0x6b, 0x6b, 0x6a,\n    0x6b, 0x6b, 0x6b, 0x6a, 0x6a, 0x69, 0x68, 0x67, 0x6a, 0x69, 0x68, 0x67, 0x66, 0x66, 0x66, 0x66,\n    0x6a, 0x6e, 0x73, 0x75, 0x75, 0x76, 0x79, 0x7d, 0x7e, 0x80, 0x81, 0x83, 0x83, 0x82, 0x80, 0x7f,\n    0x80, 0x80, 0x7f, 0x7d, 0x7b, 0x79, 0x77, 0x76, 0x70, 0x6e, 0x6b, 0x68, 0x66, 0x64, 0x61, 0x5f,\n    0x5e, 0x5d, 0x5c, 0x5b, 0x5b, 0x5b, 0x5b, 0x5c, 0x5b, 0x5a, 0x5a, 0x5a, 0x5a, 0x59, 0x57, 0x55,\n    0x5d, 0x5a, 0x55, 0x51, 0x50, 0x51, 0x52, 0x52, 0x4d, 0x43, 0x3d, 0x3d, 0x3c, 0x3d, 0x46, 0x53,\n    0x53, 0x4d, 0x49, 0x49, 0x4b, 0x4c, 0x4c, 0x4b, 0x41, 0x3c, 0x34, 0x2f, 0x30, 0x36, 0x3a, 0x3b,\n    0x43, 0x49, 0x44, 0x3b, 0x39, 0x3e, 0x46, 0x51, 0x56, 0x53, 0x52, 0x53, 0x52, 0x56, 0x64, 0x72,\n    0x85, 0x7f, 0x76, 0x6c, 0x5e, 0x52, 0x4f, 0x51, 0x62, 0x5e, 0x55, 0x4d, 0x4a, 0x4b, 0x48, 0x44,\n    0x41, 0x4a, 0x4f, 0x4c, 0x4b, 0x4f, 0x4f, 0x49, 0x49, 0x4c, 0x4d, 0x4d, 0x4d, 0x4e, 0x4d, 0x4b,\n    0x46, 0x48, 0x51, 0x59, 0x56, 0x4e, 0x4e, 0x56, 0x4d, 0x4f, 0x53, 0x56, 0x54, 0x51, 0x52, 0x56,\n    0x5d, 0x6b, 0x68, 0x54, 0x47, 0x49, 0x54, 0x60, 0x5d, 0x59, 0x57, 0x58, 0x58, 0x54, 0x4f, 0x4c,\n    0x51, 0x55, 0x5c, 0x64, 0x68, 0x65, 0x5e, 0x58, 0x5b, 0x68, 0x72, 0x70, 0x6b, 0x6b, 0x6d, 0x6e,\n    0x6a, 0x6a, 0x64, 0x5d, 0x58, 0x56, 0x51, 0x4a, 0x4a, 0x4a, 0x43, 0x3c, 0x41, 0x53, 0x61, 0x64,\n    0x53, 0x44, 0x42, 0x49, 0x40, 0x2a, 0x22, 0x2c, 0x4b, 0x51, 0x44, 0x46, 0x48, 0x4c, 0x3f, 0x44,\n    0x58, 0x51, 0x49, 0x4f, 0x5c, 0x5d, 0x54, 0x50, 0x56, 0x53, 0x45, 0x39, 0x3f, 0x4e, 0x62, 0x74,\n    0x6d, 0x61, 0x57, 0x4b, 0x47, 0x57, 0x5c, 0x4e, 0x39, 0x3c, 0x37, 0x2f, 0x33, 0x49, 0x63, 0x72,\n    0x76, 0x67, 0x57, 0x4e, 0x47, 0x44, 0x47, 0x4e, 0x32, 0x2f, 0x36, 0x46, 0x58, 0x6d, 0x78, 0x74,\n    0x77, 0x77, 0x6c, 0x59, 0x4a, 0x45, 0x42, 0x3f, 0x2d, 0x2d, 0x32, 0x40, 0x54, 0x61, 0x68, 0x70,\n    0x4d, 0x54, 0x5d, 0x65, 0x6a, 0x6a, 0x63, 0x5c, 0x5c, 0x54, 0x4b, 0x45, 0x45, 0x48, 0x4b, 0x4c,\n    0x48, 0x46, 0x43, 0x43, 0x46, 0x4a, 0x4c, 0x4e, 0x47, 0x46, 0x41, 0x3d, 0x3e, 0x41, 0x42, 0x40,\n    0x48, 0x44, 0x45, 0x4a, 0x4b, 0x49, 0x4c, 0x53, 0x57, 0x56, 0x5e, 0x69, 0x6a, 0x65, 0x69, 0x75,\n    0x7c, 0x74, 0x72, 0x7a, 0x7d, 0x75, 0x68, 0x61, 0x66, 0x62, 0x5c, 0x59, 0x58, 0x5a, 0x5a, 0x5a,\n    0x5a, 0x58, 0x5a, 0x61, 0x69, 0x6d, 0x6e, 0x6e, 0x62, 0x62, 0x64, 0x67, 0x66, 0x62, 0x5e, 0x5e,\n    0x58, 0x5a, 0x5c, 0x5d, 0x5e, 0x5d, 0x5b, 0x5a, 0x5b, 0x5a, 0x57, 0x53, 0x50, 0x4f, 0x50, 0x51,\n    0x52, 0x53, 0x52, 0x4f, 0x4b, 0x4b, 0x4f, 0x53, 0x50, 0x4c, 0x49, 0x4a, 0x4d, 0x4e, 0x4d, 0x4a,\n    0x53, 0x52, 0x54, 0x5a, 0x62, 0x66, 0x65, 0x62, 0x60, 0x63, 0x64, 0x61, 0x5a, 0x51, 0x4b, 0x47,\n    0x4f, 0x5d, 0x62, 0x56, 0x4b, 0x4c, 0x4e, 0x4b, 0x4b, 0x41, 0x3b, 0x40, 0x4a, 0x54, 0x5e, 0x65,\n    0x61, 0x57, 0x4b, 0x46, 0x43, 0x42, 0x45, 0x48, 0x48, 0x44, 0x41, 0x44, 0x4a, 0x4f, 0x4f, 0x4d,\n    0x47, 0x43, 0x43, 0x48, 0x49, 0x45, 0x42, 0x45, 0x45, 0x43, 0x48, 0x51, 0x53, 0x4f, 0x4c, 0x4d,\n    0x53, 0x53, 0x55, 0x58, 0x5b, 0x5a, 0x57, 0x54, 0x57, 0x57, 0x56, 0x54, 0x51, 0x4e, 0x4e, 0x4e,\n    0x48, 0x51, 0x5b, 0x60, 0x62, 0x63, 0x61, 0x5f, 0x5f, 0x62, 0x65, 0x68, 0x6c, 0x6e, 0x6a, 0x65,\n    0x5d, 0x5f, 0x60, 0x64, 0x6a, 0x6f, 0x6e, 0x6a, 0x6b, 0x67, 0x62, 0x5d, 0x5c, 0x5d, 0x5f, 0x61,\n    0x5b, 0x59, 0x59, 0x5b, 0x5d, 0x5d, 0x60, 0x63, 0x69, 0x6d, 0x6f, 0x6e, 0x6c, 0x6e, 0x70, 0x70,\n    0x6f, 0x6d, 0x6a, 0x67, 0x64, 0x63, 0x63, 0x65, 0x64, 0x64, 0x62, 0x5e, 0x5c, 0x5f, 0x66, 0x6d,\n    0x74, 0x6d, 0x66, 0x63, 0x63, 0x62, 0x63, 0x64, 0x69, 0x65, 0x61, 0x60, 0x5d, 0x5c, 0x60, 0x65,\n    0x72, 0xae, 0xd4, 0xc6, 0xa9, 0x97, 0x8d, 0x87, 0x71, 0x6f, 0x6b, 0x65, 0x63, 0x65, 0x65, 0x62,\n    0x5d, 0x6f, 0x87, 0x96, 0x95, 0x8c, 0x88, 0x89, 0x84, 0x81, 0x7c, 0x77, 0x73, 0x6f, 0x6b, 0x67,\n    0x69, 0x6f, 0x75, 0x76, 0x74, 0x73, 0x75, 0x79, 0x78, 0x79, 0x79, 0x78, 0x77, 0x77, 0x78, 0x79,\n    0x7c, 0x7e, 0x82, 0x85, 0x88, 0x8a, 0x8c, 0x8d, 0x8d, 0x8c, 0x89, 0x87, 0x84, 0x81, 0x7d, 0x7b,\n    0x72, 0x71, 0x6f, 0x6c, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6a, 0x68, 0x68, 0x69, 0x69, 0x69, 0x68,\n    0x68, 0x68, 0x69, 0x69, 0x69, 0x69, 0x68, 0x68, 0x6b, 0x6a, 0x69, 0x68, 0x67, 0x66, 0x66, 0x66,\n    0x6b, 0x6f, 0x73, 0x75, 0x76, 0x77, 0x7b, 0x7f, 0x7f, 0x80, 0x82, 0x83, 0x82, 0x81, 0x7f, 0x7e,\n    0x7f, 0x7e, 0x7d, 0x7b, 0x78, 0x76, 0x74, 0x73, 0x6d, 0x6b, 0x69, 0x66, 0x65, 0x62, 0x60, 0x5e,\n    0x5e, 0x5d, 0x5c, 0x5b, 0x5a, 0x5a, 0x5a, 0x5b, 0x59, 0x59, 0x59, 0x5a, 0x5a, 0x58, 0x56, 0x53,\n    0x51, 0x4f, 0x4d, 0x4d, 0x4e, 0x50, 0x51, 0x52, 0x58, 0x4d, 0x46, 0x43, 0x40, 0x3e, 0x48, 0x56,\n    0x57, 0x4f, 0x47, 0x47, 0x4d, 0x53, 0x53, 0x50, 0x45, 0x41, 0x38, 0x31, 0x33, 0x3a, 0x3e, 0x3e,\n    0x40, 0x45, 0x41, 0x3b, 0x3c, 0x3f, 0x46, 0x51, 0x5a, 0x59, 0x5c, 0x5d, 0x59, 0x54, 0x5a, 0x65,\n    0x6d, 0x76, 0x7e, 0x7f, 0x7e, 0x7c, 0x79, 0x75, 0x67, 0x5d, 0x50, 0x49, 0x4b, 0x4f, 0x4b, 0x44,\n    0x43, 0x4d, 0x53, 0x50, 0x4f, 0x53, 0x52, 0x4c, 0x4b, 0x4d, 0x4e, 0x4c, 0x4d, 0x4e, 0x4e, 0x4c,\n    0x4c, 0x4d, 0x53, 0x59, 0x55, 0x4d, 0x4f, 0x57, 0x56, 0x5c, 0x60, 0x5c, 0x52, 0x4c, 0x50, 0x58,\n    0x64, 0x70, 0x6a, 0x55, 0x49, 0x4b, 0x57, 0x66, 0x62, 0x5b, 0x57, 0x57, 0x57, 0x52, 0x4c, 0x4b,\n    0x4b, 0x51, 0x5a, 0x61, 0x63, 0x61, 0x5d, 0x5a, 0x5c, 0x69, 0x70, 0x6c, 0x67, 0x69, 0x6d, 0x6e,\n    0x6d, 0x6b, 0x68, 0x64, 0x5f, 0x58, 0x4f, 0x47, 0x47, 0x44, 0x3c, 0x37, 0x41, 0x55, 0x61, 0x61,\n    0x4e, 0x45, 0x43, 0x4c, 0x47, 0x37, 0x3a, 0x47, 0x53, 0x55, 0x45, 0x45, 0x46, 0x4b, 0x43, 0x4d,\n    0x4f, 0x4d, 0x49, 0x4c, 0x55, 0x55, 0x54, 0x58, 0x58, 0x5b, 0x4e, 0x3f, 0x45, 0x58, 0x6a, 0x77,\n    0x6f, 0x65, 0x5c, 0x52, 0x4c, 0x54, 0x52, 0x3d, 0x39, 0x3b, 0x31, 0x24, 0x28, 0x42, 0x5f, 0x6e,\n    0x6a, 0x5b, 0x4f, 0x4d, 0x4e, 0x47, 0x3d, 0x36, 0x2f, 0x2d, 0x41, 0x5c, 0x5f, 0x5b, 0x67, 0x78,\n    0x79, 0x72, 0x63, 0x55, 0x4d, 0x48, 0x3e, 0x32, 0x2c, 0x2f, 0x30, 0x3d, 0x57, 0x68, 0x71, 0x7d,\n    0x5a, 0x56, 0x4d, 0x4c, 0x5e, 0x7c, 0x93, 0x9b, 0x88, 0x7c, 0x6a, 0x57, 0x4a, 0x42, 0x3f, 0x3e,\n    0x48, 0x44, 0x40, 0x40, 0x42, 0x45, 0x46, 0x46, 0x45, 0x44, 0x41, 0x3c, 0x3c, 0x3f, 0x41, 0x41,\n    0x43, 0x42, 0x47, 0x4f, 0x52, 0x4d, 0x48, 0x47, 0x48, 0x4e, 0x58, 0x60, 0x61, 0x60, 0x68, 0x73,\n    0x7d, 0x7a, 0x7a, 0x7d, 0x7c, 0x76, 0x6c, 0x66, 0x68, 0x69, 0x69, 0x68, 0x68, 0x68, 0x65, 0x61,\n    0x5d, 0x5e, 0x62, 0x67, 0x69, 0x67, 0x66, 0x68, 0x61, 0x61, 0x63, 0x67, 0x69, 0x67, 0x67, 0x68,\n    0x60, 0x5f, 0x5e, 0x5c, 0x5c, 0x5d, 0x5e, 0x5f, 0x5a, 0x5c, 0x5d, 0x5c, 0x58, 0x54, 0x50, 0x4e,\n    0x4a, 0x4a, 0x4a, 0x49, 0x49, 0x4c, 0x52, 0x57, 0x57, 0x51, 0x4a, 0x47, 0x48, 0x4b, 0x4c, 0x4b,\n    0x51, 0x4e, 0x4e, 0x54, 0x5c, 0x60, 0x5d, 0x57, 0x66, 0x67, 0x68, 0x68, 0x65, 0x5e, 0x56, 0x50,\n    0x45, 0x52, 0x59, 0x51, 0x49, 0x48, 0x4a, 0x48, 0x3e, 0x32, 0x29, 0x26, 0x27, 0x2d, 0x3d, 0x4e,\n    0x54, 0x54, 0x52, 0x4c, 0x45, 0x41, 0x42, 0x45, 0x4a, 0x45, 0x40, 0x40, 0x47, 0x50, 0x56, 0x59,\n    0x3f, 0x3e, 0x44, 0x4f, 0x51, 0x49, 0x44, 0x45, 0x4d, 0x4d, 0x4f, 0x52, 0x53, 0x51, 0x51, 0x52,\n    0x4f, 0x4e, 0x4e, 0x51, 0x54, 0x55, 0x54, 0x52, 0x54, 0x57, 0x59, 0x57, 0x52, 0x4b, 0x47, 0x45,\n    0x44, 0x4c, 0x54, 0x58, 0x5b, 0x5e, 0x5f, 0x5e, 0x5e, 0x61, 0x65, 0x68, 0x6b, 0x6d, 0x69, 0x65,\n    0x60, 0x61, 0x60, 0x61, 0x66, 0x6d, 0x70, 0x70, 0x6b, 0x65, 0x5d, 0x58, 0x57, 0x5a, 0x5e, 0x60,\n    0x5c, 0x59, 0x59, 0x5b, 0x5c, 0x5c, 0x5e, 0x61, 0x67, 0x6b, 0x6c, 0x69, 0x67, 0x69, 0x6c, 0x6e,\n    0x6d, 0x69, 0x66, 0x64, 0x62, 0x60, 0x61, 0x63, 0x65, 0x65, 0x64, 0x60, 0x5f, 0x61, 0x67, 0x6d,\n    0x74, 0x6d, 0x67, 0x64, 0x63, 0x63, 0x66, 0x69, 0x6c, 0x69, 0x63, 0x60, 0x61, 0x66, 0x6d, 0x71,\n    0x7c, 0xa6, 0xbf, 0xbe, 0xbf, 0xb9, 0x97, 0x72, 0x70, 0x6e, 0x6a, 0x63, 0x5b, 0x57, 0x55, 0x56,\n    0x77, 0x86, 0x96, 0x9b, 0x96, 0x8f, 0x8e, 0x90, 0x83, 0x82, 0x7e, 0x79, 0x75, 0x71, 0x6b, 0x64,\n    0x62, 0x68, 0x6f, 0x72, 0x70, 0x70, 0x73, 0x76, 0x76, 0x78, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7d,\n    0x7c, 0x7f, 0x82, 0x85, 0x87, 0x88, 0x8a, 0x8c, 0x8e, 0x8d, 0x8a, 0x88, 0x87, 0x84, 0x81, 0x7f,\n    0x77, 0x75, 0x73, 0x70, 0x6e, 0x6c, 0x6b, 0x6a, 0x6a, 0x68, 0x67, 0x67, 0x67, 0x67, 0x67, 0x66,\n    0x67, 0x67, 0x67, 0x67, 0x68, 0x68, 0x68, 0x68, 0x69, 0x69, 0x68, 0x68, 0x68, 0x68, 0x68, 0x68,\n    0x6b, 0x6e, 0x72, 0x75, 0x78, 0x7b, 0x7f, 0x82, 0x80, 0x81, 0x81, 0x81, 0x80, 0x7f, 0x7e, 0x7d,\n    0x7c, 0x7b, 0x79, 0x77, 0x74, 0x72, 0x70, 0x6f, 0x6b, 0x69, 0x67, 0x65, 0x63, 0x61, 0x5f, 0x5d,\n    0x5e, 0x5d, 0x5b, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x57, 0x58, 0x58, 0x59, 0x5a, 0x58, 0x54, 0x52,\n    0x49, 0x48, 0x4b, 0x50, 0x53, 0x52, 0x50, 0x50, 0x55, 0x4e, 0x46, 0x40, 0x39, 0x37, 0x3e, 0x47,\n    0x57, 0x52, 0x4a, 0x45, 0x49, 0x52, 0x53, 0x4e, 0x47, 0x42, 0x39, 0x33, 0x37, 0x40, 0x43, 0x40,\n    0x3b, 0x41, 0x41, 0x41, 0x45, 0x48, 0x4a, 0x51, 0x5a, 0x58, 0x5e, 0x6b, 0x73, 0x6f, 0x66, 0x5f,\n    0x4f, 0x58, 0x60, 0x69, 0x79, 0x89, 0x8e, 0x8a, 0x76, 0x66, 0x55, 0x4c, 0x4e, 0x4f, 0x4c, 0x47,\n    0x45, 0x4c, 0x51, 0x4f, 0x4d, 0x4e, 0x4d, 0x49, 0x4f, 0x50, 0x50, 0x4d, 0x4d, 0x4e, 0x4e, 0x4c,\n    0x4e, 0x4c, 0x4d, 0x50, 0x4e, 0x4d, 0x51, 0x58, 0x59, 0x5d, 0x5d, 0x54, 0x48, 0x45, 0x4f, 0x5b,\n    0x64, 0x6b, 0x65, 0x56, 0x4d, 0x4d, 0x57, 0x66, 0x64, 0x5f, 0x5a, 0x58, 0x57, 0x53, 0x4f, 0x4d,\n    0x45, 0x49, 0x52, 0x5e, 0x67, 0x66, 0x5c, 0x52, 0x60, 0x6b, 0x73, 0x71, 0x6c, 0x6b, 0x6c, 0x6c,\n    0x6f, 0x69, 0x64, 0x61, 0x60, 0x5b, 0x56, 0x53, 0x4a, 0x45, 0x3b, 0x37, 0x43, 0x55, 0x5c, 0x59,\n    0x41, 0x39, 0x35, 0x49, 0x54, 0x4f, 0x53, 0x55, 0x51, 0x51, 0x3e, 0x39, 0x37, 0x3d, 0x3c, 0x4c,\n    0x54, 0x56, 0x52, 0x51, 0x58, 0x5a, 0x5a, 0x5d, 0x51, 0x57, 0x4f, 0x43, 0x49, 0x57, 0x5e, 0x62,\n    0x6b, 0x6c, 0x6b, 0x61, 0x54, 0x4c, 0x40, 0x2f, 0x2a, 0x27, 0x1d, 0x18, 0x2b, 0x4f, 0x6d, 0x78,\n    0x77, 0x6b, 0x61, 0x5f, 0x5d, 0x53, 0x42, 0x35, 0x27, 0x2e, 0x42, 0x4e, 0x47, 0x42, 0x4b, 0x56,\n    0x5d, 0x59, 0x54, 0x4e, 0x46, 0x3c, 0x30, 0x28, 0x2d, 0x2b, 0x28, 0x3e, 0x6a, 0x7f, 0x7b, 0x79,\n    0x5d, 0x6c, 0x72, 0x66, 0x5a, 0x5a, 0x5e, 0x5d, 0x73, 0x71, 0x6d, 0x67, 0x61, 0x5d, 0x5c, 0x5c,\n    0x53, 0x51, 0x4f, 0x4e, 0x4c, 0x46, 0x3f, 0x39, 0x3d, 0x40, 0x40, 0x3e, 0x3c, 0x3f, 0x42, 0x44,\n    0x40, 0x43, 0x49, 0x50, 0x52, 0x4d, 0x45, 0x3f, 0x4a, 0x51, 0x5a, 0x60, 0x63, 0x65, 0x66, 0x67,\n    0x69, 0x6d, 0x70, 0x71, 0x73, 0x78, 0x7c, 0x7e, 0x7a, 0x7e, 0x80, 0x7d, 0x77, 0x6f, 0x64, 0x5a,\n    0x62, 0x6a, 0x74, 0x79, 0x73, 0x68, 0x62, 0x61, 0x54, 0x55, 0x5a, 0x60, 0x62, 0x61, 0x60, 0x61,\n    0x63, 0x61, 0x5f, 0x5c, 0x5c, 0x5d, 0x60, 0x61, 0x5b, 0x5c, 0x5d, 0x5b, 0x57, 0x52, 0x4e, 0x4d,\n    0x4d, 0x4b, 0x49, 0x48, 0x4a, 0x4e, 0x52, 0x56, 0x54, 0x50, 0x4a, 0x47, 0x48, 0x4a, 0x4b, 0x4c,\n    0x4a, 0x47, 0x46, 0x49, 0x50, 0x53, 0x52, 0x50, 0x59, 0x58, 0x59, 0x5c, 0x5f, 0x5c, 0x54, 0x4d,\n    0x48, 0x4d, 0x50, 0x50, 0x51, 0x54, 0x58, 0x59, 0x54, 0x4c, 0x41, 0x37, 0x30, 0x2f, 0x33, 0x38,\n    0x46, 0x50, 0x55, 0x4c, 0x42, 0x40, 0x45, 0x49, 0x44, 0x47, 0x4d, 0x52, 0x54, 0x50, 0x49, 0x44,\n    0x42, 0x42, 0x49, 0x54, 0x55, 0x4c, 0x47, 0x49, 0x4d, 0x54, 0x5a, 0x5b, 0x5a, 0x57, 0x54, 0x50,\n    0x4c, 0x4a, 0x49, 0x4b, 0x4e, 0x51, 0x52, 0x52, 0x4f, 0x52, 0x54, 0x52, 0x4d, 0x48, 0x46, 0x46,\n    0x48, 0x4f, 0x55, 0x57, 0x58, 0x5b, 0x5d, 0x5d, 0x60, 0x64, 0x66, 0x67, 0x69, 0x69, 0x67, 0x62,\n    0x5b, 0x5d, 0x5f, 0x61, 0x66, 0x6c, 0x71, 0x71, 0x6b, 0x65, 0x5d, 0x57, 0x57, 0x5a, 0x5d, 0x5f,\n    0x5f, 0x5d, 0x5e, 0x60, 0x60, 0x5f, 0x5f, 0x61, 0x68, 0x68, 0x66, 0x62, 0x62, 0x66, 0x68, 0x68,\n    0x6a, 0x66, 0x64, 0x64, 0x64, 0x61, 0x61, 0x63, 0x65, 0x64, 0x63, 0x61, 0x60, 0x62, 0x66, 0x69,\n    0x68, 0x65, 0x63, 0x62, 0x61, 0x61, 0x64, 0x69, 0x69, 0x6a, 0x67, 0x64, 0x67, 0x6f, 0x73, 0x72,\n    0x7d, 0x9f, 0xb6, 0xbb, 0xc3, 0xc6, 0xb5, 0xa0, 0x6f, 0x5e, 0x52, 0x51, 0x50, 0x50, 0x5f, 0x73,\n    0x92, 0x95, 0x95, 0x93, 0x93, 0x94, 0x90, 0x89, 0x84, 0x83, 0x7f, 0x7a, 0x77, 0x74, 0x6d, 0x65,\n    0x60, 0x62, 0x66, 0x6a, 0x6d, 0x6f, 0x70, 0x72, 0x71, 0x74, 0x78, 0x7b, 0x7c, 0x7d, 0x7d, 0x7e,\n    0x7c, 0x7f, 0x82, 0x84, 0x86, 0x87, 0x89, 0x8a, 0x8d, 0x8c, 0x8b, 0x8b, 0x89, 0x86, 0x82, 0x7f,\n    0x7c, 0x7b, 0x79, 0x76, 0x73, 0x70, 0x6e, 0x6d, 0x6b, 0x6a, 0x69, 0x68, 0x69, 0x69, 0x68, 0x67,\n    0x68, 0x68, 0x67, 0x66, 0x66, 0x67, 0x68, 0x68, 0x67, 0x67, 0x67, 0x67, 0x68, 0x69, 0x6a, 0x6a,\n    0x6d, 0x6f, 0x72, 0x75, 0x79, 0x7d, 0x80, 0x82, 0x80, 0x80, 0x7f, 0x7e, 0x7c, 0x7b, 0x7b, 0x7a,\n    0x79, 0x78, 0x75, 0x73, 0x70, 0x6e, 0x6c, 0x6b, 0x68, 0x67, 0x64, 0x63, 0x61, 0x60, 0x5d, 0x5c,\n    0x5c, 0x5b, 0x5a, 0x5a, 0x5a, 0x5a, 0x5b, 0x5b, 0x58, 0x59, 0x5a, 0x5b, 0x5c, 0x59, 0x56, 0x53,\n    0x59, 0x55, 0x53, 0x53, 0x50, 0x49, 0x44, 0x43, 0x5a, 0x59, 0x55, 0x4d, 0x46, 0x43, 0x46, 0x4a,\n    0x50, 0x55, 0x51, 0x46, 0x45, 0x4d, 0x50, 0x4a, 0x48, 0x43, 0x3a, 0x35, 0x3c, 0x46, 0x48, 0x42,\n    0x40, 0x43, 0x42, 0x44, 0x4b, 0x4d, 0x4d, 0x52, 0x4d, 0x45, 0x43, 0x52, 0x67, 0x70, 0x6a, 0x5f,\n    0x78, 0x6e, 0x5e, 0x51, 0x4e, 0x54, 0x5b, 0x5f, 0x6f, 0x61, 0x56, 0x53, 0x53, 0x4e, 0x4a, 0x48,\n    0x4a, 0x4c, 0x4e, 0x4d, 0x4a, 0x46, 0x45, 0x44, 0x50, 0x52, 0x53, 0x52, 0x52, 0x53, 0x53, 0x51,\n    0x51, 0x51, 0x51, 0x53, 0x55, 0x57, 0x59, 0x5a, 0x55, 0x56, 0x54, 0x4c, 0x46, 0x48, 0x54, 0x5e,\n    0x5d, 0x5f, 0x5b, 0x56, 0x54, 0x51, 0x56, 0x62, 0x62, 0x60, 0x5c, 0x58, 0x56, 0x54, 0x50, 0x4c,\n    0x49, 0x4a, 0x4f, 0x5b, 0x67, 0x69, 0x61, 0x58, 0x6c, 0x71, 0x76, 0x74, 0x6f, 0x6c, 0x6c, 0x6d,\n    0x70, 0x68, 0x62, 0x61, 0x5f, 0x57, 0x50, 0x4e, 0x4a, 0x46, 0x3d, 0x3a, 0x45, 0x56, 0x5c, 0x57,\n    0x50, 0x49, 0x3d, 0x4a, 0x54, 0x4f, 0x51, 0x49, 0x55, 0x54, 0x3e, 0x35, 0x2f, 0x35, 0x39, 0x51,\n    0x5f, 0x60, 0x5a, 0x57, 0x60, 0x63, 0x5b, 0x54, 0x5b, 0x55, 0x44, 0x3b, 0x42, 0x49, 0x4c, 0x4f,\n    0x61, 0x6b, 0x69, 0x58, 0x45, 0x35, 0x2f, 0x32, 0x25, 0x25, 0x22, 0x24, 0x36, 0x53, 0x67, 0x6e,\n    0x60, 0x5c, 0x58, 0x54, 0x4d, 0x45, 0x3d, 0x39, 0x35, 0x40, 0x4b, 0x48, 0x43, 0x48, 0x47, 0x39,\n    0x32, 0x31, 0x36, 0x3c, 0x3b, 0x33, 0x2e, 0x2f, 0x23, 0x26, 0x25, 0x3c, 0x6c, 0x82, 0x7e, 0x7f,\n    0x6b, 0x7c, 0x7e, 0x66, 0x4e, 0x49, 0x4d, 0x50, 0x53, 0x58, 0x5f, 0x60, 0x5a, 0x51, 0x4a, 0x46,\n    0x5f, 0x61, 0x64, 0x65, 0x61, 0x54, 0x44, 0x38, 0x35, 0x3b, 0x3f, 0x3f, 0x3d, 0x40, 0x43, 0x45,\n    0x46, 0x47, 0x48, 0x48, 0x4b, 0x4f, 0x51, 0x51, 0x56, 0x57, 0x55, 0x55, 0x5b, 0x63, 0x63, 0x5f,\n    0x54, 0x5b, 0x5d, 0x59, 0x5c, 0x69, 0x78, 0x80, 0x80, 0x87, 0x8b, 0x8a, 0x85, 0x7e, 0x71, 0x66,\n    0x5a, 0x68, 0x79, 0x7f, 0x75, 0x62, 0x55, 0x51, 0x52, 0x56, 0x5e, 0x66, 0x69, 0x65, 0x60, 0x5e,\n    0x5f, 0x5e, 0x5e, 0x5e, 0x5e, 0x5f, 0x5f, 0x60, 0x5e, 0x5c, 0x59, 0x54, 0x4f, 0x4d, 0x4e, 0x4e,\n    0x4f, 0x51, 0x53, 0x56, 0x57, 0x55, 0x52, 0x4f, 0x4e, 0x4d, 0x4b, 0x49, 0x47, 0x45, 0x42, 0x3f,\n    0x40, 0x3f, 0x3e, 0x40, 0x46, 0x4b, 0x4e, 0x50, 0x51, 0x4f, 0x50, 0x56, 0x5d, 0x5d, 0x56, 0x4e,\n    0x4a, 0x48, 0x4a, 0x52, 0x5d, 0x69, 0x72, 0x76, 0x6b, 0x66, 0x59, 0x4d, 0x47, 0x42, 0x35, 0x25,\n    0x39, 0x4d, 0x59, 0x51, 0x44, 0x41, 0x44, 0x46, 0x50, 0x52, 0x54, 0x54, 0x52, 0x4d, 0x48, 0x44,\n    0x45, 0x42, 0x48, 0x52, 0x53, 0x4c, 0x4c, 0x52, 0x53, 0x62, 0x6f, 0x72, 0x70, 0x6a, 0x60, 0x57,\n    0x4f, 0x4c, 0x49, 0x4a, 0x4d, 0x51, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4b, 0x48, 0x49, 0x4d, 0x51,\n    0x50, 0x57, 0x5d, 0x5f, 0x5f, 0x60, 0x5f, 0x5d, 0x61, 0x65, 0x67, 0x66, 0x65, 0x65, 0x62, 0x5f,\n    0x55, 0x5b, 0x63, 0x68, 0x6d, 0x71, 0x72, 0x71, 0x71, 0x6b, 0x63, 0x5e, 0x5d, 0x5f, 0x61, 0x62,\n    0x62, 0x62, 0x63, 0x66, 0x66, 0x63, 0x61, 0x62, 0x69, 0x66, 0x60, 0x5d, 0x5f, 0x64, 0x65, 0x63,\n    0x69, 0x66, 0x65, 0x67, 0x67, 0x64, 0x63, 0x64, 0x63, 0x63, 0x62, 0x60, 0x60, 0x61, 0x64, 0x66,\n    0x67, 0x65, 0x64, 0x63, 0x5f, 0x5c, 0x5d, 0x60, 0x62, 0x69, 0x6b, 0x69, 0x6c, 0x72, 0x70, 0x69,\n    0x74, 0x93, 0xaa, 0xb2, 0xba, 0xbe, 0xbd, 0xbc, 0x8d, 0x69, 0x50, 0x50, 0x52, 0x57, 0x75, 0x9c,\n    0x95, 0x9c, 0x9e, 0x96, 0x92, 0x94, 0x92, 0x8c, 0x85, 0x84, 0x7f, 0x79, 0x77, 0x75, 0x6f, 0x67,\n    0x60, 0x5e, 0x5f, 0x63, 0x6a, 0x6e, 0x6f, 0x6e, 0x6c, 0x70, 0x75, 0x79, 0x7b, 0x7c, 0x7d, 0x7d,\n    0x7c, 0x7f, 0x82, 0x84, 0x85, 0x86, 0x88, 0x89, 0x8b, 0x8c, 0x8c, 0x8c, 0x8a, 0x86, 0x80, 0x7c,\n    0x80, 0x7f, 0x7d, 0x7b, 0x78, 0x75, 0x72, 0x70, 0x6f, 0x6d, 0x6c, 0x6b, 0x6c, 0x6c, 0x6b, 0x6a,\n    0x6a, 0x69, 0x67, 0x66, 0x66, 0x66, 0x67, 0x68, 0x65, 0x65, 0x66, 0x66, 0x68, 0x69, 0x6b, 0x6b,\n    0x71, 0x71, 0x72, 0x75, 0x79, 0x7c, 0x7e, 0x7f, 0x80, 0x7f, 0x7d, 0x7b, 0x7a, 0x79, 0x79, 0x79,\n    0x77, 0x75, 0x73, 0x70, 0x6e, 0x6c, 0x6a, 0x69, 0x67, 0x65, 0x63, 0x61, 0x60, 0x5f, 0x5c, 0x5b,\n    0x5a, 0x5a, 0x59, 0x59, 0x5a, 0x5b, 0x5c, 0x5d, 0x5b, 0x5b, 0x5d, 0x5e, 0x5e, 0x5c, 0x58, 0x55,\n    0x54, 0x4e, 0x4a, 0x4b, 0x4a, 0x49, 0x4a, 0x4d, 0x52, 0x56, 0x55, 0x4f, 0x48, 0x46, 0x47, 0x47,\n    0x4b, 0x58, 0x59, 0x4b, 0x45, 0x4d, 0x52, 0x4c, 0x49, 0x44, 0x3c, 0x38, 0x40, 0x4c, 0x4c, 0x44,\n    0x4a, 0x49, 0x43, 0x43, 0x4b, 0x4d, 0x4d, 0x52, 0x4f, 0x44, 0x3b, 0x43, 0x59, 0x6b, 0x6d, 0x68,\n    0x67, 0x69, 0x6d, 0x6c, 0x5e, 0x4d, 0x46, 0x4a, 0x55, 0x4f, 0x4e, 0x55, 0x55, 0x4c, 0x45, 0x45,\n    0x54, 0x53, 0x53, 0x52, 0x4d, 0x47, 0x45, 0x47, 0x4e, 0x52, 0x55, 0x56, 0x58, 0x5a, 0x5a, 0x58,\n    0x4c, 0x4e, 0x51, 0x54, 0x59, 0x5b, 0x57, 0x51, 0x57, 0x58, 0x55, 0x50, 0x4d, 0x51, 0x58, 0x5d,\n    0x57, 0x56, 0x53, 0x56, 0x59, 0x54, 0x54, 0x5f, 0x62, 0x62, 0x5e, 0x56, 0x50, 0x4d, 0x47, 0x40,\n    0x4a, 0x4a, 0x4c, 0x53, 0x5d, 0x64, 0x68, 0x68, 0x6d, 0x6e, 0x6f, 0x6d, 0x6a, 0x69, 0x6d, 0x72,\n    0x74, 0x6d, 0x68, 0x67, 0x5f, 0x4e, 0x3d, 0x34, 0x47, 0x44, 0x3e, 0x3b, 0x46, 0x58, 0x5f, 0x5c,\n    0x4e, 0x4c, 0x3f, 0x47, 0x4c, 0x49, 0x52, 0x4e, 0x54, 0x53, 0x3a, 0x2f, 0x25, 0x2b, 0x34, 0x4f,\n    0x5e, 0x5e, 0x56, 0x55, 0x63, 0x68, 0x58, 0x47, 0x50, 0x4d, 0x4d, 0x5c, 0x6f, 0x71, 0x68, 0x65,\n    0x6a, 0x71, 0x62, 0x44, 0x2e, 0x24, 0x33, 0x51, 0x3c, 0x42, 0x44, 0x3f, 0x3c, 0x3f, 0x43, 0x44,\n    0x47, 0x4e, 0x53, 0x4c, 0x3c, 0x2d, 0x29, 0x2c, 0x3c, 0x34, 0x39, 0x46, 0x4c, 0x47, 0x3b, 0x2c,\n    0x22, 0x15, 0x14, 0x26, 0x37, 0x39, 0x34, 0x32, 0x2b, 0x38, 0x37, 0x40, 0x5d, 0x6c, 0x72, 0x81,\n    0x68, 0x73, 0x71, 0x6a, 0x59, 0x4a, 0x4a, 0x45, 0x4e, 0x50, 0x4f, 0x4d, 0x4f, 0x55, 0x54, 0x4f,\n    0x4f, 0x4a, 0x4c, 0x55, 0x56, 0x4f, 0x4f, 0x57, 0x4f, 0x45, 0x40, 0x41, 0x40, 0x3e, 0x44, 0x50,\n    0x58, 0x56, 0x53, 0x4e, 0x49, 0x48, 0x49, 0x4c, 0x54, 0x4d, 0x48, 0x49, 0x4f, 0x54, 0x54, 0x52,\n    0x50, 0x59, 0x5a, 0x53, 0x52, 0x5d, 0x66, 0x66, 0x66, 0x68, 0x69, 0x6c, 0x74, 0x7c, 0x7b, 0x75,\n    0x70, 0x6f, 0x71, 0x72, 0x69, 0x5c, 0x55, 0x57, 0x57, 0x5e, 0x61, 0x5e, 0x5e, 0x61, 0x61, 0x5e,\n    0x5b, 0x63, 0x6c, 0x71, 0x6e, 0x69, 0x65, 0x64, 0x5c, 0x5c, 0x59, 0x54, 0x4f, 0x4f, 0x50, 0x52,\n    0x56, 0x57, 0x58, 0x57, 0x55, 0x55, 0x58, 0x5a, 0x53, 0x53, 0x4e, 0x4b, 0x4e, 0x53, 0x4e, 0x44,\n    0x40, 0x3b, 0x3d, 0x44, 0x48, 0x47, 0x48, 0x4d, 0x4f, 0x4f, 0x4f, 0x51, 0x55, 0x56, 0x4f, 0x47,\n    0x46, 0x4e, 0x51, 0x4c, 0x4d, 0x5a, 0x66, 0x6b, 0x6e, 0x6f, 0x6c, 0x64, 0x5e, 0x5b, 0x55, 0x4f,\n    0x4f, 0x4e, 0x52, 0x57, 0x4d, 0x3f, 0x43, 0x51, 0x57, 0x51, 0x4c, 0x4a, 0x49, 0x48, 0x4b, 0x51,\n    0x4b, 0x48, 0x50, 0x5b, 0x56, 0x48, 0x48, 0x55, 0x6e, 0x7d, 0x82, 0x7b, 0x7d, 0x85, 0x79, 0x62,\n    0x53, 0x4c, 0x48, 0x4c, 0x56, 0x5d, 0x5b, 0x57, 0x57, 0x50, 0x4e, 0x54, 0x58, 0x55, 0x57, 0x5d,\n    0x5e, 0x61, 0x63, 0x61, 0x61, 0x62, 0x60, 0x5b, 0x5e, 0x62, 0x66, 0x67, 0x63, 0x5f, 0x5f, 0x61,\n    0x62, 0x61, 0x61, 0x63, 0x67, 0x6c, 0x70, 0x72, 0x74, 0x70, 0x6b, 0x65, 0x64, 0x64, 0x63, 0x61,\n    0x66, 0x67, 0x67, 0x65, 0x63, 0x61, 0x61, 0x62, 0x64, 0x65, 0x65, 0x62, 0x5e, 0x5e, 0x63, 0x67,\n    0x64, 0x63, 0x64, 0x67, 0x6a, 0x6a, 0x66, 0x62, 0x5f, 0x5d, 0x5e, 0x60, 0x5e, 0x5a, 0x5b, 0x5f,\n    0x62, 0x62, 0x60, 0x5d, 0x5b, 0x5d, 0x61, 0x64, 0x65, 0x60, 0x5f, 0x69, 0x74, 0x78, 0x87, 0x9f,\n    0xc0, 0xbc, 0xb8, 0xb6, 0xb7, 0xb9, 0xbb, 0xbb, 0xb1, 0x8e, 0x63, 0x51, 0x66, 0x89, 0x9c, 0x9c,\n    0x9b, 0x9b, 0x9a, 0x98, 0x94, 0x91, 0x90, 0x8f, 0x85, 0x84, 0x81, 0x7c, 0x76, 0x71, 0x6e, 0x6d,\n    0x62, 0x5d, 0x5b, 0x5e, 0x63, 0x67, 0x6a, 0x6c, 0x6d, 0x6d, 0x6e, 0x71, 0x76, 0x7c, 0x80, 0x82,\n    0x7f, 0x80, 0x80, 0x80, 0x83, 0x87, 0x89, 0x89, 0x8b, 0x8b, 0x8c, 0x8b, 0x8a, 0x89, 0x87, 0x86,\n    0x85, 0x86, 0x86, 0x84, 0x81, 0x7c, 0x78, 0x75, 0x72, 0x71, 0x6f, 0x6d, 0x6c, 0x6b, 0x6b, 0x6b,\n    0x6c, 0x6c, 0x6b, 0x6b, 0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x6c, 0x6d, 0x6d, 0x6c, 0x6c, 0x6f, 0x71,\n    0x75, 0x76, 0x78, 0x7a, 0x7c, 0x7d, 0x7e, 0x7e, 0x7f, 0x7e, 0x7d, 0x7c, 0x7b, 0x78, 0x75, 0x72,\n    0x72, 0x70, 0x6d, 0x6b, 0x6a, 0x69, 0x67, 0x66, 0x64, 0x64, 0x62, 0x5d, 0x5a, 0x5b, 0x5b, 0x5b,\n    0x58, 0x5a, 0x5b, 0x5b, 0x5a, 0x59, 0x5a, 0x5a, 0x5a, 0x5c, 0x61, 0x66, 0x65, 0x5e, 0x57, 0x54,\n    0x57, 0x52, 0x4c, 0x4a, 0x4b, 0x4d, 0x4d, 0x4c, 0x50, 0x51, 0x53, 0x52, 0x4f, 0x4b, 0x4b, 0x4c,\n    0x4e, 0x5b, 0x5f, 0x54, 0x4c, 0x4e, 0x4f, 0x4b, 0x48, 0x46, 0x43, 0x44, 0x4c, 0x52, 0x4e, 0x45,\n    0x4b, 0x49, 0x48, 0x49, 0x4b, 0x4c, 0x4c, 0x4d, 0x52, 0x5e, 0x6b, 0x79, 0x7f, 0x6f, 0x57, 0x4b,\n    0x50, 0x51, 0x57, 0x61, 0x6c, 0x6e, 0x68, 0x60, 0x56, 0x4c, 0x46, 0x49, 0x4e, 0x4f, 0x4c, 0x4b,\n    0x52, 0x48, 0x47, 0x4e, 0x4b, 0x3f, 0x40, 0x4c, 0x52, 0x51, 0x56, 0x60, 0x65, 0x60, 0x59, 0x56,\n    0x57, 0x55, 0x54, 0x55, 0x57, 0x58, 0x57, 0x55, 0x57, 0x55, 0x54, 0x53, 0x54, 0x57, 0x5a, 0x5c,\n    0x59, 0x57, 0x54, 0x54, 0x56, 0x59, 0x5c, 0x5d, 0x59, 0x56, 0x54, 0x53, 0x53, 0x51, 0x4c, 0x47,\n    0x46, 0x46, 0x4b, 0x56, 0x61, 0x68, 0x6b, 0x6d, 0x78, 0x77, 0x72, 0x6c, 0x69, 0x6a, 0x6b, 0x6b,\n    0x70, 0x62, 0x5a, 0x5c, 0x55, 0x43, 0x37, 0x37, 0x44, 0x43, 0x38, 0x34, 0x46, 0x57, 0x59, 0x54,\n    0x50, 0x4a, 0x4a, 0x54, 0x59, 0x55, 0x51, 0x51, 0x5a, 0x45, 0x39, 0x2d, 0x2b, 0x34, 0x40, 0x56,\n    0x66, 0x53, 0x4a, 0x57, 0x66, 0x64, 0x54, 0x46, 0x4b, 0x4a, 0x49, 0x54, 0x68, 0x70, 0x6e, 0x6f,\n    0x6d, 0x69, 0x56, 0x43, 0x3d, 0x3f, 0x42, 0x48, 0x3d, 0x44, 0x40, 0x41, 0x41, 0x42, 0x4f, 0x52,\n    0x43, 0x4a, 0x41, 0x2b, 0x25, 0x34, 0x3f, 0x3d, 0x30, 0x3b, 0x4a, 0x56, 0x5b, 0x5b, 0x57, 0x52,\n    0x44, 0x3f, 0x46, 0x4d, 0x45, 0x38, 0x33, 0x32, 0x37, 0x2f, 0x34, 0x4e, 0x66, 0x71, 0x78, 0x7f,\n    0x4f, 0x64, 0x6e, 0x6e, 0x5f, 0x4e, 0x4d, 0x49, 0x54, 0x52, 0x4b, 0x47, 0x4c, 0x5a, 0x65, 0x6a,\n    0x64, 0x57, 0x4c, 0x49, 0x44, 0x3f, 0x44, 0x4f, 0x5c, 0x65, 0x6f, 0x69, 0x51, 0x3d, 0x44, 0x57,\n    0x5f, 0x60, 0x5e, 0x57, 0x4d, 0x45, 0x42, 0x41, 0x41, 0x48, 0x4f, 0x51, 0x4f, 0x4f, 0x53, 0x58,\n    0x56, 0x5a, 0x5a, 0x53, 0x50, 0x56, 0x5b, 0x5b, 0x59, 0x5b, 0x5b, 0x5a, 0x5e, 0x68, 0x72, 0x76,\n    0x77, 0x73, 0x76, 0x7c, 0x7a, 0x6c, 0x5e, 0x58, 0x59, 0x64, 0x6f, 0x70, 0x6a, 0x61, 0x5a, 0x55,\n    0x5c, 0x63, 0x6c, 0x72, 0x72, 0x6e, 0x68, 0x65, 0x5b, 0x5a, 0x57, 0x52, 0x50, 0x52, 0x55, 0x56,\n    0x57, 0x59, 0x5a, 0x59, 0x59, 0x5c, 0x60, 0x64, 0x5d, 0x5c, 0x55, 0x4f, 0x50, 0x53, 0x4f, 0x46,\n    0x38, 0x34, 0x33, 0x38, 0x3c, 0x3d, 0x43, 0x4b, 0x47, 0x49, 0x4d, 0x54, 0x5c, 0x5f, 0x58, 0x4f,\n    0x50, 0x4e, 0x4b, 0x45, 0x3e, 0x3d, 0x44, 0x4e, 0x54, 0x57, 0x5a, 0x5b, 0x5f, 0x66, 0x6a, 0x69,\n    0x5e, 0x5a, 0x5a, 0x5c, 0x56, 0x4b, 0x4a, 0x51, 0x56, 0x53, 0x53, 0x56, 0x58, 0x57, 0x57, 0x5a,\n    0x52, 0x4c, 0x4f, 0x5c, 0x62, 0x5d, 0x5c, 0x62, 0x6a, 0x73, 0x7c, 0x80, 0x83, 0x80, 0x73, 0x63,\n    0x58, 0x52, 0x4d, 0x4c, 0x51, 0x54, 0x54, 0x52, 0x5a, 0x58, 0x5b, 0x60, 0x62, 0x5e, 0x5b, 0x5c,\n    0x5b, 0x61, 0x67, 0x67, 0x66, 0x65, 0x61, 0x5d, 0x66, 0x63, 0x61, 0x5f, 0x5b, 0x5b, 0x62, 0x6a,\n    0x6d, 0x69, 0x66, 0x65, 0x69, 0x6f, 0x75, 0x78, 0x73, 0x6d, 0x64, 0x5e, 0x5d, 0x61, 0x64, 0x66,\n    0x66, 0x65, 0x62, 0x61, 0x61, 0x61, 0x61, 0x60, 0x5d, 0x5f, 0x60, 0x60, 0x5f, 0x5f, 0x62, 0x65,\n    0x63, 0x61, 0x5f, 0x5f, 0x62, 0x65, 0x65, 0x65, 0x60, 0x5f, 0x60, 0x61, 0x5f, 0x5b, 0x5a, 0x5d,\n    0x5f, 0x61, 0x62, 0x5f, 0x5e, 0x61, 0x64, 0x67, 0x6c, 0x67, 0x5f, 0x68, 0x8b, 0xae, 0xc4, 0xd0,\n    0xc9, 0xc3, 0xbc, 0xba, 0xbb, 0xba, 0xb7, 0xb3, 0xb1, 0xb0, 0xa6, 0x96, 0x8f, 0x95, 0x9d, 0xa1,\n    0x9e, 0x9d, 0x9b, 0x99, 0x97, 0x94, 0x92, 0x91, 0x88, 0x85, 0x81, 0x7b, 0x75, 0x71, 0x6f, 0x6e,\n    0x67, 0x5f, 0x58, 0x59, 0x5e, 0x63, 0x66, 0x69, 0x6b, 0x6b, 0x6b, 0x6d, 0x71, 0x77, 0x7c, 0x80,\n    0x80, 0x81, 0x82, 0x82, 0x85, 0x89, 0x8a, 0x8a, 0x8a, 0x8a, 0x8b, 0x8c, 0x8c, 0x8d, 0x8d, 0x8d,\n    0x8d, 0x8d, 0x8c, 0x8a, 0x88, 0x85, 0x82, 0x80, 0x79, 0x78, 0x76, 0x74, 0x72, 0x71, 0x71, 0x70,\n    0x72, 0x72, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x73, 0x75, 0x76, 0x77, 0x76, 0x76, 0x78, 0x7a,\n    0x78, 0x79, 0x7a, 0x7c, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7b, 0x7a, 0x79, 0x76, 0x73, 0x70,\n    0x6f, 0x6d, 0x6a, 0x68, 0x67, 0x66, 0x64, 0x63, 0x61, 0x62, 0x62, 0x5f, 0x5d, 0x5f, 0x5f, 0x5e,\n    0x60, 0x5e, 0x5b, 0x59, 0x59, 0x5c, 0x5f, 0x61, 0x5d, 0x5d, 0x5f, 0x60, 0x5e, 0x59, 0x57, 0x57,\n    0x53, 0x50, 0x4d, 0x4c, 0x4d, 0x4d, 0x4a, 0x48, 0x47, 0x4f, 0x52, 0x4d, 0x49, 0x4b, 0x4c, 0x4b,\n    0x4f, 0x59, 0x5d, 0x55, 0x50, 0x52, 0x52, 0x4d, 0x47, 0x46, 0x46, 0x49, 0x50, 0x55, 0x50, 0x47,\n    0x4c, 0x47, 0x44, 0x49, 0x50, 0x53, 0x50, 0x4c, 0x5e, 0x62, 0x6c, 0x7c, 0x84, 0x72, 0x5a, 0x52,\n    0x3f, 0x3f, 0x48, 0x5b, 0x70, 0x7b, 0x77, 0x70, 0x53, 0x44, 0x3a, 0x3e, 0x49, 0x4e, 0x4b, 0x47,\n    0x4c, 0x4b, 0x4c, 0x4c, 0x49, 0x44, 0x43, 0x46, 0x50, 0x4e, 0x52, 0x5d, 0x62, 0x5e, 0x58, 0x56,\n    0x58, 0x57, 0x55, 0x56, 0x58, 0x59, 0x57, 0x55, 0x56, 0x56, 0x56, 0x57, 0x58, 0x58, 0x59, 0x5a,\n    0x59, 0x56, 0x53, 0x53, 0x56, 0x59, 0x59, 0x59, 0x57, 0x55, 0x53, 0x51, 0x51, 0x52, 0x53, 0x54,\n    0x54, 0x52, 0x55, 0x5c, 0x61, 0x62, 0x60, 0x5f, 0x75, 0x73, 0x6e, 0x6a, 0x6a, 0x6d, 0x6d, 0x6c,\n    0x6a, 0x5c, 0x56, 0x5c, 0x5b, 0x4b, 0x3b, 0x35, 0x3f, 0x3c, 0x33, 0x38, 0x4f, 0x5f, 0x5a, 0x50,\n    0x40, 0x3d, 0x45, 0x56, 0x5d, 0x57, 0x53, 0x56, 0x4a, 0x3a, 0x32, 0x2c, 0x2e, 0x3a, 0x45, 0x59,\n    0x66, 0x56, 0x4f, 0x59, 0x62, 0x5e, 0x58, 0x59, 0x63, 0x64, 0x5f, 0x62, 0x6e, 0x73, 0x6d, 0x6a,\n    0x60, 0x64, 0x5a, 0x4c, 0x4e, 0x55, 0x53, 0x4f, 0x44, 0x41, 0x3a, 0x45, 0x4e, 0x4a, 0x45, 0x38,\n    0x2b, 0x23, 0x21, 0x33, 0x50, 0x62, 0x5e, 0x52, 0x4a, 0x4b, 0x4d, 0x4e, 0x4e, 0x4f, 0x53, 0x57,\n    0x51, 0x54, 0x5f, 0x63, 0x5a, 0x4f, 0x46, 0x3c, 0x38, 0x30, 0x33, 0x49, 0x60, 0x6c, 0x70, 0x72,\n    0x4e, 0x65, 0x70, 0x6f, 0x5e, 0x4d, 0x50, 0x4f, 0x5b, 0x5b, 0x58, 0x53, 0x4f, 0x50, 0x51, 0x51,\n    0x4a, 0x47, 0x47, 0x4b, 0x49, 0x42, 0x41, 0x46, 0x45, 0x46, 0x4d, 0x52, 0x4d, 0x44, 0x42, 0x48,\n    0x61, 0x65, 0x67, 0x63, 0x58, 0x4d, 0x46, 0x44, 0x3d, 0x40, 0x44, 0x48, 0x4b, 0x4d, 0x4f, 0x50,\n    0x52, 0x51, 0x50, 0x4e, 0x4d, 0x4f, 0x53, 0x56, 0x57, 0x5c, 0x5d, 0x57, 0x52, 0x57, 0x62, 0x6b,\n    0x71, 0x6d, 0x6d, 0x71, 0x70, 0x68, 0x61, 0x60, 0x68, 0x6c, 0x73, 0x78, 0x72, 0x66, 0x5b, 0x55,\n    0x5d, 0x60, 0x65, 0x6a, 0x6c, 0x6a, 0x67, 0x64, 0x5e, 0x5b, 0x55, 0x51, 0x52, 0x58, 0x5b, 0x5a,\n    0x5a, 0x5a, 0x59, 0x58, 0x57, 0x5a, 0x5f, 0x64, 0x66, 0x64, 0x5d, 0x55, 0x53, 0x55, 0x51, 0x4b,\n    0x47, 0x41, 0x3d, 0x3c, 0x3c, 0x3c, 0x44, 0x4d, 0x51, 0x4d, 0x4a, 0x4c, 0x54, 0x5b, 0x5a, 0x55,\n    0x56, 0x50, 0x4f, 0x4f, 0x42, 0x2f, 0x2b, 0x33, 0x43, 0x4b, 0x54, 0x5d, 0x65, 0x6b, 0x6c, 0x6b,\n    0x60, 0x5c, 0x59, 0x59, 0x59, 0x56, 0x53, 0x52, 0x59, 0x53, 0x4c, 0x4b, 0x4c, 0x4e, 0x51, 0x54,\n    0x52, 0x4d, 0x52, 0x63, 0x72, 0x75, 0x6f, 0x6a, 0x65, 0x65, 0x6d, 0x78, 0x7b, 0x71, 0x65, 0x5f,\n    0x57, 0x54, 0x50, 0x4e, 0x50, 0x52, 0x53, 0x54, 0x5b, 0x5d, 0x61, 0x63, 0x62, 0x5f, 0x5c, 0x5a,\n    0x5e, 0x64, 0x69, 0x6a, 0x69, 0x67, 0x64, 0x62, 0x67, 0x63, 0x64, 0x67, 0x63, 0x5e, 0x61, 0x69,\n    0x70, 0x6d, 0x69, 0x68, 0x6c, 0x71, 0x77, 0x7a, 0x79, 0x72, 0x69, 0x63, 0x63, 0x67, 0x6c, 0x70,\n    0x72, 0x6c, 0x66, 0x62, 0x61, 0x61, 0x5f, 0x5d, 0x5b, 0x5b, 0x5a, 0x5a, 0x5b, 0x5d, 0x60, 0x61,\n    0x63, 0x62, 0x61, 0x60, 0x61, 0x62, 0x64, 0x65, 0x5f, 0x5f, 0x60, 0x61, 0x60, 0x5d, 0x5c, 0x5e,\n    0x5e, 0x61, 0x61, 0x5d, 0x5b, 0x5f, 0x61, 0x60, 0x58, 0x66, 0x72, 0x84, 0xa3, 0xbe, 0xcd, 0xd4,\n    0xce, 0xc7, 0xc0, 0xbd, 0xbd, 0xb9, 0xb1, 0xa9, 0xad, 0xb4, 0xb6, 0xaf, 0xa5, 0xa2, 0xa0, 0x9e,\n    0xa1, 0x9e, 0x9b, 0x99, 0x98, 0x96, 0x93, 0x90, 0x8a, 0x86, 0x81, 0x7a, 0x75, 0x71, 0x6f, 0x6e,\n    0x6c, 0x62, 0x58, 0x55, 0x58, 0x5b, 0x5f, 0x62, 0x67, 0x69, 0x6a, 0x6b, 0x6e, 0x73, 0x79, 0x7e,\n    0x80, 0x83, 0x84, 0x84, 0x86, 0x89, 0x8a, 0x88, 0x87, 0x87, 0x88, 0x8a, 0x8c, 0x8e, 0x90, 0x91,\n    0x92, 0x92, 0x90, 0x8f, 0x8e, 0x8c, 0x8c, 0x8b, 0x83, 0x81, 0x7f, 0x7d, 0x7b, 0x79, 0x79, 0x79,\n    0x7a, 0x79, 0x79, 0x78, 0x77, 0x77, 0x77, 0x78, 0x7a, 0x7b, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7f,\n    0x7c, 0x7c, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7b, 0x79, 0x78, 0x76, 0x73, 0x70, 0x6d,\n    0x6c, 0x6a, 0x67, 0x66, 0x65, 0x64, 0x62, 0x61, 0x5c, 0x5e, 0x5e, 0x5c, 0x5b, 0x5b, 0x5a, 0x58,\n    0x58, 0x5a, 0x5c, 0x5e, 0x5f, 0x5d, 0x5a, 0x57, 0x5d, 0x5c, 0x5a, 0x59, 0x56, 0x53, 0x54, 0x58,\n    0x57, 0x54, 0x50, 0x4e, 0x4e, 0x4e, 0x4c, 0x4a, 0x43, 0x4e, 0x54, 0x4d, 0x4a, 0x4f, 0x52, 0x4f,\n    0x51, 0x59, 0x5c, 0x59, 0x56, 0x57, 0x54, 0x4d, 0x48, 0x48, 0x4a, 0x4e, 0x55, 0x57, 0x51, 0x49,\n    0x4c, 0x47, 0x45, 0x4a, 0x50, 0x50, 0x4d, 0x4b, 0x51, 0x58, 0x66, 0x7b, 0x84, 0x78, 0x71, 0x79,\n    0x6b, 0x5d, 0x4c, 0x44, 0x46, 0x4d, 0x52, 0x53, 0x52, 0x48, 0x41, 0x43, 0x49, 0x4b, 0x49, 0x45,\n    0x49, 0x4e, 0x4f, 0x4a, 0x4a, 0x51, 0x53, 0x50, 0x50, 0x4e, 0x51, 0x5a, 0x5e, 0x5b, 0x57, 0x55,\n    0x59, 0x57, 0x55, 0x55, 0x57, 0x57, 0x55, 0x53, 0x4f, 0x51, 0x53, 0x55, 0x57, 0x57, 0x56, 0x55,\n    0x53, 0x4f, 0x4e, 0x51, 0x57, 0x5b, 0x5b, 0x59, 0x50, 0x52, 0x54, 0x54, 0x55, 0x5b, 0x66, 0x6e,\n    0x6c, 0x63, 0x5a, 0x56, 0x59, 0x5e, 0x65, 0x6b, 0x6f, 0x6f, 0x6d, 0x6c, 0x6d, 0x6f, 0x6e, 0x6b,\n    0x6b, 0x5d, 0x55, 0x5a, 0x59, 0x49, 0x38, 0x31, 0x3f, 0x3b, 0x37, 0x44, 0x60, 0x6b, 0x5f, 0x52,\n    0x52, 0x4b, 0x4e, 0x59, 0x5d, 0x56, 0x50, 0x51, 0x4c, 0x40, 0x3c, 0x35, 0x36, 0x3e, 0x44, 0x53,\n    0x59, 0x51, 0x53, 0x5f, 0x63, 0x5e, 0x60, 0x6a, 0x6a, 0x68, 0x5e, 0x5c, 0x6b, 0x74, 0x6c, 0x61,\n    0x5e, 0x63, 0x57, 0x49, 0x50, 0x5c, 0x57, 0x4d, 0x41, 0x3e, 0x39, 0x47, 0x50, 0x4d, 0x4b, 0x43,\n    0x3e, 0x25, 0x20, 0x41, 0x62, 0x65, 0x54, 0x47, 0x41, 0x41, 0x47, 0x52, 0x5a, 0x5b, 0x5a, 0x5b,\n    0x5a, 0x59, 0x59, 0x53, 0x4b, 0x4d, 0x4c, 0x44, 0x3c, 0x30, 0x2d, 0x42, 0x60, 0x71, 0x6e, 0x65,\n    0x58, 0x6d, 0x77, 0x78, 0x68, 0x57, 0x58, 0x55, 0x67, 0x60, 0x55, 0x49, 0x3f, 0x3c, 0x3e, 0x43,\n    0x4e, 0x4b, 0x4a, 0x49, 0x45, 0x3e, 0x3d, 0x40, 0x42, 0x41, 0x44, 0x48, 0x47, 0x45, 0x4b, 0x54,\n    0x52, 0x56, 0x5a, 0x59, 0x52, 0x49, 0x41, 0x3c, 0x45, 0x3f, 0x39, 0x3b, 0x43, 0x4b, 0x4e, 0x4f,\n    0x4f, 0x49, 0x46, 0x48, 0x4a, 0x4b, 0x50, 0x57, 0x5a, 0x62, 0x68, 0x64, 0x5b, 0x56, 0x58, 0x5c,\n    0x67, 0x6b, 0x72, 0x73, 0x6e, 0x68, 0x6b, 0x72, 0x74, 0x6a, 0x65, 0x69, 0x6b, 0x66, 0x60, 0x5d,\n    0x5f, 0x5f, 0x5d, 0x5b, 0x5b, 0x5c, 0x5f, 0x62, 0x5f, 0x5b, 0x53, 0x4e, 0x52, 0x5a, 0x5c, 0x59,\n    0x56, 0x56, 0x54, 0x51, 0x50, 0x53, 0x58, 0x5d, 0x68, 0x68, 0x64, 0x5e, 0x5b, 0x5b, 0x58, 0x54,\n    0x4f, 0x4c, 0x48, 0x44, 0x40, 0x3e, 0x44, 0x4c, 0x50, 0x4c, 0x49, 0x4b, 0x54, 0x5e, 0x60, 0x5d,\n    0x55, 0x51, 0x53, 0x56, 0x4b, 0x37, 0x2e, 0x32, 0x3a, 0x40, 0x49, 0x51, 0x58, 0x5c, 0x5c, 0x5b,\n    0x5f, 0x5c, 0x58, 0x56, 0x57, 0x58, 0x55, 0x51, 0x54, 0x4e, 0x48, 0x47, 0x4b, 0x51, 0x57, 0x5a,\n    0x4b, 0x4f, 0x5a, 0x6c, 0x7b, 0x7c, 0x6f, 0x63, 0x5e, 0x5a, 0x5c, 0x64, 0x66, 0x5f, 0x5a, 0x59,\n    0x56, 0x54, 0x53, 0x54, 0x57, 0x59, 0x5b, 0x5b, 0x58, 0x5c, 0x5d, 0x5b, 0x5a, 0x5c, 0x5e, 0x5e,\n    0x67, 0x67, 0x68, 0x68, 0x69, 0x69, 0x68, 0x67, 0x64, 0x62, 0x66, 0x6c, 0x6a, 0x60, 0x5e, 0x65,\n    0x6b, 0x6a, 0x6b, 0x6d, 0x71, 0x74, 0x76, 0x77, 0x73, 0x6e, 0x68, 0x65, 0x65, 0x66, 0x6a, 0x6d,\n    0x77, 0x73, 0x6c, 0x65, 0x62, 0x61, 0x60, 0x60, 0x62, 0x5e, 0x59, 0x57, 0x58, 0x5b, 0x5d, 0x5f,\n    0x65, 0x67, 0x69, 0x6a, 0x68, 0x65, 0x62, 0x61, 0x5d, 0x5d, 0x5f, 0x60, 0x60, 0x5f, 0x5f, 0x5f,\n    0x5e, 0x61, 0x61, 0x5e, 0x5e, 0x62, 0x61, 0x5e, 0x70, 0x6d, 0x75, 0x96, 0xbf, 0xd0, 0xcd, 0xcc,\n    0xce, 0xca, 0xc5, 0xc2, 0xbf, 0xb8, 0xae, 0xa7, 0xad, 0xad, 0xac, 0xac, 0xb0, 0xb1, 0xab, 0xa3,\n    0xa4, 0xa0, 0x9b, 0x99, 0x98, 0x96, 0x92, 0x8e, 0x89, 0x86, 0x81, 0x7b, 0x76, 0x72, 0x6e, 0x6b,\n    0x6f, 0x66, 0x5d, 0x57, 0x54, 0x54, 0x57, 0x5b, 0x5f, 0x63, 0x67, 0x69, 0x6a, 0x6e, 0x75, 0x7a,\n    0x7f, 0x82, 0x85, 0x85, 0x86, 0x87, 0x87, 0x86, 0x84, 0x84, 0x85, 0x86, 0x88, 0x8b, 0x8d, 0x8e,\n    0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8e, 0x8e, 0x8d, 0x89, 0x88, 0x86, 0x83, 0x81, 0x80, 0x80, 0x7f,\n    0x7f, 0x7e, 0x7e, 0x7d, 0x7d, 0x7c, 0x7d, 0x7d, 0x7d, 0x7e, 0x7f, 0x80, 0x81, 0x81, 0x81, 0x81,\n    0x7f, 0x7f, 0x7f, 0x7e, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7a, 0x77, 0x75, 0x73, 0x70, 0x6d, 0x6a,\n    0x6a, 0x68, 0x66, 0x64, 0x64, 0x63, 0x61, 0x60, 0x59, 0x5b, 0x5d, 0x5d, 0x5f, 0x62, 0x62, 0x60,\n    0x5f, 0x5f, 0x5e, 0x5c, 0x5a, 0x5b, 0x5d, 0x5f, 0x5d, 0x5b, 0x5a, 0x59, 0x56, 0x53, 0x55, 0x59,\n    0x5d, 0x58, 0x51, 0x4c, 0x4b, 0x4c, 0x4d, 0x4e, 0x47, 0x4e, 0x55, 0x57, 0x57, 0x59, 0x57, 0x54,\n    0x54, 0x59, 0x5d, 0x5e, 0x5f, 0x5d, 0x55, 0x4b, 0x4a, 0x4b, 0x4d, 0x51, 0x57, 0x58, 0x54, 0x4f,\n    0x4e, 0x4d, 0x4e, 0x51, 0x51, 0x50, 0x52, 0x58, 0x55, 0x65, 0x72, 0x74, 0x6a, 0x5d, 0x5f, 0x70,\n    0x77, 0x82, 0x8f, 0x91, 0x83, 0x69, 0x4d, 0x3c, 0x3d, 0x3f, 0x41, 0x43, 0x43, 0x46, 0x4b, 0x50,\n    0x4f, 0x52, 0x4f, 0x49, 0x4b, 0x55, 0x5c, 0x5b, 0x55, 0x51, 0x53, 0x5a, 0x5e, 0x5b, 0x58, 0x57,\n    0x59, 0x57, 0x54, 0x54, 0x55, 0x55, 0x53, 0x51, 0x4a, 0x4c, 0x50, 0x53, 0x55, 0x56, 0x55, 0x55,\n    0x52, 0x4e, 0x4d, 0x51, 0x58, 0x5c, 0x5a, 0x57, 0x52, 0x57, 0x5a, 0x57, 0x52, 0x54, 0x5d, 0x66,\n    0x5f, 0x5e, 0x61, 0x66, 0x6a, 0x69, 0x68, 0x68, 0x63, 0x67, 0x6a, 0x6a, 0x6a, 0x6a, 0x69, 0x66,\n    0x6e, 0x62, 0x5b, 0x5a, 0x54, 0x46, 0x3d, 0x3b, 0x41, 0x3f, 0x3e, 0x4c, 0x65, 0x6f, 0x64, 0x5b,\n    0x54, 0x49, 0x3f, 0x41, 0x4d, 0x56, 0x56, 0x51, 0x51, 0x4a, 0x4a, 0x40, 0x3a, 0x3e, 0x41, 0x4d,\n    0x4e, 0x52, 0x5e, 0x6c, 0x70, 0x6b, 0x6a, 0x6d, 0x55, 0x53, 0x47, 0x46, 0x5d, 0x70, 0x67, 0x56,\n    0x50, 0x4c, 0x3b, 0x33, 0x41, 0x51, 0x52, 0x4e, 0x4a, 0x46, 0x41, 0x4f, 0x58, 0x52, 0x53, 0x4e,\n    0x30, 0x1c, 0x1c, 0x3a, 0x4f, 0x4b, 0x44, 0x45, 0x51, 0x46, 0x42, 0x4a, 0x55, 0x59, 0x5c, 0x5f,\n    0x5a, 0x56, 0x57, 0x59, 0x57, 0x54, 0x4c, 0x3e, 0x43, 0x3c, 0x3c, 0x4b, 0x63, 0x72, 0x71, 0x69,\n    0x56, 0x6b, 0x79, 0x83, 0x7e, 0x6f, 0x69, 0x5f, 0x57, 0x4f, 0x45, 0x3e, 0x39, 0x38, 0x3f, 0x49,\n    0x4d, 0x4f, 0x50, 0x4e, 0x48, 0x40, 0x3c, 0x3b, 0x3e, 0x3b, 0x3c, 0x41, 0x46, 0x47, 0x4b, 0x50,\n    0x5a, 0x5b, 0x5b, 0x5b, 0x57, 0x4f, 0x46, 0x3f, 0x44, 0x42, 0x3f, 0x3e, 0x42, 0x4b, 0x55, 0x5c,\n    0x53, 0x4b, 0x47, 0x49, 0x4a, 0x4b, 0x52, 0x5c, 0x56, 0x5e, 0x67, 0x6b, 0x66, 0x5d, 0x57, 0x54,\n    0x58, 0x63, 0x70, 0x76, 0x72, 0x6b, 0x6a, 0x6c, 0x6b, 0x61, 0x5b, 0x5c, 0x5d, 0x5c, 0x5e, 0x61,\n    0x60, 0x60, 0x5d, 0x57, 0x51, 0x51, 0x58, 0x60, 0x5c, 0x58, 0x50, 0x4b, 0x51, 0x5c, 0x5d, 0x58,\n    0x51, 0x52, 0x51, 0x50, 0x4f, 0x50, 0x55, 0x59, 0x66, 0x68, 0x67, 0x64, 0x61, 0x5f, 0x5d, 0x5b,\n    0x57, 0x56, 0x56, 0x54, 0x50, 0x4e, 0x51, 0x55, 0x59, 0x5a, 0x5b, 0x5d, 0x60, 0x5f, 0x57, 0x4e,\n    0x52, 0x53, 0x54, 0x53, 0x4e, 0x47, 0x41, 0x3e, 0x31, 0x33, 0x39, 0x40, 0x48, 0x4e, 0x54, 0x57,\n    0x62, 0x62, 0x5e, 0x58, 0x54, 0x55, 0x53, 0x4f, 0x51, 0x51, 0x52, 0x53, 0x54, 0x54, 0x51, 0x4e,\n    0x4c, 0x57, 0x65, 0x70, 0x74, 0x6e, 0x61, 0x55, 0x56, 0x55, 0x55, 0x56, 0x58, 0x5a, 0x5a, 0x59,\n    0x5a, 0x58, 0x56, 0x57, 0x5a, 0x5a, 0x58, 0x55, 0x51, 0x56, 0x59, 0x59, 0x5c, 0x62, 0x68, 0x6a,\n    0x6b, 0x69, 0x67, 0x6a, 0x6d, 0x6d, 0x6a, 0x66, 0x63, 0x5f, 0x60, 0x64, 0x63, 0x5e, 0x60, 0x67,\n    0x67, 0x67, 0x68, 0x6c, 0x71, 0x74, 0x76, 0x77, 0x70, 0x6b, 0x68, 0x67, 0x67, 0x68, 0x6c, 0x72,\n    0x73, 0x72, 0x6e, 0x68, 0x62, 0x60, 0x63, 0x66, 0x67, 0x63, 0x5f, 0x5e, 0x5f, 0x60, 0x5f, 0x5e,\n    0x64, 0x67, 0x6b, 0x6d, 0x6b, 0x67, 0x63, 0x60, 0x5e, 0x5e, 0x5f, 0x5f, 0x5f, 0x60, 0x60, 0x5f,\n    0x5d, 0x60, 0x64, 0x66, 0x68, 0x6a, 0x68, 0x65, 0x6f, 0x7c, 0x90, 0xac, 0xc6, 0xcc, 0xc8, 0xc8,\n    0xcd, 0xcc, 0xca, 0xc6, 0xbf, 0xb6, 0xad, 0xa8, 0xa6, 0xab, 0xb0, 0xb1, 0xb1, 0xaf, 0xac, 0xa8,\n    0xa8, 0xa3, 0x9d, 0x9a, 0x98, 0x95, 0x90, 0x8d, 0x87, 0x85, 0x82, 0x7e, 0x79, 0x74, 0x6d, 0x69,\n    0x6d, 0x69, 0x64, 0x5e, 0x55, 0x50, 0x51, 0x55, 0x55, 0x5a, 0x60, 0x64, 0x66, 0x69, 0x6e, 0x72,\n    0x7c, 0x81, 0x86, 0x86, 0x86, 0x87, 0x86, 0x84, 0x85, 0x85, 0x84, 0x84, 0x85, 0x86, 0x87, 0x88,\n    0x89, 0x8a, 0x8c, 0x8e, 0x8f, 0x8e, 0x8c, 0x8b, 0x8b, 0x8a, 0x88, 0x86, 0x84, 0x83, 0x83, 0x83,\n    0x81, 0x80, 0x80, 0x7f, 0x7f, 0x7e, 0x7f, 0x7f, 0x80, 0x80, 0x81, 0x82, 0x83, 0x84, 0x84, 0x84,\n    0x83, 0x82, 0x81, 0x7f, 0x7e, 0x7c, 0x7b, 0x7b, 0x7a, 0x78, 0x75, 0x72, 0x70, 0x6d, 0x6a, 0x68,\n    0x67, 0x66, 0x63, 0x62, 0x61, 0x61, 0x5f, 0x5e, 0x5f, 0x5f, 0x5d, 0x5b, 0x5a, 0x5a, 0x58, 0x54,\n    0x5b, 0x5f, 0x62, 0x5f, 0x5a, 0x58, 0x59, 0x5d, 0x5f, 0x5e, 0x5f, 0x5f, 0x5d, 0x59, 0x58, 0x5a,\n    0x5b, 0x57, 0x51, 0x4c, 0x4b, 0x4b, 0x4d, 0x4e, 0x4f, 0x4c, 0x52, 0x60, 0x65, 0x5e, 0x56, 0x55,\n    0x53, 0x56, 0x5b, 0x62, 0x66, 0x62, 0x57, 0x4d, 0x4d, 0x4c, 0x4e, 0x54, 0x5a, 0x5d, 0x5d, 0x5c,\n    0x5a, 0x54, 0x52, 0x55, 0x57, 0x57, 0x5b, 0x61, 0x73, 0x85, 0x87, 0x71, 0x57, 0x43, 0x3d, 0x41,\n    0x45, 0x4f, 0x5e, 0x6a, 0x6f, 0x6c, 0x66, 0x61, 0x4e, 0x4c, 0x46, 0x3f, 0x3b, 0x40, 0x4a, 0x52,\n    0x57, 0x53, 0x4f, 0x4e, 0x4e, 0x50, 0x53, 0x56, 0x58, 0x54, 0x55, 0x5c, 0x61, 0x5f, 0x5d, 0x5e,\n    0x5c, 0x5a, 0x58, 0x57, 0x58, 0x57, 0x55, 0x53, 0x50, 0x51, 0x53, 0x55, 0x57, 0x58, 0x59, 0x59,\n    0x57, 0x53, 0x50, 0x53, 0x58, 0x5a, 0x57, 0x53, 0x54, 0x5c, 0x63, 0x61, 0x59, 0x57, 0x5d, 0x64,\n    0x61, 0x5a, 0x55, 0x55, 0x58, 0x5e, 0x66, 0x6d, 0x62, 0x67, 0x6a, 0x68, 0x66, 0x68, 0x6b, 0x6c,\n    0x69, 0x66, 0x65, 0x61, 0x56, 0x4a, 0x48, 0x4f, 0x43, 0x42, 0x3c, 0x42, 0x57, 0x66, 0x67, 0x66,\n    0x5a, 0x4d, 0x39, 0x31, 0x42, 0x58, 0x59, 0x4b, 0x43, 0x42, 0x46, 0x3d, 0x39, 0x41, 0x47, 0x54,\n    0x54, 0x5d, 0x69, 0x73, 0x76, 0x71, 0x64, 0x58, 0x45, 0x4a, 0x43, 0x40, 0x52, 0x61, 0x58, 0x48,\n    0x34, 0x29, 0x1e, 0x26, 0x3e, 0x4d, 0x52, 0x58, 0x5c, 0x53, 0x4a, 0x59, 0x63, 0x59, 0x4b, 0x37,\n    0x30, 0x26, 0x2a, 0x40, 0x4d, 0x45, 0x3a, 0x37, 0x19, 0x24, 0x39, 0x51, 0x5d, 0x5e, 0x5e, 0x61,\n    0x5f, 0x50, 0x4d, 0x54, 0x54, 0x4c, 0x40, 0x34, 0x33, 0x39, 0x41, 0x49, 0x50, 0x57, 0x5d, 0x61,\n    0x5e, 0x6a, 0x6f, 0x79, 0x7d, 0x79, 0x77, 0x6d, 0x56, 0x4d, 0x45, 0x42, 0x3c, 0x36, 0x38, 0x3f,\n    0x3c, 0x44, 0x4d, 0x4f, 0x4b, 0x46, 0x41, 0x3d, 0x3d, 0x3c, 0x42, 0x4e, 0x58, 0x58, 0x53, 0x4f,\n    0x4c, 0x4c, 0x4c, 0x4c, 0x49, 0x44, 0x3d, 0x38, 0x40, 0x3d, 0x3d, 0x44, 0x4e, 0x57, 0x5a, 0x5a,\n    0x51, 0x4c, 0x4a, 0x4c, 0x4f, 0x53, 0x5d, 0x67, 0x5b, 0x5b, 0x60, 0x66, 0x66, 0x5f, 0x56, 0x50,\n    0x52, 0x54, 0x59, 0x5f, 0x62, 0x61, 0x5d, 0x59, 0x5a, 0x5e, 0x61, 0x60, 0x59, 0x55, 0x59, 0x60,\n    0x5f, 0x61, 0x61, 0x5a, 0x51, 0x50, 0x56, 0x5d, 0x5c, 0x5a, 0x54, 0x4f, 0x56, 0x61, 0x61, 0x5a,\n    0x58, 0x59, 0x59, 0x57, 0x53, 0x50, 0x50, 0x51, 0x5c, 0x60, 0x63, 0x63, 0x5f, 0x5d, 0x5d, 0x5d,\n    0x69, 0x69, 0x69, 0x66, 0x62, 0x5e, 0x5d, 0x5e, 0x65, 0x65, 0x63, 0x60, 0x5d, 0x59, 0x51, 0x4a,\n    0x50, 0x59, 0x5f, 0x60, 0x62, 0x60, 0x54, 0x45, 0x3f, 0x44, 0x4c, 0x55, 0x59, 0x56, 0x52, 0x51,\n    0x56, 0x59, 0x58, 0x52, 0x4d, 0x4d, 0x4f, 0x51, 0x55, 0x56, 0x56, 0x53, 0x51, 0x50, 0x4e, 0x4c,\n    0x56, 0x5e, 0x68, 0x6c, 0x67, 0x5d, 0x54, 0x50, 0x51, 0x56, 0x57, 0x57, 0x5b, 0x61, 0x62, 0x5e,\n    0x5c, 0x59, 0x55, 0x52, 0x51, 0x4d, 0x47, 0x43, 0x49, 0x4d, 0x55, 0x5d, 0x63, 0x68, 0x6b, 0x6d,\n    0x69, 0x68, 0x6a, 0x71, 0x74, 0x70, 0x6a, 0x65, 0x60, 0x60, 0x62, 0x64, 0x64, 0x63, 0x64, 0x67,\n    0x65, 0x64, 0x63, 0x64, 0x68, 0x6e, 0x72, 0x74, 0x70, 0x6b, 0x67, 0x68, 0x69, 0x6a, 0x72, 0x7a,\n    0x77, 0x78, 0x75, 0x6e, 0x64, 0x60, 0x62, 0x66, 0x66, 0x65, 0x66, 0x67, 0x68, 0x67, 0x63, 0x60,\n    0x62, 0x63, 0x64, 0x65, 0x66, 0x65, 0x65, 0x64, 0x61, 0x61, 0x60, 0x5e, 0x5e, 0x61, 0x61, 0x5f,\n    0x5e, 0x5f, 0x64, 0x69, 0x69, 0x68, 0x6e, 0x77, 0x9f, 0xc9, 0xe4, 0xde, 0xd2, 0xcd, 0xcd, 0xd0,\n    0xc9, 0xca, 0xc9, 0xc4, 0xbb, 0xb1, 0xaa, 0xa6, 0xa7, 0xa8, 0xa9, 0xaa, 0xa9, 0xa9, 0xaa, 0xaa,\n    0xaa, 0xa6, 0xa0, 0x9c, 0x98, 0x95, 0x91, 0x8e, 0x88, 0x85, 0x83, 0x80, 0x7d, 0x76, 0x6f, 0x69,\n    0x69, 0x69, 0x67, 0x63, 0x5a, 0x51, 0x4f, 0x51, 0x51, 0x55, 0x5b, 0x5f, 0x63, 0x66, 0x6a, 0x6d,\n    0x76, 0x7d, 0x84, 0x86, 0x87, 0x88, 0x87, 0x85, 0x88, 0x87, 0x86, 0x85, 0x85, 0x84, 0x84, 0x84,\n    0x85, 0x87, 0x8b, 0x8d, 0x8e, 0x8d, 0x8b, 0x89, 0x88, 0x88, 0x86, 0x85, 0x84, 0x84, 0x85, 0x85,\n    0x82, 0x82, 0x81, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x80, 0x81, 0x83, 0x83, 0x83,\n    0x86, 0x84, 0x82, 0x80, 0x7e, 0x7c, 0x7b, 0x7a, 0x77, 0x75, 0x72, 0x6f, 0x6d, 0x6a, 0x67, 0x65,\n    0x63, 0x61, 0x5f, 0x5e, 0x5e, 0x5d, 0x5c, 0x5b, 0x5d, 0x5c, 0x5a, 0x59, 0x5c, 0x60, 0x61, 0x5f,\n    0x64, 0x66, 0x66, 0x62, 0x5c, 0x5a, 0x5d, 0x61, 0x62, 0x60, 0x60, 0x61, 0x60, 0x5b, 0x58, 0x58,\n    0x59, 0x58, 0x57, 0x56, 0x55, 0x54, 0x53, 0x52, 0x56, 0x4c, 0x51, 0x64, 0x6b, 0x5f, 0x53, 0x52,\n    0x52, 0x53, 0x58, 0x62, 0x68, 0x65, 0x5b, 0x53, 0x4f, 0x4e, 0x50, 0x57, 0x5d, 0x62, 0x65, 0x68,\n    0x66, 0x58, 0x4e, 0x51, 0x55, 0x53, 0x53, 0x55, 0x6f, 0x80, 0x80, 0x71, 0x6b, 0x69, 0x65, 0x61,\n    0x54, 0x4b, 0x44, 0x47, 0x55, 0x67, 0x75, 0x7b, 0x6b, 0x5d, 0x4a, 0x3d, 0x3e, 0x47, 0x4d, 0x4f,\n    0x54, 0x4f, 0x50, 0x57, 0x58, 0x52, 0x50, 0x53, 0x56, 0x52, 0x54, 0x5c, 0x62, 0x62, 0x61, 0x62,\n    0x61, 0x5f, 0x5c, 0x5c, 0x5c, 0x5c, 0x59, 0x57, 0x56, 0x56, 0x56, 0x57, 0x57, 0x58, 0x59, 0x59,\n    0x55, 0x52, 0x51, 0x54, 0x59, 0x5c, 0x5a, 0x58, 0x53, 0x5c, 0x66, 0x67, 0x61, 0x5f, 0x63, 0x68,\n    0x60, 0x60, 0x64, 0x68, 0x68, 0x64, 0x61, 0x60, 0x63, 0x65, 0x65, 0x60, 0x5d, 0x61, 0x68, 0x6c,\n    0x64, 0x66, 0x68, 0x64, 0x56, 0x48, 0x47, 0x4e, 0x48, 0x45, 0x38, 0x35, 0x49, 0x5e, 0x66, 0x67,\n    0x5e, 0x54, 0x41, 0x35, 0x42, 0x54, 0x4f, 0x3c, 0x3a, 0x3a, 0x3f, 0x37, 0x39, 0x48, 0x52, 0x5d,\n    0x5c, 0x60, 0x66, 0x6a, 0x6a, 0x5f, 0x4c, 0x3b, 0x49, 0x53, 0x4f, 0x45, 0x49, 0x4e, 0x46, 0x3c,\n    0x34, 0x29, 0x25, 0x35, 0x4b, 0x52, 0x52, 0x59, 0x55, 0x52, 0x4a, 0x53, 0x5a, 0x54, 0x4a, 0x38,\n    0x2b, 0x27, 0x2f, 0x46, 0x59, 0x57, 0x42, 0x31, 0x3a, 0x4a, 0x5a, 0x5e, 0x5a, 0x5d, 0x6d, 0x7d,\n    0x70, 0x58, 0x4a, 0x4b, 0x47, 0x3f, 0x38, 0x32, 0x24, 0x23, 0x28, 0x36, 0x45, 0x4d, 0x4f, 0x4f,\n    0x68, 0x68, 0x60, 0x64, 0x6b, 0x70, 0x77, 0x72, 0x6f, 0x5d, 0x4d, 0x45, 0x3d, 0x36, 0x39, 0x42,\n    0x4d, 0x50, 0x4e, 0x45, 0x3e, 0x3f, 0x41, 0x42, 0x36, 0x45, 0x54, 0x56, 0x4a, 0x3f, 0x40, 0x46,\n    0x48, 0x4c, 0x4f, 0x4e, 0x4a, 0x45, 0x43, 0x42, 0x40, 0x3d, 0x3e, 0x48, 0x56, 0x5b, 0x54, 0x4b,\n    0x48, 0x49, 0x4b, 0x4d, 0x50, 0x57, 0x62, 0x6a, 0x63, 0x5d, 0x5a, 0x5f, 0x62, 0x5d, 0x54, 0x4e,\n    0x56, 0x53, 0x51, 0x52, 0x57, 0x5b, 0x5c, 0x5a, 0x57, 0x5e, 0x63, 0x60, 0x5a, 0x57, 0x59, 0x5b,\n    0x5d, 0x5e, 0x5c, 0x56, 0x50, 0x4f, 0x55, 0x5c, 0x5d, 0x5d, 0x57, 0x52, 0x57, 0x5f, 0x5d, 0x54,\n    0x58, 0x5b, 0x5d, 0x5c, 0x56, 0x50, 0x4c, 0x4b, 0x54, 0x59, 0x5e, 0x60, 0x5e, 0x5e, 0x62, 0x66,\n    0x6d, 0x6b, 0x68, 0x62, 0x5e, 0x5b, 0x59, 0x58, 0x59, 0x59, 0x56, 0x52, 0x53, 0x58, 0x5d, 0x5e,\n    0x55, 0x5c, 0x63, 0x69, 0x70, 0x71, 0x63, 0x51, 0x57, 0x5c, 0x65, 0x6c, 0x6a, 0x5d, 0x51, 0x4a,\n    0x4a, 0x4b, 0x4d, 0x4c, 0x49, 0x49, 0x4e, 0x55, 0x56, 0x59, 0x58, 0x54, 0x53, 0x59, 0x5f, 0x62,\n    0x58, 0x5b, 0x61, 0x65, 0x60, 0x57, 0x53, 0x54, 0x54, 0x57, 0x5a, 0x5b, 0x5f, 0x63, 0x64, 0x63,\n    0x5a, 0x58, 0x54, 0x4f, 0x4a, 0x46, 0x44, 0x43, 0x4b, 0x4c, 0x54, 0x60, 0x66, 0x65, 0x64, 0x65,\n    0x65, 0x67, 0x6e, 0x75, 0x76, 0x71, 0x6c, 0x6b, 0x67, 0x69, 0x69, 0x65, 0x64, 0x66, 0x68, 0x66,\n    0x67, 0x65, 0x63, 0x64, 0x67, 0x6a, 0x6d, 0x6e, 0x68, 0x63, 0x61, 0x63, 0x63, 0x62, 0x68, 0x70,\n    0x79, 0x79, 0x77, 0x71, 0x6a, 0x65, 0x64, 0x66, 0x66, 0x66, 0x67, 0x67, 0x67, 0x66, 0x65, 0x63,\n    0x62, 0x60, 0x5e, 0x5f, 0x62, 0x64, 0x65, 0x64, 0x62, 0x62, 0x5f, 0x5d, 0x5f, 0x64, 0x65, 0x64,\n    0x64, 0x61, 0x63, 0x66, 0x65, 0x6d, 0x8d, 0xaf, 0xef, 0xfc, 0xf2, 0xd7, 0xca, 0xcb, 0xc8, 0xc2,\n    0xc5, 0xc4, 0xc3, 0xbf, 0xba, 0xb3, 0xac, 0xa8, 0xb0, 0xaa, 0xa5, 0xa6, 0xaa, 0xad, 0xaf, 0xae,\n    0xa8, 0xa5, 0xa1, 0x9c, 0x98, 0x94, 0x92, 0x91, 0x8a, 0x87, 0x84, 0x82, 0x7f, 0x79, 0x72, 0x6c,\n    0x66, 0x65, 0x65, 0x64, 0x60, 0x57, 0x51, 0x4f, 0x50, 0x51, 0x54, 0x57, 0x5b, 0x60, 0x64, 0x66,\n    0x6c, 0x75, 0x7e, 0x83, 0x85, 0x87, 0x87, 0x86, 0x89, 0x88, 0x88, 0x87, 0x86, 0x85, 0x84, 0x83,\n    0x84, 0x85, 0x87, 0x89, 0x89, 0x89, 0x88, 0x87, 0x85, 0x85, 0x84, 0x84, 0x84, 0x85, 0x86, 0x86,\n    0x84, 0x84, 0x83, 0x82, 0x82, 0x82, 0x82, 0x82, 0x80, 0x7e, 0x7c, 0x7c, 0x7e, 0x81, 0x82, 0x82,\n    0x85, 0x83, 0x81, 0x7e, 0x7b, 0x79, 0x78, 0x78, 0x73, 0x71, 0x6e, 0x6b, 0x69, 0x67, 0x64, 0x62,\n    0x60, 0x5f, 0x5c, 0x5b, 0x5b, 0x5a, 0x59, 0x58, 0x55, 0x57, 0x5b, 0x64, 0x72, 0x83, 0x8d, 0x90,\n    0x74, 0x6e, 0x66, 0x5e, 0x5b, 0x5e, 0x63, 0x68, 0x6b, 0x66, 0x61, 0x60, 0x5f, 0x5c, 0x58, 0x57,\n    0x5a, 0x5b, 0x5d, 0x5e, 0x5e, 0x5e, 0x5e, 0x5e, 0x5e, 0x57, 0x5a, 0x69, 0x6e, 0x63, 0x57, 0x54,\n    0x57, 0x54, 0x57, 0x60, 0x66, 0x62, 0x5b, 0x57, 0x52, 0x51, 0x53, 0x5a, 0x5f, 0x61, 0x65, 0x69,\n    0x62, 0x58, 0x51, 0x53, 0x53, 0x4f, 0x51, 0x58, 0x67, 0x6f, 0x6c, 0x67, 0x71, 0x80, 0x89, 0x8e,\n    0x7d, 0x6c, 0x54, 0x41, 0x3c, 0x43, 0x50, 0x59, 0x5c, 0x56, 0x4f, 0x4e, 0x55, 0x5d, 0x5a, 0x53,\n    0x4c, 0x4b, 0x50, 0x59, 0x5d, 0x58, 0x53, 0x54, 0x54, 0x50, 0x52, 0x5a, 0x60, 0x5f, 0x5e, 0x5f,\n    0x61, 0x5f, 0x5c, 0x5c, 0x5c, 0x5c, 0x5a, 0x57, 0x52, 0x53, 0x54, 0x56, 0x57, 0x58, 0x58, 0x58,\n    0x54, 0x52, 0x52, 0x54, 0x58, 0x5c, 0x5c, 0x5b, 0x5a, 0x61, 0x68, 0x6a, 0x67, 0x66, 0x69, 0x6e,\n    0x72, 0x6b, 0x64, 0x60, 0x5e, 0x60, 0x67, 0x6e, 0x75, 0x74, 0x71, 0x6d, 0x6b, 0x6b, 0x6b, 0x69,\n    0x65, 0x62, 0x5f, 0x5a, 0x4f, 0x44, 0x42, 0x45, 0x4a, 0x48, 0x39, 0x34, 0x4a, 0x5f, 0x5c, 0x4f,\n    0x35, 0x35, 0x33, 0x36, 0x42, 0x4e, 0x4d, 0x44, 0x44, 0x3f, 0x3d, 0x33, 0x3b, 0x51, 0x59, 0x61,\n    0x59, 0x57, 0x5d, 0x67, 0x64, 0x51, 0x40, 0x39, 0x5b, 0x58, 0x49, 0x3d, 0x44, 0x4c, 0x47, 0x41,\n    0x46, 0x3f, 0x38, 0x40, 0x50, 0x55, 0x54, 0x59, 0x4f, 0x53, 0x4e, 0x52, 0x58, 0x58, 0x56, 0x47,\n    0x3e, 0x38, 0x34, 0x37, 0x39, 0x30, 0x21, 0x15, 0x2d, 0x46, 0x5e, 0x65, 0x64, 0x68, 0x71, 0x78,\n    0x75, 0x68, 0x60, 0x5c, 0x51, 0x45, 0x3a, 0x30, 0x25, 0x1c, 0x1f, 0x33, 0x48, 0x4f, 0x4d, 0x4c,\n    0x60, 0x60, 0x56, 0x5a, 0x63, 0x69, 0x71, 0x6b, 0x64, 0x5a, 0x58, 0x5d, 0x5a, 0x4d, 0x46, 0x49,\n    0x48, 0x52, 0x57, 0x53, 0x4c, 0x48, 0x44, 0x3f, 0x44, 0x44, 0x46, 0x49, 0x4a, 0x47, 0x41, 0x3e,\n    0x47, 0x4d, 0x52, 0x50, 0x47, 0x41, 0x40, 0x42, 0x3f, 0x45, 0x4d, 0x52, 0x52, 0x4e, 0x49, 0x47,\n    0x45, 0x49, 0x4c, 0x4c, 0x4c, 0x52, 0x5a, 0x60, 0x61, 0x59, 0x55, 0x5a, 0x5f, 0x5c, 0x55, 0x50,\n    0x4c, 0x51, 0x56, 0x57, 0x57, 0x59, 0x5b, 0x5d, 0x5d, 0x5d, 0x59, 0x54, 0x56, 0x5b, 0x5b, 0x55,\n    0x5a, 0x58, 0x52, 0x4c, 0x49, 0x4c, 0x54, 0x5b, 0x5b, 0x5c, 0x56, 0x4f, 0x51, 0x57, 0x52, 0x48,\n    0x4b, 0x50, 0x57, 0x5a, 0x58, 0x54, 0x50, 0x4e, 0x52, 0x58, 0x5f, 0x62, 0x63, 0x65, 0x6d, 0x75,\n    0x6a, 0x67, 0x61, 0x5c, 0x5a, 0x5b, 0x5b, 0x5b, 0x59, 0x5b, 0x59, 0x54, 0x51, 0x52, 0x55, 0x56,\n    0x5f, 0x5a, 0x57, 0x5a, 0x66, 0x6f, 0x6c, 0x63, 0x5e, 0x5c, 0x5e, 0x60, 0x5d, 0x56, 0x50, 0x50,\n    0x4f, 0x4e, 0x4e, 0x4f, 0x4c, 0x4a, 0x50, 0x58, 0x5e, 0x63, 0x62, 0x5b, 0x53, 0x51, 0x50, 0x4f,\n    0x52, 0x51, 0x57, 0x60, 0x61, 0x5b, 0x58, 0x5a, 0x5b, 0x58, 0x58, 0x5a, 0x5d, 0x5e, 0x60, 0x63,\n    0x59, 0x59, 0x58, 0x54, 0x4f, 0x4e, 0x51, 0x55, 0x56, 0x52, 0x56, 0x61, 0x65, 0x5f, 0x5c, 0x5e,\n    0x65, 0x69, 0x70, 0x76, 0x74, 0x6f, 0x6f, 0x74, 0x78, 0x75, 0x69, 0x59, 0x56, 0x60, 0x69, 0x6b,\n    0x6b, 0x6b, 0x6c, 0x6d, 0x6e, 0x6e, 0x6c, 0x6b, 0x68, 0x65, 0x67, 0x6b, 0x69, 0x63, 0x63, 0x69,\n    0x6e, 0x6e, 0x6e, 0x6d, 0x6c, 0x6b, 0x6b, 0x6b, 0x6a, 0x68, 0x64, 0x61, 0x5f, 0x61, 0x63, 0x65,\n    0x63, 0x60, 0x5f, 0x61, 0x64, 0x65, 0x63, 0x61, 0x5f, 0x60, 0x5e, 0x5c, 0x60, 0x68, 0x6b, 0x6a,\n    0x6b, 0x64, 0x63, 0x67, 0x6a, 0x81, 0xbc, 0xf6, 0xfa, 0xfc, 0xf1, 0xe0, 0xd5, 0xcc, 0xc7, 0xc9,\n    0xc5, 0xc3, 0xc0, 0xbf, 0xbe, 0xbb, 0xb5, 0xb0, 0xa6, 0xa8, 0xab, 0xac, 0xaa, 0xa6, 0xa5, 0xa6,\n    0xa5, 0xa3, 0xa0, 0x9b, 0x96, 0x93, 0x91, 0x91, 0x8d, 0x89, 0x85, 0x82, 0x7f, 0x7b, 0x75, 0x70,\n    0x64, 0x61, 0x61, 0x63, 0x63, 0x5d, 0x54, 0x4f, 0x4d, 0x4b, 0x4b, 0x4d, 0x51, 0x57, 0x5b, 0x5d,\n    0x63, 0x6d, 0x78, 0x7f, 0x82, 0x85, 0x86, 0x85, 0x88, 0x88, 0x88, 0x88, 0x87, 0x86, 0x84, 0x83,\n    0x82, 0x82, 0x83, 0x83, 0x84, 0x84, 0x85, 0x85, 0x83, 0x83, 0x83, 0x83, 0x84, 0x85, 0x87, 0x88,\n    0x86, 0x86, 0x85, 0x84, 0x84, 0x84, 0x84, 0x84, 0x81, 0x7f, 0x7c, 0x7c, 0x7f, 0x81, 0x83, 0x83,\n    0x82, 0x81, 0x7e, 0x7b, 0x78, 0x76, 0x75, 0x74, 0x71, 0x6e, 0x6b, 0x69, 0x67, 0x65, 0x62, 0x60,\n    0x5f, 0x5e, 0x5c, 0x5b, 0x5a, 0x5a, 0x59, 0x58, 0x62, 0x63, 0x64, 0x69, 0x76, 0x86, 0x90, 0x93,\n    0x9d, 0xa4, 0xb0, 0xb9, 0xb9, 0xac, 0x99, 0x8a, 0x77, 0x6e, 0x65, 0x62, 0x61, 0x5f, 0x5d, 0x5c,\n    0x5b, 0x5c, 0x5c, 0x5d, 0x5f, 0x62, 0x65, 0x68, 0x67, 0x64, 0x67, 0x6e, 0x70, 0x69, 0x5f, 0x5a,\n    0x5e, 0x58, 0x57, 0x5e, 0x62, 0x5e, 0x59, 0x57, 0x55, 0x54, 0x56, 0x5b, 0x5d, 0x5d, 0x5f, 0x64,\n    0x55, 0x56, 0x5d, 0x60, 0x5a, 0x56, 0x62, 0x75, 0x83, 0x7e, 0x6a, 0x56, 0x52, 0x58, 0x65, 0x74,\n    0x80, 0x83, 0x80, 0x71, 0x5c, 0x4c, 0x48, 0x4b, 0x60, 0x69, 0x73, 0x79, 0x79, 0x71, 0x60, 0x50,\n    0x4c, 0x4c, 0x4f, 0x54, 0x57, 0x55, 0x51, 0x4f, 0x55, 0x50, 0x50, 0x58, 0x5c, 0x5a, 0x58, 0x58,\n    0x5e, 0x5b, 0x59, 0x59, 0x59, 0x59, 0x57, 0x54, 0x4d, 0x4f, 0x53, 0x56, 0x59, 0x5a, 0x5b, 0x5b,\n    0x5b, 0x59, 0x57, 0x56, 0x56, 0x56, 0x56, 0x55, 0x5a, 0x62, 0x6d, 0x78, 0x81, 0x8b, 0x97, 0x9f,\n    0xa1, 0x9c, 0x97, 0x95, 0x95, 0x98, 0x9e, 0xa5, 0xa2, 0xa1, 0x9f, 0x9d, 0x9b, 0x95, 0x89, 0x7e,\n    0x65, 0x5c, 0x53, 0x4e, 0x4b, 0x47, 0x46, 0x47, 0x48, 0x47, 0x3a, 0x38, 0x51, 0x61, 0x4d, 0x30,\n    0x1d, 0x22, 0x2e, 0x3d, 0x47, 0x4c, 0x51, 0x57, 0x4f, 0x44, 0x3c, 0x31, 0x3d, 0x56, 0x5d, 0x60,\n    0x55, 0x51, 0x5e, 0x72, 0x6e, 0x56, 0x49, 0x4f, 0x69, 0x55, 0x36, 0x2d, 0x44, 0x59, 0x59, 0x51,\n    0x49, 0x44, 0x38, 0x38, 0x47, 0x55, 0x5d, 0x64, 0x5f, 0x60, 0x58, 0x60, 0x6e, 0x6e, 0x5c, 0x3b,\n    0x3a, 0x38, 0x32, 0x26, 0x18, 0x14, 0x22, 0x33, 0x4a, 0x59, 0x65, 0x68, 0x6d, 0x77, 0x79, 0x73,\n    0x6c, 0x61, 0x53, 0x42, 0x32, 0x2f, 0x2f, 0x29, 0x1a, 0x1b, 0x26, 0x35, 0x38, 0x35, 0x3b, 0x47,\n    0x5d, 0x56, 0x4f, 0x51, 0x5b, 0x66, 0x6a, 0x6b, 0x5e, 0x56, 0x55, 0x58, 0x58, 0x58, 0x57, 0x51,\n    0x51, 0x58, 0x5f, 0x5d, 0x52, 0x48, 0x42, 0x41, 0x46, 0x4b, 0x4d, 0x49, 0x47, 0x48, 0x46, 0x41,\n    0x48, 0x4b, 0x54, 0x5c, 0x59, 0x4d, 0x46, 0x47, 0x55, 0x55, 0x50, 0x47, 0x42, 0x43, 0x45, 0x45,\n    0x49, 0x48, 0x48, 0x4a, 0x4c, 0x4e, 0x52, 0x56, 0x57, 0x56, 0x58, 0x5f, 0x67, 0x66, 0x5b, 0x4f,\n    0x4e, 0x50, 0x53, 0x55, 0x56, 0x55, 0x53, 0x52, 0x57, 0x54, 0x51, 0x52, 0x55, 0x58, 0x57, 0x55,\n    0x5d, 0x5c, 0x55, 0x4c, 0x4b, 0x53, 0x56, 0x54, 0x55, 0x59, 0x57, 0x51, 0x4f, 0x52, 0x50, 0x49,\n    0x4e, 0x4e, 0x51, 0x58, 0x5e, 0x60, 0x5c, 0x57, 0x60, 0x64, 0x6a, 0x6c, 0x68, 0x63, 0x68, 0x70,\n    0x69, 0x68, 0x66, 0x67, 0x67, 0x65, 0x60, 0x5b, 0x5a, 0x5b, 0x5a, 0x55, 0x51, 0x53, 0x5b, 0x63,\n    0x61, 0x57, 0x50, 0x53, 0x5b, 0x64, 0x6e, 0x76, 0x77, 0x70, 0x65, 0x5b, 0x56, 0x53, 0x4d, 0x47,\n    0x4a, 0x4f, 0x58, 0x5e, 0x5c, 0x57, 0x56, 0x5a, 0x5d, 0x5d, 0x59, 0x51, 0x4a, 0x4e, 0x5b, 0x67,\n    0x5a, 0x55, 0x56, 0x5f, 0x62, 0x5b, 0x51, 0x4e, 0x52, 0x53, 0x58, 0x5e, 0x69, 0x7a, 0x7c, 0x6e,\n    0x51, 0x52, 0x59, 0x5e, 0x5b, 0x54, 0x55, 0x5d, 0x59, 0x5d, 0x63, 0x67, 0x67, 0x64, 0x61, 0x5f,\n    0x64, 0x73, 0x73, 0x6d, 0x71, 0x70, 0x6d, 0x74, 0x77, 0x67, 0x59, 0x54, 0x58, 0x65, 0x6d, 0x68,\n    0x66, 0x6d, 0x74, 0x78, 0x78, 0x76, 0x71, 0x6c, 0x60, 0x66, 0x6c, 0x6e, 0x6c, 0x6a, 0x69, 0x69,\n    0x6b, 0x70, 0x6e, 0x6c, 0x70, 0x6f, 0x6b, 0x6a, 0x6a, 0x67, 0x62, 0x5f, 0x60, 0x63, 0x67, 0x69,\n    0x67, 0x62, 0x5e, 0x5f, 0x61, 0x62, 0x63, 0x65, 0x56, 0x60, 0x5e, 0x5d, 0x6b, 0x71, 0x69, 0x65,\n    0x66, 0x70, 0x77, 0x81, 0xa0, 0xcf, 0xf3, 0xff, 0xfb, 0xff, 0xf8, 0xe5, 0xd5, 0xd0, 0xcd, 0xc8,\n    0xc3, 0xc7, 0xc8, 0xc5, 0xc2, 0xbf, 0xba, 0xb4, 0xac, 0xa8, 0xa7, 0xaa, 0xaa, 0xa7, 0xa5, 0xa6,\n    0xa3, 0x9c, 0x98, 0x97, 0x95, 0x90, 0x8d, 0x8d, 0x8d, 0x89, 0x84, 0x80, 0x7d, 0x7b, 0x78, 0x76,\n    0x69, 0x65, 0x61, 0x60, 0x61, 0x5f, 0x5a, 0x55, 0x4d, 0x4a, 0x47, 0x48, 0x4c, 0x50, 0x51, 0x51,\n    0x5f, 0x62, 0x6b, 0x77, 0x80, 0x84, 0x87, 0x8a, 0x87, 0x88, 0x88, 0x87, 0x85, 0x84, 0x85, 0x87,\n    0x83, 0x82, 0x80, 0x7f, 0x7f, 0x80, 0x81, 0x82, 0x83, 0x82, 0x82, 0x82, 0x83, 0x86, 0x88, 0x8a,\n    0x8a, 0x8a, 0x8a, 0x89, 0x89, 0x88, 0x87, 0x86, 0x83, 0x82, 0x80, 0x7f, 0x7f, 0x7f, 0x81, 0x82,\n    0x83, 0x81, 0x7e, 0x7b, 0x77, 0x74, 0x6f, 0x6c, 0x6a, 0x6a, 0x6a, 0x67, 0x64, 0x60, 0x5d, 0x5b,\n    0x5b, 0x5b, 0x5b, 0x59, 0x57, 0x58, 0x5b, 0x5d, 0x5e, 0x65, 0x66, 0x64, 0x69, 0x6d, 0x74, 0x7f,\n    0x90, 0x97, 0xa2, 0xb0, 0xbd, 0xc5, 0xca, 0xcb, 0xcb, 0xca, 0xbf, 0xa1, 0x7b, 0x60, 0x5a, 0x60,\n    0x56, 0x57, 0x59, 0x5a, 0x5e, 0x62, 0x63, 0x62, 0x5a, 0x62, 0x6d, 0x76, 0x77, 0x6e, 0x5f, 0x54,\n    0x5d, 0x57, 0x54, 0x58, 0x5a, 0x57, 0x56, 0x58, 0x56, 0x4e, 0x52, 0x59, 0x5d, 0x6a, 0x6f, 0x63,\n    0x5b, 0x5c, 0x5d, 0x58, 0x4f, 0x52, 0x6a, 0x84, 0x82, 0x7b, 0x6d, 0x5a, 0x49, 0x43, 0x4d, 0x5a,\n    0x6c, 0x7c, 0x87, 0x7e, 0x69, 0x60, 0x6c, 0x7c, 0x8a, 0x84, 0x85, 0x8c, 0x8d, 0x7d, 0x65, 0x54,\n    0x54, 0x51, 0x51, 0x55, 0x59, 0x59, 0x57, 0x55, 0x4e, 0x50, 0x53, 0x57, 0x5b, 0x5c, 0x5a, 0x57,\n    0x60, 0x5f, 0x5c, 0x59, 0x5a, 0x5c, 0x5c, 0x5a, 0x55, 0x59, 0x56, 0x50, 0x51, 0x58, 0x5c, 0x59,\n    0x5b, 0x59, 0x59, 0x5b, 0x5a, 0x56, 0x52, 0x52, 0x67, 0x83, 0xa4, 0xb5, 0xb5, 0xb1, 0xaf, 0xaf,\n    0xa9, 0xa4, 0xa5, 0xa4, 0x9b, 0x97, 0x99, 0x97, 0x97, 0x95, 0x94, 0x94, 0x8e, 0x81, 0x72, 0x6a,\n    0x60, 0x57, 0x46, 0x40, 0x4b, 0x52, 0x4d, 0x49, 0x50, 0x3e, 0x35, 0x45, 0x5c, 0x5c, 0x41, 0x25,\n    0x1d, 0x22, 0x2c, 0x33, 0x37, 0x45, 0x53, 0x55, 0x4a, 0x3b, 0x2f, 0x2f, 0x41, 0x5c, 0x68, 0x60,\n    0x5a, 0x4e, 0x6e, 0x78, 0x7f, 0x67, 0x6a, 0x57, 0x5c, 0x3d, 0x2b, 0x25, 0x58, 0x67, 0x75, 0x6d,\n    0x59, 0x3f, 0x2b, 0x31, 0x4a, 0x61, 0x6d, 0x72, 0x46, 0x45, 0x4c, 0x5c, 0x5e, 0x46, 0x30, 0x30,\n    0x44, 0x44, 0x39, 0x2a, 0x1e, 0x1d, 0x32, 0x4f, 0x5f, 0x61, 0x66, 0x6c, 0x73, 0x78, 0x7b, 0x7c,\n    0x72, 0x5a, 0x45, 0x43, 0x4a, 0x48, 0x3c, 0x32, 0x27, 0x2b, 0x30, 0x30, 0x29, 0x21, 0x22, 0x27,\n    0x55, 0x4d, 0x47, 0x4c, 0x5a, 0x66, 0x6a, 0x68, 0x60, 0x57, 0x56, 0x58, 0x57, 0x58, 0x57, 0x51,\n    0x58, 0x5f, 0x67, 0x69, 0x65, 0x5e, 0x57, 0x53, 0x4f, 0x48, 0x40, 0x40, 0x4d, 0x58, 0x56, 0x4c,\n    0x44, 0x4d, 0x5f, 0x6e, 0x6f, 0x66, 0x5f, 0x5f, 0x5e, 0x59, 0x4e, 0x44, 0x40, 0x44, 0x46, 0x46,\n    0x46, 0x47, 0x48, 0x4c, 0x4f, 0x51, 0x52, 0x52, 0x5c, 0x5e, 0x5d, 0x5a, 0x5a, 0x5d, 0x5f, 0x5d,\n    0x56, 0x55, 0x55, 0x54, 0x53, 0x52, 0x51, 0x51, 0x4e, 0x4e, 0x4e, 0x4e, 0x50, 0x53, 0x55, 0x57,\n    0x5a, 0x5b, 0x58, 0x53, 0x54, 0x59, 0x59, 0x53, 0x52, 0x55, 0x56, 0x55, 0x56, 0x58, 0x57, 0x54,\n    0x59, 0x59, 0x59, 0x5b, 0x5e, 0x60, 0x5f, 0x5d, 0x63, 0x67, 0x6d, 0x6f, 0x6b, 0x67, 0x6c, 0x73,\n    0x6b, 0x69, 0x65, 0x62, 0x5f, 0x5a, 0x54, 0x51, 0x57, 0x58, 0x58, 0x56, 0x54, 0x55, 0x59, 0x5c,\n    0x58, 0x54, 0x52, 0x56, 0x5b, 0x60, 0x66, 0x6c, 0x67, 0x66, 0x61, 0x5b, 0x57, 0x58, 0x59, 0x59,\n    0x61, 0x61, 0x62, 0x5f, 0x58, 0x50, 0x50, 0x55, 0x55, 0x58, 0x59, 0x54, 0x4e, 0x4e, 0x55, 0x5d,\n    0x5c, 0x5a, 0x5e, 0x66, 0x67, 0x60, 0x5a, 0x5a, 0x55, 0x55, 0x57, 0x58, 0x5c, 0x67, 0x68, 0x5a,\n    0x54, 0x51, 0x51, 0x55, 0x59, 0x5b, 0x5d, 0x60, 0x70, 0x71, 0x71, 0x70, 0x6f, 0x6e, 0x6b, 0x6a,\n    0x6e, 0x79, 0x77, 0x70, 0x73, 0x72, 0x6f, 0x72, 0x6d, 0x6a, 0x6c, 0x6c, 0x69, 0x69, 0x67, 0x5d,\n    0x63, 0x6b, 0x76, 0x7d, 0x7c, 0x75, 0x6b, 0x63, 0x65, 0x66, 0x66, 0x65, 0x63, 0x63, 0x66, 0x69,\n    0x72, 0x75, 0x6f, 0x67, 0x67, 0x65, 0x61, 0x62, 0x5d, 0x5f, 0x62, 0x65, 0x66, 0x66, 0x66, 0x66,\n    0x61, 0x5d, 0x5b, 0x5d, 0x60, 0x62, 0x64, 0x67, 0x6a, 0x63, 0x62, 0x67, 0x65, 0x5f, 0x73, 0x97,\n    0xb8, 0xc8, 0xd9, 0xe5, 0xf2, 0xfd, 0xfe, 0xf7, 0xfd, 0xfe, 0xfa, 0xed, 0xdd, 0xd2, 0xce, 0xce,\n    0xc7, 0xc8, 0xc6, 0xc4, 0xc4, 0xc4, 0xc1, 0xbc, 0xb3, 0xae, 0xab, 0xac, 0xab, 0xa7, 0xa6, 0xa8,\n    0xa2, 0x9c, 0x97, 0x96, 0x94, 0x8f, 0x8b, 0x8a, 0x8c, 0x8b, 0x88, 0x84, 0x7f, 0x7b, 0x78, 0x78,\n    0x6f, 0x6a, 0x64, 0x61, 0x60, 0x5f, 0x5c, 0x59, 0x53, 0x4f, 0x4a, 0x47, 0x48, 0x4a, 0x4b, 0x4b,\n    0x55, 0x58, 0x62, 0x70, 0x7c, 0x82, 0x84, 0x86, 0x85, 0x85, 0x85, 0x86, 0x86, 0x85, 0x83, 0x82,\n    0x83, 0x81, 0x7f, 0x7d, 0x7c, 0x7d, 0x7d, 0x7e, 0x80, 0x7f, 0x7f, 0x7f, 0x81, 0x83, 0x85, 0x87,\n    0x87, 0x87, 0x88, 0x88, 0x88, 0x88, 0x87, 0x86, 0x83, 0x82, 0x81, 0x80, 0x80, 0x80, 0x81, 0x81,\n    0x80, 0x7e, 0x7b, 0x78, 0x76, 0x73, 0x70, 0x6e, 0x68, 0x67, 0x64, 0x61, 0x5e, 0x5c, 0x5c, 0x5c,\n    0x5c, 0x5a, 0x58, 0x56, 0x52, 0x51, 0x56, 0x5c, 0x60, 0x5e, 0x59, 0x58, 0x59, 0x55, 0x58, 0x64,\n    0x74, 0x82, 0x97, 0xaa, 0xb7, 0xbc, 0xbf, 0xbf, 0xc0, 0xc1, 0xc2, 0xb5, 0x95, 0x71, 0x60, 0x60,\n    0x5d, 0x5b, 0x5a, 0x5a, 0x5c, 0x5e, 0x5d, 0x5a, 0x5b, 0x5c, 0x61, 0x69, 0x6f, 0x6d, 0x63, 0x5a,\n    0x58, 0x5b, 0x5a, 0x55, 0x55, 0x58, 0x5a, 0x58, 0x58, 0x4f, 0x50, 0x55, 0x5b, 0x67, 0x6c, 0x61,\n    0x5c, 0x5f, 0x62, 0x64, 0x6a, 0x74, 0x80, 0x87, 0x73, 0x6f, 0x6d, 0x6b, 0x65, 0x5e, 0x58, 0x56,\n    0x4e, 0x52, 0x57, 0x5d, 0x62, 0x68, 0x6d, 0x71, 0x78, 0x6e, 0x64, 0x62, 0x62, 0x5f, 0x5a, 0x57,\n    0x58, 0x54, 0x52, 0x55, 0x5a, 0x5d, 0x5c, 0x5a, 0x59, 0x59, 0x58, 0x58, 0x5a, 0x5c, 0x5f, 0x60,\n    0x5e, 0x5f, 0x5e, 0x5c, 0x5d, 0x5d, 0x59, 0x55, 0x56, 0x55, 0x51, 0x50, 0x55, 0x5c, 0x5f, 0x5d,\n    0x5d, 0x60, 0x60, 0x5e, 0x61, 0x73, 0x8f, 0xa5, 0xa3, 0xa5, 0xa6, 0xa5, 0xa6, 0xa7, 0xa6, 0xa3,\n    0xa0, 0x9a, 0x99, 0x96, 0x8c, 0x89, 0x8b, 0x8a, 0x89, 0x84, 0x7e, 0x79, 0x73, 0x6a, 0x62, 0x5e,\n    0x6c, 0x5e, 0x4d, 0x4a, 0x4f, 0x49, 0x40, 0x3f, 0x45, 0x3f, 0x3b, 0x39, 0x38, 0x33, 0x2e, 0x2c,\n    0x34, 0x34, 0x34, 0x2f, 0x2e, 0x40, 0x57, 0x61, 0x52, 0x40, 0x32, 0x33, 0x43, 0x5a, 0x63, 0x5c,\n    0x50, 0x3e, 0x61, 0x7a, 0x84, 0x63, 0x5e, 0x50, 0x4c, 0x35, 0x2e, 0x38, 0x68, 0x74, 0x78, 0x6c,\n    0x53, 0x3e, 0x36, 0x45, 0x57, 0x5e, 0x63, 0x6a, 0x69, 0x55, 0x4b, 0x55, 0x57, 0x44, 0x3a, 0x43,\n    0x44, 0x3b, 0x28, 0x1c, 0x1e, 0x28, 0x37, 0x4a, 0x51, 0x66, 0x77, 0x77, 0x73, 0x78, 0x83, 0x89,\n    0x77, 0x67, 0x56, 0x4e, 0x48, 0x40, 0x39, 0x37, 0x44, 0x3c, 0x38, 0x43, 0x5b, 0x6f, 0x75, 0x73,\n    0x4e, 0x46, 0x40, 0x46, 0x55, 0x63, 0x67, 0x66, 0x62, 0x5a, 0x57, 0x57, 0x55, 0x57, 0x56, 0x4f,\n    0x52, 0x56, 0x5d, 0x63, 0x67, 0x67, 0x64, 0x61, 0x60, 0x51, 0x40, 0x3e, 0x4d, 0x5c, 0x5a, 0x50,\n    0x41, 0x4d, 0x61, 0x72, 0x74, 0x6a, 0x62, 0x61, 0x58, 0x50, 0x43, 0x3b, 0x3d, 0x44, 0x49, 0x4a,\n    0x4b, 0x4a, 0x4a, 0x4d, 0x51, 0x53, 0x52, 0x4f, 0x56, 0x61, 0x67, 0x60, 0x5a, 0x5c, 0x5f, 0x60,\n    0x5a, 0x57, 0x53, 0x51, 0x51, 0x51, 0x51, 0x51, 0x52, 0x54, 0x56, 0x56, 0x56, 0x59, 0x5f, 0x63,\n    0x60, 0x5f, 0x5b, 0x58, 0x5a, 0x5d, 0x59, 0x51, 0x5e, 0x5e, 0x62, 0x67, 0x69, 0x68, 0x67, 0x69,\n    0x67, 0x65, 0x61, 0x5d, 0x5a, 0x5b, 0x5d, 0x5f, 0x5e, 0x62, 0x68, 0x6a, 0x66, 0x62, 0x64, 0x69,\n    0x60, 0x60, 0x5e, 0x5b, 0x58, 0x55, 0x54, 0x54, 0x5a, 0x5b, 0x5d, 0x5f, 0x60, 0x5f, 0x5d, 0x5c,\n    0x5a, 0x56, 0x53, 0x52, 0x53, 0x57, 0x60, 0x68, 0x64, 0x67, 0x68, 0x62, 0x5d, 0x5d, 0x62, 0x65,\n    0x63, 0x62, 0x61, 0x5d, 0x56, 0x51, 0x53, 0x58, 0x55, 0x5a, 0x5f, 0x5d, 0x56, 0x51, 0x52, 0x54,\n    0x55, 0x54, 0x55, 0x5a, 0x5c, 0x5c, 0x60, 0x66, 0x6a, 0x66, 0x62, 0x59, 0x55, 0x5b, 0x5d, 0x54,\n    0x5a, 0x5b, 0x5b, 0x5b, 0x5e, 0x65, 0x6b, 0x6d, 0x71, 0x70, 0x6f, 0x70, 0x73, 0x74, 0x72, 0x71,\n    0x76, 0x7b, 0x76, 0x6f, 0x72, 0x72, 0x6e, 0x6d, 0x6d, 0x71, 0x7a, 0x7b, 0x72, 0x6c, 0x66, 0x5d,\n    0x66, 0x6a, 0x71, 0x76, 0x76, 0x71, 0x6a, 0x65, 0x6b, 0x6a, 0x66, 0x62, 0x5e, 0x5e, 0x61, 0x64,\n    0x66, 0x6b, 0x68, 0x62, 0x62, 0x60, 0x5e, 0x61, 0x5d, 0x61, 0x67, 0x69, 0x68, 0x65, 0x63, 0x63,\n    0x62, 0x5f, 0x5d, 0x5e, 0x5f, 0x5e, 0x5f, 0x62, 0x5c, 0x60, 0x68, 0x69, 0x6d, 0x8c, 0xc2, 0xe9,\n    0xf9, 0xfd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xfd, 0xfc, 0xfc, 0xf7, 0xe8, 0xd7, 0xcf, 0xd0,\n    0xca, 0xc8, 0xc4, 0xc2, 0xc3, 0xc5, 0xc3, 0xbf, 0xbc, 0xb7, 0xb2, 0xaf, 0xad, 0xaa, 0xa9, 0xa9,\n    0xa4, 0x9e, 0x9a, 0x98, 0x95, 0x90, 0x8b, 0x89, 0x88, 0x8a, 0x8a, 0x86, 0x80, 0x7a, 0x78, 0x78,\n    0x74, 0x6f, 0x68, 0x62, 0x5f, 0x5d, 0x5c, 0x5b, 0x58, 0x54, 0x4e, 0x49, 0x46, 0x46, 0x47, 0x48,\n    0x4b, 0x4c, 0x54, 0x61, 0x6f, 0x79, 0x81, 0x86, 0x87, 0x85, 0x83, 0x84, 0x86, 0x86, 0x84, 0x82,\n    0x82, 0x81, 0x7e, 0x7c, 0x7b, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7d, 0x7f, 0x81, 0x82,\n    0x84, 0x85, 0x86, 0x88, 0x88, 0x87, 0x87, 0x86, 0x82, 0x82, 0x82, 0x82, 0x82, 0x81, 0x80, 0x80,\n    0x7d, 0x7b, 0x77, 0x74, 0x72, 0x6f, 0x6d, 0x6b, 0x69, 0x66, 0x60, 0x5b, 0x58, 0x56, 0x56, 0x57,\n    0x5a, 0x55, 0x52, 0x51, 0x4c, 0x49, 0x52, 0x60, 0x68, 0x60, 0x58, 0x5c, 0x63, 0x5d, 0x5a, 0x63,\n    0x5e, 0x6a, 0x7f, 0x96, 0xaa, 0xb3, 0xb5, 0xb3, 0xb4, 0xb6, 0xc0, 0xc5, 0xb0, 0x89, 0x6c, 0x62,\n    0x60, 0x5d, 0x5b, 0x5c, 0x5e, 0x5e, 0x5c, 0x59, 0x60, 0x5c, 0x5a, 0x61, 0x69, 0x6a, 0x60, 0x56,\n    0x5f, 0x6b, 0x6b, 0x5b, 0x53, 0x5a, 0x5b, 0x55, 0x59, 0x52, 0x52, 0x59, 0x60, 0x68, 0x67, 0x5c,\n    0x5d, 0x5e, 0x60, 0x67, 0x78, 0x87, 0x85, 0x7a, 0x79, 0x6d, 0x63, 0x6a, 0x7b, 0x8d, 0x98, 0x9d,\n    0x96, 0x7f, 0x62, 0x54, 0x57, 0x64, 0x6e, 0x72, 0x73, 0x6c, 0x64, 0x5e, 0x59, 0x55, 0x54, 0x56,\n    0x51, 0x4c, 0x49, 0x4c, 0x54, 0x5b, 0x5d, 0x5c, 0x59, 0x5a, 0x5a, 0x5b, 0x5c, 0x5f, 0x65, 0x69,\n    0x63, 0x63, 0x61, 0x5f, 0x60, 0x60, 0x5c, 0x57, 0x59, 0x53, 0x50, 0x54, 0x59, 0x5c, 0x5e, 0x5f,\n    0x5c, 0x68, 0x7a, 0x8e, 0xa2, 0xae, 0xac, 0xa3, 0x94, 0x91, 0x8f, 0x91, 0x97, 0x9d, 0x9c, 0x97,\n    0x97, 0x8f, 0x8b, 0x87, 0x7d, 0x79, 0x7b, 0x7b, 0x7e, 0x77, 0x6f, 0x69, 0x62, 0x5c, 0x58, 0x58,\n    0x57, 0x4b, 0x43, 0x49, 0x50, 0x46, 0x3f, 0x47, 0x48, 0x3e, 0x3a, 0x42, 0x4e, 0x4f, 0x47, 0x3e,\n    0x39, 0x3b, 0x3e, 0x39, 0x35, 0x45, 0x5a, 0x62, 0x57, 0x40, 0x33, 0x3b, 0x4f, 0x64, 0x68, 0x5d,\n    0x50, 0x45, 0x65, 0x7b, 0x82, 0x63, 0x5d, 0x51, 0x43, 0x33, 0x34, 0x4d, 0x70, 0x75, 0x69, 0x59,\n    0x43, 0x38, 0x3d, 0x53, 0x5e, 0x5a, 0x5b, 0x66, 0x6d, 0x55, 0x4b, 0x56, 0x55, 0x42, 0x3d, 0x4b,\n    0x43, 0x3c, 0x2b, 0x21, 0x27, 0x2d, 0x2c, 0x2e, 0x47, 0x63, 0x7a, 0x7c, 0x7b, 0x81, 0x85, 0x83,\n    0x71, 0x6b, 0x63, 0x57, 0x45, 0x37, 0x35, 0x3b, 0x49, 0x3e, 0x34, 0x3a, 0x51, 0x69, 0x75, 0x75,\n    0x4c, 0x46, 0x41, 0x46, 0x52, 0x5d, 0x64, 0x65, 0x63, 0x5c, 0x58, 0x57, 0x55, 0x58, 0x58, 0x50,\n    0x4b, 0x4d, 0x50, 0x55, 0x5c, 0x62, 0x66, 0x68, 0x6b, 0x62, 0x53, 0x4c, 0x53, 0x5e, 0x61, 0x5c,\n    0x4d, 0x54, 0x5e, 0x64, 0x5f, 0x54, 0x4d, 0x4c, 0x52, 0x4b, 0x42, 0x3d, 0x41, 0x48, 0x4d, 0x4f,\n    0x54, 0x52, 0x4f, 0x4d, 0x4f, 0x52, 0x52, 0x4f, 0x56, 0x5b, 0x57, 0x4b, 0x4a, 0x56, 0x61, 0x64,\n    0x57, 0x54, 0x51, 0x52, 0x54, 0x55, 0x54, 0x52, 0x51, 0x53, 0x54, 0x54, 0x54, 0x57, 0x5c, 0x60,\n    0x63, 0x5f, 0x59, 0x57, 0x5b, 0x5f, 0x5d, 0x57, 0x5f, 0x5d, 0x62, 0x6b, 0x6c, 0x66, 0x65, 0x69,\n    0x6e, 0x6c, 0x65, 0x5b, 0x52, 0x50, 0x54, 0x59, 0x55, 0x5b, 0x61, 0x63, 0x5e, 0x59, 0x56, 0x57,\n    0x54, 0x56, 0x57, 0x56, 0x55, 0x56, 0x5a, 0x5e, 0x5c, 0x5c, 0x5e, 0x62, 0x65, 0x65, 0x60, 0x5c,\n    0x5b, 0x5a, 0x57, 0x54, 0x52, 0x55, 0x5e, 0x66, 0x6c, 0x71, 0x70, 0x68, 0x5e, 0x59, 0x5a, 0x5b,\n    0x54, 0x58, 0x5b, 0x5b, 0x59, 0x59, 0x5d, 0x63, 0x5b, 0x61, 0x66, 0x66, 0x62, 0x5d, 0x5b, 0x5c,\n    0x5e, 0x5b, 0x5c, 0x62, 0x68, 0x69, 0x69, 0x69, 0x6d, 0x68, 0x61, 0x55, 0x4e, 0x56, 0x5f, 0x5d,\n    0x68, 0x73, 0x76, 0x6c, 0x64, 0x68, 0x71, 0x75, 0x6c, 0x6c, 0x6e, 0x73, 0x78, 0x79, 0x76, 0x73,\n    0x7a, 0x7b, 0x76, 0x71, 0x74, 0x77, 0x75, 0x70, 0x6d, 0x72, 0x7d, 0x81, 0x7a, 0x74, 0x6c, 0x60,\n    0x63, 0x66, 0x6c, 0x73, 0x75, 0x72, 0x6d, 0x6a, 0x6b, 0x6b, 0x6b, 0x68, 0x65, 0x63, 0x63, 0x63,\n    0x59, 0x63, 0x66, 0x65, 0x68, 0x67, 0x65, 0x68, 0x6b, 0x6c, 0x6b, 0x67, 0x62, 0x5f, 0x60, 0x62,\n    0x63, 0x60, 0x5e, 0x5f, 0x5f, 0x5e, 0x5f, 0x61, 0x65, 0x66, 0x6e, 0x7b, 0x9c, 0xd6, 0xfe, 0xfe,\n    0xfa, 0xf9, 0xfa, 0xfc, 0xfd, 0xfc, 0xfc, 0xfe, 0xfa, 0xfc, 0xfd, 0xfb, 0xf2, 0xe2, 0xd4, 0xcd,\n    0xca, 0xc8, 0xc6, 0xc4, 0xc3, 0xc3, 0xc1, 0xbf, 0xc0, 0xbd, 0xb8, 0xb5, 0xb2, 0xaf, 0xac, 0xab,\n    0xa7, 0xa3, 0x9f, 0x9b, 0x98, 0x93, 0x8e, 0x8a, 0x86, 0x86, 0x86, 0x84, 0x80, 0x7b, 0x78, 0x76,\n    0x75, 0x71, 0x6a, 0x64, 0x5e, 0x5b, 0x5a, 0x5a, 0x58, 0x56, 0x52, 0x4d, 0x49, 0x48, 0x48, 0x49,\n    0x48, 0x47, 0x48, 0x4e, 0x59, 0x67, 0x77, 0x84, 0x87, 0x85, 0x83, 0x82, 0x82, 0x82, 0x83, 0x83,\n    0x81, 0x80, 0x7e, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x78, 0x78, 0x78, 0x78, 0x79, 0x7b, 0x7d, 0x7e,\n    0x82, 0x83, 0x84, 0x86, 0x86, 0x85, 0x84, 0x83, 0x81, 0x82, 0x83, 0x83, 0x83, 0x81, 0x7f, 0x7e,\n    0x7b, 0x78, 0x74, 0x70, 0x6d, 0x6a, 0x67, 0x65, 0x63, 0x61, 0x5d, 0x59, 0x57, 0x55, 0x54, 0x53,\n    0x53, 0x4c, 0x4a, 0x4b, 0x47, 0x45, 0x53, 0x66, 0x74, 0x69, 0x5e, 0x65, 0x78, 0x7c, 0x72, 0x6d,\n    0x6e, 0x70, 0x7a, 0x90, 0xaa, 0xba, 0xbb, 0xb6, 0xb3, 0xb4, 0xbb, 0xc4, 0xbd, 0xa0, 0x7d, 0x67,\n    0x62, 0x61, 0x61, 0x62, 0x61, 0x5e, 0x5b, 0x5a, 0x60, 0x5b, 0x59, 0x61, 0x6a, 0x6a, 0x5d, 0x50,\n    0x61, 0x70, 0x73, 0x64, 0x57, 0x58, 0x59, 0x55, 0x59, 0x56, 0x58, 0x61, 0x6a, 0x6b, 0x62, 0x55,\n    0x5d, 0x5c, 0x5e, 0x68, 0x79, 0x84, 0x7f, 0x74, 0x63, 0x59, 0x53, 0x5b, 0x69, 0x74, 0x78, 0x78,\n    0x80, 0x7c, 0x78, 0x75, 0x76, 0x76, 0x76, 0x75, 0x76, 0x73, 0x6f, 0x6a, 0x63, 0x5c, 0x58, 0x56,\n    0x59, 0x55, 0x50, 0x52, 0x59, 0x61, 0x61, 0x5e, 0x50, 0x56, 0x5e, 0x62, 0x64, 0x66, 0x6b, 0x6f,\n    0x67, 0x65, 0x60, 0x5d, 0x5e, 0x62, 0x61, 0x5e, 0x5c, 0x57, 0x56, 0x5a, 0x5a, 0x57, 0x5d, 0x66,\n    0x72, 0x8c, 0xa6, 0xb2, 0xb3, 0xae, 0xa2, 0x96, 0x83, 0x8b, 0x93, 0x97, 0x97, 0x94, 0x8e, 0x88,\n    0x8a, 0x81, 0x7d, 0x79, 0x6f, 0x6b, 0x6c, 0x6b, 0x66, 0x61, 0x5c, 0x57, 0x51, 0x4a, 0x47, 0x47,\n    0x43, 0x41, 0x42, 0x4b, 0x52, 0x4c, 0x4c, 0x58, 0x4f, 0x4c, 0x4d, 0x53, 0x57, 0x52, 0x48, 0x41,\n    0x33, 0x3a, 0x43, 0x43, 0x43, 0x50, 0x5e, 0x5f, 0x47, 0x32, 0x28, 0x37, 0x4f, 0x5f, 0x5c, 0x4c,\n    0x49, 0x4b, 0x60, 0x60, 0x5f, 0x51, 0x50, 0x43, 0x3e, 0x33, 0x3b, 0x5b, 0x70, 0x6f, 0x59, 0x45,\n    0x3d, 0x3e, 0x4a, 0x5c, 0x60, 0x5b, 0x5f, 0x6b, 0x5d, 0x4e, 0x4e, 0x58, 0x52, 0x40, 0x3c, 0x44,\n    0x49, 0x44, 0x32, 0x25, 0x2e, 0x40, 0x4f, 0x5a, 0x53, 0x5c, 0x67, 0x70, 0x7c, 0x85, 0x7f, 0x72,\n    0x6f, 0x6e, 0x6c, 0x61, 0x4c, 0x38, 0x32, 0x36, 0x3f, 0x35, 0x2f, 0x36, 0x45, 0x56, 0x65, 0x70,\n    0x46, 0x48, 0x4b, 0x50, 0x56, 0x5c, 0x60, 0x61, 0x61, 0x5b, 0x59, 0x59, 0x5a, 0x61, 0x62, 0x5a,\n    0x51, 0x52, 0x54, 0x56, 0x5a, 0x5f, 0x65, 0x69, 0x68, 0x67, 0x62, 0x60, 0x67, 0x73, 0x79, 0x78,\n    0x73, 0x70, 0x6c, 0x66, 0x5d, 0x55, 0x53, 0x54, 0x56, 0x52, 0x4e, 0x4c, 0x4c, 0x4e, 0x51, 0x52,\n    0x55, 0x56, 0x55, 0x51, 0x51, 0x52, 0x52, 0x4f, 0x52, 0x56, 0x58, 0x5b, 0x65, 0x6f, 0x6c, 0x62,\n    0x54, 0x53, 0x54, 0x58, 0x5d, 0x5d, 0x58, 0x54, 0x55, 0x55, 0x55, 0x55, 0x56, 0x57, 0x59, 0x59,\n    0x5c, 0x58, 0x54, 0x55, 0x5b, 0x61, 0x60, 0x5d, 0x59, 0x58, 0x60, 0x6b, 0x6c, 0x64, 0x61, 0x66,\n    0x6e, 0x6d, 0x67, 0x5b, 0x4e, 0x48, 0x4c, 0x51, 0x55, 0x5b, 0x62, 0x63, 0x5f, 0x58, 0x52, 0x4e,\n    0x51, 0x53, 0x55, 0x54, 0x52, 0x53, 0x57, 0x5c, 0x58, 0x57, 0x57, 0x5a, 0x5e, 0x5f, 0x5d, 0x5a,\n    0x59, 0x5b, 0x5d, 0x5c, 0x5c, 0x5e, 0x63, 0x66, 0x6c, 0x6e, 0x6c, 0x63, 0x58, 0x50, 0x4b, 0x48,\n    0x4f, 0x54, 0x58, 0x59, 0x59, 0x5d, 0x64, 0x69, 0x65, 0x68, 0x6a, 0x6a, 0x67, 0x66, 0x66, 0x67,\n    0x65, 0x62, 0x64, 0x6e, 0x77, 0x74, 0x66, 0x59, 0x6d, 0x6b, 0x6a, 0x63, 0x5e, 0x68, 0x74, 0x76,\n    0x75, 0x7e, 0x7c, 0x6b, 0x5f, 0x63, 0x6b, 0x6f, 0x69, 0x68, 0x69, 0x6b, 0x6e, 0x6e, 0x6a, 0x66,\n    0x70, 0x6f, 0x6d, 0x6a, 0x6c, 0x72, 0x73, 0x6d, 0x69, 0x6d, 0x7a, 0x85, 0x86, 0x81, 0x73, 0x61,\n    0x5c, 0x62, 0x6d, 0x7a, 0x7e, 0x77, 0x6d, 0x67, 0x67, 0x68, 0x69, 0x69, 0x68, 0x66, 0x64, 0x64,\n    0x5e, 0x67, 0x6a, 0x68, 0x6a, 0x68, 0x66, 0x69, 0x6f, 0x6d, 0x68, 0x61, 0x5b, 0x5a, 0x5e, 0x63,\n    0x5d, 0x5b, 0x5b, 0x5d, 0x5f, 0x60, 0x63, 0x67, 0x6f, 0x63, 0x79, 0xaf, 0xdf, 0xfc, 0xff, 0xf1,\n    0xf9, 0xf8, 0xfb, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xf9, 0xfe, 0xff, 0xfc, 0xf9, 0xf1, 0xdf, 0xcc,\n    0xc9, 0xc9, 0xc9, 0xc8, 0xc5, 0xc2, 0xc0, 0xc0, 0xc0, 0xbf, 0xbc, 0xba, 0xb7, 0xb4, 0xb0, 0xac,\n    0xaa, 0xa8, 0xa3, 0x9f, 0x9c, 0x97, 0x91, 0x8c, 0x87, 0x84, 0x80, 0x7f, 0x80, 0x7e, 0x7a, 0x76,\n    0x74, 0x71, 0x6c, 0x67, 0x61, 0x5d, 0x5a, 0x58, 0x56, 0x56, 0x55, 0x52, 0x4e, 0x4a, 0x48, 0x47,\n    0x48, 0x46, 0x44, 0x44, 0x46, 0x50, 0x62, 0x72, 0x7f, 0x83, 0x86, 0x85, 0x81, 0x7e, 0x7c, 0x7d,\n    0x7e, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x7b,\n    0x7e, 0x7f, 0x80, 0x80, 0x80, 0x7f, 0x7d, 0x7c, 0x7e, 0x80, 0x81, 0x82, 0x81, 0x7f, 0x7d, 0x7b,\n    0x76, 0x74, 0x70, 0x6d, 0x6a, 0x67, 0x64, 0x62, 0x5a, 0x59, 0x58, 0x58, 0x57, 0x54, 0x50, 0x4d,\n    0x47, 0x42, 0x42, 0x45, 0x44, 0x45, 0x56, 0x6c, 0x7a, 0x6e, 0x59, 0x57, 0x70, 0x80, 0x75, 0x64,\n    0x6e, 0x70, 0x7b, 0x8f, 0xa6, 0xb5, 0xb8, 0xb5, 0xb8, 0xb9, 0xb9, 0xbc, 0xbd, 0xae, 0x8b, 0x6a,\n    0x66, 0x66, 0x67, 0x67, 0x62, 0x5b, 0x58, 0x5a, 0x5c, 0x58, 0x58, 0x61, 0x6a, 0x6b, 0x61, 0x55,\n    0x57, 0x63, 0x6b, 0x66, 0x5a, 0x55, 0x56, 0x59, 0x5b, 0x5a, 0x5a, 0x62, 0x6b, 0x68, 0x5b, 0x52,\n    0x5a, 0x5c, 0x65, 0x73, 0x7a, 0x7a, 0x78, 0x78, 0x77, 0x70, 0x67, 0x62, 0x5f, 0x5e, 0x5f, 0x62,\n    0x63, 0x6c, 0x76, 0x7b, 0x7c, 0x7c, 0x81, 0x86, 0x74, 0x6d, 0x63, 0x5b, 0x58, 0x59, 0x5c, 0x5e,\n    0x62, 0x5f, 0x5a, 0x58, 0x5c, 0x60, 0x5d, 0x57, 0x54, 0x5b, 0x65, 0x69, 0x69, 0x69, 0x6c, 0x6f,\n    0x63, 0x60, 0x5b, 0x5a, 0x5d, 0x62, 0x63, 0x60, 0x5e, 0x5a, 0x5a, 0x5b, 0x58, 0x59, 0x6a, 0x7f,\n    0x9a, 0xa8, 0xb0, 0xab, 0xa3, 0x9f, 0x99, 0x91, 0x8d, 0x94, 0x99, 0x98, 0x93, 0x8d, 0x87, 0x82,\n    0x79, 0x70, 0x6d, 0x69, 0x60, 0x5b, 0x5a, 0x57, 0x51, 0x4e, 0x4a, 0x47, 0x41, 0x3c, 0x3c, 0x3f,\n    0x42, 0x47, 0x49, 0x4a, 0x4a, 0x45, 0x46, 0x50, 0x5c, 0x51, 0x48, 0x47, 0x49, 0x47, 0x41, 0x3c,\n    0x3a, 0x3c, 0x3f, 0x3f, 0x43, 0x54, 0x5f, 0x5b, 0x43, 0x3b, 0x3e, 0x4a, 0x57, 0x5f, 0x5b, 0x4e,\n    0x47, 0x46, 0x4b, 0x43, 0x43, 0x3d, 0x3b, 0x30, 0x2e, 0x2b, 0x40, 0x64, 0x73, 0x6f, 0x58, 0x41,\n    0x34, 0x40, 0x50, 0x5a, 0x5a, 0x57, 0x5c, 0x63, 0x62, 0x53, 0x51, 0x56, 0x51, 0x4b, 0x48, 0x42,\n    0x39, 0x38, 0x2b, 0x22, 0x2f, 0x45, 0x58, 0x65, 0x64, 0x61, 0x63, 0x6e, 0x7a, 0x7e, 0x7a, 0x75,\n    0x79, 0x77, 0x76, 0x6f, 0x5e, 0x47, 0x37, 0x33, 0x40, 0x32, 0x2d, 0x3a, 0x49, 0x53, 0x64, 0x75,\n    0x42, 0x4a, 0x55, 0x5c, 0x5e, 0x5d, 0x5b, 0x5b, 0x5b, 0x59, 0x5a, 0x5c, 0x61, 0x6c, 0x6f, 0x68,\n    0x55, 0x57, 0x59, 0x5b, 0x5b, 0x5c, 0x5d, 0x5e, 0x64, 0x64, 0x64, 0x69, 0x77, 0x85, 0x89, 0x84,\n    0x80, 0x7a, 0x70, 0x67, 0x62, 0x61, 0x63, 0x65, 0x52, 0x50, 0x4f, 0x51, 0x52, 0x52, 0x54, 0x56,\n    0x53, 0x5a, 0x5d, 0x58, 0x53, 0x53, 0x53, 0x51, 0x4c, 0x57, 0x6b, 0x80, 0x8d, 0x88, 0x6f, 0x59,\n    0x55, 0x56, 0x5a, 0x62, 0x68, 0x66, 0x5c, 0x54, 0x5d, 0x5d, 0x5e, 0x5f, 0x5f, 0x5e, 0x5c, 0x5a,\n    0x58, 0x55, 0x53, 0x55, 0x5a, 0x5c, 0x5a, 0x57, 0x58, 0x5b, 0x64, 0x6f, 0x70, 0x68, 0x65, 0x69,\n    0x67, 0x6a, 0x6a, 0x61, 0x54, 0x4b, 0x4c, 0x4f, 0x58, 0x5f, 0x65, 0x66, 0x63, 0x5e, 0x56, 0x50,\n    0x50, 0x52, 0x54, 0x54, 0x52, 0x51, 0x54, 0x57, 0x57, 0x56, 0x56, 0x56, 0x59, 0x5b, 0x5e, 0x5f,\n    0x62, 0x61, 0x5d, 0x5b, 0x5e, 0x66, 0x6c, 0x6f, 0x63, 0x64, 0x61, 0x5a, 0x52, 0x4c, 0x47, 0x43,\n    0x4c, 0x50, 0x52, 0x51, 0x52, 0x5a, 0x64, 0x6b, 0x72, 0x70, 0x6c, 0x67, 0x61, 0x5e, 0x5d, 0x5e,\n    0x5e, 0x56, 0x53, 0x5a, 0x65, 0x68, 0x5e, 0x53, 0x59, 0x5a, 0x5e, 0x5c, 0x56, 0x5a, 0x61, 0x60,\n    0x6d, 0x6c, 0x64, 0x58, 0x56, 0x60, 0x67, 0x68, 0x64, 0x62, 0x60, 0x61, 0x63, 0x64, 0x64, 0x63,\n    0x69, 0x69, 0x6b, 0x69, 0x67, 0x6e, 0x73, 0x6d, 0x70, 0x6e, 0x75, 0x7e, 0x81, 0x83, 0x7a, 0x6b,\n    0x64, 0x64, 0x6a, 0x75, 0x79, 0x73, 0x6c, 0x6a, 0x69, 0x67, 0x65, 0x62, 0x5f, 0x5c, 0x5b, 0x5a,\n    0x5e, 0x64, 0x61, 0x5c, 0x5e, 0x5e, 0x5e, 0x63, 0x65, 0x64, 0x60, 0x5c, 0x5a, 0x5b, 0x60, 0x64,\n    0x61, 0x5e, 0x5d, 0x5e, 0x5e, 0x5f, 0x63, 0x67, 0x5b, 0x75, 0xae, 0xe6, 0xfd, 0xfb, 0xfa, 0xfc,\n    0xff, 0xfd, 0xfa, 0xfa, 0xfa, 0xfb, 0xfe, 0xff, 0xfb, 0xff, 0xff, 0xfd, 0xfe, 0xfd, 0xed, 0xd9,\n    0xcd, 0xca, 0xc7, 0xc6, 0xc3, 0xc0, 0xbf, 0xc1, 0xbe, 0xbf, 0xbe, 0xbb, 0xb9, 0xb7, 0xb3, 0xae,\n    0xac, 0xab, 0xa8, 0xa3, 0x9f, 0x9b, 0x94, 0x8e, 0x8b, 0x84, 0x7d, 0x7b, 0x7d, 0x7f, 0x7c, 0x79,\n    0x74, 0x72, 0x6e, 0x6a, 0x66, 0x62, 0x5d, 0x59, 0x57, 0x57, 0x56, 0x54, 0x50, 0x4b, 0x47, 0x44,\n    0x47, 0x46, 0x46, 0x43, 0x3f, 0x41, 0x4b, 0x55, 0x6e, 0x79, 0x85, 0x8b, 0x87, 0x80, 0x7b, 0x7a,\n    0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x76, 0x77, 0x77, 0x77, 0x78,\n    0x7a, 0x79, 0x79, 0x78, 0x77, 0x76, 0x75, 0x75, 0x7a, 0x7b, 0x7c, 0x7d, 0x7c, 0x7a, 0x77, 0x76,\n    0x71, 0x6f, 0x6c, 0x6a, 0x67, 0x64, 0x61, 0x5e, 0x59, 0x57, 0x54, 0x51, 0x4f, 0x4a, 0x43, 0x3e,\n    0x3e, 0x3c, 0x3e, 0x42, 0x43, 0x47, 0x59, 0x6c, 0x78, 0x6d, 0x52, 0x44, 0x58, 0x6f, 0x6c, 0x5e,\n    0x4e, 0x5c, 0x72, 0x88, 0x9c, 0xaa, 0xb2, 0xb7, 0xb7, 0xb9, 0xb6, 0xb3, 0xb7, 0xb1, 0x94, 0x72,\n    0x68, 0x66, 0x66, 0x66, 0x62, 0x5b, 0x5b, 0x5f, 0x60, 0x5d, 0x5c, 0x5f, 0x63, 0x63, 0x5e, 0x59,\n    0x56, 0x5c, 0x65, 0x67, 0x5d, 0x52, 0x53, 0x5a, 0x60, 0x5e, 0x58, 0x5b, 0x63, 0x5f, 0x55, 0x53,\n    0x56, 0x5c, 0x6a, 0x77, 0x74, 0x68, 0x62, 0x65, 0x65, 0x6e, 0x78, 0x7a, 0x6c, 0x59, 0x4b, 0x46,\n    0x4a, 0x50, 0x59, 0x60, 0x66, 0x6b, 0x71, 0x75, 0x76, 0x6e, 0x62, 0x58, 0x57, 0x5c, 0x60, 0x61,\n    0x5c, 0x5d, 0x5b, 0x59, 0x5b, 0x5f, 0x5d, 0x57, 0x5e, 0x62, 0x66, 0x67, 0x64, 0x63, 0x65, 0x68,\n    0x5d, 0x5c, 0x5b, 0x5d, 0x63, 0x68, 0x66, 0x61, 0x5f, 0x5c, 0x5c, 0x5e, 0x60, 0x6b, 0x86, 0xa0,\n    0xa9, 0xaa, 0xa9, 0xa6, 0xa4, 0x9f, 0x90, 0x81, 0x89, 0x89, 0x8a, 0x8b, 0x8e, 0x8e, 0x88, 0x80,\n    0x70, 0x66, 0x62, 0x5d, 0x53, 0x4c, 0x4a, 0x45, 0x47, 0x43, 0x3f, 0x3a, 0x36, 0x36, 0x3d, 0x44,\n    0x43, 0x49, 0x4a, 0x4a, 0x4a, 0x45, 0x45, 0x4d, 0x58, 0x48, 0x3c, 0x3f, 0x49, 0x4d, 0x47, 0x40,\n    0x3a, 0x3a, 0x3c, 0x3c, 0x43, 0x52, 0x54, 0x46, 0x2c, 0x32, 0x3f, 0x46, 0x47, 0x4e, 0x50, 0x49,\n    0x4a, 0x40, 0x3b, 0x3c, 0x3e, 0x34, 0x29, 0x23, 0x20, 0x25, 0x47, 0x67, 0x74, 0x6d, 0x5c, 0x40,\n    0x2e, 0x41, 0x56, 0x60, 0x60, 0x5f, 0x60, 0x62, 0x63, 0x54, 0x54, 0x5a, 0x5a, 0x5b, 0x55, 0x42,\n    0x46, 0x44, 0x3c, 0x3d, 0x4c, 0x57, 0x58, 0x5a, 0x61, 0x68, 0x76, 0x83, 0x82, 0x7a, 0x7a, 0x80,\n    0x7a, 0x75, 0x73, 0x72, 0x69, 0x54, 0x41, 0x37, 0x3c, 0x34, 0x33, 0x3a, 0x3d, 0x43, 0x59, 0x72,\n    0x4a, 0x50, 0x58, 0x5c, 0x5c, 0x5a, 0x57, 0x55, 0x58, 0x57, 0x5b, 0x5e, 0x64, 0x70, 0x75, 0x6c,\n    0x5a, 0x59, 0x59, 0x5c, 0x5f, 0x60, 0x5e, 0x5b, 0x62, 0x64, 0x66, 0x69, 0x73, 0x7f, 0x82, 0x7e,\n    0x73, 0x6e, 0x67, 0x63, 0x63, 0x66, 0x67, 0x67, 0x53, 0x4e, 0x4c, 0x50, 0x55, 0x57, 0x58, 0x5a,\n    0x5d, 0x66, 0x68, 0x5d, 0x52, 0x52, 0x56, 0x59, 0x5a, 0x5f, 0x6b, 0x77, 0x79, 0x6f, 0x60, 0x57,\n    0x54, 0x56, 0x5d, 0x67, 0x6f, 0x6c, 0x60, 0x54, 0x55, 0x59, 0x5e, 0x5f, 0x5d, 0x59, 0x56, 0x55,\n    0x57, 0x53, 0x51, 0x52, 0x55, 0x56, 0x56, 0x56, 0x58, 0x5c, 0x65, 0x6c, 0x6a, 0x62, 0x5c, 0x5c,\n    0x5d, 0x65, 0x6b, 0x69, 0x5e, 0x55, 0x53, 0x54, 0x59, 0x5f, 0x64, 0x65, 0x65, 0x63, 0x5e, 0x58,\n    0x56, 0x58, 0x5a, 0x59, 0x57, 0x54, 0x54, 0x54, 0x56, 0x57, 0x57, 0x55, 0x55, 0x59, 0x60, 0x66,\n    0x6a, 0x67, 0x61, 0x5e, 0x63, 0x6a, 0x6c, 0x69, 0x5e, 0x5f, 0x5c, 0x54, 0x4c, 0x49, 0x48, 0x47,\n    0x46, 0x4c, 0x4f, 0x4e, 0x4f, 0x57, 0x61, 0x67, 0x71, 0x6d, 0x66, 0x5e, 0x57, 0x52, 0x4f, 0x4e,\n    0x58, 0x51, 0x4b, 0x4b, 0x53, 0x5b, 0x5d, 0x5b, 0x58, 0x59, 0x5d, 0x5b, 0x53, 0x53, 0x57, 0x55,\n    0x60, 0x5e, 0x58, 0x52, 0x54, 0x5b, 0x60, 0x61, 0x62, 0x63, 0x65, 0x67, 0x6a, 0x6c, 0x6e, 0x6f,\n    0x71, 0x71, 0x77, 0x74, 0x6d, 0x72, 0x79, 0x73, 0x76, 0x74, 0x76, 0x77, 0x75, 0x78, 0x78, 0x71,\n    0x6a, 0x63, 0x61, 0x66, 0x6a, 0x69, 0x6a, 0x6d, 0x6b, 0x69, 0x66, 0x63, 0x61, 0x5f, 0x5e, 0x5d,\n    0x5b, 0x5f, 0x5a, 0x56, 0x5a, 0x5c, 0x5c, 0x60, 0x63, 0x61, 0x5e, 0x5c, 0x5d, 0x60, 0x64, 0x67,\n    0x6a, 0x67, 0x64, 0x61, 0x5f, 0x5e, 0x62, 0x67, 0x7a, 0xb9, 0xf0, 0xfd, 0xf8, 0xf5, 0xf9, 0xfe,\n    0xfa, 0xfd, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfb, 0xff, 0xff, 0xfe, 0xfd, 0xff, 0xff, 0xf8, 0xef,\n    0xe0, 0xd4, 0xc8, 0xc4, 0xc2, 0xc1, 0xc0, 0xc2, 0xbe, 0xbf, 0xbd, 0xba, 0xb8, 0xb8, 0xb5, 0xb0,\n    0xaf, 0xaf, 0xac, 0xa7, 0xa4, 0xa0, 0x99, 0x91, 0x8d, 0x86, 0x7d, 0x78, 0x78, 0x7a, 0x7b, 0x7b,\n    0x75, 0x71, 0x6d, 0x6a, 0x69, 0x66, 0x60, 0x5c, 0x59, 0x57, 0x55, 0x54, 0x52, 0x4f, 0x4a, 0x46,\n    0x46, 0x45, 0x46, 0x45, 0x42, 0x3f, 0x41, 0x44, 0x53, 0x60, 0x73, 0x80, 0x85, 0x83, 0x80, 0x7e,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x78, 0x77, 0x77, 0x76, 0x76, 0x75, 0x75, 0x75,\n    0x76, 0x76, 0x74, 0x73, 0x72, 0x71, 0x71, 0x71, 0x75, 0x75, 0x76, 0x77, 0x76, 0x74, 0x71, 0x70,\n    0x6d, 0x6b, 0x69, 0x66, 0x62, 0x5e, 0x58, 0x55, 0x52, 0x4d, 0x47, 0x43, 0x41, 0x3e, 0x3b, 0x38,\n    0x3e, 0x40, 0x43, 0x45, 0x47, 0x4d, 0x5c, 0x6a, 0x74, 0x6f, 0x59, 0x47, 0x4e, 0x5f, 0x67, 0x67,\n    0x52, 0x5b, 0x6c, 0x80, 0x96, 0xa9, 0xb7, 0xbf, 0xb6, 0xb8, 0xb5, 0xb2, 0xb5, 0xb5, 0xa5, 0x92,\n    0x74, 0x6b, 0x64, 0x63, 0x60, 0x5c, 0x5c, 0x60, 0x61, 0x61, 0x60, 0x5e, 0x5b, 0x58, 0x57, 0x57,\n    0x5b, 0x5f, 0x65, 0x67, 0x5f, 0x56, 0x56, 0x5c, 0x64, 0x63, 0x5b, 0x5b, 0x62, 0x5c, 0x52, 0x55,\n    0x59, 0x62, 0x6d, 0x73, 0x6f, 0x62, 0x57, 0x51, 0x5a, 0x64, 0x72, 0x7c, 0x81, 0x88, 0x95, 0xa1,\n    0x93, 0x82, 0x68, 0x55, 0x4f, 0x57, 0x64, 0x6e, 0x76, 0x76, 0x71, 0x6a, 0x66, 0x65, 0x62, 0x5f,\n    0x5c, 0x60, 0x60, 0x5d, 0x5f, 0x65, 0x66, 0x61, 0x5f, 0x61, 0x63, 0x62, 0x60, 0x5f, 0x60, 0x62,\n    0x5e, 0x5d, 0x5c, 0x5e, 0x65, 0x6b, 0x6a, 0x65, 0x62, 0x60, 0x62, 0x6a, 0x77, 0x88, 0x9d, 0xae,\n    0xa6, 0xac, 0xae, 0xa4, 0x94, 0x88, 0x88, 0x8c, 0x89, 0x89, 0x89, 0x8b, 0x8e, 0x8c, 0x82, 0x77,\n    0x70, 0x64, 0x5c, 0x54, 0x48, 0x40, 0x3c, 0x37, 0x37, 0x34, 0x30, 0x2c, 0x29, 0x2c, 0x37, 0x42,\n    0x48, 0x46, 0x47, 0x52, 0x5b, 0x55, 0x52, 0x5a, 0x46, 0x45, 0x46, 0x45, 0x42, 0x3e, 0x3e, 0x41,\n    0x34, 0x38, 0x3f, 0x44, 0x4a, 0x54, 0x4e, 0x39, 0x30, 0x35, 0x3b, 0x3e, 0x45, 0x54, 0x56, 0x49,\n    0x3c, 0x40, 0x3f, 0x3c, 0x33, 0x26, 0x1a, 0x1a, 0x23, 0x2a, 0x52, 0x64, 0x71, 0x68, 0x62, 0x44,\n    0x3f, 0x4e, 0x63, 0x72, 0x72, 0x6b, 0x67, 0x68, 0x55, 0x4b, 0x54, 0x5c, 0x51, 0x4a, 0x45, 0x38,\n    0x41, 0x39, 0x2e, 0x31, 0x43, 0x50, 0x57, 0x60, 0x5a, 0x61, 0x6d, 0x77, 0x7a, 0x79, 0x7b, 0x7f,\n    0x74, 0x6d, 0x68, 0x67, 0x60, 0x50, 0x3e, 0x35, 0x31, 0x35, 0x3a, 0x3d, 0x41, 0x50, 0x68, 0x7c,\n    0x58, 0x57, 0x57, 0x56, 0x56, 0x54, 0x53, 0x53, 0x58, 0x58, 0x5b, 0x5e, 0x63, 0x6f, 0x72, 0x69,\n    0x66, 0x61, 0x5d, 0x61, 0x68, 0x6d, 0x6c, 0x69, 0x5f, 0x66, 0x6b, 0x69, 0x6a, 0x72, 0x78, 0x7a,\n    0x79, 0x77, 0x74, 0x75, 0x79, 0x7c, 0x79, 0x74, 0x63, 0x59, 0x52, 0x55, 0x5b, 0x5e, 0x5d, 0x5e,\n    0x6d, 0x74, 0x71, 0x5e, 0x4e, 0x4f, 0x5a, 0x62, 0x67, 0x6b, 0x74, 0x78, 0x6d, 0x5a, 0x50, 0x52,\n    0x50, 0x53, 0x5b, 0x68, 0x71, 0x6f, 0x62, 0x56, 0x50, 0x58, 0x60, 0x62, 0x5d, 0x57, 0x55, 0x56,\n    0x51, 0x4d, 0x49, 0x4a, 0x4f, 0x56, 0x5d, 0x62, 0x61, 0x66, 0x6d, 0x6f, 0x68, 0x5e, 0x55, 0x51,\n    0x55, 0x60, 0x6b, 0x6e, 0x67, 0x5e, 0x5a, 0x59, 0x59, 0x5e, 0x62, 0x63, 0x65, 0x67, 0x65, 0x60,\n    0x63, 0x64, 0x64, 0x61, 0x5c, 0x56, 0x52, 0x50, 0x4f, 0x52, 0x52, 0x50, 0x4e, 0x52, 0x5c, 0x64,\n    0x65, 0x67, 0x6a, 0x6e, 0x72, 0x70, 0x61, 0x52, 0x5f, 0x5f, 0x5a, 0x4f, 0x46, 0x43, 0x45, 0x46,\n    0x47, 0x4f, 0x54, 0x54, 0x53, 0x58, 0x5d, 0x5f, 0x61, 0x5e, 0x5a, 0x56, 0x52, 0x4f, 0x4d, 0x4c,\n    0x4f, 0x51, 0x51, 0x50, 0x50, 0x51, 0x51, 0x50, 0x53, 0x52, 0x55, 0x53, 0x4d, 0x50, 0x57, 0x58,\n    0x60, 0x63, 0x64, 0x5f, 0x58, 0x53, 0x54, 0x56, 0x5c, 0x60, 0x66, 0x6b, 0x6d, 0x6d, 0x6c, 0x6c,\n    0x6b, 0x6c, 0x73, 0x70, 0x64, 0x68, 0x6f, 0x6a, 0x6f, 0x74, 0x7d, 0x7d, 0x74, 0x70, 0x6e, 0x69,\n    0x61, 0x5b, 0x5a, 0x62, 0x66, 0x64, 0x63, 0x66, 0x69, 0x6a, 0x6c, 0x6f, 0x72, 0x74, 0x73, 0x73,\n    0x62, 0x66, 0x63, 0x60, 0x65, 0x65, 0x62, 0x63, 0x6a, 0x66, 0x61, 0x5e, 0x5f, 0x63, 0x67, 0x69,\n    0x6c, 0x69, 0x66, 0x64, 0x62, 0x63, 0x68, 0x6e, 0xbb, 0xe8, 0xfe, 0xf7, 0xf9, 0xff, 0xfe, 0xfa,\n    0xfe, 0xff, 0xff, 0xfb, 0xfb, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xfb, 0xfd, 0xfe, 0xfd, 0xfd, 0xff,\n    0xf7, 0xe3, 0xce, 0xc6, 0xc6, 0xc6, 0xc5, 0xc5, 0xbf, 0xbf, 0xbd, 0xb8, 0xb6, 0xb8, 0xb6, 0xb1,\n    0xb3, 0xb3, 0xb0, 0xab, 0xa7, 0xa4, 0x9d, 0x95, 0x8e, 0x87, 0x7d, 0x75, 0x72, 0x74, 0x79, 0x7c,\n    0x76, 0x70, 0x6b, 0x69, 0x69, 0x67, 0x62, 0x5e, 0x5b, 0x58, 0x54, 0x54, 0x54, 0x53, 0x4f, 0x4b,\n    0x46, 0x44, 0x43, 0x46, 0x47, 0x45, 0x43, 0x43, 0x3b, 0x46, 0x59, 0x6c, 0x7a, 0x81, 0x83, 0x84,\n    0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x78, 0x77, 0x77, 0x76, 0x75, 0x74, 0x74, 0x73,\n    0x76, 0x74, 0x73, 0x71, 0x70, 0x71, 0x71, 0x72, 0x71, 0x72, 0x72, 0x72, 0x71, 0x6f, 0x6d, 0x6c,\n    0x6c, 0x6a, 0x66, 0x62, 0x5d, 0x56, 0x4e, 0x49, 0x41, 0x3c, 0x36, 0x34, 0x37, 0x3c, 0x3f, 0x40,\n    0x43, 0x47, 0x4a, 0x4a, 0x4b, 0x52, 0x5e, 0x68, 0x74, 0x75, 0x67, 0x55, 0x4f, 0x55, 0x61, 0x6e,\n    0x6e, 0x66, 0x63, 0x6f, 0x88, 0xa2, 0xb1, 0xb7, 0xbb, 0xb9, 0xb8, 0xb8, 0xba, 0xbd, 0xbb, 0xb8,\n    0x8a, 0x79, 0x68, 0x62, 0x5e, 0x59, 0x56, 0x58, 0x57, 0x5c, 0x60, 0x5e, 0x59, 0x55, 0x56, 0x58,\n    0x57, 0x5c, 0x62, 0x62, 0x5e, 0x5c, 0x5e, 0x62, 0x66, 0x67, 0x61, 0x61, 0x67, 0x5e, 0x53, 0x57,\n    0x63, 0x6c, 0x72, 0x74, 0x74, 0x71, 0x64, 0x55, 0x61, 0x67, 0x6f, 0x74, 0x73, 0x72, 0x77, 0x7e,\n    0x79, 0x76, 0x71, 0x6d, 0x6b, 0x6b, 0x6b, 0x6b, 0x6e, 0x73, 0x74, 0x6f, 0x69, 0x66, 0x62, 0x5d,\n    0x5d, 0x61, 0x60, 0x5a, 0x58, 0x5d, 0x5e, 0x5a, 0x5a, 0x5d, 0x62, 0x64, 0x63, 0x63, 0x63, 0x64,\n    0x60, 0x5d, 0x58, 0x59, 0x61, 0x69, 0x6b, 0x69, 0x65, 0x64, 0x69, 0x78, 0x8d, 0x9e, 0xa7, 0xaa,\n    0xab, 0xa5, 0x9f, 0x9b, 0x94, 0x8c, 0x86, 0x85, 0x83, 0x85, 0x86, 0x85, 0x83, 0x81, 0x7d, 0x78,\n    0x72, 0x63, 0x58, 0x4d, 0x3e, 0x36, 0x32, 0x2d, 0x2f, 0x2d, 0x2c, 0x2a, 0x29, 0x2c, 0x37, 0x41,\n    0x47, 0x3b, 0x3a, 0x4e, 0x5d, 0x53, 0x4b, 0x53, 0x4d, 0x3f, 0x34, 0x3b, 0x49, 0x4f, 0x49, 0x40,\n    0x39, 0x3d, 0x45, 0x49, 0x50, 0x5c, 0x57, 0x43, 0x40, 0x36, 0x2e, 0x2f, 0x41, 0x59, 0x53, 0x38,\n    0x31, 0x4f, 0x57, 0x43, 0x2a, 0x20, 0x1b, 0x1d, 0x2d, 0x32, 0x5b, 0x62, 0x6f, 0x68, 0x6e, 0x51,\n    0x4b, 0x52, 0x62, 0x71, 0x6e, 0x5e, 0x56, 0x59, 0x4e, 0x47, 0x52, 0x52, 0x32, 0x20, 0x27, 0x2b,\n    0x2e, 0x2e, 0x2d, 0x36, 0x42, 0x47, 0x4d, 0x58, 0x5f, 0x54, 0x47, 0x48, 0x5b, 0x72, 0x7b, 0x79,\n    0x77, 0x6d, 0x63, 0x5d, 0x52, 0x41, 0x32, 0x2b, 0x2b, 0x2d, 0x2c, 0x31, 0x45, 0x5f, 0x6b, 0x68,\n    0x5e, 0x5b, 0x5a, 0x5a, 0x56, 0x50, 0x4e, 0x50, 0x5a, 0x5e, 0x5f, 0x5c, 0x60, 0x6a, 0x70, 0x6f,\n    0x65, 0x64, 0x61, 0x5e, 0x61, 0x68, 0x6d, 0x6e, 0x78, 0x7d, 0x80, 0x7a, 0x6f, 0x6a, 0x6e, 0x75,\n    0x79, 0x76, 0x74, 0x75, 0x76, 0x77, 0x76, 0x76, 0x75, 0x65, 0x56, 0x53, 0x57, 0x5d, 0x65, 0x6c,\n    0x6d, 0x69, 0x62, 0x5e, 0x5e, 0x61, 0x63, 0x62, 0x63, 0x6a, 0x6d, 0x6b, 0x65, 0x56, 0x4c, 0x50,\n    0x55, 0x60, 0x6c, 0x71, 0x6c, 0x61, 0x58, 0x53, 0x5e, 0x61, 0x67, 0x6e, 0x6e, 0x67, 0x60, 0x5d,\n    0x60, 0x60, 0x62, 0x63, 0x5e, 0x5a, 0x61, 0x6c, 0x6f, 0x69, 0x62, 0x5c, 0x57, 0x51, 0x4c, 0x49,\n    0x54, 0x64, 0x73, 0x77, 0x72, 0x6a, 0x5d, 0x51, 0x56, 0x57, 0x5a, 0x5f, 0x63, 0x65, 0x64, 0x62,\n    0x62, 0x62, 0x61, 0x5f, 0x5b, 0x58, 0x56, 0x56, 0x5b, 0x5f, 0x63, 0x65, 0x69, 0x6d, 0x6d, 0x68,\n    0x67, 0x6c, 0x6c, 0x65, 0x60, 0x60, 0x61, 0x5f, 0x61, 0x62, 0x63, 0x5e, 0x52, 0x46, 0x44, 0x49,\n    0x50, 0x4c, 0x48, 0x49, 0x4f, 0x55, 0x5b, 0x5e, 0x5d, 0x55, 0x4d, 0x4c, 0x50, 0x53, 0x50, 0x4c,\n    0x49, 0x4e, 0x53, 0x52, 0x50, 0x4e, 0x4d, 0x4c, 0x4a, 0x4b, 0x4d, 0x4f, 0x4f, 0x4e, 0x51, 0x55,\n    0x5b, 0x57, 0x55, 0x56, 0x55, 0x53, 0x55, 0x5a, 0x5b, 0x5f, 0x63, 0x65, 0x66, 0x67, 0x67, 0x64,\n    0x5f, 0x65, 0x65, 0x60, 0x60, 0x66, 0x68, 0x66, 0x73, 0x75, 0x76, 0x71, 0x68, 0x61, 0x5f, 0x60,\n    0x5f, 0x61, 0x65, 0x69, 0x6a, 0x69, 0x65, 0x62, 0x69, 0x6c, 0x6e, 0x6d, 0x6c, 0x6c, 0x6c, 0x6c,\n    0x6c, 0x71, 0x74, 0x70, 0x6a, 0x65, 0x60, 0x5d, 0x62, 0x60, 0x5c, 0x5a, 0x5c, 0x62, 0x66, 0x67,\n    0x67, 0x6d, 0x68, 0x64, 0x63, 0x61, 0x85, 0xc4, 0xf4, 0xf8, 0xfd, 0xfe, 0xfb, 0xfa, 0xfc, 0xff,\n    0xfd, 0xfd, 0xfd, 0xfd, 0xfe, 0xfe, 0xfe, 0xff, 0xfe, 0xfe, 0xfe, 0xfe, 0xfd, 0xfd, 0xfd, 0xfd,\n    0xff, 0xf8, 0xe9, 0xd7, 0xca, 0xc4, 0xc6, 0xca, 0xc5, 0xc1, 0xbb, 0xb7, 0xb6, 0xb7, 0xb8, 0xb8,\n    0xb6, 0xb3, 0xb0, 0xb0, 0xaf, 0xaa, 0xa1, 0x99, 0x92, 0x89, 0x82, 0x7e, 0x78, 0x72, 0x74, 0x7c,\n    0x77, 0x73, 0x6e, 0x6b, 0x6b, 0x69, 0x65, 0x62, 0x5e, 0x5a, 0x55, 0x53, 0x53, 0x52, 0x50, 0x4e,\n    0x4b, 0x48, 0x44, 0x41, 0x41, 0x42, 0x42, 0x43, 0x38, 0x3b, 0x43, 0x4e, 0x5d, 0x6e, 0x7d, 0x86,\n    0x81, 0x84, 0x82, 0x7d, 0x7b, 0x7d, 0x7e, 0x7d, 0x7c, 0x7b, 0x79, 0x77, 0x75, 0x74, 0x74, 0x74,\n    0x74, 0x75, 0x74, 0x71, 0x6f, 0x6f, 0x6e, 0x6c, 0x71, 0x70, 0x6f, 0x6e, 0x6e, 0x6d, 0x6b, 0x69,\n    0x69, 0x63, 0x5c, 0x54, 0x4a, 0x3e, 0x37, 0x35, 0x35, 0x39, 0x3e, 0x41, 0x42, 0x43, 0x46, 0x48,\n    0x49, 0x47, 0x47, 0x4a, 0x4b, 0x4d, 0x56, 0x60, 0x6e, 0x78, 0x72, 0x65, 0x5f, 0x57, 0x56, 0x63,\n    0x7b, 0x6e, 0x5d, 0x5e, 0x79, 0x97, 0xad, 0xbc, 0xc1, 0xbf, 0xbd, 0xbd, 0xbc, 0xbc, 0xbe, 0xc0,\n    0xb0, 0x8e, 0x6d, 0x60, 0x5f, 0x5d, 0x5a, 0x5b, 0x5a, 0x60, 0x62, 0x5d, 0x58, 0x59, 0x5b, 0x5c,\n    0x5a, 0x58, 0x59, 0x61, 0x68, 0x68, 0x63, 0x5f, 0x63, 0x61, 0x63, 0x66, 0x64, 0x5d, 0x5a, 0x5d,\n    0x69, 0x73, 0x6f, 0x67, 0x75, 0x86, 0x84, 0x7a, 0x70, 0x74, 0x76, 0x70, 0x63, 0x57, 0x4f, 0x4d,\n    0x59, 0x61, 0x6b, 0x6c, 0x6c, 0x75, 0x7a, 0x73, 0x70, 0x6c, 0x68, 0x66, 0x65, 0x61, 0x60, 0x61,\n    0x64, 0x5d, 0x59, 0x59, 0x58, 0x54, 0x54, 0x59, 0x5b, 0x61, 0x65, 0x66, 0x6a, 0x6c, 0x65, 0x5b,\n    0x61, 0x5b, 0x55, 0x56, 0x5b, 0x60, 0x65, 0x67, 0x5d, 0x62, 0x71, 0x88, 0x9b, 0xa3, 0xa3, 0xa2,\n    0x9f, 0x9b, 0x95, 0x8f, 0x8c, 0x8a, 0x86, 0x83, 0x85, 0x85, 0x83, 0x82, 0x80, 0x7d, 0x79, 0x75,\n    0x72, 0x6a, 0x5b, 0x48, 0x37, 0x2b, 0x27, 0x27, 0x27, 0x25, 0x22, 0x21, 0x25, 0x2e, 0x36, 0x3a,\n    0x42, 0x40, 0x42, 0x4d, 0x55, 0x4e, 0x49, 0x50, 0x4c, 0x3c, 0x39, 0x45, 0x52, 0x59, 0x51, 0x42,\n    0x32, 0x3b, 0x42, 0x46, 0x4f, 0x57, 0x52, 0x46, 0x38, 0x29, 0x1d, 0x23, 0x38, 0x48, 0x48, 0x40,\n    0x3d, 0x53, 0x54, 0x40, 0x3c, 0x45, 0x44, 0x3d, 0x3e, 0x44, 0x56, 0x67, 0x6f, 0x6e, 0x5e, 0x48,\n    0x43, 0x4d, 0x60, 0x6f, 0x6b, 0x58, 0x48, 0x42, 0x46, 0x57, 0x56, 0x43, 0x33, 0x2a, 0x26, 0x26,\n    0x27, 0x29, 0x2e, 0x36, 0x3f, 0x49, 0x53, 0x5a, 0x5e, 0x63, 0x69, 0x73, 0x81, 0x8a, 0x84, 0x79,\n    0x75, 0x70, 0x6d, 0x67, 0x53, 0x39, 0x2f, 0x33, 0x38, 0x32, 0x32, 0x3d, 0x4e, 0x5f, 0x6e, 0x79,\n    0x5d, 0x5c, 0x5f, 0x63, 0x63, 0x5e, 0x5a, 0x59, 0x62, 0x66, 0x65, 0x60, 0x60, 0x67, 0x6b, 0x6a,\n    0x69, 0x6a, 0x68, 0x63, 0x61, 0x65, 0x6c, 0x70, 0x73, 0x76, 0x76, 0x70, 0x67, 0x65, 0x6b, 0x72,\n    0x77, 0x74, 0x70, 0x70, 0x70, 0x71, 0x73, 0x75, 0x76, 0x6c, 0x61, 0x5e, 0x60, 0x64, 0x68, 0x6c,\n    0x69, 0x67, 0x64, 0x64, 0x66, 0x67, 0x66, 0x63, 0x65, 0x6a, 0x69, 0x65, 0x5e, 0x52, 0x4e, 0x56,\n    0x5c, 0x61, 0x67, 0x6b, 0x6b, 0x66, 0x61, 0x5c, 0x61, 0x63, 0x68, 0x6e, 0x6f, 0x6d, 0x6b, 0x6c,\n    0x71, 0x75, 0x77, 0x73, 0x6a, 0x64, 0x67, 0x6f, 0x6e, 0x68, 0x5e, 0x52, 0x49, 0x46, 0x48, 0x4c,\n    0x55, 0x60, 0x6e, 0x76, 0x77, 0x70, 0x65, 0x5b, 0x4b, 0x56, 0x64, 0x6b, 0x69, 0x63, 0x5d, 0x5b,\n    0x5d, 0x5b, 0x59, 0x57, 0x57, 0x5c, 0x62, 0x67, 0x6d, 0x6c, 0x67, 0x63, 0x63, 0x65, 0x63, 0x5f,\n    0x5f, 0x5f, 0x5f, 0x5c, 0x55, 0x4f, 0x50, 0x54, 0x57, 0x55, 0x54, 0x53, 0x4b, 0x45, 0x49, 0x53,\n    0x60, 0x66, 0x68, 0x61, 0x57, 0x54, 0x56, 0x58, 0x58, 0x5a, 0x59, 0x54, 0x4c, 0x48, 0x49, 0x4c,\n    0x4f, 0x51, 0x52, 0x52, 0x4f, 0x4c, 0x4c, 0x4e, 0x4b, 0x49, 0x48, 0x4a, 0x4d, 0x4e, 0x50, 0x53,\n    0x56, 0x53, 0x51, 0x52, 0x50, 0x4d, 0x4d, 0x50, 0x55, 0x5c, 0x62, 0x63, 0x64, 0x67, 0x6b, 0x6d,\n    0x61, 0x61, 0x61, 0x5f, 0x5c, 0x5d, 0x64, 0x6c, 0x71, 0x76, 0x77, 0x70, 0x65, 0x5e, 0x5f, 0x64,\n    0x67, 0x69, 0x6d, 0x6f, 0x6d, 0x69, 0x64, 0x61, 0x66, 0x69, 0x6a, 0x68, 0x65, 0x64, 0x65, 0x66,\n    0x62, 0x66, 0x6a, 0x6c, 0x6c, 0x6a, 0x64, 0x5d, 0x5a, 0x59, 0x58, 0x59, 0x5d, 0x62, 0x64, 0x64,\n    0x68, 0x61, 0x6a, 0x6a, 0x5d, 0x76, 0xbb, 0xf0, 0xf8, 0xfb, 0xfd, 0xfe, 0xfc, 0xfb, 0xfd, 0xfe,\n    0xfd, 0xfd, 0xfe, 0xfe, 0xfe, 0xfe, 0xff, 0xff, 0xfe, 0xfe, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd,\n    0xf7, 0xfc, 0xfc, 0xef, 0xdb, 0xcb, 0xc5, 0xc6, 0xc0, 0xc1, 0xc1, 0xc0, 0xbd, 0xb8, 0xb4, 0xb2,\n    0xb7, 0xb5, 0xb2, 0xb1, 0xaf, 0xab, 0xa4, 0x9f, 0x96, 0x8d, 0x84, 0x7f, 0x78, 0x71, 0x72, 0x77,\n    0x77, 0x73, 0x6f, 0x6c, 0x6b, 0x69, 0x65, 0x62, 0x60, 0x5c, 0x58, 0x55, 0x54, 0x53, 0x50, 0x4d,\n    0x4d, 0x4b, 0x48, 0x46, 0x44, 0x42, 0x40, 0x3f, 0x43, 0x41, 0x3d, 0x3c, 0x42, 0x50, 0x63, 0x71,\n    0x7b, 0x80, 0x81, 0x7f, 0x7c, 0x7d, 0x7c, 0x7a, 0x76, 0x74, 0x73, 0x74, 0x76, 0x78, 0x78, 0x77,\n    0x72, 0x73, 0x73, 0x70, 0x6f, 0x70, 0x6f, 0x6c, 0x6f, 0x6d, 0x6a, 0x69, 0x69, 0x69, 0x69, 0x69,\n    0x5b, 0x52, 0x46, 0x3d, 0x38, 0x37, 0x3c, 0x42, 0x40, 0x42, 0x44, 0x45, 0x46, 0x46, 0x46, 0x46,\n    0x47, 0x47, 0x46, 0x47, 0x49, 0x4d, 0x53, 0x58, 0x64, 0x74, 0x78, 0x72, 0x6d, 0x63, 0x5a, 0x5d,\n    0x61, 0x71, 0x7c, 0x7f, 0x81, 0x89, 0xa1, 0xbd, 0xc0, 0xc0, 0xc1, 0xc3, 0xc2, 0xc2, 0xc2, 0xc3,\n    0xb9, 0x9f, 0x7f, 0x6a, 0x63, 0x61, 0x5e, 0x5b, 0x62, 0x67, 0x66, 0x5e, 0x56, 0x55, 0x57, 0x59,\n    0x55, 0x53, 0x57, 0x60, 0x67, 0x63, 0x5a, 0x52, 0x60, 0x61, 0x63, 0x65, 0x62, 0x5e, 0x5d, 0x5e,\n    0x54, 0x64, 0x6a, 0x62, 0x5e, 0x61, 0x6d, 0x7c, 0x78, 0x7f, 0x81, 0x7c, 0x77, 0x74, 0x6c, 0x62,\n    0x4f, 0x50, 0x56, 0x59, 0x58, 0x62, 0x6f, 0x74, 0x70, 0x6b, 0x68, 0x67, 0x67, 0x65, 0x65, 0x67,\n    0x61, 0x5e, 0x5a, 0x58, 0x55, 0x55, 0x5a, 0x60, 0x62, 0x64, 0x67, 0x6a, 0x6e, 0x6d, 0x67, 0x5f,\n    0x5b, 0x56, 0x50, 0x4f, 0x53, 0x59, 0x5e, 0x61, 0x5e, 0x6c, 0x81, 0x94, 0xa0, 0xa4, 0xa1, 0x9e,\n    0x9b, 0x97, 0x90, 0x89, 0x86, 0x85, 0x84, 0x83, 0x83, 0x81, 0x80, 0x7f, 0x7e, 0x7c, 0x7a, 0x78,\n    0x74, 0x6b, 0x5b, 0x47, 0x35, 0x2a, 0x27, 0x28, 0x27, 0x27, 0x26, 0x25, 0x26, 0x2b, 0x35, 0x3c,\n    0x30, 0x34, 0x3e, 0x4d, 0x54, 0x4e, 0x4a, 0x50, 0x48, 0x39, 0x36, 0x42, 0x4d, 0x52, 0x4a, 0x3b,\n    0x3d, 0x3f, 0x40, 0x46, 0x55, 0x5f, 0x55, 0x43, 0x38, 0x2b, 0x1d, 0x1f, 0x2d, 0x3a, 0x3d, 0x3a,\n    0x42, 0x4e, 0x49, 0x3b, 0x42, 0x4f, 0x4d, 0x43, 0x45, 0x49, 0x58, 0x67, 0x6f, 0x6f, 0x62, 0x4e,\n    0x43, 0x52, 0x62, 0x6a, 0x6b, 0x6b, 0x6d, 0x6f, 0x72, 0x6b, 0x55, 0x42, 0x41, 0x41, 0x3c, 0x38,\n    0x2f, 0x2e, 0x31, 0x3d, 0x4c, 0x58, 0x5e, 0x61, 0x62, 0x6a, 0x73, 0x77, 0x72, 0x64, 0x4e, 0x3d,\n    0x42, 0x48, 0x49, 0x3e, 0x2c, 0x27, 0x35, 0x47, 0x3f, 0x40, 0x45, 0x4f, 0x57, 0x5a, 0x5c, 0x5e,\n    0x72, 0x6b, 0x63, 0x5e, 0x5b, 0x57, 0x54, 0x54, 0x5a, 0x5e, 0x5e, 0x58, 0x56, 0x5b, 0x60, 0x62,\n    0x6b, 0x71, 0x74, 0x6f, 0x69, 0x69, 0x6d, 0x71, 0x76, 0x75, 0x72, 0x6b, 0x64, 0x63, 0x68, 0x6e,\n    0x70, 0x6c, 0x69, 0x68, 0x66, 0x66, 0x69, 0x6e, 0x6d, 0x6a, 0x63, 0x5d, 0x5d, 0x61, 0x64, 0x64,\n    0x5f, 0x60, 0x63, 0x6b, 0x72, 0x74, 0x71, 0x6c, 0x75, 0x75, 0x6d, 0x62, 0x5a, 0x52, 0x52, 0x5b,\n    0x69, 0x6a, 0x6d, 0x71, 0x73, 0x6f, 0x66, 0x5e, 0x66, 0x66, 0x69, 0x6c, 0x6c, 0x6c, 0x6f, 0x73,\n    0x6f, 0x76, 0x78, 0x6f, 0x63, 0x5c, 0x5b, 0x5c, 0x60, 0x65, 0x68, 0x64, 0x5a, 0x52, 0x4f, 0x4f,\n    0x5e, 0x60, 0x66, 0x6e, 0x73, 0x74, 0x73, 0x73, 0x6b, 0x6d, 0x6d, 0x6b, 0x67, 0x66, 0x68, 0x6b,\n    0x55, 0x56, 0x58, 0x5b, 0x5e, 0x62, 0x68, 0x6b, 0x72, 0x6d, 0x67, 0x63, 0x66, 0x6a, 0x6a, 0x68,\n    0x63, 0x5f, 0x5e, 0x5f, 0x59, 0x50, 0x50, 0x56, 0x52, 0x4a, 0x47, 0x47, 0x41, 0x3b, 0x42, 0x50,\n    0x55, 0x61, 0x67, 0x63, 0x60, 0x65, 0x6b, 0x6d, 0x68, 0x66, 0x61, 0x5c, 0x56, 0x52, 0x50, 0x50,\n    0x4a, 0x48, 0x48, 0x4b, 0x4b, 0x48, 0x48, 0x4b, 0x48, 0x43, 0x41, 0x45, 0x4b, 0x50, 0x54, 0x57,\n    0x5b, 0x57, 0x54, 0x54, 0x53, 0x52, 0x53, 0x56, 0x62, 0x67, 0x69, 0x64, 0x60, 0x60, 0x63, 0x66,\n    0x64, 0x61, 0x61, 0x60, 0x5a, 0x57, 0x61, 0x71, 0x69, 0x70, 0x73, 0x6d, 0x62, 0x5c, 0x62, 0x6a,\n    0x64, 0x69, 0x6f, 0x72, 0x70, 0x6c, 0x68, 0x66, 0x6d, 0x6e, 0x6c, 0x67, 0x60, 0x5c, 0x5e, 0x61,\n    0x67, 0x67, 0x68, 0x6c, 0x72, 0x75, 0x71, 0x6b, 0x63, 0x5f, 0x5c, 0x5c, 0x5e, 0x61, 0x64, 0x65,\n    0x60, 0x6b, 0x65, 0x65, 0x8a, 0xbf, 0xe8, 0xfe, 0xfc, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd,\n    0xfe, 0xfe, 0xfe, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfe, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd,\n    0xfc, 0xfe, 0xff, 0xfe, 0xf5, 0xe5, 0xd2, 0xc4, 0xc3, 0xc3, 0xc2, 0xbf, 0xbb, 0xb7, 0xb5, 0xb5,\n    0xb5, 0xb4, 0xb2, 0xb1, 0xaf, 0xac, 0xa8, 0xa4, 0x9b, 0x93, 0x8a, 0x83, 0x7a, 0x71, 0x70, 0x74,\n    0x76, 0x73, 0x6f, 0x6d, 0x6c, 0x69, 0x65, 0x62, 0x62, 0x5f, 0x5b, 0x58, 0x57, 0x54, 0x50, 0x4d,\n    0x4d, 0x4c, 0x4b, 0x4a, 0x48, 0x45, 0x41, 0x3e, 0x3f, 0x40, 0x3f, 0x3a, 0x37, 0x3a, 0x43, 0x4b,\n    0x5f, 0x6a, 0x78, 0x7f, 0x81, 0x80, 0x7e, 0x7b, 0x7d, 0x79, 0x76, 0x76, 0x78, 0x79, 0x76, 0x73,\n    0x76, 0x78, 0x77, 0x73, 0x70, 0x6e, 0x6b, 0x67, 0x6d, 0x6d, 0x6f, 0x6f, 0x6b, 0x64, 0x5c, 0x56,\n    0x45, 0x41, 0x3d, 0x3c, 0x3c, 0x3e, 0x42, 0x47, 0x48, 0x48, 0x48, 0x48, 0x49, 0x49, 0x47, 0x46,\n    0x47, 0x49, 0x47, 0x45, 0x49, 0x50, 0x52, 0x4f, 0x5b, 0x6f, 0x7b, 0x7a, 0x77, 0x6e, 0x60, 0x59,\n    0x4b, 0x5d, 0x70, 0x7b, 0x7e, 0x80, 0x95, 0xb2, 0xbd, 0xc0, 0xc2, 0xc3, 0xc4, 0xc4, 0xc5, 0xc5,\n    0xc0, 0xb3, 0x99, 0x7d, 0x6d, 0x67, 0x62, 0x5d, 0x5e, 0x61, 0x60, 0x5a, 0x54, 0x54, 0x57, 0x5a,\n    0x55, 0x51, 0x51, 0x57, 0x5d, 0x5d, 0x59, 0x56, 0x5d, 0x62, 0x65, 0x62, 0x5e, 0x5d, 0x5c, 0x5b,\n    0x65, 0x6a, 0x6a, 0x66, 0x5a, 0x48, 0x43, 0x4d, 0x5e, 0x72, 0x86, 0x91, 0x9b, 0xa0, 0x94, 0x81,\n    0x73, 0x57, 0x42, 0x42, 0x4c, 0x5d, 0x6c, 0x70, 0x75, 0x70, 0x6a, 0x67, 0x65, 0x63, 0x63, 0x65,\n    0x6a, 0x6a, 0x64, 0x5b, 0x54, 0x56, 0x5b, 0x5f, 0x63, 0x61, 0x63, 0x69, 0x6c, 0x68, 0x62, 0x5e,\n    0x57, 0x55, 0x52, 0x4f, 0x4e, 0x52, 0x58, 0x5c, 0x6b, 0x7e, 0x93, 0x9d, 0xa0, 0xa0, 0x9d, 0x99,\n    0x94, 0x8e, 0x87, 0x83, 0x82, 0x83, 0x84, 0x85, 0x7e, 0x7d, 0x7c, 0x7b, 0x7c, 0x7c, 0x7b, 0x7a,\n    0x74, 0x6a, 0x59, 0x44, 0x32, 0x28, 0x26, 0x27, 0x22, 0x23, 0x25, 0x26, 0x26, 0x2a, 0x35, 0x3f,\n    0x3c, 0x3e, 0x45, 0x4e, 0x4e, 0x48, 0x49, 0x51, 0x41, 0x36, 0x36, 0x43, 0x4d, 0x50, 0x47, 0x38,\n    0x3c, 0x3e, 0x42, 0x4b, 0x5c, 0x65, 0x5b, 0x49, 0x3c, 0x2f, 0x20, 0x1c, 0x22, 0x2b, 0x30, 0x30,\n    0x41, 0x50, 0x4e, 0x42, 0x44, 0x4f, 0x56, 0x58, 0x49, 0x4e, 0x5f, 0x6f, 0x73, 0x6c, 0x58, 0x40,\n    0x33, 0x4d, 0x67, 0x6f, 0x6e, 0x6f, 0x6e, 0x6b, 0x6f, 0x5f, 0x48, 0x44, 0x50, 0x52, 0x44, 0x39,\n    0x35, 0x31, 0x33, 0x40, 0x55, 0x63, 0x65, 0x61, 0x5c, 0x61, 0x67, 0x68, 0x5e, 0x4d, 0x40, 0x3b,\n    0x34, 0x35, 0x31, 0x28, 0x24, 0x25, 0x25, 0x22, 0x28, 0x2f, 0x3d, 0x4b, 0x51, 0x4f, 0x4a, 0x47,\n    0x64, 0x5c, 0x54, 0x50, 0x51, 0x54, 0x56, 0x57, 0x59, 0x5a, 0x57, 0x4f, 0x4b, 0x50, 0x58, 0x5d,\n    0x69, 0x71, 0x77, 0x77, 0x73, 0x71, 0x70, 0x6f, 0x6f, 0x6e, 0x6c, 0x68, 0x64, 0x64, 0x66, 0x69,\n    0x68, 0x67, 0x67, 0x69, 0x66, 0x62, 0x63, 0x67, 0x6d, 0x6e, 0x69, 0x60, 0x5d, 0x61, 0x64, 0x62,\n    0x59, 0x5a, 0x60, 0x6c, 0x76, 0x77, 0x73, 0x6f, 0x65, 0x64, 0x5c, 0x57, 0x5b, 0x5f, 0x64, 0x6d,\n    0x67, 0x62, 0x5e, 0x5e, 0x63, 0x69, 0x6c, 0x6c, 0x67, 0x67, 0x69, 0x6b, 0x69, 0x66, 0x68, 0x6c,\n    0x70, 0x75, 0x75, 0x6b, 0x62, 0x5d, 0x5a, 0x55, 0x55, 0x63, 0x73, 0x78, 0x73, 0x6a, 0x62, 0x5e,\n    0x6c, 0x69, 0x6b, 0x71, 0x74, 0x73, 0x75, 0x7a, 0x85, 0x80, 0x7a, 0x76, 0x70, 0x65, 0x55, 0x48,\n    0x49, 0x4e, 0x56, 0x5f, 0x67, 0x6d, 0x72, 0x75, 0x6b, 0x68, 0x65, 0x68, 0x6f, 0x74, 0x74, 0x71,\n    0x65, 0x60, 0x5c, 0x5b, 0x58, 0x54, 0x50, 0x50, 0x52, 0x48, 0x43, 0x45, 0x42, 0x3b, 0x40, 0x4c,\n    0x5f, 0x61, 0x5d, 0x57, 0x5e, 0x6e, 0x74, 0x6e, 0x6c, 0x68, 0x61, 0x5b, 0x57, 0x55, 0x53, 0x51,\n    0x58, 0x51, 0x4f, 0x55, 0x57, 0x51, 0x4c, 0x4c, 0x49, 0x44, 0x41, 0x43, 0x48, 0x4d, 0x53, 0x58,\n    0x58, 0x53, 0x4f, 0x4d, 0x4e, 0x51, 0x56, 0x59, 0x6a, 0x6c, 0x6a, 0x63, 0x5d, 0x5c, 0x5d, 0x5e,\n    0x5d, 0x66, 0x73, 0x7a, 0x74, 0x68, 0x64, 0x66, 0x69, 0x6e, 0x70, 0x6b, 0x61, 0x5d, 0x61, 0x67,\n    0x57, 0x5f, 0x68, 0x6e, 0x6f, 0x6e, 0x6d, 0x6e, 0x6e, 0x6d, 0x6b, 0x64, 0x5d, 0x5a, 0x60, 0x68,\n    0x70, 0x6d, 0x68, 0x67, 0x6c, 0x73, 0x74, 0x72, 0x64, 0x5f, 0x5a, 0x59, 0x5b, 0x5e, 0x63, 0x68,\n    0x68, 0x6f, 0x64, 0x7a, 0xc2, 0xf5, 0xfd, 0xff, 0xfe, 0xfd, 0xfb, 0xfc, 0xfd, 0xfe, 0xfe, 0xfd,\n    0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfd, 0xfd,\n    0xff, 0xfe, 0xfc, 0xff, 0xff, 0xf9, 0xe8, 0xd9, 0xc8, 0xc4, 0xbf, 0xbc, 0xba, 0xb9, 0xb7, 0xb6,\n    0xb0, 0xb0, 0xb0, 0xb0, 0xae, 0xac, 0xa9, 0xa8, 0xa0, 0x9a, 0x91, 0x89, 0x7f, 0x76, 0x73, 0x75,\n    0x74, 0x72, 0x70, 0x6e, 0x6d, 0x6a, 0x66, 0x64, 0x63, 0x61, 0x5e, 0x5c, 0x59, 0x56, 0x52, 0x4f,\n    0x4d, 0x4c, 0x4b, 0x4b, 0x4a, 0x47, 0x44, 0x41, 0x3a, 0x3e, 0x42, 0x42, 0x3d, 0x38, 0x36, 0x35,\n    0x3f, 0x4a, 0x59, 0x66, 0x6e, 0x75, 0x7a, 0x7d, 0x78, 0x77, 0x76, 0x77, 0x79, 0x7a, 0x79, 0x78,\n    0x6e, 0x71, 0x73, 0x72, 0x72, 0x72, 0x71, 0x6e, 0x6d, 0x6d, 0x6c, 0x68, 0x61, 0x55, 0x48, 0x40,\n    0x3d, 0x3e, 0x42, 0x47, 0x49, 0x47, 0x46, 0x46, 0x48, 0x47, 0x46, 0x47, 0x49, 0x4a, 0x48, 0x46,\n    0x48, 0x4b, 0x49, 0x46, 0x4d, 0x57, 0x56, 0x4b, 0x56, 0x68, 0x76, 0x78, 0x77, 0x74, 0x69, 0x5e,\n    0x4c, 0x4c, 0x4e, 0x59, 0x65, 0x70, 0x89, 0xa7, 0xba, 0xbe, 0xc0, 0xbf, 0xbf, 0xc1, 0xc4, 0xc5,\n    0xc2, 0xbd, 0xae, 0x95, 0x7c, 0x6a, 0x63, 0x61, 0x5c, 0x5c, 0x5c, 0x59, 0x57, 0x56, 0x58, 0x59,\n    0x50, 0x50, 0x53, 0x5a, 0x5d, 0x5e, 0x5e, 0x60, 0x62, 0x69, 0x6b, 0x64, 0x5e, 0x5d, 0x5b, 0x58,\n    0x5d, 0x5a, 0x59, 0x60, 0x63, 0x55, 0x47, 0x47, 0x4c, 0x5e, 0x72, 0x7f, 0x89, 0x8f, 0x8c, 0x83,\n    0x7a, 0x77, 0x78, 0x75, 0x6a, 0x69, 0x71, 0x75, 0x75, 0x6f, 0x68, 0x65, 0x63, 0x61, 0x62, 0x64,\n    0x72, 0x72, 0x6b, 0x5f, 0x58, 0x5b, 0x5d, 0x5d, 0x5d, 0x59, 0x5a, 0x62, 0x65, 0x5f, 0x5a, 0x58,\n    0x5a, 0x5d, 0x5b, 0x54, 0x4f, 0x53, 0x5e, 0x67, 0x81, 0x91, 0x9d, 0x9c, 0x99, 0x99, 0x97, 0x93,\n    0x90, 0x87, 0x7f, 0x7e, 0x81, 0x82, 0x81, 0x7f, 0x78, 0x77, 0x76, 0x77, 0x78, 0x79, 0x78, 0x78,\n    0x70, 0x67, 0x56, 0x42, 0x30, 0x26, 0x23, 0x24, 0x23, 0x24, 0x24, 0x25, 0x27, 0x2f, 0x3b, 0x45,\n    0x43, 0x3c, 0x3c, 0x3e, 0x3a, 0x3b, 0x45, 0x4f, 0x48, 0x40, 0x43, 0x4f, 0x54, 0x51, 0x44, 0x35,\n    0x32, 0x3c, 0x48, 0x52, 0x5b, 0x5e, 0x55, 0x49, 0x41, 0x34, 0x26, 0x21, 0x25, 0x2a, 0x2d, 0x2f,\n    0x44, 0x53, 0x53, 0x48, 0x46, 0x4f, 0x59, 0x61, 0x57, 0x56, 0x5e, 0x68, 0x6a, 0x64, 0x55, 0x42,\n    0x43, 0x56, 0x68, 0x6d, 0x6a, 0x68, 0x68, 0x69, 0x68, 0x52, 0x38, 0x34, 0x42, 0x45, 0x3f, 0x3e,\n    0x39, 0x35, 0x35, 0x41, 0x56, 0x65, 0x67, 0x61, 0x69, 0x6a, 0x6f, 0x73, 0x71, 0x6d, 0x71, 0x79,\n    0x8f, 0x7a, 0x5c, 0x49, 0x43, 0x3e, 0x2f, 0x1e, 0x1b, 0x24, 0x35, 0x47, 0x54, 0x57, 0x54, 0x50,\n    0x5f, 0x5f, 0x5f, 0x62, 0x67, 0x6a, 0x68, 0x65, 0x69, 0x68, 0x61, 0x56, 0x50, 0x52, 0x5a, 0x60,\n    0x65, 0x68, 0x6c, 0x6d, 0x6f, 0x70, 0x6f, 0x6c, 0x6a, 0x6c, 0x6d, 0x6e, 0x6f, 0x6f, 0x70, 0x71,\n    0x69, 0x6a, 0x6f, 0x76, 0x73, 0x6a, 0x66, 0x68, 0x6c, 0x70, 0x6f, 0x68, 0x63, 0x62, 0x5f, 0x5a,\n    0x5b, 0x5a, 0x5e, 0x68, 0x6f, 0x6f, 0x6b, 0x69, 0x5b, 0x59, 0x52, 0x53, 0x5f, 0x67, 0x6a, 0x6e,\n    0x68, 0x69, 0x6a, 0x6b, 0x6a, 0x67, 0x63, 0x60, 0x5b, 0x5d, 0x61, 0x65, 0x64, 0x5f, 0x5d, 0x5e,\n    0x73, 0x75, 0x73, 0x6d, 0x69, 0x68, 0x63, 0x5c, 0x5f, 0x66, 0x6c, 0x6d, 0x6d, 0x6f, 0x70, 0x6e,\n    0x71, 0x70, 0x73, 0x78, 0x75, 0x6e, 0x6c, 0x70, 0x6f, 0x6d, 0x6e, 0x72, 0x76, 0x74, 0x6b, 0x63,\n    0x61, 0x65, 0x6b, 0x6f, 0x72, 0x72, 0x73, 0x73, 0x70, 0x6e, 0x6e, 0x72, 0x76, 0x73, 0x6c, 0x65,\n    0x62, 0x61, 0x5a, 0x55, 0x59, 0x5e, 0x58, 0x4d, 0x4f, 0x47, 0x46, 0x4d, 0x4d, 0x48, 0x49, 0x51,\n    0x6b, 0x67, 0x5c, 0x54, 0x5d, 0x6f, 0x73, 0x6b, 0x67, 0x6b, 0x6c, 0x65, 0x5a, 0x54, 0x56, 0x5c,\n    0x63, 0x5b, 0x57, 0x5b, 0x5b, 0x53, 0x48, 0x42, 0x4b, 0x48, 0x44, 0x43, 0x43, 0x45, 0x4b, 0x52,\n    0x58, 0x56, 0x53, 0x52, 0x55, 0x58, 0x5b, 0x5b, 0x5f, 0x5f, 0x5d, 0x5b, 0x5b, 0x5e, 0x5e, 0x5d,\n    0x5d, 0x65, 0x6a, 0x68, 0x65, 0x66, 0x68, 0x67, 0x6f, 0x6f, 0x6e, 0x68, 0x61, 0x5c, 0x5a, 0x5a,\n    0x54, 0x5a, 0x62, 0x67, 0x68, 0x68, 0x69, 0x6b, 0x65, 0x63, 0x60, 0x5c, 0x59, 0x5a, 0x65, 0x70,\n    0x6f, 0x6d, 0x68, 0x62, 0x60, 0x64, 0x67, 0x68, 0x62, 0x61, 0x62, 0x65, 0x65, 0x64, 0x66, 0x6a,\n    0x69, 0x6e, 0x99, 0xd2, 0xee, 0xf9, 0xfe, 0xfc, 0xfd, 0xfb, 0xfa, 0xfb, 0xfe, 0xff, 0xff, 0xfd,\n    0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfe, 0xfe,\n    0xfd, 0xfe, 0xff, 0xff, 0xfe, 0xfb, 0xf8, 0xf7, 0xd3, 0xcc, 0xc4, 0xc0, 0xbe, 0xbc, 0xb6, 0xb1,\n    0xad, 0xae, 0xaf, 0xb0, 0xb0, 0xae, 0xac, 0xaa, 0xa3, 0x9e, 0x97, 0x8f, 0x85, 0x7c, 0x78, 0x78,\n    0x75, 0x73, 0x71, 0x6f, 0x6d, 0x6a, 0x68, 0x66, 0x63, 0x62, 0x60, 0x5e, 0x5c, 0x59, 0x56, 0x54,\n    0x51, 0x4f, 0x4d, 0x4b, 0x49, 0x48, 0x46, 0x44, 0x42, 0x41, 0x40, 0x3f, 0x3e, 0x3c, 0x3a, 0x38,\n    0x35, 0x36, 0x3a, 0x3f, 0x47, 0x52, 0x61, 0x6c, 0x78, 0x79, 0x7a, 0x79, 0x76, 0x75, 0x75, 0x76,\n    0x79, 0x7b, 0x7a, 0x77, 0x74, 0x71, 0x6d, 0x69, 0x65, 0x5f, 0x55, 0x4d, 0x46, 0x42, 0x3f, 0x3d,\n    0x43, 0x42, 0x42, 0x45, 0x46, 0x46, 0x47, 0x49, 0x47, 0x46, 0x45, 0x46, 0x48, 0x49, 0x47, 0x46,\n    0x48, 0x4b, 0x4a, 0x48, 0x51, 0x5d, 0x59, 0x4c, 0x4f, 0x5e, 0x6f, 0x76, 0x78, 0x7a, 0x76, 0x6c,\n    0x5d, 0x57, 0x4f, 0x4d, 0x52, 0x5e, 0x7e, 0xa4, 0xb5, 0xbb, 0xc0, 0xc0, 0xc0, 0xc1, 0xc2, 0xc1,\n    0xc1, 0xc0, 0xbc, 0xad, 0x8e, 0x6f, 0x62, 0x63, 0x65, 0x63, 0x61, 0x60, 0x5d, 0x59, 0x55, 0x53,\n    0x47, 0x51, 0x5f, 0x69, 0x68, 0x62, 0x5f, 0x60, 0x68, 0x6e, 0x6f, 0x68, 0x62, 0x60, 0x5c, 0x58,\n    0x57, 0x5e, 0x60, 0x60, 0x5e, 0x54, 0x4d, 0x4f, 0x49, 0x56, 0x69, 0x76, 0x78, 0x76, 0x79, 0x7e,\n    0x8f, 0x91, 0x90, 0x84, 0x78, 0x7e, 0x89, 0x8a, 0x6f, 0x6a, 0x65, 0x64, 0x64, 0x65, 0x68, 0x6b,\n    0x6b, 0x6a, 0x65, 0x5e, 0x5e, 0x63, 0x63, 0x5e, 0x5b, 0x57, 0x59, 0x60, 0x63, 0x5e, 0x58, 0x57,\n    0x5a, 0x5e, 0x5a, 0x4f, 0x4a, 0x56, 0x6c, 0x7d, 0x92, 0x9b, 0x9e, 0x99, 0x96, 0x97, 0x94, 0x8d,\n    0x8d, 0x82, 0x7a, 0x7e, 0x84, 0x84, 0x7e, 0x79, 0x76, 0x75, 0x74, 0x74, 0x75, 0x75, 0x73, 0x72,\n    0x6d, 0x64, 0x54, 0x41, 0x30, 0x26, 0x23, 0x24, 0x27, 0x27, 0x23, 0x1f, 0x26, 0x36, 0x45, 0x4c,\n    0x3a, 0x32, 0x34, 0x3a, 0x3a, 0x42, 0x4f, 0x54, 0x4f, 0x49, 0x4e, 0x57, 0x56, 0x4c, 0x3c, 0x2b,\n    0x31, 0x3d, 0x4a, 0x53, 0x58, 0x55, 0x4a, 0x3e, 0x3d, 0x30, 0x26, 0x27, 0x2f, 0x33, 0x34, 0x34,\n    0x4b, 0x51, 0x4b, 0x43, 0x4c, 0x58, 0x5a, 0x59, 0x55, 0x54, 0x5f, 0x6d, 0x6e, 0x66, 0x53, 0x3f,\n    0x42, 0x4d, 0x5d, 0x6a, 0x6b, 0x65, 0x64, 0x67, 0x60, 0x4c, 0x34, 0x31, 0x3b, 0x38, 0x2e, 0x2d,\n    0x3a, 0x38, 0x39, 0x42, 0x55, 0x66, 0x6b, 0x68, 0x5f, 0x62, 0x6a, 0x74, 0x75, 0x6e, 0x6b, 0x6c,\n    0x6e, 0x61, 0x52, 0x44, 0x37, 0x28, 0x1e, 0x19, 0x24, 0x2b, 0x37, 0x47, 0x56, 0x5c, 0x5a, 0x54,\n    0x74, 0x73, 0x70, 0x6e, 0x6f, 0x71, 0x6f, 0x6c, 0x6f, 0x6e, 0x69, 0x63, 0x5d, 0x5e, 0x63, 0x68,\n    0x64, 0x61, 0x5e, 0x5d, 0x62, 0x68, 0x69, 0x67, 0x69, 0x6a, 0x6c, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d,\n    0x6b, 0x6c, 0x74, 0x7e, 0x7d, 0x71, 0x69, 0x69, 0x6f, 0x74, 0x77, 0x75, 0x70, 0x68, 0x5f, 0x58,\n    0x5e, 0x5b, 0x5f, 0x67, 0x6d, 0x6c, 0x6c, 0x6e, 0x6f, 0x6d, 0x66, 0x65, 0x6f, 0x73, 0x6e, 0x6c,\n    0x71, 0x75, 0x7a, 0x79, 0x74, 0x6c, 0x65, 0x61, 0x60, 0x63, 0x6b, 0x72, 0x74, 0x70, 0x6b, 0x69,\n    0x70, 0x70, 0x6f, 0x6d, 0x6c, 0x6a, 0x65, 0x5f, 0x69, 0x6b, 0x69, 0x65, 0x65, 0x6b, 0x6f, 0x6e,\n    0x6b, 0x69, 0x68, 0x69, 0x6a, 0x6b, 0x6e, 0x71, 0x84, 0x7d, 0x71, 0x65, 0x5f, 0x63, 0x6e, 0x78,\n    0x7c, 0x83, 0x8d, 0x92, 0x8f, 0x85, 0x79, 0x71, 0x7e, 0x7a, 0x79, 0x7b, 0x79, 0x70, 0x64, 0x5d,\n    0x5a, 0x5c, 0x58, 0x54, 0x5e, 0x6c, 0x69, 0x5a, 0x4b, 0x48, 0x49, 0x4f, 0x51, 0x4e, 0x4c, 0x4d,\n    0x56, 0x5a, 0x5a, 0x59, 0x60, 0x6d, 0x74, 0x73, 0x69, 0x68, 0x67, 0x64, 0x61, 0x5f, 0x5e, 0x5e,\n    0x5c, 0x59, 0x55, 0x53, 0x50, 0x4a, 0x42, 0x3c, 0x43, 0x41, 0x41, 0x41, 0x41, 0x43, 0x4a, 0x52,\n    0x53, 0x54, 0x55, 0x56, 0x59, 0x5a, 0x57, 0x52, 0x5b, 0x5b, 0x5a, 0x58, 0x5a, 0x5b, 0x58, 0x53,\n    0x5e, 0x61, 0x5b, 0x50, 0x4e, 0x5b, 0x68, 0x6d, 0x6a, 0x66, 0x62, 0x5e, 0x5c, 0x5a, 0x57, 0x54,\n    0x5c, 0x5e, 0x61, 0x61, 0x60, 0x5e, 0x5e, 0x5e, 0x62, 0x5e, 0x5b, 0x59, 0x57, 0x58, 0x61, 0x6d,\n    0x71, 0x73, 0x71, 0x6a, 0x64, 0x63, 0x64, 0x65, 0x6a, 0x6c, 0x72, 0x75, 0x6f, 0x66, 0x63, 0x66,\n    0x85, 0xb2, 0xe4, 0xff, 0xff, 0xfc, 0xf7, 0xf7, 0xfd, 0xfb, 0xfb, 0xfc, 0xfe, 0xff, 0xff, 0xfd,\n    0xff, 0xff, 0xff, 0xff, 0xfe, 0xfe, 0xfe, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfe, 0xfe, 0xfe,\n    0xfe, 0xfd, 0xfc, 0xfd, 0xff, 0xff, 0xfe, 0xfd, 0xef, 0xe2, 0xd0, 0xc3, 0xbe, 0xbc, 0xbb, 0xb9,\n    0xb1, 0xb1, 0xb1, 0xb1, 0xb2, 0xb1, 0xae, 0xac, 0xa4, 0xa2, 0x9c, 0x95, 0x8c, 0x84, 0x7f, 0x7e,\n    0x7a, 0x78, 0x75, 0x72, 0x6e, 0x6b, 0x69, 0x68, 0x64, 0x63, 0x61, 0x5f, 0x5d, 0x5b, 0x59, 0x58,\n    0x58, 0x55, 0x50, 0x4c, 0x4a, 0x48, 0x46, 0x45, 0x44, 0x42, 0x40, 0x3f, 0x40, 0x40, 0x3c, 0x39,\n    0x38, 0x35, 0x34, 0x35, 0x36, 0x39, 0x3f, 0x45, 0x44, 0x4a, 0x53, 0x5a, 0x60, 0x66, 0x6e, 0x74,\n    0x6b, 0x6c, 0x69, 0x63, 0x5e, 0x5a, 0x55, 0x50, 0x4b, 0x48, 0x42, 0x3f, 0x3e, 0x40, 0x41, 0x42,\n    0x44, 0x43, 0x43, 0x45, 0x46, 0x45, 0x46, 0x49, 0x4a, 0x49, 0x48, 0x48, 0x48, 0x48, 0x47, 0x46,\n    0x48, 0x4a, 0x49, 0x49, 0x54, 0x60, 0x5b, 0x4e, 0x46, 0x52, 0x68, 0x78, 0x7c, 0x80, 0x81, 0x7a,\n    0x6f, 0x6a, 0x5f, 0x5a, 0x5e, 0x67, 0x7f, 0x9d, 0xae, 0xb9, 0xc2, 0xc4, 0xc3, 0xc3, 0xc0, 0xbc,\n    0xc2, 0xc1, 0xc2, 0xbc, 0xa1, 0x7d, 0x68, 0x64, 0x66, 0x65, 0x65, 0x64, 0x60, 0x59, 0x55, 0x54,\n    0x53, 0x5b, 0x65, 0x6a, 0x66, 0x60, 0x60, 0x64, 0x67, 0x6b, 0x6b, 0x68, 0x63, 0x5e, 0x58, 0x54,\n    0x5e, 0x6c, 0x73, 0x70, 0x6a, 0x5d, 0x51, 0x4e, 0x54, 0x56, 0x5b, 0x5f, 0x5c, 0x5a, 0x65, 0x75,\n    0x7a, 0x7b, 0x7e, 0x81, 0x85, 0x8b, 0x7f, 0x66, 0x73, 0x6d, 0x68, 0x67, 0x68, 0x68, 0x6a, 0x6e,\n    0x67, 0x64, 0x60, 0x5e, 0x60, 0x63, 0x60, 0x5c, 0x60, 0x5e, 0x60, 0x65, 0x67, 0x64, 0x5d, 0x59,\n    0x52, 0x52, 0x4b, 0x40, 0x43, 0x5a, 0x7a, 0x8f, 0x98, 0x9b, 0x9b, 0x98, 0x97, 0x97, 0x90, 0x88,\n    0x83, 0x7b, 0x79, 0x82, 0x8c, 0x8d, 0x89, 0x86, 0x7d, 0x7b, 0x79, 0x77, 0x75, 0x74, 0x72, 0x71,\n    0x6a, 0x61, 0x51, 0x3f, 0x2e, 0x26, 0x25, 0x26, 0x1a, 0x20, 0x1f, 0x1a, 0x23, 0x38, 0x44, 0x43,\n    0x3a, 0x35, 0x41, 0x4b, 0x47, 0x49, 0x4f, 0x49, 0x41, 0x3e, 0x46, 0x50, 0x4d, 0x44, 0x37, 0x29,\n    0x37, 0x3c, 0x45, 0x4f, 0x56, 0x55, 0x49, 0x3b, 0x2e, 0x24, 0x1e, 0x26, 0x32, 0x37, 0x37, 0x36,\n    0x49, 0x53, 0x4e, 0x44, 0x4c, 0x59, 0x5c, 0x59, 0x55, 0x52, 0x5c, 0x68, 0x69, 0x5f, 0x4d, 0x3a,\n    0x36, 0x3f, 0x52, 0x66, 0x6a, 0x61, 0x5a, 0x5a, 0x4f, 0x44, 0x3b, 0x46, 0x5a, 0x5c, 0x4f, 0x48,\n    0x34, 0x37, 0x3a, 0x42, 0x52, 0x65, 0x6e, 0x6e, 0x67, 0x6b, 0x74, 0x7c, 0x7c, 0x70, 0x62, 0x58,\n    0x4e, 0x4f, 0x53, 0x52, 0x48, 0x38, 0x31, 0x31, 0x29, 0x2f, 0x39, 0x45, 0x51, 0x57, 0x53, 0x4d,\n    0x68, 0x67, 0x62, 0x5d, 0x5e, 0x65, 0x6b, 0x6c, 0x6c, 0x6d, 0x70, 0x71, 0x6f, 0x6c, 0x6b, 0x6b,\n    0x69, 0x65, 0x5f, 0x5c, 0x60, 0x65, 0x66, 0x63, 0x5f, 0x5f, 0x5e, 0x5d, 0x5c, 0x5d, 0x60, 0x63,\n    0x6d, 0x6b, 0x72, 0x7d, 0x7d, 0x72, 0x6a, 0x6a, 0x74, 0x75, 0x79, 0x7d, 0x7b, 0x74, 0x6c, 0x68,\n    0x64, 0x61, 0x63, 0x6a, 0x6c, 0x6a, 0x6b, 0x70, 0x71, 0x75, 0x73, 0x74, 0x7d, 0x7f, 0x79, 0x75,\n    0x6b, 0x67, 0x61, 0x5d, 0x60, 0x6a, 0x77, 0x80, 0x77, 0x78, 0x7d, 0x85, 0x88, 0x85, 0x7f, 0x7b,\n    0x6f, 0x70, 0x72, 0x73, 0x70, 0x68, 0x63, 0x61, 0x67, 0x6e, 0x72, 0x71, 0x70, 0x71, 0x6e, 0x68,\n    0x67, 0x63, 0x5f, 0x60, 0x68, 0x71, 0x75, 0x74, 0x67, 0x68, 0x68, 0x65, 0x62, 0x65, 0x6e, 0x75,\n    0x74, 0x7e, 0x8d, 0x97, 0x98, 0x91, 0x86, 0x7f, 0x80, 0x7b, 0x78, 0x77, 0x75, 0x6e, 0x67, 0x65,\n    0x58, 0x58, 0x55, 0x53, 0x5b, 0x64, 0x62, 0x58, 0x49, 0x47, 0x46, 0x48, 0x4b, 0x4c, 0x48, 0x44,\n    0x48, 0x4f, 0x56, 0x59, 0x5d, 0x62, 0x66, 0x68, 0x61, 0x55, 0x49, 0x4a, 0x54, 0x5e, 0x5f, 0x5b,\n    0x65, 0x68, 0x63, 0x55, 0x4b, 0x49, 0x4b, 0x4a, 0x3e, 0x3c, 0x3c, 0x3f, 0x42, 0x45, 0x4b, 0x51,\n    0x5e, 0x60, 0x61, 0x62, 0x65, 0x67, 0x64, 0x5e, 0x5d, 0x60, 0x61, 0x60, 0x5f, 0x5c, 0x56, 0x50,\n    0x58, 0x60, 0x67, 0x66, 0x61, 0x5f, 0x61, 0x65, 0x69, 0x63, 0x5c, 0x58, 0x58, 0x58, 0x58, 0x57,\n    0x5e, 0x5d, 0x5c, 0x5a, 0x59, 0x58, 0x58, 0x58, 0x5e, 0x5a, 0x58, 0x59, 0x58, 0x57, 0x5d, 0x66,\n    0x72, 0x75, 0x73, 0x6e, 0x69, 0x68, 0x6a, 0x6b, 0x6d, 0x6e, 0x72, 0x75, 0x74, 0x75, 0x83, 0x92,\n    0xd1, 0xfd, 0xff, 0xed, 0xf8, 0xff, 0xfb, 0xff, 0xfd, 0xfd, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xfd,\n    0xff, 0xff, 0xfe, 0xfe, 0xfe, 0xfe, 0xfd, 0xfd, 0xfe, 0xfe, 0xfe, 0xfe, 0xfd, 0xfd, 0xfd, 0xfd,\n    0xff, 0xfb, 0xf9, 0xfb, 0xff, 0xff, 0xfd, 0xf8, 0xff, 0xf7, 0xe5, 0xd4, 0xc8, 0xc2, 0xc1, 0xc2,\n    0xba, 0xb6, 0xb2, 0xb0, 0xb1, 0xb1, 0xaf, 0xac, 0xa8, 0xa7, 0xa3, 0x9c, 0x93, 0x8c, 0x87, 0x84,\n    0x83, 0x80, 0x7b, 0x75, 0x6f, 0x6b, 0x69, 0x69, 0x65, 0x64, 0x62, 0x5f, 0x5d, 0x5b, 0x5a, 0x5a,\n    0x5b, 0x58, 0x54, 0x50, 0x4d, 0x4b, 0x48, 0x47, 0x43, 0x43, 0x43, 0x43, 0x42, 0x40, 0x3c, 0x39,\n    0x3b, 0x39, 0x39, 0x3b, 0x3b, 0x36, 0x32, 0x31, 0x3a, 0x3c, 0x3d, 0x3c, 0x39, 0x36, 0x36, 0x37,\n    0x39, 0x3c, 0x3e, 0x3e, 0x40, 0x43, 0x44, 0x42, 0x3c, 0x3d, 0x3f, 0x42, 0x45, 0x46, 0x45, 0x44,\n    0x43, 0x43, 0x46, 0x4a, 0x4b, 0x48, 0x47, 0x47, 0x4c, 0x4c, 0x4c, 0x4b, 0x4a, 0x49, 0x49, 0x4a,\n    0x49, 0x49, 0x49, 0x4c, 0x57, 0x61, 0x5c, 0x51, 0x41, 0x48, 0x61, 0x77, 0x7a, 0x7c, 0x81, 0x7e,\n    0x7c, 0x77, 0x6c, 0x69, 0x72, 0x7a, 0x85, 0x93, 0xa9, 0xb5, 0xbe, 0xbf, 0xbe, 0xc0, 0xc0, 0xbc,\n    0xc1, 0xc0, 0xc2, 0xc1, 0xb2, 0x96, 0x79, 0x69, 0x60, 0x64, 0x68, 0x68, 0x5f, 0x58, 0x59, 0x5f,\n    0x69, 0x68, 0x66, 0x62, 0x5d, 0x5c, 0x62, 0x69, 0x68, 0x67, 0x67, 0x67, 0x63, 0x5a, 0x51, 0x4c,\n    0x47, 0x53, 0x5f, 0x6a, 0x75, 0x75, 0x71, 0x72, 0x74, 0x67, 0x54, 0x44, 0x3d, 0x43, 0x52, 0x60,\n    0x61, 0x68, 0x71, 0x70, 0x68, 0x6b, 0x73, 0x72, 0x7a, 0x74, 0x6f, 0x6d, 0x6b, 0x6a, 0x6b, 0x6d,\n    0x6e, 0x69, 0x65, 0x64, 0x62, 0x5f, 0x5d, 0x5c, 0x60, 0x62, 0x64, 0x65, 0x67, 0x65, 0x5d, 0x55,\n    0x4f, 0x4e, 0x48, 0x44, 0x51, 0x6e, 0x8a, 0x99, 0x9c, 0x99, 0x96, 0x95, 0x94, 0x91, 0x89, 0x83,\n    0x7a, 0x77, 0x7a, 0x85, 0x8b, 0x8c, 0x8c, 0x8f, 0x86, 0x82, 0x7b, 0x75, 0x72, 0x70, 0x6f, 0x6e,\n    0x68, 0x5e, 0x4c, 0x38, 0x29, 0x23, 0x25, 0x29, 0x46, 0x5c, 0x67, 0x61, 0x61, 0x6a, 0x63, 0x51,\n    0x39, 0x37, 0x47, 0x50, 0x44, 0x41, 0x43, 0x39, 0x36, 0x34, 0x3e, 0x49, 0x48, 0x44, 0x3d, 0x34,\n    0x3b, 0x3d, 0x40, 0x44, 0x47, 0x47, 0x41, 0x3b, 0x28, 0x1f, 0x1d, 0x27, 0x32, 0x36, 0x36, 0x37,\n    0x46, 0x55, 0x51, 0x42, 0x45, 0x54, 0x5a, 0x58, 0x5b, 0x50, 0x4e, 0x54, 0x56, 0x55, 0x50, 0x47,\n    0x48, 0x4f, 0x5a, 0x61, 0x62, 0x5d, 0x59, 0x58, 0x5d, 0x4f, 0x3a, 0x32, 0x37, 0x36, 0x2d, 0x29,\n    0x30, 0x35, 0x3a, 0x42, 0x52, 0x64, 0x6d, 0x6d, 0x6c, 0x71, 0x77, 0x7b, 0x7a, 0x72, 0x63, 0x56,\n    0x5c, 0x55, 0x4a, 0x3d, 0x35, 0x32, 0x30, 0x2e, 0x30, 0x39, 0x44, 0x4c, 0x54, 0x5b, 0x5d, 0x5b,\n    0x62, 0x65, 0x64, 0x61, 0x60, 0x64, 0x66, 0x65, 0x71, 0x75, 0x7b, 0x80, 0x7e, 0x76, 0x6e, 0x69,\n    0x6f, 0x6d, 0x69, 0x66, 0x67, 0x69, 0x66, 0x61, 0x5f, 0x5e, 0x5d, 0x5c, 0x5e, 0x65, 0x6d, 0x74,\n    0x6f, 0x6b, 0x70, 0x7a, 0x7c, 0x73, 0x6c, 0x6d, 0x69, 0x65, 0x67, 0x6e, 0x70, 0x6d, 0x6b, 0x6d,\n    0x6e, 0x69, 0x69, 0x6a, 0x67, 0x60, 0x60, 0x65, 0x6f, 0x76, 0x75, 0x72, 0x75, 0x72, 0x6a, 0x66,\n    0x60, 0x60, 0x61, 0x63, 0x67, 0x6c, 0x70, 0x72, 0x75, 0x73, 0x74, 0x79, 0x7b, 0x77, 0x70, 0x6c,\n    0x69, 0x6b, 0x71, 0x74, 0x6c, 0x5f, 0x59, 0x5a, 0x64, 0x70, 0x7b, 0x7c, 0x7a, 0x79, 0x73, 0x6b,\n    0x68, 0x69, 0x6a, 0x70, 0x7a, 0x7f, 0x75, 0x66, 0x5d, 0x60, 0x67, 0x6f, 0x75, 0x76, 0x73, 0x70,\n    0x77, 0x79, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7b, 0x74, 0x6e, 0x6d, 0x6b, 0x69, 0x69, 0x6c,\n    0x6d, 0x68, 0x62, 0x5e, 0x5b, 0x58, 0x52, 0x4e, 0x45, 0x45, 0x43, 0x42, 0x46, 0x4c, 0x4a, 0x44,\n    0x43, 0x46, 0x4c, 0x54, 0x5b, 0x5e, 0x5e, 0x5e, 0x59, 0x4e, 0x40, 0x3c, 0x45, 0x55, 0x66, 0x6f,\n    0x75, 0x7b, 0x73, 0x59, 0x45, 0x44, 0x4b, 0x4f, 0x45, 0x40, 0x3e, 0x40, 0x44, 0x45, 0x46, 0x48,\n    0x47, 0x47, 0x45, 0x44, 0x49, 0x4f, 0x50, 0x4d, 0x55, 0x5d, 0x64, 0x68, 0x68, 0x67, 0x64, 0x61,\n    0x5e, 0x5f, 0x62, 0x60, 0x56, 0x4e, 0x56, 0x63, 0x76, 0x6e, 0x64, 0x5c, 0x58, 0x58, 0x58, 0x59,\n    0x58, 0x56, 0x54, 0x53, 0x55, 0x58, 0x5a, 0x5b, 0x52, 0x4f, 0x51, 0x57, 0x5a, 0x59, 0x5e, 0x66,\n    0x6b, 0x6b, 0x67, 0x62, 0x60, 0x64, 0x68, 0x6a, 0x70, 0x6f, 0x72, 0x7b, 0x88, 0xa3, 0xcc, 0xee,\n    0xfb, 0xf7, 0xfc, 0xff, 0xfd, 0xfa, 0xfc, 0xfd, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0xfd,\n    0xff, 0xfe, 0xfe, 0xfe, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc,\n    0xf8, 0xfc, 0xff, 0xff, 0xfa, 0xf8, 0xfa, 0xfe, 0xfe, 0xfe, 0xfa, 0xef, 0xdf, 0xce, 0xc2, 0xbd,\n    0xc1, 0xba, 0xb2, 0xae, 0xae, 0xaf, 0xae, 0xac, 0xad, 0xac, 0xa9, 0xa2, 0x9a, 0x93, 0x8e, 0x8a,\n    0x89, 0x86, 0x7f, 0x78, 0x70, 0x6c, 0x69, 0x69, 0x67, 0x66, 0x63, 0x5f, 0x5c, 0x5b, 0x5a, 0x5b,\n    0x5a, 0x58, 0x55, 0x53, 0x51, 0x4e, 0x4c, 0x4a, 0x47, 0x46, 0x44, 0x40, 0x3d, 0x3d, 0x3f, 0x41,\n    0x40, 0x39, 0x34, 0x36, 0x38, 0x38, 0x38, 0x3b, 0x37, 0x38, 0x39, 0x3b, 0x3d, 0x3d, 0x3d, 0x3d,\n    0x3b, 0x3d, 0x3e, 0x3d, 0x3e, 0x41, 0x42, 0x41, 0x43, 0x41, 0x40, 0x40, 0x42, 0x44, 0x46, 0x46,\n    0x49, 0x47, 0x46, 0x47, 0x48, 0x47, 0x49, 0x4c, 0x4b, 0x4c, 0x4d, 0x4c, 0x4a, 0x4a, 0x4c, 0x4e,\n    0x4c, 0x4a, 0x4a, 0x4f, 0x5a, 0x61, 0x5d, 0x54, 0x41, 0x44, 0x5b, 0x71, 0x72, 0x73, 0x7b, 0x7c,\n    0x82, 0x83, 0x7c, 0x75, 0x77, 0x7d, 0x85, 0x90, 0xa7, 0xb1, 0xb6, 0xb4, 0xb4, 0xba, 0xbf, 0xbf,\n    0xbf, 0xbf, 0xbf, 0xc0, 0xbd, 0xab, 0x8b, 0x6e, 0x62, 0x69, 0x70, 0x6d, 0x60, 0x56, 0x5d, 0x69,\n    0x70, 0x6c, 0x68, 0x64, 0x61, 0x5f, 0x61, 0x66, 0x6e, 0x69, 0x68, 0x6a, 0x66, 0x59, 0x4d, 0x48,\n    0x4a, 0x4f, 0x51, 0x56, 0x5e, 0x64, 0x70, 0x82, 0x82, 0x80, 0x7b, 0x76, 0x75, 0x76, 0x70, 0x66,\n    0x54, 0x59, 0x6a, 0x76, 0x74, 0x73, 0x77, 0x79, 0x78, 0x73, 0x6f, 0x6e, 0x6e, 0x6e, 0x70, 0x72,\n    0x74, 0x6e, 0x6a, 0x6a, 0x66, 0x60, 0x60, 0x64, 0x5c, 0x60, 0x62, 0x61, 0x62, 0x61, 0x58, 0x4c,\n    0x56, 0x56, 0x54, 0x58, 0x6c, 0x88, 0x9b, 0xa0, 0xa1, 0x9a, 0x92, 0x90, 0x8d, 0x88, 0x82, 0x80,\n    0x7a, 0x79, 0x7d, 0x82, 0x81, 0x7c, 0x7e, 0x85, 0x88, 0x81, 0x77, 0x6e, 0x69, 0x68, 0x68, 0x68,\n    0x66, 0x5a, 0x47, 0x32, 0x24, 0x20, 0x25, 0x2a, 0x64, 0x87, 0x9d, 0x92, 0x84, 0x79, 0x5c, 0x38,\n    0x38, 0x37, 0x48, 0x4f, 0x42, 0x44, 0x4e, 0x49, 0x3f, 0x3d, 0x45, 0x4d, 0x4c, 0x48, 0x45, 0x3e,\n    0x3c, 0x40, 0x40, 0x39, 0x2f, 0x2b, 0x2e, 0x32, 0x2d, 0x26, 0x24, 0x2d, 0x35, 0x36, 0x37, 0x39,\n    0x4b, 0x52, 0x45, 0x35, 0x40, 0x55, 0x54, 0x48, 0x3c, 0x3d, 0x4d, 0x63, 0x6a, 0x63, 0x52, 0x41,\n    0x40, 0x53, 0x67, 0x6c, 0x68, 0x5d, 0x4d, 0x3f, 0x2f, 0x32, 0x30, 0x2f, 0x36, 0x39, 0x39, 0x3c,\n    0x32, 0x38, 0x3d, 0x45, 0x55, 0x66, 0x6d, 0x6a, 0x6b, 0x73, 0x79, 0x7a, 0x77, 0x70, 0x60, 0x50,\n    0x47, 0x4b, 0x46, 0x39, 0x34, 0x3a, 0x3a, 0x34, 0x34, 0x40, 0x4a, 0x4f, 0x54, 0x5d, 0x66, 0x6a,\n    0x6b, 0x66, 0x63, 0x68, 0x6c, 0x6c, 0x6c, 0x6d, 0x71, 0x80, 0x83, 0x81, 0x7f, 0x72, 0x66, 0x69,\n    0x73, 0x6e, 0x6a, 0x6a, 0x6c, 0x6c, 0x68, 0x64, 0x60, 0x5f, 0x5e, 0x5e, 0x62, 0x6b, 0x78, 0x81,\n    0x84, 0x7e, 0x79, 0x78, 0x78, 0x76, 0x73, 0x70, 0x6a, 0x60, 0x5b, 0x60, 0x67, 0x6c, 0x71, 0x77,\n    0x6c, 0x6f, 0x6f, 0x66, 0x5a, 0x55, 0x59, 0x5f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6d, 0x69, 0x65, 0x61,\n    0x63, 0x62, 0x61, 0x64, 0x68, 0x6b, 0x69, 0x67, 0x6e, 0x70, 0x73, 0x73, 0x71, 0x70, 0x6f, 0x6f,\n    0x6e, 0x70, 0x70, 0x6c, 0x66, 0x61, 0x5f, 0x60, 0x67, 0x6f, 0x78, 0x79, 0x73, 0x6e, 0x6e, 0x70,\n    0x6c, 0x65, 0x5f, 0x65, 0x75, 0x82, 0x82, 0x7b, 0x7d, 0x81, 0x83, 0x81, 0x84, 0x89, 0x88, 0x83,\n    0x82, 0x79, 0x70, 0x6f, 0x71, 0x74, 0x78, 0x7a, 0x76, 0x74, 0x72, 0x6e, 0x6b, 0x6b, 0x6d, 0x6f,\n    0x7b, 0x75, 0x6b, 0x62, 0x5c, 0x5a, 0x5a, 0x5b, 0x54, 0x48, 0x3f, 0x3f, 0x46, 0x4b, 0x4e, 0x4f,\n    0x47, 0x43, 0x41, 0x45, 0x4f, 0x58, 0x5c, 0x5c, 0x56, 0x53, 0x49, 0x43, 0x4d, 0x63, 0x71, 0x73,\n    0x83, 0x8c, 0x86, 0x65, 0x41, 0x39, 0x4e, 0x65, 0x57, 0x47, 0x3d, 0x40, 0x40, 0x39, 0x3a, 0x42,\n    0x44, 0x47, 0x4b, 0x4c, 0x4c, 0x4b, 0x4c, 0x4d, 0x56, 0x5c, 0x62, 0x66, 0x67, 0x64, 0x5e, 0x58,\n    0x53, 0x5c, 0x61, 0x5c, 0x53, 0x54, 0x64, 0x74, 0x74, 0x77, 0x62, 0x54, 0x54, 0x55, 0x57, 0x4e,\n    0x4f, 0x50, 0x53, 0x57, 0x60, 0x67, 0x64, 0x5d, 0x5a, 0x5c, 0x5c, 0x59, 0x5a, 0x5e, 0x66, 0x6b,\n    0x75, 0x6c, 0x68, 0x69, 0x66, 0x61, 0x68, 0x76, 0x75, 0x6e, 0x70, 0x8c, 0xc1, 0xf1, 0xff, 0xfa,\n    0xfd, 0xfd, 0xfd, 0xfd, 0xfe, 0xfe, 0xfe, 0xfe, 0xfc, 0xfd, 0xfd, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe,\n    0xff, 0xfe, 0xfc, 0xfa, 0xf9, 0xf8, 0xf8, 0xf8, 0xf9, 0xf9, 0xfb, 0xfc, 0xfd, 0xfd, 0xfd, 0xfd,\n    0xfe, 0xfd, 0xfd, 0xfd, 0xfd, 0xfe, 0xff, 0xff, 0xfd, 0xfe, 0xfd, 0xfb, 0xfa, 0xf2, 0xdb, 0xc4,\n    0xc4, 0xc1, 0xbf, 0xbb, 0xb2, 0xaa, 0xaa, 0xaf, 0xae, 0xab, 0xa9, 0xa7, 0xa6, 0xa1, 0x98, 0x92,\n    0x8b, 0x87, 0x82, 0x7e, 0x76, 0x6d, 0x69, 0x6b, 0x68, 0x66, 0x65, 0x63, 0x62, 0x60, 0x5d, 0x5b,\n    0x5a, 0x59, 0x58, 0x56, 0x54, 0x51, 0x4f, 0x4d, 0x4a, 0x48, 0x46, 0x45, 0x44, 0x43, 0x41, 0x3f,\n    0x3f, 0x3b, 0x3a, 0x3b, 0x3b, 0x39, 0x38, 0x39, 0x3d, 0x3c, 0x3b, 0x3b, 0x3c, 0x3d, 0x3f, 0x40,\n    0x41, 0x41, 0x40, 0x40, 0x40, 0x41, 0x41, 0x42, 0x44, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4a,\n    0x47, 0x48, 0x49, 0x4b, 0x4c, 0x4d, 0x4d, 0x4e, 0x4d, 0x4c, 0x4b, 0x4a, 0x4a, 0x4b, 0x4c, 0x4c,\n    0x4e, 0x4c, 0x4d, 0x52, 0x59, 0x5e, 0x5e, 0x5c, 0x47, 0x33, 0x4d, 0x6e, 0x77, 0x81, 0x7f, 0x73,\n    0x7b, 0x84, 0x8c, 0x8d, 0x8b, 0x8a, 0x8a, 0x8a, 0x9f, 0xb2, 0xc0, 0xbf, 0xbb, 0xbc, 0xbb, 0xb5,\n    0xbf, 0xc0, 0xc1, 0xc4, 0xc6, 0xb8, 0x94, 0x73, 0x7a, 0x7a, 0x73, 0x64, 0x5b, 0x5b, 0x5f, 0x60,\n    0x72, 0x74, 0x6b, 0x60, 0x5d, 0x5b, 0x5c, 0x63, 0x6b, 0x6e, 0x6c, 0x6b, 0x66, 0x57, 0x4a, 0x49,\n    0x4f, 0x5a, 0x5b, 0x52, 0x49, 0x43, 0x47, 0x54, 0x72, 0x76, 0x7b, 0x7f, 0x85, 0x8b, 0x8c, 0x89,\n    0x76, 0x7a, 0x7c, 0x7a, 0x78, 0x77, 0x70, 0x69, 0x6f, 0x77, 0x7b, 0x76, 0x70, 0x70, 0x72, 0x73,\n    0x71, 0x6e, 0x69, 0x65, 0x5d, 0x56, 0x54, 0x56, 0x5f, 0x5d, 0x59, 0x58, 0x5c, 0x5e, 0x5a, 0x54,\n    0x56, 0x53, 0x59, 0x6f, 0x89, 0x9b, 0xa1, 0xa2, 0x9c, 0x9c, 0x98, 0x8e, 0x87, 0x84, 0x80, 0x7b,\n    0x74, 0x7e, 0x89, 0x8d, 0x8a, 0x82, 0x77, 0x6e, 0x77, 0x6f, 0x69, 0x67, 0x68, 0x69, 0x6a, 0x6c,\n    0x62, 0x54, 0x41, 0x30, 0x24, 0x25, 0x31, 0x3f, 0x72, 0x93, 0x9f, 0x96, 0x88, 0x68, 0x4b, 0x46,\n    0x3d, 0x39, 0x49, 0x47, 0x44, 0x4b, 0x47, 0x4a, 0x40, 0x45, 0x4e, 0x56, 0x53, 0x47, 0x3a, 0x33,\n    0x36, 0x3a, 0x39, 0x30, 0x2a, 0x2c, 0x30, 0x32, 0x31, 0x22, 0x23, 0x2b, 0x2d, 0x34, 0x3e, 0x3c,\n    0x44, 0x4d, 0x3a, 0x2f, 0x3d, 0x50, 0x57, 0x49, 0x43, 0x46, 0x51, 0x5f, 0x69, 0x6e, 0x65, 0x52,\n    0x4a, 0x5a, 0x6d, 0x6e, 0x62, 0x5c, 0x57, 0x4c, 0x41, 0x39, 0x3d, 0x56, 0x6f, 0x6e, 0x53, 0x39,\n    0x33, 0x3d, 0x3e, 0x39, 0x3a, 0x41, 0x4e, 0x5f, 0x68, 0x72, 0x7c, 0x7e, 0x78, 0x6a, 0x57, 0x47,\n    0x42, 0x47, 0x49, 0x42, 0x39, 0x34, 0x36, 0x3a, 0x41, 0x50, 0x59, 0x56, 0x5a, 0x65, 0x69, 0x64,\n    0x6b, 0x67, 0x64, 0x66, 0x67, 0x64, 0x63, 0x64, 0x6a, 0x76, 0x79, 0x79, 0x7a, 0x6f, 0x62, 0x62,\n    0x5d, 0x60, 0x66, 0x6b, 0x6c, 0x69, 0x62, 0x5d, 0x5f, 0x5e, 0x5e, 0x5f, 0x64, 0x6e, 0x79, 0x80,\n    0x83, 0x7e, 0x78, 0x75, 0x73, 0x72, 0x6f, 0x6e, 0x6f, 0x6d, 0x6a, 0x67, 0x64, 0x66, 0x71, 0x7d,\n    0x80, 0x7b, 0x76, 0x72, 0x6f, 0x6c, 0x67, 0x63, 0x65, 0x64, 0x65, 0x66, 0x68, 0x67, 0x64, 0x61,\n    0x63, 0x63, 0x64, 0x67, 0x69, 0x66, 0x60, 0x5b, 0x60, 0x67, 0x70, 0x74, 0x74, 0x76, 0x7b, 0x7f,\n    0x77, 0x79, 0x7b, 0x79, 0x76, 0x73, 0x73, 0x74, 0x79, 0x7d, 0x7f, 0x7d, 0x76, 0x6e, 0x68, 0x66,\n    0x63, 0x63, 0x62, 0x62, 0x67, 0x6d, 0x6f, 0x6d, 0x73, 0x77, 0x75, 0x70, 0x72, 0x7c, 0x86, 0x89,\n    0x8c, 0x88, 0x87, 0x8b, 0x8e, 0x89, 0x81, 0x7b, 0x79, 0x7d, 0x82, 0x83, 0x80, 0x79, 0x72, 0x6e,\n    0x64, 0x67, 0x6b, 0x6d, 0x6c, 0x6b, 0x6c, 0x6d, 0x57, 0x50, 0x4a, 0x4b, 0x4f, 0x50, 0x4f, 0x4e,\n    0x48, 0x46, 0x45, 0x4b, 0x55, 0x5e, 0x62, 0x62, 0x68, 0x6a, 0x66, 0x5c, 0x5b, 0x65, 0x73, 0x7a,\n    0x8b, 0x91, 0x89, 0x6a, 0x4b, 0x46, 0x5c, 0x74, 0x6f, 0x59, 0x46, 0x40, 0x40, 0x3f, 0x41, 0x46,\n    0x4a, 0x4b, 0x4b, 0x49, 0x46, 0x46, 0x49, 0x4d, 0x49, 0x4d, 0x54, 0x5c, 0x5f, 0x5b, 0x54, 0x4f,\n    0x59, 0x63, 0x68, 0x60, 0x56, 0x55, 0x5c, 0x61, 0x70, 0x76, 0x64, 0x55, 0x53, 0x54, 0x57, 0x50,\n    0x50, 0x56, 0x5e, 0x63, 0x67, 0x66, 0x5e, 0x55, 0x55, 0x58, 0x5c, 0x5f, 0x61, 0x64, 0x66, 0x67,\n    0x5b, 0x64, 0x69, 0x66, 0x69, 0x74, 0x7c, 0x7c, 0x80, 0x92, 0xb8, 0xe2, 0xfa, 0xfc, 0xfa, 0xfc,\n    0xfd, 0xfd, 0xfd, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfd, 0xfd, 0xfd, 0xfe, 0xfe, 0xfe, 0xfd, 0xfd,\n    0xfd, 0xfc, 0xfb, 0xf9, 0xf8, 0xf7, 0xf6, 0xf6, 0xf7, 0xf8, 0xf9, 0xfa, 0xfb, 0xfb, 0xfb, 0xfb,\n    0xfc, 0xfc, 0xfc, 0xfb, 0xfc, 0xfc, 0xfd, 0xfe, 0xfb, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xf4, 0xe7,\n    0xd4, 0xc8, 0xbd, 0xba, 0xb9, 0xb4, 0xad, 0xa9, 0xad, 0xac, 0xac, 0xac, 0xab, 0xa5, 0x9c, 0x95,\n    0x93, 0x8e, 0x89, 0x85, 0x7e, 0x73, 0x6c, 0x6b, 0x69, 0x67, 0x64, 0x62, 0x61, 0x60, 0x5d, 0x5c,\n    0x5a, 0x5a, 0x5a, 0x58, 0x57, 0x54, 0x52, 0x51, 0x4c, 0x4a, 0x48, 0x47, 0x46, 0x44, 0x42, 0x40,\n    0x43, 0x3f, 0x3e, 0x3f, 0x3f, 0x3d, 0x3c, 0x3d, 0x3e, 0x3d, 0x3d, 0x3d, 0x3e, 0x3f, 0x41, 0x42,\n    0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x43, 0x43, 0x44, 0x45, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4a,\n    0x48, 0x49, 0x4a, 0x4c, 0x4d, 0x4d, 0x4e, 0x4e, 0x4d, 0x4d, 0x4c, 0x4b, 0x4b, 0x4b, 0x4c, 0x4d,\n    0x4b, 0x4a, 0x4c, 0x53, 0x5c, 0x63, 0x64, 0x63, 0x51, 0x37, 0x46, 0x65, 0x79, 0x87, 0x89, 0x88,\n    0x81, 0x86, 0x88, 0x87, 0x87, 0x89, 0x8a, 0x89, 0x99, 0xab, 0xbd, 0xc3, 0xc4, 0xc6, 0xc6, 0xc3,\n    0xbe, 0xbe, 0xbd, 0xbf, 0xc4, 0xc3, 0xb3, 0xa1, 0x83, 0x75, 0x6c, 0x6e, 0x6d, 0x64, 0x5e, 0x5f,\n    0x6e, 0x70, 0x68, 0x5c, 0x56, 0x52, 0x52, 0x59, 0x69, 0x6d, 0x6d, 0x6c, 0x69, 0x5b, 0x4e, 0x4d,\n    0x4a, 0x56, 0x5a, 0x57, 0x51, 0x49, 0x47, 0x4e, 0x4e, 0x60, 0x76, 0x85, 0x8b, 0x8a, 0x83, 0x7c,\n    0x77, 0x7b, 0x7d, 0x7a, 0x76, 0x72, 0x6b, 0x64, 0x64, 0x68, 0x6a, 0x67, 0x66, 0x6c, 0x73, 0x76,\n    0x73, 0x6d, 0x65, 0x5f, 0x58, 0x53, 0x53, 0x55, 0x58, 0x53, 0x50, 0x53, 0x5a, 0x5f, 0x5f, 0x5d,\n    0x55, 0x61, 0x74, 0x89, 0x9a, 0xa2, 0xa3, 0xa1, 0x9e, 0x9d, 0x98, 0x91, 0x8c, 0x88, 0x81, 0x7b,\n    0x72, 0x7c, 0x87, 0x8d, 0x8e, 0x8b, 0x85, 0x80, 0x72, 0x6b, 0x66, 0x64, 0x64, 0x62, 0x62, 0x64,\n    0x5d, 0x5c, 0x55, 0x47, 0x3b, 0x3f, 0x51, 0x63, 0x8b, 0xa2, 0xa9, 0x9c, 0x85, 0x62, 0x45, 0x3e,\n    0x3d, 0x37, 0x43, 0x41, 0x42, 0x4d, 0x4c, 0x4e, 0x4b, 0x54, 0x5e, 0x5f, 0x51, 0x3e, 0x30, 0x2b,\n    0x36, 0x41, 0x46, 0x40, 0x37, 0x35, 0x38, 0x3a, 0x2b, 0x20, 0x24, 0x2e, 0x30, 0x35, 0x3b, 0x39,\n    0x3f, 0x46, 0x3b, 0x3e, 0x50, 0x5c, 0x5b, 0x4d, 0x43, 0x46, 0x52, 0x5f, 0x65, 0x66, 0x5f, 0x52,\n    0x57, 0x5d, 0x63, 0x5c, 0x4f, 0x50, 0x5c, 0x62, 0x63, 0x59, 0x50, 0x52, 0x58, 0x54, 0x42, 0x31,\n    0x3b, 0x40, 0x41, 0x43, 0x4d, 0x57, 0x62, 0x6d, 0x78, 0x7f, 0x82, 0x7c, 0x72, 0x68, 0x5d, 0x56,\n    0x4b, 0x50, 0x52, 0x4e, 0x43, 0x39, 0x37, 0x39, 0x42, 0x44, 0x4c, 0x58, 0x61, 0x65, 0x67, 0x6a,\n    0x6b, 0x6a, 0x69, 0x6b, 0x6a, 0x67, 0x65, 0x66, 0x6f, 0x77, 0x7b, 0x7d, 0x81, 0x79, 0x6d, 0x6a,\n    0x61, 0x64, 0x68, 0x69, 0x67, 0x65, 0x64, 0x64, 0x62, 0x61, 0x61, 0x62, 0x67, 0x6e, 0x76, 0x7c,\n    0x83, 0x82, 0x80, 0x7d, 0x7a, 0x77, 0x75, 0x74, 0x69, 0x6c, 0x6b, 0x65, 0x63, 0x6a, 0x76, 0x7f,\n    0x75, 0x74, 0x72, 0x6f, 0x6b, 0x68, 0x66, 0x65, 0x60, 0x5f, 0x5e, 0x60, 0x65, 0x67, 0x66, 0x65,\n    0x64, 0x65, 0x67, 0x6a, 0x6c, 0x6a, 0x64, 0x5f, 0x62, 0x69, 0x70, 0x6e, 0x66, 0x61, 0x63, 0x68,\n    0x77, 0x7b, 0x81, 0x85, 0x87, 0x89, 0x8c, 0x8f, 0x8e, 0x8c, 0x88, 0x84, 0x7d, 0x75, 0x6c, 0x66,\n    0x67, 0x73, 0x7d, 0x7e, 0x79, 0x75, 0x73, 0x72, 0x71, 0x77, 0x78, 0x74, 0x74, 0x7f, 0x8c, 0x94,\n    0x91, 0x8a, 0x85, 0x87, 0x88, 0x85, 0x7f, 0x7a, 0x80, 0x81, 0x81, 0x7e, 0x7a, 0x76, 0x73, 0x72,\n    0x63, 0x6b, 0x74, 0x79, 0x77, 0x74, 0x73, 0x73, 0x6f, 0x69, 0x65, 0x63, 0x61, 0x5d, 0x5a, 0x59,\n    0x5d, 0x57, 0x51, 0x52, 0x5a, 0x66, 0x6f, 0x74, 0x67, 0x6a, 0x71, 0x7a, 0x83, 0x89, 0x8b, 0x8a,\n    0x89, 0x8b, 0x83, 0x6e, 0x56, 0x4a, 0x4a, 0x4e, 0x4e, 0x4c, 0x4c, 0x50, 0x52, 0x50, 0x4d, 0x4c,\n    0x41, 0x46, 0x4a, 0x49, 0x45, 0x42, 0x43, 0x45, 0x47, 0x47, 0x4d, 0x57, 0x5d, 0x59, 0x53, 0x50,\n    0x4f, 0x59, 0x60, 0x5e, 0x5d, 0x61, 0x64, 0x64, 0x6e, 0x77, 0x67, 0x57, 0x51, 0x50, 0x55, 0x52,\n    0x57, 0x60, 0x6a, 0x70, 0x72, 0x6f, 0x68, 0x61, 0x58, 0x5b, 0x5f, 0x64, 0x68, 0x68, 0x67, 0x65,\n    0x67, 0x62, 0x63, 0x6b, 0x74, 0x78, 0x7b, 0x7e, 0xb8, 0xda, 0xf9, 0xff, 0xfb, 0xfc, 0xff, 0xff,\n    0xfd, 0xfd, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfd, 0xfd, 0xfe, 0xfe, 0xfd, 0xfd, 0xfc, 0xfc,\n    0xfb, 0xfa, 0xf9, 0xf7, 0xf6, 0xf5, 0xf4, 0xf4, 0xf4, 0xf4, 0xf5, 0xf6, 0xf7, 0xf7, 0xf8, 0xf8,\n    0xf9, 0xf9, 0xf9, 0xfa, 0xfa, 0xfb, 0xfc, 0xfd, 0xfd, 0xff, 0xff, 0xfe, 0xfd, 0xff, 0xff, 0xfc,\n    0xf4, 0xe0, 0xca, 0xbe, 0xbb, 0xb9, 0xb6, 0xb3, 0xaa, 0xaa, 0xab, 0xac, 0xab, 0xa9, 0xa4, 0xa0,\n    0x98, 0x93, 0x8e, 0x8a, 0x83, 0x79, 0x70, 0x6c, 0x6d, 0x6a, 0x66, 0x63, 0x61, 0x60, 0x5f, 0x5e,\n    0x59, 0x59, 0x58, 0x57, 0x56, 0x55, 0x53, 0x53, 0x4f, 0x4d, 0x4b, 0x49, 0x48, 0x46, 0x44, 0x42,\n    0x44, 0x41, 0x3f, 0x40, 0x40, 0x3f, 0x3e, 0x3f, 0x3f, 0x3f, 0x40, 0x40, 0x41, 0x42, 0x43, 0x43,\n    0x44, 0x44, 0x44, 0x44, 0x44, 0x45, 0x45, 0x45, 0x46, 0x47, 0x47, 0x48, 0x49, 0x4a, 0x4a, 0x4b,\n    0x4a, 0x4b, 0x4c, 0x4d, 0x4d, 0x4e, 0x4e, 0x4e, 0x4d, 0x4c, 0x4c, 0x4b, 0x4b, 0x4c, 0x4d, 0x4e,\n    0x4a, 0x4a, 0x4e, 0x56, 0x60, 0x66, 0x68, 0x68, 0x5a, 0x3d, 0x39, 0x4c, 0x67, 0x7a, 0x80, 0x8c,\n    0x8b, 0x8b, 0x8a, 0x88, 0x89, 0x8c, 0x8e, 0x8d, 0x90, 0x9e, 0xb2, 0xc2, 0xc8, 0xc9, 0xc9, 0xc9,\n    0xc4, 0xc3, 0xbf, 0xbd, 0xc1, 0xc7, 0xc7, 0xc2, 0x9d, 0x79, 0x61, 0x66, 0x6c, 0x63, 0x5d, 0x62,\n    0x68, 0x6c, 0x67, 0x5c, 0x53, 0x4a, 0x49, 0x51, 0x67, 0x6b, 0x6c, 0x6d, 0x6b, 0x5f, 0x52, 0x50,\n    0x50, 0x5a, 0x5e, 0x5d, 0x5d, 0x5a, 0x59, 0x60, 0x52, 0x55, 0x53, 0x4c, 0x47, 0x4a, 0x52, 0x59,\n    0x67, 0x6b, 0x6f, 0x6f, 0x6d, 0x6a, 0x64, 0x5e, 0x5a, 0x5c, 0x5d, 0x5c, 0x5f, 0x66, 0x6f, 0x74,\n    0x73, 0x6c, 0x64, 0x5e, 0x58, 0x53, 0x53, 0x55, 0x52, 0x4f, 0x51, 0x5a, 0x5f, 0x5d, 0x58, 0x56,\n    0x5a, 0x73, 0x8e, 0x9d, 0xa2, 0xa3, 0xa0, 0x9d, 0x9c, 0x99, 0x94, 0x8f, 0x8d, 0x89, 0x81, 0x79,\n    0x7a, 0x81, 0x88, 0x8a, 0x8a, 0x89, 0x85, 0x81, 0x79, 0x73, 0x6d, 0x6a, 0x69, 0x69, 0x6c, 0x70,\n    0x8c, 0x9f, 0xaf, 0xaf, 0xa2, 0x93, 0x87, 0x7f, 0x84, 0x90, 0x98, 0x8e, 0x76, 0x5c, 0x4c, 0x46,\n    0x3e, 0x3b, 0x46, 0x48, 0x4b, 0x58, 0x5b, 0x5c, 0x49, 0x54, 0x5e, 0x5c, 0x4b, 0x3a, 0x34, 0x36,\n    0x39, 0x41, 0x46, 0x42, 0x3d, 0x3b, 0x38, 0x34, 0x22, 0x1d, 0x24, 0x30, 0x33, 0x35, 0x38, 0x36,\n    0x3e, 0x41, 0x3a, 0x48, 0x5e, 0x64, 0x60, 0x54, 0x4a, 0x47, 0x4f, 0x59, 0x5c, 0x61, 0x64, 0x62,\n    0x66, 0x50, 0x40, 0x3f, 0x49, 0x5b, 0x6a, 0x6d, 0x62, 0x5d, 0x55, 0x4d, 0x4e, 0x53, 0x51, 0x4b,\n    0x3e, 0x3f, 0x3d, 0x45, 0x57, 0x65, 0x6b, 0x71, 0x76, 0x7d, 0x83, 0x7e, 0x73, 0x68, 0x5f, 0x5a,\n    0x5b, 0x56, 0x50, 0x46, 0x38, 0x2c, 0x2c, 0x32, 0x3f, 0x41, 0x4c, 0x5f, 0x6e, 0x70, 0x6d, 0x6b,\n    0x66, 0x68, 0x6b, 0x6e, 0x6e, 0x6d, 0x6d, 0x6e, 0x6c, 0x71, 0x77, 0x7b, 0x7e, 0x7a, 0x74, 0x72,\n    0x76, 0x75, 0x72, 0x6d, 0x68, 0x66, 0x67, 0x69, 0x66, 0x64, 0x62, 0x61, 0x64, 0x69, 0x6e, 0x71,\n    0x73, 0x7d, 0x8a, 0x94, 0x9c, 0xa2, 0xa5, 0xa5, 0xac, 0xa8, 0x9d, 0x92, 0x8e, 0x8e, 0x88, 0x80,\n    0x84, 0x82, 0x7d, 0x77, 0x71, 0x6e, 0x6f, 0x71, 0x64, 0x60, 0x5d, 0x5e, 0x61, 0x63, 0x62, 0x60,\n    0x59, 0x5a, 0x5c, 0x60, 0x65, 0x68, 0x68, 0x67, 0x6b, 0x72, 0x79, 0x79, 0x74, 0x71, 0x74, 0x78,\n    0x77, 0x7c, 0x82, 0x88, 0x8d, 0x90, 0x94, 0x96, 0x99, 0x96, 0x92, 0x8e, 0x8a, 0x85, 0x81, 0x7d,\n    0x8b, 0x8c, 0x87, 0x7b, 0x73, 0x77, 0x84, 0x8e, 0x97, 0x9e, 0xa3, 0xa2, 0xa0, 0xa2, 0xa7, 0xaa,\n    0xad, 0xa5, 0x9d, 0x9b, 0x9c, 0x9e, 0xa2, 0xa6, 0xa3, 0x9e, 0x97, 0x8f, 0x8c, 0x8d, 0x92, 0x96,\n    0x93, 0x95, 0x97, 0x95, 0x91, 0x8c, 0x89, 0x88, 0x84, 0x80, 0x7c, 0x79, 0x75, 0x72, 0x71, 0x73,\n    0x6e, 0x72, 0x77, 0x7c, 0x7c, 0x76, 0x6d, 0x66, 0x57, 0x55, 0x5b, 0x67, 0x72, 0x72, 0x6d, 0x68,\n    0x66, 0x63, 0x5f, 0x5d, 0x5b, 0x54, 0x46, 0x3a, 0x35, 0x41, 0x4e, 0x52, 0x4f, 0x4c, 0x4a, 0x49,\n    0x54, 0x58, 0x5c, 0x5b, 0x55, 0x51, 0x51, 0x53, 0x4e, 0x4a, 0x4c, 0x57, 0x5e, 0x5b, 0x57, 0x57,\n    0x53, 0x53, 0x56, 0x5b, 0x5f, 0x61, 0x63, 0x65, 0x6d, 0x79, 0x6b, 0x5a, 0x53, 0x53, 0x5d, 0x5d,\n    0x5c, 0x60, 0x65, 0x69, 0x6b, 0x6c, 0x6b, 0x69, 0x62, 0x60, 0x62, 0x67, 0x6b, 0x6c, 0x6a, 0x69,\n    0x66, 0x6c, 0x76, 0x76, 0x6c, 0x73, 0x9b, 0xc7, 0xe5, 0xfe, 0xff, 0xfd, 0xf5, 0xfd, 0xff, 0xf8,\n    0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xff, 0xff, 0xfe, 0xfe, 0xfe, 0xfe, 0xfd, 0xfc, 0xfb, 0xfb,\n    0xf9, 0xf9, 0xf7, 0xf6, 0xf4, 0xf3, 0xf2, 0xf2, 0xf0, 0xf0, 0xf0, 0xf0, 0xf1, 0xf2, 0xf3, 0xf4,\n    0xf5, 0xf6, 0xf7, 0xf8, 0xf9, 0xfb, 0xfc, 0xfc, 0xfd, 0xff, 0xff, 0xfb, 0xf9, 0xfb, 0xfd, 0xfd,\n    0xff, 0xf7, 0xe6, 0xd4, 0xc6, 0xbd, 0xba, 0xba, 0xb1, 0xaf, 0xac, 0xab, 0xaa, 0xa9, 0xa9, 0xa8,\n    0x9b, 0x97, 0x91, 0x8d, 0x88, 0x81, 0x78, 0x72, 0x73, 0x6f, 0x6a, 0x66, 0x63, 0x62, 0x62, 0x61,\n    0x5a, 0x5a, 0x59, 0x58, 0x57, 0x55, 0x54, 0x53, 0x52, 0x50, 0x4e, 0x4c, 0x4b, 0x49, 0x47, 0x45,\n    0x46, 0x43, 0x41, 0x42, 0x43, 0x41, 0x40, 0x41, 0x40, 0x41, 0x42, 0x43, 0x44, 0x45, 0x45, 0x45,\n    0x47, 0x46, 0x46, 0x46, 0x46, 0x47, 0x47, 0x48, 0x4a, 0x4a, 0x4a, 0x4b, 0x4b, 0x4c, 0x4c, 0x4c,\n    0x4c, 0x4c, 0x4d, 0x4d, 0x4e, 0x4e, 0x4d, 0x4d, 0x4c, 0x4c, 0x4c, 0x4b, 0x4c, 0x4c, 0x4d, 0x4d,\n    0x4b, 0x4d, 0x51, 0x58, 0x61, 0x66, 0x68, 0x67, 0x63, 0x4b, 0x36, 0x31, 0x46, 0x5a, 0x63, 0x78,\n    0x8b, 0x8e, 0x8f, 0x8d, 0x8e, 0x90, 0x91, 0x90, 0x8c, 0x96, 0xa9, 0xbd, 0xc7, 0xc6, 0xc4, 0xc5,\n    0xc6, 0xc6, 0xc2, 0xc0, 0xc2, 0xc6, 0xc8, 0xc5, 0xb6, 0x8e, 0x67, 0x5b, 0x5e, 0x5f, 0x5c, 0x5c,\n    0x60, 0x66, 0x65, 0x5c, 0x53, 0x49, 0x48, 0x51, 0x67, 0x6c, 0x6c, 0x6c, 0x6b, 0x5f, 0x51, 0x4d,\n    0x58, 0x5d, 0x5c, 0x58, 0x59, 0x5a, 0x61, 0x6c, 0x63, 0x63, 0x60, 0x57, 0x50, 0x50, 0x56, 0x5c,\n    0x53, 0x55, 0x59, 0x5e, 0x62, 0x63, 0x5f, 0x5c, 0x58, 0x5c, 0x5e, 0x5e, 0x5d, 0x60, 0x67, 0x6d,\n    0x75, 0x6e, 0x68, 0x64, 0x60, 0x5c, 0x59, 0x59, 0x56, 0x52, 0x55, 0x5c, 0x5b, 0x54, 0x53, 0x58,\n    0x71, 0x87, 0x9c, 0xa2, 0xa1, 0xa1, 0x9f, 0x9a, 0x9c, 0x97, 0x90, 0x8d, 0x8c, 0x89, 0x83, 0x7d,\n    0x82, 0x86, 0x89, 0x88, 0x87, 0x84, 0x80, 0x7b, 0x84, 0x7d, 0x75, 0x71, 0x70, 0x72, 0x7a, 0x81,\n    0x99, 0xa5, 0xaf, 0xb4, 0xb7, 0xb5, 0xa6, 0x95, 0x88, 0x88, 0x87, 0x79, 0x60, 0x4e, 0x47, 0x43,\n    0x46, 0x40, 0x43, 0x48, 0x50, 0x5b, 0x56, 0x49, 0x40, 0x4a, 0x55, 0x55, 0x48, 0x3a, 0x35, 0x37,\n    0x3b, 0x39, 0x36, 0x35, 0x3a, 0x3e, 0x36, 0x2a, 0x1a, 0x1b, 0x24, 0x31, 0x36, 0x35, 0x36, 0x38,\n    0x3f, 0x41, 0x38, 0x42, 0x56, 0x5d, 0x5e, 0x56, 0x4c, 0x49, 0x51, 0x5d, 0x60, 0x62, 0x65, 0x63,\n    0x4b, 0x3a, 0x3e, 0x5c, 0x76, 0x7b, 0x6b, 0x55, 0x5c, 0x5b, 0x53, 0x49, 0x4a, 0x52, 0x54, 0x4f,\n    0x44, 0x41, 0x3c, 0x43, 0x55, 0x5f, 0x64, 0x69, 0x66, 0x6d, 0x74, 0x74, 0x6d, 0x65, 0x5e, 0x5b,\n    0x61, 0x5a, 0x52, 0x49, 0x3b, 0x2f, 0x2e, 0x35, 0x36, 0x42, 0x52, 0x62, 0x73, 0x7b, 0x72, 0x63,\n    0x64, 0x68, 0x6c, 0x6e, 0x6f, 0x70, 0x6f, 0x6e, 0x69, 0x6e, 0x76, 0x7c, 0x7b, 0x7b, 0x7c, 0x7b,\n    0x7d, 0x7a, 0x77, 0x74, 0x71, 0x6d, 0x67, 0x63, 0x66, 0x65, 0x63, 0x61, 0x62, 0x65, 0x69, 0x6c,\n    0x70, 0x80, 0x96, 0xa7, 0xb2, 0xb9, 0xba, 0xb8, 0xb1, 0xb0, 0xac, 0xac, 0xb2, 0xb7, 0xb0, 0xa5,\n    0x9f, 0x91, 0x81, 0x79, 0x79, 0x79, 0x74, 0x6f, 0x68, 0x65, 0x63, 0x64, 0x67, 0x69, 0x69, 0x67,\n    0x69, 0x6a, 0x6e, 0x72, 0x78, 0x7c, 0x7f, 0x80, 0x81, 0x85, 0x8b, 0x8f, 0x91, 0x93, 0x96, 0x98,\n    0x9e, 0xa0, 0xa4, 0xa7, 0xa8, 0xa8, 0xa8, 0xa8, 0xa9, 0xa9, 0xa8, 0xa6, 0xa3, 0xa3, 0xa6, 0xa8,\n    0xa5, 0x9f, 0x92, 0x85, 0x80, 0x87, 0x93, 0x9b, 0x9e, 0xa2, 0xa4, 0xa4, 0xa2, 0xa1, 0x9f, 0x9d,\n    0x99, 0x98, 0x97, 0x98, 0x98, 0x98, 0x9c, 0xa1, 0xa4, 0xa3, 0x9f, 0x9b, 0x98, 0x98, 0x9a, 0x9c,\n    0x9b, 0x98, 0x93, 0x8f, 0x8d, 0x8a, 0x87, 0x84, 0x92, 0x91, 0x91, 0x92, 0x91, 0x8f, 0x91, 0x95,\n    0x94, 0x95, 0x93, 0x8c, 0x7c, 0x67, 0x52, 0x45, 0x52, 0x50, 0x4d, 0x4a, 0x45, 0x43, 0x49, 0x51,\n    0x4a, 0x42, 0x3c, 0x40, 0x48, 0x4c, 0x47, 0x41, 0x42, 0x45, 0x45, 0x41, 0x41, 0x49, 0x52, 0x56,\n    0x5e, 0x5f, 0x5e, 0x58, 0x51, 0x4e, 0x50, 0x53, 0x51, 0x4e, 0x50, 0x59, 0x5f, 0x5c, 0x57, 0x55,\n    0x52, 0x4b, 0x4e, 0x5b, 0x64, 0x62, 0x63, 0x69, 0x6f, 0x7b, 0x6c, 0x5b, 0x55, 0x58, 0x65, 0x68,\n    0x63, 0x61, 0x5f, 0x61, 0x65, 0x68, 0x69, 0x69, 0x61, 0x5f, 0x61, 0x69, 0x71, 0x72, 0x71, 0x71,\n    0x71, 0x7b, 0x7b, 0x74, 0x81, 0xab, 0xdc, 0xf9, 0xfc, 0xfa, 0xfa, 0xfd, 0xff, 0xfd, 0xfc, 0xfc,\n    0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfe, 0xfd, 0xfc, 0xfb, 0xfa,\n    0xf9, 0xf8, 0xf7, 0xf6, 0xf5, 0xf3, 0xf2, 0xf2, 0xee, 0xee, 0xed, 0xec, 0xec, 0xec, 0xed, 0xee,\n    0xf1, 0xf2, 0xf3, 0xf5, 0xf7, 0xf9, 0xfb, 0xfb, 0xf9, 0xfb, 0xfc, 0xfc, 0xfd, 0xff, 0xff, 0xfe,\n    0xf9, 0xfc, 0xfc, 0xf3, 0xe2, 0xcf, 0xbf, 0xb6, 0xb8, 0xb5, 0xb1, 0xae, 0xac, 0xab, 0xa9, 0xa7,\n    0xa3, 0x9f, 0x98, 0x92, 0x8e, 0x89, 0x83, 0x7d, 0x79, 0x75, 0x6f, 0x6a, 0x67, 0x65, 0x63, 0x62,\n    0x61, 0x60, 0x5e, 0x5c, 0x5a, 0x58, 0x57, 0x56, 0x54, 0x53, 0x50, 0x4f, 0x4e, 0x4c, 0x4a, 0x48,\n    0x4b, 0x48, 0x46, 0x47, 0x48, 0x46, 0x45, 0x46, 0x43, 0x44, 0x45, 0x46, 0x47, 0x47, 0x48, 0x48,\n    0x49, 0x49, 0x48, 0x48, 0x48, 0x49, 0x49, 0x4a, 0x4b, 0x4b, 0x4c, 0x4c, 0x4c, 0x4c, 0x4c, 0x4d,\n    0x4c, 0x4c, 0x4d, 0x4d, 0x4d, 0x4d, 0x4d, 0x4d, 0x4c, 0x4c, 0x4c, 0x4c, 0x4c, 0x4c, 0x4c, 0x4c,\n    0x4c, 0x4e, 0x53, 0x5a, 0x61, 0x66, 0x67, 0x66, 0x68, 0x5d, 0x43, 0x28, 0x2d, 0x3f, 0x4c, 0x65,\n    0x7f, 0x88, 0x90, 0x92, 0x91, 0x91, 0x91, 0x90, 0x91, 0x95, 0xa5, 0xba, 0xc6, 0xc6, 0xc3, 0xc4,\n    0xc2, 0xc1, 0xc1, 0xc2, 0xc6, 0xc9, 0xc8, 0xc5, 0xbf, 0xa8, 0x80, 0x60, 0x59, 0x60, 0x5e, 0x53,\n    0x59, 0x61, 0x64, 0x60, 0x58, 0x4e, 0x4e, 0x59, 0x6a, 0x6f, 0x6e, 0x6c, 0x6a, 0x5f, 0x50, 0x4b,\n    0x56, 0x5b, 0x5a, 0x55, 0x53, 0x51, 0x54, 0x5e, 0x73, 0x75, 0x78, 0x76, 0x6d, 0x60, 0x55, 0x4f,\n    0x5a, 0x58, 0x59, 0x5e, 0x62, 0x62, 0x5d, 0x59, 0x5d, 0x5f, 0x60, 0x5c, 0x57, 0x57, 0x5f, 0x68,\n    0x76, 0x6e, 0x66, 0x63, 0x62, 0x60, 0x5f, 0x5f, 0x5d, 0x58, 0x55, 0x54, 0x51, 0x52, 0x62, 0x76,\n    0x8f, 0x9b, 0xa3, 0xa2, 0xa2, 0xa4, 0xa1, 0x9a, 0x99, 0x93, 0x8b, 0x88, 0x87, 0x85, 0x83, 0x81,\n    0x81, 0x85, 0x88, 0x89, 0x8a, 0x89, 0x86, 0x81, 0x78, 0x73, 0x6c, 0x67, 0x63, 0x62, 0x68, 0x6f,\n    0x5b, 0x66, 0x74, 0x84, 0x99, 0xa8, 0xa3, 0x96, 0x95, 0x8c, 0x7e, 0x68, 0x52, 0x4a, 0x49, 0x45,\n    0x42, 0x3d, 0x3c, 0x45, 0x52, 0x5e, 0x5c, 0x49, 0x49, 0x4e, 0x55, 0x56, 0x4d, 0x3e, 0x33, 0x30,\n    0x39, 0x38, 0x34, 0x33, 0x38, 0x3b, 0x32, 0x26, 0x17, 0x1d, 0x27, 0x33, 0x39, 0x37, 0x37, 0x3d,\n    0x41, 0x47, 0x3c, 0x3d, 0x4b, 0x54, 0x59, 0x51, 0x3e, 0x43, 0x57, 0x6a, 0x6c, 0x65, 0x58, 0x4a,\n    0x3b, 0x36, 0x45, 0x5f, 0x6c, 0x6c, 0x68, 0x62, 0x55, 0x52, 0x4a, 0x47, 0x51, 0x63, 0x69, 0x64,\n    0x4f, 0x4c, 0x45, 0x45, 0x4c, 0x50, 0x55, 0x5f, 0x60, 0x60, 0x60, 0x61, 0x60, 0x5f, 0x60, 0x61,\n    0x5e, 0x5e, 0x5f, 0x5e, 0x55, 0x48, 0x40, 0x40, 0x30, 0x39, 0x49, 0x5c, 0x6e, 0x75, 0x6e, 0x63,\n    0x6f, 0x72, 0x74, 0x74, 0x74, 0x74, 0x71, 0x6e, 0x6c, 0x70, 0x7b, 0x83, 0x81, 0x82, 0x86, 0x83,\n    0x7d, 0x77, 0x71, 0x70, 0x72, 0x72, 0x6d, 0x68, 0x64, 0x67, 0x69, 0x6a, 0x6a, 0x6b, 0x6e, 0x71,\n    0x85, 0x93, 0xa3, 0xac, 0xb1, 0xb4, 0xb1, 0xab, 0xaf, 0xae, 0xa8, 0x9e, 0x94, 0x8c, 0x85, 0x80,\n    0x80, 0x79, 0x6f, 0x68, 0x66, 0x67, 0x6a, 0x6b, 0x71, 0x73, 0x77, 0x7d, 0x84, 0x89, 0x8d, 0x8f,\n    0x96, 0x99, 0x9d, 0xa1, 0xa3, 0xa4, 0xa3, 0xa3, 0xab, 0xaa, 0xa8, 0xa9, 0xaa, 0xaa, 0xa8, 0xa6,\n    0xa2, 0xa3, 0xa5, 0xa7, 0xa6, 0xa5, 0xa3, 0xa1, 0x9f, 0xa2, 0xa5, 0xa4, 0xa2, 0xa2, 0xa6, 0xab,\n    0xa8, 0xa8, 0xa8, 0xa6, 0xa7, 0xaa, 0xaa, 0xa9, 0xa8, 0xa7, 0xa6, 0xa6, 0xa8, 0xa9, 0xa9, 0xa7,\n    0xad, 0xad, 0xaf, 0xb0, 0xad, 0xab, 0xac, 0xb0, 0xaf, 0xae, 0xac, 0xa9, 0xa8, 0xa8, 0xaa, 0xac,\n    0xa5, 0xa1, 0x9d, 0x9c, 0x9c, 0x9b, 0x97, 0x92, 0x8b, 0x8d, 0x90, 0x93, 0x92, 0x8d, 0x8c, 0x8d,\n    0x8e, 0x8c, 0x88, 0x83, 0x7f, 0x7e, 0x7f, 0x80, 0x73, 0x6e, 0x67, 0x61, 0x5d, 0x5d, 0x5e, 0x60,\n    0x57, 0x52, 0x4f, 0x4e, 0x4e, 0x4e, 0x50, 0x53, 0x57, 0x54, 0x52, 0x55, 0x5d, 0x64, 0x64, 0x60,\n    0x64, 0x68, 0x6d, 0x6e, 0x6a, 0x64, 0x60, 0x5d, 0x5b, 0x5c, 0x5f, 0x63, 0x67, 0x66, 0x60, 0x5b,\n    0x54, 0x4e, 0x52, 0x61, 0x6a, 0x68, 0x67, 0x6b, 0x75, 0x7e, 0x6c, 0x59, 0x52, 0x52, 0x5c, 0x5d,\n    0x5b, 0x58, 0x58, 0x5e, 0x64, 0x67, 0x69, 0x6a, 0x5b, 0x5a, 0x60, 0x6d, 0x77, 0x79, 0x79, 0x7a,\n    0x7c, 0x73, 0x74, 0x93, 0xc8, 0xf3, 0xfc, 0xf2, 0xff, 0xfe, 0xf9, 0xf7, 0xfa, 0xff, 0xff, 0xff,\n    0xfe, 0xfe, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfd, 0xfc, 0xfb,\n    0xfa, 0xfa, 0xf9, 0xf8, 0xf7, 0xf5, 0xf4, 0xf3, 0xf0, 0xee, 0xeb, 0xe9, 0xe8, 0xe8, 0xe9, 0xe9,\n    0xec, 0xed, 0xef, 0xf1, 0xf3, 0xf4, 0xf6, 0xf6, 0xf7, 0xf8, 0xfa, 0xfc, 0xfe, 0xff, 0xfd, 0xfc,\n    0xfa, 0xfd, 0xff, 0xfd, 0xf7, 0xe9, 0xd6, 0xc7, 0xb8, 0xb4, 0xb1, 0xb0, 0xb1, 0xb0, 0xac, 0xa8,\n    0xa9, 0xa6, 0x9f, 0x98, 0x92, 0x8e, 0x89, 0x83, 0x80, 0x7c, 0x77, 0x72, 0x6e, 0x6a, 0x66, 0x64,\n    0x64, 0x63, 0x60, 0x5e, 0x5b, 0x59, 0x58, 0x57, 0x57, 0x55, 0x53, 0x52, 0x51, 0x50, 0x4e, 0x4c,\n    0x4d, 0x4a, 0x49, 0x4a, 0x4a, 0x48, 0x47, 0x48, 0x48, 0x48, 0x48, 0x49, 0x49, 0x4a, 0x4a, 0x4a,\n    0x4c, 0x4b, 0x4b, 0x4b, 0x4b, 0x4c, 0x4c, 0x4d, 0x4c, 0x4c, 0x4c, 0x4c, 0x4c, 0x4c, 0x4c, 0x4c,\n    0x4c, 0x4c, 0x4d, 0x4d, 0x4d, 0x4d, 0x4d, 0x4d, 0x4d, 0x4d, 0x4d, 0x4d, 0x4c, 0x4c, 0x4c, 0x4c,\n    0x4a, 0x4e, 0x54, 0x5c, 0x63, 0x68, 0x69, 0x69, 0x68, 0x67, 0x55, 0x33, 0x28, 0x31, 0x41, 0x5f,\n    0x76, 0x82, 0x8e, 0x93, 0x92, 0x92, 0x91, 0x90, 0x92, 0x94, 0x9f, 0xb3, 0xc1, 0xc6, 0xc5, 0xc5,\n    0xc5, 0xc3, 0xc2, 0xc4, 0xc8, 0xca, 0xc9, 0xc6, 0xc4, 0xbb, 0x98, 0x6a, 0x56, 0x5d, 0x60, 0x56,\n    0x5c, 0x65, 0x69, 0x69, 0x64, 0x5a, 0x5a, 0x66, 0x6e, 0x73, 0x70, 0x6c, 0x6a, 0x60, 0x51, 0x4a,\n    0x54, 0x5e, 0x65, 0x69, 0x6b, 0x65, 0x5f, 0x61, 0x63, 0x61, 0x61, 0x65, 0x6a, 0x6e, 0x70, 0x73,\n    0x6e, 0x6d, 0x6d, 0x6d, 0x6a, 0x63, 0x5b, 0x58, 0x5f, 0x5c, 0x58, 0x52, 0x4c, 0x4e, 0x5a, 0x66,\n    0x6f, 0x65, 0x5b, 0x57, 0x59, 0x5a, 0x5a, 0x5c, 0x5f, 0x60, 0x61, 0x60, 0x5e, 0x64, 0x79, 0x8e,\n    0x9f, 0xa2, 0xa4, 0xa2, 0xa2, 0xa3, 0x9f, 0x97, 0x8f, 0x89, 0x83, 0x7e, 0x7a, 0x78, 0x79, 0x7c,\n    0x80, 0x83, 0x86, 0x88, 0x8a, 0x8b, 0x88, 0x84, 0x84, 0x82, 0x7f, 0x7a, 0x72, 0x6d, 0x6d, 0x72,\n    0x7a, 0x78, 0x71, 0x6d, 0x76, 0x89, 0x9a, 0xa2, 0x93, 0x8a, 0x71, 0x54, 0x49, 0x4c, 0x4e, 0x4b,\n    0x37, 0x43, 0x47, 0x4a, 0x46, 0x4d, 0x5c, 0x58, 0x4d, 0x4b, 0x4a, 0x46, 0x3f, 0x37, 0x34, 0x35,\n    0x3c, 0x43, 0x45, 0x3d, 0x33, 0x2b, 0x23, 0x1c, 0x1a, 0x24, 0x2d, 0x37, 0x3e, 0x3a, 0x3a, 0x43,\n    0x49, 0x52, 0x49, 0x4a, 0x54, 0x58, 0x59, 0x4f, 0x31, 0x3d, 0x54, 0x67, 0x6a, 0x65, 0x55, 0x42,\n    0x2b, 0x31, 0x4a, 0x64, 0x6b, 0x67, 0x65, 0x62, 0x68, 0x5d, 0x4d, 0x46, 0x4c, 0x56, 0x57, 0x50,\n    0x4e, 0x4e, 0x48, 0x42, 0x3d, 0x39, 0x41, 0x51, 0x5b, 0x5a, 0x5b, 0x5f, 0x61, 0x61, 0x61, 0x62,\n    0x61, 0x61, 0x60, 0x5b, 0x53, 0x4a, 0x43, 0x3f, 0x35, 0x2e, 0x39, 0x57, 0x6b, 0x6c, 0x6a, 0x6e,\n    0x74, 0x76, 0x77, 0x76, 0x77, 0x77, 0x73, 0x6e, 0x67, 0x68, 0x76, 0x80, 0x7f, 0x80, 0x81, 0x79,\n    0x76, 0x71, 0x6d, 0x6e, 0x71, 0x72, 0x6e, 0x69, 0x5f, 0x67, 0x70, 0x74, 0x73, 0x71, 0x72, 0x74,\n    0x82, 0x8b, 0x94, 0x98, 0xa0, 0xa9, 0xad, 0xab, 0xa9, 0xa0, 0x92, 0x80, 0x6e, 0x63, 0x62, 0x66,\n    0x65, 0x6c, 0x72, 0x71, 0x6e, 0x71, 0x7c, 0x87, 0x89, 0x8e, 0x95, 0x9c, 0xa2, 0xa6, 0xaa, 0xad,\n    0xaa, 0xab, 0xac, 0xac, 0xac, 0xab, 0xaa, 0xa9, 0x9e, 0x9c, 0x9b, 0x9c, 0x9f, 0xa1, 0xa2, 0xa1,\n    0xa5, 0xa6, 0xa8, 0xaa, 0xaa, 0xa9, 0xa6, 0xa4, 0xab, 0xb0, 0xb4, 0xb4, 0xb1, 0xae, 0xae, 0xb0,\n    0xa9, 0xa9, 0xa7, 0xa3, 0xa5, 0xac, 0xb3, 0xb7, 0xac, 0xab, 0xaa, 0xab, 0xa9, 0xa3, 0x9c, 0x98,\n    0x96, 0x96, 0x9b, 0xa2, 0xa8, 0xaa, 0xab, 0xad, 0xb2, 0xb0, 0xad, 0xa9, 0xa8, 0xaa, 0xae, 0xb2,\n    0xad, 0xab, 0xa9, 0xa9, 0xaa, 0xa9, 0xa6, 0xa3, 0xa3, 0xa4, 0xa6, 0xa8, 0xa6, 0xa0, 0x9d, 0x9d,\n    0xa4, 0xa6, 0xa7, 0xa5, 0xa0, 0x9a, 0x97, 0x96, 0x9b, 0x98, 0x92, 0x8d, 0x8d, 0x8a, 0x7e, 0x71,\n    0x75, 0x74, 0x75, 0x78, 0x79, 0x75, 0x74, 0x75, 0x74, 0x76, 0x7c, 0x86, 0x8b, 0x87, 0x7c, 0x74,\n    0x74, 0x79, 0x80, 0x84, 0x83, 0x7c, 0x73, 0x6d, 0x6f, 0x71, 0x6e, 0x6a, 0x6b, 0x71, 0x72, 0x6e,\n    0x71, 0x6f, 0x6d, 0x6c, 0x6c, 0x6b, 0x67, 0x63, 0x75, 0x7c, 0x69, 0x58, 0x52, 0x52, 0x58, 0x55,\n    0x4d, 0x4d, 0x52, 0x5a, 0x60, 0x63, 0x66, 0x6b, 0x64, 0x61, 0x65, 0x70, 0x77, 0x79, 0x7b, 0x7f,\n    0x6f, 0x81, 0xa9, 0xd8, 0xf7, 0xfe, 0xfe, 0xff, 0xf9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xf6,\n    0xfe, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfd, 0xfc,\n    0xfc, 0xfc, 0xfb, 0xfb, 0xf9, 0xf7, 0xf6, 0xf5, 0xf3, 0xf0, 0xec, 0xe9, 0xe6, 0xe6, 0xe6, 0xe7,\n    0xe8, 0xe8, 0xea, 0xeb, 0xed, 0xed, 0xed, 0xed, 0xf2, 0xf3, 0xf4, 0xf6, 0xf7, 0xf7, 0xf8, 0xfa,\n    0xff, 0xff, 0xfc, 0xfa, 0xfb, 0xfa, 0xf1, 0xe6, 0xcb, 0xc2, 0xb8, 0xb4, 0xb4, 0xb4, 0xb0, 0xab,\n    0xa9, 0xa9, 0xa6, 0x9e, 0x98, 0x95, 0x90, 0x8b, 0x88, 0x86, 0x82, 0x7d, 0x78, 0x72, 0x6b, 0x68,\n    0x65, 0x64, 0x61, 0x5e, 0x5c, 0x5a, 0x58, 0x58, 0x59, 0x58, 0x56, 0x55, 0x55, 0x54, 0x52, 0x51,\n    0x4f, 0x4c, 0x4a, 0x4b, 0x4b, 0x4a, 0x49, 0x49, 0x4d, 0x4d, 0x4c, 0x4b, 0x4c, 0x4c, 0x4d, 0x4e,\n    0x4f, 0x4f, 0x4e, 0x4e, 0x4f, 0x4f, 0x50, 0x50, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4d, 0x4d, 0x4d,\n    0x4c, 0x4d, 0x4d, 0x4e, 0x4e, 0x4f, 0x4f, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4d, 0x4c, 0x4c,\n    0x4c, 0x50, 0x57, 0x5f, 0x66, 0x6a, 0x6b, 0x6b, 0x6b, 0x6a, 0x64, 0x48, 0x30, 0x2b, 0x3b, 0x5f,\n    0x71, 0x7b, 0x86, 0x8c, 0x8f, 0x91, 0x90, 0x8f, 0x90, 0x91, 0x98, 0xa8, 0xb9, 0xc4, 0xc5, 0xc4,\n    0xc8, 0xc7, 0xc5, 0xc6, 0xc7, 0xc6, 0xc5, 0xc5, 0xc8, 0xc4, 0xab, 0x83, 0x63, 0x5b, 0x5d, 0x5d,\n    0x64, 0x6a, 0x6e, 0x70, 0x6c, 0x62, 0x61, 0x6c, 0x6e, 0x72, 0x6f, 0x69, 0x69, 0x61, 0x53, 0x4c,\n    0x55, 0x5f, 0x68, 0x74, 0x81, 0x7f, 0x75, 0x71, 0x64, 0x5f, 0x5d, 0x5e, 0x5d, 0x5a, 0x57, 0x58,\n    0x67, 0x6c, 0x73, 0x75, 0x6c, 0x60, 0x5a, 0x5b, 0x5d, 0x56, 0x4e, 0x4a, 0x49, 0x4d, 0x58, 0x62,\n    0x67, 0x5e, 0x56, 0x55, 0x58, 0x57, 0x55, 0x53, 0x58, 0x61, 0x6a, 0x6f, 0x73, 0x7c, 0x8c, 0x99,\n    0x9f, 0x9f, 0xa0, 0x9f, 0x9d, 0x9b, 0x98, 0x97, 0x8d, 0x8a, 0x87, 0x81, 0x79, 0x73, 0x76, 0x7d,\n    0x85, 0x86, 0x86, 0x85, 0x86, 0x87, 0x84, 0x80, 0x7d, 0x7c, 0x7b, 0x77, 0x70, 0x6c, 0x6f, 0x75,\n    0x8b, 0x8b, 0x89, 0x83, 0x7d, 0x7c, 0x81, 0x85, 0x99, 0x92, 0x6c, 0x45, 0x40, 0x47, 0x43, 0x3d,\n    0x3b, 0x45, 0x45, 0x48, 0x46, 0x4c, 0x5b, 0x51, 0x53, 0x57, 0x59, 0x55, 0x48, 0x3b, 0x38, 0x3b,\n    0x41, 0x4a, 0x4c, 0x3e, 0x2c, 0x20, 0x19, 0x16, 0x21, 0x2d, 0x36, 0x3e, 0x45, 0x3e, 0x3b, 0x47,\n    0x51, 0x56, 0x51, 0x5b, 0x66, 0x60, 0x5a, 0x50, 0x35, 0x44, 0x58, 0x62, 0x62, 0x63, 0x5b, 0x49,\n    0x45, 0x3d, 0x44, 0x55, 0x63, 0x6b, 0x6a, 0x62, 0x3e, 0x3b, 0x3a, 0x40, 0x49, 0x4d, 0x49, 0x43,\n    0x43, 0x48, 0x46, 0x3e, 0x33, 0x2b, 0x34, 0x49, 0x59, 0x5a, 0x5f, 0x65, 0x66, 0x64, 0x64, 0x67,\n    0x67, 0x65, 0x5b, 0x4d, 0x45, 0x44, 0x42, 0x3e, 0x3d, 0x31, 0x37, 0x57, 0x6f, 0x71, 0x6d, 0x70,\n    0x6c, 0x6d, 0x6e, 0x6e, 0x71, 0x74, 0x70, 0x6a, 0x68, 0x66, 0x75, 0x82, 0x81, 0x83, 0x80, 0x72,\n    0x67, 0x6a, 0x6f, 0x76, 0x77, 0x70, 0x63, 0x59, 0x58, 0x63, 0x70, 0x76, 0x74, 0x6f, 0x6e, 0x6f,\n    0x6c, 0x70, 0x70, 0x6f, 0x77, 0x86, 0x90, 0x92, 0x88, 0x78, 0x66, 0x59, 0x51, 0x4f, 0x58, 0x63,\n    0x75, 0x7a, 0x82, 0x8a, 0x92, 0x99, 0x9f, 0xa4, 0xa3, 0xa7, 0xac, 0xad, 0xaa, 0xa8, 0xa7, 0xa8,\n    0xa6, 0xa4, 0xa1, 0x9e, 0x9d, 0x9e, 0xa0, 0xa3, 0xa7, 0xa6, 0xa6, 0xa9, 0xae, 0xb3, 0xb7, 0xb8,\n    0xad, 0xae, 0xae, 0xaf, 0xae, 0xab, 0xa7, 0xa4, 0xaa, 0xaf, 0xb4, 0xb5, 0xb2, 0xac, 0xa7, 0xa4,\n    0xa2, 0xa7, 0xa9, 0xa5, 0xa0, 0xa1, 0xa6, 0xa9, 0xa9, 0xab, 0xae, 0xab, 0x9f, 0x8a, 0x75, 0x69,\n    0x66, 0x6c, 0x7c, 0x93, 0xa7, 0xaf, 0xaf, 0xac, 0xab, 0xac, 0xad, 0xad, 0xac, 0xab, 0xab, 0xac,\n    0xaa, 0xaa, 0xab, 0xab, 0xab, 0xac, 0xad, 0xae, 0xa8, 0xa7, 0xa7, 0xa9, 0xa9, 0xa7, 0xa8, 0xaa,\n    0xac, 0xac, 0xac, 0xa8, 0xa3, 0xa1, 0xa1, 0xa3, 0xa3, 0xab, 0xac, 0xa4, 0x9f, 0x9f, 0x9c, 0x95,\n    0x90, 0x86, 0x7f, 0x83, 0x88, 0x85, 0x7d, 0x78, 0x84, 0x89, 0x92, 0x9b, 0x9e, 0xa0, 0xa7, 0xb0,\n    0xaa, 0xa6, 0xa0, 0x9c, 0x99, 0x96, 0x93, 0x91, 0x7e, 0x7d, 0x73, 0x65, 0x65, 0x73, 0x7c, 0x7c,\n    0x7e, 0x82, 0x7b, 0x6e, 0x6d, 0x76, 0x77, 0x6f, 0x6d, 0x76, 0x66, 0x5a, 0x5a, 0x5d, 0x63, 0x5e,\n    0x5a, 0x5b, 0x60, 0x65, 0x67, 0x68, 0x6d, 0x75, 0x76, 0x6f, 0x6c, 0x71, 0x74, 0x74, 0x79, 0x81,\n    0x90, 0xbf, 0xef, 0xff, 0xfb, 0xf9, 0xfb, 0xfc, 0xff, 0xf9, 0xf8, 0xff, 0xff, 0xfa, 0xfc, 0xff,\n    0xfe, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfd,\n    0xfd, 0xfd, 0xfd, 0xfc, 0xfb, 0xf9, 0xf7, 0xf6, 0xf5, 0xf2, 0xee, 0xe9, 0xe6, 0xe5, 0xe5, 0xe6,\n    0xe5, 0xe6, 0xe7, 0xe7, 0xe8, 0xe7, 0xe7, 0xe6, 0xe8, 0xea, 0xee, 0xf0, 0xf2, 0xf4, 0xfa, 0xff,\n    0xf9, 0xfc, 0xfd, 0xfb, 0xfc, 0xfd, 0xfa, 0xf5, 0xef, 0xdf, 0xca, 0xbc, 0xb7, 0xb5, 0xb1, 0xac,\n    0xa9, 0xac, 0xac, 0xa6, 0xa1, 0x9e, 0x99, 0x94, 0x8f, 0x8d, 0x8a, 0x86, 0x80, 0x78, 0x71, 0x6c,\n    0x68, 0x66, 0x64, 0x61, 0x5f, 0x5d, 0x5c, 0x5c, 0x5b, 0x5a, 0x58, 0x58, 0x58, 0x57, 0x55, 0x54,\n    0x53, 0x50, 0x4e, 0x4f, 0x4f, 0x4e, 0x4d, 0x4d, 0x51, 0x50, 0x4e, 0x4d, 0x4d, 0x4e, 0x4f, 0x50,\n    0x51, 0x51, 0x51, 0x51, 0x51, 0x51, 0x52, 0x52, 0x51, 0x51, 0x51, 0x50, 0x50, 0x50, 0x4f, 0x4f,\n    0x4d, 0x4d, 0x4e, 0x4f, 0x50, 0x50, 0x50, 0x50, 0x51, 0x51, 0x51, 0x50, 0x4f, 0x4e, 0x4d, 0x4d,\n    0x50, 0x54, 0x5b, 0x62, 0x68, 0x6b, 0x6b, 0x6b, 0x71, 0x6c, 0x6e, 0x5b, 0x3b, 0x2a, 0x38, 0x60,\n    0x6e, 0x74, 0x7c, 0x82, 0x88, 0x8c, 0x8d, 0x8a, 0x90, 0x90, 0x95, 0xa1, 0xb4, 0xc2, 0xc5, 0xc2,\n    0xc3, 0xc4, 0xc6, 0xc8, 0xc6, 0xc4, 0xc4, 0xc5, 0xc7, 0xc5, 0xbd, 0xa4, 0x7f, 0x60, 0x56, 0x5b,\n    0x66, 0x6b, 0x6e, 0x6f, 0x6c, 0x61, 0x5f, 0x6a, 0x6b, 0x70, 0x6c, 0x67, 0x67, 0x61, 0x54, 0x4d,\n    0x54, 0x58, 0x5b, 0x67, 0x79, 0x7d, 0x75, 0x70, 0x78, 0x75, 0x73, 0x71, 0x6a, 0x5d, 0x53, 0x50,\n    0x4b, 0x59, 0x6a, 0x70, 0x67, 0x5b, 0x5a, 0x5f, 0x5a, 0x51, 0x49, 0x49, 0x4d, 0x51, 0x57, 0x5c,\n    0x66, 0x60, 0x5d, 0x60, 0x63, 0x5e, 0x56, 0x50, 0x50, 0x59, 0x63, 0x6b, 0x76, 0x88, 0x9a, 0xa5,\n    0x9c, 0x9c, 0x9d, 0x9c, 0x98, 0x93, 0x95, 0x9a, 0x99, 0x99, 0x97, 0x91, 0x85, 0x7d, 0x80, 0x89,\n    0x89, 0x89, 0x87, 0x84, 0x85, 0x86, 0x85, 0x81, 0x7f, 0x7d, 0x7a, 0x77, 0x74, 0x76, 0x80, 0x8a,\n    0x82, 0x7c, 0x78, 0x78, 0x7c, 0x84, 0x90, 0x9b, 0x98, 0x95, 0x6b, 0x40, 0x41, 0x4c, 0x45, 0x3d,\n    0x3e, 0x34, 0x28, 0x44, 0x6f, 0x89, 0x89, 0x63, 0x77, 0x89, 0x9b, 0x9a, 0x81, 0x60, 0x4b, 0x44,\n    0x41, 0x46, 0x43, 0x36, 0x2a, 0x24, 0x20, 0x1d, 0x25, 0x34, 0x3d, 0x44, 0x4a, 0x41, 0x3c, 0x48,\n    0x53, 0x51, 0x4d, 0x60, 0x6d, 0x61, 0x56, 0x50, 0x40, 0x53, 0x68, 0x6c, 0x65, 0x63, 0x59, 0x45,\n    0x3b, 0x37, 0x42, 0x56, 0x62, 0x5f, 0x4c, 0x34, 0x2c, 0x33, 0x42, 0x52, 0x58, 0x4e, 0x40, 0x37,\n    0x3e, 0x46, 0x48, 0x41, 0x35, 0x2c, 0x36, 0x4d, 0x5f, 0x5e, 0x5f, 0x60, 0x5f, 0x61, 0x6b, 0x76,\n    0x68, 0x6a, 0x63, 0x55, 0x50, 0x53, 0x50, 0x49, 0x3e, 0x39, 0x3e, 0x57, 0x72, 0x7b, 0x72, 0x66,\n    0x68, 0x69, 0x68, 0x69, 0x6d, 0x71, 0x72, 0x70, 0x68, 0x6e, 0x78, 0x82, 0x88, 0x85, 0x7e, 0x78,\n    0x6e, 0x6d, 0x70, 0x76, 0x77, 0x72, 0x6d, 0x6b, 0x69, 0x6e, 0x77, 0x7f, 0x7e, 0x77, 0x72, 0x72,\n    0x75, 0x6c, 0x68, 0x6a, 0x68, 0x62, 0x62, 0x69, 0x5d, 0x5d, 0x5d, 0x61, 0x68, 0x73, 0x80, 0x88,\n    0x8f, 0x94, 0x9b, 0x9f, 0xa2, 0xa5, 0xaa, 0xad, 0xae, 0xac, 0xa8, 0xa5, 0xa4, 0xa2, 0xa1, 0xa0,\n    0xa4, 0xac, 0xb1, 0xb0, 0xae, 0xb0, 0xb2, 0xb3, 0xb1, 0xb1, 0xb0, 0xaf, 0xad, 0xad, 0xaf, 0xb1,\n    0xb3, 0xb0, 0xac, 0xaa, 0xab, 0xac, 0xac, 0xab, 0xab, 0xab, 0xad, 0xb0, 0xb2, 0xaf, 0xa7, 0xa0,\n    0x9f, 0xa8, 0xaf, 0xac, 0xa3, 0xa0, 0xa8, 0xb1, 0xb6, 0xb3, 0xb0, 0xb0, 0xb1, 0xb0, 0xab, 0xa6,\n    0xa0, 0xa1, 0xa3, 0xa8, 0xae, 0xb2, 0xb3, 0xb3, 0xb1, 0xb4, 0xb6, 0xb5, 0xb1, 0xaf, 0xaf, 0xb1,\n    0xb3, 0xb1, 0xaf, 0xae, 0xae, 0xaf, 0xb0, 0xb1, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xab, 0xab,\n    0xa9, 0xa8, 0xa8, 0xa9, 0xaa, 0xab, 0xa9, 0xa7, 0xa6, 0xa6, 0xa6, 0xa8, 0xaa, 0xac, 0xab, 0xaa,\n    0xa5, 0x9f, 0x9a, 0x9b, 0xa1, 0xa5, 0xa3, 0xa0, 0x99, 0x95, 0x90, 0x8e, 0x8f, 0x93, 0x96, 0x98,\n    0x98, 0x9b, 0xa1, 0xa7, 0xab, 0xac, 0xa9, 0xa6, 0xa5, 0xa4, 0xa1, 0x9c, 0x95, 0x8e, 0x89, 0x87,\n    0x8b, 0x89, 0x88, 0x88, 0x85, 0x7e, 0x78, 0x76, 0x73, 0x72, 0x6c, 0x66, 0x64, 0x65, 0x62, 0x5d,\n    0x58, 0x5a, 0x5a, 0x5b, 0x65, 0x71, 0x75, 0x70, 0x63, 0x6d, 0x72, 0x7b, 0x83, 0x7d, 0x7c, 0x8c,\n    0xca, 0xe4, 0xfa, 0xfd, 0xfc, 0xff, 0xff, 0xfb, 0xfd, 0xfd, 0xfd, 0xfe, 0xfe, 0xff, 0xff, 0xff,\n    0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfe,\n    0xff, 0xff, 0xff, 0xff, 0xfe, 0xfd, 0xfd, 0xfd, 0xfa, 0xf9, 0xf7, 0xf4, 0xf0, 0xec, 0xe9, 0xe7,\n    0xe7, 0xe4, 0xe1, 0xdf, 0xe0, 0xe2, 0xe3, 0xe4, 0xe6, 0xe8, 0xea, 0xec, 0xed, 0xf0, 0xf4, 0xf7,\n    0xfa, 0xfa, 0xfa, 0xf9, 0xf8, 0xf8, 0xfa, 0xfc, 0xfd, 0xf5, 0xe4, 0xce, 0xbd, 0xb5, 0xb3, 0xb2,\n    0xab, 0xaa, 0xaa, 0xa8, 0xa5, 0xa1, 0x9d, 0x9a, 0x97, 0x90, 0x8b, 0x8a, 0x87, 0x80, 0x79, 0x77,\n    0x70, 0x6c, 0x67, 0x64, 0x64, 0x63, 0x60, 0x5d, 0x5d, 0x5c, 0x5a, 0x58, 0x57, 0x56, 0x56, 0x57,\n    0x54, 0x54, 0x54, 0x54, 0x53, 0x53, 0x53, 0x53, 0x52, 0x51, 0x4f, 0x4e, 0x4f, 0x51, 0x53, 0x55,\n    0x54, 0x55, 0x56, 0x55, 0x53, 0x53, 0x54, 0x55, 0x55, 0x55, 0x55, 0x54, 0x54, 0x53, 0x53, 0x52,\n    0x54, 0x54, 0x54, 0x54, 0x54, 0x53, 0x53, 0x53, 0x55, 0x56, 0x56, 0x54, 0x52, 0x50, 0x50, 0x50,\n    0x53, 0x56, 0x5c, 0x62, 0x66, 0x6a, 0x6e, 0x70, 0x77, 0x6a, 0x70, 0x67, 0x49, 0x35, 0x40, 0x62,\n    0x6f, 0x7a, 0x7d, 0x7c, 0x82, 0x87, 0x89, 0x8d, 0x90, 0x8e, 0x8d, 0x94, 0xa8, 0xbd, 0xc4, 0xc0,\n    0xc2, 0xc2, 0xc1, 0xc1, 0xc1, 0xc0, 0xc0, 0xc0, 0xc2, 0xbb, 0xb7, 0xaf, 0x96, 0x78, 0x6b, 0x6e,\n    0x70, 0x70, 0x6f, 0x6c, 0x67, 0x64, 0x66, 0x6b, 0x6e, 0x6b, 0x6e, 0x73, 0x70, 0x62, 0x56, 0x53,\n    0x55, 0x55, 0x5b, 0x69, 0x76, 0x74, 0x66, 0x59, 0x54, 0x59, 0x66, 0x72, 0x73, 0x69, 0x5e, 0x5a,\n    0x5d, 0x62, 0x62, 0x67, 0x60, 0x53, 0x5a, 0x5e, 0x59, 0x4f, 0x4f, 0x4b, 0x4b, 0x4e, 0x4f, 0x5a,\n    0x64, 0x67, 0x67, 0x60, 0x57, 0x52, 0x54, 0x58, 0x5d, 0x58, 0x58, 0x64, 0x79, 0x8c, 0x96, 0x9a,\n    0x9f, 0x9d, 0x9b, 0x98, 0x95, 0x93, 0x92, 0x92, 0x8f, 0x91, 0x91, 0x8e, 0x8c, 0x8d, 0x8f, 0x8e,\n    0x8c, 0x8a, 0x87, 0x85, 0x83, 0x81, 0x7f, 0x7e, 0x76, 0x7b, 0x79, 0x73, 0x76, 0x87, 0x97, 0x9f,\n    0x8d, 0x7d, 0x71, 0x73, 0x79, 0x7c, 0x83, 0x8c, 0x95, 0x7e, 0x60, 0x4d, 0x4a, 0x4c, 0x4b, 0x47,\n    0x43, 0x50, 0x5a, 0x64, 0x6c, 0x68, 0x5c, 0x56, 0x60, 0x61, 0x75, 0x93, 0x9e, 0x92, 0x89, 0x8b,\n    0x7f, 0x75, 0x69, 0x4e, 0x2d, 0x23, 0x24, 0x1d, 0x26, 0x31, 0x3c, 0x44, 0x42, 0x38, 0x3d, 0x4f,\n    0x58, 0x4f, 0x56, 0x5f, 0x71, 0x66, 0x57, 0x43, 0x47, 0x54, 0x63, 0x6a, 0x6a, 0x64, 0x5c, 0x55,\n    0x41, 0x3f, 0x48, 0x58, 0x5c, 0x54, 0x53, 0x5a, 0x57, 0x69, 0x70, 0x67, 0x5c, 0x4f, 0x43, 0x3f,\n    0x4d, 0x52, 0x51, 0x43, 0x33, 0x32, 0x45, 0x59, 0x67, 0x6f, 0x6e, 0x60, 0x55, 0x59, 0x60, 0x62,\n    0x5f, 0x60, 0x55, 0x52, 0x4e, 0x48, 0x49, 0x42, 0x42, 0x35, 0x40, 0x64, 0x78, 0x6e, 0x62, 0x62,\n    0x6b, 0x66, 0x61, 0x64, 0x6e, 0x77, 0x77, 0x72, 0x67, 0x6e, 0x79, 0x84, 0x89, 0x87, 0x7f, 0x79,\n    0x69, 0x6e, 0x74, 0x77, 0x77, 0x76, 0x75, 0x74, 0x7a, 0x80, 0x89, 0x8d, 0x88, 0x7d, 0x78, 0x79,\n    0x75, 0x6d, 0x66, 0x63, 0x61, 0x62, 0x69, 0x71, 0x8c, 0x8e, 0x90, 0x92, 0x94, 0x97, 0x9a, 0x9c,\n    0xa9, 0xaa, 0xaa, 0xa6, 0xa0, 0x9c, 0x9a, 0x9b, 0x9e, 0xa2, 0xa9, 0xb1, 0xb6, 0xb6, 0xb3, 0xb0,\n    0xb2, 0xb6, 0xb8, 0xb5, 0xb2, 0xb2, 0xb3, 0xb2, 0xb1, 0xb1, 0xb1, 0xae, 0xab, 0xaa, 0xa9, 0xaa,\n    0xb1, 0xaf, 0xad, 0xad, 0xaf, 0xb0, 0xb1, 0xb0, 0xae, 0xae, 0xae, 0xaf, 0xaf, 0xab, 0xa4, 0x9f,\n    0x9f, 0xa6, 0xac, 0xa8, 0xa1, 0x9e, 0xa4, 0xab, 0xac, 0xaa, 0xaa, 0xab, 0xad, 0xad, 0xab, 0xa8,\n    0xa8, 0xa9, 0xaa, 0xac, 0xaf, 0xb1, 0xb1, 0xb0, 0xab, 0xad, 0xaf, 0xb0, 0xae, 0xad, 0xae, 0xaf,\n    0xb1, 0xb0, 0xaf, 0xad, 0xac, 0xab, 0xab, 0xab, 0xa8, 0xa7, 0xa7, 0xa7, 0xa7, 0xa7, 0xa7, 0xa7,\n    0xa8, 0xa8, 0xaa, 0xac, 0xaf, 0xaf, 0xad, 0xaa, 0xb0, 0xaf, 0xac, 0xa7, 0xa1, 0x9b, 0x98, 0x96,\n    0xa5, 0xa3, 0xa1, 0xa2, 0xa5, 0xa8, 0xa9, 0xa9, 0xab, 0xab, 0xac, 0xad, 0xaf, 0xae, 0xad, 0xab,\n    0xa0, 0x9b, 0x93, 0x8e, 0x8d, 0x8f, 0x93, 0x95, 0x9f, 0xa3, 0xa8, 0xac, 0xad, 0xa9, 0xa3, 0x9e,\n    0x9b, 0x98, 0x96, 0x93, 0x8b, 0x7f, 0x73, 0x6e, 0x67, 0x66, 0x64, 0x62, 0x65, 0x69, 0x68, 0x64,\n    0x6a, 0x6e, 0x6d, 0x69, 0x68, 0x6b, 0x69, 0x63, 0x5f, 0x66, 0x70, 0x77, 0x73, 0x76, 0x9c, 0xce,\n    0xef, 0xfb, 0xff, 0xfe, 0xfb, 0xfe, 0xfe, 0xfa, 0xfd, 0xfd, 0xfd, 0xfe, 0xff, 0xff, 0xff, 0xff,\n    0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfe,\n    0xff, 0xff, 0xff, 0xfe, 0xfe, 0xfd, 0xfd, 0xfd, 0xfc, 0xfb, 0xfa, 0xf8, 0xf5, 0xf2, 0xef, 0xee,\n    0xe8, 0xe5, 0xe1, 0xde, 0xdd, 0xde, 0xdf, 0xdf, 0xdf, 0xe1, 0xe3, 0xe4, 0xe6, 0xe8, 0xec, 0xef,\n    0xf5, 0xf7, 0xf9, 0xfa, 0xfa, 0xf9, 0xf9, 0xf9, 0xed, 0xfc, 0xff, 0xf5, 0xd6, 0xbc, 0xaf, 0xad,\n    0xba, 0xa6, 0x9f, 0xab, 0xad, 0x9f, 0x9c, 0xa6, 0x9d, 0x98, 0x93, 0x91, 0x8d, 0x86, 0x80, 0x7f,\n    0x7c, 0x76, 0x6f, 0x69, 0x66, 0x63, 0x61, 0x5f, 0x61, 0x60, 0x5f, 0x5d, 0x5b, 0x59, 0x57, 0x57,\n    0x57, 0x57, 0x57, 0x57, 0x57, 0x56, 0x56, 0x56, 0x54, 0x53, 0x52, 0x51, 0x51, 0x53, 0x54, 0x55,\n    0x57, 0x58, 0x59, 0x58, 0x56, 0x56, 0x56, 0x58, 0x57, 0x57, 0x57, 0x57, 0x56, 0x56, 0x56, 0x55,\n    0x56, 0x56, 0x56, 0x56, 0x56, 0x55, 0x55, 0x55, 0x57, 0x57, 0x57, 0x55, 0x53, 0x52, 0x52, 0x53,\n    0x56, 0x5a, 0x5f, 0x65, 0x69, 0x6c, 0x6f, 0x71, 0x73, 0x6d, 0x76, 0x73, 0x5c, 0x44, 0x46, 0x66,\n    0x72, 0x7a, 0x7d, 0x7e, 0x84, 0x87, 0x88, 0x8e, 0x8e, 0x8e, 0x8f, 0x95, 0xa6, 0xb9, 0xc1, 0xbf,\n    0xbf, 0xc0, 0xc0, 0xc1, 0xc0, 0xc0, 0xbf, 0xbe, 0xba, 0xb7, 0xb7, 0xb5, 0xa5, 0x89, 0x6f, 0x63,\n    0x6d, 0x6e, 0x6e, 0x69, 0x64, 0x64, 0x67, 0x6a, 0x6e, 0x6c, 0x6d, 0x70, 0x6b, 0x5f, 0x56, 0x54,\n    0x53, 0x5a, 0x5d, 0x5d, 0x69, 0x74, 0x6d, 0x5b, 0x48, 0x46, 0x48, 0x4e, 0x53, 0x57, 0x60, 0x6a,\n    0x71, 0x77, 0x75, 0x71, 0x5f, 0x4f, 0x5a, 0x66, 0x58, 0x4b, 0x4b, 0x4c, 0x4f, 0x51, 0x4d, 0x55,\n    0x63, 0x64, 0x63, 0x5c, 0x53, 0x4f, 0x52, 0x56, 0x5c, 0x59, 0x5f, 0x71, 0x85, 0x91, 0x96, 0x98,\n    0x99, 0x9b, 0x9f, 0xa2, 0xa1, 0x9c, 0x97, 0x93, 0x92, 0x8f, 0x89, 0x83, 0x84, 0x88, 0x8b, 0x8b,\n    0x8e, 0x8c, 0x89, 0x86, 0x85, 0x83, 0x81, 0x7f, 0x81, 0x79, 0x6f, 0x6c, 0x73, 0x86, 0x9d, 0xad,\n    0xbc, 0xb6, 0xad, 0xa0, 0x8d, 0x7a, 0x73, 0x75, 0x7d, 0x6d, 0x55, 0x43, 0x3e, 0x4d, 0x6b, 0x85,\n    0x8a, 0x87, 0x7b, 0x6e, 0x6b, 0x6d, 0x78, 0x88, 0x8d, 0x95, 0x9b, 0x9a, 0x97, 0x9c, 0xa6, 0xae,\n    0xb5, 0xb8, 0xb3, 0x8e, 0x52, 0x25, 0x18, 0x19, 0x26, 0x2e, 0x2f, 0x2c, 0x2d, 0x31, 0x40, 0x53,\n    0x5a, 0x58, 0x5e, 0x5c, 0x68, 0x63, 0x5d, 0x4f, 0x52, 0x59, 0x61, 0x65, 0x62, 0x58, 0x46, 0x38,\n    0x38, 0x47, 0x58, 0x60, 0x61, 0x61, 0x61, 0x62, 0x64, 0x70, 0x74, 0x6e, 0x63, 0x55, 0x50, 0x56,\n    0x51, 0x4e, 0x47, 0x3b, 0x2f, 0x32, 0x48, 0x5f, 0x7a, 0x76, 0x7a, 0x7c, 0x6f, 0x5a, 0x54, 0x5d,\n    0x65, 0x64, 0x60, 0x65, 0x5e, 0x4d, 0x4c, 0x4b, 0x40, 0x44, 0x52, 0x64, 0x69, 0x62, 0x5f, 0x63,\n    0x75, 0x6c, 0x62, 0x64, 0x72, 0x7e, 0x7d, 0x76, 0x6b, 0x71, 0x7b, 0x83, 0x86, 0x82, 0x79, 0x73,\n    0x75, 0x81, 0x8a, 0x88, 0x84, 0x85, 0x88, 0x89, 0x87, 0x86, 0x82, 0x79, 0x6e, 0x67, 0x69, 0x70,\n    0x74, 0x74, 0x75, 0x78, 0x7d, 0x86, 0x91, 0x99, 0x9e, 0xa2, 0xa7, 0xac, 0xae, 0xaf, 0xaf, 0xb0,\n    0xa3, 0xa5, 0xa7, 0xa8, 0xa9, 0xaa, 0xad, 0xb0, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb5, 0xb3, 0xb0,\n    0xb3, 0xb4, 0xb3, 0xb0, 0xad, 0xad, 0xab, 0xa9, 0xac, 0xad, 0xae, 0xae, 0xac, 0xab, 0xab, 0xac,\n    0xac, 0xaa, 0xa8, 0xa7, 0xa7, 0xa6, 0xa4, 0xa3, 0xa2, 0xa3, 0xa5, 0xa6, 0xa6, 0xa5, 0xa4, 0xa3,\n    0xa4, 0xa7, 0xa8, 0xa3, 0x9b, 0x98, 0x9a, 0x9e, 0xa1, 0xa1, 0xa2, 0xa3, 0xa4, 0xa3, 0xa2, 0xa1,\n    0x9e, 0x9f, 0xa0, 0xa0, 0xa0, 0xa0, 0xa0, 0xa0, 0xa4, 0xa5, 0xa7, 0xa8, 0xa8, 0xa8, 0xa8, 0xa7,\n    0xa9, 0xa9, 0xaa, 0xab, 0xab, 0xab, 0xaa, 0xaa, 0xa5, 0xa5, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa5,\n    0xa9, 0xaa, 0xad, 0xb0, 0xb2, 0xb2, 0xb0, 0xad, 0xaa, 0xad, 0xb0, 0xb0, 0xaf, 0xaf, 0xb1, 0xb3,\n    0xb1, 0xb2, 0xb2, 0xaf, 0xac, 0xab, 0xad, 0xb0, 0xb0, 0xae, 0xac, 0xab, 0xac, 0xad, 0xae, 0xae,\n    0xad, 0xac, 0xac, 0xab, 0xaa, 0xa7, 0xa4, 0xa1, 0xa8, 0xa2, 0x9a, 0x97, 0x9a, 0xa1, 0xa7, 0xab,\n    0xac, 0xa4, 0x9b, 0x96, 0x93, 0x92, 0x94, 0x97, 0x94, 0x8e, 0x84, 0x7d, 0x7e, 0x82, 0x83, 0x81,\n    0x78, 0x7e, 0x81, 0x7d, 0x79, 0x77, 0x73, 0x6e, 0x76, 0x7c, 0x7e, 0x77, 0x7a, 0x9f, 0xd5, 0xf8,\n    0xff, 0xff, 0xfe, 0xfb, 0xfa, 0xfd, 0xfe, 0xfe, 0xfd, 0xfe, 0xfe, 0xfe, 0xff, 0xff, 0xff, 0xff,\n    0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfe,\n    0xff, 0xff, 0xff, 0xfe, 0xfe, 0xfe, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfc, 0xfa, 0xf8, 0xf6, 0xf5,\n    0xef, 0xec, 0xe7, 0xe3, 0xe1, 0xe0, 0xde, 0xdd, 0xde, 0xdf, 0xe0, 0xe0, 0xe1, 0xe3, 0xe6, 0xe8,\n    0xed, 0xf1, 0xf6, 0xfa, 0xfa, 0xf9, 0xf7, 0xf7, 0xfc, 0xf8, 0xf6, 0xf7, 0xf7, 0xea, 0xce, 0xb6,\n    0xaa, 0xb0, 0xaf, 0xa7, 0xa5, 0xaa, 0xa8, 0xa0, 0xa2, 0x9e, 0x99, 0x96, 0x90, 0x89, 0x85, 0x84,\n    0x86, 0x83, 0x7d, 0x76, 0x70, 0x6a, 0x65, 0x62, 0x62, 0x62, 0x60, 0x5f, 0x5d, 0x5b, 0x59, 0x58,\n    0x5b, 0x5b, 0x5b, 0x5b, 0x5a, 0x5a, 0x59, 0x59, 0x57, 0x57, 0x56, 0x56, 0x56, 0x56, 0x56, 0x57,\n    0x57, 0x57, 0x58, 0x57, 0x56, 0x56, 0x56, 0x57, 0x5a, 0x5a, 0x59, 0x59, 0x59, 0x59, 0x59, 0x59,\n    0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0x5a, 0x59, 0x58, 0x56, 0x54, 0x54, 0x55, 0x57,\n    0x5b, 0x5f, 0x64, 0x69, 0x6c, 0x6e, 0x70, 0x72, 0x70, 0x6f, 0x77, 0x79, 0x6d, 0x53, 0x4c, 0x6b,\n    0x7a, 0x7e, 0x7f, 0x82, 0x87, 0x87, 0x88, 0x8f, 0x8d, 0x8f, 0x90, 0x95, 0xa2, 0xb2, 0xba, 0xb9,\n    0xbb, 0xbd, 0xbf, 0xc0, 0xc1, 0xbf, 0xbd, 0xbc, 0xb5, 0xb5, 0xb6, 0xb9, 0xb5, 0x9f, 0x7c, 0x61,\n    0x6c, 0x6f, 0x6e, 0x68, 0x64, 0x67, 0x69, 0x69, 0x6d, 0x6b, 0x6c, 0x6c, 0x66, 0x5c, 0x57, 0x58,\n    0x59, 0x5e, 0x5d, 0x59, 0x62, 0x70, 0x6f, 0x64, 0x6a, 0x67, 0x64, 0x62, 0x5b, 0x53, 0x53, 0x59,\n    0x65, 0x6f, 0x71, 0x6f, 0x5f, 0x4d, 0x53, 0x59, 0x54, 0x4a, 0x4f, 0x51, 0x50, 0x4c, 0x49, 0x54,\n    0x59, 0x5a, 0x58, 0x53, 0x4e, 0x4d, 0x52, 0x57, 0x5a, 0x59, 0x63, 0x78, 0x8a, 0x90, 0x92, 0x95,\n    0x9b, 0x9b, 0x9c, 0x9c, 0x9b, 0x99, 0x97, 0x96, 0x90, 0x8c, 0x88, 0x87, 0x8c, 0x93, 0x95, 0x94,\n    0x90, 0x8e, 0x8b, 0x88, 0x86, 0x84, 0x82, 0x80, 0x79, 0x7a, 0x7d, 0x7c, 0x76, 0x76, 0x89, 0xa0,\n    0xab, 0xa5, 0xa1, 0xa4, 0xa8, 0xa0, 0x8d, 0x7b, 0x74, 0x62, 0x59, 0x63, 0x72, 0x76, 0x72, 0x6f,\n    0x77, 0x7b, 0x7d, 0x82, 0x8a, 0x8f, 0x9a, 0xac, 0xba, 0xbd, 0xb5, 0xa1, 0x90, 0x8c, 0x8c, 0x8c,\n    0xa1, 0xb7, 0xc2, 0xaa, 0x71, 0x35, 0x1b, 0x20, 0x1a, 0x29, 0x31, 0x30, 0x33, 0x37, 0x3b, 0x42,\n    0x4a, 0x4f, 0x5b, 0x5d, 0x6c, 0x69, 0x61, 0x4e, 0x43, 0x51, 0x61, 0x68, 0x63, 0x56, 0x45, 0x39,\n    0x2e, 0x3e, 0x4e, 0x55, 0x56, 0x59, 0x5f, 0x65, 0x6a, 0x73, 0x79, 0x77, 0x67, 0x4b, 0x3c, 0x41,\n    0x4c, 0x47, 0x42, 0x3e, 0x36, 0x32, 0x3c, 0x4b, 0x5f, 0x64, 0x6b, 0x6d, 0x67, 0x5f, 0x5b, 0x5b,\n    0x61, 0x64, 0x5b, 0x53, 0x45, 0x3b, 0x42, 0x44, 0x40, 0x48, 0x51, 0x55, 0x57, 0x58, 0x57, 0x55,\n    0x7c, 0x74, 0x6a, 0x67, 0x6f, 0x78, 0x7a, 0x77, 0x75, 0x79, 0x7f, 0x83, 0x82, 0x7d, 0x75, 0x70,\n    0x7f, 0x8e, 0x96, 0x8d, 0x83, 0x83, 0x87, 0x89, 0x80, 0x7b, 0x71, 0x65, 0x5e, 0x5e, 0x66, 0x6e,\n    0x7b, 0x84, 0x8e, 0x96, 0x9d, 0xa5, 0xab, 0xac, 0xae, 0xae, 0xad, 0xaa, 0xa6, 0xa3, 0xa1, 0xa1,\n    0xa6, 0xa8, 0xab, 0xad, 0xb0, 0xb3, 0xb8, 0xbb, 0xb7, 0xb5, 0xb3, 0xb2, 0xb3, 0xb4, 0xb4, 0xb4,\n    0xaf, 0xaf, 0xae, 0xae, 0xaf, 0xae, 0xab, 0xa8, 0xa8, 0xa9, 0xaa, 0xab, 0xaa, 0xaa, 0xac, 0xad,\n    0xa9, 0xa7, 0xa4, 0xa1, 0x9f, 0x9d, 0x9c, 0x9c, 0x9e, 0xa0, 0xa2, 0xa3, 0xa3, 0xa5, 0xa8, 0xab,\n    0xb0, 0xb1, 0xaf, 0xab, 0xa7, 0xa5, 0xa6, 0xa8, 0xaa, 0xac, 0xad, 0xac, 0xa9, 0xa6, 0xa5, 0xa4,\n    0xa7, 0xa9, 0xac, 0xac, 0xab, 0xab, 0xad, 0xaf, 0xaf, 0xae, 0xae, 0xaf, 0xaf, 0xae, 0xac, 0xaa,\n    0xad, 0xaf, 0xb1, 0xb2, 0xb2, 0xb1, 0xb0, 0xae, 0xac, 0xad, 0xae, 0xaf, 0xb0, 0xb0, 0xaf, 0xaf,\n    0xaa, 0xac, 0xae, 0xb1, 0xb2, 0xb2, 0xb1, 0xb0, 0xab, 0xac, 0xaf, 0xb1, 0xb2, 0xb3, 0xb5, 0xb6,\n    0xb7, 0xb9, 0xb9, 0xb5, 0xb1, 0xae, 0xb0, 0xb2, 0xb2, 0xaf, 0xab, 0xa9, 0xaa, 0xac, 0xad, 0xae,\n    0xad, 0xac, 0xab, 0xac, 0xad, 0xad, 0xad, 0xac, 0xa4, 0xa4, 0xa6, 0xaa, 0xac, 0xa9, 0xa2, 0x9b,\n    0x93, 0x95, 0x9a, 0xa1, 0xa4, 0xa2, 0x9e, 0x9d, 0x9d, 0x97, 0x90, 0x8e, 0x91, 0x95, 0x95, 0x93,\n    0x9f, 0x98, 0x89, 0x7a, 0x75, 0x7c, 0x86, 0x8d, 0x94, 0x89, 0x87, 0x8f, 0xac, 0xde, 0xfc, 0xf8,\n    0xfc, 0xf9, 0xf8, 0xfb, 0xfe, 0xfe, 0xfe, 0xff, 0xfe, 0xfe, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n    0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfe,\n    0xff, 0xff, 0xff, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfd, 0xfd, 0xfd, 0xfd, 0xfb, 0xfa, 0xf8, 0xf7,\n    0xf6, 0xf3, 0xee, 0xe9, 0xe6, 0xe3, 0xe0, 0xde, 0xe0, 0xdf, 0xde, 0xdd, 0xdd, 0xdf, 0xe1, 0xe2,\n    0xe6, 0xea, 0xf0, 0xf5, 0xf7, 0xf7, 0xf7, 0xf7, 0xf9, 0xf6, 0xf3, 0xf3, 0xf7, 0xf7, 0xef, 0xe4,\n    0xc2, 0xb6, 0xae, 0xb0, 0xae, 0xa7, 0xa6, 0xab, 0xa6, 0xa4, 0xa0, 0x9b, 0x94, 0x8d, 0x89, 0x88,\n    0x87, 0x89, 0x89, 0x86, 0x7f, 0x76, 0x6e, 0x69, 0x65, 0x64, 0x62, 0x60, 0x5f, 0x5f, 0x5f, 0x5f,\n    0x5e, 0x5d, 0x5d, 0x5d, 0x5c, 0x5c, 0x5b, 0x5b, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x59, 0x58, 0x58,\n    0x58, 0x58, 0x58, 0x58, 0x57, 0x57, 0x57, 0x57, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b,\n    0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5b, 0x5b, 0x5b, 0x5c, 0x5b, 0x5a, 0x58, 0x56, 0x57, 0x59, 0x5b,\n    0x60, 0x63, 0x68, 0x6b, 0x6e, 0x6f, 0x71, 0x72, 0x74, 0x74, 0x77, 0x78, 0x76, 0x60, 0x54, 0x71,\n    0x82, 0x85, 0x84, 0x86, 0x89, 0x87, 0x87, 0x8f, 0x8f, 0x8f, 0x8f, 0x93, 0xa0, 0xae, 0xb3, 0xb0,\n    0xb8, 0xba, 0xbd, 0xbf, 0xbf, 0xbe, 0xbb, 0xba, 0xb7, 0xb7, 0xb6, 0xb8, 0xbb, 0xb0, 0x8f, 0x70,\n    0x6c, 0x70, 0x6f, 0x69, 0x68, 0x6c, 0x6c, 0x68, 0x6d, 0x6e, 0x70, 0x6f, 0x68, 0x5f, 0x5d, 0x5f,\n    0x63, 0x5d, 0x5b, 0x60, 0x65, 0x66, 0x68, 0x6a, 0x74, 0x76, 0x7b, 0x80, 0x7a, 0x6b, 0x61, 0x5e,\n    0x53, 0x5a, 0x5b, 0x61, 0x5d, 0x53, 0x56, 0x55, 0x57, 0x53, 0x5c, 0x5c, 0x53, 0x4c, 0x4c, 0x5d,\n    0x59, 0x59, 0x56, 0x51, 0x4d, 0x4e, 0x52, 0x57, 0x5e, 0x5b, 0x64, 0x79, 0x88, 0x8d, 0x91, 0x97,\n    0x9a, 0x99, 0x96, 0x93, 0x90, 0x8e, 0x8c, 0x8b, 0x79, 0x7d, 0x83, 0x8a, 0x92, 0x98, 0x97, 0x93,\n    0x91, 0x8f, 0x8b, 0x89, 0x87, 0x85, 0x83, 0x81, 0x7b, 0x79, 0x75, 0x69, 0x59, 0x54, 0x64, 0x79,\n    0x81, 0x85, 0x8a, 0x8c, 0x8d, 0x8c, 0x86, 0x7e, 0x58, 0x52, 0x54, 0x5b, 0x55, 0x46, 0x3d, 0x40,\n    0x48, 0x4d, 0x58, 0x6e, 0x86, 0x93, 0x9d, 0xaa, 0xb1, 0xbb, 0xc7, 0xc6, 0xad, 0x86, 0x65, 0x55,\n    0x85, 0xa3, 0xb5, 0xae, 0x8f, 0x5b, 0x33, 0x2a, 0x1e, 0x26, 0x28, 0x29, 0x2f, 0x35, 0x3c, 0x45,\n    0x54, 0x51, 0x59, 0x60, 0x70, 0x64, 0x51, 0x38, 0x44, 0x51, 0x5e, 0x63, 0x60, 0x58, 0x4f, 0x49,\n    0x55, 0x49, 0x43, 0x48, 0x49, 0x48, 0x53, 0x63, 0x6c, 0x6e, 0x6a, 0x62, 0x57, 0x49, 0x45, 0x4d,\n    0x49, 0x3c, 0x33, 0x33, 0x36, 0x3c, 0x4d, 0x60, 0x5f, 0x64, 0x68, 0x66, 0x65, 0x64, 0x60, 0x5b,\n    0x69, 0x6d, 0x57, 0x42, 0x3d, 0x43, 0x47, 0x35, 0x3b, 0x3a, 0x3a, 0x40, 0x48, 0x48, 0x39, 0x27,\n    0x76, 0x75, 0x6f, 0x67, 0x65, 0x69, 0x6f, 0x72, 0x7a, 0x7d, 0x81, 0x83, 0x82, 0x7f, 0x7c, 0x79,\n    0x84, 0x90, 0x93, 0x85, 0x78, 0x76, 0x7a, 0x7c, 0x82, 0x81, 0x81, 0x83, 0x89, 0x90, 0x95, 0x97,\n    0x9c, 0xa2, 0xa7, 0xa8, 0xa8, 0xaa, 0xa9, 0xa6, 0xa3, 0xa4, 0xa6, 0xa8, 0xaa, 0xae, 0xb2, 0xb5,\n    0xb3, 0xb3, 0xb3, 0xb2, 0xb1, 0xb1, 0xb2, 0xb3, 0xae, 0xaf, 0xb1, 0xb3, 0xb5, 0xb4, 0xb2, 0xb0,\n    0xb3, 0xb2, 0xb3, 0xb7, 0xb9, 0xb7, 0xb3, 0xb0, 0xac, 0xac, 0xab, 0xa9, 0xa7, 0xa6, 0xa7, 0xa8,\n    0xad, 0xab, 0xa9, 0xa6, 0xa5, 0xa6, 0xa8, 0xa9, 0xac, 0xad, 0xac, 0xaa, 0xa8, 0xa8, 0xaa, 0xad,\n    0xad, 0xac, 0xab, 0xaa, 0xaa, 0xac, 0xae, 0xb0, 0xac, 0xaf, 0xb1, 0xb0, 0xad, 0xaa, 0xa9, 0xa9,\n    0xa3, 0xa5, 0xa7, 0xa8, 0xa7, 0xa8, 0xab, 0xad, 0xb3, 0xb2, 0xb2, 0xb2, 0xb2, 0xb0, 0xae, 0xac,\n    0xaf, 0xaf, 0xaf, 0xae, 0xab, 0xa8, 0xa4, 0xa2, 0xa9, 0xab, 0xad, 0xaf, 0xb0, 0xaf, 0xae, 0xae,\n    0xaa, 0xab, 0xad, 0xae, 0xb0, 0xb2, 0xb4, 0xb6, 0xb2, 0xaf, 0xae, 0xae, 0xb0, 0xb1, 0xae, 0xab,\n    0xb0, 0xb1, 0xb2, 0xb2, 0xb1, 0xb2, 0xb3, 0xb4, 0xaf, 0xb0, 0xb3, 0xb6, 0xb8, 0xb7, 0xb4, 0xb1,\n    0xb5, 0xb4, 0xb5, 0xb5, 0xb5, 0xb3, 0xb0, 0xae, 0xaf, 0xad, 0xad, 0xb0, 0xb3, 0xb5, 0xb3, 0xb1,\n    0xae, 0xa6, 0x9e, 0x9b, 0x9a, 0x9b, 0x9e, 0xa3, 0xa9, 0xa6, 0xa3, 0xa2, 0x9f, 0x98, 0x8e, 0x87,\n    0x91, 0x94, 0x96, 0x96, 0x94, 0x90, 0x89, 0x83, 0x8e, 0x80, 0x94, 0xc3, 0xe5, 0xf8, 0xfe, 0xf9,\n    0xfd, 0xfb, 0xfd, 0xff, 0xff, 0xfe, 0xfd, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n    0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfe,\n    0xff, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfd, 0xfd, 0xfd, 0xfd, 0xfc, 0xfa, 0xf9, 0xf8,\n    0xf7, 0xf4, 0xf0, 0xec, 0xe8, 0xe4, 0xe0, 0xdd, 0xdd, 0xdc, 0xda, 0xd9, 0xda, 0xdc, 0xdd, 0xde,\n    0xe2, 0xe5, 0xea, 0xef, 0xf2, 0xf5, 0xf8, 0xf9, 0xf2, 0xf9, 0xfd, 0xfa, 0xf5, 0xf3, 0xf4, 0xf6,\n    0xee, 0xd4, 0xba, 0xb0, 0xae, 0xac, 0xad, 0xb0, 0xae, 0xad, 0xaa, 0xa4, 0x9d, 0x97, 0x92, 0x90,\n    0x87, 0x8a, 0x8c, 0x8b, 0x87, 0x80, 0x7a, 0x77, 0x6f, 0x6c, 0x68, 0x65, 0x63, 0x62, 0x63, 0x64,\n    0x5f, 0x5f, 0x5f, 0x5e, 0x5d, 0x5d, 0x5c, 0x5c, 0x5e, 0x5e, 0x5e, 0x5e, 0x5d, 0x5c, 0x5b, 0x5a,\n    0x5c, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x5a, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x5c, 0x5c, 0x5c,\n    0x5b, 0x5b, 0x5b, 0x5c, 0x5c, 0x5c, 0x5c, 0x5d, 0x5d, 0x5d, 0x5c, 0x5a, 0x59, 0x5a, 0x5c, 0x5f,\n    0x64, 0x66, 0x6a, 0x6d, 0x6e, 0x6f, 0x71, 0x72, 0x78, 0x79, 0x79, 0x79, 0x7d, 0x6d, 0x5c, 0x70,\n    0x86, 0x8a, 0x8a, 0x8a, 0x8b, 0x88, 0x87, 0x8f, 0x90, 0x8e, 0x8d, 0x92, 0xa2, 0xb2, 0xb5, 0xb0,\n    0xb4, 0xb6, 0xb9, 0xbb, 0xbb, 0xba, 0xb8, 0xb6, 0xb7, 0xb9, 0xb8, 0xb7, 0xbb, 0xb8, 0xa0, 0x84,\n    0x6d, 0x6d, 0x6b, 0x68, 0x6b, 0x70, 0x6f, 0x69, 0x6d, 0x71, 0x75, 0x74, 0x6e, 0x66, 0x64, 0x66,\n    0x64, 0x5f, 0x5f, 0x65, 0x67, 0x64, 0x63, 0x66, 0x5f, 0x5e, 0x61, 0x6a, 0x6f, 0x6e, 0x6f, 0x72,\n    0x61, 0x63, 0x5e, 0x61, 0x5f, 0x5c, 0x65, 0x67, 0x61, 0x5c, 0x63, 0x61, 0x5c, 0x59, 0x59, 0x66,\n    0x64, 0x61, 0x5d, 0x57, 0x53, 0x53, 0x56, 0x58, 0x61, 0x61, 0x6a, 0x7c, 0x88, 0x8c, 0x92, 0x99,\n    0x94, 0x95, 0x97, 0x97, 0x93, 0x8c, 0x84, 0x7f, 0x7a, 0x83, 0x8e, 0x96, 0x9a, 0x9a, 0x96, 0x92,\n    0x90, 0x8e, 0x8b, 0x88, 0x87, 0x85, 0x82, 0x81, 0x8b, 0x83, 0x77, 0x6d, 0x68, 0x66, 0x65, 0x63,\n    0x52, 0x4f, 0x4b, 0x4a, 0x54, 0x67, 0x78, 0x81, 0x88, 0x74, 0x62, 0x58, 0x4b, 0x37, 0x2b, 0x2a,\n    0x35, 0x48, 0x62, 0x7e, 0x8d, 0x87, 0x7a, 0x79, 0x97, 0xa8, 0xbf, 0xcb, 0xbe, 0x9e, 0x7e, 0x6e,\n    0x80, 0x9f, 0xb4, 0xb6, 0xae, 0x91, 0x6a, 0x56, 0x25, 0x21, 0x1b, 0x1e, 0x27, 0x2c, 0x36, 0x48,\n    0x5e, 0x4f, 0x52, 0x5a, 0x66, 0x53, 0x45, 0x3a, 0x52, 0x59, 0x61, 0x65, 0x68, 0x6c, 0x6c, 0x6b,\n    0x5b, 0x48, 0x40, 0x4c, 0x59, 0x5b, 0x5e, 0x64, 0x85, 0x90, 0x95, 0x98, 0xa3, 0xae, 0xb6, 0xbd,\n    0xb9, 0xa6, 0x8f, 0x7c, 0x66, 0x51, 0x47, 0x47, 0x56, 0x4c, 0x50, 0x60, 0x65, 0x5c, 0x59, 0x60,\n    0x4e, 0x51, 0x44, 0x43, 0x4f, 0x5a, 0x57, 0x3e, 0x36, 0x2e, 0x2a, 0x2f, 0x32, 0x2b, 0x1c, 0x10,\n    0x70, 0x74, 0x73, 0x69, 0x5f, 0x5f, 0x67, 0x6d, 0x70, 0x74, 0x79, 0x7e, 0x80, 0x81, 0x81, 0x82,\n    0x83, 0x89, 0x87, 0x7b, 0x71, 0x70, 0x75, 0x78, 0x7f, 0x80, 0x83, 0x8a, 0x96, 0xa1, 0xa6, 0xa5,\n    0xae, 0xab, 0xa7, 0xa4, 0xa4, 0xa5, 0xa8, 0xaa, 0xb0, 0xb1, 0xb2, 0xb1, 0xaf, 0xad, 0xac, 0xac,\n    0xb1, 0xb1, 0xb1, 0xb1, 0xb2, 0xb2, 0xb3, 0xb3, 0xb5, 0xb3, 0xb1, 0xaf, 0xaf, 0xaf, 0xaf, 0xae,\n    0xb1, 0xb0, 0xb2, 0xb6, 0xb8, 0xb5, 0xb1, 0xaf, 0xaf, 0xaf, 0xaf, 0xae, 0xac, 0xab, 0xac, 0xad,\n    0xb4, 0xb3, 0xb0, 0xad, 0xab, 0xab, 0xac, 0xae, 0xae, 0xaf, 0xae, 0xac, 0xa9, 0xa9, 0xab, 0xad,\n    0xa9, 0xa6, 0xa3, 0xa2, 0xa2, 0xa4, 0xa6, 0xa7, 0xa3, 0xa7, 0xab, 0xac, 0xac, 0xaa, 0xaa, 0xab,\n    0xae, 0xae, 0xaf, 0xae, 0xae, 0xaf, 0xb0, 0xb1, 0xaf, 0xb0, 0xb1, 0xb1, 0xb1, 0xb1, 0xb0, 0xb0,\n    0xab, 0xab, 0xaa, 0xa9, 0xa7, 0xa5, 0xa3, 0xa2, 0xa9, 0xaa, 0xad, 0xaf, 0xaf, 0xae, 0xad, 0xab,\n    0xaa, 0xab, 0xad, 0xae, 0xb0, 0xb3, 0xb6, 0xb9, 0xb1, 0xae, 0xad, 0xb1, 0xb8, 0xbc, 0xba, 0xb7,\n    0xb1, 0xb0, 0xb0, 0xb1, 0xb3, 0xb3, 0xb2, 0xb1, 0xaf, 0xaf, 0xb0, 0xb3, 0xb6, 0xb7, 0xb7, 0xb6,\n    0xb0, 0xb2, 0xb6, 0xb9, 0xb9, 0xb5, 0xae, 0xa9, 0xa4, 0xa8, 0xaf, 0xb7, 0xbb, 0xba, 0xb5, 0xb0,\n    0xb5, 0xb4, 0xb5, 0xb6, 0xb3, 0xaa, 0xa1, 0x9d, 0x9e, 0x9c, 0x9e, 0xa5, 0xac, 0xb1, 0xb4, 0xb6,\n    0xa8, 0xa4, 0x9e, 0x99, 0x97, 0x96, 0x95, 0x93, 0x82, 0x9c, 0xca, 0xef, 0xfb, 0xfa, 0xfd, 0xff,\n    0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n    0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfe,\n    0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfd, 0xfc, 0xfa, 0xf9,\n    0xf9, 0xf7, 0xf4, 0xf1, 0xee, 0xea, 0xe6, 0xe3, 0xde, 0xdc, 0xda, 0xd9, 0xda, 0xdd, 0xde, 0xdf,\n    0xe0, 0xe2, 0xe5, 0xe8, 0xec, 0xf1, 0xf6, 0xf9, 0xfc, 0xf8, 0xf4, 0xf4, 0xf8, 0xfa, 0xf5, 0xed,\n    0xf4, 0xf5, 0xe4, 0xc6, 0xb4, 0xb4, 0xb3, 0xac, 0xb2, 0xb2, 0xb0, 0xaa, 0xa5, 0xa1, 0x9b, 0x96,\n    0x8e, 0x8c, 0x8b, 0x89, 0x87, 0x86, 0x85, 0x84, 0x79, 0x75, 0x70, 0x6a, 0x66, 0x64, 0x64, 0x64,\n    0x62, 0x62, 0x62, 0x61, 0x60, 0x5f, 0x5f, 0x5e, 0x61, 0x61, 0x61, 0x61, 0x60, 0x5f, 0x5f, 0x5e,\n    0x5e, 0x5d, 0x5d, 0x5d, 0x5d, 0x5e, 0x5d, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c,\n    0x5c, 0x5c, 0x5d, 0x5d, 0x5d, 0x5e, 0x5e, 0x5e, 0x5e, 0x5f, 0x5f, 0x5e, 0x5d, 0x5e, 0x60, 0x62,\n    0x67, 0x69, 0x6b, 0x6c, 0x6e, 0x6f, 0x71, 0x73, 0x76, 0x77, 0x7b, 0x7a, 0x7f, 0x77, 0x62, 0x65,\n    0x7d, 0x89, 0x8f, 0x8e, 0x8e, 0x8b, 0x8a, 0x8e, 0x90, 0x8d, 0x8c, 0x93, 0xa6, 0xb8, 0xbc, 0xb7,\n    0xb3, 0xb4, 0xb5, 0xb6, 0xb6, 0xb6, 0xb5, 0xb4, 0xb3, 0xb8, 0xba, 0xb9, 0xbb, 0xbb, 0xab, 0x97,\n    0x76, 0x6e, 0x66, 0x67, 0x6e, 0x72, 0x70, 0x6b, 0x68, 0x6d, 0x72, 0x72, 0x6c, 0x66, 0x64, 0x64,\n    0x62, 0x68, 0x6a, 0x68, 0x6a, 0x6e, 0x6a, 0x62, 0x61, 0x59, 0x55, 0x56, 0x58, 0x5b, 0x62, 0x6a,\n    0x6d, 0x76, 0x74, 0x72, 0x68, 0x5f, 0x67, 0x69, 0x63, 0x5b, 0x5c, 0x5a, 0x5f, 0x66, 0x61, 0x62,\n    0x60, 0x5f, 0x5c, 0x5a, 0x5a, 0x5b, 0x5d, 0x5f, 0x5e, 0x64, 0x70, 0x7f, 0x89, 0x8d, 0x90, 0x93,\n    0x99, 0x99, 0x99, 0x99, 0x97, 0x93, 0x90, 0x8e, 0x99, 0x9f, 0xa4, 0xa4, 0xa2, 0x9e, 0x99, 0x94,\n    0x8e, 0x8c, 0x89, 0x87, 0x86, 0x84, 0x82, 0x81, 0x76, 0x78, 0x77, 0x73, 0x6f, 0x6b, 0x64, 0x5d,\n    0x65, 0x69, 0x75, 0x86, 0x91, 0x8b, 0x77, 0x65, 0x6c, 0x6f, 0x73, 0x6c, 0x56, 0x3f, 0x3a, 0x42,\n    0x5f, 0x76, 0x8c, 0x95, 0x95, 0x8e, 0x8c, 0x93, 0x87, 0x94, 0xa7, 0xba, 0xc7, 0xc1, 0xa3, 0x84,\n    0x76, 0x91, 0xa3, 0xa3, 0x9f, 0x94, 0x7f, 0x6d, 0x45, 0x39, 0x2a, 0x26, 0x28, 0x28, 0x31, 0x45,\n    0x50, 0x44, 0x4b, 0x52, 0x56, 0x3e, 0x3b, 0x40, 0x51, 0x65, 0x76, 0x73, 0x64, 0x59, 0x5a, 0x5e,\n    0x5e, 0x4d, 0x3b, 0x3c, 0x55, 0x75, 0x8b, 0x93, 0x86, 0x98, 0xa3, 0xa9, 0xb6, 0xbf, 0xc1, 0xc2,\n    0xc2, 0xc4, 0xc7, 0xc9, 0xc1, 0xb0, 0x9f, 0x94, 0x72, 0x67, 0x5e, 0x5c, 0x5d, 0x5b, 0x56, 0x52,\n    0x4b, 0x49, 0x44, 0x48, 0x40, 0x30, 0x33, 0x36, 0x42, 0x35, 0x29, 0x22, 0x1d, 0x1f, 0x2d, 0x3e,\n    0x71, 0x76, 0x75, 0x6c, 0x62, 0x5f, 0x63, 0x67, 0x65, 0x6a, 0x72, 0x79, 0x7c, 0x7d, 0x7e, 0x7f,\n    0x7e, 0x7c, 0x79, 0x75, 0x75, 0x79, 0x80, 0x86, 0x9b, 0x9c, 0x9c, 0x9e, 0xa4, 0xad, 0xaf, 0xad,\n    0xa4, 0x9d, 0x99, 0x9d, 0xa2, 0xa5, 0xaa, 0xb0, 0xaa, 0xab, 0xad, 0xaf, 0xaf, 0xb0, 0xb2, 0xb3,\n    0xb3, 0xb3, 0xb2, 0xb2, 0xb2, 0xb1, 0xb0, 0xaf, 0xb5, 0xb1, 0xad, 0xab, 0xad, 0xb2, 0xb6, 0xb9,\n    0xaf, 0xac, 0xad, 0xb0, 0xb1, 0xad, 0xac, 0xad, 0xae, 0xb1, 0xb3, 0xb4, 0xb4, 0xb2, 0xb1, 0xb1,\n    0xb2, 0xb2, 0xb1, 0xaf, 0xab, 0xa8, 0xa7, 0xa8, 0xa9, 0xaa, 0xab, 0xac, 0xac, 0xad, 0xaf, 0xb0,\n    0xb4, 0xb1, 0xad, 0xa9, 0xa8, 0xa9, 0xaa, 0xab, 0xaa, 0xad, 0xb1, 0xb3, 0xb4, 0xb3, 0xb2, 0xb1,\n    0xb1, 0xb0, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xb2, 0xb4, 0xb7, 0xb8, 0xb7, 0xb6, 0xb8, 0xb9,\n    0xb1, 0xb1, 0xb1, 0xb1, 0xb2, 0xb4, 0xb5, 0xb6, 0xb6, 0xb8, 0xba, 0xbb, 0xbb, 0xb8, 0xb6, 0xb4,\n    0xaf, 0xb1, 0xb2, 0xb2, 0xb1, 0xb1, 0xb3, 0xb4, 0xb1, 0xaf, 0xae, 0xb0, 0xb4, 0xb6, 0xb4, 0xb1,\n    0xb4, 0xb4, 0xb5, 0xb5, 0xb4, 0xb3, 0xb2, 0xb1, 0xb7, 0xb3, 0xb0, 0xae, 0xb0, 0xb3, 0xb7, 0xb9,\n    0xbb, 0xb7, 0xb4, 0xb2, 0xb4, 0xb9, 0xbd, 0xbf, 0xba, 0xb6, 0xb0, 0xac, 0xae, 0xb3, 0xba, 0xbe,\n    0xb9, 0xb3, 0xae, 0xad, 0xae, 0xae, 0xb1, 0xb4, 0xaa, 0xa4, 0xa0, 0xa1, 0xa2, 0xa5, 0xac, 0xb3,\n    0xb7, 0xb8, 0xb8, 0xb5, 0xad, 0xa2, 0x99, 0x95, 0xa9, 0xd8, 0xfb, 0xfe, 0xfb, 0xfe, 0xff, 0xff,\n    0xfe, 0xfe, 0xfd, 0xfc, 0xfd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n    0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfe,\n    0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xff, 0xfd, 0xfe, 0xfe, 0xff, 0xfe, 0xfd, 0xfc, 0xfc,\n    0xfb, 0xfb, 0xf9, 0xf8, 0xf6, 0xf3, 0xef, 0xec, 0xe6, 0xe3, 0xdf, 0xdd, 0xdd, 0xde, 0xde, 0xde,\n    0xdd, 0xde, 0xe0, 0xe2, 0xe5, 0xe9, 0xef, 0xf2, 0xf5, 0xf7, 0xf7, 0xf3, 0xf1, 0xf3, 0xf7, 0xf8,\n    0xf5, 0xf2, 0xf5, 0xf5, 0xe0, 0xc1, 0xb5, 0xba, 0xb1, 0xb2, 0xb1, 0xae, 0xac, 0xa9, 0xa2, 0x9b,\n    0x98, 0x93, 0x8e, 0x8a, 0x8a, 0x8a, 0x89, 0x89, 0x81, 0x7e, 0x7a, 0x74, 0x6f, 0x6a, 0x67, 0x66,\n    0x67, 0x67, 0x66, 0x66, 0x65, 0x64, 0x63, 0x63, 0x64, 0x64, 0x64, 0x63, 0x63, 0x63, 0x62, 0x62,\n    0x61, 0x5f, 0x5e, 0x5e, 0x60, 0x60, 0x5f, 0x5d, 0x5f, 0x5f, 0x5f, 0x5e, 0x5e, 0x5e, 0x5d, 0x5d,\n    0x5d, 0x5e, 0x5e, 0x5f, 0x5f, 0x60, 0x60, 0x60, 0x60, 0x61, 0x62, 0x62, 0x62, 0x62, 0x64, 0x65,\n    0x6a, 0x6b, 0x6c, 0x6c, 0x6d, 0x6f, 0x72, 0x75, 0x75, 0x75, 0x7b, 0x79, 0x7d, 0x7d, 0x69, 0x5c,\n    0x6b, 0x83, 0x91, 0x92, 0x92, 0x91, 0x8d, 0x8d, 0x8f, 0x8e, 0x8e, 0x94, 0xa6, 0xb8, 0xbf, 0xbc,\n    0xb7, 0xb6, 0xb6, 0xb5, 0xb5, 0xb5, 0xb6, 0xb6, 0xb4, 0xb9, 0xbc, 0xbb, 0xbc, 0xbd, 0xb5, 0xa9,\n    0x8f, 0x7b, 0x6b, 0x6b, 0x72, 0x73, 0x70, 0x6e, 0x68, 0x6c, 0x6f, 0x6e, 0x69, 0x64, 0x62, 0x60,\n    0x63, 0x68, 0x6b, 0x6c, 0x6f, 0x73, 0x6f, 0x67, 0x67, 0x64, 0x63, 0x61, 0x5b, 0x55, 0x58, 0x60,\n    0x66, 0x73, 0x76, 0x77, 0x6c, 0x5f, 0x5f, 0x5b, 0x5a, 0x58, 0x5a, 0x54, 0x58, 0x63, 0x5e, 0x5a,\n    0x59, 0x58, 0x59, 0x5a, 0x5d, 0x5f, 0x61, 0x61, 0x5d, 0x68, 0x76, 0x7f, 0x87, 0x8e, 0x91, 0x91,\n    0x9f, 0x9d, 0x9b, 0x9a, 0x9b, 0x9e, 0xa1, 0xa4, 0xa5, 0xa6, 0xa4, 0xa0, 0x9c, 0x98, 0x93, 0x8e,\n    0x8d, 0x8b, 0x89, 0x87, 0x86, 0x85, 0x83, 0x81, 0x7f, 0x7f, 0x7c, 0x74, 0x66, 0x61, 0x6b, 0x79,\n    0x90, 0x94, 0x9b, 0x9e, 0x9b, 0x98, 0xa0, 0xab, 0x96, 0x8b, 0x7e, 0x71, 0x60, 0x4b, 0x37, 0x2c,\n    0x48, 0x68, 0x82, 0x86, 0x7f, 0x72, 0x69, 0x6a, 0x64, 0x72, 0x8c, 0xa9, 0xbb, 0xb1, 0x8f, 0x6f,\n    0x53, 0x64, 0x77, 0x7f, 0x81, 0x8b, 0x95, 0x94, 0x7f, 0x6e, 0x51, 0x3c, 0x36, 0x38, 0x44, 0x56,\n    0x50, 0x45, 0x4a, 0x4c, 0x50, 0x40, 0x47, 0x51, 0x57, 0x70, 0x89, 0x8e, 0x86, 0x83, 0x8a, 0x93,\n    0x91, 0x8f, 0x89, 0x7e, 0x6f, 0x5c, 0x45, 0x35, 0x2a, 0x33, 0x38, 0x3d, 0x4c, 0x5e, 0x71, 0x83,\n    0xa4, 0xad, 0xb8, 0xbf, 0xc2, 0xc0, 0xb9, 0xb2, 0xbe, 0xbd, 0xac, 0x93, 0x88, 0x85, 0x71, 0x55,\n    0x4a, 0x3e, 0x36, 0x43, 0x43, 0x39, 0x4d, 0x64, 0x5a, 0x44, 0x2d, 0x25, 0x2c, 0x3d, 0x55, 0x68,\n    0x75, 0x78, 0x75, 0x6d, 0x64, 0x60, 0x5f, 0x5f, 0x63, 0x6a, 0x73, 0x79, 0x7b, 0x7a, 0x79, 0x78,\n    0x87, 0x81, 0x7e, 0x82, 0x89, 0x92, 0x9c, 0xa4, 0xa1, 0xa7, 0xad, 0xaf, 0xaf, 0xae, 0xa9, 0xa2,\n    0xa8, 0xa1, 0xa2, 0xac, 0xb3, 0xb1, 0xb0, 0xb4, 0xb7, 0xb6, 0xb3, 0xaf, 0xac, 0xab, 0xad, 0xae,\n    0xaf, 0xaf, 0xb1, 0xb3, 0xb5, 0xb5, 0xb5, 0xb4, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb2, 0xaf, 0xac,\n    0xb5, 0xb2, 0xb1, 0xb3, 0xb3, 0xb1, 0xb2, 0xb6, 0xaf, 0xb3, 0xb6, 0xb7, 0xb4, 0xb0, 0xab, 0xa9,\n    0xaa, 0xad, 0xb0, 0xb0, 0xad, 0xab, 0xaa, 0xa9, 0xaf, 0xaf, 0xb1, 0xb2, 0xb4, 0xb5, 0xb6, 0xb6,\n    0xb3, 0xb1, 0xae, 0xac, 0xad, 0xaf, 0xb3, 0xb5, 0xb0, 0xb2, 0xb3, 0xb5, 0xb4, 0xb2, 0xaf, 0xad,\n    0xb0, 0xae, 0xab, 0xab, 0xac, 0xad, 0xac, 0xab, 0xab, 0xaf, 0xb2, 0xb2, 0xb0, 0xaf, 0xb1, 0xb3,\n    0xb1, 0xb0, 0xaf, 0xae, 0xaf, 0xb1, 0xb4, 0xb5, 0xb6, 0xb7, 0xb9, 0xb9, 0xb8, 0xb5, 0xb1, 0xae,\n    0xb7, 0xb8, 0xb9, 0xb7, 0xb3, 0xaf, 0xae, 0xae, 0xb0, 0xb0, 0xb0, 0xb1, 0xb2, 0xb2, 0xb1, 0xb0,\n    0xae, 0xb1, 0xb4, 0xb5, 0xb4, 0xb3, 0xb4, 0xb5, 0xb2, 0xb1, 0xb0, 0xb0, 0xaf, 0xae, 0xab, 0xa9,\n    0xaa, 0xad, 0xb1, 0xb6, 0xb8, 0xb8, 0xb5, 0xb2, 0xb1, 0xb5, 0xb9, 0xbc, 0xba, 0xb6, 0xb2, 0xaf,\n    0xb2, 0xb0, 0xb0, 0xb3, 0xb5, 0xb5, 0xb6, 0xb8, 0xba, 0xb8, 0xb7, 0xb7, 0xb1, 0xa9, 0xa6, 0xa7,\n    0xaa, 0xb0, 0xb8, 0xbd, 0xbb, 0xb7, 0xb7, 0xb9, 0xe4, 0xf8, 0xff, 0xfb, 0xff, 0xff, 0xfc, 0xff,\n    0xfe, 0xff, 0xfe, 0xfc, 0xff, 0xff, 0xff, 0xfa, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n    0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfe,\n    0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xff, 0xff, 0xfc, 0xfd, 0xfe, 0xfe, 0xfe, 0xfe, 0xfd, 0xfd,\n    0xfc, 0xfb, 0xfb, 0xfb, 0xfa, 0xf8, 0xf4, 0xf1, 0xee, 0xe9, 0xe3, 0xde, 0xdc, 0xdb, 0xd9, 0xd8,\n    0xd9, 0xda, 0xdb, 0xdc, 0xdf, 0xe2, 0xe7, 0xea, 0xf1, 0xf4, 0xf5, 0xf5, 0xf6, 0xf8, 0xf8, 0xf6,\n    0xf8, 0xf9, 0xf9, 0xf9, 0xfa, 0xf1, 0xd7, 0xbb, 0xb1, 0xb3, 0xb3, 0xb1, 0xb1, 0xb0, 0xa9, 0xa0,\n    0x9f, 0x9a, 0x94, 0x91, 0x90, 0x8e, 0x8a, 0x87, 0x87, 0x86, 0x84, 0x80, 0x7b, 0x75, 0x71, 0x6e,\n    0x6c, 0x6b, 0x6a, 0x6a, 0x69, 0x68, 0x67, 0x67, 0x67, 0x66, 0x65, 0x65, 0x65, 0x65, 0x65, 0x66,\n    0x65, 0x63, 0x62, 0x63, 0x64, 0x64, 0x63, 0x62, 0x61, 0x61, 0x61, 0x60, 0x60, 0x5f, 0x5f, 0x5e,\n    0x5e, 0x5f, 0x5f, 0x60, 0x60, 0x61, 0x61, 0x61, 0x62, 0x63, 0x64, 0x65, 0x65, 0x65, 0x66, 0x68,\n    0x6c, 0x6c, 0x6c, 0x6c, 0x6d, 0x70, 0x73, 0x76, 0x7a, 0x78, 0x7e, 0x78, 0x7b, 0x83, 0x71, 0x5d,\n    0x5d, 0x7c, 0x92, 0x94, 0x95, 0x95, 0x90, 0x8c, 0x8f, 0x90, 0x90, 0x95, 0xa3, 0xb4, 0xbd, 0xbd,\n    0xbb, 0xba, 0xb8, 0xb6, 0xb6, 0xb7, 0xb8, 0xb9, 0xba, 0xbd, 0xbd, 0xbb, 0xbc, 0xbf, 0xbd, 0xb7,\n    0xa8, 0x8c, 0x73, 0x71, 0x76, 0x75, 0x70, 0x6f, 0x6e, 0x71, 0x72, 0x6f, 0x6b, 0x67, 0x64, 0x63,\n    0x64, 0x5e, 0x61, 0x6c, 0x71, 0x6d, 0x6a, 0x6d, 0x6c, 0x6e, 0x70, 0x6c, 0x5f, 0x51, 0x50, 0x57,\n    0x62, 0x68, 0x65, 0x68, 0x67, 0x61, 0x61, 0x59, 0x53, 0x5b, 0x63, 0x56, 0x52, 0x5b, 0x59, 0x59,\n    0x5d, 0x5d, 0x5c, 0x5d, 0x5f, 0x5f, 0x5e, 0x5c, 0x62, 0x70, 0x7b, 0x80, 0x87, 0x91, 0x97, 0x96,\n    0x99, 0x9b, 0x9e, 0xa2, 0xa4, 0xa6, 0xa7, 0xa7, 0xa4, 0xa2, 0x9e, 0x9b, 0x9a, 0x9a, 0x94, 0x8e,\n    0x8c, 0x8b, 0x88, 0x87, 0x86, 0x85, 0x84, 0x82, 0x82, 0x79, 0x76, 0x74, 0x67, 0x58, 0x5b, 0x69,\n    0x53, 0x47, 0x42, 0x48, 0x52, 0x5c, 0x6c, 0x7b, 0x96, 0x9d, 0x9c, 0x88, 0x6a, 0x55, 0x50, 0x54,\n    0x68, 0x79, 0x7b, 0x6c, 0x5e, 0x54, 0x4d, 0x4a, 0x45, 0x4b, 0x5e, 0x70, 0x6d, 0x5f, 0x63, 0x74,\n    0x92, 0x8c, 0x8c, 0x84, 0x74, 0x74, 0x7e, 0x7f, 0x8d, 0x8b, 0x7a, 0x66, 0x5e, 0x5a, 0x57, 0x59,\n    0x4f, 0x41, 0x3f, 0x41, 0x57, 0x63, 0x7d, 0x8b, 0x96, 0x91, 0x89, 0x86, 0x8b, 0x91, 0x92, 0x8e,\n    0x8b, 0x88, 0x89, 0x83, 0x69, 0x45, 0x32, 0x33, 0x44, 0x44, 0x3c, 0x33, 0x2b, 0x24, 0x2c, 0x3f,\n    0x5a, 0x71, 0x8b, 0x9f, 0xad, 0xb6, 0xb2, 0xa9, 0xaf, 0xb4, 0xbc, 0xc7, 0xcc, 0xc1, 0xa6, 0x8d,\n    0x71, 0x4f, 0x31, 0x41, 0x5a, 0x62, 0x67, 0x65, 0x66, 0x4b, 0x33, 0x37, 0x51, 0x66, 0x66, 0x5d,\n    0x88, 0x89, 0x85, 0x7a, 0x6b, 0x61, 0x5f, 0x61, 0x6a, 0x77, 0x80, 0x80, 0x77, 0x6a, 0x6a, 0x78,\n    0x82, 0x86, 0x82, 0x82, 0x8c, 0x96, 0x9e, 0xa6, 0xa5, 0xa4, 0xa8, 0xad, 0xaa, 0xa1, 0x9d, 0x9e,\n    0xad, 0xb4, 0xb8, 0xb5, 0xb2, 0xb3, 0xb2, 0xb0, 0xb1, 0xb2, 0xb4, 0xb4, 0xb1, 0xad, 0xad, 0xaf,\n    0xb5, 0xb6, 0xb8, 0xb8, 0xb6, 0xb3, 0xaf, 0xac, 0xb6, 0xb7, 0xb7, 0xb4, 0xb0, 0xae, 0xae, 0xb0,\n    0xb3, 0xb4, 0xb5, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb2, 0xb1, 0xaf, 0xae, 0xae, 0xae, 0xad, 0xac,\n    0xab, 0xab, 0xab, 0xad, 0xb0, 0xb1, 0xb0, 0xb0, 0xb3, 0xb4, 0xb4, 0xb3, 0xb2, 0xb2, 0xb5, 0xb7,\n    0xb6, 0xb2, 0xaf, 0xad, 0xa9, 0xa7, 0xab, 0xb1, 0xb4, 0xb0, 0xae, 0xb2, 0xb7, 0xb8, 0xb4, 0xb1,\n    0xb6, 0xb8, 0xba, 0xbb, 0xbb, 0xba, 0xb7, 0xb6, 0xb6, 0xb5, 0xb3, 0xb2, 0xb3, 0xb5, 0xb9, 0xbb,\n    0xbb, 0xb7, 0xb0, 0xab, 0xa9, 0xa9, 0xab, 0xac, 0xaa, 0xab, 0xad, 0xaf, 0xb1, 0xb1, 0xaf, 0xad,\n    0xad, 0xb2, 0xb8, 0xba, 0xb5, 0xae, 0xab, 0xac, 0xae, 0xb2, 0xb4, 0xb4, 0xb5, 0xb8, 0xb8, 0xb5,\n    0xb2, 0xaf, 0xad, 0xad, 0xad, 0xad, 0xb0, 0xb3, 0xb4, 0xb5, 0xb7, 0xb9, 0xb9, 0xb8, 0xb7, 0xb6,\n    0xb5, 0xb3, 0xb1, 0xaf, 0xae, 0xb2, 0xb9, 0xbe, 0xba, 0xbc, 0xbe, 0xbe, 0xbb, 0xb9, 0xb9, 0xba,\n    0xba, 0xb6, 0xb2, 0xb0, 0xb1, 0xb3, 0xb4, 0xb4, 0xb4, 0xb4, 0xb4, 0xb5, 0xb7, 0xb8, 0xb6, 0xb2,\n    0xab, 0xa3, 0xa4, 0xad, 0xb4, 0xbe, 0xd5, 0xef, 0xfb, 0xfe, 0xff, 0xfc, 0xfb, 0xfc, 0xff, 0xff,\n    0xff, 0xfd, 0xfb, 0xfd, 0xfe, 0xfd, 0xfe, 0xff, 0xff, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xff, 0xff,\n    0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfe, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe,\n    0xfc, 0xfd, 0xfd, 0xfd, 0xfe, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfe, 0xfe, 0xfe,\n    0xfb, 0xfb, 0xfc, 0xfb, 0xfa, 0xf9, 0xf7, 0xf6, 0xf1, 0xf0, 0xee, 0xe8, 0xe1, 0xda, 0xd4, 0xd1,\n    0xd9, 0xd9, 0xdb, 0xdf, 0xe1, 0xe3, 0xe6, 0xea, 0xec, 0xf1, 0xf7, 0xfa, 0xf7, 0xf4, 0xf3, 0xf3,\n    0xfc, 0xf6, 0xf0, 0xed, 0xef, 0xf2, 0xf2, 0xf0, 0xcf, 0xbb, 0xad, 0xae, 0xb2, 0xb0, 0xaf, 0xb3,\n    0xa6, 0xa2, 0x9e, 0x9a, 0x98, 0x95, 0x91, 0x8d, 0x8c, 0x8a, 0x88, 0x88, 0x87, 0x83, 0x7c, 0x76,\n    0x6a, 0x6b, 0x6b, 0x6c, 0x6c, 0x6b, 0x6a, 0x69, 0x67, 0x67, 0x67, 0x67, 0x66, 0x66, 0x65, 0x65,\n    0x64, 0x65, 0x66, 0x67, 0x67, 0x66, 0x65, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x63, 0x61, 0x61,\n    0x62, 0x62, 0x62, 0x62, 0x63, 0x63, 0x63, 0x63, 0x65, 0x65, 0x65, 0x66, 0x66, 0x66, 0x67, 0x67,\n    0x69, 0x6a, 0x6b, 0x6d, 0x6f, 0x71, 0x73, 0x74, 0x78, 0x78, 0x7c, 0x7d, 0x7c, 0x7b, 0x72, 0x61,\n    0x4f, 0x6b, 0x8a, 0x8f, 0x92, 0x95, 0x8d, 0x90, 0x90, 0x8f, 0x90, 0x92, 0x9d, 0xb3, 0xbf, 0xb9,\n    0xbc, 0xbc, 0xbb, 0xb7, 0xb4, 0xb5, 0xb9, 0xbd, 0xbe, 0xbe, 0xc0, 0xbf, 0xbc, 0xba, 0xbc, 0xc1,\n    0xb9, 0xa7, 0x80, 0x6d, 0x75, 0x71, 0x69, 0x72, 0x70, 0x73, 0x75, 0x73, 0x71, 0x6f, 0x6c, 0x68,\n    0x62, 0x63, 0x63, 0x64, 0x69, 0x6d, 0x68, 0x60, 0x6c, 0x76, 0x7b, 0x74, 0x69, 0x63, 0x5c, 0x55,\n    0x5d, 0x5d, 0x5d, 0x5f, 0x62, 0x64, 0x60, 0x5a, 0x5a, 0x5f, 0x5f, 0x5a, 0x5b, 0x61, 0x5f, 0x58,\n    0x58, 0x57, 0x59, 0x5d, 0x5e, 0x5e, 0x63, 0x69, 0x73, 0x76, 0x7c, 0x82, 0x89, 0x8e, 0x93, 0x95,\n    0x97, 0x9a, 0x9d, 0x9f, 0xa0, 0xa0, 0xa1, 0xa2, 0xa0, 0xa0, 0x9f, 0x9e, 0x9c, 0x97, 0x92, 0x8e,\n    0x8e, 0x8c, 0x89, 0x87, 0x85, 0x85, 0x85, 0x85, 0x86, 0x7e, 0x7b, 0x74, 0x62, 0x51, 0x48, 0x40,\n    0x2a, 0x20, 0x23, 0x2f, 0x29, 0x14, 0x0f, 0x19, 0x41, 0x69, 0x8c, 0x8b, 0x8c, 0x6a, 0x61, 0x6b,\n    0x79, 0x78, 0x72, 0x6c, 0x6b, 0x6a, 0x60, 0x54, 0x50, 0x4b, 0x43, 0x3a, 0x3b, 0x4d, 0x6b, 0x82,\n    0x7e, 0x72, 0x72, 0x6e, 0x62, 0x6b, 0x7e, 0x7d, 0x81, 0x83, 0x85, 0x85, 0x85, 0x7e, 0x6d, 0x5d,\n    0x59, 0x4b, 0x41, 0x47, 0x54, 0x59, 0x56, 0x52, 0x53, 0x57, 0x63, 0x73, 0x79, 0x70, 0x62, 0x59,\n    0x5f, 0x97, 0xab, 0x82, 0x4f, 0x3d, 0x58, 0x81, 0xa0, 0x93, 0x7e, 0x60, 0x3d, 0x22, 0x1d, 0x26,\n    0x24, 0x27, 0x3c, 0x5f, 0x79, 0x85, 0x90, 0x9c, 0x9e, 0x9e, 0xa6, 0xb2, 0xb9, 0xbc, 0xc4, 0xcd,\n    0xae, 0x95, 0x72, 0x56, 0x45, 0x40, 0x47, 0x50, 0x53, 0x4b, 0x44, 0x45, 0x4a, 0x4e, 0x4c, 0x47,\n    0x76, 0x7a, 0x7c, 0x77, 0x6e, 0x67, 0x67, 0x69, 0x70, 0x7a, 0x80, 0x7f, 0x76, 0x6b, 0x6e, 0x7d,\n    0x86, 0x8b, 0x8a, 0x8a, 0x95, 0x9f, 0xa6, 0xad, 0xae, 0xaa, 0xa6, 0xa5, 0xa6, 0xaa, 0xb1, 0xb7,\n    0xb4, 0xb6, 0xb4, 0xb1, 0xaf, 0xaf, 0xac, 0xa7, 0xa9, 0xaa, 0xab, 0xae, 0xaf, 0xb0, 0xb0, 0xb1,\n    0xb0, 0xb0, 0xb0, 0xaf, 0xaf, 0xae, 0xae, 0xae, 0xb1, 0xb3, 0xb5, 0xb4, 0xb3, 0xb2, 0xb3, 0xb5,\n    0xb5, 0xb6, 0xb8, 0xb8, 0xb8, 0xb6, 0xb4, 0xb3, 0xad, 0xad, 0xae, 0xb0, 0xb3, 0xb5, 0xb6, 0xb6,\n    0xad, 0xae, 0xb0, 0xb0, 0xaf, 0xaf, 0xb0, 0xb1, 0xb9, 0xb9, 0xb7, 0xb3, 0xaf, 0xad, 0xae, 0xaf,\n    0xac, 0xaa, 0xab, 0xaf, 0xb1, 0xb1, 0xb1, 0xb4, 0xb2, 0xb0, 0xb1, 0xb6, 0xbb, 0xbd, 0xba, 0xb8,\n    0xb2, 0xb2, 0xb3, 0xb3, 0xb3, 0xb2, 0xb2, 0xb1, 0xb8, 0xb7, 0xb5, 0xb4, 0xb4, 0xb6, 0xb8, 0xba,\n    0xbc, 0xbb, 0xb8, 0xb5, 0xb3, 0xb3, 0xb3, 0xb4, 0xb2, 0xb2, 0xb4, 0xb6, 0xb8, 0xb9, 0xb7, 0xb6,\n    0xaa, 0xac, 0xae, 0xaf, 0xad, 0xab, 0xac, 0xae, 0xaf, 0xb2, 0xb3, 0xb2, 0xb3, 0xb5, 0xb4, 0xb1,\n    0xb2, 0xb0, 0xb0, 0xb2, 0xb2, 0xb0, 0xb0, 0xb2, 0xb7, 0xb5, 0xb3, 0xb1, 0xb1, 0xb2, 0xb4, 0xb5,\n    0xbb, 0xba, 0xb7, 0xb2, 0xae, 0xac, 0xad, 0xaf, 0xb5, 0xb7, 0xb8, 0xb7, 0xb6, 0xb6, 0xb8, 0xb9,\n    0xbb, 0xba, 0xb9, 0xb8, 0xb7, 0xb5, 0xb2, 0xb0, 0xb8, 0xb6, 0xb2, 0xb2, 0xb4, 0xb6, 0xb5, 0xb3,\n    0xb3, 0xb9, 0xb0, 0xa1, 0xaf, 0xd7, 0xf1, 0xf2, 0xf9, 0xfb, 0xfd, 0xfe, 0xfe, 0xfe, 0xfd, 0xfc,\n    0xff, 0xfd, 0xfc, 0xfe, 0xfe, 0xfc, 0xfc, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xfe, 0xfe, 0xfe, 0xff,\n    0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe,\n    0xfb, 0xfb, 0xfc, 0xfc, 0xfc, 0xfc, 0xfd, 0xfd, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe,\n    0xfc, 0xfd, 0xfd, 0xfc, 0xfc, 0xfa, 0xf9, 0xf8, 0xf6, 0xf5, 0xf2, 0xee, 0xe9, 0xe3, 0xde, 0xda,\n    0xda, 0xd8, 0xd9, 0xdd, 0xdf, 0xe1, 0xe4, 0xe8, 0xe9, 0xee, 0xf3, 0xf6, 0xf6, 0xf5, 0xf6, 0xf8,\n    0xf1, 0xf4, 0xf6, 0xf4, 0xf0, 0xec, 0xed, 0xef, 0xf4, 0xe0, 0xca, 0xbd, 0xb6, 0xaf, 0xad, 0xaf,\n    0xaa, 0xa9, 0xa6, 0xa2, 0x9d, 0x99, 0x98, 0x98, 0x90, 0x8f, 0x8d, 0x8c, 0x8b, 0x88, 0x83, 0x7f,\n    0x7d, 0x7a, 0x77, 0x72, 0x6f, 0x6d, 0x6d, 0x6d, 0x6a, 0x6b, 0x6b, 0x6b, 0x6b, 0x6a, 0x68, 0x67,\n    0x69, 0x68, 0x68, 0x67, 0x67, 0x67, 0x67, 0x67, 0x65, 0x66, 0x66, 0x66, 0x65, 0x64, 0x63, 0x63,\n    0x64, 0x64, 0x64, 0x64, 0x65, 0x65, 0x65, 0x65, 0x67, 0x67, 0x68, 0x68, 0x68, 0x69, 0x69, 0x69,\n    0x6a, 0x6b, 0x6c, 0x6e, 0x70, 0x72, 0x74, 0x75, 0x79, 0x79, 0x7c, 0x7e, 0x7c, 0x7d, 0x75, 0x65,\n    0x4b, 0x5f, 0x83, 0x93, 0x95, 0x95, 0x8e, 0x90, 0x92, 0x91, 0x93, 0x94, 0x9d, 0xb2, 0xbf, 0xba,\n    0xbd, 0xbd, 0xbc, 0xb8, 0xb6, 0xb6, 0xba, 0xbf, 0xc0, 0xc0, 0xc1, 0xc1, 0xbd, 0xb9, 0xbb, 0xc0,\n    0xbd, 0xb1, 0x90, 0x74, 0x73, 0x73, 0x6d, 0x6c, 0x71, 0x74, 0x76, 0x74, 0x71, 0x6f, 0x6a, 0x66,\n    0x62, 0x62, 0x64, 0x69, 0x70, 0x72, 0x6a, 0x5f, 0x63, 0x70, 0x7a, 0x79, 0x76, 0x75, 0x74, 0x72,\n    0x5b, 0x62, 0x69, 0x6b, 0x6b, 0x67, 0x5f, 0x58, 0x5e, 0x62, 0x62, 0x60, 0x63, 0x69, 0x66, 0x5f,\n    0x5e, 0x60, 0x64, 0x68, 0x67, 0x65, 0x68, 0x6d, 0x70, 0x74, 0x7a, 0x81, 0x86, 0x8b, 0x90, 0x93,\n    0x97, 0x99, 0x9b, 0x9d, 0x9d, 0x9e, 0x9f, 0xa0, 0x9e, 0x9e, 0x9c, 0x9b, 0x9a, 0x96, 0x92, 0x8f,\n    0x8f, 0x8d, 0x8a, 0x89, 0x88, 0x88, 0x88, 0x88, 0x8a, 0x83, 0x78, 0x69, 0x5c, 0x52, 0x3b, 0x1d,\n    0x1c, 0x2d, 0x3e, 0x43, 0x45, 0x46, 0x44, 0x3f, 0x36, 0x57, 0x73, 0x82, 0x90, 0x82, 0x79, 0x80,\n    0x7d, 0x79, 0x6f, 0x63, 0x5b, 0x59, 0x59, 0x59, 0x5b, 0x4f, 0x4f, 0x63, 0x78, 0x7b, 0x70, 0x67,\n    0x68, 0x61, 0x63, 0x63, 0x5f, 0x65, 0x6d, 0x68, 0x6f, 0x6f, 0x72, 0x7c, 0x86, 0x83, 0x6e, 0x57,\n    0x40, 0x3b, 0x45, 0x5e, 0x6a, 0x5d, 0x49, 0x3e, 0x3d, 0x3b, 0x3f, 0x47, 0x4c, 0x54, 0x68, 0x7d,\n    0x83, 0x75, 0x57, 0x49, 0x55, 0x65, 0x70, 0x7b, 0x87, 0x90, 0x92, 0x89, 0x85, 0x85, 0x7b, 0x6c,\n    0x61, 0x64, 0x68, 0x6d, 0x71, 0x77, 0x7e, 0x84, 0x87, 0x97, 0xa6, 0xa9, 0xa5, 0xa8, 0xb3, 0xbd,\n    0xc7, 0xbd, 0xa3, 0x7c, 0x5c, 0x4e, 0x50, 0x55, 0x71, 0x6a, 0x5f, 0x57, 0x53, 0x53, 0x55, 0x56,\n    0x70, 0x73, 0x74, 0x71, 0x6a, 0x68, 0x6b, 0x70, 0x76, 0x80, 0x86, 0x86, 0x80, 0x76, 0x79, 0x87,\n    0x8f, 0x93, 0x90, 0x8f, 0x96, 0x9c, 0xa0, 0xa5, 0xa2, 0xa3, 0xa2, 0xa2, 0xa7, 0xaf, 0xb5, 0xb6,\n    0xb7, 0xb6, 0xb3, 0xb2, 0xb3, 0xb3, 0xaf, 0xa9, 0xa4, 0xa5, 0xa9, 0xaf, 0xb5, 0xb9, 0xba, 0xba,\n    0xb6, 0xb6, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb2, 0xb4, 0xb6, 0xb7, 0xb8, 0xb8, 0xb9, 0xb9,\n    0xb6, 0xb7, 0xb9, 0xba, 0xb8, 0xb6, 0xb2, 0xb0, 0xb3, 0xb2, 0xb3, 0xb4, 0xb6, 0xb7, 0xb6, 0xb5,\n    0xb2, 0xb4, 0xb5, 0xb2, 0xad, 0xa9, 0xaa, 0xac, 0xa8, 0xa9, 0xac, 0xae, 0xb0, 0xb3, 0xb7, 0xb9,\n    0xb1, 0xae, 0xae, 0xb2, 0xb5, 0xb4, 0xb2, 0xb1, 0xac, 0xad, 0xaf, 0xb2, 0xb6, 0xb7, 0xb7, 0xb5,\n    0xb2, 0xb1, 0xb0, 0xb0, 0xb0, 0xb0, 0xb1, 0xb2, 0xaa, 0xaa, 0xa8, 0xa7, 0xa7, 0xa7, 0xa8, 0xa8,\n    0xb2, 0xb3, 0xb4, 0xb3, 0xb0, 0xae, 0xad, 0xae, 0xb3, 0xb3, 0xb4, 0xb5, 0xb8, 0xb9, 0xb8, 0xb8,\n    0xb3, 0xb3, 0xb2, 0xb0, 0xb0, 0xb0, 0xb1, 0xb2, 0xb1, 0xb3, 0xb4, 0xb2, 0xb2, 0xb2, 0xb0, 0xae,\n    0xaa, 0xab, 0xae, 0xb3, 0xb5, 0xb2, 0xb1, 0xb2, 0xae, 0xac, 0xab, 0xaa, 0xab, 0xae, 0xb1, 0xb3,\n    0xae, 0xb1, 0xb3, 0xb6, 0xb7, 0xb9, 0xbb, 0xbc, 0xb5, 0xb5, 0xb5, 0xb4, 0xb3, 0xb4, 0xb7, 0xb9,\n    0xb5, 0xb7, 0xb9, 0xba, 0xba, 0xb9, 0xb8, 0xb8, 0xb9, 0xb9, 0xba, 0xbd, 0xc0, 0xbf, 0xbb, 0xb7,\n    0xc0, 0xbf, 0xbc, 0xc0, 0xd3, 0xed, 0xfb, 0xfc, 0xff, 0xff, 0xfb, 0xfa, 0xfb, 0xfd, 0xfe, 0xff,\n    0xfd, 0xfd, 0xfe, 0xff, 0xff, 0xfd, 0xfd, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfe, 0xfe,\n    0xfe, 0xfe, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe,\n    0xfc, 0xfc, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfc, 0xfc, 0xfc, 0xfd, 0xfd, 0xfd, 0xfe, 0xfe,\n    0xfe, 0xfe, 0xfe, 0xfe, 0xfd, 0xfc, 0xfa, 0xf9, 0xfb, 0xf9, 0xf6, 0xf4, 0xf1, 0xee, 0xe8, 0xe4,\n    0xdd, 0xda, 0xd9, 0xdb, 0xdd, 0xde, 0xe1, 0xe5, 0xe8, 0xec, 0xf0, 0xf3, 0xf4, 0xf6, 0xf9, 0xfb,\n    0xf0, 0xf5, 0xf8, 0xf7, 0xf4, 0xf1, 0xf1, 0xf3, 0xf1, 0xf9, 0xf9, 0xe6, 0xc8, 0xb1, 0xac, 0xaf,\n    0xb2, 0xb1, 0xad, 0xa6, 0xa0, 0x9c, 0x9d, 0xa0, 0x94, 0x94, 0x93, 0x91, 0x8f, 0x8c, 0x89, 0x88,\n    0x89, 0x86, 0x81, 0x7c, 0x77, 0x74, 0x71, 0x70, 0x6d, 0x6e, 0x6f, 0x6f, 0x6f, 0x6e, 0x6c, 0x6b,\n    0x6d, 0x6c, 0x6a, 0x69, 0x68, 0x69, 0x6a, 0x6a, 0x68, 0x68, 0x68, 0x68, 0x67, 0x67, 0x66, 0x65,\n    0x67, 0x67, 0x67, 0x67, 0x67, 0x68, 0x68, 0x68, 0x6a, 0x6a, 0x6b, 0x6b, 0x6b, 0x6c, 0x6c, 0x6c,\n    0x6c, 0x6d, 0x6f, 0x70, 0x72, 0x74, 0x75, 0x76, 0x7a, 0x79, 0x7c, 0x7e, 0x7d, 0x7e, 0x79, 0x6b,\n    0x4c, 0x51, 0x77, 0x92, 0x94, 0x92, 0x8f, 0x92, 0x94, 0x94, 0x96, 0x97, 0x9e, 0xb2, 0xbf, 0xbc,\n    0xbf, 0xbe, 0xbd, 0xba, 0xb7, 0xb9, 0xbd, 0xc0, 0xc2, 0xc2, 0xc3, 0xc2, 0xbd, 0xb9, 0xb9, 0xbd,\n    0xc0, 0xbc, 0xa4, 0x82, 0x72, 0x73, 0x71, 0x69, 0x6c, 0x70, 0x72, 0x70, 0x6e, 0x6d, 0x6a, 0x67,\n    0x66, 0x66, 0x66, 0x6b, 0x72, 0x74, 0x6c, 0x62, 0x5d, 0x68, 0x71, 0x71, 0x70, 0x76, 0x7d, 0x81,\n    0x71, 0x74, 0x72, 0x6b, 0x64, 0x61, 0x60, 0x60, 0x6b, 0x6c, 0x6b, 0x69, 0x6b, 0x6d, 0x67, 0x5e,\n    0x5d, 0x62, 0x68, 0x6a, 0x66, 0x61, 0x64, 0x69, 0x6b, 0x71, 0x79, 0x7f, 0x83, 0x86, 0x8b, 0x8f,\n    0x95, 0x96, 0x97, 0x98, 0x98, 0x99, 0x9a, 0x9c, 0x9a, 0x99, 0x97, 0x96, 0x95, 0x94, 0x91, 0x8f,\n    0x8e, 0x8c, 0x8a, 0x89, 0x8a, 0x8a, 0x89, 0x89, 0x7f, 0x7e, 0x77, 0x71, 0x7d, 0x8f, 0x7a, 0x4e,\n    0x32, 0x42, 0x44, 0x33, 0x27, 0x27, 0x21, 0x13, 0x32, 0x4d, 0x61, 0x75, 0x81, 0x81, 0x77, 0x7e,\n    0x6f, 0x56, 0x38, 0x28, 0x29, 0x32, 0x3b, 0x41, 0x43, 0x55, 0x64, 0x60, 0x4d, 0x3c, 0x37, 0x3a,\n    0x36, 0x33, 0x39, 0x4d, 0x6b, 0x83, 0x87, 0x7f, 0x5e, 0x5b, 0x5d, 0x68, 0x7b, 0x88, 0x88, 0x81,\n    0x6a, 0x5c, 0x5a, 0x67, 0x68, 0x54, 0x41, 0x3c, 0x36, 0x35, 0x2b, 0x29, 0x49, 0x73, 0x7b, 0x68,\n    0x5c, 0x56, 0x53, 0x60, 0x6c, 0x62, 0x55, 0x54, 0x40, 0x4e, 0x65, 0x79, 0x83, 0x85, 0x87, 0x8a,\n    0x70, 0x7a, 0x79, 0x69, 0x5e, 0x62, 0x6a, 0x6c, 0x5d, 0x72, 0x88, 0x95, 0x9c, 0x9f, 0x9a, 0x92,\n    0x84, 0x9a, 0xab, 0xac, 0xa2, 0x92, 0x79, 0x62, 0x5c, 0x69, 0x79, 0x81, 0x7d, 0x72, 0x67, 0x61,\n    0x77, 0x75, 0x6e, 0x64, 0x5d, 0x5e, 0x66, 0x6e, 0x74, 0x7f, 0x89, 0x8d, 0x8a, 0x80, 0x81, 0x8d,\n    0x94, 0x97, 0x91, 0x8c, 0x90, 0x94, 0x96, 0x9a, 0x99, 0x9f, 0xa4, 0xa5, 0xaa, 0xb0, 0xaf, 0xa9,\n    0xac, 0xad, 0xae, 0xb0, 0xb2, 0xb1, 0xad, 0xa8, 0xab, 0xb0, 0xb4, 0xb6, 0xb6, 0xb4, 0xb0, 0xac,\n    0xb2, 0xb5, 0xb8, 0xbb, 0xbb, 0xb8, 0xb4, 0xb1, 0xb7, 0xb7, 0xb8, 0xb9, 0xb9, 0xb9, 0xb8, 0xb7,\n    0xb4, 0xb5, 0xb7, 0xb7, 0xb7, 0xb5, 0xb3, 0xb1, 0xb9, 0xb8, 0xb7, 0xb7, 0xb6, 0xb5, 0xb2, 0xb0,\n    0xb4, 0xb5, 0xb6, 0xb4, 0xaf, 0xac, 0xac, 0xae, 0xac, 0xad, 0xb0, 0xb2, 0xb3, 0xb3, 0xb3, 0xb3,\n    0xb8, 0xb5, 0xb2, 0xb1, 0xb1, 0xb1, 0xb1, 0xb0, 0xb1, 0xb2, 0xb2, 0xb1, 0xb1, 0xb4, 0xb5, 0xb6,\n    0xb7, 0xb7, 0xb6, 0xb6, 0xb6, 0xb6, 0xb7, 0xb8, 0xb8, 0xb8, 0xb8, 0xb7, 0xb7, 0xb6, 0xb6, 0xb6,\n    0xb6, 0xb9, 0xbb, 0xb9, 0xb5, 0xb1, 0xb1, 0xb3, 0xb1, 0xb1, 0xb0, 0xb1, 0xb2, 0xb3, 0xb3, 0xb3,\n    0xb6, 0xb6, 0xb6, 0xb5, 0xb7, 0xb9, 0xb7, 0xb4, 0xb3, 0xb4, 0xb5, 0xb5, 0xb4, 0xb3, 0xb1, 0xaf,\n    0xad, 0xae, 0xb3, 0xb9, 0xbc, 0xbb, 0xba, 0xba, 0xba, 0xba, 0xb9, 0xb8, 0xb5, 0xb0, 0xad, 0xaa,\n    0xb1, 0xb2, 0xb4, 0xb7, 0xb8, 0xb9, 0xb9, 0xba, 0xb6, 0xb6, 0xb5, 0xb4, 0xb3, 0xb3, 0xb4, 0xb5,\n    0xb4, 0xb5, 0xb7, 0xb7, 0xb7, 0xb8, 0xbc, 0xbf, 0xb5, 0xb3, 0xb5, 0xb9, 0xbb, 0xba, 0xb7, 0xb5,\n    0xb5, 0xb3, 0xc3, 0xe3, 0xf6, 0xf7, 0xf8, 0xff, 0xf9, 0xf9, 0xfa, 0xfc, 0xfb, 0xf9, 0xf9, 0xf9,\n    0xfc, 0xfd, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfe,\n    0xfd, 0xfe, 0xfe, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe,\n    0xfd, 0xfd, 0xfd, 0xfc, 0xfc, 0xfb, 0xfb, 0xfb, 0xfa, 0xfa, 0xfb, 0xfc, 0xfc, 0xfd, 0xfd, 0xfe,\n    0xfe, 0xfe, 0xff, 0xfe, 0xfe, 0xfd, 0xfb, 0xfa, 0xfd, 0xfa, 0xf7, 0xf6, 0xf6, 0xf3, 0xee, 0xea,\n    0xe3, 0xde, 0xdb, 0xdb, 0xdc, 0xdc, 0xdd, 0xe0, 0xe7, 0xea, 0xee, 0xf1, 0xf3, 0xf5, 0xf7, 0xf9,\n    0xfa, 0xf6, 0xf2, 0xf2, 0xf5, 0xf8, 0xf8, 0xf6, 0xf2, 0xf6, 0xf8, 0xf5, 0xed, 0xdd, 0xc4, 0xae,\n    0xae, 0xad, 0xac, 0xac, 0xaa, 0xa6, 0xa2, 0x9e, 0x98, 0x98, 0x97, 0x94, 0x90, 0x8e, 0x8c, 0x8c,\n    0x87, 0x88, 0x88, 0x86, 0x83, 0x7e, 0x7a, 0x77, 0x72, 0x72, 0x72, 0x71, 0x71, 0x70, 0x6f, 0x6f,\n    0x6d, 0x6d, 0x6c, 0x6b, 0x6b, 0x6b, 0x6c, 0x6c, 0x6a, 0x6a, 0x6a, 0x6a, 0x69, 0x69, 0x69, 0x69,\n    0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x6b, 0x6b, 0x6c, 0x6c, 0x6c, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e,\n    0x6e, 0x6f, 0x70, 0x72, 0x74, 0x75, 0x76, 0x76, 0x79, 0x79, 0x7c, 0x7d, 0x7c, 0x7f, 0x7b, 0x6f,\n    0x52, 0x46, 0x67, 0x8a, 0x8f, 0x8f, 0x90, 0x94, 0x95, 0x95, 0x98, 0x99, 0x9f, 0xb1, 0xc0, 0xc0,\n    0xbf, 0xbe, 0xbd, 0xba, 0xb9, 0xba, 0xbe, 0xc1, 0xc4, 0xc4, 0xc5, 0xc3, 0xbd, 0xb7, 0xb7, 0xba,\n    0xbe, 0xc0, 0xb4, 0x94, 0x76, 0x70, 0x72, 0x6d, 0x71, 0x73, 0x72, 0x6d, 0x69, 0x69, 0x68, 0x67,\n    0x6c, 0x6b, 0x6a, 0x6b, 0x6e, 0x6f, 0x6d, 0x69, 0x69, 0x6c, 0x6b, 0x64, 0x60, 0x67, 0x73, 0x7b,\n    0x82, 0x7e, 0x74, 0x67, 0x60, 0x63, 0x6b, 0x70, 0x7a, 0x77, 0x72, 0x70, 0x6f, 0x6a, 0x60, 0x56,\n    0x5a, 0x60, 0x65, 0x64, 0x5e, 0x5a, 0x5d, 0x62, 0x69, 0x70, 0x79, 0x7f, 0x81, 0x83, 0x88, 0x8c,\n    0x91, 0x92, 0x93, 0x93, 0x93, 0x93, 0x95, 0x96, 0x96, 0x94, 0x92, 0x91, 0x91, 0x90, 0x90, 0x8f,\n    0x8d, 0x8b, 0x89, 0x88, 0x89, 0x88, 0x87, 0x85, 0x7d, 0x78, 0x6a, 0x5e, 0x6a, 0x7f, 0x6c, 0x3e,\n    0x36, 0x39, 0x3c, 0x41, 0x49, 0x52, 0x57, 0x57, 0x73, 0x77, 0x62, 0x54, 0x44, 0x51, 0x5e, 0x78,\n    0x64, 0x46, 0x26, 0x17, 0x17, 0x1c, 0x20, 0x25, 0x29, 0x46, 0x5e, 0x66, 0x70, 0x87, 0x99, 0x9f,\n    0xa1, 0x9e, 0x8f, 0x7e, 0x75, 0x6f, 0x67, 0x64, 0x76, 0x74, 0x71, 0x6d, 0x6d, 0x74, 0x7f, 0x87,\n    0x7d, 0x72, 0x6b, 0x6a, 0x60, 0x4a, 0x34, 0x2b, 0x22, 0x29, 0x41, 0x62, 0x75, 0x73, 0x6e, 0x6f,\n    0x7c, 0x75, 0x72, 0x75, 0x6e, 0x5d, 0x54, 0x59, 0x5e, 0x4e, 0x4d, 0x66, 0x7f, 0x81, 0x73, 0x69,\n    0x65, 0x60, 0x56, 0x50, 0x55, 0x58, 0x47, 0x30, 0x36, 0x47, 0x61, 0x7a, 0x87, 0x7f, 0x64, 0x4a,\n    0x72, 0x84, 0x96, 0x9e, 0x9d, 0x93, 0x7f, 0x6c, 0x75, 0x82, 0x92, 0x9a, 0x97, 0x90, 0x8b, 0x8a,\n    0x76, 0x71, 0x67, 0x5b, 0x54, 0x58, 0x62, 0x6c, 0x70, 0x7a, 0x82, 0x87, 0x86, 0x7e, 0x7f, 0x8b,\n    0x96, 0x98, 0x90, 0x8a, 0x8e, 0x93, 0x96, 0x9b, 0xa5, 0xa9, 0xa9, 0xa7, 0xaa, 0xb0, 0xb2, 0xaf,\n    0xad, 0xb0, 0xb4, 0xb4, 0xaf, 0xa7, 0xa1, 0x9f, 0x9c, 0xa8, 0xb3, 0xb7, 0xb6, 0xb4, 0xb1, 0xae,\n    0xb1, 0xb4, 0xb7, 0xba, 0xba, 0xb8, 0xb5, 0xb3, 0xb8, 0xb7, 0xb6, 0xb7, 0xb8, 0xb7, 0xb5, 0xb3,\n    0xb4, 0xb4, 0xb4, 0xb5, 0xb6, 0xb6, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb8, 0xb8, 0xb7, 0xb4, 0xb2,\n    0xb2, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb6, 0xb6, 0xb5, 0xb6, 0xb8, 0xb9, 0xb8, 0xb4, 0xb0, 0xad,\n    0xb1, 0xb2, 0xb2, 0xb1, 0xb0, 0xb0, 0xb2, 0xb4, 0xbc, 0xbc, 0xb9, 0xb3, 0xb2, 0xb7, 0xbc, 0xbd,\n    0xb9, 0xb9, 0xba, 0xba, 0xba, 0xba, 0xbb, 0xbb, 0xb4, 0xb5, 0xb5, 0xb6, 0xb6, 0xb6, 0xb5, 0xb5,\n    0xbb, 0xbd, 0xbe, 0xbc, 0xb9, 0xb7, 0xb8, 0xba, 0xb5, 0xb4, 0xb2, 0xb2, 0xb3, 0xb4, 0xb4, 0xb3,\n    0xaf, 0xb0, 0xae, 0xae, 0xb1, 0xb6, 0xb7, 0xb4, 0xb4, 0xb4, 0xb5, 0xb6, 0xb6, 0xb4, 0xb3, 0xb3,\n    0xb0, 0xaf, 0xb1, 0xb4, 0xb5, 0xb3, 0xb2, 0xb3, 0xb5, 0xb7, 0xb9, 0xbb, 0xba, 0xb7, 0xb4, 0xb1,\n    0xb4, 0xb3, 0xb2, 0xb1, 0xb1, 0xb1, 0xb1, 0xb0, 0xb5, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb5, 0xb4,\n    0xb8, 0xb9, 0xb9, 0xb8, 0xb6, 0xb7, 0xb9, 0xbb, 0xbf, 0xba, 0xb6, 0xb5, 0xb4, 0xb3, 0xb6, 0xbb,\n    0xb4, 0xca, 0xe3, 0xf3, 0xfa, 0xfc, 0xf7, 0xf0, 0xe5, 0xe0, 0xdc, 0xd9, 0xd9, 0xe0, 0xef, 0xfd,\n    0xfb, 0xfd, 0xfd, 0xfc, 0xfa, 0xfb, 0xfc, 0xfd, 0xfd, 0xfd, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xfe,\n    0xfd, 0xfd, 0xfe, 0xfe, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe,\n    0xfd, 0xfd, 0xfc, 0xfc, 0xfb, 0xfb, 0xfa, 0xfa, 0xf9, 0xfa, 0xfa, 0xfb, 0xfc, 0xfd, 0xfd, 0xfe,\n    0xfd, 0xfe, 0xfe, 0xfe, 0xfe, 0xfd, 0xfb, 0xfb, 0xfe, 0xfb, 0xf8, 0xf7, 0xf7, 0xf6, 0xf1, 0xed,\n    0xe9, 0xe3, 0xde, 0xdc, 0xdb, 0xd9, 0xd9, 0xda, 0xe0, 0xe3, 0xe8, 0xed, 0xf0, 0xf2, 0xf4, 0xf5,\n    0xfc, 0xf7, 0xf1, 0xf0, 0xf3, 0xf6, 0xf6, 0xf5, 0xfa, 0xf7, 0xf1, 0xef, 0xf4, 0xf5, 0xe6, 0xd3,\n    0xb5, 0xb0, 0xad, 0xaf, 0xb2, 0xb1, 0xa8, 0x9f, 0x9e, 0x9e, 0x9c, 0x98, 0x93, 0x90, 0x8e, 0x8e,\n    0x87, 0x88, 0x89, 0x89, 0x88, 0x85, 0x83, 0x81, 0x7c, 0x7a, 0x78, 0x75, 0x72, 0x71, 0x71, 0x71,\n    0x6c, 0x6d, 0x6e, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c,\n    0x6c, 0x6c, 0x6c, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6f, 0x6f,\n    0x6f, 0x70, 0x72, 0x73, 0x75, 0x75, 0x76, 0x76, 0x78, 0x78, 0x7b, 0x7c, 0x7b, 0x7e, 0x7c, 0x70,\n    0x53, 0x41, 0x5f, 0x84, 0x8e, 0x91, 0x91, 0x93, 0x95, 0x95, 0x99, 0x9b, 0x9f, 0xaf, 0xbf, 0xc3,\n    0xc0, 0xbe, 0xbc, 0xba, 0xba, 0xbc, 0xc0, 0xc2, 0xc4, 0xc5, 0xc6, 0xc4, 0xbd, 0xb6, 0xb5, 0xb7,\n    0xbc, 0xbf, 0xbd, 0xa6, 0x81, 0x6c, 0x6d, 0x73, 0x7c, 0x7c, 0x76, 0x6d, 0x65, 0x64, 0x65, 0x66,\n    0x6a, 0x6c, 0x6e, 0x6d, 0x6b, 0x6a, 0x6d, 0x70, 0x77, 0x76, 0x6f, 0x65, 0x5f, 0x63, 0x6d, 0x75,\n    0x76, 0x73, 0x6e, 0x69, 0x6a, 0x70, 0x75, 0x76, 0x79, 0x73, 0x6f, 0x6e, 0x6e, 0x68, 0x5f, 0x58,\n    0x62, 0x66, 0x67, 0x63, 0x5d, 0x5c, 0x61, 0x66, 0x6a, 0x71, 0x7a, 0x7e, 0x80, 0x82, 0x86, 0x8a,\n    0x8e, 0x8f, 0x90, 0x8f, 0x8f, 0x90, 0x91, 0x93, 0x92, 0x90, 0x8e, 0x8d, 0x8e, 0x8f, 0x8f, 0x8f,\n    0x8d, 0x8b, 0x88, 0x87, 0x87, 0x86, 0x82, 0x7f, 0x78, 0x6f, 0x61, 0x56, 0x5e, 0x6f, 0x69, 0x4e,\n    0x38, 0x34, 0x3c, 0x55, 0x71, 0x83, 0x8c, 0x91, 0x8c, 0x9e, 0x9f, 0x9b, 0x80, 0x71, 0x5d, 0x5b,\n    0x63, 0x4e, 0x35, 0x24, 0x1f, 0x29, 0x40, 0x56, 0x68, 0x85, 0xa2, 0xad, 0xac, 0xaa, 0xa8, 0xa6,\n    0xac, 0xb5, 0xb8, 0xba, 0xbd, 0xb3, 0x99, 0x85, 0x72, 0x7b, 0x85, 0x87, 0x81, 0x7d, 0x81, 0x86,\n    0x98, 0x90, 0x7f, 0x69, 0x55, 0x42, 0x2f, 0x21, 0x25, 0x43, 0x53, 0x46, 0x3b, 0x49, 0x60, 0x6c,\n    0x71, 0x6a, 0x67, 0x68, 0x68, 0x69, 0x71, 0x77, 0x8c, 0x8b, 0x81, 0x74, 0x72, 0x77, 0x73, 0x69,\n    0x51, 0x4e, 0x48, 0x40, 0x38, 0x2f, 0x26, 0x20, 0x3b, 0x39, 0x40, 0x52, 0x66, 0x75, 0x80, 0x88,\n    0x94, 0x9b, 0xa3, 0xa6, 0xa6, 0xab, 0xb8, 0xc6, 0xcc, 0xcd, 0xcc, 0xc6, 0xbf, 0xbb, 0xbb, 0xbe,\n    0x6a, 0x67, 0x62, 0x5b, 0x59, 0x5e, 0x68, 0x71, 0x72, 0x78, 0x7a, 0x7c, 0x7c, 0x78, 0x7d, 0x8a,\n    0x99, 0x9a, 0x92, 0x8a, 0x8d, 0x91, 0x94, 0x99, 0xa5, 0xa8, 0xaa, 0xaa, 0xaa, 0xad, 0xaf, 0xaf,\n    0xb2, 0xb4, 0xb5, 0xae, 0xa1, 0x93, 0x8e, 0x90, 0x95, 0xa4, 0xb3, 0xb8, 0xb9, 0xbb, 0xbd, 0xbd,\n    0xb7, 0xb8, 0xb8, 0xba, 0xbb, 0xbd, 0xbe, 0xbf, 0xb9, 0xb7, 0xb5, 0xb6, 0xb9, 0xba, 0xb9, 0xb6,\n    0xb6, 0xb5, 0xb5, 0xb6, 0xb7, 0xb9, 0xba, 0xbc, 0xb8, 0xb8, 0xb8, 0xb9, 0xb9, 0xb7, 0xb4, 0xb1,\n    0xb3, 0xb2, 0xb1, 0xb2, 0xb4, 0xb5, 0xb3, 0xb2, 0xaf, 0xb0, 0xb3, 0xb6, 0xb8, 0xb7, 0xb4, 0xb2,\n    0xac, 0xb1, 0xb5, 0xb4, 0xb1, 0xb1, 0xb1, 0xb0, 0xb6, 0xb6, 0xb1, 0xa9, 0xa9, 0xb0, 0xb8, 0xb9,\n    0xb5, 0xb5, 0xb6, 0xb6, 0xb6, 0xb7, 0xb7, 0xb7, 0xb5, 0xb5, 0xb7, 0xb8, 0xb8, 0xb8, 0xb8, 0xb7,\n    0xb2, 0xb3, 0xb4, 0xb4, 0xb3, 0xb3, 0xb5, 0xb7, 0xb9, 0xb7, 0xb6, 0xb6, 0xb7, 0xb7, 0xb7, 0xb6,\n    0xb6, 0xb4, 0xae, 0xa8, 0xaa, 0xb0, 0xb3, 0xb1, 0xb3, 0xb2, 0xb4, 0xb7, 0xb7, 0xb5, 0xb4, 0xb5,\n    0xb5, 0xb2, 0xb0, 0xaf, 0xac, 0xa8, 0xa7, 0xa7, 0xaf, 0xb0, 0xb2, 0xb5, 0xb8, 0xba, 0xbc, 0xbd,\n    0xb5, 0xb3, 0xb1, 0xb1, 0xb3, 0xb6, 0xb8, 0xb9, 0xb7, 0xb8, 0xb9, 0xbb, 0xbd, 0xbd, 0xbc, 0xba,\n    0xb6, 0xb8, 0xba, 0xbc, 0xbc, 0xbb, 0xbb, 0xbb, 0xc4, 0xc2, 0xc2, 0xc2, 0xbd, 0xb9, 0xbb, 0xc1,\n    0xd7, 0xef, 0xff, 0xf8, 0xe9, 0xdd, 0xcf, 0xc0, 0xb9, 0xb3, 0xad, 0xaa, 0xac, 0xb9, 0xd1, 0xe7,\n    0xf9, 0xfb, 0xfb, 0xf7, 0xf3, 0xf3, 0xf5, 0xf5, 0xfa, 0xfb, 0xfc, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe,\n    0xfd, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe,\n    0xfc, 0xfc, 0xfb, 0xfb, 0xfa, 0xfa, 0xf9, 0xf9, 0xf9, 0xfa, 0xfa, 0xfb, 0xfc, 0xfc, 0xfd, 0xfd,\n    0xfd, 0xfd, 0xfe, 0xfe, 0xfd, 0xfd, 0xfb, 0xfb, 0xfe, 0xfc, 0xfa, 0xf9, 0xf9, 0xf8, 0xf5, 0xf2,\n    0xee, 0xe8, 0xe2, 0xdf, 0xdd, 0xda, 0xd7, 0xd7, 0xd8, 0xdb, 0xe0, 0xe6, 0xeb, 0xee, 0xf0, 0xf1,\n    0xf5, 0xf8, 0xfa, 0xf8, 0xf4, 0xf1, 0xf2, 0xf4, 0xf4, 0xf9, 0xf8, 0xef, 0xe9, 0xec, 0xf2, 0xf6,\n    0xdf, 0xd0, 0xbc, 0xb0, 0xad, 0xae, 0xae, 0xac, 0xa7, 0xa5, 0xa2, 0x9e, 0x9a, 0x96, 0x93, 0x91,\n    0x8b, 0x89, 0x86, 0x83, 0x82, 0x82, 0x83, 0x84, 0x85, 0x83, 0x7f, 0x7b, 0x78, 0x76, 0x75, 0x75,\n    0x6f, 0x70, 0x71, 0x72, 0x72, 0x71, 0x70, 0x6f, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x70,\n    0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70,\n    0x71, 0x72, 0x74, 0x75, 0x76, 0x76, 0x76, 0x76, 0x78, 0x78, 0x7c, 0x7c, 0x7a, 0x7d, 0x7b, 0x70,\n    0x51, 0x48, 0x65, 0x85, 0x91, 0x94, 0x90, 0x92, 0x94, 0x95, 0x9a, 0x9b, 0x9d, 0xab, 0xbd, 0xc3,\n    0xc0, 0xbf, 0xbc, 0xbb, 0xbb, 0xbe, 0xc1, 0xc4, 0xc5, 0xc6, 0xc7, 0xc5, 0xbe, 0xb7, 0xb5, 0xb7,\n    0xbb, 0xbf, 0xc0, 0xb2, 0x90, 0x6f, 0x69, 0x75, 0x78, 0x77, 0x72, 0x68, 0x62, 0x62, 0x66, 0x68,\n    0x65, 0x6b, 0x72, 0x73, 0x6e, 0x6a, 0x6d, 0x74, 0x73, 0x71, 0x6d, 0x68, 0x66, 0x68, 0x6d, 0x71,\n    0x6c, 0x69, 0x64, 0x63, 0x68, 0x70, 0x72, 0x70, 0x6d, 0x67, 0x64, 0x69, 0x6c, 0x69, 0x66, 0x65,\n    0x6d, 0x6d, 0x69, 0x63, 0x61, 0x65, 0x6a, 0x6d, 0x6d, 0x72, 0x79, 0x7d, 0x7e, 0x80, 0x83, 0x86,\n    0x8a, 0x8b, 0x8d, 0x8d, 0x8d, 0x8d, 0x8e, 0x8f, 0x8f, 0x8d, 0x8b, 0x8b, 0x8c, 0x8e, 0x8e, 0x8e,\n    0x8d, 0x8a, 0x86, 0x85, 0x85, 0x83, 0x7e, 0x79, 0x78, 0x6b, 0x5e, 0x53, 0x4f, 0x54, 0x55, 0x4b,\n    0x4d, 0x42, 0x36, 0x37, 0x46, 0x58, 0x5f, 0x5f, 0x66, 0x79, 0x8e, 0xa1, 0xa3, 0xa3, 0x95, 0x89,\n    0x6f, 0x5e, 0x49, 0x3d, 0x41, 0x53, 0x6c, 0x7f, 0x6f, 0x5d, 0x4e, 0x4b, 0x4a, 0x4a, 0x54, 0x61,\n    0x6b, 0x74, 0x82, 0x92, 0xa1, 0xa5, 0x92, 0x7b, 0x65, 0x6f, 0x81, 0x91, 0x98, 0x95, 0x91, 0x8f,\n    0x94, 0x8b, 0x72, 0x53, 0x42, 0x42, 0x43, 0x3e, 0x3c, 0x44, 0x5a, 0x6d, 0x64, 0x4c, 0x47, 0x54,\n    0x51, 0x51, 0x56, 0x56, 0x4d, 0x4b, 0x4b, 0x47, 0x35, 0x3f, 0x54, 0x6f, 0x82, 0x7c, 0x5e, 0x41,\n    0x4b, 0x49, 0x44, 0x37, 0x29, 0x2e, 0x4c, 0x6b, 0x7c, 0x66, 0x51, 0x51, 0x5f, 0x76, 0x91, 0xa6,\n    0xa0, 0xa1, 0xa6, 0xac, 0xae, 0xae, 0xb2, 0xba, 0xaf, 0xae, 0xad, 0xa9, 0xa5, 0xa1, 0xa0, 0x9f,\n    0x5f, 0x5e, 0x5c, 0x59, 0x59, 0x5f, 0x68, 0x6f, 0x6e, 0x73, 0x74, 0x77, 0x79, 0x77, 0x7d, 0x8c,\n    0x98, 0x9a, 0x92, 0x8a, 0x8d, 0x90, 0x92, 0x96, 0x9b, 0x9f, 0xa7, 0xac, 0xab, 0xa7, 0xa6, 0xa8,\n    0xaa, 0xa9, 0xa6, 0x9e, 0x92, 0x8a, 0x8d, 0x95, 0xaf, 0xb8, 0xbc, 0xb7, 0xb3, 0xb4, 0xb5, 0xb3,\n    0xb4, 0xb4, 0xb4, 0xb4, 0xb6, 0xb8, 0xba, 0xbc, 0xb9, 0xb5, 0xb2, 0xb4, 0xb9, 0xbc, 0xbc, 0xb9,\n    0xb7, 0xb7, 0xb8, 0xb8, 0xb9, 0xb9, 0xba, 0xba, 0xb9, 0xb9, 0xb9, 0xb9, 0xb8, 0xb4, 0xaf, 0xac,\n    0xb4, 0xb4, 0xb4, 0xb3, 0xb1, 0xb0, 0xaf, 0xae, 0xb4, 0xb3, 0xb2, 0xb2, 0xb3, 0xb2, 0xb0, 0xae,\n    0xb3, 0xb6, 0xb7, 0xb5, 0xb4, 0xb5, 0xb3, 0xb0, 0xaf, 0xaf, 0xa8, 0xa0, 0xa1, 0xab, 0xb1, 0xb2,\n    0xb2, 0xb1, 0xb0, 0xaf, 0xb0, 0xb1, 0xb3, 0xb4, 0xb3, 0xb3, 0xb4, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5,\n    0xb2, 0xb3, 0xb4, 0xb5, 0xb5, 0xb6, 0xb7, 0xb7, 0xb7, 0xb6, 0xb6, 0xb7, 0xb8, 0xb9, 0xb8, 0xb7,\n    0xba, 0xba, 0xb4, 0xab, 0xab, 0xb1, 0xb4, 0xb2, 0xb3, 0xb2, 0xb3, 0xb7, 0xb8, 0xb5, 0xb4, 0xb6,\n    0xbf, 0xbc, 0xb9, 0xb9, 0xb6, 0xb2, 0xb1, 0xb2, 0xc3, 0xc1, 0xbe, 0xbc, 0xba, 0xba, 0xbb, 0xbb,\n    0xbf, 0xbb, 0xb7, 0xb5, 0xb5, 0xb7, 0xb7, 0xb8, 0xbb, 0xba, 0xba, 0xbc, 0xbe, 0xc0, 0xbf, 0xbe,\n    0xb6, 0xb7, 0xb8, 0xba, 0xbd, 0xbe, 0xbe, 0xbd, 0xb8, 0xba, 0xbe, 0xc2, 0xbf, 0xbd, 0xc6, 0xd2,\n    0xf3, 0xf3, 0xef, 0xe1, 0xcb, 0xb6, 0xad, 0xad, 0xbc, 0xbe, 0xc7, 0xd0, 0xd2, 0xd1, 0xd7, 0xe0,\n    0xf2, 0xf7, 0xf8, 0xf4, 0xf0, 0xf1, 0xf1, 0xf0, 0xf8, 0xf9, 0xfb, 0xfd, 0xfe, 0xfe, 0xfe, 0xfe,\n    0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfd, 0xfd, 0xfd, 0xff, 0xff, 0xff, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe,\n    0xfc, 0xfc, 0xfb, 0xfb, 0xfb, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfb, 0xfb, 0xfc, 0xfc, 0xfd, 0xfd,\n    0xfd, 0xfd, 0xfe, 0xfe, 0xfe, 0xfd, 0xfc, 0xfb, 0xfd, 0xfd, 0xfc, 0xfb, 0xfa, 0xf9, 0xf8, 0xf8,\n    0xf5, 0xee, 0xe8, 0xe6, 0xe3, 0xdf, 0xdc, 0xda, 0xd6, 0xd8, 0xdb, 0xe0, 0xe5, 0xea, 0xec, 0xee,\n    0xee, 0xf3, 0xf9, 0xfa, 0xf7, 0xf4, 0xf3, 0xf4, 0xf3, 0xef, 0xeb, 0xec, 0xf0, 0xf4, 0xf3, 0xf0,\n    0xf9, 0xee, 0xdc, 0xc7, 0xb7, 0xb0, 0xb1, 0xb4, 0xae, 0xab, 0xa8, 0xa5, 0xa2, 0x9e, 0x99, 0x96,\n    0x91, 0x8e, 0x89, 0x84, 0x81, 0x80, 0x80, 0x81, 0x82, 0x82, 0x82, 0x81, 0x80, 0x7f, 0x7d, 0x7d,\n    0x77, 0x77, 0x76, 0x76, 0x75, 0x74, 0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72, 0x73, 0x74,\n    0x72, 0x72, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x71, 0x71, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73,\n    0x73, 0x74, 0x76, 0x77, 0x78, 0x78, 0x77, 0x77, 0x79, 0x7a, 0x7e, 0x7d, 0x7b, 0x7d, 0x7b, 0x70,\n    0x57, 0x5c, 0x76, 0x88, 0x90, 0x92, 0x8c, 0x92, 0x95, 0x96, 0x9b, 0x9b, 0x9a, 0xa7, 0xb9, 0xc1,\n    0xc2, 0xc0, 0xbd, 0xbc, 0xbd, 0xc0, 0xc3, 0xc5, 0xc5, 0xc6, 0xc8, 0xc7, 0xc1, 0xb9, 0xb7, 0xb8,\n    0xb8, 0xbf, 0xbe, 0xb5, 0xa0, 0x7c, 0x6c, 0x77, 0x71, 0x72, 0x6f, 0x67, 0x62, 0x63, 0x67, 0x6a,\n    0x6b, 0x6f, 0x75, 0x76, 0x70, 0x6b, 0x6e, 0x75, 0x6a, 0x68, 0x66, 0x66, 0x67, 0x69, 0x6b, 0x6d,\n    0x71, 0x6c, 0x64, 0x61, 0x65, 0x6c, 0x70, 0x6f, 0x69, 0x62, 0x60, 0x65, 0x69, 0x67, 0x67, 0x6b,\n    0x71, 0x6d, 0x66, 0x60, 0x62, 0x6a, 0x6f, 0x6f, 0x6f, 0x72, 0x76, 0x79, 0x7b, 0x7e, 0x80, 0x82,\n    0x84, 0x85, 0x88, 0x89, 0x88, 0x88, 0x89, 0x8a, 0x89, 0x88, 0x87, 0x87, 0x88, 0x8a, 0x8a, 0x8a,\n    0x8a, 0x86, 0x83, 0x82, 0x82, 0x7f, 0x79, 0x74, 0x67, 0x5e, 0x58, 0x53, 0x4d, 0x4e, 0x51, 0x4e,\n    0x50, 0x43, 0x30, 0x25, 0x2e, 0x45, 0x5a, 0x65, 0x6f, 0x73, 0x7d, 0x7f, 0x82, 0x7d, 0x73, 0x60,\n    0x58, 0x4c, 0x3f, 0x3a, 0x40, 0x47, 0x45, 0x3e, 0x3b, 0x48, 0x57, 0x5e, 0x5e, 0x66, 0x7e, 0x96,\n    0xa1, 0x9f, 0x9a, 0x84, 0x6d, 0x75, 0x8a, 0x8f, 0x94, 0x96, 0x9d, 0xa8, 0xaf, 0xae, 0xab, 0xa9,\n    0xa6, 0x9f, 0x8c, 0x6f, 0x56, 0x47, 0x3d, 0x35, 0x37, 0x51, 0x64, 0x61, 0x5c, 0x5d, 0x5a, 0x51,\n    0x58, 0x48, 0x42, 0x41, 0x3e, 0x43, 0x49, 0x45, 0x4f, 0x56, 0x66, 0x6f, 0x62, 0x4a, 0x43, 0x4b,\n    0x43, 0x39, 0x31, 0x32, 0x3d, 0x50, 0x68, 0x7a, 0x8a, 0x87, 0x87, 0x8a, 0x90, 0x96, 0x9c, 0xa0,\n    0x92, 0x90, 0x91, 0x96, 0x9f, 0xa3, 0xa0, 0x9a, 0x99, 0x95, 0x8e, 0x8a, 0x8a, 0x90, 0x98, 0x9e,\n    0x5a, 0x58, 0x55, 0x51, 0x50, 0x55, 0x5e, 0x65, 0x64, 0x6a, 0x6f, 0x75, 0x7a, 0x78, 0x7d, 0x8b,\n    0x91, 0x94, 0x8f, 0x8c, 0x91, 0x95, 0x98, 0x9c, 0x9e, 0xa0, 0xa5, 0xaa, 0xa7, 0xa2, 0xa5, 0xac,\n    0xae, 0xaa, 0xa6, 0xa1, 0x9d, 0x9f, 0xac, 0xb9, 0xb2, 0xb5, 0xb2, 0xaa, 0xa8, 0xae, 0xb2, 0xb1,\n    0xb4, 0xb5, 0xb7, 0xb8, 0xb9, 0xb8, 0xb7, 0xb7, 0xb6, 0xb1, 0xad, 0xaf, 0xb5, 0xb9, 0xb8, 0xb6,\n    0xb7, 0xb8, 0xb9, 0xb9, 0xb9, 0xb8, 0xb6, 0xb5, 0xb3, 0xb4, 0xb5, 0xb6, 0xb6, 0xb3, 0xaf, 0xac,\n    0xb0, 0xb3, 0xb7, 0xb6, 0xb4, 0xb3, 0xb6, 0xb9, 0xb5, 0xb3, 0xb1, 0xb1, 0xb3, 0xb6, 0xb7, 0xb7,\n    0xba, 0xb9, 0xb6, 0xb3, 0xb6, 0xbb, 0xbc, 0xb9, 0xb6, 0xb6, 0xaf, 0xa7, 0xa8, 0xb1, 0xb6, 0xb4,\n    0xb2, 0xb0, 0xae, 0xac, 0xad, 0xaf, 0xb3, 0xb5, 0xb7, 0xb7, 0xb8, 0xb8, 0xb8, 0xb8, 0xb8, 0xb8,\n    0xb4, 0xb4, 0xb5, 0xb7, 0xb8, 0xb7, 0xb6, 0xb4, 0xb5, 0xb5, 0xb5, 0xb7, 0xb9, 0xba, 0xb9, 0xb8,\n    0xad, 0xb1, 0xb1, 0xad, 0xae, 0xb5, 0xb7, 0xb5, 0xb5, 0xb3, 0xb4, 0xb9, 0xb9, 0xb6, 0xb5, 0xb7,\n    0xb8, 0xb7, 0xb6, 0xb8, 0xb9, 0xb7, 0xb8, 0xba, 0xb5, 0xb5, 0xb5, 0xb6, 0xb8, 0xba, 0xbb, 0xbc,\n    0xb5, 0xb2, 0xb0, 0xb0, 0xb2, 0xb6, 0xb7, 0xb8, 0xbb, 0xb9, 0xb7, 0xb7, 0xb9, 0xba, 0xba, 0xba,\n    0xc0, 0xbc, 0xb8, 0xb6, 0xb8, 0xba, 0xbb, 0xbb, 0xbc, 0xb9, 0xb8, 0xb9, 0xbb, 0xc6, 0xdf, 0xf8,\n    0xfd, 0xf1, 0xda, 0xc3, 0xb8, 0xbe, 0xcd, 0xd8, 0xd2, 0xcc, 0xcb, 0xcd, 0xce, 0xcd, 0xd4, 0xdd,\n    0xeb, 0xf2, 0xf6, 0xf4, 0xf1, 0xf2, 0xf2, 0xf1, 0xf6, 0xf8, 0xfa, 0xfc, 0xfe, 0xfe, 0xfe, 0xfe,\n    0xfe, 0xfe, 0xfe, 0xfe, 0xfd, 0xfd, 0xfd, 0xfd, 0xff, 0xff, 0xff, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe,\n    0xfd, 0xfd, 0xfd, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfb, 0xfb, 0xfb, 0xfb, 0xfc, 0xfc, 0xfd, 0xfd,\n    0xfd, 0xfe, 0xfe, 0xff, 0xff, 0xfe, 0xfd, 0xfc, 0xfc, 0xfc, 0xfd, 0xfc, 0xfb, 0xfa, 0xfa, 0xfb,\n    0xfa, 0xf3, 0xee, 0xec, 0xea, 0xe5, 0xe1, 0xdf, 0xdb, 0xda, 0xdb, 0xde, 0xe2, 0xe7, 0xea, 0xec,\n    0xeb, 0xea, 0xeb, 0xf1, 0xf6, 0xf9, 0xf6, 0xf3, 0xe6, 0xea, 0xef, 0xf1, 0xef, 0xee, 0xf2, 0xf8,\n    0xe8, 0xf1, 0xf7, 0xec, 0xd5, 0xbf, 0xb3, 0xb0, 0xb2, 0xae, 0xaa, 0xa8, 0xa7, 0xa3, 0x9d, 0x98,\n    0x96, 0x94, 0x91, 0x8c, 0x88, 0x85, 0x82, 0x81, 0x7a, 0x7d, 0x80, 0x84, 0x86, 0x86, 0x85, 0x84,\n    0x7e, 0x7d, 0x7a, 0x78, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x74, 0x74, 0x74, 0x75, 0x76, 0x76,\n    0x74, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x76, 0x76,\n    0x74, 0x76, 0x77, 0x79, 0x79, 0x79, 0x78, 0x78, 0x7a, 0x7b, 0x7f, 0x7f, 0x7b, 0x7d, 0x7a, 0x6f,\n    0x63, 0x70, 0x84, 0x88, 0x8c, 0x8d, 0x89, 0x94, 0x96, 0x97, 0x9b, 0x9b, 0x98, 0xa3, 0xb6, 0xbe,\n    0xc3, 0xc1, 0xbe, 0xbd, 0xbf, 0xc2, 0xc5, 0xc7, 0xc6, 0xc7, 0xc9, 0xc9, 0xc2, 0xbb, 0xb8, 0xba,\n    0xb3, 0xbe, 0xbb, 0xb4, 0xaa, 0x8a, 0x72, 0x78, 0x78, 0x79, 0x76, 0x6d, 0x65, 0x63, 0x65, 0x67,\n    0x77, 0x77, 0x76, 0x75, 0x6f, 0x6a, 0x6e, 0x76, 0x6e, 0x69, 0x64, 0x65, 0x67, 0x6a, 0x6c, 0x6d,\n    0x71, 0x70, 0x6d, 0x6c, 0x70, 0x75, 0x76, 0x74, 0x6e, 0x66, 0x62, 0x65, 0x66, 0x62, 0x63, 0x69,\n    0x71, 0x6b, 0x62, 0x5d, 0x62, 0x6c, 0x6f, 0x6d, 0x70, 0x71, 0x74, 0x76, 0x79, 0x7c, 0x7d, 0x7e,\n    0x7e, 0x80, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x82, 0x83, 0x84, 0x85, 0x86, 0x85,\n    0x86, 0x82, 0x7f, 0x7e, 0x7f, 0x7c, 0x76, 0x70, 0x67, 0x61, 0x5e, 0x59, 0x51, 0x4f, 0x4d, 0x47,\n    0x54, 0x46, 0x37, 0x2e, 0x2d, 0x37, 0x4e, 0x64, 0x7f, 0x82, 0x91, 0x8b, 0x8d, 0x82, 0x7d, 0x69,\n    0x5a, 0x51, 0x40, 0x32, 0x32, 0x3e, 0x47, 0x48, 0x51, 0x55, 0x53, 0x56, 0x73, 0x94, 0x93, 0x7c,\n    0x68, 0x58, 0x52, 0x50, 0x54, 0x70, 0x84, 0x79, 0x6a, 0x6e, 0x7a, 0x8a, 0x98, 0xa2, 0xac, 0xb4,\n    0xc0, 0xbe, 0xb9, 0xae, 0x9f, 0x91, 0x89, 0x86, 0x7e, 0x7a, 0x6e, 0x62, 0x63, 0x6c, 0x6b, 0x63,\n    0x68, 0x6a, 0x78, 0x73, 0x4f, 0x31, 0x2a, 0x27, 0x2d, 0x45, 0x57, 0x54, 0x45, 0x3b, 0x37, 0x36,\n    0x5b, 0x71, 0x88, 0x8d, 0x83, 0x7a, 0x7d, 0x83, 0x75, 0x87, 0x90, 0x82, 0x6e, 0x69, 0x72, 0x7b,\n    0x8d, 0x95, 0x96, 0x8f, 0x8c, 0x90, 0x8f, 0x88, 0x7d, 0x79, 0x71, 0x6a, 0x66, 0x68, 0x6e, 0x73,\n    0x4e, 0x54, 0x59, 0x57, 0x56, 0x58, 0x5a, 0x5a, 0x65, 0x67, 0x6c, 0x71, 0x73, 0x77, 0x80, 0x89,\n    0x94, 0x94, 0x96, 0x99, 0x9a, 0x9b, 0x9c, 0x9f, 0xa4, 0xa9, 0xae, 0xad, 0xa9, 0xa7, 0xa9, 0xad,\n    0xae, 0xae, 0xaa, 0xa7, 0xa8, 0xae, 0xb3, 0xb5, 0xb7, 0xb7, 0xb4, 0xb0, 0xae, 0xb2, 0xb5, 0xb7,\n    0xbe, 0xbb, 0xb9, 0xb8, 0xb9, 0xba, 0xba, 0xb9, 0xad, 0xa6, 0xa8, 0xb3, 0xbc, 0xbb, 0xb7, 0xb6,\n    0xb7, 0xb6, 0xb6, 0xb8, 0xbb, 0xba, 0xb6, 0xb2, 0xb4, 0xb4, 0xb6, 0xb7, 0xb7, 0xb6, 0xb5, 0xb5,\n    0xb2, 0xb3, 0xb6, 0xb8, 0xb6, 0xb4, 0xb6, 0xbb, 0xb9, 0xb7, 0xb5, 0xb3, 0xb3, 0xb5, 0xb6, 0xb8,\n    0xb9, 0xb8, 0xb5, 0xb4, 0xb7, 0xba, 0xb9, 0xb5, 0xb2, 0xb0, 0xac, 0xab, 0xaf, 0xb5, 0xb6, 0xb4,\n    0xb5, 0xb4, 0xb1, 0xb0, 0xaf, 0xad, 0xab, 0xa9, 0xad, 0xaf, 0xb3, 0xb5, 0xb6, 0xb6, 0xb4, 0xb2,\n    0xaf, 0xb2, 0xb6, 0xb8, 0xb9, 0xb8, 0xb7, 0xb7, 0xb6, 0xb6, 0xb7, 0xb8, 0xb7, 0xb6, 0xb5, 0xb4,\n    0xb2, 0xb1, 0xaf, 0xac, 0xae, 0xb4, 0xb9, 0xba, 0xb9, 0xb5, 0xb2, 0xb1, 0xb3, 0xb7, 0xb9, 0xb9,\n    0xbc, 0xb6, 0xb2, 0xb5, 0xbb, 0xbf, 0xbb, 0xb6, 0xa9, 0xaf, 0xb7, 0xba, 0xb9, 0xb6, 0xb4, 0xb4,\n    0xb3, 0xb3, 0xb3, 0xb3, 0xb4, 0xb4, 0xb5, 0xb5, 0xbc, 0xbf, 0xbf, 0xbb, 0xba, 0xbd, 0xbf, 0xbe,\n    0xc2, 0xc0, 0xbd, 0xba, 0xb8, 0xba, 0xbd, 0xbf, 0xbe, 0xbe, 0xbe, 0xbd, 0xcb, 0xe8, 0xf9, 0xf4,\n    0xde, 0xd3, 0xc8, 0xc6, 0xcb, 0xcb, 0xc2, 0xb9, 0xb9, 0xbd, 0xc1, 0xc3, 0xc3, 0xc4, 0xc5, 0xc6,\n    0xcd, 0xd7, 0xe5, 0xf4, 0xfd, 0xff, 0xff, 0xfd, 0xf9, 0xfc, 0xfe, 0xfe, 0xfe, 0xff, 0xff, 0xfd,\n    0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfd, 0xfd,\n    0xfb, 0xfc, 0xfc, 0xfd, 0xfd, 0xfd, 0xfd, 0xfc, 0xfa, 0xfb, 0xfc, 0xfd, 0xfd, 0xfc, 0xfb, 0xfa,\n    0xfd, 0xfd, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfd, 0xfc, 0xfb, 0xfa,\n    0xf8, 0xf7, 0xf5, 0xf3, 0xf1, 0xed, 0xe8, 0xe4, 0xe0, 0xde, 0xdc, 0xdc, 0xde, 0xe0, 0xe1, 0xe2,\n    0xe4, 0xe9, 0xed, 0xee, 0xed, 0xef, 0xf6, 0xfc, 0xf5, 0xf2, 0xee, 0xee, 0xf0, 0xf4, 0xf6, 0xf7,\n    0xf2, 0xef, 0xef, 0xf1, 0xf0, 0xe6, 0xd3, 0xc4, 0xb3, 0xaf, 0xac, 0xad, 0xab, 0xa6, 0xa2, 0xa3,\n    0x9a, 0x98, 0x96, 0x93, 0x90, 0x8d, 0x89, 0x86, 0x7d, 0x7e, 0x7d, 0x7c, 0x7c, 0x7e, 0x82, 0x85,\n    0x87, 0x87, 0x86, 0x84, 0x82, 0x7f, 0x7c, 0x7b, 0x79, 0x77, 0x75, 0x75, 0x77, 0x78, 0x77, 0x76,\n    0x76, 0x75, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x77, 0x76, 0x75, 0x75, 0x77, 0x78, 0x78, 0x78,\n    0x78, 0x78, 0x77, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7d, 0x7b, 0x79, 0x7b, 0x7d, 0x7b, 0x76, 0x71,\n    0x6d, 0x84, 0x94, 0x90, 0x87, 0x88, 0x8b, 0x8c, 0x96, 0x9a, 0x99, 0x9b, 0x96, 0x9c, 0xb5, 0xbe,\n    0xc5, 0xc3, 0xc0, 0xbf, 0xc1, 0xc4, 0xc7, 0xc8, 0xc8, 0xc8, 0xca, 0xc9, 0xc4, 0xbd, 0xb9, 0xba,\n    0xb9, 0xb0, 0xbd, 0xba, 0xae, 0x9f, 0x7d, 0x6d, 0x75, 0x6e, 0x6f, 0x71, 0x69, 0x64, 0x6a, 0x6f,\n    0x75, 0x78, 0x7a, 0x78, 0x73, 0x6f, 0x6e, 0x70, 0x72, 0x72, 0x71, 0x6f, 0x6c, 0x6a, 0x6b, 0x6e,\n    0x71, 0x6e, 0x69, 0x66, 0x69, 0x6f, 0x72, 0x71, 0x61, 0x64, 0x67, 0x66, 0x65, 0x66, 0x69, 0x6a,\n    0x70, 0x65, 0x61, 0x63, 0x66, 0x6e, 0x71, 0x6d, 0x6d, 0x6e, 0x71, 0x75, 0x78, 0x7b, 0x7d, 0x7d,\n    0x7c, 0x7d, 0x7e, 0x7f, 0x80, 0x81, 0x81, 0x81, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x82, 0x82,\n    0x83, 0x81, 0x80, 0x7e, 0x7b, 0x77, 0x72, 0x6f, 0x6c, 0x66, 0x62, 0x5c, 0x49, 0x37, 0x3b, 0x4c,\n    0x57, 0x49, 0x39, 0x2f, 0x2e, 0x34, 0x41, 0x4e, 0x62, 0x6a, 0x77, 0x80, 0x7d, 0x70, 0x63, 0x5b,\n    0x4f, 0x41, 0x33, 0x33, 0x3e, 0x47, 0x46, 0x42, 0x4e, 0x66, 0x7f, 0x84, 0x75, 0x5b, 0x3e, 0x2b,\n    0x33, 0x4c, 0x57, 0x5b, 0x5d, 0x4c, 0x3f, 0x4a, 0x48, 0x48, 0x4a, 0x52, 0x63, 0x7c, 0x91, 0x9d,\n    0xa6, 0xaf, 0xb7, 0xb9, 0xb7, 0xb2, 0xab, 0xa4, 0x99, 0x91, 0x8a, 0x8b, 0x8f, 0x85, 0x69, 0x4f,\n    0x4b, 0x56, 0x6a, 0x76, 0x67, 0x45, 0x28, 0x1d, 0x1d, 0x3f, 0x50, 0x58, 0x30, 0x33, 0x2d, 0x33,\n    0x37, 0x32, 0x29, 0x20, 0x1f, 0x28, 0x36, 0x3f, 0x4d, 0x45, 0x3d, 0x3f, 0x49, 0x4e, 0x49, 0x41,\n    0x40, 0x3e, 0x41, 0x4a, 0x50, 0x52, 0x55, 0x5a, 0x5c, 0x66, 0x64, 0x5e, 0x60, 0x62, 0x5d, 0x59,\n    0x55, 0x55, 0x57, 0x5a, 0x59, 0x56, 0x57, 0x5d, 0x67, 0x68, 0x6a, 0x70, 0x74, 0x79, 0x7f, 0x85,\n    0x94, 0x9a, 0xa0, 0xa3, 0xa3, 0xa4, 0xa4, 0xa5, 0xaa, 0xaf, 0xb1, 0xad, 0xa6, 0xa3, 0xa9, 0xb0,\n    0xb6, 0xb6, 0xb4, 0xb0, 0xaf, 0xb1, 0xb4, 0xb4, 0xb7, 0xb8, 0xb5, 0xb0, 0xae, 0xb1, 0xb6, 0xb8,\n    0xb9, 0xb7, 0xb5, 0xb5, 0xb7, 0xb8, 0xb9, 0xb9, 0xb5, 0xad, 0xa9, 0xae, 0xb4, 0xb5, 0xb5, 0xb8,\n    0xb7, 0xb5, 0xb5, 0xb6, 0xb8, 0xb7, 0xb4, 0xb0, 0xb1, 0xb3, 0xb6, 0xb8, 0xb9, 0xb8, 0xb6, 0xb5,\n    0xb1, 0xb2, 0xb6, 0xb7, 0xb5, 0xb1, 0xb1, 0xb4, 0xb5, 0xb5, 0xb5, 0xb4, 0xb4, 0xb3, 0xb3, 0xb3,\n    0xb4, 0xb5, 0xb5, 0xb4, 0xb6, 0xb9, 0xb9, 0xb7, 0xb1, 0xb0, 0xae, 0xae, 0xb2, 0xb9, 0xbc, 0xbb,\n    0xb5, 0xb3, 0xaf, 0xad, 0xac, 0xad, 0xae, 0xae, 0xae, 0xaf, 0xb2, 0xb4, 0xb5, 0xb5, 0xb5, 0xb4,\n    0xb4, 0xb6, 0xb9, 0xbb, 0xbb, 0xbc, 0xbc, 0xbd, 0xbf, 0xbd, 0xba, 0xb8, 0xb7, 0xb7, 0xb8, 0xb9,\n    0xbc, 0xbc, 0xba, 0xb9, 0xbb, 0xbf, 0xc0, 0xbe, 0xbb, 0xba, 0xb8, 0xb7, 0xb8, 0xba, 0xbb, 0xbc,\n    0xb4, 0xb5, 0xb9, 0xbe, 0xc0, 0xb8, 0xaa, 0x9e, 0xa5, 0xac, 0xb6, 0xbd, 0xbe, 0xbc, 0xbb, 0xba,\n    0xbf, 0xbf, 0xbe, 0xbe, 0xbd, 0xbd, 0xbe, 0xbe, 0xbe, 0xc1, 0xc1, 0xbd, 0xbd, 0xc0, 0xc3, 0xc2,\n    0xc0, 0xbe, 0xbb, 0xb9, 0xb8, 0xb9, 0xbb, 0xbd, 0xc2, 0xb7, 0xb9, 0xce, 0xea, 0xfd, 0xf3, 0xd9,\n    0xcf, 0xce, 0xcc, 0xc6, 0xbf, 0xbb, 0xb9, 0xb9, 0xbf, 0xc2, 0xc6, 0xc7, 0xc4, 0xbf, 0xbb, 0xb9,\n    0xbf, 0xc5, 0xd1, 0xde, 0xea, 0xf3, 0xf9, 0xfc, 0xfe, 0xfe, 0xfc, 0xfa, 0xfc, 0xff, 0xff, 0xfe,\n    0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfe, 0xfd, 0xfc,\n    0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfd, 0xfd, 0xfc, 0xfc, 0xfd, 0xfe, 0xfe, 0xfd, 0xfc, 0xfc,\n    0xfb, 0xfb, 0xfc, 0xfc, 0xfd, 0xfe, 0xfe, 0xff, 0xfe, 0xfe, 0xfe, 0xfe, 0xfd, 0xfc, 0xfb, 0xfb,\n    0xfc, 0xfb, 0xf9, 0xf8, 0xf5, 0xf2, 0xee, 0xeb, 0xe6, 0xe2, 0xde, 0xdb, 0xda, 0xdb, 0xdb, 0xdc,\n    0xe1, 0xe2, 0xe5, 0xe6, 0xe7, 0xea, 0xef, 0xf3, 0xf6, 0xf5, 0xf3, 0xf3, 0xf2, 0xf2, 0xf1, 0xef,\n    0xf3, 0xf0, 0xef, 0xef, 0xf1, 0xf0, 0xec, 0xe9, 0xcf, 0xbc, 0xab, 0xaa, 0xb1, 0xb3, 0xac, 0xa4,\n    0xa7, 0xa5, 0xa1, 0x99, 0x91, 0x8d, 0x8c, 0x8d, 0x86, 0x86, 0x84, 0x81, 0x7e, 0x7d, 0x7e, 0x7f,\n    0x82, 0x84, 0x85, 0x87, 0x88, 0x87, 0x86, 0x85, 0x83, 0x81, 0x7f, 0x7e, 0x7e, 0x7d, 0x7a, 0x78,\n    0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x7b, 0x7b, 0x78, 0x77, 0x77, 0x77, 0x79, 0x7a, 0x7b, 0x7a,\n    0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7d, 0x7e, 0x7a, 0x74, 0x6f,\n    0x76, 0x85, 0x90, 0x8d, 0x87, 0x89, 0x8e, 0x91, 0x98, 0x9a, 0x99, 0x9c, 0x95, 0x99, 0xb3, 0xbe,\n    0xc5, 0xc2, 0xc0, 0xc0, 0xc2, 0xc5, 0xc7, 0xc9, 0xc9, 0xc9, 0xca, 0xc9, 0xc4, 0xbc, 0xb9, 0xb9,\n    0xb9, 0xb2, 0xbe, 0xbc, 0xb3, 0xa8, 0x87, 0x72, 0x74, 0x6e, 0x70, 0x74, 0x71, 0x71, 0x75, 0x76,\n    0x75, 0x77, 0x77, 0x75, 0x72, 0x70, 0x71, 0x73, 0x74, 0x76, 0x75, 0x71, 0x6c, 0x6a, 0x6b, 0x6c,\n    0x71, 0x6f, 0x6a, 0x67, 0x68, 0x6d, 0x6f, 0x6e, 0x66, 0x6a, 0x6d, 0x6e, 0x6d, 0x6e, 0x6f, 0x70,\n    0x71, 0x68, 0x65, 0x64, 0x63, 0x69, 0x6e, 0x6c, 0x6d, 0x6f, 0x71, 0x74, 0x76, 0x78, 0x79, 0x7a,\n    0x7b, 0x7b, 0x7c, 0x7e, 0x7f, 0x7f, 0x7f, 0x80, 0x81, 0x81, 0x81, 0x81, 0x81, 0x80, 0x80, 0x7f,\n    0x80, 0x7f, 0x7d, 0x7b, 0x79, 0x75, 0x70, 0x6d, 0x6e, 0x64, 0x5b, 0x52, 0x40, 0x30, 0x34, 0x44,\n    0x4d, 0x44, 0x3b, 0x3f, 0x51, 0x63, 0x64, 0x5d, 0x4c, 0x43, 0x42, 0x47, 0x42, 0x37, 0x39, 0x44,\n    0x41, 0x3d, 0x39, 0x38, 0x3e, 0x4a, 0x57, 0x60, 0x69, 0x63, 0x56, 0x44, 0x33, 0x2a, 0x29, 0x2b,\n    0x3d, 0x61, 0x71, 0x68, 0x5d, 0x48, 0x36, 0x38, 0x51, 0x59, 0x5c, 0x51, 0x3e, 0x34, 0x35, 0x3b,\n    0x5f, 0x79, 0x8e, 0x96, 0xa6, 0xc1, 0xce, 0xcb, 0xbe, 0xb7, 0xa6, 0x91, 0x81, 0x7a, 0x79, 0x7a,\n    0x69, 0x73, 0x78, 0x75, 0x74, 0x71, 0x61, 0x4c, 0x22, 0x4f, 0x65, 0x63, 0x33, 0x33, 0x31, 0x38,\n    0x29, 0x26, 0x25, 0x2d, 0x3b, 0x44, 0x41, 0x3a, 0x3f, 0x45, 0x4a, 0x47, 0x40, 0x3c, 0x3d, 0x40,\n    0x4b, 0x51, 0x5b, 0x69, 0x7a, 0x8b, 0x96, 0x9a, 0x81, 0x7f, 0x74, 0x64, 0x55, 0x47, 0x44, 0x4f,\n    0x57, 0x53, 0x57, 0x5f, 0x5f, 0x58, 0x5c, 0x66, 0x6d, 0x6b, 0x6e, 0x75, 0x7e, 0x85, 0x8b, 0x90,\n    0x90, 0x97, 0x9d, 0x9c, 0x9c, 0xa0, 0xa2, 0xa2, 0xaa, 0xb0, 0xb3, 0xaf, 0xa7, 0xa5, 0xab, 0xb2,\n    0xb4, 0xb7, 0xb8, 0xb5, 0xb4, 0xb6, 0xb7, 0xb8, 0xb8, 0xb9, 0xb7, 0xb2, 0xaf, 0xb2, 0xb7, 0xbb,\n    0xbb, 0xb9, 0xb6, 0xb6, 0xb7, 0xb8, 0xb9, 0xba, 0xba, 0xb2, 0xad, 0xaf, 0xb2, 0xb3, 0xb6, 0xba,\n    0xba, 0xb9, 0xb8, 0xb9, 0xbb, 0xbb, 0xb8, 0xb6, 0xb0, 0xb3, 0xb6, 0xb9, 0xbb, 0xb9, 0xb7, 0xb6,\n    0xb3, 0xb4, 0xb8, 0xbb, 0xb9, 0xb4, 0xb3, 0xb5, 0xb8, 0xb9, 0xba, 0xba, 0xba, 0xb8, 0xb6, 0xb4,\n    0xb7, 0xba, 0xbb, 0xb9, 0xb7, 0xb8, 0xb8, 0xb7, 0xb4, 0xb5, 0xb3, 0xb1, 0xb3, 0xb7, 0xb9, 0xb9,\n    0xb9, 0xb6, 0xb0, 0xab, 0xa7, 0xa7, 0xa9, 0xac, 0xac, 0xac, 0xac, 0xab, 0xab, 0xaa, 0xaa, 0xa9,\n    0xa6, 0xa7, 0xaa, 0xac, 0xad, 0xb0, 0xb3, 0xb5, 0xb7, 0xb6, 0xb6, 0xb6, 0xb7, 0xba, 0xbd, 0xbf,\n    0xbb, 0xbb, 0xba, 0xba, 0xbd, 0xbe, 0xbb, 0xb6, 0xb7, 0xb8, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xba,\n    0xbc, 0xbb, 0xba, 0xbc, 0xbe, 0xbe, 0xbc, 0xb9, 0xa9, 0xae, 0xb5, 0xb9, 0xba, 0xbb, 0xbb, 0xbc,\n    0xbd, 0xbc, 0xba, 0xb9, 0xb8, 0xb8, 0xb8, 0xb8, 0xba, 0xbb, 0xba, 0xb7, 0xb6, 0xb9, 0xbb, 0xbb,\n    0xbe, 0xbc, 0xba, 0xb9, 0xba, 0xbb, 0xbd, 0xbd, 0xbb, 0xbc, 0xcc, 0xe2, 0xec, 0xe9, 0xdb, 0xcb,\n    0xc9, 0xca, 0xc9, 0xc1, 0xb8, 0xb4, 0xb7, 0xbd, 0xc0, 0xc2, 0xc5, 0xc5, 0xc3, 0xbf, 0xbb, 0xb9,\n    0xbb, 0xbd, 0xc2, 0xca, 0xd4, 0xdf, 0xe9, 0xef, 0xf6, 0xfb, 0xff, 0xfe, 0xfc, 0xfd, 0xff, 0xff,\n    0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfd, 0xfc, 0xfc,\n    0xfd, 0xfc, 0xfc, 0xfb, 0xfb, 0xfc, 0xfd, 0xfd, 0xfc, 0xfd, 0xfd, 0xfe, 0xfe, 0xfd, 0xfd, 0xfc,\n    0xf9, 0xfa, 0xfa, 0xfc, 0xfd, 0xfe, 0xff, 0xff, 0xfe, 0xfe, 0xfe, 0xfe, 0xfd, 0xfc, 0xfb, 0xfb,\n    0xfc, 0xfb, 0xfa, 0xf9, 0xf8, 0xf5, 0xf1, 0xef, 0xed, 0xe8, 0xe1, 0xdb, 0xd8, 0xd6, 0xd5, 0xd5,\n    0xdb, 0xda, 0xda, 0xdc, 0xdf, 0xe3, 0xe6, 0xe8, 0xf1, 0xf3, 0xf6, 0xf7, 0xf6, 0xf2, 0xef, 0xed,\n    0xef, 0xf0, 0xf0, 0xef, 0xef, 0xf0, 0xf3, 0xf6, 0xed, 0xdf, 0xcd, 0xbf, 0xb5, 0xaf, 0xad, 0xaf,\n    0xa4, 0xa2, 0xa1, 0xa3, 0xa5, 0xa3, 0x9c, 0x96, 0x92, 0x91, 0x8e, 0x8a, 0x85, 0x81, 0x80, 0x7f,\n    0x7d, 0x7f, 0x82, 0x85, 0x87, 0x89, 0x89, 0x89, 0x86, 0x85, 0x85, 0x85, 0x85, 0x85, 0x84, 0x82,\n    0x81, 0x80, 0x7e, 0x7c, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x7a, 0x7b, 0x7b, 0x7b,\n    0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x7a, 0x7b, 0x7c, 0x7b, 0x79, 0x76, 0x74,\n    0x86, 0x89, 0x8c, 0x8c, 0x89, 0x8b, 0x91, 0x96, 0x9b, 0x9b, 0x9a, 0x9e, 0x96, 0x96, 0xb1, 0xc0,\n    0xc4, 0xc2, 0xc0, 0xc0, 0xc3, 0xc6, 0xc8, 0xc9, 0xca, 0xca, 0xcb, 0xc9, 0xc3, 0xbb, 0xb7, 0xb8,\n    0xb9, 0xb6, 0xbe, 0xbc, 0xb8, 0xb1, 0x92, 0x76, 0x6e, 0x6a, 0x6e, 0x73, 0x73, 0x75, 0x76, 0x71,\n    0x75, 0x75, 0x73, 0x71, 0x6f, 0x6f, 0x71, 0x73, 0x78, 0x7c, 0x7c, 0x73, 0x6c, 0x6a, 0x6b, 0x6a,\n    0x6f, 0x6e, 0x6b, 0x68, 0x69, 0x6c, 0x6d, 0x6c, 0x6b, 0x6e, 0x71, 0x73, 0x72, 0x72, 0x73, 0x75,\n    0x74, 0x6e, 0x6b, 0x67, 0x62, 0x65, 0x6c, 0x6c, 0x6e, 0x6f, 0x70, 0x72, 0x73, 0x75, 0x75, 0x75,\n    0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c,\n    0x7c, 0x7b, 0x79, 0x78, 0x75, 0x71, 0x6d, 0x69, 0x66, 0x5e, 0x58, 0x51, 0x42, 0x32, 0x33, 0x3e,\n    0x3f, 0x42, 0x3e, 0x37, 0x3a, 0x44, 0x45, 0x3d, 0x33, 0x35, 0x31, 0x29, 0x29, 0x30, 0x33, 0x2f,\n    0x26, 0x31, 0x43, 0x55, 0x61, 0x63, 0x5e, 0x58, 0x4b, 0x43, 0x3b, 0x36, 0x30, 0x2b, 0x2f, 0x36,\n    0x59, 0x74, 0x71, 0x58, 0x51, 0x59, 0x65, 0x72, 0x78, 0x7b, 0x78, 0x6d, 0x5d, 0x54, 0x54, 0x59,\n    0x56, 0x5d, 0x6d, 0x82, 0x95, 0xa2, 0xac, 0xb2, 0xbf, 0xbf, 0xb9, 0xac, 0x9c, 0x8f, 0x85, 0x7f,\n    0x73, 0x62, 0x4e, 0x44, 0x46, 0x4d, 0x55, 0x5a, 0x6f, 0x86, 0x82, 0x6b, 0x36, 0x2d, 0x1d, 0x13,\n    0x1d, 0x2b, 0x39, 0x3e, 0x3e, 0x3c, 0x3b, 0x39, 0x2d, 0x36, 0x42, 0x4a, 0x4d, 0x50, 0x55, 0x5a,\n    0x5f, 0x66, 0x6c, 0x71, 0x75, 0x71, 0x5e, 0x49, 0x48, 0x34, 0x1b, 0x13, 0x17, 0x1c, 0x29, 0x3e,\n    0x59, 0x5b, 0x62, 0x68, 0x64, 0x5e, 0x61, 0x6b, 0x6e, 0x6a, 0x68, 0x6a, 0x6e, 0x72, 0x76, 0x7a,\n    0x8a, 0x8e, 0x8d, 0x8a, 0x8d, 0x98, 0x9f, 0xa0, 0xa7, 0xad, 0xb4, 0xb5, 0xb2, 0xb0, 0xb2, 0xb5,\n    0xb3, 0xb6, 0xb8, 0xb6, 0xb5, 0xb7, 0xb9, 0xba, 0xba, 0xbc, 0xba, 0xb4, 0xb1, 0xb4, 0xba, 0xbe,\n    0xbe, 0xbc, 0xba, 0xb8, 0xb7, 0xb8, 0xb9, 0xb9, 0xb6, 0xb4, 0xb3, 0xb6, 0xb8, 0xb8, 0xba, 0xbd,\n    0xbb, 0xba, 0xba, 0xbb, 0xbd, 0xbe, 0xbd, 0xbc, 0xb3, 0xb5, 0xb7, 0xba, 0xba, 0xba, 0xb9, 0xb8,\n    0xb4, 0xb5, 0xb8, 0xbc, 0xbb, 0xb8, 0xb7, 0xb9, 0xb8, 0xb9, 0xba, 0xbb, 0xbb, 0xba, 0xb8, 0xb7,\n    0xb9, 0xbb, 0xbc, 0xba, 0xb9, 0xb9, 0xb8, 0xb6, 0xb9, 0xba, 0xb7, 0xb2, 0xaf, 0xb0, 0xb0, 0xb0,\n    0xb4, 0xb2, 0xaf, 0xaa, 0xa6, 0xa5, 0xa6, 0xa7, 0xa9, 0xa9, 0xa8, 0xa7, 0xa7, 0xa7, 0xa8, 0xa9,\n    0xb3, 0xb3, 0xb3, 0xb3, 0xb4, 0xb6, 0xb9, 0xbb, 0xb6, 0xb7, 0xb7, 0xb7, 0xb6, 0xb5, 0xb3, 0xb2,\n    0xb5, 0xb4, 0xb3, 0xb3, 0xb7, 0xb9, 0xb4, 0xad, 0xae, 0xb1, 0xb5, 0xb6, 0xb5, 0xb3, 0xb3, 0xb3,\n    0xa9, 0xab, 0xaf, 0xb2, 0xb4, 0xb5, 0xb5, 0xb4, 0xba, 0xba, 0xb8, 0xb5, 0xb4, 0xb5, 0xb8, 0xbb,\n    0xbf, 0xbe, 0xbd, 0xbc, 0xbb, 0xba, 0xba, 0xbb, 0xc2, 0xc2, 0xc1, 0xbe, 0xbc, 0xbd, 0xbe, 0xbf,\n    0xbf, 0xbe, 0xbc, 0xbb, 0xbc, 0xbe, 0xbf, 0xc0, 0xbc, 0xcc, 0xe3, 0xe5, 0xd2, 0xc6, 0xcb, 0xd0,\n    0xc8, 0xc3, 0xbc, 0xb7, 0xb7, 0xba, 0xbe, 0xc1, 0xc3, 0xc3, 0xc2, 0xc1, 0xc0, 0xbf, 0xbf, 0xc0,\n    0xc1, 0xc0, 0xc1, 0xc3, 0xc7, 0xcd, 0xd4, 0xd7, 0xde, 0xed, 0xfc, 0xff, 0xfe, 0xfb, 0xfb, 0xfc,\n    0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfd, 0xfd,\n    0xfe, 0xfd, 0xfb, 0xfa, 0xfa, 0xfb, 0xfc, 0xfd, 0xfb, 0xfb, 0xfc, 0xfc, 0xfc, 0xfc, 0xfb, 0xfb,\n    0xfa, 0xfa, 0xfb, 0xfc, 0xfd, 0xfe, 0xff, 0xff, 0xfe, 0xfe, 0xfe, 0xfe, 0xfd, 0xfc, 0xfc, 0xfb,\n    0xfc, 0xfb, 0xfa, 0xfa, 0xf9, 0xf7, 0xf4, 0xf2, 0xf1, 0xed, 0xe7, 0xe1, 0xdc, 0xd9, 0xd5, 0xd4,\n    0xd6, 0xd6, 0xd5, 0xd6, 0xd9, 0xdc, 0xdf, 0xe1, 0xe6, 0xec, 0xf3, 0xf7, 0xf7, 0xf5, 0xf3, 0xf3,\n    0xe8, 0xeb, 0xef, 0xef, 0xee, 0xeb, 0xea, 0xea, 0xee, 0xf2, 0xf1, 0xe2, 0xcb, 0xb7, 0xaf, 0xb0,\n    0xb4, 0xae, 0xa7, 0xa3, 0xa2, 0xa2, 0xa2, 0xa1, 0x99, 0x99, 0x97, 0x94, 0x90, 0x8c, 0x8a, 0x88,\n    0x82, 0x82, 0x83, 0x83, 0x85, 0x86, 0x87, 0x87, 0x88, 0x87, 0x87, 0x87, 0x87, 0x88, 0x89, 0x89,\n    0x88, 0x86, 0x84, 0x81, 0x7e, 0x7d, 0x7c, 0x7b, 0x7d, 0x7b, 0x7a, 0x7a, 0x7b, 0x7c, 0x7b, 0x7a,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7e, 0x82, 0x86,\n    0x92, 0x8d, 0x8b, 0x8d, 0x8d, 0x8d, 0x92, 0x98, 0x9d, 0x9c, 0x9a, 0x9f, 0x96, 0x95, 0xb1, 0xc2,\n    0xc3, 0xc2, 0xc1, 0xc2, 0xc5, 0xc8, 0xca, 0xcb, 0xcb, 0xcb, 0xca, 0xc8, 0xc1, 0xb9, 0xb6, 0xb6,\n    0xba, 0xba, 0xbe, 0xbc, 0xba, 0xb7, 0x9c, 0x7a, 0x6a, 0x69, 0x6e, 0x73, 0x72, 0x73, 0x71, 0x68,\n    0x76, 0x75, 0x75, 0x73, 0x72, 0x72, 0x73, 0x75, 0x79, 0x80, 0x7f, 0x75, 0x6c, 0x6a, 0x6a, 0x67,\n    0x6c, 0x6e, 0x6d, 0x6a, 0x6a, 0x6d, 0x6e, 0x6d, 0x6e, 0x6f, 0x71, 0x71, 0x70, 0x6f, 0x72, 0x75,\n    0x78, 0x71, 0x6e, 0x6a, 0x63, 0x66, 0x6d, 0x6d, 0x6e, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x73, 0x73,\n    0x76, 0x76, 0x77, 0x78, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79,\n    0x78, 0x77, 0x75, 0x74, 0x72, 0x6e, 0x6a, 0x67, 0x5d, 0x5c, 0x5a, 0x53, 0x41, 0x2f, 0x2b, 0x30,\n    0x3a, 0x44, 0x46, 0x3a, 0x2f, 0x2f, 0x33, 0x35, 0x3b, 0x40, 0x3d, 0x36, 0x39, 0x40, 0x3a, 0x2b,\n    0x3a, 0x47, 0x5a, 0x67, 0x69, 0x61, 0x56, 0x4f, 0x4c, 0x43, 0x40, 0x40, 0x3b, 0x34, 0x38, 0x43,\n    0x64, 0x6b, 0x68, 0x71, 0x99, 0xbc, 0xbe, 0xb3, 0xa9, 0xa2, 0x9d, 0x9f, 0x9f, 0x93, 0x7f, 0x6f,\n    0x5d, 0x50, 0x54, 0x70, 0x89, 0x96, 0xa2, 0xb0, 0xb5, 0xae, 0xa3, 0x97, 0x8f, 0x88, 0x80, 0x78,\n    0x78, 0x6a, 0x5c, 0x50, 0x3f, 0x2d, 0x25, 0x27, 0x49, 0x66, 0x72, 0x61, 0x2d, 0x1d, 0x16, 0x1a,\n    0x19, 0x1e, 0x23, 0x2a, 0x34, 0x3b, 0x3a, 0x33, 0x2c, 0x2f, 0x37, 0x45, 0x51, 0x58, 0x5c, 0x5d,\n    0x62, 0x5d, 0x58, 0x5a, 0x61, 0x61, 0x54, 0x46, 0x12, 0x1e, 0x2e, 0x47, 0x65, 0x71, 0x6c, 0x68,\n    0x5e, 0x69, 0x72, 0x70, 0x69, 0x65, 0x67, 0x6a, 0x6d, 0x6a, 0x69, 0x69, 0x6b, 0x6e, 0x75, 0x7c,\n    0x81, 0x82, 0x81, 0x83, 0x8d, 0x9c, 0xa5, 0xa6, 0xa7, 0xaa, 0xaf, 0xb4, 0xb8, 0xb9, 0xb8, 0xb7,\n    0xb9, 0xbb, 0xba, 0xb6, 0xb4, 0xb5, 0xb7, 0xb8, 0xba, 0xbb, 0xb8, 0xb3, 0xb0, 0xb4, 0xba, 0xbe,\n    0xbc, 0xbb, 0xba, 0xb9, 0xb7, 0xb7, 0xb8, 0xb9, 0xb5, 0xb5, 0xb7, 0xba, 0xbb, 0xbb, 0xbc, 0xbe,\n    0xba, 0xb9, 0xb9, 0xba, 0xba, 0xba, 0xba, 0xb9, 0xb8, 0xb8, 0xb8, 0xb8, 0xb9, 0xb9, 0xba, 0xba,\n    0xb5, 0xb4, 0xb5, 0xb8, 0xb7, 0xb5, 0xb5, 0xb7, 0xb3, 0xb4, 0xb4, 0xb5, 0xb5, 0xb6, 0xb6, 0xb6,\n    0xb5, 0xb5, 0xb4, 0xb4, 0xb7, 0xba, 0xb8, 0xb4, 0xb5, 0xb6, 0xb5, 0xb1, 0xaf, 0xaf, 0xb0, 0xaf,\n    0xa9, 0xab, 0xad, 0xae, 0xae, 0xae, 0xad, 0xad, 0xad, 0xad, 0xad, 0xae, 0xb0, 0xb3, 0xb5, 0xb7,\n    0xb3, 0xb2, 0xb1, 0xaf, 0xad, 0xad, 0xae, 0xb0, 0xb7, 0xb8, 0xb9, 0xba, 0xba, 0xb9, 0xb8, 0xb7,\n    0xb7, 0xb6, 0xb3, 0xb3, 0xb7, 0xbb, 0xb8, 0xb3, 0xb8, 0xbc, 0xc0, 0xc2, 0xc0, 0xbf, 0xbe, 0xbe,\n    0xc2, 0xc3, 0xc3, 0xc0, 0xbd, 0xbb, 0xbb, 0xbc, 0xc4, 0xc1, 0xbd, 0xb9, 0xb6, 0xb7, 0xb9, 0xbc,\n    0xc0, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xc4, 0xc4, 0xc3, 0xc2, 0xc1, 0xc0, 0xc1, 0xc3,\n    0xc1, 0xc0, 0xbe, 0xbc, 0xbb, 0xbc, 0xbe, 0xc1, 0xd3, 0xdb, 0xe2, 0xd9, 0xc9, 0xc6, 0xca, 0xc8,\n    0xbc, 0xb8, 0xb4, 0xb5, 0xb9, 0xbf, 0xc2, 0xc3, 0xc9, 0xc7, 0xc5, 0xc2, 0xbf, 0xbd, 0xbb, 0xb9,\n    0xbc, 0xbd, 0xbf, 0xc1, 0xc4, 0xc8, 0xca, 0xcb, 0xce, 0xdb, 0xeb, 0xf7, 0xfd, 0xff, 0xfc, 0xf8,\n    0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfe,\n    0xfe, 0xfd, 0xfb, 0xfa, 0xfa, 0xfb, 0xfc, 0xfc, 0xfb, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfb,\n    0xfc, 0xfc, 0xfd, 0xfd, 0xfe, 0xfe, 0xfe, 0xfe, 0xfd, 0xfd, 0xfe, 0xfe, 0xfd, 0xfd, 0xfc, 0xfc,\n    0xfd, 0xfc, 0xfb, 0xfb, 0xfb, 0xfa, 0xf8, 0xf6, 0xf3, 0xf1, 0xee, 0xea, 0xe6, 0xe1, 0xdc, 0xd9,\n    0xd8, 0xd9, 0xd9, 0xd7, 0xd5, 0xd4, 0xd7, 0xd9, 0xde, 0xe3, 0xeb, 0xf0, 0xf3, 0xf5, 0xf7, 0xf8,\n    0xea, 0xeb, 0xec, 0xed, 0xed, 0xec, 0xea, 0xe8, 0xe3, 0xe8, 0xee, 0xf1, 0xea, 0xda, 0xc5, 0xb5,\n    0xb0, 0xb2, 0xb1, 0xad, 0xa5, 0xa1, 0xa1, 0xa4, 0x9f, 0x9e, 0x9d, 0x9b, 0x99, 0x96, 0x94, 0x92,\n    0x8f, 0x8d, 0x8a, 0x88, 0x87, 0x88, 0x8a, 0x8b, 0x90, 0x8e, 0x8b, 0x88, 0x86, 0x86, 0x88, 0x89,\n    0x8a, 0x89, 0x88, 0x87, 0x87, 0x88, 0x88, 0x89, 0x85, 0x83, 0x81, 0x81, 0x81, 0x80, 0x7f, 0x7e,\n    0x81, 0x81, 0x82, 0x82, 0x82, 0x81, 0x81, 0x80, 0x84, 0x85, 0x85, 0x84, 0x83, 0x86, 0x8b, 0x8f,\n    0x8f, 0x88, 0x87, 0x8d, 0x91, 0x90, 0x93, 0x98, 0x9b, 0x9a, 0x98, 0x9c, 0x95, 0x97, 0xb3, 0xc3,\n    0xc2, 0xc1, 0xc1, 0xc3, 0xc6, 0xc9, 0xcb, 0xcc, 0xcc, 0xcb, 0xca, 0xc7, 0xc0, 0xb8, 0xb5, 0xb5,\n    0xb9, 0xbd, 0xbe, 0xbc, 0xbc, 0xbc, 0xa9, 0x86, 0x6f, 0x6d, 0x73, 0x79, 0x79, 0x78, 0x76, 0x6e,\n    0x74, 0x76, 0x79, 0x7a, 0x79, 0x78, 0x79, 0x7a, 0x78, 0x7d, 0x7d, 0x74, 0x6c, 0x69, 0x67, 0x64,\n    0x6a, 0x6d, 0x6f, 0x6d, 0x6c, 0x6f, 0x71, 0x71, 0x74, 0x72, 0x71, 0x71, 0x6f, 0x6e, 0x71, 0x77,\n    0x79, 0x71, 0x6d, 0x69, 0x65, 0x68, 0x6e, 0x6c, 0x6c, 0x6d, 0x6d, 0x6e, 0x6f, 0x71, 0x71, 0x72,\n    0x72, 0x73, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x77, 0x77,\n    0x74, 0x73, 0x72, 0x71, 0x6f, 0x6c, 0x68, 0x65, 0x5e, 0x5e, 0x5a, 0x4d, 0x3a, 0x2c, 0x2d, 0x34,\n    0x3c, 0x36, 0x30, 0x2d, 0x2b, 0x28, 0x24, 0x21, 0x24, 0x24, 0x34, 0x4c, 0x4f, 0x40, 0x39, 0x41,\n    0x40, 0x5b, 0x78, 0x7f, 0x6f, 0x5a, 0x4f, 0x4e, 0x54, 0x48, 0x40, 0x3c, 0x32, 0x2b, 0x35, 0x46,\n    0x54, 0x6e, 0x85, 0x90, 0x95, 0x96, 0x93, 0x92, 0x98, 0x92, 0x93, 0x9e, 0xa8, 0xa5, 0x98, 0x8d,\n    0x81, 0x76, 0x68, 0x61, 0x6a, 0x7b, 0x88, 0x8c, 0x81, 0x8f, 0x9f, 0xa7, 0xa1, 0x8b, 0x6e, 0x58,\n    0x62, 0x6d, 0x6f, 0x69, 0x6d, 0x7c, 0x82, 0x7c, 0x89, 0x80, 0x74, 0x6b, 0x4b, 0x35, 0x20, 0x15,\n    0x1e, 0x20, 0x1e, 0x1d, 0x22, 0x29, 0x2a, 0x25, 0x28, 0x2b, 0x32, 0x3d, 0x46, 0x4c, 0x52, 0x59,\n    0x50, 0x4d, 0x50, 0x55, 0x4f, 0x3f, 0x32, 0x2e, 0x5e, 0x86, 0xa5, 0xad, 0xb3, 0xaf, 0x95, 0x7b,\n    0x5f, 0x6c, 0x75, 0x73, 0x6f, 0x6f, 0x71, 0x71, 0x63, 0x62, 0x62, 0x64, 0x66, 0x6a, 0x71, 0x78,\n    0x73, 0x75, 0x7b, 0x86, 0x92, 0x9c, 0xa2, 0xa3, 0xa3, 0xa2, 0xa3, 0xa9, 0xb0, 0xb4, 0xb4, 0xb2,\n    0xb4, 0xb4, 0xb2, 0xb0, 0xb1, 0xb5, 0xb7, 0xb7, 0xb8, 0xb7, 0xb3, 0xae, 0xae, 0xb2, 0xb8, 0xba,\n    0xb9, 0xba, 0xbc, 0xbc, 0xbb, 0xbb, 0xbc, 0xbd, 0xb8, 0xb7, 0xb6, 0xb6, 0xb7, 0xb9, 0xbb, 0xbc,\n    0xbb, 0xbb, 0xbb, 0xba, 0xb9, 0xb7, 0xb6, 0xb5, 0xba, 0xb9, 0xb8, 0xb7, 0xb7, 0xb8, 0xba, 0xbb,\n    0xba, 0xb8, 0xb7, 0xb7, 0xb6, 0xb3, 0xb2, 0xb3, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xb8, 0xba, 0xbb,\n    0xbc, 0xb9, 0xb5, 0xb3, 0xb6, 0xb8, 0xb5, 0xb0, 0xac, 0xae, 0xaf, 0xaf, 0xb2, 0xb6, 0xb7, 0xb6,\n    0xad, 0xaf, 0xb3, 0xb7, 0xba, 0xbb, 0xb8, 0xb6, 0xb4, 0xb4, 0xb5, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6,\n    0xb7, 0xb8, 0xb9, 0xb9, 0xb9, 0xba, 0xbc, 0xbe, 0xbe, 0xbd, 0xbc, 0xbc, 0xbd, 0xbf, 0xc2, 0xc3,\n    0xba, 0xb9, 0xb6, 0xb5, 0xb8, 0xbd, 0xbd, 0xba, 0xbe, 0xc0, 0xc2, 0xc3, 0xc2, 0xc1, 0xbf, 0xbe,\n    0xc4, 0xc3, 0xbf, 0xbb, 0xb8, 0xb8, 0xbc, 0xc0, 0xbb, 0xbb, 0xbc, 0xbc, 0xbc, 0xbb, 0xbb, 0xbb,\n    0xb7, 0xb8, 0xb9, 0xbb, 0xbc, 0xbc, 0xbb, 0xbb, 0xba, 0xba, 0xbb, 0xbc, 0xbc, 0xba, 0xbc, 0xbe,\n    0xc0, 0xc0, 0xbf, 0xbb, 0xb9, 0xbc, 0xc3, 0xc9, 0xe6, 0xe1, 0xda, 0xcf, 0xc6, 0xc7, 0xc1, 0xb2,\n    0xb0, 0xb5, 0xbb, 0xbf, 0xc0, 0xc1, 0xc4, 0xc7, 0xc7, 0xc7, 0xc7, 0xc6, 0xc3, 0xbe, 0xb7, 0xb3,\n    0xb0, 0xb2, 0xb7, 0xbd, 0xc3, 0xc9, 0xcd, 0xd0, 0xd1, 0xd2, 0xd7, 0xe4, 0xf6, 0xff, 0xff, 0xfb,\n    0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,\n    0xfd, 0xfd, 0xfc, 0xfb, 0xfa, 0xfa, 0xfb, 0xfb, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd,\n    0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfe, 0xfd, 0xfd, 0xfc, 0xfc,\n    0xfc, 0xfb, 0xfa, 0xfa, 0xfb, 0xfa, 0xf9, 0xf7, 0xf5, 0xf4, 0xf3, 0xf2, 0xf0, 0xeb, 0xe6, 0xe2,\n    0xe0, 0xe1, 0xe1, 0xdd, 0xd7, 0xd4, 0xd3, 0xd4, 0xda, 0xdd, 0xe2, 0xe7, 0xec, 0xf0, 0xf4, 0xf6,\n    0xf7, 0xf3, 0xed, 0xe9, 0xe9, 0xea, 0xeb, 0xeb, 0xeb, 0xe8, 0xe5, 0xe7, 0xed, 0xed, 0xe4, 0xd9,\n    0xc1, 0xb9, 0xb1, 0xaf, 0xb1, 0xb1, 0xaa, 0xa4, 0xa5, 0xa3, 0xa1, 0xa0, 0x9e, 0x9c, 0x99, 0x97,\n    0x98, 0x95, 0x92, 0x8e, 0x8d, 0x8e, 0x90, 0x91, 0x92, 0x91, 0x8f, 0x8c, 0x8b, 0x8b, 0x8d, 0x8f,\n    0x8e, 0x8d, 0x8c, 0x8b, 0x8b, 0x8b, 0x8c, 0x8c, 0x8d, 0x8c, 0x8a, 0x89, 0x88, 0x88, 0x87, 0x86,\n    0x86, 0x87, 0x88, 0x88, 0x88, 0x87, 0x86, 0x85, 0x84, 0x86, 0x88, 0x88, 0x86, 0x85, 0x84, 0x85,\n    0x82, 0x80, 0x82, 0x8b, 0x91, 0x92, 0x94, 0x98, 0x96, 0x97, 0x94, 0x97, 0x93, 0x9a, 0xb7, 0xc3,\n    0xc1, 0xc1, 0xc2, 0xc4, 0xc8, 0xcb, 0xcd, 0xcd, 0xcd, 0xcc, 0xcb, 0xc8, 0xc1, 0xb9, 0xb5, 0xb6,\n    0xb8, 0xbf, 0xbd, 0xbf, 0xc0, 0xc0, 0xb8, 0x9b, 0x7b, 0x71, 0x72, 0x7b, 0x7e, 0x7e, 0x7f, 0x7b,\n    0x6f, 0x75, 0x7a, 0x7c, 0x7a, 0x78, 0x79, 0x7a, 0x76, 0x77, 0x77, 0x73, 0x6e, 0x69, 0x66, 0x65,\n    0x6b, 0x70, 0x72, 0x6f, 0x6d, 0x6f, 0x71, 0x73, 0x77, 0x73, 0x72, 0x73, 0x71, 0x6f, 0x73, 0x7a,\n    0x75, 0x6d, 0x6b, 0x68, 0x64, 0x67, 0x6d, 0x6b, 0x6b, 0x6b, 0x6b, 0x6c, 0x6d, 0x6f, 0x70, 0x71,\n    0x6f, 0x70, 0x71, 0x71, 0x72, 0x72, 0x72, 0x71, 0x73, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x74,\n    0x71, 0x70, 0x6f, 0x6e, 0x6d, 0x6a, 0x66, 0x63, 0x60, 0x5e, 0x56, 0x4a, 0x41, 0x44, 0x53, 0x61,\n    0x5e, 0x4b, 0x36, 0x2c, 0x27, 0x22, 0x20, 0x20, 0x2f, 0x30, 0x39, 0x3f, 0x39, 0x32, 0x3f, 0x56,\n    0x88, 0x84, 0x76, 0x5e, 0x45, 0x39, 0x3e, 0x47, 0x43, 0x3a, 0x34, 0x31, 0x2c, 0x2b, 0x3c, 0x50,\n    0x6a, 0x67, 0x6a, 0x75, 0x80, 0x86, 0x87, 0x86, 0x88, 0x88, 0x89, 0x89, 0x82, 0x7d, 0x81, 0x8a,\n    0x8d, 0x87, 0x7f, 0x75, 0x6c, 0x69, 0x6d, 0x74, 0x76, 0x79, 0x7e, 0x86, 0x8e, 0x8d, 0x80, 0x72,\n    0x7c, 0x84, 0x8a, 0x8b, 0x89, 0x7f, 0x67, 0x50, 0x45, 0x4b, 0x60, 0x6f, 0x5d, 0x42, 0x33, 0x30,\n    0x3c, 0x44, 0x46, 0x3f, 0x3d, 0x42, 0x48, 0x48, 0x22, 0x21, 0x26, 0x31, 0x39, 0x3c, 0x40, 0x44,\n    0x41, 0x39, 0x34, 0x30, 0x24, 0x1e, 0x2e, 0x45, 0x6d, 0x86, 0x8a, 0x80, 0x8f, 0xac, 0xb7, 0xb1,\n    0x67, 0x69, 0x6e, 0x73, 0x75, 0x75, 0x76, 0x77, 0x78, 0x74, 0x73, 0x74, 0x75, 0x74, 0x74, 0x76,\n    0x74, 0x77, 0x81, 0x8e, 0x93, 0x91, 0x91, 0x96, 0x99, 0x99, 0x9c, 0xa2, 0xa9, 0xae, 0xae, 0xad,\n    0xac, 0xab, 0xaa, 0xab, 0xb0, 0xb6, 0xb8, 0xb7, 0xb6, 0xb4, 0xaf, 0xaa, 0xac, 0xb2, 0xb6, 0xb6,\n    0xb9, 0xbb, 0xbe, 0xbf, 0xbf, 0xbe, 0xbf, 0xbf, 0xb8, 0xb6, 0xb4, 0xb3, 0xb5, 0xb8, 0xb9, 0xb9,\n    0xba, 0xbb, 0xbc, 0xbc, 0xbb, 0xb9, 0xb7, 0xb6, 0xb7, 0xb6, 0xb6, 0xb6, 0xb7, 0xb8, 0xb9, 0xb9,\n    0xbd, 0xbb, 0xba, 0xbb, 0xb9, 0xb5, 0xb2, 0xb2, 0xb7, 0xb7, 0xb7, 0xb8, 0xb9, 0xba, 0xbb, 0xbc,\n    0xbe, 0xbd, 0xb9, 0xb5, 0xb4, 0xb6, 0xb5, 0xb2, 0xae, 0xaf, 0xaf, 0xb0, 0xb3, 0xb7, 0xb7, 0xb4,\n    0xb1, 0xb0, 0xb1, 0xb5, 0xba, 0xbc, 0xba, 0xb7, 0xb6, 0xb7, 0xb8, 0xb7, 0xb6, 0xb4, 0xb1, 0xb0,\n    0xb3, 0xb5, 0xb8, 0xba, 0xbb, 0xbb, 0xbc, 0xbd, 0xc5, 0xc3, 0xbf, 0xbc, 0xb9, 0xb8, 0xb8, 0xb9,\n    0xbb, 0xba, 0xb8, 0xb7, 0xb9, 0xbd, 0xbf, 0xbe, 0xb6, 0xb6, 0xb5, 0xb5, 0xb4, 0xb2, 0xb0, 0xae,\n    0xac, 0xb2, 0xba, 0xbf, 0xc0, 0xbd, 0xb9, 0xb6, 0xb4, 0xb5, 0xb8, 0xba, 0xbc, 0xbc, 0xbb, 0xba,\n    0xb9, 0xbb, 0xbd, 0xc0, 0xc1, 0xc1, 0xc0, 0xbf, 0xbd, 0xbc, 0xbe, 0xc1, 0xc0, 0xbc, 0xbc, 0xbe,\n    0xbb, 0xbe, 0xc0, 0xbe, 0xbf, 0xc6, 0xd5, 0xe1, 0xe4, 0xd9, 0xd0, 0xc6, 0xbb, 0xb8, 0xb6, 0xaf,\n    0xb7, 0xbd, 0xc4, 0xc7, 0xc6, 0xc6, 0xc8, 0xca, 0xc7, 0xc7, 0xc8, 0xc8, 0xc6, 0xc1, 0xba, 0xb5,\n    0xab, 0xab, 0xac, 0xaf, 0xb6, 0xbe, 0xc6, 0xcb, 0xcd, 0xcc, 0xcc, 0xd2, 0xe0, 0xf0, 0xfa, 0xfd,\n    0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xfe,\n    0xfd, 0xfc, 0xfc, 0xfb, 0xfb, 0xfa, 0xfa, 0xfa, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd,\n    0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfe, 0xfd, 0xfd, 0xfd, 0xfc,\n    0xfc, 0xfb, 0xfa, 0xfa, 0xfa, 0xfa, 0xf9, 0xf8, 0xf9, 0xf8, 0xf7, 0xf6, 0xf5, 0xf1, 0xed, 0xea,\n    0xe8, 0xe8, 0xe7, 0xe5, 0xe2, 0xde, 0xda, 0xd8, 0xd8, 0xd8, 0xdb, 0xdf, 0xe4, 0xe9, 0xed, 0xee,\n    0xf9, 0xf6, 0xf1, 0xed, 0xeb, 0xe9, 0xe7, 0xe6, 0xf0, 0xee, 0xe8, 0xe2, 0xe3, 0xea, 0xf1, 0xf3,\n    0xf5, 0xdf, 0xc3, 0xb3, 0xb0, 0xb2, 0xaf, 0xab, 0xaa, 0xa8, 0xa5, 0xa3, 0xa3, 0xa1, 0x9f, 0x9d,\n    0x9c, 0x9a, 0x98, 0x96, 0x94, 0x94, 0x95, 0x95, 0x91, 0x92, 0x93, 0x93, 0x92, 0x92, 0x94, 0x95,\n    0x92, 0x91, 0x8f, 0x8e, 0x8c, 0x8c, 0x8c, 0x8c, 0x8f, 0x8e, 0x8c, 0x8c, 0x8c, 0x8c, 0x8b, 0x8a,\n    0x88, 0x89, 0x8a, 0x8a, 0x8a, 0x89, 0x88, 0x87, 0x83, 0x84, 0x85, 0x85, 0x82, 0x7e, 0x7a, 0x78,\n    0x79, 0x7c, 0x83, 0x8a, 0x8f, 0x92, 0x94, 0x96, 0x92, 0x95, 0x92, 0x93, 0x93, 0xa1, 0xbd, 0xc5,\n    0xc0, 0xc0, 0xc2, 0xc5, 0xc9, 0xcc, 0xce, 0xce, 0xcf, 0xce, 0xcc, 0xc9, 0xc2, 0xbb, 0xb7, 0xb8,\n    0xba, 0xc1, 0xbe, 0xc2, 0xc1, 0xc1, 0xc1, 0xab, 0x8f, 0x77, 0x6c, 0x75, 0x7b, 0x7c, 0x7d, 0x7c,\n    0x72, 0x79, 0x7e, 0x7e, 0x78, 0x73, 0x74, 0x76, 0x77, 0x73, 0x73, 0x76, 0x74, 0x6d, 0x69, 0x6b,\n    0x70, 0x74, 0x75, 0x71, 0x6c, 0x6c, 0x6f, 0x70, 0x71, 0x6e, 0x6f, 0x72, 0x70, 0x6d, 0x6f, 0x76,\n    0x70, 0x6c, 0x6c, 0x6a, 0x63, 0x65, 0x6b, 0x6c, 0x6a, 0x6a, 0x6a, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e,\n    0x6d, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71,\n    0x6e, 0x6d, 0x6c, 0x6c, 0x6a, 0x68, 0x64, 0x61, 0x5d, 0x59, 0x52, 0x4a, 0x4a, 0x54, 0x63, 0x6e,\n    0x58, 0x50, 0x3f, 0x2b, 0x1c, 0x18, 0x1c, 0x21, 0x21, 0x2b, 0x2f, 0x2e, 0x38, 0x54, 0x74, 0x86,\n    0x66, 0x59, 0x49, 0x3e, 0x3c, 0x3f, 0x42, 0x42, 0x47, 0x3c, 0x32, 0x2c, 0x2a, 0x32, 0x47, 0x5b,\n    0x6b, 0x67, 0x69, 0x6c, 0x6e, 0x75, 0x81, 0x87, 0x83, 0x89, 0x91, 0x94, 0x8b, 0x81, 0x81, 0x89,\n    0x8a, 0x83, 0x83, 0x87, 0x7c, 0x68, 0x60, 0x65, 0x6a, 0x66, 0x61, 0x62, 0x6b, 0x74, 0x75, 0x72,\n    0x74, 0x6c, 0x6a, 0x6f, 0x74, 0x72, 0x70, 0x72, 0x6c, 0x5b, 0x5a, 0x68, 0x76, 0x80, 0x8a, 0x8d,\n    0x8d, 0x7b, 0x63, 0x55, 0x5a, 0x61, 0x55, 0x41, 0x37, 0x37, 0x3b, 0x3c, 0x35, 0x28, 0x23, 0x26,\n    0x22, 0x21, 0x24, 0x29, 0x28, 0x25, 0x2b, 0x36, 0x57, 0x5f, 0x60, 0x65, 0x80, 0xa2, 0xba, 0xc6,\n    0x76, 0x6c, 0x6a, 0x72, 0x77, 0x73, 0x70, 0x72, 0x6a, 0x68, 0x6a, 0x73, 0x7c, 0x7f, 0x7f, 0x7e,\n    0x84, 0x86, 0x8f, 0x98, 0x93, 0x87, 0x85, 0x8c, 0x92, 0x96, 0x9e, 0xa6, 0xad, 0xb0, 0xaf, 0xad,\n    0xaf, 0xae, 0xac, 0xad, 0xb2, 0xb7, 0xb7, 0xb3, 0xb7, 0xb3, 0xad, 0xa9, 0xac, 0xb2, 0xb6, 0xb5,\n    0xb7, 0xba, 0xbe, 0xbf, 0xbd, 0xbb, 0xbb, 0xbb, 0xb4, 0xb4, 0xb4, 0xb5, 0xb8, 0xbb, 0xba, 0xb7,\n    0xb5, 0xb7, 0xba, 0xbc, 0xbc, 0xbb, 0xba, 0xb9, 0xb3, 0xb3, 0xb5, 0xb6, 0xb7, 0xb7, 0xb8, 0xb8,\n    0xba, 0xb9, 0xba, 0xbc, 0xbc, 0xb7, 0xb3, 0xb2, 0xb1, 0xb2, 0xb2, 0xb3, 0xb4, 0xb4, 0xb4, 0xb4,\n    0xb3, 0xb5, 0xb5, 0xb2, 0xb2, 0xb6, 0xba, 0xbb, 0xb7, 0xb6, 0xb3, 0xb1, 0xb2, 0xb3, 0xaf, 0xaa,\n    0xa7, 0xa4, 0xa3, 0xa8, 0xb0, 0xb7, 0xb8, 0xb6, 0xb3, 0xb5, 0xb8, 0xbb, 0xbb, 0xba, 0xb8, 0xb6,\n    0xb2, 0xb4, 0xb5, 0xb4, 0xb1, 0xad, 0xaa, 0xa9, 0xaa, 0xac, 0xb0, 0xb5, 0xb9, 0xbb, 0xbd, 0xbe,\n    0xbe, 0xbf, 0xbe, 0xbc, 0xbd, 0xc1, 0xc3, 0xc3, 0xc2, 0xbf, 0xbc, 0xbb, 0xba, 0xb8, 0xb5, 0xb3,\n    0xb5, 0xb5, 0xb4, 0xb3, 0xb2, 0xb3, 0xb4, 0xb5, 0xb8, 0xb8, 0xb8, 0xb9, 0xbb, 0xbc, 0xbc, 0xbb,\n    0xba, 0xbd, 0xc0, 0xc4, 0xc5, 0xc4, 0xc2, 0xc1, 0xc0, 0xbe, 0xc0, 0xc3, 0xc0, 0xba, 0xb8, 0xba,\n    0xb7, 0xbc, 0xc1, 0xc3, 0xc7, 0xd4, 0xe8, 0xf8, 0xdb, 0xca, 0xbf, 0xbb, 0xb3, 0xb0, 0xb7, 0xbd,\n    0xc5, 0xc3, 0xc3, 0xc4, 0xc7, 0xc9, 0xc9, 0xc9, 0xd0, 0xce, 0xcb, 0xc9, 0xc6, 0xc1, 0xbb, 0xb7,\n    0xad, 0xa9, 0xa3, 0x9f, 0xa2, 0xaa, 0xb3, 0xba, 0xbd, 0xc4, 0xc8, 0xc5, 0xc6, 0xd4, 0xea, 0xfb,\n    0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfd, 0xfd, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe,\n    0xfc, 0xfc, 0xfc, 0xfc, 0xfb, 0xfa, 0xfa, 0xf9, 0xfc, 0xfc, 0xfc, 0xfb, 0xfb, 0xfc, 0xfc, 0xfc,\n    0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfc,\n    0xff, 0xfe, 0xfd, 0xfd, 0xfe, 0xfe, 0xfc, 0xfb, 0xfc, 0xfa, 0xf9, 0xf7, 0xf6, 0xf3, 0xf0, 0xee,\n    0xed, 0xeb, 0xea, 0xeb, 0xec, 0xea, 0xe5, 0xe0, 0xd5, 0xd4, 0xd6, 0xda, 0xe0, 0xe5, 0xe8, 0xe9,\n    0xec, 0xf0, 0xf5, 0xf7, 0xf4, 0xee, 0xe8, 0xe4, 0xe2, 0xe7, 0xea, 0xe9, 0xea, 0xec, 0xeb, 0xe8,\n    0xe6, 0xeb, 0xea, 0xdc, 0xc6, 0xb5, 0xb0, 0xb2, 0xac, 0xaa, 0xa7, 0xa6, 0xa6, 0xa6, 0xa4, 0xa3,\n    0xa0, 0x9f, 0x9e, 0x9d, 0x9c, 0x9a, 0x99, 0x98, 0x96, 0x98, 0x9a, 0x99, 0x96, 0x93, 0x92, 0x92,\n    0x92, 0x91, 0x91, 0x91, 0x91, 0x92, 0x93, 0x93, 0x8c, 0x8b, 0x8a, 0x8a, 0x8a, 0x8b, 0x8b, 0x8a,\n    0x87, 0x88, 0x89, 0x89, 0x89, 0x88, 0x86, 0x85, 0x86, 0x85, 0x83, 0x81, 0x7e, 0x7b, 0x78, 0x77,\n    0x78, 0x7f, 0x86, 0x8b, 0x8e, 0x91, 0x94, 0x94, 0x91, 0x96, 0x93, 0x92, 0x94, 0xa7, 0xc3, 0xc8,\n    0xc0, 0xc0, 0xc2, 0xc6, 0xca, 0xcd, 0xce, 0xce, 0xd0, 0xcf, 0xce, 0xcb, 0xc4, 0xbc, 0xb9, 0xba,\n    0xbc, 0xc3, 0xbe, 0xc3, 0xc1, 0xbe, 0xc3, 0xb2, 0xa2, 0x7e, 0x69, 0x6f, 0x76, 0x76, 0x76, 0x76,\n    0x7c, 0x83, 0x87, 0x82, 0x78, 0x71, 0x71, 0x74, 0x7a, 0x73, 0x73, 0x7a, 0x7a, 0x72, 0x6e, 0x71,\n    0x73, 0x77, 0x78, 0x71, 0x6b, 0x69, 0x6b, 0x6d, 0x67, 0x65, 0x68, 0x6e, 0x6d, 0x68, 0x6a, 0x70,\n    0x6d, 0x6d, 0x70, 0x6d, 0x63, 0x63, 0x6b, 0x6e, 0x6a, 0x69, 0x69, 0x69, 0x69, 0x6a, 0x6b, 0x6b,\n    0x6c, 0x6c, 0x6d, 0x6d, 0x6e, 0x6e, 0x6d, 0x6d, 0x6c, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e,\n    0x6c, 0x6b, 0x6a, 0x6a, 0x69, 0x66, 0x62, 0x5f, 0x5a, 0x56, 0x4e, 0x46, 0x43, 0x45, 0x45, 0x43,\n    0x47, 0x4e, 0x4a, 0x38, 0x26, 0x1c, 0x14, 0x0c, 0x11, 0x22, 0x41, 0x62, 0x74, 0x6f, 0x5d, 0x50,\n    0x49, 0x40, 0x33, 0x2a, 0x29, 0x2c, 0x30, 0x32, 0x3a, 0x38, 0x38, 0x3b, 0x3e, 0x43, 0x4d, 0x56,\n    0x60, 0x5c, 0x5f, 0x66, 0x6f, 0x7f, 0x8d, 0x8e, 0x7a, 0x6f, 0x66, 0x66, 0x66, 0x62, 0x60, 0x61,\n    0x5b, 0x5e, 0x5f, 0x60, 0x69, 0x73, 0x6e, 0x62, 0x63, 0x6f, 0x76, 0x6e, 0x5e, 0x54, 0x54, 0x57,\n    0x66, 0x73, 0x78, 0x76, 0x80, 0x9b, 0xb1, 0xb6, 0xb5, 0xac, 0xaa, 0xa5, 0x98, 0x86, 0x7a, 0x6d,\n    0x5b, 0x4e, 0x39, 0x30, 0x3e, 0x56, 0x5e, 0x58, 0x51, 0x62, 0x72, 0x69, 0x48, 0x2b, 0x2c, 0x3b,\n    0x3e, 0x36, 0x32, 0x39, 0x45, 0x4b, 0x45, 0x3d, 0x31, 0x42, 0x5a, 0x73, 0x83, 0x88, 0x97, 0xae,\n    0x7b, 0x79, 0x77, 0x76, 0x75, 0x74, 0x71, 0x6f, 0x5e, 0x5f, 0x63, 0x68, 0x6a, 0x6b, 0x70, 0x75,\n    0x7a, 0x80, 0x8a, 0x92, 0x91, 0x8a, 0x89, 0x8b, 0x90, 0x97, 0xa0, 0xa7, 0xab, 0xaf, 0xb0, 0xb0,\n    0xaf, 0xb0, 0xad, 0xaa, 0xac, 0xb3, 0xb5, 0xb2, 0xb8, 0xb9, 0xaf, 0xa0, 0x9c, 0xa5, 0xac, 0xab,\n    0xb4, 0xb6, 0xb9, 0xbc, 0xbb, 0xb8, 0xb9, 0xbc, 0xba, 0xb8, 0xaf, 0xac, 0xb3, 0xb4, 0xb2, 0xb4,\n    0xb0, 0xb4, 0xb3, 0xb4, 0xb7, 0xb4, 0xb3, 0xba, 0xba, 0xb8, 0xb6, 0xb5, 0xb4, 0xb3, 0xb3, 0xb5,\n    0xb7, 0xb7, 0xb5, 0xb3, 0xb4, 0xb7, 0xb6, 0xb3, 0xba, 0xb7, 0xb6, 0xb7, 0xb5, 0xb1, 0xb0, 0xb3,\n    0xaf, 0xb1, 0xb0, 0xaf, 0xb2, 0xb7, 0xb8, 0xb5, 0xb9, 0xb8, 0xb6, 0xb4, 0xb3, 0xb4, 0xb6, 0xb7,\n    0xb1, 0xae, 0xab, 0xab, 0xaf, 0xb5, 0xb6, 0xb5, 0xb6, 0xb4, 0xb1, 0xb0, 0xb3, 0xb7, 0xb7, 0xb5,\n    0xb3, 0xb3, 0xb3, 0xb6, 0xb9, 0xba, 0xb9, 0xb7, 0xbb, 0xbe, 0xc1, 0xc1, 0xbd, 0xb7, 0xb2, 0xb0,\n    0xb8, 0xb8, 0xb9, 0xbb, 0xbf, 0xc3, 0xc6, 0xc6, 0xbb, 0xba, 0xba, 0xb9, 0xb9, 0xb9, 0xba, 0xbb,\n    0xc1, 0xbb, 0xb5, 0xb2, 0xb3, 0xb5, 0xb4, 0xb3, 0xb5, 0xb8, 0xb8, 0xb7, 0xb7, 0xba, 0xb9, 0xb6,\n    0xbb, 0xbb, 0xbb, 0xba, 0xb9, 0xb8, 0xb8, 0xb9, 0xbd, 0xb7, 0xb5, 0xb8, 0xba, 0xba, 0xbc, 0xbf,\n    0xbd, 0xb9, 0xb4, 0xb9, 0xcf, 0xe5, 0xe6, 0xdb, 0xc2, 0xbb, 0xb7, 0xb9, 0xbb, 0xbb, 0xbd, 0xc1,\n    0xc3, 0xc4, 0xc4, 0xc5, 0xc6, 0xc6, 0xc7, 0xc7, 0xcc, 0xc9, 0xc7, 0xc5, 0xc3, 0xc2, 0xc0, 0xbf,\n    0xba, 0xba, 0xb3, 0xa7, 0xa0, 0xa0, 0xa1, 0xa1, 0xab, 0xb3, 0xbe, 0xc0, 0xb8, 0xb7, 0xc9, 0xdf,\n    0xfa, 0xf5, 0xfc, 0xff, 0xf7, 0xf9, 0xff, 0xfe, 0xfd, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfd, 0xfd,\n    0xfe, 0xfe, 0xfd, 0xfc, 0xfb, 0xfa, 0xf9, 0xf9, 0xfb, 0xfc, 0xfc, 0xfd, 0xfe, 0xfe, 0xfe, 0xfe,\n    0xfd, 0xfd, 0xfd, 0xfd, 0xfc, 0xfc, 0xfc, 0xfc, 0xfe, 0xfe, 0xfd, 0xfc, 0xfc, 0xfd, 0xfe, 0xfe,\n    0xfc, 0xfd, 0xfd, 0xfe, 0xfe, 0xfd, 0xfd, 0xfc, 0xfb, 0xfa, 0xf9, 0xf7, 0xf7, 0xf7, 0xf8, 0xf8,\n    0xf6, 0xf1, 0xed, 0xee, 0xf2, 0xf3, 0xf0, 0xec, 0xe4, 0xe0, 0xdb, 0xd8, 0xd9, 0xdc, 0xe0, 0xe2,\n    0xe7, 0xed, 0xf2, 0xf3, 0xf4, 0xf5, 0xf2, 0xed, 0xe6, 0xe4, 0xe3, 0xe4, 0xe8, 0xec, 0xee, 0xee,\n    0xec, 0xe5, 0xe6, 0xee, 0xec, 0xd7, 0xbd, 0xac, 0xb1, 0xb1, 0xaf, 0xad, 0xaa, 0xa8, 0xa6, 0xa5,\n    0x9f, 0xa5, 0xa7, 0xa2, 0x9f, 0xa1, 0x9e, 0x98, 0x9b, 0x9a, 0x99, 0x98, 0x98, 0x97, 0x95, 0x93,\n    0x94, 0x94, 0x93, 0x92, 0x92, 0x92, 0x92, 0x92, 0x90, 0x90, 0x91, 0x91, 0x90, 0x8f, 0x8e, 0x8d,\n    0x8e, 0x8c, 0x8b, 0x8a, 0x8a, 0x89, 0x88, 0x87, 0x87, 0x88, 0x87, 0x85, 0x81, 0x7e, 0x7d, 0x7e,\n    0x84, 0x87, 0x8b, 0x90, 0x93, 0x94, 0x94, 0x93, 0x93, 0x93, 0x97, 0x95, 0x98, 0xb2, 0xc5, 0xc0,\n    0xc0, 0xc3, 0xc5, 0xc5, 0xc8, 0xcd, 0xcf, 0xce, 0xd1, 0xcf, 0xcc, 0xc7, 0xbf, 0xb8, 0xb7, 0xbb,\n    0xbf, 0xbf, 0xc0, 0xc1, 0xc1, 0xc1, 0xc0, 0xc0, 0xaf, 0x8f, 0x6e, 0x6d, 0x79, 0x70, 0x6b, 0x7b,\n    0x7e, 0x89, 0x8f, 0x88, 0x79, 0x71, 0x73, 0x78, 0x79, 0x74, 0x74, 0x79, 0x78, 0x71, 0x6f, 0x72,\n    0x73, 0x79, 0x7a, 0x74, 0x6d, 0x6b, 0x6f, 0x72, 0x69, 0x67, 0x6a, 0x71, 0x72, 0x6c, 0x69, 0x6b,\n    0x6a, 0x6c, 0x6d, 0x6b, 0x68, 0x68, 0x6c, 0x6f, 0x70, 0x6a, 0x66, 0x66, 0x67, 0x66, 0x67, 0x68,\n    0x6b, 0x6b, 0x6b, 0x6c, 0x6d, 0x6e, 0x6d, 0x6c, 0x6b, 0x6c, 0x6d, 0x6d, 0x6c, 0x6c, 0x6c, 0x6d,\n    0x6d, 0x6b, 0x69, 0x68, 0x66, 0x64, 0x61, 0x5f, 0x58, 0x4e, 0x48, 0x47, 0x3f, 0x32, 0x2d, 0x30,\n    0x39, 0x43, 0x49, 0x41, 0x30, 0x21, 0x17, 0x12, 0x13, 0x1e, 0x42, 0x61, 0x65, 0x5e, 0x52, 0x43,\n    0x43, 0x2f, 0x1c, 0x1a, 0x22, 0x2a, 0x2f, 0x33, 0x36, 0x37, 0x40, 0x43, 0x3d, 0x3d, 0x48, 0x51,\n    0x65, 0x64, 0x5f, 0x59, 0x58, 0x5d, 0x62, 0x65, 0x5e, 0x63, 0x6e, 0x76, 0x6d, 0x59, 0x4d, 0x4c,\n    0x4e, 0x54, 0x65, 0x73, 0x67, 0x4d, 0x44, 0x4c, 0x64, 0x5d, 0x4f, 0x3f, 0x3a, 0x44, 0x51, 0x58,\n    0x4d, 0x56, 0x6f, 0x92, 0xad, 0xb7, 0xbc, 0xc0, 0xc1, 0xbd, 0xb3, 0xa0, 0x85, 0x71, 0x70, 0x79,\n    0x74, 0x60, 0x58, 0x5a, 0x5c, 0x69, 0x74, 0x71, 0x80, 0x8b, 0x8b, 0x74, 0x57, 0x4d, 0x56, 0x62,\n    0x57, 0x4d, 0x49, 0x38, 0x47, 0x56, 0x60, 0x4b, 0x3c, 0x34, 0x4d, 0x64, 0x77, 0x79, 0x72, 0x7e,\n    0x76, 0x74, 0x71, 0x6c, 0x67, 0x63, 0x61, 0x60, 0x60, 0x5f, 0x5f, 0x62, 0x66, 0x70, 0x7f, 0x8c,\n    0x89, 0x84, 0x7f, 0x7a, 0x74, 0x72, 0x77, 0x7e, 0x91, 0x97, 0x9e, 0xa3, 0xa5, 0xa8, 0xab, 0xac,\n    0xac, 0xa5, 0xa2, 0xa5, 0xad, 0xb2, 0xb5, 0xb7, 0xb0, 0xad, 0xa3, 0x99, 0x99, 0xa2, 0xa9, 0xaa,\n    0xb9, 0xb9, 0xba, 0xb8, 0xb3, 0xb0, 0xb4, 0xba, 0xbc, 0xbc, 0xb7, 0xb4, 0xb7, 0xb5, 0xaf, 0xaf,\n    0xac, 0xb0, 0xb0, 0xb1, 0xb3, 0xaf, 0xad, 0xb2, 0xb8, 0xb7, 0xb6, 0xb6, 0xb5, 0xb4, 0xb3, 0xb4,\n    0xb2, 0xb2, 0xb1, 0xb1, 0xb3, 0xb7, 0xb7, 0xb5, 0xb1, 0xb0, 0xb2, 0xb5, 0xb5, 0xb3, 0xb5, 0xb9,\n    0xb6, 0xb7, 0xb6, 0xb2, 0xb1, 0xb4, 0xb5, 0xb3, 0xb4, 0xb2, 0xb1, 0xb1, 0xb3, 0xb5, 0xb7, 0xb7,\n    0xad, 0xac, 0xac, 0xae, 0xb5, 0xbc, 0xc0, 0xc2, 0xba, 0xb8, 0xb5, 0xb4, 0xb5, 0xb8, 0xba, 0xba,\n    0xb1, 0xb1, 0xb1, 0xb3, 0xb6, 0xb7, 0xb7, 0xb6, 0xb5, 0xb8, 0xbc, 0xbe, 0xbc, 0xba, 0xb7, 0xb6,\n    0xb8, 0xb7, 0xb6, 0xb6, 0xb8, 0xb9, 0xb9, 0xb9, 0xbe, 0xbc, 0xba, 0xb8, 0xb8, 0xba, 0xbc, 0xbe,\n    0xbd, 0xb7, 0xb1, 0xae, 0xae, 0xaf, 0xaf, 0xad, 0xaf, 0xb5, 0xb8, 0xb7, 0xb7, 0xb9, 0xba, 0xb9,\n    0xb9, 0xbb, 0xbd, 0xbf, 0xbf, 0xbf, 0xc0, 0xc1, 0xbd, 0xbb, 0xba, 0xba, 0xba, 0xb9, 0xba, 0xbc,\n    0xba, 0xb9, 0xbf, 0xd1, 0xe3, 0xe5, 0xd3, 0xbf, 0xb8, 0xb4, 0xb4, 0xb8, 0xbc, 0xbe, 0xc1, 0xc4,\n    0xc4, 0xc4, 0xc5, 0xc5, 0xc6, 0xc6, 0xc6, 0xc7, 0xc5, 0xc2, 0xc0, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe,\n    0xbc, 0xbf, 0xc1, 0xbf, 0xbb, 0xb5, 0xab, 0xa1, 0xa1, 0xa2, 0xa9, 0xb5, 0xb9, 0xb5, 0xb1, 0xb2,\n    0xc2, 0xf0, 0xff, 0xf7, 0xfe, 0xff, 0xf7, 0xfa, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfd, 0xfd, 0xfc,\n    0xfe, 0xfe, 0xfd, 0xfc, 0xfb, 0xfa, 0xfa, 0xf9, 0xfb, 0xfb, 0xfc, 0xfd, 0xfd, 0xfe, 0xfe, 0xfe,\n    0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd,\n    0xfc, 0xfd, 0xfd, 0xfe, 0xfe, 0xfd, 0xfd, 0xfc, 0xfb, 0xfa, 0xfa, 0xf9, 0xf9, 0xf9, 0xfa, 0xfa,\n    0xf8, 0xf5, 0xf2, 0xf2, 0xf5, 0xf6, 0xf4, 0xf1, 0xee, 0xe9, 0xe1, 0xdb, 0xd8, 0xd8, 0xd9, 0xda,\n    0xe1, 0xe7, 0xec, 0xef, 0xf2, 0xf6, 0xf6, 0xf3, 0xf1, 0xed, 0xe9, 0xe7, 0xe7, 0xe8, 0xe9, 0xe9,\n    0xea, 0xe8, 0xe6, 0xe6, 0xe7, 0xe4, 0xdc, 0xd4, 0xb1, 0xb1, 0xb0, 0xaf, 0xae, 0xab, 0xa9, 0xa7,\n    0xb1, 0xa7, 0xa3, 0xa7, 0xa4, 0x9b, 0x9b, 0xa4, 0x9f, 0x9e, 0x9c, 0x9c, 0x9c, 0x9b, 0x99, 0x97,\n    0x99, 0x99, 0x98, 0x97, 0x97, 0x96, 0x96, 0x97, 0x93, 0x94, 0x94, 0x94, 0x93, 0x92, 0x91, 0x91,\n    0x8e, 0x8d, 0x8b, 0x8b, 0x8b, 0x8a, 0x89, 0x88, 0x86, 0x87, 0x87, 0x85, 0x83, 0x82, 0x83, 0x84,\n    0x89, 0x8b, 0x8f, 0x92, 0x94, 0x95, 0x95, 0x94, 0x94, 0x95, 0x95, 0x95, 0xa0, 0xb7, 0xc4, 0xbf,\n    0xc1, 0xc3, 0xc5, 0xc6, 0xc8, 0xcd, 0xcf, 0xce, 0xd2, 0xd0, 0xcd, 0xc7, 0xbf, 0xb8, 0xb8, 0xbb,\n    0xbf, 0xbf, 0xc0, 0xc2, 0xc2, 0xc3, 0xc3, 0xc3, 0xbc, 0xa4, 0x84, 0x74, 0x73, 0x71, 0x71, 0x76,\n    0x79, 0x85, 0x8e, 0x89, 0x7a, 0x71, 0x74, 0x7b, 0x7f, 0x7c, 0x7b, 0x7a, 0x76, 0x70, 0x6e, 0x71,\n    0x75, 0x77, 0x77, 0x73, 0x6f, 0x6f, 0x6f, 0x6e, 0x70, 0x70, 0x73, 0x74, 0x71, 0x6b, 0x68, 0x68,\n    0x68, 0x6c, 0x6f, 0x6f, 0x6d, 0x6f, 0x75, 0x7a, 0x70, 0x6b, 0x67, 0x68, 0x69, 0x69, 0x69, 0x6a,\n    0x6a, 0x69, 0x69, 0x6a, 0x6b, 0x6c, 0x6b, 0x6a, 0x6a, 0x6b, 0x6c, 0x6c, 0x6c, 0x6b, 0x6b, 0x6c,\n    0x6c, 0x6a, 0x68, 0x66, 0x64, 0x62, 0x5e, 0x5c, 0x55, 0x57, 0x54, 0x4f, 0x51, 0x54, 0x4b, 0x3e,\n    0x4a, 0x50, 0x52, 0x4d, 0x40, 0x30, 0x1f, 0x13, 0x1f, 0x25, 0x3c, 0x53, 0x58, 0x57, 0x51, 0x44,\n    0x2f, 0x26, 0x22, 0x29, 0x2f, 0x2c, 0x24, 0x1f, 0x24, 0x2f, 0x3f, 0x45, 0x38, 0x2a, 0x36, 0x4f,\n    0x60, 0x5e, 0x58, 0x53, 0x51, 0x4f, 0x4a, 0x44, 0x4c, 0x4f, 0x57, 0x5f, 0x5e, 0x58, 0x56, 0x5a,\n    0x5f, 0x61, 0x5c, 0x50, 0x48, 0x45, 0x41, 0x3b, 0x4b, 0x50, 0x59, 0x5f, 0x5b, 0x59, 0x63, 0x73,\n    0x9d, 0xb0, 0xbb, 0xb2, 0xa4, 0xa3, 0xab, 0xb3, 0xb6, 0xb1, 0xa4, 0x8e, 0x74, 0x65, 0x69, 0x73,\n    0x81, 0x80, 0x75, 0x62, 0x5a, 0x69, 0x79, 0x7b, 0x86, 0x91, 0x88, 0x62, 0x40, 0x3a, 0x47, 0x54,\n    0x56, 0x32, 0x27, 0x33, 0x5a, 0x6e, 0x6f, 0x53, 0x4a, 0x41, 0x4c, 0x4f, 0x57, 0x67, 0x6b, 0x70,\n    0x77, 0x7d, 0x83, 0x84, 0x7d, 0x72, 0x69, 0x64, 0x61, 0x64, 0x69, 0x71, 0x79, 0x82, 0x8e, 0x98,\n    0x93, 0x8b, 0x80, 0x78, 0x74, 0x76, 0x7f, 0x87, 0x8e, 0x93, 0x9a, 0x9e, 0x9f, 0xa1, 0xa4, 0xa7,\n    0xa5, 0x9b, 0x96, 0x9f, 0xa9, 0xac, 0xaf, 0xb4, 0xb2, 0xa9, 0xa0, 0x9c, 0xa0, 0xa8, 0xad, 0xb0,\n    0xb5, 0xb7, 0xb9, 0xb8, 0xb3, 0xb0, 0xb4, 0xba, 0xba, 0xbd, 0xba, 0xb8, 0xba, 0xb8, 0xb4, 0xb7,\n    0xb3, 0xb6, 0xb4, 0xb3, 0xb4, 0xaf, 0xad, 0xb2, 0xb6, 0xb6, 0xb7, 0xb6, 0xb6, 0xb5, 0xb4, 0xb4,\n    0xb7, 0xb6, 0xb3, 0xaf, 0xad, 0xad, 0xac, 0xa9, 0xb3, 0xb3, 0xb5, 0xb6, 0xb5, 0xb2, 0xb3, 0xb6,\n    0xb4, 0xb6, 0xb5, 0xb3, 0xb0, 0xb0, 0xaf, 0xae, 0xaa, 0xa9, 0xa9, 0xac, 0xb1, 0xb5, 0xb6, 0xb6,\n    0xaf, 0xae, 0xae, 0xb0, 0xb2, 0xb6, 0xb9, 0xba, 0xb6, 0xb5, 0xb3, 0xb1, 0xb1, 0xb2, 0xb5, 0xb8,\n    0xb7, 0xb6, 0xb6, 0xb7, 0xb9, 0xba, 0xbb, 0xbb, 0xb3, 0xb5, 0xb9, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb,\n    0xbc, 0xbc, 0xbb, 0xbc, 0xbd, 0xbf, 0xbf, 0xbe, 0xbd, 0xbd, 0xbb, 0xba, 0xb9, 0xb9, 0xba, 0xba,\n    0xbc, 0xb7, 0xb1, 0xaf, 0xb0, 0xb2, 0xb2, 0xb1, 0xae, 0xb2, 0xb4, 0xb1, 0xaf, 0xb0, 0xb4, 0xb7,\n    0xba, 0xbc, 0xbc, 0xbb, 0xb9, 0xb6, 0xb4, 0xb3, 0xb5, 0xb9, 0xbc, 0xbc, 0xbe, 0xc1, 0xc5, 0xc7,\n    0xb6, 0xc0, 0xd3, 0xe7, 0xea, 0xd6, 0xbc, 0xac, 0xb1, 0xb1, 0xb4, 0xba, 0xc0, 0xc2, 0xc4, 0xc6,\n    0xc5, 0xc5, 0xc5, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xbc, 0xb9, 0xb5, 0xb2, 0xb2, 0xb3, 0xb3, 0xb3,\n    0xb6, 0xb7, 0xb8, 0xbb, 0xc1, 0xc2, 0xbc, 0xb5, 0xa6, 0x9a, 0x93, 0x9b, 0xa8, 0xac, 0xa9, 0xa7,\n    0xa3, 0xc3, 0xe5, 0xf3, 0xf5, 0xfd, 0xff, 0xfa, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfd, 0xfc, 0xfc,\n    0xfe, 0xfe, 0xfd, 0xfc, 0xfc, 0xfb, 0xfa, 0xfa, 0xfa, 0xfa, 0xfb, 0xfc, 0xfd, 0xfd, 0xfd, 0xfd,\n    0xfc, 0xfc, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfb, 0xfc, 0xfd, 0xfe, 0xfe, 0xfd, 0xfc, 0xfb,\n    0xfc, 0xfd, 0xfd, 0xfe, 0xfe, 0xfd, 0xfd, 0xfc, 0xfb, 0xfb, 0xfb, 0xfb, 0xfc, 0xfc, 0xfc, 0xfc,\n    0xfb, 0xf9, 0xf8, 0xf7, 0xf8, 0xf8, 0xf8, 0xf7, 0xf9, 0xf3, 0xeb, 0xe3, 0xde, 0xdb, 0xd9, 0xd7,\n    0xdd, 0xe0, 0xe4, 0xe7, 0xec, 0xf2, 0xf6, 0xf6, 0xf7, 0xf4, 0xf1, 0xee, 0xeb, 0xe8, 0xe6, 0xe4,\n    0xe5, 0xe9, 0xe7, 0xe1, 0xe1, 0xe8, 0xeb, 0xe8, 0xea, 0xcb, 0xab, 0xa1, 0xac, 0xb5, 0xae, 0xa2,\n    0xa1, 0xa5, 0xa8, 0xaa, 0xaa, 0xaa, 0xa7, 0xa3, 0xa4, 0xa3, 0xa2, 0xa1, 0xa1, 0xa0, 0x9e, 0x9d,\n    0x9e, 0x9e, 0x9d, 0x9c, 0x9b, 0x9b, 0x9b, 0x9b, 0x98, 0x98, 0x98, 0x98, 0x97, 0x97, 0x96, 0x95,\n    0x91, 0x90, 0x8f, 0x8e, 0x8e, 0x8e, 0x8c, 0x8b, 0x87, 0x87, 0x87, 0x87, 0x87, 0x88, 0x8a, 0x8c,\n    0x90, 0x91, 0x93, 0x94, 0x95, 0x96, 0x96, 0x95, 0x94, 0x97, 0x94, 0x99, 0xad, 0xbf, 0xc3, 0xc0,\n    0xc3, 0xc5, 0xc7, 0xc7, 0xca, 0xce, 0xd0, 0xd0, 0xcf, 0xcd, 0xca, 0xc5, 0xbe, 0xb7, 0xb8, 0xbc,\n    0xc0, 0xc0, 0xc1, 0xc2, 0xc3, 0xc5, 0xc6, 0xc7, 0xc4, 0xb7, 0x9d, 0x7d, 0x6b, 0x6e, 0x73, 0x6e,\n    0x85, 0x86, 0x88, 0x89, 0x88, 0x84, 0x7f, 0x7b, 0x6c, 0x6f, 0x73, 0x75, 0x74, 0x72, 0x72, 0x73,\n    0x75, 0x74, 0x71, 0x6f, 0x70, 0x71, 0x6f, 0x6b, 0x6d, 0x72, 0x74, 0x73, 0x70, 0x6f, 0x6e, 0x6c,\n    0x6c, 0x6f, 0x72, 0x71, 0x6e, 0x6f, 0x73, 0x78, 0x70, 0x6b, 0x69, 0x6b, 0x6c, 0x6c, 0x6b, 0x6b,\n    0x68, 0x67, 0x67, 0x67, 0x69, 0x69, 0x69, 0x68, 0x69, 0x6a, 0x6b, 0x6b, 0x6a, 0x6a, 0x6a, 0x6b,\n    0x6a, 0x69, 0x67, 0x65, 0x63, 0x60, 0x5c, 0x59, 0x4d, 0x58, 0x60, 0x65, 0x72, 0x83, 0x85, 0x7c,\n    0x62, 0x5e, 0x56, 0x4c, 0x41, 0x35, 0x25, 0x18, 0x1a, 0x22, 0x36, 0x4a, 0x51, 0x51, 0x46, 0x34,\n    0x21, 0x1f, 0x23, 0x2b, 0x2e, 0x28, 0x22, 0x21, 0x26, 0x41, 0x4e, 0x43, 0x2e, 0x1d, 0x26, 0x42,\n    0x55, 0x5b, 0x60, 0x5f, 0x5a, 0x54, 0x4d, 0x48, 0x36, 0x3e, 0x45, 0x47, 0x45, 0x4a, 0x56, 0x62,\n    0x5f, 0x44, 0x31, 0x31, 0x2a, 0x20, 0x2b, 0x43, 0x47, 0x4c, 0x4a, 0x48, 0x5a, 0x7e, 0x99, 0xa2,\n    0x98, 0x91, 0x89, 0x8e, 0xa3, 0xb5, 0xb3, 0xa5, 0x9d, 0x95, 0x84, 0x6f, 0x5b, 0x4b, 0x3e, 0x36,\n    0x56, 0x64, 0x63, 0x54, 0x4e, 0x5a, 0x6e, 0x7e, 0x98, 0x93, 0x72, 0x3d, 0x1f, 0x2c, 0x4c, 0x61,\n    0x57, 0x34, 0x31, 0x44, 0x65, 0x7f, 0x8b, 0x76, 0x4a, 0x3c, 0x3f, 0x42, 0x44, 0x58, 0x62, 0x66,\n    0x71, 0x6f, 0x6c, 0x68, 0x67, 0x69, 0x6d, 0x70, 0x65, 0x65, 0x6a, 0x72, 0x78, 0x7b, 0x7c, 0x7e,\n    0x7c, 0x7a, 0x77, 0x76, 0x76, 0x78, 0x7b, 0x7e, 0x84, 0x8a, 0x94, 0x9b, 0x9e, 0x9e, 0x9f, 0xa1,\n    0x9f, 0x9a, 0x98, 0x9d, 0xa4, 0xa7, 0xa8, 0xa8, 0x9e, 0x94, 0x8d, 0x92, 0x9b, 0xa2, 0xa8, 0xad,\n    0xac, 0xae, 0xb2, 0xb2, 0xae, 0xa9, 0xa9, 0xac, 0xb0, 0xb3, 0xb0, 0xad, 0xaf, 0xaf, 0xb1, 0xb7,\n    0xb5, 0xb7, 0xb3, 0xaf, 0xad, 0xa7, 0xa4, 0xab, 0xb5, 0xb5, 0xb5, 0xb3, 0xb3, 0xb4, 0xb4, 0xb3,\n    0xad, 0xaf, 0xaf, 0xae, 0xaf, 0xb3, 0xb4, 0xb2, 0xb5, 0xb6, 0xb7, 0xb6, 0xb2, 0xaf, 0xae, 0xaf,\n    0xaa, 0xab, 0xab, 0xac, 0xae, 0xae, 0xab, 0xa8, 0xa2, 0xa2, 0xa4, 0xa8, 0xae, 0xb2, 0xb2, 0xb1,\n    0xae, 0xae, 0xaf, 0xb0, 0xae, 0xab, 0xab, 0xac, 0xaf, 0xae, 0xad, 0xac, 0xaa, 0xaa, 0xae, 0xb3,\n    0xbb, 0xba, 0xb9, 0xb8, 0xb9, 0xba, 0xbb, 0xbb, 0xb8, 0xb8, 0xb9, 0xb9, 0xb9, 0xb8, 0xb8, 0xb8,\n    0xb3, 0xb3, 0xb2, 0xb4, 0xb6, 0xb7, 0xb7, 0xb7, 0xb2, 0xb3, 0xb6, 0xb9, 0xba, 0xba, 0xba, 0xb9,\n    0xbd, 0xb8, 0xb4, 0xb3, 0xb6, 0xb9, 0xba, 0xb9, 0xba, 0xb9, 0xb5, 0xaf, 0xac, 0xae, 0xb2, 0xb5,\n    0xb4, 0xb6, 0xb9, 0xba, 0xbb, 0xbc, 0xbd, 0xbe, 0xba, 0xbc, 0xbb, 0xb6, 0xb3, 0xb4, 0xb5, 0xb3,\n    0xba, 0xd0, 0xe7, 0xe9, 0xd5, 0xbc, 0xaf, 0xae, 0xb1, 0xb4, 0xb9, 0xc0, 0xc4, 0xc6, 0xc6, 0xc6,\n    0xc7, 0xc6, 0xc6, 0xc6, 0xc6, 0xc5, 0xc5, 0xc5, 0xbd, 0xb9, 0xb2, 0xad, 0xaa, 0xa8, 0xa7, 0xa7,\n    0xaa, 0xa7, 0xa6, 0xa9, 0xb2, 0xbb, 0xc1, 0xc3, 0xb5, 0xa5, 0x93, 0x8c, 0x90, 0x9a, 0xa6, 0xaf,\n    0xa5, 0x9c, 0xba, 0xe6, 0xf4, 0xf9, 0xfe, 0xf9, 0xfc, 0xfc, 0xfd, 0xfd, 0xfe, 0xfe, 0xfd, 0xfd,\n    0xfe, 0xfe, 0xfd, 0xfd, 0xfc, 0xfb, 0xfb, 0xfa, 0xf9, 0xfa, 0xfb, 0xfb, 0xfc, 0xfc, 0xfc, 0xfc,\n    0xfc, 0xfc, 0xfc, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfc, 0xfc, 0xfd, 0xfd, 0xfd, 0xfd, 0xfc, 0xfc,\n    0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfc, 0xfc, 0xfd, 0xfd, 0xfd, 0xfd, 0xfc, 0xfc,\n    0xfc, 0xfc, 0xfb, 0xfb, 0xfa, 0xfa, 0xfa, 0xfb, 0xfd, 0xf9, 0xf4, 0xef, 0xeb, 0xe6, 0xe2, 0xdf,\n    0xde, 0xde, 0xdf, 0xe1, 0xe5, 0xeb, 0xf0, 0xf2, 0xf3, 0xf4, 0xf5, 0xf5, 0xf2, 0xed, 0xe8, 0xe4,\n    0xe0, 0xe5, 0xe6, 0xe3, 0xe2, 0xe4, 0xe5, 0xe3, 0xe0, 0xe8, 0xe8, 0xd6, 0xb9, 0xa6, 0xa5, 0xac,\n    0xab, 0xb0, 0xad, 0xa3, 0xa3, 0xaa, 0xab, 0xa4, 0xa7, 0xa6, 0xa5, 0xa5, 0xa5, 0xa4, 0xa3, 0xa1,\n    0xa1, 0xa0, 0x9f, 0x9e, 0x9d, 0x9d, 0x9d, 0x9d, 0x9c, 0x9c, 0x9b, 0x9b, 0x9a, 0x99, 0x99, 0x98,\n    0x96, 0x95, 0x94, 0x94, 0x94, 0x93, 0x91, 0x90, 0x8b, 0x8a, 0x8a, 0x89, 0x8a, 0x8c, 0x8f, 0x91,\n    0x94, 0x94, 0x95, 0x95, 0x96, 0x96, 0x96, 0x97, 0x94, 0x98, 0x95, 0x9f, 0xba, 0xc7, 0xc3, 0xc2,\n    0xc6, 0xc8, 0xc9, 0xc9, 0xcb, 0xcf, 0xd1, 0xd1, 0xca, 0xc8, 0xc6, 0xc2, 0xbb, 0xb6, 0xb8, 0xbc,\n    0xc1, 0xc1, 0xc1, 0xc2, 0xc3, 0xc5, 0xc7, 0xc8, 0xca, 0xc3, 0xb3, 0x92, 0x75, 0x76, 0x7c, 0x72,\n    0x80, 0x7c, 0x7b, 0x7f, 0x82, 0x80, 0x7a, 0x76, 0x79, 0x78, 0x76, 0x73, 0x72, 0x72, 0x71, 0x70,\n    0x73, 0x71, 0x6d, 0x6b, 0x6d, 0x71, 0x71, 0x6e, 0x6f, 0x74, 0x75, 0x72, 0x73, 0x76, 0x75, 0x70,\n    0x6c, 0x6d, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6a, 0x69, 0x6b, 0x6e, 0x6d, 0x6b, 0x6b,\n    0x68, 0x67, 0x66, 0x66, 0x67, 0x68, 0x68, 0x67, 0x68, 0x69, 0x6b, 0x6a, 0x69, 0x68, 0x69, 0x69,\n    0x69, 0x68, 0x66, 0x64, 0x62, 0x5f, 0x5b, 0x58, 0x5a, 0x64, 0x6f, 0x75, 0x72, 0x6d, 0x6a, 0x6b,\n    0x70, 0x6b, 0x61, 0x52, 0x42, 0x32, 0x22, 0x16, 0x13, 0x1c, 0x2c, 0x3c, 0x47, 0x48, 0x3b, 0x2a,\n    0x21, 0x24, 0x27, 0x25, 0x1c, 0x16, 0x1c, 0x27, 0x48, 0x65, 0x5b, 0x33, 0x1f, 0x19, 0x1c, 0x28,\n    0x40, 0x4d, 0x56, 0x53, 0x4d, 0x52, 0x62, 0x70, 0x84, 0x7f, 0x78, 0x73, 0x70, 0x66, 0x51, 0x3d,\n    0x34, 0x36, 0x35, 0x30, 0x2b, 0x2f, 0x3a, 0x43, 0x4a, 0x54, 0x5b, 0x61, 0x76, 0x90, 0x95, 0x88,\n    0x7e, 0x78, 0x7a, 0x85, 0x8d, 0x8b, 0x88, 0x88, 0x6d, 0x60, 0x48, 0x30, 0x26, 0x27, 0x27, 0x24,\n    0x2e, 0x45, 0x5a, 0x67, 0x65, 0x50, 0x44, 0x4f, 0x58, 0x44, 0x29, 0x1f, 0x33, 0x50, 0x5c, 0x57,\n    0x4a, 0x3d, 0x3f, 0x41, 0x48, 0x69, 0x87, 0x81, 0x72, 0x4c, 0x37, 0x3b, 0x33, 0x3f, 0x4b, 0x56,\n    0x6e, 0x68, 0x61, 0x60, 0x67, 0x71, 0x7a, 0x7f, 0x84, 0x7a, 0x73, 0x73, 0x78, 0x7b, 0x7c, 0x7c,\n    0x7c, 0x7d, 0x7e, 0x7d, 0x7c, 0x7a, 0x78, 0x76, 0x78, 0x7f, 0x8c, 0x99, 0x9f, 0x9d, 0x9c, 0x9c,\n    0x9c, 0xa3, 0xa6, 0xa4, 0xa5, 0xa9, 0xa7, 0xa0, 0x89, 0x82, 0x81, 0x8c, 0x99, 0xa1, 0xa7, 0xae,\n    0xb4, 0xb2, 0xb2, 0xb0, 0xab, 0xa4, 0xa0, 0xa1, 0xac, 0xb0, 0xae, 0xab, 0xad, 0xae, 0xaf, 0xb6,\n    0xb6, 0xbb, 0xba, 0xb5, 0xb0, 0xa5, 0xa0, 0xa5, 0xb2, 0xb2, 0xaf, 0xab, 0xaa, 0xae, 0xb1, 0xb0,\n    0xad, 0xb0, 0xb2, 0xb3, 0xb4, 0xb7, 0xb8, 0xb7, 0xb0, 0xb1, 0xb3, 0xb3, 0xb3, 0xb2, 0xb0, 0xaf,\n    0xa8, 0xa3, 0x9f, 0xa1, 0xa7, 0xaa, 0xaa, 0xa9, 0xa3, 0xa4, 0xa6, 0xa9, 0xad, 0xae, 0xac, 0xaa,\n    0xa4, 0xa5, 0xaa, 0xb0, 0xb1, 0xad, 0xac, 0xad, 0xae, 0xae, 0xae, 0xae, 0xab, 0xa9, 0xad, 0xb3,\n    0xb7, 0xb7, 0xb6, 0xb5, 0xb4, 0xb4, 0xb5, 0xb5, 0xbb, 0xba, 0xb8, 0xb7, 0xb6, 0xb5, 0xb4, 0xb4,\n    0xae, 0xad, 0xac, 0xad, 0xad, 0xad, 0xac, 0xab, 0xaa, 0xac, 0xaf, 0xb3, 0xb6, 0xb9, 0xbb, 0xbc,\n    0xbd, 0xb8, 0xb4, 0xb4, 0xb8, 0xbb, 0xbc, 0xbb, 0xc4, 0xbf, 0xb9, 0xb6, 0xb5, 0xb5, 0xb4, 0xb3,\n    0xb6, 0xb7, 0xb8, 0xb9, 0xb9, 0xbb, 0xbd, 0xbf, 0xc0, 0xbe, 0xb9, 0xb3, 0xb1, 0xb3, 0xb4, 0xb3,\n    0xcd, 0xe1, 0xeb, 0xd8, 0xbb, 0xac, 0xad, 0xb2, 0xb2, 0xb7, 0xbe, 0xc4, 0xc7, 0xc8, 0xc7, 0xc6,\n    0xc7, 0xc7, 0xc7, 0xc6, 0xc6, 0xc6, 0xc5, 0xc5, 0xc4, 0xbf, 0xb8, 0xb1, 0xac, 0xa8, 0xa5, 0xa3,\n    0xa1, 0xa2, 0xa3, 0xa6, 0xa9, 0xaf, 0xb5, 0xbb, 0xbd, 0xb2, 0xa3, 0x94, 0x8b, 0x8b, 0x93, 0x9b,\n    0x9f, 0xa2, 0xa4, 0xc1, 0xee, 0xf9, 0xf2, 0xfa, 0xfa, 0xfb, 0xfc, 0xfd, 0xfe, 0xfe, 0xff, 0xff,\n    0xfe, 0xfe, 0xfd, 0xfd, 0xfc, 0xfc, 0xfb, 0xfb, 0xf9, 0xf9, 0xfa, 0xfb, 0xfc, 0xfc, 0xfc, 0xfc,\n    0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfd, 0xfd, 0xfc, 0xfb, 0xfb, 0xfc, 0xfd, 0xfd,\n    0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfc, 0xfb, 0xfb,\n    0xfb, 0xfc, 0xfc, 0xfc, 0xfa, 0xfa, 0xfb, 0xfd, 0xfc, 0xfb, 0xfa, 0xf9, 0xf7, 0xf2, 0xed, 0xe9,\n    0xe3, 0xe1, 0xe0, 0xe1, 0xe3, 0xe7, 0xec, 0xf0, 0xf0, 0xf2, 0xf4, 0xf4, 0xf3, 0xf0, 0xed, 0xeb,\n    0xe5, 0xe2, 0xe3, 0xe7, 0xe7, 0xe3, 0xe3, 0xe5, 0xe7, 0xe4, 0xe3, 0xe7, 0xe7, 0xd8, 0xbe, 0xa8,\n    0xb2, 0xa9, 0xa7, 0xad, 0xae, 0xa7, 0xa7, 0xad, 0xa9, 0xa8, 0xa7, 0xa7, 0xa7, 0xa7, 0xa5, 0xa3,\n    0xa3, 0xa2, 0xa1, 0xa0, 0x9f, 0x9f, 0x9f, 0x9f, 0x9e, 0x9e, 0x9d, 0x9c, 0x9b, 0x9a, 0x9a, 0x9a,\n    0x9a, 0x99, 0x98, 0x98, 0x98, 0x97, 0x95, 0x93, 0x91, 0x90, 0x8e, 0x8d, 0x8e, 0x90, 0x91, 0x92,\n    0x96, 0x96, 0x96, 0x96, 0x96, 0x97, 0x97, 0x98, 0x93, 0x96, 0x97, 0xa6, 0xc1, 0xc8, 0xc1, 0xc2,\n    0xc6, 0xc8, 0xc8, 0xc8, 0xca, 0xce, 0xd0, 0xd0, 0xc8, 0xc6, 0xc4, 0xc0, 0xbb, 0xb7, 0xb9, 0xbe,\n    0xc3, 0xc2, 0xc2, 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc4, 0xbe, 0xb9, 0xa5, 0x88, 0x7e, 0x7e, 0x76,\n    0x70, 0x76, 0x7d, 0x7c, 0x73, 0x6d, 0x72, 0x7c, 0x81, 0x7a, 0x72, 0x6f, 0x70, 0x71, 0x71, 0x70,\n    0x72, 0x71, 0x6d, 0x6a, 0x6b, 0x71, 0x75, 0x76, 0x7d, 0x7d, 0x79, 0x75, 0x75, 0x78, 0x74, 0x6c,\n    0x67, 0x66, 0x68, 0x6e, 0x75, 0x78, 0x75, 0x72, 0x6c, 0x69, 0x68, 0x6b, 0x6d, 0x6c, 0x6b, 0x6b,\n    0x6a, 0x69, 0x67, 0x67, 0x68, 0x68, 0x68, 0x67, 0x68, 0x69, 0x6a, 0x6a, 0x68, 0x67, 0x67, 0x68,\n    0x68, 0x67, 0x65, 0x64, 0x62, 0x5e, 0x5a, 0x57, 0x56, 0x52, 0x4d, 0x47, 0x41, 0x41, 0x48, 0x50,\n    0x51, 0x59, 0x5e, 0x57, 0x46, 0x32, 0x20, 0x14, 0x17, 0x19, 0x1b, 0x22, 0x2f, 0x36, 0x33, 0x2f,\n    0x29, 0x2e, 0x30, 0x26, 0x13, 0x0c, 0x1c, 0x33, 0x6b, 0x70, 0x4c, 0x1d, 0x13, 0x16, 0x12, 0x14,\n    0x1d, 0x33, 0x49, 0x52, 0x52, 0x55, 0x5e, 0x67, 0x64, 0x5f, 0x53, 0x46, 0x3d, 0x38, 0x31, 0x2b,\n    0x36, 0x38, 0x36, 0x33, 0x35, 0x41, 0x52, 0x5e, 0x4f, 0x49, 0x59, 0x7c, 0x91, 0x84, 0x6d, 0x60,\n    0x5c, 0x6e, 0x8b, 0xa0, 0x96, 0x72, 0x4e, 0x3b, 0x32, 0x2f, 0x24, 0x16, 0x14, 0x1d, 0x27, 0x2b,\n    0x37, 0x44, 0x55, 0x6a, 0x70, 0x57, 0x3d, 0x3d, 0x40, 0x46, 0x4e, 0x51, 0x4e, 0x4f, 0x59, 0x66,\n    0x59, 0x4e, 0x49, 0x45, 0x42, 0x62, 0x84, 0x8d, 0x82, 0x5c, 0x39, 0x3f, 0x35, 0x38, 0x33, 0x33,\n    0x64, 0x61, 0x60, 0x65, 0x6e, 0x74, 0x74, 0x73, 0x7b, 0x71, 0x6a, 0x6d, 0x74, 0x78, 0x78, 0x77,\n    0x7e, 0x7f, 0x7c, 0x77, 0x74, 0x74, 0x75, 0x75, 0x74, 0x78, 0x84, 0x94, 0x9d, 0x9b, 0x98, 0x97,\n    0x99, 0xa8, 0xae, 0xaa, 0xa8, 0xac, 0xa7, 0x9b, 0x8e, 0x8c, 0x8f, 0x99, 0xa1, 0xa4, 0xa8, 0xac,\n    0xb1, 0xae, 0xa9, 0xa5, 0x9f, 0x9b, 0x9c, 0xa0, 0xa1, 0xa8, 0xa9, 0xaa, 0xae, 0xad, 0xad, 0xb2,\n    0xb2, 0xbb, 0xbe, 0xba, 0xb1, 0xa2, 0x9b, 0xa1, 0xad, 0xad, 0xa9, 0xa3, 0xa2, 0xa8, 0xab, 0xaa,\n    0xb0, 0xb4, 0xb6, 0xb5, 0xb4, 0xb3, 0xb2, 0xb0, 0xb3, 0xb4, 0xb5, 0xb5, 0xb7, 0xb7, 0xb3, 0xae,\n    0xab, 0xa1, 0x98, 0x98, 0x9e, 0xa4, 0xa8, 0xab, 0xa6, 0xa8, 0xab, 0xad, 0xad, 0xab, 0xa8, 0xa6,\n    0x9e, 0x9f, 0xa5, 0xaf, 0xb4, 0xb2, 0xb1, 0xb3, 0xb3, 0xb1, 0xb2, 0xb3, 0xb0, 0xab, 0xad, 0xb3,\n    0xb8, 0xb9, 0xb9, 0xb8, 0xb7, 0xb6, 0xb7, 0xb8, 0xba, 0xb8, 0xb6, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5,\n    0xb2, 0xb2, 0xb2, 0xb4, 0xb5, 0xb6, 0xb6, 0xb5, 0xb6, 0xb4, 0xb2, 0xb0, 0xb0, 0xb3, 0xb6, 0xb8,\n    0xbe, 0xba, 0xb5, 0xb4, 0xb7, 0xb9, 0xb8, 0xb7, 0xb8, 0xb4, 0xb3, 0xb7, 0xb9, 0xb5, 0xaf, 0xab,\n    0xbb, 0xbb, 0xba, 0xb8, 0xb6, 0xb5, 0xb5, 0xb6, 0xbc, 0xb7, 0xb3, 0xb3, 0xb5, 0xba, 0xc2, 0xca,\n    0xe1, 0xe5, 0xdb, 0xc2, 0xae, 0xab, 0xae, 0xad, 0xb1, 0xb8, 0xc0, 0xc4, 0xc7, 0xc9, 0xc8, 0xc6,\n    0xc7, 0xc7, 0xc7, 0xc7, 0xc6, 0xc6, 0xc6, 0xc5, 0xc5, 0xc1, 0xbc, 0xb6, 0xb1, 0xac, 0xa8, 0xa5,\n    0xa1, 0xa2, 0xa4, 0xa4, 0xa2, 0xa4, 0xad, 0xb7, 0xbe, 0xb7, 0xad, 0xa1, 0x96, 0x8f, 0x8b, 0x8a,\n    0x96, 0xa4, 0xa3, 0xa1, 0xbf, 0xeb, 0xff, 0xff, 0xf9, 0xfa, 0xfb, 0xfd, 0xfe, 0xfe, 0xff, 0xff,\n    0xfe, 0xfe, 0xfd, 0xfd, 0xfd, 0xfc, 0xfc, 0xfc, 0xf9, 0xfa, 0xfa, 0xfb, 0xfc, 0xfc, 0xfc, 0xfc,\n    0xfc, 0xfc, 0xfc, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfe, 0xfd, 0xfb, 0xfa, 0xfa, 0xfb, 0xfd, 0xfe,\n    0xfe, 0xfd, 0xfd, 0xfc, 0xfc, 0xfd, 0xfd, 0xfe, 0xfe, 0xfe, 0xfd, 0xfd, 0xfc, 0xfb, 0xfb, 0xfb,\n    0xfc, 0xfc, 0xfc, 0xfc, 0xfb, 0xfb, 0xfc, 0xfd, 0xfb, 0xfb, 0xfc, 0xfd, 0xfb, 0xf8, 0xf3, 0xef,\n    0xeb, 0xe7, 0xe5, 0xe5, 0xe6, 0xe8, 0xec, 0xf0, 0xf2, 0xf2, 0xf1, 0xef, 0xee, 0xee, 0xef, 0xf0,\n    0xf2, 0xe9, 0xe4, 0xe6, 0xe5, 0xe1, 0xe2, 0xe8, 0xe8, 0xe3, 0xdf, 0xe1, 0xe5, 0xe5, 0xde, 0xd7,\n    0xc0, 0xb9, 0xb2, 0xaf, 0xad, 0xac, 0xab, 0xac, 0xaa, 0xa9, 0xa8, 0xa8, 0xa9, 0xa8, 0xa7, 0xa5,\n    0xa7, 0xa6, 0xa5, 0xa4, 0xa2, 0xa2, 0xa1, 0xa1, 0xa0, 0xa0, 0x9e, 0x9d, 0x9c, 0x9b, 0x9b, 0x9b,\n    0x9b, 0x9b, 0x9a, 0x9a, 0x9a, 0x99, 0x97, 0x95, 0x97, 0x95, 0x93, 0x92, 0x93, 0x94, 0x94, 0x94,\n    0x97, 0x97, 0x98, 0x98, 0x98, 0x98, 0x99, 0x99, 0x94, 0x95, 0x9d, 0xb1, 0xc3, 0xc4, 0xbf, 0xc1,\n    0xc5, 0xc6, 0xc6, 0xc5, 0xc7, 0xcb, 0xcd, 0xcd, 0xc9, 0xc7, 0xc5, 0xc2, 0xbc, 0xb9, 0xbb, 0xc1,\n    0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc4, 0xc4, 0xce, 0xc9, 0xc9, 0xc4, 0xb0, 0x99, 0x8c, 0x85,\n    0x6e, 0x72, 0x79, 0x7a, 0x73, 0x6d, 0x71, 0x7b, 0x72, 0x70, 0x74, 0x7e, 0x80, 0x79, 0x6f, 0x6a,\n    0x71, 0x71, 0x6e, 0x6b, 0x6c, 0x72, 0x78, 0x7b, 0x7e, 0x7b, 0x76, 0x73, 0x73, 0x73, 0x70, 0x6a,\n    0x6d, 0x6b, 0x6b, 0x71, 0x79, 0x7d, 0x7a, 0x75, 0x6d, 0x6a, 0x68, 0x6b, 0x6d, 0x6c, 0x6b, 0x6b,\n    0x6d, 0x6c, 0x69, 0x68, 0x68, 0x69, 0x68, 0x67, 0x68, 0x69, 0x6a, 0x69, 0x68, 0x67, 0x67, 0x67,\n    0x67, 0x66, 0x64, 0x62, 0x5f, 0x5b, 0x56, 0x52, 0x46, 0x45, 0x40, 0x3e, 0x45, 0x4e, 0x4a, 0x40,\n    0x59, 0x61, 0x65, 0x5b, 0x47, 0x32, 0x20, 0x16, 0x16, 0x16, 0x13, 0x17, 0x22, 0x25, 0x25, 0x2b,\n    0x31, 0x32, 0x2f, 0x24, 0x19, 0x1f, 0x3d, 0x5b, 0x6d, 0x54, 0x2b, 0x12, 0x13, 0x12, 0x0f, 0x15,\n    0x11, 0x23, 0x3b, 0x4b, 0x51, 0x4e, 0x44, 0x3b, 0x31, 0x2e, 0x28, 0x21, 0x21, 0x31, 0x4c, 0x61,\n    0x47, 0x31, 0x28, 0x34, 0x3f, 0x46, 0x57, 0x6c, 0x69, 0x6b, 0x71, 0x6f, 0x5e, 0x50, 0x5c, 0x73,\n    0x7e, 0x85, 0x7c, 0x5e, 0x3d, 0x2d, 0x29, 0x29, 0x19, 0x19, 0x1c, 0x29, 0x3a, 0x44, 0x40, 0x37,\n    0x40, 0x44, 0x4a, 0x58, 0x68, 0x68, 0x5a, 0x50, 0x50, 0x44, 0x3e, 0x45, 0x4b, 0x4d, 0x54, 0x5d,\n    0x5a, 0x50, 0x49, 0x4e, 0x46, 0x54, 0x71, 0x91, 0x8e, 0x77, 0x47, 0x47, 0x43, 0x4d, 0x3f, 0x34,\n    0x79, 0x72, 0x6a, 0x67, 0x6b, 0x72, 0x78, 0x7b, 0x78, 0x76, 0x78, 0x7e, 0x82, 0x81, 0x7b, 0x78,\n    0x83, 0x86, 0x85, 0x7f, 0x7d, 0x81, 0x87, 0x8a, 0x79, 0x78, 0x7e, 0x8c, 0x96, 0x95, 0x93, 0x93,\n    0x95, 0x9f, 0xa5, 0xa5, 0xa4, 0xa3, 0x9b, 0x90, 0x8a, 0x8e, 0x94, 0x99, 0x9a, 0x98, 0x98, 0x9a,\n    0x9e, 0x9d, 0x9c, 0x97, 0x8f, 0x8c, 0x92, 0x9b, 0x9b, 0xa0, 0xa0, 0xa0, 0xa3, 0xa1, 0x9e, 0xa1,\n    0xa1, 0xaa, 0xac, 0xa4, 0x98, 0x8b, 0x8a, 0x95, 0xa9, 0xab, 0xa7, 0xa0, 0x9f, 0xa5, 0xa7, 0xa5,\n    0xa1, 0xa8, 0xaf, 0xb3, 0xb6, 0xb9, 0xba, 0xb9, 0xb8, 0xb7, 0xb5, 0xb4, 0xb6, 0xb7, 0xaf, 0xa6,\n    0xa1, 0x9b, 0x97, 0x97, 0x99, 0x9b, 0xa0, 0xa6, 0xa0, 0xa5, 0xab, 0xae, 0xae, 0xac, 0xaa, 0xaa,\n    0xa4, 0xa1, 0xa5, 0xaf, 0xb5, 0xb4, 0xb4, 0xb7, 0xb9, 0xb6, 0xb6, 0xb8, 0xb4, 0xad, 0xac, 0xb1,\n    0xba, 0xbc, 0xbe, 0xbe, 0xbd, 0xbd, 0xbe, 0xbf, 0xb9, 0xb8, 0xb6, 0xb7, 0xb9, 0xbb, 0xbb, 0xba,\n    0xb3, 0xb3, 0xb4, 0xb7, 0xba, 0xbc, 0xbc, 0xbc, 0xc0, 0xbe, 0xbb, 0xb7, 0xb4, 0xb3, 0xb3, 0xb3,\n    0xbc, 0xb8, 0xb3, 0xb2, 0xb4, 0xb5, 0xb5, 0xb3, 0xac, 0xaa, 0xac, 0xb2, 0xb4, 0xb1, 0xac, 0xab,\n    0xb2, 0xb6, 0xba, 0xbe, 0xc0, 0xc1, 0xc2, 0xc3, 0xbb, 0xb4, 0xb0, 0xaf, 0xad, 0xb0, 0xbf, 0xd2,\n    0xe6, 0xd9, 0xc3, 0xb0, 0xa9, 0xac, 0xad, 0xaa, 0xb4, 0xbb, 0xc2, 0xc4, 0xc6, 0xc8, 0xc8, 0xc6,\n    0xc7, 0xc7, 0xc7, 0xc7, 0xc6, 0xc6, 0xc6, 0xc6, 0xc4, 0xc2, 0xbf, 0xbb, 0xb7, 0xb2, 0xac, 0xa8,\n    0xa6, 0xa4, 0xa3, 0xa1, 0x9e, 0xa1, 0xac, 0xb8, 0xb9, 0xb8, 0xb4, 0xad, 0xa3, 0x9a, 0x93, 0x8e,\n    0x91, 0x94, 0xa1, 0xa0, 0x9e, 0xc8, 0xf5, 0xf9, 0xfb, 0xfb, 0xfc, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd,\n    0xfe, 0xfe, 0xfd, 0xfd, 0xfd, 0xfd, 0xfc, 0xfc, 0xf9, 0xfa, 0xfb, 0xfc, 0xfc, 0xfc, 0xfd, 0xfc,\n    0xfc, 0xfc, 0xfb, 0xfb, 0xfa, 0xf9, 0xf9, 0xf9, 0xfc, 0xfc, 0xfc, 0xfb, 0xfb, 0xfc, 0xfc, 0xfc,\n    0xfe, 0xfd, 0xfd, 0xfc, 0xfc, 0xfd, 0xfd, 0xfe, 0xff, 0xfe, 0xfd, 0xfc, 0xfc, 0xfc, 0xfd, 0xfd,\n    0xfd, 0xfd, 0xfc, 0xfc, 0xfd, 0xfd, 0xfd, 0xfd, 0xfc, 0xfb, 0xfb, 0xfb, 0xfb, 0xf9, 0xf6, 0xf4,\n    0xf3, 0xef, 0xeb, 0xeb, 0xea, 0xe8, 0xea, 0xee, 0xf0, 0xf0, 0xf1, 0xef, 0xed, 0xec, 0xed, 0xef,\n    0xf3, 0xf0, 0xed, 0xea, 0xe7, 0xe4, 0xe4, 0xe5, 0xdf, 0xe4, 0xe8, 0xe7, 0xe4, 0xe2, 0xe5, 0xe9,\n    0xed, 0xe7, 0xd3, 0xb9, 0xaf, 0xb4, 0xb4, 0xab, 0xac, 0xab, 0xaa, 0xaa, 0xab, 0xab, 0xa9, 0xa8,\n    0xa9, 0xa9, 0xa7, 0xa6, 0xa5, 0xa4, 0xa4, 0xa4, 0xa3, 0xa2, 0xa1, 0x9f, 0x9e, 0x9d, 0x9d, 0x9d,\n    0x9d, 0x9d, 0x9c, 0x9d, 0x9d, 0x9b, 0x99, 0x97, 0x9a, 0x98, 0x97, 0x97, 0x99, 0x9a, 0x99, 0x98,\n    0x9b, 0x9b, 0x9b, 0x9c, 0x9b, 0x9b, 0x9a, 0x9a, 0x9a, 0x98, 0xa8, 0xbd, 0xc3, 0xbf, 0xbf, 0xc1,\n    0xc5, 0xc6, 0xc6, 0xc4, 0xc6, 0xca, 0xcc, 0xcc, 0xcb, 0xc9, 0xc6, 0xc2, 0xbc, 0xb8, 0xbb, 0xc0,\n    0xc3, 0xc3, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc3, 0xc2, 0xc0, 0xc0, 0xc2, 0xb7, 0x99, 0x7c, 0x73,\n    0x6c, 0x68, 0x6a, 0x72, 0x75, 0x71, 0x6e, 0x6f, 0x7a, 0x79, 0x83, 0x8f, 0x8b, 0x77, 0x69, 0x66,\n    0x6f, 0x6f, 0x6d, 0x6b, 0x6c, 0x72, 0x76, 0x77, 0x77, 0x74, 0x72, 0x72, 0x70, 0x6e, 0x6f, 0x71,\n    0x76, 0x73, 0x70, 0x71, 0x73, 0x75, 0x74, 0x73, 0x70, 0x6c, 0x6a, 0x6c, 0x6e, 0x6d, 0x6d, 0x6d,\n    0x70, 0x6e, 0x6b, 0x69, 0x69, 0x69, 0x68, 0x67, 0x68, 0x69, 0x6a, 0x69, 0x68, 0x67, 0x66, 0x67,\n    0x66, 0x65, 0x62, 0x5f, 0x5b, 0x55, 0x4f, 0x4a, 0x49, 0x3d, 0x33, 0x3c, 0x57, 0x75, 0x87, 0x8d,\n    0x82, 0x80, 0x77, 0x66, 0x52, 0x3e, 0x2b, 0x1f, 0x1c, 0x1f, 0x20, 0x26, 0x2c, 0x22, 0x1b, 0x25,\n    0x33, 0x2b, 0x22, 0x1d, 0x1e, 0x2b, 0x46, 0x5e, 0x48, 0x2d, 0x16, 0x12, 0x14, 0x11, 0x11, 0x18,\n    0x1d, 0x1e, 0x1f, 0x21, 0x27, 0x2c, 0x2c, 0x28, 0x29, 0x1e, 0x18, 0x20, 0x2e, 0x3a, 0x44, 0x4a,\n    0x5e, 0x68, 0x6c, 0x6c, 0x75, 0x82, 0x80, 0x73, 0x71, 0x63, 0x55, 0x58, 0x6f, 0x82, 0x7e, 0x6f,\n    0x6f, 0x57, 0x36, 0x23, 0x28, 0x33, 0x2d, 0x1f, 0x1e, 0x1d, 0x26, 0x3e, 0x59, 0x68, 0x69, 0x65,\n    0x4f, 0x4a, 0x50, 0x5d, 0x63, 0x61, 0x56, 0x48, 0x54, 0x4d, 0x48, 0x44, 0x3d, 0x37, 0x39, 0x40,\n    0x52, 0x59, 0x57, 0x5e, 0x52, 0x51, 0x5e, 0x84, 0x9b, 0x84, 0x3f, 0x38, 0x3c, 0x4e, 0x48, 0x4b,\n    0x79, 0x77, 0x74, 0x72, 0x71, 0x71, 0x70, 0x70, 0x81, 0x80, 0x81, 0x82, 0x7d, 0x74, 0x6d, 0x69,\n    0x71, 0x78, 0x7c, 0x7a, 0x79, 0x7d, 0x82, 0x84, 0x81, 0x7a, 0x7a, 0x85, 0x8f, 0x90, 0x8e, 0x8f,\n    0x90, 0x92, 0x97, 0x9b, 0x9c, 0x96, 0x8c, 0x83, 0x7c, 0x86, 0x90, 0x93, 0x92, 0x90, 0x90, 0x90,\n    0xa0, 0xa4, 0xa7, 0xa1, 0x94, 0x8d, 0x93, 0x9d, 0xb4, 0xb4, 0xac, 0xa5, 0xa3, 0x9f, 0x9a, 0x9c,\n    0x9b, 0xa2, 0x9e, 0x91, 0x84, 0x7c, 0x84, 0x96, 0xa8, 0xab, 0xa8, 0xa1, 0xa0, 0xa6, 0xa7, 0xa3,\n    0xa5, 0xac, 0xb3, 0xb7, 0xb9, 0xba, 0xba, 0xb8, 0xb1, 0xb0, 0xad, 0xad, 0xb1, 0xb2, 0xaa, 0x9f,\n    0x92, 0x93, 0x96, 0x9a, 0x98, 0x95, 0x98, 0x9d, 0x96, 0x9d, 0xa7, 0xad, 0xae, 0xad, 0xaf, 0xb1,\n    0xaa, 0xa5, 0xa6, 0xb0, 0xb8, 0xba, 0xbc, 0xc0, 0xbf, 0xbb, 0xba, 0xbc, 0xb8, 0xaf, 0xac, 0xb0,\n    0xb6, 0xb8, 0xbb, 0xbd, 0xbc, 0xbc, 0xbe, 0xbf, 0xbb, 0xba, 0xb9, 0xba, 0xbd, 0xc0, 0xc0, 0xbf,\n    0xbb, 0xbb, 0xbb, 0xbc, 0xbe, 0xbe, 0xbd, 0xbb, 0xb9, 0xbb, 0xbe, 0xc0, 0xbf, 0xbd, 0xb9, 0xb7,\n    0xb5, 0xb1, 0xad, 0xad, 0xaf, 0xb1, 0xb1, 0xaf, 0xaf, 0xad, 0xaf, 0xb2, 0xb3, 0xb1, 0xb2, 0xb6,\n    0xad, 0xb1, 0xb7, 0xbc, 0xbd, 0xbd, 0xbc, 0xbb, 0xb7, 0xb2, 0xb1, 0xb5, 0xb4, 0xb8, 0xd0, 0xed,\n    0xe0, 0xcb, 0xb3, 0xa7, 0xa5, 0xa7, 0xab, 0xae, 0xb8, 0xbf, 0xc5, 0xc5, 0xc6, 0xc7, 0xc7, 0xc5,\n    0xc7, 0xc7, 0xc7, 0xc7, 0xc7, 0xc7, 0xc7, 0xc7, 0xc8, 0xc6, 0xc5, 0xc2, 0xbe, 0xb8, 0xb1, 0xac,\n    0xa9, 0xa8, 0xa9, 0xa9, 0xa5, 0xa3, 0xa8, 0xb0, 0xaf, 0xb8, 0xbf, 0xbb, 0xae, 0x9f, 0x95, 0x90,\n    0x89, 0x91, 0x9b, 0xac, 0xb2, 0xa9, 0xbd, 0xe8, 0xfc, 0xfc, 0xfd, 0xfd, 0xfd, 0xfc, 0xfc, 0xfb,\n    0xfe, 0xfe, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfc, 0xfa, 0xfa, 0xfb, 0xfc, 0xfc, 0xfd, 0xfd, 0xfd,\n    0xfc, 0xfc, 0xfb, 0xfa, 0xf9, 0xf8, 0xf8, 0xf7, 0xfa, 0xfb, 0xfc, 0xfd, 0xfd, 0xfc, 0xfb, 0xfa,\n    0xfe, 0xfd, 0xfd, 0xfc, 0xfc, 0xfd, 0xfd, 0xfe, 0xff, 0xfe, 0xfd, 0xfc, 0xfc, 0xfd, 0xff, 0xff,\n    0xff, 0xfe, 0xfc, 0xfd, 0xfe, 0xff, 0xff, 0xfe, 0xfc, 0xfb, 0xf9, 0xf9, 0xfa, 0xfa, 0xfa, 0xf9,\n    0xf9, 0xf4, 0xf0, 0xee, 0xeb, 0xe6, 0xe6, 0xe9, 0xe9, 0xed, 0xf1, 0xf3, 0xf1, 0xed, 0xeb, 0xea,\n    0xe6, 0xf0, 0xf7, 0xf4, 0xf0, 0xef, 0xeb, 0xe4, 0xe5, 0xe6, 0xe6, 0xe5, 0xe4, 0xe4, 0xe5, 0xe6,\n    0xea, 0xe8, 0xeb, 0xf0, 0xe8, 0xd2, 0xbd, 0xb2, 0xad, 0xac, 0xac, 0xac, 0xad, 0xac, 0xab, 0xa9,\n    0xaa, 0xaa, 0xa8, 0xa7, 0xa6, 0xa5, 0xa4, 0xa4, 0xa5, 0xa4, 0xa2, 0xa1, 0xa0, 0x9f, 0x9f, 0x9f,\n    0xa0, 0x9f, 0x9f, 0x9f, 0x9f, 0x9e, 0x9b, 0x99, 0x9a, 0x99, 0x99, 0x9a, 0x9d, 0x9e, 0x9d, 0x9c,\n    0x9e, 0x9e, 0x9f, 0x9f, 0x9e, 0x9d, 0x9b, 0x9a, 0xa0, 0x9d, 0xb1, 0xc7, 0xc4, 0xbd, 0xc0, 0xc2,\n    0xc7, 0xc8, 0xc7, 0xc6, 0xc7, 0xcb, 0xcd, 0xcd, 0xcd, 0xca, 0xc7, 0xc2, 0xbb, 0xb6, 0xb9, 0xbe,\n    0xc2, 0xc3, 0xc4, 0xc5, 0xc5, 0xc5, 0xc4, 0xc4, 0xc9, 0xca, 0xc8, 0xca, 0xc6, 0xa4, 0x7d, 0x6f,\n    0x6b, 0x6b, 0x72, 0x7b, 0x7b, 0x75, 0x73, 0x76, 0x76, 0x70, 0x73, 0x7b, 0x76, 0x68, 0x69, 0x75,\n    0x6d, 0x6c, 0x6a, 0x69, 0x6c, 0x71, 0x72, 0x70, 0x78, 0x76, 0x76, 0x77, 0x71, 0x6c, 0x6f, 0x77,\n    0x75, 0x73, 0x6f, 0x6c, 0x6b, 0x6c, 0x6f, 0x71, 0x73, 0x6e, 0x6c, 0x6d, 0x6f, 0x6f, 0x6e, 0x6f,\n    0x72, 0x6f, 0x6c, 0x6a, 0x69, 0x68, 0x67, 0x67, 0x68, 0x69, 0x6a, 0x69, 0x68, 0x67, 0x66, 0x67,\n    0x66, 0x64, 0x61, 0x5c, 0x57, 0x50, 0x49, 0x44, 0x3c, 0x3a, 0x4e, 0x73, 0x87, 0x80, 0x75, 0x76,\n    0x65, 0x64, 0x62, 0x60, 0x5d, 0x55, 0x45, 0x37, 0x2e, 0x32, 0x32, 0x38, 0x3a, 0x28, 0x1f, 0x2d,\n    0x30, 0x24, 0x1a, 0x19, 0x1c, 0x1e, 0x22, 0x27, 0x20, 0x15, 0x11, 0x12, 0x10, 0x11, 0x14, 0x14,\n    0x16, 0x1a, 0x1d, 0x1d, 0x1e, 0x20, 0x20, 0x1f, 0x11, 0x17, 0x1e, 0x1f, 0x1a, 0x23, 0x47, 0x6c,\n    0x70, 0x6d, 0x6f, 0x73, 0x70, 0x69, 0x6a, 0x70, 0x67, 0x6a, 0x73, 0x7b, 0x76, 0x60, 0x47, 0x37,\n    0x26, 0x26, 0x2d, 0x36, 0x33, 0x27, 0x1e, 0x1e, 0x1f, 0x33, 0x50, 0x66, 0x6a, 0x66, 0x6a, 0x73,\n    0x6a, 0x4c, 0x42, 0x48, 0x41, 0x3c, 0x44, 0x4c, 0x49, 0x43, 0x3c, 0x3a, 0x3e, 0x44, 0x46, 0x46,\n    0x3a, 0x4f, 0x49, 0x4c, 0x45, 0x44, 0x3b, 0x4e, 0x52, 0x45, 0x0f, 0x24, 0x34, 0x3a, 0x2d, 0x3a,\n    0x74, 0x75, 0x76, 0x76, 0x77, 0x76, 0x74, 0x71, 0x6a, 0x6d, 0x6e, 0x6c, 0x68, 0x66, 0x66, 0x67,\n    0x71, 0x77, 0x7d, 0x7f, 0x7d, 0x7b, 0x80, 0x86, 0x7a, 0x74, 0x74, 0x7f, 0x8e, 0x94, 0x8c, 0x81,\n    0x76, 0x82, 0x8c, 0x8d, 0x89, 0x84, 0x7c, 0x74, 0x7a, 0x81, 0x92, 0xa6, 0xa9, 0x99, 0x89, 0x82,\n    0x93, 0xa0, 0xa8, 0xa5, 0x96, 0x85, 0x86, 0x98, 0xa7, 0xaa, 0xaa, 0xa7, 0xa7, 0xa4, 0x98, 0x89,\n    0x8a, 0x8b, 0x87, 0x7d, 0x78, 0x7f, 0x8e, 0x9a, 0xa1, 0xa9, 0xaa, 0x9f, 0x98, 0x9b, 0xa0, 0xa1,\n    0xa3, 0xa8, 0xaa, 0xa6, 0xa4, 0xa9, 0xae, 0xb1, 0xb2, 0xa9, 0xa7, 0xac, 0xaf, 0xaf, 0xa5, 0x93,\n    0x83, 0x8e, 0x92, 0x95, 0x8f, 0x8c, 0x91, 0x85, 0x8c, 0x97, 0xa5, 0xa8, 0xa8, 0xaf, 0xb2, 0xaa,\n    0xac, 0xa9, 0xb1, 0xb5, 0xba, 0xbe, 0xb9, 0xbd, 0xbe, 0xbd, 0xbe, 0xbf, 0xbc, 0xb5, 0xae, 0xaa,\n    0xb0, 0xb6, 0xb9, 0xb8, 0xb8, 0xbb, 0xba, 0xb5, 0xb1, 0xb0, 0xaf, 0xb0, 0xb6, 0xbd, 0xc0, 0xbe,\n    0xb9, 0xb6, 0xb6, 0xbb, 0xbf, 0xbe, 0xbe, 0xc1, 0xbd, 0xc0, 0xbf, 0xba, 0xb9, 0xbb, 0xbc, 0xb9,\n    0xba, 0xb7, 0xac, 0xa8, 0xb2, 0xb5, 0xae, 0xa9, 0xa9, 0xb2, 0xb9, 0xb8, 0xb4, 0xb0, 0xab, 0xa6,\n    0xab, 0xaf, 0xb5, 0xbb, 0xbe, 0xbc, 0xb5, 0xaf, 0xb0, 0xb2, 0xc4, 0xc1, 0xb0, 0xc7, 0xe5, 0xdd,\n    0xcc, 0xb7, 0xa8, 0xa7, 0xa9, 0xa7, 0xa9, 0xb1, 0xbc, 0xbf, 0xc4, 0xc7, 0xc8, 0xc8, 0xc8, 0xc8,\n    0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc7, 0xc6, 0xc4, 0xc2, 0xbf, 0xbb, 0xb5, 0xb1,\n    0xaf, 0xa8, 0xa4, 0xa6, 0xa6, 0xa4, 0xa8, 0xaf, 0xb5, 0xb4, 0xb4, 0xb7, 0xbb, 0xb8, 0xab, 0x9e,\n    0x91, 0x8a, 0x8f, 0x9f, 0xa7, 0xa6, 0xaf, 0xbe, 0xf5, 0xfa, 0xf8, 0xfc, 0xff, 0xfa, 0xf2, 0xfe,\n    0xfc, 0xfc, 0xfd, 0xfd, 0xfe, 0xfd, 0xfd, 0xfd, 0xfa, 0xfb, 0xfc, 0xfd, 0xfd, 0xfd, 0xfc, 0xfb,\n    0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfb, 0xfb, 0xfb, 0xf8, 0xf9, 0xfb, 0xfc, 0xfc, 0xfc, 0xfc, 0xfb,\n    0xfc, 0xfc, 0xfc, 0xfd, 0xfd, 0xfd, 0xfe, 0xfe, 0xfd, 0xfe, 0xfe, 0xff, 0xfe, 0xfe, 0xfd, 0xfc,\n    0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfc, 0xfc,\n    0xfb, 0xf8, 0xf3, 0xee, 0xea, 0xe7, 0xe5, 0xe5, 0xe6, 0xe8, 0xeb, 0xf0, 0xf5, 0xf6, 0xf3, 0xf0,\n    0xec, 0xec, 0xec, 0xed, 0xee, 0xf0, 0xf1, 0xf2, 0xf1, 0xe9, 0xe2, 0xe3, 0xe9, 0xed, 0xec, 0xe8,\n    0xec, 0xe8, 0xe4, 0xe4, 0xe8, 0xea, 0xe9, 0xe7, 0xd7, 0xc5, 0xaf, 0xa6, 0xa9, 0xaf, 0xae, 0xab,\n    0xaa, 0xa8, 0xa7, 0xa7, 0xa8, 0xa8, 0xa8, 0xa7, 0xa3, 0xa4, 0xa6, 0xa6, 0xa5, 0xa3, 0xa2, 0xa1,\n    0x9f, 0xa0, 0xa1, 0xa2, 0xa2, 0xa1, 0x9f, 0x9e, 0xa1, 0xa1, 0xa0, 0xa0, 0xa0, 0xa1, 0xa1, 0xa2,\n    0x9f, 0xa1, 0xa1, 0xa0, 0x9d, 0x9b, 0x9b, 0x9c, 0x9c, 0xb2, 0xc5, 0xc4, 0xbc, 0xbb, 0xc1, 0xc5,\n    0xc7, 0xc7, 0xc8, 0xc9, 0xca, 0xcd, 0xcf, 0xd0, 0xca, 0xc5, 0xbf, 0xba, 0xb3, 0xb0, 0xb5, 0xbd,\n    0xc3, 0xc6, 0xc8, 0xc7, 0xc4, 0xc3, 0xc4, 0xc6, 0xc5, 0xc7, 0xca, 0xc9, 0xc2, 0xb7, 0x9a, 0x78,\n    0x6d, 0x71, 0x74, 0x7a, 0x7e, 0x78, 0x75, 0x7b, 0x77, 0x72, 0x73, 0x75, 0x70, 0x69, 0x6d, 0x78,\n    0x73, 0x70, 0x6c, 0x69, 0x6d, 0x71, 0x6e, 0x68, 0x66, 0x6a, 0x72, 0x77, 0x72, 0x6b, 0x6c, 0x73,\n    0x77, 0x6c, 0x6b, 0x6f, 0x6c, 0x6b, 0x6e, 0x6e, 0x71, 0x70, 0x6d, 0x6c, 0x6d, 0x6e, 0x6f, 0x6f,\n    0x6d, 0x6d, 0x6e, 0x6e, 0x6d, 0x6c, 0x6b, 0x6a, 0x68, 0x69, 0x6a, 0x69, 0x67, 0x66, 0x66, 0x67,\n    0x64, 0x62, 0x5f, 0x5b, 0x56, 0x50, 0x4a, 0x45, 0x40, 0x42, 0x54, 0x6e, 0x79, 0x6f, 0x65, 0x64,\n    0x73, 0x82, 0x84, 0x7c, 0x76, 0x66, 0x52, 0x4c, 0x3f, 0x38, 0x35, 0x39, 0x3a, 0x35, 0x2f, 0x2d,\n    0x30, 0x2d, 0x2a, 0x28, 0x27, 0x28, 0x28, 0x28, 0x21, 0x1e, 0x1c, 0x1c, 0x1d, 0x1b, 0x16, 0x12,\n    0x15, 0x12, 0x14, 0x1e, 0x27, 0x29, 0x24, 0x1f, 0x1c, 0x1a, 0x19, 0x18, 0x17, 0x18, 0x18, 0x18,\n    0x35, 0x47, 0x5a, 0x62, 0x64, 0x64, 0x60, 0x5b, 0x5d, 0x5e, 0x5a, 0x4b, 0x35, 0x25, 0x23, 0x28,\n    0x31, 0x37, 0x3a, 0x33, 0x28, 0x21, 0x24, 0x28, 0x2a, 0x39, 0x51, 0x6d, 0x79, 0x69, 0x53, 0x4d,\n    0x54, 0x5b, 0x5e, 0x58, 0x4a, 0x3d, 0x32, 0x2c, 0x3b, 0x37, 0x37, 0x3d, 0x3f, 0x3c, 0x3c, 0x3f,\n    0x51, 0x44, 0x42, 0x39, 0x2a, 0x21, 0x23, 0x39, 0x50, 0x52, 0x40, 0x28, 0x27, 0x32, 0x33, 0x2f,\n    0x7b, 0x77, 0x75, 0x7b, 0x84, 0x83, 0x75, 0x67, 0x5e, 0x5c, 0x5c, 0x61, 0x69, 0x6f, 0x70, 0x6f,\n    0x73, 0x75, 0x76, 0x76, 0x73, 0x73, 0x76, 0x7b, 0x7d, 0x73, 0x6a, 0x6d, 0x7c, 0x88, 0x86, 0x7e,\n    0x6e, 0x74, 0x79, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x6b, 0x6b, 0x73, 0x80, 0x84, 0x81, 0x80, 0x84,\n    0x98, 0xa0, 0xa4, 0xa1, 0x98, 0x8b, 0x8c, 0x9b, 0xa2, 0xa4, 0xa2, 0x9f, 0x9e, 0x98, 0x88, 0x78,\n    0x83, 0x8a, 0x90, 0x90, 0x8d, 0x8d, 0x93, 0x98, 0x99, 0x99, 0x95, 0x92, 0x94, 0x9a, 0x9d, 0x9c,\n    0xa7, 0xb0, 0xb4, 0xad, 0xa3, 0xa3, 0xab, 0xb1, 0xaf, 0xaf, 0xaf, 0xab, 0xa9, 0xae, 0xaa, 0x9b,\n    0x88, 0x90, 0x93, 0x97, 0x93, 0x93, 0x99, 0x8d, 0x8f, 0x94, 0x9e, 0xa3, 0xa5, 0xac, 0xae, 0xa7,\n    0xa7, 0xaa, 0xb4, 0xb1, 0xb4, 0xbe, 0xbd, 0xc0, 0xb7, 0xba, 0xbe, 0xc0, 0xbd, 0xb6, 0xaf, 0xab,\n    0xac, 0xaf, 0xaf, 0xaa, 0xa9, 0xb0, 0xb6, 0xb8, 0xb2, 0xb2, 0xb1, 0xaf, 0xb0, 0xb3, 0xb3, 0xb1,\n    0xb5, 0xb3, 0xb4, 0xb7, 0xb7, 0xb5, 0xb4, 0xb7, 0xba, 0xbb, 0xb8, 0xb4, 0xb3, 0xb5, 0xb5, 0xb2,\n    0xbe, 0xb7, 0xaa, 0xa5, 0xae, 0xb0, 0xa8, 0xa3, 0xa6, 0xaf, 0xb3, 0xad, 0xa7, 0xa6, 0xa5, 0xa3,\n    0xa6, 0xab, 0xb3, 0xba, 0xbd, 0xb9, 0xb1, 0xab, 0xab, 0xba, 0xbf, 0xb7, 0xbe, 0xdb, 0xe4, 0xd2,\n    0xb5, 0xab, 0xa7, 0xad, 0xb0, 0xac, 0xad, 0xb4, 0xc0, 0xc2, 0xc5, 0xc7, 0xc6, 0xc6, 0xc6, 0xc6,\n    0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc5, 0xc5, 0xc5, 0xc4, 0xc4, 0xc3, 0xc2, 0xbf, 0xbb, 0xb9,\n    0xb4, 0xae, 0xaa, 0xaa, 0xa9, 0xa6, 0xa8, 0xae, 0xb3, 0xb5, 0xb8, 0xb9, 0xb9, 0xb6, 0xac, 0xa3,\n    0x93, 0x8f, 0x8b, 0x8d, 0x97, 0xa3, 0xaa, 0xac, 0xc6, 0xe7, 0xff, 0xfd, 0xf3, 0xf9, 0xfc, 0xf5,\n    0xfc, 0xfc, 0xfd, 0xfd, 0xfe, 0xfd, 0xfd, 0xfd, 0xfa, 0xfb, 0xfb, 0xfc, 0xfd, 0xfd, 0xfc, 0xfc,\n    0xfc, 0xfc, 0xfb, 0xfb, 0xfb, 0xfa, 0xfa, 0xfa, 0xf9, 0xfa, 0xfb, 0xfb, 0xfc, 0xfc, 0xfc, 0xfc,\n    0xfb, 0xfb, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfd, 0xfd, 0xfe, 0xfe, 0xfe, 0xfe, 0xfd, 0xfd,\n    0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfc, 0xfc, 0xfd, 0xfd, 0xfc, 0xfc, 0xfb, 0xfa,\n    0xf9, 0xf9, 0xf9, 0xf7, 0xf3, 0xee, 0xe8, 0xe5, 0xe4, 0xe5, 0xe9, 0xee, 0xf3, 0xf5, 0xf4, 0xf2,\n    0xf0, 0xf0, 0xee, 0xed, 0xed, 0xed, 0xee, 0xee, 0xec, 0xec, 0xec, 0xea, 0xe7, 0xe6, 0xe7, 0xe8,\n    0xed, 0xec, 0xeb, 0xeb, 0xea, 0xe7, 0xe3, 0xe0, 0xe7, 0xe5, 0xde, 0xd2, 0xc2, 0xb5, 0xae, 0xab,\n    0xae, 0xad, 0xac, 0xab, 0xaa, 0xa7, 0xa3, 0xa0, 0xa9, 0xa8, 0xa7, 0xa6, 0xa5, 0xa4, 0xa3, 0xa2,\n    0xa6, 0xa6, 0xa5, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa0, 0xa0, 0xa0, 0xa0, 0xa1, 0xa2, 0xa3, 0xa3,\n    0x9c, 0x9d, 0x9e, 0x9f, 0x9f, 0xa0, 0xa2, 0xa4, 0xb0, 0xbc, 0xc5, 0xc1, 0xbb, 0xbd, 0xc2, 0xc4,\n    0xc5, 0xc5, 0xc6, 0xc7, 0xc7, 0xc8, 0xc9, 0xca, 0xc7, 0xc3, 0xbd, 0xb7, 0xb1, 0xaf, 0xb5, 0xbe,\n    0xc4, 0xc6, 0xc8, 0xc7, 0xc5, 0xc4, 0xc5, 0xc7, 0xc5, 0xc6, 0xc9, 0xca, 0xc6, 0xbe, 0xa5, 0x85,\n    0x6b, 0x6e, 0x73, 0x7a, 0x7d, 0x77, 0x73, 0x76, 0x72, 0x70, 0x72, 0x77, 0x74, 0x6d, 0x71, 0x7b,\n    0x73, 0x70, 0x69, 0x67, 0x6b, 0x73, 0x75, 0x73, 0x68, 0x6a, 0x71, 0x77, 0x75, 0x6d, 0x6a, 0x6c,\n    0x70, 0x6d, 0x70, 0x72, 0x6e, 0x6f, 0x74, 0x75, 0x74, 0x72, 0x71, 0x72, 0x74, 0x73, 0x6f, 0x6b,\n    0x6e, 0x6e, 0x6e, 0x6f, 0x6e, 0x6d, 0x6c, 0x6b, 0x6b, 0x6c, 0x6c, 0x6b, 0x68, 0x66, 0x66, 0x66,\n    0x64, 0x62, 0x5e, 0x5a, 0x55, 0x4e, 0x48, 0x44, 0x3a, 0x3b, 0x44, 0x53, 0x5c, 0x5f, 0x68, 0x73,\n    0x7c, 0x83, 0x8c, 0x95, 0x96, 0x83, 0x67, 0x58, 0x57, 0x3a, 0x1d, 0x17, 0x21, 0x2d, 0x33, 0x34,\n    0x3d, 0x3e, 0x40, 0x42, 0x41, 0x3c, 0x34, 0x2d, 0x2b, 0x2c, 0x2a, 0x24, 0x1d, 0x19, 0x1b, 0x1d,\n    0x1d, 0x21, 0x27, 0x2a, 0x27, 0x20, 0x1d, 0x1e, 0x1f, 0x1f, 0x1e, 0x1b, 0x16, 0x13, 0x13, 0x14,\n    0x15, 0x25, 0x39, 0x46, 0x4d, 0x4f, 0x4e, 0x4c, 0x54, 0x42, 0x29, 0x19, 0x16, 0x1f, 0x2b, 0x34,\n    0x42, 0x3e, 0x35, 0x29, 0x1d, 0x17, 0x1d, 0x26, 0x2e, 0x30, 0x3c, 0x5a, 0x76, 0x74, 0x61, 0x57,\n    0x40, 0x47, 0x56, 0x65, 0x66, 0x58, 0x48, 0x40, 0x3b, 0x39, 0x38, 0x3d, 0x41, 0x43, 0x43, 0x44,\n    0x3f, 0x34, 0x37, 0x36, 0x30, 0x29, 0x27, 0x36, 0x46, 0x4c, 0x44, 0x35, 0x35, 0x3a, 0x37, 0x33,\n    0x6f, 0x6e, 0x6e, 0x72, 0x77, 0x79, 0x77, 0x75, 0x67, 0x61, 0x5f, 0x68, 0x78, 0x83, 0x83, 0x7f,\n    0x6c, 0x6c, 0x6d, 0x6e, 0x6f, 0x70, 0x70, 0x6f, 0x65, 0x66, 0x65, 0x6a, 0x79, 0x85, 0x7f, 0x72,\n    0x63, 0x63, 0x64, 0x65, 0x63, 0x62, 0x65, 0x69, 0x6d, 0x6b, 0x6c, 0x6e, 0x6b, 0x67, 0x68, 0x6d,\n    0x81, 0x83, 0x80, 0x7b, 0x76, 0x6c, 0x6a, 0x73, 0x88, 0x8a, 0x8c, 0x8d, 0x8f, 0x8d, 0x81, 0x73,\n    0x7b, 0x87, 0x95, 0x9d, 0x9c, 0x98, 0x97, 0x97, 0x9c, 0x98, 0x96, 0x95, 0x94, 0x91, 0x90, 0x92,\n    0x9b, 0xa5, 0xae, 0xad, 0xa6, 0x9e, 0x96, 0x92, 0xa3, 0xac, 0xb3, 0xae, 0xa8, 0xae, 0xae, 0xa2,\n    0x98, 0x9b, 0x99, 0x9b, 0x97, 0x96, 0x9a, 0x8d, 0x84, 0x7d, 0x80, 0x8e, 0x9c, 0xa7, 0xa7, 0x9c,\n    0x98, 0xa0, 0xa9, 0xa0, 0x9f, 0xaa, 0xaa, 0xab, 0xb2, 0xb6, 0xbb, 0xbc, 0xba, 0xb6, 0xb4, 0xb2,\n    0xb5, 0xbc, 0xc0, 0xbb, 0xb5, 0xb3, 0xb1, 0xae, 0xae, 0xad, 0xa9, 0xa6, 0xaa, 0xb3, 0xbc, 0xbf,\n    0xad, 0xb1, 0xb8, 0xbf, 0xc1, 0xbf, 0xbc, 0xbc, 0xb6, 0xbf, 0xc6, 0xc6, 0xc2, 0xbf, 0xc0, 0xc0,\n    0xbd, 0xb4, 0xa4, 0x9e, 0xa4, 0xa4, 0x9e, 0x9c, 0xad, 0xb3, 0xb3, 0xaa, 0xa4, 0xa7, 0xac, 0xad,\n    0xb3, 0xb2, 0xb1, 0xaf, 0xad, 0xa9, 0xa3, 0x9f, 0xa6, 0xb6, 0xb7, 0xbb, 0xd7, 0xe7, 0xd6, 0xc2,\n    0xb2, 0xad, 0xab, 0xac, 0xab, 0xaa, 0xb1, 0xbc, 0xc2, 0xc4, 0xc5, 0xc6, 0xc5, 0xc5, 0xc5, 0xc6,\n    0xc6, 0xc7, 0xc7, 0xc7, 0xc7, 0xc6, 0xc4, 0xc4, 0xc3, 0xc2, 0xc1, 0xc0, 0xc0, 0xbf, 0xbd, 0xbb,\n    0xb6, 0xb0, 0xad, 0xac, 0xa9, 0xa5, 0xa5, 0xa8, 0xaa, 0xb0, 0xb7, 0xb9, 0xb8, 0xb6, 0xb3, 0xaf,\n    0xa2, 0x97, 0x89, 0x84, 0x8e, 0x9c, 0xa4, 0xa4, 0xa7, 0xc6, 0xf1, 0xfb, 0xed, 0xf4, 0xff, 0xf2,\n    0xfc, 0xfc, 0xfd, 0xfd, 0xfe, 0xfd, 0xfd, 0xfd, 0xfb, 0xfb, 0xfb, 0xfb, 0xfc, 0xfc, 0xfd, 0xfe,\n    0xfd, 0xfd, 0xfd, 0xfc, 0xfb, 0xfb, 0xfa, 0xfa, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfc, 0xfc, 0xfd,\n    0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfb, 0xfb, 0xfc, 0xfd, 0xfd, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe,\n    0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xfc, 0xfc, 0xfc, 0xfb, 0xfa, 0xfa, 0xf9,\n    0xf9, 0xfb, 0xfc, 0xfc, 0xf9, 0xf3, 0xee, 0xea, 0xe5, 0xe6, 0xe9, 0xed, 0xf1, 0xf4, 0xf5, 0xf5,\n    0xf5, 0xf4, 0xf2, 0xef, 0xee, 0xee, 0xee, 0xee, 0xee, 0xf1, 0xf4, 0xf2, 0xee, 0xea, 0xea, 0xec,\n    0xea, 0xec, 0xee, 0xee, 0xeb, 0xe9, 0xe8, 0xe8, 0xe4, 0xe6, 0xe9, 0xe9, 0xe4, 0xdc, 0xd3, 0xcd,\n    0xbc, 0xb6, 0xb0, 0xab, 0xaa, 0xac, 0xaf, 0xb0, 0xa9, 0xa7, 0xa5, 0xa5, 0xa6, 0xa8, 0xa7, 0xa6,\n    0xaa, 0xa8, 0xa5, 0xa3, 0xa2, 0xa2, 0xa4, 0xa5, 0xa2, 0xa1, 0xa1, 0xa0, 0xa0, 0x9f, 0x9f, 0xa0,\n    0xad, 0xa9, 0xa3, 0x9f, 0x9f, 0xa4, 0xab, 0xb1, 0xc2, 0xc4, 0xc1, 0xbc, 0xbb, 0xc0, 0xc4, 0xc3,\n    0xc3, 0xc5, 0xc6, 0xc6, 0xc4, 0xc3, 0xc2, 0xc3, 0xc2, 0xc0, 0xbb, 0xb4, 0xae, 0xad, 0xb6, 0xc0,\n    0xc4, 0xc5, 0xc7, 0xc6, 0xc4, 0xc4, 0xc5, 0xc7, 0xc5, 0xc4, 0xc7, 0xca, 0xca, 0xc7, 0xb3, 0x97,\n    0x73, 0x71, 0x73, 0x79, 0x7a, 0x76, 0x73, 0x75, 0x70, 0x6d, 0x6f, 0x72, 0x70, 0x6d, 0x74, 0x7f,\n    0x77, 0x71, 0x67, 0x61, 0x64, 0x6c, 0x72, 0x73, 0x71, 0x6d, 0x6f, 0x74, 0x75, 0x70, 0x6c, 0x6d,\n    0x76, 0x78, 0x7a, 0x75, 0x6f, 0x73, 0x79, 0x76, 0x70, 0x6f, 0x70, 0x73, 0x76, 0x76, 0x72, 0x6e,\n    0x6f, 0x6f, 0x70, 0x70, 0x70, 0x6f, 0x6e, 0x6d, 0x6d, 0x6e, 0x6e, 0x6c, 0x69, 0x67, 0x66, 0x66,\n    0x63, 0x60, 0x5c, 0x57, 0x52, 0x4b, 0x45, 0x40, 0x3c, 0x3c, 0x41, 0x4d, 0x5b, 0x66, 0x6e, 0x73,\n    0x73, 0x5f, 0x50, 0x4d, 0x4c, 0x51, 0x5b, 0x62, 0x55, 0x44, 0x31, 0x29, 0x2c, 0x35, 0x3c, 0x40,\n    0x41, 0x3e, 0x3b, 0x3a, 0x3d, 0x40, 0x42, 0x43, 0x3f, 0x36, 0x2c, 0x27, 0x29, 0x2a, 0x27, 0x24,\n    0x2d, 0x2c, 0x2b, 0x27, 0x20, 0x19, 0x19, 0x1c, 0x1d, 0x1f, 0x20, 0x1d, 0x18, 0x16, 0x18, 0x1b,\n    0x20, 0x20, 0x27, 0x35, 0x41, 0x45, 0x42, 0x3f, 0x2e, 0x23, 0x18, 0x1b, 0x2b, 0x3c, 0x45, 0x46,\n    0x44, 0x36, 0x26, 0x1c, 0x14, 0x14, 0x20, 0x2f, 0x33, 0x2c, 0x2c, 0x44, 0x67, 0x78, 0x77, 0x75,\n    0x6e, 0x59, 0x47, 0x44, 0x46, 0x47, 0x4e, 0x58, 0x4a, 0x4a, 0x48, 0x47, 0x48, 0x45, 0x3d, 0x35,\n    0x37, 0x2d, 0x31, 0x31, 0x2d, 0x24, 0x1a, 0x20, 0x25, 0x28, 0x20, 0x16, 0x15, 0x17, 0x16, 0x18,\n    0x72, 0x72, 0x72, 0x70, 0x6d, 0x6b, 0x6f, 0x75, 0x6a, 0x65, 0x63, 0x6a, 0x75, 0x7d, 0x7c, 0x78,\n    0x82, 0x81, 0x80, 0x7f, 0x7d, 0x76, 0x6b, 0x61, 0x73, 0x74, 0x6e, 0x66, 0x6b, 0x77, 0x79, 0x71,\n    0x66, 0x64, 0x66, 0x6a, 0x68, 0x62, 0x61, 0x65, 0x6a, 0x6d, 0x71, 0x74, 0x76, 0x79, 0x7f, 0x85,\n    0x8c, 0x8b, 0x83, 0x7b, 0x74, 0x68, 0x62, 0x67, 0x74, 0x77, 0x7a, 0x7a, 0x7b, 0x7b, 0x77, 0x71,\n    0x7a, 0x83, 0x8f, 0x97, 0x96, 0x92, 0x8f, 0x90, 0x80, 0x84, 0x8c, 0x8e, 0x84, 0x7a, 0x7e, 0x8a,\n    0x96, 0xa1, 0xae, 0xb5, 0xb2, 0xa8, 0x9e, 0x97, 0x99, 0xa2, 0xaf, 0xb2, 0xad, 0xac, 0xa8, 0x9e,\n    0x8b, 0x8d, 0x8b, 0x93, 0x95, 0x98, 0x9e, 0x92, 0x91, 0x80, 0x7e, 0x92, 0xa9, 0xb6, 0xb1, 0xa2,\n    0xa0, 0xa3, 0xab, 0xa5, 0xa5, 0xae, 0xac, 0xaf, 0xaf, 0xb3, 0xb4, 0xb2, 0xaf, 0xb0, 0xb4, 0xb6,\n    0xb2, 0xb6, 0xb4, 0xa8, 0x98, 0x88, 0x77, 0x69, 0x66, 0x74, 0x88, 0x9c, 0xae, 0xb7, 0xb7, 0xb2,\n    0xb6, 0xb6, 0xb8, 0xbb, 0xbe, 0xbd, 0xbb, 0xb9, 0xb8, 0xb9, 0xb9, 0xb8, 0xb7, 0xb5, 0xb3, 0xb0,\n    0xb9, 0xb0, 0xa0, 0x99, 0x9b, 0x98, 0x96, 0x9b, 0xae, 0xb0, 0xac, 0xa3, 0xa0, 0xa7, 0xaf, 0xb2,\n    0xad, 0xa6, 0x9e, 0x9e, 0xa5, 0xaf, 0xb5, 0xb6, 0xa3, 0xa7, 0xb5, 0xd3, 0xe9, 0xdb, 0xc0, 0xb4,\n    0xb1, 0xaf, 0xad, 0xa9, 0xa5, 0xa6, 0xb2, 0xbf, 0xc2, 0xc3, 0xc4, 0xc4, 0xc4, 0xc5, 0xc7, 0xc8,\n    0xc6, 0xc7, 0xc7, 0xc8, 0xc8, 0xc7, 0xc5, 0xc5, 0xc6, 0xc4, 0xc1, 0xbf, 0xbe, 0xbc, 0xba, 0xb9,\n    0xb6, 0xb2, 0xaf, 0xae, 0xaa, 0xa5, 0xa3, 0xa4, 0xa9, 0xb0, 0xb6, 0xb9, 0xb9, 0xba, 0xba, 0xb8,\n    0xb3, 0x9e, 0x8d, 0x8a, 0x8c, 0x8e, 0x98, 0xa5, 0xad, 0xab, 0xc7, 0xec, 0xf7, 0xf4, 0xf7, 0xfa,\n    0xfc, 0xfc, 0xfd, 0xfd, 0xfe, 0xfd, 0xfd, 0xfd, 0xfb, 0xfb, 0xfa, 0xfa, 0xfb, 0xfc, 0xfe, 0xff,\n    0xfd, 0xfd, 0xfd, 0xfc, 0xfc, 0xfc, 0xfb, 0xfb, 0xfc, 0xfb, 0xfb, 0xfa, 0xfb, 0xfc, 0xfd, 0xfd,\n    0xfe, 0xfe, 0xfd, 0xfd, 0xfd, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfd, 0xfd, 0xfe, 0xfe, 0xff, 0xff,\n    0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xfc, 0xfc, 0xfc, 0xfb, 0xfa, 0xfa, 0xf9,\n    0xfd, 0xfc, 0xfb, 0xf9, 0xf7, 0xf5, 0xf4, 0xf3, 0xee, 0xec, 0xeb, 0xec, 0xee, 0xf2, 0xf6, 0xf8,\n    0xf8, 0xf6, 0xf4, 0xf3, 0xf2, 0xf2, 0xf2, 0xf2, 0xf3, 0xf2, 0xf2, 0xf3, 0xf6, 0xf6, 0xf2, 0xef,\n    0xeb, 0xeb, 0xea, 0xe9, 0xe8, 0xe9, 0xeb, 0xed, 0xe9, 0xe8, 0xe7, 0xe8, 0xea, 0xea, 0xe6, 0xe3,\n    0xf0, 0xe5, 0xd4, 0xc3, 0xb6, 0xad, 0xa8, 0xa6, 0xab, 0xa8, 0xa5, 0xa6, 0xa8, 0xa9, 0xa7, 0xa4,\n    0xa7, 0xa5, 0xa2, 0x9f, 0x9e, 0x9e, 0x9f, 0xa0, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0xa0, 0xa1,\n    0x94, 0x96, 0x9a, 0xa2, 0xae, 0xbd, 0xcb, 0xd3, 0xc4, 0xc2, 0xbd, 0xba, 0xbd, 0xc3, 0xc6, 0xc5,\n    0xc4, 0xc6, 0xc8, 0xc7, 0xc3, 0xc0, 0xbf, 0xbe, 0xbe, 0xbd, 0xb8, 0xb1, 0xab, 0xad, 0xb7, 0xc2,\n    0xc2, 0xc3, 0xc4, 0xc4, 0xc3, 0xc2, 0xc3, 0xc4, 0xc5, 0xc2, 0xc5, 0xc8, 0xca, 0xca, 0xbc, 0xa6,\n    0x83, 0x79, 0x76, 0x78, 0x78, 0x76, 0x76, 0x75, 0x72, 0x6d, 0x69, 0x68, 0x65, 0x65, 0x70, 0x7d,\n    0x76, 0x6f, 0x65, 0x5f, 0x60, 0x67, 0x6f, 0x73, 0x75, 0x6d, 0x68, 0x6a, 0x6c, 0x6d, 0x71, 0x77,\n    0x84, 0x83, 0x7e, 0x74, 0x72, 0x7f, 0x85, 0x7c, 0x6f, 0x6f, 0x70, 0x72, 0x73, 0x74, 0x74, 0x73,\n    0x70, 0x70, 0x71, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x6e, 0x6e, 0x6d, 0x6c, 0x6a, 0x68, 0x66, 0x66,\n    0x61, 0x5f, 0x5a, 0x55, 0x4f, 0x48, 0x41, 0x3d, 0x35, 0x30, 0x2f, 0x3b, 0x50, 0x5d, 0x59, 0x4e,\n    0x42, 0x34, 0x34, 0x3e, 0x44, 0x4f, 0x56, 0x4f, 0x51, 0x53, 0x53, 0x4c, 0x44, 0x41, 0x43, 0x47,\n    0x39, 0x3c, 0x3f, 0x41, 0x40, 0x40, 0x41, 0x42, 0x42, 0x37, 0x2d, 0x2f, 0x38, 0x3e, 0x39, 0x31,\n    0x35, 0x28, 0x1c, 0x19, 0x1d, 0x20, 0x21, 0x21, 0x22, 0x22, 0x21, 0x1f, 0x1d, 0x1d, 0x20, 0x23,\n    0x1e, 0x1a, 0x1a, 0x22, 0x29, 0x2d, 0x34, 0x3c, 0x32, 0x36, 0x3d, 0x44, 0x4a, 0x4b, 0x44, 0x3c,\n    0x35, 0x25, 0x17, 0x15, 0x14, 0x15, 0x22, 0x32, 0x29, 0x25, 0x1e, 0x25, 0x3c, 0x54, 0x67, 0x78,\n    0x83, 0x83, 0x88, 0x8d, 0x86, 0x70, 0x58, 0x4b, 0x4b, 0x4d, 0x4b, 0x45, 0x40, 0x36, 0x23, 0x11,\n    0x14, 0x0d, 0x14, 0x18, 0x1b, 0x1a, 0x14, 0x1a, 0x27, 0x28, 0x20, 0x18, 0x14, 0x10, 0x0f, 0x14,\n    0x68, 0x64, 0x64, 0x6a, 0x6d, 0x6a, 0x65, 0x62, 0x62, 0x63, 0x65, 0x68, 0x6c, 0x6f, 0x71, 0x71,\n    0x78, 0x7d, 0x83, 0x8a, 0x92, 0x95, 0x8f, 0x86, 0x78, 0x7f, 0x7c, 0x71, 0x6e, 0x77, 0x7b, 0x78,\n    0x65, 0x63, 0x67, 0x6d, 0x6d, 0x67, 0x64, 0x67, 0x76, 0x77, 0x76, 0x72, 0x71, 0x76, 0x7e, 0x83,\n    0x82, 0x83, 0x7d, 0x74, 0x6c, 0x5f, 0x56, 0x58, 0x5e, 0x64, 0x6a, 0x6a, 0x6a, 0x6e, 0x76, 0x7c,\n    0x7e, 0x81, 0x87, 0x8b, 0x88, 0x80, 0x7c, 0x7d, 0x7d, 0x82, 0x8b, 0x8c, 0x80, 0x75, 0x7e, 0x8f,\n    0x8c, 0x93, 0x9c, 0xa3, 0xa5, 0xa4, 0xa4, 0xa5, 0x91, 0x90, 0x9c, 0xaa, 0xa9, 0xa3, 0x9f, 0x9a,\n    0x8a, 0x88, 0x85, 0x8c, 0x8d, 0x8c, 0x8f, 0x81, 0x85, 0x79, 0x7a, 0x8a, 0x98, 0xa0, 0x9d, 0x92,\n    0x94, 0x8b, 0x8e, 0x90, 0x95, 0x9c, 0x9e, 0xaa, 0xb0, 0xb3, 0xb3, 0xae, 0xab, 0xac, 0xaf, 0xb1,\n    0xbb, 0xb7, 0xac, 0x9f, 0x97, 0x92, 0x88, 0x7e, 0x8d, 0x8e, 0x90, 0x98, 0xa7, 0xb6, 0xbf, 0xc0,\n    0xb6, 0xb2, 0xaf, 0xb1, 0xb8, 0xbf, 0xc0, 0xbe, 0xb4, 0xa8, 0x9d, 0xa0, 0xad, 0xb8, 0xba, 0xb8,\n    0xbb, 0xb2, 0xa4, 0x9c, 0x98, 0x92, 0x94, 0xa0, 0xa8, 0xa4, 0x9e, 0x9a, 0x9a, 0x9e, 0xa3, 0xa7,\n    0xaf, 0xa2, 0x96, 0x96, 0x9f, 0xa8, 0xa9, 0xa5, 0xa1, 0xa4, 0xc2, 0xe4, 0xe1, 0xc7, 0xb4, 0xad,\n    0xa3, 0xa7, 0xaa, 0xaa, 0xa8, 0xac, 0xb6, 0xbf, 0xc3, 0xc3, 0xc4, 0xc4, 0xc4, 0xc5, 0xc7, 0xc8,\n    0xc6, 0xc6, 0xc7, 0xc8, 0xc8, 0xc7, 0xc7, 0xc6, 0xc9, 0xc6, 0xc3, 0xc1, 0xbf, 0xbd, 0xbc, 0xba,\n    0xb8, 0xb6, 0xb4, 0xb3, 0xaf, 0xab, 0xa8, 0xa8, 0xad, 0xb1, 0xb5, 0xb7, 0xb9, 0xbb, 0xbb, 0xb8,\n    0xb8, 0xab, 0x9d, 0x93, 0x89, 0x83, 0x8b, 0x9a, 0xab, 0xa6, 0xab, 0xce, 0xf5, 0xfc, 0xf7, 0xfe,\n    0xfc, 0xfc, 0xfd, 0xfd, 0xfe, 0xfd, 0xfd, 0xfd, 0xfc, 0xfb, 0xfa, 0xfa, 0xfa, 0xfc, 0xfd, 0xff,\n    0xfc, 0xfc, 0xfc, 0xfc, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfc, 0xfb, 0xfb, 0xfb, 0xfc, 0xfd, 0xfd,\n    0xfe, 0xfe, 0xfd, 0xfd, 0xfd, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfd, 0xfd, 0xfe, 0xfe, 0xff, 0xff,\n    0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfd, 0xfd, 0xfd, 0xfd, 0xfc, 0xfc, 0xfb, 0xfa,\n    0xfe, 0xfc, 0xfa, 0xf8, 0xf7, 0xf7, 0xf8, 0xf9, 0xf7, 0xf4, 0xef, 0xec, 0xeb, 0xee, 0xf3, 0xf6,\n    0xf8, 0xf7, 0xf6, 0xf5, 0xf4, 0xf3, 0xf3, 0xf3, 0xf2, 0xf0, 0xee, 0xf0, 0xf3, 0xf4, 0xf2, 0xef,\n    0xf2, 0xef, 0xeb, 0xe8, 0xe7, 0xe6, 0xe5, 0xe4, 0xe8, 0xea, 0xeb, 0xe8, 0xe2, 0xe0, 0xe3, 0xe7,\n    0xe9, 0xe8, 0xe8, 0xe8, 0xe6, 0xe2, 0xdc, 0xd9, 0xc9, 0xc6, 0xc4, 0xc3, 0xc3, 0xc1, 0xbc, 0xb8,\n    0xb4, 0xb3, 0xb1, 0xaf, 0xae, 0xac, 0xac, 0xab, 0xa8, 0xa8, 0xaa, 0xac, 0xae, 0xb1, 0xb3, 0xb4,\n    0xc7, 0xc9, 0xcd, 0xd1, 0xd1, 0xce, 0xca, 0xc6, 0xc0, 0xbf, 0xbe, 0xbd, 0xc0, 0xc4, 0xc5, 0xc5,\n    0xc4, 0xc7, 0xc9, 0xc7, 0xc2, 0xbe, 0xbc, 0xbc, 0xbd, 0xbb, 0xb7, 0xae, 0xaa, 0xae, 0xb9, 0xc2,\n    0xc3, 0xc4, 0xc4, 0xc4, 0xc3, 0xc1, 0xc1, 0xc1, 0xc3, 0xbf, 0xc2, 0xc5, 0xc7, 0xc9, 0xc0, 0xaf,\n    0x90, 0x7e, 0x77, 0x79, 0x77, 0x76, 0x74, 0x6d, 0x71, 0x6d, 0x69, 0x65, 0x60, 0x5f, 0x68, 0x72,\n    0x6f, 0x6a, 0x65, 0x62, 0x64, 0x6a, 0x72, 0x77, 0x6f, 0x69, 0x65, 0x65, 0x65, 0x68, 0x72, 0x7d,\n    0x89, 0x82, 0x77, 0x6e, 0x76, 0x8d, 0x92, 0x83, 0x6d, 0x71, 0x74, 0x75, 0x73, 0x71, 0x71, 0x72,\n    0x71, 0x71, 0x72, 0x72, 0x72, 0x71, 0x70, 0x6f, 0x6c, 0x6b, 0x6b, 0x6a, 0x69, 0x68, 0x66, 0x65,\n    0x60, 0x5d, 0x57, 0x52, 0x4c, 0x45, 0x3f, 0x3b, 0x3c, 0x33, 0x2c, 0x32, 0x43, 0x50, 0x4a, 0x3d,\n    0x29, 0x21, 0x24, 0x2c, 0x37, 0x49, 0x4d, 0x3c, 0x3c, 0x42, 0x44, 0x3e, 0x3a, 0x3d, 0x42, 0x45,\n    0x3f, 0x41, 0x41, 0x3a, 0x32, 0x2e, 0x33, 0x39, 0x33, 0x33, 0x33, 0x35, 0x35, 0x34, 0x32, 0x30,\n    0x29, 0x1f, 0x1a, 0x21, 0x2e, 0x35, 0x34, 0x32, 0x2f, 0x2b, 0x26, 0x23, 0x23, 0x25, 0x26, 0x26,\n    0x2d, 0x2f, 0x31, 0x2c, 0x20, 0x1a, 0x26, 0x37, 0x45, 0x48, 0x48, 0x45, 0x43, 0x40, 0x3a, 0x33,\n    0x27, 0x1c, 0x16, 0x18, 0x17, 0x13, 0x18, 0x23, 0x2d, 0x2d, 0x22, 0x18, 0x1d, 0x2b, 0x3f, 0x52,\n    0x74, 0x76, 0x72, 0x68, 0x61, 0x62, 0x65, 0x65, 0x53, 0x55, 0x52, 0x4d, 0x47, 0x3e, 0x2b, 0x19,\n    0x16, 0x12, 0x19, 0x1a, 0x1d, 0x23, 0x23, 0x2d, 0x26, 0x2b, 0x29, 0x25, 0x21, 0x16, 0x0d, 0x0e,\n    0x68, 0x63, 0x61, 0x65, 0x65, 0x61, 0x5e, 0x5f, 0x5c, 0x61, 0x66, 0x6a, 0x6c, 0x70, 0x76, 0x7b,\n    0x7d, 0x81, 0x84, 0x85, 0x88, 0x8a, 0x86, 0x7e, 0x78, 0x82, 0x85, 0x7e, 0x77, 0x77, 0x78, 0x75,\n    0x63, 0x61, 0x60, 0x61, 0x60, 0x5f, 0x5f, 0x61, 0x5f, 0x66, 0x6b, 0x6d, 0x71, 0x79, 0x7f, 0x80,\n    0x79, 0x7e, 0x7b, 0x76, 0x70, 0x65, 0x5c, 0x5c, 0x56, 0x5f, 0x66, 0x65, 0x61, 0x64, 0x71, 0x7d,\n    0x7e, 0x7e, 0x82, 0x85, 0x7f, 0x73, 0x6b, 0x69, 0x6e, 0x6b, 0x6b, 0x6e, 0x6d, 0x6d, 0x78, 0x86,\n    0x9a, 0x92, 0x90, 0x9d, 0xad, 0xb0, 0xa4, 0x98, 0x82, 0x7a, 0x83, 0x93, 0x96, 0x94, 0x98, 0x9e,\n    0xa0, 0x9a, 0x91, 0x92, 0x8c, 0x84, 0x81, 0x72, 0x80, 0x82, 0x8c, 0x93, 0x92, 0x97, 0x9c, 0x9c,\n    0x97, 0x86, 0x84, 0x85, 0x8a, 0x90, 0x95, 0xa5, 0xb0, 0xb6, 0xb8, 0xb5, 0xb2, 0xb2, 0xb0, 0xad,\n    0xaf, 0xab, 0xa4, 0xa0, 0xa6, 0xb0, 0xb1, 0xac, 0xa6, 0xa3, 0xa0, 0x9f, 0xa3, 0xa8, 0xa8, 0xa5,\n    0x9a, 0x9d, 0xa1, 0xa7, 0xad, 0xaf, 0xa9, 0xa1, 0x94, 0x97, 0x9b, 0x9d, 0x9e, 0xa3, 0xaf, 0xba,\n    0xbd, 0xb4, 0xa6, 0x9e, 0x98, 0x8f, 0x93, 0xa4, 0xab, 0xa4, 0xa1, 0xa3, 0xa1, 0x9b, 0x9b, 0xa0,\n    0x96, 0x90, 0x90, 0x9b, 0xab, 0xb4, 0xb0, 0xa8, 0x9f, 0xb4, 0xd5, 0xde, 0xc9, 0xbb, 0xb6, 0xac,\n    0xaa, 0xaa, 0xa8, 0xa6, 0xa9, 0xb2, 0xbe, 0xc6, 0xc5, 0xc5, 0xc5, 0xc5, 0xc4, 0xc4, 0xc5, 0xc6,\n    0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc5, 0xc3, 0xc1, 0xbf, 0xbe, 0xbd, 0xbc, 0xba,\n    0xb8, 0xb7, 0xb6, 0xb4, 0xb2, 0xae, 0xac, 0xaa, 0xa6, 0xa8, 0xaa, 0xad, 0xb3, 0xb8, 0xb9, 0xb6,\n    0xb7, 0xba, 0xb2, 0x9d, 0x8b, 0x86, 0x88, 0x89, 0x92, 0xa9, 0xa9, 0xaf, 0xd9, 0xfb, 0xfd, 0xfa,\n    0xfc, 0xfc, 0xfd, 0xfd, 0xfe, 0xfd, 0xfd, 0xfd, 0xfd, 0xfc, 0xfb, 0xfa, 0xfa, 0xfb, 0xfd, 0xfe,\n    0xfc, 0xfc, 0xfc, 0xfc, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfd,\n    0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfb, 0xfb, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfe, 0xff, 0xff,\n    0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfe, 0xfe, 0xfe, 0xfd, 0xfd, 0xfc,\n    0xfb, 0xfc, 0xfd, 0xfd, 0xfd, 0xfc, 0xfa, 0xf9, 0xfb, 0xf8, 0xf2, 0xed, 0xea, 0xeb, 0xef, 0xf2,\n    0xf7, 0xf7, 0xf6, 0xf5, 0xf4, 0xf3, 0xf1, 0xf0, 0xf0, 0xf2, 0xf3, 0xf0, 0xec, 0xeb, 0xed, 0xf0,\n    0xf1, 0xf0, 0xef, 0xee, 0xee, 0xeb, 0xe7, 0xe4, 0xe0, 0xe2, 0xe4, 0xe7, 0xe9, 0xe9, 0xe7, 0xe6,\n    0xdd, 0xdd, 0xdf, 0xe1, 0xe1, 0xdf, 0xdc, 0xd9, 0xe1, 0xe0, 0xe0, 0xe1, 0xe1, 0xe0, 0xdc, 0xd9,\n    0xdf, 0xdf, 0xde, 0xdd, 0xdb, 0xd9, 0xd7, 0xd6, 0xd5, 0xd5, 0xd5, 0xd5, 0xd6, 0xd6, 0xd7, 0xd8,\n    0xcd, 0xcc, 0xcb, 0xca, 0xc9, 0xc5, 0xc2, 0xbf, 0xbf, 0xc0, 0xc1, 0xc2, 0xc3, 0xc3, 0xc3, 0xc3,\n    0xc3, 0xc6, 0xc8, 0xc6, 0xc1, 0xbd, 0xbc, 0xbc, 0xbd, 0xbc, 0xb6, 0xae, 0xab, 0xb1, 0xbb, 0xc1,\n    0xc5, 0xc5, 0xc6, 0xc6, 0xc4, 0xc1, 0xbf, 0xbd, 0xbe, 0xbc, 0xbe, 0xc2, 0xc2, 0xc5, 0xc1, 0xb6,\n    0x98, 0x7f, 0x75, 0x79, 0x77, 0x76, 0x70, 0x61, 0x6a, 0x6b, 0x6c, 0x6b, 0x65, 0x60, 0x61, 0x66,\n    0x6c, 0x69, 0x67, 0x67, 0x67, 0x68, 0x6d, 0x72, 0x6c, 0x6a, 0x6b, 0x6c, 0x6a, 0x6a, 0x72, 0x7c,\n    0x83, 0x7c, 0x74, 0x6f, 0x7a, 0x90, 0x90, 0x7b, 0x62, 0x68, 0x6e, 0x71, 0x71, 0x71, 0x71, 0x72,\n    0x71, 0x71, 0x72, 0x72, 0x71, 0x70, 0x6f, 0x6e, 0x6a, 0x69, 0x68, 0x68, 0x68, 0x67, 0x65, 0x63,\n    0x5e, 0x5b, 0x55, 0x50, 0x4a, 0x43, 0x3d, 0x39, 0x2e, 0x2c, 0x2b, 0x2e, 0x36, 0x3a, 0x36, 0x2f,\n    0x2e, 0x45, 0x59, 0x56, 0x48, 0x41, 0x38, 0x29, 0x3a, 0x4d, 0x59, 0x51, 0x41, 0x37, 0x33, 0x31,\n    0x38, 0x37, 0x30, 0x26, 0x1e, 0x23, 0x34, 0x42, 0x52, 0x51, 0x50, 0x4d, 0x48, 0x40, 0x37, 0x30,\n    0x1f, 0x24, 0x30, 0x3f, 0x48, 0x47, 0x43, 0x40, 0x34, 0x2f, 0x2a, 0x29, 0x2d, 0x2f, 0x2f, 0x2e,\n    0x36, 0x35, 0x32, 0x2e, 0x27, 0x20, 0x1f, 0x21, 0x33, 0x34, 0x35, 0x36, 0x3c, 0x3e, 0x36, 0x2b,\n    0x1e, 0x1b, 0x1d, 0x20, 0x1c, 0x14, 0x14, 0x1b, 0x35, 0x36, 0x29, 0x19, 0x15, 0x16, 0x19, 0x1e,\n    0x26, 0x3a, 0x4c, 0x4e, 0x4d, 0x4e, 0x49, 0x41, 0x45, 0x42, 0x3d, 0x38, 0x35, 0x30, 0x27, 0x1d,\n    0x1e, 0x1a, 0x1d, 0x16, 0x13, 0x17, 0x16, 0x1f, 0x2a, 0x2e, 0x2a, 0x26, 0x25, 0x20, 0x1a, 0x1c,\n    0x84, 0x7a, 0x71, 0x6d, 0x67, 0x5f, 0x5b, 0x5e, 0x59, 0x5b, 0x5d, 0x61, 0x66, 0x6d, 0x75, 0x7a,\n    0x6f, 0x77, 0x7d, 0x7f, 0x81, 0x85, 0x84, 0x7e, 0x8b, 0x88, 0x7e, 0x6f, 0x64, 0x65, 0x6c, 0x71,\n    0x6d, 0x6c, 0x67, 0x62, 0x62, 0x66, 0x69, 0x6a, 0x71, 0x78, 0x7a, 0x76, 0x75, 0x78, 0x75, 0x6f,\n    0x75, 0x7a, 0x78, 0x75, 0x74, 0x6b, 0x61, 0x5e, 0x62, 0x6a, 0x6f, 0x6a, 0x5f, 0x59, 0x5e, 0x67,\n    0x78, 0x78, 0x7d, 0x82, 0x7e, 0x71, 0x66, 0x63, 0x5e, 0x5a, 0x5a, 0x61, 0x6a, 0x75, 0x81, 0x8b,\n    0x8b, 0x80, 0x7d, 0x8d, 0xa0, 0xa0, 0x8c, 0x78, 0x82, 0x7d, 0x83, 0x89, 0x84, 0x83, 0x90, 0x9c,\n    0x9c, 0x96, 0x8e, 0x91, 0x8e, 0x89, 0x8b, 0x7f, 0x7d, 0x84, 0x8e, 0x8f, 0x8c, 0x93, 0x9d, 0x9c,\n    0x94, 0x8a, 0x89, 0x85, 0x85, 0x89, 0x8b, 0x96, 0xa8, 0xaf, 0xb3, 0xb2, 0xb3, 0xb7, 0xb5, 0xaf,\n    0xad, 0xab, 0xa5, 0xa0, 0xa3, 0xa9, 0xa8, 0xa2, 0xa7, 0xa2, 0x99, 0x92, 0x94, 0xa0, 0xae, 0xb6,\n    0xb2, 0xb6, 0xb9, 0xb8, 0xb4, 0xae, 0xa5, 0x9c, 0xa8, 0xb5, 0xbf, 0xb5, 0x9d, 0x8f, 0x9a, 0xad,\n    0xb4, 0xa7, 0x99, 0x94, 0x92, 0x8a, 0x8e, 0x9f, 0xa3, 0x9d, 0xa1, 0xaa, 0xa3, 0x92, 0x8e, 0x98,\n    0xa1, 0x9d, 0x9b, 0xa1, 0xa9, 0xaa, 0xa2, 0x99, 0x9b, 0xc7, 0xdd, 0xcd, 0xbd, 0xba, 0xb4, 0xae,\n    0xb5, 0xb0, 0xa7, 0xa1, 0xa8, 0xb8, 0xc4, 0xc8, 0xc3, 0xc4, 0xc5, 0xc5, 0xc4, 0xc4, 0xc5, 0xc6,\n    0xc7, 0xc6, 0xc4, 0xc3, 0xc2, 0xc2, 0xc3, 0xc3, 0xc2, 0xc0, 0xbf, 0xbe, 0xbd, 0xbc, 0xb9, 0xb8,\n    0xb5, 0xb5, 0xb4, 0xb2, 0xb0, 0xae, 0xab, 0xa9, 0xa1, 0xa3, 0xa5, 0xa7, 0xac, 0xb2, 0xb4, 0xb3,\n    0xb5, 0xbc, 0xba, 0xaa, 0x9b, 0x92, 0x89, 0x80, 0x85, 0x9d, 0xa4, 0xa1, 0xb8, 0xe2, 0xf9, 0xf8,\n    0xfc, 0xfc, 0xfd, 0xfd, 0xfe, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfc, 0xfb, 0xfb, 0xfb, 0xfb, 0xfc,\n    0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfd, 0xfd, 0xfd, 0xfc, 0xfc, 0xfc,\n    0xfb, 0xfb, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfe, 0xfe, 0xfd, 0xfd, 0xfd, 0xfd, 0xfe, 0xff,\n    0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfc, 0xfd, 0xfd, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe,\n    0xfa, 0xfb, 0xfd, 0xff, 0xff, 0xfd, 0xfb, 0xfa, 0xfa, 0xf9, 0xf6, 0xf2, 0xee, 0xed, 0xee, 0xf0,\n    0xf3, 0xf4, 0xf6, 0xf6, 0xf6, 0xf4, 0xf2, 0xf1, 0xf2, 0xf3, 0xf3, 0xf0, 0xed, 0xeb, 0xeb, 0xec,\n    0xe8, 0xea, 0xed, 0xee, 0xee, 0xed, 0xed, 0xed, 0xed, 0xe8, 0xe5, 0xe8, 0xed, 0xed, 0xe6, 0xdf,\n    0xec, 0xe9, 0xe6, 0xe3, 0xe3, 0xe5, 0xe6, 0xe6, 0xdf, 0xdf, 0xe0, 0xe1, 0xe1, 0xe1, 0xe0, 0xdf,\n    0xd9, 0xd9, 0xd8, 0xd6, 0xd5, 0xd3, 0xd1, 0xd1, 0xd1, 0xd0, 0xcf, 0xcd, 0xcb, 0xc9, 0xc9, 0xc8,\n    0xd0, 0xcc, 0xc6, 0xc3, 0xc2, 0xc4, 0xc5, 0xc5, 0xc1, 0xc0, 0xc0, 0xc2, 0xc2, 0xc2, 0xc1, 0xc2,\n    0xc2, 0xc5, 0xc7, 0xc5, 0xc0, 0xbd, 0xbd, 0xbe, 0xbf, 0xbd, 0xb7, 0xaf, 0xad, 0xb4, 0xbc, 0xbf,\n    0xc6, 0xc6, 0xc7, 0xc7, 0xc5, 0xc0, 0xbb, 0xb8, 0xb8, 0xb7, 0xbc, 0xbf, 0xbf, 0xc2, 0xc4, 0xbe,\n    0xa3, 0x82, 0x72, 0x75, 0x74, 0x77, 0x72, 0x5f, 0x64, 0x68, 0x6d, 0x6e, 0x69, 0x62, 0x61, 0x63,\n    0x6c, 0x6b, 0x6b, 0x6b, 0x69, 0x66, 0x68, 0x6d, 0x71, 0x70, 0x71, 0x73, 0x70, 0x6b, 0x6e, 0x75,\n    0x7b, 0x7d, 0x80, 0x83, 0x8a, 0x96, 0x8f, 0x79, 0x65, 0x65, 0x66, 0x69, 0x6d, 0x71, 0x73, 0x74,\n    0x72, 0x72, 0x72, 0x71, 0x70, 0x6f, 0x6d, 0x6c, 0x6b, 0x6a, 0x68, 0x67, 0x67, 0x65, 0x63, 0x61,\n    0x5c, 0x59, 0x54, 0x4e, 0x48, 0x42, 0x3c, 0x39, 0x31, 0x32, 0x36, 0x3e, 0x43, 0x40, 0x37, 0x30,\n    0x46, 0x69, 0x81, 0x76, 0x5c, 0x44, 0x3a, 0x3c, 0x5b, 0x75, 0x86, 0x7a, 0x60, 0x48, 0x35, 0x28,\n    0x2a, 0x2d, 0x2e, 0x2d, 0x2c, 0x31, 0x3b, 0x44, 0x4e, 0x4a, 0x46, 0x44, 0x42, 0x3b, 0x30, 0x28,\n    0x31, 0x39, 0x46, 0x50, 0x50, 0x47, 0x3f, 0x3b, 0x32, 0x31, 0x30, 0x32, 0x35, 0x36, 0x35, 0x34,\n    0x36, 0x34, 0x33, 0x37, 0x3e, 0x41, 0x3a, 0x31, 0x29, 0x2e, 0x32, 0x35, 0x38, 0x37, 0x2a, 0x1a,\n    0x1f, 0x22, 0x27, 0x28, 0x22, 0x1d, 0x1f, 0x25, 0x4e, 0x53, 0x4c, 0x3f, 0x3c, 0x3a, 0x33, 0x30,\n    0x2d, 0x30, 0x2e, 0x29, 0x28, 0x2d, 0x30, 0x2f, 0x38, 0x32, 0x2d, 0x2b, 0x2a, 0x27, 0x24, 0x24,\n    0x20, 0x20, 0x27, 0x23, 0x23, 0x28, 0x26, 0x2a, 0x25, 0x28, 0x21, 0x1a, 0x1f, 0x24, 0x25, 0x28,\n    0x7a, 0x69, 0x5f, 0x68, 0x74, 0x70, 0x61, 0x56, 0x60, 0x5c, 0x59, 0x5b, 0x63, 0x6c, 0x72, 0x75,\n    0x7a, 0x85, 0x8d, 0x8d, 0x8b, 0x8b, 0x85, 0x7e, 0x70, 0x6e, 0x6a, 0x67, 0x65, 0x67, 0x6d, 0x71,\n    0x6c, 0x6d, 0x6a, 0x65, 0x68, 0x72, 0x77, 0x77, 0x71, 0x73, 0x6e, 0x67, 0x69, 0x74, 0x7a, 0x78,\n    0x71, 0x73, 0x6f, 0x6c, 0x6d, 0x66, 0x59, 0x54, 0x56, 0x5f, 0x69, 0x6b, 0x65, 0x60, 0x64, 0x6b,\n    0x71, 0x71, 0x77, 0x80, 0x7e, 0x73, 0x6a, 0x68, 0x5e, 0x5e, 0x5e, 0x5e, 0x5f, 0x62, 0x68, 0x6d,\n    0x77, 0x7a, 0x82, 0x8b, 0x8d, 0x8a, 0x88, 0x8a, 0x97, 0x98, 0x9a, 0x91, 0x7d, 0x79, 0x86, 0x91,\n    0x93, 0x8d, 0x84, 0x88, 0x85, 0x81, 0x86, 0x7d, 0x82, 0x82, 0x83, 0x81, 0x83, 0x8f, 0x93, 0x8a,\n    0x8b, 0x8c, 0x94, 0x8e, 0x8b, 0x8f, 0x8c, 0x90, 0x9a, 0xa1, 0xa4, 0xa5, 0xab, 0xb4, 0xb6, 0xb2,\n    0xa9, 0xa6, 0x9d, 0x94, 0x94, 0x99, 0x9b, 0x99, 0x9d, 0xa2, 0xa4, 0x9f, 0x9b, 0x9d, 0xa2, 0xa6,\n    0xb1, 0xb1, 0xab, 0xa2, 0x9e, 0xa4, 0xad, 0xb2, 0xb8, 0xb7, 0xb1, 0xa2, 0x8e, 0x85, 0x8f, 0x9f,\n    0xa5, 0x96, 0x87, 0x87, 0x8a, 0x85, 0x88, 0x99, 0x8a, 0x86, 0x90, 0x9e, 0x94, 0x7b, 0x77, 0x85,\n    0x91, 0x8c, 0x87, 0x87, 0x8b, 0x8e, 0x8c, 0x8a, 0x98, 0xd0, 0xdb, 0xc2, 0xc0, 0xbb, 0xad, 0xb0,\n    0xaa, 0xa8, 0xa3, 0xa3, 0xaf, 0xbe, 0xc3, 0xc0, 0xc0, 0xc2, 0xc4, 0xc5, 0xc6, 0xc6, 0xc7, 0xc8,\n    0xc8, 0xc6, 0xc3, 0xc1, 0xbf, 0xbf, 0xc0, 0xc0, 0xc4, 0xc3, 0xc1, 0xc0, 0xbe, 0xbc, 0xb9, 0xb7,\n    0xb5, 0xb6, 0xb5, 0xb2, 0xb0, 0xae, 0xac, 0xa9, 0xac, 0xae, 0xae, 0xab, 0xaa, 0xac, 0xae, 0xae,\n    0xb4, 0xb2, 0xb3, 0xb3, 0xaa, 0x97, 0x86, 0x7f, 0x8c, 0x89, 0x96, 0xa1, 0xa5, 0xc3, 0xeb, 0xfc,\n    0xfc, 0xfc, 0xfd, 0xfd, 0xfe, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfc, 0xfc, 0xfb, 0xfb, 0xfb, 0xfb,\n    0xfd, 0xfd, 0xfd, 0xfc, 0xfb, 0xfb, 0xfa, 0xfa, 0xfc, 0xfc, 0xfd, 0xfe, 0xfd, 0xfd, 0xfc, 0xfb,\n    0xfc, 0xfc, 0xfc, 0xfd, 0xfd, 0xfd, 0xfe, 0xfe, 0xff, 0xfe, 0xfd, 0xfd, 0xfd, 0xfd, 0xfe, 0xfe,\n    0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfb, 0xfc, 0xfd, 0xfd, 0xfe, 0xfe, 0xfe, 0xfe,\n    0xfb, 0xfb, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfb, 0xf7, 0xf9, 0xf9, 0xf7, 0xf4, 0xf1, 0xf0, 0xf0,\n    0xef, 0xf1, 0xf5, 0xf7, 0xf9, 0xf8, 0xf6, 0xf5, 0xf4, 0xef, 0xeb, 0xec, 0xf1, 0xf1, 0xeb, 0xe4,\n    0xe1, 0xe4, 0xe6, 0xe6, 0xe4, 0xe5, 0xeb, 0xf0, 0xf0, 0xf0, 0xef, 0xea, 0xe4, 0xe3, 0xe8, 0xed,\n    0xe6, 0xe6, 0xe6, 0xe6, 0xe8, 0xe8, 0xe7, 0xe6, 0xe7, 0xe6, 0xe4, 0xe1, 0xde, 0xdc, 0xdb, 0xdc,\n    0xdc, 0xdb, 0xd9, 0xd7, 0xd6, 0xd5, 0xd4, 0xd4, 0xcf, 0xcf, 0xce, 0xce, 0xce, 0xce, 0xce, 0xce,\n    0xca, 0xca, 0xca, 0xca, 0xc9, 0xc6, 0xc1, 0xbd, 0xc1, 0xbf, 0xbd, 0xbe, 0xc0, 0xc1, 0xc1, 0xc2,\n    0xc2, 0xc6, 0xc8, 0xc6, 0xc1, 0xbe, 0xbf, 0xc1, 0xc1, 0xbe, 0xb7, 0xaf, 0xaf, 0xb7, 0xbd, 0xbe,\n    0xc5, 0xc6, 0xc7, 0xc6, 0xc4, 0xbe, 0xb8, 0xb4, 0xb4, 0xb4, 0xbb, 0xbf, 0xbe, 0xc2, 0xc6, 0xc3,\n    0xb0, 0x87, 0x71, 0x70, 0x70, 0x78, 0x78, 0x66, 0x61, 0x65, 0x6b, 0x6c, 0x68, 0x64, 0x64, 0x66,\n    0x6a, 0x6a, 0x6c, 0x6f, 0x6e, 0x6b, 0x6e, 0x73, 0x75, 0x72, 0x71, 0x71, 0x6d, 0x68, 0x68, 0x6d,\n    0x74, 0x80, 0x92, 0x9c, 0xa0, 0xa4, 0x9b, 0x86, 0x7b, 0x72, 0x68, 0x65, 0x6a, 0x71, 0x74, 0x74,\n    0x72, 0x72, 0x72, 0x71, 0x6f, 0x6e, 0x6c, 0x6b, 0x6c, 0x6a, 0x68, 0x67, 0x66, 0x65, 0x61, 0x5f,\n    0x5c, 0x58, 0x53, 0x4d, 0x48, 0x42, 0x3c, 0x39, 0x34, 0x2c, 0x2b, 0x35, 0x3e, 0x3c, 0x32, 0x29,\n    0x46, 0x61, 0x74, 0x7a, 0x77, 0x64, 0x54, 0x55, 0x55, 0x60, 0x66, 0x63, 0x61, 0x5f, 0x52, 0x41,\n    0x38, 0x33, 0x2b, 0x24, 0x24, 0x2b, 0x37, 0x40, 0x36, 0x3e, 0x44, 0x44, 0x40, 0x3e, 0x42, 0x47,\n    0x4e, 0x4c, 0x4c, 0x4c, 0x48, 0x3d, 0x33, 0x2e, 0x35, 0x37, 0x39, 0x3a, 0x39, 0x35, 0x32, 0x30,\n    0x2b, 0x36, 0x3b, 0x35, 0x2d, 0x2c, 0x2d, 0x2d, 0x2c, 0x31, 0x31, 0x2a, 0x28, 0x2a, 0x2a, 0x26,\n    0x28, 0x2e, 0x32, 0x2d, 0x25, 0x23, 0x29, 0x30, 0x41, 0x4d, 0x4d, 0x46, 0x45, 0x47, 0x44, 0x43,\n    0x45, 0x39, 0x2b, 0x23, 0x21, 0x20, 0x1f, 0x1f, 0x20, 0x1a, 0x18, 0x1c, 0x1d, 0x1b, 0x1c, 0x1f,\n    0x20, 0x22, 0x2d, 0x2d, 0x2f, 0x34, 0x2e, 0x2d, 0x26, 0x2d, 0x2b, 0x28, 0x30, 0x37, 0x36, 0x34,\n    0x7b, 0x74, 0x6d, 0x6d, 0x75, 0x7b, 0x77, 0x6f, 0x5e, 0x5f, 0x61, 0x66, 0x6e, 0x76, 0x7a, 0x7b,\n    0x7e, 0x83, 0x88, 0x8a, 0x86, 0x7f, 0x79, 0x76, 0x74, 0x76, 0x77, 0x76, 0x72, 0x6e, 0x6b, 0x6a,\n    0x68, 0x69, 0x6c, 0x6f, 0x73, 0x78, 0x7c, 0x7f, 0x72, 0x74, 0x73, 0x70, 0x71, 0x76, 0x75, 0x70,\n    0x70, 0x72, 0x6f, 0x67, 0x62, 0x68, 0x70, 0x75, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6b, 0x66, 0x62,\n    0x65, 0x6c, 0x77, 0x7c, 0x78, 0x6e, 0x68, 0x67, 0x6b, 0x68, 0x67, 0x65, 0x5f, 0x5d, 0x67, 0x76,\n    0x75, 0x77, 0x76, 0x75, 0x79, 0x82, 0x8c, 0x90, 0x92, 0x8c, 0x86, 0x82, 0x7b, 0x76, 0x7d, 0x88,\n    0x86, 0x85, 0x85, 0x85, 0x85, 0x84, 0x82, 0x81, 0x82, 0x80, 0x7e, 0x7e, 0x82, 0x86, 0x8a, 0x8c,\n    0x8e, 0x88, 0x86, 0x8a, 0x8f, 0x91, 0x93, 0x95, 0x9c, 0xa3, 0xa5, 0xa0, 0x9f, 0xa4, 0xa5, 0xa1,\n    0xa0, 0x9b, 0x94, 0x8b, 0x7e, 0x76, 0x7d, 0x8a, 0xa9, 0xa5, 0xa0, 0x9a, 0x93, 0x92, 0x9d, 0xa9,\n    0xa6, 0xa3, 0x9c, 0x96, 0x99, 0xa3, 0xac, 0xb0, 0xb3, 0xb8, 0xbd, 0xb8, 0xa7, 0x95, 0x8b, 0x89,\n    0x91, 0x8d, 0x8a, 0x81, 0x75, 0x73, 0x7a, 0x7c, 0x7f, 0x81, 0x7f, 0x86, 0x8f, 0x83, 0x73, 0x74,\n    0x7e, 0x79, 0x7f, 0x89, 0x88, 0x84, 0x87, 0x8c, 0xc0, 0xcb, 0xca, 0xba, 0xb4, 0xba, 0xb7, 0xab,\n    0xa7, 0xa2, 0x9f, 0xa4, 0xb4, 0xc2, 0xc5, 0xc0, 0xc1, 0xc2, 0xc4, 0xc6, 0xc7, 0xc7, 0xc6, 0xc5,\n    0xc5, 0xc5, 0xc7, 0xc7, 0xc7, 0xc6, 0xc4, 0xc3, 0xc3, 0xc2, 0xc0, 0xc0, 0xbe, 0xbc, 0xb9, 0xb6,\n    0xb3, 0xb4, 0xb3, 0xb1, 0xaf, 0xaf, 0xb1, 0xb4, 0xad, 0xb0, 0xb2, 0xb1, 0xae, 0xae, 0xb0, 0xb4,\n    0xb3, 0xb3, 0xb3, 0xb3, 0xb0, 0xa4, 0x95, 0x8a, 0x7d, 0x86, 0x89, 0x94, 0xa3, 0xa6, 0xbe, 0xeb,\n    0xfb, 0xf9, 0xfe, 0xff, 0xf9, 0xfb, 0xff, 0xfa, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfb, 0xf9, 0xf8,\n    0xfb, 0xfc, 0xfc, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfc, 0xfc, 0xfb, 0xfb, 0xfc, 0xfc, 0xfd, 0xfd,\n    0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfb, 0xfb, 0xfa, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd,\n    0xfd, 0xfd, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc,\n    0xfa, 0xfa, 0xf9, 0xf9, 0xf9, 0xfa, 0xfa, 0xfb, 0xf8, 0xf7, 0xf7, 0xf8, 0xf9, 0xf9, 0xf8, 0xf6,\n    0xf1, 0xf1, 0xf1, 0xf3, 0xf6, 0xf7, 0xf6, 0xf4, 0xf3, 0xf2, 0xf1, 0xf0, 0xef, 0xee, 0xeb, 0xea,\n    0xeb, 0xea, 0xe7, 0xe6, 0xe5, 0xe6, 0xe8, 0xe9, 0xec, 0xef, 0xf2, 0xf3, 0xf2, 0xef, 0xed, 0xec,\n    0xe6, 0xe5, 0xe3, 0xe2, 0xe2, 0xe3, 0xe4, 0xe6, 0xe6, 0xe6, 0xe5, 0xe4, 0xe2, 0xe0, 0xdf, 0xde,\n    0xe0, 0xdf, 0xdd, 0xdb, 0xda, 0xd9, 0xd8, 0xd8, 0xd2, 0xd2, 0xd1, 0xd2, 0xd3, 0xd3, 0xd3, 0xd2,\n    0xd2, 0xcf, 0xcb, 0xc8, 0xc6, 0xc5, 0xc3, 0xc2, 0xc3, 0xc2, 0xc0, 0xbf, 0xbf, 0xc0, 0xc1, 0xc2,\n    0xc4, 0xc6, 0xc7, 0xc5, 0xc0, 0xbd, 0xbc, 0xbd, 0xbc, 0xb8, 0xb4, 0xb2, 0xb1, 0xb3, 0xba, 0xc2,\n    0xc6, 0xc6, 0xc6, 0xc4, 0xc0, 0xba, 0xb4, 0xb0, 0xaf, 0xb1, 0xb6, 0xbc, 0xbf, 0xc1, 0xc4, 0xc7,\n    0xb4, 0x93, 0x74, 0x6c, 0x71, 0x71, 0x6e, 0x6e, 0x62, 0x70, 0x77, 0x6d, 0x5f, 0x5b, 0x61, 0x67,\n    0x6a, 0x69, 0x6c, 0x73, 0x76, 0x74, 0x73, 0x74, 0x6c, 0x6f, 0x74, 0x74, 0x6d, 0x6a, 0x72, 0x7d,\n    0x92, 0x98, 0x9f, 0xa3, 0xa4, 0xa4, 0xa5, 0xa6, 0x9b, 0x8f, 0x7c, 0x6a, 0x5f, 0x60, 0x67, 0x6e,\n    0x72, 0x6f, 0x6f, 0x6f, 0x6d, 0x6b, 0x6a, 0x6c, 0x68, 0x68, 0x68, 0x68, 0x66, 0x62, 0x5c, 0x58,\n    0x54, 0x52, 0x4e, 0x49, 0x45, 0x41, 0x3a, 0x34, 0x2f, 0x26, 0x24, 0x2b, 0x2f, 0x2c, 0x28, 0x28,\n    0x44, 0x52, 0x65, 0x73, 0x7c, 0x7e, 0x7b, 0x76, 0x62, 0x50, 0x40, 0x3f, 0x49, 0x50, 0x52, 0x52,\n    0x57, 0x4a, 0x37, 0x29, 0x2b, 0x34, 0x3a, 0x39, 0x35, 0x33, 0x39, 0x44, 0x4c, 0x4d, 0x4f, 0x54,\n    0x50, 0x4a, 0x4c, 0x52, 0x4c, 0x3a, 0x34, 0x3a, 0x41, 0x41, 0x3e, 0x37, 0x2c, 0x25, 0x29, 0x30,\n    0x3f, 0x3c, 0x36, 0x30, 0x2d, 0x30, 0x38, 0x3f, 0x3a, 0x3e, 0x3b, 0x37, 0x35, 0x2f, 0x2c, 0x32,\n    0x30, 0x35, 0x38, 0x35, 0x2f, 0x33, 0x44, 0x56, 0x5c, 0x53, 0x50, 0x50, 0x50, 0x55, 0x57, 0x52,\n    0x46, 0x41, 0x2e, 0x20, 0x25, 0x2b, 0x27, 0x22, 0x21, 0x21, 0x19, 0x1c, 0x1e, 0x22, 0x34, 0x3e,\n    0x43, 0x47, 0x49, 0x45, 0x3d, 0x35, 0x32, 0x32, 0x33, 0x36, 0x39, 0x3e, 0x42, 0x45, 0x44, 0x41,\n    0x64, 0x6a, 0x6e, 0x70, 0x71, 0x72, 0x71, 0x70, 0x7a, 0x79, 0x7a, 0x7b, 0x79, 0x72, 0x6e, 0x6d,\n    0x71, 0x75, 0x7a, 0x7e, 0x7f, 0x7a, 0x73, 0x6d, 0x73, 0x77, 0x7a, 0x79, 0x75, 0x70, 0x6e, 0x6e,\n    0x75, 0x73, 0x70, 0x6c, 0x6b, 0x6c, 0x6e, 0x70, 0x79, 0x78, 0x7c, 0x84, 0x88, 0x85, 0x7d, 0x77,\n    0x75, 0x73, 0x6d, 0x67, 0x67, 0x6e, 0x73, 0x74, 0x6f, 0x70, 0x72, 0x75, 0x76, 0x71, 0x69, 0x62,\n    0x5c, 0x65, 0x74, 0x7f, 0x7f, 0x77, 0x70, 0x6d, 0x61, 0x66, 0x74, 0x84, 0x89, 0x7e, 0x70, 0x6a,\n    0x70, 0x75, 0x79, 0x79, 0x79, 0x7b, 0x7e, 0x7e, 0x81, 0x7d, 0x7b, 0x7b, 0x77, 0x72, 0x75, 0x7d,\n    0x7b, 0x7c, 0x7d, 0x7f, 0x80, 0x80, 0x7f, 0x7e, 0x81, 0x7d, 0x77, 0x75, 0x79, 0x81, 0x8b, 0x92,\n    0x93, 0x8d, 0x88, 0x87, 0x87, 0x86, 0x86, 0x88, 0x91, 0x97, 0x99, 0x96, 0x97, 0x9b, 0x98, 0x90,\n    0x8d, 0x88, 0x82, 0x7d, 0x74, 0x6e, 0x73, 0x7e, 0x84, 0x84, 0x86, 0x88, 0x86, 0x82, 0x83, 0x86,\n    0x82, 0x84, 0x85, 0x87, 0x91, 0xa3, 0xb5, 0xbf, 0xb6, 0xb4, 0xb1, 0xaa, 0xa0, 0x97, 0x95, 0x98,\n    0x8a, 0x81, 0x7a, 0x71, 0x66, 0x67, 0x6e, 0x70, 0x6c, 0x75, 0x7b, 0x80, 0x80, 0x6f, 0x60, 0x63,\n    0x6c, 0x74, 0x76, 0x7d, 0x86, 0x80, 0x85, 0x9d, 0xd1, 0xcc, 0xc2, 0xb8, 0xb3, 0xb1, 0xab, 0xa3,\n    0x9f, 0x9f, 0xa2, 0xac, 0xb9, 0xc1, 0xc2, 0xc0, 0xc5, 0xc6, 0xc7, 0xc8, 0xc9, 0xc8, 0xc6, 0xc5,\n    0xc5, 0xc6, 0xc7, 0xc7, 0xc6, 0xc4, 0xc1, 0xbf, 0xbe, 0xbd, 0xbb, 0xba, 0xba, 0xba, 0xb9, 0xb8,\n    0xb7, 0xb6, 0xb5, 0xb3, 0xb1, 0xaf, 0xaf, 0xaf, 0xaf, 0xad, 0xab, 0xad, 0xb2, 0xb5, 0xb4, 0xb1,\n    0xb5, 0xb2, 0xb1, 0xb1, 0xb0, 0xa9, 0x9d, 0x93, 0x80, 0x84, 0x83, 0x8d, 0x9b, 0x9a, 0xa5, 0xc6,\n    0xf3, 0xfa, 0xfa, 0xfc, 0xff, 0xfb, 0xf6, 0xfd, 0xfa, 0xfa, 0xfb, 0xfb, 0xfb, 0xfb, 0xfa, 0xf9,\n    0xfc, 0xfd, 0xfd, 0xfd, 0xfd, 0xfc, 0xfc, 0xfb, 0xfe, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfe, 0xfe,\n    0xfc, 0xfd, 0xfd, 0xfd, 0xfc, 0xfc, 0xfb, 0xfb, 0xfb, 0xfc, 0xfc, 0xfc, 0xfd, 0xfd, 0xfc, 0xfc,\n    0xfd, 0xfd, 0xfd, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc,\n    0xfb, 0xfb, 0xfb, 0xfa, 0xfa, 0xfa, 0xfb, 0xfb, 0xfb, 0xfa, 0xf9, 0xf9, 0xfa, 0xf9, 0xf7, 0xf6,\n    0xf4, 0xf3, 0xf3, 0xf4, 0xf5, 0xf6, 0xf5, 0xf4, 0xf5, 0xf4, 0xf4, 0xf5, 0xf6, 0xf6, 0xf4, 0xf3,\n    0xf2, 0xf0, 0xed, 0xea, 0xe8, 0xe7, 0xe6, 0xe7, 0xe7, 0xe7, 0xe8, 0xe9, 0xea, 0xea, 0xe9, 0xe9,\n    0xed, 0xed, 0xeb, 0xea, 0xe8, 0xe7, 0xe6, 0xe5, 0xe1, 0xe1, 0xe1, 0xe1, 0xe1, 0xe0, 0xdf, 0xdf,\n    0xe2, 0xe1, 0xde, 0xdb, 0xd8, 0xd6, 0xd5, 0xd4, 0xd1, 0xd1, 0xd0, 0xd0, 0xd0, 0xd0, 0xce, 0xcc,\n    0xc9, 0xc7, 0xc5, 0xc5, 0xc5, 0xc5, 0xc5, 0xc4, 0xc5, 0xc5, 0xc4, 0xc3, 0xc3, 0xc3, 0xc4, 0xc5,\n    0xc7, 0xc8, 0xc8, 0xc5, 0xbf, 0xba, 0xb9, 0xb9, 0xbb, 0xb6, 0xb1, 0xaf, 0xb0, 0xb3, 0xb9, 0xbf,\n    0xc3, 0xc4, 0xc4, 0xc3, 0xbf, 0xb9, 0xb3, 0xaf, 0xaf, 0xb0, 0xb5, 0xba, 0xbe, 0xc0, 0xc3, 0xc7,\n    0xbe, 0x9f, 0x7c, 0x6d, 0x6c, 0x6e, 0x6c, 0x6a, 0x6c, 0x6e, 0x71, 0x71, 0x68, 0x5b, 0x57, 0x59,\n    0x60, 0x62, 0x68, 0x6e, 0x6f, 0x6d, 0x6f, 0x73, 0x6d, 0x6c, 0x6e, 0x73, 0x78, 0x7f, 0x8a, 0x94,\n    0x98, 0x9c, 0xa1, 0xa3, 0xa3, 0xa3, 0xa5, 0xa8, 0xa3, 0x9b, 0x8d, 0x7d, 0x71, 0x69, 0x65, 0x63,\n    0x68, 0x69, 0x6c, 0x6f, 0x6d, 0x69, 0x68, 0x6a, 0x67, 0x66, 0x65, 0x65, 0x64, 0x61, 0x5e, 0x5b,\n    0x53, 0x51, 0x4b, 0x45, 0x40, 0x3b, 0x34, 0x2d, 0x2f, 0x27, 0x26, 0x30, 0x38, 0x35, 0x2d, 0x28,\n    0x2d, 0x41, 0x59, 0x6b, 0x77, 0x7c, 0x7a, 0x74, 0x70, 0x60, 0x43, 0x2c, 0x2d, 0x48, 0x6b, 0x81,\n    0x7f, 0x75, 0x67, 0x61, 0x69, 0x75, 0x7a, 0x77, 0x6d, 0x61, 0x4f, 0x41, 0x3c, 0x40, 0x46, 0x48,\n    0x4d, 0x51, 0x51, 0x45, 0x35, 0x2f, 0x3c, 0x4c, 0x4b, 0x3a, 0x27, 0x20, 0x25, 0x2f, 0x3a, 0x40,\n    0x3f, 0x39, 0x32, 0x2e, 0x2d, 0x2d, 0x2b, 0x29, 0x3a, 0x31, 0x2b, 0x36, 0x46, 0x43, 0x36, 0x30,\n    0x34, 0x3e, 0x3d, 0x34, 0x37, 0x4b, 0x5d, 0x63, 0x64, 0x60, 0x5f, 0x60, 0x5d, 0x59, 0x53, 0x4a,\n    0x4a, 0x3e, 0x2d, 0x26, 0x27, 0x27, 0x2f, 0x3f, 0x49, 0x4b, 0x3e, 0x3b, 0x3f, 0x43, 0x41, 0x2f,\n    0x24, 0x31, 0x3e, 0x42, 0x3c, 0x37, 0x39, 0x3d, 0x40, 0x46, 0x4d, 0x52, 0x53, 0x50, 0x49, 0x44,\n    0x80, 0x84, 0x85, 0x7f, 0x7a, 0x7b, 0x80, 0x84, 0x87, 0x7d, 0x76, 0x78, 0x78, 0x72, 0x6e, 0x6f,\n    0x6c, 0x68, 0x65, 0x66, 0x6a, 0x6c, 0x6b, 0x68, 0x69, 0x6f, 0x75, 0x78, 0x77, 0x75, 0x75, 0x76,\n    0x75, 0x73, 0x72, 0x74, 0x79, 0x80, 0x86, 0x89, 0x6b, 0x65, 0x68, 0x76, 0x80, 0x7f, 0x7c, 0x7c,\n    0x72, 0x6d, 0x67, 0x66, 0x6c, 0x74, 0x75, 0x72, 0x69, 0x68, 0x69, 0x6c, 0x6e, 0x6e, 0x6c, 0x69,\n    0x65, 0x60, 0x61, 0x6d, 0x7a, 0x7c, 0x73, 0x6b, 0x83, 0x91, 0xa2, 0xa6, 0x96, 0x81, 0x79, 0x7c,\n    0x6f, 0x76, 0x7b, 0x7a, 0x76, 0x74, 0x74, 0x73, 0x78, 0x76, 0x78, 0x7c, 0x7b, 0x74, 0x71, 0x71,\n    0x70, 0x72, 0x76, 0x7a, 0x7c, 0x7c, 0x7c, 0x7b, 0x7d, 0x7c, 0x7b, 0x7b, 0x7d, 0x82, 0x88, 0x8c,\n    0x8e, 0x8c, 0x8c, 0x8b, 0x88, 0x82, 0x7d, 0x7b, 0x85, 0x8a, 0x8b, 0x8a, 0x8d, 0x90, 0x89, 0x7e,\n    0x7b, 0x77, 0x77, 0x7a, 0x7c, 0x7c, 0x81, 0x87, 0x90, 0x8d, 0x8c, 0x8e, 0x8d, 0x8a, 0x86, 0x84,\n    0x81, 0x82, 0x81, 0x7c, 0x7a, 0x80, 0x89, 0x90, 0x90, 0x88, 0x80, 0x7c, 0x7b, 0x7b, 0x7d, 0x81,\n    0x7a, 0x72, 0x6e, 0x6b, 0x67, 0x6d, 0x76, 0x78, 0x7d, 0x76, 0x6b, 0x69, 0x6e, 0x69, 0x62, 0x64,\n    0x64, 0x74, 0x73, 0x76, 0x83, 0x7f, 0x8c, 0xb7, 0xda, 0xc8, 0xb8, 0xb4, 0xb2, 0xa9, 0xa1, 0x9f,\n    0xa0, 0xa1, 0xa8, 0xb5, 0xbe, 0xc0, 0xc2, 0xc5, 0xc7, 0xc8, 0xc9, 0xc9, 0xc8, 0xc7, 0xc5, 0xc4,\n    0xc3, 0xc4, 0xc6, 0xc6, 0xc5, 0xc2, 0xbf, 0xbd, 0xbb, 0xb8, 0xb6, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5,\n    0xb8, 0xb7, 0xb5, 0xb4, 0xb2, 0xae, 0xab, 0xa8, 0xaa, 0xa8, 0xa7, 0xaa, 0xb0, 0xb4, 0xb4, 0xb3,\n    0xb6, 0xb2, 0xaf, 0xaf, 0xb0, 0xae, 0xa6, 0x9f, 0x8c, 0x87, 0x7f, 0x86, 0x94, 0x92, 0x96, 0xaa,\n    0xd2, 0xf4, 0xfc, 0xf7, 0xff, 0xfa, 0xf2, 0xfe, 0xf8, 0xf9, 0xfa, 0xfb, 0xfb, 0xfb, 0xfa, 0xfa,\n    0xfd, 0xfd, 0xfd, 0xfd, 0xfc, 0xfc, 0xfb, 0xfa, 0xfd, 0xfd, 0xfd, 0xfc, 0xfc, 0xfd, 0xfd, 0xfd,\n    0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfc, 0xfc, 0xfa, 0xfa, 0xfb, 0xfc, 0xfd, 0xfc, 0xfc, 0xfb,\n    0xfc, 0xfd, 0xfd, 0xfe, 0xfe, 0xfe, 0xfe, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd,\n    0xfd, 0xfc, 0xfc, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfd, 0xfc, 0xfa, 0xfa, 0xfa, 0xf9, 0xf7, 0xf5,\n    0xf4, 0xf5, 0xf5, 0xf5, 0xf5, 0xf5, 0xf6, 0xf7, 0xf5, 0xf4, 0xf5, 0xf6, 0xf7, 0xf8, 0xf7, 0xf6,\n    0xf2, 0xf1, 0xef, 0xee, 0xed, 0xec, 0xec, 0xec, 0xe5, 0xe3, 0xe0, 0xe0, 0xe2, 0xe4, 0xe4, 0xe3,\n    0xe4, 0xe5, 0xe6, 0xe7, 0xe8, 0xe8, 0xe8, 0xe8, 0xe5, 0xe5, 0xe5, 0xe4, 0xe2, 0xe1, 0xdf, 0xdf,\n    0xe1, 0xe0, 0xdd, 0xda, 0xd6, 0xd4, 0xd2, 0xd1, 0xcf, 0xcf, 0xcf, 0xcf, 0xcf, 0xcd, 0xca, 0xc8,\n    0xca, 0xc9, 0xc8, 0xc8, 0xc9, 0xca, 0xca, 0xc9, 0xc5, 0xc5, 0xc4, 0xc4, 0xc4, 0xc5, 0xc6, 0xc6,\n    0xc8, 0xc9, 0xc8, 0xc4, 0xbe, 0xba, 0xb8, 0xb8, 0xbc, 0xb5, 0xaf, 0xae, 0xb1, 0xb5, 0xba, 0xbe,\n    0xc2, 0xc3, 0xc5, 0xc4, 0xc1, 0xba, 0xb4, 0xb0, 0xaf, 0xb0, 0xb3, 0xb9, 0xbc, 0xbe, 0xc2, 0xc7,\n    0xc8, 0xae, 0x8a, 0x70, 0x69, 0x6c, 0x6c, 0x67, 0x68, 0x64, 0x6b, 0x77, 0x72, 0x60, 0x59, 0x5f,\n    0x64, 0x68, 0x6d, 0x6f, 0x6c, 0x68, 0x6a, 0x6e, 0x6d, 0x6a, 0x6c, 0x76, 0x84, 0x8f, 0x97, 0x9b,\n    0x9d, 0x9f, 0xa1, 0xa0, 0xa0, 0xa1, 0xa4, 0xa7, 0xa6, 0xa3, 0x9d, 0x95, 0x8a, 0x7c, 0x6d, 0x64,\n    0x62, 0x64, 0x69, 0x6d, 0x6d, 0x69, 0x68, 0x6a, 0x67, 0x65, 0x63, 0x62, 0x61, 0x5f, 0x5d, 0x5c,\n    0x55, 0x52, 0x4c, 0x45, 0x40, 0x3c, 0x35, 0x2e, 0x2a, 0x23, 0x24, 0x31, 0x3f, 0x40, 0x3a, 0x34,\n    0x38, 0x38, 0x3b, 0x48, 0x61, 0x73, 0x70, 0x62, 0x62, 0x6f, 0x7a, 0x80, 0x8b, 0x93, 0x8c, 0x7e,\n    0x75, 0x7d, 0x85, 0x89, 0x8a, 0x87, 0x81, 0x7c, 0x7e, 0x81, 0x7a, 0x68, 0x5b, 0x5a, 0x5b, 0x5a,\n    0x46, 0x47, 0x3d, 0x2c, 0x29, 0x35, 0x40, 0x42, 0x28, 0x26, 0x27, 0x2e, 0x35, 0x39, 0x3c, 0x3e,\n    0x3c, 0x3d, 0x39, 0x2d, 0x21, 0x1b, 0x20, 0x27, 0x30, 0x3b, 0x44, 0x45, 0x3b, 0x29, 0x26, 0x34,\n    0x53, 0x58, 0x54, 0x48, 0x48, 0x54, 0x58, 0x52, 0x61, 0x5f, 0x5f, 0x5f, 0x5f, 0x5e, 0x5c, 0x58,\n    0x4e, 0x3f, 0x30, 0x34, 0x41, 0x3f, 0x35, 0x34, 0x39, 0x35, 0x30, 0x37, 0x31, 0x25, 0x34, 0x45,\n    0x5c, 0x55, 0x47, 0x37, 0x2c, 0x2e, 0x3b, 0x47, 0x4c, 0x51, 0x57, 0x58, 0x53, 0x49, 0x41, 0x3d,\n    0x71, 0x7d, 0x8a, 0x92, 0x93, 0x8f, 0x87, 0x81, 0x77, 0x69, 0x64, 0x6f, 0x78, 0x75, 0x72, 0x74,\n    0x70, 0x69, 0x63, 0x60, 0x62, 0x66, 0x68, 0x68, 0x61, 0x66, 0x6f, 0x76, 0x78, 0x74, 0x6e, 0x69,\n    0x77, 0x73, 0x70, 0x74, 0x7b, 0x80, 0x7f, 0x7d, 0x86, 0x80, 0x7d, 0x7e, 0x7f, 0x7a, 0x74, 0x70,\n    0x68, 0x65, 0x64, 0x69, 0x72, 0x77, 0x75, 0x70, 0x6b, 0x6c, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f,\n    0x59, 0x56, 0x57, 0x61, 0x71, 0x85, 0x9b, 0xab, 0xa8, 0x9d, 0x90, 0x85, 0x7c, 0x74, 0x71, 0x73,\n    0x73, 0x78, 0x7a, 0x74, 0x6f, 0x6f, 0x73, 0x76, 0x79, 0x79, 0x7d, 0x83, 0x83, 0x7b, 0x70, 0x6b,\n    0x6c, 0x70, 0x76, 0x7a, 0x7c, 0x7d, 0x7d, 0x7c, 0x81, 0x82, 0x82, 0x82, 0x81, 0x82, 0x83, 0x85,\n    0x89, 0x88, 0x86, 0x84, 0x81, 0x7f, 0x7f, 0x81, 0x84, 0x89, 0x8b, 0x8a, 0x8c, 0x8f, 0x88, 0x7c,\n    0x72, 0x6f, 0x72, 0x7b, 0x84, 0x89, 0x8b, 0x8d, 0x8f, 0x8d, 0x8b, 0x8c, 0x8c, 0x89, 0x84, 0x80,\n    0x81, 0x81, 0x7e, 0x79, 0x74, 0x71, 0x72, 0x72, 0x7e, 0x77, 0x72, 0x74, 0x78, 0x7a, 0x79, 0x78,\n    0x70, 0x6b, 0x6b, 0x6c, 0x6a, 0x70, 0x79, 0x7a, 0x7e, 0x75, 0x6c, 0x6d, 0x71, 0x6d, 0x65, 0x61,\n    0x6b, 0x74, 0x76, 0x76, 0x79, 0x7e, 0x9b, 0xc7, 0xd0, 0xc1, 0xb6, 0xb4, 0xb1, 0xa7, 0xa1, 0xa3,\n    0xa8, 0xa6, 0xad, 0xba, 0xc2, 0xc1, 0xc3, 0xc9, 0xc6, 0xc6, 0xc7, 0xc7, 0xc6, 0xc5, 0xc3, 0xc2,\n    0xc2, 0xc2, 0xc3, 0xc4, 0xc4, 0xc3, 0xc2, 0xc2, 0xbf, 0xbc, 0xb9, 0xb7, 0xb6, 0xb5, 0xb3, 0xb2,\n    0xb5, 0xb4, 0xb3, 0xb3, 0xb2, 0xae, 0xa9, 0xa5, 0xa0, 0xa3, 0xa6, 0xa7, 0xa7, 0xaa, 0xaf, 0xb5,\n    0xb3, 0xb1, 0xaf, 0xaf, 0xb0, 0xaf, 0xab, 0xa8, 0x9a, 0x8e, 0x7f, 0x80, 0x8b, 0x8f, 0x97, 0xa8,\n    0xaa, 0xe0, 0xfc, 0xf6, 0xf7, 0xf8, 0xf7, 0xfc, 0xf9, 0xfa, 0xfb, 0xfc, 0xfc, 0xfb, 0xfa, 0xfa,\n    0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfb, 0xfb, 0xfb, 0xfb, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfb,\n    0xfd, 0xfd, 0xfd, 0xfe, 0xfd, 0xfd, 0xfd, 0xfc, 0xf9, 0xfa, 0xfb, 0xfc, 0xfd, 0xfd, 0xfc, 0xfb,\n    0xfc, 0xfc, 0xfd, 0xfd, 0xfe, 0xfe, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd,\n    0xfd, 0xfd, 0xfc, 0xfb, 0xfb, 0xfa, 0xfa, 0xfa, 0xfc, 0xfb, 0xfa, 0xfa, 0xfa, 0xf9, 0xf7, 0xf5,\n    0xf3, 0xf5, 0xf6, 0xf5, 0xf4, 0xf5, 0xf7, 0xfa, 0xf6, 0xf5, 0xf5, 0xf5, 0xf6, 0xf5, 0xf4, 0xf3,\n    0xf1, 0xf1, 0xf1, 0xf1, 0xf0, 0xef, 0xef, 0xee, 0xe9, 0xe5, 0xe1, 0xe0, 0xe1, 0xe2, 0xe1, 0xdf,\n    0xd9, 0xda, 0xdc, 0xdf, 0xe1, 0xe3, 0xe5, 0xe6, 0xe7, 0xe7, 0xe6, 0xe6, 0xe5, 0xe4, 0xe3, 0xe2,\n    0xe3, 0xe2, 0xe0, 0xde, 0xdc, 0xda, 0xd8, 0xd8, 0xd5, 0xd4, 0xd5, 0xd5, 0xd5, 0xd4, 0xd1, 0xcf,\n    0xd2, 0xd1, 0xcf, 0xcf, 0xce, 0xcd, 0xcc, 0xca, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc3, 0xc4, 0xc5,\n    0xc7, 0xc7, 0xc6, 0xc3, 0xbf, 0xbc, 0xbb, 0xbb, 0xbe, 0xb6, 0xaf, 0xb0, 0xb4, 0xb9, 0xbd, 0xc0,\n    0xc3, 0xc5, 0xc7, 0xc7, 0xc3, 0xbd, 0xb6, 0xb1, 0xaf, 0xaf, 0xb2, 0xb7, 0xba, 0xbc, 0xc1, 0xc6,\n    0xcc, 0xba, 0x98, 0x76, 0x69, 0x6c, 0x6d, 0x67, 0x63, 0x64, 0x6e, 0x77, 0x6e, 0x5d, 0x59, 0x63,\n    0x56, 0x5c, 0x64, 0x69, 0x68, 0x67, 0x69, 0x6d, 0x66, 0x6b, 0x75, 0x83, 0x90, 0x97, 0x98, 0x96,\n    0x9d, 0x9d, 0x9e, 0x9d, 0x9d, 0x9d, 0xa0, 0xa2, 0xa0, 0xa1, 0xa1, 0xa1, 0x9d, 0x92, 0x83, 0x78,\n    0x69, 0x66, 0x65, 0x67, 0x68, 0x67, 0x67, 0x69, 0x66, 0x65, 0x62, 0x60, 0x5f, 0x5d, 0x5b, 0x59,\n    0x56, 0x53, 0x4d, 0x47, 0x42, 0x3f, 0x39, 0x32, 0x2c, 0x24, 0x20, 0x25, 0x2d, 0x2e, 0x2b, 0x28,\n    0x2c, 0x36, 0x3b, 0x38, 0x3b, 0x4a, 0x5b, 0x63, 0x6c, 0x7e, 0x8a, 0x82, 0x76, 0x76, 0x7f, 0x86,\n    0x7d, 0x81, 0x84, 0x84, 0x83, 0x82, 0x80, 0x7e, 0x79, 0x7d, 0x7c, 0x76, 0x70, 0x6d, 0x6a, 0x66,\n    0x52, 0x48, 0x34, 0x23, 0x29, 0x39, 0x3a, 0x30, 0x22, 0x26, 0x2d, 0x35, 0x3a, 0x3d, 0x42, 0x47,\n    0x41, 0x42, 0x3e, 0x31, 0x24, 0x24, 0x32, 0x40, 0x48, 0x47, 0x3e, 0x36, 0x35, 0x39, 0x43, 0x52,\n    0x4c, 0x4e, 0x54, 0x59, 0x5a, 0x56, 0x53, 0x53, 0x46, 0x53, 0x60, 0x6a, 0x6c, 0x61, 0x52, 0x49,\n    0x31, 0x46, 0x53, 0x56, 0x58, 0x53, 0x48, 0x41, 0x2f, 0x49, 0x54, 0x5b, 0x64, 0x6d, 0x6e, 0x5b,\n    0x3d, 0x33, 0x28, 0x27, 0x31, 0x3f, 0x4b, 0x51, 0x4e, 0x4f, 0x4e, 0x49, 0x3f, 0x35, 0x31, 0x31,\n    0x69, 0x76, 0x85, 0x8c, 0x89, 0x81, 0x76, 0x6e, 0x65, 0x63, 0x6c, 0x7b, 0x7e, 0x73, 0x6b, 0x6c,\n    0x73, 0x70, 0x6c, 0x6a, 0x68, 0x67, 0x67, 0x66, 0x6d, 0x6b, 0x6b, 0x71, 0x79, 0x81, 0x83, 0x83,\n    0x77, 0x71, 0x6d, 0x71, 0x78, 0x78, 0x6f, 0x65, 0x68, 0x72, 0x78, 0x77, 0x77, 0x78, 0x72, 0x68,\n    0x62, 0x63, 0x68, 0x6f, 0x74, 0x74, 0x70, 0x6d, 0x61, 0x64, 0x67, 0x66, 0x62, 0x5d, 0x5b, 0x5b,\n    0x59, 0x4f, 0x52, 0x70, 0x98, 0xab, 0xa2, 0x92, 0x8d, 0x7f, 0x6f, 0x67, 0x67, 0x6b, 0x6f, 0x71,\n    0x79, 0x7c, 0x7a, 0x73, 0x6d, 0x6f, 0x76, 0x7b, 0x7b, 0x7c, 0x80, 0x86, 0x87, 0x7f, 0x73, 0x6a,\n    0x6e, 0x72, 0x79, 0x7e, 0x81, 0x83, 0x84, 0x86, 0x8c, 0x88, 0x82, 0x7d, 0x7b, 0x7e, 0x83, 0x87,\n    0x8b, 0x85, 0x7c, 0x74, 0x73, 0x79, 0x83, 0x89, 0x88, 0x90, 0x93, 0x91, 0x92, 0x94, 0x8f, 0x86,\n    0x7e, 0x7c, 0x7d, 0x84, 0x8c, 0x8f, 0x8c, 0x8a, 0x84, 0x89, 0x90, 0x96, 0x99, 0x97, 0x90, 0x8a,\n    0x7d, 0x7a, 0x79, 0x7b, 0x7f, 0x81, 0x83, 0x83, 0x80, 0x7b, 0x7a, 0x7e, 0x82, 0x81, 0x7c, 0x79,\n    0x71, 0x6c, 0x6a, 0x68, 0x63, 0x67, 0x6f, 0x70, 0x76, 0x75, 0x75, 0x70, 0x67, 0x62, 0x66, 0x6a,\n    0x70, 0x6b, 0x72, 0x73, 0x6a, 0x7d, 0xa9, 0xc7, 0xc4, 0xc2, 0xbe, 0xb8, 0xaf, 0xa7, 0xa5, 0xa7,\n    0xa7, 0xa5, 0xad, 0xbd, 0xc5, 0xc4, 0xc4, 0xc8, 0xc4, 0xc5, 0xc5, 0xc5, 0xc5, 0xc4, 0xc3, 0xc2,\n    0xc4, 0xc3, 0xc2, 0xc2, 0xc2, 0xc3, 0xc4, 0xc5, 0xc4, 0xc2, 0xc0, 0xbf, 0xbd, 0xba, 0xb7, 0xb4,\n    0xb2, 0xb2, 0xb2, 0xb3, 0xb3, 0xb1, 0xad, 0xa9, 0x9e, 0xa1, 0xa3, 0xa3, 0xa2, 0xa4, 0xaa, 0xaf,\n    0xae, 0xb0, 0xb2, 0xb1, 0xae, 0xac, 0xab, 0xab, 0xa1, 0x94, 0x84, 0x7f, 0x83, 0x8a, 0x96, 0xa5,\n    0x9e, 0xc2, 0xea, 0xf9, 0xf7, 0xfa, 0xfd, 0xf9, 0xfc, 0xfc, 0xfd, 0xfd, 0xfc, 0xfb, 0xfa, 0xf9,\n    0xfa, 0xfa, 0xfb, 0xfc, 0xfc, 0xfd, 0xfd, 0xfc, 0xfa, 0xfa, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9,\n    0xfc, 0xfd, 0xfd, 0xfd, 0xfe, 0xfd, 0xfd, 0xfd, 0xfa, 0xfb, 0xfc, 0xfd, 0xfd, 0xfd, 0xfc, 0xfc,\n    0xfc, 0xfc, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd,\n    0xfd, 0xfc, 0xfb, 0xfb, 0xfa, 0xfa, 0xfa, 0xfa, 0xfc, 0xfb, 0xfa, 0xfb, 0xfb, 0xfb, 0xfa, 0xf8,\n    0xf6, 0xf7, 0xf7, 0xf5, 0xf3, 0xf3, 0xf5, 0xf7, 0xf8, 0xf7, 0xf6, 0xf6, 0xf7, 0xf6, 0xf5, 0xf3,\n    0xf6, 0xf5, 0xf4, 0xf3, 0xf1, 0xee, 0xec, 0xeb, 0xec, 0xe9, 0xe5, 0xe4, 0xe5, 0xe5, 0xe2, 0xdf,\n    0xdf, 0xde, 0xdd, 0xdc, 0xdb, 0xdc, 0xdd, 0xdd, 0xdd, 0xdf, 0xe0, 0xe3, 0xe5, 0xe7, 0xe8, 0xe8,\n    0xe9, 0xe8, 0xe7, 0xe6, 0xe5, 0xe3, 0xe2, 0xe1, 0xe1, 0xe0, 0xdf, 0xdf, 0xde, 0xdc, 0xd9, 0xd7,\n    0xd6, 0xd5, 0xd3, 0xd1, 0xcf, 0xcd, 0xca, 0xc7, 0xc1, 0xc1, 0xc2, 0xc2, 0xc3, 0xc4, 0xc5, 0xc5,\n    0xc7, 0xc7, 0xc6, 0xc3, 0xc1, 0xbe, 0xbe, 0xbd, 0xbf, 0xb7, 0xb1, 0xb3, 0xb8, 0xbd, 0xbf, 0xc1,\n    0xc4, 0xc6, 0xc8, 0xc7, 0xc4, 0xbd, 0xb6, 0xb1, 0xaf, 0xaf, 0xb2, 0xb6, 0xb9, 0xbb, 0xc0, 0xc5,\n    0xca, 0xc0, 0xa3, 0x7e, 0x6a, 0x6b, 0x6b, 0x64, 0x69, 0x6b, 0x6d, 0x6b, 0x63, 0x59, 0x55, 0x57,\n    0x5a, 0x60, 0x66, 0x69, 0x69, 0x67, 0x66, 0x65, 0x62, 0x70, 0x83, 0x91, 0x99, 0x9b, 0x9b, 0x9b,\n    0x99, 0x9a, 0x9b, 0x9c, 0x9c, 0x9c, 0x9d, 0x9d, 0x9c, 0x9d, 0x9e, 0xa1, 0xa2, 0x9e, 0x96, 0x90,\n    0x7f, 0x74, 0x68, 0x64, 0x64, 0x64, 0x63, 0x63, 0x63, 0x62, 0x61, 0x60, 0x5f, 0x5d, 0x5a, 0x57,\n    0x54, 0x52, 0x4c, 0x45, 0x40, 0x3c, 0x36, 0x2f, 0x28, 0x23, 0x20, 0x1f, 0x20, 0x22, 0x24, 0x26,\n    0x25, 0x34, 0x41, 0x44, 0x45, 0x4f, 0x60, 0x6c, 0x7a, 0x79, 0x7b, 0x82, 0x87, 0x85, 0x7e, 0x78,\n    0x88, 0x84, 0x80, 0x81, 0x82, 0x80, 0x7a, 0x74, 0x81, 0x7b, 0x7a, 0x80, 0x82, 0x78, 0x6a, 0x61,\n    0x64, 0x5e, 0x4e, 0x39, 0x2d, 0x2c, 0x2e, 0x2d, 0x30, 0x2e, 0x30, 0x38, 0x3f, 0x40, 0x3d, 0x3b,\n    0x37, 0x34, 0x30, 0x2f, 0x31, 0x37, 0x3e, 0x42, 0x41, 0x40, 0x36, 0x33, 0x42, 0x4f, 0x4e, 0x49,\n    0x49, 0x4f, 0x55, 0x56, 0x4f, 0x47, 0x46, 0x49, 0x50, 0x5c, 0x62, 0x63, 0x61, 0x52, 0x42, 0x3e,\n    0x61, 0x5f, 0x56, 0x55, 0x64, 0x69, 0x5a, 0x49, 0x4e, 0x4c, 0x4d, 0x59, 0x4a, 0x25, 0x15, 0x11,\n    0x25, 0x21, 0x1f, 0x25, 0x2f, 0x38, 0x3b, 0x3a, 0x3d, 0x3c, 0x3a, 0x35, 0x2c, 0x25, 0x26, 0x2b,\n    0x7b, 0x84, 0x89, 0x81, 0x73, 0x6a, 0x69, 0x6b, 0x65, 0x6c, 0x78, 0x7f, 0x76, 0x68, 0x67, 0x6f,\n    0x72, 0x6d, 0x66, 0x60, 0x5e, 0x60, 0x64, 0x67, 0x5e, 0x67, 0x77, 0x86, 0x8d, 0x86, 0x75, 0x67,\n    0x6a, 0x68, 0x69, 0x73, 0x7f, 0x83, 0x7c, 0x74, 0x78, 0x82, 0x82, 0x77, 0x70, 0x72, 0x6e, 0x63,\n    0x64, 0x67, 0x6b, 0x6f, 0x6d, 0x69, 0x67, 0x68, 0x73, 0x70, 0x6b, 0x66, 0x65, 0x69, 0x6f, 0x74,\n    0x75, 0x85, 0x98, 0xa1, 0x9a, 0x8c, 0x83, 0x81, 0x78, 0x79, 0x77, 0x72, 0x6e, 0x71, 0x7a, 0x83,\n    0x82, 0x85, 0x84, 0x7e, 0x79, 0x79, 0x7d, 0x80, 0x7d, 0x7e, 0x81, 0x86, 0x89, 0x84, 0x7b, 0x73,\n    0x72, 0x76, 0x7c, 0x81, 0x84, 0x88, 0x8c, 0x8f, 0x8b, 0x87, 0x83, 0x81, 0x82, 0x84, 0x86, 0x87,\n    0x89, 0x86, 0x80, 0x7a, 0x79, 0x7c, 0x7f, 0x80, 0x86, 0x8e, 0x93, 0x92, 0x94, 0x97, 0x92, 0x89,\n    0x87, 0x86, 0x87, 0x8b, 0x90, 0x91, 0x8d, 0x89, 0x7c, 0x7f, 0x84, 0x88, 0x8d, 0x8f, 0x8b, 0x86,\n    0x82, 0x7c, 0x77, 0x7a, 0x80, 0x85, 0x89, 0x8b, 0x7f, 0x7b, 0x78, 0x78, 0x77, 0x74, 0x71, 0x71,\n    0x72, 0x6b, 0x6a, 0x6b, 0x6c, 0x75, 0x7f, 0x81, 0x80, 0x77, 0x70, 0x6a, 0x63, 0x67, 0x6f, 0x70,\n    0x6f, 0x64, 0x6d, 0x6f, 0x69, 0x89, 0xb8, 0xc5, 0xc2, 0xc4, 0xc2, 0xb6, 0xaa, 0xa4, 0xa4, 0xa4,\n    0x9d, 0xa1, 0xaf, 0xbf, 0xc7, 0xc6, 0xc3, 0xc3, 0xc5, 0xc5, 0xc5, 0xc5, 0xc5, 0xc5, 0xc4, 0xc4,\n    0xc7, 0xc6, 0xc4, 0xc2, 0xc2, 0xc2, 0xc3, 0xc3, 0xc1, 0xc0, 0xbf, 0xbf, 0xbe, 0xbc, 0xb9, 0xb6,\n    0xb3, 0xb3, 0xb4, 0xb5, 0xb5, 0xb5, 0xb3, 0xb1, 0xa9, 0xa5, 0xa0, 0xa0, 0xa4, 0xa7, 0xa8, 0xa6,\n    0xab, 0xae, 0xb1, 0xb1, 0xae, 0xaa, 0xa9, 0xa9, 0xa5, 0x9c, 0x92, 0x89, 0x83, 0x85, 0x8f, 0x99,\n    0xa8, 0xaa, 0xca, 0xf0, 0xfb, 0xfb, 0xfb, 0xf8, 0xfd, 0xfd, 0xfe, 0xfd, 0xfd, 0xfc, 0xfa, 0xf9,\n    0xf9, 0xf9, 0xfa, 0xfb, 0xfc, 0xfd, 0xfd, 0xfd, 0xfc, 0xfb, 0xfa, 0xfa, 0xf9, 0xf9, 0xf9, 0xf9,\n    0xfc, 0xfc, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc,\n    0xfc, 0xfc, 0xfc, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd,\n    0xfc, 0xfc, 0xfb, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfc, 0xfc, 0xfb, 0xfc, 0xfd, 0xfd, 0xfc, 0xfb,\n    0xfa, 0xfa, 0xf9, 0xf6, 0xf4, 0xf2, 0xf2, 0xf2, 0xf5, 0xf5, 0xf5, 0xf6, 0xf7, 0xf8, 0xf7, 0xf6,\n    0xf5, 0xf5, 0xf4, 0xf3, 0xf2, 0xf1, 0xf0, 0xef, 0xed, 0xeb, 0xea, 0xea, 0xea, 0xe9, 0xe7, 0xe4,\n    0xe6, 0xe3, 0xe0, 0xdd, 0xdb, 0xda, 0xda, 0xda, 0xdd, 0xdd, 0xdf, 0xe0, 0xe2, 0xe3, 0xe3, 0xe4,\n    0xe6, 0xe6, 0xe5, 0xe4, 0xe3, 0xe2, 0xe1, 0xe0, 0xe3, 0xe2, 0xe0, 0xde, 0xdc, 0xda, 0xd7, 0xd5,\n    0xd6, 0xd5, 0xd3, 0xd2, 0xd1, 0xce, 0xca, 0xc7, 0xc4, 0xc4, 0xc5, 0xc6, 0xc7, 0xc8, 0xc9, 0xc9,\n    0xca, 0xc9, 0xc7, 0xc4, 0xc1, 0xbe, 0xbd, 0xbc, 0xbd, 0xb7, 0xb2, 0xb5, 0xba, 0xbe, 0xc0, 0xc1,\n    0xc4, 0xc6, 0xc6, 0xc5, 0xc1, 0xba, 0xb3, 0xae, 0xae, 0xaf, 0xb2, 0xb6, 0xb9, 0xbb, 0xbf, 0xc3,\n    0xc7, 0xc2, 0xaa, 0x85, 0x6d, 0x69, 0x68, 0x64, 0x68, 0x67, 0x62, 0x60, 0x64, 0x68, 0x63, 0x5a,\n    0x60, 0x65, 0x69, 0x6a, 0x69, 0x69, 0x67, 0x65, 0x70, 0x7f, 0x8f, 0x96, 0x97, 0x98, 0x9a, 0x9c,\n    0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9b, 0x9b, 0x9a, 0x9d, 0x9c, 0x9b, 0x9d, 0x9e, 0x9e, 0x9c, 0x9a,\n    0x97, 0x89, 0x7a, 0x71, 0x6e, 0x6a, 0x66, 0x64, 0x61, 0x60, 0x5f, 0x5f, 0x5e, 0x5d, 0x5a, 0x58,\n    0x54, 0x51, 0x4c, 0x44, 0x3e, 0x38, 0x30, 0x29, 0x1f, 0x20, 0x20, 0x1d, 0x1a, 0x1b, 0x22, 0x27,\n    0x33, 0x31, 0x34, 0x3f, 0x4e, 0x5a, 0x61, 0x65, 0x67, 0x72, 0x82, 0x8b, 0x85, 0x7b, 0x7b, 0x82,\n    0x72, 0x75, 0x77, 0x72, 0x63, 0x54, 0x4b, 0x4b, 0x5a, 0x54, 0x51, 0x50, 0x4b, 0x47, 0x50, 0x5d,\n    0x5d, 0x5f, 0x5d, 0x52, 0x3f, 0x2e, 0x25, 0x22, 0x21, 0x29, 0x35, 0x3d, 0x39, 0x2e, 0x24, 0x20,\n    0x2d, 0x34, 0x3c, 0x3f, 0x3c, 0x38, 0x36, 0x36, 0x2b, 0x3a, 0x40, 0x3e, 0x40, 0x3e, 0x36, 0x31,\n    0x36, 0x44, 0x49, 0x41, 0x41, 0x50, 0x5c, 0x5d, 0x5f, 0x64, 0x59, 0x4d, 0x4c, 0x47, 0x46, 0x52,\n    0x5d, 0x69, 0x78, 0x84, 0x80, 0x65, 0x4b, 0x44, 0x50, 0x5d, 0x50, 0x37, 0x22, 0x1f, 0x29, 0x25,\n    0x1c, 0x1b, 0x19, 0x16, 0x16, 0x1d, 0x28, 0x30, 0x33, 0x31, 0x31, 0x31, 0x2d, 0x28, 0x2b, 0x33,\n    0x6b, 0x78, 0x82, 0x81, 0x78, 0x71, 0x6d, 0x6c, 0x67, 0x6a, 0x6e, 0x6f, 0x6c, 0x69, 0x6e, 0x75,\n    0x6a, 0x64, 0x5d, 0x5a, 0x5e, 0x63, 0x68, 0x69, 0x78, 0x71, 0x68, 0x60, 0x5c, 0x5b, 0x5b, 0x5c,\n    0x62, 0x63, 0x67, 0x70, 0x7a, 0x80, 0x80, 0x7e, 0x7c, 0x7f, 0x7b, 0x72, 0x71, 0x78, 0x7a, 0x76,\n    0x6f, 0x6e, 0x6d, 0x6b, 0x65, 0x62, 0x65, 0x6b, 0x75, 0x6c, 0x61, 0x60, 0x69, 0x76, 0x81, 0x86,\n    0x8e, 0x89, 0x80, 0x75, 0x6a, 0x67, 0x6f, 0x79, 0x83, 0x7e, 0x79, 0x7a, 0x80, 0x83, 0x80, 0x7b,\n    0x86, 0x8a, 0x8a, 0x87, 0x84, 0x84, 0x85, 0x85, 0x82, 0x82, 0x82, 0x85, 0x88, 0x88, 0x83, 0x7e,\n    0x78, 0x7b, 0x7e, 0x81, 0x83, 0x86, 0x8c, 0x91, 0x85, 0x83, 0x83, 0x86, 0x8a, 0x8b, 0x89, 0x85,\n    0x85, 0x87, 0x87, 0x85, 0x84, 0x83, 0x7d, 0x76, 0x7f, 0x87, 0x8d, 0x90, 0x95, 0x98, 0x91, 0x85,\n    0x7e, 0x80, 0x83, 0x87, 0x8a, 0x8b, 0x8a, 0x87, 0x89, 0x87, 0x83, 0x84, 0x8a, 0x8e, 0x8a, 0x83,\n    0x78, 0x74, 0x74, 0x79, 0x80, 0x84, 0x89, 0x8d, 0x8e, 0x8b, 0x86, 0x80, 0x77, 0x72, 0x73, 0x78,\n    0x71, 0x6b, 0x6d, 0x76, 0x80, 0x8d, 0x94, 0x91, 0x78, 0x6b, 0x6b, 0x72, 0x76, 0x7b, 0x75, 0x64,\n    0x6a, 0x66, 0x6a, 0x6c, 0x77, 0x9e, 0xc2, 0xc6, 0xc2, 0xbe, 0xb5, 0xab, 0xa2, 0x9f, 0xa0, 0xa1,\n    0x9c, 0xa7, 0xb7, 0xc2, 0xc6, 0xc5, 0xc4, 0xc3, 0xc6, 0xc6, 0xc6, 0xc6, 0xc5, 0xc5, 0xc5, 0xc4,\n    0xc4, 0xc4, 0xc4, 0xc4, 0xc3, 0xc3, 0xc2, 0xc2, 0xbe, 0xbd, 0xbb, 0xbb, 0xbb, 0xba, 0xb8, 0xb7,\n    0xb6, 0xb6, 0xb6, 0xb6, 0xb5, 0xb5, 0xb6, 0xb6, 0xb5, 0xaf, 0xa8, 0xa6, 0xa7, 0xa9, 0xa8, 0xa6,\n    0xac, 0xac, 0xad, 0xae, 0xad, 0xab, 0xa8, 0xa5, 0xa6, 0xa1, 0x9c, 0x93, 0x86, 0x84, 0x8b, 0x8f,\n    0xa4, 0xa3, 0xb2, 0xd3, 0xf0, 0xf6, 0xf6, 0xfa, 0xfc, 0xfc, 0xfd, 0xfd, 0xfd, 0xfc, 0xfb, 0xfa,\n    0xf9, 0xfa, 0xfa, 0xfb, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfb, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa,\n    0xfb, 0xfb, 0xfc, 0xfc, 0xfd, 0xfd, 0xfd, 0xfc, 0xfe, 0xfd, 0xfb, 0xfa, 0xfa, 0xfa, 0xfb, 0xfb,\n    0xfb, 0xfc, 0xfc, 0xfd, 0xfd, 0xfd, 0xfd, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc,\n    0xfc, 0xfc, 0xfb, 0xfb, 0xfb, 0xfb, 0xfc, 0xfc, 0xfb, 0xfb, 0xfb, 0xfb, 0xfd, 0xfd, 0xfc, 0xfb,\n    0xfb, 0xfa, 0xf9, 0xf7, 0xf6, 0xf5, 0xf3, 0xf1, 0xf3, 0xf3, 0xf3, 0xf5, 0xf7, 0xf8, 0xf7, 0xf7,\n    0xf4, 0xf4, 0xf4, 0xf4, 0xf5, 0xf5, 0xf6, 0xf6, 0xf1, 0xf0, 0xef, 0xee, 0xec, 0xeb, 0xea, 0xe9,\n    0xe6, 0xe5, 0xe3, 0xe0, 0xde, 0xdc, 0xdb, 0xdb, 0xde, 0xde, 0xdd, 0xdc, 0xdb, 0xd9, 0xd8, 0xd7,\n    0xd7, 0xd8, 0xd9, 0xda, 0xda, 0xda, 0xd9, 0xd9, 0xdb, 0xd9, 0xd6, 0xd5, 0xd4, 0xd3, 0xd2, 0xd1,\n    0xd4, 0xd4, 0xd3, 0xd3, 0xd1, 0xce, 0xca, 0xc7, 0xc5, 0xc6, 0xc7, 0xc8, 0xc9, 0xca, 0xcb, 0xcb,\n    0xcc, 0xca, 0xc6, 0xc3, 0xc0, 0xbe, 0xbc, 0xbb, 0xbb, 0xb7, 0xb5, 0xb8, 0xbd, 0xbf, 0xc1, 0xc2,\n    0xc6, 0xc6, 0xc5, 0xc3, 0xbe, 0xb6, 0xaf, 0xab, 0xad, 0xae, 0xb2, 0xb7, 0xba, 0xbb, 0xbe, 0xc2,\n    0xc4, 0xc2, 0xae, 0x8c, 0x71, 0x6b, 0x6c, 0x6c, 0x64, 0x62, 0x5f, 0x61, 0x6a, 0x72, 0x6f, 0x66,\n    0x50, 0x58, 0x60, 0x62, 0x66, 0x6d, 0x75, 0x79, 0x86, 0x8f, 0x95, 0x96, 0x94, 0x95, 0x97, 0x97,\n    0x99, 0x99, 0x99, 0x99, 0x9a, 0x99, 0x99, 0x98, 0x9b, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a,\n    0x9f, 0x97, 0x8e, 0x87, 0x7f, 0x75, 0x6e, 0x6a, 0x65, 0x62, 0x5f, 0x5d, 0x5b, 0x5a, 0x58, 0x56,\n    0x50, 0x4f, 0x4a, 0x43, 0x3d, 0x36, 0x2d, 0x24, 0x21, 0x21, 0x1e, 0x16, 0x11, 0x14, 0x1d, 0x25,\n    0x32, 0x2f, 0x2f, 0x30, 0x2d, 0x2f, 0x43, 0x5a, 0x73, 0x75, 0x79, 0x7d, 0x7e, 0x79, 0x6e, 0x65,\n    0x6a, 0x65, 0x5b, 0x4e, 0x3f, 0x38, 0x40, 0x4b, 0x2d, 0x43, 0x5c, 0x66, 0x5d, 0x4e, 0x48, 0x48,\n    0x55, 0x57, 0x58, 0x55, 0x4d, 0x3f, 0x2c, 0x1e, 0x1f, 0x26, 0x2d, 0x2b, 0x22, 0x1b, 0x20, 0x29,\n    0x37, 0x47, 0x55, 0x53, 0x44, 0x37, 0x35, 0x3a, 0x3f, 0x3a, 0x32, 0x33, 0x3c, 0x3d, 0x3a, 0x3e,\n    0x45, 0x4c, 0x49, 0x3f, 0x3f, 0x4c, 0x53, 0x4f, 0x4b, 0x58, 0x55, 0x4f, 0x52, 0x4a, 0x46, 0x52,\n    0x54, 0x49, 0x3d, 0x42, 0x4a, 0x43, 0x37, 0x34, 0x3c, 0x2c, 0x19, 0x20, 0x24, 0x1c, 0x1b, 0x17,\n    0x0c, 0x10, 0x14, 0x13, 0x10, 0x12, 0x1b, 0x23, 0x26, 0x22, 0x20, 0x20, 0x1c, 0x17, 0x1b, 0x23,\n    0x7c, 0x7c, 0x7a, 0x78, 0x78, 0x79, 0x76, 0x72, 0x62, 0x5f, 0x5e, 0x66, 0x71, 0x76, 0x73, 0x6d,\n    0x5f, 0x5f, 0x63, 0x6d, 0x76, 0x77, 0x70, 0x68, 0x62, 0x62, 0x61, 0x5f, 0x5d, 0x60, 0x65, 0x69,\n    0x5f, 0x63, 0x69, 0x70, 0x77, 0x7f, 0x86, 0x8b, 0x8c, 0x89, 0x84, 0x81, 0x7f, 0x7b, 0x75, 0x71,\n    0x7d, 0x77, 0x70, 0x6a, 0x65, 0x64, 0x6b, 0x75, 0x73, 0x6b, 0x66, 0x6e, 0x7e, 0x89, 0x89, 0x85,\n    0x86, 0x7d, 0x73, 0x71, 0x73, 0x76, 0x78, 0x7b, 0x75, 0x80, 0x8b, 0x8b, 0x85, 0x81, 0x82, 0x84,\n    0x84, 0x87, 0x88, 0x85, 0x85, 0x87, 0x88, 0x88, 0x86, 0x84, 0x83, 0x83, 0x85, 0x87, 0x85, 0x82,\n    0x7e, 0x7f, 0x80, 0x80, 0x7f, 0x82, 0x88, 0x8d, 0x88, 0x82, 0x7c, 0x7d, 0x83, 0x88, 0x8a, 0x89,\n    0x88, 0x87, 0x82, 0x7e, 0x7f, 0x82, 0x80, 0x7b, 0x7d, 0x84, 0x8b, 0x91, 0x99, 0x9d, 0x93, 0x83,\n    0x83, 0x86, 0x8a, 0x8c, 0x8d, 0x8e, 0x8e, 0x8c, 0x89, 0x87, 0x86, 0x8b, 0x93, 0x95, 0x88, 0x79,\n    0x73, 0x73, 0x79, 0x82, 0x86, 0x86, 0x88, 0x8c, 0x93, 0x92, 0x8d, 0x83, 0x76, 0x6e, 0x71, 0x79,\n    0x75, 0x6d, 0x70, 0x7d, 0x89, 0x91, 0x8d, 0x80, 0x6f, 0x64, 0x65, 0x6a, 0x6c, 0x76, 0x7a, 0x70,\n    0x66, 0x6c, 0x68, 0x69, 0x85, 0xad, 0xc3, 0xc6, 0xc1, 0xb3, 0xa4, 0x9e, 0x9c, 0x9b, 0x9d, 0xa1,\n    0xa5, 0xb3, 0xc0, 0xc5, 0xc4, 0xc4, 0xc6, 0xc7, 0xc6, 0xc6, 0xc6, 0xc5, 0xc4, 0xc4, 0xc3, 0xc3,\n    0xbf, 0xc1, 0xc3, 0xc5, 0xc6, 0xc5, 0xc3, 0xc2, 0xc1, 0xbf, 0xbc, 0xbb, 0xba, 0xba, 0xb9, 0xb9,\n    0xb8, 0xb8, 0xb8, 0xb6, 0xb3, 0xb3, 0xb5, 0xb8, 0xb9, 0xb9, 0xb6, 0xaf, 0xa8, 0xa6, 0xa9, 0xad,\n    0xaf, 0xab, 0xa9, 0xaa, 0xad, 0xad, 0xa8, 0xa3, 0xa3, 0xa0, 0x9d, 0x94, 0x86, 0x84, 0x8a, 0x8c,\n    0x92, 0xa7, 0xaa, 0xb6, 0xdc, 0xf0, 0xf2, 0xfd, 0xfa, 0xfa, 0xfb, 0xfc, 0xfc, 0xfc, 0xfb, 0xfb,\n    0xfa, 0xfa, 0xfb, 0xfb, 0xfc, 0xfb, 0xfb, 0xfb, 0xfc, 0xfc, 0xfb, 0xfa, 0xfa, 0xf9, 0xf9, 0xf9,\n    0xfa, 0xfb, 0xfb, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfe, 0xfd, 0xfb, 0xf9, 0xf8, 0xf9, 0xfa, 0xfb,\n    0xfb, 0xfc, 0xfc, 0xfd, 0xfd, 0xfd, 0xfd, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc,\n    0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfd, 0xfd, 0xfa, 0xf9, 0xf9, 0xf9, 0xfa, 0xfa, 0xf9, 0xf8,\n    0xf9, 0xf8, 0xf7, 0xf8, 0xf9, 0xf9, 0xf6, 0xf4, 0xf5, 0xf5, 0xf5, 0xf6, 0xf8, 0xf9, 0xf8, 0xf7,\n    0xf9, 0xf9, 0xf8, 0xf6, 0xf6, 0xf5, 0xf5, 0xf5, 0xf7, 0xf6, 0xf4, 0xf0, 0xed, 0xeb, 0xea, 0xeb,\n    0xeb, 0xea, 0xe8, 0xe6, 0xe2, 0xde, 0xdb, 0xd9, 0xd7, 0xd6, 0xd6, 0xd5, 0xd4, 0xd2, 0xd1, 0xd0,\n    0xcb, 0xcd, 0xcf, 0xd2, 0xd4, 0xd5, 0xd6, 0xd7, 0xd3, 0xd1, 0xcf, 0xcf, 0xd0, 0xd2, 0xd2, 0xd2,\n    0xd2, 0xd2, 0xd1, 0xd0, 0xcf, 0xcb, 0xc7, 0xc3, 0xc4, 0xc4, 0xc6, 0xc7, 0xc9, 0xca, 0xca, 0xcb,\n    0xca, 0xc8, 0xc5, 0xc2, 0xc0, 0xbe, 0xbc, 0xbb, 0xbb, 0xb8, 0xb7, 0xbb, 0xbf, 0xc0, 0xc2, 0xc3,\n    0xc7, 0xc7, 0xc6, 0xc2, 0xbc, 0xb5, 0xae, 0xaa, 0xad, 0xae, 0xb3, 0xb8, 0xbb, 0xbb, 0xbe, 0xc1,\n    0xc2, 0xc1, 0xb0, 0x90, 0x76, 0x6f, 0x74, 0x77, 0x68, 0x68, 0x68, 0x69, 0x69, 0x68, 0x64, 0x61,\n    0x64, 0x6c, 0x71, 0x6e, 0x6c, 0x72, 0x7c, 0x83, 0x92, 0x96, 0x98, 0x97, 0x98, 0x9b, 0x9a, 0x96,\n    0x9a, 0x99, 0x97, 0x96, 0x97, 0x97, 0x96, 0x96, 0x96, 0x97, 0x99, 0x9a, 0x99, 0x99, 0x99, 0x99,\n    0x98, 0x97, 0x97, 0x94, 0x8a, 0x7c, 0x72, 0x6e, 0x6b, 0x67, 0x61, 0x5c, 0x58, 0x56, 0x54, 0x53,\n    0x4a, 0x49, 0x45, 0x3f, 0x3a, 0x34, 0x2a, 0x22, 0x20, 0x20, 0x1d, 0x1a, 0x1e, 0x2e, 0x42, 0x50,\n    0x43, 0x36, 0x2e, 0x2f, 0x2c, 0x29, 0x37, 0x4c, 0x5a, 0x6a, 0x75, 0x74, 0x71, 0x71, 0x6d, 0x66,\n    0x5f, 0x4c, 0x3d, 0x41, 0x50, 0x5b, 0x5d, 0x5c, 0x81, 0x7e, 0x75, 0x6c, 0x6c, 0x71, 0x70, 0x69,\n    0x61, 0x60, 0x58, 0x4d, 0x47, 0x45, 0x3c, 0x30, 0x2a, 0x26, 0x23, 0x24, 0x26, 0x2a, 0x2f, 0x34,\n    0x3c, 0x44, 0x4a, 0x47, 0x3d, 0x35, 0x35, 0x39, 0x3d, 0x36, 0x34, 0x3e, 0x43, 0x34, 0x2b, 0x33,\n    0x3e, 0x3b, 0x3b, 0x43, 0x4b, 0x4e, 0x4c, 0x4a, 0x49, 0x57, 0x52, 0x4a, 0x4c, 0x43, 0x3e, 0x4c,\n    0x5e, 0x5e, 0x50, 0x41, 0x3e, 0x3b, 0x31, 0x2a, 0x19, 0x1e, 0x19, 0x1f, 0x23, 0x21, 0x1e, 0x11,\n    0x0f, 0x12, 0x18, 0x22, 0x31, 0x43, 0x54, 0x5e, 0x53, 0x4a, 0x43, 0x3e, 0x38, 0x32, 0x36, 0x3e,\n    0x69, 0x6f, 0x74, 0x72, 0x6a, 0x65, 0x69, 0x70, 0x68, 0x59, 0x58, 0x67, 0x73, 0x76, 0x72, 0x68,\n    0x55, 0x54, 0x56, 0x5d, 0x68, 0x6e, 0x6d, 0x6a, 0x6e, 0x6a, 0x6f, 0x74, 0x72, 0x71, 0x73, 0x70,\n    0x6c, 0x6b, 0x6b, 0x6e, 0x74, 0x7c, 0x85, 0x8a, 0x8f, 0x92, 0x91, 0x88, 0x7c, 0x75, 0x76, 0x7b,\n    0x7b, 0x72, 0x6a, 0x69, 0x68, 0x67, 0x6d, 0x76, 0x76, 0x7a, 0x7b, 0x77, 0x77, 0x7a, 0x78, 0x73,\n    0x79, 0x70, 0x69, 0x6a, 0x72, 0x79, 0x7c, 0x7d, 0x86, 0x83, 0x82, 0x84, 0x84, 0x83, 0x84, 0x86,\n    0x91, 0x8f, 0x8a, 0x82, 0x7b, 0x78, 0x79, 0x7c, 0x81, 0x7f, 0x7b, 0x79, 0x7e, 0x85, 0x85, 0x7f,\n    0x7b, 0x7a, 0x78, 0x75, 0x78, 0x80, 0x87, 0x89, 0x81, 0x7e, 0x80, 0x87, 0x88, 0x84, 0x83, 0x87,\n    0x87, 0x84, 0x7e, 0x7b, 0x7f, 0x84, 0x82, 0x7c, 0x7a, 0x7e, 0x83, 0x89, 0x94, 0x9d, 0x97, 0x8b,\n    0x87, 0x89, 0x8a, 0x89, 0x83, 0x7f, 0x83, 0x89, 0x87, 0x82, 0x81, 0x89, 0x91, 0x92, 0x8d, 0x89,\n    0x86, 0x8c, 0x8b, 0x85, 0x86, 0x90, 0x95, 0x93, 0x9c, 0x99, 0x8f, 0x81, 0x75, 0x71, 0x73, 0x74,\n    0x6f, 0x6c, 0x6c, 0x74, 0x7f, 0x88, 0x8b, 0x8b, 0x6f, 0x67, 0x61, 0x63, 0x69, 0x70, 0x74, 0x75,\n    0x6c, 0x6a, 0x6a, 0x77, 0x97, 0xb8, 0xc1, 0xbb, 0xaf, 0xa9, 0xa3, 0xa1, 0xa0, 0x9f, 0x9f, 0xa1,\n    0xaa, 0xb7, 0xc2, 0xc4, 0xc4, 0xc6, 0xc7, 0xc6, 0xc6, 0xc6, 0xc6, 0xc5, 0xc4, 0xc4, 0xc5, 0xc7,\n    0xc2, 0xc1, 0xc0, 0xc0, 0xc1, 0xc1, 0xc1, 0xc0, 0xbd, 0xbc, 0xba, 0xb9, 0xb8, 0xb7, 0xb6, 0xb6,\n    0xba, 0xba, 0xba, 0xba, 0xba, 0xb8, 0xb7, 0xb6, 0xb6, 0xb4, 0xb2, 0xb0, 0xae, 0xac, 0xa8, 0xa6,\n    0xaa, 0xae, 0xb0, 0xae, 0xab, 0xaa, 0xa9, 0xa7, 0xa5, 0x9f, 0x99, 0x94, 0x8c, 0x85, 0x85, 0x89,\n    0x9d, 0xa0, 0xa9, 0xb1, 0xc6, 0xed, 0xff, 0xf4, 0xf9, 0xff, 0xfd, 0xfb, 0xfe, 0xfe, 0xf9, 0xf9,\n    0xf9, 0xf9, 0xfb, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfe, 0xfe, 0xfe, 0xfd, 0xfb, 0xf9, 0xf7, 0xf6,\n    0xfa, 0xfb, 0xfc, 0xfe, 0xfe, 0xfe, 0xfd, 0xfc, 0xfc, 0xfc, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb,\n    0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfd, 0xfc, 0xfc, 0xfd, 0xff, 0xff, 0xfd, 0xfb,\n    0xfc, 0xfc, 0xfb, 0xfb, 0xfa, 0xfa, 0xf9, 0xf9, 0xf9, 0xfa, 0xfa, 0xfb, 0xfb, 0xfa, 0xfa, 0xf9,\n    0xf8, 0xf9, 0xfa, 0xfb, 0xfa, 0xf8, 0xf5, 0xf3, 0xf1, 0xf2, 0xf4, 0xf6, 0xf7, 0xf7, 0xf7, 0xf7,\n    0xf7, 0xf7, 0xf8, 0xf8, 0xf8, 0xf7, 0xf7, 0xf7, 0xf7, 0xf5, 0xf3, 0xf1, 0xf0, 0xee, 0xec, 0xeb,\n    0xe9, 0xe7, 0xe6, 0xe5, 0xe4, 0xe2, 0xe0, 0xde, 0xdb, 0xd7, 0xd2, 0xcd, 0xca, 0xc9, 0xca, 0xcb,\n    0xca, 0xc7, 0xc4, 0xc2, 0xc4, 0xc8, 0xcd, 0xd0, 0xd1, 0xd0, 0xcf, 0xd0, 0xd1, 0xd1, 0xd0, 0xcf,\n    0xcc, 0xcc, 0xcb, 0xca, 0xc8, 0xc6, 0xc5, 0xc4, 0xc9, 0xc9, 0xc9, 0xc9, 0xc9, 0xca, 0xc9, 0xc9,\n    0xca, 0xc7, 0xc3, 0xc1, 0xc0, 0xc0, 0xc0, 0xbf, 0xbc, 0xb8, 0xb7, 0xba, 0xbc, 0xbd, 0xbf, 0xc1,\n    0xc7, 0xc8, 0xc7, 0xc3, 0xbe, 0xb9, 0xb1, 0xaa, 0xac, 0xaf, 0xb4, 0xb7, 0xb9, 0xba, 0xbc, 0xbd,\n    0xbe, 0xc6, 0xae, 0x9a, 0x7e, 0x8e, 0x9c, 0x9a, 0x88, 0x75, 0x65, 0x66, 0x6e, 0x72, 0x70, 0x6e,\n    0x67, 0x6c, 0x6b, 0x66, 0x69, 0x78, 0x88, 0x8f, 0x96, 0x96, 0x97, 0x97, 0x97, 0x97, 0x97, 0x96,\n    0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x91, 0x92, 0x92, 0x93, 0x94, 0x95, 0x95, 0x96,\n    0x92, 0x92, 0x92, 0x90, 0x8c, 0x86, 0x7e, 0x79, 0x6d, 0x68, 0x61, 0x5d, 0x5b, 0x58, 0x53, 0x4f,\n    0x48, 0x46, 0x42, 0x3d, 0x35, 0x2d, 0x25, 0x21, 0x1c, 0x1e, 0x1c, 0x1c, 0x2b, 0x44, 0x53, 0x54,\n    0x48, 0x3e, 0x36, 0x34, 0x31, 0x2e, 0x34, 0x3d, 0x58, 0x6d, 0x7c, 0x7b, 0x79, 0x7a, 0x72, 0x64,\n    0x4b, 0x46, 0x53, 0x6b, 0x70, 0x64, 0x68, 0x7a, 0x65, 0x5b, 0x55, 0x5b, 0x60, 0x60, 0x5f, 0x60,\n    0x64, 0x6d, 0x75, 0x78, 0x7d, 0x82, 0x7f, 0x77, 0x75, 0x71, 0x6c, 0x6a, 0x6a, 0x68, 0x66, 0x64,\n    0x5d, 0x50, 0x3e, 0x37, 0x3b, 0x39, 0x36, 0x39, 0x31, 0x2a, 0x26, 0x2a, 0x2a, 0x20, 0x20, 0x2d,\n    0x31, 0x35, 0x39, 0x41, 0x47, 0x43, 0x45, 0x51, 0x55, 0x4c, 0x4c, 0x4f, 0x49, 0x45, 0x47, 0x4a,\n    0x51, 0x60, 0x64, 0x5a, 0x57, 0x57, 0x43, 0x28, 0x14, 0x13, 0x1a, 0x25, 0x28, 0x20, 0x14, 0x0d,\n    0x1c, 0x56, 0x7b, 0x65, 0x3f, 0x31, 0x2e, 0x27, 0x1b, 0x20, 0x21, 0x1c, 0x1a, 0x22, 0x2f, 0x39,\n    0x6a, 0x6b, 0x6d, 0x6c, 0x6a, 0x69, 0x6b, 0x6e, 0x71, 0x64, 0x5c, 0x5d, 0x65, 0x74, 0x7c, 0x78,\n    0x67, 0x6e, 0x76, 0x7c, 0x7e, 0x7f, 0x80, 0x81, 0x76, 0x6b, 0x6a, 0x6f, 0x71, 0x70, 0x6c, 0x62,\n    0x6a, 0x6c, 0x6d, 0x6e, 0x70, 0x75, 0x7d, 0x83, 0x86, 0x8b, 0x8e, 0x89, 0x7f, 0x76, 0x72, 0x73,\n    0x6f, 0x64, 0x5c, 0x5e, 0x63, 0x6a, 0x75, 0x7f, 0x7e, 0x7c, 0x76, 0x73, 0x75, 0x79, 0x76, 0x6f,\n    0x74, 0x6f, 0x6b, 0x6d, 0x73, 0x78, 0x7b, 0x7c, 0x80, 0x7d, 0x7a, 0x7b, 0x80, 0x86, 0x8c, 0x8f,\n    0x8e, 0x8c, 0x87, 0x7f, 0x77, 0x73, 0x73, 0x75, 0x7f, 0x85, 0x86, 0x7e, 0x79, 0x7e, 0x82, 0x82,\n    0x7a, 0x7a, 0x77, 0x73, 0x73, 0x75, 0x77, 0x76, 0x78, 0x7c, 0x81, 0x82, 0x7a, 0x73, 0x78, 0x83,\n    0x85, 0x80, 0x78, 0x74, 0x78, 0x80, 0x81, 0x7e, 0x75, 0x77, 0x78, 0x7b, 0x85, 0x8f, 0x8f, 0x88,\n    0x87, 0x88, 0x89, 0x87, 0x80, 0x79, 0x79, 0x7c, 0x84, 0x83, 0x85, 0x8b, 0x8f, 0x8e, 0x8b, 0x8a,\n    0x84, 0x89, 0x89, 0x85, 0x8a, 0x98, 0xa1, 0xa0, 0x97, 0x96, 0x8f, 0x83, 0x7a, 0x77, 0x77, 0x76,\n    0x72, 0x6f, 0x68, 0x68, 0x7a, 0x8d, 0x86, 0x72, 0x6b, 0x65, 0x62, 0x66, 0x6d, 0x70, 0x6d, 0x68,\n    0x66, 0x68, 0x6b, 0x7f, 0xa6, 0xc6, 0xc4, 0xb4, 0xa7, 0xa4, 0xa1, 0xa2, 0xa2, 0xa1, 0xa3, 0xa6,\n    0xaf, 0xba, 0xc4, 0xc6, 0xc6, 0xc7, 0xc6, 0xc2, 0xbd, 0xbf, 0xc1, 0xc2, 0xc2, 0xc1, 0xc2, 0xc3,\n    0xc5, 0xc4, 0xc3, 0xc3, 0xc3, 0xc2, 0xc1, 0xbf, 0xc1, 0xc0, 0xbe, 0xbc, 0xba, 0xb8, 0xb7, 0xb7,\n    0xbb, 0xba, 0xb8, 0xb7, 0xb5, 0xb5, 0xb4, 0xb4, 0xb5, 0xb4, 0xb4, 0xb4, 0xb4, 0xb3, 0xb0, 0xae,\n    0xaa, 0xad, 0xae, 0xac, 0xaa, 0xab, 0xab, 0xaa, 0xa6, 0xa1, 0x9c, 0x98, 0x92, 0x8b, 0x88, 0x89,\n    0x9a, 0xa2, 0xac, 0xb1, 0xbe, 0xdb, 0xf4, 0xfa, 0xfa, 0xff, 0xfe, 0xfd, 0xff, 0xfc, 0xf8, 0xfa,\n    0xf9, 0xf9, 0xfa, 0xfb, 0xfc, 0xfc, 0xfc, 0xfc, 0xfd, 0xfd, 0xfb, 0xfa, 0xf9, 0xf9, 0xf9, 0xf9,\n    0xf9, 0xf9, 0xfb, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfd, 0xfd, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc,\n    0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfe, 0xfd, 0xfd, 0xfd, 0xfe, 0xfe, 0xfc, 0xfa,\n    0xfa, 0xfa, 0xfa, 0xfa, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xfa, 0xfa, 0xfb, 0xfb, 0xfa, 0xfa, 0xf9,\n    0xf9, 0xfa, 0xfb, 0xfb, 0xfa, 0xf9, 0xf7, 0xf6, 0xf4, 0xf4, 0xf5, 0xf5, 0xf6, 0xf6, 0xf6, 0xf6,\n    0xf6, 0xf6, 0xf7, 0xf7, 0xf7, 0xf7, 0xf7, 0xf7, 0xf7, 0xf6, 0xf3, 0xf2, 0xf2, 0xf1, 0xf0, 0xef,\n    0xec, 0xea, 0xe8, 0xe6, 0xe5, 0xe2, 0xdf, 0xdd, 0xd9, 0xd7, 0xd2, 0xcf, 0xcc, 0xcc, 0xcd, 0xcd,\n    0xcf, 0xcd, 0xca, 0xc8, 0xc8, 0xc9, 0xcc, 0xce, 0xce, 0xcd, 0xcc, 0xcd, 0xcd, 0xce, 0xcd, 0xcc,\n    0xca, 0xc8, 0xc6, 0xc4, 0xc3, 0xc3, 0xc3, 0xc3, 0xc8, 0xc8, 0xc8, 0xc8, 0xc8, 0xc8, 0xc8, 0xc8,\n    0xc9, 0xc7, 0xc4, 0xc2, 0xc1, 0xc1, 0xc1, 0xc0, 0xbe, 0xba, 0xb9, 0xbb, 0xbd, 0xbd, 0xbf, 0xc1,\n    0xc6, 0xc7, 0xc7, 0xc3, 0xc0, 0xbb, 0xb4, 0xad, 0xae, 0xb1, 0xb4, 0xb7, 0xb9, 0xbb, 0xbd, 0xbe,\n    0xbc, 0xc5, 0xb5, 0xa0, 0x76, 0x72, 0x84, 0x91, 0x95, 0x84, 0x71, 0x68, 0x68, 0x6a, 0x6d, 0x6f,\n    0x6c, 0x68, 0x67, 0x71, 0x80, 0x8d, 0x93, 0x96, 0x96, 0x96, 0x96, 0x97, 0x96, 0x96, 0x95, 0x95,\n    0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x93, 0x93, 0x90, 0x90, 0x90, 0x90, 0x91, 0x91, 0x91, 0x91,\n    0x8e, 0x8d, 0x8d, 0x8c, 0x89, 0x84, 0x7e, 0x79, 0x73, 0x6d, 0x66, 0x60, 0x5b, 0x56, 0x50, 0x4b,\n    0x46, 0x43, 0x3e, 0x38, 0x32, 0x2a, 0x23, 0x1f, 0x25, 0x21, 0x1b, 0x1e, 0x33, 0x4c, 0x55, 0x50,\n    0x47, 0x45, 0x43, 0x3d, 0x34, 0x2c, 0x2d, 0x32, 0x4d, 0x61, 0x71, 0x73, 0x6e, 0x67, 0x5a, 0x4c,\n    0x51, 0x5c, 0x5b, 0x4b, 0x43, 0x4c, 0x59, 0x5e, 0x4c, 0x43, 0x3a, 0x37, 0x39, 0x41, 0x54, 0x67,\n    0x87, 0x88, 0x8c, 0x92, 0x97, 0x97, 0x93, 0x90, 0x8f, 0x91, 0x8f, 0x8c, 0x8b, 0x8b, 0x89, 0x84,\n    0x7c, 0x6e, 0x57, 0x49, 0x49, 0x48, 0x47, 0x4b, 0x46, 0x3d, 0x33, 0x29, 0x19, 0x0d, 0x11, 0x1e,\n    0x1f, 0x24, 0x2f, 0x43, 0x52, 0x51, 0x50, 0x59, 0x51, 0x50, 0x56, 0x59, 0x55, 0x55, 0x5b, 0x5d,\n    0x5d, 0x50, 0x4b, 0x58, 0x64, 0x5e, 0x4b, 0x3b, 0x37, 0x20, 0x11, 0x13, 0x15, 0x11, 0x18, 0x26,\n    0x6f, 0x50, 0x2b, 0x15, 0x10, 0x13, 0x15, 0x15, 0x16, 0x1c, 0x22, 0x26, 0x29, 0x27, 0x21, 0x1a,\n    0x6f, 0x6d, 0x6d, 0x70, 0x77, 0x7b, 0x7c, 0x7b, 0x69, 0x61, 0x5a, 0x56, 0x61, 0x7d, 0x94, 0x96,\n    0x93, 0x95, 0x95, 0x8e, 0x83, 0x78, 0x71, 0x6f, 0x6c, 0x63, 0x62, 0x6a, 0x6e, 0x70, 0x6f, 0x68,\n    0x63, 0x6c, 0x76, 0x7b, 0x7c, 0x7d, 0x81, 0x84, 0x7e, 0x83, 0x88, 0x87, 0x81, 0x7b, 0x77, 0x75,\n    0x6d, 0x66, 0x64, 0x6d, 0x79, 0x80, 0x86, 0x8a, 0x7f, 0x78, 0x72, 0x72, 0x79, 0x7d, 0x77, 0x6e,\n    0x6e, 0x6e, 0x6d, 0x6f, 0x72, 0x75, 0x76, 0x77, 0x75, 0x75, 0x73, 0x72, 0x7a, 0x86, 0x8b, 0x8a,\n    0x88, 0x87, 0x83, 0x7c, 0x75, 0x71, 0x70, 0x71, 0x7f, 0x84, 0x84, 0x82, 0x87, 0x8f, 0x8d, 0x83,\n    0x84, 0x85, 0x84, 0x80, 0x7f, 0x7f, 0x7e, 0x7c, 0x76, 0x7a, 0x7e, 0x7e, 0x76, 0x70, 0x76, 0x81,\n    0x81, 0x7c, 0x74, 0x71, 0x75, 0x7c, 0x7e, 0x7d, 0x76, 0x78, 0x79, 0x79, 0x7f, 0x86, 0x88, 0x84,\n    0x7d, 0x7f, 0x82, 0x83, 0x7f, 0x7a, 0x78, 0x79, 0x7d, 0x80, 0x86, 0x8b, 0x8c, 0x8a, 0x8b, 0x8e,\n    0x91, 0x97, 0x98, 0x96, 0x99, 0xa1, 0xa2, 0x9d, 0x92, 0x91, 0x8c, 0x85, 0x80, 0x7f, 0x7e, 0x7c,\n    0x71, 0x6c, 0x64, 0x66, 0x7b, 0x8e, 0x85, 0x70, 0x66, 0x67, 0x68, 0x6b, 0x6e, 0x70, 0x6f, 0x6e,\n    0x6a, 0x76, 0x7e, 0x8a, 0xa5, 0xb8, 0xb4, 0xa7, 0xa5, 0xa3, 0xa1, 0xa0, 0x9d, 0x9c, 0x9e, 0xa3,\n    0xb5, 0xbe, 0xc4, 0xc5, 0xc5, 0xc6, 0xc3, 0xbe, 0xbd, 0xbf, 0xc2, 0xc4, 0xc3, 0xc3, 0xc2, 0xc2,\n    0xc6, 0xc5, 0xc5, 0xc5, 0xc4, 0xc3, 0xc0, 0xbd, 0xc0, 0xbf, 0xbd, 0xbb, 0xb9, 0xb8, 0xb8, 0xb8,\n    0xb7, 0xb5, 0xb2, 0xb0, 0xad, 0xac, 0xac, 0xac, 0xaf, 0xb0, 0xb1, 0xb4, 0xb7, 0xb7, 0xb6, 0xb4,\n    0xaf, 0xaf, 0xae, 0xac, 0xad, 0xae, 0xad, 0xab, 0xaa, 0xa6, 0xa2, 0x9f, 0x9a, 0x91, 0x89, 0x85,\n    0x90, 0x9e, 0xa9, 0xae, 0xb5, 0xc3, 0xe0, 0xfe, 0xf9, 0xfd, 0xfc, 0xfc, 0xfe, 0xfa, 0xf7, 0xfb,\n    0xf9, 0xfa, 0xfa, 0xfb, 0xfb, 0xfc, 0xfc, 0xfc, 0xfc, 0xfb, 0xf9, 0xf8, 0xf8, 0xf9, 0xfa, 0xfb,\n    0xf7, 0xf8, 0xf9, 0xfa, 0xfa, 0xfb, 0xfb, 0xfb, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd,\n    0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xff, 0xff, 0xfe, 0xfd, 0xfd, 0xfc, 0xfa, 0xf9,\n    0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xfa, 0xfa, 0xfa, 0xfa, 0xf9, 0xf9,\n    0xfa, 0xfb, 0xfb, 0xfb, 0xfb, 0xfa, 0xf9, 0xf9, 0xf7, 0xf7, 0xf6, 0xf6, 0xf5, 0xf5, 0xf5, 0xf5,\n    0xf5, 0xf5, 0xf6, 0xf6, 0xf6, 0xf6, 0xf6, 0xf5, 0xf5, 0xf4, 0xf2, 0xf2, 0xf2, 0xf2, 0xf1, 0xf1,\n    0xef, 0xed, 0xea, 0xe8, 0xe6, 0xe3, 0xdf, 0xdd, 0xdd, 0xdb, 0xd9, 0xd7, 0xd6, 0xd6, 0xd6, 0xd7,\n    0xd6, 0xd5, 0xd3, 0xd0, 0xcf, 0xce, 0xcd, 0xce, 0xce, 0xcd, 0xcc, 0xcc, 0xcd, 0xcd, 0xcc, 0xcb,\n    0xc8, 0xc6, 0xc3, 0xc0, 0xbf, 0xc1, 0xc3, 0xc5, 0xca, 0xca, 0xcb, 0xcb, 0xcb, 0xcb, 0xcb, 0xca,\n    0xc9, 0xc7, 0xc5, 0xc3, 0xc3, 0xc3, 0xc2, 0xc1, 0xbf, 0xbc, 0xba, 0xbc, 0xbd, 0xbe, 0xbe, 0xc0,\n    0xc4, 0xc5, 0xc5, 0xc2, 0xc0, 0xbc, 0xb6, 0xb0, 0xb0, 0xb2, 0xb5, 0xb7, 0xb9, 0xbb, 0xbd, 0xbf,\n    0xbe, 0xc3, 0xb8, 0xa6, 0x74, 0x5e, 0x6e, 0x84, 0x93, 0x8c, 0x7d, 0x6e, 0x68, 0x6b, 0x73, 0x78,\n    0x6d, 0x67, 0x6c, 0x7f, 0x91, 0x97, 0x99, 0x9b, 0x97, 0x97, 0x96, 0x96, 0x95, 0x94, 0x93, 0x93,\n    0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x8e, 0x8e, 0x8d, 0x8d, 0x8c, 0x8b, 0x8b, 0x8b,\n    0x88, 0x87, 0x87, 0x86, 0x84, 0x81, 0x7d, 0x7a, 0x77, 0x71, 0x69, 0x62, 0x5c, 0x56, 0x4e, 0x49,\n    0x43, 0x3f, 0x39, 0x33, 0x2d, 0x27, 0x21, 0x1e, 0x1b, 0x18, 0x14, 0x19, 0x2e, 0x47, 0x4f, 0x4a,\n    0x49, 0x4d, 0x4a, 0x3d, 0x2f, 0x2a, 0x2d, 0x31, 0x43, 0x4d, 0x58, 0x5c, 0x5a, 0x56, 0x51, 0x4e,\n    0x58, 0x5a, 0x49, 0x36, 0x46, 0x68, 0x6e, 0x59, 0x43, 0x3b, 0x3c, 0x51, 0x6c, 0x7d, 0x84, 0x86,\n    0x7b, 0x7b, 0x80, 0x86, 0x80, 0x70, 0x66, 0x65, 0x76, 0x7e, 0x86, 0x88, 0x8a, 0x8a, 0x84, 0x7c,\n    0x7a, 0x74, 0x65, 0x59, 0x5c, 0x61, 0x63, 0x67, 0x6e, 0x60, 0x5f, 0x70, 0x84, 0x8f, 0x89, 0x7b,\n    0x79, 0x7e, 0x6d, 0x59, 0x65, 0x81, 0x89, 0x82, 0x77, 0x66, 0x51, 0x3c, 0x2f, 0x3a, 0x53, 0x61,\n    0x6e, 0x5e, 0x59, 0x61, 0x5d, 0x4c, 0x45, 0x4c, 0x35, 0x27, 0x1d, 0x1c, 0x1b, 0x16, 0x18, 0x21,\n    0x11, 0x13, 0x16, 0x1f, 0x2c, 0x34, 0x2f, 0x25, 0x22, 0x29, 0x2b, 0x24, 0x1b, 0x1b, 0x23, 0x2b,\n    0x64, 0x63, 0x63, 0x67, 0x70, 0x76, 0x75, 0x71, 0x66, 0x5e, 0x57, 0x55, 0x5a, 0x6d, 0x7c, 0x7d,\n    0x79, 0x76, 0x73, 0x73, 0x75, 0x75, 0x74, 0x72, 0x60, 0x5d, 0x62, 0x68, 0x68, 0x6d, 0x75, 0x77,\n    0x6c, 0x71, 0x76, 0x77, 0x76, 0x75, 0x77, 0x7a, 0x7f, 0x80, 0x80, 0x7e, 0x7a, 0x77, 0x75, 0x74,\n    0x72, 0x73, 0x7c, 0x8c, 0x98, 0x96, 0x8c, 0x85, 0x71, 0x6b, 0x6a, 0x73, 0x7e, 0x81, 0x79, 0x70,\n    0x6e, 0x70, 0x71, 0x70, 0x6f, 0x70, 0x70, 0x70, 0x6f, 0x73, 0x72, 0x71, 0x78, 0x82, 0x82, 0x7b,\n    0x7e, 0x7e, 0x7b, 0x76, 0x72, 0x6f, 0x6f, 0x6f, 0x74, 0x79, 0x7c, 0x7f, 0x89, 0x92, 0x8a, 0x7a,\n    0x70, 0x72, 0x71, 0x70, 0x72, 0x77, 0x7a, 0x7a, 0x7a, 0x77, 0x77, 0x7b, 0x7d, 0x7c, 0x7b, 0x7c,\n    0x7f, 0x7a, 0x75, 0x74, 0x78, 0x7d, 0x7e, 0x7d, 0x7a, 0x7f, 0x83, 0x84, 0x84, 0x85, 0x83, 0x7f,\n    0x74, 0x75, 0x79, 0x7c, 0x7b, 0x78, 0x77, 0x78, 0x76, 0x7a, 0x82, 0x87, 0x88, 0x87, 0x8b, 0x90,\n    0x8d, 0x91, 0x93, 0x93, 0x98, 0xa1, 0xa4, 0xa0, 0x91, 0x8f, 0x8a, 0x84, 0x82, 0x84, 0x84, 0x83,\n    0x7e, 0x73, 0x6c, 0x70, 0x76, 0x75, 0x6f, 0x6b, 0x68, 0x6d, 0x70, 0x6b, 0x66, 0x69, 0x73, 0x7b,\n    0x7e, 0x8b, 0x8d, 0x92, 0xa8, 0xb7, 0xb3, 0xad, 0xa9, 0xa7, 0xa3, 0x9f, 0x9a, 0x98, 0x9d, 0xa4,\n    0xbb, 0xbf, 0xc2, 0xc0, 0xc1, 0xc4, 0xc2, 0xbd, 0xc4, 0xc5, 0xc7, 0xc7, 0xc5, 0xc4, 0xc3, 0xc3,\n    0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc2, 0xbf, 0xbc, 0xbc, 0xbc, 0xba, 0xb9, 0xb9, 0xba, 0xba, 0xbb,\n    0xb5, 0xb3, 0xb1, 0xae, 0xab, 0xa9, 0xa7, 0xa6, 0xa9, 0xab, 0xae, 0xb2, 0xb6, 0xb7, 0xb6, 0xb5,\n    0xb4, 0xb4, 0xb3, 0xb1, 0xb1, 0xb1, 0xae, 0xaa, 0xae, 0xaa, 0xa6, 0xa4, 0xa0, 0x96, 0x8a, 0x81,\n    0x88, 0x96, 0xa2, 0xad, 0xb5, 0xb7, 0xcf, 0xf7, 0xf9, 0xfb, 0xf9, 0xfa, 0xfe, 0xfb, 0xf9, 0xfd,\n    0xfa, 0xfa, 0xf9, 0xfa, 0xfa, 0xfb, 0xfc, 0xfd, 0xfc, 0xfb, 0xfa, 0xf9, 0xf9, 0xf9, 0xfa, 0xfb,\n    0xf7, 0xf7, 0xf7, 0xf8, 0xf9, 0xfa, 0xfa, 0xfb, 0xfc, 0xfc, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd,\n    0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xff, 0xfe, 0xfe, 0xfd, 0xfc, 0xfc, 0xfb, 0xfa,\n    0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xfa, 0xf9, 0xf9, 0xf9, 0xfa, 0xfa, 0xf9, 0xf9, 0xf9,\n    0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfb, 0xfb, 0xfa, 0xf9, 0xf8, 0xf6, 0xf6, 0xf6, 0xf6, 0xf7,\n    0xf5, 0xf5, 0xf6, 0xf6, 0xf5, 0xf4, 0xf4, 0xf3, 0xf2, 0xf1, 0xef, 0xef, 0xef, 0xef, 0xef, 0xee,\n    0xef, 0xed, 0xeb, 0xe8, 0xe6, 0xe4, 0xe0, 0xde, 0xe0, 0xe0, 0xdf, 0xdf, 0xde, 0xde, 0xde, 0xde,\n    0xdc, 0xdc, 0xdb, 0xd9, 0xd7, 0xd4, 0xd2, 0xd0, 0xd2, 0xd1, 0xcf, 0xcf, 0xd0, 0xcf, 0xce, 0xcd,\n    0xc9, 0xc7, 0xc5, 0xc3, 0xc2, 0xc4, 0xc6, 0xc8, 0xcb, 0xcc, 0xcd, 0xce, 0xce, 0xce, 0xce, 0xce,\n    0xc9, 0xc7, 0xc5, 0xc4, 0xc4, 0xc4, 0xc3, 0xc2, 0xbf, 0xbb, 0xba, 0xbd, 0xbe, 0xbe, 0xbf, 0xc1,\n    0xc2, 0xc3, 0xc2, 0xc0, 0xbe, 0xbb, 0xb6, 0xb0, 0xb2, 0xb3, 0xb5, 0xb7, 0xb8, 0xba, 0xbd, 0xbf,\n    0xc1, 0xc0, 0xb7, 0xa8, 0x7e, 0x62, 0x6c, 0x78, 0x76, 0x7a, 0x76, 0x67, 0x5d, 0x60, 0x69, 0x6f,\n    0x6e, 0x74, 0x80, 0x8d, 0x94, 0x95, 0x97, 0x9b, 0x97, 0x97, 0x97, 0x96, 0x95, 0x93, 0x92, 0x91,\n    0x8f, 0x8f, 0x8f, 0x8e, 0x8e, 0x8e, 0x8e, 0x8f, 0x8d, 0x8d, 0x8c, 0x8a, 0x89, 0x87, 0x86, 0x86,\n    0x85, 0x84, 0x82, 0x81, 0x80, 0x7e, 0x7b, 0x79, 0x76, 0x70, 0x68, 0x62, 0x5d, 0x57, 0x4f, 0x4a,\n    0x41, 0x3c, 0x35, 0x2e, 0x29, 0x25, 0x21, 0x1e, 0x19, 0x1b, 0x1b, 0x1c, 0x25, 0x34, 0x3d, 0x3d,\n    0x3f, 0x47, 0x46, 0x39, 0x2e, 0x2e, 0x31, 0x32, 0x32, 0x33, 0x39, 0x40, 0x42, 0x42, 0x46, 0x4d,\n    0x40, 0x41, 0x43, 0x4c, 0x62, 0x7a, 0x81, 0x7c, 0x74, 0x77, 0x7d, 0x80, 0x7b, 0x70, 0x69, 0x67,\n    0x75, 0x74, 0x72, 0x6d, 0x61, 0x59, 0x5b, 0x63, 0x71, 0x7b, 0x83, 0x7c, 0x6c, 0x60, 0x62, 0x6b,\n    0x8b, 0x8e, 0x86, 0x7b, 0x77, 0x72, 0x6c, 0x6a, 0x64, 0x7c, 0x9f, 0xb3, 0xb1, 0xb0, 0xb4, 0xb2,\n    0x8b, 0x6c, 0x5f, 0x7f, 0xa6, 0xab, 0x9d, 0x99, 0x9c, 0x97, 0x99, 0x96, 0x85, 0x76, 0x6f, 0x6a,\n    0x6f, 0x75, 0x77, 0x6b, 0x56, 0x46, 0x47, 0x50, 0x6b, 0x6a, 0x5b, 0x43, 0x36, 0x38, 0x3c, 0x3a,\n    0x3d, 0x3c, 0x35, 0x2e, 0x38, 0x47, 0x45, 0x38, 0x31, 0x34, 0x3d, 0x51, 0x6c, 0x7f, 0x83, 0x7f,\n    0x62, 0x65, 0x67, 0x69, 0x6e, 0x72, 0x70, 0x6b, 0x69, 0x5c, 0x57, 0x5b, 0x5e, 0x61, 0x65, 0x63,\n    0x75, 0x73, 0x70, 0x6d, 0x6c, 0x6c, 0x6c, 0x6b, 0x69, 0x63, 0x65, 0x67, 0x64, 0x67, 0x70, 0x74,\n    0x73, 0x70, 0x6d, 0x6c, 0x70, 0x78, 0x81, 0x88, 0x8c, 0x8b, 0x88, 0x84, 0x7f, 0x7b, 0x79, 0x78,\n    0x76, 0x7b, 0x86, 0x95, 0x9b, 0x93, 0x82, 0x75, 0x64, 0x60, 0x62, 0x6f, 0x7b, 0x7d, 0x78, 0x74,\n    0x74, 0x77, 0x77, 0x71, 0x6d, 0x6d, 0x6e, 0x6d, 0x6d, 0x71, 0x71, 0x70, 0x77, 0x80, 0x7f, 0x76,\n    0x79, 0x78, 0x75, 0x71, 0x6d, 0x6c, 0x6c, 0x6d, 0x6a, 0x73, 0x78, 0x76, 0x75, 0x77, 0x74, 0x6e,\n    0x71, 0x71, 0x6f, 0x6d, 0x71, 0x7a, 0x82, 0x85, 0x7c, 0x78, 0x77, 0x7b, 0x80, 0x7f, 0x79, 0x74,\n    0x7b, 0x76, 0x72, 0x73, 0x77, 0x7c, 0x7e, 0x80, 0x79, 0x7f, 0x85, 0x87, 0x85, 0x83, 0x7f, 0x7c,\n    0x78, 0x77, 0x77, 0x77, 0x75, 0x71, 0x70, 0x72, 0x75, 0x77, 0x7b, 0x80, 0x83, 0x84, 0x88, 0x8e,\n    0x8a, 0x8a, 0x85, 0x80, 0x83, 0x8c, 0x93, 0x94, 0x8d, 0x8a, 0x83, 0x7d, 0x7c, 0x7f, 0x82, 0x82,\n    0x76, 0x6e, 0x6a, 0x6d, 0x6f, 0x6e, 0x6d, 0x6f, 0x6e, 0x70, 0x6d, 0x66, 0x63, 0x68, 0x72, 0x77,\n    0x77, 0x79, 0x71, 0x7e, 0xa6, 0xbb, 0xb2, 0xab, 0xad, 0xaa, 0xa5, 0xa0, 0x9b, 0x9c, 0xa6, 0xb0,\n    0xbd, 0xbf, 0xbe, 0xbb, 0xbc, 0xc1, 0xc2, 0xbe, 0xc6, 0xc6, 0xc6, 0xc5, 0xc4, 0xc3, 0xc4, 0xc4,\n    0xc3, 0xc3, 0xc3, 0xc4, 0xc4, 0xc3, 0xc0, 0xbe, 0xbe, 0xbd, 0xbc, 0xbb, 0xbb, 0xbb, 0xbd, 0xbe,\n    0xb7, 0xb6, 0xb5, 0xb3, 0xb0, 0xad, 0xa9, 0xa7, 0xa9, 0xaa, 0xac, 0xb0, 0xb4, 0xb5, 0xb5, 0xb4,\n    0xb4, 0xb5, 0xb4, 0xb3, 0xb4, 0xb4, 0xaf, 0xaa, 0xac, 0xaa, 0xa7, 0xa6, 0xa3, 0x9b, 0x8e, 0x84,\n    0x88, 0x90, 0x9b, 0xad, 0xba, 0xb7, 0xc3, 0xe2, 0xfa, 0xfd, 0xfa, 0xf9, 0xfe, 0xfe, 0xfb, 0xfc,\n    0xfa, 0xfa, 0xf9, 0xf9, 0xf9, 0xfb, 0xfc, 0xfd, 0xfc, 0xfc, 0xfc, 0xfc, 0xfb, 0xfa, 0xf9, 0xf9,\n    0xf8, 0xf7, 0xf7, 0xf7, 0xf8, 0xf9, 0xfa, 0xfb, 0xfa, 0xfb, 0xfc, 0xfc, 0xfd, 0xfd, 0xfc, 0xfc,\n    0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc,\n    0xfa, 0xfa, 0xfa, 0xfa, 0xfb, 0xfb, 0xfb, 0xfb, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9,\n    0xfa, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xfa, 0xfb, 0xfa, 0xfa, 0xf9, 0xf8, 0xf8, 0xf8, 0xf9, 0xf9,\n    0xf7, 0xf7, 0xf7, 0xf6, 0xf5, 0xf3, 0xf2, 0xf1, 0xf1, 0xef, 0xee, 0xed, 0xed, 0xed, 0xec, 0xeb,\n    0xed, 0xeb, 0xea, 0xe8, 0xe7, 0xe5, 0xe3, 0xe1, 0xdf, 0xdf, 0xe0, 0xe0, 0xe0, 0xe0, 0xdf, 0xdf,\n    0xdf, 0xdf, 0xdf, 0xde, 0xdd, 0xda, 0xd8, 0xd6, 0xd5, 0xd4, 0xd2, 0xd2, 0xd2, 0xd1, 0xd0, 0xce,\n    0xcb, 0xca, 0xc9, 0xc9, 0xc9, 0xca, 0xca, 0xcb, 0xc9, 0xca, 0xcc, 0xcd, 0xce, 0xce, 0xce, 0xce,\n    0xc9, 0xc8, 0xc7, 0xc6, 0xc6, 0xc5, 0xc4, 0xc2, 0xbd, 0xba, 0xba, 0xbd, 0xbf, 0xbf, 0xc0, 0xc2,\n    0xc2, 0xc3, 0xc2, 0xbf, 0xbd, 0xbb, 0xb6, 0xb1, 0xb2, 0xb3, 0xb5, 0xb6, 0xb7, 0xb9, 0xbc, 0xbe,\n    0xbd, 0xbf, 0xb9, 0xa8, 0x87, 0x6d, 0x73, 0x72, 0x76, 0x7d, 0x7c, 0x6f, 0x64, 0x66, 0x6f, 0x74,\n    0x7c, 0x88, 0x93, 0x96, 0x95, 0x97, 0x99, 0x99, 0x98, 0x98, 0x97, 0x96, 0x94, 0x92, 0x91, 0x90,\n    0x8f, 0x8e, 0x8d, 0x8c, 0x8c, 0x8c, 0x8c, 0x8c, 0x8d, 0x8c, 0x8b, 0x89, 0x87, 0x85, 0x84, 0x83,\n    0x83, 0x81, 0x7f, 0x7d, 0x7c, 0x7a, 0x78, 0x76, 0x73, 0x6d, 0x66, 0x61, 0x5c, 0x56, 0x4f, 0x49,\n    0x41, 0x3b, 0x32, 0x2c, 0x28, 0x25, 0x22, 0x20, 0x1c, 0x1d, 0x1c, 0x1b, 0x1f, 0x26, 0x2a, 0x28,\n    0x2e, 0x38, 0x3b, 0x34, 0x30, 0x34, 0x35, 0x30, 0x30, 0x2e, 0x33, 0x3b, 0x3d, 0x39, 0x39, 0x3e,\n    0x45, 0x3b, 0x3e, 0x53, 0x65, 0x67, 0x64, 0x65, 0x71, 0x70, 0x6b, 0x65, 0x5e, 0x5f, 0x69, 0x74,\n    0x76, 0x79, 0x7a, 0x77, 0x79, 0x7f, 0x83, 0x83, 0x74, 0x6f, 0x6f, 0x73, 0x73, 0x75, 0x84, 0x98,\n    0x82, 0x8d, 0x91, 0x91, 0x93, 0x92, 0x91, 0x95, 0x96, 0x98, 0xa1, 0xac, 0xb1, 0xa7, 0x88, 0x69,\n    0x57, 0x62, 0x81, 0xa1, 0x9e, 0x7b, 0x71, 0x88, 0x8b, 0x87, 0x95, 0xaa, 0xae, 0xa9, 0xa9, 0xab,\n    0x96, 0x93, 0x85, 0x6d, 0x58, 0x4f, 0x4a, 0x46, 0x3a, 0x4d, 0x5b, 0x59, 0x58, 0x60, 0x64, 0x62,\n    0x53, 0x51, 0x4e, 0x4a, 0x49, 0x4f, 0x60, 0x70, 0x77, 0x85, 0x90, 0x91, 0x89, 0x82, 0x7e, 0x7d,\n    0x4c, 0x53, 0x59, 0x5c, 0x61, 0x68, 0x69, 0x67, 0x62, 0x53, 0x51, 0x5c, 0x62, 0x64, 0x66, 0x64,\n    0x5d, 0x66, 0x6e, 0x6f, 0x6c, 0x6c, 0x73, 0x7b, 0x75, 0x68, 0x63, 0x64, 0x64, 0x67, 0x69, 0x66,\n    0x6a, 0x6a, 0x6d, 0x71, 0x78, 0x7f, 0x85, 0x88, 0x84, 0x86, 0x89, 0x88, 0x86, 0x82, 0x7f, 0x7e,\n    0x7c, 0x7f, 0x86, 0x8d, 0x8e, 0x87, 0x7b, 0x72, 0x69, 0x61, 0x62, 0x6e, 0x78, 0x79, 0x78, 0x7a,\n    0x79, 0x7d, 0x7c, 0x74, 0x6e, 0x6e, 0x6f, 0x6e, 0x68, 0x6b, 0x6b, 0x6d, 0x75, 0x7e, 0x80, 0x7c,\n    0x7f, 0x7c, 0x76, 0x71, 0x6e, 0x6e, 0x6f, 0x71, 0x77, 0x74, 0x70, 0x6f, 0x72, 0x74, 0x73, 0x70,\n    0x6f, 0x6c, 0x67, 0x62, 0x64, 0x6b, 0x73, 0x76, 0x79, 0x7c, 0x7e, 0x7e, 0x7b, 0x77, 0x74, 0x72,\n    0x74, 0x6e, 0x6a, 0x6b, 0x70, 0x74, 0x78, 0x7c, 0x78, 0x7c, 0x80, 0x82, 0x82, 0x81, 0x81, 0x81,\n    0x7f, 0x7e, 0x7d, 0x7b, 0x76, 0x72, 0x73, 0x77, 0x7a, 0x78, 0x78, 0x7a, 0x7c, 0x7e, 0x83, 0x89,\n    0x8e, 0x8f, 0x8d, 0x87, 0x83, 0x83, 0x83, 0x82, 0x84, 0x82, 0x7c, 0x75, 0x72, 0x74, 0x76, 0x76,\n    0x69, 0x69, 0x67, 0x68, 0x73, 0x81, 0x82, 0x7b, 0x6e, 0x6b, 0x66, 0x66, 0x6f, 0x79, 0x7a, 0x73,\n    0x7f, 0x83, 0x80, 0x92, 0xba, 0xc4, 0xb8, 0xb9, 0xb1, 0xac, 0xa5, 0x9f, 0x9b, 0x9e, 0xa9, 0xb5,\n    0xbc, 0xbe, 0xbc, 0xb8, 0xba, 0xc0, 0xc3, 0xc1, 0xc5, 0xc5, 0xc5, 0xc5, 0xc4, 0xc4, 0xc6, 0xc8,\n    0xc3, 0xc3, 0xc3, 0xc4, 0xc5, 0xc4, 0xc3, 0xc1, 0xbf, 0xbe, 0xbb, 0xb9, 0xb8, 0xb8, 0xb9, 0xba,\n    0xb8, 0xb8, 0xb8, 0xb7, 0xb4, 0xaf, 0xab, 0xa8, 0xa9, 0xa9, 0xaa, 0xac, 0xaf, 0xb0, 0xaf, 0xae,\n    0xaf, 0xb1, 0xb3, 0xb2, 0xb3, 0xb4, 0xb1, 0xae, 0xa9, 0xa9, 0xa7, 0xa6, 0xa5, 0xa0, 0x96, 0x8c,\n    0x89, 0x8a, 0x93, 0xa7, 0xb5, 0xb4, 0xb7, 0xc4, 0xf1, 0xfd, 0xfe, 0xf9, 0xfc, 0xfe, 0xfb, 0xfa,\n    0xfb, 0xfa, 0xf8, 0xf8, 0xf8, 0xfa, 0xfc, 0xfe, 0xfd, 0xfd, 0xfd, 0xfd, 0xfc, 0xfa, 0xf8, 0xf7,\n    0xf9, 0xf8, 0xf7, 0xf7, 0xf7, 0xf8, 0xfa, 0xfb, 0xf9, 0xfa, 0xfb, 0xfc, 0xfc, 0xfc, 0xfb, 0xfb,\n    0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfb, 0xfc, 0xfc, 0xfc, 0xfb, 0xfb, 0xfd, 0xfe,\n    0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xf9, 0xf9, 0xf9, 0xf8, 0xf8, 0xf9, 0xf9, 0xf9,\n    0xf9, 0xf9, 0xf8, 0xf8, 0xf8, 0xf9, 0xf9, 0xfa, 0xfa, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xfa, 0xfa,\n    0xf8, 0xf8, 0xf8, 0xf7, 0xf5, 0xf4, 0xf3, 0xf2, 0xf3, 0xf1, 0xef, 0xee, 0xee, 0xee, 0xed, 0xec,\n    0xeb, 0xea, 0xe9, 0xe9, 0xe8, 0xe8, 0xe6, 0xe4, 0xe1, 0xe1, 0xe1, 0xe1, 0xe1, 0xe0, 0xe0, 0xdf,\n    0xdf, 0xdf, 0xdf, 0xdf, 0xde, 0xdd, 0xdc, 0xdb, 0xd7, 0xd5, 0xd4, 0xd3, 0xd3, 0xd2, 0xd0, 0xcf,\n    0xcd, 0xcd, 0xce, 0xce, 0xce, 0xce, 0xce, 0xcd, 0xcc, 0xcd, 0xcf, 0xd0, 0xd1, 0xd0, 0xd0, 0xcf,\n    0xcb, 0xca, 0xca, 0xc9, 0xc9, 0xc8, 0xc5, 0xc3, 0xbd, 0xbb, 0xbb, 0xbe, 0xc1, 0xc1, 0xc2, 0xc3,\n    0xc4, 0xc4, 0xc3, 0xbf, 0xbd, 0xbb, 0xb7, 0xb2, 0xb2, 0xb4, 0xb6, 0xb7, 0xb8, 0xb9, 0xbb, 0xbd,\n    0xb7, 0xbe, 0xbf, 0xab, 0x8e, 0x73, 0x79, 0x73, 0x6f, 0x70, 0x6c, 0x64, 0x60, 0x65, 0x71, 0x79,\n    0x8b, 0x93, 0x97, 0x95, 0x97, 0x9c, 0x9a, 0x94, 0x97, 0x97, 0x96, 0x95, 0x93, 0x91, 0x90, 0x8f,\n    0x8f, 0x8e, 0x8c, 0x8b, 0x8a, 0x8a, 0x8a, 0x8a, 0x8b, 0x8a, 0x89, 0x87, 0x85, 0x83, 0x82, 0x81,\n    0x80, 0x7e, 0x7b, 0x79, 0x78, 0x76, 0x73, 0x71, 0x70, 0x6b, 0x64, 0x5e, 0x5a, 0x54, 0x4c, 0x46,\n    0x3f, 0x39, 0x30, 0x2a, 0x28, 0x26, 0x23, 0x20, 0x18, 0x16, 0x16, 0x1d, 0x2c, 0x38, 0x38, 0x32,\n    0x2d, 0x31, 0x2f, 0x29, 0x2c, 0x37, 0x3d, 0x3d, 0x3c, 0x35, 0x33, 0x38, 0x3a, 0x36, 0x35, 0x39,\n    0x28, 0x1a, 0x1b, 0x35, 0x55, 0x65, 0x67, 0x64, 0x66, 0x5f, 0x57, 0x57, 0x60, 0x6d, 0x77, 0x7c,\n    0x82, 0x7f, 0x78, 0x73, 0x77, 0x7b, 0x71, 0x62, 0x71, 0x7a, 0x88, 0x8a, 0x7d, 0x74, 0x85, 0x9e,\n    0xac, 0xac, 0xa0, 0x8e, 0x7d, 0x6c, 0x68, 0x70, 0x90, 0x9e, 0xa2, 0x9d, 0x91, 0x77, 0x5a, 0x4c,\n    0x64, 0x7d, 0x8d, 0x8b, 0x87, 0x85, 0x86, 0x8c, 0x95, 0x8d, 0x95, 0xa5, 0xa7, 0xa3, 0xa1, 0xa1,\n    0xae, 0xae, 0xaf, 0xae, 0xa1, 0x86, 0x67, 0x52, 0x54, 0x55, 0x58, 0x57, 0x4f, 0x49, 0x4e, 0x59,\n    0x54, 0x52, 0x53, 0x62, 0x81, 0x9c, 0xa4, 0x9f, 0x9c, 0x92, 0x83, 0x7a, 0x78, 0x75, 0x6c, 0x61,\n    0x4a, 0x52, 0x58, 0x5c, 0x64, 0x6f, 0x75, 0x74, 0x60, 0x55, 0x51, 0x55, 0x57, 0x5b, 0x5c, 0x57,\n    0x55, 0x5e, 0x65, 0x64, 0x5e, 0x5d, 0x65, 0x6d, 0x72, 0x67, 0x64, 0x65, 0x62, 0x62, 0x62, 0x5d,\n    0x60, 0x65, 0x6c, 0x70, 0x70, 0x6e, 0x6b, 0x6a, 0x6d, 0x73, 0x7a, 0x7d, 0x7c, 0x7a, 0x79, 0x79,\n    0x7d, 0x83, 0x89, 0x8b, 0x89, 0x84, 0x7d, 0x78, 0x70, 0x65, 0x63, 0x6f, 0x79, 0x78, 0x76, 0x78,\n    0x77, 0x7c, 0x7c, 0x75, 0x71, 0x72, 0x72, 0x6e, 0x66, 0x68, 0x6c, 0x73, 0x79, 0x7f, 0x81, 0x81,\n    0x84, 0x7f, 0x78, 0x72, 0x70, 0x72, 0x75, 0x78, 0x7d, 0x6e, 0x66, 0x6e, 0x78, 0x7a, 0x77, 0x75,\n    0x73, 0x71, 0x6b, 0x64, 0x61, 0x64, 0x67, 0x67, 0x70, 0x76, 0x7b, 0x7b, 0x76, 0x74, 0x75, 0x77,\n    0x74, 0x70, 0x6f, 0x72, 0x74, 0x72, 0x72, 0x73, 0x7a, 0x7c, 0x7f, 0x82, 0x83, 0x83, 0x84, 0x85,\n    0x82, 0x82, 0x83, 0x81, 0x7b, 0x77, 0x79, 0x7f, 0x7d, 0x7a, 0x78, 0x77, 0x76, 0x79, 0x81, 0x8a,\n    0x88, 0x8d, 0x90, 0x8e, 0x8a, 0x88, 0x87, 0x87, 0x81, 0x83, 0x82, 0x7c, 0x76, 0x72, 0x6f, 0x6d,\n    0x73, 0x73, 0x71, 0x6f, 0x74, 0x7b, 0x77, 0x6f, 0x6d, 0x6d, 0x6c, 0x70, 0x7b, 0x85, 0x81, 0x77,\n    0x7a, 0x85, 0x89, 0x9f, 0xbd, 0xb6, 0xa8, 0xb3, 0xaf, 0xa9, 0xa2, 0x9d, 0x9b, 0x9f, 0xab, 0xb6,\n    0xbc, 0xbf, 0xbf, 0xbb, 0xbc, 0xc2, 0xc4, 0xc2, 0xc5, 0xc6, 0xc7, 0xc7, 0xc6, 0xc6, 0xc6, 0xc7,\n    0xc3, 0xc2, 0xc2, 0xc3, 0xc4, 0xc4, 0xc2, 0xc1, 0xbd, 0xbc, 0xb9, 0xb6, 0xb5, 0xb5, 0xb6, 0xb7,\n    0xb9, 0xb9, 0xb8, 0xb6, 0xb4, 0xb1, 0xad, 0xab, 0xac, 0xab, 0xaa, 0xaa, 0xab, 0xac, 0xab, 0xab,\n    0xaf, 0xb2, 0xb2, 0xb0, 0xb0, 0xb2, 0xb3, 0xb2, 0xab, 0xab, 0xaa, 0xa7, 0xa5, 0xa3, 0x9c, 0x94,\n    0x89, 0x86, 0x8f, 0xa0, 0xab, 0xb1, 0xb3, 0xb1, 0xd9, 0xf4, 0xff, 0xf9, 0xf8, 0xfc, 0xfb, 0xf9,\n    0xfb, 0xfa, 0xf8, 0xf7, 0xf8, 0xfa, 0xfc, 0xfe, 0xfd, 0xfd, 0xfc, 0xfb, 0xfa, 0xf9, 0xf8, 0xf8,\n    0xfa, 0xf9, 0xf7, 0xf6, 0xf6, 0xf7, 0xf9, 0xfa, 0xf8, 0xf9, 0xfa, 0xfc, 0xfc, 0xfc, 0xfb, 0xfb,\n    0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfc, 0xfc, 0xfc, 0xfa, 0xfb, 0xfd, 0xfe,\n    0xfd, 0xfd, 0xfd, 0xfc, 0xfc, 0xfc, 0xfb, 0xfb, 0xf9, 0xf9, 0xf8, 0xf8, 0xf8, 0xf8, 0xf9, 0xf9,\n    0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf8,\n    0xf8, 0xf8, 0xf8, 0xf7, 0xf7, 0xf6, 0xf5, 0xf4, 0xf4, 0xf3, 0xf1, 0xf0, 0xf0, 0xf0, 0xef, 0xee,\n    0xeb, 0xea, 0xe9, 0xea, 0xea, 0xea, 0xe8, 0xe7, 0xe6, 0xe6, 0xe5, 0xe5, 0xe3, 0xe2, 0xe2, 0xe1,\n    0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdb, 0xd9, 0xd8, 0xd7, 0xd6, 0xd5, 0xd3, 0xd2,\n    0xd0, 0xd1, 0xd1, 0xd2, 0xd2, 0xd2, 0xd1, 0xd1, 0xd1, 0xd2, 0xd3, 0xd4, 0xd3, 0xd2, 0xd0, 0xcf,\n    0xce, 0xce, 0xcd, 0xcd, 0xcc, 0xca, 0xc7, 0xc5, 0xc0, 0xbe, 0xbe, 0xc1, 0xc3, 0xc2, 0xc3, 0xc4,\n    0xc3, 0xc4, 0xc2, 0xbe, 0xbc, 0xbb, 0xb8, 0xb4, 0xb2, 0xb4, 0xb7, 0xb9, 0xb9, 0xba, 0xbb, 0xbc,\n    0xb9, 0xbd, 0xbf, 0xaf, 0x9a, 0x7d, 0x81, 0x77, 0x77, 0x71, 0x6b, 0x6b, 0x70, 0x79, 0x86, 0x8f,\n    0x94, 0x94, 0x94, 0x95, 0x97, 0x99, 0x97, 0x95, 0x95, 0x95, 0x94, 0x93, 0x91, 0x90, 0x8e, 0x8d,\n    0x8e, 0x8d, 0x8b, 0x89, 0x88, 0x87, 0x87, 0x87, 0x87, 0x87, 0x85, 0x84, 0x82, 0x80, 0x7f, 0x7f,\n    0x7b, 0x79, 0x77, 0x75, 0x73, 0x71, 0x6e, 0x6c, 0x6b, 0x66, 0x60, 0x5b, 0x57, 0x51, 0x4a, 0x44,\n    0x3d, 0x36, 0x2e, 0x28, 0x27, 0x25, 0x22, 0x1f, 0x1b, 0x1a, 0x1e, 0x29, 0x3a, 0x46, 0x47, 0x42,\n    0x2f, 0x30, 0x2f, 0x2d, 0x33, 0x3e, 0x48, 0x4b, 0x3d, 0x34, 0x2e, 0x31, 0x35, 0x35, 0x33, 0x33,\n    0x2b, 0x2c, 0x2d, 0x2e, 0x30, 0x36, 0x40, 0x4a, 0x45, 0x4f, 0x5a, 0x5c, 0x58, 0x55, 0x58, 0x5d,\n    0x50, 0x51, 0x55, 0x5f, 0x6e, 0x7c, 0x81, 0x81, 0x80, 0x76, 0x71, 0x7c, 0x8a, 0x88, 0x6f, 0x56,\n    0x45, 0x44, 0x3e, 0x3b, 0x3b, 0x3f, 0x54, 0x71, 0x90, 0xa5, 0x9f, 0x89, 0x75, 0x5a, 0x4f, 0x62,\n    0x7c, 0x86, 0x8f, 0x8f, 0x80, 0x6d, 0x71, 0x89, 0x89, 0x85, 0x87, 0x88, 0x87, 0x8c, 0x91, 0x8d,\n    0x89, 0x7c, 0x71, 0x6f, 0x74, 0x7b, 0x82, 0x88, 0x7d, 0x7e, 0x84, 0x8a, 0x82, 0x71, 0x68, 0x69,\n    0x7e, 0x97, 0xac, 0xad, 0xa7, 0xa2, 0x97, 0x8a, 0x7f, 0x86, 0x8a, 0x87, 0x85, 0x88, 0x8e, 0x93,\n    0x4a, 0x50, 0x53, 0x54, 0x5c, 0x68, 0x6f, 0x6e, 0x64, 0x60, 0x5d, 0x5a, 0x5a, 0x63, 0x65, 0x5b,\n    0x68, 0x68, 0x65, 0x61, 0x5f, 0x60, 0x64, 0x68, 0x6b, 0x68, 0x6a, 0x68, 0x5e, 0x58, 0x59, 0x59,\n    0x56, 0x5b, 0x62, 0x65, 0x66, 0x6a, 0x72, 0x78, 0x74, 0x79, 0x7e, 0x7f, 0x7c, 0x7a, 0x7a, 0x7c,\n    0x77, 0x82, 0x8c, 0x90, 0x8c, 0x84, 0x7d, 0x78, 0x6e, 0x63, 0x61, 0x70, 0x7a, 0x76, 0x6f, 0x6f,\n    0x73, 0x79, 0x7a, 0x75, 0x72, 0x74, 0x73, 0x6e, 0x6a, 0x6d, 0x76, 0x80, 0x85, 0x83, 0x82, 0x82,\n    0x81, 0x7c, 0x74, 0x6f, 0x6e, 0x72, 0x77, 0x7b, 0x6b, 0x63, 0x63, 0x6d, 0x70, 0x6a, 0x69, 0x6f,\n    0x75, 0x74, 0x6f, 0x68, 0x64, 0x63, 0x62, 0x60, 0x66, 0x6a, 0x6e, 0x70, 0x73, 0x77, 0x79, 0x79,\n    0x7c, 0x7b, 0x7f, 0x84, 0x83, 0x7a, 0x71, 0x6d, 0x7b, 0x7d, 0x81, 0x85, 0x86, 0x84, 0x83, 0x83,\n    0x83, 0x84, 0x85, 0x82, 0x7b, 0x75, 0x76, 0x7b, 0x7c, 0x7a, 0x78, 0x75, 0x73, 0x76, 0x82, 0x8e,\n    0x93, 0x92, 0x8b, 0x80, 0x77, 0x76, 0x7d, 0x83, 0x88, 0x8e, 0x91, 0x8c, 0x83, 0x7b, 0x74, 0x6f,\n    0x6f, 0x6b, 0x6c, 0x72, 0x6f, 0x66, 0x63, 0x68, 0x71, 0x77, 0x7b, 0x79, 0x7a, 0x7f, 0x7d, 0x77,\n    0x76, 0x7c, 0x7f, 0x9c, 0xc2, 0xb9, 0xa5, 0xae, 0xa7, 0xa3, 0x9e, 0x9d, 0xa0, 0xa7, 0xb4, 0xbf,\n    0xbb, 0xc0, 0xc2, 0xbf, 0xbf, 0xc3, 0xc5, 0xc3, 0xc4, 0xc6, 0xc7, 0xc7, 0xc5, 0xc3, 0xc1, 0xc1,\n    0xc2, 0xc1, 0xc0, 0xc1, 0xc1, 0xc1, 0xc1, 0xc0, 0xbc, 0xbb, 0xb9, 0xb7, 0xb6, 0xb7, 0xb9, 0xba,\n    0xbc, 0xbc, 0xba, 0xb8, 0xb6, 0xb3, 0xb2, 0xb1, 0xb1, 0xaf, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad,\n    0xb4, 0xb5, 0xb4, 0xb0, 0xae, 0xb0, 0xb3, 0xb5, 0xaf, 0xb0, 0xad, 0xa8, 0xa6, 0xa4, 0x9e, 0x96,\n    0x8b, 0x86, 0x90, 0x9e, 0xa6, 0xb3, 0xb8, 0xaf, 0xc2, 0xe8, 0xfd, 0xf7, 0xf4, 0xf9, 0xfb, 0xfa,\n    0xfb, 0xfa, 0xf8, 0xf7, 0xf7, 0xfa, 0xfc, 0xfe, 0xfe, 0xfc, 0xfa, 0xf8, 0xf8, 0xf8, 0xf9, 0xfa,\n    0xfa, 0xf9, 0xf7, 0xf5, 0xf5, 0xf6, 0xf7, 0xf9, 0xf8, 0xf9, 0xfb, 0xfc, 0xfd, 0xfc, 0xfc, 0xfb,\n    0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfb, 0xfc, 0xfd, 0xfb, 0xfa, 0xfa, 0xfc, 0xfe,\n    0xfd, 0xfd, 0xfd, 0xfc, 0xfc, 0xfb, 0xfb, 0xfb, 0xf9, 0xf9, 0xf8, 0xf8, 0xf8, 0xf8, 0xf9, 0xf9,\n    0xf9, 0xf9, 0xfa, 0xfa, 0xfa, 0xf9, 0xf9, 0xf8, 0xf8, 0xf9, 0xf9, 0xf9, 0xf9, 0xf8, 0xf7, 0xf6,\n    0xf7, 0xf7, 0xf8, 0xf8, 0xf8, 0xf8, 0xf7, 0xf7, 0xf4, 0xf3, 0xf1, 0xf1, 0xf1, 0xf1, 0xf1, 0xf0,\n    0xec, 0xeb, 0xea, 0xeb, 0xeb, 0xeb, 0xea, 0xe8, 0xe9, 0xe8, 0xe7, 0xe5, 0xe4, 0xe2, 0xe2, 0xe1,\n    0xdc, 0xdb, 0xda, 0xda, 0xda, 0xdc, 0xdd, 0xde, 0xe0, 0xde, 0xdd, 0xdc, 0xdb, 0xda, 0xd8, 0xd7,\n    0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd2, 0xd3, 0xd3, 0xd3, 0xd1, 0xcf, 0xcc, 0xcb,\n    0xd1, 0xd0, 0xd0, 0xd0, 0xcf, 0xcc, 0xc9, 0xc6, 0xc3, 0xc0, 0xc0, 0xc2, 0xc4, 0xc3, 0xc3, 0xc4,\n    0xc1, 0xc1, 0xbf, 0xbc, 0xbb, 0xbb, 0xb8, 0xb4, 0xb3, 0xb5, 0xb8, 0xba, 0xbb, 0xbb, 0xbb, 0xbc,\n    0xc2, 0xbb, 0xbb, 0xb2, 0xa7, 0x8a, 0x89, 0x7a, 0x7c, 0x72, 0x6b, 0x70, 0x7a, 0x83, 0x8c, 0x94,\n    0x97, 0x95, 0x98, 0x9b, 0x98, 0x93, 0x95, 0x9c, 0x93, 0x93, 0x92, 0x91, 0x90, 0x8e, 0x8d, 0x8c,\n    0x8e, 0x8c, 0x8a, 0x88, 0x86, 0x85, 0x85, 0x85, 0x84, 0x84, 0x83, 0x81, 0x80, 0x7e, 0x7d, 0x7d,\n    0x76, 0x75, 0x73, 0x71, 0x70, 0x6e, 0x6b, 0x68, 0x66, 0x62, 0x5c, 0x59, 0x56, 0x51, 0x4a, 0x44,\n    0x3b, 0x34, 0x2c, 0x27, 0x26, 0x25, 0x21, 0x1e, 0x1c, 0x1f, 0x23, 0x27, 0x29, 0x2b, 0x2b, 0x2a,\n    0x24, 0x2d, 0x39, 0x43, 0x48, 0x4b, 0x4c, 0x4c, 0x40, 0x3c, 0x3b, 0x42, 0x47, 0x43, 0x38, 0x2f,\n    0x39, 0x30, 0x28, 0x26, 0x27, 0x26, 0x27, 0x29, 0x39, 0x37, 0x36, 0x39, 0x3d, 0x3b, 0x31, 0x26,\n    0x3b, 0x50, 0x71, 0x89, 0x89, 0x79, 0x6d, 0x6c, 0x7b, 0x8c, 0x8e, 0x75, 0x56, 0x40, 0x2e, 0x20,\n    0x25, 0x22, 0x20, 0x25, 0x30, 0x3f, 0x62, 0x8b, 0xa6, 0xa7, 0x83, 0x61, 0x5a, 0x4d, 0x4f, 0x71,\n    0x7a, 0x88, 0x8b, 0x82, 0x7b, 0x74, 0x6d, 0x6b, 0x6f, 0x78, 0x7b, 0x6f, 0x62, 0x60, 0x58, 0x45,\n    0x46, 0x3c, 0x2e, 0x2e, 0x46, 0x66, 0x79, 0x7c, 0x78, 0x79, 0x7b, 0x7f, 0x89, 0x96, 0x9e, 0xa0,\n    0xa4, 0x9b, 0x9d, 0xa5, 0x9f, 0x8e, 0x8b, 0x96, 0x8d, 0x8e, 0x8f, 0x91, 0x98, 0xa4, 0xad, 0xb0,\n    0x48, 0x46, 0x46, 0x49, 0x4c, 0x51, 0x5c, 0x67, 0x65, 0x64, 0x69, 0x6f, 0x66, 0x57, 0x57, 0x62,\n    0x65, 0x5b, 0x56, 0x5a, 0x5a, 0x57, 0x5b, 0x64, 0x61, 0x5e, 0x5b, 0x5a, 0x5c, 0x5d, 0x5e, 0x5d,\n    0x5e, 0x68, 0x6e, 0x6a, 0x66, 0x6b, 0x75, 0x7c, 0x83, 0x85, 0x80, 0x77, 0x72, 0x76, 0x7f, 0x83,\n    0x8b, 0x8e, 0x8c, 0x84, 0x7c, 0x78, 0x77, 0x76, 0x73, 0x74, 0x73, 0x6e, 0x6b, 0x6a, 0x6c, 0x6c,\n    0x76, 0x78, 0x76, 0x72, 0x74, 0x78, 0x77, 0x70, 0x75, 0x77, 0x79, 0x7b, 0x7c, 0x7d, 0x80, 0x82,\n    0x7c, 0x76, 0x74, 0x7b, 0x80, 0x7d, 0x76, 0x71, 0x6f, 0x6f, 0x6d, 0x6b, 0x68, 0x67, 0x69, 0x6b,\n    0x69, 0x65, 0x60, 0x5e, 0x62, 0x66, 0x64, 0x5e, 0x62, 0x62, 0x68, 0x71, 0x75, 0x74, 0x73, 0x75,\n    0x75, 0x76, 0x79, 0x7a, 0x78, 0x73, 0x71, 0x71, 0x7a, 0x73, 0x76, 0x84, 0x8e, 0x8a, 0x80, 0x79,\n    0x78, 0x7b, 0x7f, 0x7f, 0x7b, 0x78, 0x76, 0x77, 0x78, 0x79, 0x78, 0x74, 0x70, 0x71, 0x79, 0x82,\n    0x8e, 0x8d, 0x8a, 0x83, 0x7e, 0x7d, 0x81, 0x85, 0x84, 0x87, 0x8c, 0x91, 0x90, 0x88, 0x7b, 0x72,\n    0x68, 0x65, 0x68, 0x6c, 0x67, 0x5c, 0x5b, 0x61, 0x71, 0x77, 0x7a, 0x77, 0x72, 0x71, 0x6f, 0x6c,\n    0x71, 0x76, 0x77, 0x9e, 0xbf, 0xb4, 0xaa, 0xa4, 0x9e, 0xa2, 0xa1, 0x9d, 0xa2, 0xb0, 0xb9, 0xba,\n    0xbc, 0xc0, 0xc3, 0xc2, 0xc2, 0xc5, 0xc6, 0xc7, 0xc6, 0xc6, 0xc7, 0xc7, 0xc5, 0xc3, 0xc0, 0xbf,\n    0xc3, 0xc3, 0xc4, 0xc3, 0xc2, 0xc0, 0xbd, 0xbc, 0xbd, 0xbd, 0xbc, 0xbb, 0xba, 0xb9, 0xb9, 0xb8,\n    0xb9, 0xb6, 0xb4, 0xb4, 0xb5, 0xb5, 0xb3, 0xb1, 0xac, 0xb0, 0xb2, 0xae, 0xac, 0xac, 0xaa, 0xa7,\n    0xab, 0xb2, 0xb8, 0xb9, 0xb4, 0xaf, 0xad, 0xad, 0xb1, 0xad, 0xaa, 0xa9, 0xa9, 0xa6, 0x9f, 0x99,\n    0x8e, 0x8a, 0x8e, 0x94, 0xad, 0xaf, 0xb7, 0xbb, 0xae, 0xe0, 0xf4, 0xfd, 0xf7, 0xf9, 0xf2, 0xff,\n    0xfb, 0xfb, 0xfa, 0xf8, 0xf6, 0xf6, 0xf8, 0xfa, 0xfb, 0xfb, 0xfb, 0xfb, 0xfa, 0xfa, 0xfa, 0xf9,\n    0xf5, 0xf4, 0xf3, 0xf3, 0xf5, 0xf7, 0xf9, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfa,\n    0xf8, 0xf9, 0xfb, 0xfc, 0xfc, 0xfc, 0xfa, 0xfa, 0xfc, 0xfb, 0xfa, 0xfa, 0xfa, 0xfb, 0xfc, 0xfd,\n    0xff, 0xfe, 0xfc, 0xfb, 0xfa, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xfa, 0xfa, 0xfb, 0xfb, 0xfc, 0xfc,\n    0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xf9, 0xf9, 0xf7, 0xf8, 0xf8, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9,\n    0xf6, 0xf6, 0xf5, 0xf6, 0xf7, 0xf7, 0xf6, 0xf5, 0xf5, 0xf5, 0xf3, 0xf2, 0xf0, 0xef, 0xef, 0xee,\n    0xee, 0xed, 0xec, 0xed, 0xee, 0xed, 0xea, 0xe8, 0xe7, 0xe8, 0xe8, 0xe7, 0xe4, 0xe0, 0xdd, 0xdc,\n    0xdc, 0xdb, 0xda, 0xda, 0xda, 0xda, 0xdb, 0xdc, 0xe0, 0xe0, 0xdf, 0xde, 0xdc, 0xda, 0xd8, 0xd7,\n    0xd7, 0xd7, 0xd7, 0xd7, 0xd7, 0xd7, 0xd6, 0xd6, 0xd6, 0xd4, 0xd2, 0xd1, 0xd0, 0xd0, 0xce, 0xcd,\n    0xd0, 0xcf, 0xce, 0xcd, 0xcd, 0xcb, 0xc9, 0xc7, 0xc4, 0xc3, 0xc3, 0xc2, 0xc1, 0xc3, 0xc5, 0xc7,\n    0xc5, 0xc2, 0xbf, 0xbe, 0xbd, 0xbc, 0xb8, 0xb6, 0xb5, 0xb5, 0xb4, 0xb5, 0xb7, 0xb8, 0xb8, 0xb8,\n    0xbc, 0xbc, 0xba, 0xb3, 0xa1, 0x8b, 0x7d, 0x78, 0x6e, 0x67, 0x6a, 0x7b, 0x8c, 0x94, 0x97, 0x9a,\n    0x98, 0x97, 0x97, 0x96, 0x96, 0x95, 0x95, 0x94, 0x94, 0x92, 0x90, 0x8f, 0x8f, 0x8e, 0x8c, 0x8b,\n    0x88, 0x88, 0x87, 0x86, 0x85, 0x84, 0x83, 0x83, 0x81, 0x80, 0x7f, 0x7f, 0x7e, 0x7c, 0x79, 0x76,\n    0x76, 0x74, 0x71, 0x6e, 0x6c, 0x69, 0x66, 0x64, 0x63, 0x5e, 0x58, 0x54, 0x51, 0x4c, 0x44, 0x3e,\n    0x3a, 0x32, 0x2a, 0x26, 0x25, 0x24, 0x21, 0x1f, 0x22, 0x2a, 0x2d, 0x28, 0x24, 0x27, 0x2d, 0x31,\n    0x26, 0x2c, 0x39, 0x4a, 0x55, 0x55, 0x4e, 0x48, 0x3d, 0x38, 0x36, 0x36, 0x32, 0x2d, 0x2f, 0x36,\n    0x33, 0x33, 0x31, 0x2c, 0x28, 0x26, 0x24, 0x23, 0x20, 0x22, 0x28, 0x2f, 0x35, 0x40, 0x56, 0x6a,\n    0x81, 0x87, 0x86, 0x77, 0x67, 0x69, 0x7b, 0x8c, 0x7f, 0x66, 0x42, 0x2d, 0x27, 0x24, 0x29, 0x36,\n    0x33, 0x2e, 0x3f, 0x60, 0x6d, 0x6d, 0x86, 0xab, 0x97, 0x63, 0x5f, 0x6f, 0x55, 0x51, 0x7b, 0x9b,\n    0xa6, 0x84, 0x79, 0x73, 0x6b, 0x5a, 0x44, 0x4c, 0x4e, 0x4c, 0x44, 0x34, 0x23, 0x1f, 0x2c, 0x3c,\n    0x47, 0x52, 0x5d, 0x64, 0x61, 0x51, 0x45, 0x49, 0x6d, 0x88, 0x95, 0x97, 0x9f, 0xa2, 0x9f, 0xa1,\n    0xa4, 0x9f, 0x94, 0x8c, 0x92, 0x9e, 0xa4, 0xa1, 0xa9, 0xa6, 0xa2, 0xa0, 0xa1, 0x9e, 0x94, 0x89,\n    0x3e, 0x40, 0x45, 0x4a, 0x4e, 0x51, 0x5a, 0x63, 0x6b, 0x6c, 0x6b, 0x69, 0x64, 0x61, 0x62, 0x65,\n    0x5d, 0x55, 0x4d, 0x4c, 0x50, 0x55, 0x58, 0x59, 0x55, 0x54, 0x55, 0x58, 0x5b, 0x5d, 0x5d, 0x5c,\n    0x5c, 0x63, 0x68, 0x69, 0x6b, 0x6e, 0x6e, 0x6c, 0x78, 0x7c, 0x7d, 0x78, 0x74, 0x74, 0x73, 0x72,\n    0x76, 0x7a, 0x7a, 0x73, 0x6c, 0x6d, 0x72, 0x77, 0x71, 0x6f, 0x6b, 0x69, 0x6a, 0x6d, 0x6e, 0x6d,\n    0x6c, 0x70, 0x70, 0x6f, 0x73, 0x79, 0x79, 0x73, 0x71, 0x74, 0x78, 0x7a, 0x78, 0x76, 0x76, 0x77,\n    0x79, 0x7a, 0x7f, 0x85, 0x86, 0x7f, 0x77, 0x74, 0x70, 0x6f, 0x6d, 0x69, 0x66, 0x65, 0x67, 0x69,\n    0x70, 0x6d, 0x66, 0x5d, 0x5b, 0x60, 0x68, 0x6c, 0x69, 0x6b, 0x6b, 0x6b, 0x6d, 0x71, 0x74, 0x74,\n    0x73, 0x73, 0x72, 0x71, 0x6f, 0x6e, 0x70, 0x72, 0x79, 0x73, 0x75, 0x80, 0x89, 0x87, 0x81, 0x7e,\n    0x7a, 0x80, 0x86, 0x86, 0x81, 0x79, 0x74, 0x72, 0x6e, 0x70, 0x72, 0x72, 0x71, 0x70, 0x72, 0x76,\n    0x7d, 0x83, 0x87, 0x82, 0x79, 0x77, 0x80, 0x8a, 0x84, 0x82, 0x81, 0x80, 0x7e, 0x7b, 0x75, 0x71,\n    0x6d, 0x6b, 0x68, 0x65, 0x63, 0x64, 0x69, 0x6e, 0x70, 0x76, 0x7a, 0x79, 0x77, 0x79, 0x7a, 0x79,\n    0x73, 0x77, 0x7a, 0xa0, 0xbd, 0xaf, 0xa1, 0x9d, 0x9f, 0xa3, 0xa3, 0xa0, 0xa5, 0xb2, 0xba, 0xbb,\n    0xbd, 0xc1, 0xc4, 0xc4, 0xc5, 0xc7, 0xc8, 0xc8, 0xc7, 0xc7, 0xc7, 0xc6, 0xc5, 0xc3, 0xc1, 0xc0,\n    0xc0, 0xc1, 0xc3, 0xc3, 0xc2, 0xc0, 0xbd, 0xbb, 0xbd, 0xbd, 0xbc, 0xbb, 0xba, 0xb9, 0xb9, 0xb8,\n    0xb7, 0xb4, 0xb2, 0xb1, 0xb1, 0xb0, 0xad, 0xaa, 0xae, 0xb3, 0xb5, 0xb1, 0xad, 0xac, 0xac, 0xab,\n    0xab, 0xae, 0xb2, 0xb5, 0xb6, 0xb5, 0xb2, 0xb1, 0xae, 0xab, 0xa9, 0xa8, 0xa8, 0xa4, 0x9c, 0x96,\n    0x8f, 0x8b, 0x8d, 0x90, 0xa8, 0xab, 0xb5, 0xbb, 0xaf, 0xc5, 0xef, 0xf7, 0xfb, 0xfb, 0xf2, 0xfa,\n    0xf8, 0xf9, 0xf9, 0xf9, 0xf8, 0xf7, 0xf8, 0xf9, 0xfc, 0xfc, 0xfb, 0xfb, 0xfa, 0xfa, 0xf9, 0xf9,\n    0xf3, 0xf3, 0xf2, 0xf3, 0xf4, 0xf7, 0xf9, 0xfb, 0xfa, 0xfa, 0xfa, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb,\n    0xfa, 0xfa, 0xfb, 0xfc, 0xfc, 0xfb, 0xfa, 0xfa, 0xfc, 0xfb, 0xfb, 0xfa, 0xfa, 0xfb, 0xfc, 0xfd,\n    0xfd, 0xfd, 0xfc, 0xfb, 0xfa, 0xfb, 0xfb, 0xfb, 0xfc, 0xfc, 0xfc, 0xfc, 0xfd, 0xfd, 0xfd, 0xfd,\n    0xfc, 0xfc, 0xfc, 0xfc, 0xfb, 0xfb, 0xfb, 0xfb, 0xf9, 0xf9, 0xf9, 0xfa, 0xfa, 0xfa, 0xf9, 0xf9,\n    0xf7, 0xf7, 0xf6, 0xf6, 0xf6, 0xf6, 0xf4, 0xf3, 0xf4, 0xf3, 0xf2, 0xf0, 0xef, 0xee, 0xed, 0xed,\n    0xee, 0xed, 0xec, 0xec, 0xec, 0xeb, 0xe8, 0xe6, 0xe6, 0xe6, 0xe6, 0xe5, 0xe3, 0xe1, 0xdf, 0xde,\n    0xde, 0xdd, 0xdb, 0xda, 0xda, 0xdb, 0xdd, 0xde, 0xde, 0xde, 0xde, 0xdd, 0xdc, 0xdb, 0xd9, 0xd8,\n    0xdb, 0xdb, 0xdb, 0xda, 0xd9, 0xd8, 0xd7, 0xd7, 0xd6, 0xd4, 0xd2, 0xd1, 0xd1, 0xd0, 0xcf, 0xce,\n    0xcf, 0xce, 0xcd, 0xcd, 0xcc, 0xcb, 0xc8, 0xc6, 0xc2, 0xc2, 0xc1, 0xc0, 0xc0, 0xc2, 0xc4, 0xc5,\n    0xc5, 0xc3, 0xc1, 0xc1, 0xc1, 0xbe, 0xba, 0xb7, 0xb6, 0xb5, 0xb4, 0xb5, 0xb7, 0xb9, 0xb9, 0xb9,\n    0xbd, 0xbc, 0xba, 0xb1, 0x9f, 0x8b, 0x7d, 0x7a, 0x73, 0x72, 0x7b, 0x8b, 0x96, 0x97, 0x97, 0x99,\n    0x98, 0x98, 0x98, 0x97, 0x96, 0x96, 0x95, 0x95, 0x94, 0x93, 0x91, 0x90, 0x8f, 0x8e, 0x8d, 0x8b,\n    0x88, 0x87, 0x86, 0x85, 0x84, 0x82, 0x82, 0x81, 0x7f, 0x7e, 0x7d, 0x7d, 0x7c, 0x7a, 0x77, 0x75,\n    0x73, 0x71, 0x6e, 0x6b, 0x68, 0x66, 0x63, 0x60, 0x5d, 0x58, 0x52, 0x4e, 0x4c, 0x48, 0x41, 0x3c,\n    0x36, 0x32, 0x2f, 0x2b, 0x25, 0x1d, 0x1b, 0x1c, 0x21, 0x33, 0x44, 0x4f, 0x5b, 0x66, 0x63, 0x58,\n    0x4d, 0x40, 0x36, 0x3a, 0x47, 0x51, 0x51, 0x4c, 0x3f, 0x3c, 0x3f, 0x48, 0x4b, 0x47, 0x46, 0x48,\n    0x42, 0x3a, 0x33, 0x30, 0x31, 0x2e, 0x28, 0x23, 0x2a, 0x2a, 0x2f, 0x3a, 0x46, 0x51, 0x59, 0x5f,\n    0x63, 0x60, 0x60, 0x67, 0x72, 0x76, 0x6a, 0x5a, 0x4d, 0x5c, 0x5b, 0x55, 0x67, 0x7f, 0x82, 0x78,\n    0x69, 0x76, 0x70, 0x5e, 0x66, 0x7f, 0x7f, 0x67, 0x42, 0x64, 0x7c, 0x6b, 0x50, 0x55, 0x6a, 0x71,\n    0x80, 0x67, 0x56, 0x44, 0x42, 0x46, 0x3b, 0x3a, 0x3a, 0x43, 0x4e, 0x4f, 0x49, 0x49, 0x55, 0x63,\n    0x69, 0x63, 0x53, 0x49, 0x50, 0x5f, 0x6e, 0x7d, 0x84, 0x8e, 0x97, 0xa2, 0xa7, 0x99, 0x93, 0x9e,\n    0x98, 0x9e, 0xa7, 0xad, 0xaa, 0x9e, 0x8e, 0x85, 0x7d, 0x86, 0x83, 0x72, 0x6a, 0x74, 0x7c, 0x7c,\n    0x42, 0x46, 0x4e, 0x56, 0x5b, 0x60, 0x67, 0x6e, 0x65, 0x68, 0x64, 0x5c, 0x5d, 0x67, 0x69, 0x63,\n    0x69, 0x66, 0x60, 0x5c, 0x5e, 0x60, 0x58, 0x4d, 0x5b, 0x5c, 0x5d, 0x60, 0x62, 0x63, 0x62, 0x60,\n    0x60, 0x61, 0x63, 0x6a, 0x72, 0x77, 0x73, 0x6c, 0x69, 0x6d, 0x72, 0x74, 0x76, 0x76, 0x73, 0x6f,\n    0x74, 0x77, 0x75, 0x6b, 0x62, 0x63, 0x6b, 0x72, 0x6d, 0x69, 0x65, 0x66, 0x6a, 0x6c, 0x6a, 0x66,\n    0x62, 0x65, 0x68, 0x69, 0x6e, 0x74, 0x73, 0x6e, 0x6a, 0x70, 0x77, 0x79, 0x76, 0x72, 0x70, 0x71,\n    0x6f, 0x74, 0x7c, 0x7f, 0x79, 0x71, 0x6d, 0x6e, 0x72, 0x70, 0x6c, 0x68, 0x65, 0x65, 0x67, 0x69,\n    0x69, 0x6e, 0x6d, 0x63, 0x5a, 0x5b, 0x65, 0x6d, 0x75, 0x76, 0x72, 0x6a, 0x6a, 0x70, 0x72, 0x6e,\n    0x77, 0x75, 0x73, 0x70, 0x6e, 0x6d, 0x6d, 0x6d, 0x75, 0x71, 0x72, 0x79, 0x7e, 0x7c, 0x7b, 0x7c,\n    0x81, 0x87, 0x8d, 0x8c, 0x85, 0x7c, 0x75, 0x73, 0x77, 0x76, 0x77, 0x7a, 0x79, 0x72, 0x6c, 0x69,\n    0x80, 0x89, 0x90, 0x8d, 0x83, 0x7c, 0x7d, 0x81, 0x83, 0x7f, 0x79, 0x74, 0x71, 0x71, 0x71, 0x71,\n    0x78, 0x78, 0x72, 0x6a, 0x68, 0x6d, 0x70, 0x70, 0x67, 0x69, 0x6b, 0x6b, 0x6d, 0x71, 0x73, 0x72,\n    0x7b, 0x7d, 0x80, 0xa3, 0xbd, 0xae, 0xa0, 0x9f, 0xa0, 0xa2, 0xa2, 0xa3, 0xaa, 0xb5, 0xbc, 0xbc,\n    0xc0, 0xc4, 0xc7, 0xc8, 0xc9, 0xca, 0xca, 0xc9, 0xc8, 0xc7, 0xc7, 0xc5, 0xc4, 0xc3, 0xc2, 0xc2,\n    0xc0, 0xc1, 0xc3, 0xc4, 0xc3, 0xc1, 0xbe, 0xbc, 0xbe, 0xbe, 0xbd, 0xbc, 0xbb, 0xbb, 0xba, 0xba,\n    0xb0, 0xae, 0xab, 0xa9, 0xa9, 0xa7, 0xa4, 0xa2, 0xae, 0xb3, 0xb5, 0xb3, 0xb0, 0xb0, 0xb1, 0xb2,\n    0xae, 0xad, 0xae, 0xb2, 0xb8, 0xbb, 0xb9, 0xb6, 0xae, 0xac, 0xaa, 0xaa, 0xa9, 0xa5, 0x9d, 0x97,\n    0x90, 0x8b, 0x8c, 0x8d, 0xa4, 0xa9, 0xb3, 0xb9, 0xb2, 0xa8, 0xe0, 0xef, 0xfa, 0xf9, 0xf2, 0xf6,\n    0xf5, 0xf7, 0xf9, 0xfa, 0xfa, 0xf9, 0xf8, 0xf8, 0xfc, 0xfc, 0xfc, 0xfb, 0xfb, 0xfa, 0xf9, 0xf8,\n    0xf4, 0xf4, 0xf3, 0xf4, 0xf5, 0xf8, 0xfa, 0xfc, 0xfa, 0xfa, 0xfa, 0xfb, 0xfb, 0xfb, 0xfc, 0xfc,\n    0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfc, 0xfb, 0xfb, 0xfa, 0xfb, 0xfb, 0xfc, 0xfd,\n    0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfc, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfc, 0xfc, 0xfc,\n    0xfd, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfa, 0xf9, 0xf9,\n    0xf9, 0xf8, 0xf7, 0xf6, 0xf6, 0xf5, 0xf3, 0xf2, 0xf3, 0xf2, 0xf1, 0xf0, 0xee, 0xee, 0xed, 0xed,\n    0xec, 0xeb, 0xeb, 0xeb, 0xea, 0xe9, 0xe7, 0xe5, 0xe5, 0xe5, 0xe4, 0xe3, 0xe3, 0xe2, 0xe1, 0xe0,\n    0xe1, 0xe0, 0xde, 0xdd, 0xdd, 0xde, 0xe0, 0xe1, 0xdd, 0xdd, 0xde, 0xdd, 0xdd, 0xdc, 0xdc, 0xdb,\n    0xdf, 0xde, 0xde, 0xdd, 0xdc, 0xda, 0xd9, 0xd8, 0xd6, 0xd4, 0xd3, 0xd2, 0xd2, 0xd1, 0xd0, 0xcf,\n    0xcf, 0xce, 0xcd, 0xcc, 0xcb, 0xca, 0xc7, 0xc5, 0xc1, 0xc1, 0xc0, 0xbf, 0xc0, 0xc1, 0xc2, 0xc3,\n    0xc3, 0xc2, 0xc2, 0xc2, 0xc2, 0xc0, 0xbb, 0xb7, 0xb5, 0xb4, 0xb4, 0xb5, 0xb7, 0xb9, 0xb9, 0xb9,\n    0xbd, 0xbc, 0xb8, 0xae, 0x9c, 0x8a, 0x80, 0x7e, 0x7f, 0x83, 0x8d, 0x99, 0x9c, 0x99, 0x98, 0x9a,\n    0x98, 0x98, 0x97, 0x96, 0x95, 0x95, 0x94, 0x94, 0x93, 0x92, 0x90, 0x8f, 0x8e, 0x8d, 0x8c, 0x8a,\n    0x87, 0x87, 0x85, 0x84, 0x82, 0x80, 0x7f, 0x7e, 0x7c, 0x7b, 0x7a, 0x7a, 0x79, 0x78, 0x75, 0x73,\n    0x6f, 0x6d, 0x6a, 0x67, 0x64, 0x62, 0x5e, 0x5c, 0x57, 0x52, 0x4c, 0x48, 0x46, 0x43, 0x3e, 0x3a,\n    0x32, 0x31, 0x32, 0x30, 0x26, 0x20, 0x28, 0x36, 0x57, 0x70, 0x82, 0x81, 0x7d, 0x7c, 0x71, 0x62,\n    0x4b, 0x44, 0x40, 0x46, 0x53, 0x5b, 0x5a, 0x54, 0x5f, 0x60, 0x62, 0x60, 0x55, 0x48, 0x43, 0x45,\n    0x44, 0x3d, 0x39, 0x39, 0x36, 0x2d, 0x23, 0x1f, 0x27, 0x2f, 0x34, 0x30, 0x2c, 0x30, 0x3a, 0x43,\n    0x49, 0x4a, 0x55, 0x62, 0x5b, 0x42, 0x31, 0x2f, 0x3f, 0x5a, 0x76, 0x84, 0x7e, 0x69, 0x5e, 0x63,\n    0x5b, 0x4a, 0x44, 0x51, 0x5b, 0x55, 0x4b, 0x48, 0x69, 0x87, 0x73, 0x43, 0x3f, 0x53, 0x53, 0x49,\n    0x3d, 0x43, 0x4d, 0x46, 0x3f, 0x3c, 0x30, 0x2c, 0x43, 0x3b, 0x3e, 0x52, 0x66, 0x62, 0x48, 0x30,\n    0x23, 0x30, 0x3d, 0x50, 0x70, 0x84, 0x83, 0x7c, 0x89, 0x91, 0x8d, 0x86, 0x8a, 0x93, 0x9b, 0xa5,\n    0xa5, 0x99, 0x8e, 0x86, 0x79, 0x69, 0x62, 0x63, 0x6b, 0x5c, 0x56, 0x64, 0x75, 0x79, 0x75, 0x72,\n    0x44, 0x45, 0x4a, 0x54, 0x5e, 0x67, 0x6c, 0x6f, 0x71, 0x74, 0x6f, 0x65, 0x63, 0x68, 0x65, 0x5c,\n    0x63, 0x5e, 0x58, 0x59, 0x61, 0x6b, 0x6f, 0x6e, 0x69, 0x67, 0x65, 0x62, 0x60, 0x5f, 0x5e, 0x5e,\n    0x73, 0x6e, 0x69, 0x68, 0x6b, 0x6c, 0x69, 0x65, 0x64, 0x65, 0x67, 0x6c, 0x73, 0x78, 0x7a, 0x79,\n    0x7e, 0x7f, 0x7b, 0x70, 0x68, 0x66, 0x6a, 0x6d, 0x6c, 0x69, 0x68, 0x6a, 0x6a, 0x66, 0x60, 0x5c,\n    0x5e, 0x61, 0x63, 0x64, 0x67, 0x6a, 0x67, 0x62, 0x65, 0x6c, 0x75, 0x77, 0x74, 0x71, 0x71, 0x73,\n    0x77, 0x7b, 0x7d, 0x7a, 0x72, 0x6d, 0x6e, 0x72, 0x71, 0x6f, 0x6a, 0x67, 0x65, 0x66, 0x68, 0x6a,\n    0x6d, 0x75, 0x79, 0x71, 0x67, 0x68, 0x72, 0x7c, 0x80, 0x7b, 0x74, 0x6f, 0x70, 0x72, 0x6f, 0x69,\n    0x74, 0x74, 0x73, 0x74, 0x76, 0x75, 0x6d, 0x65, 0x6d, 0x6c, 0x6f, 0x72, 0x73, 0x6f, 0x6e, 0x70,\n    0x82, 0x86, 0x8a, 0x88, 0x81, 0x7b, 0x78, 0x78, 0x77, 0x73, 0x73, 0x78, 0x7a, 0x74, 0x6e, 0x6b,\n    0x7b, 0x82, 0x8c, 0x94, 0x96, 0x91, 0x8a, 0x85, 0x8c, 0x8a, 0x86, 0x81, 0x7e, 0x7d, 0x7d, 0x7e,\n    0x7d, 0x78, 0x6e, 0x66, 0x65, 0x69, 0x6e, 0x71, 0x79, 0x73, 0x6d, 0x6d, 0x72, 0x75, 0x74, 0x70,\n    0x78, 0x79, 0x80, 0x9f, 0xb9, 0xaf, 0xa1, 0xa4, 0xa0, 0x9e, 0x9c, 0xa1, 0xad, 0xb9, 0xbe, 0xbd,\n    0xc3, 0xc7, 0xca, 0xcb, 0xcb, 0xcc, 0xcb, 0xc8, 0xc7, 0xc6, 0xc5, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4,\n    0xc2, 0xc3, 0xc3, 0xc3, 0xc3, 0xc2, 0xc1, 0xc0, 0xbf, 0xbf, 0xbf, 0xbe, 0xbd, 0xbd, 0xbc, 0xbc,\n    0xb9, 0xb6, 0xb3, 0xb2, 0xb2, 0xb1, 0xae, 0xac, 0xa8, 0xa9, 0xaa, 0xab, 0xae, 0xb1, 0xb3, 0xb3,\n    0xaf, 0xad, 0xac, 0xb0, 0xb5, 0xb9, 0xb9, 0xb7, 0xb3, 0xb1, 0xae, 0xac, 0xab, 0xa7, 0xa2, 0x9d,\n    0x93, 0x8c, 0x8a, 0x8a, 0xa3, 0xa9, 0xaf, 0xb0, 0xaf, 0x97, 0xc6, 0xeb, 0xf3, 0xf3, 0xf7, 0xf4,\n    0xf6, 0xf8, 0xfa, 0xfa, 0xfa, 0xf9, 0xf9, 0xf9, 0xfc, 0xfc, 0xfc, 0xfc, 0xfb, 0xfa, 0xf8, 0xf8,\n    0xf7, 0xf7, 0xf7, 0xf7, 0xf8, 0xf9, 0xfb, 0xfc, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb,\n    0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfc, 0xfd, 0xfc, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfc, 0xfd,\n    0xfb, 0xfb, 0xfb, 0xfb, 0xfc, 0xfd, 0xfd, 0xfd, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb,\n    0xfc, 0xfc, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfc, 0xfc, 0xfc, 0xfc, 0xfb, 0xfa, 0xf9, 0xf9,\n    0xf9, 0xf8, 0xf7, 0xf7, 0xf7, 0xf6, 0xf4, 0xf3, 0xf3, 0xf2, 0xf1, 0xef, 0xee, 0xee, 0xed, 0xed,\n    0xea, 0xea, 0xea, 0xea, 0xea, 0xe8, 0xe7, 0xe6, 0xe7, 0xe6, 0xe4, 0xe3, 0xe3, 0xe3, 0xe2, 0xe2,\n    0xe2, 0xe2, 0xe2, 0xe1, 0xe1, 0xe2, 0xe2, 0xe2, 0xdf, 0xdf, 0xdf, 0xdf, 0xdf, 0xde, 0xde, 0xdd,\n    0xdf, 0xdf, 0xdf, 0xde, 0xdd, 0xdc, 0xdb, 0xda, 0xd7, 0xd5, 0xd4, 0xd3, 0xd3, 0xd2, 0xd1, 0xd0,\n    0xcf, 0xce, 0xcd, 0xcc, 0xcb, 0xc9, 0xc6, 0xc4, 0xc1, 0xc0, 0xbf, 0xbf, 0xc0, 0xc2, 0xc2, 0xc3,\n    0xc2, 0xc0, 0xbf, 0xc0, 0xc0, 0xbf, 0xbb, 0xb8, 0xb3, 0xb3, 0xb2, 0xb4, 0xb6, 0xb8, 0xb8, 0xb8,\n    0xba, 0xba, 0xb5, 0xa9, 0x99, 0x8d, 0x88, 0x88, 0x90, 0x92, 0x96, 0x9b, 0x9b, 0x98, 0x98, 0x9c,\n    0x97, 0x96, 0x96, 0x95, 0x94, 0x93, 0x92, 0x92, 0x91, 0x90, 0x8e, 0x8d, 0x8d, 0x8c, 0x8a, 0x88,\n    0x87, 0x86, 0x84, 0x82, 0x80, 0x7e, 0x7d, 0x7c, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x75, 0x73, 0x71,\n    0x6d, 0x6a, 0x67, 0x64, 0x61, 0x5f, 0x5b, 0x59, 0x55, 0x50, 0x4a, 0x46, 0x44, 0x41, 0x3d, 0x3a,\n    0x34, 0x32, 0x30, 0x2d, 0x25, 0x26, 0x3d, 0x57, 0x77, 0x7a, 0x73, 0x61, 0x53, 0x4d, 0x47, 0x40,\n    0x52, 0x53, 0x50, 0x4b, 0x49, 0x4e, 0x56, 0x5c, 0x55, 0x54, 0x53, 0x50, 0x47, 0x3f, 0x3d, 0x40,\n    0x3f, 0x3c, 0x3b, 0x3a, 0x33, 0x2c, 0x2f, 0x38, 0x42, 0x4e, 0x53, 0x46, 0x36, 0x32, 0x36, 0x3a,\n    0x45, 0x59, 0x5d, 0x47, 0x34, 0x3a, 0x4b, 0x53, 0x71, 0x7d, 0x7c, 0x70, 0x68, 0x5a, 0x44, 0x35,\n    0x2f, 0x31, 0x3c, 0x4a, 0x4f, 0x4d, 0x52, 0x5c, 0x87, 0x6c, 0x3d, 0x29, 0x3e, 0x4c, 0x48, 0x4a,\n    0x3a, 0x36, 0x36, 0x34, 0x34, 0x3b, 0x4b, 0x5d, 0x4f, 0x46, 0x3d, 0x3b, 0x3a, 0x35, 0x2f, 0x2b,\n    0x42, 0x57, 0x65, 0x69, 0x6e, 0x75, 0x80, 0x8c, 0x80, 0x93, 0x9b, 0x94, 0x91, 0x92, 0x8e, 0x86,\n    0x72, 0x6a, 0x6a, 0x75, 0x7c, 0x73, 0x5f, 0x50, 0x3f, 0x42, 0x52, 0x69, 0x72, 0x70, 0x75, 0x81,\n    0x51, 0x50, 0x54, 0x5f, 0x6e, 0x78, 0x79, 0x75, 0x78, 0x79, 0x77, 0x71, 0x69, 0x60, 0x57, 0x50,\n    0x56, 0x5c, 0x6b, 0x7c, 0x7f, 0x73, 0x66, 0x61, 0x5f, 0x5c, 0x59, 0x57, 0x5a, 0x60, 0x67, 0x6d,\n    0x6e, 0x6b, 0x68, 0x64, 0x62, 0x62, 0x64, 0x67, 0x66, 0x64, 0x64, 0x67, 0x6d, 0x73, 0x79, 0x7c,\n    0x7b, 0x7b, 0x79, 0x74, 0x72, 0x72, 0x71, 0x6f, 0x72, 0x6f, 0x6e, 0x6c, 0x67, 0x5f, 0x5c, 0x5d,\n    0x62, 0x63, 0x63, 0x64, 0x65, 0x65, 0x60, 0x5b, 0x62, 0x69, 0x70, 0x71, 0x6e, 0x6d, 0x70, 0x74,\n    0x7e, 0x7e, 0x7b, 0x75, 0x70, 0x6e, 0x6f, 0x71, 0x6b, 0x68, 0x65, 0x62, 0x63, 0x65, 0x68, 0x6a,\n    0x73, 0x77, 0x77, 0x71, 0x6e, 0x76, 0x85, 0x91, 0x86, 0x77, 0x6d, 0x70, 0x74, 0x71, 0x6d, 0x6d,\n    0x6d, 0x6d, 0x6e, 0x73, 0x7b, 0x7b, 0x6f, 0x61, 0x62, 0x65, 0x6a, 0x6e, 0x6d, 0x69, 0x66, 0x66,\n    0x77, 0x7b, 0x7f, 0x80, 0x7d, 0x7b, 0x7a, 0x7a, 0x75, 0x70, 0x6f, 0x75, 0x7a, 0x79, 0x7b, 0x7f,\n    0x78, 0x7d, 0x85, 0x8c, 0x8e, 0x8b, 0x84, 0x7e, 0x89, 0x89, 0x87, 0x84, 0x80, 0x7f, 0x7f, 0x81,\n    0x76, 0x6b, 0x62, 0x62, 0x65, 0x69, 0x74, 0x80, 0x82, 0x74, 0x67, 0x66, 0x6c, 0x6f, 0x6a, 0x62,\n    0x68, 0x6c, 0x79, 0x96, 0xb3, 0xb0, 0x9e, 0xa0, 0x9e, 0x97, 0x95, 0x9f, 0xb0, 0xbd, 0xc0, 0xbf,\n    0xc5, 0xc8, 0xc9, 0xc9, 0xca, 0xca, 0xc8, 0xc4, 0xc6, 0xc5, 0xc4, 0xc3, 0xc3, 0xc4, 0xc5, 0xc6,\n    0xc4, 0xc3, 0xc2, 0xc1, 0xc1, 0xc2, 0xc2, 0xc3, 0xbe, 0xbe, 0xbe, 0xbd, 0xbd, 0xbc, 0xbc, 0xbc,\n    0xbf, 0xbc, 0xb9, 0xb8, 0xb7, 0xb6, 0xb3, 0xb0, 0xa4, 0xa0, 0x9e, 0xa2, 0xa8, 0xad, 0xae, 0xad,\n    0xb0, 0xaf, 0xaf, 0xaf, 0xb1, 0xb3, 0xb4, 0xb5, 0xb6, 0xb3, 0xaf, 0xac, 0xa9, 0xa7, 0xa4, 0xa1,\n    0x99, 0x8f, 0x8a, 0x89, 0xa2, 0xa6, 0xa5, 0x9d, 0x9d, 0x8e, 0xa6, 0xe8, 0xed, 0xed, 0xfa, 0xf2,\n    0xf8, 0xf8, 0xf9, 0xf9, 0xf8, 0xf8, 0xf9, 0xfa, 0xfb, 0xfb, 0xfc, 0xfc, 0xfb, 0xfa, 0xf8, 0xf8,\n    0xfa, 0xf9, 0xf9, 0xf8, 0xf8, 0xf8, 0xf9, 0xf9, 0xfc, 0xfc, 0xfb, 0xfb, 0xfa, 0xf9, 0xf9, 0xf9,\n    0xf9, 0xf9, 0xfa, 0xfa, 0xfb, 0xfc, 0xfd, 0xfe, 0xfb, 0xfb, 0xfa, 0xfa, 0xfb, 0xfb, 0xfb, 0xfc,\n    0xfb, 0xfb, 0xfb, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xf9, 0xf9, 0xf9, 0xfa, 0xfa, 0xfb, 0xfb, 0xfb,\n    0xfc, 0xfc, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfd, 0xfd, 0xfd, 0xfc, 0xfb, 0xfa, 0xf9, 0xf9,\n    0xf9, 0xf8, 0xf7, 0xf7, 0xf8, 0xf7, 0xf6, 0xf4, 0xf1, 0xf0, 0xef, 0xee, 0xed, 0xec, 0xec, 0xec,\n    0xe8, 0xe9, 0xea, 0xea, 0xea, 0xe9, 0xe8, 0xe8, 0xe9, 0xe7, 0xe4, 0xe3, 0xe3, 0xe4, 0xe3, 0xe2,\n    0xe2, 0xe3, 0xe5, 0xe6, 0xe6, 0xe5, 0xe3, 0xe2, 0xe1, 0xe0, 0xe0, 0xdf, 0xde, 0xdd, 0xdc, 0xdc,\n    0xdc, 0xdc, 0xdd, 0xdd, 0xdd, 0xdc, 0xdc, 0xdb, 0xd8, 0xd7, 0xd5, 0xd4, 0xd4, 0xd3, 0xd2, 0xd1,\n    0xcf, 0xce, 0xcd, 0xcd, 0xcc, 0xca, 0xc7, 0xc5, 0xc3, 0xc1, 0xc0, 0xc1, 0xc2, 0xc4, 0xc4, 0xc3,\n    0xc2, 0xc0, 0xbd, 0xbc, 0xbd, 0xbe, 0xbc, 0xba, 0xb5, 0xb4, 0xb3, 0xb5, 0xb7, 0xb8, 0xb9, 0xb9,\n    0xb9, 0xb9, 0xb3, 0xa6, 0x99, 0x91, 0x92, 0x95, 0x9c, 0x9b, 0x9a, 0x9b, 0x9a, 0x99, 0x98, 0x99,\n    0x97, 0x96, 0x95, 0x94, 0x93, 0x92, 0x91, 0x91, 0x91, 0x8f, 0x8d, 0x8c, 0x8c, 0x8b, 0x89, 0x88,\n    0x86, 0x85, 0x83, 0x81, 0x7f, 0x7d, 0x7b, 0x7a, 0x79, 0x77, 0x76, 0x75, 0x74, 0x73, 0x71, 0x6f,\n    0x6b, 0x69, 0x66, 0x62, 0x60, 0x5d, 0x59, 0x57, 0x54, 0x50, 0x4a, 0x46, 0x43, 0x40, 0x3c, 0x39,\n    0x39, 0x34, 0x2f, 0x29, 0x23, 0x2a, 0x45, 0x61, 0x6a, 0x4b, 0x29, 0x1d, 0x27, 0x38, 0x47, 0x4f,\n    0x50, 0x55, 0x54, 0x48, 0x3e, 0x41, 0x4d, 0x57, 0x5a, 0x53, 0x4b, 0x46, 0x42, 0x3b, 0x35, 0x32,\n    0x3a, 0x35, 0x30, 0x2e, 0x2f, 0x35, 0x46, 0x57, 0x4f, 0x4f, 0x4d, 0x50, 0x56, 0x55, 0x43, 0x2e,\n    0x29, 0x25, 0x28, 0x36, 0x43, 0x4e, 0x5c, 0x69, 0x70, 0x6c, 0x60, 0x53, 0x49, 0x3a, 0x31, 0x33,\n    0x4f, 0x65, 0x6c, 0x59, 0x4c, 0x56, 0x67, 0x6c, 0x6c, 0x41, 0x28, 0x2e, 0x33, 0x33, 0x41, 0x55,\n    0x65, 0x5f, 0x5c, 0x64, 0x6b, 0x67, 0x5e, 0x54, 0x43, 0x42, 0x3d, 0x2f, 0x22, 0x23, 0x36, 0x4b,\n    0x5d, 0x55, 0x4f, 0x5c, 0x72, 0x75, 0x6a, 0x63, 0x7d, 0x79, 0x7a, 0x7c, 0x75, 0x6f, 0x75, 0x7f,\n    0x82, 0x92, 0x93, 0x74, 0x4c, 0x3b, 0x47, 0x59, 0x6e, 0x90, 0xa2, 0x8d, 0x77, 0x7d, 0x93, 0xa1,\n    0x4b, 0x4a, 0x4d, 0x57, 0x67, 0x71, 0x6f, 0x67, 0x63, 0x64, 0x69, 0x6d, 0x6a, 0x60, 0x5c, 0x5d,\n    0x62, 0x5f, 0x66, 0x73, 0x79, 0x7b, 0x85, 0x93, 0x91, 0x89, 0x7d, 0x70, 0x68, 0x66, 0x6a, 0x6d,\n    0x68, 0x6a, 0x6e, 0x6f, 0x6c, 0x67, 0x68, 0x6b, 0x61, 0x61, 0x63, 0x66, 0x6a, 0x6e, 0x74, 0x7b,\n    0x79, 0x79, 0x77, 0x75, 0x77, 0x79, 0x77, 0x72, 0x78, 0x75, 0x72, 0x6d, 0x63, 0x5c, 0x5f, 0x68,\n    0x65, 0x65, 0x65, 0x67, 0x67, 0x66, 0x61, 0x5d, 0x63, 0x67, 0x6a, 0x6a, 0x67, 0x67, 0x6b, 0x6f,\n    0x77, 0x76, 0x73, 0x6e, 0x6c, 0x6b, 0x69, 0x65, 0x65, 0x62, 0x60, 0x60, 0x62, 0x66, 0x69, 0x6b,\n    0x70, 0x75, 0x78, 0x79, 0x7d, 0x85, 0x8f, 0x94, 0x84, 0x71, 0x66, 0x6b, 0x6f, 0x6c, 0x6c, 0x73,\n    0x73, 0x73, 0x73, 0x74, 0x79, 0x79, 0x6e, 0x5f, 0x5e, 0x61, 0x66, 0x6c, 0x6e, 0x6c, 0x68, 0x65,\n    0x6c, 0x70, 0x77, 0x7d, 0x80, 0x80, 0x7e, 0x7c, 0x82, 0x7b, 0x75, 0x73, 0x6d, 0x69, 0x6f, 0x79,\n    0x7b, 0x7e, 0x80, 0x7c, 0x75, 0x71, 0x71, 0x74, 0x7c, 0x7d, 0x7d, 0x79, 0x75, 0x73, 0x75, 0x78,\n    0x71, 0x6d, 0x71, 0x7c, 0x81, 0x7f, 0x83, 0x8c, 0x8b, 0x7b, 0x6c, 0x6b, 0x71, 0x73, 0x6d, 0x66,\n    0x63, 0x6a, 0x7b, 0x92, 0xb0, 0xb4, 0x9e, 0x9b, 0x99, 0x92, 0x93, 0xa2, 0xb4, 0xbe, 0xc1, 0xc1,\n    0xc4, 0xc6, 0xc6, 0xc6, 0xc7, 0xc7, 0xc5, 0xc1, 0xc6, 0xc5, 0xc4, 0xc3, 0xc3, 0xc3, 0xc4, 0xc4,\n    0xc3, 0xc2, 0xc0, 0xbf, 0xbf, 0xc0, 0xc1, 0xc2, 0xbc, 0xbc, 0xbc, 0xbc, 0xbb, 0xbb, 0xba, 0xba,\n    0xbc, 0xba, 0xb6, 0xb4, 0xb3, 0xb1, 0xae, 0xab, 0xaa, 0xa3, 0x9f, 0xa2, 0xa7, 0xa9, 0xa9, 0xa8,\n    0xb1, 0xb3, 0xb4, 0xb4, 0xb3, 0xb3, 0xb5, 0xb7, 0xb5, 0xb2, 0xae, 0xaa, 0xa8, 0xa5, 0xa3, 0xa1,\n    0x9e, 0x94, 0x8d, 0x88, 0x9f, 0x9f, 0x98, 0x8c, 0x86, 0x84, 0x8c, 0xd7, 0xe8, 0xea, 0xf6, 0xee,\n    0xf6, 0xf6, 0xf7, 0xf7, 0xf7, 0xf7, 0xf9, 0xfa, 0xfa, 0xfb, 0xfc, 0xfc, 0xfc, 0xfb, 0xf9, 0xf8,\n    0xfa, 0xfa, 0xf9, 0xf8, 0xf7, 0xf7, 0xf6, 0xf6, 0xfb, 0xfb, 0xfa, 0xfa, 0xf9, 0xf8, 0xf8, 0xf8,\n    0xf8, 0xf9, 0xf9, 0xfa, 0xfb, 0xfc, 0xfc, 0xfc, 0xf9, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa,\n    0xfb, 0xfb, 0xfb, 0xfc, 0xfb, 0xfb, 0xfb, 0xfa, 0xf9, 0xf9, 0xfa, 0xfa, 0xfb, 0xfc, 0xfc, 0xfc,\n    0xfd, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfb, 0xfc, 0xfc, 0xfc, 0xfb, 0xfa, 0xf9, 0xf9, 0xf8,\n    0xf9, 0xf8, 0xf7, 0xf7, 0xf8, 0xf7, 0xf6, 0xf4, 0xee, 0xee, 0xed, 0xec, 0xeb, 0xea, 0xea, 0xea,\n    0xe8, 0xe9, 0xeb, 0xeb, 0xea, 0xe9, 0xe8, 0xe8, 0xe8, 0xe6, 0xe3, 0xe3, 0xe4, 0xe5, 0xe4, 0xe2,\n    0xe2, 0xe3, 0xe5, 0xe6, 0xe6, 0xe5, 0xe3, 0xe2, 0xe0, 0xdf, 0xde, 0xdc, 0xdb, 0xda, 0xd9, 0xd9,\n    0xda, 0xda, 0xdb, 0xdc, 0xdc, 0xdd, 0xdd, 0xdc, 0xda, 0xd9, 0xd6, 0xd5, 0xd5, 0xd4, 0xd2, 0xd1,\n    0xd0, 0xcf, 0xce, 0xce, 0xcd, 0xcc, 0xc9, 0xc7, 0xc5, 0xc3, 0xc1, 0xc2, 0xc4, 0xc6, 0xc5, 0xc4,\n    0xc3, 0xc0, 0xbd, 0xbc, 0xbd, 0xbf, 0xbe, 0xbd, 0xb7, 0xb6, 0xb6, 0xb6, 0xb8, 0xb9, 0xba, 0xb9,\n    0xba, 0xba, 0xb3, 0xa4, 0x96, 0x93, 0x99, 0x9e, 0x9e, 0x9d, 0x9c, 0x9c, 0x9d, 0x9b, 0x97, 0x94,\n    0x97, 0x97, 0x96, 0x95, 0x93, 0x92, 0x91, 0x91, 0x90, 0x8f, 0x8d, 0x8c, 0x8c, 0x8b, 0x89, 0x88,\n    0x85, 0x84, 0x82, 0x80, 0x7e, 0x7c, 0x7a, 0x79, 0x78, 0x76, 0x74, 0x73, 0x72, 0x70, 0x6e, 0x6d,\n    0x6a, 0x67, 0x64, 0x60, 0x5e, 0x5a, 0x57, 0x54, 0x51, 0x4e, 0x4a, 0x46, 0x42, 0x3e, 0x3b, 0x38,\n    0x37, 0x32, 0x2d, 0x2a, 0x2d, 0x38, 0x4c, 0x5c, 0x3d, 0x39, 0x41, 0x57, 0x64, 0x5f, 0x55, 0x51,\n    0x52, 0x55, 0x51, 0x45, 0x3c, 0x3e, 0x45, 0x4a, 0x48, 0x50, 0x57, 0x54, 0x4c, 0x47, 0x4a, 0x4f,\n    0x45, 0x42, 0x40, 0x45, 0x4e, 0x57, 0x5c, 0x5d, 0x57, 0x4b, 0x44, 0x52, 0x6c, 0x78, 0x6a, 0x55,\n    0x45, 0x3a, 0x42, 0x5c, 0x66, 0x5a, 0x57, 0x62, 0x66, 0x58, 0x4e, 0x4a, 0x33, 0x17, 0x25, 0x50,\n    0x7c, 0x83, 0x7e, 0x6a, 0x59, 0x5a, 0x65, 0x6e, 0x48, 0x2a, 0x2a, 0x3f, 0x4e, 0x68, 0x84, 0x89,\n    0x6e, 0x72, 0x69, 0x67, 0x69, 0x68, 0x60, 0x4a, 0x3d, 0x32, 0x27, 0x24, 0x27, 0x2d, 0x34, 0x39,\n    0x31, 0x35, 0x3a, 0x44, 0x50, 0x55, 0x63, 0x76, 0x6f, 0x6d, 0x72, 0x76, 0x75, 0x7b, 0x83, 0x83,\n    0x7f, 0x79, 0x6e, 0x68, 0x70, 0x7f, 0x84, 0x80, 0x89, 0x76, 0x5f, 0x5f, 0x7c, 0x95, 0x8a, 0x6e,\n    0x55, 0x54, 0x53, 0x58, 0x64, 0x70, 0x72, 0x6d, 0x5e, 0x5e, 0x61, 0x67, 0x6a, 0x69, 0x6b, 0x6f,\n    0x66, 0x66, 0x6a, 0x6e, 0x6e, 0x6e, 0x74, 0x7c, 0x72, 0x6e, 0x68, 0x62, 0x60, 0x64, 0x6c, 0x72,\n    0x75, 0x76, 0x7a, 0x7e, 0x7a, 0x6f, 0x66, 0x63, 0x62, 0x64, 0x68, 0x6a, 0x68, 0x68, 0x70, 0x79,\n    0x7f, 0x7d, 0x79, 0x75, 0x75, 0x77, 0x77, 0x75, 0x78, 0x75, 0x72, 0x6e, 0x65, 0x5d, 0x60, 0x69,\n    0x65, 0x63, 0x63, 0x66, 0x67, 0x65, 0x62, 0x5f, 0x66, 0x67, 0x68, 0x68, 0x66, 0x67, 0x6a, 0x6d,\n    0x74, 0x74, 0x72, 0x6e, 0x6e, 0x6f, 0x6b, 0x66, 0x66, 0x65, 0x63, 0x64, 0x68, 0x6c, 0x6f, 0x70,\n    0x77, 0x7e, 0x85, 0x8a, 0x8e, 0x91, 0x90, 0x8d, 0x7e, 0x73, 0x6c, 0x6b, 0x6a, 0x66, 0x69, 0x70,\n    0x77, 0x7c, 0x7d, 0x7b, 0x7a, 0x78, 0x6e, 0x63, 0x63, 0x63, 0x65, 0x69, 0x6e, 0x70, 0x6d, 0x69,\n    0x67, 0x69, 0x6f, 0x77, 0x7f, 0x83, 0x82, 0x80, 0x84, 0x7d, 0x74, 0x6a, 0x59, 0x4e, 0x55, 0x64,\n    0x71, 0x72, 0x72, 0x70, 0x6c, 0x6d, 0x73, 0x78, 0x77, 0x7a, 0x7d, 0x7b, 0x75, 0x71, 0x72, 0x73,\n    0x6b, 0x72, 0x80, 0x8d, 0x92, 0x8e, 0x8c, 0x8d, 0x82, 0x75, 0x68, 0x66, 0x6a, 0x6a, 0x67, 0x65,\n    0x6e, 0x73, 0x7e, 0x87, 0xa4, 0xb1, 0x9b, 0x96, 0x92, 0x91, 0x99, 0xab, 0xb9, 0xbd, 0xc0, 0xc3,\n    0xc3, 0xc5, 0xc5, 0xc4, 0xc6, 0xc8, 0xc6, 0xc3, 0xc7, 0xc6, 0xc5, 0xc4, 0xc2, 0xc1, 0xc1, 0xc0,\n    0xc1, 0xc1, 0xc1, 0xc1, 0xc0, 0xc0, 0xbf, 0xbf, 0xbc, 0xbc, 0xbc, 0xbc, 0xbb, 0xbb, 0xbb, 0xbb,\n    0xbd, 0xbb, 0xb8, 0xb8, 0xb8, 0xb8, 0xb5, 0xb3, 0xaf, 0xa9, 0xa4, 0xa4, 0xa4, 0xa3, 0xa4, 0xa6,\n    0xae, 0xb0, 0xb3, 0xb4, 0xb4, 0xb5, 0xb6, 0xb8, 0xb4, 0xb2, 0xb0, 0xad, 0xaa, 0xa6, 0xa3, 0xa0,\n    0x9f, 0x98, 0x91, 0x89, 0x9c, 0x9a, 0x94, 0x88, 0x7c, 0x7a, 0x7e, 0xb6, 0xdf, 0xe5, 0xeb, 0xe9,\n    0xef, 0xf1, 0xf4, 0xf6, 0xf6, 0xf7, 0xf8, 0xf9, 0xf9, 0xfa, 0xfb, 0xfc, 0xfc, 0xfb, 0xfa, 0xf9,\n    0xf9, 0xf9, 0xf8, 0xf8, 0xf7, 0xf7, 0xf6, 0xf6, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf9, 0xf9,\n    0xf8, 0xf9, 0xfa, 0xfa, 0xfb, 0xfa, 0xfa, 0xf9, 0xf8, 0xf8, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9,\n    0xf9, 0xfa, 0xfa, 0xfb, 0xfb, 0xfb, 0xfa, 0xfa, 0xfa, 0xfa, 0xfb, 0xfb, 0xfb, 0xfb, 0xfc, 0xfc,\n    0xfc, 0xfc, 0xfc, 0xfc, 0xfb, 0xfb, 0xfb, 0xfb, 0xfa, 0xfa, 0xfa, 0xfa, 0xf9, 0xf9, 0xf8, 0xf7,\n    0xf9, 0xf8, 0xf7, 0xf6, 0xf6, 0xf6, 0xf4, 0xf2, 0xef, 0xee, 0xed, 0xec, 0xec, 0xeb, 0xeb, 0xeb,\n    0xe9, 0xeb, 0xec, 0xeb, 0xe9, 0xe7, 0xe6, 0xe7, 0xe5, 0xe3, 0xe1, 0xe2, 0xe4, 0xe5, 0xe4, 0xe2,\n    0xe2, 0xe2, 0xe2, 0xe2, 0xe2, 0xe2, 0xe2, 0xe2, 0xdf, 0xde, 0xdc, 0xdb, 0xd9, 0xd9, 0xd8, 0xd8,\n    0xda, 0xdb, 0xdb, 0xdc, 0xdd, 0xdd, 0xdd, 0xdd, 0xdc, 0xda, 0xd8, 0xd6, 0xd5, 0xd4, 0xd2, 0xd1,\n    0xd0, 0xcf, 0xcf, 0xcf, 0xcf, 0xce, 0xcc, 0xca, 0xc6, 0xc3, 0xc2, 0xc3, 0xc6, 0xc7, 0xc6, 0xc4,\n    0xc2, 0xbf, 0xbd, 0xbe, 0xbf, 0xc0, 0xbf, 0xbd, 0xb7, 0xb6, 0xb6, 0xb6, 0xb7, 0xb8, 0xb8, 0xb8,\n    0xbb, 0xba, 0xb0, 0x9e, 0x90, 0x8f, 0x97, 0x9e, 0x9c, 0x9c, 0x9c, 0x9b, 0x9b, 0x9a, 0x97, 0x94,\n    0x96, 0x95, 0x94, 0x93, 0x91, 0x90, 0x8f, 0x8f, 0x8e, 0x8d, 0x8b, 0x8a, 0x8a, 0x89, 0x87, 0x86,\n    0x84, 0x83, 0x81, 0x80, 0x7e, 0x7c, 0x7a, 0x79, 0x76, 0x75, 0x72, 0x70, 0x6f, 0x6d, 0x6b, 0x69,\n    0x67, 0x65, 0x61, 0x5e, 0x5b, 0x57, 0x54, 0x51, 0x4e, 0x4c, 0x49, 0x46, 0x43, 0x3f, 0x3b, 0x39,\n    0x32, 0x2f, 0x2a, 0x2c, 0x39, 0x49, 0x52, 0x53, 0x53, 0x5b, 0x67, 0x6d, 0x66, 0x59, 0x56, 0x5c,\n    0x6b, 0x67, 0x57, 0x3f, 0x30, 0x30, 0x36, 0x3a, 0x3e, 0x4a, 0x53, 0x4e, 0x42, 0x3a, 0x3d, 0x42,\n    0x52, 0x59, 0x61, 0x68, 0x71, 0x73, 0x69, 0x5c, 0x50, 0x44, 0x3e, 0x49, 0x60, 0x73, 0x7b, 0x7c,\n    0x71, 0x79, 0x6d, 0x50, 0x44, 0x4f, 0x53, 0x4a, 0x4d, 0x41, 0x25, 0x0c, 0x0a, 0x18, 0x2b, 0x3c,\n    0x66, 0x7c, 0x83, 0x75, 0x73, 0x7f, 0x78, 0x62, 0x2f, 0x1f, 0x23, 0x39, 0x51, 0x6c, 0x75, 0x66,\n    0x88, 0x8d, 0x7d, 0x6d, 0x57, 0x41, 0x38, 0x27, 0x34, 0x2a, 0x1e, 0x19, 0x1c, 0x2a, 0x3d, 0x4c,\n    0x5e, 0x5e, 0x5b, 0x5e, 0x67, 0x66, 0x61, 0x62, 0x67, 0x64, 0x62, 0x5e, 0x65, 0x7f, 0x8b, 0x7d,\n    0x92, 0x84, 0x78, 0x7a, 0x87, 0x8d, 0x83, 0x76, 0x56, 0x56, 0x59, 0x5a, 0x50, 0x43, 0x42, 0x4a,\n    0x5b, 0x58, 0x52, 0x50, 0x58, 0x67, 0x70, 0x72, 0x6a, 0x66, 0x60, 0x5c, 0x5b, 0x5d, 0x5f, 0x5f,\n    0x5c, 0x61, 0x64, 0x63, 0x65, 0x6a, 0x6e, 0x6f, 0x75, 0x73, 0x6f, 0x6a, 0x68, 0x6a, 0x6f, 0x74,\n    0x68, 0x68, 0x6f, 0x7b, 0x81, 0x7c, 0x72, 0x6b, 0x6f, 0x70, 0x71, 0x6e, 0x66, 0x62, 0x6a, 0x75,\n    0x80, 0x7f, 0x79, 0x72, 0x70, 0x73, 0x77, 0x79, 0x74, 0x72, 0x72, 0x71, 0x69, 0x5d, 0x5c, 0x61,\n    0x62, 0x60, 0x60, 0x62, 0x64, 0x62, 0x5f, 0x5d, 0x68, 0x68, 0x69, 0x69, 0x6a, 0x6b, 0x6e, 0x70,\n    0x6f, 0x6f, 0x6c, 0x68, 0x69, 0x6c, 0x6b, 0x67, 0x6c, 0x6b, 0x6a, 0x6c, 0x70, 0x74, 0x76, 0x77,\n    0x7e, 0x80, 0x81, 0x81, 0x82, 0x83, 0x82, 0x80, 0x78, 0x79, 0x77, 0x70, 0x68, 0x63, 0x64, 0x67,\n    0x6b, 0x77, 0x80, 0x7f, 0x7c, 0x7a, 0x73, 0x6b, 0x6b, 0x68, 0x64, 0x66, 0x6d, 0x71, 0x70, 0x6c,\n    0x66, 0x64, 0x66, 0x6d, 0x77, 0x7f, 0x82, 0x81, 0x7e, 0x7b, 0x77, 0x6d, 0x5b, 0x50, 0x5b, 0x6e,\n    0x76, 0x72, 0x6d, 0x6c, 0x6e, 0x70, 0x6e, 0x6b, 0x6b, 0x72, 0x79, 0x79, 0x73, 0x6b, 0x68, 0x67,\n    0x60, 0x6a, 0x74, 0x79, 0x7e, 0x86, 0x8b, 0x8c, 0x89, 0x7e, 0x75, 0x72, 0x72, 0x71, 0x72, 0x74,\n    0x76, 0x77, 0x78, 0x75, 0x90, 0xa5, 0x92, 0x8e, 0x8d, 0x91, 0xa0, 0xb3, 0xbd, 0xbc, 0xbe, 0xc5,\n    0xc4, 0xc5, 0xc5, 0xc5, 0xc7, 0xca, 0xc9, 0xc6, 0xc8, 0xc7, 0xc6, 0xc4, 0xc2, 0xc0, 0xbe, 0xbd,\n    0xc0, 0xc1, 0xc3, 0xc4, 0xc3, 0xc1, 0xbf, 0xbd, 0xbe, 0xbe, 0xbe, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd,\n    0xb6, 0xb4, 0xb3, 0xb5, 0xb7, 0xb9, 0xb8, 0xb6, 0xab, 0xa7, 0xa4, 0xa2, 0x9e, 0x9a, 0x9d, 0xa4,\n    0xa4, 0xa6, 0xaa, 0xae, 0xb1, 0xb3, 0xb3, 0xb3, 0xb5, 0xb5, 0xb4, 0xb3, 0xaf, 0xaa, 0xa5, 0xa1,\n    0x9e, 0x99, 0x94, 0x8b, 0x9b, 0x99, 0x96, 0x8e, 0x7f, 0x74, 0x79, 0x97, 0xd5, 0xe0, 0xe0, 0xe6,\n    0xea, 0xed, 0xf2, 0xf5, 0xf7, 0xf7, 0xf7, 0xf8, 0xf8, 0xf9, 0xfb, 0xfc, 0xfd, 0xfc, 0xfa, 0xf9,\n    0xfa, 0xf9, 0xf9, 0xf9, 0xf8, 0xf8, 0xf8, 0xf8, 0xf6, 0xf6, 0xf7, 0xf7, 0xf8, 0xf9, 0xf9, 0xfa,\n    0xf9, 0xfa, 0xfb, 0xfb, 0xfa, 0xf9, 0xf7, 0xf6, 0xf7, 0xf8, 0xf8, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9,\n    0xf8, 0xf8, 0xfa, 0xfa, 0xfb, 0xfb, 0xfa, 0xfa, 0xfb, 0xfb, 0xfb, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa,\n    0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf8, 0xf7, 0xf7,\n    0xf9, 0xf8, 0xf6, 0xf6, 0xf5, 0xf4, 0xf1, 0xf0, 0xf1, 0xf0, 0xef, 0xee, 0xee, 0xed, 0xed, 0xed,\n    0xea, 0xec, 0xec, 0xeb, 0xe8, 0xe5, 0xe4, 0xe5, 0xe2, 0xe0, 0xdf, 0xe1, 0xe4, 0xe6, 0xe4, 0xe2,\n    0xe2, 0xe1, 0xe0, 0xdf, 0xdf, 0xe0, 0xe1, 0xe2, 0xdf, 0xde, 0xdc, 0xdb, 0xda, 0xd9, 0xd9, 0xda,\n    0xdb, 0xdc, 0xdd, 0xdd, 0xde, 0xde, 0xde, 0xde, 0xdd, 0xdb, 0xd9, 0xd7, 0xd5, 0xd4, 0xd2, 0xd1,\n    0xd0, 0xd0, 0xcf, 0xd0, 0xd0, 0xcf, 0xcd, 0xcb, 0xc6, 0xc4, 0xc2, 0xc3, 0xc6, 0xc8, 0xc6, 0xc4,\n    0xbf, 0xbe, 0xbd, 0xbe, 0xc0, 0xc0, 0xbe, 0xbc, 0xb6, 0xb5, 0xb4, 0xb4, 0xb5, 0xb6, 0xb6, 0xb5,\n    0xba, 0xb8, 0xad, 0x99, 0x8a, 0x89, 0x92, 0x99, 0x9b, 0x9c, 0x9a, 0x97, 0x96, 0x96, 0x97, 0x98,\n    0x93, 0x92, 0x91, 0x90, 0x8f, 0x8d, 0x8c, 0x8c, 0x8c, 0x8a, 0x88, 0x87, 0x87, 0x86, 0x84, 0x83,\n    0x83, 0x82, 0x81, 0x7f, 0x7d, 0x7c, 0x7a, 0x7a, 0x76, 0x73, 0x71, 0x6e, 0x6d, 0x6b, 0x69, 0x67,\n    0x65, 0x62, 0x5f, 0x5b, 0x58, 0x55, 0x51, 0x4f, 0x4b, 0x4b, 0x49, 0x47, 0x44, 0x40, 0x3d, 0x3b,\n    0x34, 0x2f, 0x28, 0x2b, 0x3c, 0x4e, 0x50, 0x47, 0x54, 0x60, 0x6a, 0x67, 0x5b, 0x4e, 0x48, 0x47,\n    0x53, 0x5d, 0x5e, 0x4e, 0x3b, 0x30, 0x2c, 0x2a, 0x29, 0x26, 0x27, 0x30, 0x40, 0x49, 0x46, 0x3f,\n    0x44, 0x53, 0x5e, 0x61, 0x64, 0x68, 0x62, 0x57, 0x50, 0x45, 0x40, 0x4b, 0x5d, 0x6d, 0x7a, 0x83,\n    0x7c, 0x5a, 0x43, 0x48, 0x4c, 0x43, 0x3e, 0x43, 0x23, 0x1c, 0x14, 0x13, 0x13, 0x0d, 0x12, 0x22,\n    0x3c, 0x53, 0x6f, 0x81, 0x8c, 0x87, 0x6c, 0x4f, 0x2f, 0x2a, 0x2e, 0x3c, 0x4b, 0x5a, 0x6e, 0x7e,\n    0x73, 0x6a, 0x58, 0x5a, 0x4f, 0x35, 0x32, 0x2d, 0x1b, 0x19, 0x1b, 0x25, 0x37, 0x4d, 0x64, 0x75,\n    0x82, 0x7c, 0x6a, 0x5d, 0x61, 0x62, 0x57, 0x4d, 0x3f, 0x3d, 0x56, 0x7a, 0x8e, 0x94, 0x8b, 0x77,\n    0x61, 0x63, 0x6d, 0x79, 0x77, 0x63, 0x4c, 0x40, 0x46, 0x53, 0x62, 0x6a, 0x6c, 0x6e, 0x6e, 0x6e,\n    0x53, 0x58, 0x56, 0x53, 0x57, 0x5c, 0x64, 0x6f, 0x69, 0x5d, 0x55, 0x59, 0x5e, 0x5e, 0x5f, 0x62,\n    0x60, 0x60, 0x62, 0x63, 0x64, 0x64, 0x65, 0x65, 0x63, 0x71, 0x76, 0x72, 0x6f, 0x6b, 0x68, 0x6b,\n    0x67, 0x66, 0x6e, 0x7a, 0x7d, 0x75, 0x6d, 0x6a, 0x67, 0x6d, 0x6f, 0x69, 0x63, 0x66, 0x6f, 0x76,\n    0x83, 0x80, 0x7c, 0x76, 0x72, 0x6f, 0x6d, 0x6b, 0x6b, 0x6d, 0x72, 0x73, 0x6f, 0x67, 0x60, 0x5d,\n    0x64, 0x5f, 0x5c, 0x5e, 0x61, 0x64, 0x6a, 0x71, 0x70, 0x6e, 0x68, 0x65, 0x68, 0x72, 0x79, 0x7c,\n    0x79, 0x70, 0x6b, 0x6c, 0x6c, 0x67, 0x66, 0x69, 0x6e, 0x71, 0x6c, 0x6a, 0x72, 0x6f, 0x6b, 0x74,\n    0x79, 0x79, 0x7a, 0x79, 0x79, 0x79, 0x7b, 0x7c, 0x78, 0x77, 0x73, 0x6d, 0x69, 0x66, 0x66, 0x66,\n    0x65, 0x68, 0x6f, 0x74, 0x75, 0x73, 0x71, 0x70, 0x79, 0x76, 0x6f, 0x69, 0x68, 0x6b, 0x6a, 0x66,\n    0x69, 0x68, 0x69, 0x6d, 0x73, 0x75, 0x72, 0x6f, 0x7b, 0x77, 0x74, 0x6f, 0x64, 0x5b, 0x5f, 0x68,\n    0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6c, 0x6d, 0x6d, 0x68, 0x6a, 0x71, 0x79, 0x78, 0x6d, 0x62, 0x5e,\n    0x67, 0x68, 0x75, 0x77, 0x84, 0x8e, 0x9f, 0x9c, 0x8b, 0x87, 0x7f, 0x76, 0x73, 0x77, 0x7c, 0x7f,\n    0x76, 0x70, 0x72, 0x7a, 0x87, 0x95, 0x98, 0x8d, 0x8f, 0x95, 0xa4, 0xb7, 0xc1, 0xc1, 0xc2, 0xc4,\n    0xc4, 0xc5, 0xc6, 0xc7, 0xc7, 0xc8, 0xc7, 0xc7, 0xc5, 0xc5, 0xc5, 0xc4, 0xc3, 0xc2, 0xc2, 0xc1,\n    0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc2, 0xc1, 0xc1, 0xc0, 0xbe, 0xbc, 0xbb, 0xbb, 0xbb, 0xba, 0xb9,\n    0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb6, 0xb6, 0xb2, 0xb2, 0xb1, 0xad, 0xa8, 0xa4, 0xa2, 0xa2,\n    0x9f, 0xa4, 0xa9, 0xad, 0xad, 0xae, 0xb1, 0xb3, 0xb8, 0xb8, 0xb6, 0xb5, 0xb4, 0xb1, 0xa9, 0xa1,\n    0x9e, 0x9a, 0x94, 0x92, 0x96, 0x9a, 0x98, 0x92, 0x80, 0x76, 0x76, 0x86, 0xd1, 0xd8, 0xe1, 0xe7,\n    0xec, 0xf0, 0xf5, 0xf7, 0xf6, 0xf6, 0xf8, 0xfa, 0xf7, 0xf9, 0xfb, 0xfd, 0xfe, 0xfd, 0xfc, 0xfa,\n    0xf9, 0xf9, 0xf8, 0xf8, 0xf7, 0xf7, 0xf8, 0xf8, 0xf7, 0xf8, 0xf9, 0xfa, 0xfb, 0xfa, 0xfa, 0xf9,\n    0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf8, 0xf8, 0xf8, 0xf8, 0xf9, 0xf9, 0xfa,\n    0xfb, 0xfb, 0xfb, 0xfb, 0xfa, 0xfa, 0xfa, 0xfa, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb,\n    0xfa, 0xfa, 0xfa, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xfa, 0xf9, 0xf8, 0xf8, 0xf9, 0xfa, 0xfa, 0xf9,\n    0xf8, 0xf8, 0xf8, 0xf7, 0xf6, 0xf4, 0xf2, 0xf1, 0xee, 0xed, 0xec, 0xeb, 0xea, 0xeb, 0xeb, 0xec,\n    0xec, 0xeb, 0xeb, 0xe9, 0xe7, 0xe5, 0xe3, 0xe1, 0xe2, 0xe1, 0xe0, 0xdf, 0xde, 0xdd, 0xdd, 0xdd,\n    0xe0, 0xdf, 0xde, 0xde, 0xdf, 0xe0, 0xe1, 0xe0, 0xdf, 0xde, 0xdd, 0xdd, 0xde, 0xdf, 0xe0, 0xe1,\n    0xdf, 0xdf, 0xde, 0xdd, 0xdc, 0xdc, 0xdc, 0xdc, 0xdd, 0xdb, 0xd7, 0xd5, 0xd5, 0xd4, 0xd3, 0xd2,\n    0xd1, 0xd2, 0xd1, 0xcf, 0xcf, 0xd0, 0xce, 0xca, 0xc7, 0xc5, 0xc4, 0xc4, 0xc6, 0xc6, 0xc5, 0xc4,\n    0xc0, 0xc0, 0xc0, 0xbf, 0xbd, 0xbb, 0xbb, 0xbb, 0xb6, 0xb4, 0xb3, 0xb5, 0xb8, 0xb9, 0xb5, 0xb2,\n    0xb5, 0xaf, 0xaa, 0x97, 0x82, 0x84, 0x93, 0x95, 0x9b, 0x9a, 0x9a, 0x99, 0x97, 0x96, 0x94, 0x94,\n    0x92, 0x92, 0x91, 0x90, 0x8f, 0x8e, 0x8e, 0x8d, 0x8a, 0x8a, 0x89, 0x89, 0x88, 0x87, 0x87, 0x87,\n    0x84, 0x81, 0x7e, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x79, 0x75, 0x70, 0x6d, 0x6c, 0x6a, 0x67, 0x64,\n    0x61, 0x60, 0x5d, 0x5a, 0x56, 0x53, 0x50, 0x4f, 0x4a, 0x49, 0x48, 0x47, 0x44, 0x40, 0x3a, 0x36,\n    0x35, 0x2e, 0x28, 0x2c, 0x3b, 0x49, 0x4a, 0x44, 0x4a, 0x4e, 0x53, 0x59, 0x5e, 0x5c, 0x55, 0x4d,\n    0x47, 0x4a, 0x4e, 0x47, 0x3a, 0x36, 0x32, 0x29, 0x25, 0x32, 0x3c, 0x42, 0x49, 0x45, 0x3a, 0x35,\n    0x3a, 0x41, 0x49, 0x4f, 0x53, 0x55, 0x54, 0x51, 0x50, 0x49, 0x4f, 0x5d, 0x5a, 0x47, 0x3f, 0x45,\n    0x3a, 0x3f, 0x3d, 0x37, 0x36, 0x39, 0x36, 0x2e, 0x31, 0x18, 0x1c, 0x1e, 0x14, 0x16, 0x16, 0x13,\n    0x14, 0x40, 0x6f, 0x85, 0x89, 0x7d, 0x5c, 0x3b, 0x30, 0x3a, 0x3c, 0x33, 0x2d, 0x2f, 0x2f, 0x2b,\n    0x1a, 0x3c, 0x54, 0x4d, 0x3f, 0x37, 0x2b, 0x1c, 0x1b, 0x1d, 0x24, 0x32, 0x44, 0x56, 0x62, 0x67,\n    0x62, 0x56, 0x58, 0x6a, 0x6f, 0x59, 0x36, 0x1f, 0x58, 0x83, 0x99, 0x91, 0x88, 0x7d, 0x6d, 0x65,\n    0x5d, 0x72, 0x73, 0x57, 0x3d, 0x3c, 0x45, 0x48, 0x51, 0x55, 0x57, 0x55, 0x5e, 0x6d, 0x64, 0x49,\n    0x59, 0x60, 0x5d, 0x54, 0x52, 0x58, 0x67, 0x78, 0x84, 0x76, 0x6a, 0x67, 0x65, 0x61, 0x5f, 0x60,\n    0x5f, 0x64, 0x69, 0x68, 0x63, 0x5e, 0x5c, 0x5c, 0x5d, 0x68, 0x6a, 0x68, 0x6a, 0x6a, 0x6a, 0x6d,\n    0x66, 0x65, 0x6a, 0x74, 0x77, 0x70, 0x69, 0x67, 0x66, 0x6b, 0x6d, 0x68, 0x65, 0x6a, 0x76, 0x7f,\n    0x81, 0x80, 0x7a, 0x73, 0x70, 0x70, 0x6e, 0x6a, 0x6a, 0x6c, 0x6f, 0x70, 0x6d, 0x68, 0x65, 0x63,\n    0x61, 0x5e, 0x60, 0x66, 0x6c, 0x6e, 0x6f, 0x71, 0x6b, 0x6f, 0x70, 0x6f, 0x70, 0x76, 0x7e, 0x82,\n    0x83, 0x78, 0x70, 0x71, 0x72, 0x6f, 0x6d, 0x6f, 0x70, 0x71, 0x6f, 0x6d, 0x6d, 0x69, 0x6a, 0x70,\n    0x72, 0x75, 0x79, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x7a, 0x7f, 0x83, 0x81, 0x7a, 0x71, 0x6a, 0x67,\n    0x60, 0x68, 0x71, 0x74, 0x72, 0x70, 0x73, 0x79, 0x83, 0x7e, 0x73, 0x67, 0x61, 0x5f, 0x5d, 0x5a,\n    0x64, 0x66, 0x6b, 0x72, 0x79, 0x7c, 0x7c, 0x7a, 0x6d, 0x6b, 0x6c, 0x6c, 0x66, 0x5e, 0x5f, 0x66,\n    0x6b, 0x6c, 0x6d, 0x6d, 0x6d, 0x6c, 0x6c, 0x6d, 0x74, 0x74, 0x76, 0x77, 0x72, 0x6b, 0x67, 0x68,\n    0x60, 0x65, 0x80, 0x90, 0x9f, 0x92, 0x7c, 0x5b, 0x65, 0x67, 0x6a, 0x6d, 0x71, 0x72, 0x6e, 0x68,\n    0x6a, 0x67, 0x6b, 0x73, 0x7e, 0x8d, 0x94, 0x8e, 0x93, 0x9c, 0xad, 0xbd, 0xc4, 0xc2, 0xc2, 0xc4,\n    0xc4, 0xc5, 0xc8, 0xc9, 0xc9, 0xc8, 0xc5, 0xc4, 0xc7, 0xc6, 0xc4, 0xc3, 0xc3, 0xc4, 0xc4, 0xc4,\n    0xc3, 0xc3, 0xc3, 0xc3, 0xc2, 0xc1, 0xc0, 0xc0, 0xc0, 0xbf, 0xbf, 0xbf, 0xc1, 0xc2, 0xc1, 0xc1,\n    0xbc, 0xb9, 0xb6, 0xb2, 0xb1, 0xb1, 0xb2, 0xb3, 0xb8, 0xb7, 0xb6, 0xb2, 0xad, 0xa8, 0xa5, 0xa4,\n    0x9e, 0xa1, 0xa4, 0xa6, 0xa7, 0xa9, 0xad, 0xb0, 0xb5, 0xb6, 0xb6, 0xb4, 0xb3, 0xb0, 0xaa, 0xa4,\n    0xa2, 0x9d, 0x96, 0x91, 0x93, 0x97, 0x98, 0x95, 0x86, 0x77, 0x72, 0x7e, 0xc3, 0xda, 0xe1, 0xe7,\n    0xed, 0xf0, 0xf4, 0xf5, 0xf5, 0xf5, 0xf7, 0xf8, 0xf6, 0xf8, 0xfa, 0xfc, 0xfd, 0xfc, 0xfb, 0xfa,\n    0xf9, 0xf9, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xfa, 0xfb, 0xfc, 0xfc, 0xfc, 0xfb, 0xfa, 0xfa,\n    0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xfa, 0xfa, 0xfa,\n    0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfc, 0xfc, 0xfb, 0xfb, 0xfa, 0xf9, 0xf9, 0xf8,\n    0xfa, 0xfa, 0xf9, 0xf9, 0xf8, 0xf8, 0xf8, 0xf8, 0xfa, 0xf9, 0xf8, 0xf8, 0xf9, 0xf9, 0xf7, 0xf6,\n    0xf4, 0xf4, 0xf4, 0xf4, 0xf3, 0xf1, 0xf0, 0xef, 0xeb, 0xeb, 0xeb, 0xea, 0xea, 0xea, 0xeb, 0xeb,\n    0xec, 0xeb, 0xeb, 0xea, 0xe8, 0xe6, 0xe4, 0xe3, 0xdf, 0xde, 0xdd, 0xdc, 0xdc, 0xdb, 0xdb, 0xdb,\n    0xde, 0xde, 0xde, 0xe0, 0xe2, 0xe2, 0xe1, 0xe0, 0xdc, 0xdb, 0xdb, 0xdb, 0xdd, 0xdf, 0xe2, 0xe4,\n    0xe2, 0xe3, 0xe3, 0xe3, 0xe2, 0xe1, 0xdf, 0xde, 0xdf, 0xdc, 0xd9, 0xd7, 0xd7, 0xd6, 0xd5, 0xd5,\n    0xd0, 0xd1, 0xd1, 0xcf, 0xcf, 0xcf, 0xcc, 0xc8, 0xc4, 0xc4, 0xc3, 0xc5, 0xc7, 0xc8, 0xc7, 0xc6,\n    0xc2, 0xc2, 0xc1, 0xbf, 0xbc, 0xba, 0xb8, 0xb8, 0xb5, 0xb4, 0xb4, 0xb5, 0xb7, 0xb7, 0xb5, 0xb3,\n    0xb3, 0xaf, 0xa4, 0x8f, 0x80, 0x86, 0x92, 0x95, 0x99, 0x99, 0x99, 0x98, 0x97, 0x95, 0x94, 0x93,\n    0x92, 0x92, 0x91, 0x90, 0x8e, 0x8d, 0x8c, 0x8c, 0x8b, 0x8b, 0x8a, 0x89, 0x87, 0x86, 0x85, 0x85,\n    0x83, 0x81, 0x7e, 0x7d, 0x7b, 0x7a, 0x78, 0x77, 0x77, 0x73, 0x6f, 0x6d, 0x6b, 0x6a, 0x67, 0x64,\n    0x5f, 0x5e, 0x5d, 0x5a, 0x56, 0x52, 0x4e, 0x4b, 0x47, 0x45, 0x44, 0x42, 0x3f, 0x3b, 0x36, 0x32,\n    0x2c, 0x2e, 0x34, 0x3c, 0x43, 0x45, 0x43, 0x40, 0x4b, 0x51, 0x5c, 0x69, 0x6f, 0x6a, 0x5a, 0x4c,\n    0x47, 0x41, 0x40, 0x3f, 0x3e, 0x3e, 0x35, 0x24, 0x2f, 0x3f, 0x4a, 0x4b, 0x47, 0x3a, 0x2e, 0x2b,\n    0x39, 0x39, 0x3b, 0x3e, 0x40, 0x41, 0x43, 0x44, 0x4f, 0x5d, 0x67, 0x61, 0x55, 0x4b, 0x43, 0x3c,\n    0x2f, 0x31, 0x2f, 0x2b, 0x2e, 0x35, 0x38, 0x36, 0x25, 0x2c, 0x38, 0x28, 0x17, 0x1d, 0x1f, 0x1c,\n    0x20, 0x4a, 0x78, 0x8a, 0x7f, 0x63, 0x43, 0x2b, 0x33, 0x31, 0x32, 0x36, 0x33, 0x29, 0x25, 0x27,\n    0x56, 0x57, 0x53, 0x47, 0x3d, 0x34, 0x28, 0x1c, 0x12, 0x1f, 0x31, 0x3f, 0x46, 0x46, 0x43, 0x40,\n    0x4b, 0x5e, 0x6f, 0x65, 0x45, 0x37, 0x55, 0x7e, 0x95, 0x82, 0x65, 0x5a, 0x61, 0x5d, 0x53, 0x55,\n    0x53, 0x46, 0x3c, 0x3e, 0x45, 0x4a, 0x4b, 0x4c, 0x4f, 0x54, 0x5a, 0x59, 0x4b, 0x3e, 0x41, 0x4f,\n    0x4d, 0x58, 0x5c, 0x5c, 0x63, 0x6e, 0x7b, 0x89, 0x86, 0x7a, 0x6e, 0x69, 0x66, 0x61, 0x60, 0x63,\n    0x66, 0x67, 0x64, 0x5b, 0x51, 0x50, 0x59, 0x63, 0x63, 0x67, 0x65, 0x63, 0x68, 0x6a, 0x68, 0x6a,\n    0x6b, 0x69, 0x6c, 0x72, 0x74, 0x6e, 0x67, 0x66, 0x67, 0x6b, 0x6b, 0x67, 0x66, 0x6d, 0x78, 0x80,\n    0x7b, 0x7c, 0x78, 0x70, 0x6f, 0x72, 0x6f, 0x68, 0x70, 0x71, 0x71, 0x6f, 0x6c, 0x69, 0x67, 0x67,\n    0x68, 0x63, 0x62, 0x67, 0x6c, 0x6c, 0x68, 0x65, 0x66, 0x70, 0x78, 0x79, 0x76, 0x78, 0x7d, 0x81,\n    0x76, 0x72, 0x73, 0x7b, 0x80, 0x7d, 0x78, 0x76, 0x7b, 0x77, 0x76, 0x73, 0x6a, 0x67, 0x6c, 0x6f,\n    0x6e, 0x71, 0x76, 0x79, 0x78, 0x76, 0x73, 0x71, 0x71, 0x7b, 0x84, 0x84, 0x7a, 0x6d, 0x64, 0x60,\n    0x63, 0x6d, 0x76, 0x75, 0x6f, 0x6d, 0x74, 0x7c, 0x7a, 0x75, 0x6c, 0x62, 0x5e, 0x5f, 0x60, 0x60,\n    0x65, 0x69, 0x6f, 0x76, 0x7c, 0x7f, 0x7e, 0x7c, 0x70, 0x6d, 0x6d, 0x70, 0x6f, 0x6b, 0x6b, 0x6e,\n    0x6a, 0x6c, 0x6e, 0x6f, 0x70, 0x70, 0x70, 0x71, 0x69, 0x6e, 0x76, 0x79, 0x75, 0x6e, 0x6b, 0x6b,\n    0x75, 0x7a, 0x8a, 0x85, 0x80, 0x73, 0x73, 0x69, 0x6a, 0x6a, 0x6a, 0x6c, 0x72, 0x75, 0x70, 0x6a,\n    0x68, 0x66, 0x6b, 0x73, 0x7c, 0x8a, 0x94, 0x93, 0x97, 0xa4, 0xb7, 0xc4, 0xc6, 0xc3, 0xc2, 0xc5,\n    0xc5, 0xc7, 0xca, 0xcb, 0xca, 0xc7, 0xc3, 0xc0, 0xc3, 0xc2, 0xc2, 0xc4, 0xc7, 0xc9, 0xc8, 0xc7,\n    0xc4, 0xc4, 0xc4, 0xc3, 0xc2, 0xc1, 0xc0, 0xbf, 0xbe, 0xbe, 0xbe, 0xc0, 0xc2, 0xc2, 0xc1, 0xc0,\n    0xc0, 0xbe, 0xba, 0xb6, 0xb4, 0xb3, 0xb4, 0xb5, 0xbb, 0xbc, 0xbc, 0xb9, 0xb5, 0xb0, 0xad, 0xab,\n    0xa6, 0xa7, 0xa7, 0xa6, 0xa5, 0xa7, 0xab, 0xaf, 0xb1, 0xb4, 0xb5, 0xb4, 0xb2, 0xb1, 0xad, 0xa9,\n    0xa6, 0xa1, 0x98, 0x90, 0x8f, 0x94, 0x98, 0x9a, 0x92, 0x7d, 0x6f, 0x72, 0xa9, 0xd8, 0xda, 0xe0,\n    0xed, 0xee, 0xf0, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf5, 0xf7, 0xf9, 0xfb, 0xfc, 0xfb, 0xfa, 0xf9,\n    0xfa, 0xfa, 0xf9, 0xf8, 0xf8, 0xf8, 0xf9, 0xf9, 0xfa, 0xfa, 0xfa, 0xfb, 0xfa, 0xf9, 0xf8, 0xf7,\n    0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa,\n    0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfb, 0xfb, 0xfa, 0xfa, 0xf9, 0xf9, 0xf8, 0xf8,\n    0xfa, 0xf9, 0xf9, 0xf8, 0xf8, 0xf7, 0xf7, 0xf7, 0xf9, 0xf8, 0xf8, 0xf7, 0xf7, 0xf5, 0xf3, 0xf1,\n    0xee, 0xef, 0xef, 0xef, 0xef, 0xee, 0xec, 0xec, 0xe9, 0xea, 0xea, 0xeb, 0xec, 0xec, 0xec, 0xec,\n    0xeb, 0xeb, 0xea, 0xe9, 0xe8, 0xe6, 0xe5, 0xe4, 0xe0, 0xe0, 0xdf, 0xde, 0xde, 0xde, 0xde, 0xde,\n    0xde, 0xde, 0xe0, 0xe2, 0xe4, 0xe4, 0xe2, 0xe1, 0xdf, 0xde, 0xde, 0xde, 0xdf, 0xe2, 0xe5, 0xe6,\n    0xe4, 0xe5, 0xe6, 0xe6, 0xe5, 0xe3, 0xe0, 0xde, 0xde, 0xdc, 0xd9, 0xd8, 0xd7, 0xd7, 0xd6, 0xd5,\n    0xd0, 0xd1, 0xd1, 0xcf, 0xce, 0xcd, 0xca, 0xc5, 0xc2, 0xc2, 0xc3, 0xc6, 0xc8, 0xca, 0xc9, 0xc8,\n    0xc4, 0xc3, 0xc1, 0xbf, 0xbc, 0xb9, 0xb6, 0xb5, 0xb5, 0xb5, 0xb5, 0xb4, 0xb4, 0xb4, 0xb3, 0xb3,\n    0xb1, 0xaf, 0x9b, 0x84, 0x7f, 0x89, 0x91, 0x96, 0x97, 0x97, 0x97, 0x96, 0x96, 0x94, 0x93, 0x93,\n    0x92, 0x91, 0x90, 0x8f, 0x8e, 0x8c, 0x8b, 0x8b, 0x8b, 0x8b, 0x89, 0x88, 0x86, 0x85, 0x83, 0x83,\n    0x82, 0x80, 0x7e, 0x7d, 0x7c, 0x7a, 0x77, 0x75, 0x74, 0x71, 0x6d, 0x6b, 0x6a, 0x69, 0x66, 0x63,\n    0x5c, 0x5c, 0x5c, 0x5a, 0x56, 0x51, 0x4c, 0x49, 0x47, 0x45, 0x43, 0x40, 0x3d, 0x39, 0x34, 0x31,\n    0x2b, 0x2b, 0x32, 0x3f, 0x4a, 0x50, 0x56, 0x5b, 0x5d, 0x61, 0x65, 0x65, 0x5f, 0x55, 0x4a, 0x44,\n    0x34, 0x3b, 0x48, 0x4c, 0x44, 0x3c, 0x36, 0x2c, 0x32, 0x41, 0x48, 0x45, 0x3d, 0x33, 0x34, 0x3f,\n    0x2e, 0x29, 0x27, 0x2b, 0x2f, 0x33, 0x39, 0x40, 0x48, 0x5c, 0x67, 0x60, 0x56, 0x50, 0x47, 0x3a,\n    0x40, 0x3e, 0x3c, 0x3b, 0x3c, 0x3e, 0x3f, 0x3f, 0x48, 0x49, 0x45, 0x36, 0x39, 0x42, 0x34, 0x29,\n    0x4e, 0x6a, 0x86, 0x86, 0x6b, 0x4b, 0x3c, 0x3a, 0x25, 0x30, 0x49, 0x62, 0x6e, 0x6e, 0x71, 0x79,\n    0x59, 0x54, 0x4d, 0x42, 0x31, 0x22, 0x1e, 0x23, 0x23, 0x30, 0x3f, 0x49, 0x4d, 0x51, 0x57, 0x5c,\n    0x79, 0x66, 0x53, 0x4a, 0x47, 0x45, 0x49, 0x51, 0x50, 0x51, 0x49, 0x45, 0x4d, 0x51, 0x49, 0x44,\n    0x3f, 0x44, 0x46, 0x49, 0x53, 0x5c, 0x54, 0x44, 0x4f, 0x51, 0x3e, 0x25, 0x20, 0x2b, 0x40, 0x58,\n    0x5e, 0x64, 0x63, 0x65, 0x70, 0x78, 0x79, 0x7a, 0x72, 0x6b, 0x64, 0x61, 0x60, 0x5e, 0x60, 0x63,\n    0x69, 0x66, 0x5e, 0x51, 0x48, 0x4d, 0x5d, 0x6c, 0x6a, 0x6a, 0x64, 0x64, 0x6c, 0x6e, 0x69, 0x69,\n    0x6e, 0x6c, 0x6e, 0x73, 0x73, 0x6e, 0x67, 0x64, 0x6b, 0x6b, 0x6a, 0x67, 0x68, 0x6c, 0x6f, 0x70,\n    0x6e, 0x74, 0x75, 0x70, 0x71, 0x74, 0x6f, 0x65, 0x6c, 0x6e, 0x70, 0x6e, 0x6c, 0x6c, 0x6b, 0x6a,\n    0x71, 0x69, 0x62, 0x62, 0x66, 0x68, 0x65, 0x61, 0x66, 0x71, 0x79, 0x79, 0x75, 0x74, 0x76, 0x79,\n    0x7a, 0x79, 0x7d, 0x82, 0x83, 0x7f, 0x7b, 0x7a, 0x85, 0x79, 0x77, 0x73, 0x67, 0x67, 0x6f, 0x6f,\n    0x72, 0x74, 0x76, 0x75, 0x73, 0x70, 0x6e, 0x6d, 0x70, 0x79, 0x80, 0x7e, 0x73, 0x68, 0x64, 0x65,\n    0x6d, 0x73, 0x77, 0x73, 0x6e, 0x6d, 0x72, 0x76, 0x7a, 0x74, 0x6c, 0x65, 0x63, 0x64, 0x63, 0x62,\n    0x68, 0x68, 0x6b, 0x72, 0x7a, 0x7e, 0x7c, 0x79, 0x7c, 0x76, 0x72, 0x73, 0x74, 0x73, 0x73, 0x75,\n    0x68, 0x6b, 0x6f, 0x71, 0x72, 0x72, 0x74, 0x75, 0x74, 0x72, 0x70, 0x6d, 0x6d, 0x70, 0x77, 0x7d,\n    0x80, 0x77, 0x79, 0x72, 0x75, 0x72, 0x7a, 0x74, 0x74, 0x71, 0x6c, 0x6a, 0x6e, 0x72, 0x72, 0x6f,\n    0x72, 0x6e, 0x71, 0x78, 0x7f, 0x8c, 0x96, 0x96, 0x9a, 0xaa, 0xbc, 0xc4, 0xc3, 0xc1, 0xc3, 0xc6,\n    0xc7, 0xc8, 0xc9, 0xca, 0xc8, 0xc5, 0xc2, 0xbf, 0xb8, 0xb8, 0xba, 0xbf, 0xc4, 0xc8, 0xc8, 0xc7,\n    0xc5, 0xc5, 0xc5, 0xc4, 0xc3, 0xc1, 0xc0, 0xbf, 0xbe, 0xbe, 0xbe, 0xbf, 0xc0, 0xbf, 0xbc, 0xba,\n    0xbc, 0xbc, 0xbc, 0xbb, 0xba, 0xb8, 0xb6, 0xb5, 0xb8, 0xba, 0xbc, 0xbc, 0xb9, 0xb6, 0xb4, 0xb2,\n    0xaf, 0xaf, 0xad, 0xaa, 0xa8, 0xa7, 0xaa, 0xac, 0xaf, 0xb2, 0xb4, 0xb3, 0xb2, 0xb1, 0xaf, 0xad,\n    0xa6, 0xa2, 0x9a, 0x90, 0x8d, 0x92, 0x99, 0x9c, 0x9a, 0x84, 0x6f, 0x6c, 0x94, 0xd6, 0xda, 0xdf,\n    0xea, 0xea, 0xeb, 0xee, 0xf1, 0xf4, 0xf5, 0xf5, 0xf5, 0xf6, 0xf8, 0xfa, 0xfb, 0xfb, 0xfa, 0xfa,\n    0xfa, 0xfa, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf8, 0xf9, 0xf9, 0xf9, 0xf9, 0xf8, 0xf7, 0xf7,\n    0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa,\n    0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xfa, 0xf8, 0xf8, 0xf9, 0xf9, 0xfa, 0xfa, 0xfb, 0xfb,\n    0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf8, 0xf8, 0xf7, 0xf8, 0xf7, 0xf5, 0xf4, 0xf3, 0xf1, 0xee, 0xec,\n    0xe9, 0xea, 0xea, 0xeb, 0xeb, 0xea, 0xe9, 0xe9, 0xe8, 0xe9, 0xeb, 0xec, 0xed, 0xed, 0xed, 0xed,\n    0xea, 0xe9, 0xe9, 0xe7, 0xe6, 0xe4, 0xe3, 0xe2, 0xe2, 0xe2, 0xe1, 0xe0, 0xe0, 0xe0, 0xe0, 0xe1,\n    0xe1, 0xe1, 0xe2, 0xe4, 0xe5, 0xe5, 0xe3, 0xe2, 0xe2, 0xe2, 0xe1, 0xe1, 0xe1, 0xe1, 0xe1, 0xe1,\n    0xe1, 0xe1, 0xe2, 0xe2, 0xe0, 0xde, 0xdb, 0xda, 0xda, 0xd8, 0xd6, 0xd5, 0xd5, 0xd5, 0xd4, 0xd3,\n    0xd1, 0xd2, 0xd2, 0xcf, 0xce, 0xcd, 0xc9, 0xc4, 0xc2, 0xc3, 0xc5, 0xc7, 0xc9, 0xca, 0xca, 0xca,\n    0xc4, 0xc3, 0xc1, 0xc0, 0xbe, 0xbb, 0xb8, 0xb6, 0xb5, 0xb5, 0xb5, 0xb3, 0xb2, 0xb1, 0xb2, 0xb2,\n    0xae, 0xab, 0x91, 0x7a, 0x80, 0x8d, 0x92, 0x97, 0x95, 0x95, 0x95, 0x95, 0x94, 0x93, 0x92, 0x92,\n    0x92, 0x91, 0x90, 0x8f, 0x8d, 0x8c, 0x8b, 0x8a, 0x8a, 0x89, 0x88, 0x86, 0x85, 0x83, 0x82, 0x82,\n    0x80, 0x7f, 0x7e, 0x7c, 0x7b, 0x78, 0x75, 0x73, 0x71, 0x6e, 0x6b, 0x6a, 0x69, 0x68, 0x65, 0x62,\n    0x5b, 0x5b, 0x5a, 0x57, 0x54, 0x50, 0x4d, 0x4a, 0x49, 0x46, 0x42, 0x3e, 0x3b, 0x37, 0x33, 0x30,\n    0x2f, 0x29, 0x2d, 0x41, 0x54, 0x5f, 0x67, 0x6f, 0x64, 0x63, 0x5d, 0x4e, 0x3a, 0x2e, 0x31, 0x3a,\n    0x50, 0x5f, 0x74, 0x76, 0x60, 0x48, 0x39, 0x2f, 0x39, 0x43, 0x46, 0x40, 0x35, 0x2b, 0x2f, 0x3f,\n    0x4e, 0x44, 0x3c, 0x39, 0x34, 0x2e, 0x2e, 0x33, 0x41, 0x43, 0x4b, 0x56, 0x57, 0x4c, 0x40, 0x3b,\n    0x42, 0x41, 0x44, 0x48, 0x47, 0x40, 0x39, 0x36, 0x4d, 0x4d, 0x4c, 0x47, 0x4c, 0x48, 0x45, 0x5e,\n    0x73, 0x83, 0x89, 0x74, 0x51, 0x3b, 0x3c, 0x46, 0x5f, 0x6f, 0x7b, 0x75, 0x66, 0x5b, 0x56, 0x54,\n    0x80, 0x86, 0x8c, 0x86, 0x6e, 0x53, 0x45, 0x45, 0x50, 0x58, 0x5f, 0x60, 0x5b, 0x56, 0x57, 0x5a,\n    0x3e, 0x34, 0x2c, 0x2c, 0x31, 0x38, 0x42, 0x4b, 0x3e, 0x45, 0x4a, 0x4f, 0x5b, 0x5e, 0x4d, 0x39,\n    0x3d, 0x32, 0x3d, 0x55, 0x53, 0x3a, 0x3b, 0x52, 0x4c, 0x33, 0x1c, 0x29, 0x3d, 0x31, 0x2d, 0x47,\n    0x6e, 0x74, 0x71, 0x6d, 0x71, 0x73, 0x6e, 0x6a, 0x65, 0x63, 0x61, 0x60, 0x5d, 0x5c, 0x5d, 0x60,\n    0x64, 0x65, 0x64, 0x5e, 0x58, 0x57, 0x5d, 0x63, 0x67, 0x66, 0x63, 0x67, 0x71, 0x71, 0x6b, 0x69,\n    0x68, 0x68, 0x6c, 0x72, 0x74, 0x70, 0x6a, 0x66, 0x6f, 0x6d, 0x6a, 0x69, 0x6a, 0x6b, 0x66, 0x5f,\n    0x60, 0x6a, 0x71, 0x71, 0x71, 0x71, 0x69, 0x5f, 0x5e, 0x65, 0x6c, 0x6f, 0x71, 0x73, 0x73, 0x70,\n    0x6f, 0x69, 0x62, 0x62, 0x69, 0x6f, 0x71, 0x6f, 0x6d, 0x73, 0x76, 0x74, 0x71, 0x70, 0x72, 0x73,\n    0x72, 0x70, 0x6f, 0x6e, 0x6e, 0x72, 0x7b, 0x84, 0x81, 0x72, 0x6c, 0x69, 0x62, 0x67, 0x71, 0x70,\n    0x79, 0x77, 0x74, 0x71, 0x6e, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x78, 0x74, 0x6b, 0x65, 0x65, 0x69,\n    0x70, 0x71, 0x70, 0x6e, 0x70, 0x73, 0x72, 0x6e, 0x6d, 0x6a, 0x68, 0x6a, 0x6d, 0x6f, 0x6e, 0x6c,\n    0x68, 0x64, 0x64, 0x6b, 0x77, 0x7f, 0x7e, 0x7a, 0x79, 0x75, 0x71, 0x70, 0x70, 0x6e, 0x6e, 0x6e,\n    0x6d, 0x70, 0x73, 0x72, 0x70, 0x6d, 0x6d, 0x6e, 0x77, 0x77, 0x78, 0x79, 0x7b, 0x7b, 0x78, 0x75,\n    0x66, 0x64, 0x71, 0x70, 0x74, 0x6e, 0x73, 0x6e, 0x62, 0x67, 0x6b, 0x6f, 0x73, 0x77, 0x76, 0x73,\n    0x77, 0x70, 0x71, 0x79, 0x80, 0x8c, 0x96, 0x95, 0x9d, 0xac, 0xbb, 0xbf, 0xbd, 0xbf, 0xc4, 0xc7,\n    0xc8, 0xc8, 0xc7, 0xc6, 0xc4, 0xc3, 0xc1, 0xc1, 0xb6, 0xb4, 0xb2, 0xb4, 0xb9, 0xbe, 0xc2, 0xc4,\n    0xc4, 0xc4, 0xc4, 0xc3, 0xc2, 0xc0, 0xbf, 0xbe, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xbf, 0xbc, 0xba,\n    0xb7, 0xb7, 0xb7, 0xb7, 0xb5, 0xb3, 0xb1, 0xaf, 0xb3, 0xb5, 0xb8, 0xb8, 0xb7, 0xb5, 0xb3, 0xb2,\n    0xad, 0xad, 0xac, 0xaa, 0xa8, 0xa7, 0xa7, 0xa8, 0xab, 0xaf, 0xb1, 0xaf, 0xae, 0xaf, 0xae, 0xac,\n    0xa2, 0xa1, 0x9b, 0x92, 0x8d, 0x91, 0x98, 0x9c, 0x9b, 0x8a, 0x73, 0x6e, 0x86, 0xd0, 0xe0, 0xe2,\n    0xe3, 0xe4, 0xe7, 0xeb, 0xf0, 0xf3, 0xf5, 0xf5, 0xf5, 0xf6, 0xf8, 0xfa, 0xfb, 0xfb, 0xfb, 0xfb,\n    0xfa, 0xfa, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xfa, 0xfa, 0xfb, 0xfb, 0xfb, 0xfa,\n    0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf8, 0xf8, 0xf9, 0xf9, 0xfa, 0xf9, 0xf9, 0xf9,\n    0xf8, 0xf9, 0xf9, 0xf9, 0xf9, 0xfa, 0xfa, 0xfa, 0xf8, 0xf9, 0xf9, 0xfa, 0xfa, 0xfb, 0xfb, 0xfc,\n    0xf9, 0xf9, 0xf9, 0xfa, 0xf9, 0xf9, 0xf8, 0xf7, 0xf5, 0xf3, 0xf1, 0xef, 0xef, 0xee, 0xec, 0xeb,\n    0xe7, 0xe8, 0xe8, 0xe9, 0xe9, 0xe8, 0xe7, 0xe7, 0xe7, 0xe8, 0xe9, 0xeb, 0xec, 0xec, 0xec, 0xeb,\n    0xe8, 0xe8, 0xe6, 0xe5, 0xe3, 0xe1, 0xe0, 0xe0, 0xe2, 0xe2, 0xe1, 0xe1, 0xe0, 0xe0, 0xe1, 0xe1,\n    0xe6, 0xe5, 0xe4, 0xe3, 0xe4, 0xe4, 0xe3, 0xe3, 0xdf, 0xe0, 0xe0, 0xe0, 0xdf, 0xdd, 0xdb, 0xda,\n    0xdd, 0xdd, 0xdc, 0xdb, 0xd9, 0xd8, 0xd7, 0xd6, 0xd7, 0xd6, 0xd4, 0xd4, 0xd4, 0xd4, 0xd3, 0xd1,\n    0xd2, 0xd3, 0xd3, 0xd0, 0xcf, 0xce, 0xca, 0xc5, 0xc4, 0xc5, 0xc7, 0xc8, 0xc9, 0xc9, 0xc9, 0xca,\n    0xc3, 0xc2, 0xc1, 0xc0, 0xc0, 0xbf, 0xbc, 0xb9, 0xb5, 0xb5, 0xb4, 0xb3, 0xb0, 0xaf, 0xaf, 0xb0,\n    0xaa, 0xa2, 0x88, 0x77, 0x83, 0x90, 0x93, 0x96, 0x93, 0x93, 0x93, 0x93, 0x92, 0x91, 0x90, 0x90,\n    0x91, 0x90, 0x8f, 0x8e, 0x8d, 0x8c, 0x8b, 0x8a, 0x87, 0x87, 0x86, 0x85, 0x84, 0x82, 0x82, 0x81,\n    0x7f, 0x7e, 0x7c, 0x7b, 0x79, 0x77, 0x73, 0x71, 0x6f, 0x6d, 0x6a, 0x68, 0x68, 0x67, 0x64, 0x61,\n    0x5b, 0x5a, 0x58, 0x55, 0x52, 0x50, 0x4f, 0x4e, 0x47, 0x44, 0x40, 0x3c, 0x38, 0x34, 0x30, 0x2d,\n    0x29, 0x2c, 0x3b, 0x50, 0x5b, 0x58, 0x56, 0x58, 0x52, 0x4d, 0x44, 0x38, 0x2c, 0x2a, 0x36, 0x44,\n    0x56, 0x54, 0x5e, 0x6c, 0x6a, 0x59, 0x40, 0x2a, 0x2d, 0x35, 0x3a, 0x3c, 0x36, 0x29, 0x26, 0x32,\n    0x3e, 0x3b, 0x3a, 0x3c, 0x3a, 0x35, 0x36, 0x39, 0x3a, 0x34, 0x3b, 0x4a, 0x4c, 0x3e, 0x37, 0x3b,\n    0x3c, 0x37, 0x36, 0x3c, 0x46, 0x51, 0x5e, 0x67, 0x51, 0x54, 0x55, 0x4f, 0x4d, 0x41, 0x46, 0x73,\n    0x8a, 0x92, 0x8b, 0x6c, 0x4b, 0x3d, 0x3c, 0x3d, 0x4a, 0x4e, 0x4b, 0x3d, 0x2f, 0x29, 0x2a, 0x2c,\n    0x50, 0x4c, 0x47, 0x4a, 0x56, 0x60, 0x60, 0x5a, 0x68, 0x62, 0x58, 0x4b, 0x40, 0x38, 0x36, 0x37,\n    0x31, 0x27, 0x1f, 0x23, 0x36, 0x4f, 0x65, 0x73, 0x6b, 0x56, 0x46, 0x40, 0x36, 0x2b, 0x29, 0x2e,\n    0x22, 0x2d, 0x36, 0x37, 0x31, 0x2d, 0x2b, 0x2a, 0x32, 0x51, 0x5d, 0x4e, 0x32, 0x1b, 0x2f, 0x63,\n    0x62, 0x77, 0x82, 0x7e, 0x78, 0x70, 0x69, 0x67, 0x5f, 0x61, 0x62, 0x61, 0x5e, 0x5d, 0x5f, 0x61,\n    0x69, 0x6a, 0x6b, 0x68, 0x63, 0x5f, 0x5d, 0x5d, 0x69, 0x69, 0x67, 0x6b, 0x72, 0x6e, 0x64, 0x61,\n    0x65, 0x67, 0x6c, 0x73, 0x77, 0x77, 0x73, 0x6f, 0x71, 0x6f, 0x6c, 0x6a, 0x6a, 0x69, 0x63, 0x5b,\n    0x5b, 0x64, 0x6d, 0x6f, 0x6c, 0x67, 0x60, 0x5a, 0x5e, 0x68, 0x71, 0x75, 0x77, 0x78, 0x74, 0x6e,\n    0x67, 0x66, 0x64, 0x65, 0x6b, 0x73, 0x77, 0x76, 0x76, 0x77, 0x74, 0x6e, 0x6b, 0x6d, 0x70, 0x71,\n    0x67, 0x68, 0x69, 0x69, 0x6a, 0x6f, 0x78, 0x80, 0x79, 0x6c, 0x63, 0x62, 0x63, 0x6a, 0x73, 0x76,\n    0x77, 0x74, 0x6e, 0x69, 0x67, 0x6a, 0x6f, 0x74, 0x70, 0x72, 0x73, 0x6f, 0x69, 0x65, 0x66, 0x68,\n    0x6b, 0x6b, 0x6b, 0x6c, 0x72, 0x78, 0x74, 0x6b, 0x5a, 0x5c, 0x63, 0x6b, 0x70, 0x70, 0x70, 0x71,\n    0x6d, 0x68, 0x65, 0x6b, 0x75, 0x7b, 0x7b, 0x77, 0x73, 0x74, 0x75, 0x74, 0x72, 0x6e, 0x6b, 0x6a,\n    0x78, 0x7a, 0x7a, 0x75, 0x6d, 0x66, 0x63, 0x62, 0x62, 0x6c, 0x7b, 0x87, 0x8a, 0x81, 0x6e, 0x5d,\n    0x5c, 0x5f, 0x6f, 0x6b, 0x66, 0x5d, 0x6b, 0x70, 0x5f, 0x65, 0x6d, 0x72, 0x77, 0x7c, 0x7d, 0x7b,\n    0x76, 0x6e, 0x70, 0x78, 0x80, 0x8b, 0x95, 0x96, 0xa1, 0xaf, 0xb9, 0xba, 0xba, 0xc0, 0xc6, 0xc6,\n    0xc7, 0xc5, 0xc3, 0xc1, 0xc0, 0xc1, 0xc2, 0xc3, 0xc2, 0xbe, 0xb7, 0xb3, 0xb3, 0xb8, 0xc0, 0xc5,\n    0xc2, 0xc2, 0xc1, 0xc1, 0xc0, 0xbf, 0xbe, 0xbd, 0xc0, 0xc0, 0xbf, 0xc0, 0xc0, 0xbf, 0xbd, 0xbc,\n    0xba, 0xb8, 0xb4, 0xb0, 0xad, 0xac, 0xab, 0xab, 0xaf, 0xb1, 0xb2, 0xb3, 0xb1, 0xb0, 0xae, 0xae,\n    0xaa, 0xaa, 0xab, 0xab, 0xab, 0xaa, 0xa9, 0xa9, 0xa9, 0xab, 0xac, 0xaa, 0xaa, 0xab, 0xaa, 0xa7,\n    0x9f, 0x9f, 0x9a, 0x92, 0x8d, 0x90, 0x96, 0x99, 0x9c, 0x93, 0x7a, 0x70, 0x77, 0xb6, 0xda, 0xd8,\n    0xdb, 0xde, 0xe4, 0xe9, 0xee, 0xf2, 0xf4, 0xf6, 0xf5, 0xf6, 0xf8, 0xf9, 0xfb, 0xfb, 0xfb, 0xfb,\n    0xfa, 0xfa, 0xf9, 0xf8, 0xf8, 0xf8, 0xf9, 0xf9, 0xf8, 0xf8, 0xf8, 0xf9, 0xf9, 0xfa, 0xfa, 0xfa,\n    0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf7, 0xf8, 0xf9, 0xf9, 0xfa, 0xf9, 0xf9, 0xf8,\n    0xf9, 0xf9, 0xf9, 0xf9, 0xfa, 0xfa, 0xfa, 0xfb, 0xfc, 0xfb, 0xfb, 0xfa, 0xfa, 0xf9, 0xf9, 0xf9,\n    0xf8, 0xf8, 0xf9, 0xf8, 0xf7, 0xf6, 0xf5, 0xf4, 0xf0, 0xed, 0xe9, 0xe7, 0xe8, 0xe9, 0xeb, 0xeb,\n    0xe9, 0xe9, 0xea, 0xea, 0xe9, 0xe8, 0xe7, 0xe6, 0xe5, 0xe6, 0xe6, 0xe7, 0xe8, 0xe8, 0xe8, 0xe8,\n    0xe7, 0xe6, 0xe5, 0xe3, 0xe2, 0xe1, 0xe0, 0xe0, 0xe5, 0xe4, 0xe4, 0xe3, 0xe3, 0xe2, 0xe2, 0xe3,\n    0xe8, 0xe6, 0xe3, 0xe2, 0xe2, 0xe2, 0xe2, 0xe1, 0xdc, 0xdd, 0xdf, 0xdf, 0xdf, 0xdd, 0xdc, 0xda,\n    0xdc, 0xdb, 0xda, 0xd8, 0xd7, 0xd6, 0xd6, 0xd6, 0xd8, 0xd7, 0xd6, 0xd5, 0xd6, 0xd6, 0xd4, 0xd3,\n    0xd4, 0xd5, 0xd3, 0xd0, 0xcf, 0xce, 0xcb, 0xc7, 0xc7, 0xc8, 0xc9, 0xc9, 0xc8, 0xc8, 0xc9, 0xca,\n    0xc3, 0xc1, 0xc0, 0xc1, 0xc2, 0xc1, 0xbd, 0xba, 0xb5, 0xb5, 0xb3, 0xb2, 0xb0, 0xaf, 0xad, 0xad,\n    0xa4, 0x95, 0x80, 0x7a, 0x87, 0x92, 0x94, 0x94, 0x92, 0x92, 0x91, 0x91, 0x90, 0x8f, 0x8e, 0x8d,\n    0x8f, 0x8f, 0x8e, 0x8d, 0x8c, 0x8b, 0x8a, 0x8a, 0x86, 0x86, 0x85, 0x84, 0x82, 0x81, 0x80, 0x80,\n    0x7e, 0x7c, 0x7a, 0x78, 0x77, 0x74, 0x71, 0x6f, 0x6e, 0x6c, 0x69, 0x68, 0x68, 0x66, 0x62, 0x5f,\n    0x5c, 0x5a, 0x57, 0x54, 0x51, 0x50, 0x50, 0x50, 0x48, 0x45, 0x40, 0x3b, 0x37, 0x32, 0x2e, 0x2b,\n    0x23, 0x36, 0x50, 0x5e, 0x57, 0x47, 0x40, 0x42, 0x4a, 0x3c, 0x2f, 0x2e, 0x35, 0x42, 0x53, 0x60,\n    0x4f, 0x3e, 0x3e, 0x54, 0x65, 0x69, 0x5e, 0x4e, 0x2c, 0x2a, 0x27, 0x2b, 0x2d, 0x25, 0x25, 0x31,\n    0x24, 0x2b, 0x34, 0x3a, 0x3b, 0x3b, 0x3d, 0x3f, 0x38, 0x3e, 0x43, 0x43, 0x3b, 0x36, 0x3b, 0x44,\n    0x39, 0x3d, 0x44, 0x4a, 0x4d, 0x4b, 0x45, 0x41, 0x4f, 0x5d, 0x61, 0x59, 0x5f, 0x67, 0x73, 0x98,\n    0x9d, 0x98, 0x82, 0x5f, 0x47, 0x3f, 0x3a, 0x33, 0x2c, 0x1f, 0x1a, 0x20, 0x22, 0x1b, 0x1b, 0x21,\n    0x17, 0x15, 0x13, 0x1f, 0x40, 0x65, 0x72, 0x6d, 0x4c, 0x3f, 0x2e, 0x22, 0x1e, 0x1f, 0x22, 0x24,\n    0x1f, 0x22, 0x24, 0x21, 0x22, 0x2d, 0x3c, 0x48, 0x5a, 0x5c, 0x61, 0x5d, 0x4f, 0x4b, 0x4e, 0x4e,\n    0x49, 0x3d, 0x3e, 0x47, 0x39, 0x20, 0x1f, 0x34, 0x65, 0x74, 0x56, 0x24, 0x23, 0x49, 0x66, 0x6e,\n    0x6b, 0x83, 0x8e, 0x83, 0x74, 0x66, 0x5b, 0x58, 0x5a, 0x5e, 0x61, 0x5f, 0x5c, 0x5c, 0x61, 0x65,\n    0x71, 0x72, 0x72, 0x6e, 0x69, 0x67, 0x68, 0x6a, 0x73, 0x74, 0x72, 0x74, 0x76, 0x6c, 0x61, 0x60,\n    0x68, 0x6a, 0x6e, 0x73, 0x78, 0x7a, 0x78, 0x75, 0x72, 0x72, 0x6e, 0x69, 0x65, 0x65, 0x64, 0x62,\n    0x64, 0x68, 0x6d, 0x6e, 0x66, 0x5c, 0x58, 0x5a, 0x63, 0x6e, 0x77, 0x78, 0x76, 0x73, 0x6b, 0x61,\n    0x5f, 0x62, 0x63, 0x62, 0x65, 0x6e, 0x74, 0x76, 0x7d, 0x7a, 0x73, 0x69, 0x63, 0x65, 0x69, 0x6b,\n    0x72, 0x76, 0x7a, 0x7c, 0x7c, 0x79, 0x75, 0x72, 0x74, 0x6f, 0x65, 0x63, 0x68, 0x6c, 0x71, 0x78,\n    0x74, 0x70, 0x6b, 0x66, 0x64, 0x67, 0x6c, 0x70, 0x7e, 0x7b, 0x76, 0x72, 0x6e, 0x6c, 0x6c, 0x6c,\n    0x68, 0x6e, 0x71, 0x72, 0x74, 0x77, 0x72, 0x6a, 0x64, 0x6a, 0x72, 0x74, 0x6c, 0x62, 0x60, 0x64,\n    0x6f, 0x6d, 0x6c, 0x6f, 0x73, 0x76, 0x76, 0x75, 0x77, 0x7c, 0x7f, 0x7c, 0x77, 0x72, 0x71, 0x71,\n    0x7e, 0x80, 0x80, 0x7a, 0x70, 0x67, 0x63, 0x62, 0x69, 0x6e, 0x73, 0x75, 0x76, 0x74, 0x6c, 0x63,\n    0x67, 0x5a, 0x60, 0x66, 0x72, 0x6d, 0x6b, 0x5d, 0x65, 0x67, 0x69, 0x6c, 0x72, 0x77, 0x79, 0x77,\n    0x73, 0x6d, 0x71, 0x79, 0x7e, 0x87, 0x92, 0x96, 0xa6, 0xb2, 0xb9, 0xb8, 0xbb, 0xc5, 0xc8, 0xc5,\n    0xc3, 0xc2, 0xc0, 0xbe, 0xbe, 0xc0, 0xc2, 0xc3, 0xca, 0xc8, 0xc4, 0xbe, 0xba, 0xbb, 0xc0, 0xc4,\n    0xc1, 0xc1, 0xc1, 0xc1, 0xc0, 0xbf, 0xbf, 0xbe, 0xbf, 0xbe, 0xbd, 0xbd, 0xbe, 0xbe, 0xbd, 0xbc,\n    0xbe, 0xbc, 0xb8, 0xb3, 0xaf, 0xac, 0xaa, 0xaa, 0xac, 0xae, 0xb0, 0xb0, 0xb0, 0xaf, 0xaf, 0xaf,\n    0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xae, 0xae, 0xaa, 0xab, 0xa9, 0xa7, 0xa8, 0xa9, 0xa7, 0xa3,\n    0xa0, 0x9f, 0x99, 0x91, 0x8c, 0x8e, 0x93, 0x95, 0x9d, 0x9c, 0x81, 0x72, 0x6b, 0x9a, 0xd3, 0xce,\n    0xd6, 0xdb, 0xe3, 0xe9, 0xed, 0xf0, 0xf3, 0xf5, 0xf4, 0xf5, 0xf7, 0xf8, 0xfa, 0xfa, 0xfb, 0xfb,\n    0xf9, 0xf9, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf7, 0xf7, 0xf7, 0xf7, 0xf7, 0xf7, 0xf8, 0xf8,\n    0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf7, 0xf8, 0xf9, 0xfa, 0xfa, 0xfa, 0xf9, 0xf8,\n    0xf9, 0xf9, 0xf9, 0xfa, 0xfa, 0xfb, 0xfb, 0xfb, 0xfc, 0xfb, 0xfb, 0xfa, 0xf9, 0xf8, 0xf8, 0xf7,\n    0xf8, 0xf7, 0xf7, 0xf6, 0xf3, 0xf1, 0xee, 0xec, 0xe6, 0xe2, 0xdd, 0xdb, 0xdd, 0xe1, 0xe6, 0xe9,\n    0xec, 0xec, 0xec, 0xec, 0xeb, 0xe9, 0xe7, 0xe6, 0xe6, 0xe5, 0xe5, 0xe4, 0xe4, 0xe5, 0xe5, 0xe5,\n    0xe6, 0xe6, 0xe5, 0xe4, 0xe3, 0xe3, 0xe3, 0xe3, 0xe8, 0xe7, 0xe6, 0xe5, 0xe4, 0xe4, 0xe4, 0xe4,\n    0xe4, 0xe3, 0xe2, 0xe1, 0xe2, 0xe1, 0xe0, 0xdf, 0xdd, 0xdd, 0xde, 0xde, 0xde, 0xde, 0xde, 0xde,\n    0xdc, 0xdc, 0xdc, 0xdb, 0xda, 0xd9, 0xd8, 0xd7, 0xd9, 0xd8, 0xd8, 0xd8, 0xd8, 0xd8, 0xd7, 0xd6,\n    0xd5, 0xd5, 0xd3, 0xcf, 0xce, 0xce, 0xcd, 0xc9, 0xc9, 0xca, 0xca, 0xc9, 0xc7, 0xc7, 0xc9, 0xcb,\n    0xc5, 0xc3, 0xc1, 0xc1, 0xc2, 0xc0, 0xbb, 0xb8, 0xb6, 0xb4, 0xb2, 0xb1, 0xb1, 0xaf, 0xac, 0xa9,\n    0x9e, 0x87, 0x7a, 0x7f, 0x89, 0x91, 0x94, 0x91, 0x91, 0x91, 0x91, 0x90, 0x8f, 0x8d, 0x8c, 0x8b,\n    0x8c, 0x8c, 0x8b, 0x8b, 0x8a, 0x8a, 0x89, 0x89, 0x86, 0x86, 0x84, 0x83, 0x81, 0x80, 0x7e, 0x7e,\n    0x7e, 0x7b, 0x78, 0x76, 0x74, 0x72, 0x70, 0x6e, 0x6e, 0x6c, 0x69, 0x68, 0x67, 0x65, 0x61, 0x5e,\n    0x5c, 0x5a, 0x58, 0x54, 0x51, 0x4f, 0x4d, 0x4c, 0x47, 0x44, 0x40, 0x3b, 0x36, 0x31, 0x2c, 0x28,\n    0x2a, 0x45, 0x63, 0x6c, 0x5f, 0x4d, 0x45, 0x45, 0x45, 0x3a, 0x34, 0x3a, 0x46, 0x54, 0x63, 0x70,\n    0x57, 0x3f, 0x35, 0x3d, 0x47, 0x4f, 0x57, 0x59, 0x51, 0x41, 0x30, 0x2c, 0x2c, 0x26, 0x2a, 0x39,\n    0x5a, 0x64, 0x69, 0x61, 0x56, 0x4f, 0x49, 0x45, 0x53, 0x57, 0x54, 0x45, 0x37, 0x36, 0x40, 0x49,\n    0x53, 0x53, 0x4f, 0x4d, 0x55, 0x65, 0x72, 0x76, 0x79, 0x87, 0x86, 0x6b, 0x62, 0x6c, 0x7d, 0x9a,\n    0x9d, 0x86, 0x64, 0x48, 0x3a, 0x36, 0x30, 0x29, 0x2f, 0x22, 0x1e, 0x26, 0x28, 0x1e, 0x1c, 0x22,\n    0x21, 0x30, 0x3d, 0x43, 0x47, 0x48, 0x3e, 0x30, 0x29, 0x25, 0x22, 0x24, 0x26, 0x25, 0x1e, 0x17,\n    0x12, 0x15, 0x19, 0x1d, 0x25, 0x2a, 0x27, 0x20, 0x26, 0x38, 0x51, 0x60, 0x70, 0x85, 0x81, 0x63,\n    0x64, 0x72, 0x79, 0x72, 0x6d, 0x76, 0x83, 0x8a, 0x5e, 0x48, 0x2f, 0x29, 0x36, 0x46, 0x52, 0x58,\n    0x7c, 0x87, 0x81, 0x6d, 0x61, 0x5c, 0x59, 0x5a, 0x5b, 0x60, 0x62, 0x5e, 0x59, 0x5a, 0x5f, 0x64,\n    0x72, 0x77, 0x7b, 0x7b, 0x77, 0x74, 0x76, 0x79, 0x78, 0x7a, 0x7a, 0x7c, 0x7d, 0x73, 0x69, 0x6a,\n    0x6c, 0x6d, 0x6e, 0x70, 0x74, 0x77, 0x76, 0x73, 0x74, 0x75, 0x70, 0x66, 0x5e, 0x5f, 0x64, 0x69,\n    0x70, 0x6f, 0x70, 0x6e, 0x62, 0x55, 0x55, 0x5d, 0x5d, 0x68, 0x71, 0x72, 0x70, 0x6c, 0x62, 0x57,\n    0x58, 0x5d, 0x5e, 0x5c, 0x5f, 0x6a, 0x76, 0x7c, 0x7f, 0x7d, 0x73, 0x65, 0x5b, 0x5b, 0x60, 0x63,\n    0x62, 0x65, 0x6b, 0x73, 0x7c, 0x80, 0x7e, 0x7a, 0x73, 0x74, 0x6a, 0x65, 0x6b, 0x69, 0x69, 0x75,\n    0x76, 0x73, 0x6f, 0x6a, 0x68, 0x68, 0x6b, 0x6e, 0x81, 0x7a, 0x70, 0x69, 0x67, 0x67, 0x67, 0x66,\n    0x6c, 0x77, 0x7d, 0x7a, 0x75, 0x73, 0x6e, 0x67, 0x6b, 0x75, 0x80, 0x7f, 0x70, 0x62, 0x63, 0x6b,\n    0x67, 0x6a, 0x6e, 0x71, 0x74, 0x76, 0x78, 0x7a, 0x7e, 0x82, 0x84, 0x7d, 0x75, 0x71, 0x74, 0x77,\n    0x7f, 0x82, 0x82, 0x7e, 0x75, 0x6d, 0x6a, 0x6a, 0x78, 0x7b, 0x7a, 0x75, 0x70, 0x6e, 0x6a, 0x65,\n    0x63, 0x5a, 0x62, 0x66, 0x6f, 0x6a, 0x6d, 0x66, 0x68, 0x69, 0x6d, 0x72, 0x79, 0x7d, 0x79, 0x72,\n    0x70, 0x6c, 0x72, 0x79, 0x7a, 0x80, 0x8d, 0x94, 0xaa, 0xb5, 0xbb, 0xb9, 0xbe, 0xc8, 0xca, 0xc4,\n    0xc0, 0xbf, 0xbe, 0xbd, 0xbe, 0xbf, 0xc2, 0xc3, 0xc5, 0xc9, 0xcb, 0xc8, 0xc3, 0xbe, 0xbd, 0xbf,\n    0xc3, 0xc3, 0xc3, 0xc3, 0xc2, 0xc2, 0xc1, 0xc0, 0xc2, 0xc0, 0xbf, 0xbe, 0xbe, 0xbe, 0xbd, 0xbc,\n    0xbd, 0xbd, 0xbb, 0xb9, 0xb5, 0xb0, 0xab, 0xa8, 0xab, 0xad, 0xaf, 0xb0, 0xb1, 0xb2, 0xb4, 0xb5,\n    0xb6, 0xb5, 0xb3, 0xb1, 0xb1, 0xb0, 0xaf, 0xaf, 0xad, 0xac, 0xa9, 0xa7, 0xa9, 0xaa, 0xa7, 0xa2,\n    0xa1, 0x9f, 0x99, 0x8f, 0x8b, 0x8d, 0x91, 0x93, 0x98, 0x9e, 0x84, 0x75, 0x69, 0x90, 0xda, 0xd5,\n    0xd3, 0xda, 0xe3, 0xe9, 0xec, 0xee, 0xf1, 0xf4, 0xf3, 0xf4, 0xf5, 0xf7, 0xf9, 0xf9, 0xfa, 0xfa,\n    0xf9, 0xf9, 0xf8, 0xf8, 0xf7, 0xf7, 0xf8, 0xf8, 0xfb, 0xfa, 0xfa, 0xf9, 0xf9, 0xf8, 0xf9, 0xf9,\n    0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf8, 0xf9, 0xfa, 0xfb, 0xfb, 0xfb, 0xfa, 0xf9,\n    0xf9, 0xf9, 0xfa, 0xfa, 0xfb, 0xfb, 0xfc, 0xfc, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf8, 0xf8, 0xf8,\n    0xf7, 0xf7, 0xf5, 0xf3, 0xf0, 0xec, 0xe8, 0xe6, 0xde, 0xd9, 0xd3, 0xd1, 0xd3, 0xda, 0xe1, 0xe5,\n    0xef, 0xef, 0xee, 0xee, 0xec, 0xea, 0xe8, 0xe7, 0xe7, 0xe6, 0xe5, 0xe4, 0xe4, 0xe4, 0xe4, 0xe5,\n    0xe6, 0xe5, 0xe5, 0xe5, 0xe5, 0xe6, 0xe7, 0xe7, 0xe6, 0xe5, 0xe4, 0xe3, 0xe2, 0xe1, 0xe1, 0xe1,\n    0xdf, 0xdf, 0xe0, 0xe1, 0xe2, 0xe1, 0xde, 0xdc, 0xde, 0xdd, 0xdb, 0xda, 0xd9, 0xda, 0xdc, 0xdd,\n    0xdb, 0xdc, 0xde, 0xdf, 0xde, 0xdc, 0xda, 0xd8, 0xda, 0xd9, 0xd8, 0xd9, 0xd9, 0xd9, 0xd8, 0xd7,\n    0xd5, 0xd5, 0xd2, 0xce, 0xcd, 0xce, 0xcd, 0xca, 0xca, 0xcb, 0xca, 0xc8, 0xc6, 0xc7, 0xca, 0xcc,\n    0xc7, 0xc4, 0xc2, 0xc1, 0xc1, 0xbe, 0xb9, 0xb4, 0xb6, 0xb3, 0xb1, 0xb1, 0xb2, 0xb0, 0xab, 0xa7,\n    0x9a, 0x7e, 0x76, 0x83, 0x8b, 0x90, 0x94, 0x8f, 0x91, 0x91, 0x90, 0x8f, 0x8e, 0x8c, 0x8b, 0x8a,\n    0x8a, 0x8a, 0x8a, 0x89, 0x89, 0x89, 0x88, 0x88, 0x87, 0x86, 0x85, 0x83, 0x80, 0x7e, 0x7d, 0x7c,\n    0x7d, 0x7b, 0x77, 0x74, 0x72, 0x71, 0x6f, 0x6d, 0x6e, 0x6c, 0x69, 0x68, 0x67, 0x65, 0x61, 0x5e,\n    0x5b, 0x5a, 0x58, 0x56, 0x52, 0x4e, 0x4b, 0x49, 0x42, 0x40, 0x3c, 0x37, 0x33, 0x2d, 0x27, 0x23,\n    0x35, 0x52, 0x73, 0x80, 0x77, 0x64, 0x53, 0x48, 0x31, 0x36, 0x44, 0x52, 0x58, 0x59, 0x60, 0x6a,\n    0x6e, 0x50, 0x3d, 0x3d, 0x42, 0x4d, 0x5c, 0x65, 0x62, 0x52, 0x41, 0x40, 0x43, 0x3e, 0x42, 0x52,\n    0x72, 0x83, 0x8c, 0x85, 0x7d, 0x7c, 0x7c, 0x78, 0x7b, 0x70, 0x5f, 0x4c, 0x3c, 0x35, 0x3a, 0x43,\n    0x54, 0x60, 0x6a, 0x6f, 0x77, 0x7d, 0x7a, 0x71, 0x84, 0x74, 0x61, 0x55, 0x6a, 0x87, 0x90, 0x9c,\n    0x97, 0x78, 0x56, 0x45, 0x40, 0x3a, 0x31, 0x2a, 0x2c, 0x2c, 0x28, 0x22, 0x1f, 0x25, 0x33, 0x3e,\n    0x4c, 0x52, 0x53, 0x49, 0x3c, 0x32, 0x2a, 0x25, 0x27, 0x22, 0x20, 0x24, 0x2c, 0x31, 0x31, 0x2f,\n    0x34, 0x33, 0x2d, 0x26, 0x27, 0x2e, 0x2f, 0x2c, 0x24, 0x2a, 0x3b, 0x42, 0x43, 0x57, 0x72, 0x7a,\n    0x97, 0xa1, 0xa8, 0xa1, 0x85, 0x5c, 0x33, 0x18, 0x1a, 0x1b, 0x2a, 0x39, 0x36, 0x27, 0x1c, 0x15,\n    0x71, 0x69, 0x62, 0x60, 0x5d, 0x59, 0x59, 0x5d, 0x5f, 0x60, 0x60, 0x5e, 0x5b, 0x5b, 0x5d, 0x5f,\n    0x6a, 0x6b, 0x71, 0x78, 0x7b, 0x78, 0x74, 0x73, 0x75, 0x7b, 0x7e, 0x7c, 0x78, 0x75, 0x73, 0x71,\n    0x66, 0x5e, 0x5e, 0x6b, 0x77, 0x79, 0x75, 0x74, 0x76, 0x73, 0x6e, 0x68, 0x60, 0x5e, 0x63, 0x6b,\n    0x6c, 0x6f, 0x69, 0x6b, 0x5f, 0x5f, 0x58, 0x59, 0x5e, 0x64, 0x68, 0x67, 0x65, 0x66, 0x68, 0x69,\n    0x65, 0x64, 0x64, 0x67, 0x6a, 0x6c, 0x72, 0x77, 0x7a, 0x72, 0x6b, 0x67, 0x62, 0x5e, 0x61, 0x68,\n    0x6c, 0x74, 0x77, 0x79, 0x7e, 0x7f, 0x7f, 0x82, 0x79, 0x6e, 0x63, 0x61, 0x62, 0x64, 0x66, 0x68,\n    0x5d, 0x5e, 0x63, 0x6c, 0x74, 0x78, 0x79, 0x78, 0x7b, 0x70, 0x63, 0x61, 0x66, 0x6c, 0x6c, 0x68,\n    0x6d, 0x69, 0x73, 0x79, 0x6f, 0x6a, 0x6a, 0x62, 0x64, 0x75, 0x85, 0x81, 0x76, 0x6d, 0x73, 0x79,\n    0x7a, 0x77, 0x6f, 0x6c, 0x73, 0x75, 0x74, 0x77, 0x74, 0x76, 0x79, 0x79, 0x77, 0x78, 0x7e, 0x85,\n    0x7f, 0x7e, 0x7f, 0x82, 0x80, 0x78, 0x70, 0x6c, 0x76, 0x7e, 0x83, 0x7f, 0x79, 0x74, 0x6f, 0x6a,\n    0x6a, 0x74, 0x7b, 0x7b, 0x7f, 0x85, 0x84, 0x7c, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x75, 0x75,\n    0x7d, 0x6c, 0x70, 0x71, 0x77, 0x84, 0x8b, 0xa1, 0xac, 0xb1, 0xb8, 0xbf, 0xc4, 0xc5, 0xc4, 0xc2,\n    0xbf, 0xbc, 0xba, 0xbb, 0xbe, 0xc3, 0xc5, 0xc6, 0xc8, 0xca, 0xcb, 0xc9, 0xc6, 0xc2, 0xc0, 0xbf,\n    0xc0, 0xc1, 0xc3, 0xc4, 0xc4, 0xc2, 0xc0, 0xbe, 0xbf, 0xbf, 0xbe, 0xbf, 0xc0, 0xc0, 0xc0, 0xbf,\n    0xbc, 0xba, 0xb8, 0xb8, 0xba, 0xbb, 0xbb, 0xba, 0xb3, 0xb0, 0xae, 0xb0, 0xb2, 0xb2, 0xb3, 0xb5,\n    0xb4, 0xb3, 0xb2, 0xb1, 0xb1, 0xb1, 0xb1, 0xb0, 0xae, 0xae, 0xae, 0xae, 0xae, 0xaa, 0xa5, 0xa1,\n    0x9f, 0x9d, 0x97, 0x8d, 0x84, 0x82, 0x89, 0x92, 0x96, 0x9e, 0x88, 0x75, 0x68, 0x8b, 0xcd, 0xd0,\n    0xd5, 0xd9, 0xde, 0xe3, 0xe8, 0xed, 0xf1, 0xf4, 0xf4, 0xf5, 0xf6, 0xf8, 0xf9, 0xf9, 0xfa, 0xfa,\n    0xfa, 0xf8, 0xf8, 0xf9, 0xfa, 0xf9, 0xf7, 0xf4, 0xf6, 0xf7, 0xf9, 0xfa, 0xfb, 0xfb, 0xfa, 0xf9,\n    0xfa, 0xfa, 0xf9, 0xf8, 0xf7, 0xf7, 0xf7, 0xf7, 0xf4, 0xf7, 0xfa, 0xfa, 0xf9, 0xf8, 0xf8, 0xf9,\n    0xfa, 0xf9, 0xf9, 0xf9, 0xf9, 0xfa, 0xfa, 0xfa, 0xf9, 0xf8, 0xf9, 0xfa, 0xfb, 0xfa, 0xf8, 0xf6,\n    0xf7, 0xf8, 0xf4, 0xed, 0xe9, 0xe6, 0xe1, 0xda, 0xd7, 0xce, 0xc9, 0xcb, 0xce, 0xd1, 0xd9, 0xe3,\n    0xe6, 0xe7, 0xe9, 0xe9, 0xe7, 0xe5, 0xe4, 0xe4, 0xe4, 0xe5, 0xe7, 0xe9, 0xe9, 0xe7, 0xe5, 0xe3,\n    0xe6, 0xe4, 0xe3, 0xe4, 0xe6, 0xe5, 0xe3, 0xe0, 0xdf, 0xdf, 0xdf, 0xde, 0xde, 0xde, 0xdd, 0xdd,\n    0xdb, 0xdd, 0xdf, 0xe1, 0xe1, 0xdf, 0xdc, 0xdb, 0xdd, 0xdb, 0xd9, 0xd8, 0xda, 0xdc, 0xdd, 0xde,\n    0xdc, 0xde, 0xdf, 0xdf, 0xdd, 0xdb, 0xdb, 0xdb, 0xd9, 0xd9, 0xda, 0xda, 0xda, 0xda, 0xda, 0xda,\n    0xd5, 0xd3, 0xd1, 0xd0, 0xd0, 0xd0, 0xcd, 0xcb, 0xc9, 0xca, 0xcb, 0xca, 0xc9, 0xc9, 0xc9, 0xca,\n    0xc6, 0xc4, 0xc3, 0xc2, 0xc2, 0xbf, 0xba, 0xb7, 0xb6, 0xb6, 0xb3, 0xae, 0xad, 0xac, 0xa7, 0x9e,\n    0x8a, 0x7c, 0x79, 0x87, 0x92, 0x90, 0x8e, 0x92, 0x8f, 0x8f, 0x8e, 0x8d, 0x8c, 0x8b, 0x89, 0x89,\n    0x89, 0x89, 0x88, 0x87, 0x87, 0x86, 0x86, 0x85, 0x87, 0x85, 0x83, 0x82, 0x81, 0x7f, 0x7c, 0x7a,\n    0x7c, 0x79, 0x76, 0x76, 0x74, 0x70, 0x6d, 0x6d, 0x6d, 0x6c, 0x6a, 0x69, 0x67, 0x63, 0x5f, 0x5c,\n    0x5b, 0x5a, 0x58, 0x54, 0x50, 0x4c, 0x49, 0x48, 0x42, 0x3f, 0x3c, 0x38, 0x32, 0x2a, 0x2a, 0x2e,\n    0x3f, 0x5d, 0x75, 0x71, 0x60, 0x54, 0x4d, 0x47, 0x3d, 0x48, 0x57, 0x5f, 0x5b, 0x59, 0x63, 0x71,\n    0x76, 0x66, 0x58, 0x53, 0x4f, 0x4a, 0x4a, 0x50, 0x5c, 0x62, 0x59, 0x4f, 0x4a, 0x3a, 0x39, 0x50,\n    0x74, 0x89, 0x8b, 0x7f, 0x7e, 0x7c, 0x75, 0x74, 0x5f, 0x56, 0x4b, 0x40, 0x33, 0x2e, 0x3c, 0x50,\n    0x5b, 0x70, 0x73, 0x66, 0x64, 0x69, 0x67, 0x62, 0x59, 0x5a, 0x5a, 0x68, 0x7b, 0x90, 0x9b, 0x8c,\n    0x81, 0x65, 0x44, 0x30, 0x29, 0x27, 0x29, 0x2c, 0x32, 0x25, 0x1c, 0x1e, 0x26, 0x33, 0x4a, 0x5f,\n    0x60, 0x52, 0x49, 0x38, 0x38, 0x29, 0x28, 0x21, 0x26, 0x34, 0x38, 0x3b, 0x42, 0x40, 0x3b, 0x3f,\n    0x42, 0x43, 0x47, 0x48, 0x3c, 0x32, 0x39, 0x48, 0x4d, 0x4f, 0x4c, 0x4c, 0x5c, 0x6e, 0x6e, 0x61,\n    0x64, 0x65, 0x5e, 0x49, 0x2e, 0x1d, 0x1a, 0x1f, 0x20, 0x26, 0x2c, 0x2c, 0x27, 0x21, 0x1d, 0x1c,\n    0x5a, 0x57, 0x57, 0x59, 0x5b, 0x5a, 0x5b, 0x5c, 0x68, 0x68, 0x67, 0x63, 0x5f, 0x5e, 0x5f, 0x61,\n    0x62, 0x66, 0x70, 0x7c, 0x83, 0x83, 0x81, 0x80, 0x77, 0x7c, 0x7f, 0x7f, 0x7d, 0x7b, 0x77, 0x73,\n    0x68, 0x5f, 0x5d, 0x69, 0x75, 0x77, 0x73, 0x71, 0x71, 0x6e, 0x6b, 0x68, 0x64, 0x62, 0x67, 0x6d,\n    0x6d, 0x6f, 0x68, 0x69, 0x5e, 0x61, 0x5d, 0x60, 0x58, 0x5c, 0x60, 0x63, 0x66, 0x6b, 0x6c, 0x6c,\n    0x66, 0x67, 0x6b, 0x71, 0x73, 0x71, 0x71, 0x73, 0x72, 0x6d, 0x67, 0x63, 0x61, 0x61, 0x64, 0x68,\n    0x6e, 0x75, 0x79, 0x7d, 0x80, 0x79, 0x71, 0x70, 0x77, 0x6f, 0x69, 0x6a, 0x70, 0x71, 0x69, 0x60,\n    0x6d, 0x6e, 0x6f, 0x71, 0x72, 0x72, 0x75, 0x77, 0x73, 0x6a, 0x60, 0x5f, 0x67, 0x70, 0x74, 0x74,\n    0x70, 0x63, 0x63, 0x6b, 0x6d, 0x70, 0x6e, 0x63, 0x61, 0x74, 0x80, 0x82, 0x75, 0x74, 0x79, 0x81,\n    0x76, 0x77, 0x73, 0x73, 0x79, 0x79, 0x74, 0x75, 0x74, 0x74, 0x76, 0x77, 0x77, 0x78, 0x7b, 0x7e,\n    0x7f, 0x7e, 0x80, 0x84, 0x83, 0x7c, 0x75, 0x71, 0x73, 0x7a, 0x80, 0x7e, 0x7a, 0x79, 0x78, 0x77,\n    0x6c, 0x71, 0x74, 0x71, 0x72, 0x78, 0x7d, 0x7e, 0x72, 0x73, 0x76, 0x78, 0x79, 0x79, 0x78, 0x78,\n    0x77, 0x69, 0x71, 0x7b, 0x85, 0x8f, 0x94, 0xa7, 0xb1, 0xb6, 0xbd, 0xc2, 0xc5, 0xc4, 0xc0, 0xbe,\n    0xba, 0xba, 0xbb, 0xbe, 0xc2, 0xc4, 0xc5, 0xc6, 0xc8, 0xca, 0xcc, 0xcc, 0xc8, 0xc3, 0xc0, 0xbe,\n    0xbd, 0xbe, 0xc0, 0xc1, 0xc1, 0xc0, 0xbe, 0xbd, 0xc0, 0xbf, 0xbe, 0xbf, 0xc0, 0xc1, 0xc0, 0xbf,\n    0xbf, 0xbd, 0xbb, 0xba, 0xba, 0xb9, 0xb7, 0xb5, 0xaa, 0xa7, 0xa6, 0xa8, 0xaa, 0xaa, 0xab, 0xae,\n    0xb1, 0xb1, 0xb0, 0xb0, 0xb1, 0xb2, 0xb3, 0xb3, 0xb2, 0xb2, 0xb2, 0xb2, 0xb1, 0xad, 0xa8, 0xa4,\n    0x9f, 0x9d, 0x9b, 0x94, 0x8a, 0x83, 0x86, 0x8e, 0x99, 0xa1, 0x8f, 0x7a, 0x64, 0x7b, 0xbb, 0xc9,\n    0xce, 0xd2, 0xd8, 0xde, 0xe3, 0xe8, 0xec, 0xef, 0xf1, 0xf2, 0xf4, 0xf6, 0xf7, 0xf9, 0xfa, 0xfa,\n    0xf9, 0xf8, 0xf7, 0xf8, 0xf9, 0xf9, 0xf7, 0xf6, 0xf7, 0xf8, 0xf9, 0xfa, 0xfb, 0xfa, 0xf9, 0xf9,\n    0xf7, 0xf7, 0xf6, 0xf5, 0xf5, 0xf5, 0xf5, 0xf5, 0xf8, 0xf9, 0xfb, 0xfa, 0xf9, 0xf7, 0xf7, 0xf7,\n    0xfa, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xfa, 0xfa, 0xf7, 0xf7, 0xf8, 0xf9, 0xfa, 0xf9, 0xf7, 0xf5,\n    0xf0, 0xf0, 0xec, 0xe6, 0xe1, 0xde, 0xd8, 0xd2, 0xce, 0xc8, 0xc5, 0xc9, 0xcc, 0xcd, 0xd3, 0xdb,\n    0xdf, 0xe2, 0xe5, 0xe7, 0xe6, 0xe4, 0xe3, 0xe2, 0xe3, 0xe4, 0xe5, 0xe5, 0xe6, 0xe5, 0xe4, 0xe4,\n    0xe4, 0xe3, 0xe3, 0xe3, 0xe3, 0xe2, 0xe0, 0xde, 0xdb, 0xdb, 0xdc, 0xdc, 0xdc, 0xdd, 0xdd, 0xdd,\n    0xde, 0xde, 0xdf, 0xde, 0xde, 0xdd, 0xdc, 0xdb, 0xdb, 0xda, 0xd9, 0xda, 0xdc, 0xde, 0xde, 0xde,\n    0xdf, 0xe0, 0xe0, 0xdf, 0xdd, 0xdb, 0xdb, 0xdb, 0xdc, 0xdc, 0xdc, 0xdb, 0xda, 0xd8, 0xd6, 0xd5,\n    0xd3, 0xd2, 0xd1, 0xd1, 0xd1, 0xcf, 0xcb, 0xc8, 0xcb, 0xcb, 0xcc, 0xcb, 0xc9, 0xc9, 0xc9, 0xca,\n    0xc5, 0xc3, 0xc1, 0xc1, 0xc1, 0xbe, 0xba, 0xb6, 0xb6, 0xb5, 0xb1, 0xab, 0xa9, 0xa8, 0xa1, 0x97,\n    0x84, 0x7c, 0x7c, 0x88, 0x90, 0x8f, 0x8d, 0x8e, 0x8f, 0x8f, 0x8e, 0x8e, 0x8d, 0x8c, 0x8b, 0x8b,\n    0x89, 0x89, 0x88, 0x87, 0x86, 0x85, 0x85, 0x84, 0x84, 0x83, 0x81, 0x80, 0x7f, 0x7d, 0x7b, 0x79,\n    0x7a, 0x77, 0x75, 0x75, 0x74, 0x70, 0x6c, 0x6c, 0x6c, 0x6a, 0x69, 0x67, 0x65, 0x62, 0x5f, 0x5c,\n    0x58, 0x58, 0x56, 0x52, 0x4e, 0x4a, 0x47, 0x46, 0x41, 0x3b, 0x39, 0x39, 0x31, 0x25, 0x27, 0x33,\n    0x4a, 0x5b, 0x64, 0x5c, 0x51, 0x4e, 0x4d, 0x4a, 0x4b, 0x52, 0x5e, 0x68, 0x69, 0x65, 0x65, 0x69,\n    0x6d, 0x6f, 0x71, 0x6b, 0x5f, 0x59, 0x65, 0x76, 0x70, 0x69, 0x58, 0x4f, 0x50, 0x49, 0x45, 0x4e,\n    0x67, 0x6a, 0x63, 0x59, 0x57, 0x52, 0x41, 0x32, 0x35, 0x28, 0x20, 0x24, 0x29, 0x31, 0x46, 0x5d,\n    0x60, 0x5f, 0x5a, 0x58, 0x57, 0x49, 0x3b, 0x37, 0x4d, 0x5b, 0x65, 0x77, 0x89, 0x98, 0x9c, 0x88,\n    0x6d, 0x5e, 0x4c, 0x46, 0x4d, 0x51, 0x48, 0x3b, 0x22, 0x1e, 0x1f, 0x2b, 0x3a, 0x48, 0x56, 0x61,\n    0x5e, 0x53, 0x4a, 0x35, 0x2d, 0x22, 0x33, 0x3f, 0x3f, 0x4a, 0x6b, 0x78, 0x6b, 0x72, 0x7a, 0x68,\n    0x6c, 0x5f, 0x46, 0x31, 0x35, 0x49, 0x57, 0x58, 0x60, 0x58, 0x50, 0x4f, 0x50, 0x4a, 0x3b, 0x2c,\n    0x27, 0x32, 0x35, 0x29, 0x1b, 0x18, 0x1b, 0x1d, 0x1f, 0x22, 0x1c, 0x11, 0x13, 0x1e, 0x1d, 0x12,\n    0x5b, 0x5d, 0x5d, 0x5e, 0x61, 0x65, 0x66, 0x65, 0x67, 0x67, 0x66, 0x63, 0x60, 0x60, 0x62, 0x64,\n    0x5d, 0x63, 0x70, 0x7e, 0x85, 0x82, 0x7b, 0x77, 0x81, 0x82, 0x82, 0x7e, 0x7a, 0x77, 0x74, 0x70,\n    0x6f, 0x65, 0x61, 0x6a, 0x75, 0x77, 0x73, 0x6f, 0x6e, 0x6a, 0x68, 0x68, 0x67, 0x65, 0x66, 0x69,\n    0x67, 0x69, 0x61, 0x62, 0x56, 0x5a, 0x57, 0x5c, 0x65, 0x67, 0x68, 0x68, 0x6b, 0x6d, 0x6c, 0x68,\n    0x70, 0x6f, 0x71, 0x75, 0x76, 0x71, 0x6c, 0x69, 0x6a, 0x68, 0x64, 0x60, 0x61, 0x67, 0x6a, 0x6b,\n    0x7f, 0x80, 0x7e, 0x7e, 0x7e, 0x76, 0x6f, 0x73, 0x6f, 0x74, 0x77, 0x78, 0x7c, 0x7f, 0x7c, 0x75,\n    0x77, 0x79, 0x79, 0x74, 0x6f, 0x6f, 0x74, 0x79, 0x80, 0x78, 0x6f, 0x6d, 0x71, 0x77, 0x7b, 0x7c,\n    0x7e, 0x72, 0x70, 0x77, 0x7a, 0x79, 0x71, 0x64, 0x65, 0x7b, 0x81, 0x85, 0x71, 0x78, 0x77, 0x7f,\n    0x7d, 0x7c, 0x74, 0x70, 0x74, 0x73, 0x72, 0x75, 0x73, 0x73, 0x73, 0x73, 0x74, 0x76, 0x76, 0x76,\n    0x7f, 0x7d, 0x7e, 0x83, 0x85, 0x80, 0x78, 0x73, 0x74, 0x75, 0x74, 0x71, 0x6f, 0x71, 0x74, 0x76,\n    0x7b, 0x7d, 0x7c, 0x75, 0x6c, 0x6a, 0x70, 0x77, 0x74, 0x74, 0x75, 0x76, 0x78, 0x79, 0x79, 0x78,\n    0x6e, 0x64, 0x6f, 0x7e, 0x89, 0x8f, 0x95, 0xa8, 0xb8, 0xbb, 0xc0, 0xc4, 0xc4, 0xc1, 0xbd, 0xba,\n    0xb8, 0xbb, 0xbf, 0xc2, 0xc3, 0xc3, 0xc3, 0xc2, 0xc4, 0xc7, 0xca, 0xcb, 0xc9, 0xc5, 0xc1, 0xbe,\n    0xbb, 0xbc, 0xbe, 0xc0, 0xc0, 0xc0, 0xbe, 0xbd, 0xc0, 0xbf, 0xbf, 0xc0, 0xc1, 0xc1, 0xc0, 0xbf,\n    0xbf, 0xbe, 0xbd, 0xbd, 0xbc, 0xb9, 0xb5, 0xb3, 0xb2, 0xaf, 0xac, 0xad, 0xad, 0xac, 0xac, 0xae,\n    0xac, 0xab, 0xab, 0xab, 0xac, 0xae, 0xaf, 0xb1, 0xb3, 0xb3, 0xb4, 0xb4, 0xb4, 0xb1, 0xae, 0xab,\n    0xa5, 0xa1, 0x9d, 0x98, 0x8c, 0x81, 0x82, 0x8c, 0x95, 0xa1, 0x96, 0x84, 0x66, 0x6c, 0xa9, 0xcb,\n    0xca, 0xce, 0xd6, 0xdd, 0xe3, 0xe8, 0xed, 0xef, 0xee, 0xef, 0xf1, 0xf4, 0xf6, 0xf8, 0xf9, 0xfa,\n    0xf9, 0xf8, 0xf7, 0xf7, 0xf8, 0xf9, 0xf8, 0xf8, 0xf8, 0xf9, 0xfa, 0xfa, 0xfa, 0xfa, 0xf9, 0xf8,\n    0xf8, 0xf7, 0xf7, 0xf6, 0xf6, 0xf6, 0xf6, 0xf7, 0xf9, 0xf9, 0xfa, 0xf9, 0xf7, 0xf7, 0xf7, 0xf8,\n    0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf8, 0xf8, 0xf8, 0xf7, 0xf7, 0xf7, 0xf8, 0xf7, 0xf6, 0xf2, 0xf0,\n    0xeb, 0xea, 0xe6, 0xe0, 0xdb, 0xd7, 0xd1, 0xcc, 0xc8, 0xc5, 0xc7, 0xcc, 0xce, 0xce, 0xd1, 0xd6,\n    0xdb, 0xde, 0xe2, 0xe5, 0xe5, 0xe4, 0xe3, 0xe3, 0xe3, 0xe2, 0xe2, 0xe2, 0xe2, 0xe2, 0xe3, 0xe3,\n    0xe3, 0xe4, 0xe4, 0xe2, 0xe0, 0xde, 0xde, 0xdd, 0xd8, 0xd9, 0xda, 0xdb, 0xdc, 0xdd, 0xde, 0xde,\n    0xe2, 0xe0, 0xde, 0xdd, 0xdc, 0xdc, 0xdc, 0xdd, 0xdc, 0xdc, 0xdd, 0xdf, 0xe0, 0xe1, 0xe0, 0xdf,\n    0xe0, 0xe0, 0xdf, 0xdd, 0xdb, 0xda, 0xda, 0xdb, 0xdd, 0xdd, 0xdd, 0xdc, 0xda, 0xd7, 0xd5, 0xd3,\n    0xd1, 0xd1, 0xd1, 0xd1, 0xd0, 0xcd, 0xc9, 0xc6, 0xcd, 0xce, 0xce, 0xcc, 0xca, 0xc9, 0xc9, 0xc9,\n    0xc3, 0xc2, 0xc0, 0xc0, 0xc0, 0xbe, 0xb9, 0xb6, 0xb7, 0xb5, 0xae, 0xa7, 0xa5, 0xa2, 0x98, 0x8d,\n    0x7d, 0x7c, 0x80, 0x88, 0x8d, 0x8d, 0x8b, 0x8a, 0x8d, 0x8d, 0x8d, 0x8d, 0x8d, 0x8c, 0x8c, 0x8b,\n    0x89, 0x88, 0x88, 0x87, 0x85, 0x84, 0x83, 0x83, 0x81, 0x80, 0x7e, 0x7d, 0x7c, 0x7b, 0x79, 0x77,\n    0x77, 0x74, 0x73, 0x74, 0x73, 0x6f, 0x6c, 0x6b, 0x6a, 0x69, 0x67, 0x65, 0x64, 0x61, 0x5e, 0x5c,\n    0x56, 0x55, 0x53, 0x50, 0x4c, 0x48, 0x45, 0x43, 0x43, 0x38, 0x33, 0x33, 0x2c, 0x27, 0x36, 0x4e,\n    0x5c, 0x62, 0x63, 0x5c, 0x5a, 0x5d, 0x5d, 0x59, 0x57, 0x59, 0x60, 0x6b, 0x71, 0x6d, 0x63, 0x5d,\n    0x61, 0x62, 0x64, 0x63, 0x61, 0x62, 0x66, 0x6a, 0x66, 0x64, 0x5f, 0x5b, 0x58, 0x55, 0x53, 0x53,\n    0x51, 0x4e, 0x49, 0x3a, 0x2a, 0x28, 0x2f, 0x32, 0x33, 0x2c, 0x24, 0x23, 0x2b, 0x38, 0x41, 0x45,\n    0x48, 0x46, 0x43, 0x43, 0x3d, 0x2e, 0x2b, 0x37, 0x56, 0x71, 0x82, 0x8e, 0x94, 0x92, 0x85, 0x6a,\n    0x51, 0x56, 0x55, 0x50, 0x4c, 0x49, 0x3e, 0x31, 0x29, 0x27, 0x29, 0x34, 0x46, 0x56, 0x61, 0x66,\n    0x5a, 0x46, 0x2e, 0x1d, 0x34, 0x53, 0x6d, 0x70, 0x89, 0x98, 0x89, 0x7a, 0x8a, 0x8d, 0x80, 0x80,\n    0x71, 0x55, 0x39, 0x33, 0x3e, 0x4a, 0x52, 0x56, 0x4a, 0x41, 0x3d, 0x40, 0x3c, 0x30, 0x2c, 0x2f,\n    0x45, 0x46, 0x49, 0x49, 0x42, 0x3c, 0x41, 0x4c, 0x4e, 0x3f, 0x37, 0x36, 0x28, 0x1c, 0x30, 0x52,\n    0x5d, 0x5e, 0x5d, 0x5a, 0x5d, 0x66, 0x6a, 0x68, 0x65, 0x66, 0x65, 0x62, 0x5f, 0x5f, 0x61, 0x64,\n    0x6f, 0x6a, 0x68, 0x6a, 0x6d, 0x70, 0x74, 0x78, 0x80, 0x81, 0x7d, 0x75, 0x6f, 0x6d, 0x6d, 0x6e,\n    0x72, 0x69, 0x65, 0x6c, 0x76, 0x77, 0x71, 0x6b, 0x67, 0x63, 0x62, 0x64, 0x67, 0x67, 0x66, 0x67,\n    0x6e, 0x71, 0x6a, 0x6a, 0x5d, 0x5e, 0x59, 0x5c, 0x64, 0x68, 0x6c, 0x6f, 0x73, 0x78, 0x7a, 0x78,\n    0x75, 0x6f, 0x6c, 0x6f, 0x73, 0x70, 0x69, 0x64, 0x64, 0x65, 0x62, 0x5e, 0x62, 0x6c, 0x71, 0x6f,\n    0x6e, 0x79, 0x85, 0x8e, 0x8b, 0x76, 0x65, 0x63, 0x76, 0x84, 0x88, 0x7b, 0x6c, 0x6c, 0x74, 0x79,\n    0x7a, 0x7b, 0x77, 0x6f, 0x69, 0x69, 0x6d, 0x71, 0x7e, 0x79, 0x73, 0x70, 0x70, 0x70, 0x70, 0x6e,\n    0x6b, 0x6c, 0x72, 0x79, 0x79, 0x77, 0x76, 0x75, 0x78, 0x8e, 0x8d, 0x90, 0x74, 0x7e, 0x75, 0x7a,\n    0x7a, 0x7b, 0x75, 0x70, 0x73, 0x71, 0x6f, 0x72, 0x72, 0x73, 0x72, 0x70, 0x6f, 0x71, 0x73, 0x73,\n    0x7b, 0x75, 0x74, 0x7b, 0x82, 0x80, 0x77, 0x70, 0x73, 0x6d, 0x67, 0x63, 0x65, 0x6b, 0x70, 0x71,\n    0x74, 0x78, 0x7b, 0x77, 0x6d, 0x66, 0x6a, 0x74, 0x7c, 0x78, 0x74, 0x70, 0x6f, 0x71, 0x73, 0x74,\n    0x6d, 0x67, 0x6e, 0x79, 0x7c, 0x7f, 0x8f, 0xaa, 0xbc, 0xbe, 0xc1, 0xc2, 0xc2, 0xc0, 0xbd, 0xbb,\n    0xbf, 0xc1, 0xc3, 0xc3, 0xc0, 0xbf, 0xbe, 0xbf, 0xc0, 0xc2, 0xc5, 0xc7, 0xc7, 0xc5, 0xc2, 0xc0,\n    0xbc, 0xbd, 0xbf, 0xc1, 0xc1, 0xc1, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc1, 0xc1, 0xbf, 0xbe,\n    0xbe, 0xbd, 0xbd, 0xbd, 0xbc, 0xbb, 0xb9, 0xb8, 0xb4, 0xb0, 0xae, 0xae, 0xae, 0xad, 0xad, 0xae,\n    0xab, 0xaa, 0xaa, 0xa9, 0xa8, 0xa9, 0xab, 0xad, 0xaf, 0xb0, 0xb1, 0xb3, 0xb4, 0xb3, 0xb2, 0xb1,\n    0xad, 0xa5, 0x9e, 0x97, 0x8a, 0x7e, 0x80, 0x8a, 0x8f, 0x9e, 0x9b, 0x8d, 0x6c, 0x60, 0x93, 0xc7,\n    0xc7, 0xcc, 0xd5, 0xde, 0xe5, 0xeb, 0xf0, 0xf2, 0xed, 0xee, 0xf0, 0xf2, 0xf5, 0xf7, 0xf8, 0xf9,\n    0xf9, 0xf8, 0xf7, 0xf7, 0xf7, 0xf8, 0xf9, 0xf9, 0xf9, 0xf9, 0xfa, 0xfa, 0xfa, 0xf9, 0xf9, 0xf8,\n    0xf9, 0xf8, 0xf8, 0xf7, 0xf7, 0xf7, 0xf7, 0xf8, 0xf6, 0xf6, 0xf6, 0xf6, 0xf6, 0xf7, 0xf8, 0xf9,\n    0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf7, 0xf7, 0xf7, 0xf8, 0xf7, 0xf7, 0xf6, 0xf4, 0xf0, 0xec, 0xe9,\n    0xe9, 0xe6, 0xe1, 0xdc, 0xd6, 0xd1, 0xcb, 0xc7, 0xc7, 0xc6, 0xc9, 0xce, 0xd0, 0xcf, 0xd1, 0xd5,\n    0xdb, 0xde, 0xe1, 0xe3, 0xe4, 0xe4, 0xe5, 0xe5, 0xe2, 0xe2, 0xe2, 0xe1, 0xe1, 0xe0, 0xe0, 0xe0,\n    0xe0, 0xe1, 0xe2, 0xe0, 0xdc, 0xda, 0xda, 0xdb, 0xd9, 0xda, 0xdb, 0xdc, 0xde, 0xdf, 0xe0, 0xe1,\n    0xe3, 0xe2, 0xe0, 0xdf, 0xde, 0xdf, 0xdf, 0xe0, 0xe1, 0xe1, 0xe2, 0xe3, 0xe4, 0xe3, 0xe0, 0xde,\n    0xdd, 0xdc, 0xdb, 0xda, 0xd9, 0xd9, 0xda, 0xdb, 0xdc, 0xdc, 0xdd, 0xdc, 0xdb, 0xd8, 0xd6, 0xd4,\n    0xd0, 0xd0, 0xd0, 0xd0, 0xce, 0xcc, 0xca, 0xc8, 0xcf, 0xcf, 0xcf, 0xcd, 0xcb, 0xc9, 0xc9, 0xc9,\n    0xc4, 0xc2, 0xc0, 0xc0, 0xc0, 0xbe, 0xba, 0xb7, 0xb8, 0xb4, 0xad, 0xa5, 0xa1, 0x9d, 0x92, 0x85,\n    0x78, 0x7e, 0x83, 0x86, 0x89, 0x8b, 0x8b, 0x89, 0x8b, 0x8b, 0x8b, 0x8b, 0x8a, 0x8a, 0x89, 0x88,\n    0x88, 0x88, 0x87, 0x86, 0x84, 0x83, 0x82, 0x81, 0x7f, 0x7d, 0x7c, 0x7b, 0x7b, 0x7a, 0x77, 0x76,\n    0x74, 0x72, 0x71, 0x73, 0x72, 0x6e, 0x6b, 0x6a, 0x69, 0x67, 0x65, 0x64, 0x63, 0x60, 0x5e, 0x5b,\n    0x56, 0x54, 0x51, 0x4e, 0x4b, 0x47, 0x44, 0x41, 0x3d, 0x37, 0x32, 0x30, 0x2b, 0x2e, 0x42, 0x59,\n    0x5e, 0x64, 0x69, 0x6c, 0x6f, 0x70, 0x6b, 0x63, 0x5a, 0x55, 0x55, 0x5d, 0x65, 0x65, 0x5c, 0x52,\n    0x46, 0x41, 0x41, 0x4d, 0x61, 0x6f, 0x6c, 0x61, 0x5b, 0x59, 0x5b, 0x5f, 0x63, 0x6f, 0x76, 0x74,\n    0x63, 0x48, 0x35, 0x2a, 0x21, 0x23, 0x26, 0x1f, 0x1f, 0x24, 0x20, 0x19, 0x25, 0x3d, 0x45, 0x3c,\n    0x4a, 0x4b, 0x42, 0x35, 0x2c, 0x28, 0x31, 0x42, 0x51, 0x78, 0x8f, 0x99, 0x9a, 0x90, 0x7e, 0x63,\n    0x66, 0x6a, 0x69, 0x5d, 0x4c, 0x40, 0x38, 0x35, 0x31, 0x39, 0x45, 0x50, 0x5a, 0x5f, 0x5c, 0x55,\n    0x4a, 0x29, 0x1d, 0x35, 0x57, 0x66, 0x76, 0x85, 0x85, 0x85, 0x8a, 0x89, 0x81, 0x81, 0x7c, 0x6c,\n    0x50, 0x43, 0x3f, 0x47, 0x4a, 0x43, 0x42, 0x49, 0x47, 0x40, 0x3b, 0x36, 0x2e, 0x2c, 0x3f, 0x57,\n    0x56, 0x59, 0x5b, 0x57, 0x53, 0x54, 0x58, 0x5b, 0x58, 0x56, 0x4f, 0x44, 0x3c, 0x39, 0x39, 0x3b,\n    0x56, 0x59, 0x59, 0x58, 0x5d, 0x68, 0x6d, 0x6c, 0x67, 0x68, 0x67, 0x64, 0x61, 0x5f, 0x61, 0x62,\n    0x5c, 0x62, 0x6d, 0x78, 0x7a, 0x72, 0x67, 0x60, 0x71, 0x76, 0x77, 0x70, 0x69, 0x68, 0x6c, 0x6f,\n    0x6a, 0x65, 0x63, 0x6b, 0x74, 0x76, 0x70, 0x6a, 0x60, 0x5b, 0x5a, 0x5f, 0x65, 0x68, 0x68, 0x68,\n    0x6d, 0x72, 0x6e, 0x6f, 0x60, 0x5f, 0x57, 0x5a, 0x62, 0x69, 0x6f, 0x71, 0x74, 0x78, 0x7c, 0x7d,\n    0x6f, 0x68, 0x64, 0x69, 0x70, 0x70, 0x6a, 0x64, 0x5f, 0x61, 0x60, 0x5c, 0x61, 0x6b, 0x72, 0x71,\n    0x76, 0x7a, 0x79, 0x74, 0x6d, 0x63, 0x63, 0x6e, 0x7a, 0x87, 0x89, 0x76, 0x65, 0x67, 0x77, 0x83,\n    0x92, 0x90, 0x89, 0x80, 0x7b, 0x7b, 0x7b, 0x7a, 0x6e, 0x6d, 0x6d, 0x6e, 0x70, 0x6f, 0x6c, 0x6a,\n    0x6a, 0x6e, 0x73, 0x74, 0x73, 0x70, 0x72, 0x79, 0x6b, 0x82, 0x80, 0x80, 0x64, 0x6f, 0x65, 0x66,\n    0x6e, 0x77, 0x7b, 0x7d, 0x7f, 0x77, 0x6d, 0x6c, 0x71, 0x74, 0x73, 0x6d, 0x69, 0x6c, 0x72, 0x75,\n    0x71, 0x69, 0x66, 0x6f, 0x7b, 0x7d, 0x76, 0x6e, 0x62, 0x5c, 0x59, 0x5d, 0x66, 0x6c, 0x6c, 0x6b,\n    0x71, 0x74, 0x77, 0x73, 0x69, 0x60, 0x60, 0x67, 0x7c, 0x79, 0x74, 0x6f, 0x6b, 0x6a, 0x6c, 0x6d,\n    0x71, 0x70, 0x70, 0x72, 0x6d, 0x72, 0x92, 0xb3, 0xbf, 0xc0, 0xc0, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1,\n    0xc5, 0xc5, 0xc3, 0xc0, 0xbd, 0xbc, 0xbe, 0xc0, 0xc2, 0xc3, 0xc4, 0xc5, 0xc5, 0xc4, 0xc3, 0xc2,\n    0xbd, 0xbe, 0xc0, 0xc1, 0xc2, 0xc2, 0xc1, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc1, 0xc1, 0xbf, 0xbd,\n    0xbe, 0xbe, 0xbd, 0xbc, 0xbb, 0xbb, 0xbc, 0xbd, 0xb3, 0xb0, 0xae, 0xaf, 0xb1, 0xb0, 0xb1, 0xb3,\n    0xaf, 0xaf, 0xae, 0xac, 0xa9, 0xa9, 0xaa, 0xab, 0xab, 0xac, 0xae, 0xaf, 0xb0, 0xb0, 0xb1, 0xb1,\n    0xaf, 0xa6, 0x9f, 0x98, 0x8c, 0x7e, 0x7c, 0x82, 0x8d, 0x9b, 0x9e, 0x95, 0x74, 0x57, 0x7a, 0xb6,\n    0xc1, 0xc7, 0xd0, 0xda, 0xe2, 0xe8, 0xed, 0xf0, 0xed, 0xee, 0xf0, 0xf2, 0xf4, 0xf6, 0xf7, 0xf8,\n    0xf8, 0xf8, 0xf8, 0xf7, 0xf7, 0xf7, 0xf9, 0xfa, 0xf9, 0xf9, 0xfa, 0xfa, 0xf9, 0xf9, 0xf9, 0xf9,\n    0xf7, 0xf7, 0xf6, 0xf6, 0xf5, 0xf5, 0xf5, 0xf5, 0xf4, 0xf4, 0xf3, 0xf3, 0xf4, 0xf5, 0xf6, 0xf6,\n    0xf5, 0xf6, 0xf6, 0xf7, 0xf7, 0xf6, 0xf5, 0xf5, 0xf7, 0xf6, 0xf6, 0xf5, 0xf2, 0xee, 0xe9, 0xe6,\n    0xe3, 0xdf, 0xd9, 0xd3, 0xce, 0xc8, 0xc4, 0xc2, 0xc5, 0xc6, 0xc8, 0xcb, 0xcc, 0xcd, 0xcf, 0xd3,\n    0xdd, 0xde, 0xe0, 0xe1, 0xe1, 0xe2, 0xe4, 0xe5, 0xe2, 0xe2, 0xe3, 0xe2, 0xe1, 0xdf, 0xde, 0xdc,\n    0xdc, 0xdd, 0xdd, 0xdb, 0xd8, 0xd6, 0xd6, 0xd8, 0xdb, 0xdc, 0xdd, 0xde, 0xdf, 0xe0, 0xe1, 0xe2,\n    0xe2, 0xe3, 0xe3, 0xe3, 0xe3, 0xe3, 0xe3, 0xe3, 0xe4, 0xe4, 0xe4, 0xe4, 0xe3, 0xe1, 0xdd, 0xdb,\n    0xda, 0xd9, 0xd9, 0xd9, 0xda, 0xdb, 0xdc, 0xdd, 0xdc, 0xdc, 0xdc, 0xdb, 0xda, 0xd7, 0xd5, 0xd3,\n    0xcf, 0xcf, 0xce, 0xcd, 0xcc, 0xcc, 0xcc, 0xcd, 0xd0, 0xd0, 0xd0, 0xce, 0xcb, 0xc9, 0xc9, 0xc9,\n    0xc7, 0xc5, 0xc2, 0xc2, 0xc1, 0xc0, 0xbc, 0xb9, 0xb8, 0xb5, 0xad, 0xa4, 0x9e, 0x98, 0x8c, 0x7f,\n    0x78, 0x7f, 0x84, 0x84, 0x84, 0x87, 0x8a, 0x8a, 0x8b, 0x8b, 0x8a, 0x8a, 0x88, 0x87, 0x86, 0x85,\n    0x87, 0x87, 0x86, 0x85, 0x83, 0x82, 0x81, 0x80, 0x7e, 0x7d, 0x7b, 0x7b, 0x7a, 0x79, 0x77, 0x75,\n    0x73, 0x70, 0x70, 0x71, 0x70, 0x6d, 0x6a, 0x69, 0x68, 0x66, 0x64, 0x62, 0x61, 0x5f, 0x5d, 0x5b,\n    0x56, 0x53, 0x50, 0x4d, 0x4a, 0x47, 0x42, 0x3f, 0x33, 0x36, 0x35, 0x2f, 0x2d, 0x36, 0x44, 0x4d,\n    0x57, 0x5d, 0x65, 0x6c, 0x6f, 0x6d, 0x66, 0x5f, 0x56, 0x4f, 0x47, 0x48, 0x4f, 0x55, 0x53, 0x4e,\n    0x36, 0x38, 0x3d, 0x47, 0x56, 0x61, 0x61, 0x5c, 0x5a, 0x56, 0x5b, 0x68, 0x73, 0x76, 0x68, 0x51,\n    0x3e, 0x29, 0x22, 0x28, 0x28, 0x2a, 0x26, 0x19, 0x19, 0x1b, 0x17, 0x12, 0x19, 0x2b, 0x35, 0x35,\n    0x46, 0x3d, 0x30, 0x2a, 0x2c, 0x2e, 0x35, 0x42, 0x5e, 0x87, 0x99, 0x9a, 0x93, 0x80, 0x6d, 0x59,\n    0x61, 0x53, 0x47, 0x41, 0x39, 0x2e, 0x2a, 0x2d, 0x35, 0x3f, 0x4a, 0x4e, 0x4e, 0x4c, 0x48, 0x44,\n    0x17, 0x34, 0x5a, 0x78, 0x7d, 0x78, 0x6f, 0x6e, 0x86, 0x78, 0x7c, 0x87, 0x83, 0x73, 0x5d, 0x45,\n    0x44, 0x4f, 0x53, 0x4b, 0x43, 0x42, 0x43, 0x41, 0x39, 0x36, 0x32, 0x2f, 0x35, 0x48, 0x66, 0x7d,\n    0x79, 0x8b, 0x91, 0x84, 0x7c, 0x7b, 0x6b, 0x54, 0x53, 0x56, 0x50, 0x47, 0x49, 0x56, 0x5d, 0x59,\n    0x5b, 0x5d, 0x5f, 0x61, 0x65, 0x6a, 0x6b, 0x69, 0x62, 0x64, 0x65, 0x65, 0x63, 0x63, 0x65, 0x66,\n    0x6e, 0x68, 0x63, 0x62, 0x63, 0x65, 0x68, 0x6c, 0x6a, 0x72, 0x77, 0x73, 0x6c, 0x69, 0x69, 0x6a,\n    0x64, 0x62, 0x64, 0x6b, 0x74, 0x77, 0x75, 0x70, 0x67, 0x60, 0x5b, 0x5d, 0x61, 0x62, 0x62, 0x63,\n    0x61, 0x66, 0x63, 0x65, 0x56, 0x56, 0x50, 0x54, 0x67, 0x6e, 0x72, 0x72, 0x71, 0x72, 0x74, 0x76,\n    0x6e, 0x69, 0x67, 0x6b, 0x6e, 0x6b, 0x65, 0x60, 0x60, 0x61, 0x5f, 0x5d, 0x5f, 0x67, 0x6f, 0x73,\n    0x7b, 0x82, 0x80, 0x77, 0x6d, 0x63, 0x61, 0x68, 0x6d, 0x72, 0x72, 0x6b, 0x6a, 0x72, 0x7e, 0x85,\n    0x7a, 0x78, 0x72, 0x6c, 0x6d, 0x73, 0x74, 0x70, 0x6c, 0x6c, 0x6d, 0x70, 0x73, 0x74, 0x72, 0x6f,\n    0x73, 0x78, 0x7a, 0x7c, 0x7d, 0x73, 0x68, 0x67, 0x73, 0x89, 0x89, 0x84, 0x71, 0x7f, 0x7b, 0x7a,\n    0x7d, 0x83, 0x84, 0x82, 0x7f, 0x75, 0x6b, 0x6b, 0x70, 0x74, 0x73, 0x6a, 0x66, 0x6b, 0x72, 0x76,\n    0x68, 0x62, 0x60, 0x68, 0x73, 0x77, 0x75, 0x72, 0x72, 0x70, 0x75, 0x7e, 0x86, 0x85, 0x7e, 0x78,\n    0x85, 0x86, 0x85, 0x82, 0x7c, 0x79, 0x78, 0x79, 0x72, 0x75, 0x76, 0x73, 0x6d, 0x69, 0x68, 0x69,\n    0x70, 0x73, 0x6d, 0x6c, 0x69, 0x74, 0x9d, 0xbc, 0xc0, 0xc0, 0xc1, 0xc2, 0xc3, 0xc5, 0xc6, 0xc7,\n    0xc5, 0xc3, 0xc1, 0xbe, 0xbc, 0xbe, 0xc1, 0xc4, 0xc8, 0xc6, 0xc5, 0xc5, 0xc5, 0xc4, 0xc3, 0xc1,\n    0xbe, 0xbf, 0xc0, 0xc0, 0xc1, 0xc0, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xc1, 0xc0, 0xbe, 0xbc,\n    0xbf, 0xbe, 0xbd, 0xbb, 0xba, 0xb9, 0xbb, 0xbc, 0xb9, 0xb4, 0xb1, 0xb0, 0xaf, 0xad, 0xac, 0xad,\n    0xaf, 0xb0, 0xb0, 0xad, 0xa9, 0xa7, 0xa8, 0xa9, 0xaa, 0xab, 0xac, 0xad, 0xac, 0xac, 0xac, 0xad,\n    0xab, 0xa6, 0xa1, 0x9b, 0x91, 0x83, 0x7a, 0x75, 0x88, 0x95, 0x9b, 0x9b, 0x84, 0x5e, 0x6d, 0xa9,\n    0xc0, 0xc5, 0xce, 0xd6, 0xde, 0xe4, 0xea, 0xed, 0xec, 0xed, 0xef, 0xf2, 0xf4, 0xf6, 0xf7, 0xf8,\n    0xf8, 0xf8, 0xf9, 0xf8, 0xf7, 0xf7, 0xf8, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9,\n    0xf8, 0xf8, 0xf7, 0xf6, 0xf5, 0xf5, 0xf5, 0xf5, 0xf5, 0xf4, 0xf3, 0xf3, 0xf3, 0xf3, 0xf2, 0xf1,\n    0xf2, 0xf3, 0xf4, 0xf5, 0xf5, 0xf5, 0xf4, 0xf4, 0xf4, 0xf4, 0xf3, 0xf3, 0xf1, 0xed, 0xe8, 0xe4,\n    0xdd, 0xd7, 0xd0, 0xcb, 0xc7, 0xc3, 0xc1, 0xc1, 0xc7, 0xc9, 0xca, 0xcb, 0xcb, 0xcc, 0xd0, 0xd3,\n    0xdc, 0xdd, 0xde, 0xdf, 0xde, 0xdf, 0xe0, 0xe2, 0xe2, 0xe2, 0xe2, 0xe2, 0xe1, 0xdf, 0xdd, 0xdb,\n    0xdd, 0xdd, 0xdd, 0xdb, 0xd9, 0xd9, 0xd9, 0xda, 0xdb, 0xdc, 0xdd, 0xde, 0xdf, 0xe0, 0xe1, 0xe1,\n    0xe2, 0xe3, 0xe4, 0xe6, 0xe6, 0xe6, 0xe5, 0xe4, 0xe4, 0xe3, 0xe2, 0xe1, 0xe0, 0xde, 0xdb, 0xd9,\n    0xdb, 0xda, 0xda, 0xdb, 0xdc, 0xdd, 0xdd, 0xdd, 0xdd, 0xdc, 0xdb, 0xd9, 0xd6, 0xd4, 0xd2, 0xd0,\n    0xcf, 0xcf, 0xce, 0xcd, 0xcc, 0xcd, 0xce, 0xd0, 0xcf, 0xcf, 0xcf, 0xce, 0xcc, 0xca, 0xca, 0xcb,\n    0xca, 0xc8, 0xc5, 0xc3, 0xc3, 0xc1, 0xbd, 0xba, 0xb8, 0xb6, 0xae, 0xa3, 0x9a, 0x92, 0x86, 0x79,\n    0x79, 0x7f, 0x83, 0x83, 0x82, 0x84, 0x88, 0x8a, 0x8b, 0x8a, 0x8a, 0x89, 0x88, 0x86, 0x85, 0x84,\n    0x86, 0x85, 0x84, 0x83, 0x82, 0x81, 0x80, 0x80, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x78, 0x76, 0x74,\n    0x73, 0x70, 0x6e, 0x6f, 0x6e, 0x6b, 0x69, 0x69, 0x67, 0x65, 0x62, 0x60, 0x5f, 0x5d, 0x5a, 0x58,\n    0x56, 0x52, 0x4e, 0x4b, 0x48, 0x44, 0x3f, 0x3b, 0x33, 0x35, 0x2f, 0x27, 0x2f, 0x43, 0x52, 0x55,\n    0x5e, 0x5f, 0x62, 0x67, 0x69, 0x66, 0x62, 0x60, 0x53, 0x4b, 0x40, 0x3a, 0x3d, 0x45, 0x49, 0x48,\n    0x48, 0x4a, 0x4d, 0x51, 0x55, 0x57, 0x58, 0x59, 0x57, 0x5d, 0x64, 0x6b, 0x6a, 0x5d, 0x49, 0x3b,\n    0x2e, 0x2c, 0x30, 0x33, 0x2e, 0x2b, 0x2b, 0x29, 0x21, 0x1d, 0x21, 0x28, 0x26, 0x1f, 0x22, 0x2c,\n    0x35, 0x2d, 0x2b, 0x36, 0x3b, 0x33, 0x3d, 0x56, 0x80, 0xa1, 0xa2, 0x91, 0x7b, 0x5a, 0x43, 0x37,\n    0x36, 0x29, 0x21, 0x21, 0x1d, 0x17, 0x1d, 0x2a, 0x46, 0x4e, 0x56, 0x52, 0x44, 0x35, 0x2c, 0x29,\n    0x67, 0x74, 0x74, 0x6e, 0x63, 0x6a, 0x69, 0x68, 0x86, 0x7f, 0x66, 0x5e, 0x63, 0x4a, 0x30, 0x39,\n    0x46, 0x48, 0x47, 0x41, 0x38, 0x32, 0x32, 0x34, 0x38, 0x33, 0x2c, 0x2b, 0x38, 0x4a, 0x53, 0x53,\n    0x55, 0x3f, 0x28, 0x1f, 0x1b, 0x1a, 0x23, 0x30, 0x39, 0x39, 0x3f, 0x4a, 0x50, 0x55, 0x5f, 0x6a,\n    0x65, 0x63, 0x63, 0x65, 0x65, 0x62, 0x60, 0x60, 0x63, 0x66, 0x69, 0x6a, 0x68, 0x67, 0x68, 0x69,\n    0x6a, 0x65, 0x61, 0x61, 0x62, 0x63, 0x66, 0x69, 0x71, 0x75, 0x76, 0x73, 0x6f, 0x6d, 0x6b, 0x69,\n    0x66, 0x66, 0x68, 0x6c, 0x72, 0x77, 0x78, 0x77, 0x71, 0x68, 0x5f, 0x5c, 0x5d, 0x5e, 0x5f, 0x61,\n    0x66, 0x69, 0x63, 0x62, 0x54, 0x57, 0x56, 0x5d, 0x60, 0x65, 0x6a, 0x6c, 0x6f, 0x73, 0x76, 0x76,\n    0x6e, 0x6d, 0x6d, 0x6b, 0x67, 0x63, 0x63, 0x66, 0x69, 0x67, 0x65, 0x64, 0x63, 0x67, 0x70, 0x7a,\n    0x92, 0x91, 0x7e, 0x66, 0x5d, 0x5f, 0x67, 0x70, 0x63, 0x5e, 0x5a, 0x5b, 0x62, 0x69, 0x6b, 0x6a,\n    0x67, 0x67, 0x63, 0x60, 0x67, 0x73, 0x78, 0x77, 0x6f, 0x6b, 0x67, 0x67, 0x6b, 0x6e, 0x6e, 0x6c,\n    0x67, 0x6e, 0x70, 0x74, 0x7a, 0x71, 0x64, 0x65, 0x78, 0x8a, 0x8b, 0x7f, 0x74, 0x81, 0x85, 0x82,\n    0x8f, 0x90, 0x87, 0x7b, 0x74, 0x6c, 0x68, 0x6c, 0x6e, 0x72, 0x70, 0x68, 0x66, 0x6c, 0x72, 0x73,\n    0x67, 0x65, 0x66, 0x6a, 0x6d, 0x6f, 0x73, 0x77, 0x76, 0x78, 0x7f, 0x86, 0x85, 0x7c, 0x73, 0x6f,\n    0x6b, 0x6d, 0x6e, 0x70, 0x77, 0x7e, 0x7e, 0x79, 0x6a, 0x70, 0x76, 0x74, 0x6d, 0x67, 0x67, 0x69,\n    0x6c, 0x72, 0x69, 0x6d, 0x75, 0x87, 0xac, 0xbd, 0xbe, 0xbf, 0xc1, 0xc3, 0xc4, 0xc5, 0xc6, 0xc6,\n    0xc1, 0xc0, 0xbf, 0xbf, 0xc0, 0xc2, 0xc3, 0xc3, 0xc6, 0xc5, 0xc5, 0xc6, 0xc7, 0xc6, 0xc3, 0xc1,\n    0xc0, 0xc1, 0xc1, 0xc1, 0xc0, 0xbf, 0xbe, 0xbd, 0xbf, 0xbe, 0xbf, 0xc0, 0xc0, 0xbf, 0xbd, 0xba,\n    0xbb, 0xbc, 0xbc, 0xbb, 0xb9, 0xb8, 0xb9, 0xba, 0xb6, 0xb1, 0xad, 0xab, 0xa8, 0xa4, 0xa2, 0xa2,\n    0xab, 0xad, 0xaf, 0xad, 0xa9, 0xa7, 0xa7, 0xa8, 0xaa, 0xab, 0xac, 0xac, 0xaa, 0xaa, 0xab, 0xac,\n    0xa9, 0xa8, 0xa3, 0x9b, 0x93, 0x89, 0x7a, 0x6e, 0x81, 0x8c, 0x94, 0x9b, 0x91, 0x67, 0x63, 0x9a,\n    0xc6, 0xca, 0xd1, 0xd7, 0xde, 0xe3, 0xe8, 0xeb, 0xea, 0xeb, 0xee, 0xf1, 0xf4, 0xf6, 0xf7, 0xf8,\n    0xf7, 0xf9, 0xfa, 0xf9, 0xf8, 0xf6, 0xf7, 0xf8, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xfa, 0xfa, 0xfa,\n    0xf9, 0xf9, 0xf7, 0xf6, 0xf5, 0xf4, 0xf4, 0xf4, 0xf4, 0xf3, 0xf2, 0xf3, 0xf4, 0xf3, 0xf1, 0xef,\n    0xef, 0xf0, 0xf2, 0xf3, 0xf4, 0xf4, 0xf3, 0xf3, 0xf2, 0xf1, 0xf0, 0xef, 0xec, 0xe7, 0xe1, 0xdd,\n    0xd7, 0xcf, 0xc8, 0xc5, 0xc3, 0xc1, 0xc2, 0xc5, 0xc9, 0xcc, 0xce, 0xcd, 0xcc, 0xce, 0xd1, 0xd3,\n    0xd8, 0xdb, 0xdd, 0xdf, 0xdf, 0xde, 0xdd, 0xdd, 0xe1, 0xe0, 0xe0, 0xdf, 0xdf, 0xde, 0xdd, 0xdd,\n    0xde, 0xdd, 0xdb, 0xdb, 0xdb, 0xdc, 0xdc, 0xdc, 0xdb, 0xdc, 0xdd, 0xde, 0xdf, 0xe1, 0xe2, 0xe2,\n    0xe2, 0xe3, 0xe4, 0xe5, 0xe5, 0xe5, 0xe4, 0xe3, 0xe3, 0xe1, 0xdf, 0xde, 0xde, 0xdf, 0xde, 0xdd,\n    0xdf, 0xdd, 0xdc, 0xdc, 0xdd, 0xdd, 0xdb, 0xd9, 0xd9, 0xd8, 0xd6, 0xd4, 0xd2, 0xd1, 0xd0, 0xd0,\n    0xd0, 0xd0, 0xd1, 0xd0, 0xce, 0xcd, 0xcf, 0xd0, 0xcd, 0xce, 0xce, 0xcd, 0xcc, 0xcb, 0xcb, 0xcc,\n    0xcd, 0xca, 0xc7, 0xc5, 0xc4, 0xc2, 0xbe, 0xbb, 0xb7, 0xb7, 0xb0, 0xa2, 0x95, 0x8b, 0x7e, 0x73,\n    0x79, 0x7c, 0x81, 0x83, 0x82, 0x81, 0x84, 0x89, 0x88, 0x88, 0x88, 0x87, 0x86, 0x85, 0x84, 0x83,\n    0x84, 0x84, 0x83, 0x82, 0x82, 0x81, 0x80, 0x80, 0x7f, 0x7d, 0x7c, 0x7a, 0x79, 0x78, 0x75, 0x73,\n    0x74, 0x70, 0x6e, 0x6e, 0x6d, 0x6a, 0x69, 0x69, 0x65, 0x63, 0x60, 0x5e, 0x5c, 0x5a, 0x57, 0x56,\n    0x54, 0x50, 0x4b, 0x47, 0x45, 0x41, 0x3b, 0x36, 0x37, 0x31, 0x29, 0x2a, 0x3c, 0x55, 0x63, 0x65,\n    0x64, 0x62, 0x64, 0x6a, 0x6c, 0x67, 0x62, 0x61, 0x51, 0x4a, 0x3f, 0x35, 0x35, 0x3a, 0x3c, 0x3a,\n    0x2f, 0x2c, 0x2f, 0x37, 0x3d, 0x3f, 0x45, 0x4b, 0x5f, 0x68, 0x65, 0x5a, 0x51, 0x47, 0x50, 0x68,\n    0x73, 0x69, 0x55, 0x45, 0x40, 0x39, 0x2e, 0x28, 0x28, 0x2c, 0x36, 0x3e, 0x3a, 0x32, 0x33, 0x3c,\n    0x40, 0x3d, 0x3c, 0x3e, 0x39, 0x2e, 0x3b, 0x59, 0x75, 0x90, 0x8b, 0x79, 0x62, 0x40, 0x2f, 0x2e,\n    0x2e, 0x2b, 0x2a, 0x2b, 0x27, 0x25, 0x30, 0x40, 0x48, 0x40, 0x37, 0x30, 0x31, 0x41, 0x61, 0x7d,\n    0x5d, 0x45, 0x43, 0x6f, 0x77, 0x6a, 0x5e, 0x6f, 0x53, 0x49, 0x52, 0x4b, 0x24, 0x1b, 0x33, 0x3e,\n    0x3d, 0x33, 0x32, 0x3a, 0x37, 0x28, 0x24, 0x2c, 0x22, 0x22, 0x26, 0x36, 0x4e, 0x61, 0x63, 0x5c,\n    0x33, 0x24, 0x32, 0x5f, 0x78, 0x74, 0x7b, 0x91, 0x77, 0x6b, 0x57, 0x4f, 0x67, 0x86, 0x89, 0x77,\n    0x73, 0x6c, 0x68, 0x69, 0x68, 0x64, 0x64, 0x68, 0x72, 0x74, 0x75, 0x73, 0x6d, 0x68, 0x65, 0x64,\n    0x66, 0x61, 0x5e, 0x60, 0x64, 0x68, 0x6d, 0x72, 0x77, 0x75, 0x71, 0x6e, 0x6f, 0x73, 0x74, 0x72,\n    0x6a, 0x6a, 0x69, 0x69, 0x6d, 0x72, 0x75, 0x75, 0x70, 0x67, 0x5e, 0x5b, 0x5d, 0x61, 0x65, 0x69,\n    0x6d, 0x6d, 0x63, 0x5f, 0x50, 0x56, 0x58, 0x62, 0x65, 0x67, 0x68, 0x68, 0x69, 0x6b, 0x69, 0x66,\n    0x68, 0x6a, 0x6b, 0x67, 0x5f, 0x5f, 0x6a, 0x77, 0x73, 0x6f, 0x6d, 0x6c, 0x69, 0x6a, 0x74, 0x82,\n    0x87, 0x88, 0x76, 0x5f, 0x58, 0x5a, 0x5a, 0x5a, 0x5b, 0x55, 0x52, 0x5a, 0x64, 0x6b, 0x6e, 0x6f,\n    0x67, 0x68, 0x64, 0x60, 0x67, 0x74, 0x7d, 0x7e, 0x76, 0x6e, 0x65, 0x63, 0x68, 0x6e, 0x71, 0x72,\n    0x76, 0x7a, 0x71, 0x68, 0x69, 0x63, 0x62, 0x70, 0x81, 0x8f, 0x8f, 0x79, 0x72, 0x7c, 0x85, 0x81,\n    0x89, 0x8b, 0x84, 0x7a, 0x73, 0x6b, 0x67, 0x6b, 0x6d, 0x70, 0x6d, 0x67, 0x68, 0x6f, 0x72, 0x70,\n    0x6b, 0x6d, 0x70, 0x6e, 0x69, 0x68, 0x70, 0x79, 0x82, 0x86, 0x8b, 0x8d, 0x86, 0x7c, 0x77, 0x79,\n    0x7e, 0x7f, 0x7e, 0x7d, 0x84, 0x8a, 0x82, 0x74, 0x68, 0x6f, 0x74, 0x70, 0x68, 0x63, 0x66, 0x6b,\n    0x6b, 0x72, 0x69, 0x73, 0x84, 0x9b, 0xb9, 0xbc, 0xbb, 0xbd, 0xc0, 0xc3, 0xc4, 0xc4, 0xc2, 0xc1,\n    0xbf, 0xbf, 0xc0, 0xc2, 0xc4, 0xc4, 0xc1, 0xbf, 0xc0, 0xc1, 0xc3, 0xc6, 0xc8, 0xc8, 0xc5, 0xc2,\n    0xc3, 0xc3, 0xc2, 0xc2, 0xc0, 0xbf, 0xbe, 0xbd, 0xbe, 0xbe, 0xbf, 0xbf, 0xc0, 0xbf, 0xbc, 0xba,\n    0xb6, 0xb9, 0xbb, 0xbb, 0xb9, 0xb8, 0xb8, 0xb9, 0xb6, 0xb2, 0xaf, 0xaf, 0xaf, 0xad, 0xac, 0xae,\n    0xaa, 0xad, 0xb0, 0xaf, 0xac, 0xaa, 0xaa, 0xac, 0xa8, 0xaa, 0xab, 0xab, 0xab, 0xab, 0xad, 0xaf,\n    0xac, 0xaa, 0xa2, 0x97, 0x90, 0x8b, 0x7d, 0x6e, 0x80, 0x87, 0x8d, 0x97, 0x93, 0x65, 0x54, 0x85,\n    0xca, 0xce, 0xd3, 0xd8, 0xdd, 0xe2, 0xe6, 0xe9, 0xe8, 0xe9, 0xec, 0xf0, 0xf3, 0xf6, 0xf8, 0xf9,\n    0xf7, 0xf9, 0xfb, 0xfa, 0xf8, 0xf6, 0xf6, 0xf7, 0xf8, 0xf8, 0xf8, 0xf9, 0xf9, 0xfa, 0xfb, 0xfb,\n    0xf7, 0xf6, 0xf5, 0xf3, 0xf2, 0xf1, 0xf0, 0xf0, 0xf1, 0xf1, 0xf1, 0xf3, 0xf5, 0xf5, 0xf3, 0xf1,\n    0xee, 0xef, 0xf1, 0xf2, 0xf3, 0xf3, 0xf3, 0xf2, 0xf1, 0xf0, 0xee, 0xeb, 0xe7, 0xe0, 0xd8, 0xd3,\n    0xd0, 0xc8, 0xc1, 0xbf, 0xbf, 0xbe, 0xc2, 0xc6, 0xc9, 0xcc, 0xcf, 0xce, 0xcc, 0xcd, 0xcf, 0xd1,\n    0xd5, 0xd9, 0xde, 0xe1, 0xe1, 0xdf, 0xdd, 0xdb, 0xe0, 0xdf, 0xdd, 0xdc, 0xdc, 0xdd, 0xdf, 0xe0,\n    0xda, 0xd8, 0xd7, 0xd7, 0xd9, 0xda, 0xda, 0xd9, 0xdb, 0xdc, 0xdd, 0xdf, 0xe1, 0xe2, 0xe4, 0xe4,\n    0xe3, 0xe3, 0xe3, 0xe3, 0xe3, 0xe2, 0xe2, 0xe2, 0xe2, 0xe0, 0xde, 0xdd, 0xdf, 0xe1, 0xe3, 0xe3,\n    0xe1, 0xdf, 0xdd, 0xdd, 0xdc, 0xda, 0xd6, 0xd3, 0xd5, 0xd3, 0xd2, 0xd0, 0xd0, 0xd0, 0xd1, 0xd1,\n    0xd0, 0xd1, 0xd3, 0xd2, 0xd0, 0xce, 0xce, 0xcf, 0xcc, 0xcd, 0xcd, 0xcd, 0xcc, 0xcb, 0xcc, 0xcd,\n    0xce, 0xcb, 0xc7, 0xc5, 0xc4, 0xc2, 0xbe, 0xbb, 0xb7, 0xb7, 0xb0, 0xa1, 0x92, 0x85, 0x78, 0x6e,\n    0x78, 0x79, 0x7f, 0x83, 0x82, 0x7f, 0x81, 0x87, 0x84, 0x85, 0x85, 0x85, 0x84, 0x84, 0x83, 0x82,\n    0x83, 0x83, 0x83, 0x82, 0x81, 0x81, 0x80, 0x80, 0x7f, 0x7d, 0x7b, 0x7a, 0x79, 0x77, 0x74, 0x72,\n    0x75, 0x71, 0x6d, 0x6d, 0x6c, 0x69, 0x68, 0x69, 0x64, 0x62, 0x5f, 0x5c, 0x5a, 0x58, 0x55, 0x53,\n    0x52, 0x4e, 0x48, 0x45, 0x42, 0x3e, 0x37, 0x33, 0x32, 0x2c, 0x2b, 0x3b, 0x51, 0x60, 0x62, 0x5d,\n    0x5b, 0x5a, 0x60, 0x6b, 0x6f, 0x67, 0x5d, 0x58, 0x50, 0x4a, 0x3f, 0x35, 0x32, 0x34, 0x32, 0x2c,\n    0x30, 0x31, 0x36, 0x3b, 0x39, 0x37, 0x43, 0x53, 0x63, 0x6d, 0x66, 0x58, 0x4c, 0x38, 0x38, 0x52,\n    0x70, 0x7a, 0x70, 0x5b, 0x51, 0x4d, 0x50, 0x5e, 0x6c, 0x73, 0x6b, 0x52, 0x40, 0x3e, 0x3f, 0x3c,\n    0x3c, 0x37, 0x27, 0x1a, 0x1a, 0x22, 0x2f, 0x3f, 0x56, 0x70, 0x6d, 0x61, 0x52, 0x35, 0x2c, 0x34,\n    0x23, 0x1d, 0x18, 0x1a, 0x21, 0x29, 0x2e, 0x30, 0x39, 0x3b, 0x41, 0x46, 0x40, 0x37, 0x3a, 0x44,\n    0x3d, 0x4e, 0x57, 0x65, 0x5d, 0x62, 0x57, 0x55, 0x6f, 0x5e, 0x3d, 0x26, 0x23, 0x24, 0x27, 0x32,\n    0x32, 0x36, 0x38, 0x36, 0x35, 0x37, 0x37, 0x33, 0x32, 0x36, 0x43, 0x58, 0x6e, 0x7c, 0x81, 0x81,\n    0x79, 0x78, 0x79, 0x7c, 0x74, 0x5d, 0x40, 0x2b, 0x2c, 0x34, 0x54, 0x83, 0x9a, 0x86, 0x62, 0x4a,\n    0x6b, 0x6c, 0x6d, 0x6a, 0x63, 0x61, 0x6c, 0x79, 0x8e, 0x82, 0x6f, 0x5f, 0x5a, 0x5e, 0x63, 0x64,\n    0x64, 0x64, 0x66, 0x6a, 0x6d, 0x6f, 0x72, 0x76, 0x7c, 0x82, 0x82, 0x7c, 0x7e, 0x88, 0x8b, 0x86,\n    0x80, 0x78, 0x73, 0x76, 0x7a, 0x7b, 0x7e, 0x82, 0x78, 0x7e, 0x83, 0x82, 0x79, 0x71, 0x71, 0x75,\n    0x62, 0x67, 0x69, 0x66, 0x5f, 0x5b, 0x5c, 0x60, 0x57, 0x5b, 0x60, 0x65, 0x67, 0x67, 0x66, 0x66,\n    0x6e, 0x6f, 0x6f, 0x6b, 0x66, 0x66, 0x6f, 0x79, 0x79, 0x76, 0x6f, 0x66, 0x63, 0x66, 0x6a, 0x6b,\n    0x67, 0x69, 0x66, 0x5e, 0x58, 0x58, 0x59, 0x5a, 0x57, 0x60, 0x58, 0x5b, 0x5f, 0x62, 0x6e, 0x66,\n    0x6d, 0x69, 0x67, 0x68, 0x66, 0x62, 0x60, 0x62, 0x6e, 0x6f, 0x64, 0x5f, 0x6b, 0x70, 0x70, 0x77,\n    0x79, 0x7c, 0x75, 0x67, 0x63, 0x6b, 0x72, 0x71, 0x8d, 0x95, 0x8b, 0x7e, 0x70, 0x7d, 0x80, 0x81,\n    0x8a, 0x80, 0x7a, 0x7b, 0x78, 0x70, 0x6d, 0x6f, 0x6c, 0x6c, 0x6c, 0x6c, 0x6e, 0x6e, 0x6c, 0x6a,\n    0x68, 0x6b, 0x6e, 0x6c, 0x64, 0x62, 0x6d, 0x7a, 0x7e, 0x7f, 0x80, 0x80, 0x7f, 0x7e, 0x7e, 0x7e,\n    0x84, 0x7f, 0x7a, 0x7a, 0x80, 0x83, 0x7d, 0x75, 0x6b, 0x72, 0x76, 0x71, 0x6a, 0x6b, 0x75, 0x7e,\n    0x7d, 0x74, 0x78, 0x80, 0x87, 0xb1, 0xb7, 0xba, 0xbc, 0xc0, 0xc5, 0xc6, 0xc4, 0xc3, 0xc3, 0xc5,\n    0xc1, 0xc0, 0xbf, 0xbf, 0xbf, 0xc0, 0xc1, 0xc2, 0xc3, 0xc3, 0xc4, 0xc6, 0xc9, 0xc9, 0xc7, 0xc5,\n    0xc3, 0xc3, 0xc3, 0xc1, 0xbf, 0xbf, 0xc0, 0xc0, 0xbe, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbe, 0xbd,\n    0xbb, 0xb8, 0xb8, 0xba, 0xb8, 0xb4, 0xb3, 0xb5, 0xb8, 0xb7, 0xb6, 0xb4, 0xb1, 0xae, 0xab, 0xaa,\n    0xab, 0xad, 0xae, 0xad, 0xab, 0xa9, 0xaa, 0xab, 0xa4, 0xa3, 0xa2, 0xa2, 0xa3, 0xa6, 0xa9, 0xab,\n    0xad, 0xad, 0xa8, 0xa1, 0x99, 0x8f, 0x82, 0x77, 0x79, 0x82, 0x8d, 0x97, 0x95, 0x80, 0x53, 0x79,\n    0xd3, 0xd7, 0xd5, 0xde, 0xd7, 0xe2, 0xe5, 0xe6, 0xe9, 0xe9, 0xea, 0xee, 0xf3, 0xf7, 0xf9, 0xf9,\n    0xf6, 0xf8, 0xfa, 0xfa, 0xf9, 0xf8, 0xf8, 0xf8, 0xf7, 0xf7, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8,\n    0xf6, 0xf4, 0xf1, 0xef, 0xed, 0xed, 0xee, 0xee, 0xf0, 0xf1, 0xf3, 0xf4, 0xf5, 0xf5, 0xf4, 0xf4,\n    0xf2, 0xf2, 0xf3, 0xf3, 0xf3, 0xf2, 0xf2, 0xf2, 0xed, 0xee, 0xeb, 0xe2, 0xda, 0xd5, 0xd0, 0xca,\n    0xc6, 0xc3, 0xbe, 0xbb, 0xbb, 0xbf, 0xc5, 0xc9, 0xcb, 0xcd, 0xd0, 0xd1, 0xd0, 0xcf, 0xcf, 0xcf,\n    0xd3, 0xd8, 0xdb, 0xdc, 0xde, 0xe2, 0xe1, 0xde, 0xdd, 0xdd, 0xde, 0xdf, 0xe0, 0xe1, 0xe2, 0xe2,\n    0xde, 0xdd, 0xdc, 0xdb, 0xdb, 0xdb, 0xdc, 0xdc, 0xde, 0xe0, 0xe1, 0xe0, 0xe1, 0xe3, 0xe4, 0xe2,\n    0xe6, 0xe5, 0xe3, 0xe2, 0xdf, 0xdd, 0xdb, 0xdb, 0xdc, 0xdc, 0xdd, 0xde, 0xe0, 0xe2, 0xe3, 0xe4,\n    0xe1, 0xdf, 0xdc, 0xd9, 0xd7, 0xd5, 0xd4, 0xd3, 0xd3, 0xd7, 0xd9, 0xd7, 0xd3, 0xd1, 0xd3, 0xd6,\n    0xd3, 0xd4, 0xd5, 0xd4, 0xd1, 0xcf, 0xcf, 0xcf, 0xce, 0xce, 0xcd, 0xcd, 0xcc, 0xcb, 0xcb, 0xcb,\n    0xce, 0xcc, 0xca, 0xc8, 0xc5, 0xc2, 0xbf, 0xbd, 0xbb, 0xb7, 0xa8, 0xa3, 0x88, 0x7c, 0x6c, 0x6e,\n    0x75, 0x78, 0x7c, 0x7f, 0x81, 0x81, 0x82, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x82, 0x81,\n    0x81, 0x82, 0x82, 0x82, 0x81, 0x80, 0x7e, 0x7d, 0x7b, 0x7b, 0x7a, 0x78, 0x77, 0x75, 0x73, 0x72,\n    0x71, 0x71, 0x70, 0x6e, 0x6b, 0x68, 0x66, 0x65, 0x63, 0x60, 0x5e, 0x5b, 0x59, 0x56, 0x53, 0x51,\n    0x4f, 0x4b, 0x46, 0x42, 0x3f, 0x3c, 0x35, 0x2e, 0x30, 0x2a, 0x2f, 0x42, 0x52, 0x56, 0x58, 0x5d,\n    0x62, 0x5f, 0x67, 0x74, 0x75, 0x6e, 0x62, 0x55, 0x51, 0x48, 0x3d, 0x39, 0x3e, 0x42, 0x3e, 0x36,\n    0x2f, 0x27, 0x2b, 0x38, 0x3b, 0x35, 0x3b, 0x4a, 0x55, 0x4d, 0x48, 0x43, 0x37, 0x28, 0x25, 0x2c,\n    0x44, 0x56, 0x65, 0x67, 0x66, 0x6e, 0x77, 0x7c, 0x70, 0x59, 0x45, 0x44, 0x4d, 0x4d, 0x43, 0x3a,\n    0x24, 0x1d, 0x1b, 0x21, 0x27, 0x2d, 0x3e, 0x50, 0x56, 0x63, 0x62, 0x4f, 0x41, 0x44, 0x48, 0x45,\n    0x38, 0x30, 0x25, 0x1f, 0x20, 0x25, 0x2c, 0x31, 0x36, 0x37, 0x3a, 0x3d, 0x43, 0x4a, 0x4f, 0x51,\n    0x51, 0x52, 0x53, 0x58, 0x57, 0x4a, 0x43, 0x4b, 0x46, 0x36, 0x28, 0x1a, 0x0e, 0x16, 0x22, 0x1f,\n    0x34, 0x38, 0x37, 0x31, 0x34, 0x49, 0x68, 0x7e, 0x88, 0x8f, 0x90, 0x89, 0x82, 0x7b, 0x6a, 0x59,\n    0x5c, 0x6d, 0x72, 0x5a, 0x34, 0x1c, 0x1b, 0x23, 0x24, 0x68, 0x91, 0x8f, 0x63, 0x50, 0x45, 0x4e,\n    0x6c, 0x68, 0x65, 0x65, 0x66, 0x6a, 0x74, 0x7e, 0x77, 0x6f, 0x62, 0x59, 0x5a, 0x60, 0x64, 0x64,\n    0x67, 0x64, 0x63, 0x68, 0x6c, 0x6d, 0x6e, 0x70, 0x71, 0x76, 0x77, 0x74, 0x77, 0x7f, 0x83, 0x82,\n    0x83, 0x7e, 0x7e, 0x86, 0x8b, 0x8c, 0x8c, 0x8f, 0xa1, 0x9b, 0x98, 0x9c, 0xa2, 0xa3, 0xa0, 0x9e,\n    0x9d, 0x9c, 0x97, 0x90, 0x89, 0x88, 0x8c, 0x91, 0x91, 0x97, 0x98, 0x8e, 0x7d, 0x71, 0x71, 0x75,\n    0x77, 0x7d, 0x7a, 0x71, 0x72, 0x7b, 0x7c, 0x74, 0x6a, 0x67, 0x64, 0x67, 0x6f, 0x72, 0x6a, 0x60,\n    0x6a, 0x61, 0x59, 0x57, 0x5a, 0x5e, 0x5d, 0x5b, 0x54, 0x59, 0x51, 0x5a, 0x66, 0x6a, 0x6a, 0x58,\n    0x5d, 0x60, 0x67, 0x6e, 0x6e, 0x68, 0x64, 0x63, 0x6a, 0x6e, 0x65, 0x5e, 0x63, 0x67, 0x6d, 0x7a,\n    0x83, 0x7b, 0x70, 0x69, 0x67, 0x69, 0x6f, 0x74, 0x87, 0x97, 0x91, 0x7f, 0x65, 0x6b, 0x72, 0x7b,\n    0x7d, 0x7e, 0x7d, 0x7a, 0x76, 0x73, 0x6e, 0x6a, 0x72, 0x6e, 0x6b, 0x6d, 0x74, 0x77, 0x71, 0x69,\n    0x6c, 0x6b, 0x6a, 0x68, 0x65, 0x66, 0x6f, 0x79, 0x7a, 0x7e, 0x81, 0x80, 0x7c, 0x79, 0x7a, 0x7c,\n    0x7c, 0x7d, 0x7d, 0x7e, 0x81, 0x82, 0x7d, 0x76, 0x7b, 0x7b, 0x7a, 0x75, 0x73, 0x76, 0x7d, 0x83,\n    0x7d, 0x77, 0x7b, 0x7f, 0x8f, 0xb4, 0xb9, 0xbb, 0xbe, 0xc2, 0xc6, 0xc6, 0xc4, 0xc2, 0xc2, 0xc3,\n    0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xc1, 0xc2, 0xc3, 0xc4, 0xc3, 0xc4, 0xc6, 0xc8, 0xc9, 0xc8, 0xc6,\n    0xc0, 0xc0, 0xbf, 0xbe, 0xbe, 0xbd, 0xbc, 0xbc, 0xbd, 0xbe, 0xbf, 0xc0, 0xc0, 0xbf, 0xbe, 0xbd,\n    0xbd, 0xba, 0xb9, 0xbb, 0xb9, 0xb6, 0xb5, 0xb7, 0xbc, 0xbb, 0xba, 0xb8, 0xb5, 0xb2, 0xaf, 0xae,\n    0xad, 0xad, 0xad, 0xac, 0xac, 0xad, 0xaf, 0xb1, 0xa9, 0xa7, 0xa5, 0xa3, 0xa2, 0xa2, 0xa2, 0xa2,\n    0xa4, 0xa5, 0xa4, 0xa0, 0x99, 0x90, 0x84, 0x79, 0x77, 0x80, 0x8b, 0x94, 0x96, 0x84, 0x58, 0x71,\n    0xc1, 0xd1, 0xd1, 0xdc, 0xdb, 0xe4, 0xe6, 0xe9, 0xe8, 0xe9, 0xea, 0xee, 0xf3, 0xf7, 0xf9, 0xf9,\n    0xf6, 0xf8, 0xf9, 0xfa, 0xf9, 0xf9, 0xf9, 0xf9, 0xf8, 0xf9, 0xf9, 0xf9, 0xf9, 0xf8, 0xf8, 0xf7,\n    0xf4, 0xf3, 0xf1, 0xf0, 0xef, 0xef, 0xef, 0xf0, 0xf1, 0xf2, 0xf3, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4,\n    0xf3, 0xf3, 0xf3, 0xf2, 0xf0, 0xef, 0xed, 0xec, 0xe9, 0xe9, 0xe4, 0xdb, 0xd4, 0xcf, 0xca, 0xc4,\n    0xbf, 0xbd, 0xbc, 0xbb, 0xbd, 0xc1, 0xc6, 0xc8, 0xce, 0xd0, 0xd3, 0xd4, 0xd4, 0xd3, 0xd2, 0xd2,\n    0xd6, 0xda, 0xdd, 0xde, 0xe0, 0xe3, 0xe2, 0xdf, 0xdf, 0xdf, 0xe0, 0xe1, 0xe2, 0xe3, 0xe3, 0xe3,\n    0xdf, 0xdd, 0xdb, 0xd9, 0xd9, 0xda, 0xdc, 0xdd, 0xe0, 0xe2, 0xe3, 0xe2, 0xe3, 0xe4, 0xe4, 0xe2,\n    0xe0, 0xe0, 0xdf, 0xdd, 0xdc, 0xdb, 0xda, 0xda, 0xdc, 0xdd, 0xde, 0xdf, 0xdf, 0xde, 0xdd, 0xdd,\n    0xdb, 0xdb, 0xda, 0xd9, 0xd9, 0xd9, 0xd9, 0xda, 0xd8, 0xd9, 0xd9, 0xd8, 0xd6, 0xd5, 0xd5, 0xd6,\n    0xd4, 0xd5, 0xd5, 0xd3, 0xd0, 0xce, 0xce, 0xcf, 0xd0, 0xcf, 0xce, 0xcd, 0xcc, 0xcb, 0xcb, 0xcb,\n    0xcd, 0xcc, 0xca, 0xc8, 0xc6, 0xc4, 0xc0, 0xbe, 0xba, 0xb7, 0xa8, 0x9d, 0x81, 0x76, 0x6b, 0x6e,\n    0x72, 0x75, 0x79, 0x7d, 0x7f, 0x80, 0x82, 0x83, 0x84, 0x84, 0x84, 0x84, 0x83, 0x82, 0x82, 0x81,\n    0x80, 0x80, 0x81, 0x81, 0x80, 0x7e, 0x7d, 0x7b, 0x7a, 0x7a, 0x79, 0x78, 0x76, 0x74, 0x73, 0x72,\n    0x70, 0x6f, 0x6e, 0x6c, 0x69, 0x67, 0x65, 0x64, 0x62, 0x60, 0x5d, 0x5a, 0x58, 0x55, 0x52, 0x50,\n    0x4d, 0x4a, 0x44, 0x40, 0x3d, 0x3a, 0x35, 0x30, 0x2d, 0x32, 0x40, 0x52, 0x5c, 0x5e, 0x61, 0x67,\n    0x62, 0x68, 0x76, 0x7c, 0x70, 0x62, 0x5b, 0x56, 0x51, 0x45, 0x39, 0x38, 0x3f, 0x42, 0x3d, 0x35,\n    0x34, 0x39, 0x3d, 0x3a, 0x35, 0x35, 0x3c, 0x43, 0x47, 0x3f, 0x3c, 0x3c, 0x37, 0x2e, 0x2c, 0x31,\n    0x36, 0x43, 0x59, 0x6c, 0x6e, 0x63, 0x5a, 0x58, 0x51, 0x52, 0x5a, 0x61, 0x59, 0x49, 0x46, 0x4e,\n    0x4d, 0x56, 0x59, 0x52, 0x4b, 0x4c, 0x52, 0x55, 0x64, 0x65, 0x5b, 0x47, 0x3d, 0x41, 0x45, 0x43,\n    0x47, 0x44, 0x3b, 0x2d, 0x25, 0x28, 0x32, 0x39, 0x2e, 0x30, 0x33, 0x37, 0x3d, 0x44, 0x48, 0x49,\n    0x4f, 0x52, 0x4a, 0x41, 0x45, 0x45, 0x3b, 0x33, 0x3a, 0x2d, 0x21, 0x1a, 0x15, 0x14, 0x15, 0x12,\n    0x1d, 0x24, 0x37, 0x57, 0x7a, 0x8c, 0x86, 0x78, 0x69, 0x56, 0x43, 0x3b, 0x39, 0x3f, 0x4f, 0x61,\n    0x7a, 0x7f, 0x71, 0x48, 0x23, 0x1d, 0x30, 0x43, 0x6f, 0x78, 0x63, 0x4b, 0x37, 0x43, 0x45, 0x4a,\n    0x66, 0x60, 0x5d, 0x62, 0x6a, 0x71, 0x76, 0x79, 0x71, 0x6c, 0x65, 0x62, 0x67, 0x6c, 0x6c, 0x68,\n    0x64, 0x5f, 0x5c, 0x5e, 0x61, 0x60, 0x5e, 0x5c, 0x66, 0x68, 0x69, 0x69, 0x6a, 0x6c, 0x70, 0x74,\n    0x6e, 0x68, 0x67, 0x6e, 0x75, 0x75, 0x74, 0x74, 0x73, 0x78, 0x82, 0x8c, 0x8e, 0x86, 0x7b, 0x74,\n    0x72, 0x75, 0x7a, 0x7b, 0x7a, 0x76, 0x72, 0x71, 0x70, 0x7b, 0x85, 0x87, 0x84, 0x87, 0x94, 0xa0,\n    0xa6, 0xa3, 0x9a, 0x90, 0x92, 0x96, 0x8e, 0x80, 0x7b, 0x7b, 0x79, 0x75, 0x73, 0x73, 0x70, 0x6d,\n    0x5e, 0x56, 0x53, 0x5c, 0x67, 0x6b, 0x6c, 0x6c, 0x65, 0x64, 0x59, 0x5b, 0x64, 0x68, 0x68, 0x5b,\n    0x66, 0x69, 0x6f, 0x74, 0x72, 0x69, 0x5f, 0x5b, 0x69, 0x6c, 0x66, 0x61, 0x64, 0x67, 0x6d, 0x77,\n    0x84, 0x79, 0x72, 0x70, 0x67, 0x5c, 0x60, 0x6d, 0x85, 0x99, 0x9a, 0x8b, 0x6e, 0x6f, 0x71, 0x79,\n    0x82, 0x7c, 0x74, 0x6e, 0x6c, 0x6a, 0x68, 0x67, 0x73, 0x6f, 0x6a, 0x6a, 0x6f, 0x72, 0x6e, 0x67,\n    0x6c, 0x69, 0x68, 0x69, 0x6b, 0x6e, 0x75, 0x7b, 0x76, 0x7d, 0x83, 0x82, 0x7c, 0x76, 0x75, 0x78,\n    0x7a, 0x7e, 0x81, 0x81, 0x80, 0x7e, 0x7c, 0x78, 0x79, 0x78, 0x78, 0x7a, 0x7d, 0x7e, 0x7d, 0x7c,\n    0x7f, 0x7d, 0x80, 0x7f, 0x9c, 0xb7, 0xbd, 0xbd, 0xc1, 0xc3, 0xc6, 0xc6, 0xc3, 0xc1, 0xc0, 0xc0,\n    0xbe, 0xbf, 0xc1, 0xc3, 0xc4, 0xc4, 0xc5, 0xc5, 0xc4, 0xc4, 0xc3, 0xc4, 0xc6, 0xc7, 0xc8, 0xc7,\n    0xc1, 0xbf, 0xbd, 0xbd, 0xbe, 0xbe, 0xbc, 0xba, 0xbc, 0xbd, 0xbf, 0xc0, 0xc0, 0xbf, 0xbe, 0xbd,\n    0xbe, 0xbb, 0xba, 0xba, 0xb9, 0xb8, 0xb8, 0xba, 0xbb, 0xbb, 0xb9, 0xb7, 0xb4, 0xb1, 0xaf, 0xad,\n    0xaf, 0xad, 0xab, 0xac, 0xae, 0xb1, 0xb4, 0xb5, 0xb0, 0xaf, 0xad, 0xaa, 0xa7, 0xa5, 0xa3, 0xa1,\n    0x9e, 0xa0, 0xa1, 0x9e, 0x9a, 0x91, 0x85, 0x7a, 0x75, 0x7d, 0x86, 0x8f, 0x97, 0x8b, 0x60, 0x66,\n    0xb1, 0xd3, 0xd3, 0xdc, 0xe0, 0xe4, 0xe1, 0xe5, 0xe5, 0xe6, 0xe9, 0xed, 0xf2, 0xf6, 0xf7, 0xf8,\n    0xf6, 0xf7, 0xf9, 0xfa, 0xfa, 0xfa, 0xfa, 0xfb, 0xfa, 0xfa, 0xfa, 0xfa, 0xf9, 0xf8, 0xf7, 0xf7,\n    0xf3, 0xf2, 0xf2, 0xf1, 0xf0, 0xf0, 0xf0, 0xf0, 0xf1, 0xf2, 0xf2, 0xf3, 0xf3, 0xf4, 0xf4, 0xf5,\n    0xf3, 0xf2, 0xf2, 0xf0, 0xee, 0xec, 0xea, 0xe8, 0xe4, 0xe1, 0xda, 0xd2, 0xcd, 0xc9, 0xc3, 0xbe,\n    0xb9, 0xba, 0xbb, 0xbe, 0xc2, 0xc6, 0xca, 0xcc, 0xd2, 0xd4, 0xd7, 0xd8, 0xd8, 0xd6, 0xd6, 0xd6,\n    0xd9, 0xdc, 0xde, 0xdf, 0xe1, 0xe3, 0xe3, 0xe1, 0xdf, 0xe0, 0xe0, 0xe1, 0xe1, 0xe2, 0xe2, 0xe2,\n    0xe3, 0xe1, 0xdd, 0xdb, 0xdb, 0xdc, 0xdf, 0xe1, 0xe1, 0xe4, 0xe5, 0xe4, 0xe4, 0xe5, 0xe4, 0xe1,\n    0xde, 0xdd, 0xdc, 0xdc, 0xdc, 0xdd, 0xde, 0xde, 0xdd, 0xde, 0xdf, 0xe0, 0xdf, 0xdd, 0xda, 0xd9,\n    0xd8, 0xd8, 0xd8, 0xd9, 0xda, 0xdb, 0xdc, 0xdc, 0xdc, 0xda, 0xd9, 0xd8, 0xd8, 0xd8, 0xd6, 0xd4,\n    0xd5, 0xd5, 0xd4, 0xd2, 0xcf, 0xce, 0xce, 0xcf, 0xd1, 0xd0, 0xce, 0xcc, 0xca, 0xca, 0xca, 0xca,\n    0xcb, 0xca, 0xc9, 0xc7, 0xc6, 0xc4, 0xc1, 0xbf, 0xb9, 0xb9, 0xaa, 0x96, 0x78, 0x6e, 0x69, 0x6d,\n    0x6f, 0x73, 0x78, 0x7c, 0x7e, 0x80, 0x82, 0x83, 0x83, 0x83, 0x83, 0x82, 0x82, 0x82, 0x81, 0x81,\n    0x7f, 0x7f, 0x7f, 0x7f, 0x7e, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x76, 0x75, 0x73, 0x72, 0x71,\n    0x6d, 0x6d, 0x6c, 0x6a, 0x68, 0x66, 0x64, 0x63, 0x60, 0x5e, 0x5b, 0x59, 0x56, 0x53, 0x50, 0x4d,\n    0x4b, 0x47, 0x42, 0x3d, 0x39, 0x35, 0x33, 0x31, 0x24, 0x3e, 0x5f, 0x74, 0x76, 0x6e, 0x67, 0x63,\n    0x5f, 0x67, 0x75, 0x79, 0x6c, 0x62, 0x62, 0x63, 0x57, 0x43, 0x33, 0x37, 0x48, 0x55, 0x5a, 0x5c,\n    0x63, 0x56, 0x43, 0x34, 0x32, 0x3a, 0x42, 0x45, 0x38, 0x31, 0x30, 0x36, 0x3a, 0x38, 0x3b, 0x41,\n    0x44, 0x3b, 0x42, 0x58, 0x5e, 0x52, 0x50, 0x5a, 0x73, 0x77, 0x66, 0x46, 0x39, 0x47, 0x51, 0x4e,\n    0x58, 0x52, 0x53, 0x55, 0x48, 0x38, 0x3f, 0x53, 0x60, 0x5a, 0x52, 0x4b, 0x4a, 0x4c, 0x4a, 0x47,\n    0x4b, 0x50, 0x4c, 0x3f, 0x36, 0x34, 0x31, 0x2c, 0x2d, 0x2a, 0x25, 0x24, 0x2b, 0x36, 0x3d, 0x3f,\n    0x41, 0x49, 0x50, 0x50, 0x46, 0x39, 0x43, 0x5e, 0x6d, 0x61, 0x52, 0x51, 0x5e, 0x66, 0x68, 0x6c,\n    0x74, 0x78, 0x78, 0x6d, 0x60, 0x55, 0x4f, 0x4c, 0x40, 0x32, 0x2c, 0x34, 0x41, 0x50, 0x6b, 0x84,\n    0x78, 0x62, 0x45, 0x31, 0x2b, 0x31, 0x3d, 0x48, 0x45, 0x56, 0x57, 0x4f, 0x42, 0x4f, 0x5d, 0x6b,\n    0x5e, 0x5b, 0x5a, 0x61, 0x6a, 0x6f, 0x6e, 0x6b, 0x70, 0x6f, 0x6d, 0x6e, 0x74, 0x77, 0x72, 0x6b,\n    0x65, 0x62, 0x61, 0x63, 0x65, 0x64, 0x62, 0x63, 0x6a, 0x68, 0x68, 0x6a, 0x68, 0x64, 0x67, 0x6d,\n    0x74, 0x68, 0x60, 0x66, 0x70, 0x73, 0x73, 0x72, 0x76, 0x7a, 0x80, 0x85, 0x84, 0x7d, 0x79, 0x78,\n    0x6f, 0x6d, 0x69, 0x69, 0x6c, 0x70, 0x73, 0x75, 0x73, 0x72, 0x71, 0x70, 0x71, 0x74, 0x76, 0x78,\n    0x77, 0x6a, 0x64, 0x6c, 0x72, 0x70, 0x6d, 0x6e, 0x72, 0x7b, 0x84, 0x83, 0x7a, 0x6d, 0x61, 0x59,\n    0x54, 0x4a, 0x45, 0x4a, 0x51, 0x59, 0x68, 0x77, 0x93, 0x92, 0x89, 0x7c, 0x71, 0x6c, 0x6c, 0x6a,\n    0x68, 0x66, 0x66, 0x6a, 0x6e, 0x70, 0x6e, 0x6c, 0x67, 0x64, 0x60, 0x63, 0x69, 0x6a, 0x69, 0x6a,\n    0x79, 0x78, 0x7b, 0x7c, 0x6d, 0x5d, 0x62, 0x73, 0x88, 0x94, 0x8f, 0x86, 0x74, 0x7b, 0x7c, 0x81,\n    0x7a, 0x73, 0x73, 0x76, 0x71, 0x68, 0x69, 0x73, 0x70, 0x71, 0x6e, 0x68, 0x67, 0x6a, 0x6a, 0x67,\n    0x67, 0x69, 0x6d, 0x73, 0x77, 0x79, 0x7a, 0x7b, 0x77, 0x7f, 0x87, 0x88, 0x82, 0x7b, 0x76, 0x75,\n    0x7b, 0x7e, 0x7f, 0x7e, 0x7d, 0x7e, 0x7c, 0x7a, 0x76, 0x73, 0x72, 0x78, 0x7e, 0x7f, 0x7d, 0x7b,\n    0x7e, 0x7e, 0x80, 0x7f, 0xa6, 0xb8, 0xc0, 0xc0, 0xc3, 0xc4, 0xc6, 0xc5, 0xc2, 0xc0, 0xbe, 0xbe,\n    0xc0, 0xc2, 0xc4, 0xc6, 0xc7, 0xc7, 0xc6, 0xc5, 0xc4, 0xc3, 0xc2, 0xc2, 0xc3, 0xc5, 0xc6, 0xc7,\n    0xc5, 0xc1, 0xbd, 0xbd, 0xbf, 0xc0, 0xbf, 0xbd, 0xbc, 0xbd, 0xbf, 0xc0, 0xc0, 0xbf, 0xbd, 0xbb,\n    0xbc, 0xba, 0xb9, 0xb8, 0xb8, 0xb8, 0xb9, 0xbb, 0xb9, 0xb9, 0xb9, 0xb7, 0xb5, 0xb2, 0xaf, 0xad,\n    0xb1, 0xae, 0xac, 0xad, 0xb0, 0xb3, 0xb4, 0xb4, 0xb2, 0xb2, 0xb1, 0xb0, 0xad, 0xaa, 0xa8, 0xa6,\n    0xa0, 0xa1, 0xa0, 0x9d, 0x98, 0x90, 0x84, 0x79, 0x74, 0x79, 0x82, 0x89, 0x96, 0x91, 0x6a, 0x5d,\n    0x9f, 0xd5, 0xd5, 0xdc, 0xe3, 0xe3, 0xde, 0xe4, 0xe2, 0xe4, 0xe7, 0xeb, 0xef, 0xf3, 0xf5, 0xf6,\n    0xf6, 0xf7, 0xfa, 0xfb, 0xfb, 0xfb, 0xfc, 0xfd, 0xfc, 0xfc, 0xfc, 0xfb, 0xfa, 0xf8, 0xf7, 0xf6,\n    0xf2, 0xf2, 0xf2, 0xf1, 0xf0, 0xef, 0xef, 0xee, 0xf0, 0xf0, 0xf1, 0xf1, 0xf3, 0xf4, 0xf5, 0xf5,\n    0xf1, 0xf1, 0xf1, 0xf0, 0xee, 0xeb, 0xe9, 0xe7, 0xe0, 0xda, 0xd2, 0xcb, 0xc7, 0xc3, 0xbe, 0xba,\n    0xb8, 0xba, 0xbd, 0xc1, 0xc6, 0xcb, 0xcf, 0xd1, 0xd4, 0xd7, 0xd9, 0xda, 0xd9, 0xd8, 0xd7, 0xd7,\n    0xd8, 0xda, 0xdc, 0xdd, 0xdf, 0xe0, 0xe1, 0xe1, 0xdd, 0xde, 0xdf, 0xdf, 0xdf, 0xdf, 0xdf, 0xde,\n    0xe3, 0xe1, 0xdf, 0xdd, 0xdd, 0xde, 0xe0, 0xe1, 0xe1, 0xe4, 0xe5, 0xe4, 0xe3, 0xe4, 0xe2, 0xdf,\n    0xdc, 0xdb, 0xdb, 0xdc, 0xdd, 0xdf, 0xe1, 0xe2, 0xdf, 0xe0, 0xe0, 0xe0, 0xdf, 0xde, 0xdd, 0xdc,\n    0xda, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xda, 0xda, 0xdc, 0xdb, 0xd9, 0xd8, 0xd7, 0xd6, 0xd4, 0xd3,\n    0xd6, 0xd5, 0xd3, 0xd1, 0xcf, 0xcf, 0xd0, 0xd1, 0xd1, 0xd0, 0xcd, 0xca, 0xc9, 0xc9, 0xc9, 0xca,\n    0xc9, 0xc8, 0xc7, 0xc7, 0xc6, 0xc4, 0xc1, 0xbf, 0xba, 0xbd, 0xb1, 0x96, 0x76, 0x68, 0x66, 0x6b,\n    0x70, 0x73, 0x78, 0x7c, 0x7e, 0x80, 0x82, 0x83, 0x82, 0x82, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81,\n    0x7f, 0x7f, 0x7e, 0x7e, 0x7d, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x77, 0x75, 0x73, 0x71, 0x6f, 0x6e,\n    0x6c, 0x6b, 0x69, 0x68, 0x67, 0x65, 0x63, 0x61, 0x5f, 0x5d, 0x5a, 0x58, 0x55, 0x51, 0x4d, 0x4a,\n    0x47, 0x44, 0x3f, 0x3b, 0x35, 0x30, 0x2f, 0x30, 0x36, 0x50, 0x6a, 0x74, 0x73, 0x73, 0x76, 0x77,\n    0x72, 0x70, 0x74, 0x75, 0x6d, 0x6a, 0x6a, 0x67, 0x4b, 0x3f, 0x41, 0x56, 0x6c, 0x6e, 0x64, 0x5b,\n    0x3d, 0x34, 0x35, 0x41, 0x49, 0x43, 0x3a, 0x37, 0x2d, 0x28, 0x28, 0x30, 0x39, 0x42, 0x4e, 0x5a,\n    0x60, 0x51, 0x51, 0x62, 0x69, 0x60, 0x61, 0x6e, 0x7e, 0x5e, 0x43, 0x3e, 0x43, 0x45, 0x4f, 0x5d,\n    0x68, 0x6e, 0x60, 0x42, 0x37, 0x46, 0x55, 0x56, 0x65, 0x57, 0x49, 0x46, 0x47, 0x48, 0x49, 0x4a,\n    0x51, 0x51, 0x4a, 0x40, 0x41, 0x48, 0x42, 0x34, 0x30, 0x2a, 0x22, 0x23, 0x30, 0x41, 0x4a, 0x4a,\n    0x56, 0x74, 0x79, 0x62, 0x59, 0x64, 0x6b, 0x6b, 0x7d, 0x80, 0x74, 0x66, 0x66, 0x60, 0x58, 0x59,\n    0x45, 0x49, 0x4c, 0x4c, 0x4b, 0x4d, 0x4d, 0x4c, 0x43, 0x46, 0x4b, 0x4e, 0x4d, 0x48, 0x40, 0x3a,\n    0x3e, 0x27, 0x1a, 0x21, 0x29, 0x2c, 0x37, 0x47, 0x7e, 0x7e, 0x7f, 0x7d, 0x72, 0x6d, 0x6c, 0x6d,\n    0x5d, 0x5d, 0x5d, 0x5f, 0x62, 0x64, 0x64, 0x62, 0x65, 0x66, 0x67, 0x6b, 0x71, 0x73, 0x6e, 0x66,\n    0x5b, 0x5d, 0x63, 0x68, 0x6a, 0x6a, 0x6c, 0x70, 0x72, 0x6f, 0x70, 0x74, 0x74, 0x6f, 0x71, 0x78,\n    0x75, 0x66, 0x5d, 0x66, 0x75, 0x7b, 0x79, 0x76, 0x75, 0x71, 0x73, 0x7c, 0x84, 0x83, 0x7c, 0x76,\n    0x75, 0x6f, 0x68, 0x65, 0x67, 0x6b, 0x6e, 0x6f, 0x6f, 0x6b, 0x69, 0x6d, 0x74, 0x79, 0x79, 0x76,\n    0x70, 0x68, 0x68, 0x72, 0x75, 0x6f, 0x6e, 0x75, 0x66, 0x68, 0x6b, 0x6f, 0x72, 0x70, 0x64, 0x58,\n    0x52, 0x4c, 0x4a, 0x4f, 0x51, 0x50, 0x55, 0x5f, 0x57, 0x5f, 0x6b, 0x6c, 0x6b, 0x6e, 0x73, 0x79,\n    0x72, 0x6b, 0x63, 0x61, 0x67, 0x6e, 0x71, 0x71, 0x6c, 0x68, 0x69, 0x6f, 0x72, 0x72, 0x71, 0x6f,\n    0x71, 0x76, 0x7d, 0x81, 0x7d, 0x79, 0x7d, 0x84, 0x83, 0x86, 0x79, 0x6f, 0x63, 0x72, 0x7c, 0x86,\n    0x8a, 0x75, 0x60, 0x5c, 0x63, 0x6a, 0x6b, 0x6a, 0x72, 0x75, 0x73, 0x6f, 0x70, 0x71, 0x6c, 0x64,\n    0x64, 0x6c, 0x77, 0x7d, 0x7e, 0x7c, 0x79, 0x77, 0x78, 0x7e, 0x86, 0x8a, 0x86, 0x7e, 0x76, 0x71,\n    0x72, 0x72, 0x73, 0x78, 0x7f, 0x83, 0x80, 0x79, 0x7b, 0x76, 0x73, 0x75, 0x79, 0x7b, 0x7e, 0x82,\n    0x77, 0x77, 0x79, 0x83, 0xac, 0xb8, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7, 0xc6, 0xc4, 0xc2, 0xc0, 0xc0,\n    0xc2, 0xc3, 0xc6, 0xc8, 0xc8, 0xc6, 0xc4, 0xc2, 0xc3, 0xc2, 0xc0, 0xbf, 0xbf, 0xc1, 0xc4, 0xc6,\n    0xc7, 0xc2, 0xbc, 0xba, 0xbc, 0xbf, 0xbf, 0xbe, 0xbe, 0xbf, 0xc0, 0xc0, 0xbf, 0xbd, 0xbb, 0xb9,\n    0xb8, 0xb8, 0xb6, 0xb5, 0xb5, 0xb7, 0xb9, 0xb9, 0xbc, 0xbc, 0xbc, 0xbc, 0xba, 0xb8, 0xb6, 0xb4,\n    0xb4, 0xb2, 0xb1, 0xb1, 0xb3, 0xb4, 0xb3, 0xb1, 0xaf, 0xb0, 0xb0, 0xb0, 0xae, 0xab, 0xa8, 0xa6,\n    0xa2, 0xa2, 0x9f, 0x9a, 0x95, 0x8d, 0x83, 0x7a, 0x74, 0x76, 0x80, 0x85, 0x94, 0x93, 0x76, 0x59,\n    0x89, 0xcf, 0xd2, 0xd9, 0xe2, 0xe2, 0xe1, 0xe7, 0xe2, 0xe4, 0xe6, 0xea, 0xed, 0xf1, 0xf4, 0xf6,\n    0xf6, 0xf8, 0xfa, 0xfc, 0xfc, 0xfc, 0xfd, 0xfe, 0xfd, 0xfd, 0xfc, 0xfb, 0xfa, 0xf8, 0xf7, 0xf6,\n    0xf3, 0xf2, 0xf1, 0xf0, 0xef, 0xee, 0xec, 0xec, 0xed, 0xee, 0xef, 0xf1, 0xf2, 0xf3, 0xf4, 0xf5,\n    0xf2, 0xf2, 0xf1, 0xef, 0xec, 0xe9, 0xe5, 0xe3, 0xda, 0xd2, 0xca, 0xc4, 0xc1, 0xbe, 0xbb, 0xb8,\n    0xba, 0xbb, 0xbd, 0xc1, 0xc6, 0xcc, 0xd1, 0xd3, 0xd5, 0xd8, 0xda, 0xdb, 0xda, 0xd9, 0xd8, 0xd8,\n    0xd6, 0xd6, 0xd7, 0xda, 0xdc, 0xdd, 0xde, 0xdf, 0xde, 0xdf, 0xe0, 0xe1, 0xe1, 0xe0, 0xdf, 0xde,\n    0xde, 0xdd, 0xdd, 0xdc, 0xdc, 0xdb, 0xdc, 0xdc, 0xdf, 0xe2, 0xe2, 0xe1, 0xe1, 0xe1, 0xe0, 0xdd,\n    0xd9, 0xda, 0xda, 0xdb, 0xdc, 0xde, 0xe0, 0xe1, 0xe3, 0xe2, 0xe0, 0xdf, 0xde, 0xde, 0xde, 0xde,\n    0xdd, 0xdd, 0xdd, 0xdc, 0xdb, 0xdb, 0xda, 0xda, 0xdb, 0xdb, 0xdb, 0xd9, 0xd6, 0xd4, 0xd4, 0xd4,\n    0xd5, 0xd4, 0xd2, 0xd1, 0xd0, 0xd1, 0xd2, 0xd2, 0xcf, 0xce, 0xcb, 0xc9, 0xc8, 0xc8, 0xc9, 0xc9,\n    0xc9, 0xc9, 0xc8, 0xc8, 0xc7, 0xc5, 0xc1, 0xbf, 0xbb, 0xbf, 0xb9, 0x9c, 0x7b, 0x64, 0x63, 0x68,\n    0x6f, 0x72, 0x77, 0x7b, 0x7d, 0x7e, 0x7f, 0x80, 0x81, 0x81, 0x80, 0x7f, 0x7f, 0x80, 0x80, 0x80,\n    0x7f, 0x7f, 0x7e, 0x7d, 0x7c, 0x7a, 0x79, 0x78, 0x78, 0x77, 0x76, 0x74, 0x71, 0x6f, 0x6d, 0x6b,\n    0x6b, 0x69, 0x68, 0x67, 0x66, 0x64, 0x62, 0x60, 0x5d, 0x5b, 0x59, 0x56, 0x53, 0x4f, 0x4a, 0x47,\n    0x43, 0x40, 0x3d, 0x39, 0x32, 0x2c, 0x2e, 0x33, 0x46, 0x59, 0x6b, 0x6f, 0x6f, 0x74, 0x79, 0x7b,\n    0x74, 0x70, 0x71, 0x72, 0x6e, 0x70, 0x71, 0x6c, 0x62, 0x4f, 0x44, 0x4e, 0x5b, 0x5c, 0x54, 0x4f,\n    0x36, 0x43, 0x57, 0x64, 0x5c, 0x47, 0x35, 0x2f, 0x2b, 0x26, 0x25, 0x29, 0x30, 0x3d, 0x50, 0x61,\n    0x5d, 0x61, 0x68, 0x6a, 0x60, 0x5a, 0x65, 0x77, 0x53, 0x40, 0x36, 0x40, 0x4c, 0x51, 0x59, 0x64,\n    0x58, 0x50, 0x50, 0x59, 0x59, 0x4f, 0x4f, 0x58, 0x5d, 0x52, 0x4a, 0x4a, 0x46, 0x3b, 0x33, 0x31,\n    0x35, 0x3c, 0x40, 0x40, 0x46, 0x4c, 0x43, 0x33, 0x22, 0x27, 0x2f, 0x3e, 0x54, 0x65, 0x64, 0x5b,\n    0x55, 0x4f, 0x42, 0x36, 0x2f, 0x36, 0x5b, 0x89, 0x8a, 0x70, 0x3c, 0x1c, 0x2e, 0x4b, 0x55, 0x57,\n    0x61, 0x5f, 0x59, 0x53, 0x4f, 0x4d, 0x49, 0x44, 0x44, 0x45, 0x45, 0x42, 0x3d, 0x34, 0x27, 0x1b,\n    0x17, 0x1c, 0x23, 0x22, 0x1e, 0x29, 0x49, 0x69, 0x70, 0x60, 0x5f, 0x64, 0x65, 0x66, 0x6d, 0x6d,\n    0x63, 0x64, 0x62, 0x5b, 0x58, 0x5a, 0x60, 0x64, 0x64, 0x65, 0x65, 0x66, 0x69, 0x6a, 0x65, 0x5e,\n    0x55, 0x5a, 0x61, 0x67, 0x67, 0x64, 0x66, 0x6a, 0x6c, 0x6b, 0x6f, 0x77, 0x7c, 0x7c, 0x7e, 0x82,\n    0x80, 0x76, 0x72, 0x7e, 0x8b, 0x8c, 0x83, 0x7c, 0x66, 0x69, 0x72, 0x7c, 0x81, 0x7c, 0x72, 0x6d,\n    0x6d, 0x6b, 0x69, 0x6a, 0x6c, 0x6d, 0x6a, 0x68, 0x71, 0x71, 0x71, 0x73, 0x75, 0x77, 0x78, 0x78,\n    0x7a, 0x7b, 0x7c, 0x78, 0x71, 0x68, 0x61, 0x5d, 0x68, 0x66, 0x62, 0x5f, 0x63, 0x6b, 0x72, 0x73,\n    0x5f, 0x59, 0x59, 0x5f, 0x63, 0x60, 0x5a, 0x58, 0x57, 0x56, 0x5f, 0x60, 0x65, 0x6e, 0x6e, 0x75,\n    0x88, 0x80, 0x72, 0x67, 0x63, 0x64, 0x63, 0x61, 0x6c, 0x69, 0x71, 0x79, 0x76, 0x73, 0x76, 0x76,\n    0x6e, 0x6f, 0x72, 0x78, 0x82, 0x88, 0x85, 0x7f, 0x6e, 0x79, 0x75, 0x6e, 0x5d, 0x66, 0x70, 0x7d,\n    0x74, 0x76, 0x6e, 0x60, 0x5f, 0x6b, 0x75, 0x76, 0x71, 0x73, 0x73, 0x75, 0x7d, 0x80, 0x72, 0x60,\n    0x68, 0x72, 0x7c, 0x7e, 0x7b, 0x78, 0x74, 0x72, 0x73, 0x78, 0x7e, 0x82, 0x80, 0x7a, 0x72, 0x6d,\n    0x67, 0x65, 0x68, 0x72, 0x82, 0x89, 0x82, 0x76, 0x71, 0x71, 0x75, 0x7b, 0x7a, 0x74, 0x72, 0x73,\n    0x6f, 0x6e, 0x73, 0x8f, 0xb1, 0xb8, 0xc3, 0xc6, 0xc6, 0xc6, 0xc7, 0xc6, 0xc6, 0xc5, 0xc3, 0xc3,\n    0xc2, 0xc4, 0xc6, 0xc7, 0xc7, 0xc4, 0xc2, 0xc0, 0xc1, 0xc1, 0xbf, 0xbe, 0xbd, 0xbf, 0xc2, 0xc4,\n    0xc4, 0xc0, 0xbb, 0xb8, 0xb9, 0xbb, 0xbd, 0xbd, 0xc0, 0xc0, 0xc0, 0xbf, 0xbe, 0xbc, 0xba, 0xb9,\n    0xb7, 0xb8, 0xb7, 0xb4, 0xb4, 0xb6, 0xb6, 0xb5, 0xba, 0xbb, 0xbc, 0xbd, 0xbd, 0xbc, 0xba, 0xb9,\n    0xb6, 0xb5, 0xb5, 0xb4, 0xb4, 0xb4, 0xb2, 0xb1, 0xb1, 0xb1, 0xb1, 0xb0, 0xae, 0xab, 0xa7, 0xa5,\n    0xa2, 0xa2, 0x9e, 0x99, 0x94, 0x8d, 0x84, 0x7b, 0x76, 0x75, 0x7f, 0x83, 0x90, 0x91, 0x80, 0x5c,\n    0x78, 0xc9, 0xd1, 0xd8, 0xdc, 0xdd, 0xe1, 0xe1, 0xe4, 0xe5, 0xe7, 0xe9, 0xeb, 0xef, 0xf4, 0xf7,\n    0xf7, 0xf9, 0xfb, 0xfd, 0xfd, 0xfd, 0xfe, 0xfe, 0xfd, 0xfd, 0xfc, 0xfb, 0xfa, 0xf8, 0xf6, 0xf5,\n    0xf3, 0xf2, 0xf1, 0xef, 0xed, 0xec, 0xec, 0xec, 0xec, 0xed, 0xef, 0xf0, 0xf1, 0xf2, 0xf2, 0xf2,\n    0xf2, 0xf1, 0xf0, 0xed, 0xe8, 0xe2, 0xdd, 0xdb, 0xd1, 0xca, 0xc3, 0xc0, 0xbd, 0xb9, 0xb7, 0xb7,\n    0xbb, 0xbc, 0xbd, 0xc1, 0xc6, 0xcc, 0xd1, 0xd4, 0xd8, 0xda, 0xdc, 0xdd, 0xdc, 0xda, 0xd9, 0xd9,\n    0xd6, 0xd5, 0xd5, 0xd8, 0xda, 0xda, 0xdc, 0xde, 0xe1, 0xe1, 0xe3, 0xe4, 0xe4, 0xe3, 0xe2, 0xe1,\n    0xdc, 0xdc, 0xdd, 0xdd, 0xdc, 0xdb, 0xdb, 0xda, 0xdd, 0xdf, 0xdf, 0xdd, 0xdd, 0xde, 0xdd, 0xdb,\n    0xdc, 0xdc, 0xdd, 0xde, 0xdf, 0xe0, 0xe1, 0xe1, 0xe4, 0xe2, 0xdf, 0xdd, 0xdc, 0xdc, 0xdc, 0xdd,\n    0xdf, 0xdf, 0xdf, 0xdf, 0xdf, 0xdf, 0xde, 0xde, 0xdc, 0xdd, 0xdd, 0xdb, 0xd8, 0xd6, 0xd6, 0xd6,\n    0xd5, 0xd3, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd0, 0xcd, 0xcc, 0xca, 0xc9, 0xc9, 0xc9, 0xca, 0xca,\n    0xcc, 0xcb, 0xca, 0xca, 0xc9, 0xc6, 0xc2, 0xbf, 0xbd, 0xbf, 0xbe, 0xa2, 0x82, 0x62, 0x61, 0x66,\n    0x6d, 0x70, 0x74, 0x78, 0x7a, 0x7b, 0x7d, 0x7e, 0x80, 0x7f, 0x7f, 0x7e, 0x7e, 0x7f, 0x7f, 0x80,\n    0x7f, 0x7e, 0x7d, 0x7c, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x76, 0x74, 0x72, 0x70, 0x6d, 0x6b, 0x6a,\n    0x6b, 0x68, 0x66, 0x65, 0x65, 0x63, 0x60, 0x5d, 0x5a, 0x58, 0x56, 0x53, 0x50, 0x4b, 0x46, 0x43,\n    0x3e, 0x3c, 0x39, 0x36, 0x30, 0x2d, 0x33, 0x3e, 0x54, 0x63, 0x71, 0x74, 0x72, 0x6f, 0x6b, 0x67,\n    0x67, 0x68, 0x6c, 0x69, 0x60, 0x5f, 0x62, 0x5f, 0x57, 0x4d, 0x48, 0x50, 0x56, 0x4f, 0x3f, 0x33,\n    0x3b, 0x4e, 0x5d, 0x5e, 0x5f, 0x65, 0x63, 0x5b, 0x3b, 0x35, 0x2d, 0x26, 0x24, 0x2b, 0x3a, 0x47,\n    0x58, 0x4a, 0x3e, 0x46, 0x5d, 0x6a, 0x5d, 0x48, 0x3e, 0x49, 0x46, 0x3d, 0x4c, 0x67, 0x69, 0x55,\n    0x5b, 0x67, 0x64, 0x54, 0x56, 0x6a, 0x6f, 0x63, 0x5b, 0x55, 0x52, 0x55, 0x52, 0x48, 0x41, 0x41,\n    0x31, 0x3c, 0x43, 0x42, 0x42, 0x47, 0x47, 0x43, 0x69, 0x73, 0x7b, 0x7d, 0x7a, 0x6b, 0x4e, 0x33,\n    0x1b, 0x30, 0x2c, 0x12, 0x11, 0x37, 0x6c, 0x93, 0xa9, 0x91, 0x60, 0x38, 0x37, 0x4c, 0x5b, 0x5f,\n    0x68, 0x7a, 0x88, 0x82, 0x6d, 0x5a, 0x51, 0x4f, 0x4e, 0x3e, 0x30, 0x29, 0x22, 0x1a, 0x18, 0x1c,\n    0x18, 0x22, 0x22, 0x1d, 0x2c, 0x4c, 0x60, 0x61, 0x47, 0x43, 0x4d, 0x46, 0x3c, 0x38, 0x41, 0x39,\n    0x62, 0x66, 0x64, 0x5a, 0x54, 0x58, 0x62, 0x69, 0x6a, 0x6a, 0x69, 0x67, 0x66, 0x66, 0x64, 0x61,\n    0x60, 0x64, 0x6b, 0x70, 0x70, 0x6c, 0x69, 0x6a, 0x69, 0x6a, 0x70, 0x79, 0x81, 0x86, 0x86, 0x86,\n    0x7d, 0x79, 0x7c, 0x87, 0x8d, 0x88, 0x7d, 0x76, 0x74, 0x73, 0x74, 0x76, 0x75, 0x73, 0x73, 0x75,\n    0x73, 0x6d, 0x67, 0x66, 0x6a, 0x72, 0x78, 0x7b, 0x73, 0x72, 0x72, 0x72, 0x73, 0x75, 0x76, 0x77,\n    0x7b, 0x78, 0x77, 0x78, 0x77, 0x72, 0x6e, 0x6c, 0x63, 0x6a, 0x6f, 0x6b, 0x65, 0x63, 0x65, 0x67,\n    0x68, 0x62, 0x5a, 0x58, 0x5c, 0x63, 0x69, 0x6c, 0x62, 0x5a, 0x5f, 0x5d, 0x64, 0x72, 0x72, 0x7c,\n    0x7e, 0x7d, 0x77, 0x6b, 0x64, 0x64, 0x67, 0x68, 0x64, 0x5d, 0x69, 0x79, 0x7b, 0x76, 0x70, 0x65,\n    0x63, 0x65, 0x6b, 0x76, 0x81, 0x82, 0x78, 0x6c, 0x5f, 0x70, 0x76, 0x75, 0x62, 0x67, 0x6b, 0x77,\n    0x6e, 0x65, 0x6a, 0x86, 0xa3, 0xa3, 0x83, 0x63, 0x68, 0x6e, 0x72, 0x73, 0x7a, 0x80, 0x79, 0x6d,\n    0x72, 0x77, 0x79, 0x76, 0x73, 0x74, 0x75, 0x75, 0x76, 0x7a, 0x7e, 0x7f, 0x7c, 0x78, 0x76, 0x76,\n    0x6f, 0x69, 0x65, 0x6e, 0x7e, 0x87, 0x80, 0x73, 0x6a, 0x6d, 0x76, 0x7e, 0x7c, 0x71, 0x6a, 0x69,\n    0x72, 0x6f, 0x77, 0xa5, 0xb9, 0xba, 0xc1, 0xc3, 0xc2, 0xc3, 0xc3, 0xc4, 0xc4, 0xc4, 0xc4, 0xc3,\n    0xc4, 0xc5, 0xc7, 0xc8, 0xc7, 0xc5, 0xc2, 0xc1, 0xc0, 0xc0, 0xc0, 0xbe, 0xbd, 0xbe, 0xc1, 0xc4,\n    0xc1, 0xbf, 0xbd, 0xbb, 0xba, 0xbb, 0xbc, 0xbd, 0xc1, 0xc0, 0xbf, 0xbe, 0xbc, 0xbb, 0xba, 0xba,\n    0xb9, 0xbb, 0xb9, 0xb6, 0xb4, 0xb5, 0xb3, 0xb0, 0xb2, 0xb3, 0xb6, 0xb8, 0xb9, 0xb9, 0xb7, 0xb7,\n    0xb4, 0xb4, 0xb3, 0xb2, 0xb1, 0xb1, 0xb2, 0xb2, 0xb5, 0xb5, 0xb4, 0xb3, 0xb0, 0xac, 0xa9, 0xa7,\n    0xa5, 0xa5, 0xa2, 0x9d, 0x97, 0x90, 0x85, 0x7c, 0x78, 0x74, 0x7f, 0x82, 0x8d, 0x8d, 0x87, 0x62,\n    0x6c, 0xc4, 0xd2, 0xdb, 0xd9, 0xd9, 0xe1, 0xdb, 0xe4, 0xe5, 0xe6, 0xe6, 0xe8, 0xec, 0xf1, 0xf6,\n    0xf8, 0xfa, 0xfc, 0xfd, 0xfd, 0xfd, 0xfe, 0xfe, 0xfd, 0xfd, 0xfc, 0xfb, 0xf9, 0xf8, 0xf6, 0xf5,\n    0xf3, 0xf2, 0xf0, 0xee, 0xed, 0xed, 0xed, 0xee, 0xec, 0xed, 0xef, 0xf1, 0xf1, 0xf0, 0xee, 0xed,\n    0xed, 0xec, 0xea, 0xe7, 0xe1, 0xdb, 0xd6, 0xd2, 0xca, 0xc4, 0xc0, 0xbe, 0xba, 0xb7, 0xb6, 0xb9,\n    0xbf, 0xc0, 0xc2, 0xc6, 0xcb, 0xd1, 0xd5, 0xd8, 0xdc, 0xde, 0xe0, 0xe1, 0xe0, 0xde, 0xdd, 0xdd,\n    0xda, 0xd7, 0xd7, 0xd9, 0xda, 0xd9, 0xdb, 0xde, 0xdf, 0xe0, 0xe2, 0xe3, 0xe3, 0xe3, 0xe1, 0xe0,\n    0xde, 0xdd, 0xdd, 0xdc, 0xdc, 0xdc, 0xdc, 0xdc, 0xdb, 0xdd, 0xdc, 0xda, 0xd9, 0xdb, 0xdc, 0xdb,\n    0xdf, 0xe0, 0xe1, 0xe2, 0xe2, 0xe1, 0xe0, 0xe0, 0xe0, 0xe0, 0xde, 0xdd, 0xdc, 0xdd, 0xdd, 0xde,\n    0xde, 0xde, 0xdf, 0xe0, 0xe1, 0xe1, 0xe1, 0xe1, 0xdf, 0xdd, 0xdc, 0xdb, 0xda, 0xd9, 0xd8, 0xd6,\n    0xd5, 0xd3, 0xd1, 0xd0, 0xd1, 0xd0, 0xce, 0xcc, 0xcb, 0xcb, 0xca, 0xca, 0xcb, 0xcb, 0xcc, 0xcd,\n    0xcc, 0xcc, 0xcb, 0xca, 0xc8, 0xc5, 0xc0, 0xbd, 0xbc, 0xbc, 0xbf, 0xa6, 0x88, 0x60, 0x5f, 0x67,\n    0x6b, 0x6e, 0x73, 0x77, 0x79, 0x7b, 0x7d, 0x7e, 0x7f, 0x7f, 0x7e, 0x7d, 0x7d, 0x7e, 0x7f, 0x80,\n    0x7e, 0x7d, 0x7c, 0x7a, 0x78, 0x77, 0x76, 0x76, 0x73, 0x73, 0x72, 0x71, 0x6f, 0x6d, 0x6b, 0x6a,\n    0x6a, 0x67, 0x64, 0x63, 0x63, 0x61, 0x5d, 0x5a, 0x57, 0x55, 0x52, 0x50, 0x4c, 0x47, 0x42, 0x3e,\n    0x3b, 0x37, 0x34, 0x32, 0x2e, 0x30, 0x3f, 0x4f, 0x6e, 0x6f, 0x6f, 0x6c, 0x68, 0x68, 0x6a, 0x6c,\n    0x75, 0x73, 0x6f, 0x63, 0x52, 0x4f, 0x51, 0x4d, 0x59, 0x4d, 0x3f, 0x3a, 0x3d, 0x40, 0x3f, 0x3b,\n    0x3b, 0x4c, 0x58, 0x5a, 0x5f, 0x63, 0x56, 0x41, 0x4a, 0x42, 0x37, 0x2c, 0x25, 0x24, 0x29, 0x2f,\n    0x30, 0x42, 0x50, 0x4f, 0x4d, 0x4e, 0x49, 0x40, 0x36, 0x34, 0x3e, 0x57, 0x6e, 0x71, 0x65, 0x59,\n    0x62, 0x6b, 0x75, 0x76, 0x6d, 0x5f, 0x55, 0x51, 0x54, 0x48, 0x3c, 0x38, 0x3a, 0x3f, 0x48, 0x50,\n    0x5d, 0x5b, 0x53, 0x4a, 0x4d, 0x5e, 0x75, 0x84, 0x96, 0xa1, 0xa7, 0x9f, 0x93, 0x87, 0x74, 0x63,\n    0x61, 0x61, 0x68, 0x79, 0x84, 0x7e, 0x7c, 0x87, 0x93, 0x94, 0x8a, 0x69, 0x45, 0x42, 0x60, 0x7b,\n    0x76, 0x70, 0x63, 0x53, 0x47, 0x40, 0x3a, 0x36, 0x29, 0x25, 0x1f, 0x19, 0x15, 0x14, 0x18, 0x1d,\n    0x1c, 0x19, 0x14, 0x1c, 0x3d, 0x57, 0x4a, 0x2a, 0x22, 0x1e, 0x2a, 0x2d, 0x4d, 0x70, 0x77, 0x4e,\n    0x5d, 0x63, 0x64, 0x5b, 0x55, 0x59, 0x63, 0x6b, 0x66, 0x67, 0x67, 0x65, 0x65, 0x68, 0x6a, 0x6a,\n    0x61, 0x64, 0x6c, 0x74, 0x78, 0x75, 0x71, 0x70, 0x72, 0x74, 0x79, 0x81, 0x8a, 0x90, 0x8e, 0x8a,\n    0x76, 0x77, 0x7e, 0x89, 0x8d, 0x86, 0x7e, 0x7b, 0x77, 0x70, 0x70, 0x7a, 0x85, 0x82, 0x75, 0x68,\n    0x6c, 0x6d, 0x6f, 0x73, 0x78, 0x7a, 0x7a, 0x79, 0x7b, 0x76, 0x72, 0x74, 0x7c, 0x82, 0x82, 0x7f,\n    0x73, 0x60, 0x5a, 0x68, 0x71, 0x6b, 0x6d, 0x77, 0x7c, 0x78, 0x72, 0x6b, 0x67, 0x65, 0x61, 0x5b,\n    0x54, 0x61, 0x6d, 0x6f, 0x6c, 0x6a, 0x6a, 0x6a, 0x68, 0x63, 0x6c, 0x67, 0x66, 0x6a, 0x63, 0x6c,\n    0x6e, 0x74, 0x73, 0x69, 0x5f, 0x60, 0x68, 0x6e, 0x6e, 0x60, 0x6b, 0x86, 0x93, 0x8e, 0x79, 0x5d,\n    0x54, 0x5d, 0x6f, 0x80, 0x84, 0x7c, 0x6f, 0x68, 0x5f, 0x6a, 0x6a, 0x69, 0x5d, 0x68, 0x70, 0x7c,\n    0x71, 0x75, 0x90, 0xa9, 0x99, 0x6d, 0x5c, 0x6a, 0x61, 0x6e, 0x75, 0x70, 0x6f, 0x78, 0x80, 0x81,\n    0x79, 0x79, 0x74, 0x6d, 0x6c, 0x73, 0x7a, 0x7d, 0x80, 0x84, 0x87, 0x85, 0x80, 0x7e, 0x81, 0x86,\n    0x81, 0x76, 0x6a, 0x6b, 0x77, 0x81, 0x7c, 0x71, 0x77, 0x74, 0x76, 0x7a, 0x79, 0x73, 0x73, 0x78,\n    0x7a, 0x75, 0x7e, 0xb8, 0xbf, 0xbb, 0xbe, 0xbe, 0xbe, 0xbe, 0xbf, 0xc0, 0xc2, 0xc2, 0xc2, 0xc2,\n    0xc6, 0xc7, 0xc8, 0xc9, 0xc9, 0xc7, 0xc5, 0xc3, 0xc0, 0xc0, 0xc0, 0xbf, 0xbe, 0xbe, 0xc1, 0xc4,\n    0xc1, 0xc2, 0xc2, 0xc1, 0xbf, 0xbe, 0xbe, 0xbe, 0xc1, 0xc0, 0xbe, 0xbd, 0xbc, 0xbb, 0xbb, 0xbc,\n    0xbc, 0xbe, 0xbc, 0xb7, 0xb4, 0xb4, 0xb2, 0xad, 0xab, 0xad, 0xb1, 0xb4, 0xb5, 0xb6, 0xb5, 0xb4,\n    0xb0, 0xb0, 0xb0, 0xae, 0xad, 0xae, 0xb1, 0xb4, 0xb5, 0xb5, 0xb4, 0xb2, 0xb0, 0xad, 0xaa, 0xa8,\n    0xaa, 0xaa, 0xa8, 0xa2, 0x9c, 0x93, 0x86, 0x7b, 0x7a, 0x74, 0x80, 0x82, 0x8a, 0x8a, 0x8c, 0x67,\n    0x5f, 0xbc, 0xd1, 0xdd, 0xda, 0xdc, 0xe9, 0xde, 0xe3, 0xe3, 0xe3, 0xe3, 0xe4, 0xe8, 0xef, 0xf3,\n    0xf9, 0xfb, 0xfd, 0xfe, 0xfd, 0xfd, 0xfe, 0xfe, 0xfc, 0xfc, 0xfc, 0xfa, 0xf9, 0xf7, 0xf6, 0xf5,\n    0xf3, 0xf2, 0xf0, 0xee, 0xed, 0xee, 0xef, 0xf0, 0xed, 0xee, 0xf0, 0xf1, 0xf0, 0xee, 0xeb, 0xe8,\n    0xe6, 0xe6, 0xe5, 0xe2, 0xdd, 0xd7, 0xd2, 0xcf, 0xc6, 0xc2, 0xbf, 0xbe, 0xbb, 0xb6, 0xb7, 0xbb,\n    0xc3, 0xc5, 0xc9, 0xce, 0xd3, 0xd7, 0xdb, 0xdd, 0xdf, 0xe1, 0xe3, 0xe4, 0xe3, 0xe1, 0xe0, 0xe0,\n    0xde, 0xdb, 0xda, 0xdc, 0xdc, 0xd9, 0xdb, 0xde, 0xdc, 0xdd, 0xdf, 0xe0, 0xe0, 0xe0, 0xde, 0xdd,\n    0xdd, 0xdc, 0xda, 0xd9, 0xd8, 0xd9, 0xda, 0xdb, 0xdb, 0xdc, 0xda, 0xd8, 0xd8, 0xda, 0xdc, 0xdb,\n    0xdf, 0xe0, 0xe1, 0xe1, 0xe1, 0xdf, 0xdd, 0xdb, 0xdb, 0xdc, 0xdd, 0xde, 0xdf, 0xe0, 0xe0, 0xe0,\n    0xdd, 0xdd, 0xde, 0xdf, 0xe0, 0xe0, 0xdf, 0xdf, 0xe0, 0xdc, 0xd9, 0xd9, 0xdb, 0xdc, 0xd8, 0xd4,\n    0xd5, 0xd3, 0xd1, 0xd0, 0xd0, 0xce, 0xcb, 0xc8, 0xca, 0xca, 0xcb, 0xcc, 0xcd, 0xcd, 0xce, 0xce,\n    0xcb, 0xca, 0xc9, 0xc8, 0xc6, 0xc2, 0xbd, 0xba, 0xbc, 0xb8, 0xbd, 0xa6, 0x8a, 0x5f, 0x5f, 0x69,\n    0x6a, 0x6e, 0x73, 0x77, 0x7a, 0x7d, 0x7f, 0x80, 0x7f, 0x7e, 0x7d, 0x7c, 0x7d, 0x7e, 0x7f, 0x80,\n    0x7d, 0x7c, 0x7a, 0x79, 0x77, 0x76, 0x75, 0x74, 0x71, 0x71, 0x70, 0x70, 0x6f, 0x6d, 0x6c, 0x6b,\n    0x69, 0x66, 0x63, 0x61, 0x61, 0x60, 0x5c, 0x58, 0x54, 0x53, 0x50, 0x4d, 0x49, 0x44, 0x3f, 0x3b,\n    0x38, 0x34, 0x31, 0x2f, 0x2e, 0x34, 0x48, 0x5d, 0x67, 0x6a, 0x6f, 0x73, 0x72, 0x70, 0x71, 0x73,\n    0x7d, 0x74, 0x6a, 0x60, 0x59, 0x60, 0x67, 0x65, 0x52, 0x4b, 0x40, 0x38, 0x36, 0x35, 0x30, 0x29,\n    0x41, 0x52, 0x67, 0x73, 0x6f, 0x62, 0x53, 0x49, 0x49, 0x42, 0x39, 0x33, 0x2f, 0x2d, 0x2e, 0x2f,\n    0x4a, 0x49, 0x3f, 0x33, 0x35, 0x3e, 0x3e, 0x36, 0x2c, 0x33, 0x40, 0x53, 0x66, 0x6f, 0x68, 0x5d,\n    0x60, 0x6b, 0x66, 0x4e, 0x41, 0x4d, 0x5e, 0x66, 0x65, 0x61, 0x5f, 0x61, 0x61, 0x5c, 0x56, 0x53,\n    0x5b, 0x59, 0x5a, 0x63, 0x73, 0x85, 0x95, 0x9e, 0xa0, 0xa7, 0xa2, 0x90, 0x84, 0x87, 0x8f, 0x92,\n    0xa1, 0xa6, 0xa6, 0xa3, 0x9b, 0x89, 0x77, 0x73, 0x86, 0x7c, 0x88, 0x9a, 0x96, 0x85, 0x74, 0x62,\n    0x53, 0x4f, 0x47, 0x41, 0x3d, 0x37, 0x2b, 0x1f, 0x2c, 0x3f, 0x46, 0x3a, 0x32, 0x37, 0x35, 0x2b,\n    0x23, 0x23, 0x2b, 0x3a, 0x45, 0x3e, 0x2a, 0x19, 0x13, 0x12, 0x1b, 0x17, 0x42, 0x6f, 0x66, 0x1b,\n    0x69, 0x67, 0x62, 0x5f, 0x5f, 0x60, 0x5f, 0x5c, 0x63, 0x68, 0x66, 0x61, 0x6c, 0x7d, 0x7f, 0x75,\n    0x5e, 0x60, 0x66, 0x6e, 0x75, 0x78, 0x75, 0x72, 0x70, 0x71, 0x75, 0x7b, 0x84, 0x88, 0x80, 0x75,\n    0x74, 0x74, 0x78, 0x7f, 0x81, 0x7f, 0x7e, 0x81, 0x75, 0x6b, 0x6c, 0x7c, 0x86, 0x7e, 0x72, 0x6c,\n    0x6d, 0x6e, 0x6f, 0x6f, 0x6e, 0x70, 0x73, 0x76, 0x78, 0x72, 0x71, 0x7c, 0x8d, 0x94, 0x8d, 0x83,\n    0x69, 0x6d, 0x65, 0x62, 0x6e, 0x6f, 0x69, 0x6c, 0x74, 0x78, 0x7e, 0x80, 0x7d, 0x75, 0x6a, 0x62,\n    0x5c, 0x63, 0x68, 0x65, 0x61, 0x64, 0x6c, 0x73, 0x6c, 0x6c, 0x65, 0x5b, 0x5b, 0x65, 0x6d, 0x6e,\n    0x70, 0x6f, 0x6c, 0x6a, 0x6f, 0x73, 0x6a, 0x5c, 0x63, 0x6f, 0x83, 0x9a, 0xad, 0xb5, 0xb0, 0xa6,\n    0x94, 0x92, 0x92, 0x92, 0x88, 0x77, 0x68, 0x61, 0x6a, 0x6d, 0x70, 0x6d, 0x61, 0x5b, 0x67, 0x79,\n    0x89, 0xa2, 0xa7, 0x89, 0x68, 0x5f, 0x62, 0x63, 0x6a, 0x6d, 0x73, 0x78, 0x7d, 0x7e, 0x7f, 0x7e,\n    0x77, 0x7d, 0x78, 0x6b, 0x69, 0x76, 0x7e, 0x7c, 0x72, 0x6e, 0x6e, 0x71, 0x71, 0x70, 0x77, 0x80,\n    0x7e, 0x77, 0x72, 0x70, 0x70, 0x71, 0x77, 0x7e, 0x7b, 0x7a, 0x7a, 0x7c, 0x7d, 0x7d, 0x7e, 0x80,\n    0x89, 0x83, 0x9b, 0xba, 0xbe, 0xb9, 0xbe, 0xc2, 0xbd, 0xbf, 0xc0, 0xc1, 0xc1, 0xc1, 0xc3, 0xc4,\n    0xc7, 0xc8, 0xc9, 0xc9, 0xc9, 0xc8, 0xc7, 0xc6, 0xc7, 0xc4, 0xc1, 0xc1, 0xc3, 0xc4, 0xc1, 0xbf,\n    0xc2, 0xbf, 0xbd, 0xbe, 0xbe, 0xbd, 0xbf, 0xc2, 0xbf, 0xbc, 0xb9, 0xb9, 0xba, 0xbc, 0xbc, 0xbb,\n    0xbd, 0xbc, 0xba, 0xb9, 0xb8, 0xb6, 0xb4, 0xb2, 0xaa, 0xab, 0xad, 0xaf, 0xb1, 0xb2, 0xb2, 0xb3,\n    0xb4, 0xb1, 0xae, 0xae, 0xaf, 0xb0, 0xae, 0xab, 0xb0, 0xb3, 0xb7, 0xb7, 0xb4, 0xb1, 0xae, 0xad,\n    0xaa, 0xa7, 0xa5, 0xa3, 0x9f, 0x96, 0x8b, 0x82, 0x81, 0x76, 0x7d, 0x85, 0x84, 0x8b, 0x88, 0x70,\n    0x57, 0xa5, 0xd8, 0xdb, 0xdd, 0xe3, 0xdd, 0xe2, 0xe3, 0xde, 0xde, 0xe4, 0xea, 0xed, 0xf2, 0xf6,\n    0xfb, 0xfc, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfe, 0xfc, 0xfa, 0xf7, 0xf4, 0xf4, 0xf6, 0xf7, 0xf6,\n    0xf2, 0xf1, 0xef, 0xed, 0xeb, 0xec, 0xee, 0xf0, 0xee, 0xee, 0xed, 0xed, 0xeb, 0xea, 0xe8, 0xe7,\n    0xe3, 0xe2, 0xde, 0xd9, 0xd2, 0xcd, 0xca, 0xc9, 0xc1, 0xbe, 0xb9, 0xb4, 0xb4, 0xb8, 0xbe, 0xc3,\n    0xc8, 0xcc, 0xd0, 0xd3, 0xd5, 0xd9, 0xdf, 0xe3, 0xe3, 0xe7, 0xeb, 0xe9, 0xe4, 0xe0, 0xe0, 0xe2,\n    0xe1, 0xdf, 0xdd, 0xdc, 0xdc, 0xdd, 0xdd, 0xdd, 0xdd, 0xe0, 0xe2, 0xe3, 0xe0, 0xdd, 0xdc, 0xdc,\n    0xd8, 0xd7, 0xd6, 0xd7, 0xd9, 0xda, 0xdb, 0xdb, 0xdd, 0xdb, 0xd9, 0xd8, 0xd8, 0xd8, 0xd7, 0xd7,\n    0xdc, 0xdd, 0xdd, 0xde, 0xdf, 0xe0, 0xe0, 0xe0, 0xdd, 0xdd, 0xde, 0xdf, 0xdf, 0xdf, 0xe0, 0xe0,\n    0xdf, 0xdd, 0xdc, 0xde, 0xe1, 0xe2, 0xdf, 0xdc, 0xdd, 0xdb, 0xda, 0xda, 0xdb, 0xda, 0xd7, 0xd5,\n    0xd1, 0xd1, 0xd1, 0xd0, 0xce, 0xcd, 0xcc, 0xcc, 0xce, 0xd0, 0xcf, 0xca, 0xc9, 0xcc, 0xcd, 0xcc,\n    0xc9, 0xc7, 0xc6, 0xc7, 0xc5, 0xbf, 0xba, 0xb9, 0xb7, 0xb9, 0xb3, 0xae, 0x8a, 0x64, 0x64, 0x63,\n    0x69, 0x6e, 0x72, 0x75, 0x77, 0x7b, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7d, 0x7d, 0x7c,\n    0x7a, 0x7a, 0x79, 0x78, 0x76, 0x74, 0x72, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6e, 0x6b, 0x68,\n    0x68, 0x65, 0x62, 0x5f, 0x5d, 0x5b, 0x59, 0x58, 0x54, 0x50, 0x4b, 0x48, 0x47, 0x43, 0x3e, 0x3a,\n    0x33, 0x35, 0x32, 0x2c, 0x2e, 0x41, 0x5c, 0x6f, 0x77, 0x74, 0x71, 0x6a, 0x5a, 0x52, 0x60, 0x76,\n    0x7c, 0x77, 0x6a, 0x63, 0x6f, 0x7d, 0x72, 0x5a, 0x48, 0x4a, 0x42, 0x34, 0x30, 0x3c, 0x47, 0x4a,\n    0x55, 0x56, 0x54, 0x4d, 0x47, 0x43, 0x42, 0x41, 0x45, 0x39, 0x35, 0x3a, 0x3c, 0x3a, 0x3f, 0x4a,\n    0x4f, 0x49, 0x3b, 0x2f, 0x33, 0x3e, 0x3d, 0x34, 0x3c, 0x28, 0x31, 0x5a, 0x71, 0x64, 0x56, 0x58,\n    0x5a, 0x4e, 0x45, 0x46, 0x4d, 0x55, 0x5f, 0x68, 0x69, 0x70, 0x7c, 0x84, 0x85, 0x80, 0x7c, 0x7a,\n    0x69, 0x56, 0x57, 0x74, 0x8a, 0x8b, 0x8e, 0x98, 0x9b, 0x9f, 0xa2, 0xa2, 0x9c, 0x90, 0x8d, 0x96,\n    0x8f, 0x88, 0x6f, 0x5d, 0x3b, 0x3c, 0x4d, 0x6c, 0x76, 0x63, 0x5d, 0x62, 0x5b, 0x4f, 0x49, 0x48,\n    0x44, 0x38, 0x2b, 0x24, 0x21, 0x21, 0x24, 0x27, 0x37, 0x30, 0x29, 0x39, 0x48, 0x34, 0x21, 0x2d,\n    0x2b, 0x2f, 0x37, 0x44, 0x4f, 0x4f, 0x3f, 0x2e, 0x21, 0x1e, 0x14, 0x1a, 0x41, 0x64, 0x51, 0x26,\n    0x68, 0x66, 0x64, 0x63, 0x64, 0x65, 0x63, 0x60, 0x65, 0x6a, 0x6b, 0x6a, 0x70, 0x7a, 0x79, 0x70,\n    0x66, 0x64, 0x64, 0x6c, 0x75, 0x79, 0x75, 0x6f, 0x6a, 0x6e, 0x75, 0x7f, 0x89, 0x8c, 0x83, 0x78,\n    0x67, 0x6a, 0x71, 0x79, 0x7b, 0x79, 0x79, 0x7c, 0x7b, 0x6f, 0x69, 0x71, 0x7c, 0x7f, 0x7c, 0x7b,\n    0x6f, 0x6f, 0x6e, 0x6e, 0x6f, 0x73, 0x77, 0x7a, 0x71, 0x71, 0x71, 0x71, 0x74, 0x7a, 0x81, 0x86,\n    0x8c, 0x83, 0x7f, 0x86, 0x81, 0x6b, 0x5f, 0x67, 0x6b, 0x6d, 0x6f, 0x73, 0x79, 0x79, 0x70, 0x64,\n    0x74, 0x78, 0x78, 0x71, 0x68, 0x65, 0x66, 0x67, 0x68, 0x64, 0x64, 0x66, 0x63, 0x5f, 0x64, 0x6f,\n    0x73, 0x6d, 0x66, 0x64, 0x69, 0x6d, 0x69, 0x61, 0x57, 0x5d, 0x68, 0x78, 0x87, 0x8e, 0x89, 0x80,\n    0x7f, 0x8f, 0xa8, 0xbd, 0xc1, 0xba, 0xb3, 0xb1, 0xa0, 0x96, 0x86, 0x72, 0x60, 0x5d, 0x6f, 0x86,\n    0x9d, 0x8c, 0x73, 0x5f, 0x59, 0x5f, 0x67, 0x6b, 0x74, 0x75, 0x77, 0x78, 0x78, 0x79, 0x79, 0x79,\n    0x78, 0x7a, 0x75, 0x6a, 0x69, 0x73, 0x7a, 0x7a, 0x6a, 0x6c, 0x6f, 0x73, 0x75, 0x76, 0x7b, 0x80,\n    0x75, 0x7a, 0x82, 0x84, 0x7d, 0x71, 0x6b, 0x6b, 0x76, 0x77, 0x77, 0x77, 0x79, 0x7c, 0x80, 0x82,\n    0x7d, 0x86, 0xa5, 0xbe, 0xbc, 0xb6, 0xba, 0xbd, 0xbf, 0xc0, 0xc2, 0xc3, 0xc3, 0xc3, 0xc5, 0xc6,\n    0xcb, 0xcc, 0xcd, 0xcd, 0xcc, 0xcb, 0xc9, 0xc8, 0xc7, 0xc5, 0xc3, 0xc3, 0xc4, 0xc4, 0xc3, 0xc1,\n    0xc2, 0xbf, 0xbd, 0xbe, 0xbd, 0xbc, 0xbc, 0xbf, 0xbc, 0xbb, 0xba, 0xba, 0xbc, 0xbc, 0xbb, 0xb9,\n    0xbb, 0xbb, 0xba, 0xba, 0xba, 0xb8, 0xb6, 0xb4, 0xb2, 0xb0, 0xac, 0xa9, 0xa9, 0xab, 0xae, 0xb0,\n    0xb0, 0xae, 0xac, 0xac, 0xae, 0xae, 0xad, 0xac, 0xb4, 0xb7, 0xb9, 0xba, 0xb8, 0xb6, 0xb6, 0xb6,\n    0xae, 0xaa, 0xa4, 0xa0, 0x9c, 0x97, 0x8f, 0x89, 0x7f, 0x74, 0x7b, 0x86, 0x85, 0x8a, 0x89, 0x76,\n    0x53, 0x9a, 0xd0, 0xd6, 0xda, 0xe2, 0xdf, 0xe4, 0xe5, 0xe3, 0xe4, 0xea, 0xf0, 0xf3, 0xf6, 0xfa,\n    0xfa, 0xfb, 0xfc, 0xfc, 0xfb, 0xfa, 0xf9, 0xf8, 0xf5, 0xf3, 0xf1, 0xf1, 0xf4, 0xf5, 0xf3, 0xf0,\n    0xef, 0xee, 0xec, 0xe9, 0xe7, 0xe6, 0xe8, 0xe9, 0xe8, 0xe8, 0xe7, 0xe6, 0xe5, 0xe4, 0xe4, 0xe3,\n    0xdf, 0xdd, 0xda, 0xd5, 0xd0, 0xca, 0xc5, 0xc3, 0xbd, 0xbb, 0xb8, 0xb6, 0xb6, 0xbb, 0xc1, 0xc6,\n    0xcb, 0xcf, 0xd3, 0xd6, 0xd9, 0xdd, 0xe2, 0xe6, 0xe9, 0xe9, 0xea, 0xe9, 0xe7, 0xe5, 0xe2, 0xe1,\n    0xe0, 0xdf, 0xde, 0xde, 0xdf, 0xdf, 0xdf, 0xde, 0xde, 0xe0, 0xe3, 0xe3, 0xe2, 0xdf, 0xdc, 0xdb,\n    0xdb, 0xda, 0xd9, 0xda, 0xdb, 0xdc, 0xdc, 0xdb, 0xdc, 0xdc, 0xdc, 0xda, 0xd9, 0xd8, 0xd7, 0xd7,\n    0xd7, 0xd8, 0xd9, 0xdb, 0xdc, 0xdc, 0xdc, 0xdc, 0xde, 0xdf, 0xe0, 0xe1, 0xe1, 0xe1, 0xe0, 0xdf,\n    0xe1, 0xdf, 0xde, 0xdf, 0xe0, 0xe0, 0xde, 0xdc, 0xd9, 0xd9, 0xd8, 0xd8, 0xd8, 0xd7, 0xd6, 0xd4,\n    0xd2, 0xd2, 0xd1, 0xd0, 0xce, 0xcd, 0xcd, 0xcd, 0xcd, 0xce, 0xcd, 0xc9, 0xc9, 0xcc, 0xcd, 0xcb,\n    0xcd, 0xca, 0xc7, 0xc4, 0xbe, 0xb7, 0xb3, 0xb2, 0xb2, 0xb5, 0xb1, 0xaa, 0x87, 0x64, 0x64, 0x64,\n    0x69, 0x6e, 0x72, 0x74, 0x77, 0x7b, 0x7e, 0x7d, 0x7c, 0x7c, 0x7d, 0x7d, 0x7c, 0x7c, 0x7b, 0x7b,\n    0x7a, 0x79, 0x79, 0x77, 0x75, 0x73, 0x72, 0x71, 0x70, 0x6f, 0x6f, 0x6f, 0x6e, 0x6c, 0x69, 0x67,\n    0x66, 0x64, 0x60, 0x5d, 0x5b, 0x59, 0x57, 0x56, 0x55, 0x50, 0x4a, 0x46, 0x43, 0x40, 0x3b, 0x38,\n    0x34, 0x32, 0x31, 0x33, 0x3c, 0x4d, 0x60, 0x6d, 0x69, 0x68, 0x68, 0x65, 0x5d, 0x5a, 0x65, 0x74,\n    0x7c, 0x74, 0x7f, 0x90, 0x7e, 0x54, 0x42, 0x4c, 0x58, 0x54, 0x41, 0x2b, 0x2f, 0x43, 0x47, 0x3b,\n    0x36, 0x3a, 0x42, 0x4e, 0x59, 0x5c, 0x56, 0x4e, 0x44, 0x3b, 0x37, 0x40, 0x4a, 0x4f, 0x55, 0x5b,\n    0x73, 0x6b, 0x63, 0x59, 0x46, 0x34, 0x33, 0x3e, 0x3a, 0x32, 0x3b, 0x57, 0x66, 0x5a, 0x4a, 0x45,\n    0x47, 0x46, 0x45, 0x48, 0x4f, 0x58, 0x5f, 0x63, 0x6b, 0x6e, 0x72, 0x74, 0x73, 0x74, 0x7a, 0x80,\n    0x7a, 0x7a, 0x80, 0x8b, 0x94, 0x98, 0x9b, 0x9e, 0xa3, 0x96, 0x94, 0x95, 0x92, 0x93, 0x8f, 0x7e,\n    0x70, 0x5a, 0x3e, 0x43, 0x49, 0x5f, 0x65, 0x6e, 0x66, 0x6d, 0x7a, 0x80, 0x7c, 0x7c, 0x7a, 0x73,\n    0x55, 0x50, 0x4a, 0x41, 0x38, 0x31, 0x2d, 0x2b, 0x33, 0x5a, 0x61, 0x44, 0x30, 0x32, 0x3e, 0x4c,\n    0x40, 0x41, 0x44, 0x4b, 0x55, 0x5c, 0x5c, 0x57, 0x3f, 0x36, 0x29, 0x29, 0x3e, 0x4f, 0x41, 0x25,\n    0x66, 0x64, 0x63, 0x63, 0x64, 0x62, 0x5f, 0x5c, 0x64, 0x66, 0x68, 0x6a, 0x6e, 0x71, 0x71, 0x6f,\n    0x6b, 0x66, 0x63, 0x68, 0x71, 0x75, 0x71, 0x6b, 0x72, 0x74, 0x77, 0x7c, 0x82, 0x84, 0x7f, 0x78,\n    0x75, 0x7a, 0x81, 0x85, 0x82, 0x7c, 0x79, 0x7b, 0x7a, 0x73, 0x6f, 0x73, 0x7e, 0x85, 0x84, 0x80,\n    0x7d, 0x79, 0x72, 0x6e, 0x6d, 0x6e, 0x70, 0x71, 0x6c, 0x6b, 0x6b, 0x6d, 0x72, 0x76, 0x77, 0x77,\n    0x72, 0x74, 0x7d, 0x80, 0x77, 0x6d, 0x68, 0x64, 0x77, 0x7b, 0x74, 0x65, 0x5c, 0x62, 0x6b, 0x6f,\n    0x77, 0x79, 0x79, 0x74, 0x70, 0x6d, 0x68, 0x64, 0x6b, 0x66, 0x64, 0x62, 0x5c, 0x58, 0x5f, 0x6c,\n    0x75, 0x6b, 0x62, 0x63, 0x69, 0x6d, 0x6e, 0x6e, 0x74, 0x73, 0x73, 0x76, 0x7d, 0x80, 0x7a, 0x72,\n    0x6f, 0x71, 0x76, 0x7b, 0x80, 0x86, 0x90, 0x99, 0xad, 0xac, 0xae, 0xb0, 0xac, 0xa1, 0x98, 0x96,\n    0x81, 0x79, 0x6f, 0x6b, 0x6c, 0x6d, 0x6b, 0x68, 0x64, 0x69, 0x70, 0x76, 0x78, 0x76, 0x72, 0x6f,\n    0x6f, 0x70, 0x71, 0x71, 0x72, 0x73, 0x6f, 0x6a, 0x6e, 0x71, 0x73, 0x70, 0x6e, 0x6e, 0x6f, 0x6f,\n    0x74, 0x7d, 0x87, 0x86, 0x7a, 0x6c, 0x66, 0x68, 0x6b, 0x6f, 0x6f, 0x6c, 0x6d, 0x73, 0x79, 0x7a,\n    0x70, 0x8c, 0xb1, 0xc1, 0xb9, 0xb5, 0xbb, 0xbc, 0xc2, 0xc3, 0xc4, 0xc5, 0xc5, 0xc6, 0xc7, 0xc8,\n    0xcb, 0xcb, 0xcc, 0xcc, 0xcb, 0xc9, 0xc7, 0xc5, 0xc7, 0xc6, 0xc5, 0xc4, 0xc3, 0xc3, 0xc2, 0xc1,\n    0xc1, 0xbf, 0xbe, 0xbe, 0xbd, 0xbb, 0xba, 0xbb, 0xbc, 0xbc, 0xbd, 0xbe, 0xbe, 0xbe, 0xbc, 0xba,\n    0xb9, 0xb9, 0xba, 0xbb, 0xbc, 0xba, 0xb8, 0xb6, 0xb5, 0xb2, 0xad, 0xa9, 0xa8, 0xa9, 0xac, 0xae,\n    0xb1, 0xb0, 0xb0, 0xaf, 0xaf, 0xae, 0xad, 0xad, 0xae, 0xaf, 0xb0, 0xb1, 0xb0, 0xb0, 0xb1, 0xb2,\n    0xaf, 0xaa, 0xa4, 0xa0, 0x9d, 0x98, 0x92, 0x8d, 0x80, 0x74, 0x7b, 0x88, 0x87, 0x87, 0x87, 0x7d,\n    0x51, 0x8c, 0xc7, 0xd2, 0xd9, 0xe3, 0xe3, 0xe9, 0xe9, 0xe9, 0xeb, 0xf1, 0xf6, 0xf8, 0xfa, 0xfc,\n    0xfc, 0xfc, 0xfd, 0xfc, 0xfb, 0xf8, 0xf5, 0xf4, 0xed, 0xe9, 0xe4, 0xe5, 0xe9, 0xec, 0xed, 0xed,\n    0xee, 0xee, 0xec, 0xe8, 0xe5, 0xe3, 0xe4, 0xe5, 0xe5, 0xe5, 0xe3, 0xe2, 0xe1, 0xe1, 0xe1, 0xe1,\n    0xd9, 0xd6, 0xd3, 0xd0, 0xcd, 0xc8, 0xc2, 0xbd, 0xb5, 0xb5, 0xb5, 0xb6, 0xb8, 0xbd, 0xc3, 0xc8,\n    0xd0, 0xd3, 0xd8, 0xdb, 0xde, 0xe2, 0xe7, 0xea, 0xee, 0xeb, 0xe8, 0xe8, 0xea, 0xe9, 0xe6, 0xe2,\n    0xe0, 0xdf, 0xdf, 0xdf, 0xe0, 0xe0, 0xdf, 0xde, 0xdf, 0xe0, 0xe1, 0xe2, 0xe2, 0xe1, 0xdd, 0xdb,\n    0xde, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdc, 0xda, 0xd9, 0xda, 0xdb, 0xd9, 0xd6, 0xd4, 0xd4, 0xd5,\n    0xd5, 0xd6, 0xd8, 0xda, 0xdb, 0xdb, 0xda, 0xda, 0xdd, 0xde, 0xe0, 0xe1, 0xe2, 0xe2, 0xe1, 0xe1,\n    0xe2, 0xe1, 0xdf, 0xde, 0xdd, 0xdc, 0xdb, 0xda, 0xd8, 0xd8, 0xd9, 0xd8, 0xd7, 0xd6, 0xd5, 0xd5,\n    0xd3, 0xd3, 0xd1, 0xd0, 0xcf, 0xcf, 0xcf, 0xcf, 0xce, 0xce, 0xcc, 0xca, 0xcc, 0xce, 0xcd, 0xca,\n    0xcb, 0xc8, 0xc3, 0xbd, 0xb4, 0xac, 0xaa, 0xab, 0xad, 0xaf, 0xac, 0xa2, 0x7f, 0x61, 0x63, 0x65,\n    0x68, 0x6d, 0x72, 0x74, 0x77, 0x7b, 0x7e, 0x7d, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x79, 0x78,\n    0x79, 0x78, 0x77, 0x76, 0x74, 0x73, 0x71, 0x70, 0x6f, 0x6e, 0x6d, 0x6d, 0x6c, 0x6a, 0x67, 0x64,\n    0x64, 0x61, 0x5e, 0x5b, 0x59, 0x57, 0x55, 0x53, 0x52, 0x4d, 0x47, 0x42, 0x3f, 0x3c, 0x38, 0x36,\n    0x32, 0x2d, 0x2f, 0x3e, 0x4f, 0x5b, 0x63, 0x69, 0x67, 0x66, 0x63, 0x60, 0x5e, 0x61, 0x66, 0x6a,\n    0x71, 0x7f, 0x7c, 0x61, 0x4e, 0x57, 0x6d, 0x7b, 0x6d, 0x64, 0x65, 0x6f, 0x6e, 0x5e, 0x52, 0x51,\n    0x50, 0x49, 0x47, 0x52, 0x62, 0x69, 0x62, 0x57, 0x35, 0x35, 0x39, 0x43, 0x4e, 0x52, 0x4e, 0x49,\n    0x30, 0x35, 0x37, 0x35, 0x34, 0x34, 0x2e, 0x27, 0x35, 0x37, 0x3f, 0x49, 0x4d, 0x46, 0x3a, 0x32,\n    0x3d, 0x42, 0x46, 0x4a, 0x53, 0x5f, 0x68, 0x6c, 0x6b, 0x68, 0x65, 0x63, 0x64, 0x64, 0x63, 0x61,\n    0x70, 0x80, 0x88, 0x82, 0x82, 0x8a, 0x8a, 0x82, 0x6d, 0x7e, 0x77, 0x66, 0x66, 0x62, 0x5d, 0x66,\n    0x57, 0x53, 0x4d, 0x58, 0x5e, 0x67, 0x61, 0x60, 0x65, 0x69, 0x70, 0x6f, 0x6b, 0x70, 0x73, 0x6e,\n    0x8a, 0x87, 0x7e, 0x6f, 0x62, 0x5d, 0x5e, 0x61, 0x81, 0x69, 0x3d, 0x1a, 0x1b, 0x32, 0x41, 0x40,\n    0x4a, 0x44, 0x41, 0x4c, 0x62, 0x77, 0x7e, 0x7b, 0x76, 0x5b, 0x3a, 0x2c, 0x36, 0x4f, 0x65, 0x72,\n    0x62, 0x5f, 0x5e, 0x60, 0x62, 0x61, 0x60, 0x5f, 0x61, 0x5f, 0x61, 0x65, 0x67, 0x68, 0x6c, 0x73,\n    0x6f, 0x6e, 0x6e, 0x70, 0x72, 0x73, 0x71, 0x6f, 0x75, 0x77, 0x7a, 0x7c, 0x7d, 0x7b, 0x75, 0x70,\n    0x6f, 0x75, 0x7c, 0x80, 0x7e, 0x7b, 0x7c, 0x7e, 0x7a, 0x79, 0x77, 0x77, 0x7d, 0x85, 0x84, 0x7d,\n    0x7a, 0x73, 0x6c, 0x69, 0x6c, 0x6f, 0x70, 0x6f, 0x6e, 0x6b, 0x6a, 0x6f, 0x76, 0x79, 0x75, 0x71,\n    0x6b, 0x6f, 0x7b, 0x7d, 0x75, 0x78, 0x7c, 0x73, 0x8a, 0x9c, 0xa3, 0x94, 0x7f, 0x73, 0x6e, 0x6a,\n    0x69, 0x6a, 0x6c, 0x6e, 0x72, 0x73, 0x6e, 0x67, 0x62, 0x64, 0x5f, 0x5a, 0x60, 0x72, 0x7f, 0x84,\n    0x74, 0x69, 0x63, 0x68, 0x6d, 0x6c, 0x6c, 0x6f, 0x75, 0x73, 0x6f, 0x6d, 0x6f, 0x72, 0x70, 0x6d,\n    0x74, 0x6f, 0x69, 0x68, 0x6c, 0x72, 0x79, 0x7d, 0x88, 0x7a, 0x73, 0x7e, 0x93, 0xa3, 0xa8, 0xa8,\n    0xae, 0xba, 0xba, 0xad, 0xa6, 0xaa, 0xaa, 0xa4, 0x97, 0x8f, 0x85, 0x80, 0x83, 0x8b, 0x92, 0x96,\n    0xa1, 0x98, 0x91, 0x91, 0x90, 0x87, 0x79, 0x6f, 0x6e, 0x73, 0x74, 0x6f, 0x6e, 0x72, 0x75, 0x74,\n    0x7d, 0x82, 0x86, 0x80, 0x73, 0x68, 0x66, 0x69, 0x66, 0x6c, 0x6c, 0x67, 0x67, 0x6d, 0x72, 0x71,\n    0x6e, 0x95, 0xb8, 0xbe, 0xb7, 0xb9, 0xc1, 0xc2, 0xc4, 0xc6, 0xc7, 0xc7, 0xc6, 0xc6, 0xc7, 0xc9,\n    0xc8, 0xc9, 0xca, 0xca, 0xc9, 0xc7, 0xc5, 0xc4, 0xc6, 0xc6, 0xc5, 0xc4, 0xc1, 0xbf, 0xbe, 0xbe,\n    0xbf, 0xbd, 0xbd, 0xbf, 0xbe, 0xbb, 0xba, 0xbb, 0xbb, 0xbc, 0xbc, 0xbd, 0xbd, 0xbc, 0xbb, 0xba,\n    0xb8, 0xb9, 0xba, 0xbc, 0xbc, 0xbb, 0xb8, 0xb5, 0xaf, 0xb0, 0xb0, 0xb0, 0xaf, 0xaf, 0xae, 0xae,\n    0xb3, 0xb3, 0xb3, 0xb1, 0xae, 0xac, 0xaa, 0xaa, 0xad, 0xae, 0xaf, 0xb0, 0xb0, 0xaf, 0xaf, 0xaf,\n    0xab, 0xa8, 0xa5, 0xa2, 0x9f, 0x99, 0x91, 0x8a, 0x84, 0x77, 0x7c, 0x89, 0x88, 0x83, 0x83, 0x80,\n    0x52, 0x7d, 0xc0, 0xce, 0xd7, 0xe0, 0xe4, 0xea, 0xec, 0xec, 0xef, 0xf2, 0xf6, 0xf8, 0xfa, 0xfb,\n    0xfc, 0xfc, 0xfb, 0xfa, 0xf8, 0xf4, 0xef, 0xec, 0xe6, 0xde, 0xd5, 0xd1, 0xd2, 0xd9, 0xe4, 0xec,\n    0xef, 0xee, 0xed, 0xea, 0xe7, 0xe5, 0xe5, 0xe5, 0xe4, 0xe3, 0xe3, 0xe2, 0xe0, 0xde, 0xdd, 0xdc,\n    0xd3, 0xd1, 0xce, 0xcc, 0xcb, 0xc7, 0xc0, 0xba, 0xb1, 0xb3, 0xb6, 0xba, 0xbe, 0xc3, 0xc9, 0xcd,\n    0xd4, 0xd8, 0xdc, 0xe0, 0xe2, 0xe5, 0xe9, 0xec, 0xef, 0xec, 0xe9, 0xe9, 0xeb, 0xec, 0xe9, 0xe5,\n    0xe3, 0xe1, 0xde, 0xdd, 0xde, 0xde, 0xde, 0xdd, 0xde, 0xdd, 0xdc, 0xdd, 0xdf, 0xe0, 0xdf, 0xdd,\n    0xde, 0xde, 0xde, 0xde, 0xde, 0xdd, 0xdb, 0xda, 0xd8, 0xda, 0xd9, 0xd6, 0xd2, 0xd1, 0xd3, 0xd6,\n    0xd6, 0xd7, 0xd9, 0xda, 0xda, 0xda, 0xd8, 0xd8, 0xd9, 0xda, 0xdb, 0xde, 0xe0, 0xe2, 0xe3, 0xe3,\n    0xe0, 0xe0, 0xde, 0xdc, 0xda, 0xd9, 0xd9, 0xda, 0xd9, 0xdb, 0xdb, 0xda, 0xd7, 0xd5, 0xd5, 0xd6,\n    0xd5, 0xd3, 0xd1, 0xd0, 0xcf, 0xd0, 0xd0, 0xd0, 0xcf, 0xcd, 0xcb, 0xcc, 0xcf, 0xd0, 0xcd, 0xca,\n    0xc4, 0xc0, 0xbb, 0xb4, 0xab, 0xa4, 0xa4, 0xa8, 0xab, 0xaa, 0xa7, 0x97, 0x75, 0x5e, 0x60, 0x65,\n    0x68, 0x6d, 0x72, 0x74, 0x77, 0x7b, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x77, 0x77,\n    0x77, 0x77, 0x76, 0x75, 0x73, 0x72, 0x70, 0x6f, 0x6e, 0x6d, 0x6c, 0x6b, 0x6a, 0x68, 0x65, 0x62,\n    0x62, 0x60, 0x5d, 0x5a, 0x58, 0x55, 0x52, 0x50, 0x4b, 0x48, 0x43, 0x3f, 0x3c, 0x39, 0x36, 0x33,\n    0x2f, 0x2c, 0x37, 0x4f, 0x63, 0x68, 0x67, 0x67, 0x69, 0x67, 0x62, 0x60, 0x66, 0x6f, 0x72, 0x6e,\n    0x5f, 0x51, 0x47, 0x4b, 0x54, 0x53, 0x45, 0x37, 0x5c, 0x69, 0x70, 0x6e, 0x73, 0x79, 0x6f, 0x5c,\n    0x5a, 0x4c, 0x3f, 0x40, 0x4a, 0x4f, 0x4c, 0x46, 0x51, 0x5f, 0x6e, 0x76, 0x7a, 0x76, 0x67, 0x56,\n    0x3c, 0x3e, 0x3a, 0x35, 0x3c, 0x44, 0x3b, 0x28, 0x31, 0x35, 0x38, 0x3a, 0x39, 0x39, 0x39, 0x38,\n    0x4a, 0x46, 0x46, 0x4c, 0x55, 0x5e, 0x68, 0x6f, 0x70, 0x7a, 0x80, 0x78, 0x6a, 0x64, 0x6a, 0x72,\n    0x71, 0x7c, 0x7b, 0x6f, 0x6e, 0x76, 0x6d, 0x5b, 0x55, 0x3d, 0x3c, 0x49, 0x55, 0x68, 0x65, 0x47,\n    0x42, 0x53, 0x66, 0x76, 0x7c, 0x7f, 0x7a, 0x75, 0x74, 0x68, 0x68, 0x73, 0x7a, 0x81, 0x89, 0x8c,\n    0x80, 0x8c, 0x97, 0x9b, 0x98, 0x93, 0x8e, 0x8c, 0x7c, 0x5b, 0x46, 0x47, 0x49, 0x44, 0x41, 0x3f,\n    0x31, 0x41, 0x4c, 0x4a, 0x42, 0x43, 0x51, 0x5d, 0x6e, 0x66, 0x5e, 0x5e, 0x63, 0x6c, 0x77, 0x81,\n    0x61, 0x5d, 0x5c, 0x60, 0x64, 0x66, 0x67, 0x69, 0x60, 0x5d, 0x5f, 0x64, 0x64, 0x61, 0x66, 0x6f,\n    0x75, 0x7c, 0x83, 0x82, 0x7c, 0x78, 0x79, 0x7c, 0x71, 0x76, 0x7e, 0x82, 0x7f, 0x78, 0x71, 0x6d,\n    0x78, 0x7b, 0x7c, 0x7b, 0x79, 0x78, 0x79, 0x79, 0x82, 0x83, 0x7e, 0x76, 0x76, 0x7c, 0x7e, 0x7b,\n    0x7b, 0x73, 0x6b, 0x6b, 0x70, 0x73, 0x6f, 0x6a, 0x6f, 0x6e, 0x6c, 0x6b, 0x6b, 0x6e, 0x72, 0x75,\n    0x74, 0x68, 0x74, 0x88, 0x87, 0x82, 0x89, 0x8e, 0x94, 0xa0, 0xa6, 0x9f, 0x92, 0x86, 0x77, 0x6a,\n    0x68, 0x68, 0x6a, 0x6d, 0x72, 0x74, 0x6f, 0x67, 0x5b, 0x5e, 0x60, 0x64, 0x71, 0x7f, 0x81, 0x7a,\n    0x6b, 0x64, 0x64, 0x6e, 0x72, 0x6b, 0x66, 0x68, 0x71, 0x72, 0x72, 0x71, 0x73, 0x78, 0x7c, 0x7d,\n    0x70, 0x72, 0x75, 0x74, 0x73, 0x75, 0x79, 0x7c, 0x88, 0x7d, 0x75, 0x77, 0x7d, 0x7d, 0x74, 0x6c,\n    0x69, 0x78, 0x81, 0x82, 0x86, 0x8c, 0x86, 0x79, 0x73, 0x6b, 0x63, 0x63, 0x6e, 0x7b, 0x84, 0x88,\n    0x85, 0x74, 0x65, 0x65, 0x6d, 0x70, 0x6e, 0x6b, 0x6f, 0x76, 0x7a, 0x78, 0x78, 0x7d, 0x7f, 0x7d,\n    0x83, 0x85, 0x86, 0x81, 0x78, 0x6e, 0x66, 0x62, 0x66, 0x6b, 0x6c, 0x6a, 0x6b, 0x71, 0x74, 0x74,\n    0x80, 0xa2, 0xbb, 0xb9, 0xb6, 0xbe, 0xc5, 0xc7, 0xc6, 0xc7, 0xc7, 0xc7, 0xc6, 0xc6, 0xc7, 0xc8,\n    0xc9, 0xca, 0xca, 0xcb, 0xca, 0xc9, 0xc8, 0xc7, 0xc6, 0xc6, 0xc6, 0xc4, 0xc0, 0xbd, 0xbb, 0xbb,\n    0xbc, 0xbb, 0xbc, 0xbf, 0xbf, 0xbc, 0xbb, 0xbc, 0xba, 0xba, 0xba, 0xba, 0xb9, 0xb9, 0xb9, 0xba,\n    0xb9, 0xba, 0xbb, 0xbc, 0xbc, 0xba, 0xb7, 0xb5, 0xae, 0xaf, 0xb1, 0xb3, 0xb4, 0xb3, 0xb1, 0xb0,\n    0xb0, 0xb1, 0xb0, 0xae, 0xab, 0xa9, 0xa7, 0xa7, 0xac, 0xad, 0xae, 0xaf, 0xaf, 0xad, 0xab, 0xa9,\n    0xaa, 0xa7, 0xa4, 0xa2, 0x9f, 0x99, 0x90, 0x89, 0x85, 0x7a, 0x7b, 0x87, 0x88, 0x82, 0x81, 0x84,\n    0x56, 0x71, 0xbb, 0xcb, 0xd3, 0xd9, 0xdf, 0xe7, 0xf0, 0xf2, 0xf3, 0xf4, 0xf6, 0xf8, 0xfa, 0xfb,\n    0xfc, 0xfa, 0xf7, 0xf4, 0xef, 0xe9, 0xe2, 0xdd, 0xd8, 0xd1, 0xc8, 0xc1, 0xbe, 0xc5, 0xd6, 0xe7,\n    0xea, 0xeb, 0xea, 0xe9, 0xe6, 0xe5, 0xe5, 0xe5, 0xe0, 0xe1, 0xe1, 0xe0, 0xde, 0xda, 0xd6, 0xd4,\n    0xd1, 0xce, 0xca, 0xc7, 0xc5, 0xc0, 0xb9, 0xb4, 0xb2, 0xb6, 0xbb, 0xc1, 0xc6, 0xcc, 0xd0, 0xd3,\n    0xd7, 0xdb, 0xe0, 0xe3, 0xe5, 0xe6, 0xe9, 0xeb, 0xed, 0xec, 0xec, 0xec, 0xec, 0xec, 0xeb, 0xeb,\n    0xe6, 0xe3, 0xdf, 0xdc, 0xdb, 0xdb, 0xdc, 0xdc, 0xdc, 0xd9, 0xd7, 0xd7, 0xda, 0xdd, 0xdf, 0xdf,\n    0xde, 0xde, 0xde, 0xde, 0xdf, 0xde, 0xdc, 0xda, 0xdb, 0xdb, 0xda, 0xd6, 0xd3, 0xd3, 0xd8, 0xdc,\n    0xd8, 0xd9, 0xda, 0xda, 0xda, 0xd9, 0xd8, 0xd7, 0xd9, 0xd8, 0xd9, 0xd9, 0xdb, 0xde, 0xe0, 0xe2,\n    0xde, 0xde, 0xdd, 0xdc, 0xda, 0xda, 0xda, 0xdc, 0xdb, 0xdc, 0xdc, 0xda, 0xd6, 0xd4, 0xd4, 0xd5,\n    0xd5, 0xd3, 0xd0, 0xcf, 0xd0, 0xd0, 0xcf, 0xce, 0xcd, 0xcb, 0xca, 0xcc, 0xce, 0xce, 0xca, 0xc7,\n    0xbe, 0xbb, 0xb5, 0xae, 0xa6, 0xa0, 0xa1, 0xa5, 0xab, 0xa7, 0xa3, 0x8d, 0x6c, 0x5e, 0x60, 0x66,\n    0x69, 0x6e, 0x72, 0x74, 0x76, 0x7a, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x79, 0x78, 0x77, 0x76,\n    0x75, 0x75, 0x74, 0x73, 0x72, 0x70, 0x6f, 0x6e, 0x6d, 0x6c, 0x6b, 0x6a, 0x69, 0x67, 0x64, 0x62,\n    0x60, 0x5e, 0x5b, 0x59, 0x56, 0x53, 0x50, 0x4e, 0x46, 0x45, 0x42, 0x3e, 0x3a, 0x36, 0x32, 0x2f,\n    0x2f, 0x33, 0x44, 0x5f, 0x70, 0x70, 0x6a, 0x69, 0x63, 0x64, 0x65, 0x68, 0x74, 0x7f, 0x7d, 0x73,\n    0x67, 0x55, 0x4a, 0x49, 0x3f, 0x37, 0x4d, 0x6f, 0x80, 0x64, 0x5a, 0x6b, 0x76, 0x69, 0x5c, 0x5b,\n    0x56, 0x4e, 0x4a, 0x4d, 0x53, 0x55, 0x55, 0x55, 0x55, 0x69, 0x7b, 0x7d, 0x7b, 0x76, 0x6a, 0x5c,\n    0x52, 0x4d, 0x4a, 0x49, 0x42, 0x38, 0x39, 0x41, 0x3a, 0x3a, 0x3b, 0x3d, 0x3a, 0x38, 0x3c, 0x44,\n    0x4c, 0x42, 0x41, 0x4d, 0x55, 0x54, 0x53, 0x57, 0x5b, 0x5e, 0x5f, 0x5d, 0x5f, 0x67, 0x6f, 0x73,\n    0x7d, 0x73, 0x66, 0x61, 0x66, 0x66, 0x54, 0x3d, 0x25, 0x3d, 0x4a, 0x58, 0x66, 0x52, 0x37, 0x38,\n    0x64, 0x7a, 0x8d, 0x8a, 0x81, 0x7a, 0x7b, 0x7a, 0x7a, 0x72, 0x74, 0x79, 0x76, 0x70, 0x69, 0x5f,\n    0x70, 0x6e, 0x6b, 0x69, 0x68, 0x67, 0x68, 0x6a, 0x65, 0x5f, 0x61, 0x6a, 0x72, 0x79, 0x7b, 0x76,\n    0x78, 0x70, 0x66, 0x62, 0x6a, 0x77, 0x7e, 0x80, 0x5e, 0x63, 0x67, 0x64, 0x5e, 0x56, 0x4e, 0x48,\n    0x68, 0x61, 0x5e, 0x61, 0x63, 0x62, 0x62, 0x65, 0x5d, 0x5c, 0x61, 0x67, 0x65, 0x5f, 0x60, 0x66,\n    0x7b, 0x85, 0x8f, 0x8e, 0x85, 0x7f, 0x80, 0x85, 0x81, 0x81, 0x81, 0x7e, 0x78, 0x73, 0x74, 0x79,\n    0x7f, 0x7f, 0x7f, 0x80, 0x87, 0x8e, 0x90, 0x8f, 0x80, 0x87, 0x8a, 0x84, 0x7d, 0x79, 0x76, 0x73,\n    0x7a, 0x74, 0x70, 0x75, 0x7f, 0x81, 0x7a, 0x71, 0x6c, 0x68, 0x64, 0x65, 0x6a, 0x6c, 0x6a, 0x66,\n    0x60, 0x5d, 0x68, 0x79, 0x81, 0x83, 0x85, 0x87, 0x88, 0x84, 0x79, 0x6a, 0x62, 0x65, 0x6e, 0x74,\n    0x71, 0x71, 0x70, 0x71, 0x74, 0x76, 0x71, 0x6b, 0x66, 0x66, 0x70, 0x81, 0x87, 0x7b, 0x69, 0x5f,\n    0x5f, 0x5e, 0x65, 0x73, 0x79, 0x75, 0x70, 0x71, 0x78, 0x79, 0x77, 0x71, 0x6e, 0x6e, 0x6f, 0x6e,\n    0x78, 0x80, 0x83, 0x79, 0x6b, 0x69, 0x73, 0x7e, 0x77, 0x77, 0x75, 0x70, 0x6c, 0x6b, 0x6f, 0x73,\n    0x73, 0x6a, 0x63, 0x64, 0x6a, 0x73, 0x7f, 0x8a, 0x87, 0x89, 0x8f, 0x97, 0x9e, 0xa0, 0x9c, 0x97,\n    0x8c, 0x7c, 0x6b, 0x66, 0x6a, 0x6c, 0x69, 0x66, 0x64, 0x6c, 0x74, 0x79, 0x7c, 0x7f, 0x80, 0x80,\n    0x7f, 0x7d, 0x79, 0x76, 0x75, 0x73, 0x6d, 0x67, 0x5f, 0x60, 0x62, 0x66, 0x6b, 0x72, 0x77, 0x7a,\n    0x99, 0xb0, 0xba, 0xb5, 0xb7, 0xbf, 0xc4, 0xc8, 0xc5, 0xc6, 0xc7, 0xc7, 0xc7, 0xc7, 0xc8, 0xc9,\n    0xc9, 0xc9, 0xc9, 0xc9, 0xc9, 0xc9, 0xc9, 0xc9, 0xc8, 0xc7, 0xc6, 0xc5, 0xc2, 0xc0, 0xbd, 0xbb,\n    0xb9, 0xb8, 0xba, 0xbd, 0xbe, 0xbc, 0xbc, 0xbd, 0xbd, 0xbe, 0xbe, 0xbd, 0xbc, 0xbc, 0xbd, 0xbe,\n    0xbb, 0xbb, 0xbc, 0xbc, 0xbc, 0xbb, 0xb8, 0xb5, 0xb4, 0xb3, 0xb1, 0xb0, 0xb0, 0xb0, 0xb1, 0xb2,\n    0xaf, 0xaf, 0xaf, 0xae, 0xae, 0xac, 0xaa, 0xa9, 0xaa, 0xaa, 0xac, 0xad, 0xad, 0xac, 0xa9, 0xa6,\n    0xac, 0xa8, 0xa2, 0x9f, 0x9d, 0x99, 0x93, 0x8e, 0x83, 0x7b, 0x7a, 0x83, 0x88, 0x84, 0x82, 0x86,\n    0x5e, 0x6c, 0xbd, 0xcd, 0xd2, 0xd3, 0xdb, 0xe4, 0xf5, 0xf8, 0xfb, 0xfb, 0xfb, 0xfd, 0xfe, 0xfd,\n    0xfc, 0xf8, 0xf2, 0xec, 0xe6, 0xde, 0xd5, 0xcf, 0xc8, 0xc4, 0xbf, 0xba, 0xb4, 0xb8, 0xca, 0xdd,\n    0xe2, 0xe3, 0xe4, 0xe3, 0xe2, 0xe1, 0xe1, 0xe1, 0xe0, 0xe0, 0xe0, 0xde, 0xdb, 0xd7, 0xd2, 0xd0,\n    0xce, 0xca, 0xc5, 0xc0, 0xbc, 0xb7, 0xb2, 0xae, 0xb4, 0xb8, 0xbf, 0xc5, 0xcb, 0xcf, 0xd3, 0xd6,\n    0xdb, 0xde, 0xe3, 0xe5, 0xe5, 0xe5, 0xe7, 0xe8, 0xea, 0xec, 0xed, 0xed, 0xeb, 0xea, 0xea, 0xec,\n    0xe7, 0xe3, 0xde, 0xdb, 0xd9, 0xd9, 0xd9, 0xd9, 0xd8, 0xd6, 0xd3, 0xd3, 0xd6, 0xda, 0xdd, 0xdf,\n    0xdf, 0xde, 0xdd, 0xdd, 0xdd, 0xdc, 0xdb, 0xd9, 0xd8, 0xd8, 0xd6, 0xd3, 0xd2, 0xd4, 0xd9, 0xdd,\n    0xde, 0xde, 0xde, 0xde, 0xdd, 0xdd, 0xdc, 0xdc, 0xdd, 0xdc, 0xdb, 0xda, 0xda, 0xdb, 0xdc, 0xdd,\n    0xdd, 0xdd, 0xdc, 0xdc, 0xdc, 0xdd, 0xdd, 0xdd, 0xda, 0xda, 0xd9, 0xd7, 0xd4, 0xd3, 0xd3, 0xd3,\n    0xd4, 0xd2, 0xd0, 0xcf, 0xd0, 0xcf, 0xcd, 0xcb, 0xc9, 0xc7, 0xc7, 0xca, 0xcb, 0xc8, 0xc5, 0xc3,\n    0xbd, 0xb8, 0xb2, 0xab, 0xa2, 0x9c, 0x9b, 0x9e, 0xa7, 0xa1, 0x9e, 0x85, 0x68, 0x61, 0x62, 0x68,\n    0x6a, 0x6e, 0x72, 0x74, 0x76, 0x79, 0x7b, 0x7a, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x77, 0x76, 0x75,\n    0x74, 0x73, 0x73, 0x72, 0x71, 0x6f, 0x6e, 0x6d, 0x6c, 0x6a, 0x69, 0x68, 0x67, 0x65, 0x63, 0x61,\n    0x5e, 0x5c, 0x5a, 0x57, 0x54, 0x51, 0x4e, 0x4b, 0x45, 0x43, 0x40, 0x3c, 0x38, 0x33, 0x2f, 0x2d,\n    0x31, 0x3a, 0x4e, 0x64, 0x6f, 0x6d, 0x69, 0x68, 0x68, 0x6b, 0x6e, 0x73, 0x79, 0x79, 0x6d, 0x5e,\n    0x51, 0x52, 0x48, 0x3c, 0x44, 0x63, 0x7f, 0x89, 0x85, 0x7b, 0x66, 0x56, 0x5b, 0x6a, 0x67, 0x58,\n    0x56, 0x4f, 0x48, 0x47, 0x45, 0x44, 0x49, 0x50, 0x59, 0x65, 0x6c, 0x69, 0x67, 0x69, 0x67, 0x5f,\n    0x4f, 0x59, 0x63, 0x64, 0x5e, 0x58, 0x58, 0x5a, 0x52, 0x4c, 0x4b, 0x4b, 0x43, 0x36, 0x33, 0x37,\n    0x32, 0x30, 0x39, 0x4c, 0x58, 0x54, 0x4a, 0x45, 0x3f, 0x40, 0x40, 0x46, 0x54, 0x63, 0x66, 0x61,\n    0x6e, 0x59, 0x4d, 0x58, 0x62, 0x59, 0x44, 0x37, 0x52, 0x61, 0x7e, 0x78, 0x47, 0x2e, 0x3e, 0x4e,\n    0x52, 0x59, 0x63, 0x65, 0x79, 0x83, 0x80, 0x6e, 0x58, 0x66, 0x72, 0x70, 0x6f, 0x7b, 0x7e, 0x71,\n    0x59, 0x54, 0x5a, 0x6b, 0x77, 0x74, 0x6b, 0x66, 0x6b, 0x6b, 0x63, 0x58, 0x53, 0x5a, 0x69, 0x74,\n    0x90, 0x95, 0x98, 0x95, 0x8b, 0x7d, 0x6d, 0x61, 0x46, 0x49, 0x46, 0x3b, 0x32, 0x2c, 0x24, 0x1d,\n    0x6b, 0x63, 0x5f, 0x61, 0x60, 0x5b, 0x58, 0x5a, 0x5a, 0x5c, 0x62, 0x69, 0x6a, 0x68, 0x6a, 0x6e,\n    0x7f, 0x86, 0x8d, 0x8e, 0x89, 0x84, 0x83, 0x84, 0x8e, 0x8a, 0x84, 0x7c, 0x74, 0x71, 0x7a, 0x86,\n    0x99, 0x91, 0x86, 0x7e, 0x7d, 0x7d, 0x75, 0x6b, 0x75, 0x82, 0x8f, 0x8e, 0x82, 0x74, 0x6c, 0x6a,\n    0x69, 0x67, 0x6a, 0x79, 0x8a, 0x8f, 0x86, 0x7a, 0x6a, 0x62, 0x5d, 0x64, 0x6f, 0x73, 0x6b, 0x60,\n    0x61, 0x6b, 0x6d, 0x6c, 0x72, 0x76, 0x70, 0x6b, 0x6f, 0x6d, 0x6a, 0x65, 0x5f, 0x5e, 0x66, 0x70,\n    0x73, 0x73, 0x72, 0x70, 0x71, 0x73, 0x72, 0x70, 0x6f, 0x73, 0x80, 0x8b, 0x89, 0x7a, 0x6e, 0x6c,\n    0x63, 0x64, 0x6c, 0x77, 0x7e, 0x7f, 0x7e, 0x7f, 0x8a, 0x86, 0x7f, 0x76, 0x71, 0x6e, 0x69, 0x64,\n    0x6c, 0x79, 0x83, 0x7d, 0x71, 0x6c, 0x70, 0x75, 0x73, 0x7a, 0x7c, 0x75, 0x6a, 0x66, 0x6b, 0x71,\n    0x76, 0x73, 0x71, 0x6f, 0x67, 0x5f, 0x5f, 0x65, 0x61, 0x68, 0x73, 0x7f, 0x8a, 0x97, 0xa3, 0xab,\n    0xbe, 0xb5, 0xa7, 0x97, 0x8a, 0x7f, 0x73, 0x6b, 0x6a, 0x6d, 0x74, 0x7b, 0x7f, 0x82, 0x86, 0x8b,\n    0x7d, 0x77, 0x6e, 0x68, 0x6c, 0x71, 0x71, 0x6c, 0x5d, 0x58, 0x58, 0x61, 0x6b, 0x72, 0x7a, 0x82,\n    0xaa, 0xb7, 0xb8, 0xb4, 0xba, 0xbe, 0xc0, 0xc8, 0xc2, 0xc4, 0xc6, 0xc7, 0xc7, 0xc8, 0xca, 0xcc,\n    0xc9, 0xc8, 0xc7, 0xc5, 0xc5, 0xc5, 0xc6, 0xc7, 0xc8, 0xc6, 0xc5, 0xc5, 0xc5, 0xc3, 0xc0, 0xbd,\n    0xb8, 0xb7, 0xb7, 0xba, 0xbb, 0xba, 0xba, 0xbc, 0xbf, 0xc1, 0xc3, 0xc2, 0xc1, 0xbf, 0xc0, 0xc0,\n    0xbe, 0xbd, 0xbd, 0xbd, 0xbd, 0xbc, 0xba, 0xb8, 0xb9, 0xb7, 0xb3, 0xb0, 0xae, 0xaf, 0xb1, 0xb2,\n    0xb2, 0xb1, 0xb0, 0xb0, 0xb1, 0xb0, 0xad, 0xab, 0xad, 0xac, 0xad, 0xaf, 0xb1, 0xb2, 0xb0, 0xaf,\n    0xab, 0xa7, 0xa3, 0xa1, 0xa0, 0x9d, 0x97, 0x92, 0x84, 0x7e, 0x7a, 0x7f, 0x87, 0x85, 0x81, 0x85,\n    0x63, 0x66, 0xbe, 0xce, 0xcf, 0xcc, 0xd6, 0xdf, 0xed, 0xf3, 0xf9, 0xfa, 0xfa, 0xfb, 0xfa, 0xf7,\n    0xf2, 0xed, 0xe7, 0xe1, 0xdb, 0xd4, 0xcb, 0xc6, 0xbd, 0xba, 0xb7, 0xb5, 0xb1, 0xb4, 0xc4, 0xd6,\n    0xdc, 0xde, 0xdf, 0xdf, 0xde, 0xdd, 0xdd, 0xde, 0xdf, 0xde, 0xdc, 0xd9, 0xd6, 0xd3, 0xd0, 0xcf,\n    0xc7, 0xc4, 0xbf, 0xb9, 0xb5, 0xb2, 0xb0, 0xb0, 0xb8, 0xbc, 0xc3, 0xc9, 0xce, 0xd2, 0xd6, 0xd8,\n    0xdd, 0xe1, 0xe5, 0xe7, 0xe6, 0xe4, 0xe4, 0xe5, 0xe7, 0xe8, 0xea, 0xe9, 0xe7, 0xe5, 0xe5, 0xe5,\n    0xe1, 0xde, 0xdb, 0xd9, 0xd8, 0xd6, 0xd5, 0xd4, 0xd4, 0xd4, 0xd4, 0xd3, 0xd4, 0xd6, 0xd9, 0xdc,\n    0xde, 0xdc, 0xda, 0xd9, 0xd8, 0xd7, 0xd6, 0xd5, 0xd2, 0xd2, 0xd1, 0xd1, 0xd2, 0xd5, 0xd8, 0xda,\n    0xdf, 0xdf, 0xde, 0xde, 0xde, 0xdf, 0xdf, 0xe0, 0xe0, 0xe0, 0xe0, 0xdf, 0xde, 0xdc, 0xdb, 0xda,\n    0xdc, 0xda, 0xda, 0xdb, 0xdd, 0xde, 0xdc, 0xdb, 0xd8, 0xd7, 0xd5, 0xd4, 0xd3, 0xd3, 0xd3, 0xd2,\n    0xd3, 0xd1, 0xcf, 0xcf, 0xd0, 0xce, 0xca, 0xc7, 0xc6, 0xc5, 0xc6, 0xca, 0xc9, 0xc4, 0xc0, 0xc0,\n    0xba, 0xb4, 0xad, 0xa6, 0x9f, 0x97, 0x93, 0x94, 0x9c, 0x95, 0x96, 0x7e, 0x67, 0x66, 0x63, 0x67,\n    0x6b, 0x6f, 0x73, 0x74, 0x75, 0x78, 0x7a, 0x79, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x76, 0x75, 0x75,\n    0x72, 0x72, 0x72, 0x71, 0x70, 0x6f, 0x6d, 0x6d, 0x69, 0x68, 0x66, 0x65, 0x65, 0x64, 0x62, 0x60,\n    0x5c, 0x5a, 0x57, 0x55, 0x52, 0x4f, 0x4b, 0x48, 0x43, 0x41, 0x3d, 0x38, 0x35, 0x32, 0x32, 0x32,\n    0x38, 0x44, 0x54, 0x61, 0x67, 0x68, 0x69, 0x69, 0x71, 0x73, 0x77, 0x7a, 0x78, 0x70, 0x61, 0x55,\n    0x5a, 0x61, 0x64, 0x60, 0x5d, 0x64, 0x70, 0x79, 0x6c, 0x52, 0x38, 0x32, 0x3b, 0x4c, 0x64, 0x78,\n    0x65, 0x55, 0x44, 0x39, 0x33, 0x32, 0x3b, 0x46, 0x57, 0x58, 0x57, 0x57, 0x60, 0x69, 0x68, 0x60,\n    0x68, 0x72, 0x73, 0x6b, 0x6a, 0x6c, 0x61, 0x4d, 0x5f, 0x59, 0x55, 0x52, 0x49, 0x3b, 0x30, 0x2c,\n    0x24, 0x2e, 0x3d, 0x4d, 0x5d, 0x64, 0x5d, 0x52, 0x48, 0x58, 0x63, 0x5e, 0x57, 0x5a, 0x65, 0x6d,\n    0x55, 0x48, 0x4d, 0x63, 0x66, 0x52, 0x44, 0x46, 0x76, 0x64, 0x40, 0x2a, 0x31, 0x3e, 0x4d, 0x62,\n    0x54, 0x3d, 0x2f, 0x37, 0x70, 0x8c, 0x7c, 0x4e, 0x3b, 0x42, 0x42, 0x39, 0x3c, 0x57, 0x6c, 0x69,\n    0x4f, 0x3c, 0x3c, 0x5d, 0x81, 0x92, 0x97, 0x9b, 0x9e, 0x9d, 0x9d, 0xad, 0xc2, 0xbe, 0xae, 0xab,\n    0x94, 0x87, 0x77, 0x6f, 0x6f, 0x6b, 0x5a, 0x4a, 0x46, 0x38, 0x24, 0x14, 0x17, 0x2b, 0x46, 0x57,\n    0x66, 0x5f, 0x5d, 0x62, 0x62, 0x5c, 0x59, 0x5b, 0x5c, 0x5e, 0x64, 0x6b, 0x71, 0x76, 0x7d, 0x84,\n    0x83, 0x85, 0x88, 0x8a, 0x8b, 0x89, 0x85, 0x82, 0x81, 0x83, 0x86, 0x85, 0x7f, 0x7a, 0x80, 0x89,\n    0x7b, 0x74, 0x6c, 0x6c, 0x76, 0x7e, 0x7a, 0x6f, 0x6f, 0x7b, 0x86, 0x85, 0x76, 0x67, 0x65, 0x69,\n    0x6e, 0x6a, 0x6b, 0x77, 0x83, 0x82, 0x71, 0x60, 0x69, 0x66, 0x64, 0x64, 0x68, 0x6e, 0x75, 0x78,\n    0x6d, 0x6b, 0x67, 0x6d, 0x72, 0x66, 0x60, 0x6d, 0x6d, 0x66, 0x69, 0x76, 0x7e, 0x79, 0x70, 0x6c,\n    0x72, 0x72, 0x70, 0x6c, 0x6a, 0x6c, 0x6e, 0x6d, 0x74, 0x7e, 0x80, 0x72, 0x65, 0x63, 0x68, 0x6a,\n    0x73, 0x73, 0x75, 0x79, 0x7c, 0x7d, 0x7e, 0x7e, 0x81, 0x7b, 0x74, 0x70, 0x72, 0x74, 0x70, 0x6a,\n    0x70, 0x74, 0x75, 0x71, 0x6f, 0x71, 0x72, 0x70, 0x7e, 0x7d, 0x77, 0x6c, 0x64, 0x64, 0x69, 0x6e,\n    0x72, 0x72, 0x6c, 0x61, 0x60, 0x67, 0x68, 0x62, 0x63, 0x6c, 0x75, 0x76, 0x72, 0x72, 0x79, 0x80,\n    0x86, 0x8b, 0x8c, 0x89, 0x8b, 0x93, 0x9b, 0x9f, 0xa2, 0x9a, 0x93, 0x8e, 0x85, 0x7e, 0x7f, 0x85,\n    0x80, 0x7b, 0x72, 0x6c, 0x6d, 0x6f, 0x6a, 0x62, 0x66, 0x5b, 0x59, 0x65, 0x71, 0x78, 0x82, 0x8d,\n    0xaf, 0xb8, 0xb6, 0xb5, 0xbe, 0xbe, 0xbe, 0xc9, 0xc0, 0xc2, 0xc5, 0xc7, 0xc8, 0xca, 0xcd, 0xcf,\n    0xcb, 0xca, 0xc7, 0xc5, 0xc4, 0xc4, 0xc5, 0xc6, 0xc6, 0xc4, 0xc3, 0xc4, 0xc6, 0xc5, 0xc2, 0xbe,\n    0xb7, 0xb6, 0xb6, 0xb8, 0xb9, 0xb8, 0xb9, 0xbb, 0xbc, 0xbf, 0xc2, 0xc3, 0xc1, 0xbf, 0xbd, 0xbd,\n    0xbf, 0xbe, 0xbd, 0xbe, 0xbe, 0xbe, 0xbd, 0xbb, 0xb9, 0xb8, 0xb5, 0xb2, 0xb1, 0xb1, 0xb1, 0xb2,\n    0xb4, 0xb1, 0xaf, 0xb0, 0xb1, 0xaf, 0xab, 0xa7, 0xa5, 0xa4, 0xa4, 0xa6, 0xaa, 0xad, 0xae, 0xad,\n    0xa7, 0xa6, 0xa6, 0xa7, 0xa7, 0xa2, 0x9a, 0x93, 0x87, 0x82, 0x7b, 0x7d, 0x85, 0x84, 0x7f, 0x80,\n    0x60, 0x5f, 0xba, 0xcb, 0xc9, 0xc3, 0xcd, 0xd7, 0xdd, 0xe6, 0xee, 0xf1, 0xf2, 0xf2, 0xee, 0xea,\n    0xe2, 0xde, 0xd8, 0xd3, 0xd0, 0xca, 0xc4, 0xbf, 0xbb, 0xb5, 0xb1, 0xb0, 0xaf, 0xb3, 0xc4, 0xd5,\n    0xdb, 0xdd, 0xde, 0xdf, 0xde, 0xdd, 0xdc, 0xdd, 0xda, 0xd8, 0xd5, 0xd1, 0xce, 0xcd, 0xcc, 0xcc,\n    0xc1, 0xbe, 0xba, 0xb5, 0xb2, 0xb2, 0xb4, 0xb6, 0xbf, 0xc3, 0xca, 0xd0, 0xd4, 0xd8, 0xdb, 0xdd,\n    0xdf, 0xe3, 0xe7, 0xe8, 0xe6, 0xe3, 0xe3, 0xe3, 0xe4, 0xe4, 0xe5, 0xe5, 0xe3, 0xe1, 0xde, 0xdc,\n    0xd9, 0xd9, 0xd8, 0xd7, 0xd6, 0xd4, 0xd1, 0xce, 0xd2, 0xd4, 0xd5, 0xd5, 0xd4, 0xd4, 0xd6, 0xd9,\n    0xdc, 0xda, 0xd6, 0xd4, 0xd3, 0xd2, 0xd1, 0xd0, 0xd0, 0xd0, 0xd1, 0xd3, 0xd6, 0xd9, 0xd9, 0xd9,\n    0xda, 0xda, 0xd9, 0xd9, 0xda, 0xdb, 0xdd, 0xde, 0xe0, 0xe2, 0xe3, 0xe4, 0xe3, 0xe1, 0xde, 0xdb,\n    0xd9, 0xd8, 0xd7, 0xd9, 0xdc, 0xdc, 0xda, 0xd7, 0xd7, 0xd5, 0xd3, 0xd2, 0xd4, 0xd5, 0xd4, 0xd3,\n    0xd2, 0xd0, 0xcf, 0xcf, 0xd0, 0xce, 0xc9, 0xc4, 0xc5, 0xc4, 0xc7, 0xca, 0xc8, 0xc2, 0xbe, 0xbf,\n    0xb5, 0xaf, 0xa8, 0xa2, 0x9b, 0x93, 0x8e, 0x8d, 0x90, 0x8a, 0x8e, 0x78, 0x65, 0x67, 0x63, 0x65,\n    0x6b, 0x70, 0x73, 0x74, 0x75, 0x78, 0x79, 0x78, 0x78, 0x78, 0x78, 0x77, 0x76, 0x75, 0x74, 0x74,\n    0x72, 0x71, 0x71, 0x70, 0x6f, 0x6e, 0x6d, 0x6c, 0x67, 0x66, 0x64, 0x64, 0x63, 0x62, 0x61, 0x5f,\n    0x5a, 0x58, 0x56, 0x53, 0x51, 0x4d, 0x49, 0x46, 0x3f, 0x3d, 0x39, 0x35, 0x33, 0x34, 0x37, 0x39,\n    0x43, 0x4e, 0x5a, 0x60, 0x64, 0x69, 0x6d, 0x6e, 0x70, 0x72, 0x76, 0x7c, 0x7c, 0x77, 0x70, 0x6b,\n    0x6a, 0x68, 0x60, 0x57, 0x5c, 0x68, 0x6a, 0x64, 0x55, 0x44, 0x2e, 0x26, 0x37, 0x51, 0x5b, 0x57,\n    0x5e, 0x4c, 0x3a, 0x32, 0x31, 0x34, 0x3c, 0x46, 0x49, 0x46, 0x46, 0x51, 0x66, 0x73, 0x6d, 0x5f,\n    0x67, 0x5b, 0x50, 0x50, 0x54, 0x56, 0x58, 0x5a, 0x5a, 0x57, 0x54, 0x51, 0x4e, 0x48, 0x3e, 0x36,\n    0x30, 0x41, 0x4c, 0x50, 0x5f, 0x73, 0x75, 0x69, 0x5a, 0x52, 0x44, 0x3b, 0x41, 0x4c, 0x4d, 0x47,\n    0x46, 0x45, 0x58, 0x6e, 0x66, 0x48, 0x3e, 0x4a, 0x3f, 0x48, 0x4d, 0x42, 0x36, 0x3f, 0x52, 0x5c,\n    0x6e, 0x67, 0x5e, 0x4d, 0x67, 0x7d, 0x8a, 0x7b, 0x65, 0x53, 0x40, 0x35, 0x39, 0x4f, 0x65, 0x6b,\n    0x74, 0x55, 0x49, 0x63, 0x7e, 0x7e, 0x71, 0x6c, 0x74, 0x9e, 0xa9, 0x8d, 0x6c, 0x52, 0x56, 0x72,\n    0x8e, 0x97, 0x9d, 0x97, 0x84, 0x69, 0x4e, 0x3c, 0x26, 0x2a, 0x34, 0x44, 0x52, 0x5e, 0x6b, 0x76,\n    0x5e, 0x58, 0x58, 0x5f, 0x63, 0x5f, 0x5e, 0x60, 0x60, 0x63, 0x69, 0x70, 0x76, 0x7a, 0x7c, 0x7c,\n    0x75, 0x7a, 0x81, 0x86, 0x84, 0x80, 0x80, 0x83, 0x95, 0x9c, 0x97, 0x84, 0x75, 0x75, 0x7c, 0x7f,\n    0x7a, 0x77, 0x75, 0x75, 0x73, 0x6f, 0x6c, 0x6c, 0x7b, 0x83, 0x83, 0x7d, 0x77, 0x6e, 0x6b, 0x71,\n    0x65, 0x65, 0x6b, 0x74, 0x75, 0x6b, 0x64, 0x63, 0x6f, 0x6b, 0x66, 0x60, 0x5a, 0x5a, 0x66, 0x73,\n    0x68, 0x63, 0x60, 0x60, 0x60, 0x61, 0x66, 0x6c, 0x63, 0x6a, 0x6b, 0x71, 0x78, 0x6c, 0x60, 0x65,\n    0x6e, 0x74, 0x78, 0x78, 0x77, 0x77, 0x76, 0x76, 0x7b, 0x7b, 0x7a, 0x76, 0x72, 0x6f, 0x6f, 0x70,\n    0x7a, 0x7b, 0x7a, 0x77, 0x74, 0x76, 0x7d, 0x83, 0x7b, 0x70, 0x63, 0x70, 0x75, 0x7b, 0x6e, 0x69,\n    0x68, 0x6e, 0x75, 0x73, 0x6e, 0x77, 0x82, 0x81, 0x8f, 0x7a, 0x65, 0x5e, 0x64, 0x6b, 0x6f, 0x71,\n    0x6e, 0x6e, 0x67, 0x5e, 0x5e, 0x66, 0x67, 0x61, 0x5c, 0x6a, 0x77, 0x7e, 0x82, 0x83, 0x7d, 0x73,\n    0x7d, 0x83, 0x8c, 0x7d, 0x6a, 0x62, 0x60, 0x69, 0x7a, 0x80, 0x8d, 0x99, 0x97, 0x89, 0x7e, 0x7b,\n    0x7b, 0x7d, 0x7c, 0x77, 0x6f, 0x69, 0x61, 0x5b, 0x69, 0x61, 0x64, 0x6d, 0x6c, 0x7a, 0x7c, 0xa1,\n    0xb9, 0xb7, 0xb6, 0xb7, 0xba, 0xbd, 0xc2, 0xc5, 0xc3, 0xc4, 0xc7, 0xc9, 0xcb, 0xcd, 0xcd, 0xce,\n    0xcb, 0xc9, 0xc6, 0xc4, 0xc3, 0xc4, 0xc5, 0xc6, 0xc5, 0xc5, 0xc4, 0xc2, 0xc1, 0xbf, 0xbd, 0xbd,\n    0xbd, 0xbc, 0xbc, 0xbb, 0xbc, 0xbc, 0xbd, 0xbe, 0xc0, 0xc0, 0xbf, 0xbf, 0xbe, 0xbe, 0xbe, 0xbe,\n    0xbe, 0xbe, 0xbd, 0xbc, 0xbc, 0xbc, 0xbd, 0xbd, 0xbd, 0xba, 0xb5, 0xb2, 0xb0, 0xb0, 0xb0, 0xb0,\n    0xb7, 0xb4, 0xb2, 0xb3, 0xb6, 0xb6, 0xb2, 0xae, 0xaa, 0xa6, 0xa3, 0xa2, 0xa5, 0xa7, 0xa7, 0xa5,\n    0xaa, 0xa7, 0xa3, 0xa1, 0xa0, 0x9d, 0x99, 0x95, 0x88, 0x81, 0x7c, 0x7e, 0x84, 0x87, 0x85, 0x81,\n    0x6c, 0x69, 0xb5, 0xcf, 0xc9, 0xc7, 0xc3, 0xbf, 0xcb, 0xd1, 0xda, 0xe0, 0xe1, 0xde, 0xda, 0xd7,\n    0xd3, 0xc9, 0xc2, 0xc4, 0xc6, 0xc2, 0xbb, 0xb6, 0xba, 0xb6, 0xb0, 0xac, 0xab, 0xb2, 0xc3, 0xd3,\n    0xd5, 0xd7, 0xda, 0xdc, 0xdc, 0xdb, 0xda, 0xda, 0xd5, 0xd6, 0xd4, 0xce, 0xcc, 0xcc, 0xc9, 0xc4,\n    0xc0, 0xba, 0xb4, 0xb1, 0xb0, 0xb2, 0xb7, 0xbd, 0xc5, 0xcf, 0xd6, 0xd6, 0xd8, 0xde, 0xe1, 0xdf,\n    0xdc, 0xe1, 0xe5, 0xe3, 0xe1, 0xe1, 0xe2, 0xe2, 0xe3, 0xe0, 0xde, 0xe0, 0xe1, 0xdf, 0xdb, 0xd9,\n    0xdf, 0xd5, 0xd8, 0xd7, 0xd6, 0xd4, 0xce, 0xd4, 0xd2, 0xd2, 0xd3, 0xd3, 0xd0, 0xcd, 0xcf, 0xd3,\n    0xd9, 0xd7, 0xd5, 0xd2, 0xd0, 0xce, 0xce, 0xce, 0xcf, 0xd1, 0xd3, 0xd3, 0xd2, 0xd4, 0xd6, 0xd7,\n    0xd2, 0xd7, 0xda, 0xda, 0xdb, 0xde, 0xdd, 0xda, 0xe2, 0xe3, 0xe0, 0xdc, 0xdc, 0xdf, 0xde, 0xdb,\n    0xda, 0xdd, 0xde, 0xdd, 0xdc, 0xdd, 0xdc, 0xdb, 0xda, 0xda, 0xda, 0xd9, 0xd8, 0xd5, 0xd3, 0xd1,\n    0xcf, 0xce, 0xce, 0xce, 0xcb, 0xc6, 0xc4, 0xc4, 0xca, 0xc9, 0xbf, 0xd2, 0xc3, 0xbf, 0xc2, 0xb7,\n    0xb9, 0xae, 0xa7, 0xa5, 0x9d, 0x8e, 0x85, 0x87, 0x90, 0x8f, 0x87, 0x78, 0x6a, 0x64, 0x66, 0x6a,\n    0x6e, 0x71, 0x74, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x78, 0x76, 0x75, 0x74, 0x74, 0x74, 0x72, 0x71,\n    0x70, 0x6f, 0x6d, 0x6c, 0x6b, 0x6a, 0x69, 0x69, 0x69, 0x68, 0x65, 0x64, 0x62, 0x5f, 0x5c, 0x5a,\n    0x58, 0x55, 0x52, 0x4e, 0x4b, 0x47, 0x43, 0x41, 0x3e, 0x39, 0x37, 0x36, 0x2e, 0x2b, 0x3d, 0x54,\n    0x78, 0x6c, 0x60, 0x5d, 0x60, 0x64, 0x68, 0x6b, 0x6f, 0x78, 0x7e, 0x7a, 0x6e, 0x65, 0x65, 0x69,\n    0x76, 0x6b, 0x63, 0x5c, 0x55, 0x5a, 0x66, 0x6d, 0x56, 0x30, 0x20, 0x39, 0x4d, 0x43, 0x32, 0x2e,\n    0x40, 0x49, 0x4b, 0x3e, 0x31, 0x30, 0x38, 0x40, 0x48, 0x39, 0x3c, 0x4e, 0x55, 0x51, 0x51, 0x53,\n    0x49, 0x5c, 0x76, 0x83, 0x82, 0x86, 0x8b, 0x89, 0x8f, 0x85, 0x78, 0x6a, 0x5b, 0x4d, 0x43, 0x40,\n    0x45, 0x46, 0x4c, 0x55, 0x5a, 0x57, 0x50, 0x4c, 0x3d, 0x31, 0x3a, 0x4b, 0x48, 0x44, 0x4a, 0x4d,\n    0x3e, 0x49, 0x57, 0x5d, 0x55, 0x44, 0x37, 0x33, 0x2a, 0x2f, 0x37, 0x43, 0x52, 0x63, 0x74, 0x7e,\n    0x74, 0x74, 0x71, 0x62, 0x67, 0x94, 0xa8, 0x8d, 0x66, 0x30, 0x20, 0x30, 0x35, 0x33, 0x46, 0x6f,\n    0x7e, 0x92, 0x8c, 0x69, 0x52, 0x5f, 0x89, 0xb1, 0xbe, 0x9e, 0x72, 0x5d, 0x6f, 0x98, 0xb8, 0xc3,\n    0xab, 0x90, 0x6a, 0x47, 0x2f, 0x25, 0x27, 0x2d, 0x2e, 0x31, 0x36, 0x3e, 0x48, 0x52, 0x58, 0x5a,\n    0x68, 0x5f, 0x5c, 0x63, 0x69, 0x67, 0x63, 0x62, 0x5a, 0x62, 0x6c, 0x72, 0x73, 0x73, 0x73, 0x74,\n    0x7b, 0x7d, 0x81, 0x81, 0x7b, 0x75, 0x76, 0x79, 0x7f, 0x7b, 0x74, 0x71, 0x76, 0x7b, 0x76, 0x6d,\n    0x6e, 0x6b, 0x69, 0x68, 0x66, 0x65, 0x67, 0x6a, 0x74, 0x7b, 0x7b, 0x77, 0x73, 0x6d, 0x6a, 0x6f,\n    0x6e, 0x6f, 0x73, 0x77, 0x72, 0x69, 0x65, 0x68, 0x6a, 0x67, 0x65, 0x63, 0x5f, 0x5c, 0x5f, 0x64,\n    0x64, 0x5f, 0x5e, 0x60, 0x61, 0x5d, 0x5a, 0x59, 0x60, 0x67, 0x6b, 0x71, 0x77, 0x6f, 0x66, 0x6b,\n    0x72, 0x76, 0x78, 0x75, 0x73, 0x71, 0x6f, 0x6d, 0x76, 0x78, 0x78, 0x79, 0x7b, 0x7a, 0x73, 0x6c,\n    0x6d, 0x6e, 0x6f, 0x72, 0x75, 0x78, 0x7a, 0x7b, 0x70, 0x6d, 0x66, 0x73, 0x74, 0x78, 0x6e, 0x6c,\n    0x61, 0x67, 0x70, 0x71, 0x6f, 0x76, 0x7e, 0x7b, 0x78, 0x6e, 0x65, 0x65, 0x6b, 0x6f, 0x71, 0x73,\n    0x72, 0x71, 0x6a, 0x60, 0x5b, 0x5c, 0x5c, 0x59, 0x5b, 0x6a, 0x77, 0x7c, 0x7d, 0x7e, 0x7b, 0x76,\n    0x7b, 0x7d, 0x85, 0x7b, 0x6f, 0x6a, 0x64, 0x69, 0x75, 0x77, 0x78, 0x75, 0x71, 0x6d, 0x6a, 0x67,\n    0x70, 0x75, 0x7c, 0x81, 0x86, 0x8b, 0x8c, 0x8b, 0x7c, 0x77, 0x7c, 0x87, 0x88, 0x8b, 0x93, 0xaf,\n    0xba, 0xb9, 0xba, 0xbc, 0xbd, 0xbd, 0xc1, 0xc6, 0xc7, 0xc8, 0xc8, 0xc9, 0xcb, 0xcc, 0xcd, 0xcd,\n    0xca, 0xc9, 0xc9, 0xc8, 0xc7, 0xc6, 0xc5, 0xc5, 0xc3, 0xc3, 0xc3, 0xc2, 0xc1, 0xc0, 0xbf, 0xbf,\n    0xba, 0xbb, 0xbc, 0xbe, 0xbe, 0xbf, 0xbf, 0xbe, 0xbf, 0xbf, 0xbf, 0xbe, 0xbd, 0xbd, 0xbc, 0xbc,\n    0xbc, 0xbc, 0xbb, 0xba, 0xba, 0xba, 0xba, 0xbb, 0xbb, 0xb8, 0xb5, 0xb4, 0xb3, 0xb4, 0xb4, 0xb4,\n    0xb3, 0xb2, 0xb0, 0xb2, 0xb4, 0xb5, 0xb4, 0xb2, 0xb0, 0xad, 0xa8, 0xa6, 0xa6, 0xa6, 0xa6, 0xa5,\n    0xa6, 0xa4, 0xa1, 0xa0, 0x9f, 0x9c, 0x98, 0x94, 0x8b, 0x86, 0x80, 0x81, 0x85, 0x87, 0x85, 0x81,\n    0x6e, 0x66, 0xae, 0xcb, 0xc8, 0xc5, 0xbe, 0xba, 0xb8, 0xb8, 0xbb, 0xc0, 0xc6, 0xc9, 0xc9, 0xc7,\n    0xc2, 0xbc, 0xb8, 0xb8, 0xb8, 0xb6, 0xb3, 0xb3, 0xb5, 0xb3, 0xaf, 0xab, 0xac, 0xb7, 0xc7, 0xd4,\n    0xd4, 0xd6, 0xd8, 0xda, 0xda, 0xd9, 0xd8, 0xd8, 0xd4, 0xd4, 0xd1, 0xcc, 0xca, 0xca, 0xc5, 0xc0,\n    0xbb, 0xb5, 0xb1, 0xb0, 0xb2, 0xb4, 0xb9, 0xbe, 0xc4, 0xcf, 0xd7, 0xd8, 0xdb, 0xe0, 0xe2, 0xdf,\n    0xdc, 0xe1, 0xe3, 0xe1, 0xdf, 0xdf, 0xe0, 0xe0, 0xe0, 0xe0, 0xe2, 0xe3, 0xe0, 0xdb, 0xda, 0xdc,\n    0xd9, 0xd5, 0xd7, 0xcf, 0xd0, 0xd6, 0xcf, 0xce, 0xd2, 0xd1, 0xd1, 0xd2, 0xd0, 0xcd, 0xcd, 0xd0,\n    0xd6, 0xd5, 0xd3, 0xd1, 0xd0, 0xd0, 0xd1, 0xd2, 0xd7, 0xd7, 0xd6, 0xd5, 0xd6, 0xd6, 0xd6, 0xd5,\n    0xd6, 0xd6, 0xd6, 0xd6, 0xda, 0xde, 0xe0, 0xe0, 0xd9, 0xda, 0xdb, 0xdc, 0xde, 0xde, 0xd9, 0xd4,\n    0xda, 0xdc, 0xdc, 0xdb, 0xdc, 0xdd, 0xdd, 0xdb, 0xdd, 0xdd, 0xdd, 0xdb, 0xd9, 0xd7, 0xd4, 0xd3,\n    0xd2, 0xd0, 0xce, 0xcb, 0xc8, 0xc6, 0xc5, 0xc6, 0xc5, 0xca, 0xc5, 0xd0, 0xc2, 0xc0, 0xc0, 0xc3,\n    0xbb, 0xb4, 0xa5, 0xa2, 0x9e, 0x90, 0x8b, 0x8e, 0x93, 0x8f, 0x86, 0x78, 0x6b, 0x66, 0x67, 0x6a,\n    0x6e, 0x70, 0x74, 0x76, 0x77, 0x77, 0x78, 0x79, 0x77, 0x76, 0x75, 0x74, 0x74, 0x73, 0x71, 0x6f,\n    0x6f, 0x6e, 0x6d, 0x6c, 0x6a, 0x69, 0x69, 0x69, 0x67, 0x66, 0x63, 0x62, 0x60, 0x5d, 0x5a, 0x58,\n    0x55, 0x53, 0x4f, 0x4b, 0x48, 0x45, 0x41, 0x3f, 0x38, 0x39, 0x38, 0x34, 0x31, 0x3a, 0x4d, 0x5f,\n    0x63, 0x5f, 0x5e, 0x62, 0x66, 0x6a, 0x6e, 0x73, 0x72, 0x73, 0x71, 0x6a, 0x63, 0x65, 0x6f, 0x79,\n    0x70, 0x6d, 0x6a, 0x60, 0x50, 0x47, 0x43, 0x3d, 0x2a, 0x42, 0x68, 0x85, 0x86, 0x77, 0x74, 0x7b,\n    0x7b, 0x69, 0x53, 0x42, 0x36, 0x2d, 0x2c, 0x2e, 0x2b, 0x29, 0x3b, 0x51, 0x4e, 0x3f, 0x3d, 0x43,\n    0x59, 0x57, 0x5f, 0x68, 0x69, 0x6a, 0x6f, 0x70, 0x77, 0x75, 0x75, 0x76, 0x72, 0x64, 0x54, 0x49,\n    0x48, 0x4a, 0x4e, 0x4e, 0x49, 0x40, 0x3a, 0x39, 0x3c, 0x2c, 0x2b, 0x33, 0x37, 0x3d, 0x40, 0x39,\n    0x36, 0x47, 0x59, 0x5b, 0x4d, 0x3c, 0x31, 0x2e, 0x33, 0x38, 0x40, 0x46, 0x4d, 0x58, 0x67, 0x71,\n    0x75, 0x70, 0x6e, 0x65, 0x66, 0x86, 0x99, 0x8a, 0x5e, 0x3c, 0x37, 0x3f, 0x3e, 0x3b, 0x46, 0x60,\n    0x7c, 0x82, 0x6b, 0x59, 0x7b, 0xa5, 0xa4, 0x8e, 0x5d, 0x63, 0x70, 0x87, 0xa0, 0xaa, 0x9f, 0x8f,\n    0x71, 0x5d, 0x55, 0x6b, 0x87, 0x83, 0x5d, 0x37, 0x36, 0x53, 0x61, 0x51, 0x43, 0x4c, 0x5c, 0x61,\n    0x6b, 0x61, 0x5c, 0x64, 0x6e, 0x70, 0x6c, 0x69, 0x63, 0x68, 0x6c, 0x6d, 0x6c, 0x6f, 0x78, 0x7f,\n    0x77, 0x77, 0x78, 0x77, 0x73, 0x6f, 0x71, 0x75, 0x74, 0x74, 0x74, 0x74, 0x74, 0x73, 0x72, 0x71,\n    0x6b, 0x66, 0x63, 0x61, 0x61, 0x63, 0x68, 0x6e, 0x6f, 0x76, 0x77, 0x75, 0x74, 0x70, 0x6d, 0x72,\n    0x77, 0x77, 0x78, 0x76, 0x6d, 0x63, 0x64, 0x6a, 0x6e, 0x6a, 0x67, 0x65, 0x61, 0x5b, 0x57, 0x56,\n    0x57, 0x54, 0x56, 0x5e, 0x65, 0x66, 0x62, 0x5f, 0x5a, 0x67, 0x6d, 0x6c, 0x68, 0x62, 0x65, 0x73,\n    0x6e, 0x70, 0x6f, 0x6d, 0x6b, 0x69, 0x65, 0x60, 0x72, 0x78, 0x79, 0x77, 0x78, 0x7a, 0x74, 0x6a,\n    0x68, 0x69, 0x6b, 0x70, 0x75, 0x75, 0x70, 0x6b, 0x5f, 0x64, 0x65, 0x70, 0x6b, 0x6d, 0x65, 0x67,\n    0x5e, 0x63, 0x6d, 0x70, 0x6f, 0x75, 0x77, 0x70, 0x67, 0x66, 0x67, 0x6c, 0x70, 0x72, 0x76, 0x79,\n    0x77, 0x76, 0x71, 0x67, 0x5d, 0x58, 0x59, 0x5c, 0x5c, 0x6a, 0x75, 0x77, 0x75, 0x76, 0x79, 0x7a,\n    0x7b, 0x7a, 0x80, 0x7d, 0x78, 0x73, 0x65, 0x62, 0x70, 0x72, 0x6e, 0x65, 0x63, 0x68, 0x69, 0x65,\n    0x63, 0x66, 0x6a, 0x6d, 0x71, 0x74, 0x74, 0x72, 0x79, 0x79, 0x7e, 0x88, 0x8c, 0x85, 0x9c, 0xb1,\n    0xb8, 0xb7, 0xbb, 0xc0, 0xbe, 0xb9, 0xbd, 0xc5, 0xc8, 0xc8, 0xc7, 0xc7, 0xc8, 0xca, 0xcc, 0xcd,\n    0xc8, 0xc9, 0xc9, 0xca, 0xc8, 0xc6, 0xc3, 0xc2, 0xc0, 0xc0, 0xc0, 0xbf, 0xbf, 0xbe, 0xbe, 0xbe,\n    0xba, 0xbb, 0xbe, 0xc0, 0xc2, 0xc2, 0xc1, 0xc0, 0xbf, 0xbe, 0xbe, 0xbd, 0xbc, 0xbb, 0xba, 0xba,\n    0xba, 0xb9, 0xb8, 0xb7, 0xb7, 0xb7, 0xb8, 0xb8, 0xb7, 0xb5, 0xb3, 0xb2, 0xb2, 0xb1, 0xb0, 0xaf,\n    0xae, 0xae, 0xae, 0xaf, 0xb1, 0xb3, 0xb5, 0xb6, 0xb2, 0xb0, 0xad, 0xaa, 0xa9, 0xa8, 0xa9, 0xa9,\n    0xa4, 0xa2, 0xa0, 0x9e, 0x9c, 0x99, 0x93, 0x8f, 0x87, 0x83, 0x7f, 0x7f, 0x81, 0x83, 0x81, 0x7f,\n    0x6d, 0x5f, 0xa4, 0xc5, 0xc6, 0xc1, 0xba, 0xb6, 0xb2, 0xad, 0xaa, 0xad, 0xb4, 0xb9, 0xb8, 0xb5,\n    0xb4, 0xb2, 0xb1, 0xb0, 0xae, 0xad, 0xaf, 0xb3, 0xb0, 0xb1, 0xad, 0xa9, 0xae, 0xbe, 0xce, 0xd6,\n    0xd3, 0xd4, 0xd6, 0xd7, 0xd7, 0xd7, 0xd5, 0xd5, 0xd1, 0xd0, 0xcc, 0xc9, 0xc8, 0xc6, 0xc0, 0xba,\n    0xb4, 0xb0, 0xae, 0xb1, 0xb5, 0xb9, 0xbc, 0xc0, 0xc4, 0xce, 0xd6, 0xd9, 0xdc, 0xe1, 0xe2, 0xdf,\n    0xdd, 0xe1, 0xe3, 0xe2, 0xe1, 0xe2, 0xe3, 0xe2, 0xe0, 0xdf, 0xe1, 0xe5, 0xe3, 0xdd, 0xda, 0xdc,\n    0xd8, 0xd5, 0xde, 0xdc, 0xd6, 0xd1, 0xce, 0xd9, 0xd5, 0xd2, 0xd2, 0xd4, 0xd3, 0xd1, 0xce, 0xcf,\n    0xd4, 0xd3, 0xd2, 0xd1, 0xd1, 0xd1, 0xd2, 0xd2, 0xcb, 0xc9, 0xc8, 0xca, 0xcf, 0xd3, 0xd5, 0xd6,\n    0xdc, 0xd8, 0xd5, 0xd5, 0xd5, 0xd4, 0xd5, 0xd6, 0xda, 0xd9, 0xda, 0xdb, 0xdc, 0xdc, 0xde, 0xe2,\n    0xde, 0xde, 0xdc, 0xdb, 0xdd, 0xe0, 0xdf, 0xdc, 0xd7, 0xd7, 0xd7, 0xd7, 0xd7, 0xd6, 0xd4, 0xd3,\n    0xd4, 0xd4, 0xd2, 0xcc, 0xca, 0xcb, 0xcc, 0xca, 0xca, 0xcc, 0xc8, 0xc8, 0xc3, 0xbc, 0xa6, 0xab,\n    0xb8, 0xc0, 0xac, 0xa8, 0xa6, 0x95, 0x93, 0x91, 0x95, 0x8e, 0x83, 0x77, 0x6d, 0x68, 0x69, 0x6b,\n    0x6e, 0x70, 0x73, 0x75, 0x76, 0x76, 0x77, 0x78, 0x75, 0x75, 0x74, 0x75, 0x74, 0x73, 0x70, 0x6e,\n    0x6f, 0x6e, 0x6c, 0x6b, 0x69, 0x68, 0x68, 0x67, 0x65, 0x63, 0x61, 0x5f, 0x5d, 0x5a, 0x57, 0x55,\n    0x52, 0x4f, 0x4b, 0x48, 0x45, 0x42, 0x3e, 0x3c, 0x36, 0x38, 0x36, 0x31, 0x36, 0x4a, 0x60, 0x6d,\n    0x6b, 0x6b, 0x6c, 0x6c, 0x6b, 0x69, 0x6c, 0x70, 0x70, 0x72, 0x72, 0x6e, 0x6a, 0x69, 0x6b, 0x6e,\n    0x76, 0x76, 0x74, 0x66, 0x52, 0x48, 0x42, 0x38, 0x32, 0x5f, 0x8b, 0x95, 0x88, 0x82, 0x88, 0x90,\n    0x8d, 0x82, 0x75, 0x6b, 0x62, 0x56, 0x4a, 0x42, 0x3a, 0x27, 0x25, 0x31, 0x35, 0x36, 0x41, 0x4d,\n    0x51, 0x3b, 0x30, 0x34, 0x39, 0x43, 0x54, 0x5f, 0x70, 0x77, 0x7b, 0x70, 0x5d, 0x56, 0x63, 0x75,\n    0x6d, 0x67, 0x62, 0x64, 0x62, 0x56, 0x44, 0x37, 0x1e, 0x19, 0x1d, 0x29, 0x35, 0x3f, 0x3d, 0x2f,\n    0x2f, 0x46, 0x58, 0x52, 0x3f, 0x32, 0x30, 0x32, 0x43, 0x49, 0x4e, 0x51, 0x53, 0x5a, 0x66, 0x70,\n    0x66, 0x65, 0x71, 0x7e, 0x85, 0x93, 0x98, 0x8b, 0x72, 0x56, 0x46, 0x34, 0x28, 0x2e, 0x3a, 0x4b,\n    0x74, 0x87, 0x89, 0x8a, 0x91, 0x81, 0x64, 0x59, 0x7f, 0x8c, 0xa0, 0xae, 0xa5, 0x85, 0x5f, 0x46,\n    0x32, 0x37, 0x45, 0x55, 0x5b, 0x4e, 0x37, 0x27, 0x28, 0x2a, 0x3c, 0x56, 0x61, 0x62, 0x74, 0x8d,\n    0x6c, 0x64, 0x60, 0x66, 0x70, 0x73, 0x71, 0x6e, 0x68, 0x67, 0x64, 0x63, 0x64, 0x6b, 0x73, 0x79,\n    0x7d, 0x79, 0x75, 0x72, 0x6e, 0x69, 0x66, 0x66, 0x6d, 0x73, 0x78, 0x74, 0x6a, 0x65, 0x6c, 0x78,\n    0x6a, 0x64, 0x5e, 0x5e, 0x60, 0x63, 0x66, 0x69, 0x69, 0x72, 0x75, 0x74, 0x74, 0x70, 0x70, 0x76,\n    0x77, 0x75, 0x73, 0x6e, 0x66, 0x5f, 0x60, 0x65, 0x6a, 0x65, 0x60, 0x5b, 0x59, 0x57, 0x57, 0x58,\n    0x60, 0x5c, 0x5a, 0x5d, 0x62, 0x64, 0x62, 0x5f, 0x5d, 0x63, 0x65, 0x61, 0x5d, 0x5f, 0x68, 0x72,\n    0x6f, 0x70, 0x70, 0x71, 0x72, 0x72, 0x6c, 0x66, 0x6c, 0x74, 0x73, 0x69, 0x65, 0x6c, 0x6e, 0x6a,\n    0x67, 0x69, 0x6c, 0x71, 0x74, 0x72, 0x6b, 0x65, 0x5e, 0x66, 0x6a, 0x73, 0x6b, 0x6d, 0x66, 0x69,\n    0x65, 0x67, 0x6e, 0x72, 0x71, 0x73, 0x71, 0x68, 0x65, 0x64, 0x65, 0x68, 0x6c, 0x70, 0x76, 0x7c,\n    0x79, 0x77, 0x74, 0x6c, 0x60, 0x5a, 0x60, 0x69, 0x62, 0x6a, 0x6f, 0x6e, 0x6d, 0x70, 0x76, 0x7a,\n    0x7b, 0x78, 0x80, 0x81, 0x7f, 0x79, 0x67, 0x61, 0x69, 0x6b, 0x6a, 0x67, 0x68, 0x69, 0x65, 0x5f,\n    0x66, 0x6a, 0x6d, 0x6f, 0x71, 0x73, 0x71, 0x6d, 0x6b, 0x6e, 0x73, 0x78, 0x7c, 0x75, 0xa1, 0xb4,\n    0xb5, 0xb3, 0xb8, 0xbe, 0xbb, 0xb5, 0xb9, 0xc3, 0xc6, 0xc5, 0xc4, 0xc5, 0xc6, 0xc9, 0xcb, 0xcd,\n    0xcb, 0xcb, 0xcc, 0xcb, 0xca, 0xc7, 0xc5, 0xc3, 0xbf, 0xbe, 0xbd, 0xbc, 0xbb, 0xba, 0xba, 0xb9,\n    0xbb, 0xbc, 0xbe, 0xc0, 0xc1, 0xc1, 0xc0, 0xc0, 0xbe, 0xbe, 0xbd, 0xbc, 0xbc, 0xbb, 0xba, 0xba,\n    0xb9, 0xb8, 0xb7, 0xb6, 0xb5, 0xb5, 0xb6, 0xb7, 0xb7, 0xb5, 0xb3, 0xb1, 0xb0, 0xad, 0xaa, 0xa8,\n    0xaa, 0xaa, 0xab, 0xab, 0xac, 0xae, 0xb2, 0xb5, 0xae, 0xaf, 0xaf, 0xaf, 0xad, 0xad, 0xad, 0xad,\n    0xa6, 0xa3, 0xa0, 0x9e, 0x9a, 0x95, 0x8e, 0x88, 0x82, 0x7f, 0x7d, 0x7d, 0x7f, 0x81, 0x80, 0x7f,\n    0x6c, 0x5b, 0xa0, 0xc2, 0xc3, 0xbd, 0xb7, 0xb7, 0xb3, 0xae, 0xaa, 0xab, 0xb0, 0xb2, 0xb0, 0xac,\n    0xae, 0xaf, 0xaf, 0xae, 0xac, 0xab, 0xad, 0xb0, 0xad, 0xaf, 0xab, 0xa7, 0xb1, 0xc5, 0xd4, 0xd8,\n    0xd3, 0xd3, 0xd3, 0xd4, 0xd4, 0xd4, 0xd3, 0xd1, 0xce, 0xcb, 0xc7, 0xc5, 0xc4, 0xc0, 0xb9, 0xb3,\n    0xad, 0xaa, 0xab, 0xb1, 0xb7, 0xbb, 0xbd, 0xbf, 0xc2, 0xca, 0xd1, 0xd4, 0xd8, 0xdc, 0xde, 0xdd,\n    0xdb, 0xde, 0xe1, 0xe0, 0xe0, 0xe3, 0xe4, 0xe4, 0xe4, 0xdf, 0xdd, 0xdf, 0xe0, 0xdc, 0xd8, 0xd6,\n    0xdd, 0xce, 0xcb, 0xcc, 0xd4, 0xd9, 0xd0, 0xcf, 0xd7, 0xd3, 0xd2, 0xd5, 0xd6, 0xd4, 0xd0, 0xce,\n    0xd3, 0xd3, 0xd3, 0xd2, 0xd1, 0xd0, 0xcf, 0xce, 0xd1, 0xce, 0xcc, 0xcd, 0xd0, 0xd2, 0xd5, 0xd7,\n    0xd3, 0xd1, 0xd2, 0xd6, 0xd7, 0xd4, 0xd5, 0xd8, 0xd6, 0xd5, 0xd6, 0xd6, 0xd3, 0xd1, 0xd8, 0xe0,\n    0xdd, 0xdc, 0xd9, 0xd7, 0xd9, 0xdc, 0xdb, 0xd7, 0xda, 0xda, 0xda, 0xd9, 0xd8, 0xd6, 0xd5, 0xd4,\n    0xc8, 0xd0, 0xd3, 0xcf, 0xce, 0xd2, 0xd0, 0xca, 0xcb, 0xc8, 0xc5, 0xc3, 0xc9, 0xab, 0x6a, 0x5c,\n    0x95, 0xb5, 0xae, 0xaa, 0xa8, 0x99, 0x98, 0x90, 0x95, 0x8b, 0x7f, 0x75, 0x6e, 0x6a, 0x69, 0x6a,\n    0x6e, 0x71, 0x74, 0x75, 0x76, 0x76, 0x76, 0x77, 0x75, 0x75, 0x75, 0x75, 0x75, 0x73, 0x6f, 0x6d,\n    0x6d, 0x6c, 0x6b, 0x69, 0x67, 0x66, 0x66, 0x65, 0x62, 0x61, 0x5e, 0x5c, 0x5a, 0x57, 0x54, 0x52,\n    0x4e, 0x4b, 0x47, 0x44, 0x41, 0x3f, 0x3c, 0x3a, 0x39, 0x36, 0x33, 0x35, 0x43, 0x59, 0x6a, 0x72,\n    0x6c, 0x69, 0x68, 0x67, 0x67, 0x68, 0x6e, 0x74, 0x7b, 0x74, 0x6b, 0x64, 0x62, 0x64, 0x69, 0x6c,\n    0x6f, 0x73, 0x75, 0x67, 0x4f, 0x3f, 0x31, 0x21, 0x50, 0x70, 0x89, 0x89, 0x85, 0x8e, 0x98, 0x99,\n    0x96, 0x90, 0x80, 0x6e, 0x65, 0x62, 0x58, 0x4b, 0x33, 0x25, 0x22, 0x2d, 0x3a, 0x48, 0x50, 0x4f,\n    0x49, 0x4a, 0x5b, 0x6e, 0x70, 0x6b, 0x68, 0x65, 0x53, 0x52, 0x51, 0x50, 0x52, 0x59, 0x69, 0x77,\n    0x6b, 0x5e, 0x52, 0x50, 0x51, 0x49, 0x3a, 0x2d, 0x31, 0x29, 0x22, 0x1f, 0x20, 0x23, 0x24, 0x21,\n    0x34, 0x4c, 0x59, 0x4a, 0x34, 0x2e, 0x37, 0x40, 0x43, 0x51, 0x66, 0x79, 0x84, 0x86, 0x84, 0x81,\n    0x70, 0x5c, 0x4f, 0x4e, 0x57, 0x70, 0x89, 0x8f, 0x86, 0x74, 0x6d, 0x62, 0x5a, 0x5c, 0x55, 0x52,\n    0x6b, 0x87, 0x95, 0x8b, 0x6b, 0x45, 0x53, 0x8d, 0xa4, 0x9d, 0x91, 0x7c, 0x59, 0x35, 0x23, 0x22,\n    0x21, 0x29, 0x32, 0x34, 0x30, 0x2e, 0x37, 0x42, 0x55, 0x4d, 0x4c, 0x5c, 0x71, 0x79, 0x70, 0x64,\n    0x6c, 0x68, 0x66, 0x68, 0x6c, 0x6e, 0x6d, 0x6d, 0x78, 0x76, 0x76, 0x7c, 0x83, 0x86, 0x82, 0x7d,\n    0x77, 0x72, 0x6e, 0x6f, 0x70, 0x6c, 0x68, 0x65, 0x6a, 0x68, 0x68, 0x6a, 0x6b, 0x6c, 0x70, 0x75,\n    0x65, 0x5c, 0x56, 0x58, 0x5d, 0x5e, 0x5c, 0x5a, 0x60, 0x6b, 0x70, 0x6f, 0x6d, 0x6a, 0x6b, 0x74,\n    0x74, 0x6f, 0x69, 0x65, 0x61, 0x5e, 0x5e, 0x5f, 0x5d, 0x5b, 0x57, 0x54, 0x54, 0x59, 0x5f, 0x63,\n    0x62, 0x60, 0x5d, 0x5d, 0x5f, 0x61, 0x61, 0x5f, 0x64, 0x60, 0x5d, 0x5d, 0x62, 0x6b, 0x6d, 0x67,\n    0x68, 0x69, 0x6b, 0x6e, 0x71, 0x71, 0x6c, 0x64, 0x62, 0x66, 0x62, 0x59, 0x5d, 0x69, 0x6d, 0x68,\n    0x61, 0x66, 0x6c, 0x70, 0x70, 0x6d, 0x6a, 0x68, 0x5f, 0x68, 0x6a, 0x72, 0x6b, 0x6f, 0x69, 0x6a,\n    0x6e, 0x6c, 0x70, 0x73, 0x73, 0x74, 0x72, 0x69, 0x67, 0x63, 0x61, 0x64, 0x68, 0x6e, 0x74, 0x79,\n    0x7a, 0x78, 0x74, 0x6a, 0x5f, 0x5a, 0x62, 0x6d, 0x69, 0x69, 0x69, 0x67, 0x69, 0x6f, 0x74, 0x77,\n    0x77, 0x72, 0x7b, 0x7e, 0x81, 0x81, 0x78, 0x79, 0x79, 0x72, 0x6e, 0x6f, 0x6f, 0x68, 0x60, 0x5c,\n    0x63, 0x69, 0x6e, 0x70, 0x70, 0x70, 0x6e, 0x6a, 0x68, 0x70, 0x77, 0x76, 0x76, 0x79, 0xad, 0xbe,\n    0xb5, 0xb4, 0xb7, 0xbd, 0xbc, 0xb7, 0xba, 0xc2, 0xc6, 0xc6, 0xc6, 0xc6, 0xc8, 0xca, 0xcc, 0xcd,\n    0xcf, 0xcf, 0xce, 0xcc, 0xca, 0xc8, 0xc7, 0xc6, 0xc2, 0xc1, 0xbf, 0xbd, 0xba, 0xb9, 0xb8, 0xb7,\n    0xbc, 0xbc, 0xbb, 0xbb, 0xbb, 0xbc, 0xbc, 0xbc, 0xbd, 0xbd, 0xbd, 0xbc, 0xbc, 0xbb, 0xbb, 0xbb,\n    0xba, 0xb9, 0xb7, 0xb6, 0xb5, 0xb5, 0xb6, 0xb7, 0xba, 0xb8, 0xb7, 0xb5, 0xb3, 0xb0, 0xac, 0xa9,\n    0xa8, 0xa9, 0xa9, 0xa8, 0xa7, 0xa9, 0xad, 0xb1, 0xaf, 0xb1, 0xb3, 0xb4, 0xb2, 0xaf, 0xad, 0xab,\n    0xa6, 0xa4, 0xa1, 0x9e, 0x9a, 0x95, 0x8d, 0x88, 0x84, 0x82, 0x80, 0x80, 0x82, 0x83, 0x83, 0x81,\n    0x6f, 0x60, 0xa5, 0xc5, 0xc1, 0xb9, 0xb6, 0xba, 0xad, 0xab, 0xa9, 0xa8, 0xa9, 0xab, 0xab, 0xac,\n    0xad, 0xad, 0xad, 0xad, 0xac, 0xac, 0xaa, 0xa8, 0xab, 0xac, 0xa8, 0xa7, 0xb4, 0xc9, 0xd6, 0xd7,\n    0xd3, 0xd2, 0xd0, 0xd0, 0xd1, 0xd1, 0xcf, 0xce, 0xcb, 0xc7, 0xc3, 0xc1, 0xbe, 0xb9, 0xb3, 0xae,\n    0xa9, 0xa8, 0xab, 0xb3, 0xb9, 0xbc, 0xbf, 0xc1, 0xc4, 0xc8, 0xcc, 0xcf, 0xd3, 0xd8, 0xdb, 0xdb,\n    0xd9, 0xdb, 0xdd, 0xdc, 0xdc, 0xde, 0xde, 0xdd, 0xe1, 0xdf, 0xda, 0xd5, 0xd5, 0xd8, 0xda, 0xd9,\n    0xcf, 0xd2, 0xd6, 0xcd, 0xd0, 0xe0, 0xdd, 0xd9, 0xd7, 0xd3, 0xd2, 0xd5, 0xd7, 0xd4, 0xd0, 0xce,\n    0xcf, 0xd0, 0xd2, 0xd3, 0xd2, 0xd0, 0xce, 0xcc, 0xcc, 0xcd, 0xd0, 0xd6, 0xd8, 0xd7, 0xd8, 0xdb,\n    0xe2, 0xe1, 0xe1, 0xe2, 0xdf, 0xdc, 0xdb, 0xdd, 0xde, 0xda, 0xd7, 0xd8, 0xd7, 0xd4, 0xd1, 0xd0,\n    0xc9, 0xc8, 0xc4, 0xc2, 0xc3, 0xc6, 0xc4, 0xc0, 0xb4, 0xb2, 0xb0, 0xad, 0xaa, 0xa7, 0xa4, 0xa3,\n    0xaf, 0xc2, 0xd0, 0xcf, 0xce, 0xd2, 0xcc, 0xc1, 0xbd, 0xbb, 0xbe, 0xbf, 0xc5, 0x92, 0x42, 0x30,\n    0x6d, 0x98, 0xa3, 0xa1, 0x9c, 0x97, 0x98, 0x8f, 0x91, 0x87, 0x7b, 0x74, 0x6f, 0x6b, 0x69, 0x6a,\n    0x6f, 0x71, 0x74, 0x76, 0x76, 0x75, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x75, 0x72, 0x6f, 0x6c,\n    0x6b, 0x6a, 0x69, 0x67, 0x65, 0x64, 0x63, 0x63, 0x60, 0x5e, 0x5c, 0x5a, 0x57, 0x55, 0x51, 0x4f,\n    0x4b, 0x48, 0x44, 0x41, 0x3e, 0x3c, 0x3a, 0x39, 0x38, 0x34, 0x37, 0x47, 0x5b, 0x69, 0x6f, 0x72,\n    0x75, 0x6e, 0x69, 0x6a, 0x6d, 0x71, 0x75, 0x79, 0x6f, 0x6a, 0x63, 0x61, 0x63, 0x66, 0x67, 0x66,\n    0x76, 0x75, 0x73, 0x65, 0x50, 0x44, 0x3d, 0x32, 0x44, 0x5c, 0x72, 0x79, 0x7d, 0x85, 0x8c, 0x8d,\n    0x93, 0x8b, 0x81, 0x7b, 0x7a, 0x7b, 0x7a, 0x78, 0x74, 0x73, 0x6f, 0x63, 0x58, 0x54, 0x48, 0x34,\n    0x35, 0x52, 0x7b, 0x91, 0x89, 0x7a, 0x6b, 0x5e, 0x58, 0x5e, 0x69, 0x75, 0x79, 0x75, 0x6d, 0x69,\n    0x64, 0x59, 0x49, 0x37, 0x27, 0x1e, 0x1f, 0x23, 0x36, 0x33, 0x33, 0x38, 0x39, 0x31, 0x2b, 0x2c,\n    0x3b, 0x4c, 0x52, 0x40, 0x2b, 0x28, 0x34, 0x3e, 0x39, 0x35, 0x35, 0x3e, 0x50, 0x63, 0x70, 0x75,\n    0x6e, 0x6f, 0x70, 0x6e, 0x6f, 0x7a, 0x88, 0x8c, 0x98, 0x77, 0x67, 0x62, 0x67, 0x70, 0x6b, 0x69,\n    0x72, 0x84, 0x7f, 0x6a, 0x64, 0x67, 0x79, 0x95, 0x8a, 0x76, 0x60, 0x4c, 0x39, 0x2b, 0x2e, 0x39,\n    0x34, 0x40, 0x52, 0x62, 0x6a, 0x71, 0x7b, 0x85, 0x85, 0x7d, 0x76, 0x74, 0x6d, 0x5c, 0x45, 0x36,\n    0x62, 0x63, 0x64, 0x66, 0x68, 0x6a, 0x6c, 0x6e, 0x6e, 0x6e, 0x72, 0x7d, 0x89, 0x8d, 0x87, 0x7f,\n    0x72, 0x6f, 0x6e, 0x70, 0x71, 0x6e, 0x6b, 0x69, 0x65, 0x63, 0x61, 0x63, 0x67, 0x6a, 0x6b, 0x6a,\n    0x62, 0x5b, 0x58, 0x5d, 0x63, 0x62, 0x5c, 0x57, 0x5c, 0x67, 0x6c, 0x6b, 0x6b, 0x68, 0x6a, 0x72,\n    0x73, 0x6c, 0x63, 0x5f, 0x5f, 0x60, 0x5e, 0x5c, 0x60, 0x61, 0x60, 0x5e, 0x5f, 0x63, 0x67, 0x68,\n    0x5c, 0x5d, 0x5f, 0x60, 0x63, 0x66, 0x66, 0x63, 0x60, 0x63, 0x68, 0x67, 0x63, 0x68, 0x69, 0x5e,\n    0x5f, 0x60, 0x61, 0x61, 0x63, 0x64, 0x5e, 0x58, 0x5d, 0x5a, 0x55, 0x59, 0x69, 0x77, 0x74, 0x68,\n    0x61, 0x67, 0x6c, 0x6d, 0x69, 0x65, 0x64, 0x65, 0x6f, 0x77, 0x77, 0x7f, 0x79, 0x7f, 0x78, 0x78,\n    0x70, 0x6c, 0x6f, 0x73, 0x73, 0x75, 0x75, 0x6e, 0x68, 0x65, 0x64, 0x69, 0x6e, 0x71, 0x75, 0x77,\n    0x7f, 0x7d, 0x76, 0x6a, 0x5f, 0x5c, 0x62, 0x69, 0x6b, 0x68, 0x65, 0x67, 0x6c, 0x72, 0x74, 0x74,\n    0x6e, 0x68, 0x70, 0x76, 0x7f, 0x88, 0x8a, 0x95, 0x90, 0x7f, 0x71, 0x6f, 0x6f, 0x69, 0x65, 0x66,\n    0x6c, 0x72, 0x75, 0x72, 0x6c, 0x67, 0x63, 0x61, 0x66, 0x70, 0x7a, 0x75, 0x71, 0x86, 0xb1, 0xbb,\n    0xb9, 0xb9, 0xbb, 0xbf, 0xc1, 0xbf, 0xbe, 0xbf, 0xc5, 0xc6, 0xc8, 0xc9, 0xcb, 0xcc, 0xcc, 0xcc,\n    0xce, 0xcc, 0xca, 0xc7, 0xc5, 0xc4, 0xc3, 0xc3, 0xc6, 0xc4, 0xc2, 0xbf, 0xbc, 0xbb, 0xba, 0xba,\n    0xbb, 0xba, 0xb9, 0xb8, 0xb7, 0xb7, 0xb8, 0xb8, 0xbb, 0xbb, 0xbb, 0xbb, 0xbc, 0xbc, 0xbc, 0xbc,\n    0xbc, 0xbb, 0xb8, 0xb6, 0xb6, 0xb6, 0xb7, 0xb8, 0xb8, 0xb7, 0xb6, 0xb6, 0xb5, 0xb3, 0xb0, 0xae,\n    0xa9, 0xa9, 0xa9, 0xa7, 0xa6, 0xa7, 0xaa, 0xac, 0xb1, 0xb2, 0xb4, 0xb5, 0xb3, 0xaf, 0xaa, 0xa7,\n    0xa5, 0xa3, 0xa0, 0x9e, 0x9c, 0x98, 0x92, 0x8e, 0x88, 0x85, 0x81, 0x81, 0x83, 0x84, 0x81, 0x7e,\n    0x73, 0x67, 0xac, 0xc6, 0xbd, 0xb6, 0xb4, 0xb8, 0xb2, 0xb1, 0xac, 0xa7, 0xa4, 0xa4, 0xa7, 0xab,\n    0xac, 0xad, 0xad, 0xac, 0xac, 0xac, 0xa8, 0xa3, 0xa8, 0xa7, 0xa6, 0xab, 0xbb, 0xcd, 0xd5, 0xd4,\n    0xd2, 0xd0, 0xcd, 0xcd, 0xcd, 0xcd, 0xcc, 0xca, 0xc8, 0xc3, 0xbf, 0xbc, 0xb7, 0xb1, 0xac, 0xaa,\n    0xac, 0xae, 0xb3, 0xbb, 0xc0, 0xc3, 0xc6, 0xc9, 0xcd, 0xce, 0xd0, 0xd3, 0xd6, 0xda, 0xdd, 0xdf,\n    0xdc, 0xdd, 0xdd, 0xda, 0xd9, 0xda, 0xda, 0xd8, 0xd5, 0xda, 0xd9, 0xd2, 0xd3, 0xdb, 0xdd, 0xd7,\n    0xcc, 0xca, 0xd8, 0xdf, 0xde, 0xd6, 0xcb, 0xd0, 0xd9, 0xd5, 0xd4, 0xd6, 0xd8, 0xd7, 0xd4, 0xd2,\n    0xcd, 0xce, 0xd0, 0xd2, 0xd2, 0xd1, 0xd0, 0xcf, 0xd4, 0xd3, 0xd7, 0xde, 0xdf, 0xda, 0xd7, 0xd7,\n    0xd5, 0xd4, 0xd1, 0xcd, 0xcb, 0xca, 0xc5, 0xc0, 0xb1, 0xab, 0xa3, 0x9f, 0xa3, 0xa5, 0xa0, 0x99,\n    0x9d, 0x9c, 0x9a, 0x97, 0x98, 0x99, 0x97, 0x94, 0x9b, 0x9a, 0x99, 0x98, 0x96, 0x95, 0x93, 0x93,\n    0x9a, 0xb8, 0xce, 0xcf, 0xce, 0xd0, 0xc8, 0xb8, 0xb0, 0xb0, 0xb2, 0xb0, 0xb1, 0x82, 0x60, 0x6e,\n    0x72, 0x88, 0x9d, 0x9d, 0x95, 0x96, 0x95, 0x91, 0x8d, 0x82, 0x78, 0x74, 0x70, 0x6b, 0x69, 0x6a,\n    0x6f, 0x71, 0x74, 0x75, 0x75, 0x74, 0x74, 0x75, 0x76, 0x75, 0x74, 0x74, 0x73, 0x71, 0x6e, 0x6c,\n    0x69, 0x68, 0x67, 0x65, 0x63, 0x61, 0x60, 0x60, 0x5e, 0x5c, 0x59, 0x57, 0x55, 0x52, 0x4e, 0x4c,\n    0x48, 0x45, 0x41, 0x3e, 0x3c, 0x3a, 0x39, 0x37, 0x35, 0x37, 0x46, 0x5f, 0x74, 0x7a, 0x76, 0x73,\n    0x7b, 0x73, 0x6e, 0x70, 0x76, 0x79, 0x79, 0x78, 0x66, 0x65, 0x67, 0x6c, 0x70, 0x6e, 0x66, 0x5f,\n    0x6c, 0x67, 0x65, 0x5e, 0x4f, 0x47, 0x43, 0x3d, 0x3b, 0x3e, 0x42, 0x48, 0x52, 0x5d, 0x64, 0x68,\n    0x7e, 0x7a, 0x7b, 0x7a, 0x6d, 0x60, 0x66, 0x78, 0x95, 0x91, 0x86, 0x75, 0x6a, 0x69, 0x5b, 0x41,\n    0x32, 0x4a, 0x67, 0x6f, 0x67, 0x68, 0x71, 0x74, 0x6f, 0x70, 0x70, 0x69, 0x5c, 0x50, 0x4d, 0x50,\n    0x49, 0x46, 0x43, 0x42, 0x41, 0x43, 0x4a, 0x51, 0x51, 0x59, 0x62, 0x6b, 0x66, 0x4c, 0x34, 0x2f,\n    0x39, 0x41, 0x3f, 0x2f, 0x1f, 0x1b, 0x21, 0x26, 0x30, 0x2f, 0x30, 0x35, 0x3b, 0x3b, 0x35, 0x2f,\n    0x3d, 0x4a, 0x50, 0x4c, 0x4e, 0x62, 0x81, 0x97, 0x7d, 0x5a, 0x52, 0x64, 0x7e, 0x92, 0x93, 0x97,\n    0x91, 0x7f, 0x5e, 0x4c, 0x61, 0x7f, 0x84, 0x78, 0x66, 0x52, 0x42, 0x3f, 0x42, 0x3f, 0x3c, 0x3c,\n    0x4a, 0x57, 0x6a, 0x76, 0x78, 0x75, 0x77, 0x7b, 0x85, 0x78, 0x75, 0x79, 0x64, 0x3e, 0x2d, 0x34,\n    0x63, 0x66, 0x68, 0x69, 0x6a, 0x6c, 0x6e, 0x6f, 0x6e, 0x73, 0x7d, 0x87, 0x8e, 0x8e, 0x8a, 0x85,\n    0x7b, 0x7a, 0x79, 0x76, 0x6d, 0x65, 0x62, 0x64, 0x63, 0x67, 0x64, 0x5a, 0x54, 0x57, 0x5b, 0x5d,\n    0x61, 0x5f, 0x62, 0x69, 0x6e, 0x6c, 0x68, 0x65, 0x5f, 0x67, 0x6a, 0x6b, 0x70, 0x6f, 0x6f, 0x74,\n    0x76, 0x6e, 0x62, 0x5c, 0x5c, 0x5f, 0x5f, 0x5e, 0x63, 0x63, 0x63, 0x62, 0x65, 0x68, 0x66, 0x62,\n    0x62, 0x62, 0x61, 0x62, 0x66, 0x6a, 0x66, 0x5f, 0x5a, 0x5f, 0x69, 0x6a, 0x67, 0x70, 0x72, 0x64,\n    0x65, 0x65, 0x62, 0x5e, 0x5e, 0x5e, 0x5c, 0x58, 0x58, 0x56, 0x58, 0x61, 0x71, 0x79, 0x72, 0x67,\n    0x64, 0x69, 0x6e, 0x6d, 0x68, 0x63, 0x62, 0x62, 0x69, 0x71, 0x72, 0x77, 0x6f, 0x74, 0x6b, 0x69,\n    0x6c, 0x68, 0x6c, 0x72, 0x72, 0x74, 0x75, 0x70, 0x6a, 0x69, 0x6a, 0x6e, 0x71, 0x72, 0x74, 0x76,\n    0x7e, 0x7e, 0x78, 0x6b, 0x62, 0x63, 0x66, 0x67, 0x66, 0x65, 0x67, 0x6d, 0x73, 0x76, 0x76, 0x74,\n    0x69, 0x62, 0x69, 0x71, 0x7b, 0x85, 0x89, 0x95, 0x90, 0x80, 0x6e, 0x66, 0x66, 0x67, 0x66, 0x63,\n    0x5d, 0x65, 0x6a, 0x67, 0x60, 0x5e, 0x60, 0x62, 0x67, 0x6d, 0x78, 0x70, 0x6b, 0x95, 0xb2, 0xb6,\n    0xba, 0xbc, 0xbe, 0xc0, 0xc5, 0xc6, 0xbe, 0xb5, 0xbb, 0xbe, 0xc2, 0xc7, 0xca, 0xca, 0xca, 0xca,\n    0xc9, 0xc8, 0xc6, 0xc3, 0xc1, 0xbf, 0xbe, 0xbe, 0xc2, 0xc1, 0xbf, 0xbd, 0xbb, 0xbb, 0xbb, 0xbb,\n    0xba, 0xba, 0xba, 0xb9, 0xb9, 0xb8, 0xb7, 0xb7, 0xb7, 0xb8, 0xb9, 0xba, 0xbb, 0xbc, 0xbd, 0xbe,\n    0xbd, 0xbc, 0xb9, 0xb7, 0xb6, 0xb6, 0xb8, 0xb8, 0xb5, 0xb4, 0xb4, 0xb4, 0xb5, 0xb4, 0xb2, 0xb0,\n    0xac, 0xac, 0xab, 0xa9, 0xa8, 0xa8, 0xa9, 0xab, 0xa9, 0xa9, 0xaa, 0xad, 0xaf, 0xaf, 0xac, 0xa9,\n    0xa8, 0xa5, 0xa2, 0xa0, 0x9e, 0x9b, 0x96, 0x92, 0x88, 0x83, 0x7f, 0x7f, 0x83, 0x83, 0x7f, 0x7b,\n    0x71, 0x68, 0xac, 0xc1, 0xb8, 0xb4, 0xb3, 0xb4, 0xb8, 0xb7, 0xb3, 0xad, 0xa8, 0xa5, 0xa6, 0xa8,\n    0xa9, 0xaa, 0xaa, 0xa8, 0xa8, 0xaa, 0xa8, 0xa3, 0xa6, 0xa4, 0xa7, 0xb4, 0xc7, 0xd4, 0xd7, 0xd4,\n    0xd0, 0xcd, 0xc9, 0xc8, 0xc9, 0xca, 0xc8, 0xc6, 0xc4, 0xbf, 0xbb, 0xb7, 0xb0, 0xa8, 0xa5, 0xa7,\n    0xad, 0xb0, 0xb8, 0xc0, 0xc4, 0xc7, 0xcb, 0xd0, 0xd0, 0xd0, 0xd2, 0xd5, 0xd9, 0xda, 0xdc, 0xdd,\n    0xdd, 0xde, 0xdd, 0xda, 0xda, 0xdb, 0xda, 0xd8, 0xd1, 0xd8, 0xd7, 0xd3, 0xda, 0xdc, 0xc2, 0x9f,\n    0x7d, 0x6b, 0x74, 0x97, 0xc6, 0xe3, 0xe2, 0xe2, 0xd8, 0xd4, 0xd3, 0xd5, 0xd7, 0xd6, 0xd4, 0xd4,\n    0xd1, 0xd0, 0xd0, 0xd0, 0xd0, 0xd1, 0xd2, 0xd3, 0xd2, 0xc5, 0xb9, 0xb5, 0xb2, 0xaa, 0xa2, 0xa0,\n    0xa1, 0xa3, 0xa2, 0xa2, 0xa8, 0xab, 0x9e, 0x8c, 0x8e, 0x9d, 0xa7, 0xa5, 0xa3, 0xa6, 0xa9, 0xa8,\n    0xa1, 0xa3, 0xa3, 0xa1, 0xa0, 0xa1, 0xa0, 0x9e, 0x95, 0x95, 0x95, 0x95, 0x96, 0x96, 0x97, 0x97,\n    0x92, 0xb7, 0xd2, 0xd1, 0xcc, 0xce, 0xc6, 0xb5, 0xaf, 0xb0, 0xaf, 0xac, 0xa4, 0x7a, 0x8e, 0xbe,\n    0x91, 0x7f, 0x97, 0xa0, 0x99, 0x99, 0x8f, 0x92, 0x88, 0x7e, 0x77, 0x75, 0x72, 0x6b, 0x69, 0x6b,\n    0x6e, 0x70, 0x72, 0x73, 0x73, 0x72, 0x72, 0x72, 0x75, 0x74, 0x72, 0x71, 0x70, 0x6f, 0x6d, 0x6b,\n    0x67, 0x66, 0x65, 0x63, 0x61, 0x5f, 0x5e, 0x5e, 0x5b, 0x59, 0x57, 0x54, 0x52, 0x4f, 0x4b, 0x48,\n    0x46, 0x43, 0x3f, 0x3b, 0x39, 0x38, 0x37, 0x36, 0x37, 0x44, 0x59, 0x6d, 0x7c, 0x82, 0x80, 0x7a,\n    0x6d, 0x67, 0x64, 0x6a, 0x73, 0x78, 0x7a, 0x7a, 0x77, 0x70, 0x69, 0x68, 0x6c, 0x70, 0x71, 0x6f,\n    0x6c, 0x66, 0x67, 0x66, 0x58, 0x46, 0x39, 0x30, 0x3f, 0x36, 0x2e, 0x31, 0x3f, 0x51, 0x5c, 0x60,\n    0x55, 0x57, 0x57, 0x55, 0x57, 0x64, 0x79, 0x8a, 0x94, 0x8b, 0x82, 0x7a, 0x75, 0x72, 0x61, 0x48,\n    0x29, 0x32, 0x44, 0x4c, 0x48, 0x4c, 0x59, 0x61, 0x65, 0x56, 0x46, 0x40, 0x44, 0x49, 0x4e, 0x52,\n    0x55, 0x4f, 0x4d, 0x50, 0x52, 0x4f, 0x48, 0x43, 0x45, 0x57, 0x5d, 0x53, 0x46, 0x37, 0x36, 0x44,\n    0x46, 0x3f, 0x34, 0x27, 0x1e, 0x1b, 0x1c, 0x1e, 0x3d, 0x41, 0x45, 0x43, 0x3b, 0x32, 0x2b, 0x27,\n    0x17, 0x1f, 0x23, 0x25, 0x33, 0x4d, 0x70, 0x8c, 0x7e, 0x4c, 0x2e, 0x2b, 0x3a, 0x4f, 0x5c, 0x6a,\n    0x5d, 0x52, 0x58, 0x6c, 0x77, 0x76, 0x64, 0x4c, 0x2f, 0x23, 0x1a, 0x1d, 0x24, 0x26, 0x23, 0x20,\n    0x28, 0x23, 0x20, 0x25, 0x2a, 0x29, 0x25, 0x21, 0x1f, 0x28, 0x2c, 0x28, 0x2c, 0x34, 0x32, 0x28,\n    0x75, 0x76, 0x76, 0x74, 0x72, 0x71, 0x6f, 0x6d, 0x68, 0x77, 0x8a, 0x94, 0x8f, 0x82, 0x75, 0x6e,\n    0x6c, 0x71, 0x77, 0x75, 0x6d, 0x69, 0x6e, 0x77, 0x76, 0x76, 0x6c, 0x5b, 0x54, 0x5a, 0x60, 0x61,\n    0x5c, 0x5f, 0x66, 0x6e, 0x71, 0x70, 0x6f, 0x6f, 0x63, 0x67, 0x68, 0x6c, 0x74, 0x76, 0x73, 0x75,\n    0x79, 0x70, 0x64, 0x5b, 0x5a, 0x5d, 0x60, 0x5f, 0x55, 0x54, 0x53, 0x55, 0x5d, 0x64, 0x61, 0x5a,\n    0x58, 0x56, 0x55, 0x5a, 0x67, 0x73, 0x73, 0x6c, 0x5e, 0x52, 0x52, 0x60, 0x76, 0x90, 0x8d, 0x70,\n    0x66, 0x64, 0x5f, 0x58, 0x56, 0x57, 0x57, 0x55, 0x53, 0x57, 0x5e, 0x65, 0x6a, 0x69, 0x65, 0x62,\n    0x63, 0x67, 0x6c, 0x6e, 0x6c, 0x6a, 0x69, 0x69, 0x78, 0x82, 0x83, 0x86, 0x7b, 0x7c, 0x72, 0x6e,\n    0x69, 0x66, 0x6a, 0x71, 0x70, 0x71, 0x72, 0x6d, 0x6a, 0x69, 0x6b, 0x6c, 0x6c, 0x6c, 0x6f, 0x73,\n    0x76, 0x79, 0x74, 0x69, 0x64, 0x68, 0x6a, 0x66, 0x61, 0x63, 0x6a, 0x73, 0x79, 0x7a, 0x77, 0x75,\n    0x69, 0x62, 0x6a, 0x71, 0x79, 0x7e, 0x7a, 0x81, 0x91, 0x87, 0x76, 0x69, 0x68, 0x6c, 0x66, 0x5b,\n    0x61, 0x69, 0x6f, 0x6b, 0x64, 0x64, 0x6a, 0x6f, 0x72, 0x73, 0x7b, 0x71, 0x6d, 0xa9, 0xbd, 0xbd,\n    0xb9, 0xbc, 0xbe, 0xc0, 0xc6, 0xc8, 0xbc, 0xab, 0xad, 0xb2, 0xb9, 0xc1, 0xc6, 0xc8, 0xc8, 0xc7,\n    0xc9, 0xc8, 0xc7, 0xc5, 0xc2, 0xc0, 0xbe, 0xbd, 0xbb, 0xba, 0xb9, 0xb8, 0xb8, 0xb9, 0xba, 0xbb,\n    0xbb, 0xbc, 0xbd, 0xbe, 0xbd, 0xbc, 0xba, 0xb9, 0xb5, 0xb5, 0xb7, 0xb8, 0xba, 0xbc, 0xbd, 0xbe,\n    0xbe, 0xbc, 0xb9, 0xb7, 0xb6, 0xb6, 0xb8, 0xb9, 0xb6, 0xb5, 0xb4, 0xb5, 0xb5, 0xb4, 0xb3, 0xb1,\n    0xae, 0xae, 0xac, 0xab, 0xab, 0xab, 0xab, 0xab, 0x9c, 0x9c, 0x9e, 0xa3, 0xab, 0xaf, 0xb0, 0xaf,\n    0xac, 0xa9, 0xa5, 0xa2, 0x9f, 0x9c, 0x97, 0x93, 0x86, 0x81, 0x7d, 0x7f, 0x84, 0x86, 0x82, 0x7c,\n    0x6b, 0x62, 0xa6, 0xba, 0xb3, 0xb4, 0xb3, 0xb1, 0xaf, 0xb0, 0xb1, 0xb0, 0xae, 0xaa, 0xa7, 0xa6,\n    0xa2, 0xa5, 0xa5, 0xa2, 0xa1, 0xa4, 0xa5, 0xa3, 0xa5, 0xa3, 0xaa, 0xbd, 0xd2, 0xdb, 0xd9, 0xd5,\n    0xcf, 0xcb, 0xc7, 0xc6, 0xc7, 0xc7, 0xc5, 0xc3, 0xc1, 0xbd, 0xb9, 0xb4, 0xab, 0xa3, 0xa1, 0xa5,\n    0xa7, 0xac, 0xb5, 0xbe, 0xc1, 0xc3, 0xc9, 0xd0, 0xcb, 0xcb, 0xce, 0xd2, 0xd4, 0xd5, 0xd4, 0xd5,\n    0xd8, 0xd9, 0xd8, 0xd7, 0xd8, 0xdb, 0xdb, 0xd9, 0xdb, 0xdb, 0xd5, 0xd3, 0xdf, 0xd4, 0x95, 0x4d,\n    0x55, 0x60, 0x5c, 0x4a, 0x6a, 0xb3, 0xd5, 0xd6, 0xd2, 0xcf, 0xce, 0xd0, 0xd1, 0xd0, 0xd0, 0xd1,\n    0xd7, 0xd5, 0xd1, 0xce, 0xcd, 0xcf, 0xd2, 0xd4, 0xd2, 0xba, 0xa4, 0x9d, 0x9f, 0xa0, 0xa0, 0xa1,\n    0xa1, 0xa3, 0xa0, 0x9e, 0xa3, 0x9f, 0x82, 0x60, 0x44, 0x76, 0xa3, 0xa9, 0x9c, 0x98, 0x9e, 0xa2,\n    0x98, 0x9c, 0x9d, 0x9b, 0x9b, 0x9b, 0x9b, 0x99, 0x99, 0x99, 0x97, 0x96, 0x94, 0x93, 0x93, 0x93,\n    0x90, 0xb8, 0xd3, 0xd0, 0xc9, 0xcb, 0xc4, 0xb3, 0xb0, 0xb5, 0xb8, 0xba, 0xa8, 0x74, 0x98, 0xce,\n    0x9e, 0x6d, 0x88, 0x9f, 0x9d, 0x9b, 0x8a, 0x93, 0x86, 0x7d, 0x76, 0x76, 0x73, 0x6c, 0x6a, 0x6d,\n    0x6d, 0x6f, 0x71, 0x72, 0x71, 0x71, 0x70, 0x71, 0x74, 0x73, 0x71, 0x6f, 0x6e, 0x6d, 0x6b, 0x6a,\n    0x66, 0x65, 0x63, 0x61, 0x5f, 0x5e, 0x5d, 0x5c, 0x59, 0x57, 0x55, 0x52, 0x50, 0x4c, 0x49, 0x46,\n    0x44, 0x41, 0x3d, 0x39, 0x38, 0x37, 0x36, 0x35, 0x3e, 0x53, 0x66, 0x6e, 0x77, 0x83, 0x86, 0x81,\n    0x7f, 0x77, 0x70, 0x70, 0x73, 0x75, 0x76, 0x78, 0x71, 0x6d, 0x6b, 0x6e, 0x74, 0x77, 0x74, 0x70,\n    0x69, 0x51, 0x3e, 0x36, 0x2b, 0x29, 0x32, 0x3b, 0x30, 0x36, 0x3c, 0x3e, 0x42, 0x48, 0x4b, 0x4c,\n    0x41, 0x46, 0x40, 0x41, 0x60, 0x86, 0x83, 0x65, 0x54, 0x4d, 0x4c, 0x4a, 0x43, 0x41, 0x46, 0x46,\n    0x31, 0x29, 0x2d, 0x35, 0x31, 0x2c, 0x32, 0x37, 0x2a, 0x38, 0x49, 0x54, 0x53, 0x51, 0x55, 0x5d,\n    0x52, 0x50, 0x4f, 0x4e, 0x4c, 0x4a, 0x4d, 0x52, 0x72, 0x93, 0x98, 0x78, 0x54, 0x42, 0x4d, 0x68,\n    0x5f, 0x4e, 0x3a, 0x2f, 0x2c, 0x2b, 0x2c, 0x2e, 0x2d, 0x41, 0x57, 0x60, 0x59, 0x4f, 0x4c, 0x4d,\n    0x4e, 0x49, 0x43, 0x4b, 0x5e, 0x6d, 0x7c, 0x8c, 0x75, 0x4d, 0x3a, 0x38, 0x42, 0x50, 0x56, 0x60,\n    0x55, 0x53, 0x68, 0x79, 0x6b, 0x57, 0x40, 0x24, 0x1f, 0x1d, 0x1a, 0x18, 0x17, 0x1a, 0x1f, 0x25,\n    0x20, 0x23, 0x26, 0x25, 0x20, 0x1c, 0x20, 0x27, 0x2c, 0x1f, 0x17, 0x19, 0x1a, 0x15, 0x10, 0x10,\n    0x62, 0x6a, 0x70, 0x70, 0x69, 0x64, 0x63, 0x65, 0x63, 0x68, 0x70, 0x78, 0x78, 0x71, 0x6b, 0x68,\n    0x68, 0x6b, 0x71, 0x75, 0x70, 0x68, 0x66, 0x69, 0x6d, 0x6b, 0x66, 0x5f, 0x5d, 0x5e, 0x5e, 0x5c,\n    0x5e, 0x5e, 0x63, 0x67, 0x65, 0x5d, 0x58, 0x57, 0x62, 0x69, 0x72, 0x77, 0x71, 0x6b, 0x6c, 0x73,\n    0x7a, 0x71, 0x64, 0x5b, 0x58, 0x5a, 0x5c, 0x5d, 0x5a, 0x58, 0x53, 0x4f, 0x51, 0x57, 0x57, 0x54,\n    0x49, 0x49, 0x4b, 0x51, 0x5b, 0x67, 0x73, 0x79, 0x6d, 0x5a, 0x5a, 0x74, 0x80, 0x71, 0x63, 0x63,\n    0x68, 0x65, 0x61, 0x5e, 0x5d, 0x5f, 0x61, 0x62, 0x61, 0x64, 0x6b, 0x70, 0x6d, 0x65, 0x62, 0x64,\n    0x66, 0x66, 0x64, 0x63, 0x66, 0x68, 0x63, 0x5b, 0x68, 0x71, 0x79, 0x7a, 0x76, 0x72, 0x70, 0x6e,\n    0x6a, 0x6b, 0x6c, 0x6e, 0x70, 0x72, 0x73, 0x74, 0x78, 0x70, 0x6d, 0x70, 0x6e, 0x67, 0x68, 0x71,\n    0x73, 0x77, 0x73, 0x69, 0x68, 0x6c, 0x67, 0x5c, 0x5c, 0x61, 0x69, 0x70, 0x75, 0x77, 0x76, 0x75,\n    0x6f, 0x70, 0x6c, 0x67, 0x6b, 0x76, 0x7b, 0x79, 0x83, 0x91, 0x94, 0x85, 0x77, 0x73, 0x6c, 0x62,\n    0x5d, 0x66, 0x71, 0x72, 0x6e, 0x6b, 0x6f, 0x75, 0x74, 0x70, 0x6b, 0x65, 0x88, 0xad, 0xb4, 0xca,\n    0xbf, 0xbd, 0xba, 0xbb, 0xc0, 0xc3, 0xbf, 0xb8, 0xb5, 0xb6, 0xba, 0xbf, 0xc4, 0xc6, 0xc6, 0xc4,\n    0xca, 0xc9, 0xc8, 0xc7, 0xc5, 0xc1, 0xbd, 0xba, 0xb8, 0xba, 0xbb, 0xbb, 0xb9, 0xb9, 0xba, 0xbc,\n    0xbf, 0xbe, 0xbd, 0xbd, 0xbd, 0xbc, 0xbb, 0xb9, 0xb8, 0xb8, 0xb8, 0xb9, 0xba, 0xbb, 0xbc, 0xbd,\n    0xbe, 0xbc, 0xba, 0xb9, 0xb8, 0xb8, 0xb6, 0xb5, 0xb5, 0xb3, 0xb2, 0xb4, 0xb6, 0xb6, 0xb2, 0xaf,\n    0xb0, 0xb1, 0xb2, 0xb0, 0xac, 0xaa, 0xaa, 0xaa, 0xad, 0xac, 0xaa, 0xa9, 0xa7, 0xa7, 0xa7, 0xa7,\n    0xa9, 0xa6, 0xa2, 0x9e, 0x9a, 0x96, 0x94, 0x92, 0x86, 0x7c, 0x7b, 0x7f, 0x7f, 0x82, 0x84, 0x80,\n    0x69, 0x6b, 0xa0, 0xc4, 0xae, 0xb3, 0xb0, 0xb1, 0xae, 0xb5, 0xb9, 0xb5, 0xaf, 0xac, 0xa9, 0xa6,\n    0xa1, 0xa3, 0xa3, 0xa2, 0xa2, 0xa3, 0xa4, 0xa3, 0xa2, 0xad, 0xbd, 0xcc, 0xd7, 0xdb, 0xd5, 0xcd,\n    0xc9, 0xc9, 0xc8, 0xc7, 0xc5, 0xc2, 0xbf, 0xbe, 0xb8, 0xb6, 0xb2, 0xab, 0xa1, 0x9b, 0x9d, 0xa3,\n    0xab, 0xaa, 0xad, 0xb4, 0xbc, 0xc1, 0xc6, 0xca, 0xcd, 0xcc, 0xcc, 0xcc, 0xcc, 0xce, 0xcf, 0xd0,\n    0xcc, 0xdc, 0xd6, 0xd1, 0xd1, 0xd2, 0xd2, 0xd8, 0xd3, 0xd3, 0xcd, 0xdc, 0xdc, 0xa2, 0x5c, 0x46,\n    0x59, 0x73, 0x7a, 0x54, 0x4e, 0x60, 0xd2, 0xcd, 0xcc, 0xc6, 0xca, 0xd0, 0xcb, 0xc6, 0xc9, 0xcb,\n    0xd3, 0xda, 0xd7, 0xce, 0xce, 0xd0, 0xd1, 0xd5, 0xd5, 0xb2, 0x9d, 0xa1, 0xa4, 0xa0, 0x9e, 0x9d,\n    0xa5, 0x9c, 0x9b, 0xa1, 0x9c, 0x8f, 0x82, 0xb2, 0xc1, 0x79, 0x8c, 0xa0, 0x91, 0xa1, 0x9b, 0x99,\n    0x98, 0x9c, 0x9e, 0x9d, 0x9a, 0x9a, 0x9a, 0x9a, 0x97, 0x97, 0x97, 0x97, 0x97, 0x96, 0x96, 0x96,\n    0x91, 0xae, 0xd8, 0xd0, 0xcc, 0xca, 0xc4, 0xb4, 0xb3, 0xad, 0xad, 0xb2, 0xa9, 0x7c, 0xaf, 0xc6,\n    0xa2, 0x68, 0x75, 0x88, 0x9d, 0x93, 0x94, 0x8a, 0x80, 0x7b, 0x76, 0x73, 0x6f, 0x6c, 0x6b, 0x6d,\n    0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x73, 0x71, 0x6e, 0x6c, 0x6b, 0x6a, 0x69, 0x68,\n    0x66, 0x64, 0x62, 0x60, 0x5f, 0x5d, 0x5b, 0x59, 0x57, 0x55, 0x51, 0x4d, 0x4b, 0x48, 0x46, 0x44,\n    0x42, 0x3c, 0x3b, 0x3d, 0x39, 0x30, 0x33, 0x3d, 0x4d, 0x5b, 0x6b, 0x75, 0x7c, 0x83, 0x86, 0x85,\n    0x7a, 0x70, 0x6d, 0x6f, 0x6a, 0x62, 0x68, 0x76, 0x78, 0x77, 0x71, 0x6c, 0x6d, 0x71, 0x72, 0x6f,\n    0x52, 0x49, 0x3f, 0x2e, 0x28, 0x26, 0x20, 0x2b, 0x34, 0x39, 0x39, 0x3e, 0x4a, 0x4f, 0x4c, 0x4d,\n    0x43, 0x43, 0x47, 0x59, 0x62, 0x47, 0x29, 0x24, 0x28, 0x2b, 0x31, 0x32, 0x50, 0x54, 0x4f, 0x3e,\n    0x30, 0x26, 0x23, 0x27, 0x26, 0x21, 0x28, 0x36, 0x45, 0x4d, 0x52, 0x52, 0x57, 0x5f, 0x60, 0x5a,\n    0x63, 0x61, 0x58, 0x4b, 0x47, 0x56, 0x72, 0x86, 0x89, 0x7f, 0x6e, 0x5c, 0x4b, 0x43, 0x45, 0x4b,\n    0x3c, 0x34, 0x2d, 0x2b, 0x25, 0x22, 0x2a, 0x37, 0x3e, 0x3e, 0x44, 0x50, 0x5a, 0x5a, 0x50, 0x45,\n    0x49, 0x59, 0x63, 0x54, 0x3c, 0x38, 0x52, 0x6e, 0x59, 0x49, 0x2e, 0x25, 0x38, 0x4c, 0x51, 0x4f,\n    0x4b, 0x5b, 0x68, 0x63, 0x4d, 0x37, 0x2f, 0x30, 0x3f, 0x3f, 0x41, 0x38, 0x2b, 0x2b, 0x33, 0x35,\n    0x2e, 0x2b, 0x2a, 0x27, 0x28, 0x35, 0x41, 0x3f, 0x48, 0x43, 0x3d, 0x3d, 0x47, 0x57, 0x67, 0x71,\n    0x5a, 0x5e, 0x61, 0x60, 0x5d, 0x5d, 0x61, 0x65, 0x6b, 0x6c, 0x6e, 0x71, 0x71, 0x6d, 0x6c, 0x6d,\n    0x69, 0x69, 0x6a, 0x6a, 0x66, 0x60, 0x61, 0x65, 0x6a, 0x68, 0x61, 0x5a, 0x57, 0x58, 0x58, 0x56,\n    0x5a, 0x58, 0x58, 0x5b, 0x5b, 0x58, 0x59, 0x5c, 0x63, 0x66, 0x6c, 0x6f, 0x6c, 0x68, 0x6a, 0x70,\n    0x74, 0x6e, 0x65, 0x5e, 0x5c, 0x5e, 0x62, 0x65, 0x6c, 0x68, 0x60, 0x58, 0x56, 0x57, 0x54, 0x4f,\n    0x4d, 0x4b, 0x4d, 0x54, 0x5d, 0x66, 0x6e, 0x74, 0x6a, 0x62, 0x61, 0x65, 0x63, 0x5a, 0x57, 0x5c,\n    0x60, 0x5d, 0x5d, 0x5f, 0x5b, 0x53, 0x55, 0x5d, 0x68, 0x69, 0x6c, 0x6e, 0x69, 0x62, 0x60, 0x62,\n    0x5e, 0x68, 0x6d, 0x66, 0x5d, 0x5d, 0x64, 0x6b, 0x68, 0x6d, 0x72, 0x76, 0x75, 0x6f, 0x63, 0x57,\n    0x5b, 0x5e, 0x64, 0x6a, 0x70, 0x72, 0x72, 0x71, 0x74, 0x73, 0x74, 0x75, 0x70, 0x6c, 0x71, 0x7a,\n    0x74, 0x77, 0x74, 0x6d, 0x6a, 0x6a, 0x66, 0x60, 0x5d, 0x62, 0x68, 0x6c, 0x71, 0x74, 0x76, 0x76,\n    0x6a, 0x6e, 0x72, 0x73, 0x71, 0x74, 0x7e, 0x89, 0x88, 0x8a, 0x8d, 0x93, 0x9c, 0x9a, 0x81, 0x64,\n    0x5b, 0x65, 0x74, 0x83, 0x8a, 0x88, 0x7f, 0x78, 0x79, 0x73, 0x69, 0x7f, 0xa8, 0xbc, 0xbd, 0xbb,\n    0xc0, 0xbd, 0xba, 0xb9, 0xbd, 0xc3, 0xc3, 0xc0, 0xc6, 0xc5, 0xc3, 0xc3, 0xc5, 0xc6, 0xc6, 0xc6,\n    0xc3, 0xc3, 0xc4, 0xc5, 0xc5, 0xc2, 0xbe, 0xbb, 0xb7, 0xb9, 0xbb, 0xbd, 0xbe, 0xbe, 0xbf, 0xc0,\n    0xc0, 0xbf, 0xbe, 0xbe, 0xbf, 0xbe, 0xbc, 0xba, 0xb7, 0xb8, 0xb8, 0xb8, 0xb9, 0xba, 0xbb, 0xbc,\n    0xbf, 0xbd, 0xbb, 0xba, 0xba, 0xb9, 0xb8, 0xb7, 0xb5, 0xb3, 0xb3, 0xb5, 0xb8, 0xb9, 0xb7, 0xb4,\n    0xb1, 0xb1, 0xb0, 0xae, 0xab, 0xaa, 0xab, 0xac, 0xb0, 0xae, 0xaa, 0xa7, 0xa5, 0xa6, 0xa9, 0xab,\n    0xa6, 0xa4, 0xa0, 0x9c, 0x97, 0x93, 0x8f, 0x8d, 0x8a, 0x80, 0x7e, 0x81, 0x80, 0x80, 0x80, 0x7b,\n    0x68, 0x69, 0x9b, 0xc2, 0xaf, 0xb2, 0xaf, 0xb0, 0xb0, 0xb7, 0xbb, 0xb8, 0xb3, 0xaf, 0xac, 0xa8,\n    0xa4, 0xa4, 0xa2, 0xa0, 0x9f, 0xa1, 0xa2, 0xa2, 0xa5, 0xb3, 0xc5, 0xd4, 0xdb, 0xdb, 0xd4, 0xcc,\n    0xcc, 0xc9, 0xc6, 0xc3, 0xc1, 0xbf, 0xbc, 0xba, 0xb7, 0xb2, 0xac, 0xa6, 0xa0, 0x99, 0x97, 0x98,\n    0xa3, 0xa4, 0xa8, 0xb0, 0xb6, 0xbb, 0xc0, 0xc5, 0xca, 0xc9, 0xc8, 0xc7, 0xc7, 0xc7, 0xc8, 0xc9,\n    0xcb, 0xc5, 0xc9, 0xd1, 0xc5, 0xcb, 0xc5, 0xb6, 0xbf, 0xc0, 0xcb, 0xbc, 0xcd, 0x71, 0x39, 0x53,\n    0xa3, 0xcf, 0xdd, 0x90, 0x42, 0x48, 0x84, 0xb5, 0xc3, 0xbb, 0xbe, 0xc3, 0xbe, 0xba, 0xbb, 0xbb,\n    0xd5, 0xdc, 0xd9, 0xd0, 0xd0, 0xd2, 0xd3, 0xd7, 0xd9, 0xb3, 0x9b, 0x9c, 0x9e, 0x9c, 0x9e, 0xa0,\n    0x9a, 0x9e, 0xa1, 0xa2, 0x9c, 0x94, 0x91, 0xce, 0xdb, 0x9c, 0x8a, 0x74, 0x5f, 0x89, 0xaa, 0x9c,\n    0xa3, 0x9c, 0x94, 0x94, 0x99, 0x9c, 0x96, 0x8f, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95,\n    0x91, 0xac, 0xd4, 0xcf, 0xcd, 0xcc, 0xc6, 0xb7, 0xb2, 0xb5, 0xb8, 0xb2, 0xa1, 0x78, 0xae, 0xcf,\n    0x9c, 0x5c, 0x6b, 0x84, 0x9f, 0x95, 0x92, 0x88, 0x81, 0x7b, 0x76, 0x74, 0x71, 0x6d, 0x69, 0x68,\n    0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6e, 0x6d, 0x6b, 0x69, 0x67, 0x64,\n    0x64, 0x62, 0x60, 0x5e, 0x5d, 0x5b, 0x58, 0x57, 0x55, 0x52, 0x4f, 0x4b, 0x49, 0x46, 0x43, 0x41,\n    0x3e, 0x3b, 0x39, 0x38, 0x34, 0x34, 0x3f, 0x4d, 0x56, 0x5f, 0x69, 0x72, 0x7a, 0x80, 0x81, 0x7e,\n    0x70, 0x6f, 0x6c, 0x67, 0x5f, 0x60, 0x6f, 0x80, 0x79, 0x74, 0x6e, 0x71, 0x7a, 0x7c, 0x70, 0x61,\n    0x4f, 0x4d, 0x4c, 0x46, 0x4a, 0x4a, 0x3e, 0x3f, 0x38, 0x3a, 0x39, 0x3f, 0x4d, 0x54, 0x52, 0x53,\n    0x49, 0x54, 0x5e, 0x59, 0x43, 0x2e, 0x36, 0x50, 0x50, 0x52, 0x45, 0x39, 0x38, 0x3f, 0x40, 0x42,\n    0x28, 0x26, 0x2a, 0x32, 0x35, 0x33, 0x39, 0x42, 0x47, 0x53, 0x5a, 0x58, 0x56, 0x5b, 0x5d, 0x5b,\n    0x63, 0x5f, 0x5e, 0x6b, 0x7d, 0x85, 0x79, 0x68, 0x5f, 0x63, 0x5f, 0x51, 0x40, 0x37, 0x34, 0x35,\n    0x4e, 0x4a, 0x46, 0x40, 0x36, 0x30, 0x36, 0x3f, 0x54, 0x50, 0x49, 0x42, 0x3e, 0x43, 0x4c, 0x54,\n    0x4a, 0x43, 0x3d, 0x40, 0x4d, 0x5d, 0x68, 0x6d, 0x7a, 0x62, 0x43, 0x39, 0x44, 0x47, 0x40, 0x3c,\n    0x48, 0x4f, 0x4f, 0x41, 0x2f, 0x26, 0x26, 0x2a, 0x45, 0x54, 0x69, 0x6c, 0x5f, 0x59, 0x5b, 0x59,\n    0x6f, 0x77, 0x83, 0x84, 0x78, 0x72, 0x70, 0x6a, 0x5f, 0x5e, 0x64, 0x74, 0x85, 0x8d, 0x88, 0x7f,\n    0x5f, 0x60, 0x60, 0x5f, 0x5e, 0x60, 0x66, 0x6a, 0x6c, 0x6b, 0x6b, 0x6d, 0x6c, 0x6b, 0x6d, 0x70,\n    0x69, 0x65, 0x62, 0x60, 0x5d, 0x5c, 0x5e, 0x62, 0x6e, 0x6b, 0x65, 0x5e, 0x5c, 0x5c, 0x5b, 0x58,\n    0x56, 0x54, 0x53, 0x56, 0x58, 0x59, 0x5d, 0x60, 0x63, 0x64, 0x66, 0x69, 0x69, 0x69, 0x6b, 0x6f,\n    0x74, 0x71, 0x6a, 0x61, 0x58, 0x54, 0x55, 0x57, 0x6f, 0x6a, 0x62, 0x5c, 0x59, 0x59, 0x56, 0x51,\n    0x4f, 0x4c, 0x51, 0x5c, 0x63, 0x63, 0x65, 0x6b, 0x6b, 0x6c, 0x67, 0x5d, 0x56, 0x56, 0x5b, 0x5e,\n    0x5b, 0x58, 0x5c, 0x61, 0x59, 0x4b, 0x4d, 0x59, 0x61, 0x64, 0x69, 0x6a, 0x66, 0x60, 0x5e, 0x5f,\n    0x5d, 0x61, 0x62, 0x61, 0x62, 0x65, 0x68, 0x69, 0x63, 0x6e, 0x79, 0x7a, 0x71, 0x67, 0x5e, 0x58,\n    0x5c, 0x5e, 0x63, 0x6a, 0x70, 0x72, 0x72, 0x70, 0x6b, 0x6c, 0x6e, 0x6f, 0x71, 0x73, 0x76, 0x78,\n    0x7f, 0x7f, 0x80, 0x7e, 0x7b, 0x79, 0x78, 0x79, 0x67, 0x6d, 0x72, 0x74, 0x74, 0x76, 0x77, 0x76,\n    0x71, 0x6f, 0x74, 0x7d, 0x7e, 0x79, 0x79, 0x7f, 0x7b, 0x7c, 0x81, 0x8c, 0x96, 0x95, 0x84, 0x73,\n    0x6c, 0x6f, 0x74, 0x7e, 0x88, 0x90, 0x93, 0x94, 0x81, 0x7f, 0x7d, 0xa4, 0xbf, 0xbb, 0xc2, 0xbb,\n    0xbf, 0xbc, 0xb8, 0xb4, 0xb7, 0xbe, 0xc3, 0xc4, 0xc8, 0xc7, 0xc6, 0xc6, 0xc7, 0xc7, 0xc6, 0xc6,\n    0xc4, 0xc5, 0xc5, 0xc6, 0xc5, 0xc2, 0xbe, 0xba, 0xb9, 0xb9, 0xbb, 0xbd, 0xbf, 0xc0, 0xc0, 0xbf,\n    0xbf, 0xbf, 0xbf, 0xc0, 0xc1, 0xc0, 0xbd, 0xbc, 0xba, 0xba, 0xba, 0xba, 0xba, 0xbb, 0xbc, 0xbc,\n    0xbf, 0xbe, 0xbc, 0xbc, 0xbc, 0xbb, 0xba, 0xb8, 0xb7, 0xb5, 0xb4, 0xb5, 0xb7, 0xb9, 0xb8, 0xb7,\n    0xb3, 0xb2, 0xaf, 0xab, 0xa8, 0xa7, 0xa8, 0xa9, 0xaa, 0xa9, 0xa5, 0xa1, 0x9f, 0xa0, 0xa4, 0xa8,\n    0xa6, 0xa4, 0xa1, 0x9d, 0x99, 0x94, 0x8e, 0x8a, 0x8a, 0x81, 0x80, 0x83, 0x81, 0x80, 0x7e, 0x78,\n    0x66, 0x69, 0x98, 0xc4, 0xb4, 0xb1, 0xae, 0xb1, 0xaf, 0xb5, 0xb9, 0xb8, 0xb4, 0xb0, 0xab, 0xa7,\n    0xa7, 0xa4, 0xa0, 0x9e, 0x9f, 0xa1, 0xa3, 0xa4, 0xac, 0xbd, 0xd2, 0xde, 0xdf, 0xda, 0xd1, 0xca,\n    0xcb, 0xc6, 0xc1, 0xbf, 0xbe, 0xbd, 0xba, 0xb7, 0xb4, 0xad, 0xa6, 0xa4, 0xa1, 0x9c, 0x97, 0x94,\n    0xa3, 0xa6, 0xac, 0xb2, 0xb7, 0xba, 0xbf, 0xc4, 0xcb, 0xca, 0xc9, 0xc8, 0xc8, 0xc9, 0xc9, 0xca,\n    0xcc, 0xc5, 0xc4, 0xce, 0xc8, 0xd0, 0xc7, 0xc5, 0xce, 0xc7, 0xcc, 0xc1, 0xbd, 0x43, 0x3c, 0x8f,\n    0xdf, 0xdb, 0xeb, 0xdd, 0x92, 0x43, 0x48, 0xc4, 0xcf, 0xc8, 0xca, 0xd0, 0xd0, 0xcf, 0xd0, 0xcf,\n    0xd5, 0xdd, 0xd9, 0xd1, 0xd0, 0xd2, 0xd4, 0xd8, 0xdb, 0xb5, 0x9b, 0x9b, 0x9d, 0x9c, 0x9e, 0xa1,\n    0x9f, 0xa2, 0xa3, 0xa5, 0x9c, 0x8d, 0x93, 0xe3, 0xe6, 0x8f, 0x6c, 0xa0, 0xa2, 0x8a, 0x94, 0x9e,\n    0x9c, 0x9c, 0x9c, 0x9e, 0x9f, 0x9d, 0x98, 0x95, 0x93, 0x93, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94,\n    0x92, 0xa9, 0xd0, 0xcd, 0xce, 0xce, 0xc9, 0xba, 0xb2, 0xb9, 0xbd, 0xb2, 0xa1, 0x79, 0xa6, 0xcf,\n    0x93, 0x5a, 0x73, 0x8c, 0xa1, 0x94, 0x8e, 0x86, 0x7f, 0x7a, 0x75, 0x74, 0x72, 0x6d, 0x68, 0x66,\n    0x6c, 0x6d, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6d, 0x6d, 0x6c, 0x6c, 0x6b, 0x68, 0x64, 0x61,\n    0x61, 0x5f, 0x5d, 0x5b, 0x5a, 0x58, 0x55, 0x53, 0x51, 0x4f, 0x4c, 0x49, 0x46, 0x43, 0x3f, 0x3d,\n    0x39, 0x39, 0x36, 0x32, 0x34, 0x40, 0x54, 0x64, 0x65, 0x67, 0x6a, 0x6f, 0x76, 0x7b, 0x79, 0x74,\n    0x6d, 0x6e, 0x6a, 0x61, 0x5e, 0x68, 0x77, 0x82, 0x7c, 0x77, 0x70, 0x6a, 0x69, 0x66, 0x5e, 0x56,\n    0x68, 0x5d, 0x4e, 0x3f, 0x47, 0x53, 0x4e, 0x51, 0x3c, 0x38, 0x2f, 0x30, 0x3e, 0x4a, 0x51, 0x58,\n    0x5f, 0x55, 0x50, 0x4b, 0x41, 0x3c, 0x40, 0x44, 0x4a, 0x50, 0x47, 0x54, 0x58, 0x5f, 0x45, 0x39,\n    0x40, 0x3b, 0x36, 0x31, 0x2b, 0x28, 0x2c, 0x31, 0x49, 0x4c, 0x4e, 0x53, 0x5d, 0x62, 0x56, 0x45,\n    0x47, 0x55, 0x65, 0x6c, 0x6b, 0x66, 0x60, 0x5b, 0x64, 0x60, 0x56, 0x4e, 0x51, 0x59, 0x5c, 0x59,\n    0x4f, 0x49, 0x43, 0x41, 0x43, 0x49, 0x4e, 0x52, 0x59, 0x53, 0x46, 0x35, 0x28, 0x27, 0x30, 0x3a,\n    0x40, 0x32, 0x26, 0x28, 0x36, 0x41, 0x40, 0x3a, 0x34, 0x38, 0x3d, 0x45, 0x45, 0x34, 0x23, 0x22,\n    0x34, 0x3b, 0x3c, 0x36, 0x32, 0x34, 0x33, 0x2d, 0x33, 0x41, 0x5c, 0x74, 0x7f, 0x85, 0x81, 0x75,\n    0x6c, 0x6d, 0x7a, 0x8b, 0x93, 0x97, 0x96, 0x8f, 0x87, 0x86, 0x82, 0x7c, 0x76, 0x74, 0x76, 0x79,\n    0x66, 0x65, 0x65, 0x64, 0x65, 0x66, 0x69, 0x6a, 0x6c, 0x6c, 0x6d, 0x6e, 0x6b, 0x67, 0x65, 0x66,\n    0x65, 0x62, 0x5f, 0x5d, 0x5c, 0x5d, 0x5f, 0x61, 0x62, 0x61, 0x5e, 0x5a, 0x59, 0x59, 0x56, 0x53,\n    0x55, 0x55, 0x56, 0x5a, 0x5c, 0x5e, 0x5e, 0x5f, 0x5d, 0x5d, 0x5f, 0x61, 0x64, 0x64, 0x64, 0x64,\n    0x63, 0x66, 0x69, 0x65, 0x5e, 0x59, 0x5a, 0x5d, 0x62, 0x5e, 0x5a, 0x59, 0x5a, 0x5a, 0x57, 0x54,\n    0x50, 0x4e, 0x56, 0x63, 0x66, 0x5f, 0x5e, 0x65, 0x6a, 0x68, 0x61, 0x5c, 0x5d, 0x62, 0x64, 0x61,\n    0x53, 0x52, 0x53, 0x54, 0x4c, 0x43, 0x46, 0x50, 0x5b, 0x62, 0x69, 0x6c, 0x68, 0x60, 0x5b, 0x59,\n    0x5e, 0x5b, 0x5b, 0x62, 0x6d, 0x72, 0x6c, 0x64, 0x69, 0x73, 0x7b, 0x79, 0x72, 0x6e, 0x6e, 0x6f,\n    0x6f, 0x6c, 0x6a, 0x6a, 0x6d, 0x6e, 0x6e, 0x6d, 0x6e, 0x6f, 0x70, 0x74, 0x7e, 0x86, 0x85, 0x7e,\n    0x7c, 0x7b, 0x7c, 0x7e, 0x7d, 0x7b, 0x7f, 0x86, 0x7a, 0x81, 0x84, 0x81, 0x7c, 0x7a, 0x76, 0x72,\n    0x7c, 0x7e, 0x85, 0x8b, 0x88, 0x7d, 0x74, 0x71, 0x76, 0x79, 0x7f, 0x85, 0x85, 0x81, 0x7f, 0x80,\n    0x84, 0x86, 0x86, 0x80, 0x79, 0x7a, 0x82, 0x8a, 0x8a, 0x88, 0x97, 0xbc, 0xc5, 0xb8, 0xc0, 0xc6,\n    0xc1, 0xc1, 0xbd, 0xb8, 0xb7, 0xbd, 0xc4, 0xc7, 0xc3, 0xc5, 0xc8, 0xca, 0xcb, 0xc9, 0xc6, 0xc3,\n    0xc5, 0xc4, 0xc4, 0xc4, 0xc4, 0xc2, 0xc0, 0xbd, 0xbd, 0xbb, 0xb9, 0xb9, 0xbb, 0xbb, 0xba, 0xb9,\n    0xbe, 0xbe, 0xbf, 0xc0, 0xc1, 0xc0, 0xbe, 0xbc, 0xbf, 0xbe, 0xbe, 0xbd, 0xbd, 0xbe, 0xbe, 0xbe,\n    0xbe, 0xbd, 0xbc, 0xbc, 0xbc, 0xbb, 0xba, 0xb8, 0xba, 0xb8, 0xb5, 0xb4, 0xb4, 0xb5, 0xb5, 0xb4,\n    0xb5, 0xb3, 0xb0, 0xac, 0xa8, 0xa5, 0xa4, 0xa3, 0xa3, 0xa3, 0xa2, 0xa0, 0x9d, 0x9d, 0xa0, 0xa3,\n    0xaa, 0xa8, 0xa5, 0xa2, 0x9e, 0x98, 0x91, 0x8b, 0x87, 0x7f, 0x7f, 0x84, 0x84, 0x83, 0x80, 0x7a,\n    0x62, 0x6c, 0x9b, 0xca, 0xbb, 0xb0, 0xac, 0xb1, 0xae, 0xb2, 0xb7, 0xb9, 0xb6, 0xb1, 0xab, 0xa6,\n    0xa6, 0xa3, 0xa0, 0xa0, 0xa1, 0xa3, 0xa7, 0xaa, 0xb7, 0xc9, 0xdc, 0xe3, 0xdf, 0xd6, 0xce, 0xc9,\n    0xc7, 0xc2, 0xbe, 0xbd, 0xbe, 0xbd, 0xb9, 0xb5, 0xad, 0xa9, 0xa5, 0xa7, 0xa7, 0xa3, 0x9e, 0x9b,\n    0xad, 0xb1, 0xb7, 0xbc, 0xbe, 0xbf, 0xc3, 0xc9, 0xcd, 0xcd, 0xcd, 0xcd, 0xce, 0xcf, 0xd0, 0xd1,\n    0xc1, 0xd2, 0xcd, 0xd5, 0xd5, 0xa8, 0x67, 0x66, 0xa2, 0xd0, 0xc8, 0xc7, 0xaa, 0x32, 0x47, 0xb9,\n    0xe9, 0xdf, 0xdc, 0xe8, 0xd7, 0x60, 0x46, 0xab, 0xc9, 0xc1, 0xc2, 0xc9, 0xca, 0xcb, 0xcc, 0xc8,\n    0xd2, 0xda, 0xd7, 0xcf, 0xcf, 0xd1, 0xd3, 0xd6, 0xdc, 0xb7, 0x9f, 0xa0, 0xa2, 0x9f, 0x9f, 0xa0,\n    0xa9, 0xa1, 0x9c, 0xa4, 0x9f, 0x88, 0x87, 0xda, 0xea, 0x8f, 0x5a, 0xc1, 0xbc, 0x82, 0x6f, 0x83,\n    0x97, 0x9a, 0x9e, 0x9e, 0x99, 0x94, 0x94, 0x97, 0x93, 0x93, 0x93, 0x93, 0x93, 0x94, 0x94, 0x94,\n    0x93, 0xa6, 0xcc, 0xcb, 0xcf, 0xce, 0xc9, 0xbc, 0xb2, 0xb3, 0xb6, 0xb3, 0xa9, 0x80, 0x96, 0xc3,\n    0x8b, 0x64, 0x8a, 0x94, 0x9d, 0x92, 0x8b, 0x84, 0x7d, 0x78, 0x73, 0x71, 0x6f, 0x6b, 0x68, 0x68,\n    0x6a, 0x6b, 0x6d, 0x6e, 0x6f, 0x6e, 0x6d, 0x6d, 0x6c, 0x6b, 0x6a, 0x69, 0x68, 0x66, 0x63, 0x60,\n    0x60, 0x5e, 0x5b, 0x59, 0x57, 0x55, 0x53, 0x51, 0x4d, 0x4c, 0x49, 0x47, 0x44, 0x41, 0x3c, 0x3a,\n    0x39, 0x39, 0x35, 0x34, 0x41, 0x58, 0x6d, 0x77, 0x72, 0x70, 0x6f, 0x70, 0x73, 0x75, 0x73, 0x70,\n    0x74, 0x6e, 0x66, 0x65, 0x6a, 0x73, 0x77, 0x77, 0x69, 0x68, 0x68, 0x68, 0x6b, 0x71, 0x75, 0x77,\n    0x60, 0x56, 0x48, 0x36, 0x3b, 0x46, 0x40, 0x42, 0x3d, 0x31, 0x25, 0x2d, 0x47, 0x56, 0x57, 0x57,\n    0x53, 0x4b, 0x4c, 0x4b, 0x42, 0x43, 0x48, 0x42, 0x48, 0x4f, 0x47, 0x42, 0x3b, 0x41, 0x44, 0x51,\n    0x75, 0x6a, 0x54, 0x3b, 0x29, 0x22, 0x23, 0x25, 0x35, 0x48, 0x58, 0x59, 0x52, 0x4d, 0x47, 0x3f,\n    0x46, 0x52, 0x5f, 0x67, 0x68, 0x67, 0x63, 0x5f, 0x46, 0x4b, 0x4d, 0x47, 0x3e, 0x3c, 0x43, 0x4c,\n    0x53, 0x55, 0x55, 0x51, 0x51, 0x55, 0x5a, 0x5c, 0x38, 0x34, 0x30, 0x2f, 0x32, 0x34, 0x36, 0x35,\n    0x39, 0x34, 0x2e, 0x28, 0x25, 0x21, 0x1e, 0x1c, 0x14, 0x2c, 0x3d, 0x39, 0x27, 0x17, 0x1b, 0x2e,\n    0x3e, 0x43, 0x44, 0x46, 0x53, 0x60, 0x5a, 0x4a, 0x3b, 0x3f, 0x50, 0x69, 0x7f, 0x90, 0x92, 0x87,\n    0x73, 0x6c, 0x74, 0x87, 0x92, 0x92, 0x8a, 0x7f, 0x69, 0x69, 0x72, 0x88, 0xa1, 0xae, 0xab, 0xa2,\n    0x5e, 0x5d, 0x5c, 0x5c, 0x5e, 0x62, 0x66, 0x68, 0x71, 0x70, 0x70, 0x6e, 0x68, 0x5f, 0x59, 0x58,\n    0x61, 0x62, 0x62, 0x61, 0x5f, 0x5e, 0x5c, 0x5b, 0x57, 0x5a, 0x5c, 0x5c, 0x5c, 0x5c, 0x5a, 0x56,\n    0x5b, 0x5b, 0x5c, 0x5d, 0x5f, 0x60, 0x5f, 0x5d, 0x58, 0x5a, 0x5c, 0x5c, 0x5c, 0x59, 0x54, 0x51,\n    0x59, 0x61, 0x69, 0x6c, 0x69, 0x65, 0x64, 0x66, 0x5a, 0x57, 0x55, 0x57, 0x5b, 0x5b, 0x59, 0x57,\n    0x56, 0x53, 0x58, 0x62, 0x62, 0x5b, 0x5d, 0x67, 0x66, 0x5d, 0x57, 0x58, 0x5c, 0x5d, 0x5c, 0x5b,\n    0x59, 0x59, 0x55, 0x4d, 0x4a, 0x4c, 0x50, 0x53, 0x65, 0x6a, 0x70, 0x6e, 0x68, 0x60, 0x5a, 0x56,\n    0x5b, 0x60, 0x67, 0x6c, 0x6b, 0x6a, 0x6a, 0x6b, 0x78, 0x72, 0x6c, 0x6a, 0x72, 0x7c, 0x80, 0x80,\n    0x79, 0x75, 0x70, 0x6c, 0x6b, 0x6a, 0x69, 0x68, 0x6b, 0x72, 0x77, 0x7a, 0x82, 0x8b, 0x8c, 0x87,\n    0x84, 0x7e, 0x7c, 0x7e, 0x7d, 0x7b, 0x7f, 0x86, 0x89, 0x8d, 0x8b, 0x81, 0x7a, 0x77, 0x72, 0x6d,\n    0x7a, 0x8b, 0x98, 0x91, 0x82, 0x78, 0x78, 0x7a, 0x78, 0x76, 0x7a, 0x82, 0x86, 0x81, 0x78, 0x72,\n    0x73, 0x82, 0x90, 0x92, 0x87, 0x79, 0x71, 0x70, 0x82, 0x82, 0xa5, 0xc4, 0xcb, 0xc5, 0xc0, 0xcc,\n    0xca, 0xcc, 0xca, 0xc5, 0xc2, 0xc5, 0xca, 0xcc, 0xcb, 0xcd, 0xcf, 0xcf, 0xce, 0xcb, 0xc8, 0xc6,\n    0xc3, 0xc2, 0xc1, 0xc2, 0xc3, 0xc4, 0xc4, 0xc4, 0xc1, 0xbd, 0xb9, 0xb7, 0xb7, 0xb8, 0xb8, 0xb7,\n    0xbc, 0xbc, 0xbd, 0xbf, 0xc0, 0xc0, 0xbf, 0xbd, 0xc2, 0xc1, 0xc0, 0xbf, 0xbe, 0xbe, 0xbe, 0xbe,\n    0xbb, 0xbb, 0xba, 0xba, 0xbb, 0xbb, 0xb9, 0xb7, 0xbb, 0xb8, 0xb6, 0xb3, 0xb3, 0xb3, 0xb2, 0xb2,\n    0xb3, 0xb3, 0xb1, 0xaf, 0xac, 0xa9, 0xa5, 0xa3, 0xa2, 0xa5, 0xa8, 0xa8, 0xa6, 0xa4, 0xa3, 0xa3,\n    0xab, 0xa8, 0xa6, 0xa4, 0xa1, 0x9b, 0x92, 0x8c, 0x85, 0x7e, 0x7f, 0x85, 0x85, 0x84, 0x81, 0x7b,\n    0x5b, 0x70, 0x9f, 0xd0, 0xc0, 0xaf, 0xab, 0xaf, 0xb0, 0xb2, 0xb7, 0xbb, 0xba, 0xb4, 0xad, 0xa9,\n    0xa5, 0xa2, 0xa0, 0xa2, 0xa2, 0xa4, 0xa9, 0xaf, 0xc4, 0xd3, 0xe1, 0xe2, 0xda, 0xd0, 0xca, 0xc7,\n    0xc4, 0xc0, 0xbd, 0xbd, 0xbe, 0xbc, 0xb5, 0xb0, 0xa7, 0xa6, 0xa8, 0xab, 0xab, 0xa7, 0xa4, 0xa4,\n    0xb2, 0xb5, 0xbb, 0xc0, 0xc2, 0xc2, 0xc6, 0xcc, 0xcd, 0xcd, 0xcd, 0xce, 0xce, 0xcf, 0xd0, 0xd0,\n    0xcc, 0xd2, 0xc4, 0xc6, 0xbe, 0x73, 0x3d, 0x41, 0x43, 0xa2, 0xcc, 0xc7, 0xa2, 0x3b, 0x45, 0xc0,\n    0xe7, 0xea, 0xdf, 0xdf, 0xe2, 0x74, 0x40, 0x96, 0xd0, 0xc7, 0xc5, 0xc8, 0xc7, 0xc8, 0xc6, 0xc0,\n    0xce, 0xd6, 0xd5, 0xce, 0xcf, 0xd1, 0xd2, 0xd5, 0xdd, 0xb8, 0xa0, 0xa1, 0xa2, 0xa0, 0xa0, 0xa1,\n    0xa5, 0x9e, 0x99, 0xa0, 0xa3, 0x94, 0x80, 0xb2, 0xe4, 0x92, 0x66, 0xce, 0x91, 0x7e, 0x7f, 0x83,\n    0xa8, 0xa1, 0x9b, 0x9a, 0x99, 0x97, 0x96, 0x97, 0x93, 0x93, 0x93, 0x93, 0x93, 0x94, 0x94, 0x94,\n    0x94, 0xa4, 0xc9, 0xcb, 0xcf, 0xcd, 0xc8, 0xbc, 0xb4, 0xae, 0xb2, 0xb3, 0xae, 0x83, 0x85, 0xbd,\n    0x86, 0x69, 0x90, 0x88, 0x8e, 0x93, 0x8e, 0x82, 0x7b, 0x76, 0x70, 0x6c, 0x67, 0x64, 0x66, 0x69,\n    0x6a, 0x6b, 0x6c, 0x6e, 0x6e, 0x6d, 0x6c, 0x6b, 0x6c, 0x6a, 0x67, 0x66, 0x64, 0x63, 0x61, 0x60,\n    0x5e, 0x5c, 0x5a, 0x57, 0x56, 0x53, 0x51, 0x4f, 0x4a, 0x49, 0x47, 0x44, 0x42, 0x3f, 0x3b, 0x38,\n    0x3a, 0x38, 0x36, 0x3d, 0x54, 0x6f, 0x7e, 0x7e, 0x79, 0x78, 0x76, 0x74, 0x71, 0x6f, 0x6f, 0x70,\n    0x7b, 0x6e, 0x65, 0x68, 0x6e, 0x6f, 0x6e, 0x6f, 0x71, 0x6b, 0x66, 0x6a, 0x70, 0x72, 0x6b, 0x64,\n    0x71, 0x6a, 0x5d, 0x46, 0x40, 0x3f, 0x35, 0x38, 0x2d, 0x26, 0x23, 0x34, 0x4c, 0x50, 0x40, 0x36,\n    0x44, 0x43, 0x4a, 0x4a, 0x40, 0x47, 0x56, 0x59, 0x60, 0x65, 0x67, 0x5c, 0x61, 0x64, 0x7f, 0x97,\n    0x98, 0x91, 0x80, 0x66, 0x51, 0x45, 0x3e, 0x39, 0x38, 0x47, 0x52, 0x4f, 0x48, 0x43, 0x3b, 0x32,\n    0x3c, 0x49, 0x57, 0x5d, 0x59, 0x4f, 0x41, 0x36, 0x4a, 0x42, 0x41, 0x4d, 0x59, 0x5c, 0x5d, 0x5f,\n    0x5b, 0x67, 0x6f, 0x6a, 0x60, 0x5f, 0x67, 0x6f, 0x7b, 0x73, 0x6a, 0x62, 0x5b, 0x51, 0x45, 0x3b,\n    0x39, 0x36, 0x31, 0x2d, 0x2b, 0x2b, 0x2b, 0x2c, 0x34, 0x4e, 0x58, 0x49, 0x38, 0x32, 0x3b, 0x4a,\n    0x5e, 0x55, 0x46, 0x44, 0x5a, 0x76, 0x7c, 0x72, 0x63, 0x65, 0x6d, 0x72, 0x72, 0x7a, 0x81, 0x7f,\n    0x93, 0x7b, 0x63, 0x4f, 0x3b, 0x33, 0x39, 0x3d, 0x53, 0x65, 0x7a, 0x82, 0x7d, 0x73, 0x6e, 0x6d,\n    0x57, 0x55, 0x53, 0x54, 0x58, 0x5f, 0x67, 0x6d, 0x6e, 0x6c, 0x6b, 0x69, 0x64, 0x5d, 0x59, 0x5a,\n    0x60, 0x64, 0x66, 0x63, 0x5e, 0x5a, 0x55, 0x51, 0x58, 0x5f, 0x66, 0x68, 0x69, 0x6a, 0x6a, 0x69,\n    0x6a, 0x67, 0x62, 0x5f, 0x60, 0x64, 0x64, 0x63, 0x62, 0x65, 0x66, 0x62, 0x5c, 0x56, 0x50, 0x4c,\n    0x54, 0x5b, 0x64, 0x68, 0x68, 0x64, 0x61, 0x60, 0x56, 0x52, 0x52, 0x57, 0x5e, 0x62, 0x64, 0x65,\n    0x63, 0x5b, 0x58, 0x5c, 0x5d, 0x5c, 0x62, 0x6b, 0x68, 0x60, 0x5c, 0x5c, 0x58, 0x52, 0x53, 0x5a,\n    0x60, 0x60, 0x59, 0x4f, 0x4f, 0x58, 0x5d, 0x5b, 0x68, 0x6c, 0x6d, 0x68, 0x63, 0x60, 0x60, 0x5f,\n    0x5f, 0x63, 0x68, 0x68, 0x64, 0x60, 0x63, 0x68, 0x72, 0x6d, 0x65, 0x60, 0x65, 0x72, 0x80, 0x87,\n    0x77, 0x76, 0x73, 0x70, 0x6d, 0x6b, 0x6a, 0x69, 0x66, 0x73, 0x7c, 0x7c, 0x7a, 0x80, 0x8b, 0x92,\n    0x9b, 0x92, 0x8b, 0x8a, 0x88, 0x83, 0x81, 0x82, 0x89, 0x89, 0x82, 0x76, 0x71, 0x74, 0x74, 0x6f,\n    0x73, 0x7f, 0x84, 0x7c, 0x74, 0x76, 0x7c, 0x7e, 0x7a, 0x77, 0x78, 0x7d, 0x81, 0x7d, 0x75, 0x6e,\n    0x70, 0x79, 0x84, 0x8b, 0x8a, 0x81, 0x75, 0x6e, 0x69, 0x82, 0xb7, 0xcb, 0xcd, 0xcb, 0xc1, 0xd3,\n    0xcc, 0xd0, 0xd1, 0xcd, 0xca, 0xcb, 0xcd, 0xce, 0xcf, 0xcf, 0xce, 0xcd, 0xcc, 0xcc, 0xce, 0xd0,\n    0xcd, 0xcb, 0xc9, 0xc7, 0xc7, 0xc6, 0xc6, 0xc5, 0xc3, 0xc0, 0xbd, 0xba, 0xb9, 0xba, 0xbb, 0xbc,\n    0xbc, 0xbb, 0xbc, 0xbd, 0xbf, 0xc0, 0xbf, 0xbe, 0xc1, 0xc1, 0xbf, 0xbe, 0xbd, 0xbc, 0xbb, 0xbb,\n    0xba, 0xba, 0xba, 0xba, 0xbb, 0xbb, 0xb9, 0xb8, 0xb9, 0xb7, 0xb5, 0xb3, 0xb2, 0xb2, 0xb2, 0xb2,\n    0xaf, 0xaf, 0xaf, 0xb0, 0xb0, 0xae, 0xab, 0xa9, 0xa6, 0xa8, 0xab, 0xad, 0xad, 0xab, 0xa8, 0xa5,\n    0xa8, 0xa6, 0xa3, 0xa2, 0xa0, 0x9a, 0x92, 0x8c, 0x86, 0x7e, 0x7f, 0x84, 0x84, 0x83, 0x80, 0x79,\n    0x55, 0x73, 0x9f, 0xd0, 0xc2, 0xb1, 0xac, 0xab, 0xae, 0xaf, 0xb3, 0xb8, 0xb9, 0xb4, 0xac, 0xa8,\n    0xa4, 0xa2, 0xa1, 0xa3, 0xa2, 0xa3, 0xac, 0xb6, 0xd2, 0xdb, 0xe2, 0xde, 0xd4, 0xcb, 0xc6, 0xc3,\n    0xc3, 0xc1, 0xbe, 0xbd, 0xbb, 0xb6, 0xaf, 0xa9, 0xa4, 0xa6, 0xaa, 0xad, 0xac, 0xa8, 0xa6, 0xa8,\n    0xb1, 0xb3, 0xb8, 0xbd, 0xc0, 0xc1, 0xc5, 0xca, 0xce, 0xce, 0xce, 0xcd, 0xcd, 0xcd, 0xcd, 0xcc,\n    0xc7, 0xc5, 0xce, 0xd1, 0xa2, 0x42, 0x51, 0x63, 0x44, 0x4a, 0xbd, 0xdb, 0x9e, 0x39, 0x4d, 0xc9,\n    0xe7, 0xdc, 0xde, 0xed, 0xe8, 0x81, 0x2e, 0xa3, 0xcb, 0xc3, 0xc1, 0xc2, 0xc0, 0xc1, 0xc0, 0xba,\n    0xca, 0xd4, 0xd4, 0xcf, 0xd1, 0xd2, 0xd3, 0xd5, 0xde, 0xb7, 0x9c, 0x9c, 0x9d, 0x9d, 0xa0, 0xa3,\n    0x9e, 0xa3, 0xa2, 0x9e, 0xa1, 0xa5, 0x80, 0x83, 0xcf, 0x9b, 0x92, 0xd4, 0x75, 0xa5, 0xaf, 0x7d,\n    0x96, 0x97, 0x9b, 0xa1, 0xa0, 0x9a, 0x97, 0x99, 0x94, 0x94, 0x94, 0x94, 0x93, 0x93, 0x93, 0x93,\n    0x93, 0xa2, 0xc7, 0xcb, 0xcf, 0xcb, 0xc6, 0xbd, 0xb5, 0xb1, 0xb4, 0xb1, 0xac, 0x84, 0x78, 0xb8,\n    0x82, 0x62, 0x82, 0x6e, 0x7c, 0x95, 0x91, 0x7e, 0x77, 0x70, 0x68, 0x63, 0x60, 0x5f, 0x63, 0x68,\n    0x6a, 0x6b, 0x6b, 0x6c, 0x6c, 0x6b, 0x6a, 0x6a, 0x6a, 0x67, 0x64, 0x62, 0x61, 0x60, 0x5f, 0x5e,\n    0x5c, 0x5a, 0x57, 0x55, 0x53, 0x50, 0x4e, 0x4c, 0x47, 0x46, 0x43, 0x41, 0x40, 0x3d, 0x3a, 0x38,\n    0x36, 0x37, 0x3b, 0x49, 0x61, 0x76, 0x7c, 0x78, 0x7a, 0x7a, 0x79, 0x76, 0x70, 0x6b, 0x6c, 0x71,\n    0x77, 0x6c, 0x65, 0x66, 0x65, 0x63, 0x69, 0x72, 0x74, 0x6f, 0x6a, 0x68, 0x67, 0x64, 0x63, 0x64,\n    0x76, 0x71, 0x6a, 0x57, 0x4b, 0x45, 0x3d, 0x46, 0x47, 0x4f, 0x52, 0x4f, 0x43, 0x30, 0x26, 0x2c,\n    0x43, 0x3f, 0x40, 0x43, 0x46, 0x4d, 0x54, 0x55, 0x64, 0x63, 0x68, 0x5f, 0x69, 0x5d, 0x66, 0x6e,\n    0x88, 0x8b, 0x8a, 0x7f, 0x6d, 0x5a, 0x49, 0x3e, 0x36, 0x33, 0x2e, 0x30, 0x3c, 0x44, 0x3a, 0x28,\n    0x3a, 0x4d, 0x5a, 0x4e, 0x35, 0x28, 0x2e, 0x3a, 0x3d, 0x58, 0x72, 0x6e, 0x4f, 0x38, 0x41, 0x57,\n    0x6b, 0x64, 0x5c, 0x55, 0x56, 0x5d, 0x68, 0x70, 0x6e, 0x71, 0x72, 0x6f, 0x66, 0x5b, 0x53, 0x4e,\n    0x4c, 0x47, 0x3e, 0x34, 0x2c, 0x2a, 0x2f, 0x33, 0x3b, 0x53, 0x60, 0x60, 0x61, 0x5e, 0x51, 0x44,\n    0x4f, 0x3e, 0x29, 0x27, 0x43, 0x6a, 0x81, 0x86, 0x7d, 0x7d, 0x7e, 0x79, 0x6d, 0x6a, 0x6a, 0x65,\n    0x52, 0x4d, 0x4f, 0x51, 0x4b, 0x44, 0x3e, 0x37, 0x39, 0x2e, 0x21, 0x1d, 0x21, 0x26, 0x26, 0x24,\n    0x5a, 0x5a, 0x59, 0x59, 0x5b, 0x61, 0x69, 0x6f, 0x66, 0x66, 0x66, 0x67, 0x64, 0x5f, 0x5d, 0x5e,\n    0x60, 0x65, 0x67, 0x61, 0x5a, 0x55, 0x52, 0x4e, 0x53, 0x5d, 0x66, 0x69, 0x69, 0x6c, 0x70, 0x73,\n    0x72, 0x6f, 0x67, 0x61, 0x62, 0x68, 0x69, 0x68, 0x6c, 0x70, 0x6f, 0x66, 0x5b, 0x56, 0x55, 0x54,\n    0x4d, 0x51, 0x58, 0x5f, 0x64, 0x65, 0x64, 0x62, 0x53, 0x4e, 0x4c, 0x53, 0x5d, 0x66, 0x6f, 0x74,\n    0x6c, 0x62, 0x5a, 0x5b, 0x61, 0x65, 0x66, 0x65, 0x69, 0x65, 0x64, 0x64, 0x5f, 0x58, 0x58, 0x5c,\n    0x59, 0x57, 0x52, 0x4e, 0x4f, 0x55, 0x59, 0x5a, 0x63, 0x67, 0x68, 0x64, 0x61, 0x63, 0x66, 0x67,\n    0x65, 0x5e, 0x5b, 0x61, 0x67, 0x66, 0x60, 0x5c, 0x5f, 0x66, 0x67, 0x5f, 0x5a, 0x61, 0x73, 0x82,\n    0x77, 0x77, 0x74, 0x70, 0x6b, 0x6a, 0x6c, 0x6e, 0x73, 0x7a, 0x7e, 0x7c, 0x7a, 0x80, 0x8f, 0x9c,\n    0x9e, 0x95, 0x8c, 0x89, 0x88, 0x84, 0x7a, 0x73, 0x7b, 0x7c, 0x78, 0x72, 0x75, 0x7f, 0x82, 0x7d,\n    0x75, 0x71, 0x6c, 0x6b, 0x70, 0x76, 0x79, 0x78, 0x80, 0x82, 0x81, 0x7e, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x84, 0x80, 0x7c, 0x7a, 0x79, 0x75, 0x70, 0x6b, 0x6d, 0xa0, 0xc8, 0xcc, 0xc9, 0xc6, 0xc5, 0xd0,\n    0xc6, 0xcb, 0xce, 0xcc, 0xcb, 0xcc, 0xcd, 0xcc, 0xcb, 0xcb, 0xca, 0xc9, 0xc8, 0xca, 0xcd, 0xd1,\n    0xd2, 0xd0, 0xcf, 0xcd, 0xcc, 0xca, 0xc6, 0xc4, 0xc5, 0xc5, 0xc4, 0xc1, 0xbf, 0xbe, 0xbf, 0xc0,\n    0xbc, 0xbb, 0xbb, 0xbc, 0xbe, 0xc0, 0xc0, 0xc0, 0xc1, 0xc0, 0xbe, 0xbc, 0xbb, 0xb9, 0xb8, 0xb8,\n    0xba, 0xba, 0xbb, 0xbc, 0xbd, 0xbc, 0xbb, 0xb9, 0xb7, 0xb7, 0xb5, 0xb2, 0xb0, 0xae, 0xae, 0xae,\n    0xab, 0xab, 0xab, 0xad, 0xaf, 0xaf, 0xae, 0xac, 0xa9, 0xa7, 0xa6, 0xa8, 0xaa, 0xab, 0xa9, 0xa7,\n    0xa7, 0xa4, 0xa2, 0xa1, 0xa0, 0x9c, 0x94, 0x8d, 0x86, 0x7e, 0x7f, 0x84, 0x83, 0x82, 0x7f, 0x78,\n    0x54, 0x76, 0x9c, 0xcc, 0xc5, 0xb8, 0xb2, 0xab, 0xad, 0xab, 0xae, 0xb5, 0xb7, 0xb2, 0xaa, 0xa6,\n    0xa3, 0xa1, 0xa1, 0xa3, 0xa3, 0xa7, 0xb5, 0xc6, 0xdb, 0xe0, 0xe0, 0xda, 0xd1, 0xc9, 0xc3, 0xbe,\n    0xc1, 0xbf, 0xbc, 0xb9, 0xb5, 0xb0, 0xa9, 0xa5, 0xa5, 0xa7, 0xac, 0xb0, 0xb0, 0xad, 0xac, 0xad,\n    0xb7, 0xb7, 0xb9, 0xbd, 0xc0, 0xc1, 0xc4, 0xc7, 0xce, 0xce, 0xce, 0xce, 0xce, 0xcd, 0xcd, 0xcc,\n    0xcd, 0xc7, 0xd0, 0xd1, 0xa4, 0x48, 0xab, 0xe9, 0x9e, 0x3c, 0x7d, 0xd9, 0x9d, 0x2d, 0x4b, 0xc8,\n    0xe5, 0xe4, 0xe8, 0xe8, 0xe5, 0x80, 0x3a, 0x9a, 0xcd, 0xc7, 0xc6, 0xc6, 0xc4, 0xc6, 0xc7, 0xc1,\n    0xc6, 0xd1, 0xd3, 0xd0, 0xd2, 0xd4, 0xd3, 0xd5, 0xdb, 0xb4, 0x9a, 0x9a, 0x9d, 0x9c, 0x9f, 0xa2,\n    0x9f, 0xa2, 0xa5, 0x9e, 0x9c, 0xa8, 0x85, 0x78, 0xc8, 0xd3, 0xcf, 0xb4, 0x62, 0xb2, 0x9f, 0x56,\n    0x74, 0x7b, 0x8b, 0x98, 0x9a, 0x92, 0x90, 0x93, 0x95, 0x95, 0x94, 0x94, 0x93, 0x92, 0x92, 0x92,\n    0x90, 0x9f, 0xc6, 0xcc, 0xcf, 0xc9, 0xc4, 0xbe, 0xb5, 0xb5, 0xb5, 0xab, 0xad, 0x8e, 0x6f, 0xa5,\n    0x80, 0x5c, 0x7c, 0x66, 0x75, 0x91, 0x8b, 0x79, 0x6d, 0x63, 0x5a, 0x59, 0x5c, 0x60, 0x64, 0x67,\n    0x6a, 0x6a, 0x6a, 0x6a, 0x69, 0x69, 0x68, 0x68, 0x65, 0x64, 0x62, 0x60, 0x5f, 0x5e, 0x5b, 0x5a,\n    0x58, 0x56, 0x53, 0x51, 0x4f, 0x4c, 0x49, 0x47, 0x45, 0x43, 0x40, 0x3e, 0x3d, 0x3b, 0x39, 0x38,\n    0x35, 0x3d, 0x4b, 0x5b, 0x6b, 0x75, 0x77, 0x75, 0x77, 0x76, 0x77, 0x76, 0x70, 0x6a, 0x6b, 0x6f,\n    0x6d, 0x68, 0x62, 0x5f, 0x61, 0x67, 0x6f, 0x75, 0x70, 0x6d, 0x65, 0x55, 0x40, 0x32, 0x34, 0x3c,\n    0x42, 0x46, 0x51, 0x52, 0x53, 0x4f, 0x4c, 0x5c, 0x76, 0x79, 0x73, 0x60, 0x48, 0x33, 0x33, 0x43,\n    0x36, 0x3d, 0x41, 0x41, 0x3f, 0x3d, 0x45, 0x55, 0x6e, 0x73, 0x74, 0x6b, 0x63, 0x5d, 0x70, 0x8b,\n    0x88, 0x8c, 0x91, 0x91, 0x8a, 0x7f, 0x76, 0x72, 0x8c, 0x8f, 0x83, 0x68, 0x4c, 0x3c, 0x31, 0x29,\n    0x36, 0x3a, 0x37, 0x2d, 0x27, 0x31, 0x47, 0x58, 0x73, 0x72, 0x63, 0x49, 0x3c, 0x4c, 0x6a, 0x7f,\n    0x6e, 0x5c, 0x4a, 0x45, 0x48, 0x4d, 0x54, 0x5a, 0x5d, 0x63, 0x68, 0x67, 0x60, 0x5a, 0x57, 0x58,\n    0x5e, 0x5a, 0x51, 0x43, 0x37, 0x32, 0x36, 0x3b, 0x4c, 0x5d, 0x65, 0x62, 0x5f, 0x57, 0x49, 0x40,\n    0x37, 0x29, 0x19, 0x18, 0x2e, 0x52, 0x71, 0x81, 0x84, 0x83, 0x83, 0x7a, 0x6b, 0x65, 0x63, 0x5d,\n    0x60, 0x5c, 0x5d, 0x5f, 0x5e, 0x5d, 0x56, 0x49, 0x4d, 0x45, 0x37, 0x28, 0x1b, 0x15, 0x14, 0x15,\n    0x5d, 0x5f, 0x61, 0x61, 0x60, 0x60, 0x63, 0x66, 0x67, 0x67, 0x69, 0x6a, 0x66, 0x5e, 0x59, 0x57,\n    0x5f, 0x65, 0x66, 0x5e, 0x57, 0x53, 0x52, 0x51, 0x53, 0x5e, 0x67, 0x6a, 0x6a, 0x6e, 0x75, 0x7b,\n    0x70, 0x6e, 0x67, 0x62, 0x63, 0x68, 0x68, 0x65, 0x6a, 0x6e, 0x6b, 0x5f, 0x53, 0x50, 0x54, 0x58,\n    0x61, 0x60, 0x60, 0x62, 0x64, 0x63, 0x5e, 0x5a, 0x56, 0x4d, 0x49, 0x4e, 0x58, 0x63, 0x6e, 0x77,\n    0x6e, 0x64, 0x5c, 0x5f, 0x6a, 0x6e, 0x66, 0x5c, 0x61, 0x60, 0x61, 0x65, 0x68, 0x67, 0x60, 0x5b,\n    0x5a, 0x57, 0x56, 0x59, 0x5a, 0x58, 0x5b, 0x61, 0x65, 0x6a, 0x6c, 0x68, 0x64, 0x65, 0x67, 0x66,\n    0x62, 0x5b, 0x5a, 0x65, 0x6e, 0x6d, 0x63, 0x5b, 0x59, 0x5f, 0x62, 0x5f, 0x5d, 0x62, 0x6d, 0x74,\n    0x7b, 0x79, 0x73, 0x6a, 0x63, 0x63, 0x6a, 0x70, 0x7b, 0x76, 0x70, 0x70, 0x75, 0x7f, 0x8c, 0x95,\n    0x96, 0x8e, 0x86, 0x84, 0x87, 0x84, 0x77, 0x6a, 0x6d, 0x73, 0x76, 0x78, 0x82, 0x8f, 0x91, 0x8a,\n    0x7b, 0x75, 0x73, 0x76, 0x76, 0x73, 0x76, 0x7c, 0x7c, 0x7e, 0x7e, 0x7b, 0x7a, 0x7b, 0x77, 0x71,\n    0x70, 0x72, 0x75, 0x77, 0x77, 0x74, 0x6f, 0x6c, 0x8f, 0xc2, 0xc8, 0xc4, 0xc8, 0xc6, 0xca, 0xc2,\n    0xc1, 0xc6, 0xca, 0xca, 0xcb, 0xcc, 0xcd, 0xcd, 0xcc, 0xcd, 0xcd, 0xcb, 0xc8, 0xc5, 0xc5, 0xc6,\n    0xc6, 0xc7, 0xc9, 0xcc, 0xcd, 0xcd, 0xca, 0xc7, 0xc7, 0xc9, 0xc9, 0xc7, 0xc4, 0xc0, 0xbf, 0xc0,\n    0xbd, 0xbb, 0xba, 0xbb, 0xbd, 0xc0, 0xc1, 0xc2, 0xc1, 0xc0, 0xbe, 0xbc, 0xba, 0xb8, 0xb7, 0xb7,\n    0xbc, 0xbc, 0xbc, 0xbd, 0xbf, 0xbe, 0xbd, 0xbb, 0xb8, 0xb7, 0xb4, 0xb1, 0xad, 0xaa, 0xa8, 0xa7,\n    0xaa, 0xa8, 0xa7, 0xa8, 0xab, 0xac, 0xac, 0xab, 0xac, 0xa7, 0xa2, 0xa2, 0xa6, 0xa9, 0xaa, 0xa8,\n    0xa9, 0xa5, 0xa3, 0xa2, 0xa2, 0x9f, 0x97, 0x91, 0x84, 0x7c, 0x7d, 0x83, 0x83, 0x82, 0x80, 0x7a,\n    0x55, 0x78, 0x9a, 0xc8, 0xc7, 0xbe, 0xb8, 0xac, 0xae, 0xac, 0xae, 0xb5, 0xb8, 0xb3, 0xac, 0xa8,\n    0xa2, 0xa0, 0xa1, 0xa3, 0xa4, 0xac, 0xc0, 0xd5, 0xe0, 0xe2, 0xdf, 0xd8, 0xcf, 0xc8, 0xc1, 0xbb,\n    0xbd, 0xbb, 0xb8, 0xb5, 0xb0, 0xac, 0xa8, 0xa6, 0xa8, 0xa9, 0xad, 0xb3, 0xb6, 0xb4, 0xb3, 0xb3,\n    0xc2, 0xc0, 0xbf, 0xc1, 0xc3, 0xc3, 0xc4, 0xc6, 0xca, 0xcb, 0xcc, 0xcc, 0xcd, 0xcd, 0xce, 0xce,\n    0xce, 0xd1, 0xcb, 0xd0, 0xbf, 0x4b, 0xa9, 0xec, 0xe3, 0x89, 0x48, 0xbc, 0xaf, 0x3a, 0x3d, 0xbd,\n    0xe8, 0xea, 0xe2, 0xdd, 0xe6, 0x61, 0x52, 0xa8, 0xce, 0xc9, 0xc7, 0xc5, 0xc0, 0xc1, 0xc1, 0xbb,\n    0xc2, 0xce, 0xd2, 0xcf, 0xd2, 0xd3, 0xd2, 0xd4, 0xd6, 0xb2, 0x9c, 0x9e, 0xa1, 0x9e, 0x9d, 0x9e,\n    0xa1, 0x97, 0x9c, 0x9f, 0x98, 0xa3, 0x8e, 0x8c, 0xce, 0xf0, 0xea, 0xba, 0x84, 0x90, 0x57, 0x59,\n    0x81, 0x79, 0x7a, 0x88, 0x97, 0x9a, 0x97, 0x95, 0x95, 0x95, 0x94, 0x93, 0x92, 0x91, 0x91, 0x90,\n    0x8d, 0x9c, 0xc5, 0xcc, 0xcf, 0xc8, 0xc4, 0xbf, 0xb5, 0xb6, 0xb3, 0xa6, 0xb2, 0x9c, 0x6a, 0x8d,\n    0x7e, 0x5d, 0x85, 0x6f, 0x77, 0x8a, 0x82, 0x75, 0x63, 0x57, 0x4e, 0x51, 0x5c, 0x64, 0x68, 0x68,\n    0x6a, 0x6a, 0x69, 0x68, 0x67, 0x67, 0x67, 0x67, 0x62, 0x61, 0x60, 0x60, 0x5f, 0x5c, 0x59, 0x56,\n    0x55, 0x53, 0x50, 0x4e, 0x4c, 0x49, 0x46, 0x44, 0x43, 0x41, 0x3e, 0x3c, 0x3b, 0x3a, 0x39, 0x38,\n    0x3c, 0x4a, 0x5e, 0x6f, 0x75, 0x76, 0x78, 0x7a, 0x74, 0x73, 0x73, 0x74, 0x70, 0x6a, 0x6a, 0x6e,\n    0x67, 0x64, 0x5e, 0x5b, 0x66, 0x76, 0x7a, 0x74, 0x6f, 0x6b, 0x67, 0x62, 0x57, 0x4a, 0x43, 0x43,\n    0x4a, 0x44, 0x44, 0x41, 0x45, 0x4d, 0x5b, 0x79, 0x64, 0x52, 0x3d, 0x3a, 0x42, 0x3e, 0x35, 0x35,\n    0x38, 0x38, 0x30, 0x30, 0x39, 0x3c, 0x46, 0x5b, 0x70, 0x7b, 0x7f, 0x90, 0x85, 0x75, 0x5c, 0x5d,\n    0x6b, 0x6a, 0x6d, 0x74, 0x7a, 0x81, 0x8c, 0x97, 0x92, 0x97, 0x90, 0x78, 0x5f, 0x4f, 0x46, 0x3f,\n    0x39, 0x3e, 0x3f, 0x3a, 0x3a, 0x45, 0x58, 0x66, 0x60, 0x58, 0x45, 0x39, 0x4a, 0x64, 0x61, 0x4c,\n    0x48, 0x4c, 0x56, 0x5b, 0x54, 0x4d, 0x55, 0x63, 0x70, 0x6a, 0x60, 0x56, 0x50, 0x4e, 0x50, 0x52,\n    0x51, 0x4a, 0x45, 0x45, 0x4a, 0x4f, 0x4f, 0x4d, 0x58, 0x6f, 0x7c, 0x74, 0x60, 0x4d, 0x4a, 0x55,\n    0x49, 0x3b, 0x29, 0x20, 0x28, 0x41, 0x61, 0x77, 0x7e, 0x85, 0x89, 0x78, 0x5a, 0x4f, 0x57, 0x5e,\n    0x4e, 0x54, 0x5b, 0x58, 0x51, 0x56, 0x5e, 0x5d, 0x56, 0x52, 0x50, 0x54, 0x5a, 0x57, 0x49, 0x3c,\n    0x5e, 0x60, 0x63, 0x62, 0x5d, 0x59, 0x5d, 0x64, 0x63, 0x63, 0x63, 0x61, 0x5b, 0x54, 0x54, 0x59,\n    0x5e, 0x5d, 0x65, 0x60, 0x67, 0x5d, 0x5f, 0x59, 0x58, 0x5d, 0x63, 0x65, 0x66, 0x6a, 0x75, 0x80,\n    0x7f, 0x7b, 0x71, 0x66, 0x64, 0x68, 0x67, 0x62, 0x6e, 0x73, 0x70, 0x63, 0x56, 0x53, 0x57, 0x5b,\n    0x6a, 0x65, 0x60, 0x5e, 0x60, 0x61, 0x60, 0x5e, 0x5a, 0x5a, 0x56, 0x51, 0x54, 0x5e, 0x68, 0x6d,\n    0x63, 0x5e, 0x64, 0x6c, 0x68, 0x60, 0x56, 0x4c, 0x56, 0x5f, 0x65, 0x62, 0x5f, 0x60, 0x61, 0x5e,\n    0x64, 0x5f, 0x59, 0x54, 0x54, 0x5b, 0x65, 0x6c, 0x67, 0x73, 0x7c, 0x79, 0x71, 0x6a, 0x66, 0x63,\n    0x5e, 0x65, 0x62, 0x64, 0x6d, 0x6b, 0x67, 0x70, 0x77, 0x76, 0x72, 0x6d, 0x6d, 0x71, 0x74, 0x74,\n    0x74, 0x72, 0x6f, 0x6c, 0x6a, 0x6a, 0x6c, 0x6f, 0x70, 0x74, 0x72, 0x6a, 0x6d, 0x7c, 0x85, 0x86,\n    0x89, 0x8c, 0x8f, 0x8e, 0x88, 0x7f, 0x74, 0x6c, 0x6a, 0x6b, 0x6d, 0x6e, 0x71, 0x76, 0x7a, 0x7b,\n    0x76, 0x74, 0x73, 0x72, 0x70, 0x6d, 0x6d, 0x6f, 0x79, 0x7e, 0x7f, 0x79, 0x73, 0x72, 0x76, 0x7a,\n    0x76, 0x7f, 0x7c, 0x78, 0x7c, 0x78, 0x75, 0x7d, 0xb9, 0xbe, 0xc4, 0xc7, 0xc5, 0xc3, 0xc3, 0xc4,\n    0xc3, 0xc6, 0xca, 0xca, 0xc8, 0xc8, 0xca, 0xcd, 0xcc, 0xc8, 0xc4, 0xc2, 0xc4, 0xc6, 0xc7, 0xc8,\n    0xc8, 0xc7, 0xc7, 0xc6, 0xc6, 0xc7, 0xc7, 0xc8, 0xcc, 0xcb, 0xca, 0xc8, 0xc5, 0xc3, 0xc2, 0xc1,\n    0xbf, 0xbe, 0xbd, 0xbd, 0xbd, 0xbf, 0xc1, 0xc2, 0xbf, 0xbe, 0xbc, 0xb9, 0xb7, 0xb6, 0xb8, 0xba,\n    0xb8, 0xbb, 0xbe, 0xbf, 0xbe, 0xbd, 0xbd, 0xbe, 0xba, 0xba, 0xb8, 0xb2, 0xaf, 0xae, 0xac, 0xaa,\n    0xac, 0xac, 0xab, 0xaa, 0xa9, 0xa9, 0xaa, 0xab, 0xa9, 0xa6, 0xa4, 0xa2, 0xa3, 0xa4, 0xa4, 0xa4,\n    0xa6, 0xa8, 0xa8, 0xa5, 0xa1, 0x9d, 0x96, 0x90, 0x80, 0x84, 0x78, 0x7d, 0x82, 0x7f, 0x80, 0x71,\n    0x60, 0x85, 0x9e, 0xc7, 0xc7, 0xc3, 0xba, 0xb0, 0xb0, 0xad, 0xae, 0xb3, 0xb7, 0xb3, 0xab, 0xa6,\n    0xa3, 0xa3, 0xa4, 0xa5, 0xa6, 0xb2, 0xcc, 0xe4, 0xe4, 0xdd, 0xd9, 0xd4, 0xca, 0xc5, 0xc1, 0xb9,\n    0xbe, 0xb8, 0xb3, 0xb2, 0xab, 0xa2, 0xa2, 0xaa, 0xaa, 0xad, 0xb3, 0xb9, 0xba, 0xb5, 0xb0, 0xae,\n    0xbf, 0xc0, 0xc1, 0xc3, 0xc6, 0xc7, 0xc7, 0xc7, 0xca, 0xcf, 0xce, 0xcb, 0xca, 0xd3, 0xd5, 0xcf,\n    0xc3, 0xbf, 0xc4, 0xd1, 0xd4, 0x6d, 0x8c, 0xdf, 0xe2, 0xc5, 0x51, 0x6e, 0xb7, 0x31, 0x3e, 0xae,\n    0xe9, 0xec, 0xda, 0xf1, 0xcc, 0x59, 0x5b, 0xba, 0xca, 0xc8, 0xc6, 0xc3, 0xc1, 0xc0, 0xc1, 0xc3,\n    0xcb, 0xd4, 0xce, 0xd0, 0xd6, 0xd4, 0xd7, 0xd5, 0xda, 0xb6, 0x9e, 0x9d, 0x9e, 0x9d, 0x9e, 0x9d,\n    0xa2, 0x9c, 0x97, 0xa4, 0x9a, 0x9b, 0x78, 0xa2, 0xe5, 0xd1, 0xd1, 0xe8, 0xdd, 0x9c, 0x6b, 0xb9,\n    0xe4, 0xe0, 0x87, 0x8d, 0x97, 0x97, 0x95, 0x95, 0x96, 0x94, 0x93, 0x92, 0x92, 0x92, 0x91, 0x90,\n    0x8c, 0x9f, 0xcb, 0xcc, 0xca, 0xcb, 0xcc, 0xbf, 0xb7, 0xb7, 0xb0, 0xb4, 0xab, 0xb3, 0x7c, 0x6b,\n    0x7a, 0x6d, 0x81, 0x78, 0x79, 0x83, 0x84, 0x6b, 0x51, 0x4c, 0x4b, 0x54, 0x5e, 0x63, 0x65, 0x67,\n    0x66, 0x67, 0x68, 0x68, 0x67, 0x66, 0x65, 0x64, 0x60, 0x5f, 0x5e, 0x5d, 0x5c, 0x5a, 0x57, 0x55,\n    0x53, 0x50, 0x4e, 0x4b, 0x4a, 0x48, 0x46, 0x45, 0x3f, 0x3e, 0x3a, 0x36, 0x36, 0x38, 0x39, 0x38,\n    0x4a, 0x60, 0x6d, 0x6f, 0x76, 0x7b, 0x78, 0x74, 0x82, 0x82, 0x79, 0x71, 0x70, 0x6c, 0x6a, 0x6e,\n    0x6b, 0x68, 0x5d, 0x61, 0x67, 0x69, 0x6e, 0x68, 0x68, 0x6e, 0x6f, 0x67, 0x5e, 0x5c, 0x5e, 0x5f,\n    0x4b, 0x42, 0x3b, 0x2b, 0x3e, 0x4e, 0x62, 0x61, 0x57, 0x5d, 0x61, 0x62, 0x61, 0x59, 0x47, 0x36,\n    0x34, 0x2b, 0x27, 0x2b, 0x31, 0x37, 0x43, 0x4f, 0x60, 0x6d, 0x74, 0x7b, 0x76, 0x51, 0x37, 0x42,\n    0x5b, 0x70, 0x81, 0x81, 0x7a, 0x76, 0x73, 0x70, 0x6d, 0x6a, 0x63, 0x5d, 0x5f, 0x64, 0x5f, 0x55,\n    0x4d, 0x4b, 0x4e, 0x55, 0x59, 0x57, 0x53, 0x51, 0x50, 0x48, 0x3d, 0x39, 0x40, 0x4b, 0x4d, 0x4a,\n    0x52, 0x5e, 0x63, 0x61, 0x6a, 0x80, 0x8e, 0x90, 0x75, 0x56, 0x4f, 0x59, 0x54, 0x4d, 0x54, 0x5b,\n    0x53, 0x50, 0x53, 0x56, 0x54, 0x57, 0x5e, 0x5f, 0x62, 0x67, 0x70, 0x73, 0x74, 0x7b, 0x7b, 0x71,\n    0x4d, 0x48, 0x3b, 0x3e, 0x46, 0x3d, 0x43, 0x63, 0x72, 0x76, 0x61, 0x44, 0x43, 0x56, 0x61, 0x61,\n    0x35, 0x1a, 0x2f, 0x4a, 0x55, 0x59, 0x54, 0x5f, 0x71, 0x59, 0x45, 0x49, 0x5a, 0x68, 0x70, 0x75,\n    0x5b, 0x60, 0x66, 0x68, 0x63, 0x5d, 0x5e, 0x62, 0x67, 0x64, 0x63, 0x64, 0x64, 0x5f, 0x5d, 0x5d,\n    0x5b, 0x61, 0x6d, 0x70, 0x75, 0x6f, 0x6f, 0x6c, 0x65, 0x67, 0x69, 0x68, 0x66, 0x69, 0x71, 0x7a,\n    0x7e, 0x7b, 0x74, 0x6e, 0x6b, 0x6b, 0x68, 0x64, 0x67, 0x70, 0x75, 0x6d, 0x61, 0x56, 0x4e, 0x4a,\n    0x5a, 0x5f, 0x62, 0x5f, 0x57, 0x51, 0x52, 0x56, 0x59, 0x5b, 0x5b, 0x5b, 0x60, 0x68, 0x6d, 0x6d,\n    0x69, 0x67, 0x6c, 0x6b, 0x5f, 0x58, 0x5b, 0x5d, 0x6e, 0x6e, 0x6d, 0x6b, 0x6b, 0x6c, 0x6a, 0x66,\n    0x62, 0x64, 0x65, 0x65, 0x65, 0x67, 0x6c, 0x70, 0x6c, 0x73, 0x76, 0x70, 0x68, 0x66, 0x68, 0x69,\n    0x7a, 0x81, 0x7a, 0x71, 0x75, 0x76, 0x73, 0x76, 0x7b, 0x78, 0x71, 0x6b, 0x6b, 0x70, 0x73, 0x73,\n    0x71, 0x76, 0x79, 0x75, 0x6e, 0x6b, 0x6d, 0x71, 0x79, 0x7c, 0x73, 0x65, 0x6b, 0x82, 0x8e, 0x89,\n    0x8a, 0x89, 0x89, 0x87, 0x82, 0x79, 0x70, 0x6b, 0x6f, 0x71, 0x72, 0x73, 0x74, 0x76, 0x77, 0x77,\n    0x76, 0x74, 0x74, 0x73, 0x71, 0x6f, 0x72, 0x76, 0x76, 0x76, 0x74, 0x73, 0x76, 0x7a, 0x7b, 0x79,\n    0x84, 0x82, 0x75, 0x6d, 0x73, 0x79, 0x85, 0x98, 0xb9, 0xbd, 0xc2, 0xc4, 0xc3, 0xc3, 0xc5, 0xc7,\n    0xc4, 0xc7, 0xc9, 0xca, 0xc8, 0xc8, 0xca, 0xcc, 0xca, 0xc9, 0xc7, 0xc6, 0xc5, 0xc4, 0xc3, 0xc2,\n    0xc5, 0xc5, 0xc4, 0xc4, 0xc4, 0xc5, 0xc6, 0xc7, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6,\n    0xc2, 0xc1, 0xc0, 0xbf, 0xbe, 0xbd, 0xbd, 0xbd, 0xbf, 0xbf, 0xbe, 0xbc, 0xb9, 0xb7, 0xb6, 0xb6,\n    0xb5, 0xb7, 0xb9, 0xba, 0xba, 0xbb, 0xbd, 0xbe, 0xbc, 0xbf, 0xc0, 0xbd, 0xb9, 0xb6, 0xb0, 0xaa,\n    0xa9, 0xaa, 0xab, 0xab, 0xa9, 0xa7, 0xa6, 0xa5, 0xa7, 0xa5, 0xa2, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1,\n    0xa1, 0xa3, 0xa3, 0xa0, 0x9d, 0x9a, 0x94, 0x8e, 0x82, 0x83, 0x77, 0x7d, 0x83, 0x80, 0x7f, 0x6e,\n    0x6d, 0x8a, 0xa6, 0xcd, 0xc7, 0xc1, 0xbd, 0xb4, 0xaf, 0xac, 0xad, 0xb3, 0xb6, 0xb2, 0xaa, 0xa5,\n    0x9e, 0xa4, 0xa4, 0xa0, 0xa9, 0xc1, 0xd8, 0xe4, 0xe0, 0xd8, 0xd2, 0xca, 0xbf, 0xbc, 0xbe, 0xbc,\n    0xbc, 0xb6, 0xb1, 0xae, 0xa9, 0xa3, 0xa4, 0xaa, 0xaf, 0xb2, 0xb8, 0xbf, 0xc0, 0xbc, 0xb7, 0xb5,\n    0xc5, 0xc6, 0xc7, 0xc8, 0xc8, 0xc8, 0xc8, 0xc8, 0xca, 0xce, 0xcf, 0xcd, 0xcd, 0xcf, 0xca, 0x9e,\n    0x59, 0x43, 0x56, 0x9d, 0xd5, 0x91, 0x57, 0xe2, 0xe8, 0xda, 0x7a, 0x42, 0x7b, 0x3e, 0x42, 0x94,\n    0xe9, 0xe9, 0xe6, 0xde, 0x9f, 0x4a, 0x79, 0xc8, 0xc7, 0xc6, 0xc4, 0xc1, 0xbf, 0xbe, 0xbe, 0xbe,\n    0xc5, 0xd1, 0xce, 0xd0, 0xd3, 0xd1, 0xd6, 0xd7, 0xdc, 0xb9, 0xa0, 0x9f, 0xa0, 0x9f, 0x9e, 0x9d,\n    0x9b, 0x9c, 0x9b, 0xa1, 0x9f, 0x8b, 0x82, 0xc2, 0xeb, 0xd0, 0xcc, 0xd5, 0xd9, 0xd7, 0xc4, 0xd1,\n    0xea, 0xd3, 0x84, 0x92, 0x9e, 0x9c, 0x91, 0x91, 0x97, 0x95, 0x94, 0x93, 0x93, 0x93, 0x92, 0x91,\n    0x8e, 0xa1, 0xcd, 0xce, 0xcc, 0xcc, 0xcd, 0xc0, 0xb8, 0xb4, 0xab, 0xaf, 0xab, 0xb7, 0x88, 0x80,\n    0x74, 0x7e, 0x84, 0x7a, 0x86, 0x8e, 0x7a, 0x58, 0x46, 0x46, 0x4c, 0x55, 0x5d, 0x61, 0x64, 0x68,\n    0x66, 0x66, 0x67, 0x66, 0x65, 0x64, 0x62, 0x61, 0x5f, 0x5d, 0x5c, 0x5b, 0x59, 0x57, 0x54, 0x52,\n    0x50, 0x4d, 0x4a, 0x48, 0x47, 0x45, 0x43, 0x41, 0x3c, 0x3c, 0x3c, 0x3a, 0x38, 0x3a, 0x44, 0x50,\n    0x60, 0x6d, 0x6f, 0x6a, 0x6e, 0x73, 0x73, 0x71, 0x6d, 0x75, 0x75, 0x73, 0x70, 0x68, 0x61, 0x63,\n    0x5a, 0x61, 0x60, 0x66, 0x66, 0x63, 0x69, 0x67, 0x68, 0x6e, 0x71, 0x71, 0x72, 0x7b, 0x84, 0x89,\n    0x93, 0x86, 0x75, 0x59, 0x59, 0x57, 0x5c, 0x54, 0x58, 0x5e, 0x5f, 0x57, 0x4d, 0x44, 0x39, 0x30,\n    0x29, 0x22, 0x1f, 0x23, 0x25, 0x26, 0x2a, 0x31, 0x48, 0x5d, 0x66, 0x6e, 0x77, 0x65, 0x44, 0x38,\n    0x4a, 0x61, 0x72, 0x6f, 0x61, 0x56, 0x4e, 0x48, 0x52, 0x53, 0x52, 0x51, 0x56, 0x5b, 0x56, 0x4d,\n    0x59, 0x4f, 0x44, 0x42, 0x43, 0x43, 0x44, 0x46, 0x3b, 0x3b, 0x3b, 0x3c, 0x40, 0x46, 0x4e, 0x55,\n    0x4a, 0x4d, 0x4f, 0x52, 0x5a, 0x5f, 0x5a, 0x51, 0x4d, 0x3c, 0x43, 0x5b, 0x66, 0x65, 0x5d, 0x50,\n    0x44, 0x55, 0x71, 0x87, 0x90, 0x90, 0x81, 0x6b, 0x5a, 0x5f, 0x68, 0x6b, 0x6a, 0x6d, 0x69, 0x5d,\n    0x66, 0x5e, 0x49, 0x42, 0x48, 0x40, 0x3d, 0x4e, 0x62, 0x67, 0x52, 0x38, 0x41, 0x5b, 0x61, 0x56,\n    0x40, 0x27, 0x20, 0x29, 0x3b, 0x53, 0x66, 0x77, 0x6e, 0x75, 0x75, 0x6c, 0x62, 0x61, 0x67, 0x6d,\n    0x5c, 0x60, 0x66, 0x69, 0x66, 0x61, 0x62, 0x65, 0x69, 0x64, 0x61, 0x65, 0x69, 0x68, 0x62, 0x5e,\n    0x61, 0x6b, 0x73, 0x78, 0x6e, 0x67, 0x5e, 0x5d, 0x61, 0x64, 0x66, 0x65, 0x63, 0x63, 0x67, 0x6a,\n    0x6c, 0x69, 0x69, 0x6b, 0x6b, 0x67, 0x63, 0x60, 0x6c, 0x70, 0x72, 0x6c, 0x62, 0x58, 0x51, 0x4d,\n    0x53, 0x5a, 0x61, 0x5f, 0x58, 0x54, 0x58, 0x5d, 0x5e, 0x60, 0x62, 0x64, 0x69, 0x6e, 0x6f, 0x6d,\n    0x6d, 0x6a, 0x6b, 0x68, 0x5d, 0x5c, 0x67, 0x6d, 0x68, 0x62, 0x5f, 0x63, 0x69, 0x6a, 0x68, 0x66,\n    0x67, 0x6a, 0x6d, 0x6c, 0x68, 0x65, 0x64, 0x65, 0x6e, 0x71, 0x70, 0x6b, 0x67, 0x6a, 0x73, 0x7a,\n    0x88, 0x8c, 0x7f, 0x6e, 0x6f, 0x75, 0x75, 0x74, 0x74, 0x73, 0x6e, 0x6a, 0x6d, 0x74, 0x7b, 0x7d,\n    0x7e, 0x7b, 0x75, 0x6f, 0x6d, 0x6f, 0x76, 0x7c, 0x7f, 0x81, 0x76, 0x68, 0x73, 0x8d, 0x95, 0x8a,\n    0x8b, 0x86, 0x84, 0x85, 0x81, 0x77, 0x6f, 0x6c, 0x6a, 0x6b, 0x6c, 0x6e, 0x70, 0x71, 0x71, 0x71,\n    0x79, 0x77, 0x75, 0x73, 0x6f, 0x6d, 0x70, 0x75, 0x6d, 0x70, 0x77, 0x85, 0x95, 0x9a, 0x91, 0x84,\n    0x75, 0x70, 0x67, 0x67, 0x6f, 0x7a, 0x8f, 0xa9, 0xbd, 0xc0, 0xc2, 0xc3, 0xc3, 0xc3, 0xc5, 0xc7,\n    0xbe, 0xc0, 0xc2, 0xc2, 0xc1, 0xc0, 0xc1, 0xc3, 0xc8, 0xc8, 0xc8, 0xc7, 0xc5, 0xc5, 0xc6, 0xc7,\n    0xc4, 0xc3, 0xc2, 0xc1, 0xc1, 0xc2, 0xc2, 0xc3, 0xc1, 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7, 0xc7,\n    0xc4, 0xc4, 0xc3, 0xc2, 0xc0, 0xbd, 0xba, 0xb9, 0xbc, 0xbe, 0xbf, 0xbf, 0xbc, 0xb8, 0xb5, 0xb4,\n    0xb4, 0xb5, 0xb5, 0xb6, 0xb7, 0xb9, 0xbd, 0xbf, 0xc0, 0xc3, 0xc6, 0xc4, 0xc1, 0xbc, 0xb5, 0xaf,\n    0xa7, 0xa9, 0xab, 0xac, 0xac, 0xaa, 0xa7, 0xa5, 0xa9, 0xa7, 0xa5, 0xa3, 0xa3, 0xa3, 0xa2, 0xa1,\n    0x9e, 0x9f, 0x9f, 0x9c, 0x9a, 0x98, 0x92, 0x8d, 0x84, 0x81, 0x77, 0x7c, 0x84, 0x82, 0x7c, 0x6d,\n    0x7f, 0x8e, 0xad, 0xd1, 0xc5, 0xbe, 0xbf, 0xb7, 0xaf, 0xad, 0xae, 0xb2, 0xb3, 0xaf, 0xa8, 0xa4,\n    0x9d, 0xa4, 0xa2, 0xa1, 0xb3, 0xd3, 0xe4, 0xe2, 0xdc, 0xd5, 0xd0, 0xc6, 0xb9, 0xb7, 0xbb, 0xbb,\n    0xb9, 0xb4, 0xad, 0xa8, 0xa6, 0xa6, 0xa7, 0xa8, 0xac, 0xae, 0xb5, 0xbd, 0xbf, 0xbc, 0xb8, 0xb7,\n    0xc8, 0xca, 0xcc, 0xcc, 0xca, 0xc9, 0xc9, 0xca, 0xcb, 0xca, 0xcd, 0xcb, 0xcd, 0xca, 0xc2, 0x66,\n    0x33, 0x39, 0x44, 0x4a, 0xae, 0xd0, 0x58, 0xa2, 0xe7, 0xe1, 0xaa, 0x35, 0x4a, 0x45, 0x40, 0x8f,\n    0xe6, 0xea, 0xe7, 0xc0, 0x61, 0x4c, 0x9f, 0xd3, 0xc6, 0xc5, 0xc3, 0xc1, 0xbf, 0xbd, 0xbc, 0xbc,\n    0xc3, 0xd0, 0xce, 0xcf, 0xd1, 0xcd, 0xd3, 0xd6, 0xde, 0xbb, 0xa2, 0xa1, 0xa1, 0x9f, 0x9e, 0x9d,\n    0x98, 0x9c, 0x9b, 0x9b, 0x9b, 0x76, 0x86, 0xcf, 0xe4, 0xe4, 0xe7, 0xde, 0xe0, 0xe8, 0xec, 0xe4,\n    0xe6, 0xbf, 0x85, 0x92, 0x97, 0x99, 0x92, 0x9d, 0x97, 0x96, 0x95, 0x94, 0x94, 0x94, 0x93, 0x91,\n    0x8f, 0xa2, 0xcd, 0xd0, 0xcd, 0xcc, 0xcc, 0xc0, 0xb3, 0xb0, 0xab, 0xb2, 0xb0, 0xb2, 0x81, 0x7d,\n    0xa8, 0xab, 0x85, 0x71, 0x79, 0x7d, 0x64, 0x4f, 0x3f, 0x45, 0x4f, 0x58, 0x5c, 0x5e, 0x62, 0x68,\n    0x66, 0x66, 0x65, 0x64, 0x63, 0x61, 0x5f, 0x5d, 0x5d, 0x5b, 0x59, 0x57, 0x56, 0x53, 0x51, 0x4e,\n    0x4d, 0x4a, 0x47, 0x45, 0x43, 0x42, 0x3f, 0x3e, 0x3d, 0x3c, 0x3b, 0x39, 0x34, 0x37, 0x48, 0x5a,\n    0x74, 0x7a, 0x75, 0x6d, 0x6f, 0x74, 0x74, 0x74, 0x70, 0x76, 0x75, 0x6e, 0x68, 0x5f, 0x5a, 0x5f,\n    0x57, 0x64, 0x69, 0x6d, 0x66, 0x60, 0x69, 0x6d, 0x69, 0x6d, 0x70, 0x74, 0x7a, 0x84, 0x8c, 0x90,\n    0x7e, 0x78, 0x6f, 0x5d, 0x5f, 0x61, 0x66, 0x60, 0x60, 0x51, 0x3f, 0x38, 0x40, 0x4b, 0x47, 0x3b,\n    0x28, 0x22, 0x20, 0x22, 0x23, 0x22, 0x23, 0x27, 0x34, 0x45, 0x4b, 0x52, 0x64, 0x66, 0x57, 0x50,\n    0x63, 0x70, 0x72, 0x60, 0x4b, 0x40, 0x3f, 0x3e, 0x47, 0x40, 0x2e, 0x18, 0x0f, 0x1a, 0x2d, 0x3a,\n    0x3a, 0x32, 0x2b, 0x2c, 0x30, 0x33, 0x35, 0x36, 0x34, 0x37, 0x3a, 0x38, 0x2e, 0x28, 0x30, 0x3d,\n    0x44, 0x42, 0x44, 0x50, 0x5a, 0x5d, 0x58, 0x53, 0x51, 0x59, 0x69, 0x70, 0x6b, 0x72, 0x86, 0x94,\n    0x9b, 0x9a, 0x96, 0x8b, 0x83, 0x80, 0x6e, 0x51, 0x3e, 0x48, 0x5a, 0x6a, 0x75, 0x81, 0x85, 0x7d,\n    0x66, 0x69, 0x5f, 0x58, 0x57, 0x48, 0x3a, 0x3d, 0x4b, 0x54, 0x52, 0x4d, 0x55, 0x5d, 0x56, 0x4c,\n    0x3b, 0x31, 0x19, 0x15, 0x2a, 0x44, 0x5f, 0x6b, 0x6e, 0x73, 0x78, 0x7d, 0x7c, 0x73, 0x62, 0x53,\n    0x5f, 0x60, 0x61, 0x63, 0x63, 0x63, 0x68, 0x6f, 0x6d, 0x68, 0x65, 0x66, 0x6b, 0x6b, 0x68, 0x64,\n    0x63, 0x6f, 0x71, 0x76, 0x64, 0x5f, 0x54, 0x55, 0x5c, 0x63, 0x69, 0x6b, 0x6b, 0x6b, 0x6b, 0x6a,\n    0x6c, 0x6b, 0x6f, 0x78, 0x7b, 0x76, 0x72, 0x73, 0x73, 0x73, 0x72, 0x6f, 0x6a, 0x66, 0x64, 0x62,\n    0x5a, 0x59, 0x58, 0x5c, 0x62, 0x67, 0x6a, 0x6b, 0x65, 0x66, 0x66, 0x67, 0x69, 0x6a, 0x6b, 0x6b,\n    0x71, 0x68, 0x65, 0x64, 0x62, 0x66, 0x6b, 0x69, 0x63, 0x5f, 0x61, 0x69, 0x6f, 0x6d, 0x6d, 0x6f,\n    0x73, 0x71, 0x6d, 0x69, 0x65, 0x62, 0x62, 0x62, 0x64, 0x65, 0x62, 0x5d, 0x5b, 0x62, 0x6d, 0x76,\n    0x84, 0x7d, 0x6c, 0x60, 0x63, 0x6b, 0x6e, 0x6d, 0x6a, 0x6d, 0x6e, 0x6c, 0x6e, 0x76, 0x80, 0x86,\n    0x88, 0x7a, 0x6b, 0x67, 0x6f, 0x79, 0x7e, 0x7f, 0x7d, 0x7e, 0x79, 0x75, 0x83, 0x96, 0x96, 0x88,\n    0x88, 0x82, 0x80, 0x83, 0x80, 0x76, 0x6f, 0x6d, 0x6c, 0x68, 0x67, 0x6a, 0x70, 0x74, 0x75, 0x75,\n    0x76, 0x74, 0x72, 0x6f, 0x6a, 0x68, 0x6c, 0x72, 0x6e, 0x72, 0x7a, 0x85, 0x8f, 0x8e, 0x7f, 0x6e,\n    0x65, 0x61, 0x60, 0x65, 0x6a, 0x74, 0x8f, 0xad, 0xbe, 0xbf, 0xc0, 0xbf, 0xbd, 0xbc, 0xbb, 0xbc,\n    0xc0, 0xc1, 0xc3, 0xc3, 0xc2, 0xc1, 0xc1, 0xc2, 0xc3, 0xc2, 0xc1, 0xbf, 0xbf, 0xc2, 0xc8, 0xcc,\n    0xc5, 0xc4, 0xc3, 0xc2, 0xc1, 0xc1, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2,\n    0xc3, 0xc4, 0xc5, 0xc5, 0xc4, 0xc1, 0xbe, 0xbb, 0xbb, 0xbd, 0xc0, 0xc0, 0xbd, 0xba, 0xb8, 0xb7,\n    0xb8, 0xb7, 0xb5, 0xb5, 0xb6, 0xb9, 0xbd, 0xc0, 0xc1, 0xc4, 0xc5, 0xc3, 0xc0, 0xbe, 0xba, 0xb6,\n    0xac, 0xab, 0xab, 0xac, 0xad, 0xad, 0xad, 0xad, 0xab, 0xaa, 0xa8, 0xa7, 0xa6, 0xa6, 0xa5, 0xa3,\n    0xa0, 0xa1, 0xa0, 0x9d, 0x9b, 0x99, 0x93, 0x8d, 0x84, 0x80, 0x7a, 0x7e, 0x84, 0x83, 0x7b, 0x70,\n    0x8d, 0x8e, 0xae, 0xce, 0xc2, 0xba, 0xbf, 0xb6, 0xb2, 0xb0, 0xb0, 0xb2, 0xb1, 0xab, 0xa5, 0xa2,\n    0xa3, 0xa0, 0xa0, 0xad, 0xc8, 0xe0, 0xe6, 0xe0, 0xda, 0xd4, 0xd1, 0xcb, 0xc0, 0xbb, 0xba, 0xb5,\n    0xb6, 0xb2, 0xaa, 0xa3, 0xa3, 0xa7, 0xa9, 0xa7, 0xb0, 0xb3, 0xba, 0xc3, 0xc6, 0xc4, 0xc1, 0xc1,\n    0xc7, 0xca, 0xcd, 0xcd, 0xca, 0xc8, 0xc9, 0xca, 0xcb, 0xc8, 0xcb, 0xc8, 0xca, 0xc7, 0xc3, 0x4b,\n    0x3a, 0xb1, 0xcc, 0x71, 0x5f, 0xbe, 0x86, 0x84, 0xdd, 0xe6, 0xcc, 0x57, 0x3b, 0x49, 0x3c, 0x8e,\n    0xe5, 0xf0, 0xca, 0x84, 0x33, 0x74, 0xc5, 0xcb, 0xc8, 0xc6, 0xc3, 0xc1, 0xc0, 0xc0, 0xbf, 0xbf,\n    0xc7, 0xd3, 0xd0, 0xd0, 0xd1, 0xcd, 0xd1, 0xd1, 0xdf, 0xbb, 0xa3, 0xa1, 0xa1, 0x9e, 0x9d, 0x9b,\n    0x9a, 0x9d, 0x9b, 0x9a, 0x8e, 0x72, 0x94, 0xcc, 0xe2, 0xe9, 0xe1, 0xde, 0xe8, 0xb9, 0xa4, 0xac,\n    0x9a, 0x88, 0x83, 0x9b, 0x9a, 0x9b, 0x91, 0x9e, 0x97, 0x96, 0x95, 0x94, 0x95, 0x94, 0x93, 0x91,\n    0x8c, 0x9e, 0xcb, 0xcf, 0xcd, 0xca, 0xca, 0xbf, 0xb1, 0xae, 0xad, 0xb3, 0xb2, 0xa7, 0x77, 0x7b,\n    0xbc, 0xad, 0x79, 0x6d, 0x69, 0x64, 0x51, 0x4a, 0x43, 0x4b, 0x54, 0x5b, 0x5c, 0x5d, 0x61, 0x65,\n    0x65, 0x64, 0x64, 0x62, 0x61, 0x5f, 0x5d, 0x5c, 0x5b, 0x59, 0x57, 0x54, 0x52, 0x50, 0x4d, 0x4b,\n    0x4a, 0x48, 0x45, 0x43, 0x41, 0x3f, 0x3d, 0x3c, 0x39, 0x39, 0x38, 0x39, 0x41, 0x50, 0x62, 0x6f,\n    0x69, 0x6e, 0x6b, 0x68, 0x6d, 0x6f, 0x6c, 0x6b, 0x77, 0x7a, 0x75, 0x6e, 0x6a, 0x64, 0x61, 0x65,\n    0x65, 0x6e, 0x6e, 0x6d, 0x65, 0x60, 0x6b, 0x6f, 0x69, 0x6b, 0x6e, 0x72, 0x76, 0x79, 0x79, 0x77,\n    0x79, 0x77, 0x6f, 0x5e, 0x54, 0x4f, 0x4d, 0x48, 0x4a, 0x39, 0x2a, 0x2e, 0x45, 0x57, 0x51, 0x41,\n    0x44, 0x3b, 0x33, 0x2e, 0x29, 0x25, 0x22, 0x23, 0x2e, 0x38, 0x3e, 0x42, 0x47, 0x44, 0x48, 0x57,\n    0x5f, 0x65, 0x5f, 0x4a, 0x36, 0x2f, 0x2f, 0x2f, 0x41, 0x48, 0x56, 0x66, 0x73, 0x71, 0x5e, 0x49,\n    0x43, 0x3e, 0x38, 0x34, 0x30, 0x2d, 0x2b, 0x2a, 0x29, 0x27, 0x28, 0x26, 0x1c, 0x16, 0x20, 0x30,\n    0x3e, 0x40, 0x45, 0x49, 0x4a, 0x48, 0x46, 0x45, 0x41, 0x44, 0x4e, 0x5d, 0x69, 0x75, 0x80, 0x87,\n    0x95, 0x8f, 0x88, 0x80, 0x7d, 0x80, 0x76, 0x60, 0x54, 0x58, 0x64, 0x6c, 0x6e, 0x72, 0x71, 0x68,\n    0x6d, 0x67, 0x5a, 0x55, 0x56, 0x4b, 0x3e, 0x3f, 0x49, 0x51, 0x5d, 0x68, 0x5f, 0x44, 0x35, 0x3d,\n    0x3d, 0x42, 0x28, 0x22, 0x30, 0x3a, 0x4e, 0x53, 0x60, 0x65, 0x73, 0x86, 0x8c, 0x81, 0x72, 0x69,\n    0x5f, 0x5d, 0x5d, 0x5f, 0x61, 0x65, 0x6d, 0x74, 0x72, 0x71, 0x6e, 0x6b, 0x6c, 0x6e, 0x70, 0x71,\n    0x7a, 0x80, 0x7c, 0x7b, 0x66, 0x62, 0x57, 0x5a, 0x53, 0x5a, 0x60, 0x61, 0x61, 0x62, 0x62, 0x61,\n    0x5f, 0x5e, 0x63, 0x6c, 0x6e, 0x69, 0x66, 0x67, 0x6f, 0x72, 0x78, 0x7d, 0x7e, 0x79, 0x72, 0x6e,\n    0x61, 0x5b, 0x57, 0x5a, 0x64, 0x6b, 0x6b, 0x68, 0x62, 0x64, 0x66, 0x67, 0x66, 0x64, 0x65, 0x67,\n    0x71, 0x68, 0x63, 0x61, 0x60, 0x65, 0x66, 0x60, 0x6b, 0x6e, 0x76, 0x7c, 0x79, 0x71, 0x70, 0x74,\n    0x78, 0x73, 0x6d, 0x6a, 0x6c, 0x6f, 0x70, 0x71, 0x68, 0x65, 0x60, 0x5a, 0x58, 0x5e, 0x6b, 0x76,\n    0x85, 0x70, 0x5f, 0x5d, 0x61, 0x66, 0x69, 0x69, 0x65, 0x6d, 0x73, 0x72, 0x70, 0x76, 0x80, 0x88,\n    0x85, 0x7a, 0x6f, 0x6e, 0x76, 0x7b, 0x79, 0x75, 0x79, 0x76, 0x76, 0x7e, 0x8c, 0x93, 0x90, 0x88,\n    0x84, 0x7e, 0x7a, 0x7a, 0x79, 0x73, 0x71, 0x72, 0x70, 0x68, 0x63, 0x65, 0x6a, 0x6d, 0x6f, 0x71,\n    0x71, 0x6f, 0x6c, 0x6a, 0x66, 0x65, 0x69, 0x6f, 0x78, 0x7b, 0x7c, 0x7d, 0x7f, 0x7f, 0x7b, 0x76,\n    0x72, 0x6a, 0x66, 0x65, 0x63, 0x6f, 0x93, 0xb5, 0xba, 0xbb, 0xbc, 0xbc, 0xba, 0xb7, 0xb4, 0xb3,\n    0xb5, 0xb6, 0xb6, 0xb7, 0xb6, 0xb5, 0xb5, 0xb6, 0xbd, 0xbd, 0xbc, 0xba, 0xb9, 0xbb, 0xc0, 0xc4,\n    0xc2, 0xc2, 0xc1, 0xc1, 0xc1, 0xc2, 0xc3, 0xc3, 0xc2, 0xc2, 0xc1, 0xc0, 0xbf, 0xbf, 0xbe, 0xbe,\n    0xc0, 0xc2, 0xc5, 0xc6, 0xc7, 0xc6, 0xc4, 0xc2, 0xc1, 0xc2, 0xc3, 0xc2, 0xc0, 0xbe, 0xbc, 0xbc,\n    0xbd, 0xba, 0xb7, 0xb5, 0xb5, 0xb8, 0xbb, 0xbd, 0xbd, 0xc0, 0xc2, 0xc1, 0xc1, 0xc0, 0xbe, 0xba,\n    0xb3, 0xaf, 0xab, 0xa8, 0xa9, 0xab, 0xad, 0xae, 0xab, 0xaa, 0xa9, 0xa9, 0xaa, 0xa9, 0xa8, 0xa7,\n    0xa7, 0xa7, 0xa5, 0xa2, 0xa0, 0x9d, 0x96, 0x8f, 0x82, 0x7d, 0x7e, 0x80, 0x83, 0x83, 0x7b, 0x77,\n    0x92, 0x8b, 0xac, 0xc5, 0xbe, 0xb9, 0xbc, 0xb4, 0xb4, 0xb2, 0xb2, 0xb2, 0xae, 0xa7, 0xa2, 0xa0,\n    0xa6, 0x9b, 0xa1, 0xc1, 0xde, 0xe6, 0xe2, 0xe0, 0xd7, 0xcf, 0xcc, 0xca, 0xc3, 0xbf, 0xbb, 0xb3,\n    0xb4, 0xaf, 0xa7, 0xa1, 0xa2, 0xa8, 0xa9, 0xa7, 0xb0, 0xb3, 0xbb, 0xc4, 0xc8, 0xc7, 0xc5, 0xc5,\n    0xc7, 0xcb, 0xce, 0xcd, 0xca, 0xc7, 0xc7, 0xc9, 0xc9, 0xc8, 0xce, 0xca, 0xcb, 0xc8, 0xc8, 0x53,\n    0x4f, 0xcb, 0xeb, 0xc3, 0x5a, 0x9d, 0xb2, 0x63, 0xc3, 0xf2, 0xe4, 0x8a, 0x3b, 0x46, 0x42, 0x90,\n    0xe8, 0xcf, 0x88, 0x47, 0x4f, 0xaa, 0xdb, 0xbf, 0xca, 0xc7, 0xc3, 0xc1, 0xc1, 0xc2, 0xc3, 0xc3,\n    0xca, 0xd4, 0xcf, 0xd1, 0xd4, 0xd1, 0xd2, 0xd0, 0xe0, 0xbc, 0xa2, 0xa0, 0xa0, 0x9e, 0x9d, 0x9c,\n    0x9b, 0x9e, 0x9d, 0x99, 0x7b, 0x80, 0xae, 0xd1, 0xe1, 0xe0, 0xdf, 0xe4, 0xd3, 0x73, 0x5a, 0x84,\n    0x88, 0x84, 0x93, 0xa0, 0x98, 0x9b, 0x93, 0x99, 0x96, 0x95, 0x94, 0x94, 0x94, 0x94, 0x92, 0x90,\n    0x8a, 0x9c, 0xc9, 0xcf, 0xcd, 0xc9, 0xc9, 0xbe, 0xb4, 0xae, 0xab, 0xad, 0xad, 0x9d, 0x7b, 0x92,\n    0xbd, 0xa1, 0x6f, 0x5a, 0x47, 0x4b, 0x46, 0x43, 0x4a, 0x4f, 0x55, 0x59, 0x5c, 0x5e, 0x60, 0x62,\n    0x63, 0x63, 0x62, 0x60, 0x5f, 0x5d, 0x5c, 0x5b, 0x59, 0x57, 0x54, 0x51, 0x4f, 0x4d, 0x4a, 0x48,\n    0x46, 0x44, 0x41, 0x3f, 0x3e, 0x3d, 0x3b, 0x39, 0x38, 0x38, 0x37, 0x3d, 0x4f, 0x65, 0x70, 0x6e,\n    0x63, 0x66, 0x65, 0x66, 0x6c, 0x6b, 0x66, 0x66, 0x6a, 0x6e, 0x6e, 0x70, 0x75, 0x72, 0x6d, 0x6e,\n    0x6d, 0x70, 0x68, 0x67, 0x64, 0x61, 0x68, 0x67, 0x69, 0x69, 0x6b, 0x71, 0x76, 0x77, 0x74, 0x72,\n    0x76, 0x79, 0x72, 0x63, 0x50, 0x49, 0x44, 0x43, 0x3e, 0x4e, 0x61, 0x6e, 0x73, 0x6f, 0x62, 0x55,\n    0x4a, 0x42, 0x3a, 0x35, 0x31, 0x2d, 0x2a, 0x29, 0x2d, 0x35, 0x40, 0x4d, 0x55, 0x50, 0x49, 0x4a,\n    0x55, 0x53, 0x47, 0x34, 0x2d, 0x36, 0x42, 0x47, 0x4f, 0x55, 0x56, 0x4d, 0x44, 0x45, 0x50, 0x5b,\n    0x59, 0x52, 0x45, 0x35, 0x2a, 0x27, 0x2b, 0x30, 0x32, 0x28, 0x21, 0x1f, 0x1b, 0x19, 0x20, 0x2c,\n    0x38, 0x40, 0x46, 0x43, 0x3f, 0x3b, 0x32, 0x29, 0x1e, 0x24, 0x33, 0x48, 0x57, 0x60, 0x6d, 0x7c,\n    0x76, 0x73, 0x77, 0x7b, 0x76, 0x6e, 0x60, 0x4f, 0x51, 0x51, 0x57, 0x5c, 0x5b, 0x5d, 0x5d, 0x56,\n    0x5a, 0x4a, 0x3f, 0x49, 0x55, 0x54, 0x4f, 0x52, 0x43, 0x48, 0x53, 0x5c, 0x4f, 0x31, 0x28, 0x39,\n    0x3d, 0x44, 0x2e, 0x2a, 0x30, 0x31, 0x44, 0x4f, 0x5d, 0x5f, 0x65, 0x72, 0x82, 0x8c, 0x89, 0x81,\n    0x5b, 0x5a, 0x5c, 0x60, 0x64, 0x68, 0x6c, 0x71, 0x72, 0x74, 0x73, 0x6d, 0x69, 0x6c, 0x72, 0x77,\n    0x81, 0x82, 0x7c, 0x77, 0x69, 0x63, 0x5c, 0x5c, 0x68, 0x6e, 0x70, 0x6b, 0x68, 0x6a, 0x6c, 0x6b,\n    0x69, 0x6a, 0x6f, 0x73, 0x73, 0x6e, 0x69, 0x68, 0x6c, 0x6f, 0x75, 0x7b, 0x7d, 0x79, 0x73, 0x71,\n    0x67, 0x65, 0x62, 0x61, 0x62, 0x61, 0x5f, 0x5d, 0x5a, 0x5c, 0x61, 0x66, 0x66, 0x63, 0x62, 0x64,\n    0x65, 0x64, 0x65, 0x62, 0x5c, 0x61, 0x69, 0x6a, 0x6a, 0x73, 0x7d, 0x7f, 0x78, 0x70, 0x6f, 0x73,\n    0x73, 0x70, 0x6d, 0x6d, 0x70, 0x73, 0x73, 0x73, 0x6e, 0x6a, 0x66, 0x64, 0x65, 0x6c, 0x7a, 0x86,\n    0x86, 0x6d, 0x60, 0x62, 0x62, 0x62, 0x65, 0x65, 0x62, 0x6e, 0x78, 0x79, 0x78, 0x7f, 0x8b, 0x94,\n    0x89, 0x84, 0x7d, 0x76, 0x71, 0x70, 0x70, 0x71, 0x74, 0x70, 0x71, 0x7b, 0x84, 0x87, 0x87, 0x88,\n    0x86, 0x81, 0x7a, 0x74, 0x72, 0x74, 0x78, 0x7c, 0x77, 0x71, 0x6c, 0x6b, 0x69, 0x65, 0x66, 0x6b,\n    0x77, 0x72, 0x6d, 0x68, 0x64, 0x61, 0x62, 0x65, 0x64, 0x6b, 0x71, 0x72, 0x72, 0x75, 0x79, 0x7b,\n    0x75, 0x6d, 0x6c, 0x6c, 0x6a, 0x7b, 0xa1, 0xbf, 0xc1, 0xc2, 0xc4, 0xc5, 0xc4, 0xc2, 0xc0, 0xbe,\n    0xc6, 0xc6, 0xc7, 0xc7, 0xc7, 0xc7, 0xc6, 0xc6, 0xc3, 0xc3, 0xc4, 0xc2, 0xc0, 0xbd, 0xbb, 0xba,\n    0xbc, 0xbb, 0xbb, 0xbb, 0xbc, 0xbe, 0xbf, 0xc0, 0xc0, 0xc0, 0xbf, 0xbf, 0xbf, 0xbf, 0xbe, 0xbe,\n    0xbf, 0xc0, 0xc2, 0xc5, 0xc6, 0xc7, 0xc7, 0xc6, 0xc7, 0xc8, 0xc8, 0xc6, 0xc3, 0xc1, 0xc1, 0xc1,\n    0xbf, 0xbc, 0xb8, 0xb6, 0xb6, 0xb6, 0xb7, 0xb8, 0xb6, 0xbb, 0xbf, 0xc1, 0xc2, 0xc2, 0xbf, 0xbb,\n    0xba, 0xb3, 0xab, 0xa5, 0xa4, 0xa4, 0xa5, 0xa5, 0xaa, 0xaa, 0xab, 0xac, 0xae, 0xaf, 0xae, 0xad,\n    0xad, 0xac, 0xaa, 0xa7, 0xa5, 0xa1, 0x99, 0x90, 0x82, 0x7b, 0x7f, 0x7f, 0x81, 0x82, 0x7a, 0x7b,\n    0x8e, 0x88, 0xaa, 0xba, 0xba, 0xb6, 0xb7, 0xb2, 0xb3, 0xb2, 0xb1, 0xb1, 0xac, 0xa4, 0xa0, 0x9f,\n    0xa2, 0x9f, 0xb1, 0xd3, 0xe8, 0xe5, 0xdd, 0xde, 0xd1, 0xc7, 0xc2, 0xc1, 0xbd, 0xbd, 0xbb, 0xb3,\n    0xb2, 0xab, 0xa4, 0xa2, 0xa4, 0xa7, 0xaa, 0xab, 0xaf, 0xb1, 0xb8, 0xc1, 0xc4, 0xc3, 0xc1, 0xc1,\n    0xca, 0xcc, 0xcf, 0xce, 0xcc, 0xc9, 0xc9, 0xc9, 0xc7, 0xca, 0xd0, 0xcd, 0xcd, 0xcb, 0xca, 0x75,\n    0x39, 0x97, 0xf5, 0xec, 0x83, 0x61, 0xd2, 0x72, 0x90, 0xe4, 0xef, 0xc4, 0x59, 0x43, 0x60, 0xbd,\n    0xe2, 0x87, 0x3e, 0x3d, 0xa5, 0xc9, 0xd2, 0xc5, 0xca, 0xc6, 0xc2, 0xc0, 0xc1, 0xc2, 0xc2, 0xc1,\n    0xc9, 0xd3, 0xce, 0xd1, 0xd7, 0xd4, 0xd6, 0xd3, 0xdf, 0xbb, 0xa0, 0x9e, 0x9e, 0x9d, 0x9e, 0x9e,\n    0x98, 0x9d, 0x9d, 0x8a, 0x6f, 0x91, 0xbe, 0xd3, 0xe3, 0xd8, 0xe3, 0xe6, 0xb6, 0x61, 0x58, 0x8e,\n    0xa8, 0xa0, 0x9e, 0x97, 0x91, 0x99, 0x99, 0x99, 0x95, 0x95, 0x94, 0x95, 0x95, 0x94, 0x92, 0x90,\n    0x8b, 0x9c, 0xca, 0xd1, 0xcf, 0xca, 0xc8, 0xbe, 0xb1, 0xad, 0xaf, 0xae, 0xad, 0x94, 0x7c, 0xa3,\n    0xba, 0xa0, 0x7a, 0x4f, 0x3d, 0x52, 0x4d, 0x42, 0x4c, 0x50, 0x54, 0x57, 0x5b, 0x5f, 0x61, 0x60,\n    0x62, 0x61, 0x60, 0x5e, 0x5d, 0x5b, 0x5a, 0x5a, 0x56, 0x54, 0x51, 0x4e, 0x4c, 0x4a, 0x47, 0x45,\n    0x42, 0x40, 0x3d, 0x3c, 0x3b, 0x3a, 0x39, 0x37, 0x36, 0x3a, 0x42, 0x4e, 0x62, 0x72, 0x73, 0x6b,\n    0x6c, 0x6c, 0x67, 0x66, 0x6a, 0x67, 0x63, 0x66, 0x65, 0x66, 0x63, 0x65, 0x6e, 0x71, 0x6f, 0x72,\n    0x6e, 0x6d, 0x65, 0x68, 0x69, 0x66, 0x67, 0x60, 0x69, 0x66, 0x68, 0x6e, 0x75, 0x78, 0x79, 0x79,\n    0x7c, 0x81, 0x78, 0x64, 0x44, 0x37, 0x30, 0x34, 0x3a, 0x57, 0x75, 0x80, 0x7a, 0x6f, 0x65, 0x5e,\n    0x4d, 0x48, 0x42, 0x3e, 0x3b, 0x38, 0x32, 0x2d, 0x2f, 0x55, 0x73, 0x69, 0x48, 0x33, 0x35, 0x3c,\n    0x47, 0x49, 0x45, 0x3f, 0x44, 0x55, 0x62, 0x65, 0x4f, 0x46, 0x47, 0x5d, 0x7c, 0x89, 0x7b, 0x67,\n    0x6d, 0x6b, 0x62, 0x56, 0x4e, 0x4f, 0x55, 0x5a, 0x51, 0x43, 0x36, 0x31, 0x2f, 0x2b, 0x28, 0x29,\n    0x29, 0x2c, 0x2b, 0x28, 0x2c, 0x30, 0x2b, 0x20, 0x28, 0x1d, 0x17, 0x27, 0x44, 0x55, 0x5e, 0x69,\n    0x6c, 0x65, 0x65, 0x65, 0x5d, 0x57, 0x53, 0x4e, 0x4e, 0x48, 0x48, 0x46, 0x3f, 0x3c, 0x3b, 0x34,\n    0x1f, 0x2f, 0x52, 0x71, 0x71, 0x57, 0x41, 0x3b, 0x43, 0x4b, 0x4d, 0x49, 0x41, 0x31, 0x27, 0x28,\n    0x35, 0x39, 0x32, 0x34, 0x37, 0x39, 0x47, 0x53, 0x62, 0x66, 0x60, 0x5b, 0x6d, 0x8a, 0x92, 0x88,\n    0x5b, 0x5a, 0x5c, 0x61, 0x66, 0x69, 0x6b, 0x6e, 0x71, 0x75, 0x74, 0x6b, 0x64, 0x64, 0x6a, 0x6f,\n    0x64, 0x64, 0x67, 0x67, 0x6c, 0x6a, 0x6b, 0x68, 0x65, 0x6e, 0x71, 0x6b, 0x65, 0x65, 0x66, 0x65,\n    0x6b, 0x71, 0x77, 0x79, 0x79, 0x77, 0x72, 0x6d, 0x6e, 0x6b, 0x6c, 0x6f, 0x6f, 0x6e, 0x6f, 0x72,\n    0x71, 0x6e, 0x6a, 0x66, 0x64, 0x62, 0x60, 0x5f, 0x5b, 0x58, 0x5a, 0x61, 0x66, 0x66, 0x65, 0x65,\n    0x61, 0x66, 0x6d, 0x6b, 0x62, 0x66, 0x70, 0x73, 0x6a, 0x71, 0x76, 0x76, 0x74, 0x73, 0x73, 0x73,\n    0x6c, 0x6c, 0x6d, 0x6c, 0x6b, 0x6a, 0x6b, 0x6c, 0x68, 0x68, 0x6b, 0x6f, 0x72, 0x75, 0x7d, 0x86,\n    0x7f, 0x6e, 0x69, 0x6a, 0x64, 0x64, 0x68, 0x65, 0x61, 0x6b, 0x74, 0x78, 0x7c, 0x87, 0x93, 0x9c,\n    0x95, 0x90, 0x87, 0x7b, 0x70, 0x6a, 0x6b, 0x6d, 0x6c, 0x6c, 0x6e, 0x71, 0x75, 0x79, 0x7e, 0x82,\n    0x85, 0x86, 0x81, 0x76, 0x72, 0x77, 0x7d, 0x7e, 0x7b, 0x7e, 0x83, 0x81, 0x75, 0x68, 0x69, 0x71,\n    0x7a, 0x74, 0x6c, 0x68, 0x64, 0x5f, 0x5d, 0x5e, 0x6d, 0x74, 0x7b, 0x7c, 0x7b, 0x7c, 0x7c, 0x7c,\n    0x6b, 0x66, 0x6b, 0x72, 0x77, 0x8e, 0xb1, 0xc4, 0xca, 0xcb, 0xcc, 0xcd, 0xce, 0xce, 0xce, 0xcd,\n    0xca, 0xca, 0xca, 0xcb, 0xcc, 0xcc, 0xcb, 0xcb, 0xcd, 0xcd, 0xcd, 0xcd, 0xcb, 0xc8, 0xc3, 0xc0,\n    0xc0, 0xbf, 0xbe, 0xbd, 0xbc, 0xbc, 0xbc, 0xbd, 0xbf, 0xbf, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0,\n    0xc0, 0xc0, 0xc0, 0xc1, 0xc2, 0xc3, 0xc4, 0xc4, 0xc5, 0xc6, 0xc7, 0xc7, 0xc6, 0xc5, 0xc4, 0xc4,\n    0xc0, 0xbe, 0xba, 0xb8, 0xb7, 0xb7, 0xb5, 0xb4, 0xb4, 0xb8, 0xbc, 0xbd, 0xbf, 0xc1, 0xc0, 0xbd,\n    0xbc, 0xb6, 0xae, 0xa8, 0xa5, 0xa3, 0xa0, 0x9d, 0xa4, 0xa5, 0xa7, 0xab, 0xae, 0xaf, 0xaf, 0xae,\n    0xae, 0xad, 0xac, 0xa9, 0xa8, 0xa3, 0x99, 0x8f, 0x84, 0x79, 0x7e, 0x7c, 0x7f, 0x82, 0x77, 0x7a,\n    0x83, 0x87, 0xab, 0xb0, 0xb4, 0xb0, 0xaf, 0xb0, 0xaf, 0xaf, 0xaf, 0xae, 0xa9, 0xa2, 0x9f, 0xa0,\n    0x9a, 0xb1, 0xcd, 0xdf, 0xe3, 0xdf, 0xda, 0xd7, 0xcc, 0xc3, 0xbf, 0xbc, 0xb7, 0xb7, 0xb7, 0xb1,\n    0xae, 0xa7, 0xa2, 0xa4, 0xa6, 0xa8, 0xac, 0xb1, 0xb7, 0xb9, 0xbe, 0xc5, 0xc7, 0xc4, 0xc2, 0xc1,\n    0xc8, 0xca, 0xcd, 0xcf, 0xcf, 0xcf, 0xce, 0xcd, 0xca, 0xcc, 0xcc, 0xc9, 0xc9, 0xce, 0xcd, 0xa4,\n    0x48, 0x65, 0xdf, 0xea, 0xbc, 0x53, 0xc2, 0x94, 0x5e, 0xc5, 0xea, 0xe8, 0xa0, 0x7e, 0xa6, 0xe7,\n    0xde, 0x80, 0x32, 0x45, 0xb5, 0xce, 0xc4, 0xcd, 0xc8, 0xc5, 0xc2, 0xc1, 0xc2, 0xc2, 0xbf, 0xbc,\n    0xc6, 0xd2, 0xcf, 0xd2, 0xd5, 0xd2, 0xd5, 0xd4, 0xdc, 0xb7, 0x9c, 0x99, 0x9a, 0x9a, 0x9c, 0x9d,\n    0x99, 0x9b, 0x9a, 0x77, 0x87, 0xb3, 0xcc, 0xd5, 0xe5, 0xce, 0xc1, 0xc4, 0xb9, 0x8c, 0x63, 0x84,\n    0x93, 0x96, 0x95, 0x95, 0x99, 0x9a, 0x9a, 0x94, 0x96, 0x96, 0x95, 0x96, 0x96, 0x95, 0x92, 0x90,\n    0x8d, 0x9d, 0xcb, 0xd3, 0xd0, 0xc9, 0xc7, 0xbd, 0xad, 0xac, 0xb1, 0xae, 0xab, 0x8b, 0x7c, 0xb1,\n    0x9f, 0x93, 0x88, 0x5d, 0x68, 0x78, 0x55, 0x46, 0x4b, 0x51, 0x56, 0x58, 0x5a, 0x5e, 0x60, 0x5f,\n    0x61, 0x60, 0x5f, 0x5c, 0x5a, 0x58, 0x57, 0x56, 0x53, 0x50, 0x4d, 0x4a, 0x49, 0x47, 0x45, 0x43,\n    0x3f, 0x3e, 0x3c, 0x3b, 0x3a, 0x3a, 0x39, 0x37, 0x36, 0x41, 0x58, 0x70, 0x7b, 0x78, 0x76, 0x79,\n    0x69, 0x66, 0x5f, 0x5d, 0x5f, 0x5b, 0x59, 0x60, 0x68, 0x68, 0x61, 0x5e, 0x63, 0x66, 0x68, 0x6e,\n    0x70, 0x71, 0x6a, 0x6d, 0x6e, 0x69, 0x6a, 0x62, 0x67, 0x65, 0x67, 0x6e, 0x74, 0x76, 0x76, 0x77,\n    0x73, 0x7d, 0x75, 0x63, 0x3e, 0x33, 0x32, 0x3e, 0x47, 0x51, 0x5a, 0x5e, 0x64, 0x6e, 0x74, 0x74,\n    0x6e, 0x66, 0x5b, 0x50, 0x48, 0x40, 0x36, 0x2f, 0x31, 0x34, 0x3d, 0x46, 0x49, 0x49, 0x42, 0x35,\n    0x2e, 0x3c, 0x4a, 0x50, 0x54, 0x58, 0x55, 0x4d, 0x42, 0x38, 0x35, 0x46, 0x63, 0x79, 0x7f, 0x7c,\n    0x73, 0x75, 0x75, 0x71, 0x6e, 0x6d, 0x6a, 0x66, 0x62, 0x5c, 0x56, 0x55, 0x56, 0x51, 0x47, 0x3e,\n    0x40, 0x3b, 0x33, 0x2e, 0x2d, 0x2d, 0x2c, 0x2b, 0x2b, 0x3d, 0x47, 0x47, 0x49, 0x49, 0x51, 0x62,\n    0x65, 0x62, 0x60, 0x59, 0x4d, 0x4a, 0x47, 0x3e, 0x34, 0x2e, 0x2f, 0x31, 0x2e, 0x30, 0x33, 0x30,\n    0x44, 0x46, 0x4c, 0x49, 0x3a, 0x34, 0x41, 0x50, 0x55, 0x57, 0x4d, 0x3e, 0x34, 0x29, 0x1d, 0x18,\n    0x3b, 0x3a, 0x44, 0x46, 0x45, 0x4b, 0x4c, 0x4f, 0x4f, 0x5f, 0x6a, 0x65, 0x61, 0x6e, 0x85, 0x95,\n    0x5e, 0x5c, 0x5c, 0x60, 0x65, 0x68, 0x6b, 0x6e, 0x74, 0x78, 0x77, 0x6c, 0x61, 0x5f, 0x62, 0x65,\n    0x5c, 0x5a, 0x62, 0x62, 0x70, 0x6c, 0x6e, 0x67, 0x5a, 0x68, 0x71, 0x6d, 0x67, 0x65, 0x63, 0x5f,\n    0x61, 0x6b, 0x74, 0x77, 0x79, 0x7b, 0x77, 0x70, 0x6c, 0x6a, 0x6b, 0x6e, 0x6f, 0x6c, 0x6d, 0x71,\n    0x79, 0x70, 0x66, 0x63, 0x67, 0x6c, 0x6c, 0x6a, 0x64, 0x5a, 0x55, 0x5b, 0x64, 0x68, 0x68, 0x68,\n    0x6b, 0x70, 0x78, 0x76, 0x6e, 0x6e, 0x70, 0x6c, 0x68, 0x6a, 0x69, 0x65, 0x67, 0x6c, 0x6b, 0x66,\n    0x67, 0x6c, 0x6e, 0x6c, 0x68, 0x66, 0x6a, 0x6f, 0x6e, 0x72, 0x7c, 0x84, 0x84, 0x7e, 0x7c, 0x7d,\n    0x78, 0x72, 0x75, 0x72, 0x69, 0x6d, 0x74, 0x6e, 0x63, 0x68, 0x6d, 0x71, 0x77, 0x83, 0x8d, 0x93,\n    0x97, 0x93, 0x8c, 0x85, 0x7d, 0x72, 0x67, 0x5f, 0x63, 0x6b, 0x6f, 0x6b, 0x6a, 0x71, 0x77, 0x7a,\n    0x7d, 0x85, 0x85, 0x7a, 0x74, 0x79, 0x7b, 0x78, 0x6d, 0x78, 0x86, 0x87, 0x75, 0x63, 0x64, 0x70,\n    0x73, 0x6c, 0x67, 0x65, 0x65, 0x63, 0x62, 0x62, 0x68, 0x6a, 0x6c, 0x6e, 0x72, 0x7a, 0x80, 0x81,\n    0x6f, 0x66, 0x69, 0x6f, 0x79, 0x97, 0xba, 0xc7, 0xcb, 0xca, 0xca, 0xca, 0xcb, 0xcd, 0xcd, 0xcd,\n    0xca, 0xca, 0xca, 0xcb, 0xcc, 0xcd, 0xcc, 0xcb, 0xd1, 0xcf, 0xce, 0xce, 0xd0, 0xd0, 0xce, 0xcc,\n    0xce, 0xcc, 0xc9, 0xc6, 0xc3, 0xc0, 0xbf, 0xbe, 0xc0, 0xc0, 0xc0, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1,\n    0xc2, 0xc1, 0xbf, 0xbe, 0xbd, 0xbe, 0xbf, 0xc0, 0xbd, 0xc0, 0xc4, 0xc6, 0xc7, 0xc7, 0xc7, 0xc7,\n    0xc1, 0xbf, 0xbc, 0xba, 0xba, 0xb8, 0xb6, 0xb4, 0xb7, 0xb8, 0xb7, 0xb6, 0xb8, 0xbd, 0xc0, 0xc1,\n    0xbb, 0xb7, 0xb2, 0xae, 0xab, 0xa6, 0xa0, 0x9a, 0x9b, 0x9c, 0x9f, 0xa4, 0xa8, 0xaa, 0xaa, 0xa9,\n    0xac, 0xac, 0xab, 0xa9, 0xa8, 0xa3, 0x98, 0x8e, 0x87, 0x78, 0x7b, 0x79, 0x7e, 0x83, 0x75, 0x77,\n    0x7a, 0x85, 0xab, 0xa9, 0xaf, 0xa9, 0xa9, 0xae, 0xac, 0xac, 0xad, 0xac, 0xa7, 0xa1, 0x9f, 0xa1,\n    0x95, 0xc2, 0xe5, 0xe3, 0xd9, 0xda, 0xd8, 0xce, 0xca, 0xc4, 0xc2, 0xbe, 0xb6, 0xb3, 0xb2, 0xac,\n    0xac, 0xa3, 0xa0, 0xa6, 0xa9, 0xa8, 0xad, 0xb5, 0xb6, 0xb7, 0xbc, 0xc1, 0xc2, 0xbe, 0xbb, 0xba,\n    0xc3, 0xc5, 0xc9, 0xcd, 0xd2, 0xd4, 0xd3, 0xd2, 0xce, 0xcd, 0xc5, 0xc1, 0xc3, 0xcf, 0xd0, 0xc9,\n    0x64, 0x34, 0x8a, 0xe7, 0xd6, 0x5c, 0x73, 0xa0, 0x46, 0xb7, 0xe1, 0xe7, 0xe1, 0xde, 0xee, 0xdf,\n    0xe4, 0xc2, 0x58, 0x38, 0x72, 0xcd, 0xc7, 0xc7, 0xc7, 0xc5, 0xc4, 0xc4, 0xc4, 0xc2, 0xbc, 0xb7,\n    0xc5, 0xd3, 0xd1, 0xd2, 0xd3, 0xce, 0xd2, 0xd2, 0xd8, 0xb2, 0x97, 0x94, 0x95, 0x96, 0x9a, 0x9b,\n    0x9c, 0x9a, 0x97, 0x70, 0xb3, 0xdf, 0xe2, 0xe1, 0xd6, 0xd7, 0xba, 0xb3, 0xc8, 0xa6, 0x5a, 0x83,\n    0x98, 0x9f, 0x98, 0x97, 0x99, 0x92, 0x98, 0x99, 0x97, 0x96, 0x96, 0x97, 0x97, 0x96, 0x93, 0x91,\n    0x8e, 0x9e, 0xcc, 0xd3, 0xcf, 0xc7, 0xc4, 0xba, 0xb2, 0xae, 0xae, 0xa5, 0xa2, 0x86, 0x86, 0xca,\n    0xaa, 0x97, 0x88, 0x5a, 0x7a, 0x7e, 0x49, 0x49, 0x4c, 0x54, 0x5b, 0x5b, 0x5b, 0x5d, 0x5f, 0x5e,\n    0x62, 0x60, 0x5e, 0x5b, 0x58, 0x56, 0x54, 0x53, 0x51, 0x4e, 0x4b, 0x48, 0x46, 0x45, 0x43, 0x41,\n    0x3f, 0x3e, 0x3c, 0x3b, 0x3b, 0x3b, 0x3a, 0x39, 0x43, 0x50, 0x6c, 0x84, 0x7a, 0x5d, 0x54, 0x5f,\n    0x67, 0x64, 0x5e, 0x5e, 0x5f, 0x5a, 0x59, 0x62, 0x60, 0x66, 0x66, 0x65, 0x68, 0x65, 0x62, 0x66,\n    0x75, 0x76, 0x6f, 0x6f, 0x6c, 0x67, 0x6a, 0x66, 0x66, 0x66, 0x6b, 0x75, 0x79, 0x77, 0x75, 0x74,\n    0x76, 0x81, 0x76, 0x62, 0x36, 0x2a, 0x2a, 0x39, 0x3d, 0x3a, 0x34, 0x33, 0x40, 0x5a, 0x70, 0x7b,\n    0x7c, 0x73, 0x65, 0x5a, 0x55, 0x53, 0x4f, 0x4b, 0x43, 0x3b, 0x42, 0x4d, 0x43, 0x33, 0x32, 0x39,\n    0x4c, 0x52, 0x51, 0x48, 0x45, 0x4c, 0x52, 0x52, 0x33, 0x2c, 0x26, 0x28, 0x33, 0x44, 0x57, 0x63,\n    0x77, 0x7a, 0x7d, 0x80, 0x85, 0x88, 0x84, 0x7d, 0x74, 0x76, 0x77, 0x77, 0x75, 0x6d, 0x5c, 0x4d,\n    0x3a, 0x38, 0x39, 0x37, 0x2b, 0x1d, 0x1c, 0x23, 0x3b, 0x4d, 0x4e, 0x49, 0x50, 0x52, 0x4a, 0x48,\n    0x51, 0x51, 0x4d, 0x3d, 0x31, 0x33, 0x31, 0x24, 0x31, 0x2c, 0x30, 0x36, 0x38, 0x3d, 0x43, 0x42,\n    0x33, 0x2e, 0x2d, 0x30, 0x36, 0x44, 0x4e, 0x4c, 0x4b, 0x43, 0x35, 0x2a, 0x25, 0x22, 0x28, 0x37,\n    0x41, 0x3a, 0x48, 0x41, 0x3b, 0x47, 0x40, 0x3a, 0x3a, 0x37, 0x45, 0x5d, 0x63, 0x5d, 0x68, 0x7e,\n    0x60, 0x5f, 0x5e, 0x60, 0x66, 0x6e, 0x72, 0x73, 0x73, 0x78, 0x75, 0x69, 0x60, 0x60, 0x60, 0x5e,\n    0x56, 0x61, 0x6d, 0x73, 0x72, 0x6d, 0x68, 0x63, 0x63, 0x6a, 0x6a, 0x64, 0x68, 0x74, 0x74, 0x6b,\n    0x63, 0x62, 0x64, 0x6c, 0x75, 0x7a, 0x77, 0x73, 0x71, 0x6c, 0x68, 0x67, 0x67, 0x68, 0x6d, 0x73,\n    0x7a, 0x7e, 0x7d, 0x75, 0x6c, 0x66, 0x63, 0x61, 0x65, 0x5f, 0x5c, 0x5e, 0x60, 0x61, 0x66, 0x6d,\n    0x70, 0x79, 0x83, 0x84, 0x80, 0x79, 0x71, 0x6b, 0x6c, 0x62, 0x5d, 0x62, 0x6c, 0x71, 0x6f, 0x6c,\n    0x6a, 0x6b, 0x6f, 0x74, 0x74, 0x70, 0x70, 0x74, 0x7a, 0x7a, 0x77, 0x73, 0x76, 0x7c, 0x7e, 0x7b,\n    0x72, 0x76, 0x78, 0x75, 0x73, 0x71, 0x6f, 0x6c, 0x67, 0x6b, 0x6c, 0x69, 0x6d, 0x78, 0x83, 0x89,\n    0x8b, 0x88, 0x88, 0x8a, 0x84, 0x75, 0x68, 0x63, 0x62, 0x6e, 0x77, 0x74, 0x6d, 0x6d, 0x76, 0x7e,\n    0x83, 0x86, 0x83, 0x7a, 0x77, 0x7c, 0x7e, 0x7c, 0x79, 0x8a, 0x90, 0x80, 0x6e, 0x6a, 0x6e, 0x71,\n    0x68, 0x65, 0x64, 0x67, 0x6b, 0x6a, 0x63, 0x5d, 0x65, 0x6a, 0x6f, 0x6e, 0x6c, 0x6e, 0x75, 0x7a,\n    0x6c, 0x6c, 0x69, 0x67, 0x7b, 0xa6, 0xbf, 0xba, 0xbe, 0xbf, 0xc2, 0xc7, 0xc9, 0xcb, 0xce, 0xd2,\n    0xce, 0xcb, 0xca, 0xca, 0xca, 0xc8, 0xc9, 0xcc, 0xcf, 0xd0, 0xd0, 0xce, 0xce, 0xcf, 0xce, 0xcb,\n    0xcc, 0xcb, 0xc9, 0xc9, 0xc9, 0xc7, 0xc4, 0xc1, 0xbf, 0xbf, 0xc0, 0xbf, 0xbf, 0xbf, 0xc1, 0xc3,\n    0xc0, 0xbf, 0xbc, 0xbc, 0xbf, 0xc2, 0xc1, 0xbd, 0xc0, 0xb8, 0xbb, 0xbc, 0xb6, 0xbb, 0xc2, 0xbe,\n    0xc5, 0xc5, 0xc4, 0xc2, 0xbf, 0xbd, 0xbd, 0xbe, 0xba, 0xba, 0xb9, 0xb7, 0xb5, 0xb4, 0xb5, 0xb6,\n    0xbd, 0xbd, 0xba, 0xb3, 0xad, 0xa9, 0xa6, 0xa3, 0xa2, 0xa0, 0x9e, 0x9e, 0xa0, 0xa2, 0xa3, 0xa3,\n    0xa1, 0xa1, 0xa1, 0xa1, 0xa2, 0xa1, 0x99, 0x91, 0x87, 0x78, 0x76, 0x75, 0x79, 0x7a, 0x70, 0x72,\n    0x6c, 0x76, 0x87, 0x98, 0xa2, 0xa4, 0xa5, 0xa6, 0xa8, 0xa5, 0xa3, 0xa1, 0x9c, 0x96, 0x98, 0x9f,\n    0xb7, 0xd4, 0xe8, 0xe2, 0xd8, 0xd7, 0xd4, 0xca, 0xc3, 0xbf, 0xba, 0xb8, 0xb7, 0xb4, 0xac, 0xa6,\n    0xa1, 0xa3, 0xa5, 0xa6, 0xa7, 0xa9, 0xab, 0xae, 0xb2, 0xb9, 0xc1, 0xc5, 0xc4, 0xc0, 0xbc, 0xb8,\n    0xc5, 0xba, 0xbd, 0xbf, 0xc7, 0xcf, 0xd0, 0xc6, 0x92, 0x6e, 0x50, 0x56, 0x4a, 0x53, 0x7b, 0xac,\n    0x91, 0x36, 0x45, 0xb3, 0xe8, 0x74, 0x50, 0x6b, 0x3b, 0x8b, 0xdc, 0xe9, 0xde, 0xe5, 0xe5, 0xdb,\n    0xe3, 0xe9, 0x9c, 0x46, 0x41, 0xa6, 0xd9, 0xc3, 0xc9, 0xcb, 0xc5, 0xbf, 0xc2, 0xc4, 0xbe, 0xb9,\n    0xce, 0xd1, 0xd2, 0xd1, 0xd0, 0xd2, 0xd3, 0xd2, 0xd7, 0xb1, 0x97, 0x97, 0x98, 0x96, 0x97, 0x99,\n    0x9b, 0x91, 0x96, 0x70, 0xc2, 0xe3, 0xde, 0xe0, 0xe9, 0xbc, 0xbb, 0xa9, 0xd6, 0xbc, 0x53, 0x88,\n    0x9f, 0x9d, 0x93, 0x97, 0x9b, 0x99, 0x9a, 0x91, 0x96, 0x94, 0x99, 0x9e, 0x99, 0x95, 0x94, 0x92,\n    0x96, 0x9a, 0xc5, 0xd9, 0xcb, 0xca, 0xc6, 0xba, 0xae, 0xb3, 0xac, 0xb1, 0xa6, 0x6c, 0xa4, 0xc7,\n    0xb0, 0x9e, 0x86, 0x8a, 0x8f, 0x69, 0x47, 0x50, 0x51, 0x53, 0x56, 0x58, 0x5a, 0x5c, 0x5e, 0x60,\n    0x5d, 0x5c, 0x5a, 0x59, 0x57, 0x55, 0x51, 0x4e, 0x4c, 0x4b, 0x4c, 0x4b, 0x47, 0x41, 0x3e, 0x3e,\n    0x3e, 0x3c, 0x38, 0x3a, 0x3d, 0x39, 0x3a, 0x44, 0x59, 0x60, 0x6d, 0x76, 0x74, 0x6a, 0x64, 0x63,\n    0x6d, 0x62, 0x5c, 0x60, 0x65, 0x63, 0x60, 0x60, 0x5f, 0x64, 0x65, 0x60, 0x5f, 0x62, 0x65, 0x63,\n    0x62, 0x6f, 0x72, 0x73, 0x6a, 0x61, 0x66, 0x65, 0x5e, 0x68, 0x71, 0x73, 0x73, 0x75, 0x79, 0x7b,\n    0x7b, 0x79, 0x71, 0x5d, 0x45, 0x36, 0x39, 0x44, 0x5b, 0x64, 0x66, 0x5a, 0x4e, 0x4b, 0x50, 0x54,\n    0x64, 0x6b, 0x72, 0x72, 0x6d, 0x64, 0x57, 0x4d, 0x42, 0x41, 0x39, 0x32, 0x37, 0x42, 0x42, 0x3b,\n    0x36, 0x3c, 0x41, 0x47, 0x4e, 0x53, 0x4e, 0x46, 0x2a, 0x2b, 0x36, 0x47, 0x51, 0x51, 0x53, 0x57,\n    0x61, 0x61, 0x6c, 0x69, 0x75, 0x70, 0x7c, 0x7e, 0x7d, 0x80, 0x7f, 0x7c, 0x7c, 0x7a, 0x70, 0x65,\n    0x50, 0x48, 0x43, 0x43, 0x42, 0x40, 0x48, 0x54, 0x4e, 0x5c, 0x67, 0x66, 0x59, 0x49, 0x3c, 0x35,\n    0x2d, 0x24, 0x20, 0x26, 0x2c, 0x30, 0x38, 0x40, 0x44, 0x4e, 0x4e, 0x46, 0x43, 0x3c, 0x2d, 0x24,\n    0x2a, 0x2f, 0x31, 0x31, 0x37, 0x40, 0x41, 0x3b, 0x34, 0x37, 0x36, 0x2c, 0x1f, 0x19, 0x22, 0x2f,\n    0x34, 0x3f, 0x49, 0x4a, 0x48, 0x49, 0x4c, 0x4d, 0x4c, 0x50, 0x5a, 0x63, 0x63, 0x5f, 0x64, 0x6d,\n    0x6a, 0x62, 0x5d, 0x5f, 0x64, 0x6b, 0x72, 0x79, 0x83, 0x7c, 0x6f, 0x65, 0x65, 0x6c, 0x6d, 0x67,\n    0x67, 0x6d, 0x6e, 0x67, 0x67, 0x6f, 0x73, 0x71, 0x66, 0x6c, 0x6e, 0x6d, 0x73, 0x7b, 0x79, 0x71,\n    0x6d, 0x69, 0x66, 0x66, 0x69, 0x6c, 0x6e, 0x6e, 0x6d, 0x68, 0x66, 0x68, 0x69, 0x6a, 0x71, 0x7b,\n    0x82, 0x86, 0x7e, 0x6d, 0x63, 0x68, 0x6c, 0x6a, 0x60, 0x5a, 0x59, 0x5e, 0x60, 0x5e, 0x60, 0x66,\n    0x6d, 0x73, 0x77, 0x76, 0x73, 0x70, 0x6c, 0x68, 0x63, 0x61, 0x63, 0x6b, 0x71, 0x6e, 0x66, 0x5f,\n    0x59, 0x5d, 0x66, 0x70, 0x74, 0x76, 0x7b, 0x81, 0x71, 0x6e, 0x65, 0x62, 0x70, 0x84, 0x88, 0x7f,\n    0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x6f, 0x6e, 0x6f, 0x79, 0x7f, 0x7a, 0x72, 0x71, 0x75, 0x79,\n    0x83, 0x85, 0x8a, 0x8d, 0x83, 0x72, 0x66, 0x63, 0x68, 0x70, 0x78, 0x78, 0x75, 0x77, 0x7c, 0x80,\n    0x89, 0x8a, 0x85, 0x7b, 0x76, 0x78, 0x7e, 0x81, 0x84, 0x8b, 0x8a, 0x7c, 0x6d, 0x69, 0x6a, 0x6b,\n    0x6c, 0x6a, 0x6d, 0x77, 0x82, 0x84, 0x7a, 0x70, 0x63, 0x65, 0x67, 0x6c, 0x73, 0x78, 0x77, 0x73,\n    0x6a, 0x65, 0x61, 0x66, 0x7d, 0x9f, 0xaf, 0xab, 0xaf, 0xae, 0xb0, 0xb3, 0xb5, 0xb8, 0xbf, 0xc5,\n    0xc6, 0xc1, 0xbd, 0xbc, 0xbc, 0xbf, 0xc4, 0xc9, 0xca, 0xcd, 0xce, 0xcd, 0xcd, 0xcf, 0xce, 0xcc,\n    0xcc, 0xcb, 0xc9, 0xc9, 0xc8, 0xc8, 0xc7, 0xc6, 0xc6, 0xc2, 0xbe, 0xbc, 0xbd, 0xbf, 0xc0, 0xc0,\n    0xbd, 0xbf, 0xbf, 0xbe, 0xbf, 0xc1, 0xc1, 0xbf, 0xba, 0xb6, 0xb6, 0xb6, 0xb3, 0xb5, 0xb8, 0xb7,\n    0xb9, 0xba, 0xbc, 0xbe, 0xbf, 0xc1, 0xc2, 0xc3, 0xbf, 0xbe, 0xbc, 0xb9, 0xb5, 0xb3, 0xb2, 0xb2,\n    0xb5, 0xb6, 0xb4, 0xb0, 0xad, 0xab, 0xa8, 0xa5, 0xa4, 0xa2, 0xa1, 0xa1, 0xa1, 0xa2, 0xa2, 0xa1,\n    0x9f, 0x9f, 0x9e, 0x9e, 0xa0, 0x9e, 0x97, 0x8f, 0x84, 0x78, 0x76, 0x75, 0x7a, 0x7c, 0x70, 0x6e,\n    0x63, 0x66, 0x6f, 0x7d, 0x88, 0x8e, 0x92, 0x95, 0x98, 0x92, 0x91, 0x95, 0x94, 0x92, 0x9c, 0xab,\n    0xde, 0xe8, 0xe9, 0xe1, 0xdc, 0xdc, 0xd3, 0xc5, 0xbf, 0xb9, 0xb3, 0xb2, 0xb3, 0xb0, 0xa7, 0x9f,\n    0xa1, 0xa3, 0xa5, 0xa5, 0xa6, 0xa9, 0xae, 0xb3, 0xb4, 0xba, 0xc0, 0xc3, 0xc0, 0xbb, 0xb5, 0xb1,\n    0xbb, 0xbf, 0xc7, 0xbc, 0xbd, 0xcd, 0xb2, 0x79, 0x33, 0x3c, 0x37, 0x3f, 0x41, 0x4d, 0x42, 0x2e,\n    0x3b, 0x49, 0x3e, 0x4f, 0xd2, 0xb3, 0x2d, 0x46, 0x3e, 0x9b, 0xe8, 0xe7, 0xe1, 0xe0, 0xe1, 0xde,\n    0xd6, 0xe2, 0xdc, 0x6c, 0x39, 0x6c, 0xc4, 0xd2, 0xc4, 0xc4, 0xc2, 0xc1, 0xc1, 0xc0, 0xbc, 0xb8,\n    0xcd, 0xd0, 0xd1, 0xd0, 0xd0, 0xd1, 0xd2, 0xd1, 0xd8, 0xb1, 0x96, 0x95, 0x94, 0x90, 0x90, 0x91,\n    0x9b, 0x9c, 0x8f, 0x74, 0xb2, 0xa5, 0xd0, 0xe3, 0xd7, 0xcf, 0xb7, 0xba, 0xe1, 0xc3, 0x60, 0x83,\n    0x94, 0x9b, 0x9b, 0xa0, 0x9b, 0x91, 0x98, 0x9b, 0x99, 0x9e, 0x9d, 0x96, 0x90, 0x8f, 0x91, 0x94,\n    0x95, 0x97, 0xc1, 0xd6, 0xca, 0xc9, 0xc5, 0xb9, 0xb0, 0xb0, 0xac, 0xaf, 0x94, 0x67, 0xa1, 0xbf,\n    0xae, 0x95, 0x95, 0xab, 0x9a, 0x60, 0x41, 0x4d, 0x52, 0x54, 0x57, 0x59, 0x5a, 0x5a, 0x5b, 0x5c,\n    0x59, 0x58, 0x57, 0x55, 0x54, 0x51, 0x4d, 0x4a, 0x4a, 0x48, 0x47, 0x47, 0x43, 0x3e, 0x3d, 0x3f,\n    0x3c, 0x3e, 0x3c, 0x38, 0x36, 0x36, 0x44, 0x5a, 0x6b, 0x6c, 0x71, 0x76, 0x75, 0x6f, 0x6b, 0x6b,\n    0x67, 0x62, 0x5f, 0x61, 0x64, 0x63, 0x62, 0x61, 0x6c, 0x6e, 0x6b, 0x63, 0x5c, 0x5d, 0x63, 0x68,\n    0x7e, 0x8e, 0x88, 0x79, 0x6f, 0x6f, 0x6f, 0x5f, 0x61, 0x69, 0x71, 0x73, 0x72, 0x72, 0x72, 0x72,\n    0x79, 0x76, 0x6d, 0x5c, 0x45, 0x36, 0x36, 0x3c, 0x58, 0x5f, 0x66, 0x68, 0x66, 0x61, 0x55, 0x49,\n    0x43, 0x39, 0x36, 0x45, 0x5e, 0x70, 0x70, 0x69, 0x5d, 0x58, 0x4c, 0x42, 0x46, 0x4f, 0x4c, 0x3f,\n    0x49, 0x48, 0x46, 0x49, 0x54, 0x5a, 0x4d, 0x38, 0x3a, 0x3f, 0x47, 0x50, 0x5a, 0x64, 0x6f, 0x77,\n    0x67, 0x61, 0x63, 0x60, 0x6d, 0x6a, 0x6d, 0x65, 0x70, 0x79, 0x82, 0x84, 0x80, 0x7a, 0x72, 0x6c,\n    0x6f, 0x73, 0x7f, 0x8f, 0x95, 0x8d, 0x83, 0x7d, 0x93, 0x97, 0x98, 0x90, 0x81, 0x71, 0x61, 0x57,\n    0x4b, 0x3a, 0x28, 0x1e, 0x1b, 0x20, 0x2d, 0x3a, 0x50, 0x51, 0x4d, 0x43, 0x2d, 0x19, 0x26, 0x47,\n    0x43, 0x30, 0x23, 0x2a, 0x38, 0x3c, 0x39, 0x37, 0x3b, 0x37, 0x2f, 0x24, 0x19, 0x16, 0x1e, 0x28,\n    0x2a, 0x2e, 0x33, 0x37, 0x3d, 0x43, 0x44, 0x41, 0x43, 0x40, 0x3e, 0x45, 0x50, 0x58, 0x57, 0x51,\n    0x6c, 0x63, 0x5c, 0x5d, 0x62, 0x68, 0x71, 0x79, 0x80, 0x7e, 0x7a, 0x76, 0x78, 0x7b, 0x74, 0x6b,\n    0x5e, 0x60, 0x61, 0x62, 0x65, 0x6b, 0x6f, 0x70, 0x6e, 0x6c, 0x69, 0x6a, 0x6f, 0x74, 0x73, 0x70,\n    0x74, 0x72, 0x6d, 0x67, 0x62, 0x62, 0x65, 0x68, 0x6d, 0x67, 0x66, 0x69, 0x67, 0x63, 0x6b, 0x79,\n    0x87, 0x8a, 0x7e, 0x69, 0x63, 0x71, 0x7a, 0x77, 0x69, 0x63, 0x64, 0x6c, 0x6c, 0x64, 0x61, 0x66,\n    0x69, 0x6c, 0x6e, 0x6d, 0x6c, 0x6c, 0x6a, 0x67, 0x60, 0x63, 0x6b, 0x73, 0x73, 0x6b, 0x60, 0x59,\n    0x60, 0x65, 0x6d, 0x73, 0x73, 0x73, 0x77, 0x7c, 0x78, 0x72, 0x65, 0x61, 0x75, 0x8c, 0x8a, 0x77,\n    0x6b, 0x67, 0x68, 0x6f, 0x72, 0x6e, 0x6a, 0x6a, 0x6b, 0x75, 0x80, 0x83, 0x81, 0x82, 0x85, 0x88,\n    0x83, 0x8a, 0x93, 0x95, 0x88, 0x74, 0x68, 0x67, 0x6d, 0x6f, 0x6e, 0x6d, 0x6f, 0x75, 0x7a, 0x7c,\n    0x87, 0x88, 0x84, 0x7b, 0x72, 0x71, 0x78, 0x80, 0x8e, 0x8a, 0x81, 0x78, 0x70, 0x6b, 0x6b, 0x6b,\n    0x69, 0x69, 0x6b, 0x73, 0x7b, 0x7b, 0x73, 0x6b, 0x62, 0x60, 0x62, 0x6d, 0x80, 0x8b, 0x87, 0x7d,\n    0x73, 0x6a, 0x65, 0x71, 0x8c, 0xa3, 0xa9, 0xa4, 0x9e, 0x9c, 0x9b, 0x9a, 0x99, 0x9c, 0xa4, 0xac,\n    0xb0, 0xa9, 0xa1, 0x9e, 0xa0, 0xa7, 0xb1, 0xba, 0xbf, 0xc3, 0xc7, 0xc8, 0xc9, 0xcb, 0xcb, 0xca,\n    0xc9, 0xc7, 0xc3, 0xc0, 0xbf, 0xc0, 0xc4, 0xc7, 0xc8, 0xc3, 0xbe, 0xbd, 0xbe, 0xbe, 0xbb, 0xb7,\n    0xc0, 0xc3, 0xc3, 0xbe, 0xb9, 0xb7, 0xb4, 0xb2, 0xb8, 0xb9, 0xb5, 0xb3, 0xb4, 0xb3, 0xb2, 0xb4,\n    0xb4, 0xb5, 0xb8, 0xbb, 0xbe, 0xc0, 0xc0, 0xbf, 0xc1, 0xc0, 0xbd, 0xbb, 0xb8, 0xb6, 0xb3, 0xb2,\n    0xb5, 0xb5, 0xb3, 0xaf, 0xad, 0xab, 0xa5, 0xa0, 0xa2, 0xa0, 0x9f, 0x9f, 0xa0, 0xa0, 0x9f, 0x9e,\n    0x9e, 0x9f, 0x9f, 0x9e, 0x9f, 0x9e, 0x97, 0x8f, 0x82, 0x78, 0x77, 0x73, 0x7a, 0x7f, 0x71, 0x69,\n    0x63, 0x61, 0x64, 0x6d, 0x76, 0x7c, 0x80, 0x83, 0x86, 0x84, 0x87, 0x8d, 0x8d, 0x93, 0xab, 0xc6,\n    0xea, 0xe7, 0xe0, 0xd9, 0xd7, 0xd6, 0xce, 0xc3, 0xbf, 0xb8, 0xb1, 0xb0, 0xb2, 0xaf, 0xa6, 0x9d,\n    0xa0, 0xa3, 0xa6, 0xa6, 0xa6, 0xaa, 0xb2, 0xb8, 0xb7, 0xbb, 0xbf, 0xc1, 0xbd, 0xb5, 0xae, 0xa9,\n    0xb9, 0xb4, 0xbf, 0xbf, 0xbc, 0xb8, 0x7c, 0x36, 0x36, 0x5b, 0x7b, 0x9a, 0x80, 0x55, 0x3f, 0x45,\n    0x44, 0x36, 0x43, 0x38, 0x72, 0xd7, 0x94, 0x51, 0x51, 0xa6, 0xe4, 0xe0, 0xe0, 0xc8, 0xcd, 0xe4,\n    0xde, 0xe8, 0xee, 0xb0, 0x45, 0x40, 0x91, 0xcb, 0xc8, 0xc3, 0xc5, 0xc9, 0xc7, 0xc4, 0xc3, 0xc0,\n    0xcb, 0xce, 0xd0, 0xcf, 0xcf, 0xd1, 0xd1, 0xd1, 0xd7, 0xb1, 0x96, 0x94, 0x93, 0x8e, 0x8d, 0x8e,\n    0x96, 0x97, 0x8e, 0x78, 0x89, 0xce, 0xe6, 0xe7, 0xdf, 0xe6, 0x98, 0xb9, 0xe6, 0xb5, 0x63, 0x6f,\n    0x9c, 0x9d, 0x99, 0x9f, 0x9c, 0x93, 0x96, 0x95, 0x9e, 0x9f, 0x99, 0x99, 0x9e, 0x96, 0x90, 0x99,\n    0x97, 0x96, 0xbf, 0xd6, 0xcc, 0xcb, 0xc7, 0xbc, 0xb1, 0xae, 0xaf, 0xad, 0x7c, 0x64, 0xa1, 0xb9,\n    0xb4, 0x9d, 0xa2, 0xac, 0x87, 0x55, 0x49, 0x55, 0x53, 0x55, 0x58, 0x5a, 0x59, 0x58, 0x58, 0x58,\n    0x58, 0x57, 0x55, 0x54, 0x52, 0x4f, 0x4c, 0x49, 0x48, 0x45, 0x43, 0x42, 0x3f, 0x3c, 0x3d, 0x3f,\n    0x37, 0x3a, 0x39, 0x3b, 0x43, 0x4f, 0x66, 0x81, 0x7f, 0x7b, 0x78, 0x77, 0x73, 0x6d, 0x67, 0x65,\n    0x6e, 0x71, 0x72, 0x70, 0x6f, 0x6d, 0x69, 0x64, 0x62, 0x62, 0x62, 0x60, 0x5d, 0x5f, 0x69, 0x75,\n    0x6a, 0x61, 0x5a, 0x67, 0x68, 0x5c, 0x61, 0x67, 0x6d, 0x72, 0x74, 0x73, 0x72, 0x71, 0x6f, 0x6d,\n    0x6d, 0x6f, 0x6f, 0x68, 0x5a, 0x4c, 0x47, 0x49, 0x4b, 0x4d, 0x51, 0x58, 0x60, 0x64, 0x5f, 0x57,\n    0x45, 0x4e, 0x5d, 0x68, 0x68, 0x65, 0x6b, 0x75, 0x6a, 0x5b, 0x4b, 0x40, 0x3a, 0x36, 0x37, 0x3c,\n    0x3b, 0x41, 0x44, 0x44, 0x46, 0x47, 0x3e, 0x31, 0x40, 0x4d, 0x56, 0x55, 0x56, 0x5f, 0x68, 0x6c,\n    0x67, 0x69, 0x6d, 0x64, 0x67, 0x65, 0x68, 0x64, 0x5d, 0x60, 0x66, 0x69, 0x6b, 0x74, 0x85, 0x94,\n    0xa6, 0xa6, 0xa0, 0x90, 0x80, 0x7a, 0x83, 0x8d, 0x74, 0x75, 0x76, 0x77, 0x7a, 0x7d, 0x7b, 0x76,\n    0x6b, 0x61, 0x56, 0x4b, 0x3e, 0x30, 0x28, 0x27, 0x27, 0x23, 0x1c, 0x1e, 0x27, 0x2a, 0x2d, 0x37,\n    0x33, 0x2f, 0x32, 0x3d, 0x41, 0x3a, 0x31, 0x2e, 0x36, 0x2b, 0x1d, 0x16, 0x16, 0x20, 0x2f, 0x3c,\n    0x3b, 0x34, 0x2c, 0x2e, 0x3b, 0x49, 0x4e, 0x4c, 0x52, 0x52, 0x4a, 0x3f, 0x40, 0x4d, 0x59, 0x5d,\n    0x67, 0x64, 0x5f, 0x5e, 0x64, 0x6d, 0x74, 0x76, 0x75, 0x7f, 0x88, 0x87, 0x81, 0x7b, 0x74, 0x6f,\n    0x65, 0x60, 0x63, 0x6e, 0x72, 0x6d, 0x6d, 0x72, 0x6c, 0x64, 0x5e, 0x5f, 0x65, 0x6b, 0x6f, 0x71,\n    0x73, 0x75, 0x74, 0x6e, 0x65, 0x5f, 0x60, 0x64, 0x6b, 0x67, 0x69, 0x6c, 0x64, 0x5d, 0x67, 0x79,\n    0x8d, 0x8b, 0x7e, 0x6f, 0x6e, 0x7b, 0x82, 0x7f, 0x78, 0x71, 0x73, 0x7b, 0x79, 0x6d, 0x65, 0x65,\n    0x64, 0x68, 0x6a, 0x6b, 0x6c, 0x6c, 0x69, 0x64, 0x61, 0x65, 0x6b, 0x6f, 0x6c, 0x64, 0x5f, 0x5e,\n    0x59, 0x5e, 0x65, 0x67, 0x66, 0x66, 0x6a, 0x6e, 0x6e, 0x6a, 0x67, 0x6e, 0x84, 0x94, 0x8c, 0x7a,\n    0x6c, 0x68, 0x6c, 0x77, 0x7b, 0x73, 0x6a, 0x69, 0x6f, 0x6e, 0x6f, 0x74, 0x7c, 0x82, 0x83, 0x81,\n    0x7b, 0x82, 0x8d, 0x90, 0x84, 0x72, 0x6a, 0x6b, 0x7a, 0x75, 0x6c, 0x66, 0x69, 0x73, 0x7c, 0x80,\n    0x7a, 0x7d, 0x7f, 0x7c, 0x77, 0x77, 0x81, 0x8b, 0x8e, 0x84, 0x7b, 0x77, 0x75, 0x71, 0x71, 0x74,\n    0x74, 0x74, 0x74, 0x72, 0x70, 0x6e, 0x6d, 0x6d, 0x62, 0x62, 0x64, 0x6f, 0x81, 0x8f, 0x8e, 0x85,\n    0x75, 0x71, 0x6d, 0x77, 0x92, 0xa5, 0xa4, 0x9d, 0x97, 0x93, 0x8f, 0x89, 0x84, 0x82, 0x88, 0x8f,\n    0x95, 0x8c, 0x84, 0x80, 0x83, 0x8b, 0x97, 0xa1, 0xac, 0xb3, 0xbb, 0xbe, 0xc0, 0xc3, 0xc5, 0xc5,\n    0xc5, 0xc1, 0xbb, 0xb4, 0xb0, 0xb1, 0xb6, 0xbb, 0xbf, 0xbf, 0xc1, 0xc4, 0xc4, 0xc1, 0xba, 0xb4,\n    0xb9, 0xbd, 0xbf, 0xc0, 0xc0, 0xc1, 0xc0, 0xbe, 0xb9, 0xbd, 0xb6, 0xb1, 0xb7, 0xb5, 0xb1, 0xb8,\n    0xb6, 0xb6, 0xb9, 0xbb, 0xbe, 0xbe, 0xbc, 0xba, 0xbc, 0xbb, 0xba, 0xba, 0xbb, 0xbb, 0xba, 0xb8,\n    0xb8, 0xb8, 0xb5, 0xb2, 0xb1, 0xaf, 0xa7, 0xa0, 0x9f, 0x9d, 0x9b, 0x9a, 0x9b, 0x9d, 0x9d, 0x9d,\n    0xa0, 0xa1, 0xa1, 0xa0, 0xa1, 0x9f, 0x99, 0x93, 0x82, 0x79, 0x75, 0x70, 0x77, 0x7f, 0x71, 0x66,\n    0x6a, 0x6a, 0x6d, 0x73, 0x78, 0x79, 0x7a, 0x7b, 0x80, 0x86, 0x8c, 0x8e, 0x92, 0xa4, 0xc5, 0xe1,\n    0xe5, 0xe3, 0xe1, 0xdd, 0xd7, 0xd0, 0xcb, 0xca, 0xbf, 0xba, 0xb5, 0xb2, 0xaf, 0xab, 0xa4, 0x9f,\n    0x9f, 0xa4, 0xa8, 0xa9, 0xa8, 0xab, 0xb2, 0xba, 0xba, 0xbc, 0xbf, 0xc1, 0xbd, 0xb4, 0xac, 0xa8,\n    0xb7, 0xb1, 0xb4, 0xbd, 0xbf, 0xa5, 0x53, 0x26, 0x4d, 0xb5, 0xde, 0xe3, 0xe5, 0xe5, 0xa6, 0x50,\n    0x36, 0x4b, 0x3d, 0x3e, 0x50, 0xc5, 0xe4, 0xd1, 0xd5, 0xdc, 0xe6, 0xea, 0xce, 0x66, 0x75, 0xdc,\n    0xec, 0xec, 0xdb, 0xe2, 0x86, 0x39, 0x5c, 0xaf, 0xcb, 0xc0, 0xbf, 0xc4, 0xc2, 0xc2, 0xc2, 0xbd,\n    0xcb, 0xce, 0xd0, 0xcf, 0xcf, 0xd1, 0xd2, 0xd1, 0xd6, 0xaf, 0x96, 0x95, 0x95, 0x91, 0x91, 0x92,\n    0x94, 0x98, 0xa7, 0x8f, 0x70, 0xd2, 0xe2, 0xbf, 0xe1, 0xdf, 0xae, 0xb5, 0xed, 0xd8, 0x68, 0x70,\n    0x98, 0x9a, 0x93, 0x97, 0x9b, 0x9b, 0x9f, 0x99, 0x9c, 0x94, 0x90, 0xa6, 0xbd, 0xaa, 0x93, 0x99,\n    0x96, 0x92, 0xbb, 0xd6, 0xcd, 0xcb, 0xc7, 0xbe, 0xb2, 0xae, 0xb6, 0xa9, 0x68, 0x65, 0xa5, 0xb8,\n    0xaa, 0xa1, 0xaa, 0xb0, 0x8d, 0x5a, 0x46, 0x4e, 0x54, 0x56, 0x59, 0x5a, 0x5a, 0x58, 0x56, 0x56,\n    0x57, 0x55, 0x53, 0x52, 0x50, 0x4d, 0x4a, 0x48, 0x46, 0x44, 0x42, 0x41, 0x3e, 0x3b, 0x3c, 0x3e,\n    0x3a, 0x38, 0x35, 0x3d, 0x50, 0x5f, 0x6c, 0x7a, 0x72, 0x71, 0x72, 0x73, 0x74, 0x73, 0x72, 0x71,\n    0x7d, 0x82, 0x83, 0x7f, 0x7c, 0x78, 0x70, 0x66, 0x66, 0x61, 0x5f, 0x5d, 0x58, 0x54, 0x58, 0x61,\n    0x55, 0x62, 0x62, 0x64, 0x6a, 0x6e, 0x6f, 0x60, 0x69, 0x6a, 0x6a, 0x69, 0x6b, 0x6e, 0x6f, 0x6d,\n    0x6e, 0x6f, 0x6d, 0x65, 0x58, 0x4e, 0x4e, 0x53, 0x59, 0x5e, 0x65, 0x6b, 0x6a, 0x65, 0x60, 0x5d,\n    0x56, 0x4d, 0x53, 0x6f, 0x85, 0x80, 0x68, 0x55, 0x38, 0x3a, 0x4b, 0x5a, 0x4b, 0x2a, 0x20, 0x2c,\n    0x30, 0x23, 0x20, 0x32, 0x4a, 0x4e, 0x3a, 0x24, 0x38, 0x50, 0x61, 0x5f, 0x59, 0x5b, 0x5a, 0x54,\n    0x4e, 0x57, 0x5f, 0x5f, 0x66, 0x70, 0x78, 0x79, 0x7d, 0x87, 0x9a, 0xa9, 0xa9, 0x9e, 0x97, 0x98,\n    0x79, 0x6a, 0x56, 0x4c, 0x50, 0x5a, 0x5c, 0x58, 0x58, 0x4e, 0x3e, 0x35, 0x3a, 0x48, 0x54, 0x5a,\n    0x56, 0x50, 0x4c, 0x4d, 0x4f, 0x4e, 0x4e, 0x4f, 0x40, 0x42, 0x3c, 0x34, 0x31, 0x2d, 0x2d, 0x34,\n    0x3d, 0x3b, 0x32, 0x26, 0x26, 0x32, 0x3c, 0x3f, 0x36, 0x2a, 0x1c, 0x15, 0x15, 0x1b, 0x25, 0x2d,\n    0x30, 0x26, 0x1f, 0x28, 0x3c, 0x50, 0x57, 0x56, 0x36, 0x4e, 0x67, 0x6e, 0x67, 0x5e, 0x59, 0x56,\n    0x66, 0x69, 0x65, 0x5f, 0x65, 0x74, 0x7b, 0x78, 0x76, 0x7d, 0x82, 0x7d, 0x74, 0x6e, 0x6f, 0x71,\n    0x6b, 0x67, 0x62, 0x60, 0x60, 0x61, 0x63, 0x65, 0x61, 0x5c, 0x5b, 0x63, 0x6b, 0x70, 0x72, 0x75,\n    0x71, 0x76, 0x78, 0x72, 0x67, 0x60, 0x5f, 0x63, 0x66, 0x67, 0x6c, 0x6e, 0x66, 0x5f, 0x6c, 0x81,\n    0x8c, 0x80, 0x73, 0x6d, 0x71, 0x78, 0x7d, 0x7e, 0x79, 0x75, 0x76, 0x7b, 0x7a, 0x6e, 0x64, 0x61,\n    0x64, 0x67, 0x68, 0x67, 0x68, 0x68, 0x65, 0x61, 0x61, 0x63, 0x66, 0x68, 0x64, 0x60, 0x60, 0x64,\n    0x60, 0x64, 0x67, 0x65, 0x61, 0x60, 0x62, 0x65, 0x64, 0x62, 0x67, 0x76, 0x84, 0x84, 0x7a, 0x71,\n    0x70, 0x6d, 0x71, 0x7b, 0x7e, 0x77, 0x72, 0x73, 0x76, 0x70, 0x6c, 0x70, 0x78, 0x7e, 0x80, 0x7f,\n    0x88, 0x8b, 0x92, 0x94, 0x8d, 0x82, 0x7e, 0x81, 0x79, 0x75, 0x6c, 0x66, 0x67, 0x71, 0x7a, 0x7f,\n    0x7a, 0x7b, 0x78, 0x73, 0x6f, 0x70, 0x78, 0x7f, 0x83, 0x7a, 0x74, 0x75, 0x75, 0x72, 0x74, 0x79,\n    0x70, 0x6d, 0x6a, 0x68, 0x68, 0x69, 0x68, 0x66, 0x62, 0x69, 0x6f, 0x73, 0x7a, 0x82, 0x82, 0x7d,\n    0x7d, 0x83, 0x7f, 0x81, 0x99, 0xab, 0xa6, 0x9d, 0x98, 0x94, 0x8d, 0x86, 0x7d, 0x78, 0x79, 0x7d,\n    0x82, 0x7b, 0x73, 0x70, 0x71, 0x77, 0x81, 0x89, 0x97, 0xa3, 0xaf, 0xb6, 0xb9, 0xbd, 0xbf, 0xc0,\n    0xc3, 0xc1, 0xbc, 0xb4, 0xac, 0xa7, 0xa5, 0xa5, 0xad, 0xb2, 0xb9, 0xc0, 0xc3, 0xc2, 0xbf, 0xbe,\n    0xb8, 0xb9, 0xbb, 0xbc, 0xbf, 0xc1, 0xbe, 0xb9, 0xb7, 0xbb, 0xb3, 0xaf, 0xb5, 0xb5, 0xb3, 0xbb,\n    0xb7, 0xb8, 0xbb, 0xbd, 0xbf, 0xbe, 0xbc, 0xbb, 0xb2, 0xb3, 0xb3, 0xb5, 0xb8, 0xba, 0xbb, 0xbb,\n    0xb7, 0xb8, 0xb7, 0xb7, 0xb8, 0xb8, 0xb2, 0xab, 0xa6, 0xa2, 0x9e, 0x9b, 0x9a, 0x9b, 0x9d, 0x9d,\n    0x9f, 0xa0, 0xa0, 0x9f, 0x9f, 0x9e, 0x99, 0x93, 0x85, 0x7a, 0x74, 0x6c, 0x73, 0x7d, 0x71, 0x68,\n    0x71, 0x74, 0x79, 0x7d, 0x7d, 0x7b, 0x7d, 0x81, 0x88, 0x8d, 0x8f, 0x92, 0xa5, 0xc5, 0xdf, 0xea,\n    0xe4, 0xe0, 0xdd, 0xd9, 0xcf, 0xc3, 0xbf, 0xc0, 0xbb, 0xba, 0xb6, 0xb0, 0xa8, 0xa3, 0xa0, 0x9f,\n    0xa0, 0xa5, 0xab, 0xad, 0xab, 0xad, 0xb2, 0xb8, 0xbd, 0xbd, 0xc0, 0xc3, 0xc1, 0xb8, 0xb0, 0xad,\n    0xb0, 0xbf, 0xb9, 0xb7, 0xc0, 0xa2, 0x41, 0x2e, 0x87, 0xdb, 0xec, 0xed, 0xe8, 0xe7, 0xde, 0xd1,\n    0x67, 0x52, 0x2d, 0x4a, 0x40, 0xa9, 0xf1, 0xdf, 0xec, 0xea, 0xdf, 0xe5, 0xd0, 0x75, 0x83, 0xe1,\n    0xe8, 0xde, 0xe2, 0xe3, 0xd0, 0x58, 0x38, 0x84, 0xcc, 0xc7, 0xc3, 0xc2, 0xc4, 0xc6, 0xc4, 0xbd,\n    0xcd, 0xd0, 0xd1, 0xd0, 0xd0, 0xd2, 0xd2, 0xd2, 0xd4, 0xaf, 0x96, 0x96, 0x97, 0x94, 0x94, 0x95,\n    0x9e, 0x97, 0x98, 0x8c, 0x85, 0x8d, 0xd5, 0xcd, 0xde, 0xdf, 0x87, 0x66, 0x98, 0x93, 0x65, 0x5a,\n    0x91, 0xa0, 0xa0, 0x9b, 0x95, 0x96, 0x9d, 0x96, 0x94, 0x94, 0x97, 0xb1, 0xcc, 0xb8, 0x97, 0x91,\n    0x91, 0x8b, 0xb5, 0xd3, 0xcb, 0xc8, 0xc4, 0xbd, 0xb3, 0xb2, 0xbc, 0x9d, 0x5d, 0x6a, 0xa6, 0xb6,\n    0xac, 0xa3, 0x95, 0x90, 0x83, 0x59, 0x42, 0x53, 0x54, 0x56, 0x59, 0x5a, 0x59, 0x58, 0x56, 0x56,\n    0x53, 0x51, 0x4f, 0x4d, 0x4b, 0x49, 0x46, 0x44, 0x43, 0x41, 0x40, 0x40, 0x3d, 0x3a, 0x39, 0x3c,\n    0x37, 0x3a, 0x3e, 0x4c, 0x63, 0x6e, 0x71, 0x75, 0x6c, 0x6f, 0x70, 0x6f, 0x6f, 0x71, 0x76, 0x79,\n    0x82, 0x82, 0x7e, 0x78, 0x77, 0x77, 0x71, 0x68, 0x6d, 0x63, 0x5c, 0x5a, 0x57, 0x53, 0x53, 0x58,\n    0x4f, 0x64, 0x68, 0x67, 0x6a, 0x6e, 0x6c, 0x56, 0x62, 0x65, 0x69, 0x6c, 0x72, 0x77, 0x78, 0x76,\n    0x6f, 0x6b, 0x63, 0x56, 0x49, 0x48, 0x56, 0x65, 0x67, 0x59, 0x50, 0x56, 0x60, 0x63, 0x5e, 0x5a,\n    0x61, 0x6f, 0x85, 0x8e, 0x7b, 0x58, 0x40, 0x3a, 0x5c, 0x65, 0x75, 0x7b, 0x68, 0x4b, 0x41, 0x47,\n    0x3d, 0x2d, 0x2c, 0x43, 0x50, 0x40, 0x25, 0x15, 0x29, 0x44, 0x5c, 0x62, 0x64, 0x68, 0x68, 0x63,\n    0x60, 0x62, 0x65, 0x73, 0x88, 0x9f, 0xa4, 0xa1, 0x9b, 0x8f, 0x83, 0x78, 0x66, 0x4e, 0x3a, 0x32,\n    0x3b, 0x3a, 0x3c, 0x47, 0x58, 0x62, 0x5e, 0x54, 0x48, 0x50, 0x5c, 0x6a, 0x79, 0x84, 0x87, 0x85,\n    0x7e, 0x71, 0x60, 0x54, 0x4b, 0x41, 0x37, 0x30, 0x3c, 0x30, 0x2e, 0x3f, 0x48, 0x3d, 0x3c, 0x4d,\n    0x5e, 0x49, 0x2e, 0x23, 0x30, 0x42, 0x41, 0x35, 0x2b, 0x28, 0x28, 0x2c, 0x34, 0x3c, 0x45, 0x4c,\n    0x4f, 0x49, 0x47, 0x50, 0x5f, 0x68, 0x67, 0x62, 0x62, 0x57, 0x4d, 0x49, 0x49, 0x4a, 0x50, 0x57,\n    0x68, 0x69, 0x64, 0x5c, 0x62, 0x72, 0x7a, 0x78, 0x75, 0x74, 0x72, 0x70, 0x6c, 0x68, 0x64, 0x62,\n    0x6d, 0x76, 0x73, 0x64, 0x63, 0x71, 0x75, 0x6c, 0x60, 0x61, 0x67, 0x6f, 0x74, 0x72, 0x6d, 0x6a,\n    0x77, 0x79, 0x79, 0x73, 0x69, 0x63, 0x64, 0x68, 0x66, 0x68, 0x6c, 0x6b, 0x64, 0x61, 0x6c, 0x7b,\n    0x77, 0x68, 0x5c, 0x5c, 0x64, 0x6b, 0x74, 0x7b, 0x76, 0x75, 0x76, 0x77, 0x77, 0x72, 0x69, 0x63,\n    0x6a, 0x6b, 0x6a, 0x66, 0x64, 0x64, 0x64, 0x62, 0x63, 0x64, 0x65, 0x66, 0x64, 0x62, 0x64, 0x68,\n    0x70, 0x71, 0x70, 0x6b, 0x67, 0x67, 0x68, 0x68, 0x68, 0x63, 0x68, 0x76, 0x7a, 0x71, 0x68, 0x67,\n    0x6f, 0x6d, 0x6e, 0x72, 0x73, 0x72, 0x76, 0x7d, 0x75, 0x75, 0x78, 0x7c, 0x7e, 0x81, 0x87, 0x8d,\n    0x85, 0x82, 0x80, 0x7e, 0x75, 0x6c, 0x6b, 0x70, 0x72, 0x74, 0x74, 0x72, 0x73, 0x77, 0x79, 0x78,\n    0x79, 0x77, 0x70, 0x6a, 0x6d, 0x78, 0x80, 0x81, 0x78, 0x73, 0x6f, 0x70, 0x6f, 0x6f, 0x72, 0x78,\n    0x7b, 0x73, 0x6e, 0x71, 0x77, 0x78, 0x6e, 0x64, 0x62, 0x71, 0x7c, 0x7c, 0x7b, 0x7e, 0x80, 0x7f,\n    0x88, 0x94, 0x8f, 0x8e, 0xa5, 0xb3, 0xac, 0xa4, 0x9e, 0x99, 0x92, 0x8b, 0x83, 0x7c, 0x79, 0x7b,\n    0x7b, 0x75, 0x6e, 0x6a, 0x69, 0x6b, 0x70, 0x76, 0x86, 0x95, 0xa7, 0xb2, 0xb7, 0xba, 0xbd, 0xbe,\n    0xc2, 0xc4, 0xc3, 0xbf, 0xb7, 0xab, 0xa1, 0x9b, 0x9e, 0xa1, 0xa5, 0xaa, 0xaf, 0xb4, 0xbb, 0xbf,\n    0xc0, 0xbf, 0xbc, 0xba, 0xbb, 0xb9, 0xb3, 0xab, 0xb4, 0xb4, 0xb0, 0xae, 0xb1, 0xb3, 0xb5, 0xba,\n    0xba, 0xbb, 0xbd, 0xbd, 0xba, 0xb7, 0xb5, 0xb4, 0xac, 0xad, 0xae, 0xaf, 0xaf, 0xb1, 0xb4, 0xb6,\n    0xba, 0xbb, 0xbc, 0xbc, 0xbd, 0xbc, 0xb8, 0xb3, 0xb3, 0xaf, 0xa8, 0xa2, 0x9f, 0x9e, 0x9d, 0x9c,\n    0x9a, 0x9c, 0x9d, 0x9c, 0x9b, 0x9a, 0x96, 0x91, 0x89, 0x7b, 0x74, 0x6d, 0x73, 0x7b, 0x72, 0x6d,\n    0x78, 0x7b, 0x80, 0x83, 0x83, 0x83, 0x89, 0x91, 0x93, 0x93, 0x93, 0xa1, 0xc1, 0xe2, 0xeb, 0xe3,\n    0xe6, 0xdb, 0xd0, 0xcb, 0xc6, 0xbd, 0xb7, 0xb4, 0xb8, 0xb9, 0xb5, 0xad, 0xa3, 0x9e, 0x9f, 0xa2,\n    0xa3, 0xa8, 0xae, 0xb0, 0xb0, 0xb0, 0xb4, 0xb8, 0xc0, 0xbf, 0xc2, 0xc7, 0xc5, 0xbc, 0xb5, 0xb3,\n    0xb4, 0xc0, 0xb8, 0xbd, 0xc6, 0x9f, 0x36, 0x37, 0xa5, 0xed, 0xe6, 0xe3, 0xe4, 0xe4, 0xea, 0xee,\n    0xe9, 0xae, 0x60, 0x51, 0x5a, 0xbd, 0xe8, 0xe4, 0xe6, 0xde, 0xbd, 0xd4, 0xef, 0xd9, 0xd2, 0xe4,\n    0xe3, 0xd8, 0xe7, 0xd3, 0xdb, 0x9d, 0x30, 0x4e, 0xb4, 0xca, 0xd0, 0xc7, 0xca, 0xce, 0xc8, 0xc2,\n    0xce, 0xd2, 0xd3, 0xd1, 0xd1, 0xd2, 0xd3, 0xd2, 0xd3, 0xae, 0x96, 0x96, 0x97, 0x94, 0x94, 0x95,\n    0x88, 0x96, 0x9c, 0x98, 0x90, 0x68, 0x98, 0xd9, 0xe5, 0xc8, 0x6c, 0x59, 0x7f, 0x70, 0x5f, 0x51,\n    0x88, 0x99, 0x9b, 0x9b, 0x98, 0x99, 0x9d, 0x94, 0x92, 0x9f, 0xa9, 0xb8, 0xc6, 0xb9, 0x9b, 0x8c,\n    0x8e, 0x88, 0xb4, 0xd5, 0xcd, 0xc7, 0xc5, 0xc0, 0xb4, 0xb5, 0xbb, 0x89, 0x5b, 0x73, 0xa4, 0xae,\n    0xaf, 0xa8, 0x75, 0x46, 0x49, 0x50, 0x4e, 0x57, 0x54, 0x56, 0x58, 0x59, 0x58, 0x56, 0x55, 0x55,\n    0x52, 0x50, 0x4d, 0x4b, 0x49, 0x47, 0x45, 0x43, 0x3f, 0x3e, 0x3d, 0x3d, 0x3b, 0x38, 0x38, 0x3b,\n    0x36, 0x45, 0x54, 0x63, 0x71, 0x77, 0x79, 0x7f, 0x76, 0x76, 0x72, 0x69, 0x64, 0x67, 0x6e, 0x73,\n    0x7e, 0x78, 0x6e, 0x68, 0x6a, 0x70, 0x72, 0x71, 0x6a, 0x61, 0x58, 0x57, 0x5c, 0x62, 0x67, 0x6b,\n    0x68, 0x68, 0x63, 0x6a, 0x6b, 0x66, 0x6d, 0x6d, 0x65, 0x6b, 0x72, 0x77, 0x7a, 0x7a, 0x76, 0x70,\n    0x67, 0x65, 0x5e, 0x52, 0x44, 0x40, 0x4a, 0x58, 0x50, 0x51, 0x4f, 0x43, 0x31, 0x2e, 0x45, 0x62,\n    0x72, 0x75, 0x73, 0x64, 0x4b, 0x3b, 0x41, 0x51, 0x64, 0x80, 0x94, 0x92, 0x86, 0x76, 0x5b, 0x3f,\n    0x2d, 0x30, 0x40, 0x52, 0x4b, 0x31, 0x25, 0x2b, 0x17, 0x26, 0x38, 0x46, 0x51, 0x5c, 0x66, 0x6b,\n    0x61, 0x62, 0x5f, 0x69, 0x6d, 0x7a, 0x7c, 0x80, 0x7a, 0x5f, 0x3f, 0x2f, 0x32, 0x42, 0x53, 0x5f,\n    0x5b, 0x64, 0x6d, 0x6e, 0x69, 0x66, 0x6b, 0x71, 0x82, 0x77, 0x65, 0x56, 0x51, 0x58, 0x60, 0x65,\n    0x66, 0x65, 0x66, 0x6b, 0x6f, 0x6a, 0x5f, 0x55, 0x40, 0x46, 0x49, 0x46, 0x3f, 0x3e, 0x56, 0x79,\n    0x6b, 0x43, 0x1c, 0x13, 0x1e, 0x28, 0x29, 0x27, 0x29, 0x23, 0x1e, 0x1e, 0x23, 0x2c, 0x38, 0x42,\n    0x3d, 0x38, 0x36, 0x3e, 0x49, 0x52, 0x57, 0x59, 0x53, 0x3e, 0x29, 0x23, 0x24, 0x26, 0x2b, 0x33,\n    0x6a, 0x64, 0x5f, 0x5e, 0x62, 0x68, 0x6e, 0x71, 0x70, 0x6e, 0x6e, 0x70, 0x6f, 0x68, 0x5d, 0x55,\n    0x5b, 0x65, 0x69, 0x63, 0x65, 0x70, 0x74, 0x6f, 0x71, 0x72, 0x71, 0x6e, 0x6a, 0x68, 0x65, 0x62,\n    0x73, 0x75, 0x74, 0x70, 0x6a, 0x66, 0x67, 0x6a, 0x67, 0x67, 0x66, 0x64, 0x63, 0x66, 0x6c, 0x71,\n    0x69, 0x63, 0x5b, 0x57, 0x59, 0x62, 0x6c, 0x73, 0x76, 0x78, 0x76, 0x72, 0x73, 0x75, 0x6e, 0x64,\n    0x68, 0x6b, 0x6c, 0x69, 0x67, 0x67, 0x68, 0x67, 0x68, 0x65, 0x63, 0x63, 0x63, 0x62, 0x65, 0x68,\n    0x65, 0x66, 0x65, 0x63, 0x66, 0x6d, 0x71, 0x72, 0x64, 0x61, 0x67, 0x74, 0x7c, 0x7a, 0x75, 0x73,\n    0x6c, 0x6e, 0x6d, 0x6a, 0x67, 0x6b, 0x76, 0x80, 0x78, 0x78, 0x7a, 0x7d, 0x7c, 0x7a, 0x7d, 0x82,\n    0x85, 0x80, 0x7a, 0x72, 0x68, 0x60, 0x62, 0x6a, 0x76, 0x7b, 0x80, 0x84, 0x85, 0x83, 0x7a, 0x71,\n    0x67, 0x69, 0x67, 0x6b, 0x7e, 0x97, 0x9e, 0x97, 0x74, 0x70, 0x6c, 0x6b, 0x6c, 0x70, 0x75, 0x79,\n    0x74, 0x70, 0x6c, 0x6e, 0x70, 0x6b, 0x60, 0x55, 0x66, 0x76, 0x7f, 0x7b, 0x78, 0x7e, 0x85, 0x87,\n    0x86, 0x90, 0x8c, 0x92, 0xac, 0xb6, 0xac, 0xaa, 0xa7, 0xa0, 0x98, 0x92, 0x8c, 0x85, 0x81, 0x80,\n    0x7e, 0x78, 0x70, 0x6b, 0x68, 0x65, 0x67, 0x6a, 0x79, 0x8c, 0xa2, 0xb0, 0xb6, 0xba, 0xbd, 0xbe,\n    0xc1, 0xc2, 0xc5, 0xc5, 0xc1, 0xb8, 0xaf, 0xa8, 0xa1, 0x9d, 0x98, 0x96, 0x99, 0xa0, 0xa7, 0xac,\n    0xb2, 0xb4, 0xb5, 0xb5, 0xb7, 0xb9, 0xb7, 0xb3, 0xab, 0xa8, 0xaa, 0xac, 0xaa, 0xad, 0xb1, 0xb0,\n    0xb3, 0xb6, 0xb8, 0xb5, 0xb0, 0xab, 0xaa, 0xaa, 0xaa, 0xac, 0xad, 0xab, 0xa8, 0xa8, 0xad, 0xb1,\n    0xba, 0xbd, 0xbe, 0xbe, 0xbe, 0xbe, 0xbb, 0xb8, 0xba, 0xb6, 0xb0, 0xaa, 0xa5, 0xa0, 0x9c, 0x9a,\n    0x99, 0x9b, 0x9c, 0x9a, 0x99, 0x98, 0x95, 0x90, 0x8c, 0x7c, 0x76, 0x71, 0x75, 0x7a, 0x72, 0x72,\n    0x81, 0x83, 0x88, 0x8c, 0x8f, 0x91, 0x97, 0x9e, 0x9d, 0x9e, 0xa9, 0xc1, 0xdb, 0xe9, 0xe6, 0xde,\n    0xe4, 0xda, 0xd0, 0xcb, 0xc9, 0xc4, 0xbe, 0xb9, 0xb7, 0xb6, 0xb1, 0xa9, 0xa0, 0x9d, 0xa0, 0xa4,\n    0xa8, 0xab, 0xaf, 0xb2, 0xb3, 0xb5, 0xb9, 0xbc, 0xc4, 0xc1, 0xc4, 0xc9, 0xc8, 0xbf, 0xb7, 0xb5,\n    0xbe, 0xbb, 0xb8, 0xc5, 0xc8, 0xab, 0x42, 0x36, 0x9d, 0xf1, 0xe9, 0xe5, 0xe9, 0xe4, 0xe4, 0xe4,\n    0xe6, 0xe8, 0xdc, 0xcd, 0xcd, 0xed, 0xe8, 0xe7, 0xe9, 0xa0, 0x61, 0xab, 0xe3, 0xe5, 0xdf, 0xed,\n    0xe7, 0xe0, 0xde, 0xc8, 0xc1, 0xd0, 0x69, 0x39, 0x71, 0xb1, 0xce, 0xc3, 0xc5, 0xc8, 0xc1, 0xc1,\n    0xd0, 0xd3, 0xd4, 0xd2, 0xd1, 0xd2, 0xd2, 0xd1, 0xd1, 0xac, 0x95, 0x96, 0x97, 0x95, 0x95, 0x96,\n    0xa0, 0x99, 0x8e, 0x98, 0xa3, 0x9e, 0x67, 0x63, 0x7d, 0x5a, 0x6d, 0x75, 0x86, 0x8a, 0x49, 0x51,\n    0x80, 0x88, 0x8a, 0x93, 0x96, 0x94, 0x9b, 0x9a, 0x98, 0x9a, 0xa6, 0xba, 0xc0, 0xaf, 0x97, 0x8a,\n    0x8d, 0x88, 0xb6, 0xd9, 0xd1, 0xc9, 0xc6, 0xc4, 0xb2, 0xb3, 0xb3, 0x72, 0x63, 0x82, 0xa4, 0xa9,\n    0xa3, 0x98, 0x6b, 0x3f, 0x40, 0x52, 0x51, 0x47, 0x55, 0x56, 0x57, 0x57, 0x55, 0x53, 0x53, 0x53,\n    0x51, 0x4f, 0x4c, 0x49, 0x48, 0x46, 0x43, 0x42, 0x3e, 0x3c, 0x3b, 0x3b, 0x3a, 0x39, 0x3b, 0x3f,\n    0x4a, 0x5a, 0x66, 0x6a, 0x6b, 0x68, 0x69, 0x70, 0x71, 0x71, 0x6d, 0x67, 0x66, 0x6d, 0x75, 0x79,\n    0x7c, 0x74, 0x6c, 0x68, 0x67, 0x6a, 0x6f, 0x74, 0x72, 0x6c, 0x63, 0x5d, 0x5f, 0x66, 0x6a, 0x6b,\n    0x6b, 0x76, 0x6f, 0x68, 0x67, 0x6b, 0x6c, 0x5d, 0x62, 0x68, 0x6e, 0x71, 0x70, 0x6e, 0x69, 0x64,\n    0x6a, 0x68, 0x62, 0x55, 0x43, 0x35, 0x33, 0x37, 0x3e, 0x2f, 0x2c, 0x3e, 0x53, 0x5c, 0x5f, 0x61,\n    0x5e, 0x65, 0x6b, 0x67, 0x5a, 0x4c, 0x45, 0x43, 0x66, 0x7e, 0x8c, 0x8a, 0x8d, 0x94, 0x8b, 0x76,\n    0x63, 0x56, 0x4e, 0x4c, 0x43, 0x2f, 0x1e, 0x17, 0x19, 0x16, 0x1c, 0x2c, 0x38, 0x3e, 0x48, 0x52,\n    0x53, 0x57, 0x53, 0x54, 0x40, 0x3e, 0x42, 0x53, 0x59, 0x53, 0x4c, 0x4d, 0x58, 0x65, 0x6b, 0x6b,\n    0x75, 0x6d, 0x6a, 0x6f, 0x71, 0x6b, 0x64, 0x60, 0x55, 0x4f, 0x45, 0x3f, 0x40, 0x46, 0x4a, 0x4a,\n    0x37, 0x37, 0x38, 0x3a, 0x3d, 0x3f, 0x3d, 0x3a, 0x4b, 0x5e, 0x6b, 0x73, 0x7d, 0x7b, 0x68, 0x57,\n    0x51, 0x4b, 0x49, 0x4b, 0x46, 0x38, 0x2d, 0x2b, 0x26, 0x1f, 0x18, 0x19, 0x1f, 0x28, 0x32, 0x39,\n    0x48, 0x3c, 0x2e, 0x25, 0x1e, 0x18, 0x15, 0x15, 0x13, 0x16, 0x1c, 0x21, 0x24, 0x26, 0x2b, 0x30,\n    0x6c, 0x61, 0x5f, 0x67, 0x6a, 0x63, 0x63, 0x6b, 0x71, 0x71, 0x72, 0x72, 0x6e, 0x66, 0x5f, 0x5a,\n    0x62, 0x5d, 0x5f, 0x68, 0x69, 0x67, 0x6f, 0x7e, 0x82, 0x7e, 0x71, 0x62, 0x5b, 0x60, 0x67, 0x6a,\n    0x67, 0x69, 0x6b, 0x6b, 0x68, 0x66, 0x65, 0x65, 0x64, 0x63, 0x60, 0x60, 0x67, 0x71, 0x75, 0x72,\n    0x72, 0x76, 0x71, 0x63, 0x5b, 0x60, 0x66, 0x67, 0x74, 0x77, 0x73, 0x6a, 0x6b, 0x71, 0x6c, 0x5f,\n    0x5d, 0x65, 0x6c, 0x6d, 0x6c, 0x6b, 0x6a, 0x69, 0x6a, 0x64, 0x5d, 0x5b, 0x5c, 0x5d, 0x60, 0x64,\n    0x70, 0x6f, 0x6a, 0x65, 0x66, 0x6c, 0x6f, 0x6e, 0x6e, 0x6d, 0x6f, 0x77, 0x80, 0x82, 0x7a, 0x70,\n    0x6c, 0x73, 0x74, 0x6c, 0x66, 0x6a, 0x76, 0x80, 0x7b, 0x75, 0x74, 0x7a, 0x81, 0x84, 0x84, 0x85,\n    0x79, 0x75, 0x71, 0x6a, 0x61, 0x5d, 0x65, 0x71, 0x72, 0x76, 0x7b, 0x80, 0x81, 0x7b, 0x6c, 0x5e,\n    0x61, 0x64, 0x63, 0x66, 0x7b, 0x91, 0x8e, 0x7b, 0x75, 0x71, 0x6c, 0x69, 0x6d, 0x74, 0x7a, 0x7d,\n    0x73, 0x77, 0x79, 0x75, 0x6d, 0x65, 0x60, 0x5f, 0x6d, 0x77, 0x78, 0x6f, 0x6b, 0x75, 0x7f, 0x83,\n    0x88, 0x8e, 0x8c, 0x9c, 0xbb, 0xc0, 0xb4, 0xb8, 0xaf, 0xa6, 0x9d, 0x97, 0x91, 0x8b, 0x86, 0x84,\n    0x85, 0x7f, 0x77, 0x71, 0x6b, 0x66, 0x66, 0x68, 0x72, 0x86, 0x9f, 0xaf, 0xb6, 0xba, 0xbc, 0xbe,\n    0xbe, 0xbe, 0xbf, 0xc2, 0xc4, 0xc3, 0xbf, 0xbc, 0xb1, 0xa8, 0x9b, 0x92, 0x91, 0x93, 0x96, 0x96,\n    0x9d, 0xa0, 0xa2, 0xa1, 0xa0, 0xa1, 0xa1, 0x9f, 0xa0, 0x9c, 0xa2, 0xa7, 0xa2, 0xa4, 0xa9, 0xa2,\n    0xa4, 0xa9, 0xad, 0xac, 0xa7, 0xa4, 0xa6, 0xa9, 0xab, 0xad, 0xad, 0xaa, 0xa5, 0xa5, 0xaa, 0xb0,\n    0xb2, 0xb7, 0xbb, 0xbc, 0xbe, 0xc1, 0xc2, 0xc1, 0xb9, 0xb6, 0xb2, 0xad, 0xa7, 0xa1, 0x9b, 0x98,\n    0x9b, 0x9d, 0x9e, 0x9c, 0x9b, 0x9a, 0x97, 0x93, 0x8e, 0x7d, 0x78, 0x76, 0x79, 0x7a, 0x72, 0x76,\n    0x86, 0x88, 0x8d, 0x95, 0x99, 0x9b, 0x9d, 0xa0, 0xa1, 0xab, 0xc4, 0xe0, 0xea, 0xe2, 0xdd, 0xe0,\n    0xd7, 0xd5, 0xd1, 0xcb, 0xc4, 0xbe, 0xb8, 0xb5, 0xb4, 0xb1, 0xab, 0xa3, 0x9e, 0x9d, 0xa0, 0xa4,\n    0xac, 0xad, 0xb0, 0xb2, 0xb4, 0xb8, 0xbd, 0xc0, 0xc7, 0xc3, 0xc5, 0xcb, 0xc9, 0xbf, 0xb6, 0xb5,\n    0xc0, 0xc4, 0xc5, 0xc2, 0xc0, 0xc8, 0x63, 0x2e, 0x7e, 0xe5, 0xe9, 0xe7, 0xee, 0xed, 0xee, 0xec,\n    0xe1, 0xf2, 0xe5, 0xdd, 0xe8, 0xe1, 0xdf, 0xe7, 0xf4, 0xbb, 0x81, 0xc3, 0xe5, 0xf2, 0xe8, 0xdf,\n    0xe9, 0xe4, 0xe0, 0xc1, 0xba, 0xd0, 0xbf, 0x4f, 0x3d, 0x9d, 0xce, 0xc4, 0xc6, 0xc9, 0xc3, 0xc8,\n    0xd0, 0xd3, 0xd4, 0xd2, 0xd0, 0xd1, 0xd1, 0xd0, 0xcf, 0xaa, 0x93, 0x96, 0x98, 0x96, 0x97, 0x98,\n    0x97, 0xa0, 0x99, 0x98, 0x93, 0x92, 0xa3, 0x70, 0x60, 0x8d, 0x79, 0x92, 0x7b, 0x89, 0xb3, 0xa9,\n    0x97, 0x9b, 0x99, 0x97, 0x81, 0x6b, 0x78, 0x8a, 0x9c, 0x84, 0x8f, 0xb7, 0xc1, 0xa4, 0x8c, 0x88,\n    0x8a, 0x85, 0xb5, 0xda, 0xd1, 0xc7, 0xc5, 0xc5, 0xaf, 0xb0, 0xab, 0x63, 0x6c, 0x8f, 0xa8, 0xa9,\n    0xb1, 0x83, 0x69, 0x6b, 0x62, 0x52, 0x4e, 0x51, 0x55, 0x56, 0x56, 0x55, 0x53, 0x51, 0x51, 0x51,\n    0x4d, 0x4b, 0x48, 0x46, 0x44, 0x42, 0x40, 0x3e, 0x3f, 0x3c, 0x3a, 0x3a, 0x39, 0x3a, 0x3f, 0x45,\n    0x5c, 0x67, 0x6d, 0x6c, 0x6d, 0x6c, 0x6d, 0x74, 0x78, 0x77, 0x73, 0x6f, 0x6f, 0x74, 0x75, 0x73,\n    0x7d, 0x77, 0x73, 0x71, 0x6b, 0x66, 0x68, 0x6f, 0x6f, 0x70, 0x6b, 0x63, 0x61, 0x66, 0x69, 0x66,\n    0x67, 0x68, 0x74, 0x94, 0x98, 0x7b, 0x6a, 0x63, 0x63, 0x68, 0x6c, 0x6e, 0x6f, 0x71, 0x72, 0x71,\n    0x73, 0x6d, 0x64, 0x5a, 0x4f, 0x49, 0x4c, 0x52, 0x51, 0x46, 0x40, 0x42, 0x3f, 0x39, 0x3c, 0x46,\n    0x4e, 0x47, 0x3c, 0x36, 0x3a, 0x43, 0x45, 0x43, 0x4d, 0x61, 0x76, 0x82, 0x84, 0x83, 0x7e, 0x79,\n    0x70, 0x67, 0x57, 0x48, 0x3f, 0x3e, 0x3f, 0x3f, 0x2e, 0x21, 0x20, 0x30, 0x38, 0x34, 0x36, 0x3f,\n    0x48, 0x47, 0x41, 0x48, 0x38, 0x38, 0x3b, 0x4f, 0x65, 0x67, 0x66, 0x63, 0x68, 0x6f, 0x71, 0x6e,\n    0x67, 0x5f, 0x5d, 0x62, 0x63, 0x5d, 0x5d, 0x61, 0x65, 0x6a, 0x6f, 0x75, 0x77, 0x71, 0x62, 0x54,\n    0x58, 0x60, 0x6b, 0x75, 0x80, 0x8b, 0x95, 0x9a, 0xa0, 0x9e, 0x98, 0x94, 0x8f, 0x81, 0x79, 0x7e,\n    0x90, 0xa1, 0xad, 0xa8, 0x9e, 0x97, 0x93, 0x8e, 0x86, 0x81, 0x7f, 0x7f, 0x7b, 0x6f, 0x60, 0x57,\n    0x41, 0x3c, 0x37, 0x36, 0x30, 0x24, 0x19, 0x14, 0x11, 0x26, 0x3e, 0x4b, 0x4f, 0x4f, 0x47, 0x3e,\n    0x73, 0x6d, 0x65, 0x60, 0x62, 0x69, 0x6f, 0x72, 0x6f, 0x66, 0x64, 0x6b, 0x6d, 0x63, 0x5b, 0x5a,\n    0x64, 0x6a, 0x6d, 0x67, 0x5f, 0x60, 0x6d, 0x7b, 0x81, 0x7c, 0x69, 0x5c, 0x62, 0x6b, 0x6a, 0x67,\n    0x60, 0x66, 0x6c, 0x6c, 0x6a, 0x6b, 0x6f, 0x73, 0x6b, 0x63, 0x5a, 0x57, 0x5b, 0x63, 0x69, 0x6c,\n    0x7a, 0x7a, 0x7a, 0x74, 0x67, 0x72, 0x5f, 0x62, 0x6a, 0x76, 0x79, 0x71, 0x6b, 0x6f, 0x6e, 0x69,\n    0x63, 0x6a, 0x6e, 0x6d, 0x6b, 0x6b, 0x69, 0x66, 0x68, 0x61, 0x59, 0x55, 0x57, 0x5f, 0x67, 0x6c,\n    0x6f, 0x69, 0x63, 0x61, 0x66, 0x6d, 0x6e, 0x6b, 0x74, 0x77, 0x74, 0x6c, 0x6b, 0x72, 0x79, 0x7b,\n    0x73, 0x70, 0x6e, 0x6d, 0x6b, 0x6a, 0x6f, 0x75, 0x78, 0x79, 0x78, 0x75, 0x79, 0x7f, 0x7f, 0x7a,\n    0x75, 0x7b, 0x7b, 0x70, 0x65, 0x62, 0x65, 0x68, 0x74, 0x7e, 0x89, 0x88, 0x7a, 0x6a, 0x61, 0x60,\n    0x66, 0x60, 0x64, 0x73, 0x7b, 0x76, 0x72, 0x73, 0x75, 0x6e, 0x69, 0x6b, 0x72, 0x78, 0x79, 0x78,\n    0x7a, 0x75, 0x70, 0x6e, 0x6d, 0x6c, 0x6c, 0x6d, 0x75, 0x71, 0x6f, 0x73, 0x74, 0x74, 0x79, 0x81,\n    0x86, 0x7c, 0x98, 0xaf, 0xc5, 0xba, 0xb6, 0xb2, 0xaf, 0xa4, 0xa0, 0x9c, 0x94, 0x8f, 0x8c, 0x87,\n    0x84, 0x81, 0x7c, 0x76, 0x6d, 0x65, 0x62, 0x64, 0x6e, 0x83, 0x99, 0xa5, 0xad, 0xb6, 0xbc, 0xbd,\n    0xbd, 0xbd, 0xbc, 0xbc, 0xbd, 0xc0, 0xc4, 0xc7, 0xbf, 0xba, 0xb1, 0xa3, 0x96, 0x8f, 0x8e, 0x90,\n    0x96, 0x92, 0x8e, 0x8e, 0x90, 0x92, 0x91, 0x90, 0x8d, 0x90, 0x94, 0x98, 0x9a, 0x99, 0x95, 0x91,\n    0x99, 0xa0, 0xa4, 0xa0, 0x9c, 0x9d, 0x9f, 0xa0, 0xa2, 0xa9, 0xab, 0xa5, 0xa4, 0xab, 0xae, 0xab,\n    0xb3, 0xb8, 0xba, 0xb5, 0xb4, 0xba, 0xbf, 0xc0, 0xc5, 0xc1, 0xbb, 0xb6, 0xb1, 0xac, 0xa6, 0xa2,\n    0x9f, 0x9c, 0x98, 0x95, 0x94, 0x93, 0x92, 0x92, 0x8e, 0x86, 0x7d, 0x78, 0x78, 0x7a, 0x7b, 0x7b,\n    0x89, 0x91, 0x97, 0x97, 0x9b, 0xa2, 0xa4, 0xa1, 0xac, 0xc5, 0xdf, 0xe9, 0xe8, 0xe5, 0xe0, 0xda,\n    0xcf, 0xce, 0xca, 0xc5, 0xc2, 0xbf, 0xb9, 0xb3, 0xb8, 0xaf, 0xa8, 0xa4, 0x9f, 0x9b, 0xa0, 0xa8,\n    0xad, 0xb2, 0xb6, 0xb6, 0xb8, 0xbd, 0xc0, 0xbe, 0xc8, 0xc0, 0xc1, 0xca, 0xc6, 0xb9, 0xb7, 0xc1,\n    0xc6, 0xc4, 0xc5, 0xce, 0xc4, 0xca, 0xa5, 0x27, 0x4c, 0xc3, 0xf7, 0xed, 0xe4, 0xe9, 0xed, 0xeb,\n    0xe8, 0xdf, 0xe5, 0xe8, 0xe3, 0xdf, 0xea, 0xe3, 0xe4, 0xe8, 0xeb, 0xea, 0xe6, 0xe4, 0xe7, 0xea,\n    0xe7, 0xe4, 0xc5, 0xcb, 0xb4, 0xbf, 0xe3, 0x89, 0x38, 0x61, 0xbd, 0xcf, 0xc0, 0xc6, 0xb7, 0xbd,\n    0xd1, 0xd2, 0xd4, 0xd5, 0xd3, 0xd1, 0xd0, 0xcf, 0xd2, 0xab, 0x92, 0x93, 0x95, 0x95, 0x9b, 0xa1,\n    0x99, 0x9c, 0x99, 0x9b, 0x9b, 0x9c, 0x9a, 0x84, 0x80, 0xc7, 0x83, 0x87, 0x8f, 0x85, 0xdd, 0xdb,\n    0xe3, 0xe4, 0xe6, 0xe6, 0xe1, 0xcc, 0x95, 0x5b, 0x7b, 0x73, 0x73, 0xaf, 0xb3, 0x93, 0x7f, 0x8b,\n    0x8c, 0x8a, 0xba, 0xd4, 0xcb, 0xcb, 0xc7, 0xc3, 0xb2, 0xb5, 0x95, 0x5a, 0x7a, 0x9a, 0xa3, 0xae,\n    0xa2, 0x7d, 0x65, 0x63, 0x5c, 0x50, 0x4e, 0x52, 0x54, 0x53, 0x53, 0x54, 0x54, 0x53, 0x50, 0x4e,\n    0x4a, 0x47, 0x45, 0x45, 0x43, 0x3f, 0x3c, 0x3c, 0x39, 0x3b, 0x3d, 0x3d, 0x3a, 0x40, 0x55, 0x6a,\n    0x71, 0x75, 0x7f, 0x88, 0x84, 0x7a, 0x7a, 0x82, 0x8c, 0x89, 0x7e, 0x75, 0x75, 0x76, 0x79, 0x80,\n    0x88, 0x7e, 0x6f, 0x63, 0x63, 0x6b, 0x70, 0x70, 0x69, 0x6e, 0x6f, 0x6a, 0x68, 0x6c, 0x6d, 0x6a,\n    0x68, 0x74, 0x85, 0x8f, 0x84, 0x68, 0x5d, 0x69, 0x58, 0x63, 0x67, 0x69, 0x72, 0x78, 0x78, 0x78,\n    0x78, 0x6b, 0x68, 0x6b, 0x6b, 0x6e, 0x64, 0x4e, 0x47, 0x41, 0x39, 0x22, 0x14, 0x1a, 0x21, 0x2f,\n    0x3d, 0x50, 0x54, 0x44, 0x3d, 0x42, 0x3e, 0x2f, 0x32, 0x44, 0x5e, 0x76, 0x87, 0x8b, 0x83, 0x79,\n    0x6e, 0x61, 0x53, 0x4c, 0x49, 0x45, 0x43, 0x43, 0x45, 0x39, 0x35, 0x39, 0x3e, 0x46, 0x47, 0x40,\n    0x2a, 0x1d, 0x25, 0x41, 0x4a, 0x3b, 0x38, 0x45, 0x5c, 0x67, 0x74, 0x7a, 0x76, 0x6d, 0x66, 0x62,\n    0x6c, 0x6f, 0x70, 0x6f, 0x72, 0x73, 0x6c, 0x62, 0x5d, 0x60, 0x57, 0x49, 0x3d, 0x2d, 0x2e, 0x41,\n    0x65, 0x72, 0x7d, 0x7c, 0x79, 0x81, 0x93, 0xa1, 0xa2, 0xa2, 0xa0, 0x9c, 0x9d, 0xa2, 0xa5, 0xa4,\n    0xa4, 0xa1, 0x9e, 0x9c, 0x9e, 0x9f, 0x9e, 0x9c, 0x9a, 0x96, 0x92, 0x93, 0x98, 0x97, 0x8c, 0x80,\n    0x6b, 0x4e, 0x39, 0x38, 0x36, 0x30, 0x39, 0x4a, 0x61, 0x65, 0x62, 0x57, 0x51, 0x52, 0x51, 0x4d,\n    0x6d, 0x69, 0x64, 0x5f, 0x5f, 0x63, 0x68, 0x6b, 0x60, 0x5e, 0x5e, 0x61, 0x63, 0x60, 0x5b, 0x56,\n    0x51, 0x5a, 0x60, 0x5d, 0x59, 0x5e, 0x66, 0x6d, 0x6c, 0x6f, 0x68, 0x5f, 0x5e, 0x5d, 0x5c, 0x5f,\n    0x64, 0x69, 0x6d, 0x6d, 0x6c, 0x6c, 0x69, 0x65, 0x5d, 0x56, 0x51, 0x54, 0x5f, 0x6a, 0x6f, 0x70,\n    0x68, 0x6c, 0x74, 0x6d, 0x64, 0x6a, 0x60, 0x63, 0x6d, 0x73, 0x77, 0x74, 0x6f, 0x69, 0x64, 0x61,\n    0x61, 0x69, 0x70, 0x72, 0x70, 0x70, 0x71, 0x73, 0x60, 0x63, 0x65, 0x65, 0x64, 0x65, 0x69, 0x6d,\n    0x6f, 0x66, 0x60, 0x60, 0x62, 0x62, 0x66, 0x6b, 0x6f, 0x6e, 0x6f, 0x70, 0x6f, 0x6e, 0x6e, 0x70,\n    0x76, 0x75, 0x75, 0x75, 0x74, 0x71, 0x6a, 0x64, 0x6d, 0x6f, 0x71, 0x73, 0x77, 0x7c, 0x7e, 0x7c,\n    0x7a, 0x7a, 0x75, 0x6c, 0x66, 0x67, 0x6c, 0x6f, 0x74, 0x79, 0x7c, 0x79, 0x70, 0x67, 0x64, 0x65,\n    0x65, 0x64, 0x69, 0x71, 0x73, 0x71, 0x73, 0x78, 0x76, 0x73, 0x72, 0x75, 0x77, 0x78, 0x79, 0x7b,\n    0x76, 0x73, 0x6d, 0x66, 0x61, 0x60, 0x64, 0x69, 0x6c, 0x6d, 0x70, 0x71, 0x70, 0x70, 0x76, 0x7e,\n    0x8f, 0x8f, 0xa9, 0xb5, 0xc1, 0xb8, 0xb7, 0xb4, 0xb1, 0xa8, 0xa4, 0xa1, 0x97, 0x8f, 0x8a, 0x83,\n    0x7a, 0x77, 0x74, 0x73, 0x70, 0x6b, 0x68, 0x68, 0x70, 0x82, 0x98, 0xa8, 0xb4, 0xbb, 0xba, 0xb4,\n    0xba, 0xbb, 0xbd, 0xbd, 0xbc, 0xbb, 0xbb, 0xbc, 0xc6, 0xc5, 0xc2, 0xba, 0xb0, 0xa7, 0xa0, 0x9e,\n    0x92, 0x8e, 0x89, 0x86, 0x85, 0x84, 0x81, 0x7f, 0x88, 0x86, 0x84, 0x85, 0x89, 0x8e, 0x93, 0x95,\n    0x9e, 0xa1, 0x9f, 0x98, 0x94, 0x98, 0x9e, 0xa1, 0x9b, 0xa8, 0xb0, 0xac, 0xa4, 0xa3, 0xa7, 0xaa,\n    0xab, 0xb0, 0xb3, 0xb0, 0xad, 0xaf, 0xb4, 0xb7, 0xbc, 0xbc, 0xbc, 0xbc, 0xbb, 0xb7, 0xb0, 0xac,\n    0xa2, 0x9f, 0x9b, 0x99, 0x99, 0x98, 0x96, 0x94, 0x89, 0x83, 0x7e, 0x7d, 0x7b, 0x78, 0x78, 0x7a,\n    0x8c, 0x90, 0x97, 0x9e, 0xa4, 0xa7, 0xaa, 0xac, 0xc6, 0xd7, 0xe6, 0xe7, 0xe2, 0xde, 0xd9, 0xd4,\n    0xd1, 0xcf, 0xc9, 0xc1, 0xbd, 0xba, 0xb6, 0xb2, 0xb5, 0xab, 0xa3, 0xa2, 0xa2, 0xa0, 0xa2, 0xa7,\n    0xab, 0xb0, 0xb4, 0xb6, 0xb8, 0xbc, 0xbf, 0xbe, 0xc4, 0xbf, 0xc2, 0xc8, 0xc4, 0xb8, 0xb5, 0xbc,\n    0xc1, 0xc4, 0xc8, 0xd1, 0xc9, 0xce, 0xb7, 0x56, 0x35, 0x6c, 0xd0, 0xe7, 0xf3, 0xef, 0xe2, 0xeb,\n    0xe3, 0xf1, 0xe4, 0xd3, 0xd3, 0xe3, 0xd5, 0xe4, 0xe5, 0xe8, 0xea, 0xe8, 0xe4, 0xe3, 0xe5, 0xe8,\n    0xe0, 0xe9, 0xc8, 0xbe, 0xc2, 0xbe, 0xc8, 0xbe, 0x4a, 0x41, 0x91, 0xc8, 0xc3, 0xc3, 0xbe, 0xc0,\n    0xd0, 0xd2, 0xd3, 0xd4, 0xd3, 0xd2, 0xd2, 0xd2, 0xd5, 0xae, 0x96, 0x97, 0x99, 0x97, 0x98, 0x9a,\n    0x98, 0x9c, 0x99, 0x9b, 0x9c, 0x9d, 0x9c, 0x87, 0x85, 0xd1, 0xa0, 0x87, 0x86, 0x89, 0xd3, 0xeb,\n    0xcd, 0xcc, 0xd1, 0xdc, 0xe1, 0xd2, 0xb6, 0xa1, 0x4b, 0x5e, 0x84, 0x97, 0x9a, 0x8a, 0x8e, 0x92,\n    0x90, 0x8d, 0xbb, 0xd6, 0xcd, 0xcc, 0xc9, 0xc4, 0xb6, 0xb4, 0x88, 0x60, 0x8a, 0xa3, 0xa8, 0xad,\n    0x98, 0x78, 0x64, 0x62, 0x59, 0x4e, 0x4f, 0x55, 0x52, 0x52, 0x51, 0x52, 0x51, 0x50, 0x4e, 0x4c,\n    0x47, 0x43, 0x41, 0x41, 0x40, 0x3d, 0x3c, 0x3d, 0x3a, 0x3d, 0x3c, 0x3e, 0x4e, 0x65, 0x70, 0x6e,\n    0x6f, 0x76, 0x7f, 0x81, 0x7a, 0x74, 0x7c, 0x88, 0x84, 0x7f, 0x74, 0x71, 0x78, 0x79, 0x75, 0x75,\n    0x7b, 0x7c, 0x7a, 0x75, 0x70, 0x6d, 0x6c, 0x6b, 0x6f, 0x68, 0x64, 0x68, 0x6f, 0x72, 0x72, 0x70,\n    0x71, 0x7d, 0x82, 0x7f, 0x78, 0x6f, 0x6e, 0x78, 0x6e, 0x67, 0x58, 0x56, 0x68, 0x74, 0x70, 0x68,\n    0x5b, 0x5e, 0x62, 0x55, 0x43, 0x49, 0x5b, 0x60, 0x64, 0x53, 0x48, 0x38, 0x2a, 0x28, 0x2f, 0x45,\n    0x62, 0x5f, 0x52, 0x41, 0x3b, 0x3f, 0x42, 0x40, 0x3d, 0x46, 0x49, 0x45, 0x4a, 0x5c, 0x6c, 0x71,\n    0x6f, 0x67, 0x5f, 0x5a, 0x54, 0x49, 0x3f, 0x3a, 0x44, 0x42, 0x47, 0x4c, 0x48, 0x40, 0x34, 0x25,\n    0x1d, 0x26, 0x3c, 0x51, 0x51, 0x44, 0x43, 0x4d, 0x58, 0x57, 0x57, 0x57, 0x55, 0x4b, 0x3b, 0x2f,\n    0x34, 0x46, 0x58, 0x5b, 0x55, 0x4e, 0x49, 0x44, 0x48, 0x4b, 0x48, 0x45, 0x48, 0x4a, 0x4a, 0x4d,\n    0x61, 0x63, 0x67, 0x70, 0x7b, 0x81, 0x7b, 0x72, 0x69, 0x73, 0x7c, 0x7b, 0x73, 0x68, 0x5b, 0x51,\n    0x58, 0x5f, 0x61, 0x5c, 0x57, 0x56, 0x58, 0x59, 0x4b, 0x4f, 0x54, 0x5b, 0x6a, 0x7f, 0x91, 0x9b,\n    0x8b, 0x7a, 0x5a, 0x3c, 0x34, 0x42, 0x54, 0x5e, 0x5c, 0x4e, 0x42, 0x41, 0x3e, 0x32, 0x26, 0x21,\n    0x65, 0x64, 0x61, 0x5e, 0x5c, 0x5e, 0x64, 0x69, 0x72, 0x73, 0x6f, 0x66, 0x60, 0x5d, 0x56, 0x4e,\n    0x53, 0x57, 0x60, 0x72, 0x87, 0x92, 0x88, 0x78, 0x68, 0x6d, 0x6f, 0x70, 0x70, 0x68, 0x63, 0x67,\n    0x68, 0x6c, 0x6d, 0x6d, 0x73, 0x79, 0x76, 0x6e, 0x61, 0x59, 0x54, 0x58, 0x65, 0x72, 0x78, 0x79,\n    0x84, 0x84, 0x87, 0x70, 0x62, 0x5a, 0x56, 0x58, 0x5d, 0x5f, 0x67, 0x6f, 0x70, 0x69, 0x65, 0x66,\n    0x5d, 0x63, 0x69, 0x6b, 0x66, 0x62, 0x64, 0x69, 0x67, 0x70, 0x79, 0x79, 0x74, 0x70, 0x72, 0x76,\n    0x6b, 0x63, 0x61, 0x68, 0x6b, 0x6c, 0x74, 0x80, 0x76, 0x71, 0x73, 0x7b, 0x7c, 0x75, 0x70, 0x71,\n    0x70, 0x6e, 0x6a, 0x6c, 0x75, 0x7d, 0x79, 0x71, 0x65, 0x69, 0x6f, 0x74, 0x73, 0x71, 0x71, 0x73,\n    0x7a, 0x79, 0x75, 0x73, 0x72, 0x71, 0x6d, 0x67, 0x70, 0x72, 0x73, 0x71, 0x6e, 0x6c, 0x6d, 0x6f,\n    0x68, 0x6b, 0x6c, 0x68, 0x63, 0x62, 0x68, 0x6e, 0x74, 0x75, 0x77, 0x79, 0x77, 0x74, 0x76, 0x7a,\n    0x78, 0x77, 0x76, 0x72, 0x6d, 0x68, 0x64, 0x61, 0x65, 0x70, 0x79, 0x78, 0x74, 0x75, 0x7a, 0x7f,\n    0x86, 0x9c, 0xba, 0xc1, 0xc6, 0xc1, 0xc3, 0xbe, 0xbd, 0xb5, 0xb3, 0xb0, 0xa6, 0x9c, 0x94, 0x8b,\n    0x8a, 0x7e, 0x70, 0x67, 0x62, 0x5f, 0x5f, 0x61, 0x65, 0x7c, 0x93, 0x9e, 0xa2, 0xab, 0xb5, 0xbc,\n    0xba, 0xb8, 0xb6, 0xb4, 0xb4, 0xb7, 0xbd, 0xc1, 0xbf, 0xc1, 0xc3, 0xc3, 0xc0, 0xb9, 0xb2, 0xae,\n    0xaa, 0xa5, 0x9f, 0x9b, 0x98, 0x95, 0x92, 0x8f, 0x90, 0x8a, 0x81, 0x7b, 0x7b, 0x7f, 0x84, 0x87,\n    0x89, 0x8d, 0x90, 0x91, 0x93, 0x97, 0x9a, 0x9a, 0x97, 0x9b, 0xa1, 0xa5, 0xa7, 0xa8, 0xa9, 0xa9,\n    0xa9, 0xab, 0xae, 0xae, 0xaa, 0xa7, 0xa9, 0xad, 0xb1, 0xb2, 0xb5, 0xb9, 0xba, 0xba, 0xb7, 0xb4,\n    0xaa, 0xa5, 0x9f, 0x9c, 0x9b, 0x99, 0x97, 0x94, 0x8b, 0x84, 0x80, 0x80, 0x7b, 0x74, 0x76, 0x7d,\n    0x8b, 0x8e, 0x97, 0xa0, 0xa2, 0xa5, 0xb2, 0xc3, 0xe1, 0xe7, 0xe9, 0xe3, 0xdc, 0xd9, 0xd5, 0xd1,\n    0xcd, 0xca, 0xc3, 0xbb, 0xb6, 0xb5, 0xb4, 0xb3, 0xb0, 0xa5, 0x9e, 0xa0, 0xa5, 0xa6, 0xa5, 0xa6,\n    0xaa, 0xaf, 0xb4, 0xb7, 0xba, 0xbe, 0xc0, 0xbf, 0xc5, 0xc5, 0xc8, 0xcc, 0xc7, 0xbf, 0xbb, 0xbd,\n    0xc3, 0xc9, 0xca, 0xd2, 0xce, 0xd2, 0xcd, 0x99, 0x33, 0x38, 0x53, 0xb9, 0xd6, 0xe5, 0xed, 0xd8,\n    0xd1, 0xc2, 0x8d, 0x5c, 0x62, 0xd1, 0xe6, 0xe7, 0xe5, 0xe7, 0xe8, 0xe7, 0xe5, 0xe4, 0xe5, 0xe7,\n    0xe7, 0xe1, 0xd2, 0xbd, 0xba, 0xbd, 0xbd, 0xd0, 0x88, 0x39, 0x56, 0xaf, 0xca, 0xc4, 0xc0, 0xc2,\n    0xd0, 0xd1, 0xd2, 0xd3, 0xd3, 0xd3, 0xd4, 0xd6, 0xd5, 0xb1, 0x9a, 0x9d, 0x9f, 0x9b, 0x99, 0x98,\n    0x99, 0x9c, 0x99, 0x9c, 0x9c, 0x9d, 0x9d, 0x89, 0x78, 0xd4, 0xe8, 0xb0, 0x7d, 0xa1, 0xe5, 0xd7,\n    0xbe, 0xbb, 0xbe, 0xd0, 0xd8, 0xc6, 0xbe, 0xcf, 0x7e, 0x79, 0xa1, 0x8b, 0x91, 0x8c, 0x99, 0x8c,\n    0x94, 0x91, 0xba, 0xd7, 0xce, 0xcc, 0xcb, 0xc5, 0xb5, 0xb1, 0x7f, 0x78, 0xaf, 0xb6, 0xae, 0xa5,\n    0x8a, 0x70, 0x61, 0x5f, 0x55, 0x4c, 0x4f, 0x57, 0x51, 0x50, 0x4f, 0x4f, 0x4e, 0x4c, 0x4a, 0x48,\n    0x45, 0x42, 0x40, 0x3f, 0x3d, 0x3b, 0x3b, 0x3d, 0x3a, 0x3d, 0x41, 0x4d, 0x67, 0x7e, 0x7d, 0x6f,\n    0x6a, 0x76, 0x85, 0x8a, 0x83, 0x79, 0x72, 0x70, 0x71, 0x71, 0x6d, 0x6f, 0x78, 0x79, 0x74, 0x74,\n    0x75, 0x7b, 0x81, 0x80, 0x77, 0x6e, 0x6c, 0x6f, 0x6a, 0x6e, 0x74, 0x76, 0x6f, 0x6a, 0x76, 0x87,\n    0x81, 0x8b, 0x84, 0x72, 0x6d, 0x72, 0x76, 0x79, 0x76, 0x7b, 0x78, 0x73, 0x75, 0x71, 0x66, 0x5f,\n    0x57, 0x5e, 0x61, 0x51, 0x40, 0x45, 0x53, 0x55, 0x47, 0x3c, 0x38, 0x30, 0x2d, 0x34, 0x3e, 0x51,\n    0x54, 0x43, 0x32, 0x2c, 0x2e, 0x32, 0x38, 0x3e, 0x33, 0x3c, 0x44, 0x45, 0x4a, 0x5b, 0x76, 0x89,\n    0x7f, 0x74, 0x69, 0x64, 0x61, 0x5b, 0x51, 0x4b, 0x43, 0x43, 0x49, 0x4c, 0x44, 0x3d, 0x35, 0x2b,\n    0x2e, 0x3c, 0x4c, 0x52, 0x4e, 0x49, 0x4b, 0x4f, 0x4d, 0x50, 0x51, 0x4e, 0x48, 0x48, 0x4f, 0x56,\n    0x70, 0x7b, 0x81, 0x77, 0x63, 0x53, 0x4c, 0x4b, 0x47, 0x35, 0x39, 0x4e, 0x50, 0x43, 0x42, 0x4b,\n    0x5f, 0x64, 0x61, 0x52, 0x44, 0x46, 0x55, 0x64, 0x74, 0x7f, 0x85, 0x7c, 0x6e, 0x68, 0x6e, 0x75,\n    0x78, 0x7b, 0x79, 0x74, 0x79, 0x88, 0x93, 0x96, 0x8a, 0x7b, 0x5f, 0x45, 0x3e, 0x50, 0x6e, 0x84,\n    0x94, 0x85, 0x7b, 0x79, 0x6a, 0x54, 0x51, 0x5e, 0x4e, 0x44, 0x3b, 0x38, 0x31, 0x26, 0x21, 0x23,\n    0x60, 0x5f, 0x5e, 0x5c, 0x5a, 0x5c, 0x65, 0x6e, 0x74, 0x71, 0x69, 0x5f, 0x58, 0x54, 0x52, 0x51,\n    0x5b, 0x5d, 0x5d, 0x59, 0x51, 0x4f, 0x55, 0x5d, 0x6c, 0x6c, 0x6c, 0x73, 0x77, 0x6c, 0x61, 0x63,\n    0x6e, 0x70, 0x6d, 0x6a, 0x73, 0x81, 0x85, 0x7f, 0x76, 0x6d, 0x62, 0x60, 0x67, 0x72, 0x7b, 0x7f,\n    0x8b, 0x87, 0x83, 0x65, 0x5c, 0x55, 0x5f, 0x63, 0x71, 0x70, 0x73, 0x76, 0x73, 0x6b, 0x65, 0x63,\n    0x65, 0x65, 0x67, 0x68, 0x65, 0x61, 0x63, 0x68, 0x67, 0x6d, 0x72, 0x6f, 0x67, 0x64, 0x68, 0x6d,\n    0x6d, 0x67, 0x64, 0x66, 0x66, 0x65, 0x69, 0x6f, 0x71, 0x6c, 0x6c, 0x72, 0x76, 0x73, 0x6d, 0x6b,\n    0x60, 0x5e, 0x58, 0x55, 0x60, 0x6e, 0x6e, 0x65, 0x65, 0x6a, 0x73, 0x77, 0x70, 0x68, 0x6a, 0x72,\n    0x7c, 0x77, 0x72, 0x71, 0x74, 0x70, 0x65, 0x5a, 0x65, 0x6b, 0x71, 0x72, 0x71, 0x70, 0x70, 0x70,\n    0x6b, 0x6e, 0x6b, 0x62, 0x5e, 0x63, 0x68, 0x6a, 0x76, 0x73, 0x73, 0x73, 0x71, 0x6f, 0x72, 0x78,\n    0x7c, 0x7b, 0x79, 0x79, 0x79, 0x75, 0x6b, 0x61, 0x66, 0x72, 0x7b, 0x79, 0x76, 0x78, 0x7c, 0x7e,\n    0x7d, 0xa4, 0xbf, 0xc4, 0xc5, 0xc2, 0xc1, 0xb7, 0xc0, 0xb7, 0xb4, 0xb0, 0xa4, 0x99, 0x8f, 0x86,\n    0x79, 0x76, 0x73, 0x70, 0x67, 0x58, 0x4a, 0x42, 0x47, 0x67, 0x8f, 0xa6, 0xad, 0xb1, 0xb7, 0xbc,\n    0xbc, 0xb9, 0xb4, 0xaf, 0xac, 0xad, 0xb0, 0xb3, 0xbd, 0xbf, 0xc2, 0xc7, 0xca, 0xca, 0xc8, 0xc6,\n    0xc4, 0xc1, 0xbd, 0xba, 0xb8, 0xb6, 0xb3, 0xb2, 0xad, 0xa8, 0xa0, 0x99, 0x93, 0x8e, 0x8b, 0x88,\n    0x84, 0x87, 0x8d, 0x93, 0x98, 0x9c, 0x9d, 0x9d, 0x99, 0x97, 0x99, 0x9e, 0xa3, 0xa5, 0xa7, 0xaa,\n    0xa9, 0xa6, 0xa7, 0xaa, 0xa9, 0xa3, 0xa1, 0xa4, 0xa9, 0xa8, 0xa7, 0xa8, 0xaa, 0xad, 0xb0, 0xb2,\n    0xb3, 0xae, 0xa8, 0xa1, 0x9c, 0x99, 0x97, 0x96, 0x94, 0x8a, 0x82, 0x7f, 0x78, 0x72, 0x79, 0x85,\n    0x8a, 0x91, 0x9a, 0x9e, 0x9e, 0xa9, 0xc3, 0xdd, 0xe8, 0xe9, 0xe5, 0xde, 0xd9, 0xd7, 0xd4, 0xd0,\n    0xc3, 0xc1, 0xbc, 0xb6, 0xb3, 0xb4, 0xb4, 0xb3, 0xa9, 0xa2, 0x9d, 0xa1, 0xa6, 0xa8, 0xa7, 0xa7,\n    0xad, 0xb1, 0xb6, 0xbb, 0xbe, 0xc1, 0xc3, 0xc3, 0xc5, 0xca, 0xcf, 0xd1, 0xcf, 0xca, 0xc6, 0xc4,\n    0xc8, 0xcd, 0xc9, 0xce, 0xcc, 0xcd, 0xd5, 0xc8, 0x77, 0x3c, 0x3c, 0x3a, 0x53, 0x5a, 0x6c, 0x65,\n    0x53, 0x38, 0x3c, 0x46, 0x40, 0xae, 0xe8, 0xe6, 0xe5, 0xe5, 0xe6, 0xe6, 0xe6, 0xe5, 0xe4, 0xe4,\n    0xea, 0xe2, 0xda, 0xbd, 0xb6, 0xc4, 0xbf, 0xc0, 0xd0, 0x64, 0x36, 0x7d, 0xc7, 0xcc, 0xbd, 0xc3,\n    0xd1, 0xd2, 0xd2, 0xd2, 0xd2, 0xd3, 0xd5, 0xd7, 0xd3, 0xb3, 0x9f, 0xa1, 0xa2, 0x9f, 0x9e, 0x9e,\n    0x9d, 0x9e, 0x9b, 0x9d, 0x9c, 0x9c, 0x9b, 0x8a, 0x7e, 0xc1, 0xf4, 0xe5, 0xb1, 0xb8, 0xe1, 0xd5,\n    0xc1, 0xbd, 0xbc, 0xcd, 0xd5, 0xbc, 0xb3, 0xce, 0xb4, 0x80, 0x9d, 0x8a, 0x96, 0x96, 0x9a, 0x90,\n    0x96, 0x92, 0xb6, 0xd5, 0xce, 0xc9, 0xcc, 0xc5, 0xb5, 0xaf, 0x79, 0x8f, 0xca, 0xc2, 0xb2, 0x9f,\n    0x82, 0x6a, 0x5c, 0x5a, 0x53, 0x4c, 0x50, 0x55, 0x50, 0x4f, 0x4d, 0x4c, 0x4b, 0x49, 0x46, 0x44,\n    0x45, 0x42, 0x40, 0x3f, 0x3c, 0x39, 0x3a, 0x3c, 0x38, 0x3d, 0x4d, 0x66, 0x79, 0x7c, 0x78, 0x74,\n    0x77, 0x78, 0x78, 0x76, 0x77, 0x77, 0x72, 0x6b, 0x64, 0x6d, 0x71, 0x72, 0x75, 0x74, 0x76, 0x7e,\n    0x7b, 0x7b, 0x7b, 0x79, 0x72, 0x6c, 0x6f, 0x76, 0x76, 0x72, 0x72, 0x75, 0x77, 0x77, 0x79, 0x7e,\n    0x84, 0x8a, 0x80, 0x6e, 0x6c, 0x71, 0x71, 0x6f, 0x68, 0x76, 0x77, 0x69, 0x5d, 0x57, 0x58, 0x5e,\n    0x6b, 0x6c, 0x63, 0x50, 0x43, 0x42, 0x3b, 0x2e, 0x3d, 0x3f, 0x3f, 0x30, 0x30, 0x3f, 0x42, 0x43,\n    0x37, 0x26, 0x1a, 0x1d, 0x26, 0x2d, 0x37, 0x41, 0x3f, 0x3c, 0x3e, 0x42, 0x42, 0x45, 0x5a, 0x73,\n    0x7a, 0x70, 0x67, 0x65, 0x68, 0x69, 0x64, 0x5f, 0x62, 0x60, 0x64, 0x62, 0x56, 0x4b, 0x41, 0x37,\n    0x2c, 0x34, 0x3f, 0x4a, 0x53, 0x54, 0x4b, 0x41, 0x4c, 0x47, 0x47, 0x52, 0x64, 0x74, 0x79, 0x78,\n    0x83, 0x7d, 0x73, 0x66, 0x59, 0x4e, 0x49, 0x48, 0x39, 0x2e, 0x45, 0x69, 0x67, 0x54, 0x55, 0x61,\n    0x60, 0x61, 0x61, 0x60, 0x65, 0x6f, 0x79, 0x7e, 0x6e, 0x68, 0x5c, 0x50, 0x4b, 0x54, 0x64, 0x71,\n    0x73, 0x78, 0x6f, 0x57, 0x46, 0x4c, 0x5d, 0x67, 0x6d, 0x7a, 0x7e, 0x6c, 0x52, 0x4a, 0x57, 0x67,\n    0x78, 0x81, 0x82, 0x77, 0x6d, 0x68, 0x61, 0x59, 0x4e, 0x4d, 0x43, 0x32, 0x29, 0x2c, 0x2e, 0x2d,\n    0x60, 0x5d, 0x5c, 0x5b, 0x5a, 0x5c, 0x65, 0x6f, 0x73, 0x68, 0x5e, 0x57, 0x4f, 0x48, 0x4a, 0x51,\n    0x50, 0x4f, 0x52, 0x53, 0x4c, 0x49, 0x59, 0x70, 0x79, 0x76, 0x73, 0x76, 0x76, 0x6a, 0x61, 0x67,\n    0x75, 0x76, 0x70, 0x69, 0x6c, 0x76, 0x7b, 0x78, 0x78, 0x72, 0x69, 0x63, 0x62, 0x68, 0x70, 0x76,\n    0x8d, 0x89, 0x82, 0x6b, 0x6b, 0x6a, 0x7d, 0x81, 0x79, 0x7a, 0x78, 0x72, 0x6c, 0x68, 0x63, 0x5d,\n    0x63, 0x60, 0x60, 0x65, 0x6a, 0x6e, 0x72, 0x76, 0x66, 0x65, 0x63, 0x5f, 0x5b, 0x5b, 0x5f, 0x63,\n    0x6a, 0x6a, 0x67, 0x62, 0x63, 0x66, 0x64, 0x5f, 0x66, 0x67, 0x66, 0x68, 0x6e, 0x72, 0x6b, 0x61,\n    0x5a, 0x5f, 0x60, 0x60, 0x69, 0x75, 0x76, 0x6f, 0x6c, 0x6f, 0x73, 0x72, 0x69, 0x65, 0x70, 0x7f,\n    0x7f, 0x73, 0x67, 0x63, 0x66, 0x65, 0x5f, 0x58, 0x5b, 0x65, 0x6e, 0x6e, 0x6a, 0x68, 0x69, 0x68,\n    0x6a, 0x6b, 0x67, 0x64, 0x6a, 0x76, 0x7b, 0x78, 0x7b, 0x72, 0x6b, 0x6b, 0x6b, 0x6b, 0x71, 0x78,\n    0x78, 0x78, 0x75, 0x70, 0x6e, 0x71, 0x73, 0x72, 0x70, 0x74, 0x73, 0x6b, 0x69, 0x6f, 0x75, 0x77,\n    0x95, 0xb8, 0xb9, 0xb2, 0xab, 0xa6, 0xa2, 0x96, 0x8f, 0x86, 0x82, 0x7d, 0x71, 0x66, 0x5e, 0x56,\n    0x4f, 0x49, 0x42, 0x3b, 0x35, 0x32, 0x35, 0x3a, 0x3c, 0x4d, 0x66, 0x80, 0x95, 0xa2, 0xa5, 0xa3,\n    0xb5, 0xb8, 0xbc, 0xbd, 0xb9, 0xb3, 0xad, 0xaa, 0xb5, 0xb6, 0xb9, 0xbe, 0xc2, 0xc4, 0xc5, 0xc5,\n    0xc6, 0xc5, 0xc3, 0xc1, 0xc1, 0xc0, 0xbf, 0xbf, 0xbb, 0xba, 0xb8, 0xb5, 0xaf, 0xa8, 0x9f, 0x9a,\n    0x94, 0x91, 0x8e, 0x8e, 0x91, 0x95, 0x99, 0x9c, 0x9d, 0xa4, 0xab, 0xa8, 0x9d, 0x96, 0x9d, 0xa8,\n    0xa3, 0x9d, 0x9c, 0xa2, 0xa6, 0xa3, 0x9f, 0x9e, 0xa3, 0xa2, 0x9f, 0x9d, 0x9d, 0x9f, 0xa3, 0xa6,\n    0xaf, 0xb0, 0xaf, 0xaa, 0xa3, 0x9c, 0x99, 0x98, 0x95, 0x8b, 0x82, 0x7d, 0x78, 0x76, 0x7e, 0x8b,\n    0x8b, 0x94, 0x9b, 0xa0, 0xab, 0xc2, 0xda, 0xe9, 0xe5, 0xe3, 0xdf, 0xda, 0xd7, 0xd4, 0xcf, 0xca,\n    0xbd, 0xbc, 0xb9, 0xb6, 0xb5, 0xb6, 0xb3, 0xaf, 0xa2, 0xa0, 0xa0, 0xa3, 0xa6, 0xa8, 0xa9, 0xaa,\n    0xaf, 0xb2, 0xb7, 0xbd, 0xc0, 0xc2, 0xc4, 0xc6, 0xc3, 0xca, 0xd1, 0xd4, 0xd2, 0xcf, 0xcc, 0xc9,\n    0xcc, 0xcf, 0xca, 0xcc, 0xcd, 0xc9, 0xce, 0xd3, 0xd0, 0x97, 0x50, 0x38, 0x29, 0x41, 0x2d, 0x2f,\n    0x37, 0x5b, 0x7b, 0x72, 0x42, 0x63, 0xa8, 0xe5, 0xe7, 0xe6, 0xe4, 0xe5, 0xe6, 0xe6, 0xe3, 0xe1,\n    0xe1, 0xf0, 0xda, 0xbe, 0xc2, 0xc5, 0xbc, 0xbb, 0xde, 0xa3, 0x47, 0x46, 0xa7, 0xd2, 0xbf, 0xc5,\n    0xd3, 0xd3, 0xd3, 0xd2, 0xd2, 0xd2, 0xd4, 0xd6, 0xd4, 0xb7, 0xa4, 0xa3, 0xa2, 0xa0, 0xa3, 0xa5,\n    0xa3, 0xa4, 0x9f, 0xa1, 0x9e, 0x9c, 0x9c, 0x8c, 0x7f, 0xcc, 0xda, 0xda, 0xe2, 0xd9, 0xdf, 0xde,\n    0xc6, 0xc1, 0xbe, 0xce, 0xdc, 0xc6, 0xb6, 0xc7, 0xb9, 0x7a, 0x97, 0x99, 0x97, 0x98, 0x93, 0x99,\n    0x94, 0x90, 0xb0, 0xd3, 0xcd, 0xc6, 0xcc, 0xc3, 0xb8, 0xad, 0x77, 0x9a, 0xcd, 0xc2, 0xb5, 0x9e,\n    0x80, 0x68, 0x58, 0x55, 0x52, 0x4f, 0x50, 0x50, 0x4f, 0x4d, 0x4b, 0x4a, 0x48, 0x46, 0x44, 0x42,\n    0x42, 0x40, 0x3e, 0x3d, 0x3a, 0x38, 0x3a, 0x3d, 0x45, 0x4e, 0x60, 0x73, 0x7d, 0x7b, 0x77, 0x77,\n    0x6e, 0x76, 0x7f, 0x85, 0x86, 0x81, 0x76, 0x6c, 0x6f, 0x78, 0x79, 0x76, 0x74, 0x71, 0x75, 0x7f,\n    0x7f, 0x79, 0x73, 0x6f, 0x6d, 0x6b, 0x6c, 0x6e, 0x70, 0x71, 0x70, 0x70, 0x74, 0x78, 0x75, 0x6e,\n    0x75, 0x77, 0x6f, 0x68, 0x6d, 0x70, 0x6c, 0x6b, 0x71, 0x77, 0x71, 0x68, 0x68, 0x6a, 0x6a, 0x6c,\n    0x68, 0x6a, 0x5f, 0x4c, 0x43, 0x45, 0x44, 0x40, 0x46, 0x46, 0x46, 0x39, 0x38, 0x42, 0x3d, 0x39,\n    0x2d, 0x23, 0x19, 0x17, 0x1e, 0x29, 0x37, 0x41, 0x46, 0x45, 0x46, 0x46, 0x42, 0x3e, 0x41, 0x47,\n    0x5a, 0x60, 0x66, 0x66, 0x63, 0x61, 0x62, 0x63, 0x72, 0x6a, 0x63, 0x59, 0x4b, 0x44, 0x40, 0x39,\n    0x37, 0x30, 0x30, 0x3b, 0x48, 0x4a, 0x3f, 0x34, 0x3c, 0x50, 0x67, 0x70, 0x6c, 0x68, 0x6c, 0x73,\n    0x73, 0x67, 0x5a, 0x50, 0x45, 0x39, 0x32, 0x31, 0x30, 0x3c, 0x58, 0x6a, 0x6b, 0x72, 0x78, 0x73,\n    0x7c, 0x74, 0x6b, 0x6b, 0x72, 0x71, 0x62, 0x51, 0x3e, 0x3a, 0x3e, 0x50, 0x66, 0x6f, 0x66, 0x5a,\n    0x45, 0x37, 0x29, 0x32, 0x56, 0x7e, 0x8f, 0x8c, 0x89, 0x73, 0x5b, 0x54, 0x5f, 0x67, 0x60, 0x52,\n    0x5f, 0x6e, 0x78, 0x77, 0x75, 0x73, 0x67, 0x58, 0x5b, 0x52, 0x42, 0x37, 0x3a, 0x43, 0x42, 0x3a,\n    0x5e, 0x5a, 0x5a, 0x5d, 0x5d, 0x5c, 0x5f, 0x65, 0x6e, 0x62, 0x5a, 0x58, 0x51, 0x49, 0x4a, 0x53,\n    0x57, 0x4d, 0x4d, 0x59, 0x5f, 0x5b, 0x57, 0x58, 0x5f, 0x63, 0x63, 0x61, 0x5a, 0x51, 0x54, 0x64,\n    0x76, 0x76, 0x72, 0x6d, 0x6b, 0x6b, 0x6b, 0x69, 0x67, 0x66, 0x64, 0x60, 0x5e, 0x5f, 0x64, 0x69,\n    0x7e, 0x7e, 0x72, 0x64, 0x61, 0x5f, 0x6d, 0x6b, 0x67, 0x6c, 0x6e, 0x6a, 0x67, 0x68, 0x67, 0x63,\n    0x60, 0x5f, 0x5f, 0x62, 0x6b, 0x75, 0x79, 0x78, 0x69, 0x65, 0x60, 0x5e, 0x5f, 0x61, 0x62, 0x63,\n    0x65, 0x6b, 0x6b, 0x66, 0x6a, 0x72, 0x70, 0x67, 0x66, 0x69, 0x69, 0x69, 0x6f, 0x74, 0x6c, 0x5e,\n    0x53, 0x57, 0x58, 0x59, 0x60, 0x6b, 0x73, 0x75, 0x73, 0x6f, 0x69, 0x62, 0x5d, 0x60, 0x6e, 0x7c,\n    0x75, 0x6c, 0x64, 0x64, 0x66, 0x63, 0x5d, 0x58, 0x5e, 0x67, 0x6c, 0x67, 0x62, 0x62, 0x65, 0x66,\n    0x68, 0x66, 0x62, 0x63, 0x6d, 0x7a, 0x7f, 0x7c, 0x7b, 0x6e, 0x63, 0x62, 0x64, 0x65, 0x6b, 0x73,\n    0x6d, 0x79, 0x80, 0x79, 0x70, 0x71, 0x7c, 0x84, 0x7f, 0x78, 0x6c, 0x61, 0x5f, 0x67, 0x72, 0x78,\n    0x8f, 0xa1, 0x81, 0x6f, 0x63, 0x5f, 0x5e, 0x57, 0x56, 0x4e, 0x4d, 0x4d, 0x47, 0x42, 0x3f, 0x39,\n    0x3b, 0x3c, 0x3f, 0x3f, 0x3b, 0x36, 0x34, 0x37, 0x41, 0x41, 0x41, 0x47, 0x52, 0x61, 0x6f, 0x76,\n    0x83, 0x8b, 0x96, 0xa2, 0xab, 0xb1, 0xb5, 0xb6, 0xb0, 0xb3, 0xb8, 0xbd, 0xc0, 0xc1, 0xc2, 0xc2,\n    0xc5, 0xc4, 0xc3, 0xc2, 0xc1, 0xc1, 0xc0, 0xc0, 0xbd, 0xbc, 0xbc, 0xbb, 0xb8, 0xb3, 0xad, 0xa8,\n    0x9f, 0x9b, 0x97, 0x97, 0x97, 0x97, 0x99, 0x9b, 0xa6, 0xad, 0xb3, 0xb0, 0xa7, 0xa0, 0xa0, 0xa2,\n    0xa1, 0x9c, 0x99, 0x9e, 0xa5, 0xa6, 0xa3, 0xa0, 0xa0, 0xa1, 0xa1, 0x9f, 0x9d, 0x9c, 0x9b, 0x9b,\n    0x9f, 0xa4, 0xaa, 0xab, 0xa7, 0xa0, 0x9b, 0x99, 0x90, 0x88, 0x7f, 0x7b, 0x7b, 0x7e, 0x86, 0x8d,\n    0x8f, 0x95, 0x9e, 0xad, 0xc6, 0xde, 0xe7, 0xe2, 0xe1, 0xde, 0xd9, 0xd6, 0xd2, 0xcd, 0xc6, 0xc0,\n    0xbd, 0xbb, 0xb9, 0xb7, 0xb8, 0xb6, 0xaf, 0xa7, 0x9e, 0xa0, 0xa3, 0xa5, 0xa7, 0xa9, 0xac, 0xae,\n    0xb0, 0xb2, 0xb6, 0xbc, 0xbf, 0xc1, 0xc4, 0xc7, 0xc5, 0xca, 0xd2, 0xd6, 0xd5, 0xd1, 0xce, 0xcd,\n    0xcf, 0xd1, 0xd0, 0xd1, 0xd3, 0xcc, 0xc8, 0xcc, 0xcd, 0xd1, 0xb6, 0x9d, 0x9a, 0x77, 0x97, 0xa2,\n    0xb8, 0xa5, 0x66, 0x40, 0x3f, 0x40, 0x54, 0xc5, 0xe9, 0xe5, 0xe0, 0xe0, 0xe4, 0xe7, 0xe6, 0xe3,\n    0xe6, 0xe9, 0xdc, 0xd3, 0xc2, 0xb4, 0xbc, 0xb7, 0xbe, 0xcf, 0x7f, 0x31, 0x75, 0xc9, 0xc7, 0xc6,\n    0xd3, 0xd4, 0xd3, 0xd2, 0xd1, 0xd1, 0xd3, 0xd4, 0xd8, 0xbb, 0xa6, 0xa3, 0xa1, 0xa0, 0xa3, 0xa5,\n    0xa7, 0xa6, 0xa1, 0xa4, 0xa0, 0x9d, 0x9e, 0x90, 0x76, 0xd7, 0xe2, 0xd8, 0xe2, 0xe5, 0xed, 0xd9,\n    0xc5, 0xbd, 0xb9, 0xca, 0xdc, 0xd0, 0xbf, 0xc1, 0xc2, 0x88, 0x97, 0x9a, 0x8e, 0x97, 0x8e, 0x94,\n    0x91, 0x8d, 0xa9, 0xd1, 0xcd, 0xc4, 0xcc, 0xc1, 0xb4, 0xa8, 0x7f, 0xa7, 0xcb, 0xc4, 0xb6, 0x99,\n    0x80, 0x67, 0x55, 0x51, 0x50, 0x50, 0x4f, 0x4a, 0x4e, 0x4c, 0x49, 0x47, 0x46, 0x44, 0x42, 0x40,\n    0x3e, 0x3c, 0x3b, 0x3a, 0x3a, 0x3c, 0x42, 0x49, 0x64, 0x6d, 0x72, 0x72, 0x76, 0x7c, 0x78, 0x6d,\n    0x6e, 0x73, 0x75, 0x6d, 0x62, 0x5f, 0x69, 0x74, 0x83, 0x85, 0x7f, 0x78, 0x75, 0x70, 0x6d, 0x70,\n    0x77, 0x76, 0x73, 0x6f, 0x6d, 0x6b, 0x66, 0x60, 0x63, 0x6f, 0x77, 0x72, 0x6e, 0x6f, 0x6f, 0x6d,\n    0x6c, 0x6a, 0x63, 0x62, 0x6a, 0x6c, 0x69, 0x6a, 0x70, 0x72, 0x6a, 0x63, 0x68, 0x6c, 0x68, 0x66,\n    0x63, 0x64, 0x5a, 0x4e, 0x4f, 0x51, 0x4f, 0x50, 0x39, 0x2c, 0x2f, 0x34, 0x38, 0x36, 0x2e, 0x35,\n    0x25, 0x25, 0x23, 0x20, 0x20, 0x26, 0x2d, 0x33, 0x35, 0x43, 0x4a, 0x49, 0x4d, 0x57, 0x55, 0x4a,\n    0x4f, 0x5f, 0x6b, 0x66, 0x5a, 0x56, 0x61, 0x6c, 0x65, 0x5e, 0x58, 0x50, 0x44, 0x3f, 0x3d, 0x38,\n    0x43, 0x3c, 0x3d, 0x47, 0x4d, 0x47, 0x3c, 0x35, 0x4c, 0x51, 0x5b, 0x62, 0x64, 0x5d, 0x52, 0x4a,\n    0x40, 0x3c, 0x39, 0x35, 0x30, 0x31, 0x42, 0x56, 0x5c, 0x55, 0x51, 0x52, 0x58, 0x6a, 0x7a, 0x7e,\n    0x8a, 0x8b, 0x88, 0x82, 0x7f, 0x7e, 0x7e, 0x7c, 0x74, 0x68, 0x5d, 0x5e, 0x67, 0x70, 0x75, 0x78,\n    0x7a, 0x8a, 0x99, 0x99, 0x89, 0x73, 0x5e, 0x51, 0x42, 0x45, 0x49, 0x4f, 0x57, 0x5e, 0x5f, 0x5c,\n    0x5d, 0x54, 0x59, 0x6e, 0x82, 0x90, 0xa2, 0xb5, 0xb4, 0xa6, 0x9a, 0x99, 0x99, 0x94, 0x91, 0x93,\n    0x57, 0x54, 0x58, 0x62, 0x66, 0x60, 0x5a, 0x58, 0x50, 0x4e, 0x50, 0x55, 0x57, 0x56, 0x57, 0x59,\n    0x51, 0x51, 0x4f, 0x4a, 0x49, 0x4f, 0x59, 0x61, 0x5d, 0x64, 0x65, 0x61, 0x5c, 0x58, 0x61, 0x72,\n    0x75, 0x72, 0x71, 0x71, 0x6f, 0x69, 0x64, 0x63, 0x62, 0x62, 0x62, 0x62, 0x62, 0x63, 0x67, 0x69,\n    0x71, 0x7a, 0x6c, 0x6b, 0x63, 0x65, 0x6f, 0x6d, 0x73, 0x76, 0x7a, 0x7a, 0x75, 0x6c, 0x67, 0x66,\n    0x6c, 0x70, 0x70, 0x6d, 0x72, 0x7b, 0x7b, 0x74, 0x68, 0x62, 0x5b, 0x5a, 0x5c, 0x5f, 0x5f, 0x5e,\n    0x64, 0x68, 0x69, 0x67, 0x67, 0x6a, 0x69, 0x65, 0x6a, 0x67, 0x64, 0x64, 0x68, 0x68, 0x62, 0x5b,\n    0x67, 0x64, 0x60, 0x5c, 0x5c, 0x61, 0x69, 0x70, 0x6f, 0x67, 0x5d, 0x56, 0x59, 0x62, 0x69, 0x6b,\n    0x67, 0x65, 0x66, 0x6b, 0x6b, 0x65, 0x5d, 0x58, 0x64, 0x6a, 0x6b, 0x65, 0x63, 0x68, 0x6d, 0x6e,\n    0x69, 0x67, 0x64, 0x63, 0x67, 0x6e, 0x74, 0x77, 0x79, 0x6b, 0x61, 0x61, 0x62, 0x60, 0x65, 0x6d,\n    0x6d, 0x7d, 0x88, 0x82, 0x77, 0x76, 0x7d, 0x82, 0x7c, 0x73, 0x67, 0x61, 0x5f, 0x65, 0x6f, 0x78,\n    0x8d, 0x95, 0x67, 0x59, 0x51, 0x4e, 0x4e, 0x4c, 0x4b, 0x45, 0x47, 0x4c, 0x49, 0x48, 0x47, 0x42,\n    0x48, 0x42, 0x3b, 0x36, 0x32, 0x32, 0x36, 0x3c, 0x3d, 0x41, 0x45, 0x44, 0x40, 0x3f, 0x45, 0x4b,\n    0x48, 0x4d, 0x55, 0x60, 0x6d, 0x7c, 0x88, 0x90, 0x97, 0x9d, 0xa6, 0xae, 0xb6, 0xbd, 0xc4, 0xc8,\n    0xc7, 0xc7, 0xc6, 0xc4, 0xc3, 0xc1, 0xc1, 0xc1, 0xc3, 0xc1, 0xc0, 0xbf, 0xbe, 0xbc, 0xb9, 0xb7,\n    0xae, 0xab, 0xab, 0xad, 0xac, 0xa9, 0xa8, 0xab, 0xad, 0xaf, 0xaf, 0xaf, 0xb2, 0xb4, 0xad, 0xa4,\n    0xa7, 0xa5, 0xa2, 0xa1, 0xa3, 0xa6, 0xa5, 0xa2, 0x9f, 0xa2, 0xa5, 0xa5, 0xa3, 0x9f, 0x9d, 0x9c,\n    0x98, 0x9a, 0x9d, 0xa1, 0xa4, 0xa3, 0xa1, 0x9e, 0x93, 0x8b, 0x7e, 0x76, 0x7a, 0x85, 0x8d, 0x8e,\n    0x98, 0x9f, 0xaf, 0xc5, 0xdb, 0xe6, 0xe3, 0xdc, 0xdd, 0xd9, 0xd3, 0xd0, 0xcd, 0xc8, 0xc1, 0xbd,\n    0xbd, 0xba, 0xb5, 0xb4, 0xb7, 0xb4, 0xaa, 0x9e, 0x9b, 0x9f, 0xa3, 0xa6, 0xa8, 0xac, 0xb0, 0xb2,\n    0xb2, 0xb2, 0xb5, 0xbb, 0xbe, 0xbf, 0xc3, 0xc8, 0xca, 0xcd, 0xd3, 0xd9, 0xd7, 0xd0, 0xcc, 0xcd,\n    0xd0, 0xd1, 0xd2, 0xd0, 0xd0, 0xce, 0xc7, 0xc7, 0xc6, 0xc1, 0xca, 0xc8, 0xbe, 0xc7, 0xb0, 0xcc,\n    0xa7, 0x55, 0x47, 0x60, 0x4a, 0x41, 0x38, 0xba, 0xdc, 0xd5, 0xce, 0xcf, 0xd7, 0xe1, 0xe6, 0xe7,\n    0xea, 0xdf, 0xe2, 0xe5, 0xc9, 0xb7, 0xbe, 0xb6, 0xb8, 0xde, 0xbd, 0x4e, 0x50, 0xb0, 0xcc, 0xc6,\n    0xd2, 0xd3, 0xd3, 0xd2, 0xd1, 0xd1, 0xd2, 0xd3, 0xdc, 0xbb, 0xa4, 0xa0, 0xa1, 0xa2, 0xa3, 0xa0,\n    0xa3, 0xa3, 0x9f, 0xa3, 0xa0, 0x9d, 0xa0, 0x94, 0x76, 0xb5, 0xde, 0xf2, 0xe6, 0xd9, 0xe8, 0xe2,\n    0xc9, 0xbb, 0xba, 0xce, 0xdb, 0xd2, 0xc2, 0xbb, 0xb6, 0x85, 0x8b, 0x8b, 0x88, 0x94, 0x8f, 0x8f,\n    0x8f, 0x8b, 0xa6, 0xd0, 0xce, 0xc4, 0xce, 0xc2, 0xb5, 0xa0, 0x81, 0xa4, 0xb9, 0xbf, 0xb7, 0x97,\n    0x7e, 0x67, 0x54, 0x4e, 0x4d, 0x4f, 0x4e, 0x48, 0x4c, 0x4a, 0x47, 0x45, 0x44, 0x42, 0x40, 0x3e,\n    0x3e, 0x3b, 0x3a, 0x3c, 0x40, 0x49, 0x57, 0x63, 0x74, 0x78, 0x75, 0x6e, 0x6e, 0x73, 0x6e, 0x63,\n    0x70, 0x7d, 0x8a, 0x88, 0x74, 0x62, 0x63, 0x6e, 0x84, 0x88, 0x84, 0x7b, 0x75, 0x6c, 0x65, 0x68,\n    0x6f, 0x77, 0x7a, 0x72, 0x6d, 0x6e, 0x6b, 0x65, 0x6f, 0x6d, 0x6c, 0x70, 0x75, 0x76, 0x6d, 0x63,\n    0x6d, 0x6c, 0x64, 0x63, 0x6c, 0x6f, 0x6b, 0x69, 0x7a, 0x79, 0x6a, 0x5b, 0x5a, 0x61, 0x68, 0x6e,\n    0x6d, 0x67, 0x55, 0x4c, 0x4e, 0x44, 0x33, 0x2e, 0x35, 0x28, 0x31, 0x41, 0x48, 0x3f, 0x30, 0x35,\n    0x2e, 0x2f, 0x30, 0x30, 0x2c, 0x27, 0x28, 0x2d, 0x34, 0x37, 0x35, 0x30, 0x31, 0x3c, 0x46, 0x49,\n    0x4f, 0x59, 0x60, 0x5b, 0x55, 0x57, 0x5f, 0x66, 0x5d, 0x5e, 0x63, 0x61, 0x55, 0x4e, 0x4c, 0x47,\n    0x49, 0x4f, 0x5a, 0x65, 0x66, 0x5a, 0x47, 0x3b, 0x3c, 0x45, 0x4c, 0x49, 0x41, 0x3c, 0x41, 0x48,\n    0x47, 0x41, 0x3a, 0x2e, 0x20, 0x26, 0x49, 0x6f, 0x8b, 0x70, 0x55, 0x4e, 0x54, 0x5b, 0x6b, 0x80,\n    0x81, 0x85, 0x8b, 0x91, 0x96, 0x97, 0x92, 0x8b, 0x9d, 0x9a, 0x95, 0x8b, 0x78, 0x62, 0x53, 0x4e,\n    0x54, 0x51, 0x4d, 0x47, 0x3b, 0x30, 0x2a, 0x2a, 0x38, 0x3f, 0x47, 0x4f, 0x58, 0x62, 0x6a, 0x6d,\n    0x6c, 0x79, 0x81, 0x82, 0x8a, 0x96, 0x96, 0x8b, 0x8c, 0x82, 0x79, 0x73, 0x69, 0x5d, 0x5b, 0x5f,\n    0x4f, 0x4f, 0x57, 0x67, 0x6e, 0x66, 0x59, 0x51, 0x4d, 0x54, 0x5a, 0x5e, 0x61, 0x61, 0x5c, 0x55,\n    0x57, 0x59, 0x52, 0x4b, 0x53, 0x64, 0x68, 0x60, 0x6b, 0x6d, 0x69, 0x64, 0x63, 0x63, 0x67, 0x71,\n    0x79, 0x71, 0x6d, 0x71, 0x6f, 0x67, 0x60, 0x60, 0x6d, 0x6b, 0x68, 0x68, 0x6a, 0x6e, 0x71, 0x73,\n    0x6b, 0x78, 0x69, 0x6d, 0x61, 0x66, 0x70, 0x70, 0x77, 0x78, 0x7f, 0x87, 0x7f, 0x6d, 0x65, 0x69,\n    0x6e, 0x77, 0x79, 0x72, 0x71, 0x78, 0x75, 0x6b, 0x6d, 0x65, 0x5c, 0x58, 0x5a, 0x5e, 0x5f, 0x5e,\n    0x5a, 0x5d, 0x62, 0x68, 0x6a, 0x6d, 0x73, 0x79, 0x78, 0x6c, 0x63, 0x64, 0x65, 0x62, 0x60, 0x62,\n    0x56, 0x56, 0x59, 0x5d, 0x5e, 0x5e, 0x61, 0x66, 0x62, 0x5b, 0x54, 0x54, 0x62, 0x6e, 0x6d, 0x63,\n    0x64, 0x62, 0x62, 0x65, 0x63, 0x5e, 0x5c, 0x5d, 0x65, 0x69, 0x69, 0x65, 0x68, 0x71, 0x76, 0x75,\n    0x6c, 0x6c, 0x6a, 0x67, 0x65, 0x68, 0x71, 0x7b, 0x79, 0x6e, 0x67, 0x68, 0x66, 0x61, 0x63, 0x6b,\n    0x76, 0x7c, 0x7c, 0x72, 0x6c, 0x6f, 0x74, 0x74, 0x69, 0x63, 0x60, 0x60, 0x60, 0x61, 0x68, 0x72,\n    0x81, 0x8a, 0x5d, 0x5b, 0x58, 0x52, 0x4f, 0x4e, 0x4d, 0x47, 0x49, 0x4c, 0x48, 0x44, 0x41, 0x3a,\n    0x3c, 0x39, 0x39, 0x3b, 0x3c, 0x3a, 0x36, 0x35, 0x42, 0x3f, 0x3d, 0x3e, 0x41, 0x42, 0x42, 0x42,\n    0x42, 0x43, 0x44, 0x44, 0x44, 0x45, 0x46, 0x48, 0x51, 0x58, 0x64, 0x71, 0x7f, 0x8f, 0xa0, 0xaa,\n    0xc1, 0xc1, 0xc1, 0xbf, 0xbd, 0xbc, 0xbb, 0xbc, 0xbb, 0xbb, 0xbb, 0xbb, 0xbc, 0xbc, 0xbb, 0xba,\n    0xba, 0xb3, 0xad, 0xaa, 0xa7, 0xa6, 0xab, 0xb2, 0xac, 0xb3, 0xb4, 0xaf, 0xae, 0xb4, 0xb4, 0xae,\n    0xad, 0xaf, 0xab, 0xa3, 0x9f, 0xa2, 0xa2, 0x9f, 0x9f, 0xa2, 0xa5, 0xa6, 0xa5, 0xa2, 0xa1, 0xa1,\n    0xa0, 0x9a, 0x96, 0x98, 0xa0, 0xa7, 0xa9, 0xa8, 0x9d, 0x92, 0x7f, 0x72, 0x77, 0x88, 0x91, 0x90,\n    0xa4, 0xaf, 0xc6, 0xdc, 0xe5, 0xe1, 0xdd, 0xdf, 0xd8, 0xd3, 0xce, 0xcb, 0xca, 0xc6, 0xc3, 0xc2,\n    0xbb, 0xb6, 0xb0, 0xb0, 0xb4, 0xb2, 0xa6, 0x99, 0x9b, 0x9e, 0xa2, 0xa5, 0xaa, 0xaf, 0xb3, 0xb4,\n    0xb4, 0xb3, 0xb6, 0xbb, 0xbe, 0xbf, 0xc4, 0xc9, 0xcc, 0xcc, 0xd2, 0xd8, 0xd5, 0xcb, 0xc7, 0xc9,\n    0xcd, 0xcb, 0xcc, 0xc5, 0xc5, 0xca, 0xc6, 0xc5, 0xba, 0xbc, 0xba, 0xbd, 0xbe, 0xbc, 0xce, 0xcc,\n    0x8f, 0x2c, 0x74, 0x9e, 0x50, 0x92, 0x76, 0x81, 0xc7, 0xbe, 0xb6, 0xb8, 0xc6, 0xd6, 0xe1, 0xe5,\n    0xdd, 0xeb, 0xe6, 0xde, 0xe7, 0xd4, 0xb9, 0xc6, 0xd3, 0xe2, 0xe3, 0x77, 0x43, 0x99, 0xc9, 0xc4,\n    0xd0, 0xd1, 0xd2, 0xd2, 0xd2, 0xd1, 0xd2, 0xd3, 0xdb, 0xb9, 0x9f, 0x9d, 0xa2, 0xa5, 0xa3, 0x9d,\n    0x9d, 0x9d, 0x9a, 0xa0, 0x9e, 0x9c, 0xa0, 0x96, 0x64, 0xa6, 0xcd, 0xdc, 0xeb, 0xec, 0xe6, 0xe6,\n    0xd1, 0xc0, 0xc4, 0xdb, 0xe3, 0xd6, 0xc7, 0xbe, 0xa8, 0x84, 0x93, 0x94, 0x92, 0x8d, 0x8c, 0x8c,\n    0x8e, 0x8a, 0xa4, 0xd1, 0xd0, 0xc5, 0xd0, 0xc3, 0xbe, 0x9c, 0x76, 0x8d, 0x99, 0xb2, 0xb9, 0xa0,\n    0x7c, 0x66, 0x54, 0x4d, 0x4a, 0x4d, 0x4e, 0x48, 0x4a, 0x48, 0x46, 0x44, 0x42, 0x41, 0x3f, 0x3d,\n    0x41, 0x3e, 0x3d, 0x40, 0x48, 0x56, 0x6b, 0x7a, 0x6a, 0x69, 0x6b, 0x6e, 0x6c, 0x67, 0x64, 0x67,\n    0x6c, 0x75, 0x81, 0x83, 0x72, 0x5e, 0x5b, 0x65, 0x76, 0x83, 0x88, 0x7f, 0x73, 0x66, 0x63, 0x6b,\n    0x6d, 0x7b, 0x7f, 0x72, 0x6a, 0x70, 0x76, 0x76, 0x6b, 0x6e, 0x75, 0x78, 0x70, 0x66, 0x65, 0x6c,\n    0x6c, 0x70, 0x6a, 0x67, 0x71, 0x78, 0x73, 0x6d, 0x6c, 0x6f, 0x68, 0x61, 0x66, 0x68, 0x65, 0x63,\n    0x68, 0x62, 0x51, 0x48, 0x47, 0x3b, 0x2f, 0x33, 0x2c, 0x2d, 0x41, 0x55, 0x62, 0x60, 0x4c, 0x45,\n    0x42, 0x38, 0x31, 0x2d, 0x24, 0x1c, 0x21, 0x2c, 0x36, 0x2f, 0x33, 0x3b, 0x33, 0x22, 0x25, 0x36,\n    0x40, 0x42, 0x46, 0x4d, 0x57, 0x5b, 0x52, 0x47, 0x4d, 0x45, 0x3d, 0x33, 0x2f, 0x42, 0x62, 0x76,\n    0x88, 0x7f, 0x6e, 0x5e, 0x55, 0x51, 0x4a, 0x41, 0x3c, 0x3d, 0x3d, 0x3f, 0x40, 0x42, 0x43, 0x44,\n    0x3f, 0x3a, 0x33, 0x29, 0x1d, 0x26, 0x4f, 0x7a, 0x93, 0x8d, 0x72, 0x59, 0x53, 0x4e, 0x4b, 0x52,\n    0x5e, 0x68, 0x73, 0x79, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x73, 0x70, 0x76, 0x79, 0x70, 0x61, 0x56,\n    0x4b, 0x3e, 0x35, 0x38, 0x3c, 0x3d, 0x40, 0x45, 0x44, 0x48, 0x47, 0x3e, 0x3b, 0x48, 0x5f, 0x72,\n    0x82, 0x7c, 0x7e, 0x84, 0x7f, 0x70, 0x68, 0x6a, 0x64, 0x5e, 0x52, 0x4b, 0x51, 0x5c, 0x5c, 0x53,\n    0x4e, 0x4d, 0x52, 0x5b, 0x60, 0x5d, 0x58, 0x56, 0x52, 0x54, 0x5a, 0x60, 0x61, 0x61, 0x66, 0x6e,\n    0x7e, 0x7b, 0x69, 0x55, 0x5a, 0x6e, 0x6e, 0x5f, 0x60, 0x63, 0x63, 0x5f, 0x5e, 0x64, 0x6a, 0x6c,\n    0x75, 0x6e, 0x68, 0x68, 0x6b, 0x69, 0x61, 0x58, 0x54, 0x62, 0x63, 0x5e, 0x5b, 0x5e, 0x62, 0x5a,\n    0x62, 0x6c, 0x6f, 0x62, 0x56, 0x58, 0x64, 0x6f, 0x72, 0x7f, 0x83, 0x86, 0x7f, 0x71, 0x6a, 0x5e,\n    0x64, 0x6f, 0x76, 0x76, 0x74, 0x75, 0x75, 0x72, 0x6f, 0x68, 0x60, 0x5c, 0x5e, 0x61, 0x5f, 0x5b,\n    0x5e, 0x60, 0x63, 0x65, 0x67, 0x6c, 0x72, 0x77, 0x78, 0x72, 0x68, 0x61, 0x63, 0x68, 0x63, 0x59,\n    0x5d, 0x5f, 0x60, 0x60, 0x62, 0x64, 0x60, 0x5b, 0x52, 0x53, 0x55, 0x5b, 0x64, 0x6a, 0x68, 0x62,\n    0x62, 0x62, 0x64, 0x67, 0x67, 0x62, 0x5f, 0x5f, 0x65, 0x61, 0x5e, 0x60, 0x67, 0x6d, 0x6e, 0x6c,\n    0x67, 0x66, 0x64, 0x62, 0x64, 0x6a, 0x73, 0x79, 0x77, 0x7b, 0x7c, 0x6c, 0x58, 0x5b, 0x6f, 0x7c,\n    0x7b, 0x77, 0x6a, 0x5c, 0x5d, 0x67, 0x6a, 0x63, 0x62, 0x68, 0x6a, 0x63, 0x5e, 0x60, 0x67, 0x6d,\n    0x85, 0x86, 0x71, 0x59, 0x53, 0x4e, 0x47, 0x49, 0x4a, 0x48, 0x45, 0x45, 0x47, 0x46, 0x43, 0x40,\n    0x3e, 0x3d, 0x3d, 0x3c, 0x38, 0x35, 0x36, 0x3b, 0x3f, 0x40, 0x42, 0x43, 0x43, 0x43, 0x44, 0x44,\n    0x46, 0x46, 0x46, 0x46, 0x46, 0x45, 0x45, 0x44, 0x44, 0x43, 0x44, 0x47, 0x4e, 0x57, 0x61, 0x67,\n    0x89, 0xa4, 0xbd, 0xc3, 0xbf, 0xbc, 0xba, 0xb8, 0xb2, 0xb5, 0xb7, 0xb7, 0xba, 0xbf, 0xbe, 0xb8,\n    0xbb, 0xb7, 0xb1, 0xae, 0xae, 0xae, 0xac, 0xaa, 0xa7, 0xa6, 0xaa, 0xb0, 0xb3, 0xb2, 0xb3, 0xb7,\n    0xae, 0xb0, 0xb1, 0xb0, 0xab, 0xa6, 0xa1, 0x9f, 0x9d, 0x9e, 0xa1, 0xa4, 0xa5, 0xa3, 0x9f, 0x9c,\n    0x9c, 0x99, 0x9b, 0xa1, 0xa4, 0xa3, 0xa3, 0xa5, 0x9e, 0x9a, 0x84, 0x72, 0x78, 0x85, 0x92, 0xa3,\n    0xc0, 0xd0, 0xdd, 0xdf, 0xdd, 0xdc, 0xd8, 0xd2, 0xd1, 0xcf, 0xcc, 0xc9, 0xc8, 0xc8, 0xc3, 0xbd,\n    0xb9, 0xb5, 0xb5, 0xb6, 0xb3, 0xa8, 0x9d, 0x98, 0x9c, 0x9e, 0xa2, 0xa8, 0xad, 0xb0, 0xb1, 0xb1,\n    0xb4, 0xb4, 0xb6, 0xbb, 0xc2, 0xc7, 0xca, 0xcb, 0xc9, 0xcf, 0xd1, 0xd2, 0xd2, 0xcb, 0xc6, 0xcb,\n    0xca, 0xc9, 0xc5, 0xbe, 0xb9, 0xb8, 0xb5, 0xb1, 0xc0, 0xb9, 0xb9, 0xbd, 0xc4, 0xbe, 0xba, 0xcd,\n    0xb7, 0x3e, 0x4f, 0x63, 0x4e, 0xaa, 0xd8, 0x6f, 0xb9, 0xc0, 0xbb, 0xbd, 0xc0, 0xc5, 0xd9, 0xe7,\n    0xe2, 0xe4, 0xe5, 0xe5, 0xe4, 0xe2, 0xe2, 0xe2, 0xe3, 0xed, 0xe1, 0xab, 0x49, 0x7c, 0xbd, 0xc8,\n    0xd2, 0xd4, 0xd5, 0xd2, 0xd0, 0xd0, 0xd1, 0xd0, 0xd8, 0xbc, 0x9c, 0xa6, 0xa1, 0xa1, 0xa0, 0x9c,\n    0x9e, 0x9f, 0x9d, 0x9b, 0x9d, 0xa1, 0x9e, 0x98, 0x69, 0xae, 0xc3, 0xd5, 0xe7, 0xe8, 0xea, 0xe3,\n    0xdf, 0xdc, 0xe4, 0xdb, 0xe3, 0xdf, 0xd9, 0xd0, 0xa2, 0x84, 0x92, 0x92, 0x96, 0x8d, 0x8a, 0x8a,\n    0x8b, 0x8e, 0xa1, 0xd0, 0xd1, 0xcb, 0xc9, 0xc5, 0xbc, 0xa7, 0x73, 0x86, 0x96, 0xac, 0xb9, 0x9c,\n    0x77, 0x64, 0x4d, 0x47, 0x4c, 0x4b, 0x48, 0x4b, 0x48, 0x43, 0x41, 0x42, 0x41, 0x3e, 0x3d, 0x3f,\n    0x42, 0x3c, 0x3e, 0x4e, 0x61, 0x6c, 0x6e, 0x6d, 0x6b, 0x6b, 0x6d, 0x6f, 0x6b, 0x65, 0x67, 0x6d,\n    0x6b, 0x72, 0x7b, 0x7a, 0x6f, 0x65, 0x64, 0x69, 0x6e, 0x78, 0x81, 0x7f, 0x74, 0x67, 0x60, 0x5f,\n    0x67, 0x70, 0x7a, 0x7c, 0x74, 0x6c, 0x6d, 0x72, 0x6e, 0x6c, 0x70, 0x71, 0x6a, 0x68, 0x6c, 0x6c,\n    0x6f, 0x6d, 0x6a, 0x6b, 0x72, 0x79, 0x79, 0x76, 0x67, 0x62, 0x65, 0x70, 0x77, 0x72, 0x67, 0x60,\n    0x5f, 0x5e, 0x57, 0x52, 0x4f, 0x42, 0x33, 0x2f, 0x27, 0x32, 0x48, 0x5d, 0x5e, 0x53, 0x4f, 0x54,\n    0x51, 0x47, 0x39, 0x2e, 0x29, 0x28, 0x27, 0x26, 0x2c, 0x37, 0x42, 0x44, 0x42, 0x40, 0x40, 0x41,\n    0x42, 0x50, 0x5e, 0x64, 0x67, 0x66, 0x5d, 0x51, 0x4b, 0x46, 0x42, 0x46, 0x51, 0x5b, 0x5f, 0x5e,\n    0x47, 0x4c, 0x54, 0x5b, 0x58, 0x4c, 0x3f, 0x37, 0x3b, 0x36, 0x31, 0x31, 0x37, 0x3d, 0x40, 0x40,\n    0x39, 0x2b, 0x26, 0x31, 0x36, 0x30, 0x3f, 0x5f, 0x7c, 0x77, 0x6e, 0x63, 0x5c, 0x58, 0x53, 0x4f,\n    0x52, 0x57, 0x5b, 0x5a, 0x56, 0x56, 0x59, 0x5d, 0x65, 0x6c, 0x72, 0x72, 0x73, 0x72, 0x6a, 0x60,\n    0x63, 0x5b, 0x57, 0x59, 0x53, 0x47, 0x43, 0x48, 0x3e, 0x46, 0x42, 0x3c, 0x50, 0x78, 0x8e, 0x8c,\n    0x83, 0x7a, 0x65, 0x4f, 0x49, 0x58, 0x6d, 0x79, 0x7b, 0x81, 0x7d, 0x68, 0x4d, 0x38, 0x29, 0x20,\n    0x53, 0x53, 0x59, 0x63, 0x68, 0x65, 0x60, 0x5e, 0x5d, 0x59, 0x55, 0x50, 0x4a, 0x48, 0x4f, 0x59,\n    0x7e, 0x83, 0x79, 0x64, 0x5d, 0x67, 0x6d, 0x69, 0x64, 0x60, 0x5a, 0x58, 0x60, 0x6c, 0x73, 0x73,\n    0x64, 0x62, 0x62, 0x67, 0x6d, 0x6d, 0x66, 0x5f, 0x62, 0x66, 0x64, 0x63, 0x66, 0x69, 0x67, 0x5e,\n    0x65, 0x69, 0x68, 0x65, 0x65, 0x68, 0x67, 0x62, 0x6d, 0x77, 0x75, 0x76, 0x72, 0x6d, 0x73, 0x70,\n    0x70, 0x77, 0x7d, 0x7c, 0x78, 0x75, 0x73, 0x72, 0x6c, 0x6a, 0x65, 0x5e, 0x59, 0x58, 0x5a, 0x5c,\n    0x5d, 0x60, 0x62, 0x62, 0x5f, 0x5c, 0x5a, 0x59, 0x65, 0x65, 0x63, 0x60, 0x63, 0x69, 0x69, 0x65,\n    0x66, 0x68, 0x6b, 0x6e, 0x6e, 0x68, 0x60, 0x59, 0x59, 0x5b, 0x5f, 0x64, 0x6a, 0x6e, 0x6c, 0x67,\n    0x64, 0x64, 0x65, 0x67, 0x66, 0x60, 0x5c, 0x5b, 0x63, 0x60, 0x5f, 0x63, 0x6a, 0x6e, 0x6c, 0x68,\n    0x6b, 0x69, 0x66, 0x63, 0x64, 0x6a, 0x72, 0x78, 0x7d, 0x7e, 0x7d, 0x6e, 0x5c, 0x5d, 0x6b, 0x72,\n    0x78, 0x77, 0x70, 0x64, 0x5f, 0x62, 0x63, 0x60, 0x6e, 0x6f, 0x6d, 0x67, 0x60, 0x62, 0x6b, 0x74,\n    0x7d, 0x8d, 0x88, 0x6f, 0x5a, 0x4a, 0x46, 0x4e, 0x4c, 0x4a, 0x49, 0x48, 0x48, 0x47, 0x43, 0x40,\n    0x41, 0x40, 0x40, 0x3f, 0x3b, 0x38, 0x39, 0x3d, 0x3f, 0x40, 0x42, 0x43, 0x43, 0x43, 0x44, 0x45,\n    0x42, 0x43, 0x44, 0x45, 0x46, 0x46, 0x46, 0x46, 0x49, 0x47, 0x45, 0x44, 0x44, 0x47, 0x4a, 0x4c,\n    0x51, 0x6c, 0x90, 0xab, 0xba, 0xbf, 0xbd, 0xb8, 0xb2, 0xb4, 0xb7, 0xb8, 0xb5, 0xb2, 0xb4, 0xb8,\n    0xb7, 0xb3, 0xaf, 0xad, 0xad, 0xac, 0xa9, 0xa7, 0xa3, 0xa4, 0xa9, 0xaf, 0xb2, 0xb0, 0xb0, 0xb2,\n    0xaf, 0xb0, 0xb2, 0xb0, 0xad, 0xa9, 0xa6, 0xa4, 0xa1, 0xa0, 0x9f, 0x9f, 0xa0, 0xa1, 0xa1, 0xa0,\n    0xa3, 0x9a, 0x94, 0x98, 0x9e, 0x9e, 0x9b, 0x97, 0x9a, 0x9a, 0x86, 0x73, 0x7b, 0x91, 0xa9, 0xbe,\n    0xce, 0xd7, 0xdb, 0xd7, 0xd3, 0xd4, 0xd3, 0xd0, 0xcc, 0xcd, 0xcb, 0xc9, 0xc9, 0xc8, 0xc3, 0xbd,\n    0xb6, 0xb5, 0xb5, 0xb4, 0xad, 0xa2, 0x9b, 0x99, 0x99, 0x9b, 0x9f, 0xa5, 0xac, 0xb2, 0xb7, 0xba,\n    0xba, 0xba, 0xbb, 0xbf, 0xc5, 0xc9, 0xcb, 0xcc, 0xcc, 0xd0, 0xd1, 0xd4, 0xd7, 0xce, 0xc5, 0xc5,\n    0xc8, 0xc5, 0xbf, 0xb8, 0xb3, 0xb3, 0xb7, 0xbb, 0xb2, 0xb6, 0xb6, 0xbe, 0xbb, 0xbd, 0xc9, 0xbd,\n    0x89, 0x38, 0x3e, 0x43, 0x3e, 0xba, 0xf0, 0x89, 0x97, 0xc8, 0xba, 0xb8, 0xbe, 0xbc, 0xd7, 0xe6,\n    0xe3, 0xe4, 0xe6, 0xe6, 0xe4, 0xe3, 0xe2, 0xe2, 0xda, 0xdd, 0xe4, 0xc1, 0x4c, 0x73, 0xc8, 0xc1,\n    0xd4, 0xd5, 0xd4, 0xd1, 0xd0, 0xd2, 0xd2, 0xd0, 0xda, 0xbd, 0x9c, 0xa5, 0xa0, 0xa0, 0x9e, 0x9b,\n    0x9e, 0x9f, 0x9e, 0x9d, 0x9f, 0xa0, 0x9d, 0x97, 0x67, 0x9d, 0xc2, 0xe3, 0xf1, 0xe9, 0xe8, 0xe1,\n    0xe8, 0xde, 0xe3, 0xd9, 0xdd, 0xe3, 0xea, 0xde, 0xa3, 0x86, 0x92, 0x95, 0x99, 0x8d, 0x8a, 0x8c,\n    0x90, 0x93, 0xa7, 0xd3, 0xd0, 0xc8, 0xc7, 0xc6, 0xb8, 0xaa, 0x74, 0x8b, 0xb0, 0xae, 0xaa, 0x9c,\n    0x76, 0x5e, 0x4b, 0x48, 0x4a, 0x49, 0x47, 0x48, 0x4b, 0x46, 0x43, 0x43, 0x41, 0x3d, 0x3a, 0x3b,\n    0x3b, 0x44, 0x54, 0x65, 0x6e, 0x70, 0x73, 0x78, 0x70, 0x69, 0x67, 0x68, 0x5e, 0x4f, 0x4c, 0x54,\n    0x73, 0x76, 0x7a, 0x7b, 0x75, 0x6d, 0x69, 0x69, 0x6b, 0x79, 0x86, 0x84, 0x75, 0x68, 0x67, 0x6a,\n    0x68, 0x6a, 0x70, 0x79, 0x7d, 0x77, 0x6e, 0x67, 0x61, 0x6c, 0x70, 0x6d, 0x6e, 0x73, 0x73, 0x6e,\n    0x72, 0x71, 0x6f, 0x6e, 0x72, 0x75, 0x75, 0x71, 0x5c, 0x62, 0x66, 0x67, 0x6a, 0x6f, 0x70, 0x6d,\n    0x60, 0x63, 0x5d, 0x54, 0x48, 0x37, 0x2d, 0x2f, 0x42, 0x4a, 0x54, 0x5c, 0x62, 0x65, 0x64, 0x61,\n    0x57, 0x54, 0x4f, 0x4a, 0x45, 0x3f, 0x38, 0x34, 0x2e, 0x31, 0x36, 0x3e, 0x48, 0x4c, 0x46, 0x3e,\n    0x4b, 0x54, 0x57, 0x4e, 0x45, 0x45, 0x48, 0x4a, 0x42, 0x46, 0x5a, 0x70, 0x6b, 0x54, 0x4a, 0x52,\n    0x68, 0x72, 0x7d, 0x7d, 0x6f, 0x5b, 0x4d, 0x49, 0x3d, 0x44, 0x45, 0x3d, 0x37, 0x36, 0x33, 0x2e,\n    0x1a, 0x1e, 0x25, 0x2c, 0x24, 0x16, 0x22, 0x41, 0x5c, 0x66, 0x66, 0x5c, 0x59, 0x60, 0x60, 0x57,\n    0x4d, 0x44, 0x41, 0x48, 0x51, 0x54, 0x51, 0x4e, 0x4f, 0x54, 0x5a, 0x5f, 0x64, 0x65, 0x63, 0x5e,\n    0x68, 0x64, 0x58, 0x49, 0x41, 0x42, 0x44, 0x43, 0x49, 0x39, 0x3d, 0x60, 0x7e, 0x7d, 0x6a, 0x5b,\n    0x4e, 0x50, 0x5a, 0x6d, 0x7a, 0x76, 0x63, 0x51, 0x3e, 0x32, 0x27, 0x25, 0x2a, 0x32, 0x3b, 0x44,\n    0x7a, 0x78, 0x77, 0x78, 0x74, 0x6b, 0x62, 0x5c, 0x51, 0x52, 0x53, 0x51, 0x4c, 0x4a, 0x4e, 0x55,\n    0x51, 0x59, 0x59, 0x4f, 0x49, 0x51, 0x5d, 0x62, 0x5a, 0x5b, 0x5a, 0x5b, 0x5e, 0x60, 0x5d, 0x59,\n    0x5d, 0x5e, 0x62, 0x67, 0x6a, 0x68, 0x62, 0x5d, 0x65, 0x64, 0x66, 0x6a, 0x6e, 0x6f, 0x6d, 0x6c,\n    0x64, 0x67, 0x67, 0x63, 0x62, 0x65, 0x65, 0x62, 0x61, 0x70, 0x77, 0x7e, 0x7d, 0x77, 0x7b, 0x77,\n    0x7a, 0x7a, 0x7b, 0x7a, 0x74, 0x6e, 0x6e, 0x71, 0x6a, 0x68, 0x63, 0x5f, 0x5c, 0x5c, 0x5f, 0x61,\n    0x5e, 0x60, 0x63, 0x63, 0x61, 0x5d, 0x5b, 0x59, 0x50, 0x52, 0x58, 0x60, 0x6a, 0x70, 0x6e, 0x69,\n    0x64, 0x63, 0x68, 0x6f, 0x6f, 0x64, 0x58, 0x53, 0x53, 0x57, 0x5b, 0x5e, 0x62, 0x64, 0x62, 0x5f,\n    0x68, 0x67, 0x68, 0x69, 0x65, 0x5e, 0x59, 0x57, 0x50, 0x55, 0x5c, 0x61, 0x63, 0x63, 0x63, 0x64,\n    0x66, 0x64, 0x62, 0x62, 0x65, 0x6c, 0x75, 0x7b, 0x84, 0x81, 0x7f, 0x76, 0x6a, 0x6a, 0x70, 0x6f,\n    0x76, 0x78, 0x77, 0x71, 0x68, 0x63, 0x63, 0x66, 0x75, 0x73, 0x71, 0x6f, 0x68, 0x65, 0x6b, 0x75,\n    0x76, 0x80, 0x7d, 0x71, 0x67, 0x5c, 0x52, 0x50, 0x48, 0x48, 0x48, 0x47, 0x47, 0x45, 0x44, 0x43,\n    0x40, 0x3f, 0x3f, 0x3e, 0x3b, 0x37, 0x38, 0x3c, 0x3f, 0x41, 0x43, 0x43, 0x44, 0x44, 0x45, 0x46,\n    0x43, 0x44, 0x45, 0x46, 0x46, 0x47, 0x47, 0x47, 0x47, 0x47, 0x46, 0x44, 0x43, 0x43, 0x42, 0x42,\n    0x44, 0x47, 0x58, 0x78, 0x9a, 0xb2, 0xbc, 0xbe, 0xbb, 0xb5, 0xb3, 0xb4, 0xb1, 0xab, 0xae, 0xb6,\n    0xb2, 0xb0, 0xad, 0xad, 0xac, 0xab, 0xa7, 0xa4, 0x9f, 0xa1, 0xa6, 0xad, 0xb0, 0xae, 0xad, 0xad,\n    0xac, 0xad, 0xae, 0xad, 0xab, 0xa8, 0xa6, 0xa6, 0xa5, 0xa2, 0xa0, 0x9e, 0x9e, 0x9e, 0x9e, 0x9e,\n    0x9e, 0x9d, 0x9c, 0x9b, 0x98, 0x94, 0x95, 0x97, 0x96, 0x92, 0x80, 0x77, 0x8b, 0xaa, 0xc5, 0xd5,\n    0xd6, 0xd8, 0xd6, 0xcf, 0xcc, 0xce, 0xce, 0xcc, 0xca, 0xcb, 0xca, 0xc9, 0xc8, 0xc6, 0xc1, 0xba,\n    0xb5, 0xb6, 0xb5, 0xb0, 0xa6, 0x9b, 0x97, 0x99, 0x9a, 0x9a, 0x9c, 0x9f, 0xa5, 0xac, 0xb2, 0xb6,\n    0xba, 0xba, 0xbc, 0xc0, 0xc4, 0xc9, 0xcb, 0xcc, 0xcb, 0xcd, 0xcc, 0xcf, 0xd2, 0xc8, 0xba, 0xb7,\n    0xb5, 0xb4, 0xb5, 0xb7, 0xb3, 0xae, 0xb1, 0xb8, 0xb5, 0xbe, 0xb8, 0xbf, 0xb3, 0xb4, 0xc1, 0x92,\n    0x3f, 0x38, 0x60, 0x56, 0x39, 0xba, 0xf8, 0xb4, 0x74, 0xbd, 0xbd, 0xb8, 0xbc, 0xb3, 0xd4, 0xe2,\n    0xe3, 0xe5, 0xe6, 0xe6, 0xe5, 0xe4, 0xe3, 0xe4, 0xea, 0xe2, 0xea, 0xc6, 0x4e, 0x6a, 0xca, 0xc5,\n    0xd6, 0xd6, 0xd4, 0xd1, 0xd1, 0xd3, 0xd3, 0xd2, 0xdd, 0xbf, 0x9e, 0xa6, 0xa0, 0xa0, 0x9f, 0x9c,\n    0x9e, 0x9f, 0x9f, 0x9f, 0xa0, 0xa0, 0x9c, 0x97, 0x6b, 0x97, 0xc5, 0xdf, 0xe0, 0xd5, 0xda, 0xd9,\n    0xdf, 0xe4, 0xd9, 0xc1, 0xce, 0xd1, 0xd5, 0xd5, 0x9a, 0x87, 0x92, 0x97, 0x99, 0x8e, 0x8b, 0x8f,\n    0x93, 0x96, 0xa9, 0xd5, 0xd0, 0xc7, 0xc7, 0xc8, 0xb9, 0xb3, 0x83, 0x88, 0xc4, 0xbf, 0xa4, 0x99,\n    0x73, 0x55, 0x47, 0x4a, 0x47, 0x45, 0x47, 0x44, 0x40, 0x40, 0x41, 0x40, 0x3d, 0x3c, 0x40, 0x46,\n    0x4e, 0x55, 0x63, 0x72, 0x79, 0x76, 0x71, 0x6e, 0x5d, 0x69, 0x67, 0x5e, 0x6b, 0x8a, 0x9c, 0x9a,\n    0x66, 0x64, 0x67, 0x6e, 0x72, 0x70, 0x6a, 0x66, 0x68, 0x73, 0x7e, 0x7e, 0x73, 0x6a, 0x69, 0x6b,\n    0x67, 0x6b, 0x73, 0x7a, 0x7b, 0x73, 0x6a, 0x65, 0x7a, 0x88, 0x7d, 0x68, 0x6a, 0x72, 0x6d, 0x68,\n    0x73, 0x73, 0x6f, 0x6a, 0x69, 0x6b, 0x6b, 0x6a, 0x6d, 0x6f, 0x6e, 0x69, 0x63, 0x5d, 0x56, 0x51,\n    0x5c, 0x63, 0x61, 0x54, 0x42, 0x2f, 0x2a, 0x32, 0x58, 0x69, 0x70, 0x64, 0x5c, 0x63, 0x6c, 0x6f,\n    0x69, 0x67, 0x62, 0x5a, 0x51, 0x47, 0x3f, 0x3a, 0x39, 0x33, 0x2e, 0x33, 0x42, 0x4f, 0x51, 0x4d,\n    0x45, 0x47, 0x47, 0x46, 0x49, 0x4e, 0x4d, 0x48, 0x3c, 0x4d, 0x60, 0x63, 0x58, 0x4e, 0x51, 0x5b,\n    0x5b, 0x5c, 0x61, 0x67, 0x6a, 0x65, 0x5f, 0x5c, 0x53, 0x52, 0x4e, 0x47, 0x3d, 0x32, 0x29, 0x24,\n    0x28, 0x22, 0x1d, 0x21, 0x25, 0x1f, 0x1d, 0x27, 0x3f, 0x4e, 0x58, 0x57, 0x55, 0x59, 0x5b, 0x5a,\n    0x4c, 0x48, 0x44, 0x3f, 0x38, 0x34, 0x3c, 0x47, 0x4f, 0x4a, 0x45, 0x45, 0x49, 0x4e, 0x54, 0x5a,\n    0x4b, 0x4c, 0x47, 0x3d, 0x35, 0x32, 0x2e, 0x29, 0x28, 0x35, 0x48, 0x56, 0x5a, 0x56, 0x50, 0x4d,\n    0x48, 0x47, 0x3a, 0x26, 0x1d, 0x24, 0x29, 0x28, 0x2d, 0x2f, 0x35, 0x3a, 0x3a, 0x3f, 0x54, 0x6b,\n    0x68, 0x65, 0x63, 0x61, 0x5f, 0x5b, 0x58, 0x55, 0x5a, 0x5d, 0x5f, 0x5d, 0x55, 0x4f, 0x4f, 0x51,\n    0x58, 0x57, 0x55, 0x52, 0x52, 0x56, 0x5c, 0x5f, 0x65, 0x5c, 0x53, 0x52, 0x5a, 0x62, 0x63, 0x60,\n    0x5e, 0x62, 0x66, 0x66, 0x61, 0x5d, 0x5c, 0x5c, 0x5c, 0x5d, 0x67, 0x6a, 0x66, 0x61, 0x5f, 0x6a,\n    0x6b, 0x6a, 0x63, 0x5b, 0x5c, 0x64, 0x6b, 0x6c, 0x67, 0x72, 0x74, 0x77, 0x76, 0x74, 0x7f, 0x7f,\n    0x7f, 0x79, 0x75, 0x73, 0x6d, 0x67, 0x6a, 0x71, 0x6d, 0x65, 0x5e, 0x5f, 0x63, 0x63, 0x5f, 0x5c,\n    0x5e, 0x5d, 0x5c, 0x5d, 0x61, 0x65, 0x69, 0x6b, 0x5d, 0x55, 0x51, 0x59, 0x67, 0x6f, 0x6d, 0x68,\n    0x5d, 0x58, 0x5b, 0x64, 0x64, 0x5a, 0x52, 0x51, 0x53, 0x57, 0x5b, 0x5d, 0x5f, 0x61, 0x62, 0x60,\n    0x66, 0x65, 0x65, 0x66, 0x62, 0x5a, 0x54, 0x52, 0x4c, 0x58, 0x64, 0x69, 0x66, 0x65, 0x6a, 0x70,\n    0x60, 0x5f, 0x5f, 0x60, 0x64, 0x6a, 0x71, 0x75, 0x7a, 0x75, 0x74, 0x75, 0x72, 0x74, 0x75, 0x6f,\n    0x70, 0x71, 0x75, 0x75, 0x6e, 0x67, 0x69, 0x70, 0x77, 0x75, 0x77, 0x7b, 0x75, 0x6b, 0x6b, 0x73,\n    0x78, 0x74, 0x6d, 0x6b, 0x70, 0x70, 0x64, 0x59, 0x49, 0x49, 0x48, 0x47, 0x46, 0x45, 0x46, 0x47,\n    0x40, 0x3f, 0x3e, 0x3d, 0x3a, 0x37, 0x38, 0x3b, 0x40, 0x42, 0x43, 0x44, 0x44, 0x45, 0x46, 0x47,\n    0x48, 0x48, 0x49, 0x49, 0x48, 0x48, 0x47, 0x47, 0x46, 0x46, 0x46, 0x47, 0x47, 0x48, 0x48, 0x48,\n    0x4f, 0x45, 0x42, 0x50, 0x68, 0x85, 0xa5, 0xbe, 0xc1, 0xb9, 0xb2, 0xb0, 0xaf, 0xae, 0xae, 0xaf,\n    0xaf, 0xae, 0xae, 0xae, 0xad, 0xab, 0xa6, 0xa3, 0x9f, 0xa1, 0xa4, 0xa9, 0xac, 0xac, 0xab, 0xaa,\n    0xaa, 0xab, 0xab, 0xaa, 0xa8, 0xa7, 0xa6, 0xa6, 0xa5, 0xa4, 0xa2, 0xa1, 0x9f, 0x9d, 0x9a, 0x97,\n    0x96, 0x99, 0x9d, 0x9c, 0x98, 0x94, 0x94, 0x97, 0x91, 0x83, 0x78, 0x86, 0xa8, 0xc6, 0xd3, 0xd5,\n    0xd0, 0xd1, 0xd0, 0xcc, 0xcb, 0xcc, 0xcb, 0xc8, 0xcb, 0xcb, 0xc9, 0xc5, 0xc3, 0xc0, 0xbb, 0xb6,\n    0xb7, 0xb6, 0xb3, 0xab, 0xa0, 0x97, 0x95, 0x96, 0x99, 0x9a, 0x9b, 0x9c, 0xa0, 0xa6, 0xac, 0xb0,\n    0xb6, 0xb8, 0xbb, 0xbf, 0xc4, 0xc9, 0xcc, 0xcd, 0xcc, 0xcc, 0xc7, 0xc5, 0xc3, 0xb8, 0xab, 0xa9,\n    0xa6, 0xa5, 0xaa, 0xb2, 0xb3, 0xae, 0xaf, 0xb5, 0xb5, 0xba, 0xb5, 0xbd, 0xba, 0xbb, 0xbc, 0x92,\n    0x2c, 0x3c, 0x93, 0x8b, 0x4f, 0xbc, 0xeb, 0xd5, 0x74, 0x92, 0xc3, 0xbe, 0xb8, 0xb1, 0xd2, 0xde,\n    0xe4, 0xe5, 0xe6, 0xe6, 0xe5, 0xe4, 0xe4, 0xe5, 0xe1, 0xd4, 0xea, 0xb9, 0x53, 0x71, 0xc2, 0xce,\n    0xd7, 0xd7, 0xd4, 0xd1, 0xd2, 0xd4, 0xd5, 0xd3, 0xdf, 0xc1, 0x9f, 0xa7, 0xa1, 0xa2, 0xa2, 0xa0,\n    0xa0, 0xa0, 0xa0, 0xa0, 0xa0, 0xa0, 0x9d, 0x9a, 0x69, 0x9d, 0xd7, 0xe3, 0xdb, 0xc6, 0xc1, 0xc4,\n    0xd6, 0xe8, 0xe3, 0xc5, 0xc1, 0xc1, 0xd3, 0xd4, 0x87, 0x89, 0x95, 0x98, 0x95, 0x8f, 0x8f, 0x91,\n    0x92, 0x93, 0xa5, 0xd2, 0xd0, 0xc9, 0xca, 0xcb, 0xc1, 0xbd, 0xa2, 0x7d, 0xb2, 0xcc, 0xaa, 0x96,\n    0x6d, 0x4c, 0x43, 0x4b, 0x45, 0x42, 0x46, 0x41, 0x3b, 0x40, 0x42, 0x3e, 0x39, 0x3b, 0x46, 0x52,\n    0x5c, 0x60, 0x69, 0x72, 0x77, 0x77, 0x73, 0x70, 0x73, 0x5f, 0x5f, 0x7e, 0x97, 0x8c, 0x6b, 0x54,\n    0x60, 0x5f, 0x64, 0x6f, 0x78, 0x78, 0x72, 0x6c, 0x69, 0x6c, 0x70, 0x73, 0x74, 0x71, 0x6b, 0x66,\n    0x6a, 0x6c, 0x70, 0x76, 0x76, 0x71, 0x6b, 0x68, 0x7d, 0x8b, 0x7d, 0x6a, 0x71, 0x77, 0x71, 0x71,\n    0x7c, 0x7b, 0x75, 0x6e, 0x6b, 0x6d, 0x6e, 0x6e, 0x70, 0x6b, 0x69, 0x64, 0x57, 0x49, 0x48, 0x50,\n    0x58, 0x60, 0x5f, 0x54, 0x45, 0x33, 0x2e, 0x36, 0x58, 0x6e, 0x78, 0x68, 0x59, 0x5c, 0x69, 0x6f,\n    0x6d, 0x6e, 0x6e, 0x6b, 0x66, 0x61, 0x5c, 0x5a, 0x4e, 0x46, 0x39, 0x31, 0x37, 0x47, 0x57, 0x60,\n    0x5c, 0x52, 0x44, 0x3f, 0x48, 0x54, 0x58, 0x55, 0x53, 0x4d, 0x47, 0x4b, 0x5e, 0x70, 0x71, 0x67,\n    0x51, 0x41, 0x33, 0x32, 0x3c, 0x47, 0x50, 0x55, 0x56, 0x4e, 0x4d, 0x4d, 0x3f, 0x2a, 0x24, 0x2c,\n    0x31, 0x35, 0x32, 0x2c, 0x28, 0x21, 0x1f, 0x26, 0x36, 0x4f, 0x6e, 0x73, 0x55, 0x36, 0x39, 0x4f,\n    0x5a, 0x52, 0x46, 0x3d, 0x39, 0x37, 0x33, 0x2f, 0x28, 0x34, 0x4b, 0x62, 0x68, 0x59, 0x47, 0x3d,\n    0x42, 0x36, 0x2e, 0x2b, 0x25, 0x1d, 0x21, 0x2c, 0x3e, 0x47, 0x40, 0x2d, 0x30, 0x4c, 0x5d, 0x5c,\n    0x3f, 0x3b, 0x35, 0x33, 0x35, 0x38, 0x36, 0x33, 0x30, 0x3c, 0x44, 0x3f, 0x40, 0x57, 0x7f, 0x9e,\n    0x64, 0x61, 0x5c, 0x59, 0x58, 0x5a, 0x5d, 0x5e, 0x5c, 0x5d, 0x5c, 0x57, 0x52, 0x52, 0x55, 0x58,\n    0x5d, 0x58, 0x55, 0x54, 0x54, 0x55, 0x58, 0x5b, 0x57, 0x4f, 0x4d, 0x5b, 0x6f, 0x77, 0x70, 0x66,\n    0x5e, 0x64, 0x67, 0x62, 0x5a, 0x57, 0x5d, 0x65, 0x6a, 0x66, 0x72, 0x73, 0x6b, 0x62, 0x58, 0x63,\n    0x69, 0x61, 0x56, 0x54, 0x5e, 0x6c, 0x6f, 0x69, 0x6f, 0x7b, 0x7d, 0x80, 0x7e, 0x7a, 0x81, 0x7f,\n    0x7f, 0x7a, 0x76, 0x74, 0x6e, 0x67, 0x67, 0x6c, 0x6d, 0x66, 0x61, 0x61, 0x62, 0x5d, 0x56, 0x52,\n    0x5b, 0x57, 0x53, 0x54, 0x59, 0x60, 0x66, 0x69, 0x68, 0x58, 0x49, 0x46, 0x4b, 0x52, 0x59, 0x5e,\n    0x64, 0x5b, 0x58, 0x5c, 0x5c, 0x55, 0x53, 0x56, 0x54, 0x57, 0x5a, 0x5a, 0x5b, 0x5f, 0x62, 0x63,\n    0x5e, 0x5d, 0x5e, 0x5e, 0x5b, 0x55, 0x50, 0x4e, 0x53, 0x59, 0x61, 0x67, 0x69, 0x6a, 0x6c, 0x6f,\n    0x60, 0x60, 0x5f, 0x5f, 0x61, 0x63, 0x64, 0x65, 0x65, 0x5f, 0x61, 0x68, 0x6c, 0x70, 0x6f, 0x67,\n    0x68, 0x67, 0x69, 0x6d, 0x6a, 0x66, 0x6a, 0x74, 0x78, 0x76, 0x7a, 0x7f, 0x7b, 0x71, 0x6e, 0x73,\n    0x7a, 0x78, 0x77, 0x73, 0x6f, 0x6d, 0x6b, 0x66, 0x56, 0x54, 0x50, 0x4b, 0x47, 0x45, 0x45, 0x46,\n    0x43, 0x41, 0x40, 0x3f, 0x3d, 0x3a, 0x3b, 0x3d, 0x41, 0x43, 0x44, 0x45, 0x45, 0x46, 0x48, 0x49,\n    0x4a, 0x4a, 0x4a, 0x4b, 0x4a, 0x4a, 0x49, 0x49, 0x4b, 0x4a, 0x49, 0x47, 0x47, 0x47, 0x47, 0x48,\n    0x43, 0x45, 0x4a, 0x4b, 0x49, 0x54, 0x79, 0x9e, 0xb2, 0xba, 0xbc, 0xb6, 0xb2, 0xb2, 0xaf, 0xa9,\n    0xad, 0xae, 0xae, 0xae, 0xad, 0xaa, 0xa6, 0xa3, 0xa2, 0xa2, 0xa2, 0xa4, 0xa7, 0xaa, 0xab, 0xab,\n    0xac, 0xac, 0xac, 0xab, 0xa9, 0xa7, 0xa7, 0xa7, 0xa5, 0xa4, 0xa2, 0xa0, 0x9f, 0x9d, 0x9a, 0x98,\n    0x9a, 0x93, 0x8e, 0x90, 0x97, 0x9a, 0x94, 0x8c, 0x89, 0x7b, 0x80, 0xa3, 0xc5, 0xd3, 0xd2, 0xcd,\n    0xc9, 0xc9, 0xc9, 0xc8, 0xc9, 0xcb, 0xca, 0xc7, 0xcb, 0xca, 0xc6, 0xc0, 0xbd, 0xbb, 0xb8, 0xb5,\n    0xba, 0xb6, 0xae, 0xa5, 0x9d, 0x98, 0x95, 0x93, 0x96, 0x98, 0x9b, 0x9e, 0xa2, 0xa7, 0xad, 0xb1,\n    0xb6, 0xb9, 0xbd, 0xc2, 0xc6, 0xc9, 0xcc, 0xcd, 0xd0, 0xd0, 0xc7, 0xbe, 0xb5, 0xa9, 0xa2, 0xa5,\n    0xaa, 0xa2, 0xa0, 0xa8, 0xae, 0xaf, 0xb4, 0xbc, 0xbb, 0xbd, 0xbe, 0xbf, 0xc2, 0xc1, 0xb9, 0xb7,\n    0x6a, 0x35, 0x7f, 0x83, 0x60, 0xd0, 0xe2, 0xe4, 0x9e, 0x67, 0xbd, 0xc2, 0xb4, 0xb9, 0xd7, 0xe2,\n    0xe4, 0xe5, 0xe6, 0xe6, 0xe5, 0xe5, 0xe5, 0xe6, 0xa1, 0x92, 0xe0, 0xaf, 0x55, 0x86, 0xc3, 0xcb,\n    0xd7, 0xd7, 0xd5, 0xd2, 0xd2, 0xd5, 0xd6, 0xd5, 0xde, 0xc0, 0x9d, 0xa5, 0xa0, 0xa2, 0xa3, 0xa2,\n    0xa3, 0xa1, 0x9f, 0x9f, 0x9f, 0x9e, 0x9f, 0x9f, 0x74, 0x97, 0xd4, 0xdb, 0xd6, 0xbd, 0xb4, 0xc3,\n    0xd9, 0xd9, 0xd3, 0xbe, 0xb7, 0xc5, 0xdc, 0xbd, 0x79, 0x91, 0x9b, 0x99, 0x91, 0x91, 0x92, 0x90,\n    0x91, 0x8e, 0x9e, 0xce, 0xd1, 0xcb, 0xca, 0xca, 0xc8, 0xbb, 0xc0, 0x7b, 0x85, 0xb6, 0xa5, 0x95,\n    0x63, 0x46, 0x41, 0x4a, 0x43, 0x40, 0x45, 0x3f, 0x45, 0x43, 0x40, 0x3f, 0x42, 0x4a, 0x53, 0x58,\n    0x56, 0x63, 0x71, 0x75, 0x74, 0x76, 0x7e, 0x86, 0x87, 0x83, 0x84, 0x84, 0x76, 0x64, 0x65, 0x72,\n    0x61, 0x62, 0x68, 0x74, 0x7b, 0x79, 0x71, 0x6c, 0x69, 0x6a, 0x6e, 0x74, 0x7a, 0x79, 0x74, 0x6f,\n    0x70, 0x68, 0x66, 0x70, 0x7c, 0x7c, 0x70, 0x65, 0x6a, 0x77, 0x73, 0x70, 0x7a, 0x74, 0x66, 0x69,\n    0x77, 0x76, 0x72, 0x6e, 0x6d, 0x6e, 0x6d, 0x6b, 0x71, 0x6e, 0x63, 0x4e, 0x39, 0x33, 0x3d, 0x4b,\n    0x5e, 0x63, 0x60, 0x59, 0x4e, 0x3e, 0x35, 0x37, 0x4e, 0x5a, 0x65, 0x66, 0x64, 0x65, 0x66, 0x66,\n    0x6a, 0x6c, 0x6f, 0x6f, 0x6c, 0x68, 0x63, 0x61, 0x5b, 0x57, 0x4d, 0x42, 0x3e, 0x42, 0x49, 0x4d,\n    0x49, 0x45, 0x3f, 0x3b, 0x3d, 0x46, 0x50, 0x55, 0x54, 0x5a, 0x67, 0x6b, 0x5a, 0x40, 0x3a, 0x43,\n    0x47, 0x46, 0x47, 0x49, 0x48, 0x45, 0x46, 0x49, 0x50, 0x53, 0x57, 0x54, 0x48, 0x3e, 0x43, 0x50,\n    0x56, 0x4c, 0x3f, 0x45, 0x61, 0x79, 0x7e, 0x7e, 0x60, 0x5b, 0x68, 0x83, 0x8e, 0x7e, 0x69, 0x5f,\n    0x4a, 0x50, 0x4e, 0x46, 0x43, 0x44, 0x3b, 0x2d, 0x34, 0x30, 0x32, 0x38, 0x39, 0x34, 0x31, 0x32,\n    0x29, 0x20, 0x1c, 0x1e, 0x1b, 0x16, 0x1c, 0x29, 0x38, 0x47, 0x5f, 0x74, 0x77, 0x66, 0x4b, 0x37,\n    0x41, 0x37, 0x38, 0x40, 0x3b, 0x2d, 0x2e, 0x3d, 0x4c, 0x4a, 0x43, 0x4a, 0x6d, 0x8f, 0x87, 0x6a,\n    0x6f, 0x6b, 0x61, 0x56, 0x4f, 0x4c, 0x4b, 0x4a, 0x48, 0x4c, 0x51, 0x53, 0x57, 0x5c, 0x60, 0x61,\n    0x5a, 0x5c, 0x5d, 0x5a, 0x55, 0x55, 0x5c, 0x65, 0x50, 0x5b, 0x6c, 0x7a, 0x7a, 0x6d, 0x5d, 0x53,\n    0x62, 0x65, 0x65, 0x5f, 0x57, 0x57, 0x5f, 0x67, 0x71, 0x65, 0x72, 0x76, 0x77, 0x72, 0x5c, 0x60,\n    0x69, 0x6e, 0x71, 0x72, 0x77, 0x80, 0x83, 0x82, 0x71, 0x7f, 0x84, 0x8c, 0x89, 0x81, 0x81, 0x78,\n    0x79, 0x78, 0x79, 0x78, 0x72, 0x6a, 0x64, 0x62, 0x63, 0x64, 0x67, 0x68, 0x61, 0x58, 0x58, 0x5d,\n    0x5c, 0x58, 0x54, 0x55, 0x5a, 0x60, 0x63, 0x64, 0x58, 0x52, 0x4f, 0x50, 0x4c, 0x49, 0x4f, 0x5a,\n    0x6a, 0x61, 0x5a, 0x59, 0x58, 0x54, 0x54, 0x56, 0x4f, 0x52, 0x54, 0x54, 0x56, 0x5b, 0x5e, 0x5e,\n    0x5b, 0x5a, 0x5a, 0x5b, 0x59, 0x54, 0x51, 0x51, 0x58, 0x54, 0x53, 0x59, 0x62, 0x66, 0x62, 0x5c,\n    0x5f, 0x5e, 0x5d, 0x5e, 0x5f, 0x60, 0x60, 0x5f, 0x5d, 0x57, 0x5b, 0x63, 0x67, 0x6a, 0x69, 0x64,\n    0x64, 0x62, 0x62, 0x63, 0x62, 0x63, 0x6b, 0x74, 0x79, 0x75, 0x74, 0x75, 0x72, 0x6d, 0x6d, 0x71,\n    0x73, 0x72, 0x76, 0x74, 0x6b, 0x68, 0x6a, 0x68, 0x65, 0x61, 0x5a, 0x52, 0x4b, 0x45, 0x40, 0x3e,\n    0x44, 0x41, 0x3f, 0x3f, 0x3e, 0x3b, 0x3b, 0x3d, 0x43, 0x44, 0x46, 0x46, 0x47, 0x48, 0x4a, 0x4c,\n    0x4a, 0x4a, 0x4b, 0x4c, 0x4d, 0x4d, 0x4d, 0x4d, 0x4f, 0x4e, 0x4b, 0x49, 0x48, 0x48, 0x48, 0x49,\n    0x45, 0x46, 0x49, 0x4b, 0x46, 0x46, 0x55, 0x68, 0x8f, 0xab, 0xc0, 0xbe, 0xb6, 0xb5, 0xb3, 0xae,\n    0xae, 0xae, 0xae, 0xad, 0xab, 0xa8, 0xa5, 0xa3, 0xa5, 0xa3, 0xa1, 0xa0, 0xa3, 0xa9, 0xac, 0xab,\n    0xaa, 0xab, 0xab, 0xaa, 0xa8, 0xa6, 0xa6, 0xa6, 0xa6, 0xa3, 0x9f, 0x9d, 0x9d, 0x9e, 0x9f, 0x9f,\n    0x9e, 0x98, 0x90, 0x8d, 0x90, 0x93, 0x90, 0x8a, 0x7f, 0x7f, 0x98, 0xbc, 0xcc, 0xcc, 0xca, 0xc8,\n    0xc7, 0xc5, 0xc4, 0xc4, 0xc5, 0xc7, 0xc8, 0xc8, 0xc8, 0xc7, 0xc3, 0xbc, 0xb9, 0xb9, 0xb8, 0xb6,\n    0xb9, 0xb3, 0xa9, 0xa0, 0x9b, 0x9a, 0x97, 0x92, 0x97, 0x99, 0x9c, 0x9e, 0xa0, 0xa3, 0xa7, 0xab,\n    0xb6, 0xba, 0xbf, 0xc3, 0xc6, 0xc7, 0xc8, 0xc9, 0xd0, 0xd0, 0xc7, 0xb9, 0xac, 0x9f, 0x9c, 0xa5,\n    0xa8, 0xa2, 0xa0, 0xa7, 0xae, 0xb0, 0xb3, 0xb5, 0xbc, 0xc1, 0xc5, 0xbd, 0xbf, 0xbe, 0xb8, 0xcb,\n    0x97, 0x2c, 0x47, 0x46, 0x58, 0xd8, 0xe1, 0xed, 0xce, 0x69, 0xa1, 0xc1, 0xba, 0xc8, 0xe0, 0xe8,\n    0xe4, 0xe5, 0xe6, 0xe6, 0xe5, 0xe5, 0xe6, 0xe7, 0x7f, 0x6a, 0xd6, 0x9a, 0x4f, 0x9b, 0xd1, 0xc8,\n    0xd5, 0xd7, 0xd6, 0xd3, 0xd2, 0xd4, 0xd6, 0xd6, 0xdc, 0xbd, 0x9a, 0xa1, 0x9c, 0x9f, 0xa1, 0xa0,\n    0xa4, 0xa0, 0x9e, 0x9e, 0x9d, 0x9d, 0x9f, 0xa2, 0x86, 0x8a, 0xd4, 0xe1, 0xd7, 0xc0, 0xbe, 0xcc,\n    0xcc, 0xef, 0xe0, 0xba, 0xb7, 0xb6, 0xc7, 0xbe, 0x7a, 0x9a, 0x9d, 0x9a, 0x8f, 0x91, 0x91, 0x90,\n    0x92, 0x8c, 0x9b, 0xcd, 0xd1, 0xca, 0xc8, 0xc7, 0xc7, 0xb2, 0xc8, 0x8c, 0x66, 0x8e, 0x98, 0x8e,\n    0x56, 0x45, 0x42, 0x47, 0x42, 0x41, 0x43, 0x40, 0x42, 0x3d, 0x3b, 0x46, 0x5c, 0x6e, 0x71, 0x6c,\n    0x68, 0x70, 0x77, 0x7a, 0x7a, 0x7b, 0x7d, 0x7e, 0x83, 0x90, 0x8b, 0x74, 0x6e, 0x78, 0x72, 0x5e,\n    0x5b, 0x5e, 0x65, 0x6f, 0x75, 0x73, 0x6e, 0x6b, 0x66, 0x6d, 0x76, 0x7b, 0x7c, 0x7b, 0x7b, 0x7c,\n    0x73, 0x6f, 0x70, 0x78, 0x7c, 0x77, 0x6a, 0x61, 0x68, 0x6a, 0x67, 0x6a, 0x6c, 0x5f, 0x54, 0x5b,\n    0x6d, 0x6b, 0x69, 0x69, 0x6d, 0x6f, 0x6b, 0x65, 0x66, 0x67, 0x60, 0x57, 0x5e, 0x6f, 0x74, 0x6d,\n    0x63, 0x65, 0x61, 0x5b, 0x53, 0x44, 0x37, 0x37, 0x45, 0x50, 0x5e, 0x69, 0x69, 0x62, 0x5f, 0x60,\n    0x68, 0x64, 0x5e, 0x59, 0x57, 0x58, 0x5b, 0x5c, 0x6f, 0x71, 0x73, 0x72, 0x6e, 0x64, 0x53, 0x44,\n    0x2f, 0x2d, 0x2d, 0x32, 0x39, 0x3f, 0x3f, 0x3d, 0x43, 0x4c, 0x5d, 0x6d, 0x71, 0x68, 0x5a, 0x52,\n    0x4e, 0x51, 0x59, 0x63, 0x66, 0x60, 0x56, 0x51, 0x4f, 0x4d, 0x45, 0x3f, 0x4a, 0x60, 0x6c, 0x6b,\n    0x64, 0x76, 0x80, 0x7e, 0x7c, 0x7b, 0x7e, 0x85, 0x84, 0x80, 0x79, 0x6f, 0x67, 0x5f, 0x54, 0x4a,\n    0x4a, 0x55, 0x57, 0x4b, 0x43, 0x47, 0x4b, 0x4a, 0x3b, 0x35, 0x2d, 0x28, 0x23, 0x1e, 0x1c, 0x1d,\n    0x16, 0x1f, 0x25, 0x26, 0x29, 0x30, 0x36, 0x37, 0x34, 0x36, 0x3c, 0x3e, 0x32, 0x23, 0x25, 0x32,\n    0x42, 0x4d, 0x4a, 0x32, 0x1f, 0x25, 0x39, 0x47, 0x6a, 0x72, 0x71, 0x6b, 0x72, 0x7d, 0x71, 0x5a,\n    0x64, 0x65, 0x63, 0x5d, 0x5a, 0x5a, 0x59, 0x56, 0x50, 0x53, 0x56, 0x58, 0x5c, 0x60, 0x5e, 0x59,\n    0x5b, 0x5f, 0x60, 0x5a, 0x53, 0x54, 0x5d, 0x65, 0x76, 0x7a, 0x7e, 0x79, 0x6a, 0x5b, 0x58, 0x5c,\n    0x65, 0x63, 0x61, 0x5e, 0x5c, 0x5d, 0x5f, 0x62, 0x5d, 0x53, 0x66, 0x6d, 0x74, 0x73, 0x5a, 0x5b,\n    0x56, 0x67, 0x74, 0x71, 0x6a, 0x6d, 0x79, 0x82, 0x7c, 0x80, 0x78, 0x77, 0x76, 0x76, 0x7e, 0x7b,\n    0x73, 0x76, 0x79, 0x76, 0x72, 0x6d, 0x66, 0x60, 0x5e, 0x61, 0x67, 0x69, 0x63, 0x5d, 0x61, 0x6c,\n    0x61, 0x5c, 0x56, 0x55, 0x5a, 0x5e, 0x5f, 0x5e, 0x53, 0x54, 0x5d, 0x6a, 0x6a, 0x5e, 0x57, 0x5a,\n    0x5b, 0x58, 0x54, 0x53, 0x53, 0x53, 0x51, 0x50, 0x51, 0x54, 0x57, 0x58, 0x5b, 0x5f, 0x5f, 0x5d,\n    0x59, 0x57, 0x57, 0x58, 0x57, 0x54, 0x53, 0x54, 0x5c, 0x5a, 0x5a, 0x5d, 0x62, 0x64, 0x61, 0x5d,\n    0x60, 0x5e, 0x5c, 0x5c, 0x5e, 0x61, 0x62, 0x62, 0x5e, 0x59, 0x5d, 0x64, 0x64, 0x64, 0x66, 0x64,\n    0x62, 0x63, 0x62, 0x5f, 0x5d, 0x61, 0x6c, 0x77, 0x78, 0x75, 0x70, 0x6b, 0x69, 0x69, 0x6c, 0x6e,\n    0x6e, 0x66, 0x68, 0x6c, 0x6a, 0x6f, 0x73, 0x6d, 0x6c, 0x68, 0x63, 0x5d, 0x56, 0x4f, 0x46, 0x40,\n    0x45, 0x42, 0x3f, 0x3f, 0x3e, 0x3c, 0x3c, 0x3d, 0x45, 0x46, 0x47, 0x47, 0x48, 0x49, 0x4c, 0x4e,\n    0x4e, 0x4e, 0x4f, 0x50, 0x51, 0x51, 0x51, 0x51, 0x50, 0x4f, 0x4f, 0x4e, 0x4d, 0x4d, 0x4d, 0x4d,\n    0x53, 0x4b, 0x46, 0x47, 0x49, 0x49, 0x49, 0x49, 0x65, 0x82, 0xa0, 0xad, 0xb1, 0xb4, 0xb6, 0xb4,\n    0xb1, 0xb0, 0xaf, 0xad, 0xaa, 0xa8, 0xa6, 0xa5, 0xa5, 0xa3, 0xa0, 0x9e, 0xa2, 0xa9, 0xab, 0xaa,\n    0xa8, 0xa9, 0xab, 0xaa, 0xa8, 0xa7, 0xa6, 0xa6, 0xa6, 0xa3, 0xa0, 0x9e, 0x9e, 0x9f, 0x9f, 0x9f,\n    0x9d, 0xa0, 0x9e, 0x96, 0x8e, 0x8b, 0x8a, 0x89, 0x79, 0x88, 0xa9, 0xbf, 0xbe, 0xbd, 0xc3, 0xc2,\n    0xc2, 0xc1, 0xc2, 0xc3, 0xc3, 0xc4, 0xc6, 0xc8, 0xc7, 0xc6, 0xc3, 0xbd, 0xb9, 0xb8, 0xb7, 0xb5,\n    0xb3, 0xae, 0xa5, 0x9c, 0x9a, 0x9b, 0x99, 0x95, 0x99, 0x9b, 0x9d, 0x9d, 0x9c, 0x9e, 0xa2, 0xa6,\n    0xb4, 0xb9, 0xc0, 0xc5, 0xc7, 0xc7, 0xc7, 0xc7, 0xca, 0xcc, 0xc4, 0xb8, 0xac, 0x9f, 0x9c, 0xa4,\n    0xa7, 0xa7, 0xa8, 0xab, 0xae, 0xaf, 0xae, 0xac, 0xac, 0xb5, 0xb8, 0xb9, 0xbc, 0xc3, 0xc3, 0xb3,\n    0x72, 0x39, 0x44, 0x32, 0x61, 0xd7, 0xe0, 0xea, 0xe4, 0x9a, 0x7a, 0xbf, 0xce, 0xdb, 0xe7, 0xe8,\n    0xe4, 0xe5, 0xe5, 0xe5, 0xe4, 0xe4, 0xe6, 0xe7, 0xa6, 0x95, 0xcb, 0x6f, 0x5a, 0xb4, 0xd5, 0xc8,\n    0xd2, 0xd6, 0xd8, 0xd5, 0xd2, 0xd2, 0xd5, 0xd6, 0xdb, 0xbc, 0x98, 0x9e, 0x99, 0x9c, 0x9e, 0x9e,\n    0xa0, 0x9d, 0x9c, 0x9d, 0x9d, 0x9b, 0x9d, 0xa1, 0x8b, 0x82, 0xe9, 0xeb, 0xbc, 0xb3, 0xc4, 0xb8,\n    0xca, 0xe3, 0xd6, 0xbc, 0xbf, 0xc6, 0xd3, 0xaf, 0x83, 0x9d, 0x95, 0x98, 0x8f, 0x8e, 0x8f, 0x92,\n    0x91, 0x8c, 0x9d, 0xcf, 0xd2, 0xc9, 0xc8, 0xc9, 0xc0, 0xb1, 0xba, 0xa3, 0x6e, 0x83, 0x99, 0x7c,\n    0x4b, 0x46, 0x44, 0x44, 0x43, 0x42, 0x43, 0x43, 0x3d, 0x40, 0x49, 0x5b, 0x72, 0x82, 0x81, 0x79,\n    0x79, 0x78, 0x77, 0x78, 0x7c, 0x7d, 0x76, 0x6c, 0x78, 0x77, 0x79, 0x7e, 0x7d, 0x78, 0x73, 0x72,\n    0x61, 0x61, 0x66, 0x6f, 0x74, 0x74, 0x72, 0x72, 0x6b, 0x72, 0x7a, 0x7e, 0x7e, 0x7b, 0x7a, 0x7a,\n    0x76, 0x78, 0x7c, 0x7d, 0x78, 0x6e, 0x67, 0x65, 0x64, 0x5f, 0x5e, 0x61, 0x5f, 0x59, 0x5b, 0x64,\n    0x71, 0x6a, 0x61, 0x62, 0x6b, 0x74, 0x73, 0x6c, 0x63, 0x5b, 0x57, 0x5f, 0x6c, 0x6c, 0x5b, 0x49,\n    0x55, 0x5a, 0x59, 0x53, 0x4b, 0x3e, 0x37, 0x3b, 0x43, 0x4e, 0x5c, 0x63, 0x61, 0x5c, 0x5a, 0x5b,\n    0x5c, 0x58, 0x56, 0x58, 0x61, 0x6c, 0x75, 0x7b, 0x83, 0x8b, 0x95, 0x9d, 0x9e, 0x95, 0x81, 0x70,\n    0x66, 0x53, 0x3e, 0x34, 0x34, 0x35, 0x30, 0x2a, 0x26, 0x3d, 0x50, 0x52, 0x56, 0x62, 0x67, 0x64,\n    0x87, 0x7c, 0x72, 0x72, 0x76, 0x76, 0x71, 0x6e, 0x5b, 0x54, 0x51, 0x5e, 0x79, 0x90, 0x97, 0x94,\n    0x9b, 0x96, 0x84, 0x75, 0x76, 0x7d, 0x84, 0x8c, 0x8d, 0x88, 0x79, 0x67, 0x5c, 0x58, 0x53, 0x4c,\n    0x48, 0x36, 0x23, 0x1f, 0x28, 0x2f, 0x2d, 0x27, 0x1f, 0x21, 0x21, 0x22, 0x24, 0x27, 0x26, 0x24,\n    0x1e, 0x21, 0x1f, 0x1a, 0x1e, 0x2c, 0x3d, 0x46, 0x58, 0x48, 0x2f, 0x1b, 0x1a, 0x28, 0x36, 0x3c,\n    0x3e, 0x46, 0x37, 0x1f, 0x2d, 0x5c, 0x78, 0x74, 0x59, 0x51, 0x57, 0x6f, 0x81, 0x76, 0x53, 0x36,\n    0x50, 0x57, 0x5e, 0x62, 0x66, 0x6b, 0x6c, 0x69, 0x61, 0x5e, 0x58, 0x54, 0x58, 0x60, 0x62, 0x60,\n    0x59, 0x5c, 0x5e, 0x5f, 0x64, 0x6f, 0x7b, 0x81, 0x7b, 0x6d, 0x62, 0x62, 0x66, 0x64, 0x5f, 0x5b,\n    0x60, 0x5c, 0x5a, 0x5d, 0x62, 0x66, 0x64, 0x61, 0x57, 0x54, 0x6f, 0x74, 0x76, 0x75, 0x5e, 0x62,\n    0x64, 0x6e, 0x72, 0x6b, 0x66, 0x6d, 0x7a, 0x84, 0x82, 0x86, 0x7f, 0x80, 0x7e, 0x7c, 0x7f, 0x79,\n    0x72, 0x77, 0x77, 0x73, 0x70, 0x71, 0x6e, 0x68, 0x62, 0x5f, 0x60, 0x64, 0x63, 0x60, 0x63, 0x6a,\n    0x63, 0x5a, 0x50, 0x4b, 0x4d, 0x50, 0x51, 0x50, 0x59, 0x51, 0x53, 0x62, 0x68, 0x5d, 0x4e, 0x48,\n    0x45, 0x48, 0x4b, 0x4d, 0x51, 0x53, 0x50, 0x4b, 0x4e, 0x51, 0x55, 0x57, 0x5b, 0x5d, 0x5b, 0x57,\n    0x55, 0x53, 0x52, 0x53, 0x52, 0x50, 0x50, 0x52, 0x55, 0x5d, 0x65, 0x65, 0x5f, 0x5c, 0x60, 0x66,\n    0x68, 0x64, 0x5f, 0x5d, 0x5d, 0x5f, 0x60, 0x61, 0x5c, 0x58, 0x5c, 0x61, 0x5e, 0x5d, 0x60, 0x60,\n    0x5e, 0x61, 0x61, 0x5c, 0x59, 0x5f, 0x6d, 0x78, 0x7a, 0x78, 0x73, 0x6c, 0x69, 0x6c, 0x6d, 0x6c,\n    0x72, 0x68, 0x6a, 0x6e, 0x6c, 0x75, 0x80, 0x7f, 0x6e, 0x6c, 0x6a, 0x68, 0x65, 0x5e, 0x54, 0x4d,\n    0x48, 0x45, 0x43, 0x43, 0x42, 0x40, 0x3f, 0x40, 0x45, 0x46, 0x48, 0x48, 0x49, 0x4a, 0x4d, 0x4f,\n    0x55, 0x55, 0x55, 0x55, 0x55, 0x54, 0x54, 0x53, 0x52, 0x52, 0x51, 0x50, 0x4f, 0x4d, 0x4c, 0x4b,\n    0x4a, 0x4c, 0x4e, 0x4c, 0x47, 0x45, 0x49, 0x4d, 0x46, 0x57, 0x73, 0x8f, 0xa4, 0xb0, 0xb4, 0xb5,\n    0xb4, 0xb4, 0xb2, 0xae, 0xab, 0xa9, 0xa8, 0xa8, 0xa4, 0xa3, 0x9f, 0x9d, 0xa1, 0xa8, 0xaa, 0xa8,\n    0xa9, 0xab, 0xad, 0xad, 0xac, 0xab, 0xaa, 0xaa, 0xa5, 0xa4, 0xa4, 0xa3, 0xa2, 0x9f, 0x9b, 0x98,\n    0x9f, 0xa0, 0x9e, 0x99, 0x96, 0x91, 0x85, 0x7a, 0x78, 0x8d, 0xab, 0xb5, 0xae, 0xb4, 0xbf, 0xba,\n    0xbb, 0xbd, 0xc1, 0xc5, 0xc6, 0xc5, 0xc5, 0xc7, 0xc8, 0xc8, 0xc5, 0xbf, 0xba, 0xb7, 0xb4, 0xb1,\n    0xad, 0xaa, 0xa3, 0x9a, 0x98, 0x9b, 0x9b, 0x99, 0x98, 0x9a, 0x9c, 0x9d, 0x9e, 0xa2, 0xa8, 0xad,\n    0xb4, 0xbb, 0xc3, 0xc9, 0xcc, 0xcc, 0xcc, 0xcc, 0xc6, 0xc9, 0xc4, 0xbb, 0xb1, 0xa4, 0x9f, 0xa6,\n    0xb3, 0xb2, 0xae, 0xa8, 0xa8, 0xad, 0xb1, 0xb2, 0xb2, 0xbb, 0xb3, 0xbb, 0xbd, 0xc6, 0xc0, 0x7b,\n    0x36, 0x50, 0x6a, 0x4c, 0x82, 0xe0, 0xe1, 0xdc, 0xe3, 0xca, 0x5d, 0xc0, 0xe3, 0xe9, 0xea, 0xe2,\n    0xe3, 0xe4, 0xe5, 0xe5, 0xe4, 0xe4, 0xe5, 0xe7, 0xd5, 0xd6, 0xc1, 0x48, 0x76, 0xcb, 0xcc, 0xc5,\n    0xd0, 0xd6, 0xd9, 0xd6, 0xd1, 0xd1, 0xd4, 0xd7, 0xdd, 0xbd, 0x98, 0x9e, 0x98, 0x9b, 0x9d, 0x9d,\n    0x9d, 0x9a, 0x9b, 0x9d, 0x9d, 0x9a, 0x9b, 0x9f, 0x91, 0x7d, 0xe2, 0xb8, 0x5d, 0x78, 0xb8, 0xa1,\n    0x6e, 0x8d, 0xdd, 0xd4, 0x71, 0x80, 0xe0, 0xb2, 0x89, 0x9a, 0x8a, 0x95, 0x90, 0x8d, 0x8d, 0x96,\n    0x8e, 0x8b, 0x9e, 0xd2, 0xd2, 0xc9, 0xc9, 0xcd, 0xb9, 0xb8, 0xaa, 0xb1, 0x86, 0x91, 0xa7, 0x6a,\n    0x44, 0x48, 0x45, 0x41, 0x43, 0x43, 0x42, 0x44, 0x47, 0x56, 0x67, 0x73, 0x78, 0x79, 0x74, 0x6e,\n    0x6b, 0x70, 0x74, 0x73, 0x74, 0x77, 0x78, 0x75, 0x78, 0x71, 0x6d, 0x74, 0x85, 0x8d, 0x85, 0x78,\n    0x69, 0x66, 0x65, 0x6a, 0x6e, 0x6e, 0x6c, 0x6c, 0x77, 0x78, 0x7a, 0x7e, 0x81, 0x7f, 0x77, 0x70,\n    0x7b, 0x76, 0x73, 0x76, 0x79, 0x76, 0x6f, 0x6b, 0x66, 0x62, 0x66, 0x69, 0x62, 0x5e, 0x60, 0x62,\n    0x6f, 0x61, 0x50, 0x4d, 0x5b, 0x6a, 0x6f, 0x6c, 0x63, 0x56, 0x5b, 0x6e, 0x68, 0x49, 0x3b, 0x44,\n    0x40, 0x4a, 0x4d, 0x49, 0x40, 0x36, 0x36, 0x41, 0x47, 0x48, 0x4b, 0x52, 0x5d, 0x63, 0x5d, 0x54,\n    0x53, 0x58, 0x63, 0x71, 0x7e, 0x84, 0x84, 0x82, 0x79, 0x83, 0x8f, 0x97, 0x9c, 0x9d, 0x9a, 0x96,\n    0x8d, 0x81, 0x6f, 0x5c, 0x48, 0x37, 0x2c, 0x27, 0x24, 0x2d, 0x3e, 0x4e, 0x55, 0x56, 0x5b, 0x63,\n    0x5a, 0x61, 0x6b, 0x70, 0x69, 0x58, 0x49, 0x41, 0x38, 0x40, 0x5f, 0x89, 0x98, 0x8f, 0x8e, 0x9b,\n    0x96, 0x9d, 0x9d, 0x99, 0x96, 0x8a, 0x7c, 0x77, 0x75, 0x80, 0x8c, 0x89, 0x75, 0x5f, 0x59, 0x60,\n    0x4e, 0x3b, 0x2f, 0x33, 0x34, 0x2d, 0x28, 0x2c, 0x35, 0x3c, 0x42, 0x45, 0x4b, 0x52, 0x52, 0x4d,\n    0x46, 0x40, 0x3e, 0x42, 0x3f, 0x3c, 0x45, 0x53, 0x53, 0x57, 0x60, 0x6b, 0x6c, 0x5b, 0x3f, 0x29,\n    0x41, 0x49, 0x54, 0x5b, 0x5d, 0x5a, 0x55, 0x51, 0x63, 0x55, 0x5a, 0x69, 0x5d, 0x3c, 0x33, 0x43,\n    0x5b, 0x56, 0x52, 0x54, 0x5b, 0x64, 0x6a, 0x6c, 0x67, 0x65, 0x61, 0x5f, 0x5e, 0x5e, 0x5e, 0x5e,\n    0x60, 0x5e, 0x61, 0x6d, 0x7c, 0x7e, 0x6f, 0x5d, 0x4e, 0x53, 0x5a, 0x60, 0x62, 0x62, 0x60, 0x5e,\n    0x65, 0x5f, 0x5a, 0x5d, 0x6a, 0x76, 0x74, 0x6b, 0x5b, 0x60, 0x63, 0x72, 0x72, 0x78, 0x72, 0x73,\n    0x74, 0x7c, 0x7c, 0x72, 0x6a, 0x6e, 0x77, 0x7b, 0x7c, 0x83, 0x8b, 0x91, 0x93, 0x8a, 0x75, 0x61,\n    0x64, 0x6a, 0x6e, 0x6f, 0x6e, 0x6f, 0x6f, 0x6e, 0x66, 0x5f, 0x60, 0x61, 0x5d, 0x5d, 0x62, 0x64,\n    0x6a, 0x64, 0x59, 0x4d, 0x49, 0x4d, 0x50, 0x4f, 0x56, 0x50, 0x4d, 0x53, 0x5b, 0x5b, 0x52, 0x49,\n    0x4a, 0x4b, 0x51, 0x54, 0x53, 0x55, 0x52, 0x47, 0x4d, 0x52, 0x54, 0x52, 0x56, 0x5e, 0x5d, 0x56,\n    0x52, 0x52, 0x57, 0x5b, 0x59, 0x53, 0x53, 0x57, 0x5a, 0x64, 0x6a, 0x63, 0x54, 0x4d, 0x55, 0x60,\n    0x68, 0x61, 0x58, 0x54, 0x54, 0x56, 0x5b, 0x60, 0x61, 0x65, 0x60, 0x5f, 0x5c, 0x57, 0x5d, 0x5b,\n    0x5e, 0x5a, 0x57, 0x57, 0x58, 0x5a, 0x61, 0x67, 0x6b, 0x68, 0x66, 0x66, 0x64, 0x63, 0x65, 0x69,\n    0x69, 0x66, 0x65, 0x69, 0x71, 0x78, 0x7b, 0x7b, 0x60, 0x61, 0x5f, 0x5b, 0x5b, 0x5f, 0x65, 0x69,\n    0x58, 0x4f, 0x47, 0x43, 0x3f, 0x3a, 0x3c, 0x42, 0x48, 0x48, 0x4a, 0x4e, 0x52, 0x54, 0x53, 0x51,\n    0x58, 0x59, 0x59, 0x5a, 0x5a, 0x5a, 0x59, 0x59, 0x59, 0x58, 0x57, 0x56, 0x54, 0x52, 0x51, 0x51,\n    0x4f, 0x4e, 0x4e, 0x4d, 0x4d, 0x4b, 0x49, 0x47, 0x48, 0x49, 0x4f, 0x5c, 0x71, 0x8a, 0xa2, 0xaf,\n    0xaf, 0xb4, 0xb5, 0xb0, 0xab, 0xaa, 0xa9, 0xa8, 0xa8, 0xa4, 0xa0, 0x9f, 0xa0, 0xa4, 0xaa, 0xb0,\n    0xa7, 0xa6, 0xa7, 0xaa, 0xae, 0xb0, 0xaf, 0xad, 0xa7, 0xa6, 0xa4, 0xa1, 0x9f, 0x9d, 0x9c, 0x9b,\n    0x9d, 0x9b, 0x9d, 0x99, 0x93, 0x95, 0x88, 0x6a, 0x7e, 0x93, 0xa3, 0xa8, 0xaa, 0xaa, 0xae, 0xb8,\n    0xb4, 0xbb, 0xc3, 0xcb, 0xd1, 0xd4, 0xd1, 0xcc, 0xc9, 0xcb, 0xc8, 0xbf, 0xb8, 0xb6, 0xb4, 0xb1,\n    0xa9, 0xa4, 0x9d, 0x9a, 0x9b, 0x9c, 0x9b, 0x9a, 0x97, 0x99, 0x9c, 0x9f, 0xa2, 0xa7, 0xac, 0xb0,\n    0xb5, 0xb8, 0xbd, 0xc1, 0xc5, 0xc8, 0xcc, 0xce, 0xcb, 0xc7, 0xc7, 0xc8, 0xbe, 0xb0, 0xad, 0xb4,\n    0xb8, 0xb8, 0xb8, 0xb4, 0xac, 0xa4, 0xa7, 0xae, 0xb5, 0xa8, 0xb9, 0xba, 0xb2, 0xc1, 0xcb, 0x79,\n    0x2a, 0x75, 0x8e, 0x52, 0xa2, 0xdc, 0xdd, 0xe1, 0xe7, 0xe1, 0x7e, 0x6c, 0xbd, 0xe0, 0xe3, 0xe5,\n    0xe4, 0xe3, 0xe4, 0xe4, 0xf2, 0xe3, 0xe7, 0xde, 0xea, 0xdb, 0x77, 0x49, 0xa1, 0xda, 0xc7, 0xca,\n    0xd6, 0xd7, 0xd6, 0xd3, 0xd3, 0xd5, 0xd6, 0xd5, 0xde, 0xbd, 0x9a, 0xa3, 0x9e, 0x9c, 0x9b, 0x99,\n    0x9a, 0x9c, 0x9d, 0x9d, 0x9c, 0x9c, 0x9e, 0x9f, 0x98, 0x7a, 0xda, 0xa8, 0x48, 0x75, 0xcf, 0xa2,\n    0x71, 0x60, 0xa7, 0xd2, 0x75, 0x73, 0xce, 0xbf, 0x80, 0x96, 0x90, 0x91, 0x95, 0x8f, 0x94, 0x94,\n    0x90, 0x93, 0xa2, 0xce, 0xd1, 0xca, 0xc6, 0xc7, 0xca, 0xa9, 0xac, 0xaf, 0x97, 0x87, 0x96, 0x6b,\n    0x48, 0x47, 0x46, 0x44, 0x41, 0x42, 0x47, 0x4d, 0x5c, 0x76, 0x86, 0x7f, 0x79, 0x7c, 0x77, 0x6b,\n    0x68, 0x6f, 0x71, 0x6d, 0x6e, 0x78, 0x83, 0x88, 0x7d, 0x6b, 0x55, 0x65, 0x76, 0x92, 0x92, 0x93,\n    0x83, 0x6d, 0x60, 0x65, 0x69, 0x63, 0x60, 0x64, 0x6e, 0x72, 0x7a, 0x80, 0x7c, 0x73, 0x70, 0x74,\n    0x70, 0x6b, 0x6b, 0x71, 0x73, 0x70, 0x6d, 0x6e, 0x63, 0x64, 0x60, 0x5a, 0x59, 0x60, 0x68, 0x6c,\n    0x5d, 0x4f, 0x3f, 0x3d, 0x4b, 0x5b, 0x60, 0x5c, 0x59, 0x63, 0x6d, 0x6f, 0x5c, 0x59, 0x5d, 0x44,\n    0x1e, 0x32, 0x47, 0x46, 0x3b, 0x3e, 0x44, 0x41, 0x42, 0x3a, 0x3a, 0x46, 0x54, 0x58, 0x53, 0x4d,\n    0x52, 0x62, 0x6d, 0x76, 0x84, 0x89, 0x7f, 0x75, 0x75, 0x8a, 0x9b, 0x9c, 0x9c, 0xa0, 0x9a, 0x8e,\n    0x79, 0x73, 0x6e, 0x5c, 0x50, 0x4a, 0x3b, 0x36, 0x2b, 0x29, 0x2d, 0x3a, 0x4a, 0x52, 0x4f, 0x4a,\n    0x52, 0x4c, 0x4a, 0x4a, 0x45, 0x40, 0x4b, 0x5c, 0x6e, 0x75, 0x80, 0x87, 0x86, 0x85, 0x8c, 0x95,\n    0x99, 0x95, 0x98, 0x9c, 0x8d, 0x73, 0x6a, 0x70, 0x6e, 0x69, 0x6e, 0x7c, 0x83, 0x79, 0x68, 0x5d,\n    0x76, 0x8a, 0xa4, 0xb4, 0xb4, 0xae, 0xaa, 0xa9, 0xad, 0xaf, 0xb2, 0xb4, 0xb2, 0xac, 0xa7, 0xa4,\n    0x8c, 0x7b, 0x67, 0x5c, 0x58, 0x57, 0x55, 0x54, 0x58, 0x5d, 0x5e, 0x5b, 0x5d, 0x60, 0x5a, 0x4f,\n    0x74, 0x7f, 0x7d, 0x6e, 0x68, 0x6b, 0x62, 0x50, 0x46, 0x4d, 0x4d, 0x42, 0x36, 0x2f, 0x28, 0x20,\n    0x57, 0x58, 0x5b, 0x60, 0x65, 0x68, 0x68, 0x67, 0x69, 0x6e, 0x6f, 0x69, 0x5e, 0x58, 0x5a, 0x5f,\n    0x66, 0x6d, 0x73, 0x74, 0x6f, 0x66, 0x59, 0x4f, 0x4c, 0x4f, 0x53, 0x56, 0x58, 0x58, 0x56, 0x55,\n    0x59, 0x5c, 0x60, 0x65, 0x69, 0x69, 0x5f, 0x54, 0x4e, 0x55, 0x60, 0x78, 0x77, 0x74, 0x68, 0x6b,\n    0x69, 0x6f, 0x76, 0x76, 0x71, 0x6e, 0x73, 0x7a, 0x6e, 0x6a, 0x6b, 0x71, 0x75, 0x6f, 0x61, 0x56,\n    0x61, 0x66, 0x6b, 0x6e, 0x6f, 0x6f, 0x6c, 0x69, 0x65, 0x5c, 0x5c, 0x61, 0x60, 0x62, 0x6b, 0x71,\n    0x70, 0x67, 0x5f, 0x5b, 0x57, 0x52, 0x51, 0x52, 0x53, 0x4e, 0x47, 0x46, 0x4b, 0x51, 0x52, 0x50,\n    0x45, 0x44, 0x4a, 0x4f, 0x53, 0x57, 0x54, 0x49, 0x45, 0x4c, 0x52, 0x57, 0x5b, 0x5d, 0x56, 0x4d,\n    0x4b, 0x4f, 0x58, 0x5f, 0x5e, 0x58, 0x58, 0x5c, 0x6c, 0x62, 0x55, 0x4d, 0x49, 0x4a, 0x4e, 0x51,\n    0x53, 0x58, 0x5f, 0x5f, 0x56, 0x50, 0x59, 0x67, 0x6c, 0x6c, 0x63, 0x65, 0x67, 0x65, 0x66, 0x5e,\n    0x5a, 0x59, 0x59, 0x5a, 0x5a, 0x5a, 0x5f, 0x65, 0x6f, 0x6e, 0x6c, 0x67, 0x63, 0x62, 0x67, 0x6f,\n    0x69, 0x67, 0x66, 0x69, 0x6e, 0x70, 0x6f, 0x6d, 0x62, 0x61, 0x5d, 0x58, 0x55, 0x56, 0x5a, 0x5c,\n    0x69, 0x63, 0x5a, 0x52, 0x4a, 0x44, 0x41, 0x42, 0x4c, 0x4c, 0x4e, 0x52, 0x56, 0x59, 0x5a, 0x59,\n    0x5c, 0x5c, 0x5d, 0x5e, 0x5e, 0x5e, 0x5d, 0x5c, 0x5c, 0x5b, 0x5a, 0x58, 0x56, 0x55, 0x54, 0x53,\n    0x51, 0x50, 0x4f, 0x4f, 0x4f, 0x4e, 0x4c, 0x4b, 0x4a, 0x4a, 0x4a, 0x4c, 0x51, 0x5c, 0x6a, 0x73,\n    0x8f, 0x9a, 0xa5, 0xa9, 0xaa, 0xad, 0xae, 0xad, 0xae, 0xae, 0xac, 0xa8, 0xa4, 0xa2, 0xa1, 0xa1,\n    0xa0, 0xa1, 0xa2, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa6, 0xa5, 0xa3, 0xa1, 0xa0, 0x9f, 0x9e, 0x9e,\n    0x9c, 0x99, 0x9b, 0x99, 0x92, 0x90, 0x82, 0x69, 0x7e, 0x92, 0xa0, 0xa3, 0xa3, 0xa2, 0xa7, 0xb2,\n    0xb9, 0xba, 0xbc, 0xc0, 0xc7, 0xce, 0xce, 0xca, 0xc7, 0xc8, 0xc5, 0xbe, 0xb8, 0xb5, 0xb2, 0xaf,\n    0xa2, 0x9e, 0x9a, 0x99, 0x9b, 0x9e, 0x9e, 0x9e, 0x9b, 0x9c, 0x9d, 0x9f, 0xa1, 0xa5, 0xaa, 0xad,\n    0xb7, 0xbb, 0xc0, 0xc6, 0xcb, 0xcf, 0xd1, 0xd3, 0xcf, 0xcc, 0xcd, 0xce, 0xc5, 0xb8, 0xb6, 0xbd,\n    0xbe, 0xbc, 0xbb, 0xb9, 0xb2, 0xac, 0xac, 0xb0, 0xad, 0xb0, 0xae, 0xb0, 0xc1, 0xba, 0xc3, 0xb9,\n    0x48, 0x46, 0x53, 0x46, 0xbb, 0xf1, 0xe6, 0xdd, 0xde, 0xe7, 0x9f, 0x45, 0x67, 0xf1, 0xee, 0xdd,\n    0xe7, 0xe5, 0xf1, 0xe3, 0xc7, 0xde, 0xe8, 0xe6, 0xe3, 0xa9, 0x52, 0x6f, 0xc1, 0xd5, 0xd0, 0xc3,\n    0xd6, 0xd7, 0xd6, 0xd3, 0xd3, 0xd6, 0xd7, 0xd6, 0xe0, 0xbe, 0x9a, 0xa2, 0x9d, 0x9b, 0x9a, 0x99,\n    0x9a, 0x9c, 0x9d, 0x9d, 0x9c, 0x9c, 0x9d, 0x9e, 0x99, 0x7b, 0xd2, 0xaf, 0x58, 0x78, 0xd5, 0xa8,\n    0x7e, 0x77, 0x9f, 0xcc, 0x86, 0x7a, 0xb5, 0xbe, 0x7e, 0x95, 0x93, 0x94, 0x97, 0x91, 0x95, 0x93,\n    0x92, 0x93, 0x9f, 0xca, 0xcf, 0xca, 0xc7, 0xc8, 0xbf, 0xad, 0xab, 0xab, 0x9a, 0x74, 0x6f, 0x59,\n    0x40, 0x44, 0x47, 0x47, 0x44, 0x47, 0x50, 0x59, 0x6d, 0x77, 0x7e, 0x7e, 0x7d, 0x7b, 0x71, 0x65,\n    0x61, 0x68, 0x6e, 0x6f, 0x73, 0x7b, 0x82, 0x84, 0x7d, 0x71, 0x61, 0x6c, 0x73, 0x85, 0x84, 0x86,\n    0x86, 0x75, 0x62, 0x5a, 0x5c, 0x63, 0x69, 0x6d, 0x6d, 0x75, 0x7a, 0x7a, 0x7a, 0x7a, 0x75, 0x6e,\n    0x72, 0x6b, 0x66, 0x67, 0x6a, 0x6a, 0x69, 0x68, 0x63, 0x66, 0x69, 0x6f, 0x77, 0x7c, 0x77, 0x6e,\n    0x5c, 0x40, 0x29, 0x2e, 0x43, 0x53, 0x5c, 0x61, 0x65, 0x63, 0x66, 0x6d, 0x67, 0x63, 0x57, 0x31,\n    0x23, 0x36, 0x51, 0x5c, 0x58, 0x57, 0x54, 0x4c, 0x37, 0x33, 0x2d, 0x2e, 0x38, 0x42, 0x43, 0x3f,\n    0x3e, 0x50, 0x5f, 0x6a, 0x77, 0x7c, 0x79, 0x78, 0x6c, 0x73, 0x7f, 0x85, 0x85, 0x8a, 0x8f, 0x8b,\n    0x8c, 0x72, 0x5a, 0x45, 0x44, 0x4c, 0x46, 0x45, 0x3a, 0x35, 0x33, 0x38, 0x3e, 0x40, 0x40, 0x41,\n    0x3c, 0x48, 0x51, 0x4e, 0x4b, 0x50, 0x5c, 0x64, 0x67, 0x67, 0x68, 0x67, 0x64, 0x66, 0x6f, 0x7a,\n    0x79, 0x70, 0x68, 0x6a, 0x6f, 0x70, 0x6f, 0x6f, 0x6d, 0x66, 0x64, 0x6a, 0x74, 0x81, 0x93, 0xa3,\n    0x8e, 0x99, 0xa5, 0xa8, 0xa1, 0x98, 0x92, 0x90, 0x9a, 0x9e, 0xa5, 0xad, 0xb4, 0xb8, 0xbc, 0xbe,\n    0xb1, 0xac, 0x9d, 0x87, 0x72, 0x62, 0x50, 0x43, 0x3a, 0x3a, 0x3d, 0x43, 0x4a, 0x53, 0x5e, 0x66,\n    0x5f, 0x5c, 0x57, 0x50, 0x48, 0x41, 0x3e, 0x3f, 0x42, 0x3d, 0x36, 0x30, 0x28, 0x20, 0x19, 0x15,\n    0x5c, 0x60, 0x65, 0x69, 0x6b, 0x6c, 0x6c, 0x6c, 0x6a, 0x6b, 0x6d, 0x6f, 0x70, 0x6f, 0x6d, 0x6c,\n    0x74, 0x78, 0x77, 0x6c, 0x5d, 0x54, 0x50, 0x4f, 0x43, 0x46, 0x4b, 0x4e, 0x51, 0x52, 0x54, 0x56,\n    0x5b, 0x5f, 0x63, 0x62, 0x5f, 0x5b, 0x57, 0x52, 0x58, 0x5c, 0x5e, 0x71, 0x73, 0x76, 0x68, 0x63,\n    0x5a, 0x5f, 0x6c, 0x78, 0x78, 0x72, 0x73, 0x7b, 0x72, 0x6a, 0x6a, 0x76, 0x7c, 0x73, 0x64, 0x5b,\n    0x57, 0x5d, 0x64, 0x68, 0x6c, 0x6e, 0x6a, 0x65, 0x6a, 0x5c, 0x5a, 0x62, 0x63, 0x65, 0x6d, 0x73,\n    0x70, 0x66, 0x61, 0x65, 0x62, 0x58, 0x53, 0x56, 0x51, 0x51, 0x4e, 0x48, 0x48, 0x4d, 0x4e, 0x4c,\n    0x4b, 0x47, 0x4a, 0x50, 0x55, 0x5c, 0x5b, 0x51, 0x4f, 0x50, 0x53, 0x57, 0x5a, 0x59, 0x54, 0x50,\n    0x4c, 0x4b, 0x4f, 0x59, 0x5d, 0x5c, 0x5d, 0x60, 0x56, 0x4a, 0x41, 0x46, 0x4f, 0x51, 0x4b, 0x44,\n    0x53, 0x51, 0x4f, 0x4e, 0x4d, 0x52, 0x5e, 0x6b, 0x62, 0x62, 0x5b, 0x63, 0x6d, 0x6e, 0x6d, 0x5f,\n    0x4b, 0x54, 0x62, 0x6c, 0x6b, 0x63, 0x5b, 0x59, 0x61, 0x64, 0x68, 0x6a, 0x6d, 0x6f, 0x70, 0x71,\n    0x63, 0x64, 0x67, 0x6b, 0x6f, 0x70, 0x6d, 0x6b, 0x68, 0x65, 0x60, 0x5b, 0x56, 0x55, 0x57, 0x59,\n    0x5d, 0x63, 0x68, 0x69, 0x65, 0x5f, 0x55, 0x4d, 0x4e, 0x4e, 0x50, 0x54, 0x59, 0x5d, 0x5f, 0x5f,\n    0x61, 0x62, 0x63, 0x63, 0x63, 0x63, 0x62, 0x61, 0x60, 0x5f, 0x5e, 0x5c, 0x5a, 0x58, 0x57, 0x56,\n    0x54, 0x53, 0x51, 0x51, 0x51, 0x51, 0x51, 0x50, 0x50, 0x50, 0x4f, 0x4b, 0x47, 0x48, 0x4e, 0x53,\n    0x67, 0x78, 0x8d, 0x9c, 0xa3, 0xa8, 0xab, 0xac, 0xa7, 0xac, 0xad, 0xa7, 0xa3, 0xa3, 0xa4, 0xa3,\n    0xa1, 0xa2, 0xa2, 0xa0, 0x9d, 0x9d, 0x9f, 0xa2, 0xa3, 0xa3, 0xa2, 0xa1, 0xa1, 0xa0, 0xa0, 0xa0,\n    0x9c, 0x96, 0x98, 0x9a, 0x93, 0x89, 0x7b, 0x6b, 0x81, 0x93, 0x9f, 0xa0, 0xa0, 0xa0, 0xa6, 0xb0,\n    0xbe, 0xbd, 0xbc, 0xbf, 0xc7, 0xce, 0xce, 0xca, 0xc4, 0xc4, 0xc1, 0xbb, 0xb7, 0xb4, 0xaf, 0xaa,\n    0x9d, 0x9b, 0x98, 0x99, 0x9c, 0x9f, 0xa0, 0xa0, 0x9e, 0x9f, 0x9f, 0xa0, 0xa3, 0xa7, 0xac, 0xb0,\n    0xb5, 0xb8, 0xbd, 0xc4, 0xcb, 0xd0, 0xd3, 0xd4, 0xd2, 0xd0, 0xd2, 0xd4, 0xcd, 0xc2, 0xc1, 0xc8,\n    0xc5, 0xc1, 0xbf, 0xbd, 0xba, 0xb5, 0xb1, 0xb0, 0xb0, 0xb7, 0xb9, 0xb4, 0xba, 0xbb, 0xc0, 0xab,\n    0x59, 0x35, 0x3c, 0x4e, 0xcb, 0xe2, 0xde, 0xe4, 0xe1, 0xe4, 0xda, 0x54, 0x5d, 0xd6, 0xde, 0xe9,\n    0xdf, 0xda, 0xe8, 0xc3, 0x79, 0xc6, 0xe6, 0xe2, 0xca, 0x6a, 0x4b, 0x9b, 0xd2, 0xcc, 0xca, 0xc4,\n    0xd5, 0xd7, 0xd6, 0xd4, 0xd4, 0xd6, 0xd7, 0xd6, 0xdf, 0xbd, 0x98, 0xa0, 0x9b, 0x9b, 0x9c, 0x9c,\n    0x9b, 0x9c, 0x9d, 0x9d, 0x9c, 0x9c, 0x9c, 0x9d, 0x99, 0x78, 0xba, 0xae, 0x65, 0x76, 0xd9, 0xb2,\n    0x7e, 0x85, 0x89, 0xbb, 0x8f, 0x7e, 0x91, 0xb9, 0x7d, 0x94, 0x97, 0x96, 0x97, 0x94, 0x96, 0x92,\n    0x95, 0x93, 0x9b, 0xc6, 0xcd, 0xca, 0xc8, 0xc9, 0xb8, 0xb6, 0xae, 0xac, 0xa1, 0x68, 0x4c, 0x4c,\n    0x57, 0x4d, 0x44, 0x45, 0x51, 0x5f, 0x67, 0x6a, 0x74, 0x76, 0x79, 0x7d, 0x7c, 0x75, 0x6b, 0x64,\n    0x5d, 0x63, 0x6b, 0x72, 0x79, 0x7f, 0x81, 0x80, 0x80, 0x79, 0x70, 0x75, 0x75, 0x7c, 0x7a, 0x7d,\n    0x80, 0x82, 0x7d, 0x74, 0x75, 0x7c, 0x7a, 0x70, 0x6f, 0x75, 0x74, 0x6e, 0x77, 0x89, 0x8c, 0x82,\n    0x67, 0x6a, 0x6c, 0x6c, 0x6c, 0x6b, 0x67, 0x63, 0x6c, 0x6a, 0x69, 0x6c, 0x74, 0x79, 0x78, 0x72,\n    0x5d, 0x3a, 0x21, 0x25, 0x32, 0x3b, 0x4a, 0x5c, 0x5a, 0x64, 0x71, 0x79, 0x6c, 0x5c, 0x4e, 0x2e,\n    0x2d, 0x2f, 0x38, 0x3e, 0x39, 0x34, 0x2f, 0x27, 0x31, 0x32, 0x2d, 0x29, 0x2f, 0x39, 0x3c, 0x37,\n    0x41, 0x46, 0x4c, 0x59, 0x69, 0x69, 0x5b, 0x52, 0x43, 0x3b, 0x4b, 0x6a, 0x7d, 0x81, 0x70, 0x54,\n    0x32, 0x27, 0x27, 0x28, 0x33, 0x41, 0x44, 0x4b, 0x3d, 0x36, 0x33, 0x35, 0x35, 0x32, 0x35, 0x3c,\n    0x39, 0x4e, 0x56, 0x4b, 0x48, 0x53, 0x53, 0x47, 0x45, 0x4a, 0x53, 0x58, 0x57, 0x53, 0x51, 0x53,\n    0x5b, 0x62, 0x66, 0x66, 0x69, 0x6c, 0x67, 0x5d, 0x57, 0x5b, 0x6f, 0x91, 0xaa, 0xac, 0x9d, 0x8f,\n    0x95, 0x8e, 0x82, 0x78, 0x76, 0x80, 0x91, 0x9f, 0x9b, 0x9f, 0xa5, 0xab, 0xae, 0xaf, 0xae, 0xac,\n    0xbd, 0xbd, 0xb2, 0xa1, 0x94, 0x89, 0x74, 0x5f, 0x4e, 0x3c, 0x2f, 0x2f, 0x30, 0x30, 0x3b, 0x4b,\n    0x4d, 0x4b, 0x4b, 0x4b, 0x43, 0x3a, 0x3c, 0x45, 0x44, 0x39, 0x30, 0x2b, 0x24, 0x1b, 0x1a, 0x20,\n    0x54, 0x5b, 0x63, 0x66, 0x65, 0x63, 0x62, 0x63, 0x67, 0x66, 0x68, 0x6f, 0x77, 0x7a, 0x75, 0x6f,\n    0x72, 0x71, 0x6b, 0x63, 0x5b, 0x57, 0x53, 0x50, 0x41, 0x47, 0x4e, 0x51, 0x50, 0x52, 0x57, 0x5c,\n    0x64, 0x66, 0x65, 0x5f, 0x59, 0x55, 0x54, 0x55, 0x51, 0x57, 0x59, 0x6b, 0x7b, 0x8e, 0x7f, 0x6d,\n    0x5d, 0x60, 0x6a, 0x74, 0x78, 0x75, 0x72, 0x72, 0x76, 0x6f, 0x6e, 0x77, 0x81, 0x7d, 0x6e, 0x61,\n    0x5d, 0x63, 0x6a, 0x6d, 0x6e, 0x6f, 0x6d, 0x6a, 0x69, 0x58, 0x56, 0x62, 0x66, 0x65, 0x68, 0x6a,\n    0x6a, 0x61, 0x5d, 0x5f, 0x5d, 0x55, 0x4f, 0x50, 0x4e, 0x51, 0x4e, 0x48, 0x48, 0x4f, 0x51, 0x4f,\n    0x4b, 0x45, 0x44, 0x46, 0x47, 0x4d, 0x50, 0x4b, 0x4e, 0x4c, 0x4f, 0x55, 0x59, 0x56, 0x53, 0x51,\n    0x48, 0x49, 0x52, 0x63, 0x6c, 0x66, 0x59, 0x51, 0x50, 0x4c, 0x4f, 0x5b, 0x64, 0x60, 0x56, 0x4e,\n    0x51, 0x51, 0x51, 0x52, 0x57, 0x5b, 0x58, 0x52, 0x4e, 0x53, 0x50, 0x59, 0x63, 0x66, 0x65, 0x57,\n    0x55, 0x55, 0x58, 0x5d, 0x5f, 0x5f, 0x60, 0x62, 0x6b, 0x6b, 0x6a, 0x6b, 0x6e, 0x70, 0x69, 0x60,\n    0x5e, 0x61, 0x65, 0x6a, 0x6e, 0x6f, 0x6e, 0x6c, 0x6c, 0x68, 0x63, 0x60, 0x5d, 0x5b, 0x5d, 0x60,\n    0x59, 0x64, 0x6d, 0x71, 0x71, 0x70, 0x67, 0x5d, 0x50, 0x51, 0x53, 0x57, 0x5b, 0x5f, 0x62, 0x64,\n    0x66, 0x66, 0x67, 0x68, 0x67, 0x67, 0x66, 0x65, 0x63, 0x62, 0x61, 0x5f, 0x5e, 0x5c, 0x5b, 0x5a,\n    0x58, 0x56, 0x54, 0x53, 0x53, 0x54, 0x53, 0x53, 0x4c, 0x4d, 0x4e, 0x4d, 0x4b, 0x4b, 0x4c, 0x4e,\n    0x45, 0x51, 0x63, 0x72, 0x81, 0x92, 0xa4, 0xb0, 0xa9, 0xaf, 0xb0, 0xa7, 0xa2, 0xa4, 0xa7, 0xa6,\n    0xa6, 0xa5, 0xa4, 0xa1, 0x9e, 0x9d, 0x9f, 0xa1, 0xa1, 0xa0, 0xa0, 0xa0, 0xa0, 0xa1, 0xa1, 0xa1,\n    0x9e, 0x97, 0x97, 0x9b, 0x94, 0x82, 0x74, 0x6e, 0x83, 0x92, 0x9b, 0x9d, 0xa2, 0xa4, 0xa7, 0xae,\n    0xb9, 0xbe, 0xc4, 0xca, 0xd0, 0xd2, 0xce, 0xc9, 0xc2, 0xc0, 0xbc, 0xb8, 0xb4, 0xaf, 0xa9, 0xa4,\n    0x9d, 0x9b, 0x9a, 0x9a, 0x9d, 0x9f, 0xa0, 0xa0, 0x9f, 0x9f, 0xa0, 0xa2, 0xa5, 0xab, 0xb2, 0xb7,\n    0xb1, 0xb2, 0xb5, 0xbb, 0xc3, 0xca, 0xce, 0xd0, 0xd3, 0xd3, 0xd6, 0xd8, 0xd2, 0xc9, 0xc9, 0xce,\n    0xcd, 0xc9, 0xc5, 0xc4, 0xc3, 0xbf, 0xb9, 0xb4, 0xba, 0xbc, 0xc3, 0xbd, 0xb9, 0xbf, 0x9e, 0x54,\n    0x42, 0x4c, 0x42, 0x5e, 0xe2, 0xe8, 0xe6, 0xe6, 0xde, 0xe4, 0xbc, 0x34, 0x48, 0xc5, 0xea, 0xe5,\n    0xef, 0xea, 0xec, 0xae, 0x4e, 0xb1, 0xed, 0xd6, 0x85, 0x45, 0x7c, 0xc1, 0xcf, 0xcc, 0xbb, 0xcb,\n    0xd4, 0xd6, 0xd6, 0xd4, 0xd4, 0xd7, 0xd8, 0xd7, 0xdb, 0xb9, 0x95, 0x9e, 0x9a, 0x9c, 0x9f, 0xa0,\n    0x9d, 0x9d, 0x9e, 0x9d, 0x9d, 0x9c, 0x9d, 0x9d, 0x9d, 0x77, 0x9e, 0xa8, 0x6a, 0x6e, 0xd8, 0xbe,\n    0x78, 0x88, 0x79, 0xaf, 0x8d, 0x84, 0x7f, 0xb7, 0x7f, 0x91, 0x99, 0x96, 0x94, 0x95, 0x96, 0x92,\n    0x95, 0x91, 0x99, 0xc4, 0xcd, 0xcb, 0xc8, 0xc8, 0xba, 0xbb, 0xb0, 0xae, 0xa5, 0x6f, 0x48, 0x4d,\n    0x41, 0x41, 0x47, 0x59, 0x6f, 0x7b, 0x76, 0x6b, 0x6d, 0x75, 0x7e, 0x80, 0x7b, 0x74, 0x6e, 0x6c,\n    0x61, 0x62, 0x68, 0x72, 0x7c, 0x81, 0x81, 0x80, 0x7d, 0x75, 0x6f, 0x72, 0x75, 0x77, 0x75, 0x74,\n    0x74, 0x7c, 0x7b, 0x72, 0x72, 0x7a, 0x7a, 0x71, 0x6f, 0x73, 0x6f, 0x69, 0x71, 0x84, 0x8a, 0x83,\n    0x71, 0x76, 0x75, 0x6c, 0x64, 0x65, 0x66, 0x64, 0x64, 0x69, 0x6f, 0x72, 0x73, 0x75, 0x78, 0x7b,\n    0x65, 0x50, 0x3f, 0x38, 0x30, 0x2c, 0x3f, 0x59, 0x6c, 0x68, 0x65, 0x70, 0x75, 0x71, 0x63, 0x42,\n    0x2d, 0x33, 0x3d, 0x37, 0x24, 0x28, 0x48, 0x65, 0x6d, 0x5e, 0x48, 0x37, 0x2f, 0x30, 0x33, 0x34,\n    0x39, 0x39, 0x3b, 0x48, 0x58, 0x55, 0x46, 0x3f, 0x36, 0x2d, 0x38, 0x4d, 0x59, 0x65, 0x66, 0x56,\n    0x55, 0x4e, 0x52, 0x51, 0x4e, 0x4a, 0x3d, 0x3d, 0x37, 0x30, 0x2e, 0x32, 0x30, 0x2a, 0x2b, 0x33,\n    0x57, 0x5c, 0x50, 0x3c, 0x41, 0x55, 0x55, 0x43, 0x38, 0x3a, 0x3d, 0x3f, 0x3f, 0x3e, 0x40, 0x42,\n    0x3e, 0x43, 0x44, 0x43, 0x49, 0x57, 0x5f, 0x5e, 0x5c, 0x6c, 0x85, 0x97, 0x95, 0x83, 0x6f, 0x65,\n    0x3c, 0x3b, 0x3c, 0x3f, 0x45, 0x4d, 0x56, 0x5b, 0x59, 0x5b, 0x60, 0x69, 0x79, 0x8d, 0x9d, 0xa5,\n    0xa1, 0xab, 0xb4, 0xb6, 0xb2, 0xa8, 0x95, 0x85, 0x6f, 0x53, 0x39, 0x2f, 0x2a, 0x24, 0x24, 0x29,\n    0x30, 0x34, 0x32, 0x27, 0x1b, 0x17, 0x1a, 0x1e, 0x31, 0x2f, 0x2e, 0x2a, 0x23, 0x1e, 0x23, 0x2b,\n    0x5b, 0x65, 0x70, 0x75, 0x72, 0x6d, 0x6a, 0x69, 0x65, 0x6a, 0x6f, 0x6f, 0x6b, 0x67, 0x65, 0x65,\n    0x65, 0x68, 0x6a, 0x69, 0x65, 0x5d, 0x51, 0x46, 0x4a, 0x52, 0x5a, 0x5a, 0x54, 0x52, 0x56, 0x5c,\n    0x61, 0x63, 0x66, 0x66, 0x60, 0x57, 0x4f, 0x4a, 0x4d, 0x58, 0x66, 0x84, 0x8e, 0x92, 0x7a, 0x6a,\n    0x6e, 0x6f, 0x6e, 0x6d, 0x71, 0x74, 0x6f, 0x67, 0x70, 0x6b, 0x62, 0x62, 0x6e, 0x79, 0x73, 0x65,\n    0x60, 0x65, 0x69, 0x67, 0x63, 0x62, 0x62, 0x62, 0x5f, 0x50, 0x51, 0x60, 0x67, 0x65, 0x62, 0x5e,\n    0x5d, 0x59, 0x53, 0x4f, 0x4f, 0x4f, 0x4b, 0x47, 0x49, 0x46, 0x3f, 0x3a, 0x41, 0x4f, 0x59, 0x5b,\n    0x4d, 0x46, 0x43, 0x40, 0x3b, 0x3f, 0x48, 0x4a, 0x49, 0x4c, 0x56, 0x61, 0x66, 0x61, 0x59, 0x54,\n    0x4b, 0x4b, 0x51, 0x59, 0x5b, 0x55, 0x50, 0x4f, 0x6b, 0x61, 0x5b, 0x5d, 0x5f, 0x5b, 0x56, 0x55,\n    0x4f, 0x53, 0x51, 0x49, 0x4a, 0x50, 0x4e, 0x47, 0x4f, 0x55, 0x4f, 0x50, 0x54, 0x58, 0x5e, 0x57,\n    0x58, 0x52, 0x4e, 0x50, 0x54, 0x59, 0x5d, 0x61, 0x70, 0x75, 0x73, 0x6c, 0x69, 0x6b, 0x69, 0x64,\n    0x5b, 0x5d, 0x60, 0x63, 0x65, 0x66, 0x68, 0x69, 0x6b, 0x65, 0x61, 0x5f, 0x5f, 0x5e, 0x61, 0x65,\n    0x71, 0x72, 0x6e, 0x66, 0x63, 0x66, 0x66, 0x62, 0x56, 0x57, 0x5a, 0x5d, 0x60, 0x64, 0x68, 0x6a,\n    0x6a, 0x6a, 0x6b, 0x6b, 0x6b, 0x6a, 0x69, 0x68, 0x66, 0x66, 0x65, 0x63, 0x62, 0x61, 0x60, 0x5f,\n    0x5e, 0x5c, 0x59, 0x58, 0x57, 0x57, 0x57, 0x56, 0x53, 0x52, 0x51, 0x52, 0x53, 0x52, 0x4f, 0x4d,\n    0x4c, 0x4b, 0x49, 0x49, 0x4f, 0x61, 0x78, 0x8a, 0xa2, 0xab, 0xb0, 0xad, 0xa8, 0xa6, 0xa5, 0xa2,\n    0xa7, 0xa4, 0xa1, 0x9f, 0x9f, 0x9f, 0x9e, 0x9d, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0xa0, 0xa1,\n    0xa0, 0x9a, 0x98, 0x9d, 0x95, 0x7e, 0x71, 0x74, 0x83, 0x8d, 0x93, 0x98, 0xa1, 0xa6, 0xa5, 0xa8,\n    0xb2, 0xbd, 0xca, 0xd1, 0xd2, 0xd1, 0xcc, 0xc8, 0xc0, 0xbd, 0xb8, 0xb4, 0xb0, 0xa9, 0xa2, 0x9e,\n    0x9d, 0x9c, 0x9b, 0x9b, 0x9d, 0x9f, 0xa1, 0xa1, 0xa0, 0xa1, 0xa2, 0xa3, 0xa7, 0xad, 0xb4, 0xb8,\n    0xb1, 0xb0, 0xb1, 0xb4, 0xbb, 0xc3, 0xcb, 0xcf, 0xd3, 0xd4, 0xd8, 0xda, 0xd5, 0xce, 0xcd, 0xd2,\n    0xd5, 0xd1, 0xcd, 0xcc, 0xcc, 0xc9, 0xc2, 0xbc, 0xbc, 0xbd, 0xb9, 0xbb, 0xc8, 0xc4, 0x7c, 0x2d,\n    0x70, 0x91, 0x50, 0x74, 0xe9, 0xd5, 0xbf, 0xad, 0xb3, 0xb8, 0x6e, 0x4f, 0x36, 0x9c, 0xe6, 0xe0,\n    0xe4, 0xe2, 0xe1, 0xb4, 0x72, 0xbb, 0xe5, 0xa2, 0x41, 0x5a, 0xb7, 0xd7, 0xcd, 0xce, 0xbd, 0xc6,\n    0xd3, 0xd5, 0xd5, 0xd4, 0xd5, 0xd7, 0xd8, 0xd7, 0xdb, 0xb9, 0x95, 0x9e, 0x9a, 0x9c, 0x9e, 0x9f,\n    0x9e, 0x9e, 0x9e, 0x9e, 0x9e, 0x9e, 0x9e, 0x9d, 0xa2, 0x7b, 0x8b, 0xac, 0x6f, 0x69, 0xc9, 0xbf,\n    0x79, 0x88, 0x79, 0xb1, 0x85, 0x88, 0x7f, 0xb6, 0x85, 0x8d, 0x97, 0x94, 0x90, 0x94, 0x95, 0x93,\n    0x93, 0x8f, 0x97, 0xc4, 0xce, 0xcc, 0xc8, 0xc6, 0xbf, 0xb7, 0xad, 0xac, 0xa1, 0x7e, 0x5b, 0x5b,\n    0x54, 0x5e, 0x6b, 0x75, 0x7b, 0x7d, 0x79, 0x73, 0x69, 0x76, 0x81, 0x83, 0x7f, 0x7b, 0x75, 0x6e,\n    0x64, 0x62, 0x65, 0x70, 0x7a, 0x7f, 0x82, 0x86, 0x7b, 0x6d, 0x64, 0x65, 0x70, 0x73, 0x71, 0x6c,\n    0x65, 0x6c, 0x71, 0x70, 0x6f, 0x70, 0x70, 0x6c, 0x6f, 0x70, 0x6e, 0x69, 0x68, 0x6a, 0x6b, 0x6a,\n    0x6f, 0x70, 0x6c, 0x63, 0x5d, 0x56, 0x49, 0x3c, 0x51, 0x5d, 0x6c, 0x75, 0x74, 0x6d, 0x69, 0x67,\n    0x74, 0x70, 0x69, 0x5c, 0x4b, 0x46, 0x55, 0x68, 0x6b, 0x5d, 0x4a, 0x4d, 0x55, 0x59, 0x5a, 0x4c,\n    0x42, 0x3b, 0x3a, 0x35, 0x2c, 0x34, 0x51, 0x69, 0x57, 0x44, 0x35, 0x35, 0x36, 0x33, 0x35, 0x3d,\n    0x49, 0x4c, 0x47, 0x40, 0x38, 0x2f, 0x2f, 0x39, 0x4a, 0x6d, 0x97, 0x9b, 0x7a, 0x5c, 0x4a, 0x3b,\n    0x39, 0x29, 0x25, 0x26, 0x33, 0x3e, 0x38, 0x38, 0x3c, 0x33, 0x2e, 0x2e, 0x2b, 0x22, 0x1f, 0x22,\n    0x30, 0x38, 0x39, 0x38, 0x44, 0x53, 0x4e, 0x3d, 0x39, 0x38, 0x36, 0x32, 0x2e, 0x2d, 0x2d, 0x2d,\n    0x31, 0x2f, 0x34, 0x45, 0x5c, 0x6f, 0x79, 0x7b, 0x7b, 0x85, 0x8e, 0x8a, 0x75, 0x5d, 0x4f, 0x4b,\n    0x61, 0x60, 0x60, 0x64, 0x6a, 0x6f, 0x72, 0x73, 0x76, 0x77, 0x78, 0x77, 0x7a, 0x7e, 0x7d, 0x7a,\n    0x82, 0x90, 0xa5, 0xb3, 0xae, 0x9e, 0x93, 0x91, 0x8a, 0x78, 0x5e, 0x49, 0x3b, 0x30, 0x27, 0x21,\n    0x23, 0x28, 0x2c, 0x2a, 0x2a, 0x31, 0x3f, 0x4b, 0x50, 0x56, 0x5a, 0x58, 0x54, 0x4f, 0x46, 0x3d,\n    0x58, 0x5d, 0x62, 0x61, 0x5e, 0x5e, 0x62, 0x67, 0x6a, 0x6a, 0x6a, 0x6c, 0x6e, 0x6d, 0x6a, 0x66,\n    0x6d, 0x72, 0x74, 0x6f, 0x65, 0x5c, 0x53, 0x4d, 0x51, 0x57, 0x5d, 0x5d, 0x58, 0x55, 0x59, 0x5e,\n    0x5b, 0x5b, 0x5f, 0x65, 0x66, 0x60, 0x58, 0x53, 0x61, 0x68, 0x7a, 0x98, 0x8f, 0x7a, 0x65, 0x69,\n    0x71, 0x71, 0x6b, 0x66, 0x6a, 0x73, 0x73, 0x6d, 0x66, 0x64, 0x5c, 0x59, 0x66, 0x78, 0x76, 0x67,\n    0x5a, 0x5e, 0x60, 0x5d, 0x5b, 0x5d, 0x5f, 0x5f, 0x5d, 0x54, 0x57, 0x60, 0x60, 0x5c, 0x57, 0x50,\n    0x4c, 0x4c, 0x48, 0x46, 0x4b, 0x53, 0x53, 0x4d, 0x46, 0x40, 0x3b, 0x3d, 0x45, 0x4e, 0x54, 0x56,\n    0x50, 0x48, 0x45, 0x41, 0x3a, 0x3d, 0x49, 0x4f, 0x51, 0x53, 0x57, 0x5c, 0x5f, 0x5f, 0x5a, 0x56,\n    0x5e, 0x61, 0x66, 0x66, 0x5f, 0x59, 0x5e, 0x68, 0x6f, 0x5f, 0x52, 0x53, 0x56, 0x55, 0x54, 0x56,\n    0x5a, 0x51, 0x47, 0x43, 0x4a, 0x57, 0x5d, 0x5e, 0x5e, 0x61, 0x54, 0x4e, 0x50, 0x59, 0x68, 0x67,\n    0x56, 0x53, 0x52, 0x56, 0x5a, 0x5a, 0x59, 0x59, 0x60, 0x76, 0x84, 0x7b, 0x6d, 0x69, 0x6c, 0x6c,\n    0x56, 0x59, 0x5c, 0x5e, 0x60, 0x64, 0x69, 0x6d, 0x6c, 0x64, 0x5e, 0x5e, 0x5e, 0x5f, 0x62, 0x68,\n    0x6f, 0x6d, 0x67, 0x60, 0x5c, 0x5d, 0x5f, 0x5e, 0x57, 0x5a, 0x5d, 0x61, 0x64, 0x67, 0x6b, 0x6d,\n    0x6e, 0x6e, 0x6f, 0x6f, 0x6e, 0x6d, 0x6c, 0x6c, 0x6b, 0x6b, 0x6a, 0x69, 0x68, 0x67, 0x67, 0x66,\n    0x65, 0x63, 0x61, 0x60, 0x60, 0x5f, 0x5d, 0x5c, 0x60, 0x5d, 0x5a, 0x5a, 0x5c, 0x5b, 0x56, 0x52,\n    0x5a, 0x56, 0x51, 0x4b, 0x46, 0x46, 0x4d, 0x55, 0x6f, 0x7c, 0x8e, 0x9d, 0xa6, 0xa8, 0xa9, 0xaa,\n    0xa4, 0xa2, 0xa0, 0xa1, 0xa2, 0xa2, 0x9f, 0x9c, 0x9f, 0x9f, 0x9e, 0x9e, 0x9e, 0x9e, 0x9e, 0x9e,\n    0xa1, 0x9d, 0x99, 0x9b, 0x93, 0x7b, 0x6f, 0x79, 0x83, 0x8b, 0x8f, 0x94, 0xa1, 0xa7, 0xa8, 0xaa,\n    0xb6, 0xc2, 0xcd, 0xd1, 0xcf, 0xcd, 0xcb, 0xca, 0xbd, 0xb9, 0xb4, 0xb1, 0xab, 0xa3, 0x9e, 0x9b,\n    0x9b, 0x9b, 0x9a, 0x9b, 0x9d, 0xa0, 0xa3, 0xa5, 0xa4, 0xa4, 0xa5, 0xa5, 0xa7, 0xab, 0xb0, 0xb4,\n    0xb6, 0xb6, 0xb4, 0xb5, 0xb8, 0xc0, 0xca, 0xd1, 0xd3, 0xd6, 0xdb, 0xdc, 0xd7, 0xd2, 0xd2, 0xd5,\n    0xd6, 0xd5, 0xd2, 0xcf, 0xce, 0xcc, 0xc7, 0xc1, 0xbc, 0xb7, 0xbb, 0xbc, 0xbc, 0xc9, 0x8c, 0x38,\n    0x52, 0x6d, 0x3e, 0xa2, 0xc8, 0x73, 0x4b, 0x50, 0x51, 0x39, 0x3d, 0x95, 0x6f, 0x70, 0xdb, 0xf4,\n    0xea, 0xe3, 0xe7, 0xe7, 0xd9, 0xe1, 0xbf, 0x58, 0x4f, 0x9d, 0xce, 0xd2, 0xc6, 0xc3, 0xca, 0xbf,\n    0xd1, 0xd3, 0xd4, 0xd3, 0xd5, 0xd7, 0xd8, 0xd7, 0xde, 0xbd, 0x98, 0xa1, 0x9b, 0x9a, 0x9a, 0x9a,\n    0x9e, 0x9d, 0x9d, 0x9d, 0x9e, 0x9f, 0x9e, 0x9d, 0xa0, 0x7f, 0x81, 0xb7, 0x72, 0x66, 0xaf, 0xb2,\n    0x7b, 0x82, 0x7c, 0xb5, 0x7a, 0x82, 0x7c, 0xb2, 0x8d, 0x89, 0x93, 0x93, 0x8e, 0x93, 0x92, 0x93,\n    0x90, 0x8d, 0x97, 0xc5, 0xce, 0xcc, 0xc7, 0xc6, 0xc3, 0xb5, 0xac, 0xab, 0x9d, 0x88, 0x6c, 0x72,\n    0x8c, 0x8b, 0x85, 0x7d, 0x7b, 0x7e, 0x7e, 0x7a, 0x69, 0x73, 0x7c, 0x80, 0x82, 0x80, 0x74, 0x67,\n    0x66, 0x62, 0x65, 0x6f, 0x77, 0x7b, 0x83, 0x8c, 0x85, 0x72, 0x65, 0x62, 0x72, 0x74, 0x75, 0x6e,\n    0x6a, 0x70, 0x78, 0x7d, 0x7c, 0x78, 0x75, 0x74, 0x73, 0x6f, 0x6a, 0x66, 0x60, 0x5e, 0x68, 0x74,\n    0x74, 0x6a, 0x5f, 0x5c, 0x5f, 0x5a, 0x46, 0x33, 0x33, 0x37, 0x41, 0x50, 0x5f, 0x6e, 0x7d, 0x87,\n    0x7c, 0x7e, 0x7a, 0x6f, 0x68, 0x6b, 0x75, 0x7d, 0x82, 0x81, 0x74, 0x6d, 0x62, 0x55, 0x58, 0x57,\n    0x4d, 0x40, 0x3a, 0x3b, 0x38, 0x37, 0x39, 0x37, 0x2d, 0x1c, 0x19, 0x29, 0x34, 0x33, 0x39, 0x46,\n    0x3d, 0x42, 0x3d, 0x35, 0x35, 0x3e, 0x52, 0x67, 0x89, 0x81, 0x64, 0x3b, 0x20, 0x1b, 0x20, 0x26,\n    0x27, 0x23, 0x29, 0x2d, 0x3e, 0x52, 0x55, 0x59, 0x46, 0x3e, 0x36, 0x31, 0x2e, 0x29, 0x25, 0x23,\n    0x1f, 0x30, 0x44, 0x50, 0x56, 0x58, 0x53, 0x4c, 0x41, 0x43, 0x43, 0x3e, 0x38, 0x33, 0x2e, 0x2a,\n    0x2a, 0x35, 0x4c, 0x64, 0x6b, 0x62, 0x58, 0x57, 0x5e, 0x60, 0x62, 0x5f, 0x57, 0x4c, 0x43, 0x3e,\n    0x41, 0x4b, 0x5d, 0x71, 0x80, 0x85, 0x82, 0x7e, 0x76, 0x79, 0x7a, 0x76, 0x72, 0x6b, 0x5f, 0x53,\n    0x40, 0x39, 0x3d, 0x52, 0x69, 0x7a, 0x8b, 0x9a, 0x91, 0x8f, 0x80, 0x67, 0x51, 0x45, 0x3b, 0x32,\n    0x3d, 0x3b, 0x43, 0x4c, 0x49, 0x3e, 0x3f, 0x49, 0x51, 0x5a, 0x63, 0x6d, 0x77, 0x76, 0x62, 0x4b,\n    0x5f, 0x61, 0x62, 0x60, 0x5e, 0x60, 0x68, 0x6f, 0x6c, 0x65, 0x61, 0x69, 0x76, 0x7d, 0x7a, 0x74,\n    0x79, 0x78, 0x73, 0x69, 0x62, 0x61, 0x61, 0x61, 0x57, 0x58, 0x59, 0x59, 0x58, 0x59, 0x5a, 0x5c,\n    0x5b, 0x58, 0x5a, 0x60, 0x65, 0x64, 0x62, 0x62, 0x62, 0x69, 0x74, 0x86, 0x79, 0x6f, 0x67, 0x72,\n    0x69, 0x68, 0x65, 0x63, 0x66, 0x6e, 0x76, 0x7a, 0x67, 0x62, 0x59, 0x58, 0x64, 0x72, 0x71, 0x67,\n    0x65, 0x65, 0x65, 0x64, 0x67, 0x6b, 0x6c, 0x69, 0x60, 0x5f, 0x62, 0x60, 0x56, 0x52, 0x51, 0x4d,\n    0x4b, 0x48, 0x48, 0x4e, 0x55, 0x59, 0x58, 0x56, 0x49, 0x44, 0x43, 0x4a, 0x4e, 0x4d, 0x4c, 0x4e,\n    0x4a, 0x41, 0x3e, 0x3c, 0x36, 0x38, 0x43, 0x48, 0x4f, 0x4f, 0x4b, 0x48, 0x4d, 0x57, 0x5c, 0x5c,\n    0x4a, 0x51, 0x5d, 0x67, 0x65, 0x5b, 0x54, 0x54, 0x5f, 0x56, 0x54, 0x5c, 0x60, 0x5c, 0x5b, 0x5e,\n    0x58, 0x4d, 0x50, 0x63, 0x6c, 0x66, 0x63, 0x69, 0x68, 0x67, 0x56, 0x50, 0x57, 0x64, 0x72, 0x6d,\n    0x67, 0x61, 0x5a, 0x55, 0x53, 0x55, 0x5d, 0x65, 0x68, 0x82, 0x90, 0x81, 0x6b, 0x61, 0x60, 0x5e,\n    0x55, 0x59, 0x5c, 0x5e, 0x61, 0x65, 0x6c, 0x72, 0x6e, 0x64, 0x5d, 0x5e, 0x5f, 0x60, 0x65, 0x6d,\n    0x61, 0x61, 0x64, 0x67, 0x67, 0x63, 0x61, 0x61, 0x57, 0x5b, 0x60, 0x65, 0x68, 0x6b, 0x6f, 0x72,\n    0x72, 0x72, 0x73, 0x73, 0x72, 0x71, 0x70, 0x6f, 0x71, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6e,\n    0x6d, 0x6c, 0x6b, 0x6a, 0x6a, 0x69, 0x67, 0x66, 0x63, 0x61, 0x5f, 0x5f, 0x60, 0x60, 0x5f, 0x5d,\n    0x57, 0x58, 0x5c, 0x5f, 0x5d, 0x57, 0x52, 0x52, 0x4a, 0x4f, 0x5f, 0x74, 0x85, 0x90, 0x9b, 0xa6,\n    0xa0, 0xa2, 0xa4, 0xa6, 0xa7, 0xa5, 0xa3, 0xa1, 0xa1, 0xa1, 0xa0, 0x9f, 0x9e, 0x9d, 0x9d, 0x9d,\n    0x9f, 0x9e, 0x99, 0x98, 0x90, 0x78, 0x6e, 0x7b, 0x80, 0x89, 0x8d, 0x93, 0xa0, 0xab, 0xb1, 0xb9,\n    0xc1, 0xc9, 0xd0, 0xd0, 0xcd, 0xca, 0xc8, 0xc7, 0xb8, 0xb5, 0xb1, 0xae, 0xa7, 0x9f, 0x9b, 0x9c,\n    0x9b, 0x9a, 0x9a, 0x9a, 0x9c, 0x9f, 0xa3, 0xa6, 0xa8, 0xa9, 0xa9, 0xa9, 0xaa, 0xac, 0xaf, 0xb2,\n    0xb8, 0xb9, 0xb8, 0xb6, 0xb6, 0xbc, 0xc6, 0xce, 0xd1, 0xd5, 0xdb, 0xdc, 0xd9, 0xd5, 0xd5, 0xd8,\n    0xd6, 0xd8, 0xd7, 0xd2, 0xcf, 0xce, 0xcb, 0xc7, 0xc2, 0xb8, 0xc2, 0xc1, 0xad, 0xb5, 0x80, 0x3b,\n    0x3f, 0x3d, 0x32, 0xa7, 0x6d, 0x4a, 0x68, 0x94, 0x87, 0x40, 0x3f, 0x42, 0x3e, 0x36, 0xaa, 0xe3,\n    0xea, 0xdf, 0xe3, 0xea, 0xd7, 0xa6, 0x63, 0x3c, 0x94, 0xca, 0xcc, 0xc6, 0xc2, 0xbc, 0xca, 0xc2,\n    0xd0, 0xd2, 0xd3, 0xd3, 0xd4, 0xd7, 0xd8, 0xd6, 0xe1, 0xc0, 0x9c, 0xa5, 0x9f, 0x9c, 0x99, 0x97,\n    0x9d, 0x9c, 0x9b, 0x9c, 0x9d, 0x9e, 0x9e, 0x9c, 0x9c, 0x81, 0x7c, 0xc2, 0x74, 0x69, 0x9b, 0xac,\n    0x7c, 0x7a, 0x7b, 0xb7, 0x7b, 0x7d, 0x7a, 0xb8, 0x93, 0x85, 0x91, 0x94, 0x90, 0x92, 0x8f, 0x92,\n    0x8f, 0x8d, 0x97, 0xc4, 0xcd, 0xca, 0xc7, 0xc7, 0xc4, 0xba, 0xae, 0xac, 0x9d, 0x84, 0x69, 0x87,\n    0x88, 0x86, 0x82, 0x7f, 0x82, 0x83, 0x79, 0x6c, 0x69, 0x6e, 0x78, 0x82, 0x83, 0x7a, 0x6f, 0x6a,\n    0x6b, 0x68, 0x6c, 0x76, 0x79, 0x79, 0x80, 0x8c, 0x8d, 0x79, 0x6e, 0x64, 0x72, 0x71, 0x75, 0x71,\n    0x7a, 0x7a, 0x76, 0x71, 0x6f, 0x74, 0x7c, 0x81, 0x78, 0x74, 0x6f, 0x68, 0x61, 0x63, 0x71, 0x82,\n    0x85, 0x74, 0x62, 0x5d, 0x60, 0x63, 0x62, 0x60, 0x5f, 0x57, 0x4d, 0x48, 0x4a, 0x58, 0x6e, 0x82,\n    0x7f, 0x7c, 0x73, 0x6a, 0x68, 0x70, 0x7b, 0x83, 0x7b, 0x7b, 0x70, 0x70, 0x68, 0x4e, 0x3b, 0x2d,\n    0x2d, 0x35, 0x41, 0x3e, 0x2f, 0x2e, 0x3e, 0x4b, 0x61, 0x4c, 0x3c, 0x38, 0x33, 0x2b, 0x30, 0x3c,\n    0x4c, 0x55, 0x53, 0x4b, 0x4d, 0x55, 0x60, 0x6b, 0x76, 0x5e, 0x35, 0x28, 0x3d, 0x43, 0x35, 0x2f,\n    0x14, 0x1d, 0x2c, 0x2a, 0x31, 0x42, 0x47, 0x4c, 0x4f, 0x4e, 0x4b, 0x46, 0x43, 0x42, 0x3e, 0x39,\n    0x36, 0x3c, 0x3e, 0x3c, 0x3a, 0x3f, 0x4b, 0x54, 0x56, 0x57, 0x53, 0x49, 0x42, 0x3f, 0x3f, 0x3e,\n    0x42, 0x50, 0x61, 0x63, 0x4f, 0x36, 0x2f, 0x34, 0x49, 0x4e, 0x4d, 0x42, 0x3a, 0x44, 0x5f, 0x76,\n    0x7e, 0x77, 0x70, 0x6a, 0x68, 0x67, 0x65, 0x63, 0x71, 0x71, 0x6b, 0x65, 0x65, 0x69, 0x68, 0x62,\n    0x47, 0x35, 0x26, 0x27, 0x32, 0x3d, 0x47, 0x4d, 0x69, 0x6d, 0x6c, 0x67, 0x66, 0x6b, 0x6a, 0x64,\n    0x4f, 0x51, 0x5b, 0x66, 0x63, 0x55, 0x4c, 0x4c, 0x48, 0x4e, 0x5a, 0x6c, 0x7d, 0x80, 0x76, 0x69,\n    0x57, 0x60, 0x69, 0x6e, 0x6d, 0x69, 0x67, 0x67, 0x67, 0x66, 0x66, 0x69, 0x6e, 0x73, 0x77, 0x78,\n    0x72, 0x6e, 0x68, 0x65, 0x68, 0x6c, 0x6b, 0x67, 0x63, 0x5d, 0x57, 0x55, 0x57, 0x58, 0x56, 0x54,\n    0x5c, 0x5a, 0x5c, 0x63, 0x65, 0x61, 0x5c, 0x5b, 0x5c, 0x6a, 0x6b, 0x6b, 0x63, 0x6c, 0x64, 0x5c,\n    0x67, 0x64, 0x64, 0x65, 0x64, 0x65, 0x70, 0x7d, 0x7e, 0x6e, 0x5c, 0x57, 0x61, 0x6e, 0x75, 0x75,\n    0x70, 0x6c, 0x67, 0x66, 0x6b, 0x6e, 0x69, 0x62, 0x5e, 0x63, 0x68, 0x5f, 0x50, 0x4f, 0x55, 0x56,\n    0x5a, 0x52, 0x52, 0x5c, 0x60, 0x5a, 0x53, 0x53, 0x50, 0x46, 0x43, 0x4a, 0x4c, 0x4a, 0x4e, 0x57,\n    0x4d, 0x43, 0x40, 0x40, 0x3b, 0x3c, 0x44, 0x47, 0x47, 0x4c, 0x4e, 0x4f, 0x5a, 0x6b, 0x73, 0x72,\n    0x63, 0x56, 0x4f, 0x56, 0x62, 0x67, 0x65, 0x63, 0x54, 0x55, 0x5b, 0x62, 0x5d, 0x52, 0x52, 0x5b,\n    0x4f, 0x47, 0x53, 0x68, 0x5f, 0x45, 0x49, 0x65, 0x6e, 0x69, 0x57, 0x53, 0x5d, 0x68, 0x6e, 0x60,\n    0x64, 0x64, 0x63, 0x5f, 0x58, 0x54, 0x59, 0x60, 0x73, 0x82, 0x82, 0x6f, 0x5f, 0x60, 0x65, 0x64,\n    0x5a, 0x5d, 0x60, 0x60, 0x5f, 0x61, 0x67, 0x6c, 0x6d, 0x62, 0x5b, 0x5c, 0x5f, 0x61, 0x67, 0x70,\n    0x6c, 0x69, 0x6a, 0x6e, 0x6e, 0x68, 0x66, 0x69, 0x5a, 0x5f, 0x65, 0x6a, 0x6e, 0x72, 0x75, 0x78,\n    0x75, 0x75, 0x76, 0x76, 0x75, 0x74, 0x73, 0x72, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74,\n    0x72, 0x72, 0x71, 0x72, 0x72, 0x71, 0x6f, 0x6d, 0x6e, 0x6d, 0x6c, 0x6b, 0x6b, 0x6c, 0x6e, 0x6f,\n    0x6d, 0x69, 0x66, 0x67, 0x64, 0x5f, 0x5c, 0x5d, 0x59, 0x4f, 0x4b, 0x54, 0x5e, 0x68, 0x79, 0x8b,\n    0x9c, 0xa1, 0xa6, 0xa9, 0xa8, 0xa6, 0xa4, 0xa4, 0xa3, 0xa3, 0xa1, 0x9f, 0x9e, 0x9d, 0x9c, 0x9c,\n    0x9d, 0x9e, 0x99, 0x95, 0x8d, 0x76, 0x6d, 0x7b, 0x79, 0x84, 0x8a, 0x90, 0x9d, 0xab, 0xb9, 0xc6,\n    0xc6, 0xcb, 0xcf, 0xce, 0xcb, 0xc7, 0xc3, 0xbe, 0xb5, 0xb2, 0xaf, 0xac, 0xa5, 0x9d, 0x9b, 0x9e,\n    0x9c, 0x9b, 0x9a, 0x99, 0x9a, 0x9d, 0xa1, 0xa5, 0xab, 0xac, 0xac, 0xac, 0xad, 0xaf, 0xb2, 0xb4,\n    0xb6, 0xb8, 0xb8, 0xb5, 0xb3, 0xb7, 0xc0, 0xc8, 0xce, 0xd3, 0xd9, 0xdc, 0xd9, 0xd5, 0xd6, 0xd9,\n    0xdb, 0xde, 0xde, 0xd8, 0xd3, 0xd3, 0xd2, 0xcf, 0xca, 0xc4, 0xb7, 0xbf, 0xbc, 0x90, 0x3b, 0x31,\n    0x3d, 0x3f, 0x52, 0xa7, 0x31, 0x67, 0x9b, 0x8e, 0x6a, 0x56, 0x70, 0x43, 0x42, 0x39, 0x57, 0xb0,\n    0xd0, 0xd1, 0xda, 0xc9, 0x8f, 0x4f, 0x3b, 0x92, 0xc0, 0xc9, 0xc9, 0xc6, 0xca, 0xc5, 0xbf, 0xc8,\n    0xcf, 0xd1, 0xd3, 0xd2, 0xd4, 0xd7, 0xd7, 0xd6, 0xe0, 0xc0, 0x9e, 0xa8, 0xa2, 0x9e, 0x9b, 0x98,\n    0x9b, 0x9a, 0x99, 0x9a, 0x9d, 0x9e, 0x9d, 0x9c, 0x9b, 0x84, 0x7c, 0xc9, 0x76, 0x70, 0x96, 0xb1,\n    0x7f, 0x78, 0x7c, 0xbd, 0x87, 0x83, 0x80, 0xca, 0x97, 0x82, 0x90, 0x96, 0x92, 0x93, 0x8d, 0x91,\n    0x8f, 0x8d, 0x96, 0xc3, 0xcb, 0xc9, 0xc7, 0xc9, 0xc1, 0xbe, 0xae, 0xab, 0x9c, 0x79, 0x5b, 0x91,\n    0x8f, 0x91, 0x8d, 0x80, 0x77, 0x73, 0x6d, 0x66, 0x69, 0x6e, 0x7d, 0x8a, 0x84, 0x73, 0x6f, 0x77,\n    0x71, 0x70, 0x75, 0x7e, 0x7d, 0x77, 0x7d, 0x8a, 0x87, 0x76, 0x6d, 0x60, 0x69, 0x65, 0x6e, 0x6d,\n    0x71, 0x78, 0x7a, 0x74, 0x72, 0x76, 0x77, 0x74, 0x78, 0x7b, 0x7c, 0x74, 0x69, 0x63, 0x66, 0x6c,\n    0x64, 0x65, 0x6a, 0x6d, 0x67, 0x5c, 0x57, 0x59, 0x5d, 0x60, 0x62, 0x5c, 0x51, 0x50, 0x61, 0x75,\n    0x83, 0x7b, 0x6e, 0x61, 0x5a, 0x5f, 0x6f, 0x7e, 0x86, 0x95, 0x97, 0x96, 0x83, 0x63, 0x5a, 0x5a,\n    0x68, 0x5e, 0x54, 0x49, 0x42, 0x4a, 0x59, 0x5f, 0x59, 0x58, 0x5b, 0x5d, 0x52, 0x3f, 0x31, 0x2e,\n    0x4d, 0x69, 0x77, 0x70, 0x65, 0x60, 0x62, 0x68, 0x3c, 0x37, 0x27, 0x30, 0x4e, 0x48, 0x32, 0x34,\n    0x45, 0x40, 0x3a, 0x2c, 0x33, 0x4d, 0x54, 0x56, 0x58, 0x5f, 0x62, 0x5e, 0x5b, 0x5a, 0x53, 0x4a,\n    0x3f, 0x40, 0x3e, 0x3a, 0x38, 0x3d, 0x43, 0x47, 0x50, 0x5b, 0x63, 0x61, 0x57, 0x4a, 0x3d, 0x32,\n    0x3c, 0x45, 0x4b, 0x46, 0x35, 0x25, 0x21, 0x25, 0x35, 0x3b, 0x43, 0x4b, 0x53, 0x5a, 0x60, 0x62,\n    0x62, 0x61, 0x5f, 0x5d, 0x59, 0x50, 0x46, 0x3e, 0x3e, 0x47, 0x4f, 0x52, 0x53, 0x4f, 0x41, 0x32,\n    0x44, 0x58, 0x6c, 0x6e, 0x60, 0x50, 0x47, 0x44, 0x44, 0x43, 0x47, 0x58, 0x72, 0x87, 0x8b, 0x86,\n    0x8a, 0x8e, 0x8b, 0x81, 0x7a, 0x78, 0x70, 0x65, 0x6b, 0x69, 0x6b, 0x6f, 0x6c, 0x62, 0x5e, 0x61,\n    0x62, 0x6b, 0x6f, 0x69, 0x63, 0x65, 0x6d, 0x73, 0x77, 0x78, 0x74, 0x6f, 0x73, 0x7c, 0x7d, 0x78,\n    0x6e, 0x5f, 0x56, 0x5a, 0x63, 0x64, 0x60, 0x5e, 0x5c, 0x58, 0x55, 0x53, 0x50, 0x4e, 0x4f, 0x52,\n    0x53, 0x59, 0x5f, 0x64, 0x6a, 0x6f, 0x69, 0x60, 0x61, 0x66, 0x69, 0x69, 0x6a, 0x6e, 0x6c, 0x68,\n    0x69, 0x6f, 0x6c, 0x5f, 0x58, 0x60, 0x6d, 0x74, 0x76, 0x6a, 0x60, 0x61, 0x64, 0x65, 0x6a, 0x71,\n    0x6b, 0x6a, 0x66, 0x60, 0x5d, 0x60, 0x67, 0x6c, 0x69, 0x63, 0x57, 0x4c, 0x4d, 0x56, 0x5b, 0x59,\n    0x4f, 0x54, 0x5b, 0x60, 0x63, 0x63, 0x60, 0x5c, 0x50, 0x54, 0x63, 0x68, 0x56, 0x45, 0x45, 0x4c,\n    0x53, 0x46, 0x3c, 0x3a, 0x3b, 0x3e, 0x45, 0x4c, 0x48, 0x4a, 0x47, 0x46, 0x51, 0x62, 0x6a, 0x67,\n    0x63, 0x54, 0x47, 0x47, 0x51, 0x5b, 0x62, 0x66, 0x69, 0x68, 0x66, 0x61, 0x57, 0x4d, 0x4a, 0x4b,\n    0x44, 0x50, 0x5a, 0x50, 0x46, 0x44, 0x4b, 0x63, 0x69, 0x65, 0x5d, 0x5e, 0x67, 0x65, 0x59, 0x53,\n    0x50, 0x5f, 0x6c, 0x69, 0x5d, 0x57, 0x57, 0x59, 0x6b, 0x73, 0x6d, 0x67, 0x5d, 0x56, 0x5e, 0x5e,\n    0x5c, 0x58, 0x58, 0x5d, 0x62, 0x64, 0x64, 0x64, 0x69, 0x6b, 0x6d, 0x68, 0x5c, 0x53, 0x55, 0x5d,\n    0x60, 0x66, 0x67, 0x62, 0x61, 0x67, 0x6d, 0x6d, 0x63, 0x63, 0x65, 0x6a, 0x6f, 0x74, 0x78, 0x7a,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x7a, 0x7a, 0x79, 0x7a, 0x7a,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x78, 0x78, 0x77, 0x76, 0x76, 0x75, 0x75,\n    0x75, 0x75, 0x75, 0x75, 0x75, 0x73, 0x70, 0x6e, 0x6a, 0x68, 0x63, 0x5c, 0x56, 0x55, 0x5a, 0x5f,\n    0x77, 0x86, 0x99, 0xa6, 0xa9, 0xa8, 0xa7, 0xa8, 0xa7, 0xa3, 0x9f, 0x9f, 0xa0, 0xa0, 0x9d, 0x9a,\n    0x9d, 0x9b, 0x94, 0x99, 0x84, 0x6b, 0x72, 0x72, 0x7e, 0x81, 0x89, 0x95, 0xa2, 0xb0, 0xbd, 0xc7,\n    0xd0, 0xce, 0xcd, 0xce, 0xce, 0xc8, 0xbe, 0xb6, 0xb1, 0xae, 0xa9, 0xa3, 0x9d, 0x9a, 0x99, 0x9a,\n    0x9f, 0xa0, 0x9f, 0x9d, 0x9c, 0x9e, 0xa3, 0xa7, 0xa9, 0xaa, 0xab, 0xad, 0xb0, 0xb2, 0xb4, 0xb4,\n    0xba, 0xba, 0xb9, 0xb8, 0xb5, 0xb6, 0xbc, 0xc4, 0xce, 0xd1, 0xcf, 0xde, 0xdc, 0xc7, 0xcb, 0xd9,\n    0xd6, 0xd3, 0xd5, 0xdb, 0xda, 0xd3, 0xd0, 0xd3, 0xcd, 0xc4, 0xc1, 0xbd, 0xbc, 0x7f, 0x3e, 0x61,\n    0x6a, 0x36, 0x9a, 0x83, 0x37, 0x85, 0x88, 0x87, 0x5a, 0x6a, 0x93, 0x85, 0x3d, 0x3b, 0x36, 0x46,\n    0x52, 0x5b, 0x57, 0x4d, 0x45, 0x55, 0x90, 0xc7, 0xc9, 0xcb, 0xc7, 0xc6, 0xc7, 0xc1, 0xbd, 0xc0,\n    0xcf, 0xd0, 0xd3, 0xd6, 0xd8, 0xd8, 0xd8, 0xd7, 0xde, 0xc3, 0x9c, 0xa1, 0xa1, 0xa2, 0x9e, 0x9b,\n    0x97, 0x98, 0x9a, 0x9c, 0x9e, 0x9f, 0x9f, 0x9f, 0xa6, 0x86, 0x8f, 0xd4, 0x76, 0x77, 0x8d, 0xc4,\n    0x7f, 0x7f, 0x84, 0xcc, 0x93, 0x7e, 0x86, 0xcd, 0x99, 0x91, 0x8c, 0x94, 0x9a, 0x91, 0x8b, 0x94,\n    0x8c, 0x8b, 0x97, 0xc0, 0xce, 0xd0, 0xc5, 0xc8, 0xc7, 0xb3, 0xac, 0xae, 0x95, 0x6d, 0x67, 0x7c,\n    0x81, 0x8c, 0x89, 0x76, 0x6f, 0x77, 0x79, 0x6f, 0x75, 0x79, 0x82, 0x86, 0x82, 0x81, 0x7f, 0x77,\n    0x73, 0x66, 0x73, 0x81, 0x78, 0x76, 0x7f, 0x7e, 0x7e, 0x72, 0x6b, 0x6b, 0x68, 0x63, 0x6a, 0x77,\n    0x76, 0x7b, 0x72, 0x74, 0x6e, 0x74, 0x75, 0x84, 0x8e, 0x94, 0x80, 0x76, 0x6b, 0x5c, 0x63, 0x64,\n    0x65, 0x6a, 0x71, 0x73, 0x66, 0x55, 0x50, 0x55, 0x50, 0x4d, 0x52, 0x5a, 0x55, 0x4c, 0x59, 0x70,\n    0x82, 0x7e, 0x6c, 0x56, 0x4b, 0x48, 0x4e, 0x59, 0x73, 0x7c, 0x80, 0x7d, 0x7d, 0x81, 0x80, 0x7b,\n    0x74, 0x5e, 0x62, 0x61, 0x62, 0x65, 0x76, 0x6d, 0x67, 0x66, 0x75, 0x7c, 0x6b, 0x5a, 0x4f, 0x43,\n    0x4b, 0x50, 0x55, 0x59, 0x5a, 0x54, 0x43, 0x32, 0x2e, 0x20, 0x25, 0x48, 0x45, 0x3f, 0x35, 0x3e,\n    0x5a, 0x5f, 0x60, 0x61, 0x6b, 0x79, 0x78, 0x6c, 0x71, 0x73, 0x6b, 0x5a, 0x4c, 0x49, 0x48, 0x46,\n    0x46, 0x46, 0x40, 0x37, 0x36, 0x3d, 0x41, 0x3f, 0x3e, 0x40, 0x3b, 0x2f, 0x2a, 0x33, 0x40, 0x47,\n    0x54, 0x5a, 0x4d, 0x30, 0x22, 0x30, 0x42, 0x47, 0x42, 0x45, 0x46, 0x40, 0x39, 0x3a, 0x47, 0x56,\n    0x56, 0x57, 0x54, 0x4e, 0x48, 0x44, 0x40, 0x3c, 0x3f, 0x39, 0x46, 0x52, 0x4d, 0x52, 0x67, 0x75,\n    0x82, 0x75, 0x72, 0x6b, 0x68, 0x71, 0x7c, 0x74, 0x68, 0x5c, 0x63, 0x80, 0x93, 0x90, 0x8e, 0x94,\n    0x91, 0x9d, 0x9c, 0x8e, 0x86, 0x88, 0x80, 0x71, 0x72, 0x7b, 0x87, 0x8e, 0x88, 0x78, 0x67, 0x5e,\n    0x69, 0x6e, 0x6f, 0x6c, 0x6d, 0x74, 0x79, 0x79, 0x7e, 0x81, 0x7f, 0x77, 0x73, 0x74, 0x72, 0x6e,\n    0x62, 0x5d, 0x59, 0x57, 0x56, 0x55, 0x57, 0x59, 0x59, 0x57, 0x56, 0x56, 0x55, 0x53, 0x53, 0x55,\n    0x55, 0x5a, 0x62, 0x6a, 0x70, 0x71, 0x6b, 0x63, 0x5d, 0x61, 0x60, 0x5d, 0x5d, 0x62, 0x65, 0x64,\n    0x6a, 0x72, 0x74, 0x6c, 0x65, 0x69, 0x72, 0x78, 0x73, 0x6a, 0x61, 0x5e, 0x5d, 0x5d, 0x60, 0x63,\n    0x61, 0x5e, 0x5b, 0x5d, 0x64, 0x6d, 0x71, 0x72, 0x60, 0x53, 0x45, 0x44, 0x4f, 0x58, 0x56, 0x4e,\n    0x51, 0x49, 0x43, 0x4a, 0x5c, 0x6c, 0x70, 0x6d, 0x67, 0x57, 0x4e, 0x4a, 0x41, 0x3d, 0x44, 0x4b,\n    0x42, 0x48, 0x4b, 0x49, 0x49, 0x4c, 0x4c, 0x49, 0x4f, 0x4f, 0x4c, 0x4b, 0x52, 0x5d, 0x61, 0x60,\n    0x5f, 0x5e, 0x5c, 0x57, 0x51, 0x4e, 0x54, 0x5d, 0x60, 0x67, 0x6e, 0x6d, 0x60, 0x4f, 0x47, 0x46,\n    0x4b, 0x4d, 0x4f, 0x46, 0x42, 0x43, 0x43, 0x52, 0x62, 0x66, 0x65, 0x65, 0x67, 0x62, 0x5a, 0x5a,\n    0x60, 0x61, 0x62, 0x63, 0x62, 0x61, 0x5f, 0x5e, 0x67, 0x66, 0x5c, 0x5c, 0x5e, 0x60, 0x67, 0x62,\n    0x61, 0x5b, 0x59, 0x5c, 0x62, 0x66, 0x6a, 0x6d, 0x6d, 0x6e, 0x71, 0x72, 0x6c, 0x63, 0x5d, 0x5e,\n    0x5e, 0x61, 0x60, 0x5b, 0x5d, 0x67, 0x6f, 0x71, 0x64, 0x66, 0x69, 0x6d, 0x72, 0x77, 0x7a, 0x7b,\n    0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7d, 0x7f, 0x7f, 0x7f, 0x7f, 0x80, 0x82,\n    0x83, 0x83, 0x83, 0x83, 0x82, 0x82, 0x82, 0x82, 0x84, 0x83, 0x83, 0x83, 0x82, 0x82, 0x82, 0x82,\n    0x81, 0x81, 0x81, 0x82, 0x82, 0x80, 0x7d, 0x7b, 0x78, 0x76, 0x72, 0x6f, 0x6b, 0x67, 0x63, 0x61,\n    0x54, 0x60, 0x76, 0x8e, 0xa1, 0xab, 0xac, 0xa9, 0xa1, 0xa9, 0xae, 0xaa, 0x9f, 0x99, 0x9d, 0xa3,\n    0x99, 0x97, 0x93, 0x97, 0x81, 0x69, 0x6e, 0x70, 0x7f, 0x85, 0x90, 0x9d, 0xaa, 0xb7, 0xc5, 0xce,\n    0xd2, 0xd0, 0xce, 0xcc, 0xc9, 0xc3, 0xbb, 0xb5, 0xb3, 0xaf, 0xa8, 0xa1, 0x9c, 0x99, 0x98, 0x98,\n    0x9f, 0xa0, 0xa1, 0xa1, 0xa1, 0xa3, 0xa8, 0xac, 0xb1, 0xb1, 0xb1, 0xb0, 0xb0, 0xb1, 0xb3, 0xb5,\n    0xb8, 0xb8, 0xb8, 0xb8, 0xb6, 0xb6, 0xbb, 0xc1, 0xc7, 0xd8, 0xdf, 0xcd, 0xca, 0xd6, 0xd5, 0xd4,\n    0xd6, 0xd3, 0xd3, 0xd8, 0xdb, 0xd9, 0xd4, 0xd1, 0xd1, 0xd2, 0xd2, 0xc8, 0xc9, 0x9a, 0x49, 0x3e,\n    0x3e, 0x41, 0xb6, 0x7d, 0x44, 0x82, 0x8d, 0x80, 0x49, 0x7c, 0x8b, 0x84, 0x6a, 0x2a, 0x44, 0x3a,\n    0x42, 0x4b, 0x44, 0x3a, 0x51, 0x90, 0xc5, 0xca, 0xc6, 0xc9, 0xc6, 0xc5, 0xc6, 0xc1, 0xbf, 0xc4,\n    0xd3, 0xd3, 0xd5, 0xd6, 0xd7, 0xd8, 0xd9, 0xd9, 0xde, 0xc2, 0x9b, 0xa0, 0xa1, 0xa3, 0xa0, 0x9e,\n    0x9a, 0x9a, 0x9a, 0x9a, 0x9b, 0x9d, 0x9e, 0x9e, 0x9e, 0x81, 0x84, 0xc2, 0x80, 0x83, 0x9c, 0xd8,\n    0x82, 0x82, 0x7f, 0xb4, 0x95, 0x91, 0x70, 0x60, 0x6c, 0x86, 0x94, 0x90, 0x90, 0x93, 0x92, 0x91,\n    0x93, 0x8d, 0x98, 0xc1, 0xcd, 0xce, 0xc4, 0xc9, 0xc1, 0xb5, 0xb0, 0xac, 0x94, 0x74, 0x6a, 0x74,\n    0x7b, 0x7e, 0x83, 0x86, 0x83, 0x7e, 0x7b, 0x7a, 0x79, 0x77, 0x77, 0x74, 0x70, 0x79, 0x85, 0x87,\n    0x71, 0x5c, 0x68, 0x7e, 0x75, 0x6a, 0x73, 0x7c, 0x78, 0x74, 0x6c, 0x66, 0x67, 0x6d, 0x70, 0x71,\n    0x75, 0x71, 0x64, 0x6c, 0x6e, 0x75, 0x73, 0x7e, 0x78, 0x81, 0x76, 0x74, 0x71, 0x69, 0x72, 0x76,\n    0x66, 0x65, 0x67, 0x6c, 0x6a, 0x5f, 0x51, 0x49, 0x43, 0x32, 0x2d, 0x3b, 0x48, 0x4c, 0x56, 0x64,\n    0x6f, 0x75, 0x6d, 0x5b, 0x50, 0x4e, 0x54, 0x60, 0x58, 0x4a, 0x56, 0x73, 0x75, 0x5e, 0x5b, 0x6e,\n    0x70, 0x52, 0x4c, 0x47, 0x4b, 0x53, 0x6b, 0x6b, 0x6a, 0x6a, 0x78, 0x81, 0x77, 0x6b, 0x5f, 0x51,\n    0x53, 0x52, 0x4f, 0x4a, 0x46, 0x41, 0x38, 0x2f, 0x34, 0x27, 0x2b, 0x43, 0x47, 0x43, 0x39, 0x35,\n    0x48, 0x51, 0x62, 0x71, 0x76, 0x72, 0x6b, 0x68, 0x6b, 0x75, 0x78, 0x6f, 0x5f, 0x50, 0x41, 0x34,\n    0x42, 0x3f, 0x41, 0x43, 0x38, 0x27, 0x25, 0x30, 0x39, 0x33, 0x28, 0x23, 0x2a, 0x3d, 0x53, 0x5f,\n    0x80, 0x61, 0x3b, 0x2b, 0x37, 0x4c, 0x52, 0x4c, 0x53, 0x59, 0x60, 0x66, 0x67, 0x63, 0x5c, 0x57,\n    0x4c, 0x40, 0x2f, 0x22, 0x26, 0x3b, 0x53, 0x63, 0x67, 0x65, 0x6a, 0x72, 0x7f, 0x93, 0x93, 0x7d,\n    0x73, 0x68, 0x69, 0x6e, 0x74, 0x78, 0x6e, 0x56, 0x5d, 0x65, 0x6f, 0x6e, 0x60, 0x54, 0x5b, 0x6a,\n    0x80, 0x70, 0x69, 0x70, 0x75, 0x72, 0x71, 0x75, 0x6b, 0x52, 0x3f, 0x41, 0x4d, 0x52, 0x53, 0x54,\n    0x74, 0x76, 0x73, 0x70, 0x79, 0x86, 0x88, 0x80, 0x7a, 0x80, 0x81, 0x77, 0x6d, 0x68, 0x64, 0x61,\n    0x5f, 0x60, 0x5e, 0x59, 0x56, 0x56, 0x57, 0x56, 0x5b, 0x5a, 0x5c, 0x60, 0x62, 0x61, 0x61, 0x63,\n    0x5e, 0x5e, 0x62, 0x68, 0x6b, 0x67, 0x62, 0x5f, 0x71, 0x73, 0x71, 0x6a, 0x67, 0x6a, 0x6d, 0x6d,\n    0x72, 0x7c, 0x7f, 0x76, 0x6b, 0x68, 0x69, 0x6b, 0x67, 0x64, 0x5d, 0x58, 0x59, 0x5d, 0x5f, 0x5e,\n    0x60, 0x61, 0x63, 0x67, 0x6a, 0x68, 0x64, 0x60, 0x4f, 0x53, 0x59, 0x5c, 0x58, 0x53, 0x54, 0x59,\n    0x58, 0x53, 0x54, 0x60, 0x70, 0x76, 0x6f, 0x64, 0x50, 0x4a, 0x4d, 0x52, 0x4c, 0x45, 0x46, 0x47,\n    0x47, 0x57, 0x5d, 0x53, 0x4e, 0x55, 0x54, 0x4c, 0x52, 0x4f, 0x4d, 0x4d, 0x4f, 0x51, 0x51, 0x50,\n    0x4e, 0x4c, 0x4d, 0x4f, 0x50, 0x53, 0x58, 0x5e, 0x61, 0x60, 0x60, 0x5b, 0x51, 0x48, 0x45, 0x47,\n    0x51, 0x4f, 0x4e, 0x45, 0x45, 0x4b, 0x4f, 0x62, 0x6c, 0x6e, 0x6a, 0x66, 0x67, 0x61, 0x59, 0x5a,\n    0x54, 0x56, 0x5c, 0x61, 0x60, 0x5e, 0x63, 0x6b, 0x66, 0x65, 0x5b, 0x5e, 0x64, 0x65, 0x67, 0x5d,\n    0x65, 0x60, 0x5b, 0x5b, 0x5b, 0x5b, 0x5c, 0x5d, 0x69, 0x63, 0x5f, 0x5f, 0x5e, 0x5a, 0x54, 0x51,\n    0x5a, 0x5e, 0x60, 0x61, 0x65, 0x6d, 0x71, 0x71, 0x66, 0x68, 0x6c, 0x71, 0x76, 0x7a, 0x7d, 0x7e,\n    0x7e, 0x7e, 0x80, 0x81, 0x82, 0x82, 0x83, 0x83, 0x82, 0x83, 0x85, 0x86, 0x86, 0x87, 0x89, 0x8b,\n    0x8a, 0x8a, 0x89, 0x89, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8d, 0x8d, 0x8d, 0x8d, 0x8d, 0x8e, 0x8e,\n    0x8f, 0x8f, 0x8f, 0x90, 0x90, 0x8f, 0x8c, 0x8a, 0x8b, 0x87, 0x83, 0x82, 0x81, 0x7d, 0x75, 0x6e,\n    0x6a, 0x64, 0x5e, 0x60, 0x6e, 0x81, 0x93, 0x9d, 0xaf, 0xac, 0xa9, 0xa9, 0xa9, 0xa6, 0xa0, 0x9a,\n    0x9b, 0x9a, 0x97, 0x95, 0x7b, 0x63, 0x68, 0x6d, 0x7e, 0x89, 0x97, 0xa5, 0xb0, 0xbb, 0xc7, 0xcf,\n    0xd3, 0xd1, 0xce, 0xc8, 0xc1, 0xbb, 0xb5, 0xb3, 0xb1, 0xab, 0xa3, 0x9d, 0x9a, 0x99, 0x99, 0x98,\n    0x9b, 0x9e, 0xa0, 0xa1, 0xa3, 0xa6, 0xab, 0xaf, 0xb0, 0xb2, 0xb6, 0xb7, 0xb7, 0xb7, 0xb8, 0xb9,\n    0xb5, 0xb5, 0xb6, 0xb7, 0xb7, 0xb6, 0xba, 0xbe, 0xce, 0xcc, 0xdc, 0xd6, 0xd1, 0xd2, 0xca, 0xd8,\n    0xd7, 0xca, 0xb5, 0xa2, 0x97, 0x8f, 0x85, 0x7b, 0x6e, 0x5f, 0x5b, 0x58, 0x60, 0x54, 0x37, 0x43,\n    0x38, 0x6e, 0xdf, 0x7c, 0x61, 0x87, 0x8b, 0x64, 0x54, 0x94, 0x8d, 0x80, 0x85, 0x34, 0x86, 0xa9,\n    0x50, 0x2e, 0x42, 0x80, 0xae, 0xcf, 0xd3, 0xb9, 0xc3, 0xc6, 0xc5, 0xc4, 0xc5, 0xc1, 0xc1, 0xc9,\n    0xd5, 0xd5, 0xd5, 0xd6, 0xd7, 0xd8, 0xd9, 0xda, 0xdf, 0xc3, 0x9c, 0xa1, 0xa1, 0xa4, 0xa3, 0xa2,\n    0xa1, 0xa0, 0x9e, 0x9d, 0x9d, 0x9e, 0x9f, 0xa0, 0xa2, 0x8d, 0x68, 0x70, 0x60, 0x80, 0x78, 0x73,\n    0x72, 0x92, 0x60, 0x4b, 0x69, 0x93, 0x6b, 0x41, 0x67, 0x8a, 0x9a, 0x8f, 0x8b, 0x93, 0x94, 0x8e,\n    0x92, 0x87, 0x93, 0xc0, 0xcc, 0xcd, 0xc6, 0xcd, 0xc1, 0xb8, 0xaa, 0x9a, 0x88, 0x79, 0x76, 0x7a,\n    0x7e, 0x7d, 0x83, 0x8b, 0x89, 0x7d, 0x75, 0x75, 0x79, 0x77, 0x77, 0x72, 0x6b, 0x71, 0x7c, 0x7e,\n    0x73, 0x62, 0x6b, 0x7e, 0x76, 0x6c, 0x71, 0x78, 0x72, 0x75, 0x6d, 0x63, 0x6c, 0x81, 0x84, 0x77,\n    0x6e, 0x6a, 0x60, 0x6c, 0x70, 0x76, 0x73, 0x7e, 0x83, 0x81, 0x71, 0x6d, 0x6d, 0x65, 0x60, 0x5a,\n    0x63, 0x6f, 0x76, 0x70, 0x62, 0x58, 0x54, 0x54, 0x3b, 0x2a, 0x25, 0x34, 0x44, 0x4b, 0x51, 0x59,\n    0x69, 0x79, 0x7b, 0x6b, 0x5c, 0x52, 0x4e, 0x50, 0x4c, 0x58, 0x5a, 0x4f, 0x4d, 0x58, 0x5a, 0x52,\n    0x47, 0x39, 0x44, 0x48, 0x4a, 0x48, 0x5e, 0x64, 0x65, 0x69, 0x74, 0x7b, 0x76, 0x72, 0x6d, 0x63,\n    0x5f, 0x55, 0x48, 0x3d, 0x39, 0x37, 0x2f, 0x26, 0x24, 0x20, 0x32, 0x4b, 0x61, 0x64, 0x60, 0x53,\n    0x36, 0x30, 0x39, 0x52, 0x5f, 0x5d, 0x62, 0x70, 0x72, 0x77, 0x76, 0x6b, 0x62, 0x5f, 0x60, 0x5f,\n    0x59, 0x66, 0x72, 0x72, 0x66, 0x52, 0x3d, 0x30, 0x23, 0x20, 0x20, 0x27, 0x33, 0x45, 0x59, 0x67,\n    0x5d, 0x3a, 0x1a, 0x16, 0x26, 0x38, 0x46, 0x4f, 0x44, 0x4f, 0x56, 0x53, 0x51, 0x58, 0x64, 0x6c,\n    0x6c, 0x72, 0x7b, 0x82, 0x89, 0x90, 0x92, 0x91, 0x90, 0x86, 0x82, 0x7d, 0x6f, 0x5c, 0x46, 0x30,\n    0x3b, 0x43, 0x49, 0x45, 0x39, 0x42, 0x53, 0x5a, 0x66, 0x6f, 0x7b, 0x86, 0x91, 0x97, 0x91, 0x87,\n    0x6c, 0x70, 0x75, 0x75, 0x6e, 0x64, 0x5f, 0x5f, 0x53, 0x4d, 0x46, 0x44, 0x49, 0x55, 0x66, 0x73,\n    0x71, 0x73, 0x6e, 0x6b, 0x76, 0x86, 0x87, 0x7c, 0x74, 0x79, 0x7a, 0x73, 0x6a, 0x65, 0x63, 0x61,\n    0x66, 0x66, 0x64, 0x61, 0x64, 0x67, 0x63, 0x5a, 0x5c, 0x5b, 0x5d, 0x62, 0x65, 0x67, 0x68, 0x6a,\n    0x66, 0x61, 0x5f, 0x63, 0x63, 0x60, 0x60, 0x63, 0x6e, 0x72, 0x70, 0x68, 0x63, 0x63, 0x63, 0x60,\n    0x67, 0x70, 0x76, 0x71, 0x6a, 0x67, 0x6a, 0x6c, 0x64, 0x62, 0x5c, 0x56, 0x5b, 0x66, 0x69, 0x64,\n    0x5a, 0x5e, 0x61, 0x60, 0x59, 0x51, 0x4f, 0x51, 0x62, 0x59, 0x55, 0x57, 0x5a, 0x59, 0x5a, 0x5d,\n    0x66, 0x6b, 0x72, 0x78, 0x77, 0x6f, 0x66, 0x61, 0x5a, 0x4f, 0x4e, 0x52, 0x50, 0x4e, 0x4f, 0x4f,\n    0x46, 0x53, 0x58, 0x4e, 0x4b, 0x51, 0x52, 0x4b, 0x4f, 0x4d, 0x4e, 0x52, 0x55, 0x55, 0x56, 0x58,\n    0x54, 0x4e, 0x4d, 0x53, 0x5b, 0x5d, 0x5a, 0x57, 0x4d, 0x4f, 0x53, 0x57, 0x56, 0x4f, 0x47, 0x43,\n    0x4c, 0x4e, 0x51, 0x45, 0x40, 0x45, 0x53, 0x71, 0x7b, 0x74, 0x66, 0x61, 0x66, 0x65, 0x5d, 0x5b,\n    0x4e, 0x51, 0x5b, 0x66, 0x65, 0x5f, 0x62, 0x6c, 0x69, 0x6a, 0x60, 0x5e, 0x5d, 0x5d, 0x62, 0x5e,\n    0x5a, 0x5c, 0x64, 0x70, 0x7a, 0x7e, 0x81, 0x83, 0x73, 0x6c, 0x65, 0x63, 0x63, 0x61, 0x5c, 0x57,\n    0x56, 0x60, 0x6c, 0x74, 0x79, 0x78, 0x71, 0x69, 0x65, 0x68, 0x6e, 0x74, 0x79, 0x7d, 0x80, 0x81,\n    0x82, 0x82, 0x84, 0x85, 0x87, 0x87, 0x88, 0x88, 0x87, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8f, 0x91,\n    0x90, 0x90, 0x8f, 0x8f, 0x90, 0x91, 0x93, 0x94, 0x93, 0x94, 0x94, 0x95, 0x95, 0x96, 0x96, 0x97,\n    0x98, 0x97, 0x97, 0x98, 0x99, 0x98, 0x96, 0x94, 0x98, 0x93, 0x8d, 0x8c, 0x8e, 0x8d, 0x88, 0x83,\n    0x83, 0x7e, 0x74, 0x68, 0x5f, 0x5f, 0x67, 0x6f, 0x90, 0x9b, 0xa7, 0xac, 0xaa, 0xa4, 0xa1, 0xa1,\n    0x9e, 0x9b, 0x99, 0x8f, 0x71, 0x5d, 0x65, 0x70, 0x80, 0x8e, 0xa0, 0xac, 0xb6, 0xbf, 0xc8, 0xce,\n    0xd1, 0xcf, 0xcb, 0xc3, 0xba, 0xb3, 0xb1, 0xb0, 0xab, 0xa5, 0x9d, 0x99, 0x99, 0x9b, 0x9c, 0x9b,\n    0x9a, 0x9d, 0xa1, 0xa3, 0xa5, 0xa9, 0xae, 0xb2, 0xae, 0xb4, 0xbb, 0xc0, 0xc0, 0xbe, 0xbd, 0xbd,\n    0xb8, 0xb6, 0xb6, 0xb8, 0xb8, 0xb7, 0xb9, 0xbd, 0xc3, 0xc2, 0xca, 0xcd, 0xcf, 0xca, 0xac, 0x90,\n    0x5f, 0x5f, 0x56, 0x4a, 0x48, 0x4e, 0x52, 0x4f, 0x57, 0x47, 0x48, 0x47, 0x46, 0x47, 0x46, 0x56,\n    0x63, 0x9c, 0xdc, 0x67, 0x6d, 0x93, 0x89, 0x58, 0x72, 0x8f, 0x8e, 0x89, 0x91, 0x52, 0x9a, 0xe9,\n    0xc2, 0x47, 0x48, 0xaa, 0xcd, 0xc1, 0xbf, 0xc1, 0xc1, 0xc5, 0xc4, 0xc3, 0xc3, 0xc0, 0xc2, 0xcc,\n    0xd2, 0xd3, 0xd4, 0xd6, 0xd7, 0xd8, 0xd9, 0xd9, 0xe0, 0xc5, 0x9d, 0xa1, 0xa1, 0xa4, 0xa4, 0xa3,\n    0xa4, 0xa3, 0xa2, 0xa0, 0x9f, 0x9e, 0x9e, 0x9e, 0xa4, 0x99, 0x5e, 0x42, 0x61, 0x95, 0x75, 0x40,\n    0x7a, 0xa6, 0x7c, 0x56, 0x7e, 0xa1, 0x91, 0x7d, 0x8b, 0x94, 0x93, 0x8d, 0x90, 0x93, 0x91, 0x91,\n    0x90, 0x84, 0x94, 0xc4, 0xce, 0xcd, 0xc8, 0xcd, 0xc5, 0xb7, 0xa3, 0x90, 0x81, 0x78, 0x77, 0x7a,\n    0x78, 0x7c, 0x7f, 0x80, 0x81, 0x80, 0x7c, 0x78, 0x73, 0x74, 0x78, 0x73, 0x69, 0x68, 0x6d, 0x6c,\n    0x5e, 0x5c, 0x63, 0x68, 0x64, 0x64, 0x65, 0x5e, 0x70, 0x73, 0x6b, 0x63, 0x70, 0x88, 0x88, 0x77,\n    0x62, 0x6c, 0x6c, 0x75, 0x74, 0x79, 0x76, 0x80, 0x8a, 0x86, 0x77, 0x6f, 0x6d, 0x66, 0x60, 0x5d,\n    0x68, 0x6a, 0x67, 0x63, 0x65, 0x69, 0x66, 0x5c, 0x39, 0x44, 0x59, 0x69, 0x65, 0x52, 0x48, 0x4a,\n    0x54, 0x6b, 0x78, 0x75, 0x6f, 0x65, 0x55, 0x4c, 0x60, 0x68, 0x6b, 0x64, 0x58, 0x4c, 0x3f, 0x34,\n    0x3d, 0x3d, 0x52, 0x53, 0x48, 0x3c, 0x55, 0x69, 0x6a, 0x6f, 0x73, 0x73, 0x73, 0x77, 0x76, 0x70,\n    0x63, 0x53, 0x41, 0x3b, 0x3e, 0x3d, 0x30, 0x23, 0x1e, 0x25, 0x47, 0x62, 0x7c, 0x79, 0x78, 0x6a,\n    0x5c, 0x3d, 0x2b, 0x38, 0x49, 0x4e, 0x57, 0x64, 0x6a, 0x73, 0x77, 0x71, 0x68, 0x65, 0x67, 0x69,\n    0x7b, 0x84, 0x88, 0x88, 0x88, 0x80, 0x67, 0x4c, 0x37, 0x31, 0x2b, 0x27, 0x22, 0x22, 0x2d, 0x3b,\n    0x26, 0x1c, 0x16, 0x14, 0x14, 0x1a, 0x2f, 0x46, 0x67, 0x5e, 0x4d, 0x41, 0x44, 0x4d, 0x4e, 0x48,\n    0x66, 0x6c, 0x71, 0x70, 0x6a, 0x5d, 0x4d, 0x41, 0x3b, 0x36, 0x35, 0x34, 0x2a, 0x23, 0x2a, 0x36,\n    0x45, 0x44, 0x3b, 0x3b, 0x40, 0x5d, 0x6f, 0x78, 0x82, 0x88, 0x8a, 0x87, 0x8a, 0x96, 0x9e, 0xa0,\n    0xa1, 0x99, 0x8b, 0x82, 0x81, 0x7b, 0x64, 0x49, 0x4a, 0x51, 0x50, 0x47, 0x49, 0x5b, 0x6e, 0x77,\n    0x60, 0x63, 0x62, 0x60, 0x68, 0x76, 0x79, 0x71, 0x76, 0x76, 0x75, 0x6f, 0x6b, 0x68, 0x67, 0x67,\n    0x66, 0x69, 0x6a, 0x6a, 0x6f, 0x73, 0x6e, 0x66, 0x5f, 0x5a, 0x57, 0x59, 0x5b, 0x5d, 0x60, 0x64,\n    0x67, 0x63, 0x62, 0x66, 0x67, 0x66, 0x6a, 0x71, 0x73, 0x76, 0x74, 0x6e, 0x6a, 0x6d, 0x6e, 0x6c,\n    0x69, 0x6e, 0x70, 0x6b, 0x64, 0x61, 0x63, 0x65, 0x6b, 0x69, 0x60, 0x59, 0x60, 0x6e, 0x71, 0x6b,\n    0x67, 0x64, 0x62, 0x63, 0x63, 0x66, 0x6d, 0x75, 0x64, 0x60, 0x62, 0x68, 0x69, 0x63, 0x5e, 0x5e,\n    0x5a, 0x5b, 0x5e, 0x60, 0x63, 0x6b, 0x7c, 0x8c, 0x7f, 0x63, 0x4f, 0x50, 0x57, 0x5b, 0x55, 0x49,\n    0x41, 0x47, 0x4d, 0x52, 0x55, 0x58, 0x58, 0x54, 0x57, 0x55, 0x54, 0x54, 0x51, 0x4d, 0x4c, 0x4e,\n    0x4b, 0x4c, 0x51, 0x59, 0x5d, 0x5a, 0x54, 0x51, 0x4e, 0x52, 0x59, 0x5d, 0x5a, 0x54, 0x52, 0x53,\n    0x54, 0x56, 0x5a, 0x4e, 0x43, 0x41, 0x4b, 0x68, 0x76, 0x70, 0x64, 0x60, 0x66, 0x67, 0x62, 0x61,\n    0x62, 0x5b, 0x5c, 0x67, 0x6d, 0x67, 0x61, 0x60, 0x66, 0x64, 0x55, 0x52, 0x53, 0x57, 0x64, 0x64,\n    0x62, 0x63, 0x66, 0x6a, 0x6a, 0x64, 0x5e, 0x5c, 0x61, 0x61, 0x61, 0x62, 0x62, 0x5d, 0x55, 0x4e,\n    0x59, 0x65, 0x76, 0x83, 0x85, 0x7d, 0x6d, 0x61, 0x63, 0x68, 0x6f, 0x76, 0x7b, 0x7f, 0x82, 0x85,\n    0x86, 0x87, 0x88, 0x8a, 0x8b, 0x8b, 0x8c, 0x8c, 0x8c, 0x8d, 0x8e, 0x8f, 0x8f, 0x91, 0x93, 0x95,\n    0x97, 0x97, 0x96, 0x96, 0x98, 0x9a, 0x9c, 0x9d, 0x9b, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f, 0x9f, 0xa0,\n    0x9f, 0x9e, 0x9e, 0x9e, 0x9f, 0x9e, 0x9d, 0x9b, 0x9e, 0x9b, 0x98, 0x96, 0x95, 0x95, 0x93, 0x92,\n    0x8a, 0x8c, 0x8b, 0x84, 0x78, 0x6c, 0x65, 0x62, 0x69, 0x73, 0x83, 0x92, 0x9d, 0xa3, 0xa5, 0xa5,\n    0xa0, 0x9c, 0x9b, 0x89, 0x69, 0x5b, 0x66, 0x79, 0x87, 0x97, 0xa9, 0xb6, 0xbe, 0xc7, 0xcd, 0xd0,\n    0xce, 0xcc, 0xc6, 0xbe, 0xb6, 0xb1, 0xaf, 0xaf, 0xa7, 0xa1, 0x9a, 0x97, 0x98, 0x9b, 0x9d, 0x9c,\n    0x9e, 0xa1, 0xa5, 0xa7, 0xaa, 0xae, 0xb3, 0xb7, 0xb7, 0xbb, 0xc1, 0xc4, 0xc5, 0xc5, 0xc4, 0xc4,\n    0xc4, 0xc0, 0xbd, 0xbd, 0xbc, 0xba, 0xb9, 0xbb, 0xc3, 0xcf, 0xcf, 0xcf, 0x99, 0x57, 0x4b, 0x3e,\n    0x5a, 0x70, 0x85, 0x90, 0x9b, 0xab, 0xb6, 0xb9, 0xc1, 0xc4, 0xd0, 0xcf, 0xd0, 0xe1, 0xe0, 0xd1,\n    0xd6, 0xee, 0xeb, 0x70, 0x70, 0x99, 0x7d, 0x55, 0x91, 0x7c, 0x85, 0x8d, 0x97, 0x63, 0x9f, 0xe5,\n    0xba, 0x39, 0x4d, 0xba, 0xd4, 0xc7, 0xc8, 0xcb, 0xc2, 0xc6, 0xc4, 0xc2, 0xc2, 0xbf, 0xc1, 0xcb,\n    0xcf, 0xd1, 0xd5, 0xd8, 0xda, 0xda, 0xda, 0xd9, 0xdf, 0xc4, 0x9d, 0xa0, 0x9f, 0xa1, 0xa1, 0xa1,\n    0xa0, 0xa1, 0xa1, 0xa1, 0x9f, 0x9d, 0x9b, 0x99, 0x96, 0x93, 0x70, 0x62, 0x80, 0x95, 0x83, 0x75,\n    0x93, 0x91, 0x98, 0x9b, 0x96, 0x8d, 0x99, 0x8f, 0x9a, 0x94, 0x8b, 0x8d, 0x96, 0x95, 0x90, 0x93,\n    0x8f, 0x84, 0x99, 0xca, 0xce, 0xcc, 0xc7, 0xc9, 0xc5, 0xb4, 0xa2, 0x97, 0x8a, 0x7a, 0x6f, 0x6c,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x79, 0x72, 0x71, 0x72, 0x6a, 0x5f, 0x61, 0x69, 0x6a,\n    0x69, 0x6b, 0x70, 0x73, 0x75, 0x79, 0x76, 0x6d, 0x70, 0x70, 0x6c, 0x6b, 0x75, 0x7e, 0x76, 0x66,\n    0x5c, 0x6e, 0x71, 0x77, 0x76, 0x7e, 0x75, 0x75, 0x78, 0x7a, 0x76, 0x6c, 0x68, 0x66, 0x67, 0x71,\n    0x74, 0x72, 0x6a, 0x61, 0x63, 0x67, 0x60, 0x53, 0x3f, 0x53, 0x6b, 0x70, 0x5d, 0x48, 0x47, 0x51,\n    0x76, 0x7c, 0x75, 0x6c, 0x6e, 0x71, 0x6c, 0x68, 0x70, 0x65, 0x5e, 0x5b, 0x51, 0x44, 0x46, 0x52,\n    0x55, 0x4e, 0x4e, 0x3b, 0x2c, 0x25, 0x48, 0x67, 0x6f, 0x6d, 0x65, 0x61, 0x6b, 0x76, 0x6e, 0x5f,\n    0x57, 0x4a, 0x3e, 0x3c, 0x41, 0x42, 0x39, 0x31, 0x28, 0x33, 0x5a, 0x71, 0x7e, 0x71, 0x73, 0x6e,\n    0x70, 0x57, 0x45, 0x4a, 0x57, 0x5b, 0x59, 0x58, 0x5c, 0x5c, 0x57, 0x4c, 0x44, 0x4b, 0x5c, 0x6a,\n    0x79, 0x75, 0x7f, 0x94, 0x99, 0x83, 0x64, 0x51, 0x48, 0x42, 0x3d, 0x3a, 0x32, 0x27, 0x20, 0x21,\n    0x21, 0x20, 0x1f, 0x1c, 0x19, 0x19, 0x20, 0x27, 0x3b, 0x51, 0x65, 0x67, 0x5d, 0x54, 0x50, 0x4e,\n    0x42, 0x3d, 0x34, 0x2c, 0x2c, 0x32, 0x37, 0x39, 0x32, 0x3d, 0x41, 0x3e, 0x44, 0x4f, 0x54, 0x53,\n    0x47, 0x4d, 0x48, 0x55, 0x5e, 0x75, 0x6d, 0x67, 0x6a, 0x74, 0x7d, 0x7d, 0x75, 0x6f, 0x6f, 0x73,\n    0x78, 0x6e, 0x6a, 0x73, 0x7e, 0x7d, 0x73, 0x69, 0x56, 0x4e, 0x46, 0x48, 0x59, 0x73, 0x8c, 0x9b,\n    0x59, 0x5e, 0x61, 0x61, 0x66, 0x6e, 0x72, 0x71, 0x76, 0x72, 0x6c, 0x67, 0x64, 0x62, 0x62, 0x61,\n    0x62, 0x69, 0x6f, 0x70, 0x70, 0x72, 0x74, 0x75, 0x6c, 0x63, 0x5b, 0x57, 0x57, 0x58, 0x5b, 0x5f,\n    0x67, 0x67, 0x6a, 0x6c, 0x6b, 0x69, 0x6b, 0x6e, 0x66, 0x66, 0x63, 0x5e, 0x60, 0x68, 0x6d, 0x6d,\n    0x76, 0x75, 0x71, 0x6a, 0x62, 0x5c, 0x5a, 0x5a, 0x6c, 0x6a, 0x64, 0x5e, 0x63, 0x70, 0x76, 0x74,\n    0x62, 0x57, 0x54, 0x60, 0x6f, 0x74, 0x72, 0x6f, 0x5e, 0x69, 0x76, 0x79, 0x70, 0x66, 0x65, 0x69,\n    0x6b, 0x62, 0x5c, 0x5c, 0x5e, 0x62, 0x69, 0x71, 0x76, 0x65, 0x5d, 0x62, 0x67, 0x69, 0x62, 0x56,\n    0x4e, 0x48, 0x46, 0x4d, 0x53, 0x56, 0x5a, 0x5e, 0x5a, 0x5a, 0x58, 0x54, 0x4f, 0x4d, 0x4e, 0x4f,\n    0x4a, 0x42, 0x3f, 0x46, 0x52, 0x5a, 0x5b, 0x5a, 0x65, 0x67, 0x68, 0x62, 0x56, 0x4e, 0x53, 0x5c,\n    0x5d, 0x59, 0x5b, 0x53, 0x4e, 0x48, 0x46, 0x58, 0x6b, 0x6e, 0x6a, 0x65, 0x64, 0x5f, 0x5b, 0x5e,\n    0x60, 0x5c, 0x5a, 0x5f, 0x61, 0x5e, 0x5e, 0x60, 0x5e, 0x5e, 0x54, 0x58, 0x5e, 0x60, 0x61, 0x57,\n    0x52, 0x52, 0x55, 0x5a, 0x5c, 0x5a, 0x5a, 0x5b, 0x65, 0x66, 0x66, 0x65, 0x64, 0x65, 0x65, 0x63,\n    0x62, 0x6c, 0x79, 0x83, 0x82, 0x78, 0x6a, 0x60, 0x64, 0x69, 0x71, 0x77, 0x7c, 0x80, 0x85, 0x88,\n    0x8b, 0x8b, 0x8c, 0x8e, 0x8e, 0x8f, 0x8f, 0x8f, 0x91, 0x92, 0x92, 0x93, 0x93, 0x95, 0x97, 0x99,\n    0x9b, 0x9b, 0x9b, 0x9c, 0x9d, 0x9e, 0xa0, 0xa1, 0xa0, 0xa1, 0xa2, 0xa2, 0xa3, 0xa4, 0xa5, 0xa5,\n    0xa7, 0xa6, 0xa5, 0xa5, 0xa6, 0xa5, 0xa3, 0xa2, 0xa1, 0xa2, 0xa2, 0xa1, 0x9e, 0x9a, 0x98, 0x97,\n    0x98, 0x92, 0x8c, 0x8a, 0x89, 0x85, 0x7d, 0x76, 0x6f, 0x64, 0x5c, 0x64, 0x7b, 0x91, 0x9c, 0x9e,\n    0xa4, 0xa1, 0xa4, 0x8c, 0x68, 0x5c, 0x67, 0x7d, 0x8c, 0x9d, 0xae, 0xba, 0xc3, 0xcb, 0xd0, 0xd0,\n    0xcb, 0xc6, 0xc0, 0xb9, 0xb5, 0xb1, 0xad, 0xab, 0xa4, 0x9f, 0x99, 0x97, 0x97, 0x9a, 0x9b, 0x9c,\n    0x9e, 0xa1, 0xa5, 0xa7, 0xaa, 0xaf, 0xb5, 0xba, 0xbd, 0xbe, 0xc0, 0xc3, 0xc8, 0xcc, 0xd0, 0xd2,\n    0xd0, 0xcb, 0xc7, 0xc5, 0xc3, 0xbf, 0xbb, 0xba, 0xb0, 0xbb, 0xbf, 0xcb, 0x82, 0x37, 0x6c, 0xa1,\n    0xc6, 0xda, 0xeb, 0xee, 0xed, 0xf1, 0xf6, 0xf7, 0xf7, 0xf1, 0xf3, 0xee, 0xdf, 0xdf, 0xe5, 0xdf,\n    0xda, 0xe6, 0xd8, 0x74, 0x61, 0x97, 0x77, 0x63, 0x91, 0x83, 0x92, 0x8e, 0x86, 0x58, 0xc0, 0xf6,\n    0xb4, 0x3f, 0x5f, 0xbc, 0xc5, 0xbe, 0xc3, 0xc3, 0xc3, 0xc6, 0xc3, 0xc1, 0xc2, 0xbf, 0xc0, 0xc8,\n    0xcf, 0xd2, 0xd6, 0xdb, 0xdd, 0xdd, 0xdc, 0xdb, 0xdb, 0xc1, 0x9b, 0x9e, 0x9d, 0x9f, 0x9e, 0x9e,\n    0x9f, 0xa0, 0xa2, 0xa2, 0xa1, 0x9f, 0x9c, 0x9a, 0x9f, 0xa5, 0x9d, 0x98, 0x9d, 0x97, 0x95, 0xa6,\n    0xa4, 0x9b, 0x9e, 0x9f, 0x9a, 0x8c, 0x9a, 0x93, 0x91, 0x95, 0x93, 0x92, 0x98, 0x96, 0x8f, 0x8d,\n    0x83, 0x7f, 0x9b, 0xcb, 0xcb, 0xcc, 0xc9, 0xc7, 0xc3, 0xae, 0x9d, 0x9a, 0x93, 0x83, 0x75, 0x72,\n    0x75, 0x6f, 0x71, 0x7c, 0x7d, 0x75, 0x74, 0x7c, 0x77, 0x75, 0x74, 0x6c, 0x62, 0x63, 0x6a, 0x6a,\n    0x6f, 0x69, 0x68, 0x72, 0x7c, 0x7c, 0x78, 0x76, 0x70, 0x6f, 0x74, 0x7e, 0x84, 0x7e, 0x70, 0x66,\n    0x64, 0x6f, 0x6c, 0x73, 0x76, 0x7f, 0x6f, 0x67, 0x71, 0x69, 0x65, 0x61, 0x6b, 0x72, 0x6b, 0x6f,\n    0x86, 0x8a, 0x88, 0x7c, 0x73, 0x6f, 0x67, 0x5f, 0x5f, 0x6b, 0x79, 0x7d, 0x78, 0x76, 0x81, 0x8f,\n    0x83, 0x85, 0x7f, 0x79, 0x76, 0x6b, 0x58, 0x4f, 0x5d, 0x70, 0x74, 0x64, 0x5a, 0x5d, 0x56, 0x47,\n    0x54, 0x4b, 0x47, 0x39, 0x38, 0x36, 0x4c, 0x5e, 0x6d, 0x6a, 0x58, 0x52, 0x66, 0x74, 0x65, 0x4e,\n    0x4d, 0x47, 0x41, 0x3e, 0x3e, 0x3f, 0x42, 0x46, 0x42, 0x4e, 0x6a, 0x77, 0x72, 0x63, 0x64, 0x65,\n    0x68, 0x68, 0x69, 0x6d, 0x74, 0x79, 0x77, 0x71, 0x56, 0x59, 0x5c, 0x5c, 0x5b, 0x5f, 0x67, 0x6d,\n    0x6e, 0x76, 0x83, 0x8b, 0x85, 0x6f, 0x55, 0x45, 0x34, 0x2b, 0x25, 0x2c, 0x37, 0x39, 0x32, 0x2b,\n    0x23, 0x22, 0x1e, 0x1b, 0x1d, 0x20, 0x1e, 0x19, 0x1b, 0x27, 0x3b, 0x51, 0x5c, 0x58, 0x48, 0x39,\n    0x38, 0x39, 0x3a, 0x3e, 0x46, 0x50, 0x55, 0x55, 0x5e, 0x5f, 0x5a, 0x54, 0x4a, 0x36, 0x28, 0x29,\n    0x56, 0x74, 0x77, 0x78, 0x65, 0x6b, 0x62, 0x69, 0x6b, 0x5b, 0x50, 0x55, 0x60, 0x69, 0x6e, 0x71,\n    0x61, 0x65, 0x5f, 0x4c, 0x3f, 0x41, 0x49, 0x4d, 0x5d, 0x45, 0x45, 0x6d, 0x96, 0xa0, 0x98, 0x91,\n    0x5f, 0x62, 0x67, 0x69, 0x69, 0x6a, 0x6e, 0x72, 0x71, 0x6c, 0x66, 0x61, 0x5e, 0x5d, 0x5d, 0x5f,\n    0x63, 0x64, 0x67, 0x6a, 0x6b, 0x6d, 0x72, 0x77, 0x78, 0x6d, 0x61, 0x5b, 0x5a, 0x5a, 0x5d, 0x61,\n    0x67, 0x6b, 0x6c, 0x69, 0x65, 0x64, 0x64, 0x64, 0x64, 0x63, 0x5f, 0x5b, 0x5f, 0x67, 0x6b, 0x69,\n    0x66, 0x65, 0x64, 0x65, 0x65, 0x64, 0x63, 0x62, 0x66, 0x68, 0x67, 0x62, 0x61, 0x68, 0x70, 0x74,\n    0x6a, 0x5d, 0x5b, 0x6c, 0x7e, 0x7f, 0x72, 0x67, 0x73, 0x6c, 0x64, 0x62, 0x67, 0x6d, 0x6c, 0x68,\n    0x5a, 0x53, 0x56, 0x65, 0x71, 0x70, 0x69, 0x64, 0x64, 0x60, 0x63, 0x67, 0x66, 0x6b, 0x75, 0x78,\n    0x5f, 0x53, 0x49, 0x47, 0x49, 0x4c, 0x53, 0x59, 0x56, 0x5a, 0x5c, 0x58, 0x5a, 0x62, 0x6a, 0x6e,\n    0x62, 0x54, 0x48, 0x48, 0x52, 0x5b, 0x5f, 0x61, 0x68, 0x69, 0x6d, 0x71, 0x6c, 0x62, 0x57, 0x51,\n    0x58, 0x50, 0x4e, 0x4b, 0x4b, 0x48, 0x45, 0x55, 0x69, 0x6c, 0x68, 0x62, 0x5f, 0x58, 0x52, 0x55,\n    0x52, 0x55, 0x57, 0x55, 0x51, 0x53, 0x5b, 0x62, 0x5c, 0x64, 0x64, 0x6b, 0x6b, 0x63, 0x5c, 0x4d,\n    0x49, 0x49, 0x4c, 0x52, 0x56, 0x58, 0x5b, 0x5f, 0x6b, 0x69, 0x63, 0x5c, 0x5d, 0x66, 0x6f, 0x74,\n    0x6d, 0x72, 0x79, 0x7d, 0x7a, 0x72, 0x6b, 0x67, 0x68, 0x6e, 0x75, 0x7a, 0x7e, 0x82, 0x87, 0x8b,\n    0x8d, 0x8e, 0x8f, 0x91, 0x92, 0x93, 0x93, 0x94, 0x95, 0x95, 0x97, 0x97, 0x98, 0x9b, 0x9e, 0xa0,\n    0x9f, 0x9f, 0xa0, 0xa1, 0xa2, 0xa3, 0xa4, 0xa4, 0xa5, 0xa5, 0xa6, 0xa7, 0xa8, 0xa8, 0xa9, 0xa9,\n    0xac, 0xab, 0xaa, 0xa9, 0xa9, 0xa9, 0xa7, 0xa6, 0xa5, 0xa5, 0xa6, 0xa5, 0xa3, 0x9f, 0x9c, 0x99,\n    0x98, 0x95, 0x93, 0x95, 0x96, 0x91, 0x88, 0x7f, 0x7c, 0x77, 0x6e, 0x64, 0x61, 0x6c, 0x7f, 0x8f,\n    0x94, 0x96, 0xa2, 0x8d, 0x6a, 0x60, 0x6a, 0x82, 0x94, 0xa3, 0xb2, 0xba, 0xc2, 0xca, 0xcc, 0xca,\n    0xc6, 0xbf, 0xb7, 0xb3, 0xb2, 0xb0, 0xa9, 0xa3, 0x9f, 0x9c, 0x99, 0x97, 0x97, 0x99, 0x9c, 0x9e,\n    0x9d, 0x9f, 0xa3, 0xa6, 0xa9, 0xaf, 0xb7, 0xbc, 0xbf, 0xbf, 0xc0, 0xc4, 0xca, 0xcf, 0xd0, 0xd0,\n    0xcf, 0xcb, 0xca, 0xcb, 0xcb, 0xc6, 0xc0, 0xbd, 0xc8, 0xcb, 0xc0, 0xba, 0x96, 0x8f, 0xca, 0xe3,\n    0xe7, 0xee, 0xf4, 0xf2, 0xef, 0xf0, 0xf2, 0xf3, 0xed, 0xdf, 0xe4, 0xf3, 0xe7, 0xd6, 0xdb, 0xe4,\n    0xda, 0xe2, 0xe3, 0x84, 0x55, 0x93, 0x79, 0x6f, 0x81, 0x8d, 0x91, 0x80, 0x6c, 0x6c, 0xd1, 0xe9,\n    0xa3, 0x37, 0x66, 0xca, 0xd1, 0xc4, 0xc5, 0xc8, 0xc3, 0xc5, 0xc2, 0xc1, 0xc3, 0xc0, 0xbf, 0xc6,\n    0xd1, 0xd3, 0xd7, 0xda, 0xdc, 0xdd, 0xdc, 0xdb, 0xd9, 0xc0, 0x9b, 0xa0, 0x9e, 0xa0, 0x9f, 0x9f,\n    0xa1, 0xa1, 0xa2, 0xa3, 0xa3, 0xa1, 0xa0, 0x9f, 0x95, 0x9e, 0x9c, 0x96, 0x94, 0x98, 0x97, 0x9a,\n    0x8f, 0xa1, 0x97, 0x8a, 0x99, 0x94, 0x92, 0x8d, 0x90, 0x97, 0x97, 0x94, 0x96, 0x93, 0x8d, 0x8c,\n    0x83, 0x83, 0xa3, 0xcf, 0xc9, 0xcd, 0xcd, 0xc7, 0xc2, 0xaf, 0x9f, 0x9e, 0x9d, 0x91, 0x82, 0x7a,\n    0x6a, 0x6a, 0x71, 0x7d, 0x7f, 0x7b, 0x7c, 0x83, 0x78, 0x76, 0x77, 0x72, 0x6a, 0x6c, 0x70, 0x6e,\n    0x78, 0x70, 0x67, 0x6c, 0x7a, 0x7f, 0x7b, 0x78, 0x72, 0x73, 0x7c, 0x88, 0x8b, 0x80, 0x76, 0x73,\n    0x75, 0x74, 0x6b, 0x74, 0x76, 0x77, 0x69, 0x6a, 0x73, 0x69, 0x69, 0x6b, 0x7d, 0x88, 0x77, 0x75,\n    0x6e, 0x65, 0x5e, 0x62, 0x6f, 0x74, 0x66, 0x54, 0x58, 0x66, 0x7c, 0x91, 0x9d, 0x9c, 0x94, 0x8d,\n    0x88, 0x7d, 0x68, 0x57, 0x50, 0x4c, 0x50, 0x5c, 0x78, 0x7c, 0x75, 0x63, 0x52, 0x4a, 0x46, 0x41,\n    0x47, 0x4d, 0x59, 0x58, 0x63, 0x5a, 0x58, 0x54, 0x65, 0x6c, 0x5f, 0x51, 0x61, 0x72, 0x6e, 0x63,\n    0x5a, 0x51, 0x48, 0x45, 0x43, 0x44, 0x47, 0x4c, 0x58, 0x66, 0x74, 0x76, 0x63, 0x5b, 0x53, 0x4d,\n    0x48, 0x52, 0x58, 0x56, 0x55, 0x59, 0x5a, 0x56, 0x5e, 0x58, 0x52, 0x53, 0x59, 0x5f, 0x62, 0x63,\n    0x6b, 0x76, 0x76, 0x66, 0x5a, 0x58, 0x55, 0x4e, 0x3d, 0x2e, 0x1d, 0x17, 0x21, 0x2e, 0x34, 0x32,\n    0x2d, 0x2b, 0x29, 0x26, 0x24, 0x25, 0x26, 0x27, 0x1a, 0x21, 0x31, 0x43, 0x4f, 0x58, 0x65, 0x72,\n    0x6f, 0x6e, 0x6c, 0x68, 0x65, 0x60, 0x57, 0x4f, 0x42, 0x34, 0x28, 0x2a, 0x24, 0x13, 0x20, 0x48,\n    0x6f, 0x82, 0x73, 0x6f, 0x60, 0x6e, 0x61, 0x67, 0x53, 0x4f, 0x4b, 0x4b, 0x49, 0x45, 0x43, 0x43,\n    0x5e, 0x58, 0x44, 0x30, 0x33, 0x46, 0x4a, 0x3f, 0x30, 0x51, 0x7c, 0x8e, 0x7a, 0x5d, 0x5d, 0x6e,\n    0x62, 0x63, 0x66, 0x6a, 0x67, 0x62, 0x63, 0x69, 0x71, 0x6d, 0x69, 0x66, 0x62, 0x61, 0x64, 0x68,\n    0x66, 0x5c, 0x56, 0x5d, 0x65, 0x69, 0x6b, 0x6e, 0x77, 0x6c, 0x60, 0x5a, 0x59, 0x5a, 0x5d, 0x61,\n    0x64, 0x69, 0x69, 0x62, 0x5e, 0x61, 0x65, 0x65, 0x6a, 0x69, 0x65, 0x62, 0x64, 0x69, 0x66, 0x60,\n    0x5d, 0x5b, 0x5d, 0x62, 0x66, 0x65, 0x61, 0x5e, 0x66, 0x6b, 0x6c, 0x65, 0x5b, 0x5a, 0x62, 0x6a,\n    0x6d, 0x60, 0x5b, 0x67, 0x76, 0x7a, 0x75, 0x71, 0x65, 0x71, 0x7b, 0x7a, 0x75, 0x71, 0x6a, 0x63,\n    0x68, 0x5e, 0x5a, 0x62, 0x69, 0x65, 0x5b, 0x55, 0x5c, 0x5a, 0x62, 0x69, 0x6a, 0x6e, 0x71, 0x6e,\n    0x6c, 0x67, 0x61, 0x5d, 0x5b, 0x5b, 0x5c, 0x5d, 0x62, 0x67, 0x63, 0x57, 0x53, 0x59, 0x60, 0x60,\n    0x52, 0x56, 0x5b, 0x5a, 0x55, 0x53, 0x5a, 0x63, 0x71, 0x65, 0x5f, 0x6b, 0x7c, 0x80, 0x73, 0x66,\n    0x5d, 0x54, 0x51, 0x4b, 0x4a, 0x4b, 0x4f, 0x66, 0x69, 0x66, 0x5c, 0x58, 0x5d, 0x5b, 0x53, 0x52,\n    0x58, 0x57, 0x53, 0x51, 0x54, 0x5a, 0x5b, 0x58, 0x60, 0x6d, 0x6e, 0x6e, 0x64, 0x5a, 0x5d, 0x59,\n    0x55, 0x55, 0x57, 0x5b, 0x5c, 0x5c, 0x5d, 0x60, 0x68, 0x67, 0x61, 0x5c, 0x5d, 0x66, 0x6e, 0x70,\n    0x74, 0x77, 0x7b, 0x7b, 0x76, 0x70, 0x6e, 0x6e, 0x6d, 0x72, 0x78, 0x7d, 0x80, 0x83, 0x89, 0x8d,\n    0x8f, 0x90, 0x91, 0x93, 0x95, 0x96, 0x97, 0x97, 0x97, 0x98, 0x99, 0x9b, 0x9c, 0x9f, 0xa3, 0xa6,\n    0xa4, 0xa5, 0xa6, 0xa7, 0xa8, 0xa9, 0xa9, 0xa9, 0xaa, 0xaa, 0xab, 0xac, 0xac, 0xad, 0xae, 0xae,\n    0xae, 0xac, 0xab, 0xaa, 0xaa, 0xa9, 0xa8, 0xa6, 0xa8, 0xa6, 0xa4, 0xa4, 0xa3, 0xa2, 0xa0, 0x9e,\n    0x9a, 0x9b, 0x99, 0x96, 0x93, 0x91, 0x91, 0x93, 0x88, 0x84, 0x7f, 0x7a, 0x76, 0x70, 0x69, 0x64,\n    0x74, 0x7b, 0x93, 0x86, 0x69, 0x65, 0x70, 0x8b, 0x9e, 0xaa, 0xb6, 0xbc, 0xc2, 0xc9, 0xc9, 0xc4,\n    0xc2, 0xb9, 0xb0, 0xad, 0xaf, 0xad, 0xa4, 0x9b, 0x9a, 0x99, 0x98, 0x97, 0x98, 0x9a, 0x9e, 0xa1,\n    0x9e, 0xa1, 0xa4, 0xa7, 0xab, 0xb2, 0xbb, 0xc1, 0xc5, 0xc4, 0xc5, 0xc8, 0xcb, 0xc9, 0xc3, 0xbd,\n    0xc7, 0xc6, 0xc7, 0xcd, 0xd0, 0xcc, 0xc5, 0xc0, 0xc5, 0xbc, 0xc1, 0xc2, 0xa5, 0x9f, 0xc7, 0xe2,\n    0xe6, 0xe8, 0xec, 0xf0, 0xf3, 0xf3, 0xef, 0xeb, 0xd6, 0xcc, 0xcc, 0xe0, 0xec, 0xeb, 0xe8, 0xdc,\n    0xda, 0xdd, 0xe6, 0x7f, 0x42, 0x91, 0x8a, 0x87, 0x8d, 0x87, 0x61, 0x52, 0x5a, 0xb3, 0xe9, 0xe1,\n    0xab, 0x3f, 0x6d, 0xca, 0xcf, 0xc4, 0xc1, 0xc2, 0xc2, 0xc4, 0xc1, 0xc0, 0xc4, 0xc1, 0xc0, 0xc5,\n    0xd2, 0xd4, 0xd6, 0xd8, 0xd9, 0xda, 0xdb, 0xdb, 0xd9, 0xc1, 0x9d, 0xa2, 0xa1, 0xa3, 0xa2, 0xa3,\n    0xa0, 0xa0, 0xa0, 0xa0, 0xa0, 0xa0, 0xa0, 0xa0, 0xa2, 0x9f, 0x9a, 0x9c, 0x98, 0xa1, 0x9d, 0x96,\n    0x9c, 0x9a, 0x98, 0x9b, 0x98, 0x8d, 0x97, 0x99, 0x98, 0x92, 0x8c, 0x8f, 0x93, 0x8d, 0x8b, 0x94,\n    0x94, 0x96, 0xb4, 0xd8, 0xcc, 0xcf, 0xce, 0xc4, 0xc0, 0xb5, 0xac, 0xab, 0xaa, 0x9c, 0x82, 0x6e,\n    0x81, 0x8a, 0x8b, 0x82, 0x7b, 0x7a, 0x77, 0x70, 0x74, 0x70, 0x6d, 0x6a, 0x67, 0x70, 0x7b, 0x7d,\n    0x81, 0x80, 0x71, 0x67, 0x77, 0x88, 0x83, 0x76, 0x77, 0x77, 0x7c, 0x83, 0x81, 0x78, 0x74, 0x76,\n    0x83, 0x7c, 0x72, 0x7c, 0x75, 0x6e, 0x68, 0x78, 0x75, 0x79, 0x85, 0x7d, 0x7a, 0x77, 0x67, 0x6f,\n    0x73, 0x6e, 0x6a, 0x6c, 0x71, 0x73, 0x6f, 0x68, 0x63, 0x69, 0x77, 0x89, 0x97, 0x96, 0x87, 0x78,\n    0x79, 0x7a, 0x75, 0x6e, 0x61, 0x4f, 0x4b, 0x56, 0x4f, 0x5b, 0x60, 0x55, 0x4b, 0x46, 0x40, 0x38,\n    0x47, 0x54, 0x61, 0x5c, 0x61, 0x52, 0x49, 0x40, 0x4d, 0x64, 0x5e, 0x48, 0x4c, 0x60, 0x70, 0x7a,\n    0x71, 0x60, 0x4f, 0x4c, 0x50, 0x4f, 0x49, 0x44, 0x44, 0x59, 0x65, 0x6a, 0x5b, 0x63, 0x58, 0x4a,\n    0x3c, 0x45, 0x4a, 0x48, 0x48, 0x4c, 0x4d, 0x49, 0x42, 0x45, 0x52, 0x69, 0x7b, 0x7b, 0x6b, 0x5a,\n    0x55, 0x5a, 0x64, 0x6c, 0x67, 0x5a, 0x54, 0x56, 0x5a, 0x5f, 0x60, 0x5b, 0x57, 0x54, 0x4c, 0x43,\n    0x43, 0x3c, 0x36, 0x31, 0x2b, 0x24, 0x23, 0x27, 0x2e, 0x1f, 0x17, 0x1f, 0x29, 0x2f, 0x37, 0x41,\n    0x42, 0x43, 0x43, 0x44, 0x46, 0x46, 0x42, 0x3c, 0x2e, 0x2b, 0x1f, 0x1a, 0x1a, 0x14, 0x1f, 0x3c,\n    0x5b, 0x6e, 0x5f, 0x63, 0x5c, 0x6e, 0x5b, 0x5c, 0x46, 0x42, 0x39, 0x31, 0x2d, 0x2d, 0x2d, 0x2c,\n    0x26, 0x28, 0x3a, 0x57, 0x63, 0x57, 0x44, 0x3b, 0x55, 0x6b, 0x77, 0x6d, 0x5f, 0x5e, 0x61, 0x61,\n    0x69, 0x68, 0x67, 0x66, 0x61, 0x5c, 0x5f, 0x65, 0x67, 0x69, 0x6a, 0x67, 0x65, 0x64, 0x63, 0x62,\n    0x5f, 0x56, 0x53, 0x5b, 0x63, 0x66, 0x67, 0x69, 0x65, 0x61, 0x5c, 0x58, 0x5a, 0x5d, 0x5e, 0x5b,\n    0x66, 0x67, 0x67, 0x65, 0x64, 0x64, 0x62, 0x5e, 0x65, 0x61, 0x61, 0x65, 0x68, 0x68, 0x69, 0x6b,\n    0x64, 0x64, 0x64, 0x68, 0x6f, 0x72, 0x6b, 0x62, 0x64, 0x73, 0x7a, 0x6e, 0x5e, 0x5b, 0x66, 0x71,\n    0x75, 0x6a, 0x5f, 0x60, 0x6e, 0x7a, 0x78, 0x6f, 0x72, 0x78, 0x7c, 0x76, 0x67, 0x58, 0x53, 0x55,\n    0x52, 0x55, 0x58, 0x5a, 0x5c, 0x5b, 0x54, 0x4b, 0x5c, 0x5a, 0x5c, 0x5f, 0x5f, 0x5d, 0x5f, 0x64,\n    0x69, 0x6c, 0x74, 0x7b, 0x79, 0x6f, 0x68, 0x68, 0x6f, 0x72, 0x6a, 0x5b, 0x56, 0x5e, 0x62, 0x5e,\n    0x54, 0x4b, 0x45, 0x48, 0x4d, 0x51, 0x57, 0x5e, 0x61, 0x66, 0x69, 0x68, 0x6e, 0x7a, 0x80, 0x7e,\n    0x72, 0x6d, 0x65, 0x5e, 0x56, 0x55, 0x5b, 0x63, 0x67, 0x63, 0x5c, 0x56, 0x52, 0x53, 0x56, 0x59,\n    0x4f, 0x50, 0x55, 0x5e, 0x63, 0x61, 0x5c, 0x59, 0x5f, 0x69, 0x70, 0x6a, 0x61, 0x65, 0x7a, 0x8f,\n    0x8b, 0x76, 0x63, 0x60, 0x66, 0x69, 0x66, 0x62, 0x72, 0x73, 0x6e, 0x65, 0x65, 0x6d, 0x72, 0x71,\n    0x78, 0x7a, 0x79, 0x73, 0x6d, 0x6b, 0x6e, 0x72, 0x71, 0x72, 0x74, 0x79, 0x80, 0x86, 0x8b, 0x8d,\n    0x8f, 0x94, 0x97, 0x97, 0x97, 0x99, 0x9a, 0x99, 0x9a, 0x9d, 0x9f, 0x9f, 0xa1, 0xa5, 0xa9, 0xa9,\n    0xaa, 0xab, 0xad, 0xad, 0xac, 0xad, 0xae, 0xaf, 0xb0, 0xb0, 0xb0, 0xaf, 0xaf, 0xaf, 0xae, 0xae,\n    0xaf, 0xaf, 0xae, 0xad, 0xac, 0xab, 0xa9, 0xa9, 0xa8, 0xa7, 0xa6, 0xa6, 0xa5, 0xa3, 0x9f, 0x9d,\n    0x9d, 0x9c, 0x9a, 0x99, 0x98, 0x97, 0x95, 0x94, 0x8d, 0x8c, 0x8a, 0x87, 0x84, 0x80, 0x7a, 0x77,\n    0x72, 0x6f, 0x5a, 0x58, 0x62, 0x66, 0x7b, 0x91, 0xa4, 0xb1, 0xbe, 0xc4, 0xc9, 0xcc, 0xc7, 0xc0,\n    0xbb, 0xb1, 0xaa, 0xab, 0xac, 0xa6, 0x9e, 0x99, 0x99, 0x99, 0x99, 0x97, 0x97, 0x99, 0x9e, 0xa3,\n    0xa3, 0xa6, 0xa8, 0xa9, 0xaa, 0xb0, 0xb9, 0xc1, 0xc7, 0xc5, 0xc5, 0xc9, 0xca, 0xc4, 0xb9, 0xb1,\n    0xbc, 0xc3, 0xc7, 0xd4, 0xd5, 0xc9, 0xc4, 0xbb, 0xc0, 0xbd, 0xbf, 0xbe, 0xab, 0xa0, 0xbc, 0xe5,\n    0xdc, 0xe4, 0xea, 0xe7, 0xe1, 0xdc, 0xd6, 0xd1, 0xce, 0xc5, 0xd1, 0xd5, 0xf5, 0xe5, 0xe3, 0xda,\n    0xde, 0xe2, 0xe1, 0xa5, 0x3b, 0x86, 0x84, 0x7f, 0x59, 0x4c, 0x44, 0x6a, 0xb8, 0xeb, 0xef, 0xe8,\n    0xa7, 0x32, 0x6c, 0xc9, 0xc3, 0xcd, 0xbd, 0xc7, 0xc6, 0xc1, 0xbd, 0xbd, 0xba, 0xb7, 0xbd, 0xc7,\n    0xd4, 0xd5, 0xd7, 0xda, 0xdb, 0xdc, 0xdd, 0xdd, 0xdd, 0xc7, 0x9d, 0xa0, 0xa2, 0x97, 0xa2, 0x9b,\n    0x9a, 0x9b, 0x9d, 0xa0, 0xa1, 0xa0, 0x9e, 0x9c, 0x9f, 0xa2, 0xa2, 0x9e, 0x9c, 0x9c, 0x9e, 0x9d,\n    0xa0, 0x9d, 0x9a, 0x99, 0x9b, 0x9b, 0x99, 0x96, 0x9f, 0xa3, 0xab, 0xb5, 0xbd, 0xc2, 0xc3, 0xc2,\n    0xc0, 0xcd, 0xd5, 0xd1, 0xce, 0xce, 0xca, 0xc4, 0xc6, 0xc2, 0xbb, 0xb0, 0xa0, 0x8f, 0x86, 0x84,\n    0x7e, 0x8a, 0x91, 0x89, 0x80, 0x7e, 0x7f, 0x7f, 0x70, 0x6f, 0x6f, 0x79, 0x87, 0x88, 0x83, 0x84,\n    0x88, 0x85, 0x78, 0x6b, 0x74, 0x87, 0x84, 0x72, 0x6e, 0x71, 0x77, 0x7b, 0x77, 0x6f, 0x70, 0x77,\n    0x80, 0x75, 0x73, 0x72, 0x64, 0x5d, 0x68, 0x77, 0x6a, 0x6a, 0x77, 0x88, 0x88, 0x7f, 0x88, 0x9b,\n    0x92, 0x7f, 0x79, 0x7e, 0x7c, 0x7b, 0x74, 0x65, 0x69, 0x66, 0x6b, 0x77, 0x7d, 0x77, 0x6e, 0x6a,\n    0x5e, 0x56, 0x49, 0x4e, 0x58, 0x49, 0x3d, 0x4b, 0x74, 0x7b, 0x6d, 0x53, 0x3f, 0x2e, 0x2d, 0x3b,\n    0x49, 0x4d, 0x56, 0x60, 0x64, 0x5f, 0x52, 0x47, 0x41, 0x4a, 0x4f, 0x4a, 0x46, 0x48, 0x4a, 0x4a,\n    0x4b, 0x5f, 0x65, 0x54, 0x47, 0x4d, 0x53, 0x51, 0x42, 0x48, 0x57, 0x5e, 0x5f, 0x68, 0x60, 0x45,\n    0x30, 0x37, 0x3b, 0x39, 0x3b, 0x3d, 0x38, 0x2f, 0x34, 0x3a, 0x74, 0x8f, 0x85, 0x4e, 0x39, 0x4e,\n    0x46, 0x55, 0x6e, 0x82, 0x80, 0x6f, 0x62, 0x5f, 0x68, 0x5f, 0x5a, 0x5f, 0x63, 0x5e, 0x55, 0x4f,\n    0x50, 0x48, 0x42, 0x42, 0x3e, 0x35, 0x31, 0x32, 0x2d, 0x2d, 0x2c, 0x27, 0x21, 0x1d, 0x20, 0x25,\n    0x23, 0x2a, 0x2f, 0x2d, 0x2d, 0x2d, 0x2a, 0x26, 0x15, 0x16, 0x18, 0x17, 0x14, 0x17, 0x25, 0x34,\n    0x40, 0x41, 0x49, 0x50, 0x53, 0x5e, 0x6b, 0x6e, 0x51, 0x3e, 0x2f, 0x39, 0x31, 0x3e, 0x3d, 0x3a,\n    0x3a, 0x34, 0x42, 0x4d, 0x3f, 0x3a, 0x52, 0x6c, 0x71, 0x6d, 0x68, 0x64, 0x5d, 0x57, 0x58, 0x5d,\n    0x64, 0x68, 0x6c, 0x6c, 0x65, 0x5e, 0x5f, 0x64, 0x64, 0x65, 0x65, 0x64, 0x64, 0x65, 0x67, 0x67,\n    0x6b, 0x62, 0x5c, 0x5f, 0x65, 0x6a, 0x72, 0x7b, 0x7d, 0x7c, 0x73, 0x60, 0x51, 0x50, 0x58, 0x61,\n    0x65, 0x67, 0x67, 0x66, 0x66, 0x65, 0x60, 0x5a, 0x56, 0x54, 0x56, 0x5c, 0x63, 0x67, 0x68, 0x68,\n    0x6b, 0x71, 0x77, 0x76, 0x72, 0x6b, 0x63, 0x5b, 0x5e, 0x66, 0x6b, 0x68, 0x61, 0x61, 0x6a, 0x73,\n    0x75, 0x6d, 0x61, 0x5a, 0x5f, 0x6a, 0x71, 0x71, 0x75, 0x79, 0x7c, 0x7a, 0x71, 0x69, 0x67, 0x68,\n    0x68, 0x5f, 0x5c, 0x62, 0x61, 0x56, 0x52, 0x56, 0x4e, 0x5e, 0x64, 0x5b, 0x59, 0x62, 0x63, 0x5c,\n    0x5c, 0x5b, 0x5d, 0x63, 0x64, 0x5f, 0x5d, 0x5f, 0x5f, 0x65, 0x64, 0x5c, 0x58, 0x5b, 0x5d, 0x5b,\n    0x49, 0x49, 0x4b, 0x4f, 0x52, 0x57, 0x60, 0x69, 0x69, 0x69, 0x67, 0x65, 0x66, 0x69, 0x68, 0x65,\n    0x68, 0x5d, 0x54, 0x53, 0x59, 0x60, 0x65, 0x69, 0x68, 0x61, 0x59, 0x55, 0x56, 0x57, 0x55, 0x52,\n    0x5f, 0x5a, 0x57, 0x5c, 0x61, 0x64, 0x64, 0x64, 0x62, 0x65, 0x66, 0x63, 0x5d, 0x5c, 0x5f, 0x64,\n    0x66, 0x61, 0x60, 0x66, 0x6d, 0x6f, 0x6e, 0x6e, 0x72, 0x74, 0x71, 0x6a, 0x69, 0x6e, 0x6e, 0x6b,\n    0x6e, 0x6b, 0x69, 0x69, 0x68, 0x68, 0x6a, 0x6e, 0x72, 0x74, 0x79, 0x7e, 0x84, 0x89, 0x8e, 0x90,\n    0x91, 0x95, 0x97, 0x98, 0x98, 0x9b, 0x9c, 0x9b, 0x9e, 0xa1, 0xa3, 0xa2, 0xa4, 0xa8, 0xab, 0xab,\n    0xac, 0xad, 0xae, 0xae, 0xae, 0xae, 0xaf, 0xb0, 0xb1, 0xb1, 0xb1, 0xb0, 0xb0, 0xaf, 0xaf, 0xaf,\n    0xb0, 0xb0, 0xaf, 0xae, 0xac, 0xaa, 0xa9, 0xa8, 0xa8, 0xa7, 0xa6, 0xa5, 0xa4, 0xa2, 0x9f, 0x9d,\n    0x9d, 0x9a, 0x98, 0x96, 0x96, 0x96, 0x96, 0x95, 0x90, 0x8f, 0x8e, 0x8d, 0x8c, 0x89, 0x85, 0x82,\n    0x7f, 0x76, 0x58, 0x53, 0x62, 0x6c, 0x84, 0x9b, 0xaa, 0xb5, 0xc0, 0xc4, 0xc6, 0xc8, 0xc4, 0xbd,\n    0xb4, 0xb0, 0xad, 0xad, 0xa9, 0xa2, 0x9c, 0x9a, 0x95, 0x97, 0x98, 0x97, 0x96, 0x97, 0x9a, 0x9d,\n    0xa4, 0xa6, 0xa8, 0xa8, 0xaa, 0xb0, 0xb9, 0xc0, 0xca, 0xc9, 0xc8, 0xc8, 0xc6, 0xbe, 0xb4, 0xad,\n    0xb0, 0xb6, 0xbb, 0xcd, 0xd2, 0xc9, 0xc8, 0xc3, 0xbe, 0xb8, 0xb7, 0xb6, 0xa6, 0x98, 0xa9, 0xc7,\n    0xd7, 0xda, 0xd6, 0xcb, 0xc1, 0xbf, 0xc1, 0xc3, 0xc6, 0xbf, 0xc9, 0xcb, 0xec, 0xe4, 0xe5, 0xdc,\n    0xde, 0xd3, 0xe9, 0xb8, 0x3c, 0x84, 0x92, 0x58, 0x64, 0x96, 0xc6, 0xde, 0xe4, 0xdd, 0xdd, 0xe9,\n    0x9e, 0x31, 0x75, 0xc9, 0xb6, 0xbc, 0xb7, 0xb4, 0xb4, 0xb0, 0xaf, 0xb2, 0xb2, 0xb3, 0xbb, 0xc6,\n    0xd4, 0xd5, 0xd8, 0xdb, 0xdc, 0xdd, 0xdd, 0xdd, 0xe1, 0xc8, 0x9d, 0x9e, 0xa2, 0x9c, 0xa7, 0xa1,\n    0xa3, 0xa3, 0xa3, 0xa2, 0xa1, 0x9f, 0x9e, 0x9e, 0x9d, 0xa1, 0xa3, 0xa2, 0xa2, 0xa4, 0xa6, 0xa6,\n    0xb0, 0xb0, 0xb1, 0xb7, 0xbf, 0xc7, 0xcc, 0xcd, 0xd3, 0xd3, 0xd3, 0xd2, 0xd0, 0xcc, 0xc7, 0xc3,\n    0xc8, 0xcf, 0xd2, 0xcf, 0xcd, 0xce, 0xcd, 0xca, 0xc3, 0xc6, 0xc4, 0xba, 0xa9, 0x96, 0x85, 0x7c,\n    0x70, 0x7e, 0x8d, 0x93, 0x95, 0x96, 0x90, 0x88, 0x71, 0x75, 0x71, 0x70, 0x7a, 0x85, 0x8b, 0x90,\n    0x90, 0x90, 0x84, 0x74, 0x77, 0x85, 0x83, 0x74, 0x72, 0x74, 0x77, 0x79, 0x75, 0x6f, 0x6a, 0x6a,\n    0x6c, 0x6d, 0x6a, 0x61, 0x60, 0x6f, 0x78, 0x71, 0x69, 0x72, 0x82, 0x88, 0x7a, 0x69, 0x6f, 0x81,\n    0x83, 0x75, 0x6d, 0x6c, 0x6a, 0x69, 0x67, 0x63, 0x6e, 0x65, 0x57, 0x4f, 0x4f, 0x51, 0x4f, 0x4c,\n    0x52, 0x4c, 0x4c, 0x4b, 0x46, 0x4c, 0x64, 0x7c, 0x71, 0x6c, 0x58, 0x3d, 0x2c, 0x2b, 0x3c, 0x52,\n    0x65, 0x62, 0x61, 0x62, 0x61, 0x58, 0x49, 0x3d, 0x3f, 0x3b, 0x3b, 0x3f, 0x40, 0x3c, 0x3b, 0x3d,\n    0x56, 0x65, 0x6a, 0x5c, 0x51, 0x54, 0x59, 0x58, 0x4a, 0x4b, 0x4d, 0x49, 0x4c, 0x61, 0x66, 0x55,\n    0x2c, 0x29, 0x27, 0x27, 0x23, 0x1e, 0x25, 0x31, 0x35, 0x4f, 0x85, 0x96, 0x89, 0x65, 0x47, 0x46,\n    0x69, 0x69, 0x6d, 0x71, 0x6e, 0x66, 0x66, 0x6b, 0x6e, 0x73, 0x78, 0x77, 0x6d, 0x64, 0x65, 0x6c,\n    0x62, 0x69, 0x64, 0x55, 0x4d, 0x4e, 0x49, 0x3f, 0x3d, 0x3e, 0x40, 0x3f, 0x3b, 0x34, 0x2d, 0x2a,\n    0x20, 0x1d, 0x1a, 0x19, 0x18, 0x17, 0x19, 0x1c, 0x1c, 0x18, 0x14, 0x11, 0x10, 0x16, 0x27, 0x37,\n    0x42, 0x3b, 0x3e, 0x4a, 0x54, 0x58, 0x50, 0x41, 0x36, 0x36, 0x35, 0x3c, 0x2c, 0x30, 0x34, 0x3f,\n    0x4e, 0x59, 0x61, 0x53, 0x35, 0x2d, 0x44, 0x5d, 0x6b, 0x72, 0x73, 0x6c, 0x66, 0x6a, 0x75, 0x7c,\n    0x62, 0x66, 0x6c, 0x6b, 0x64, 0x5f, 0x62, 0x68, 0x65, 0x62, 0x5f, 0x5d, 0x5d, 0x5e, 0x5f, 0x5f,\n    0x5e, 0x5e, 0x62, 0x69, 0x6b, 0x6b, 0x70, 0x76, 0x7e, 0x88, 0x8c, 0x80, 0x6b, 0x5d, 0x5a, 0x5b,\n    0x60, 0x60, 0x60, 0x61, 0x64, 0x63, 0x5c, 0x54, 0x50, 0x51, 0x53, 0x58, 0x61, 0x6a, 0x6e, 0x6e,\n    0x6b, 0x78, 0x81, 0x7d, 0x6f, 0x64, 0x5f, 0x5e, 0x5e, 0x5d, 0x61, 0x69, 0x6b, 0x6a, 0x6d, 0x73,\n    0x75, 0x6f, 0x65, 0x5a, 0x58, 0x5e, 0x67, 0x6d, 0x67, 0x64, 0x5e, 0x59, 0x58, 0x5d, 0x65, 0x6a,\n    0x68, 0x60, 0x5d, 0x5e, 0x58, 0x4b, 0x46, 0x4b, 0x57, 0x55, 0x54, 0x58, 0x60, 0x67, 0x6b, 0x6c,\n    0x63, 0x60, 0x5f, 0x62, 0x60, 0x5a, 0x59, 0x5b, 0x57, 0x5f, 0x65, 0x63, 0x5d, 0x58, 0x54, 0x51,\n    0x4d, 0x57, 0x63, 0x6e, 0x75, 0x79, 0x77, 0x73, 0x67, 0x5e, 0x57, 0x56, 0x5a, 0x5e, 0x62, 0x65,\n    0x61, 0x59, 0x54, 0x58, 0x60, 0x63, 0x61, 0x5f, 0x58, 0x5b, 0x5e, 0x5b, 0x57, 0x56, 0x5c, 0x62,\n    0x5d, 0x56, 0x51, 0x53, 0x5a, 0x61, 0x65, 0x69, 0x65, 0x62, 0x5d, 0x57, 0x54, 0x53, 0x55, 0x57,\n    0x5b, 0x5b, 0x5b, 0x5b, 0x59, 0x58, 0x5d, 0x63, 0x63, 0x67, 0x6a, 0x6b, 0x6e, 0x73, 0x72, 0x6d,\n    0x68, 0x61, 0x60, 0x68, 0x6e, 0x6e, 0x6e, 0x72, 0x70, 0x75, 0x7d, 0x83, 0x88, 0x8c, 0x90, 0x93,\n    0x92, 0x96, 0x99, 0x99, 0x9a, 0x9d, 0x9f, 0x9f, 0xa2, 0xa5, 0xa7, 0xa6, 0xa7, 0xab, 0xae, 0xae,\n    0xae, 0xaf, 0xb0, 0xb0, 0xb0, 0xb0, 0xb1, 0xb2, 0xb3, 0xb2, 0xb2, 0xb2, 0xb1, 0xb1, 0xb1, 0xb0,\n    0xb1, 0xb0, 0xb0, 0xae, 0xac, 0xab, 0xa9, 0xa8, 0xa9, 0xa7, 0xa5, 0xa4, 0xa3, 0xa1, 0x9f, 0x9d,\n    0x9c, 0x99, 0x95, 0x94, 0x94, 0x95, 0x96, 0x96, 0x91, 0x91, 0x90, 0x90, 0x8f, 0x8d, 0x8a, 0x88,\n    0x88, 0x7b, 0x58, 0x53, 0x65, 0x75, 0x8e, 0xa3, 0xb1, 0xba, 0xc1, 0xc3, 0xc3, 0xc3, 0xbf, 0xb8,\n    0xac, 0xae, 0xb0, 0xad, 0xa5, 0x9c, 0x99, 0x9b, 0x96, 0x99, 0x9b, 0x9c, 0x9b, 0x9a, 0x9c, 0x9e,\n    0xa6, 0xa7, 0xa7, 0xa8, 0xab, 0xb1, 0xb9, 0xbe, 0xc8, 0xc8, 0xc9, 0xc8, 0xc3, 0xb8, 0xaa, 0xa0,\n    0x9f, 0xa2, 0xa7, 0xbf, 0xc9, 0xc2, 0xc5, 0xc5, 0xc2, 0xb9, 0xb3, 0xac, 0x9e, 0x97, 0xaf, 0xcf,\n    0xd0, 0xcd, 0xc6, 0xbf, 0xbb, 0xbc, 0xbc, 0xbb, 0xc3, 0xbf, 0xc5, 0xc4, 0xe5, 0xe6, 0xe9, 0xe0,\n    0xdc, 0xd7, 0xe5, 0xcb, 0x66, 0x56, 0x5c, 0x63, 0xc0, 0xcf, 0xd7, 0xd7, 0xd9, 0xda, 0xdf, 0xe9,\n    0x81, 0x2b, 0x7d, 0xc4, 0xaf, 0xb3, 0xbd, 0xb0, 0xba, 0xb7, 0xb5, 0xb7, 0xb8, 0xba, 0xc2, 0xcb,\n    0xd4, 0xd6, 0xd9, 0xdb, 0xdd, 0xdd, 0xdd, 0xdc, 0xe6, 0xcd, 0xa4, 0xa1, 0xa5, 0xa2, 0xad, 0xa7,\n    0x9e, 0x9e, 0x9f, 0x9e, 0x9d, 0x9e, 0xa2, 0xa5, 0xa6, 0xad, 0xb7, 0xc0, 0xca, 0xd5, 0xdd, 0xe0,\n    0xda, 0xd7, 0xd4, 0xd4, 0xd6, 0xd9, 0xda, 0xda, 0xd8, 0xd7, 0xd6, 0xd5, 0xd3, 0xd0, 0xcc, 0xc9,\n    0xcc, 0xce, 0xcf, 0xd0, 0xcf, 0xce, 0xcd, 0xcc, 0xc1, 0xc3, 0xc0, 0xb3, 0xa2, 0x93, 0x87, 0x7f,\n    0x7e, 0x82, 0x87, 0x8a, 0x8e, 0x8d, 0x80, 0x72, 0x81, 0x8d, 0x8a, 0x7d, 0x7a, 0x7c, 0x7a, 0x79,\n    0x8f, 0x93, 0x8a, 0x77, 0x73, 0x7e, 0x80, 0x77, 0x75, 0x78, 0x7a, 0x7c, 0x7d, 0x7b, 0x73, 0x6b,\n    0x57, 0x6f, 0x80, 0x73, 0x62, 0x67, 0x6f, 0x6a, 0x7a, 0x82, 0x89, 0x83, 0x72, 0x6b, 0x79, 0x8d,\n    0x87, 0x84, 0x78, 0x68, 0x5d, 0x58, 0x60, 0x6e, 0x6f, 0x70, 0x6c, 0x65, 0x63, 0x63, 0x59, 0x4c,\n    0x47, 0x42, 0x54, 0x67, 0x6c, 0x79, 0x7d, 0x6b, 0x5a, 0x52, 0x49, 0x3e, 0x38, 0x46, 0x5f, 0x6f,\n    0x79, 0x6e, 0x5f, 0x55, 0x4e, 0x42, 0x31, 0x24, 0x22, 0x24, 0x31, 0x41, 0x40, 0x39, 0x43, 0x57,\n    0x6e, 0x72, 0x73, 0x74, 0x77, 0x79, 0x72, 0x69, 0x79, 0x7c, 0x7b, 0x72, 0x70, 0x7d, 0x7e, 0x6e,\n    0x55, 0x40, 0x2d, 0x2a, 0x2d, 0x2d, 0x2e, 0x32, 0x45, 0x5c, 0x7e, 0x8d, 0x84, 0x75, 0x58, 0x4f,\n    0x4a, 0x49, 0x53, 0x69, 0x7e, 0x89, 0x8c, 0x8d, 0x85, 0x90, 0x91, 0x88, 0x8a, 0x99, 0x9f, 0x99,\n    0x89, 0x84, 0x7b, 0x6f, 0x61, 0x58, 0x58, 0x5c, 0x5e, 0x58, 0x4e, 0x43, 0x39, 0x2d, 0x20, 0x17,\n    0x18, 0x16, 0x13, 0x14, 0x1b, 0x26, 0x2d, 0x2e, 0x1e, 0x1b, 0x17, 0x14, 0x12, 0x15, 0x1f, 0x28,\n    0x2c, 0x1e, 0x1c, 0x27, 0x36, 0x3e, 0x35, 0x23, 0x15, 0x22, 0x24, 0x29, 0x2d, 0x3f, 0x49, 0x56,\n    0x6b, 0x70, 0x5f, 0x3f, 0x2e, 0x2e, 0x34, 0x37, 0x53, 0x6c, 0x81, 0x86, 0x81, 0x7c, 0x6f, 0x62,\n    0x5c, 0x5d, 0x5d, 0x5b, 0x57, 0x57, 0x5e, 0x64, 0x63, 0x5e, 0x5a, 0x58, 0x58, 0x58, 0x58, 0x5a,\n    0x5c, 0x62, 0x6c, 0x76, 0x78, 0x75, 0x74, 0x76, 0x83, 0x89, 0x8c, 0x87, 0x7d, 0x73, 0x6a, 0x64,\n    0x64, 0x62, 0x5f, 0x60, 0x65, 0x67, 0x62, 0x5b, 0x54, 0x59, 0x5a, 0x59, 0x5c, 0x64, 0x6b, 0x6e,\n    0x68, 0x75, 0x7d, 0x76, 0x66, 0x5d, 0x5e, 0x62, 0x5f, 0x5a, 0x5e, 0x6b, 0x71, 0x6d, 0x6b, 0x6f,\n    0x71, 0x6b, 0x62, 0x5c, 0x5b, 0x5d, 0x5e, 0x5d, 0x63, 0x61, 0x5c, 0x58, 0x5a, 0x63, 0x6d, 0x73,\n    0x58, 0x62, 0x65, 0x5d, 0x55, 0x53, 0x53, 0x51, 0x50, 0x52, 0x5f, 0x72, 0x7a, 0x72, 0x68, 0x65,\n    0x5e, 0x61, 0x68, 0x6b, 0x66, 0x5f, 0x61, 0x68, 0x65, 0x69, 0x6e, 0x6e, 0x67, 0x5f, 0x58, 0x55,\n    0x51, 0x56, 0x5f, 0x6d, 0x7f, 0x89, 0x83, 0x76, 0x6a, 0x5e, 0x57, 0x5c, 0x62, 0x66, 0x6b, 0x72,\n    0x86, 0x80, 0x7a, 0x74, 0x6d, 0x64, 0x5f, 0x5e, 0x69, 0x6e, 0x70, 0x69, 0x5d, 0x58, 0x5c, 0x63,\n    0x5a, 0x56, 0x54, 0x56, 0x59, 0x5c, 0x60, 0x64, 0x63, 0x65, 0x64, 0x5c, 0x53, 0x52, 0x5a, 0x63,\n    0x62, 0x62, 0x62, 0x61, 0x60, 0x64, 0x6d, 0x75, 0x76, 0x79, 0x7a, 0x7a, 0x7b, 0x7a, 0x74, 0x6c,\n    0x65, 0x5d, 0x5e, 0x6a, 0x6f, 0x68, 0x63, 0x66, 0x6c, 0x73, 0x7d, 0x84, 0x88, 0x8c, 0x90, 0x94,\n    0x94, 0x98, 0x9b, 0x9b, 0x9d, 0xa1, 0xa3, 0xa3, 0xa4, 0xa7, 0xa9, 0xa9, 0xab, 0xaf, 0xb1, 0xb1,\n    0xb0, 0xb1, 0xb2, 0xb2, 0xb2, 0xb2, 0xb3, 0xb4, 0xb4, 0xb4, 0xb4, 0xb3, 0xb3, 0xb3, 0xb2, 0xb2,\n    0xb1, 0xb0, 0xb0, 0xaf, 0xad, 0xab, 0xaa, 0xa9, 0xa9, 0xa7, 0xa5, 0xa3, 0xa1, 0xa0, 0x9e, 0x9d,\n    0x9b, 0x98, 0x96, 0x94, 0x94, 0x95, 0x95, 0x94, 0x92, 0x91, 0x90, 0x90, 0x8f, 0x8e, 0x8b, 0x89,\n    0x87, 0x7c, 0x5c, 0x59, 0x6e, 0x7e, 0x94, 0xa4, 0xb6, 0xbd, 0xc3, 0xc3, 0xc1, 0xbe, 0xb8, 0xb2,\n    0xab, 0xae, 0xae, 0xa9, 0x9f, 0x98, 0x97, 0x9a, 0x99, 0x9b, 0x9e, 0x9f, 0x9e, 0x9f, 0xa1, 0xa3,\n    0xa8, 0xa7, 0xa7, 0xa9, 0xad, 0xb4, 0xba, 0xbf, 0xc1, 0xc3, 0xc4, 0xc5, 0xc1, 0xb5, 0xa3, 0x93,\n    0x97, 0x97, 0x9c, 0xb6, 0xc3, 0xbe, 0xc1, 0xc2, 0xc4, 0xc0, 0xba, 0xa9, 0x91, 0x88, 0xa0, 0xc0,\n    0xc9, 0xbf, 0xb6, 0xb7, 0xc0, 0xc5, 0xc1, 0xb9, 0xc5, 0xc6, 0xca, 0xca, 0xe8, 0xf2, 0xf6, 0xed,\n    0xeb, 0xee, 0xe5, 0xe4, 0xb4, 0x5e, 0x5c, 0xb0, 0xe1, 0xe2, 0xe1, 0xe2, 0xe8, 0xeb, 0xe7, 0xe3,\n    0x81, 0x4c, 0x92, 0xc1, 0xb8, 0xb7, 0xc3, 0xb8, 0xbb, 0xb8, 0xb7, 0xb8, 0xb9, 0xbb, 0xc1, 0xc8,\n    0xd5, 0xd7, 0xd9, 0xdb, 0xdd, 0xdd, 0xdc, 0xdb, 0xdc, 0xcb, 0xaf, 0xac, 0xb0, 0xb1, 0xba, 0xb7,\n    0xc6, 0xc8, 0xca, 0xca, 0xca, 0xcd, 0xd2, 0xd7, 0xdd, 0xe0, 0xe0, 0xde, 0xdc, 0xdc, 0xda, 0xd7,\n    0xe0, 0xde, 0xdb, 0xda, 0xda, 0xdb, 0xda, 0xd9, 0xda, 0xd8, 0xd4, 0xd2, 0xcf, 0xcc, 0xc9, 0xc7,\n    0xcc, 0xcb, 0xcd, 0xd2, 0xd3, 0xce, 0xc9, 0xc7, 0xc5, 0xc1, 0xbc, 0xb3, 0xa3, 0x93, 0x8c, 0x8d,\n    0x9a, 0x99, 0x98, 0x9a, 0x9e, 0x9d, 0x90, 0x82, 0x66, 0x77, 0x7f, 0x7f, 0x83, 0x87, 0x88, 0x8a,\n    0x91, 0x96, 0x8c, 0x76, 0x6a, 0x71, 0x77, 0x75, 0x69, 0x70, 0x76, 0x7a, 0x7e, 0x81, 0x7a, 0x71,\n    0x6f, 0x69, 0x67, 0x65, 0x62, 0x6a, 0x78, 0x7e, 0x7b, 0x80, 0x7f, 0x76, 0x6d, 0x72, 0x82, 0x91,\n    0x90, 0x8c, 0x77, 0x63, 0x5e, 0x5c, 0x63, 0x73, 0x61, 0x64, 0x63, 0x5e, 0x5b, 0x59, 0x54, 0x4d,\n    0x57, 0x64, 0x78, 0x80, 0x7c, 0x7d, 0x71, 0x59, 0x46, 0x3c, 0x3d, 0x41, 0x41, 0x4b, 0x55, 0x51,\n    0x42, 0x42, 0x45, 0x4d, 0x52, 0x4a, 0x36, 0x25, 0x24, 0x27, 0x31, 0x3a, 0x37, 0x38, 0x52, 0x72,\n    0x8e, 0x8c, 0x87, 0x7b, 0x6e, 0x68, 0x6d, 0x75, 0x78, 0x7e, 0x84, 0x85, 0x86, 0x8f, 0x96, 0x95,\n    0x9a, 0x9c, 0x92, 0x77, 0x5d, 0x4b, 0x40, 0x37, 0x3b, 0x3e, 0x4d, 0x73, 0x7c, 0x7b, 0x63, 0x5f,\n    0x78, 0x77, 0x79, 0x81, 0x85, 0x83, 0x7f, 0x7d, 0x88, 0x84, 0x8f, 0xa4, 0xa8, 0x92, 0x77, 0x6a,\n    0x56, 0x3f, 0x36, 0x49, 0x62, 0x69, 0x64, 0x5e, 0x47, 0x3e, 0x2f, 0x24, 0x21, 0x23, 0x23, 0x22,\n    0x20, 0x23, 0x1e, 0x18, 0x1f, 0x2c, 0x2a, 0x1e, 0x10, 0x12, 0x16, 0x18, 0x19, 0x1e, 0x26, 0x2d,\n    0x32, 0x27, 0x21, 0x20, 0x1f, 0x22, 0x21, 0x19, 0x18, 0x1d, 0x17, 0x20, 0x40, 0x55, 0x4c, 0x43,\n    0x53, 0x60, 0x50, 0x2e, 0x23, 0x2b, 0x38, 0x44, 0x50, 0x51, 0x4d, 0x48, 0x48, 0x4d, 0x49, 0x42,\n    0x63, 0x61, 0x5d, 0x59, 0x59, 0x5c, 0x60, 0x61, 0x57, 0x54, 0x54, 0x57, 0x59, 0x5a, 0x5c, 0x5f,\n    0x68, 0x69, 0x6b, 0x6e, 0x6f, 0x71, 0x75, 0x7a, 0x7a, 0x80, 0x87, 0x88, 0x86, 0x7f, 0x75, 0x6c,\n    0x69, 0x63, 0x5b, 0x59, 0x5f, 0x64, 0x62, 0x5c, 0x5c, 0x65, 0x6a, 0x65, 0x5b, 0x57, 0x5a, 0x5f,\n    0x68, 0x71, 0x75, 0x6d, 0x62, 0x5c, 0x5c, 0x5e, 0x5d, 0x56, 0x5a, 0x67, 0x6c, 0x68, 0x69, 0x72,\n    0x71, 0x65, 0x5b, 0x5b, 0x60, 0x62, 0x5b, 0x53, 0x58, 0x61, 0x6a, 0x6d, 0x6e, 0x70, 0x71, 0x70,\n    0x66, 0x6e, 0x6b, 0x5a, 0x4c, 0x4d, 0x53, 0x55, 0x59, 0x6b, 0x77, 0x75, 0x73, 0x73, 0x6a, 0x5b,\n    0x6a, 0x71, 0x79, 0x76, 0x68, 0x5d, 0x61, 0x6d, 0x78, 0x75, 0x6f, 0x6a, 0x65, 0x62, 0x62, 0x62,\n    0x61, 0x5f, 0x5d, 0x63, 0x76, 0x8a, 0x91, 0x8d, 0x7d, 0x73, 0x6f, 0x73, 0x73, 0x6d, 0x6c, 0x72,\n    0x7a, 0x75, 0x72, 0x74, 0x78, 0x7e, 0x85, 0x8c, 0x7a, 0x74, 0x6c, 0x69, 0x6a, 0x6a, 0x66, 0x62,\n    0x66, 0x66, 0x67, 0x67, 0x65, 0x62, 0x64, 0x68, 0x64, 0x6a, 0x6e, 0x68, 0x5d, 0x56, 0x58, 0x5d,\n    0x62, 0x64, 0x68, 0x6d, 0x73, 0x78, 0x7c, 0x7e, 0x7d, 0x7c, 0x7c, 0x7e, 0x81, 0x80, 0x79, 0x72,\n    0x6d, 0x69, 0x6c, 0x76, 0x74, 0x66, 0x5e, 0x5f, 0x6b, 0x72, 0x7c, 0x84, 0x89, 0x8d, 0x91, 0x95,\n    0x96, 0x9a, 0x9d, 0x9e, 0xa0, 0xa3, 0xa5, 0xa5, 0xa4, 0xa7, 0xaa, 0xab, 0xad, 0xb1, 0xb3, 0xb3,\n    0xb1, 0xb2, 0xb3, 0xb4, 0xb3, 0xb3, 0xb5, 0xb6, 0xb6, 0xb5, 0xb5, 0xb5, 0xb4, 0xb4, 0xb4, 0xb4,\n    0xb0, 0xb0, 0xb0, 0xaf, 0xae, 0xad, 0xab, 0xab, 0xa9, 0xa7, 0xa4, 0xa2, 0xa1, 0x9f, 0x9d, 0x9c,\n    0x9a, 0x99, 0x97, 0x97, 0x96, 0x95, 0x93, 0x91, 0x92, 0x91, 0x91, 0x91, 0x91, 0x90, 0x8e, 0x8c,\n    0x86, 0x7e, 0x62, 0x61, 0x77, 0x86, 0x9a, 0xa8, 0xb7, 0xbc, 0xc2, 0xc2, 0xbf, 0xb9, 0xb2, 0xac,\n    0xae, 0xad, 0xa8, 0xa0, 0x99, 0x96, 0x97, 0x99, 0x98, 0x99, 0x9b, 0x9c, 0x9c, 0x9f, 0xa4, 0xa8,\n    0xa9, 0xa9, 0xaa, 0xac, 0xb0, 0xb6, 0xbc, 0xbf, 0xc0, 0xbf, 0xbe, 0xbe, 0xbe, 0xb7, 0xa5, 0x93,\n    0x96, 0x95, 0x98, 0xb1, 0xbf, 0xbc, 0xc0, 0xc0, 0xb8, 0xbd, 0xc1, 0xb8, 0xa4, 0x96, 0x9b, 0xaa,\n    0xb8, 0xae, 0xa5, 0xa7, 0xb1, 0xbb, 0xbf, 0xbf, 0xbd, 0xc3, 0xc7, 0xc7, 0xe1, 0xed, 0xf0, 0xe9,\n    0xee, 0xe8, 0xe5, 0xe8, 0xda, 0xac, 0xb8, 0xd9, 0xe3, 0xe6, 0xe7, 0xe3, 0xdd, 0xe0, 0xe7, 0xea,\n    0xb1, 0x97, 0xb5, 0xc2, 0xc2, 0xba, 0xbf, 0xbd, 0xb9, 0xb8, 0xb9, 0xbc, 0xc0, 0xc5, 0xcb, 0xd0,\n    0xd7, 0xd8, 0xd9, 0xdb, 0xdb, 0xdb, 0xdb, 0xda, 0xe6, 0xe1, 0xd7, 0xd9, 0xdc, 0xdf, 0xe6, 0xe5,\n    0xe3, 0xe5, 0xe7, 0xe5, 0xe3, 0xe2, 0xe5, 0xe8, 0xe1, 0xe3, 0xe3, 0xe2, 0xe1, 0xe1, 0xdf, 0xdc,\n    0xd8, 0xd9, 0xd9, 0xdb, 0xdc, 0xdc, 0xda, 0xd9, 0xd8, 0xd5, 0xd1, 0xce, 0xcc, 0xca, 0xc8, 0xc7,\n    0xcd, 0xcb, 0xcd, 0xd2, 0xd3, 0xce, 0xc8, 0xc5, 0xbf, 0xb8, 0xb6, 0xb4, 0xa3, 0x8b, 0x82, 0x88,\n    0x94, 0x96, 0x99, 0x9c, 0x9d, 0x97, 0x89, 0x7d, 0x7f, 0x82, 0x7f, 0x7c, 0x7c, 0x7a, 0x7c, 0x85,\n    0x98, 0x9c, 0x8f, 0x75, 0x64, 0x67, 0x6e, 0x6e, 0x68, 0x72, 0x7a, 0x7c, 0x7e, 0x7f, 0x7b, 0x74,\n    0x6b, 0x63, 0x69, 0x75, 0x76, 0x72, 0x71, 0x71, 0x70, 0x7c, 0x82, 0x7b, 0x71, 0x6e, 0x73, 0x76,\n    0x7e, 0x76, 0x60, 0x57, 0x64, 0x69, 0x66, 0x6a, 0x6e, 0x68, 0x63, 0x5e, 0x57, 0x52, 0x55, 0x5b,\n    0x78, 0x8c, 0x8c, 0x7d, 0x75, 0x67, 0x51, 0x43, 0x42, 0x39, 0x40, 0x4d, 0x52, 0x55, 0x4d, 0x3a,\n    0x29, 0x27, 0x29, 0x30, 0x38, 0x38, 0x2f, 0x25, 0x2c, 0x28, 0x24, 0x27, 0x34, 0x52, 0x7b, 0x9a,\n    0x9d, 0x93, 0x8a, 0x83, 0x7a, 0x6d, 0x63, 0x5f, 0x66, 0x70, 0x80, 0x8d, 0x90, 0x8c, 0x90, 0x9b,\n    0xa5, 0xa7, 0xa9, 0xae, 0xb6, 0xb3, 0x9c, 0x82, 0x70, 0x55, 0x3c, 0x56, 0x69, 0x79, 0x74, 0x75,\n    0x70, 0x6d, 0x67, 0x5c, 0x52, 0x54, 0x62, 0x71, 0x80, 0x8f, 0x92, 0x7c, 0x5e, 0x4c, 0x49, 0x4a,\n    0x45, 0x48, 0x47, 0x47, 0x4e, 0x52, 0x45, 0x30, 0x27, 0x27, 0x26, 0x25, 0x2b, 0x36, 0x3f, 0x42,\n    0x35, 0x30, 0x2b, 0x2b, 0x30, 0x31, 0x2a, 0x21, 0x33, 0x38, 0x3c, 0x3c, 0x3b, 0x3d, 0x43, 0x48,\n    0x43, 0x3c, 0x38, 0x30, 0x24, 0x1f, 0x1f, 0x1b, 0x1c, 0x16, 0x1b, 0x39, 0x5e, 0x57, 0x3d, 0x31,\n    0x50, 0x51, 0x3b, 0x22, 0x20, 0x27, 0x30, 0x3d, 0x46, 0x46, 0x4b, 0x53, 0x56, 0x50, 0x45, 0x3e,\n    0x64, 0x64, 0x62, 0x61, 0x62, 0x63, 0x5f, 0x5a, 0x53, 0x52, 0x55, 0x5a, 0x5b, 0x57, 0x58, 0x5c,\n    0x65, 0x65, 0x64, 0x62, 0x62, 0x66, 0x6d, 0x72, 0x6f, 0x7b, 0x87, 0x8a, 0x88, 0x82, 0x7c, 0x78,\n    0x72, 0x6b, 0x62, 0x5d, 0x61, 0x66, 0x65, 0x61, 0x66, 0x73, 0x7f, 0x7c, 0x6a, 0x57, 0x53, 0x57,\n    0x65, 0x69, 0x6b, 0x68, 0x64, 0x62, 0x60, 0x5d, 0x5a, 0x56, 0x59, 0x62, 0x65, 0x65, 0x6d, 0x7a,\n    0x78, 0x69, 0x5b, 0x5b, 0x62, 0x66, 0x61, 0x5c, 0x57, 0x61, 0x6b, 0x6d, 0x6e, 0x70, 0x6f, 0x6c,\n    0x73, 0x6a, 0x5f, 0x53, 0x48, 0x46, 0x53, 0x62, 0x77, 0x6e, 0x62, 0x5e, 0x67, 0x71, 0x6f, 0x66,\n    0x78, 0x79, 0x79, 0x72, 0x63, 0x5a, 0x61, 0x6f, 0x73, 0x6d, 0x60, 0x52, 0x4c, 0x4f, 0x56, 0x59,\n    0x62, 0x64, 0x65, 0x65, 0x69, 0x73, 0x7e, 0x84, 0x87, 0x7e, 0x77, 0x72, 0x6d, 0x69, 0x6f, 0x79,\n    0x80, 0x78, 0x73, 0x76, 0x7b, 0x7b, 0x77, 0x73, 0x6a, 0x66, 0x62, 0x62, 0x67, 0x6a, 0x69, 0x67,\n    0x68, 0x6b, 0x6f, 0x71, 0x6f, 0x6c, 0x6e, 0x73, 0x6c, 0x69, 0x64, 0x5e, 0x5a, 0x58, 0x57, 0x57,\n    0x5e, 0x60, 0x61, 0x64, 0x6a, 0x70, 0x72, 0x71, 0x6f, 0x6e, 0x70, 0x76, 0x80, 0x84, 0x82, 0x7e,\n    0x74, 0x73, 0x78, 0x7e, 0x7a, 0x70, 0x6b, 0x6e, 0x71, 0x76, 0x7e, 0x85, 0x8a, 0x8e, 0x93, 0x96,\n    0x97, 0x9c, 0xa0, 0xa1, 0xa3, 0xa6, 0xa7, 0xa6, 0xa4, 0xa8, 0xab, 0xac, 0xae, 0xb1, 0xb3, 0xb3,\n    0xb2, 0xb3, 0xb4, 0xb4, 0xb4, 0xb4, 0xb5, 0xb6, 0xb7, 0xb6, 0xb6, 0xb6, 0xb5, 0xb5, 0xb5, 0xb4,\n    0xb1, 0xb1, 0xb0, 0xb0, 0xae, 0xad, 0xac, 0xab, 0xa9, 0xa7, 0xa4, 0xa2, 0xa1, 0x9f, 0x9c, 0x9b,\n    0x99, 0x98, 0x98, 0x97, 0x97, 0x94, 0x91, 0x8f, 0x8f, 0x8e, 0x8e, 0x8f, 0x90, 0x90, 0x8f, 0x8e,\n    0x89, 0x82, 0x67, 0x67, 0x7f, 0x90, 0xa3, 0xae, 0xb6, 0xba, 0xbe, 0xbf, 0xbb, 0xb4, 0xae, 0xaa,\n    0xb0, 0xab, 0xa2, 0x99, 0x95, 0x97, 0x99, 0x99, 0x99, 0x9a, 0x9b, 0x9b, 0x9c, 0xa0, 0xa7, 0xac,\n    0xab, 0xad, 0xaf, 0xb1, 0xb3, 0xb7, 0xbc, 0xbf, 0xc4, 0xc1, 0xbc, 0xb9, 0xbb, 0xba, 0xad, 0x9f,\n    0x91, 0x90, 0x8f, 0xa3, 0xb2, 0xb5, 0xbb, 0xb9, 0xb9, 0xbd, 0xc2, 0xc5, 0xc2, 0xb9, 0xb0, 0xab,\n    0xa2, 0xa3, 0xa6, 0xab, 0xb0, 0xb9, 0xc5, 0xcf, 0xc9, 0xd0, 0xd0, 0xd0, 0xde, 0xe5, 0xe3, 0xde,\n    0xdf, 0xdd, 0xe0, 0xd9, 0xd9, 0xd6, 0xe1, 0xd2, 0xd8, 0xd5, 0xd9, 0xdd, 0xde, 0xe0, 0xdb, 0xcf,\n    0xd4, 0xcb, 0xc6, 0xc1, 0xc4, 0xbf, 0xc3, 0xc9, 0xc8, 0xc9, 0xcb, 0xce, 0xd3, 0xd7, 0xdc, 0xde,\n    0xdb, 0xdb, 0xdb, 0xda, 0xda, 0xda, 0xda, 0xda, 0xdc, 0xe0, 0xe2, 0xe2, 0xe2, 0xe2, 0xe3, 0xe2,\n    0xe5, 0xe6, 0xe7, 0xe6, 0xe3, 0xe1, 0xe2, 0xe3, 0xe9, 0xe9, 0xe7, 0xe4, 0xe2, 0xe1, 0xde, 0xd9,\n    0xdf, 0xe0, 0xe0, 0xde, 0xdb, 0xd7, 0xd2, 0xcf, 0xcd, 0xcb, 0xc9, 0xc8, 0xc9, 0xca, 0xcb, 0xcb,\n    0xd1, 0xd0, 0xcf, 0xcf, 0xcf, 0xce, 0xca, 0xc7, 0xc2, 0xb8, 0xb1, 0xaa, 0x98, 0x82, 0x7e, 0x86,\n    0xa1, 0xa1, 0x9f, 0x9a, 0x92, 0x8a, 0x83, 0x7e, 0x8a, 0x8a, 0x87, 0x86, 0x88, 0x83, 0x84, 0x8f,\n    0x90, 0x92, 0x86, 0x70, 0x63, 0x67, 0x6f, 0x70, 0x70, 0x78, 0x7e, 0x7e, 0x7a, 0x76, 0x71, 0x6e,\n    0x75, 0x76, 0x7a, 0x75, 0x6c, 0x6f, 0x77, 0x79, 0x6f, 0x81, 0x8c, 0x83, 0x71, 0x67, 0x69, 0x6e,\n    0x6e, 0x71, 0x6e, 0x67, 0x66, 0x65, 0x66, 0x69, 0x64, 0x58, 0x4e, 0x4c, 0x4c, 0x50, 0x5e, 0x6d,\n    0x82, 0x90, 0x84, 0x6f, 0x66, 0x51, 0x36, 0x30, 0x2b, 0x2d, 0x3c, 0x4d, 0x52, 0x4b, 0x37, 0x22,\n    0x20, 0x20, 0x23, 0x2d, 0x3c, 0x4a, 0x52, 0x55, 0x48, 0x47, 0x3d, 0x2d, 0x2a, 0x3c, 0x59, 0x6d,\n    0x73, 0x72, 0x79, 0x86, 0x8d, 0x88, 0x7d, 0x76, 0x74, 0x78, 0x7c, 0x7f, 0x7b, 0x71, 0x73, 0x85,\n    0x87, 0x89, 0x93, 0xa0, 0xa5, 0xa3, 0xa6, 0xad, 0xa9, 0x8a, 0x5b, 0x55, 0x67, 0x80, 0x85, 0x7a,\n    0x69, 0x61, 0x56, 0x50, 0x50, 0x54, 0x57, 0x59, 0x5e, 0x55, 0x43, 0x3a, 0x4e, 0x6e, 0x79, 0x70,\n    0x74, 0x7a, 0x78, 0x68, 0x52, 0x3f, 0x36, 0x33, 0x38, 0x43, 0x4d, 0x50, 0x51, 0x52, 0x4e, 0x48,\n    0x4d, 0x40, 0x3f, 0x4e, 0x53, 0x4c, 0x4e, 0x5b, 0x69, 0x71, 0x78, 0x79, 0x74, 0x6e, 0x68, 0x63,\n    0x57, 0x4c, 0x41, 0x37, 0x2b, 0x28, 0x28, 0x24, 0x1e, 0x14, 0x2b, 0x54, 0x67, 0x47, 0x3b, 0x48,\n    0x51, 0x3c, 0x22, 0x17, 0x1c, 0x1e, 0x1b, 0x1c, 0x23, 0x25, 0x2c, 0x32, 0x30, 0x2b, 0x2d, 0x32,\n    0x56, 0x5b, 0x5f, 0x60, 0x62, 0x61, 0x5b, 0x54, 0x5b, 0x5c, 0x61, 0x65, 0x5f, 0x55, 0x51, 0x54,\n    0x5c, 0x63, 0x68, 0x68, 0x66, 0x69, 0x71, 0x78, 0x82, 0x83, 0x81, 0x79, 0x74, 0x77, 0x7d, 0x82,\n    0x79, 0x75, 0x6f, 0x6c, 0x6f, 0x73, 0x71, 0x6c, 0x6c, 0x78, 0x88, 0x8b, 0x79, 0x62, 0x5c, 0x63,\n    0x67, 0x65, 0x61, 0x5f, 0x61, 0x63, 0x61, 0x5c, 0x58, 0x58, 0x5e, 0x64, 0x65, 0x63, 0x69, 0x73,\n    0x79, 0x6e, 0x63, 0x5f, 0x5f, 0x61, 0x66, 0x6c, 0x73, 0x76, 0x75, 0x70, 0x71, 0x77, 0x78, 0x75,\n    0x69, 0x61, 0x5a, 0x5a, 0x5d, 0x63, 0x6c, 0x75, 0x69, 0x57, 0x4f, 0x5d, 0x6f, 0x73, 0x6e, 0x6c,\n    0x6c, 0x65, 0x60, 0x5e, 0x5e, 0x60, 0x69, 0x73, 0x81, 0x85, 0x7f, 0x72, 0x6a, 0x70, 0x78, 0x7a,\n    0x78, 0x7e, 0x87, 0x8a, 0x86, 0x80, 0x81, 0x84, 0x87, 0x82, 0x7a, 0x70, 0x67, 0x67, 0x75, 0x84,\n    0x84, 0x7f, 0x7d, 0x7f, 0x81, 0x7d, 0x75, 0x70, 0x6e, 0x6f, 0x6f, 0x6b, 0x65, 0x61, 0x61, 0x62,\n    0x62, 0x65, 0x6b, 0x73, 0x75, 0x73, 0x71, 0x71, 0x6e, 0x65, 0x59, 0x53, 0x54, 0x58, 0x5c, 0x5d,\n    0x5c, 0x63, 0x6a, 0x6c, 0x6f, 0x75, 0x79, 0x7a, 0x79, 0x75, 0x76, 0x7d, 0x87, 0x8b, 0x89, 0x85,\n    0x77, 0x76, 0x75, 0x75, 0x73, 0x71, 0x73, 0x77, 0x79, 0x7c, 0x80, 0x85, 0x8a, 0x8f, 0x93, 0x96,\n    0x98, 0x9d, 0xa2, 0xa3, 0xa5, 0xa7, 0xa7, 0xa6, 0xa6, 0xaa, 0xad, 0xad, 0xae, 0xb1, 0xb2, 0xb1,\n    0xb1, 0xb3, 0xb4, 0xb4, 0xb4, 0xb4, 0xb5, 0xb6, 0xb7, 0xb7, 0xb6, 0xb6, 0xb6, 0xb5, 0xb5, 0xb5,\n    0xb3, 0xb3, 0xb2, 0xb0, 0xae, 0xac, 0xaa, 0xa9, 0xa8, 0xa6, 0xa4, 0xa3, 0xa1, 0x9f, 0x9b, 0x99,\n    0x98, 0x97, 0x96, 0x95, 0x95, 0x93, 0x91, 0x90, 0x8d, 0x8c, 0x8c, 0x8c, 0x8d, 0x8e, 0x8d, 0x8c,\n    0x8a, 0x83, 0x68, 0x6c, 0x88, 0x9b, 0xa8, 0xae, 0xb6, 0xb7, 0xb9, 0xb9, 0xb6, 0xb1, 0xad, 0xac,\n    0xad, 0xa8, 0x9e, 0x95, 0x94, 0x99, 0x9c, 0x9b, 0x9c, 0x9d, 0x9d, 0x9d, 0x9f, 0xa3, 0xa9, 0xae,\n    0xae, 0xb2, 0xb5, 0xb7, 0xb6, 0xb7, 0xba, 0xbd, 0xc4, 0xc5, 0xc2, 0xbd, 0xbc, 0xbb, 0xb2, 0xa7,\n    0x94, 0x93, 0x8d, 0x99, 0xa8, 0xb2, 0xbc, 0xb7, 0xc5, 0xc4, 0xc4, 0xc5, 0xc8, 0xc5, 0xb9, 0xac,\n    0xa9, 0xaa, 0xaf, 0xb5, 0xbb, 0xc1, 0xcc, 0xd7, 0xe0, 0xe7, 0xe6, 0xe5, 0xea, 0xed, 0xea, 0xe9,\n    0xe4, 0xe8, 0xea, 0xdf, 0xe4, 0xdc, 0xd8, 0xda, 0xe2, 0xde, 0xe1, 0xe0, 0xd9, 0xdd, 0xe2, 0xdc,\n    0xd3, 0xd5, 0xc8, 0xc8, 0xc5, 0xc9, 0xcf, 0xd1, 0xd0, 0xd2, 0xd4, 0xd6, 0xd9, 0xdc, 0xdd, 0xdd,\n    0xdf, 0xde, 0xdc, 0xdb, 0xda, 0xda, 0xdb, 0xdb, 0xde, 0xe3, 0xe8, 0xe4, 0xe2, 0xe2, 0xdd, 0xda,\n    0xd6, 0xd6, 0xd5, 0xd5, 0xd5, 0xd5, 0xd6, 0xd6, 0xdc, 0xdd, 0xdc, 0xdb, 0xdd, 0xdf, 0xdf, 0xdc,\n    0xd7, 0xd8, 0xd9, 0xd9, 0xd8, 0xd5, 0xd3, 0xd2, 0xd6, 0xd3, 0xd0, 0xcd, 0xcb, 0xca, 0xc9, 0xc8,\n    0xcf, 0xd2, 0xd2, 0xcf, 0xcd, 0xcd, 0xc9, 0xc3, 0xc6, 0xc1, 0xb7, 0xa8, 0x97, 0x8d, 0x8f, 0x95,\n    0x9c, 0x99, 0x93, 0x8a, 0x81, 0x7c, 0x7d, 0x7f, 0x86, 0x90, 0x93, 0x92, 0x90, 0x89, 0x83, 0x84,\n    0x7d, 0x7f, 0x78, 0x6a, 0x66, 0x6f, 0x76, 0x75, 0x6f, 0x71, 0x75, 0x76, 0x72, 0x6b, 0x67, 0x68,\n    0x71, 0x72, 0x79, 0x7e, 0x84, 0x8a, 0x82, 0x6e, 0x75, 0x80, 0x85, 0x7d, 0x6f, 0x6a, 0x73, 0x7d,\n    0x82, 0x8a, 0x8e, 0x7e, 0x65, 0x5b, 0x63, 0x68, 0x5b, 0x4b, 0x3a, 0x36, 0x44, 0x5c, 0x74, 0x84,\n    0x7c, 0x7e, 0x74, 0x5b, 0x41, 0x31, 0x35, 0x42, 0x38, 0x45, 0x4e, 0x50, 0x4a, 0x39, 0x27, 0x20,\n    0x21, 0x29, 0x36, 0x44, 0x4d, 0x51, 0x52, 0x51, 0x4f, 0x54, 0x50, 0x3d, 0x2c, 0x2c, 0x3a, 0x46,\n    0x42, 0x58, 0x6f, 0x73, 0x66, 0x5f, 0x6b, 0x7d, 0x78, 0x78, 0x6c, 0x64, 0x6b, 0x77, 0x89, 0xa0,\n    0x98, 0x88, 0x81, 0x8d, 0x9f, 0xa9, 0xad, 0xaf, 0x96, 0x8e, 0x76, 0x6e, 0x7f, 0x89, 0x89, 0x6b,\n    0x5f, 0x58, 0x54, 0x59, 0x60, 0x5d, 0x4b, 0x39, 0x2f, 0x26, 0x38, 0x58, 0x57, 0x3c, 0x3e, 0x5b,\n    0x61, 0x54, 0x53, 0x63, 0x6e, 0x6c, 0x6a, 0x6d, 0x74, 0x7d, 0x84, 0x82, 0x7c, 0x76, 0x6c, 0x61,\n    0x59, 0x57, 0x5c, 0x64, 0x62, 0x5e, 0x6b, 0x7f, 0x92, 0x97, 0x9b, 0x9c, 0x9b, 0x96, 0x8b, 0x7f,\n    0x69, 0x5b, 0x4e, 0x42, 0x36, 0x31, 0x2e, 0x28, 0x30, 0x29, 0x43, 0x56, 0x56, 0x37, 0x38, 0x43,\n    0x23, 0x1b, 0x19, 0x19, 0x12, 0x10, 0x19, 0x21, 0x1e, 0x24, 0x29, 0x29, 0x27, 0x27, 0x2b, 0x2f,\n    0x57, 0x5f, 0x67, 0x69, 0x6b, 0x6b, 0x68, 0x63, 0x64, 0x66, 0x6d, 0x71, 0x68, 0x5a, 0x53, 0x56,\n    0x54, 0x5e, 0x66, 0x65, 0x63, 0x69, 0x77, 0x84, 0x8b, 0x88, 0x81, 0x79, 0x73, 0x6f, 0x69, 0x64,\n    0x6a, 0x69, 0x67, 0x68, 0x6c, 0x6f, 0x6b, 0x66, 0x68, 0x6f, 0x7f, 0x88, 0x7c, 0x67, 0x64, 0x6f,\n    0x71, 0x69, 0x5e, 0x56, 0x57, 0x5b, 0x5a, 0x56, 0x53, 0x59, 0x62, 0x68, 0x66, 0x5f, 0x5d, 0x60,\n    0x70, 0x6d, 0x69, 0x61, 0x58, 0x57, 0x64, 0x73, 0x79, 0x79, 0x74, 0x6d, 0x6e, 0x72, 0x6f, 0x67,\n    0x6b, 0x6d, 0x6a, 0x65, 0x69, 0x6f, 0x66, 0x55, 0x4b, 0x56, 0x5a, 0x56, 0x59, 0x68, 0x77, 0x7b,\n    0x7d, 0x6e, 0x61, 0x60, 0x65, 0x67, 0x68, 0x6a, 0x69, 0x7b, 0x86, 0x80, 0x7c, 0x82, 0x89, 0x89,\n    0x88, 0x89, 0x90, 0x99, 0x99, 0x91, 0x8c, 0x8d, 0x89, 0x8e, 0x8e, 0x85, 0x77, 0x70, 0x75, 0x7f,\n    0x8d, 0x88, 0x81, 0x79, 0x71, 0x6f, 0x74, 0x7b, 0x7f, 0x7b, 0x78, 0x78, 0x79, 0x77, 0x70, 0x6a,\n    0x65, 0x67, 0x6e, 0x78, 0x7c, 0x76, 0x6c, 0x64, 0x67, 0x64, 0x5f, 0x5b, 0x58, 0x58, 0x5b, 0x5d,\n    0x63, 0x75, 0x86, 0x89, 0x84, 0x7e, 0x7a, 0x77, 0x70, 0x6e, 0x70, 0x7c, 0x8b, 0x93, 0x92, 0x90,\n    0x8b, 0x85, 0x7c, 0x74, 0x71, 0x73, 0x77, 0x79, 0x7f, 0x80, 0x81, 0x85, 0x8a, 0x8f, 0x92, 0x94,\n    0x98, 0x9e, 0xa3, 0xa5, 0xa6, 0xa8, 0xa7, 0xa5, 0xa9, 0xac, 0xaf, 0xae, 0xae, 0xb0, 0xb1, 0xb0,\n    0xb1, 0xb2, 0xb3, 0xb4, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7, 0xb7, 0xb7, 0xb6, 0xb6, 0xb5, 0xb5, 0xb5,\n    0xb6, 0xb5, 0xb3, 0xb1, 0xae, 0xab, 0xa9, 0xa7, 0xa7, 0xa6, 0xa5, 0xa3, 0xa2, 0x9f, 0x9b, 0x98,\n    0x97, 0x95, 0x93, 0x92, 0x92, 0x92, 0x92, 0x91, 0x91, 0x8f, 0x8e, 0x8d, 0x8d, 0x8d, 0x8b, 0x8a,\n    0x88, 0x81, 0x69, 0x70, 0x91, 0xa2, 0xa9, 0xa8, 0xb6, 0xb5, 0xb5, 0xb4, 0xb1, 0xae, 0xae, 0xaf,\n    0xa9, 0xa5, 0x9c, 0x94, 0x94, 0x9a, 0x9e, 0x9d, 0x9c, 0x9d, 0x9e, 0x9e, 0x9f, 0xa3, 0xa8, 0xad,\n    0xb1, 0xb5, 0xba, 0xba, 0xb8, 0xb6, 0xb9, 0xbc, 0xbe, 0xc5, 0xc8, 0xc4, 0xbf, 0xbb, 0xb2, 0xa7,\n    0xa3, 0xa2, 0x97, 0x9d, 0xac, 0xba, 0xc5, 0xc0, 0xbd, 0xc2, 0xc8, 0xcd, 0xd1, 0xd2, 0xca, 0xc0,\n    0xc8, 0xba, 0xae, 0xad, 0xb5, 0xbf, 0xc9, 0xd1, 0xd9, 0xe0, 0xe0, 0xe4, 0xe9, 0xed, 0xec, 0xf2,\n    0xf3, 0xe9, 0xf1, 0xee, 0xec, 0xe5, 0xdf, 0xe7, 0xde, 0xdb, 0xe0, 0xdf, 0xd4, 0xd4, 0xd7, 0xce,\n    0xd0, 0xd6, 0xce, 0xd8, 0xc8, 0xcf, 0xd4, 0xcb, 0xd1, 0xd3, 0xd6, 0xd9, 0xdd, 0xe0, 0xe0, 0xde,\n    0xe3, 0xe1, 0xde, 0xdb, 0xda, 0xda, 0xdc, 0xdc, 0xdd, 0xe1, 0xe7, 0xe3, 0xe3, 0xe7, 0xe0, 0xdd,\n    0xdc, 0xda, 0xd8, 0xd7, 0xd7, 0xd8, 0xd8, 0xd8, 0xd7, 0xd8, 0xd7, 0xd7, 0xda, 0xde, 0xde, 0xdc,\n    0xcf, 0xd0, 0xd2, 0xd2, 0xd2, 0xd2, 0xd3, 0xd3, 0xd0, 0xce, 0xcc, 0xcb, 0xcb, 0xcb, 0xca, 0xca,\n    0xc8, 0xd1, 0xd5, 0xd1, 0xce, 0xcd, 0xc6, 0xbc, 0xae, 0xb7, 0xb5, 0xa5, 0x98, 0x95, 0x94, 0x90,\n    0x98, 0x97, 0x93, 0x8b, 0x7d, 0x71, 0x6c, 0x6b, 0x76, 0x88, 0x8e, 0x87, 0x84, 0x81, 0x7c, 0x79,\n    0x76, 0x79, 0x73, 0x6a, 0x6b, 0x74, 0x79, 0x76, 0x74, 0x73, 0x76, 0x7c, 0x7b, 0x75, 0x73, 0x76,\n    0x7b, 0x7e, 0x85, 0x83, 0x79, 0x77, 0x79, 0x76, 0x81, 0x84, 0x85, 0x83, 0x80, 0x81, 0x87, 0x8d,\n    0xa3, 0x9b, 0x92, 0x7e, 0x63, 0x5d, 0x60, 0x5b, 0x4d, 0x49, 0x46, 0x4a, 0x5d, 0x73, 0x79, 0x74,\n    0x7e, 0x62, 0x54, 0x4f, 0x40, 0x3c, 0x3e, 0x37, 0x3b, 0x49, 0x47, 0x39, 0x2c, 0x21, 0x22, 0x33,\n    0x44, 0x49, 0x50, 0x58, 0x62, 0x70, 0x7f, 0x8a, 0x81, 0x78, 0x66, 0x52, 0x43, 0x3f, 0x41, 0x44,\n    0x4c, 0x5c, 0x6e, 0x71, 0x60, 0x43, 0x26, 0x15, 0x2f, 0x43, 0x4b, 0x52, 0x69, 0x7b, 0x80, 0x86,\n    0x87, 0x8c, 0x8f, 0x94, 0x9f, 0xab, 0xab, 0xa2, 0xa6, 0x9e, 0x88, 0x78, 0x82, 0x7e, 0x87, 0x71,\n    0x56, 0x58, 0x58, 0x55, 0x4f, 0x46, 0x3c, 0x34, 0x1f, 0x1f, 0x1d, 0x1b, 0x1d, 0x27, 0x35, 0x3f,\n    0x51, 0x65, 0x77, 0x7c, 0x7b, 0x7d, 0x7f, 0x7d, 0x78, 0x78, 0x71, 0x62, 0x57, 0x52, 0x4a, 0x41,\n    0x4e, 0x63, 0x71, 0x6a, 0x64, 0x70, 0x85, 0x93, 0x87, 0x7c, 0x6b, 0x5c, 0x57, 0x55, 0x4c, 0x41,\n    0x48, 0x46, 0x4a, 0x4a, 0x41, 0x3a, 0x34, 0x2b, 0x2c, 0x32, 0x4b, 0x4a, 0x48, 0x3b, 0x3b, 0x29,\n    0x20, 0x12, 0x13, 0x1b, 0x18, 0x19, 0x1a, 0x14, 0x1a, 0x1f, 0x1f, 0x1b, 0x1e, 0x27, 0x28, 0x22,\n    0x5b, 0x57, 0x58, 0x61, 0x69, 0x6b, 0x6a, 0x6a, 0x65, 0x6b, 0x7c, 0x8a, 0x81, 0x68, 0x58, 0x57,\n    0x5f, 0x68, 0x67, 0x68, 0x73, 0x75, 0x75, 0x7e, 0x85, 0x72, 0x6e, 0x7b, 0x87, 0x90, 0x88, 0x71,\n    0x6a, 0x6c, 0x6b, 0x67, 0x69, 0x6e, 0x6c, 0x65, 0x5c, 0x62, 0x72, 0x74, 0x77, 0x78, 0x6a, 0x63,\n    0x60, 0x62, 0x60, 0x5a, 0x56, 0x58, 0x5a, 0x5a, 0x5c, 0x5c, 0x5f, 0x62, 0x5e, 0x5a, 0x5e, 0x67,\n    0x6e, 0x67, 0x5e, 0x5a, 0x58, 0x59, 0x5d, 0x62, 0x64, 0x6d, 0x6f, 0x6a, 0x6a, 0x71, 0x72, 0x6c,\n    0x70, 0x70, 0x73, 0x76, 0x73, 0x68, 0x5b, 0x52, 0x51, 0x55, 0x5f, 0x67, 0x67, 0x68, 0x73, 0x82,\n    0x7d, 0x84, 0x87, 0x81, 0x74, 0x66, 0x5d, 0x59, 0x5b, 0x5f, 0x64, 0x69, 0x6f, 0x75, 0x7d, 0x82,\n    0x8a, 0x8c, 0x8b, 0x85, 0x7c, 0x7b, 0x88, 0x98, 0xa6, 0x9f, 0x96, 0x8d, 0x85, 0x80, 0x7e, 0x7f,\n    0x8a, 0x95, 0x9d, 0x96, 0x88, 0x7d, 0x7a, 0x7b, 0x88, 0x8b, 0x87, 0x79, 0x6d, 0x6b, 0x6d, 0x6d,\n    0x6b, 0x6d, 0x75, 0x7d, 0x7b, 0x70, 0x63, 0x5d, 0x66, 0x6d, 0x6d, 0x67, 0x6a, 0x75, 0x75, 0x6b,\n    0x65, 0x6c, 0x6d, 0x69, 0x6a, 0x6f, 0x6e, 0x67, 0x6d, 0x71, 0x77, 0x7a, 0x7d, 0x86, 0x94, 0x9e,\n    0xa3, 0x97, 0x89, 0x7d, 0x76, 0x76, 0x7e, 0x86, 0x88, 0x81, 0x78, 0x85, 0x8d, 0x8c, 0x96, 0x9a,\n    0x9c, 0x9e, 0xa1, 0xa4, 0xa5, 0xa7, 0xa9, 0xaa, 0xad, 0xad, 0xae, 0xae, 0xaf, 0xb1, 0xb2, 0xb2,\n    0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7, 0xb7, 0xb7, 0xb8, 0xb7, 0xb6, 0xb6, 0xb5, 0xb5, 0xb4, 0xb4,\n    0xb3, 0xb3, 0xb2, 0xb1, 0xb0, 0xae, 0xac, 0xaa, 0xa9, 0xa7, 0xa3, 0xa0, 0x9e, 0x9b, 0x98, 0x96,\n    0x97, 0x95, 0x94, 0x93, 0x93, 0x92, 0x91, 0x8f, 0x8f, 0x8e, 0x8d, 0x8c, 0x8b, 0x8a, 0x8a, 0x8a,\n    0x8d, 0x78, 0x6f, 0x78, 0x95, 0xa9, 0xaa, 0xb5, 0xba, 0xb5, 0xaf, 0xad, 0xac, 0xab, 0xaa, 0xab,\n    0x9f, 0x9c, 0x98, 0x95, 0x96, 0x98, 0x9a, 0x9b, 0x9c, 0x9f, 0xa2, 0xa2, 0xa1, 0xa3, 0xa9, 0xaf,\n    0xaf, 0xb3, 0xb7, 0xba, 0xba, 0xba, 0xbb, 0xbc, 0xc4, 0xc8, 0xcc, 0xcd, 0xca, 0xc4, 0xbe, 0xbb,\n    0xb4, 0xb4, 0xb0, 0xad, 0xb7, 0xc7, 0xce, 0xcd, 0xcd, 0xce, 0xcb, 0xcd, 0xd7, 0xdb, 0xd8, 0xd7,\n    0xcf, 0xcc, 0xc5, 0xbe, 0xba, 0xbd, 0xc5, 0xcd, 0xd8, 0xdd, 0xe3, 0xe9, 0xec, 0xee, 0xef, 0xef,\n    0xe9, 0xe9, 0xe8, 0xe6, 0xe3, 0xe1, 0xe1, 0xe1, 0xdf, 0xdf, 0xde, 0xde, 0xde, 0xdb, 0xd6, 0xd2,\n    0xcd, 0xcd, 0xcd, 0xcc, 0xcc, 0xcd, 0xcf, 0xd0, 0xd1, 0xd6, 0xda, 0xdd, 0xe0, 0xe3, 0xe2, 0xe0,\n    0xe2, 0xe1, 0xdf, 0xdd, 0xdc, 0xdc, 0xdb, 0xdb, 0xda, 0xdb, 0xdd, 0xdf, 0xe0, 0xe0, 0xdf, 0xdf,\n    0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xda, 0xda, 0xd9, 0xd7, 0xd3, 0xcf, 0xd0, 0xd4, 0xd7, 0xd7, 0xd5,\n    0xd8, 0xd5, 0xd2, 0xd3, 0xd4, 0xd3, 0xd0, 0xce, 0xcc, 0xcb, 0xcc, 0xc8, 0xc2, 0xc5, 0xca, 0xc7,\n    0xd0, 0xd1, 0xc6, 0xd3, 0xd0, 0xab, 0x90, 0x7a, 0x6d, 0x7e, 0x98, 0xab, 0xa1, 0xa6, 0x93, 0x8c,\n    0x94, 0x9b, 0x8f, 0x78, 0x70, 0x74, 0x78, 0x7a, 0x79, 0x70, 0x72, 0x83, 0x91, 0x90, 0x87, 0x82,\n    0x82, 0x7d, 0x70, 0x66, 0x6c, 0x7b, 0x7d, 0x74, 0x74, 0x76, 0x79, 0x7c, 0x80, 0x83, 0x82, 0x7f,\n    0x7c, 0x74, 0x6f, 0x75, 0x80, 0x84, 0x7e, 0x75, 0x84, 0x8a, 0x8f, 0x91, 0x91, 0x94, 0x96, 0x96,\n    0x99, 0x93, 0x89, 0x77, 0x62, 0x59, 0x59, 0x56, 0x53, 0x43, 0x46, 0x5e, 0x71, 0x75, 0x6d, 0x60,\n    0x54, 0x49, 0x42, 0x3f, 0x37, 0x2e, 0x33, 0x40, 0x47, 0x43, 0x36, 0x24, 0x1b, 0x26, 0x41, 0x57,\n    0x5b, 0x64, 0x6a, 0x6a, 0x6d, 0x74, 0x74, 0x6e, 0x69, 0x6d, 0x6c, 0x6a, 0x69, 0x5e, 0x4e, 0x47,\n    0x55, 0x63, 0x70, 0x6f, 0x62, 0x50, 0x3f, 0x34, 0x25, 0x31, 0x3f, 0x44, 0x42, 0x47, 0x5a, 0x6d,\n    0x85, 0x85, 0x81, 0x7b, 0x7e, 0x8d, 0x9e, 0xa9, 0xa4, 0x96, 0x8d, 0x86, 0x81, 0x85, 0x80, 0x6d,\n    0x42, 0x33, 0x2e, 0x2c, 0x23, 0x25, 0x2c, 0x2a, 0x20, 0x1f, 0x1f, 0x20, 0x1e, 0x1c, 0x20, 0x27,\n    0x37, 0x39, 0x3b, 0x46, 0x50, 0x49, 0x49, 0x5d, 0x6c, 0x79, 0x85, 0x83, 0x76, 0x68, 0x62, 0x62,\n    0x64, 0x66, 0x6d, 0x79, 0x83, 0x82, 0x73, 0x65, 0x54, 0x4b, 0x41, 0x3c, 0x42, 0x59, 0x68, 0x66,\n    0x6b, 0x6b, 0x68, 0x5f, 0x53, 0x4a, 0x47, 0x48, 0x48, 0x3b, 0x31, 0x36, 0x42, 0x42, 0x32, 0x21,\n    0x1f, 0x19, 0x14, 0x13, 0x11, 0x0f, 0x10, 0x14, 0x19, 0x1a, 0x1a, 0x1a, 0x1a, 0x19, 0x16, 0x14,\n    0x74, 0x65, 0x58, 0x5a, 0x64, 0x69, 0x67, 0x64, 0x5d, 0x63, 0x74, 0x83, 0x80, 0x6f, 0x62, 0x5f,\n    0x70, 0x6d, 0x61, 0x5f, 0x70, 0x7e, 0x88, 0x95, 0x72, 0x67, 0x69, 0x71, 0x75, 0x79, 0x75, 0x66,\n    0x5d, 0x6c, 0x7c, 0x7b, 0x6a, 0x59, 0x55, 0x59, 0x59, 0x52, 0x58, 0x60, 0x71, 0x7d, 0x72, 0x6b,\n    0x64, 0x65, 0x68, 0x6b, 0x6c, 0x69, 0x64, 0x60, 0x5c, 0x63, 0x67, 0x65, 0x60, 0x5e, 0x5e, 0x5d,\n    0x62, 0x63, 0x66, 0x66, 0x62, 0x5b, 0x59, 0x5a, 0x64, 0x67, 0x6e, 0x72, 0x6e, 0x68, 0x69, 0x6f,\n    0x6c, 0x6e, 0x6e, 0x67, 0x5d, 0x59, 0x5f, 0x67, 0x6b, 0x71, 0x7d, 0x88, 0x86, 0x7b, 0x73, 0x73,\n    0x7d, 0x7f, 0x7c, 0x75, 0x6f, 0x6d, 0x6d, 0x6b, 0x5a, 0x5e, 0x65, 0x6a, 0x6e, 0x71, 0x73, 0x75,\n    0x78, 0x7f, 0x85, 0x81, 0x7a, 0x79, 0x82, 0x8c, 0x92, 0x92, 0x93, 0x93, 0x8e, 0x85, 0x7a, 0x73,\n    0x7f, 0x8a, 0x97, 0x9d, 0x9c, 0x97, 0x8d, 0x85, 0x81, 0x86, 0x89, 0x86, 0x7f, 0x79, 0x72, 0x6d,\n    0x6d, 0x70, 0x77, 0x7c, 0x7a, 0x71, 0x6b, 0x6a, 0x79, 0x80, 0x8d, 0x97, 0x96, 0x89, 0x79, 0x6f,\n    0x66, 0x65, 0x62, 0x63, 0x6d, 0x78, 0x77, 0x6f, 0x57, 0x60, 0x6d, 0x78, 0x7f, 0x85, 0x8b, 0x8f,\n    0x9a, 0x9a, 0x9a, 0x97, 0x93, 0x92, 0x9a, 0xa2, 0x9a, 0x8e, 0x80, 0x88, 0x8f, 0x8d, 0x94, 0x96,\n    0x9b, 0x9d, 0xa1, 0xa3, 0xa5, 0xa7, 0xa9, 0xab, 0xad, 0xae, 0xae, 0xaf, 0xb0, 0xb1, 0xb2, 0xb3,\n    0xb3, 0xb4, 0xb5, 0xb6, 0xb7, 0xb8, 0xb8, 0xb8, 0xb8, 0xb8, 0xb7, 0xb6, 0xb5, 0xb5, 0xb5, 0xb4,\n    0xb3, 0xb2, 0xb2, 0xb1, 0xaf, 0xad, 0xab, 0xaa, 0xa8, 0xa5, 0xa2, 0x9f, 0x9c, 0x9a, 0x97, 0x95,\n    0x95, 0x94, 0x93, 0x92, 0x93, 0x93, 0x91, 0x90, 0x8f, 0x8e, 0x8d, 0x8c, 0x8b, 0x8a, 0x8a, 0x8a,\n    0x88, 0x76, 0x73, 0x80, 0x9b, 0xad, 0xac, 0xb4, 0xba, 0xb9, 0xb3, 0xab, 0xaa, 0xad, 0xab, 0xa6,\n    0x9a, 0x98, 0x95, 0x94, 0x96, 0x98, 0x9a, 0x9b, 0x9d, 0xa1, 0xa5, 0xa7, 0xa6, 0xa7, 0xaa, 0xae,\n    0xb2, 0xb5, 0xbb, 0xbf, 0xc1, 0xc2, 0xc1, 0xc1, 0xc6, 0xc9, 0xcd, 0xcf, 0xcd, 0xc9, 0xc5, 0xc2,\n    0xbb, 0xb9, 0xb6, 0xb6, 0xbf, 0xcb, 0xd2, 0xd2, 0xd8, 0xd9, 0xd5, 0xd4, 0xdb, 0xdc, 0xd9, 0xda,\n    0xd9, 0xd7, 0xd3, 0xce, 0xcb, 0xcc, 0xd1, 0xd5, 0xd6, 0xd9, 0xde, 0xe2, 0xe4, 0xe6, 0xe7, 0xe9,\n    0xe3, 0xe4, 0xe3, 0xe1, 0xde, 0xdd, 0xdc, 0xdd, 0xdd, 0xdb, 0xda, 0xd9, 0xd7, 0xd6, 0xd3, 0xd2,\n    0xcb, 0xcc, 0xcc, 0xcc, 0xcc, 0xcd, 0xd0, 0xd2, 0xd5, 0xd8, 0xdc, 0xdd, 0xdf, 0xe2, 0xe1, 0xdf,\n    0xde, 0xde, 0xdd, 0xdc, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xdc, 0xdd, 0xde, 0xde, 0xde, 0xdd, 0xdc,\n    0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xda, 0xda, 0xda, 0xd7, 0xd5, 0xd5, 0xd7, 0xd8, 0xd8, 0xd6,\n    0xd9, 0xd5, 0xd1, 0xd0, 0xcf, 0xcf, 0xce, 0xce, 0xcc, 0xc6, 0xc6, 0xc8, 0xc3, 0xc2, 0xca, 0xd1,\n    0xcd, 0xd3, 0xd2, 0xc9, 0xa8, 0x82, 0x7a, 0x7b, 0x72, 0x77, 0x8f, 0xa4, 0xa8, 0xb1, 0xab, 0xad,\n    0xb3, 0xa3, 0x87, 0x76, 0x7b, 0x81, 0x7e, 0x7a, 0x78, 0x74, 0x7a, 0x8d, 0x9a, 0x98, 0x90, 0x8b,\n    0x95, 0x91, 0x87, 0x76, 0x6e, 0x79, 0x85, 0x83, 0x6a, 0x6f, 0x75, 0x7b, 0x82, 0x8a, 0x90, 0x92,\n    0x8a, 0x85, 0x85, 0x8c, 0x8e, 0x84, 0x74, 0x69, 0x7c, 0x7b, 0x7a, 0x7f, 0x8a, 0x96, 0x9b, 0x9a,\n    0x97, 0x91, 0x88, 0x75, 0x5b, 0x4b, 0x40, 0x35, 0x38, 0x49, 0x65, 0x74, 0x6c, 0x60, 0x58, 0x50,\n    0x45, 0x3b, 0x34, 0x35, 0x36, 0x35, 0x3a, 0x42, 0x3b, 0x2f, 0x21, 0x1c, 0x22, 0x33, 0x47, 0x54,\n    0x45, 0x53, 0x51, 0x43, 0x4b, 0x6a, 0x7c, 0x78, 0x6a, 0x6d, 0x6b, 0x66, 0x62, 0x58, 0x4f, 0x4e,\n    0x52, 0x60, 0x6b, 0x6e, 0x6e, 0x68, 0x53, 0x3d, 0x31, 0x44, 0x4a, 0x44, 0x52, 0x76, 0x8d, 0x8d,\n    0x8e, 0x9a, 0x96, 0x77, 0x55, 0x50, 0x69, 0x84, 0x8d, 0x8b, 0x88, 0x7f, 0x75, 0x76, 0x7d, 0x7f,\n    0x6b, 0x43, 0x22, 0x1a, 0x1f, 0x24, 0x27, 0x26, 0x23, 0x27, 0x2d, 0x2f, 0x29, 0x22, 0x23, 0x27,\n    0x2f, 0x44, 0x46, 0x3a, 0x3d, 0x43, 0x42, 0x43, 0x49, 0x45, 0x46, 0x56, 0x6d, 0x7d, 0x7f, 0x7a,\n    0x6d, 0x7d, 0x8a, 0x82, 0x65, 0x4b, 0x43, 0x48, 0x46, 0x35, 0x45, 0x71, 0x89, 0x8e, 0xa1, 0xb8,\n    0xb4, 0xaa, 0x8f, 0x6f, 0x60, 0x5e, 0x55, 0x46, 0x2a, 0x2b, 0x31, 0x3d, 0x45, 0x41, 0x32, 0x23,\n    0x1e, 0x1b, 0x1b, 0x1e, 0x1e, 0x1d, 0x1f, 0x23, 0x22, 0x1f, 0x1d, 0x1b, 0x16, 0x11, 0x12, 0x17,\n    0x75, 0x68, 0x5d, 0x5d, 0x63, 0x67, 0x66, 0x65, 0x67, 0x69, 0x70, 0x77, 0x78, 0x70, 0x66, 0x60,\n    0x57, 0x57, 0x55, 0x5e, 0x72, 0x7a, 0x76, 0x75, 0x65, 0x60, 0x63, 0x69, 0x6a, 0x69, 0x62, 0x56,\n    0x5e, 0x5f, 0x66, 0x6d, 0x69, 0x5d, 0x58, 0x5b, 0x5f, 0x58, 0x5e, 0x62, 0x6b, 0x73, 0x70, 0x74,\n    0x6b, 0x66, 0x67, 0x6f, 0x73, 0x70, 0x6b, 0x6a, 0x67, 0x6b, 0x65, 0x57, 0x54, 0x5d, 0x64, 0x63,\n    0x64, 0x68, 0x6d, 0x6c, 0x65, 0x5e, 0x5e, 0x62, 0x5f, 0x60, 0x66, 0x6d, 0x6e, 0x6d, 0x71, 0x78,\n    0x79, 0x74, 0x6e, 0x6c, 0x6d, 0x6e, 0x6c, 0x69, 0x79, 0x78, 0x7c, 0x84, 0x85, 0x7b, 0x6f, 0x6a,\n    0x70, 0x76, 0x7a, 0x78, 0x7b, 0x81, 0x81, 0x7b, 0x79, 0x76, 0x71, 0x6b, 0x68, 0x6b, 0x71, 0x77,\n    0x91, 0x98, 0x9b, 0x96, 0x95, 0x9e, 0xa9, 0xb0, 0xb1, 0xa6, 0x97, 0x8d, 0x8d, 0x93, 0x9b, 0x9f,\n    0xa0, 0x98, 0x8e, 0x89, 0x8c, 0x93, 0x94, 0x90, 0x8b, 0x88, 0x87, 0x88, 0x89, 0x89, 0x8b, 0x8d,\n    0x89, 0x8c, 0x91, 0x91, 0x8b, 0x83, 0x80, 0x81, 0x84, 0x8a, 0x8f, 0x8b, 0x7e, 0x72, 0x6f, 0x71,\n    0x6b, 0x69, 0x68, 0x6b, 0x76, 0x81, 0x82, 0x7b, 0x8a, 0x88, 0x85, 0x82, 0x81, 0x82, 0x85, 0x86,\n    0x85, 0x8f, 0x9b, 0x9e, 0x97, 0x8e, 0x8d, 0x91, 0xa0, 0x91, 0x7f, 0x85, 0x8e, 0x8f, 0x96, 0x96,\n    0x9a, 0x9c, 0xa0, 0xa3, 0xa5, 0xa7, 0xaa, 0xac, 0xae, 0xae, 0xaf, 0xb0, 0xb1, 0xb2, 0xb3, 0xb4,\n    0xb5, 0xb6, 0xb7, 0xb8, 0xb8, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb8, 0xb7, 0xb6, 0xb5, 0xb5, 0xb4,\n    0xb3, 0xb3, 0xb2, 0xb1, 0xaf, 0xad, 0xab, 0xaa, 0xa8, 0xa5, 0xa1, 0x9e, 0x9c, 0x99, 0x96, 0x94,\n    0x95, 0x94, 0x92, 0x92, 0x92, 0x91, 0x90, 0x8e, 0x8e, 0x8d, 0x8c, 0x8b, 0x8a, 0x8a, 0x8a, 0x8a,\n    0x87, 0x75, 0x77, 0x86, 0x9e, 0xaf, 0xaf, 0xb5, 0xb6, 0xb8, 0xb4, 0xaa, 0xa9, 0xae, 0xaa, 0xa0,\n    0x95, 0x94, 0x93, 0x94, 0x97, 0x99, 0x9a, 0x9b, 0x9d, 0xa2, 0xa8, 0xab, 0xab, 0xab, 0xad, 0xaf,\n    0xb3, 0xb6, 0xbb, 0xc1, 0xc6, 0xc7, 0xc5, 0xc4, 0xc6, 0xc9, 0xce, 0xd1, 0xd2, 0xd1, 0xd0, 0xcf,\n    0xc6, 0xc1, 0xbd, 0xc2, 0xc9, 0xd0, 0xd5, 0xd9, 0xd7, 0xd9, 0xd6, 0xd5, 0xda, 0xdb, 0xda, 0xdf,\n    0xe0, 0xdf, 0xdd, 0xda, 0xd8, 0xd7, 0xd6, 0xd7, 0xd4, 0xd5, 0xd7, 0xd8, 0xd9, 0xda, 0xdc, 0xde,\n    0xde, 0xdf, 0xdf, 0xde, 0xdc, 0xdb, 0xdb, 0xdb, 0xdb, 0xd9, 0xd6, 0xd2, 0xce, 0xcd, 0xcd, 0xce,\n    0xcc, 0xcc, 0xcd, 0xce, 0xcf, 0xd2, 0xd6, 0xd9, 0xd9, 0xdc, 0xde, 0xdd, 0xdf, 0xe1, 0xe1, 0xdf,\n    0xdd, 0xdd, 0xdc, 0xdc, 0xdc, 0xdc, 0xdc, 0xdc, 0xdd, 0xdd, 0xde, 0xde, 0xdd, 0xdc, 0xdb, 0xdb,\n    0xdc, 0xdc, 0xdc, 0xdc, 0xdc, 0xdc, 0xdc, 0xdb, 0xdc, 0xdc, 0xdb, 0xda, 0xd9, 0xd8, 0xd7, 0xd7,\n    0xd9, 0xd7, 0xd5, 0xd3, 0xd1, 0xcf, 0xce, 0xcd, 0xcd, 0xc7, 0xc4, 0xc6, 0xc8, 0xc7, 0xc6, 0xc6,\n    0xcc, 0xca, 0xd3, 0xbe, 0x90, 0x71, 0x67, 0x6b, 0x6b, 0x70, 0x90, 0xa0, 0xa3, 0x9d, 0x98, 0x9a,\n    0x96, 0x8e, 0x84, 0x86, 0x91, 0x8e, 0x81, 0x7b, 0x78, 0x77, 0x7d, 0x87, 0x8d, 0x8b, 0x86, 0x84,\n    0x8e, 0x8e, 0x90, 0x85, 0x73, 0x72, 0x76, 0x6d, 0x77, 0x7e, 0x85, 0x86, 0x87, 0x8a, 0x8f, 0x91,\n    0xa6, 0x9c, 0x95, 0x96, 0x95, 0x8f, 0x8d, 0x90, 0xa3, 0x98, 0x8c, 0x8a, 0x93, 0x9c, 0x99, 0x91,\n    0x91, 0x8c, 0x83, 0x6c, 0x50, 0x44, 0x46, 0x46, 0x53, 0x63, 0x75, 0x74, 0x61, 0x53, 0x4b, 0x41,\n    0x3d, 0x36, 0x32, 0x35, 0x3b, 0x3c, 0x3a, 0x38, 0x2c, 0x1e, 0x11, 0x0f, 0x13, 0x18, 0x1f, 0x26,\n    0x2f, 0x41, 0x58, 0x66, 0x6a, 0x69, 0x66, 0x62, 0x67, 0x5d, 0x54, 0x59, 0x66, 0x69, 0x5e, 0x52,\n    0x53, 0x54, 0x4f, 0x4f, 0x62, 0x79, 0x79, 0x69, 0x63, 0x68, 0x79, 0x8f, 0x9c, 0x9d, 0x9d, 0xa0,\n    0xa7, 0xad, 0xb1, 0xac, 0x9e, 0x8a, 0x75, 0x66, 0x4f, 0x55, 0x54, 0x4f, 0x4e, 0x56, 0x6d, 0x87,\n    0x6f, 0x58, 0x3e, 0x32, 0x2a, 0x1c, 0x16, 0x1f, 0x1f, 0x2a, 0x38, 0x41, 0x40, 0x3a, 0x38, 0x3a,\n    0x39, 0x36, 0x2b, 0x2c, 0x41, 0x52, 0x53, 0x51, 0x49, 0x4d, 0x4e, 0x4a, 0x47, 0x4c, 0x59, 0x65,\n    0x6f, 0x61, 0x54, 0x4d, 0x49, 0x4a, 0x54, 0x61, 0x76, 0x8d, 0xa2, 0xa4, 0xa7, 0xb3, 0xaf, 0x99,\n    0x92, 0x73, 0x55, 0x47, 0x3e, 0x34, 0x33, 0x3a, 0x3c, 0x44, 0x50, 0x58, 0x56, 0x4a, 0x3b, 0x31,\n    0x37, 0x3a, 0x40, 0x46, 0x48, 0x47, 0x48, 0x4b, 0x43, 0x38, 0x2e, 0x29, 0x23, 0x1d, 0x1c, 0x1f,\n    0x6a, 0x6a, 0x68, 0x63, 0x5d, 0x5e, 0x67, 0x6f, 0x75, 0x71, 0x6d, 0x6b, 0x6e, 0x6e, 0x67, 0x5f,\n    0x61, 0x58, 0x50, 0x53, 0x63, 0x6f, 0x72, 0x72, 0x6d, 0x68, 0x68, 0x6f, 0x76, 0x73, 0x66, 0x57,\n    0x55, 0x58, 0x5b, 0x58, 0x4e, 0x48, 0x50, 0x5c, 0x64, 0x63, 0x6f, 0x71, 0x70, 0x71, 0x6e, 0x77,\n    0x73, 0x67, 0x60, 0x63, 0x67, 0x67, 0x6b, 0x72, 0x7d, 0x7b, 0x6e, 0x5e, 0x5c, 0x69, 0x76, 0x79,\n    0x75, 0x76, 0x77, 0x75, 0x6e, 0x68, 0x68, 0x6b, 0x63, 0x67, 0x66, 0x63, 0x6c, 0x7b, 0x80, 0x7b,\n    0x6c, 0x73, 0x79, 0x78, 0x78, 0x81, 0x8f, 0x9a, 0x7c, 0x74, 0x70, 0x72, 0x75, 0x74, 0x70, 0x6e,\n    0x71, 0x7d, 0x85, 0x87, 0x8d, 0x96, 0x96, 0x8f, 0x85, 0x83, 0x7e, 0x78, 0x75, 0x7b, 0x88, 0x94,\n    0x91, 0x97, 0x98, 0x95, 0x9c, 0xac, 0xb5, 0xb5, 0xb0, 0xae, 0xab, 0xaa, 0xa9, 0xa7, 0x9f, 0x97,\n    0xa5, 0xa1, 0x9b, 0x9b, 0xa1, 0xa7, 0xa5, 0xa0, 0x9c, 0x9c, 0xa2, 0xa9, 0xa8, 0x9e, 0x97, 0x96,\n    0xa1, 0xa5, 0xa9, 0xa9, 0xa3, 0x9b, 0x96, 0x94, 0x97, 0x9d, 0x98, 0x89, 0x85, 0x92, 0x9c, 0x9d,\n    0x8c, 0x8e, 0x8f, 0x8e, 0x8d, 0x8d, 0x8d, 0x8c, 0x87, 0x88, 0x8d, 0x94, 0x9b, 0x9d, 0x9b, 0x97,\n    0x91, 0x97, 0xa0, 0xa4, 0xa0, 0x9d, 0xa1, 0xa7, 0xa0, 0x90, 0x7c, 0x81, 0x8c, 0x90, 0x98, 0x97,\n    0x99, 0x9c, 0x9f, 0xa2, 0xa5, 0xa7, 0xab, 0xad, 0xad, 0xae, 0xaf, 0xb1, 0xb2, 0xb3, 0xb4, 0xb4,\n    0xb6, 0xb6, 0xb7, 0xb8, 0xb9, 0xb9, 0xb9, 0xb9, 0xba, 0xba, 0xb9, 0xb8, 0xb7, 0xb6, 0xb5, 0xb5,\n    0xb5, 0xb4, 0xb3, 0xb1, 0xaf, 0xad, 0xac, 0xab, 0xa8, 0xa6, 0xa2, 0x9f, 0x9d, 0x9a, 0x97, 0x95,\n    0x96, 0x94, 0x92, 0x91, 0x90, 0x8f, 0x8d, 0x8c, 0x8d, 0x8c, 0x8b, 0x8a, 0x8a, 0x89, 0x89, 0x89,\n    0x88, 0x76, 0x7a, 0x89, 0x9d, 0xae, 0xb1, 0xb6, 0xb0, 0xb2, 0xb1, 0xad, 0xac, 0xab, 0xa4, 0x9b,\n    0x95, 0x95, 0x96, 0x98, 0x9b, 0x9c, 0x9c, 0x9c, 0x9e, 0xa3, 0xa9, 0xad, 0xae, 0xaf, 0xb1, 0xb3,\n    0xb7, 0xb8, 0xbb, 0xc1, 0xc6, 0xc9, 0xc9, 0xc7, 0xc5, 0xc9, 0xce, 0xd2, 0xd5, 0xd7, 0xd9, 0xda,\n    0xd1, 0xc7, 0xc2, 0xc7, 0xcc, 0xcf, 0xd5, 0xdd, 0xde, 0xe2, 0xe0, 0xdf, 0xe1, 0xdf, 0xe0, 0xe7,\n    0xe0, 0xde, 0xdc, 0xda, 0xd8, 0xd4, 0xd0, 0xcd, 0xcd, 0xcf, 0xd0, 0xd0, 0xd0, 0xd1, 0xd2, 0xd3,\n    0xd8, 0xd9, 0xda, 0xda, 0xda, 0xd9, 0xda, 0xdb, 0xdb, 0xda, 0xd6, 0xd0, 0xcb, 0xc8, 0xc8, 0xc9,\n    0xce, 0xcf, 0xd1, 0xd2, 0xd4, 0xd7, 0xdc, 0xdf, 0xdc, 0xde, 0xdf, 0xde, 0xde, 0xe1, 0xe1, 0xdf,\n    0xdf, 0xdf, 0xdf, 0xde, 0xde, 0xde, 0xde, 0xde, 0xde, 0xde, 0xde, 0xde, 0xde, 0xdd, 0xdc, 0xdb,\n    0xde, 0xdd, 0xdd, 0xdd, 0xdc, 0xdc, 0xdd, 0xdd, 0xdb, 0xdd, 0xdd, 0xdc, 0xd9, 0xd7, 0xd7, 0xd7,\n    0xd5, 0xd7, 0xd7, 0xd6, 0xd3, 0xd1, 0xcd, 0xca, 0xc4, 0xcc, 0xcd, 0xcb, 0xce, 0xd0, 0xd1, 0xd2,\n    0xce, 0xc3, 0xcc, 0xae, 0x80, 0x74, 0x70, 0x73, 0x79, 0x81, 0xa0, 0x9c, 0x9a, 0x93, 0x9c, 0xa3,\n    0x90, 0x89, 0x7c, 0x77, 0x82, 0x8a, 0x8c, 0x90, 0x87, 0x87, 0x88, 0x88, 0x87, 0x87, 0x8a, 0x8e,\n    0x81, 0x78, 0x78, 0x74, 0x6c, 0x77, 0x84, 0x7f, 0x73, 0x81, 0x8c, 0x8b, 0x87, 0x87, 0x8a, 0x8c,\n    0x9f, 0x95, 0x90, 0x92, 0x92, 0x92, 0x9c, 0xa9, 0x98, 0x90, 0x86, 0x84, 0x8c, 0x92, 0x8e, 0x86,\n    0x8a, 0x88, 0x80, 0x66, 0x48, 0x46, 0x5b, 0x6b, 0x76, 0x6f, 0x69, 0x5f, 0x51, 0x4b, 0x47, 0x3f,\n    0x3e, 0x3d, 0x3d, 0x3f, 0x3f, 0x38, 0x2c, 0x21, 0x19, 0x17, 0x18, 0x1b, 0x1b, 0x1b, 0x26, 0x33,\n    0x5b, 0x59, 0x5b, 0x5e, 0x57, 0x4d, 0x51, 0x5d, 0x4f, 0x4c, 0x4a, 0x45, 0x40, 0x43, 0x4d, 0x51,\n    0x4d, 0x51, 0x53, 0x5a, 0x6e, 0x83, 0x84, 0x79, 0x6d, 0x78, 0x82, 0x86, 0x89, 0x8e, 0x8f, 0x8c,\n    0x9c, 0x8f, 0x7d, 0x6c, 0x5f, 0x56, 0x4c, 0x45, 0x3a, 0x3f, 0x3a, 0x37, 0x3a, 0x3a, 0x44, 0x5b,\n    0x65, 0x56, 0x3c, 0x31, 0x38, 0x35, 0x2d, 0x31, 0x20, 0x29, 0x37, 0x45, 0x4d, 0x4c, 0x47, 0x43,\n    0x40, 0x3e, 0x3e, 0x44, 0x4c, 0x52, 0x5e, 0x6c, 0x77, 0x72, 0x6b, 0x66, 0x64, 0x64, 0x64, 0x64,\n    0x56, 0x49, 0x41, 0x46, 0x4f, 0x5e, 0x79, 0x93, 0x9f, 0xa3, 0xad, 0xb7, 0xb7, 0xa4, 0x74, 0x41,\n    0x2f, 0x34, 0x2f, 0x2e, 0x47, 0x6c, 0x79, 0x6e, 0x6f, 0x6b, 0x64, 0x5b, 0x56, 0x57, 0x5d, 0x62,\n    0x5e, 0x65, 0x6f, 0x75, 0x77, 0x75, 0x74, 0x75, 0x75, 0x6d, 0x63, 0x5a, 0x53, 0x4a, 0x3e, 0x33,\n    0x6c, 0x72, 0x73, 0x69, 0x5c, 0x5a, 0x65, 0x71, 0x6e, 0x6b, 0x66, 0x65, 0x6b, 0x70, 0x6b, 0x62,\n    0x5b, 0x56, 0x57, 0x5e, 0x68, 0x71, 0x74, 0x72, 0x81, 0x7b, 0x75, 0x75, 0x7a, 0x77, 0x6c, 0x63,\n    0x51, 0x55, 0x55, 0x53, 0x55, 0x5b, 0x5f, 0x5f, 0x66, 0x64, 0x6e, 0x73, 0x78, 0x7b, 0x73, 0x75,\n    0x79, 0x6c, 0x64, 0x64, 0x65, 0x65, 0x6d, 0x77, 0x80, 0x7e, 0x78, 0x71, 0x6d, 0x6e, 0x71, 0x73,\n    0x78, 0x79, 0x7b, 0x7e, 0x7c, 0x75, 0x6f, 0x6d, 0x73, 0x78, 0x77, 0x6f, 0x71, 0x7b, 0x7e, 0x7a,\n    0x60, 0x63, 0x6d, 0x82, 0x99, 0x9f, 0x8d, 0x77, 0x74, 0x6f, 0x6c, 0x6c, 0x6e, 0x6d, 0x6c, 0x6b,\n    0x6f, 0x75, 0x76, 0x71, 0x73, 0x7e, 0x85, 0x86, 0x82, 0x8a, 0x92, 0x91, 0x8b, 0x87, 0x8a, 0x8e,\n    0x88, 0x8f, 0x96, 0x9f, 0xaf, 0xbd, 0xbd, 0xb4, 0xb8, 0xb0, 0xa5, 0x9f, 0xa5, 0xb2, 0xba, 0xbc,\n    0xae, 0xb5, 0xbc, 0xc1, 0xc2, 0xc0, 0xba, 0xb4, 0xc2, 0xb9, 0xb0, 0xa9, 0x9e, 0x96, 0x96, 0x9c,\n    0x93, 0x98, 0x9e, 0xa3, 0xa3, 0x9f, 0x98, 0x92, 0x92, 0x98, 0x97, 0x94, 0x9b, 0xa4, 0x9e, 0x8e,\n    0x92, 0x93, 0x95, 0x97, 0x98, 0x9a, 0x9e, 0xa3, 0x9f, 0x9d, 0x9b, 0x9e, 0xa1, 0x9f, 0x97, 0x90,\n    0x9f, 0x9b, 0x97, 0x95, 0x96, 0x9a, 0xa2, 0xaa, 0xa5, 0x96, 0x81, 0x83, 0x8c, 0x8f, 0x97, 0x94,\n    0x99, 0x9b, 0x9e, 0xa1, 0xa4, 0xa7, 0xab, 0xad, 0xad, 0xae, 0xb0, 0xb1, 0xb3, 0xb4, 0xb4, 0xb5,\n    0xb6, 0xb6, 0xb7, 0xb8, 0xb8, 0xb8, 0xb8, 0xb8, 0xb9, 0xb9, 0xb9, 0xb9, 0xb8, 0xb7, 0xb6, 0xb5,\n    0xb5, 0xb4, 0xb2, 0xb0, 0xae, 0xac, 0xaa, 0xaa, 0xa8, 0xa5, 0xa2, 0x9e, 0x9c, 0x99, 0x97, 0x95,\n    0x94, 0x92, 0x91, 0x90, 0x90, 0x8f, 0x8d, 0x8c, 0x8b, 0x8b, 0x8a, 0x89, 0x89, 0x89, 0x89, 0x89,\n    0x86, 0x75, 0x7f, 0x8f, 0x9e, 0xad, 0xaf, 0xb1, 0xae, 0xac, 0xad, 0xb0, 0xad, 0xa2, 0x99, 0x96,\n    0x99, 0x9a, 0x9b, 0x9e, 0xa1, 0xa2, 0xa1, 0x9f, 0xa1, 0xa4, 0xa9, 0xac, 0xae, 0xb1, 0xb4, 0xb7,\n    0xbd, 0xbd, 0xbd, 0xc1, 0xc6, 0xca, 0xcb, 0xcb, 0xc7, 0xca, 0xcf, 0xd3, 0xd5, 0xd7, 0xda, 0xdb,\n    0xd8, 0xcb, 0xc3, 0xc5, 0xc8, 0xc8, 0xcf, 0xda, 0xe0, 0xe3, 0xe1, 0xdf, 0xdc, 0xd5, 0xd3, 0xdb,\n    0xdb, 0xd9, 0xd6, 0xd2, 0xce, 0xc9, 0xc4, 0xc1, 0xc1, 0xc3, 0xc7, 0xc9, 0xcb, 0xcc, 0xce, 0xcf,\n    0xd1, 0xd3, 0xd5, 0xd6, 0xd6, 0xd6, 0xd7, 0xd8, 0xda, 0xda, 0xd8, 0xd4, 0xcf, 0xcc, 0xcc, 0xcd,\n    0xd0, 0xd1, 0xd3, 0xd4, 0xd6, 0xd9, 0xdd, 0xdf, 0xdd, 0xdf, 0xdf, 0xde, 0xde, 0xe1, 0xe2, 0xe0,\n    0xe1, 0xe1, 0xe0, 0xe0, 0xdf, 0xdf, 0xde, 0xde, 0xde, 0xde, 0xde, 0xdf, 0xdf, 0xdf, 0xde, 0xde,\n    0xdf, 0xde, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xde, 0xda, 0xdc, 0xde, 0xdd, 0xda, 0xd7, 0xd7, 0xd8,\n    0xd1, 0xd4, 0xd3, 0xd0, 0xcf, 0xce, 0xcb, 0xc6, 0xc2, 0xc5, 0xc1, 0xb7, 0xac, 0xa1, 0xac, 0xc8,\n    0xd1, 0xca, 0xc9, 0x96, 0x65, 0x71, 0x8d, 0xa3, 0xc4, 0xbe, 0xbd, 0x94, 0x84, 0x84, 0x94, 0x98,\n    0x9c, 0x9c, 0x91, 0x89, 0x91, 0x98, 0x90, 0x86, 0x7c, 0x81, 0x83, 0x7f, 0x7b, 0x7e, 0x86, 0x8e,\n    0x9a, 0x8e, 0x86, 0x7b, 0x6f, 0x70, 0x76, 0x74, 0x70, 0x80, 0x8a, 0x85, 0x7b, 0x79, 0x7d, 0x80,\n    0x7b, 0x88, 0xa0, 0xb3, 0xb0, 0x9c, 0x8a, 0x84, 0x84, 0x82, 0x7f, 0x7e, 0x83, 0x89, 0x8b, 0x89,\n    0x8b, 0x87, 0x7d, 0x66, 0x4e, 0x4f, 0x63, 0x6f, 0x68, 0x5c, 0x57, 0x53, 0x46, 0x3d, 0x40, 0x43,\n    0x42, 0x44, 0x46, 0x44, 0x3c, 0x2f, 0x20, 0x16, 0x16, 0x17, 0x19, 0x19, 0x14, 0x14, 0x21, 0x30,\n    0x32, 0x3c, 0x3f, 0x37, 0x32, 0x37, 0x3c, 0x3b, 0x4c, 0x43, 0x42, 0x42, 0x42, 0x50, 0x63, 0x69,\n    0x60, 0x5e, 0x5c, 0x59, 0x57, 0x55, 0x53, 0x52, 0x65, 0x5f, 0x5d, 0x62, 0x6a, 0x71, 0x7b, 0x85,\n    0x77, 0x70, 0x62, 0x50, 0x3e, 0x32, 0x2f, 0x31, 0x37, 0x42, 0x49, 0x4f, 0x53, 0x49, 0x45, 0x50,\n    0x5a, 0x61, 0x51, 0x3c, 0x3a, 0x3b, 0x39, 0x3c, 0x38, 0x3a, 0x42, 0x50, 0x5d, 0x61, 0x59, 0x4f,\n    0x42, 0x48, 0x4f, 0x54, 0x5a, 0x60, 0x5e, 0x54, 0x40, 0x38, 0x36, 0x42, 0x54, 0x5d, 0x58, 0x4f,\n    0x46, 0x3f, 0x41, 0x50, 0x60, 0x70, 0x8a, 0xa2, 0xab, 0xa8, 0xab, 0xa0, 0x77, 0x4a, 0x32, 0x2a,\n    0x32, 0x27, 0x30, 0x51, 0x6e, 0x76, 0x76, 0x78, 0x70, 0x6d, 0x68, 0x66, 0x67, 0x6b, 0x70, 0x73,\n    0x75, 0x7f, 0x8a, 0x91, 0x92, 0x90, 0x8f, 0x8d, 0x8e, 0x92, 0x8c, 0x7b, 0x6c, 0x63, 0x54, 0x44,\n    0x69, 0x73, 0x7b, 0x7a, 0x72, 0x6b, 0x66, 0x64, 0x62, 0x61, 0x62, 0x67, 0x6d, 0x6e, 0x67, 0x5e,\n    0x59, 0x51, 0x4f, 0x52, 0x57, 0x68, 0x7a, 0x7f, 0x87, 0x85, 0x78, 0x6c, 0x68, 0x62, 0x5e, 0x62,\n    0x64, 0x5b, 0x52, 0x56, 0x6a, 0x7c, 0x78, 0x6a, 0x6e, 0x70, 0x79, 0x73, 0x70, 0x73, 0x6e, 0x72,\n    0x76, 0x70, 0x6e, 0x71, 0x72, 0x71, 0x73, 0x78, 0x7d, 0x7d, 0x7b, 0x76, 0x6f, 0x69, 0x67, 0x67,\n    0x6d, 0x6a, 0x6c, 0x74, 0x7c, 0x7e, 0x7d, 0x7b, 0x7b, 0x80, 0x87, 0x88, 0x7f, 0x76, 0x78, 0x80,\n    0x7a, 0x79, 0x75, 0x6e, 0x70, 0x79, 0x81, 0x83, 0x74, 0x73, 0x71, 0x70, 0x71, 0x73, 0x76, 0x78,\n    0x83, 0x86, 0x86, 0x82, 0x7f, 0x82, 0x86, 0x88, 0x8a, 0x93, 0x9c, 0x9c, 0x94, 0x88, 0x81, 0x7e,\n    0x85, 0x89, 0x90, 0x9d, 0xb1, 0xc2, 0xc5, 0xc0, 0xb1, 0xb0, 0xac, 0xaa, 0xb1, 0xbd, 0xc2, 0xc2,\n    0xbc, 0xc0, 0xc2, 0xbc, 0xb5, 0xb2, 0xb4, 0xb5, 0xb2, 0xb6, 0xba, 0xbb, 0xb3, 0xa6, 0x9d, 0x9a,\n    0xa3, 0xa7, 0xab, 0xae, 0xb0, 0xaf, 0xa9, 0xa3, 0x94, 0x9c, 0xa5, 0xa7, 0xa1, 0x98, 0x95, 0x97,\n    0x94, 0x8b, 0x87, 0x8d, 0x96, 0x9c, 0xa1, 0xa5, 0xa2, 0x9c, 0x98, 0x9a, 0xa2, 0xa7, 0xa7, 0xa4,\n    0xa0, 0x9b, 0x99, 0x9e, 0xa2, 0xa0, 0x9a, 0x96, 0x9c, 0x92, 0x81, 0x83, 0x8a, 0x8e, 0x96, 0x95,\n    0x99, 0x9b, 0x9e, 0xa1, 0xa3, 0xa7, 0xaa, 0xad, 0xac, 0xad, 0xaf, 0xb2, 0xb3, 0xb4, 0xb5, 0xb5,\n    0xb5, 0xb6, 0xb7, 0xb7, 0xb8, 0xb8, 0xb8, 0xb7, 0xb8, 0xb8, 0xb9, 0xb9, 0xb8, 0xb7, 0xb6, 0xb5,\n    0xb3, 0xb2, 0xb0, 0xae, 0xab, 0xaa, 0xa8, 0xa8, 0xa6, 0xa3, 0xa0, 0x9d, 0x9a, 0x98, 0x95, 0x93,\n    0x90, 0x8f, 0x8e, 0x8e, 0x8f, 0x8f, 0x8f, 0x8e, 0x8a, 0x8a, 0x89, 0x89, 0x88, 0x88, 0x88, 0x88,\n    0x80, 0x72, 0x84, 0x99, 0xa2, 0xac, 0xab, 0xa9, 0xae, 0xaa, 0xab, 0xb0, 0xa9, 0x99, 0x90, 0x92,\n    0x9b, 0x9d, 0x9f, 0xa3, 0xa7, 0xa8, 0xa8, 0xa7, 0xa6, 0xa8, 0xab, 0xad, 0xb0, 0xb3, 0xb7, 0xba,\n    0xc0, 0xbe, 0xbd, 0xbe, 0xc1, 0xc4, 0xc6, 0xc8, 0xc9, 0xcc, 0xd0, 0xd2, 0xd4, 0xd4, 0xd6, 0xd6,\n    0xd9, 0xcc, 0xc2, 0xc0, 0xbf, 0xc0, 0xc6, 0xd0, 0xd1, 0xd4, 0xd5, 0xd4, 0xd1, 0xc7, 0xc3, 0xca,\n    0xd0, 0xcf, 0xcc, 0xc8, 0xc3, 0xbf, 0xbb, 0xb9, 0xb7, 0xba, 0xbf, 0xc4, 0xc7, 0xca, 0xcd, 0xcf,\n    0xd0, 0xd2, 0xd4, 0xd5, 0xd5, 0xd5, 0xd6, 0xd6, 0xd6, 0xd7, 0xd7, 0xd7, 0xd6, 0xd5, 0xd6, 0xd6,\n    0xd1, 0xd3, 0xd5, 0xd6, 0xd7, 0xd9, 0xda, 0xdc, 0xdd, 0xdf, 0xdf, 0xde, 0xdf, 0xe1, 0xe2, 0xe0,\n    0xe0, 0xe0, 0xe0, 0xdf, 0xdf, 0xde, 0xdd, 0xdc, 0xdd, 0xde, 0xde, 0xdf, 0xdf, 0xe0, 0xe0, 0xe0,\n    0xdf, 0xde, 0xdd, 0xdd, 0xdc, 0xdd, 0xde, 0xde, 0xda, 0xdc, 0xdd, 0xdc, 0xda, 0xd8, 0xd8, 0xd8,\n    0xd4, 0xd4, 0xd0, 0xcb, 0xcb, 0xcd, 0xca, 0xc5, 0xbe, 0xa3, 0x89, 0x85, 0x7f, 0x6d, 0x7d, 0xac,\n    0xd0, 0xd2, 0xc0, 0x84, 0x5e, 0x7d, 0xaa, 0xbf, 0xc4, 0xbe, 0xb8, 0x95, 0x87, 0x8f, 0x90, 0x86,\n    0x87, 0x90, 0x88, 0x78, 0x77, 0x7e, 0x7e, 0x7c, 0x7e, 0x8a, 0x91, 0x8b, 0x83, 0x83, 0x88, 0x8d,\n    0x81, 0x84, 0x83, 0x7e, 0x76, 0x6f, 0x6e, 0x74, 0x76, 0x86, 0x8e, 0x84, 0x78, 0x76, 0x7d, 0x81,\n    0x9c, 0x9e, 0xa1, 0xa1, 0x9b, 0x94, 0x92, 0x95, 0x90, 0x8f, 0x8a, 0x84, 0x82, 0x85, 0x88, 0x89,\n    0x94, 0x87, 0x78, 0x69, 0x60, 0x67, 0x72, 0x74, 0x5b, 0x4c, 0x48, 0x4a, 0x44, 0x3e, 0x42, 0x47,\n    0x48, 0x49, 0x4a, 0x45, 0x39, 0x2b, 0x23, 0x22, 0x26, 0x20, 0x1a, 0x18, 0x1b, 0x23, 0x2a, 0x2e,\n    0x37, 0x37, 0x34, 0x2f, 0x31, 0x3b, 0x48, 0x50, 0x3d, 0x2b, 0x2f, 0x46, 0x5e, 0x74, 0x75, 0x62,\n    0x61, 0x58, 0x4d, 0x49, 0x4d, 0x5b, 0x75, 0x8b, 0x73, 0x55, 0x4b, 0x5f, 0x6b, 0x61, 0x61, 0x6e,\n    0x6a, 0x5f, 0x52, 0x4a, 0x47, 0x47, 0x49, 0x4b, 0x54, 0x5c, 0x5f, 0x59, 0x4d, 0x3e, 0x39, 0x3f,\n    0x5d, 0x75, 0x74, 0x52, 0x35, 0x2e, 0x33, 0x37, 0x40, 0x42, 0x4a, 0x59, 0x6b, 0x75, 0x6f, 0x66,\n    0x55, 0x40, 0x3a, 0x49, 0x56, 0x56, 0x44, 0x2e, 0x28, 0x2e, 0x36, 0x3f, 0x45, 0x4a, 0x4d, 0x4f,\n    0x3f, 0x35, 0x39, 0x56, 0x78, 0x8b, 0x91, 0x91, 0x96, 0x8b, 0x75, 0x5a, 0x4c, 0x4f, 0x48, 0x33,\n    0x43, 0x5c, 0x6d, 0x6a, 0x69, 0x6f, 0x6b, 0x5e, 0x71, 0x74, 0x79, 0x7d, 0x7b, 0x74, 0x6b, 0x65,\n    0x81, 0x8b, 0x96, 0x9d, 0xa0, 0xa1, 0xa0, 0x9d, 0x98, 0x9b, 0x8f, 0x73, 0x5f, 0x5c, 0x5f, 0x5f,\n    0x67, 0x74, 0x82, 0x86, 0x82, 0x77, 0x6a, 0x5f, 0x62, 0x61, 0x64, 0x69, 0x6c, 0x69, 0x61, 0x5c,\n    0x50, 0x53, 0x63, 0x71, 0x70, 0x73, 0x73, 0x6b, 0x78, 0x79, 0x6d, 0x64, 0x66, 0x64, 0x62, 0x69,\n    0x73, 0x6f, 0x69, 0x63, 0x62, 0x66, 0x6a, 0x6c, 0x74, 0x7b, 0x81, 0x72, 0x68, 0x6c, 0x6a, 0x6d,\n    0x6b, 0x69, 0x69, 0x6d, 0x72, 0x77, 0x77, 0x76, 0x85, 0x89, 0x86, 0x7a, 0x73, 0x75, 0x77, 0x77,\n    0x6d, 0x6a, 0x6c, 0x76, 0x81, 0x87, 0x88, 0x89, 0x7f, 0x84, 0x8d, 0x91, 0x8a, 0x80, 0x7e, 0x83,\n    0x84, 0x81, 0x7b, 0x76, 0x7c, 0x87, 0x8a, 0x86, 0x8c, 0x8c, 0x8a, 0x89, 0x8a, 0x8f, 0x94, 0x96,\n    0x8b, 0x8e, 0x95, 0x9c, 0x9b, 0x92, 0x89, 0x85, 0x8c, 0x90, 0x96, 0x9c, 0x9e, 0x9d, 0x9a, 0x97,\n    0x9f, 0x9c, 0x9a, 0x9f, 0xa9, 0xb3, 0xb9, 0xbb, 0xae, 0xb0, 0xac, 0xa6, 0xa5, 0xa9, 0xa7, 0xa2,\n    0xa4, 0xa9, 0xad, 0xab, 0xa7, 0xa7, 0xa8, 0xa9, 0xb6, 0xb6, 0xb3, 0xb0, 0xb0, 0xb4, 0xb7, 0xb7,\n    0xa4, 0xa4, 0xa1, 0x9a, 0x97, 0x99, 0x9a, 0x98, 0x8d, 0x9d, 0xab, 0xa9, 0x9c, 0x96, 0xa4, 0xb6,\n    0xa9, 0x9e, 0x97, 0x99, 0x9a, 0x97, 0x95, 0x97, 0x94, 0x96, 0x9c, 0xa7, 0xb0, 0xb0, 0xa6, 0x9d,\n    0x88, 0x89, 0x92, 0xa2, 0xad, 0xa8, 0x99, 0x8c, 0x8a, 0x86, 0x7c, 0x81, 0x88, 0x8c, 0x97, 0x97,\n    0x9a, 0x9b, 0x9e, 0xa0, 0xa3, 0xa6, 0xaa, 0xad, 0xab, 0xad, 0xaf, 0xb1, 0xb3, 0xb4, 0xb4, 0xb4,\n    0xb6, 0xb6, 0xb7, 0xb8, 0xb8, 0xb8, 0xb8, 0xb7, 0xb6, 0xb7, 0xb8, 0xb9, 0xb8, 0xb8, 0xb6, 0xb6,\n    0xb4, 0xb3, 0xb1, 0xae, 0xac, 0xaa, 0xa9, 0xa8, 0xa6, 0xa3, 0x9f, 0x9c, 0x9a, 0x97, 0x94, 0x92,\n    0x90, 0x8f, 0x8e, 0x8e, 0x8e, 0x8e, 0x8d, 0x8c, 0x89, 0x89, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88,\n    0x7e, 0x71, 0x87, 0x9d, 0xa3, 0xac, 0xab, 0xa6, 0xab, 0xaa, 0xab, 0xa9, 0xa0, 0x95, 0x91, 0x94,\n    0x9a, 0x9c, 0xa0, 0xa5, 0xab, 0xaf, 0xb0, 0xb0, 0xac, 0xae, 0xb0, 0xb2, 0xb4, 0xb7, 0xb9, 0xbb,\n    0xbf, 0xbf, 0xbe, 0xbd, 0xbd, 0xbe, 0xc0, 0xc1, 0xc7, 0xca, 0xce, 0xd1, 0xd2, 0xd3, 0xd4, 0xd5,\n    0xd7, 0xcd, 0xc2, 0xbb, 0xb8, 0xb9, 0xbe, 0xc4, 0xcb, 0xd0, 0xd2, 0xd5, 0xd3, 0xc7, 0xc0, 0xc6,\n    0xc7, 0xc9, 0xc9, 0xc7, 0xc2, 0xbe, 0xbb, 0xbb, 0xbb, 0xbd, 0xbf, 0xc2, 0xc5, 0xc9, 0xcd, 0xd0,\n    0xd3, 0xd4, 0xd6, 0xd6, 0xd5, 0xd4, 0xd4, 0xd4, 0xd3, 0xd2, 0xd3, 0xd4, 0xd7, 0xda, 0xdb, 0xdb,\n    0xd7, 0xd9, 0xdc, 0xdc, 0xdc, 0xdb, 0xdb, 0xdb, 0xdd, 0xdf, 0xe0, 0xdf, 0xdf, 0xe1, 0xe0, 0xde,\n    0xdd, 0xde, 0xde, 0xde, 0xde, 0xde, 0xdd, 0xdc, 0xde, 0xde, 0xde, 0xde, 0xde, 0xdf, 0xe0, 0xe0,\n    0xdf, 0xde, 0xdd, 0xdc, 0xdc, 0xdd, 0xdd, 0xde, 0xdb, 0xdb, 0xdb, 0xd9, 0xd8, 0xd6, 0xd5, 0xd5,\n    0xd4, 0xd4, 0xd1, 0xcc, 0xcd, 0xce, 0xc7, 0xbc, 0x98, 0x81, 0x69, 0x6c, 0x76, 0x71, 0x87, 0xb9,\n    0xcd, 0xd7, 0xb4, 0x7c, 0x6e, 0x98, 0xc1, 0xc1, 0xbe, 0xc1, 0xc1, 0xab, 0x93, 0x92, 0x81, 0x73,\n    0x72, 0x88, 0x95, 0x94, 0x8f, 0x87, 0x7e, 0x7b, 0x7e, 0x8d, 0x96, 0x8d, 0x80, 0x7b, 0x7b, 0x7b,\n    0x82, 0x84, 0x78, 0x6f, 0x6f, 0x64, 0x5e, 0x6a, 0x6e, 0x82, 0x90, 0x8b, 0x82, 0x84, 0x8c, 0x8f,\n    0x95, 0x9b, 0xa0, 0x9e, 0x99, 0x95, 0x8f, 0x8a, 0x85, 0x84, 0x81, 0x80, 0x83, 0x87, 0x87, 0x84,\n    0x93, 0x88, 0x7f, 0x78, 0x73, 0x76, 0x77, 0x70, 0x57, 0x46, 0x3e, 0x41, 0x45, 0x4b, 0x4e, 0x4b,\n    0x4f, 0x4d, 0x4d, 0x49, 0x3a, 0x29, 0x25, 0x2b, 0x27, 0x25, 0x24, 0x2d, 0x43, 0x57, 0x59, 0x51,\n    0x38, 0x33, 0x36, 0x40, 0x46, 0x44, 0x46, 0x4c, 0x49, 0x42, 0x51, 0x64, 0x6a, 0x72, 0x72, 0x60,\n    0x5c, 0x52, 0x46, 0x40, 0x46, 0x57, 0x6a, 0x77, 0x69, 0x5c, 0x44, 0x31, 0x36, 0x47, 0x49, 0x3e,\n    0x45, 0x48, 0x4b, 0x49, 0x41, 0x3a, 0x3c, 0x42, 0x3f, 0x42, 0x46, 0x42, 0x3a, 0x3e, 0x47, 0x4b,\n    0x63, 0x67, 0x5f, 0x46, 0x34, 0x38, 0x3d, 0x37, 0x37, 0x3f, 0x4b, 0x57, 0x62, 0x68, 0x66, 0x60,\n    0x5a, 0x47, 0x44, 0x47, 0x3a, 0x2b, 0x27, 0x26, 0x29, 0x27, 0x28, 0x30, 0x39, 0x3d, 0x39, 0x34,\n    0x37, 0x46, 0x61, 0x7a, 0x86, 0x84, 0x7c, 0x77, 0x6d, 0x63, 0x5f, 0x59, 0x48, 0x39, 0x31, 0x2c,\n    0x39, 0x47, 0x5b, 0x66, 0x62, 0x5d, 0x67, 0x77, 0x76, 0x77, 0x75, 0x6e, 0x68, 0x67, 0x6c, 0x72,\n    0x83, 0x8b, 0x95, 0x9c, 0xa1, 0xa5, 0xa4, 0xa0, 0x9e, 0x93, 0x83, 0x73, 0x68, 0x67, 0x6c, 0x72,\n    0x74, 0x7e, 0x86, 0x82, 0x79, 0x71, 0x6c, 0x68, 0x67, 0x64, 0x64, 0x69, 0x6a, 0x65, 0x62, 0x61,\n    0x65, 0x65, 0x72, 0x7a, 0x74, 0x73, 0x72, 0x67, 0x65, 0x67, 0x62, 0x68, 0x7d, 0x84, 0x80, 0x83,\n    0x81, 0x75, 0x6e, 0x72, 0x76, 0x72, 0x6c, 0x69, 0x70, 0x70, 0x72, 0x67, 0x6c, 0x7b, 0x73, 0x6a,\n    0x62, 0x5e, 0x59, 0x5b, 0x66, 0x72, 0x76, 0x74, 0x7c, 0x89, 0x8b, 0x7d, 0x77, 0x81, 0x85, 0x80,\n    0x7a, 0x7c, 0x84, 0x8f, 0x94, 0x91, 0x89, 0x83, 0x87, 0x8c, 0x8d, 0x89, 0x8b, 0x8f, 0x88, 0x7b,\n    0x86, 0x94, 0x9c, 0x95, 0x8b, 0x8a, 0x8e, 0x90, 0x99, 0x9d, 0xa0, 0xa1, 0xa1, 0xa0, 0x9d, 0x9a,\n    0x94, 0x95, 0x9f, 0xad, 0xb0, 0xa3, 0x95, 0x8f, 0x96, 0x96, 0x9b, 0xa5, 0xb0, 0xb3, 0xad, 0xa7,\n    0xac, 0xa7, 0xa1, 0x9c, 0x95, 0x8d, 0x89, 0x89, 0x94, 0x9a, 0x9c, 0x9b, 0x9e, 0xa5, 0xa7, 0xa3,\n    0xa7, 0xa7, 0xa4, 0xa0, 0xa0, 0xa4, 0xa8, 0xaa, 0xab, 0xaa, 0xa5, 0x9f, 0xa1, 0xa6, 0xa6, 0xa1,\n    0xa2, 0xa0, 0x97, 0x89, 0x83, 0x87, 0x8f, 0x94, 0x94, 0xa6, 0xb0, 0xa9, 0xa2, 0xa3, 0xa2, 0x9b,\n    0x95, 0x93, 0x98, 0x9e, 0x9c, 0x94, 0x95, 0x9c, 0xa2, 0xa1, 0xa5, 0xad, 0xb7, 0xb9, 0xb5, 0xaf,\n    0x9b, 0x97, 0x9a, 0xa4, 0xad, 0xa9, 0x9c, 0x91, 0x83, 0x83, 0x7d, 0x82, 0x87, 0x8a, 0x96, 0x97,\n    0x9a, 0x9c, 0x9e, 0xa0, 0xa3, 0xa6, 0xaa, 0xac, 0xab, 0xac, 0xaf, 0xb1, 0xb3, 0xb4, 0xb4, 0xb4,\n    0xb7, 0xb7, 0xb7, 0xb8, 0xb8, 0xb8, 0xb8, 0xb8, 0xb5, 0xb6, 0xb7, 0xb8, 0xb8, 0xb8, 0xb7, 0xb6,\n    0xb6, 0xb5, 0xb2, 0xb0, 0xad, 0xac, 0xab, 0xaa, 0xa7, 0xa4, 0xa1, 0x9d, 0x9b, 0x98, 0x95, 0x94,\n    0x93, 0x91, 0x8f, 0x8e, 0x8d, 0x8c, 0x8a, 0x88, 0x89, 0x89, 0x88, 0x88, 0x87, 0x87, 0x88, 0x88,\n    0x80, 0x71, 0x87, 0x9c, 0xa0, 0xab, 0xad, 0xa9, 0xa6, 0xaa, 0xaa, 0xa3, 0x9a, 0x96, 0x97, 0x99,\n    0x97, 0x99, 0x9e, 0xa6, 0xad, 0xb3, 0xb5, 0xb6, 0xb1, 0xb2, 0xb5, 0xb7, 0xb8, 0xb9, 0xba, 0xba,\n    0xc1, 0xc2, 0xc3, 0xc1, 0xbe, 0xbd, 0xbe, 0xbf, 0xc2, 0xc6, 0xcb, 0xd0, 0xd3, 0xd5, 0xd6, 0xd8,\n    0xd4, 0xcd, 0xc2, 0xba, 0xb5, 0xb5, 0xb8, 0xbc, 0xca, 0xce, 0xd0, 0xd2, 0xcf, 0xc0, 0xb6, 0xba,\n    0xc6, 0xca, 0xcd, 0xcd, 0xc9, 0xc5, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc5, 0xc8, 0xcc, 0xcf,\n    0xd2, 0xd4, 0xd5, 0xd4, 0xd2, 0xd0, 0xcf, 0xce, 0xd1, 0xcf, 0xce, 0xd0, 0xd4, 0xd8, 0xda, 0xda,\n    0xde, 0xe0, 0xe3, 0xe3, 0xe2, 0xe0, 0xde, 0xde, 0xdd, 0xe0, 0xe1, 0xdf, 0xdf, 0xe0, 0xdf, 0xdd,\n    0xdc, 0xdd, 0xde, 0xdf, 0xdf, 0xdf, 0xde, 0xde, 0xde, 0xde, 0xdd, 0xdd, 0xdd, 0xde, 0xde, 0xdf,\n    0xdf, 0xde, 0xdd, 0xdc, 0xdc, 0xdc, 0xdd, 0xde, 0xda, 0xd9, 0xd8, 0xd6, 0xd5, 0xd3, 0xd2, 0xd1,\n    0xce, 0xd0, 0xd0, 0xcf, 0xd0, 0xcd, 0xc0, 0xaf, 0x71, 0x7f, 0x7c, 0x72, 0x70, 0x71, 0x8e, 0xbf,\n    0xcc, 0xde, 0xb1, 0x79, 0x76, 0xa4, 0xd0, 0xc8, 0xb8, 0xbc, 0xba, 0xaa, 0x89, 0x8e, 0x8a, 0x91,\n    0x90, 0x90, 0x8b, 0x8a, 0x8d, 0x88, 0x7f, 0x7e, 0x88, 0x98, 0xa0, 0x96, 0x87, 0x81, 0x80, 0x7e,\n    0x76, 0x7c, 0x73, 0x77, 0x88, 0x7a, 0x62, 0x66, 0x6d, 0x85, 0x96, 0x92, 0x86, 0x83, 0x83, 0x81,\n    0x9b, 0x9e, 0x9c, 0x94, 0x91, 0x95, 0x96, 0x91, 0x89, 0x88, 0x88, 0x8d, 0x96, 0x9a, 0x94, 0x8b,\n    0x87, 0x8b, 0x92, 0x8f, 0x7f, 0x70, 0x61, 0x52, 0x41, 0x3c, 0x3b, 0x3d, 0x43, 0x4f, 0x56, 0x50,\n    0x53, 0x4f, 0x4e, 0x4b, 0x3b, 0x25, 0x1f, 0x25, 0x1c, 0x1d, 0x1e, 0x24, 0x33, 0x3e, 0x31, 0x1d,\n    0x1d, 0x2e, 0x3e, 0x49, 0x5e, 0x73, 0x77, 0x6d, 0x60, 0x4b, 0x4b, 0x56, 0x5c, 0x69, 0x6c, 0x5a,\n    0x51, 0x4a, 0x3d, 0x37, 0x44, 0x59, 0x62, 0x60, 0x55, 0x48, 0x34, 0x27, 0x27, 0x2f, 0x37, 0x3a,\n    0x38, 0x34, 0x33, 0x35, 0x35, 0x31, 0x2f, 0x31, 0x2f, 0x2e, 0x37, 0x3c, 0x3d, 0x4a, 0x53, 0x4a,\n    0x41, 0x4e, 0x5e, 0x54, 0x38, 0x2e, 0x2f, 0x26, 0x44, 0x52, 0x5e, 0x5f, 0x5b, 0x56, 0x51, 0x4c,\n    0x45, 0x47, 0x4b, 0x41, 0x36, 0x3b, 0x3b, 0x28, 0x28, 0x28, 0x2b, 0x31, 0x36, 0x37, 0x32, 0x2d,\n    0x43, 0x54, 0x67, 0x6f, 0x6d, 0x68, 0x67, 0x68, 0x6a, 0x60, 0x5c, 0x53, 0x3e, 0x2d, 0x2a, 0x2a,\n    0x41, 0x3f, 0x3a, 0x37, 0x3d, 0x47, 0x49, 0x45, 0x42, 0x4e, 0x5a, 0x5e, 0x5c, 0x60, 0x6d, 0x79,\n    0x7a, 0x82, 0x89, 0x8f, 0x96, 0x9b, 0x9a, 0x95, 0x8b, 0x79, 0x71, 0x7c, 0x83, 0x77, 0x67, 0x5f,\n    0x80, 0x7f, 0x7d, 0x7b, 0x79, 0x74, 0x6a, 0x60, 0x60, 0x68, 0x70, 0x70, 0x68, 0x61, 0x5e, 0x5f,\n    0x5e, 0x5d, 0x64, 0x70, 0x75, 0x70, 0x6c, 0x6c, 0x75, 0x7b, 0x79, 0x6d, 0x69, 0x6f, 0x6c, 0x62,\n    0x73, 0x78, 0x7b, 0x79, 0x78, 0x79, 0x78, 0x75, 0x75, 0x72, 0x6e, 0x6e, 0x70, 0x72, 0x73, 0x72,\n    0x67, 0x64, 0x64, 0x6a, 0x73, 0x7b, 0x80, 0x81, 0x89, 0x89, 0x8c, 0x90, 0x91, 0x8c, 0x89, 0x87,\n    0x8f, 0x98, 0xa2, 0xa5, 0x9e, 0x93, 0x8c, 0x8b, 0x94, 0x9a, 0xa0, 0xa0, 0x97, 0x8c, 0x87, 0x88,\n    0x8f, 0x94, 0x95, 0x8d, 0x84, 0x84, 0x8d, 0x95, 0xa2, 0x92, 0x95, 0xa3, 0xa5, 0xa2, 0x98, 0x89,\n    0x8c, 0x8a, 0x8f, 0x95, 0x91, 0x90, 0x93, 0x93, 0x99, 0xa5, 0xad, 0xad, 0xad, 0xb2, 0xb4, 0xb2,\n    0xac, 0xa9, 0xa6, 0x9d, 0x8c, 0x7f, 0x82, 0x8e, 0x9b, 0x9e, 0xa4, 0xa3, 0xab, 0xac, 0x97, 0x8f,\n    0x9b, 0xa5, 0xa8, 0xa7, 0xaa, 0xa8, 0xa2, 0xa2, 0xa8, 0xa6, 0xa5, 0xa5, 0xa4, 0xa4, 0xa8, 0xab,\n    0xa2, 0x9c, 0x90, 0x80, 0x76, 0x78, 0x82, 0x8b, 0x98, 0x97, 0xa2, 0xae, 0xa8, 0x99, 0x9e, 0xb0,\n    0xa5, 0x94, 0x90, 0x98, 0x99, 0x98, 0x9a, 0x9c, 0x9b, 0xa1, 0xab, 0xb3, 0xb7, 0xb6, 0xb0, 0xaa,\n    0xa3, 0x9c, 0x97, 0x9c, 0xa3, 0xa2, 0x98, 0x8d, 0x87, 0x84, 0x7e, 0x7e, 0x88, 0x8e, 0x91, 0x98,\n    0x9a, 0x9b, 0x9e, 0xa1, 0xa4, 0xa8, 0xaa, 0xab, 0xad, 0xaf, 0xb1, 0xb2, 0xb2, 0xb2, 0xb3, 0xb4,\n    0xb5, 0xb6, 0xb7, 0xb9, 0xba, 0xbb, 0xbb, 0xbb, 0xba, 0xb9, 0xb7, 0xb7, 0xb7, 0xb7, 0xb5, 0xb4,\n    0xb3, 0xb2, 0xb1, 0xaf, 0xad, 0xab, 0xa9, 0xa8, 0xa5, 0xa3, 0xa0, 0x9e, 0x9b, 0x98, 0x95, 0x92,\n    0x91, 0x8f, 0x8d, 0x8c, 0x8b, 0x8a, 0x88, 0x86, 0x87, 0x88, 0x89, 0x88, 0x89, 0x8b, 0x8b, 0x89,\n    0x78, 0x7d, 0x88, 0x97, 0xa1, 0xa6, 0xa9, 0xac, 0xaa, 0xae, 0xa8, 0x9b, 0x95, 0x9a, 0x9b, 0x96,\n    0x9a, 0x9b, 0x9c, 0xa0, 0xa7, 0xb0, 0xb7, 0xb9, 0xb6, 0xb7, 0xb7, 0xb6, 0xb9, 0xbe, 0xc0, 0xbf,\n    0xc4, 0xc3, 0xc2, 0xc2, 0xc2, 0xc3, 0xc3, 0xc4, 0xc5, 0xc7, 0xcb, 0xcf, 0xd0, 0xd0, 0xd0, 0xd1,\n    0xd1, 0xce, 0xc8, 0xbf, 0xb7, 0xb4, 0xb5, 0xb8, 0xc0, 0xc3, 0xca, 0xd1, 0xd0, 0xc5, 0xb9, 0xb1,\n    0xb4, 0xbf, 0xcd, 0xd3, 0xcf, 0xc8, 0xc4, 0xc4, 0xc9, 0xc7, 0xc4, 0xc2, 0xc2, 0xc5, 0xc8, 0xca,\n    0xcd, 0xcc, 0xcb, 0xcd, 0xce, 0xce, 0xcc, 0xca, 0xcc, 0xcc, 0xd0, 0xd5, 0xd6, 0xd3, 0xd5, 0xd9,\n    0xda, 0xdf, 0xe2, 0xdf, 0xd9, 0xd5, 0xd6, 0xd8, 0xdd, 0xe2, 0xe0, 0xdd, 0xdf, 0xe0, 0xde, 0xe0,\n    0xdb, 0xda, 0xda, 0xdc, 0xdd, 0xdf, 0xdf, 0xde, 0xdd, 0xe0, 0xe1, 0xdf, 0xdf, 0xe1, 0xe0, 0xdc,\n    0xda, 0xdb, 0xdc, 0xdd, 0xdd, 0xdc, 0xda, 0xd9, 0xd7, 0xd7, 0xd7, 0xd7, 0xd7, 0xd6, 0xd3, 0xd1,\n    0xd1, 0xd4, 0xce, 0xce, 0xcc, 0xd1, 0xc2, 0x87, 0x7b, 0x76, 0x76, 0x80, 0x9a, 0xb3, 0xc0, 0xd0,\n    0xce, 0xd6, 0xad, 0x6e, 0x7d, 0xb5, 0xc5, 0xc4, 0xbb, 0xba, 0xb6, 0xa5, 0x8f, 0x88, 0x8c, 0x8d,\n    0x8c, 0x8b, 0x8e, 0x90, 0x89, 0x7e, 0x7b, 0x81, 0x8a, 0x8e, 0x97, 0x92, 0x7d, 0x75, 0x80, 0x8b,\n    0x90, 0x8b, 0x77, 0x73, 0x6b, 0x5d, 0x62, 0x5d, 0x67, 0x7c, 0x8e, 0x95, 0x92, 0x85, 0x7b, 0x7b,\n    0x92, 0x9f, 0x9e, 0x94, 0x96, 0x9a, 0x90, 0x85, 0x8b, 0x86, 0x83, 0x8a, 0x92, 0x94, 0x92, 0x8f,\n    0x92, 0x9d, 0xa0, 0x92, 0x7b, 0x68, 0x5b, 0x54, 0x3b, 0x31, 0x34, 0x43, 0x4f, 0x57, 0x5b, 0x58,\n    0x59, 0x5a, 0x55, 0x45, 0x2e, 0x1d, 0x1b, 0x20, 0x1e, 0x21, 0x26, 0x29, 0x29, 0x24, 0x1a, 0x12,\n    0x1a, 0x21, 0x33, 0x47, 0x50, 0x53, 0x5f, 0x6d, 0x82, 0x7c, 0x7c, 0x7a, 0x6e, 0x61, 0x5a, 0x55,\n    0x57, 0x4b, 0x44, 0x46, 0x50, 0x5c, 0x5b, 0x4d, 0x46, 0x40, 0x36, 0x2f, 0x2f, 0x32, 0x30, 0x2a,\n    0x23, 0x2d, 0x34, 0x2a, 0x20, 0x28, 0x35, 0x36, 0x3d, 0x45, 0x4d, 0x50, 0x4f, 0x4a, 0x46, 0x44,\n    0x3b, 0x4b, 0x55, 0x5d, 0x49, 0x4c, 0x5e, 0x7e, 0x8e, 0x89, 0x86, 0x7e, 0x6d, 0x5d, 0x4d, 0x3e,\n    0x43, 0x44, 0x43, 0x40, 0x3a, 0x33, 0x2d, 0x2a, 0x29, 0x33, 0x2d, 0x1f, 0x1a, 0x1a, 0x25, 0x39,\n    0x46, 0x42, 0x4e, 0x56, 0x6a, 0x6e, 0x67, 0x4e, 0x55, 0x5c, 0x56, 0x3c, 0x20, 0x14, 0x17, 0x1c,\n    0x28, 0x31, 0x3d, 0x41, 0x3e, 0x38, 0x33, 0x30, 0x39, 0x4b, 0x59, 0x59, 0x56, 0x5a, 0x62, 0x67,\n    0x64, 0x78, 0x86, 0x84, 0x83, 0x89, 0x8a, 0x84, 0x75, 0x71, 0x71, 0x70, 0x69, 0x63, 0x66, 0x6f,\n    0x73, 0x78, 0x78, 0x6e, 0x61, 0x5c, 0x5e, 0x61, 0x6c, 0x6b, 0x67, 0x61, 0x5b, 0x5a, 0x5e, 0x61,\n    0x6a, 0x70, 0x7a, 0x7f, 0x78, 0x6c, 0x6a, 0x6f, 0x85, 0x8b, 0x89, 0x7b, 0x70, 0x6f, 0x6e, 0x6a,\n    0x61, 0x68, 0x71, 0x79, 0x81, 0x86, 0x85, 0x7f, 0x7b, 0x7e, 0x81, 0x80, 0x7b, 0x75, 0x70, 0x6e,\n    0x79, 0x75, 0x75, 0x7a, 0x7e, 0x7e, 0x7e, 0x80, 0x89, 0x8b, 0x8d, 0x8c, 0x87, 0x82, 0x84, 0x8a,\n    0x95, 0x95, 0x97, 0x9b, 0x9f, 0x9d, 0x98, 0x94, 0x99, 0x9c, 0xa0, 0xa0, 0x99, 0x90, 0x8c, 0x8c,\n    0x92, 0x90, 0x8f, 0x92, 0x94, 0x93, 0x8f, 0x8b, 0x90, 0x9d, 0xad, 0xaf, 0xa5, 0xa3, 0xac, 0xb2,\n    0xa6, 0x9d, 0x99, 0x97, 0x95, 0x99, 0x9d, 0x99, 0xa4, 0xa9, 0xab, 0xa9, 0xaa, 0xaf, 0xb1, 0xae,\n    0xa5, 0x9d, 0x98, 0x9a, 0x98, 0x8e, 0x86, 0x84, 0x90, 0x8d, 0x9a, 0xa5, 0xa6, 0x92, 0x7e, 0x88,\n    0x7e, 0x8e, 0x96, 0x93, 0x8f, 0x8b, 0x8b, 0x92, 0x92, 0x92, 0x93, 0x96, 0x9b, 0x9f, 0xa4, 0xa7,\n    0xac, 0xa7, 0xa0, 0x9c, 0x9a, 0x97, 0x91, 0x8c, 0x7b, 0x7c, 0x82, 0x87, 0x87, 0x88, 0x93, 0xa0,\n    0x9a, 0xa0, 0xa7, 0xa2, 0x94, 0x93, 0x9c, 0xa0, 0xa9, 0xaf, 0xae, 0xa4, 0x9f, 0xa2, 0xa6, 0xa5,\n    0x92, 0x8c, 0x88, 0x8c, 0x96, 0x99, 0x8d, 0x7f, 0x81, 0x81, 0x7d, 0x7f, 0x88, 0x8e, 0x92, 0x99,\n    0x99, 0x9b, 0x9d, 0xa0, 0xa4, 0xa7, 0xaa, 0xab, 0xab, 0xad, 0xae, 0xaf, 0xb0, 0xb2, 0xb4, 0xb6,\n    0xb6, 0xb8, 0xb9, 0xbb, 0xbb, 0xbb, 0xbb, 0xba, 0xba, 0xb9, 0xb8, 0xb7, 0xb7, 0xb7, 0xb6, 0xb4,\n    0xb3, 0xb2, 0xb0, 0xaf, 0xac, 0xab, 0xa9, 0xa8, 0xa6, 0xa3, 0x9f, 0x9c, 0x9a, 0x98, 0x96, 0x95,\n    0x92, 0x90, 0x8d, 0x8c, 0x8a, 0x89, 0x87, 0x85, 0x84, 0x87, 0x88, 0x89, 0x8a, 0x8b, 0x8a, 0x86,\n    0x73, 0x7d, 0x8c, 0x9b, 0xa4, 0xa6, 0xa8, 0xa9, 0xb1, 0xae, 0xa4, 0x9a, 0x98, 0x9c, 0x9d, 0x99,\n    0x9b, 0x9a, 0x9a, 0x9c, 0xa2, 0xad, 0xb7, 0xbd, 0xbc, 0xbd, 0xbc, 0xbb, 0xbc, 0xc0, 0xc1, 0xc0,\n    0xc6, 0xc7, 0xc8, 0xc9, 0xc9, 0xc9, 0xc8, 0xc7, 0xc4, 0xc3, 0xc6, 0xcc, 0xcf, 0xcd, 0xcd, 0xcf,\n    0xcc, 0xcb, 0xc8, 0xc3, 0xbd, 0xb8, 0xb7, 0xb6, 0xb6, 0xbb, 0xc5, 0xd0, 0xd1, 0xc8, 0xbb, 0xb3,\n    0xb9, 0xb5, 0xbc, 0xcc, 0xd1, 0xca, 0xc8, 0xce, 0xc9, 0xc8, 0xc8, 0xc8, 0xc9, 0xc9, 0xc8, 0xc8,\n    0xcb, 0xcb, 0xcd, 0xcf, 0xd1, 0xd1, 0xcf, 0xcc, 0xcd, 0xcc, 0xcd, 0xd1, 0xd1, 0xcf, 0xcf, 0xd2,\n    0xd2, 0xd4, 0xd5, 0xd4, 0xd3, 0xd6, 0xdd, 0xe2, 0xdc, 0xdf, 0xe1, 0xe2, 0xe1, 0xe1, 0xe0, 0xe0,\n    0xde, 0xdd, 0xdd, 0xdd, 0xdf, 0xdf, 0xdf, 0xde, 0xdd, 0xe0, 0xe0, 0xde, 0xde, 0xe0, 0xe0, 0xdd,\n    0xdc, 0xdd, 0xde, 0xde, 0xdd, 0xdc, 0xdb, 0xda, 0xdb, 0xd9, 0xd8, 0xd7, 0xd7, 0xd7, 0xd5, 0xd4,\n    0xd5, 0xd7, 0xd2, 0xd3, 0xd3, 0xd5, 0xbf, 0x81, 0x74, 0x7f, 0x9a, 0xb7, 0xc6, 0xbf, 0xbd, 0xcd,\n    0xc7, 0xc9, 0xa0, 0x65, 0x77, 0xb5, 0xc3, 0xb5, 0xbb, 0xb8, 0xb6, 0xad, 0x9b, 0x8e, 0x89, 0x87,\n    0x8b, 0x8b, 0x8a, 0x86, 0x7e, 0x77, 0x79, 0x7f, 0x80, 0x81, 0x88, 0x84, 0x74, 0x6e, 0x77, 0x80,\n    0x8a, 0x84, 0x77, 0x7d, 0x76, 0x63, 0x66, 0x66, 0x6c, 0x7f, 0x8e, 0x90, 0x8a, 0x7d, 0x78, 0x7f,\n    0x75, 0x84, 0x8e, 0x8d, 0x89, 0x83, 0x80, 0x85, 0x95, 0x8d, 0x84, 0x83, 0x86, 0x88, 0x8a, 0x8c,\n    0x9b, 0x96, 0x88, 0x75, 0x67, 0x60, 0x59, 0x51, 0x3d, 0x32, 0x35, 0x47, 0x53, 0x59, 0x5a, 0x57,\n    0x58, 0x5b, 0x56, 0x42, 0x2a, 0x1c, 0x1c, 0x21, 0x20, 0x23, 0x23, 0x1e, 0x17, 0x14, 0x16, 0x18,\n    0x16, 0x14, 0x1a, 0x28, 0x35, 0x3d, 0x44, 0x4a, 0x52, 0x54, 0x5c, 0x65, 0x70, 0x7c, 0x7b, 0x6f,\n    0x51, 0x48, 0x41, 0x46, 0x55, 0x5b, 0x51, 0x46, 0x3f, 0x3f, 0x38, 0x2a, 0x20, 0x22, 0x2a, 0x31,\n    0x37, 0x2a, 0x21, 0x1c, 0x17, 0x1e, 0x30, 0x3c, 0x3a, 0x39, 0x46, 0x5b, 0x62, 0x5a, 0x57, 0x5d,\n    0x79, 0x76, 0x75, 0x7d, 0x7a, 0x7a, 0x7c, 0x87, 0x8e, 0x8d, 0x8b, 0x80, 0x70, 0x65, 0x55, 0x40,\n    0x2a, 0x28, 0x25, 0x23, 0x23, 0x22, 0x21, 0x20, 0x2c, 0x2c, 0x26, 0x25, 0x29, 0x28, 0x22, 0x20,\n    0x2e, 0x2f, 0x3f, 0x48, 0x5d, 0x63, 0x64, 0x52, 0x3f, 0x3a, 0x2e, 0x20, 0x16, 0x13, 0x13, 0x12,\n    0x17, 0x1c, 0x23, 0x28, 0x2b, 0x2a, 0x29, 0x29, 0x2b, 0x36, 0x3e, 0x43, 0x49, 0x53, 0x59, 0x59,\n    0x4e, 0x57, 0x5b, 0x58, 0x5b, 0x66, 0x6e, 0x6e, 0x77, 0x68, 0x5e, 0x62, 0x6c, 0x71, 0x74, 0x77,\n    0x5b, 0x67, 0x6f, 0x69, 0x5b, 0x54, 0x56, 0x5b, 0x5a, 0x61, 0x66, 0x64, 0x5d, 0x59, 0x5c, 0x61,\n    0x60, 0x68, 0x74, 0x7b, 0x77, 0x70, 0x72, 0x79, 0x66, 0x6b, 0x6f, 0x71, 0x70, 0x6d, 0x68, 0x63,\n    0x61, 0x67, 0x71, 0x7e, 0x89, 0x8b, 0x80, 0x74, 0x71, 0x7b, 0x86, 0x89, 0x86, 0x84, 0x86, 0x89,\n    0x7b, 0x78, 0x7a, 0x7f, 0x7b, 0x6e, 0x65, 0x65, 0x7f, 0x85, 0x8c, 0x8d, 0x89, 0x8a, 0x94, 0xa0,\n    0xa5, 0xa1, 0x9f, 0xa1, 0xa7, 0xab, 0xab, 0xa8, 0x9b, 0x9c, 0x9e, 0xa1, 0x9e, 0x97, 0x92, 0x90,\n    0x93, 0x84, 0x7b, 0x82, 0x8e, 0x92, 0x8d, 0x88, 0x8c, 0x94, 0x98, 0x9f, 0xaf, 0xbb, 0xb7, 0xaf,\n    0xab, 0xa5, 0x9f, 0x98, 0x95, 0xa0, 0xab, 0xaa, 0xa9, 0xac, 0xad, 0xab, 0xab, 0xad, 0xa9, 0xa2,\n    0xb1, 0xac, 0xa8, 0xa3, 0x9a, 0x90, 0x8c, 0x8e, 0x7f, 0x98, 0xaf, 0xae, 0xb0, 0xaf, 0x96, 0x86,\n    0x90, 0x9f, 0xa6, 0xa2, 0x9d, 0x96, 0x92, 0x96, 0x9e, 0x9d, 0x9b, 0x9a, 0x9c, 0x9e, 0xa0, 0xa1,\n    0x97, 0x93, 0x92, 0x98, 0xa2, 0xa9, 0xaa, 0xa8, 0xa1, 0x9e, 0x93, 0x86, 0x82, 0x89, 0x92, 0x96,\n    0x97, 0xa9, 0xb6, 0xaa, 0x99, 0x9f, 0xad, 0xaf, 0xa5, 0x9f, 0x96, 0x97, 0xab, 0xbd, 0xb4, 0x9e,\n    0x97, 0x9c, 0x9a, 0x8f, 0x87, 0x85, 0x7f, 0x77, 0x79, 0x7d, 0x7d, 0x7e, 0x87, 0x8c, 0x90, 0x98,\n    0x99, 0x9a, 0x9d, 0xa0, 0xa3, 0xa7, 0xa9, 0xaa, 0xab, 0xac, 0xad, 0xae, 0xaf, 0xb2, 0xb6, 0xb9,\n    0xb7, 0xb8, 0xba, 0xbb, 0xbc, 0xbb, 0xb9, 0xb8, 0xba, 0xb9, 0xb8, 0xb8, 0xb8, 0xb7, 0xb6, 0xb5,\n    0xb3, 0xb2, 0xb1, 0xaf, 0xad, 0xab, 0xa9, 0xa8, 0xa7, 0xa4, 0x9f, 0x9c, 0x9a, 0x99, 0x97, 0x97,\n    0x92, 0x90, 0x8d, 0x8b, 0x8a, 0x88, 0x86, 0x84, 0x82, 0x85, 0x88, 0x89, 0x8a, 0x8b, 0x88, 0x83,\n    0x72, 0x81, 0x94, 0xa1, 0xa6, 0xa6, 0xa6, 0xa7, 0xb1, 0xa7, 0x9b, 0x95, 0x97, 0x9a, 0x9b, 0x99,\n    0x9b, 0x9b, 0x9c, 0x9e, 0xa3, 0xac, 0xb7, 0xbf, 0xc4, 0xc5, 0xc5, 0xc3, 0xc3, 0xc5, 0xc6, 0xc4,\n    0xc6, 0xc8, 0xcb, 0xcd, 0xcd, 0xcc, 0xc9, 0xc8, 0xc4, 0xbf, 0xc1, 0xc9, 0xcd, 0xc9, 0xc8, 0xcb,\n    0xca, 0xc9, 0xc8, 0xc6, 0xc2, 0xbc, 0xb5, 0xb0, 0xad, 0xb1, 0xba, 0xc5, 0xc8, 0xc3, 0xbb, 0xb7,\n    0xbd, 0xb4, 0xb4, 0xbf, 0xca, 0xcc, 0xcc, 0xce, 0xc7, 0xc7, 0xc9, 0xcd, 0xcf, 0xce, 0xcb, 0xc8,\n    0xc9, 0xcb, 0xce, 0xd1, 0xd3, 0xd3, 0xd1, 0xcf, 0xcc, 0xcb, 0xcd, 0xd0, 0xd0, 0xce, 0xcd, 0xce,\n    0xcf, 0xcf, 0xce, 0xcd, 0xcc, 0xcd, 0xcf, 0xd2, 0xde, 0xdb, 0xe1, 0xe5, 0xe3, 0xe2, 0xe3, 0xe1,\n    0xe1, 0xe0, 0xdf, 0xdf, 0xe0, 0xe0, 0xdf, 0xde, 0xdd, 0xde, 0xde, 0xdc, 0xdc, 0xde, 0xdf, 0xde,\n    0xdf, 0xdf, 0xde, 0xdd, 0xdd, 0xdc, 0xdb, 0xdb, 0xdc, 0xda, 0xd7, 0xd6, 0xd6, 0xd7, 0xd7, 0xd6,\n    0xd5, 0xd6, 0xd3, 0xd4, 0xd6, 0xd5, 0xb5, 0x76, 0x7a, 0xa5, 0xc6, 0xce, 0xcc, 0xc8, 0xc5, 0xc5,\n    0xd0, 0xb9, 0x8e, 0x64, 0x7a, 0xb7, 0xcc, 0xc6, 0xb6, 0xb6, 0xb5, 0xae, 0x9e, 0x8e, 0x86, 0x84,\n    0x85, 0x87, 0x86, 0x7e, 0x77, 0x77, 0x7b, 0x7d, 0x82, 0x80, 0x83, 0x82, 0x79, 0x78, 0x7f, 0x83,\n    0x84, 0x81, 0x83, 0x92, 0x89, 0x6b, 0x62, 0x62, 0x5d, 0x76, 0x8d, 0x96, 0x8e, 0x7b, 0x72, 0x79,\n    0x8b, 0x84, 0x7d, 0x7e, 0x80, 0x79, 0x7a, 0x87, 0x95, 0x97, 0x97, 0x93, 0x8a, 0x84, 0x87, 0x8d,\n    0x9b, 0x9c, 0x8d, 0x6f, 0x59, 0x57, 0x60, 0x65, 0x3f, 0x35, 0x3b, 0x4f, 0x5a, 0x5b, 0x5b, 0x59,\n    0x56, 0x59, 0x50, 0x38, 0x21, 0x18, 0x1b, 0x21, 0x23, 0x1e, 0x1a, 0x1e, 0x24, 0x26, 0x21, 0x1b,\n    0x1a, 0x19, 0x1a, 0x22, 0x2d, 0x34, 0x36, 0x34, 0x34, 0x3d, 0x3c, 0x31, 0x30, 0x3d, 0x41, 0x39,\n    0x3e, 0x40, 0x40, 0x4d, 0x62, 0x60, 0x4d, 0x44, 0x49, 0x4f, 0x4f, 0x42, 0x33, 0x2b, 0x2c, 0x30,\n    0x2c, 0x19, 0x0d, 0x0f, 0x16, 0x26, 0x39, 0x41, 0x27, 0x2b, 0x41, 0x5f, 0x6a, 0x5d, 0x4e, 0x49,\n    0x54, 0x50, 0x5b, 0x6b, 0x7e, 0x80, 0x85, 0x87, 0x8b, 0x8f, 0x90, 0x87, 0x7c, 0x77, 0x67, 0x4d,\n    0x41, 0x3b, 0x34, 0x31, 0x2f, 0x2d, 0x28, 0x23, 0x2a, 0x28, 0x2d, 0x33, 0x33, 0x2f, 0x27, 0x1d,\n    0x22, 0x1d, 0x28, 0x2f, 0x42, 0x47, 0x46, 0x32, 0x23, 0x18, 0x0d, 0x0b, 0x0e, 0x12, 0x12, 0x13,\n    0x11, 0x12, 0x15, 0x19, 0x1d, 0x1e, 0x1c, 0x1a, 0x1b, 0x1d, 0x1f, 0x26, 0x34, 0x41, 0x43, 0x3e,\n    0x44, 0x42, 0x3d, 0x39, 0x3d, 0x48, 0x53, 0x59, 0x51, 0x56, 0x5e, 0x60, 0x57, 0x48, 0x41, 0x42,\n    0x64, 0x6b, 0x71, 0x6f, 0x6a, 0x65, 0x63, 0x61, 0x56, 0x5c, 0x66, 0x6d, 0x70, 0x6d, 0x69, 0x66,\n    0x5b, 0x5a, 0x5e, 0x67, 0x6f, 0x73, 0x75, 0x77, 0x72, 0x6d, 0x6c, 0x75, 0x7e, 0x7b, 0x70, 0x66,\n    0x5e, 0x63, 0x6f, 0x82, 0x92, 0x92, 0x83, 0x73, 0x76, 0x79, 0x7a, 0x75, 0x6e, 0x6c, 0x71, 0x77,\n    0x7c, 0x7d, 0x86, 0x91, 0x8e, 0x7f, 0x75, 0x75, 0x81, 0x86, 0x8d, 0x90, 0x8f, 0x8e, 0x93, 0x9b,\n    0x9f, 0xa3, 0xa5, 0xa5, 0xa6, 0xa9, 0xab, 0xad, 0xa2, 0xa0, 0xa1, 0xa4, 0xa3, 0x9d, 0x98, 0x96,\n    0x83, 0x7e, 0x83, 0x92, 0x9e, 0x9b, 0x93, 0x8e, 0x7b, 0x82, 0x7b, 0x74, 0x7b, 0x7f, 0x7d, 0x83,\n    0xa8, 0xaa, 0xa9, 0x9f, 0x97, 0xa1, 0xad, 0xad, 0xaf, 0xb0, 0xae, 0xaa, 0xa9, 0xa9, 0xa7, 0xa3,\n    0xa7, 0xa9, 0xa9, 0xa1, 0x92, 0x87, 0x8b, 0x93, 0x99, 0x8f, 0x8b, 0x88, 0x8f, 0x91, 0x89, 0x90,\n    0x96, 0x9f, 0xa4, 0xaa, 0xb4, 0xb4, 0xac, 0xa8, 0x9f, 0x9f, 0x9e, 0x9a, 0x99, 0x9c, 0xa1, 0xa3,\n    0xa2, 0x9c, 0x96, 0x91, 0x8f, 0x90, 0x94, 0x99, 0x9d, 0xa0, 0x9f, 0x9c, 0x9b, 0x97, 0x8e, 0x83,\n    0x8d, 0x94, 0x97, 0x90, 0x8f, 0x9d, 0xa6, 0x9f, 0x8d, 0x8e, 0x8f, 0x96, 0xa5, 0xae, 0xa4, 0x93,\n    0x92, 0x9d, 0x9e, 0x91, 0x88, 0x89, 0x8a, 0x85, 0x76, 0x7e, 0x7f, 0x7f, 0x85, 0x89, 0x8d, 0x95,\n    0x98, 0x99, 0x9c, 0x9f, 0xa3, 0xa6, 0xa8, 0xaa, 0xab, 0xac, 0xae, 0xb0, 0xb2, 0xb4, 0xb7, 0xb9,\n    0xb5, 0xb7, 0xb9, 0xbb, 0xbb, 0xba, 0xb9, 0xb8, 0xbb, 0xb9, 0xb8, 0xb8, 0xb8, 0xb7, 0xb6, 0xb5,\n    0xb3, 0xb3, 0xb1, 0xaf, 0xad, 0xab, 0xaa, 0xa9, 0xa8, 0xa5, 0xa1, 0x9e, 0x9b, 0x99, 0x97, 0x95,\n    0x91, 0x8f, 0x8c, 0x8a, 0x89, 0x88, 0x86, 0x85, 0x84, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x86, 0x81,\n    0x77, 0x88, 0x9a, 0xa3, 0xa5, 0xa6, 0xa7, 0xa7, 0xa9, 0x9d, 0x94, 0x94, 0x97, 0x98, 0x99, 0x9b,\n    0x9b, 0x9d, 0xa1, 0xa5, 0xa8, 0xad, 0xb4, 0xbc, 0xc7, 0xca, 0xcb, 0xca, 0xc9, 0xcb, 0xcc, 0xcb,\n    0xc7, 0xc9, 0xcc, 0xcd, 0xce, 0xcd, 0xcb, 0xca, 0xcb, 0xc3, 0xc3, 0xcc, 0xd0, 0xcb, 0xc9, 0xcd,\n    0xcb, 0xc9, 0xc8, 0xc7, 0xc3, 0xbc, 0xb3, 0xac, 0xae, 0xae, 0xb0, 0xb5, 0xb8, 0xba, 0xbb, 0xbe,\n    0xc0, 0xc2, 0xbf, 0xba, 0xc1, 0xcf, 0xd1, 0xc9, 0xc7, 0xc7, 0xc9, 0xcc, 0xd0, 0xd2, 0xd0, 0xcd,\n    0xcb, 0xcd, 0xcf, 0xd1, 0xd3, 0xd3, 0xd2, 0xd1, 0xce, 0xce, 0xcf, 0xcf, 0xcd, 0xcc, 0xcd, 0xcf,\n    0xce, 0xd0, 0xd3, 0xd8, 0xde, 0xe3, 0xe7, 0xe8, 0xe4, 0xdd, 0xe0, 0xe4, 0xe2, 0xe3, 0xe5, 0xe1,\n    0xe3, 0xe2, 0xe1, 0xe0, 0xe0, 0xe0, 0xde, 0xdd, 0xdc, 0xdc, 0xdb, 0xda, 0xda, 0xdc, 0xdd, 0xdd,\n    0xdf, 0xde, 0xdd, 0xdc, 0xdb, 0xdc, 0xdc, 0xdc, 0xda, 0xd9, 0xd7, 0xd6, 0xd6, 0xd6, 0xd6, 0xd5,\n    0xd3, 0xd5, 0xd4, 0xd3, 0xd5, 0xd2, 0xab, 0x70, 0x8a, 0xc0, 0xd6, 0xc8, 0xbf, 0xc6, 0xca, 0xbe,\n    0xb5, 0x91, 0x76, 0x67, 0x69, 0x75, 0x73, 0x70, 0xa7, 0xb1, 0xae, 0x9c, 0x89, 0x7d, 0x7a, 0x7e,\n    0x7a, 0x80, 0x80, 0x79, 0x77, 0x7b, 0x7c, 0x78, 0x75, 0x71, 0x73, 0x76, 0x76, 0x7d, 0x85, 0x86,\n    0x7f, 0x7f, 0x87, 0x92, 0x87, 0x6a, 0x5c, 0x5c, 0x62, 0x72, 0x81, 0x88, 0x84, 0x7a, 0x7c, 0x8b,\n    0x83, 0x8a, 0x8d, 0x87, 0x77, 0x69, 0x76, 0x94, 0x8d, 0x8d, 0x8d, 0x8d, 0x88, 0x82, 0x80, 0x81,\n    0x79, 0x73, 0x62, 0x50, 0x4f, 0x5a, 0x5b, 0x53, 0x3b, 0x36, 0x42, 0x55, 0x5b, 0x59, 0x5a, 0x5b,\n    0x59, 0x56, 0x47, 0x2e, 0x1b, 0x19, 0x1f, 0x22, 0x24, 0x1c, 0x19, 0x24, 0x31, 0x34, 0x2a, 0x1f,\n    0x18, 0x1b, 0x1b, 0x1a, 0x1c, 0x22, 0x27, 0x29, 0x30, 0x3a, 0x37, 0x2e, 0x32, 0x40, 0x49, 0x4a,\n    0x40, 0x49, 0x4b, 0x57, 0x6a, 0x5e, 0x45, 0x41, 0x48, 0x4b, 0x4d, 0x4a, 0x40, 0x34, 0x28, 0x21,\n    0x23, 0x1f, 0x1c, 0x1b, 0x24, 0x34, 0x36, 0x28, 0x1d, 0x23, 0x2e, 0x3f, 0x54, 0x64, 0x65, 0x5f,\n    0x44, 0x47, 0x59, 0x5a, 0x5a, 0x45, 0x45, 0x47, 0x61, 0x66, 0x70, 0x77, 0x7b, 0x81, 0x7a, 0x69,\n    0x62, 0x5a, 0x4f, 0x45, 0x3d, 0x37, 0x32, 0x2e, 0x2d, 0x27, 0x2f, 0x39, 0x3a, 0x3f, 0x44, 0x3e,\n    0x3d, 0x2f, 0x30, 0x32, 0x44, 0x46, 0x41, 0x2b, 0x18, 0x10, 0x0c, 0x0e, 0x0f, 0x0e, 0x11, 0x15,\n    0x13, 0x14, 0x17, 0x1a, 0x1c, 0x1a, 0x16, 0x13, 0x1c, 0x1b, 0x1b, 0x20, 0x2a, 0x33, 0x32, 0x2b,\n    0x2c, 0x28, 0x25, 0x25, 0x28, 0x2e, 0x38, 0x41, 0x4c, 0x47, 0x44, 0x44, 0x43, 0x3e, 0x3b, 0x3a,\n    0x74, 0x74, 0x71, 0x6b, 0x68, 0x69, 0x6b, 0x6b, 0x68, 0x5f, 0x58, 0x5b, 0x67, 0x6d, 0x6a, 0x64,\n    0x58, 0x53, 0x52, 0x5b, 0x69, 0x75, 0x7d, 0x80, 0x7e, 0x74, 0x6e, 0x71, 0x75, 0x72, 0x6a, 0x64,\n    0x62, 0x63, 0x6d, 0x80, 0x90, 0x8f, 0x7e, 0x6e, 0x73, 0x70, 0x6c, 0x68, 0x68, 0x6e, 0x77, 0x7e,\n    0x85, 0x85, 0x8a, 0x90, 0x8b, 0x7e, 0x77, 0x78, 0x83, 0x86, 0x8e, 0x99, 0x9e, 0x9d, 0x99, 0x97,\n    0x91, 0x9a, 0xa4, 0xaa, 0xaf, 0xb3, 0xb4, 0xb3, 0xb2, 0xac, 0xa5, 0xa1, 0x9c, 0x98, 0x97, 0x98,\n    0x9b, 0x98, 0x95, 0x8e, 0x80, 0x75, 0x74, 0x7b, 0x87, 0x99, 0xa6, 0xae, 0xac, 0x97, 0x85, 0x86,\n    0x8b, 0x90, 0x97, 0x99, 0x9c, 0xa8, 0xaf, 0xa8, 0xaf, 0xad, 0xa7, 0xa0, 0x9d, 0xa1, 0xa6, 0xa9,\n    0x94, 0x97, 0x99, 0x99, 0x94, 0x91, 0x95, 0x9b, 0x90, 0x8b, 0x8d, 0x90, 0xa0, 0xac, 0xab, 0xb5,\n    0xc4, 0xc6, 0xc1, 0xc0, 0xc5, 0xc1, 0xb4, 0xad, 0xb7, 0xb9, 0xb5, 0xab, 0xa4, 0xa5, 0xaa, 0xae,\n    0xa7, 0xa2, 0x9e, 0x9b, 0x96, 0x8f, 0x8d, 0x8e, 0x8b, 0x81, 0x79, 0x7a, 0x7e, 0x80, 0x81, 0x82,\n    0x91, 0x87, 0x84, 0x89, 0x93, 0x9e, 0x9c, 0x8d, 0x8c, 0x85, 0x84, 0x8f, 0x9d, 0xa0, 0x99, 0x92,\n    0x91, 0x94, 0x91, 0x8c, 0x90, 0x95, 0x8a, 0x78, 0x7b, 0x83, 0x84, 0x81, 0x85, 0x89, 0x8c, 0x92,\n    0x97, 0x99, 0x9b, 0x9e, 0xa2, 0xa5, 0xa8, 0xa9, 0xaa, 0xad, 0xb0, 0xb2, 0xb3, 0xb4, 0xb5, 0xb5,\n    0xb5, 0xb6, 0xb8, 0xba, 0xbc, 0xbb, 0xbb, 0xba, 0xba, 0xb9, 0xb8, 0xb7, 0xb8, 0xb7, 0xb6, 0xb5,\n    0xb4, 0xb3, 0xb1, 0xaf, 0xad, 0xab, 0xaa, 0xa9, 0xa8, 0xa6, 0xa4, 0xa1, 0x9e, 0x9a, 0x96, 0x93,\n    0x8f, 0x8d, 0x8b, 0x89, 0x88, 0x88, 0x87, 0x86, 0x88, 0x88, 0x87, 0x86, 0x88, 0x88, 0x85, 0x7f,\n    0x7e, 0x8f, 0x9d, 0xa2, 0xa3, 0xa8, 0xab, 0xaa, 0x9e, 0x97, 0x94, 0x98, 0x9a, 0x99, 0x9c, 0xa2,\n    0x9f, 0xa0, 0xa3, 0xa7, 0xa8, 0xaa, 0xb0, 0xb8, 0xc4, 0xc9, 0xcc, 0xcc, 0xcc, 0xcf, 0xd1, 0xd0,\n    0xcc, 0xcd, 0xcd, 0xce, 0xce, 0xce, 0xce, 0xce, 0xd4, 0xcc, 0xca, 0xd1, 0xd4, 0xd0, 0xce, 0xd0,\n    0xce, 0xcb, 0xc8, 0xc7, 0xc6, 0xc0, 0xb8, 0xb1, 0xb1, 0xad, 0xab, 0xab, 0xae, 0xb3, 0xba, 0xc1,\n    0xc0, 0xc8, 0xc9, 0xc1, 0xc1, 0xcb, 0xd1, 0xcf, 0xce, 0xcc, 0xcb, 0xcb, 0xce, 0xd1, 0xd3, 0xd3,\n    0xd2, 0xd2, 0xd2, 0xd2, 0xd2, 0xd2, 0xd3, 0xd4, 0xd2, 0xd1, 0xcf, 0xcb, 0xc9, 0xcd, 0xd3, 0xd8,\n    0xe0, 0xe3, 0xe7, 0xec, 0xed, 0xea, 0xe4, 0xdf, 0xe8, 0xe5, 0xe3, 0xe2, 0xe1, 0xe2, 0xe2, 0xdf,\n    0xe2, 0xe1, 0xe0, 0xdf, 0xdf, 0xdf, 0xde, 0xdd, 0xdd, 0xdc, 0xdb, 0xdb, 0xdb, 0xdb, 0xdc, 0xdd,\n    0xdd, 0xdc, 0xdb, 0xda, 0xda, 0xdb, 0xdc, 0xdc, 0xd8, 0xd7, 0xd7, 0xd8, 0xd8, 0xd7, 0xd6, 0xd4,\n    0xd4, 0xd8, 0xda, 0xd5, 0xd6, 0xd1, 0xa6, 0x74, 0x91, 0xbe, 0xcf, 0xcf, 0xca, 0xc3, 0xbf, 0xad,\n    0x80, 0x69, 0x69, 0x6f, 0x70, 0x6d, 0x6a, 0x73, 0x9c, 0xaf, 0xa9, 0x89, 0x71, 0x67, 0x69, 0x71,\n    0x76, 0x7b, 0x7b, 0x75, 0x75, 0x7c, 0x7b, 0x74, 0x6b, 0x66, 0x68, 0x6b, 0x6e, 0x7a, 0x85, 0x86,\n    0x7b, 0x7c, 0x83, 0x83, 0x79, 0x69, 0x5f, 0x61, 0x67, 0x71, 0x7d, 0x87, 0x88, 0x7e, 0x7e, 0x8c,\n    0xab, 0x97, 0x76, 0x5f, 0x5b, 0x63, 0x78, 0x90, 0x95, 0x86, 0x7b, 0x7d, 0x86, 0x88, 0x82, 0x7b,\n    0x82, 0x8e, 0x87, 0x68, 0x4c, 0x45, 0x45, 0x41, 0x33, 0x36, 0x47, 0x57, 0x57, 0x55, 0x58, 0x5a,\n    0x5c, 0x52, 0x3d, 0x27, 0x1c, 0x1f, 0x24, 0x26, 0x26, 0x23, 0x23, 0x26, 0x27, 0x24, 0x22, 0x22,\n    0x26, 0x25, 0x22, 0x20, 0x24, 0x2e, 0x38, 0x3c, 0x35, 0x30, 0x26, 0x2a, 0x3c, 0x42, 0x3c, 0x3b,\n    0x5a, 0x60, 0x57, 0x55, 0x5d, 0x51, 0x41, 0x45, 0x54, 0x53, 0x54, 0x54, 0x50, 0x47, 0x3b, 0x32,\n    0x26, 0x29, 0x2e, 0x32, 0x36, 0x3e, 0x36, 0x22, 0x1d, 0x1e, 0x20, 0x2b, 0x41, 0x59, 0x63, 0x62,\n    0x55, 0x4f, 0x5b, 0x61, 0x6c, 0x57, 0x49, 0x3c, 0x37, 0x36, 0x45, 0x5d, 0x72, 0x85, 0x92, 0x92,\n    0x87, 0x81, 0x76, 0x6a, 0x5f, 0x57, 0x54, 0x53, 0x3f, 0x2b, 0x24, 0x2b, 0x31, 0x3f, 0x4a, 0x46,\n    0x42, 0x33, 0x30, 0x2b, 0x36, 0x38, 0x3d, 0x31, 0x1c, 0x16, 0x13, 0x15, 0x14, 0x0f, 0x0e, 0x11,\n    0x10, 0x13, 0x17, 0x19, 0x1a, 0x1a, 0x1a, 0x1b, 0x19, 0x1b, 0x1c, 0x1d, 0x1f, 0x1f, 0x1d, 0x1a,\n    0x12, 0x12, 0x14, 0x18, 0x1c, 0x20, 0x2b, 0x35, 0x3b, 0x3f, 0x3d, 0x2d, 0x19, 0x11, 0x1e, 0x2f,\n    0x6f, 0x74, 0x76, 0x71, 0x6b, 0x6c, 0x72, 0x77, 0x71, 0x6c, 0x64, 0x5c, 0x59, 0x5b, 0x61, 0x66,\n    0x60, 0x5f, 0x5e, 0x5e, 0x61, 0x6a, 0x76, 0x7f, 0x81, 0x84, 0x88, 0x87, 0x7d, 0x71, 0x6a, 0x69,\n    0x66, 0x63, 0x68, 0x75, 0x80, 0x7d, 0x6f, 0x62, 0x62, 0x5f, 0x5e, 0x63, 0x6e, 0x79, 0x81, 0x84,\n    0x88, 0x85, 0x83, 0x80, 0x7a, 0x74, 0x73, 0x75, 0x7a, 0x7c, 0x86, 0x94, 0x9f, 0x9f, 0x99, 0x95,\n    0x8e, 0x97, 0xa2, 0xaf, 0xbc, 0xc4, 0xc0, 0xb7, 0xb4, 0xaa, 0x9e, 0x91, 0x88, 0x85, 0x8b, 0x93,\n    0x8a, 0x89, 0x82, 0x74, 0x6d, 0x7a, 0x98, 0xb2, 0xab, 0x98, 0x86, 0x88, 0x94, 0x98, 0x98, 0x9c,\n    0x90, 0x8f, 0x96, 0xa5, 0xb6, 0xc3, 0xbe, 0xac, 0x97, 0x99, 0x9a, 0x9a, 0x99, 0x99, 0x9a, 0x9c,\n    0x9b, 0x9d, 0x9c, 0x95, 0x8d, 0x8e, 0x99, 0xa4, 0xae, 0xb6, 0xae, 0x91, 0x8f, 0xa3, 0xa7, 0xaa,\n    0xab, 0xb4, 0xb6, 0xb5, 0xb8, 0xba, 0xba, 0xbe, 0xbd, 0xbf, 0xb9, 0xac, 0xa1, 0x9f, 0xa1, 0xa1,\n    0xa1, 0x99, 0x96, 0x9b, 0x9f, 0x9b, 0x94, 0x91, 0x80, 0x7f, 0x8b, 0x9f, 0xa4, 0x97, 0x88, 0x82,\n    0x7e, 0x74, 0x76, 0x85, 0x91, 0x95, 0x8c, 0x7e, 0x87, 0x7c, 0x7c, 0x8e, 0xa1, 0xa3, 0x99, 0x92,\n    0x99, 0x9e, 0x9e, 0x99, 0x94, 0x8c, 0x7b, 0x6a, 0x81, 0x89, 0x87, 0x82, 0x85, 0x8a, 0x8e, 0x93,\n    0x96, 0x98, 0x9a, 0x9e, 0xa1, 0xa4, 0xa7, 0xa8, 0xa9, 0xac, 0xb0, 0xb2, 0xb3, 0xb2, 0xb2, 0xb2,\n    0xb6, 0xb7, 0xb9, 0xba, 0xbc, 0xbc, 0xbc, 0xbc, 0xba, 0xb8, 0xb7, 0xb7, 0xb7, 0xb7, 0xb5, 0xb4,\n    0xb3, 0xb2, 0xb0, 0xae, 0xac, 0xaa, 0xa9, 0xa8, 0xa8, 0xa7, 0xa5, 0xa3, 0xa0, 0x9b, 0x96, 0x92,\n    0x8e, 0x8c, 0x89, 0x88, 0x88, 0x88, 0x87, 0x87, 0x8a, 0x89, 0x88, 0x87, 0x88, 0x89, 0x85, 0x7f,\n    0x84, 0x93, 0x9f, 0xa1, 0xa4, 0xac, 0xad, 0xa8, 0x95, 0x94, 0x96, 0x9a, 0x9b, 0x9b, 0x9f, 0xa6,\n    0xa8, 0xa4, 0xa3, 0xa5, 0xa6, 0xa8, 0xaf, 0xb8, 0xc0, 0xc5, 0xca, 0xcb, 0xcc, 0xcf, 0xd1, 0xd1,\n    0xce, 0xce, 0xcd, 0xcc, 0xcc, 0xcd, 0xcd, 0xce, 0xd3, 0xcf, 0xcd, 0xcf, 0xd0, 0xcf, 0xce, 0xcf,\n    0xd0, 0xcd, 0xca, 0xc9, 0xc9, 0xc7, 0xc2, 0xbe, 0xb1, 0xac, 0xa9, 0xa7, 0xa7, 0xaa, 0xb1, 0xb8,\n    0xb9, 0xba, 0xc0, 0xc5, 0xc2, 0xbe, 0xc6, 0xd3, 0xd4, 0xd2, 0xcf, 0xcc, 0xcd, 0xcf, 0xd3, 0xd6,\n    0xd9, 0xd8, 0xd6, 0xd4, 0xd2, 0xd2, 0xd4, 0xd6, 0xd1, 0xd0, 0xcd, 0xcb, 0xcf, 0xd7, 0xdc, 0xde,\n    0xcd, 0xbf, 0xad, 0xa3, 0xa9, 0xbd, 0xd5, 0xe6, 0xd9, 0xe6, 0xe6, 0xde, 0xdf, 0xe0, 0xdc, 0xdd,\n    0xdf, 0xde, 0xdd, 0xde, 0xdf, 0xdf, 0xde, 0xdd, 0xdf, 0xdd, 0xdd, 0xde, 0xde, 0xdc, 0xdc, 0xde,\n    0xdc, 0xdb, 0xda, 0xd9, 0xd9, 0xd9, 0xda, 0xda, 0xd8, 0xd8, 0xd8, 0xd9, 0xda, 0xd9, 0xd6, 0xd4,\n    0xd4, 0xd8, 0xdb, 0xd3, 0xd6, 0xd0, 0xa1, 0x75, 0x91, 0xc4, 0xd0, 0xcb, 0xca, 0xc5, 0xb4, 0x89,\n    0x77, 0x70, 0x71, 0x69, 0x63, 0x64, 0x69, 0x7a, 0xa7, 0xb6, 0xa8, 0x85, 0x70, 0x67, 0x64, 0x6a,\n    0x7b, 0x80, 0x7e, 0x76, 0x74, 0x79, 0x7b, 0x78, 0x7b, 0x76, 0x72, 0x6e, 0x6a, 0x73, 0x7e, 0x7f,\n    0x7c, 0x7f, 0x8d, 0x8c, 0x82, 0x74, 0x62, 0x60, 0x63, 0x6c, 0x7b, 0x8c, 0x8e, 0x7c, 0x72, 0x79,\n    0x77, 0x80, 0x7e, 0x74, 0x6e, 0x72, 0x84, 0x9a, 0x91, 0x8c, 0x89, 0x8b, 0x8c, 0x89, 0x84, 0x81,\n    0x80, 0x83, 0x76, 0x62, 0x5c, 0x60, 0x54, 0x3f, 0x34, 0x3d, 0x4f, 0x59, 0x56, 0x56, 0x5a, 0x5a,\n    0x57, 0x47, 0x32, 0x23, 0x1f, 0x21, 0x25, 0x26, 0x28, 0x27, 0x29, 0x2e, 0x2d, 0x25, 0x20, 0x1f,\n    0x1f, 0x1f, 0x23, 0x30, 0x3f, 0x48, 0x48, 0x44, 0x3a, 0x32, 0x27, 0x2e, 0x41, 0x43, 0x43, 0x51,\n    0x5f, 0x5f, 0x52, 0x48, 0x4e, 0x52, 0x53, 0x5b, 0x55, 0x58, 0x5c, 0x5d, 0x55, 0x48, 0x3d, 0x38,\n    0x32, 0x2b, 0x30, 0x3a, 0x3d, 0x3d, 0x3c, 0x38, 0x31, 0x29, 0x29, 0x34, 0x3f, 0x40, 0x3f, 0x41,\n    0x44, 0x54, 0x6e, 0x76, 0x6d, 0x58, 0x58, 0x60, 0x5d, 0x4c, 0x43, 0x44, 0x42, 0x41, 0x46, 0x48,\n    0x56, 0x5d, 0x68, 0x70, 0x73, 0x71, 0x6f, 0x6d, 0x67, 0x56, 0x46, 0x3b, 0x31, 0x2f, 0x35, 0x3a,\n    0x48, 0x3e, 0x3c, 0x2d, 0x2a, 0x28, 0x37, 0x39, 0x22, 0x19, 0x12, 0x13, 0x18, 0x19, 0x15, 0x11,\n    0x15, 0x16, 0x16, 0x16, 0x16, 0x18, 0x1c, 0x20, 0x14, 0x18, 0x1b, 0x1a, 0x16, 0x12, 0x11, 0x11,\n    0x12, 0x13, 0x15, 0x17, 0x18, 0x1c, 0x25, 0x2e, 0x3a, 0x35, 0x32, 0x38, 0x41, 0x42, 0x3a, 0x31,\n    0x73, 0x7b, 0x80, 0x7d, 0x77, 0x77, 0x7c, 0x7f, 0x74, 0x79, 0x7b, 0x75, 0x6a, 0x65, 0x68, 0x6f,\n    0x70, 0x71, 0x6d, 0x64, 0x5b, 0x59, 0x5f, 0x66, 0x77, 0x84, 0x8d, 0x88, 0x77, 0x68, 0x62, 0x61,\n    0x66, 0x61, 0x62, 0x6c, 0x75, 0x75, 0x6e, 0x67, 0x64, 0x61, 0x5f, 0x63, 0x69, 0x6b, 0x68, 0x64,\n    0x63, 0x65, 0x66, 0x65, 0x68, 0x6f, 0x74, 0x76, 0x7a, 0x7c, 0x81, 0x88, 0x8a, 0x88, 0x85, 0x84,\n    0x93, 0x9a, 0xa1, 0xa5, 0xab, 0xaf, 0xa9, 0xa0, 0x99, 0x95, 0x8d, 0x82, 0x79, 0x79, 0x84, 0x91,\n    0x8f, 0x95, 0x94, 0x8c, 0x8b, 0x98, 0xaa, 0xb4, 0xa7, 0x9a, 0x91, 0x8e, 0x8d, 0x94, 0x9c, 0x9d,\n    0x95, 0x8d, 0x90, 0x9d, 0xa6, 0xa8, 0x9c, 0x89, 0x85, 0x88, 0x8f, 0x96, 0x99, 0x98, 0x94, 0x91,\n    0x9d, 0x9e, 0x9b, 0x91, 0x87, 0x85, 0x8b, 0x92, 0x99, 0x9d, 0xab, 0xb1, 0xb0, 0xa2, 0x92, 0x9b,\n    0x9e, 0xad, 0xb5, 0xb3, 0xb0, 0xac, 0xac, 0xb2, 0xb0, 0xb4, 0xb3, 0xad, 0xac, 0xaf, 0xb0, 0xad,\n    0xb1, 0xa7, 0xa0, 0x9e, 0x98, 0x8a, 0x7e, 0x7a, 0x73, 0x73, 0x7f, 0x92, 0x99, 0x90, 0x87, 0x85,\n    0x80, 0x7a, 0x80, 0x90, 0x9b, 0x9e, 0x94, 0x84, 0x6f, 0x7d, 0x8f, 0x96, 0x8f, 0x84, 0x83, 0x87,\n    0x8e, 0x9b, 0xa3, 0x9c, 0x8c, 0x7f, 0x79, 0x78, 0x83, 0x8a, 0x86, 0x7f, 0x84, 0x8b, 0x8f, 0x94,\n    0x96, 0x97, 0x9a, 0x9d, 0xa0, 0xa4, 0xa6, 0xa8, 0xaa, 0xac, 0xaf, 0xb1, 0xb2, 0xb2, 0xb3, 0xb3,\n    0xb7, 0xb7, 0xb7, 0xb8, 0xb9, 0xba, 0xbb, 0xbb, 0xb9, 0xb8, 0xb6, 0xb6, 0xb6, 0xb6, 0xb5, 0xb3,\n    0xb1, 0xb0, 0xae, 0xac, 0xaa, 0xa8, 0xa7, 0xa6, 0xa8, 0xa6, 0xa4, 0xa2, 0xa0, 0x9c, 0x99, 0x96,\n    0x8f, 0x8c, 0x89, 0x87, 0x87, 0x87, 0x87, 0x86, 0x89, 0x89, 0x88, 0x89, 0x8b, 0x8c, 0x87, 0x80,\n    0x8b, 0x99, 0xa2, 0xa3, 0xa7, 0xae, 0xa8, 0x9b, 0x93, 0x95, 0x98, 0x9b, 0x9d, 0xa0, 0xa4, 0xa9,\n    0xb1, 0xab, 0xa9, 0xac, 0xad, 0xae, 0xb4, 0xbc, 0xc0, 0xc6, 0xcb, 0xcc, 0xcc, 0xcf, 0xd0, 0xd1,\n    0xcf, 0xce, 0xcd, 0xcc, 0xcc, 0xcc, 0xcc, 0xcd, 0xce, 0xd0, 0xcf, 0xcc, 0xcc, 0xcf, 0xd0, 0xce,\n    0xd1, 0xcf, 0xcd, 0xcc, 0xcc, 0xcc, 0xc9, 0xc7, 0xb9, 0xb4, 0xad, 0xa7, 0xa3, 0xa2, 0xa6, 0xac,\n    0xb2, 0xaf, 0xb3, 0xbd, 0xbc, 0xb4, 0xb9, 0xc6, 0xd0, 0xd0, 0xd0, 0xce, 0xcc, 0xcd, 0xd1, 0xd5,\n    0xd9, 0xd9, 0xd8, 0xd5, 0xd3, 0xd2, 0xd3, 0xd4, 0xd0, 0xd0, 0xd0, 0xd3, 0xd9, 0xd8, 0xcc, 0xbe,\n    0x95, 0x94, 0x92, 0x90, 0x90, 0x91, 0x94, 0x95, 0xb1, 0xd8, 0xe2, 0xd9, 0xde, 0xdd, 0xd7, 0xde,\n    0xdc, 0xdb, 0xdb, 0xdd, 0xdf, 0xe0, 0xe0, 0xdf, 0xdf, 0xdd, 0xdd, 0xdf, 0xde, 0xdb, 0xda, 0xdc,\n    0xdc, 0xdc, 0xdb, 0xda, 0xd9, 0xd8, 0xd8, 0xd7, 0xd8, 0xd8, 0xd7, 0xd7, 0xd8, 0xd8, 0xd7, 0xd5,\n    0xd3, 0xd5, 0xd8, 0xcf, 0xd4, 0xce, 0x99, 0x6f, 0x96, 0xd0, 0xd2, 0xc2, 0xc2, 0xc7, 0xb4, 0x77,\n    0x69, 0x6d, 0x71, 0x69, 0x67, 0x64, 0x66, 0x7f, 0xba, 0xb3, 0x94, 0x7b, 0x77, 0x6d, 0x61, 0x66,\n    0x78, 0x80, 0x83, 0x7d, 0x76, 0x75, 0x79, 0x7c, 0x7f, 0x7b, 0x75, 0x6a, 0x5f, 0x65, 0x72, 0x76,\n    0x7b, 0x7b, 0x90, 0x95, 0x8c, 0x79, 0x5f, 0x5f, 0x6f, 0x6d, 0x70, 0x7a, 0x7c, 0x70, 0x70, 0x81,\n    0x9d, 0x92, 0x7f, 0x75, 0x79, 0x7b, 0x7e, 0x85, 0x84, 0x89, 0x8f, 0x92, 0x8c, 0x82, 0x7b, 0x7a,\n    0x78, 0x82, 0x7b, 0x63, 0x58, 0x5b, 0x54, 0x43, 0x39, 0x44, 0x54, 0x58, 0x55, 0x59, 0x5c, 0x55,\n    0x4d, 0x3c, 0x2d, 0x27, 0x25, 0x23, 0x23, 0x27, 0x2b, 0x2a, 0x2e, 0x37, 0x37, 0x30, 0x29, 0x28,\n    0x34, 0x35, 0x40, 0x52, 0x5c, 0x58, 0x4d, 0x47, 0x4c, 0x4c, 0x42, 0x41, 0x46, 0x3d, 0x3d, 0x54,\n    0x4e, 0x50, 0x4d, 0x4a, 0x52, 0x5e, 0x62, 0x5e, 0x59, 0x5a, 0x5e, 0x5f, 0x58, 0x4b, 0x43, 0x41,\n    0x44, 0x39, 0x37, 0x3b, 0x3b, 0x3f, 0x45, 0x47, 0x52, 0x47, 0x3f, 0x40, 0x43, 0x43, 0x46, 0x4c,\n    0x40, 0x3a, 0x3e, 0x5a, 0x6b, 0x6e, 0x5e, 0x54, 0x4b, 0x3e, 0x36, 0x32, 0x2c, 0x2c, 0x30, 0x2e,\n    0x31, 0x3c, 0x4f, 0x63, 0x73, 0x7b, 0x7d, 0x7c, 0x7e, 0x7d, 0x75, 0x67, 0x55, 0x42, 0x3f, 0x49,\n    0x4c, 0x45, 0x49, 0x3e, 0x39, 0x33, 0x3f, 0x40, 0x35, 0x2b, 0x1e, 0x18, 0x1b, 0x20, 0x1f, 0x1a,\n    0x1c, 0x1a, 0x17, 0x16, 0x16, 0x18, 0x1a, 0x1a, 0x1d, 0x1d, 0x1e, 0x1d, 0x1b, 0x18, 0x17, 0x18,\n    0x13, 0x14, 0x13, 0x11, 0x12, 0x15, 0x19, 0x1b, 0x21, 0x22, 0x22, 0x1f, 0x1a, 0x17, 0x15, 0x14,\n    0x80, 0x7d, 0x76, 0x6e, 0x6a, 0x6d, 0x71, 0x73, 0x71, 0x6d, 0x6b, 0x70, 0x76, 0x76, 0x6e, 0x65,\n    0x62, 0x64, 0x64, 0x61, 0x5f, 0x61, 0x65, 0x68, 0x65, 0x6e, 0x73, 0x6f, 0x6b, 0x6e, 0x74, 0x78,\n    0x7d, 0x74, 0x6e, 0x70, 0x72, 0x6d, 0x66, 0x62, 0x67, 0x68, 0x6f, 0x7b, 0x88, 0x90, 0x90, 0x8c,\n    0x6e, 0x74, 0x77, 0x76, 0x79, 0x81, 0x83, 0x7f, 0x7f, 0x82, 0x88, 0x8b, 0x8a, 0x8b, 0x91, 0x98,\n    0xa0, 0xa9, 0xac, 0xa2, 0x96, 0x90, 0x8c, 0x87, 0x7c, 0x7f, 0x82, 0x7f, 0x79, 0x7a, 0x87, 0x95,\n    0x9b, 0x9b, 0x91, 0x83, 0x82, 0x89, 0x8a, 0x84, 0x85, 0x88, 0x96, 0xa0, 0xa3, 0xac, 0xac, 0x9c,\n    0x8f, 0x8b, 0x93, 0x9e, 0xa1, 0x9f, 0x9a, 0x91, 0x8e, 0x8a, 0x88, 0x8d, 0x95, 0x9a, 0x9c, 0x9c,\n    0x93, 0x91, 0x91, 0x97, 0x9e, 0x9a, 0x8a, 0x79, 0x82, 0x96, 0xaa, 0xad, 0xb8, 0xbb, 0xa4, 0x95,\n    0x90, 0xa2, 0xaf, 0xb4, 0xb5, 0xaf, 0xa7, 0xa8, 0xa4, 0xa7, 0xa6, 0xa4, 0xa7, 0xab, 0xa7, 0x9f,\n    0x9f, 0xa2, 0xa8, 0xab, 0x9f, 0x8d, 0x82, 0x82, 0x7b, 0x7d, 0x84, 0x8d, 0x8f, 0x87, 0x7e, 0x7a,\n    0x84, 0x7e, 0x81, 0x8b, 0x95, 0x9a, 0x8e, 0x7a, 0x71, 0x80, 0x8d, 0x8f, 0x8b, 0x89, 0x86, 0x83,\n    0x8b, 0x90, 0x91, 0x8a, 0x7d, 0x72, 0x71, 0x74, 0x81, 0x87, 0x82, 0x7b, 0x81, 0x8a, 0x8f, 0x94,\n    0x96, 0x97, 0x99, 0x9d, 0xa0, 0xa3, 0xa6, 0xa7, 0xac, 0xad, 0xb0, 0xb1, 0xb2, 0xb3, 0xb5, 0xb7,\n    0xb6, 0xb6, 0xb5, 0xb5, 0xb6, 0xb6, 0xb8, 0xb8, 0xb8, 0xb7, 0xb6, 0xb6, 0xb6, 0xb5, 0xb4, 0xb3,\n    0xaf, 0xae, 0xad, 0xab, 0xa9, 0xa7, 0xa5, 0xa4, 0xa8, 0xa5, 0xa3, 0xa0, 0x9f, 0x9d, 0x9b, 0x99,\n    0x90, 0x8d, 0x8a, 0x87, 0x86, 0x86, 0x86, 0x85, 0x86, 0x88, 0x89, 0x8b, 0x8e, 0x8f, 0x88, 0x80,\n    0x91, 0x9e, 0xa6, 0xa6, 0xa9, 0xad, 0xa0, 0x8d, 0x98, 0x9b, 0x9c, 0x9e, 0xa2, 0xa7, 0xab, 0xad,\n    0xb6, 0xb1, 0xb1, 0xb7, 0xb9, 0xb8, 0xb9, 0xbf, 0xc3, 0xc9, 0xce, 0xcf, 0xce, 0xcf, 0xd0, 0xd1,\n    0xd2, 0xd2, 0xd1, 0xd1, 0xd0, 0xcf, 0xcf, 0xcf, 0xce, 0xd4, 0xd4, 0xce, 0xce, 0xd4, 0xd6, 0xd3,\n    0xd3, 0xd1, 0xcf, 0xce, 0xcd, 0xcc, 0xca, 0xc9, 0xc9, 0xc1, 0xb5, 0xab, 0xa2, 0x9e, 0xa2, 0xa8,\n    0xb2, 0xb2, 0xb3, 0xb4, 0xb5, 0xb5, 0xb5, 0xb6, 0xc7, 0xca, 0xce, 0xce, 0xcc, 0xcd, 0xd0, 0xd4,\n    0xd6, 0xd7, 0xd7, 0xd5, 0xd2, 0xd0, 0xd0, 0xd1, 0xd4, 0xd4, 0xd6, 0xdb, 0xdc, 0xcb, 0xa7, 0x87,\n    0x8b, 0x8d, 0x8f, 0x8f, 0x8e, 0x8d, 0x8d, 0x8d, 0x8d, 0xc7, 0xdc, 0xd4, 0xdc, 0xdb, 0xd5, 0xe2,\n    0xda, 0xda, 0xda, 0xdc, 0xdf, 0xe1, 0xe1, 0xe1, 0xde, 0xdb, 0xdc, 0xde, 0xdd, 0xd9, 0xd7, 0xd9,\n    0xde, 0xdd, 0xdc, 0xdb, 0xd9, 0xd7, 0xd6, 0xd5, 0xd8, 0xd6, 0xd4, 0xd4, 0xd5, 0xd6, 0xd6, 0xd6,\n    0xd5, 0xd4, 0xd6, 0xcd, 0xd6, 0xd0, 0x96, 0x6b, 0x9c, 0xc9, 0xcb, 0xca, 0xcd, 0xc6, 0xb6, 0x86,\n    0x6f, 0x68, 0x62, 0x5f, 0x66, 0x66, 0x73, 0xa1, 0xbf, 0xa2, 0x75, 0x66, 0x73, 0x6b, 0x5a, 0x5d,\n    0x6a, 0x78, 0x83, 0x81, 0x75, 0x6f, 0x72, 0x79, 0x74, 0x73, 0x71, 0x65, 0x5b, 0x64, 0x76, 0x7d,\n    0x75, 0x6b, 0x7c, 0x85, 0x80, 0x70, 0x5d, 0x68, 0x6b, 0x6a, 0x6f, 0x7b, 0x7d, 0x71, 0x73, 0x86,\n    0x93, 0x86, 0x75, 0x70, 0x76, 0x7c, 0x88, 0x9a, 0x93, 0x88, 0x81, 0x86, 0x8d, 0x8b, 0x7f, 0x74,\n    0x6f, 0x72, 0x66, 0x53, 0x54, 0x5d, 0x4f, 0x34, 0x3a, 0x46, 0x52, 0x52, 0x50, 0x58, 0x59, 0x4d,\n    0x49, 0x3a, 0x2f, 0x2f, 0x2e, 0x27, 0x26, 0x2b, 0x2f, 0x32, 0x37, 0x35, 0x2a, 0x22, 0x2c, 0x3c,\n    0x4d, 0x4b, 0x4e, 0x52, 0x49, 0x39, 0x31, 0x32, 0x34, 0x3c, 0x39, 0x3f, 0x49, 0x3b, 0x2c, 0x35,\n    0x46, 0x4e, 0x56, 0x59, 0x5e, 0x65, 0x5b, 0x45, 0x4a, 0x41, 0x39, 0x38, 0x3b, 0x3b, 0x3c, 0x3e,\n    0x3c, 0x3c, 0x3c, 0x3a, 0x40, 0x55, 0x63, 0x5f, 0x59, 0x5e, 0x5b, 0x53, 0x4f, 0x51, 0x4b, 0x42,\n    0x44, 0x4c, 0x52, 0x61, 0x55, 0x50, 0x47, 0x4f, 0x4f, 0x50, 0x55, 0x58, 0x5b, 0x66, 0x6c, 0x67,\n    0x66, 0x5f, 0x56, 0x52, 0x55, 0x5a, 0x5d, 0x5f, 0x63, 0x6a, 0x6c, 0x72, 0x75, 0x66, 0x57, 0x5a,\n    0x61, 0x5c, 0x67, 0x6b, 0x75, 0x71, 0x75, 0x6c, 0x52, 0x4a, 0x38, 0x23, 0x1a, 0x1d, 0x1f, 0x1e,\n    0x19, 0x16, 0x15, 0x17, 0x1b, 0x1c, 0x19, 0x15, 0x1d, 0x19, 0x16, 0x16, 0x17, 0x17, 0x15, 0x14,\n    0x0f, 0x12, 0x12, 0x11, 0x14, 0x18, 0x17, 0x12, 0x17, 0x1a, 0x1c, 0x1c, 0x1b, 0x1a, 0x19, 0x18,\n    0x7a, 0x78, 0x70, 0x66, 0x68, 0x71, 0x77, 0x76, 0x70, 0x67, 0x61, 0x64, 0x68, 0x68, 0x65, 0x63,\n    0x69, 0x68, 0x66, 0x62, 0x60, 0x62, 0x67, 0x6b, 0x76, 0x7a, 0x77, 0x6e, 0x6c, 0x77, 0x84, 0x8b,\n    0x83, 0x77, 0x78, 0x8b, 0x97, 0x88, 0x6b, 0x56, 0x68, 0x76, 0x85, 0x8c, 0x8b, 0x89, 0x8c, 0x90,\n    0x94, 0x8d, 0x84, 0x7f, 0x81, 0x83, 0x82, 0x7e, 0x83, 0x84, 0x86, 0x88, 0x8e, 0x94, 0x96, 0x95,\n    0x91, 0x95, 0x98, 0x98, 0x94, 0x91, 0x92, 0x94, 0x90, 0x8f, 0x8a, 0x81, 0x7e, 0x86, 0x96, 0xa2,\n    0xb2, 0xa5, 0x91, 0x82, 0x83, 0x8c, 0x8f, 0x8b, 0x88, 0x82, 0x7f, 0x85, 0x8d, 0x92, 0x92, 0x91,\n    0x91, 0x8f, 0x91, 0x9b, 0xa6, 0xa9, 0xa4, 0x9f, 0xa8, 0xa0, 0x90, 0x81, 0x7d, 0x8a, 0xa0, 0xb0,\n    0xac, 0xac, 0xa8, 0xa0, 0x9a, 0x97, 0x98, 0x98, 0x9d, 0x9a, 0x9e, 0xab, 0xb7, 0xb7, 0xac, 0xa1,\n    0xa2, 0xa4, 0xab, 0xb2, 0xad, 0xa3, 0xa5, 0xaf, 0xa9, 0xa8, 0xa7, 0xa5, 0xa1, 0x9c, 0x98, 0x97,\n    0x8f, 0x8d, 0x8b, 0x88, 0x85, 0x83, 0x83, 0x84, 0x74, 0x7d, 0x88, 0x8f, 0x8f, 0x8c, 0x87, 0x83,\n    0x78, 0x7d, 0x87, 0x92, 0x96, 0x8d, 0x7e, 0x74, 0x7d, 0x88, 0x93, 0x96, 0x94, 0x8f, 0x87, 0x7e,\n    0x82, 0x95, 0x8e, 0x81, 0x75, 0x83, 0x82, 0x84, 0x80, 0x80, 0x7f, 0x7f, 0x85, 0x8e, 0x91, 0x90,\n    0x92, 0x97, 0x9c, 0xa0, 0xa1, 0xa3, 0xa5, 0xa7, 0xab, 0xae, 0xb1, 0xb4, 0xb5, 0xb6, 0xb7, 0xb7,\n    0xb6, 0xb8, 0xba, 0xbc, 0xbd, 0xbd, 0xbc, 0xbb, 0xbb, 0xb9, 0xb6, 0xb4, 0xb1, 0xb0, 0xaf, 0xaf,\n    0xab, 0xa9, 0xa6, 0xa5, 0xa5, 0xa6, 0xa6, 0xa6, 0xa2, 0xa1, 0xa0, 0x9e, 0x9d, 0x9c, 0x9c, 0x9b,\n    0x98, 0x93, 0x8c, 0x87, 0x86, 0x87, 0x87, 0x87, 0x8b, 0x88, 0x88, 0x8c, 0x8d, 0x89, 0x83, 0x7f,\n    0x8f, 0x9f, 0xa5, 0xa8, 0xae, 0xa5, 0x92, 0x8d, 0x98, 0x9a, 0x9e, 0xa1, 0xa5, 0xa8, 0xac, 0xaf,\n    0xb8, 0xb9, 0xb9, 0xb8, 0xb7, 0xb9, 0xbd, 0xc1, 0xc6, 0xca, 0xcf, 0xd2, 0xd3, 0xd3, 0xd2, 0xd2,\n    0xd3, 0xd3, 0xd4, 0xd4, 0xd3, 0xd2, 0xd1, 0xd0, 0xd1, 0xd2, 0xd3, 0xd4, 0xd3, 0xd2, 0xd3, 0xd3,\n    0xcf, 0xd0, 0xd0, 0xcd, 0xcc, 0xcb, 0xc7, 0xc3, 0xc0, 0xc1, 0xbb, 0xaf, 0xa6, 0xa4, 0xa1, 0x9d,\n    0xa6, 0xa9, 0xae, 0xb0, 0xb1, 0xb3, 0xb8, 0xbc, 0xc9, 0xce, 0xd4, 0xd4, 0xd1, 0xce, 0xd0, 0xd3,\n    0xd0, 0xd0, 0xd2, 0xd2, 0xcf, 0xcb, 0xce, 0xd5, 0xd4, 0xe3, 0xe0, 0xde, 0xc7, 0x9b, 0x8a, 0x8c,\n    0x8b, 0x87, 0x82, 0x8a, 0x84, 0x86, 0x7e, 0x84, 0x84, 0xab, 0xe1, 0xd8, 0xda, 0xdb, 0xdb, 0xd8,\n    0xda, 0xdb, 0xd0, 0xb7, 0xae, 0xba, 0xe6, 0xdd, 0xd9, 0xdc, 0xdb, 0xd5, 0xd2, 0xd6, 0xdb, 0xdd,\n    0xdc, 0xdc, 0xdb, 0xda, 0xd8, 0xd6, 0xd6, 0xd6, 0xd8, 0xd7, 0xd7, 0xd8, 0xd6, 0xd2, 0xd3, 0xd7,\n    0xd1, 0xd2, 0xd4, 0xcd, 0xd1, 0xcd, 0x9c, 0x6b, 0x9c, 0xc9, 0xc5, 0xc6, 0xcb, 0xbd, 0xb9, 0xa9,\n    0x8a, 0x82, 0x65, 0x5a, 0x7a, 0x99, 0xa9, 0xbb, 0xb2, 0x7e, 0x68, 0x81, 0x81, 0x6f, 0x69, 0x5b,\n    0x69, 0x73, 0x7e, 0x7f, 0x74, 0x6a, 0x6b, 0x72, 0x75, 0x6b, 0x6c, 0x67, 0x70, 0x68, 0x6f, 0x70,\n    0x66, 0x69, 0x74, 0x80, 0x7b, 0x6b, 0x62, 0x65, 0x6c, 0x69, 0x6f, 0x79, 0x7c, 0x77, 0x79, 0x82,\n    0x8c, 0x7f, 0x70, 0x6e, 0x79, 0x8a, 0x99, 0x9f, 0x8d, 0x8a, 0x89, 0x8c, 0x8d, 0x8b, 0x87, 0x86,\n    0x84, 0x78, 0x66, 0x5d, 0x64, 0x64, 0x4b, 0x2c, 0x39, 0x41, 0x48, 0x4a, 0x4f, 0x54, 0x52, 0x4b,\n    0x4a, 0x4e, 0x49, 0x37, 0x2a, 0x2b, 0x2e, 0x2d, 0x33, 0x3b, 0x3a, 0x2d, 0x22, 0x24, 0x2c, 0x31,\n    0x37, 0x37, 0x3b, 0x3d, 0x31, 0x25, 0x28, 0x34, 0x2b, 0x30, 0x3c, 0x45, 0x42, 0x37, 0x31, 0x33,\n    0x3e, 0x53, 0x58, 0x59, 0x57, 0x53, 0x4e, 0x3b, 0x2d, 0x3a, 0x5b, 0x79, 0x82, 0x7f, 0x77, 0x6d,\n    0x68, 0x62, 0x56, 0x4a, 0x47, 0x52, 0x61, 0x6b, 0x6c, 0x68, 0x5e, 0x51, 0x48, 0x45, 0x45, 0x44,\n    0x52, 0x50, 0x53, 0x57, 0x54, 0x4a, 0x3f, 0x3a, 0x42, 0x41, 0x48, 0x56, 0x60, 0x62, 0x65, 0x69,\n    0x65, 0x62, 0x5e, 0x60, 0x6f, 0x7f, 0x80, 0x78, 0x70, 0x69, 0x6a, 0x62, 0x6e, 0x6e, 0x79, 0x7a,\n    0x7d, 0x82, 0x8c, 0x94, 0x99, 0x9c, 0x9f, 0xa3, 0x9b, 0x99, 0x90, 0x80, 0x73, 0x69, 0x60, 0x58,\n    0x54, 0x54, 0x51, 0x47, 0x36, 0x26, 0x1c, 0x1a, 0x1e, 0x18, 0x15, 0x19, 0x1d, 0x1c, 0x1a, 0x1a,\n    0x15, 0x15, 0x14, 0x11, 0x12, 0x14, 0x16, 0x16, 0x1b, 0x1d, 0x21, 0x23, 0x20, 0x1b, 0x1c, 0x1f,\n    0x85, 0x7c, 0x6e, 0x66, 0x70, 0x84, 0x91, 0x92, 0x91, 0x7e, 0x6d, 0x6d, 0x76, 0x78, 0x72, 0x6b,\n    0x5a, 0x5f, 0x64, 0x67, 0x68, 0x6a, 0x6d, 0x6f, 0x80, 0x89, 0x8e, 0x88, 0x82, 0x82, 0x83, 0x81,\n    0x82, 0x7b, 0x7a, 0x7d, 0x77, 0x69, 0x60, 0x60, 0x7a, 0x78, 0x7a, 0x85, 0x94, 0x9e, 0x9f, 0x9c,\n    0x8d, 0x8a, 0x81, 0x7a, 0x82, 0x90, 0x95, 0x8f, 0x88, 0x89, 0x88, 0x86, 0x89, 0x90, 0x96, 0x99,\n    0x97, 0x9a, 0x9e, 0x9f, 0x9e, 0x9a, 0x98, 0x97, 0x9b, 0x97, 0x90, 0x87, 0x82, 0x89, 0x9d, 0xae,\n    0xb4, 0x9a, 0x84, 0x84, 0x8f, 0x94, 0x95, 0x96, 0x8d, 0x85, 0x7f, 0x80, 0x84, 0x88, 0x8a, 0x8c,\n    0x92, 0x8c, 0x87, 0x88, 0x8f, 0x97, 0x9d, 0xa0, 0x9c, 0x9b, 0x96, 0x90, 0x8d, 0x8e, 0x8c, 0x88,\n    0x92, 0x94, 0x96, 0x99, 0x9a, 0x9a, 0x97, 0x93, 0x95, 0x98, 0x9c, 0x9d, 0x9b, 0x9d, 0xa4, 0xac,\n    0x9d, 0xa2, 0xa5, 0xa2, 0x99, 0x94, 0x98, 0x9e, 0xa4, 0xa1, 0x9e, 0x99, 0x92, 0x8e, 0x92, 0x9a,\n    0x98, 0x98, 0x96, 0x90, 0x8b, 0x85, 0x7a, 0x70, 0x67, 0x6f, 0x77, 0x79, 0x7a, 0x7c, 0x7b, 0x79,\n    0x6d, 0x79, 0x8f, 0xa1, 0x9d, 0x8b, 0x80, 0x80, 0x97, 0x9b, 0xa1, 0xa6, 0xa7, 0x9d, 0x86, 0x72,\n    0x80, 0x8c, 0x87, 0x86, 0x7f, 0x83, 0x7e, 0x84, 0x8d, 0x90, 0x8e, 0x86, 0x81, 0x85, 0x8e, 0x94,\n    0x95, 0x99, 0x9e, 0xa1, 0xa3, 0xa4, 0xa7, 0xa9, 0xae, 0xb1, 0xb4, 0xb6, 0xb6, 0xb7, 0xb8, 0xb9,\n    0xb9, 0xb9, 0xb8, 0xb7, 0xb6, 0xb5, 0xb3, 0xb3, 0xb5, 0xb4, 0xb2, 0xb0, 0xae, 0xac, 0xab, 0xab,\n    0xa8, 0xa6, 0xa4, 0xa2, 0xa0, 0x9f, 0x9e, 0x9d, 0x9e, 0x9d, 0x9b, 0x99, 0x98, 0x97, 0x98, 0x98,\n    0x98, 0x94, 0x8e, 0x89, 0x86, 0x86, 0x87, 0x87, 0x8c, 0x89, 0x89, 0x8b, 0x8c, 0x89, 0x86, 0x85,\n    0x97, 0x9f, 0xa5, 0xa9, 0xa8, 0x97, 0x8f, 0x9a, 0x9a, 0x9d, 0xa1, 0xa4, 0xa7, 0xaa, 0xad, 0xaf,\n    0xb5, 0xb8, 0xbb, 0xbc, 0xbc, 0xbd, 0xc1, 0xc5, 0xc8, 0xca, 0xcd, 0xce, 0xce, 0xce, 0xce, 0xcf,\n    0xcf, 0xd0, 0xd1, 0xd2, 0xd2, 0xd2, 0xd2, 0xd2, 0xd0, 0xd1, 0xd2, 0xd1, 0xd0, 0xcf, 0xd0, 0xd0,\n    0xd0, 0xd2, 0xd3, 0xd0, 0xce, 0xce, 0xcc, 0xca, 0xce, 0xc1, 0xab, 0x99, 0x93, 0x97, 0x9e, 0xa1,\n    0x9a, 0xa0, 0xa8, 0xaf, 0xb5, 0xbc, 0xc4, 0xc9, 0xcf, 0xd4, 0xd8, 0xd8, 0xd4, 0xd0, 0xcf, 0xcf,\n    0xd0, 0xcf, 0xd0, 0xd1, 0xcf, 0xce, 0xd1, 0xd6, 0xd8, 0xe3, 0xe7, 0xce, 0xa7, 0x8e, 0x8c, 0x97,\n    0x96, 0xac, 0xba, 0xc3, 0xc0, 0xbe, 0x96, 0x79, 0x77, 0xa3, 0xda, 0xd5, 0xd8, 0xdb, 0xdb, 0xda,\n    0xe1, 0xd1, 0xab, 0x89, 0x81, 0x86, 0xb0, 0xd6, 0xda, 0xda, 0xda, 0xdc, 0xde, 0xdf, 0xdb, 0xd7,\n    0xd9, 0xd8, 0xd8, 0xd8, 0xd8, 0xd8, 0xd8, 0xd8, 0xd9, 0xd6, 0xd5, 0xd6, 0xd4, 0xd0, 0xd1, 0xd4,\n    0xd2, 0xd0, 0xd3, 0xce, 0xd3, 0xd3, 0xa5, 0x70, 0xa5, 0xd3, 0xcb, 0xc0, 0xc4, 0xc4, 0xcb, 0xc1,\n    0xc1, 0xac, 0x74, 0x57, 0x7f, 0xb1, 0xc1, 0xc2, 0xa2, 0x6f, 0x6c, 0x97, 0x8e, 0x6a, 0x67, 0x68,\n    0x6f, 0x71, 0x74, 0x77, 0x78, 0x79, 0x78, 0x78, 0x6f, 0x6b, 0x6e, 0x70, 0x73, 0x68, 0x64, 0x60,\n    0x6c, 0x72, 0x7f, 0x85, 0x7a, 0x67, 0x62, 0x69, 0x61, 0x67, 0x73, 0x7c, 0x7b, 0x72, 0x6e, 0x71,\n    0x76, 0x73, 0x70, 0x71, 0x76, 0x80, 0x89, 0x90, 0x87, 0x86, 0x89, 0x90, 0x93, 0x90, 0x8b, 0x88,\n    0x6d, 0x6e, 0x70, 0x70, 0x68, 0x56, 0x3f, 0x2f, 0x32, 0x3e, 0x46, 0x46, 0x4a, 0x53, 0x54, 0x4f,\n    0x53, 0x52, 0x49, 0x3c, 0x32, 0x32, 0x33, 0x33, 0x33, 0x39, 0x37, 0x2a, 0x20, 0x20, 0x26, 0x29,\n    0x1e, 0x24, 0x29, 0x28, 0x25, 0x27, 0x2d, 0x31, 0x32, 0x36, 0x3e, 0x45, 0x3f, 0x32, 0x2b, 0x2c,\n    0x3f, 0x4d, 0x4d, 0x4e, 0x54, 0x57, 0x4e, 0x34, 0x3e, 0x49, 0x63, 0x78, 0x7d, 0x7d, 0x80, 0x81,\n    0x81, 0x88, 0x8d, 0x8e, 0x8b, 0x88, 0x83, 0x7f, 0x84, 0x80, 0x77, 0x6a, 0x5b, 0x4d, 0x3e, 0x33,\n    0x25, 0x1d, 0x23, 0x39, 0x46, 0x3f, 0x31, 0x2b, 0x35, 0x4b, 0x64, 0x72, 0x76, 0x6e, 0x56, 0x3f,\n    0x2e, 0x43, 0x58, 0x5b, 0x51, 0x4c, 0x56, 0x63, 0x5f, 0x5b, 0x67, 0x76, 0x98, 0xa3, 0xab, 0xa4,\n    0x98, 0x93, 0x90, 0x94, 0x9f, 0xa9, 0xaf, 0xb2, 0xac, 0xab, 0xab, 0xae, 0xb2, 0xb3, 0xad, 0xa5,\n    0xae, 0xa8, 0x9f, 0x97, 0x92, 0x8c, 0x85, 0x7f, 0x6e, 0x61, 0x50, 0x40, 0x31, 0x24, 0x19, 0x13,\n    0x14, 0x13, 0x15, 0x18, 0x1b, 0x1a, 0x17, 0x14, 0x1c, 0x1f, 0x21, 0x20, 0x1d, 0x1b, 0x1b, 0x1b,\n    0x84, 0x74, 0x60, 0x5a, 0x6a, 0x83, 0x92, 0x95, 0x80, 0x73, 0x69, 0x6d, 0x78, 0x7a, 0x72, 0x68,\n    0x72, 0x6a, 0x5f, 0x58, 0x59, 0x64, 0x74, 0x7f, 0x82, 0x8b, 0x91, 0x8e, 0x88, 0x82, 0x7c, 0x75,\n    0x7e, 0x80, 0x84, 0x84, 0x7a, 0x6f, 0x71, 0x7c, 0x81, 0x87, 0x8f, 0x93, 0x93, 0x90, 0x8c, 0x8a,\n    0x94, 0x97, 0x94, 0x8f, 0x96, 0xa0, 0x9a, 0x8a, 0x87, 0x8d, 0x92, 0x95, 0x98, 0x9b, 0x9d, 0x9c,\n    0xa2, 0xa3, 0xa0, 0x9a, 0x93, 0x91, 0x96, 0x9c, 0x97, 0x93, 0x86, 0x78, 0x79, 0x89, 0x98, 0x9d,\n    0x88, 0x83, 0x85, 0x8f, 0x93, 0x8f, 0x8b, 0x8c, 0x81, 0x7d, 0x7b, 0x7d, 0x82, 0x87, 0x8c, 0x91,\n    0x92, 0x8d, 0x87, 0x85, 0x88, 0x91, 0x9b, 0xa2, 0xaa, 0xa4, 0x98, 0x8e, 0x90, 0x96, 0x93, 0x89,\n    0x8d, 0x93, 0x9b, 0x9d, 0x99, 0x93, 0x8e, 0x8d, 0x97, 0x96, 0x95, 0x97, 0x9c, 0xa2, 0xa7, 0xa8,\n    0xaf, 0xba, 0xbf, 0xb6, 0xa7, 0x9f, 0x9b, 0x99, 0xab, 0xa6, 0xa1, 0x9a, 0x8f, 0x88, 0x8f, 0x9c,\n    0x8f, 0x8f, 0x8e, 0x8c, 0x8f, 0x91, 0x88, 0x7d, 0x78, 0x7f, 0x82, 0x7f, 0x80, 0x84, 0x82, 0x7c,\n    0x74, 0x7e, 0x8f, 0x95, 0x86, 0x75, 0x7c, 0x90, 0x9b, 0x98, 0x98, 0x9d, 0xa4, 0xa3, 0x95, 0x86,\n    0x83, 0x80, 0x79, 0x86, 0x88, 0x85, 0x75, 0x78, 0x83, 0x7f, 0x7b, 0x7a, 0x81, 0x8b, 0x91, 0x92,\n    0x96, 0x9a, 0x9f, 0xa2, 0xa3, 0xa5, 0xa8, 0xaa, 0xad, 0xaf, 0xb1, 0xb3, 0xb4, 0xb4, 0xb5, 0xb6,\n    0xb5, 0xb5, 0xb4, 0xb4, 0xb4, 0xb5, 0xb7, 0xb7, 0xb8, 0xb7, 0xb7, 0xb5, 0xb4, 0xb2, 0xb1, 0xb0,\n    0xac, 0xaa, 0xa7, 0xa4, 0xa1, 0x9e, 0x9a, 0x98, 0x99, 0x98, 0x95, 0x94, 0x93, 0x94, 0x95, 0x97,\n    0x99, 0x96, 0x92, 0x8d, 0x89, 0x87, 0x87, 0x88, 0x8c, 0x8a, 0x8a, 0x8b, 0x8a, 0x88, 0x8a, 0x8d,\n    0x9a, 0xa4, 0xa9, 0xa6, 0x9c, 0x8f, 0x91, 0xa0, 0x9e, 0xa1, 0xa5, 0xa9, 0xab, 0xad, 0xaf, 0xb1,\n    0xb5, 0xba, 0xc0, 0xc1, 0xc0, 0xc0, 0xc3, 0xc7, 0xca, 0xcb, 0xcb, 0xcb, 0xcb, 0xcc, 0xcf, 0xd1,\n    0xd0, 0xd1, 0xd1, 0xd1, 0xd2, 0xd2, 0xd2, 0xd3, 0xd2, 0xd3, 0xd3, 0xd1, 0xd0, 0xcf, 0xd0, 0xd1,\n    0xd1, 0xd4, 0xd5, 0xd3, 0xd1, 0xd1, 0xcf, 0xcd, 0xc5, 0xba, 0xad, 0xa6, 0xa2, 0x9b, 0x93, 0x8e,\n    0x9c, 0xa2, 0xac, 0xb5, 0xbe, 0xc7, 0xd0, 0xd6, 0xd5, 0xd8, 0xdb, 0xdc, 0xd9, 0xd5, 0xd2, 0xd0,\n    0xd2, 0xd0, 0xcf, 0xd0, 0xd1, 0xd2, 0xd5, 0xd9, 0xdd, 0xdf, 0xe3, 0xb2, 0x88, 0x86, 0x89, 0x9f,\n    0xc9, 0xd8, 0xda, 0xd4, 0xd2, 0xd5, 0xa3, 0x7e, 0x6e, 0xa1, 0xd5, 0xd4, 0xd7, 0xdb, 0xdc, 0xdc,\n    0xd9, 0xba, 0x8e, 0x81, 0x82, 0x79, 0x8a, 0xd4, 0xd6, 0xd3, 0xd2, 0xd6, 0xda, 0xdb, 0xdb, 0xdb,\n    0xda, 0xd8, 0xd7, 0xd7, 0xd9, 0xda, 0xd9, 0xd8, 0xd9, 0xd6, 0xd3, 0xd2, 0xd2, 0xd0, 0xcf, 0xd1,\n    0xd2, 0xcc, 0xd1, 0xce, 0xd3, 0xd8, 0xac, 0x72, 0x9f, 0xcd, 0xcc, 0xc2, 0xc3, 0xc0, 0xc8, 0xc6,\n    0xc8, 0xad, 0x71, 0x58, 0x89, 0xbc, 0xc3, 0xb9, 0x9d, 0x6d, 0x76, 0xa7, 0x96, 0x6e, 0x70, 0x74,\n    0x74, 0x6d, 0x67, 0x6b, 0x7b, 0x89, 0x86, 0x7c, 0x77, 0x78, 0x78, 0x7c, 0x76, 0x73, 0x6b, 0x6a,\n    0x6e, 0x6f, 0x77, 0x82, 0x80, 0x73, 0x67, 0x63, 0x63, 0x6e, 0x7c, 0x80, 0x7a, 0x6f, 0x68, 0x66,\n    0x6f, 0x75, 0x79, 0x78, 0x73, 0x73, 0x78, 0x7e, 0x85, 0x83, 0x84, 0x89, 0x8a, 0x84, 0x7c, 0x77,\n    0x6b, 0x6c, 0x75, 0x7c, 0x6e, 0x4d, 0x30, 0x24, 0x35, 0x43, 0x4a, 0x47, 0x4b, 0x59, 0x5f, 0x5b,\n    0x5b, 0x58, 0x51, 0x45, 0x35, 0x29, 0x28, 0x2d, 0x37, 0x3b, 0x38, 0x2d, 0x24, 0x22, 0x23, 0x23,\n    0x21, 0x2a, 0x28, 0x1d, 0x1a, 0x23, 0x26, 0x20, 0x2e, 0x32, 0x3a, 0x40, 0x3c, 0x31, 0x2a, 0x2a,\n    0x32, 0x3c, 0x3a, 0x42, 0x56, 0x64, 0x5e, 0x41, 0x36, 0x3c, 0x4e, 0x60, 0x66, 0x71, 0x84, 0x91,\n    0x81, 0x79, 0x69, 0x58, 0x52, 0x5a, 0x67, 0x70, 0x77, 0x7a, 0x7c, 0x7b, 0x75, 0x6a, 0x59, 0x4b,\n    0x43, 0x36, 0x33, 0x3c, 0x3c, 0x30, 0x2b, 0x31, 0x46, 0x54, 0x5e, 0x59, 0x4c, 0x3d, 0x2c, 0x1d,\n    0x38, 0x4b, 0x65, 0x75, 0x74, 0x6e, 0x74, 0x7f, 0x7e, 0x81, 0x8c, 0x93, 0x9f, 0x9c, 0x9a, 0x92,\n    0x98, 0x90, 0x84, 0x7d, 0x7c, 0x7e, 0x7e, 0x7e, 0x85, 0x85, 0x85, 0x83, 0x7f, 0x80, 0x89, 0x93,\n    0x96, 0xa3, 0xac, 0xab, 0xa5, 0xa2, 0xa0, 0x9f, 0xa0, 0x97, 0x8b, 0x7f, 0x70, 0x55, 0x31, 0x14,\n    0x15, 0x14, 0x16, 0x18, 0x17, 0x15, 0x1a, 0x23, 0x1f, 0x25, 0x29, 0x28, 0x29, 0x2a, 0x25, 0x1e,\n    0x7f, 0x7d, 0x7d, 0x84, 0x91, 0x96, 0x8d, 0x80, 0x7b, 0x79, 0x78, 0x79, 0x7a, 0x7a, 0x79, 0x78,\n    0x76, 0x72, 0x6e, 0x6e, 0x72, 0x76, 0x78, 0x77, 0x83, 0x84, 0x84, 0x83, 0x85, 0x88, 0x86, 0x82,\n    0x80, 0x7e, 0x81, 0x85, 0x82, 0x7d, 0x7d, 0x82, 0x81, 0x93, 0xa5, 0xa7, 0x9b, 0x91, 0x92, 0x97,\n    0x9f, 0xa2, 0xa5, 0xa9, 0xae, 0xab, 0x9b, 0x89, 0x86, 0x8b, 0x90, 0x94, 0x97, 0x99, 0x96, 0x91,\n    0x97, 0x9b, 0x9a, 0x93, 0x89, 0x88, 0x92, 0x9c, 0xac, 0xa9, 0x96, 0x80, 0x82, 0x92, 0x8e, 0x7a,\n    0x7f, 0x89, 0x8d, 0x88, 0x88, 0x91, 0x98, 0x98, 0x88, 0x86, 0x85, 0x84, 0x81, 0x7d, 0x7d, 0x7f,\n    0x89, 0x89, 0x87, 0x85, 0x85, 0x87, 0x88, 0x88, 0x93, 0x97, 0x99, 0x9b, 0xa1, 0xa5, 0x97, 0x85,\n    0x7c, 0x7d, 0x82, 0x8a, 0x91, 0x95, 0x97, 0x98, 0x8f, 0x8d, 0x90, 0x99, 0xa6, 0xaa, 0xa1, 0x95,\n    0x91, 0x9c, 0xa6, 0xa6, 0xa0, 0x9e, 0xa2, 0xa7, 0xa9, 0xa0, 0x9b, 0x99, 0x92, 0x88, 0x88, 0x91,\n    0x93, 0x90, 0x8e, 0x8f, 0x90, 0x8b, 0x82, 0x7c, 0x84, 0x88, 0x89, 0x87, 0x8b, 0x90, 0x88, 0x7b,\n    0x74, 0x86, 0x9b, 0x9f, 0x8e, 0x7d, 0x82, 0x91, 0x91, 0x92, 0x94, 0x99, 0xa0, 0xa4, 0xa3, 0xa0,\n    0x87, 0x7e, 0x73, 0x87, 0x93, 0x94, 0x7f, 0x7b, 0x82, 0x7c, 0x78, 0x7c, 0x87, 0x8f, 0x8f, 0x8a,\n    0x96, 0x99, 0x9d, 0xa0, 0xa1, 0xa3, 0xa7, 0xaa, 0xaa, 0xac, 0xaf, 0xb1, 0xb2, 0xb3, 0xb5, 0xb6,\n    0xb5, 0xb6, 0xb8, 0xba, 0xbc, 0xbf, 0xc1, 0xc2, 0xc1, 0xc1, 0xc1, 0xc1, 0xc0, 0xbe, 0xbc, 0xbb,\n    0xb7, 0xb5, 0xb2, 0xaf, 0xac, 0xa7, 0xa2, 0x9f, 0x99, 0x97, 0x94, 0x92, 0x92, 0x93, 0x96, 0x97,\n    0x98, 0x99, 0x98, 0x94, 0x8f, 0x8a, 0x89, 0x88, 0x8a, 0x8b, 0x8c, 0x8c, 0x8a, 0x88, 0x8d, 0x93,\n    0x99, 0xa9, 0xab, 0x9c, 0x92, 0x94, 0x99, 0x9b, 0xa1, 0xa5, 0xaa, 0xae, 0xb0, 0xb2, 0xb3, 0xb4,\n    0xb9, 0xbe, 0xc4, 0xc5, 0xc2, 0xc1, 0xc4, 0xc7, 0xcb, 0xcb, 0xcc, 0xcc, 0xcd, 0xd0, 0xd4, 0xd6,\n    0xd5, 0xd4, 0xd4, 0xd2, 0xd1, 0xd1, 0xd0, 0xd0, 0xd1, 0xd2, 0xd2, 0xd1, 0xd0, 0xd0, 0xd1, 0xd2,\n    0xd3, 0xd4, 0xd3, 0xd2, 0xd2, 0xd1, 0xcc, 0xc6, 0xc2, 0xb6, 0xad, 0xac, 0xac, 0xa8, 0xa4, 0xa5,\n    0xb1, 0xb5, 0xbc, 0xc3, 0xc9, 0xcf, 0xd5, 0xd9, 0xd6, 0xd7, 0xd9, 0xdb, 0xdc, 0xdb, 0xd9, 0xd7,\n    0xd6, 0xd3, 0xd0, 0xd1, 0xd4, 0xd7, 0xd9, 0xdb, 0xdf, 0xda, 0xcc, 0x95, 0x81, 0x89, 0x85, 0xa9,\n    0xde, 0xdf, 0xda, 0xd6, 0xd8, 0xd3, 0x96, 0x77, 0x70, 0xaa, 0xd6, 0xd5, 0xd6, 0xda, 0xdb, 0xdd,\n    0xd6, 0xa0, 0x77, 0x82, 0x86, 0x7a, 0x7e, 0xce, 0xdb, 0xda, 0xdb, 0xda, 0xd6, 0xd2, 0xd5, 0xdb,\n    0xdf, 0xdc, 0xd8, 0xd8, 0xda, 0xdb, 0xd9, 0xd6, 0xd8, 0xd4, 0xd1, 0xd0, 0xd1, 0xd1, 0xd0, 0xd0,\n    0xd3, 0xca, 0xcf, 0xcc, 0xd0, 0xd5, 0xa8, 0x6d, 0x8a, 0xbd, 0xce, 0xce, 0xcc, 0xbe, 0xbd, 0xc0,\n    0xbd, 0x9e, 0x6e, 0x6a, 0x9c, 0xbe, 0xbd, 0xba, 0x98, 0x69, 0x6a, 0x8f, 0x81, 0x6a, 0x70, 0x68,\n    0x68, 0x72, 0x73, 0x68, 0x60, 0x66, 0x6e, 0x71, 0x80, 0x88, 0x86, 0x89, 0x77, 0x75, 0x6a, 0x6b,\n    0x69, 0x6b, 0x73, 0x7e, 0x81, 0x77, 0x67, 0x5d, 0x66, 0x71, 0x7a, 0x79, 0x76, 0x73, 0x6f, 0x6b,\n    0x6f, 0x75, 0x79, 0x75, 0x6e, 0x6c, 0x72, 0x79, 0x87, 0x82, 0x7f, 0x80, 0x7f, 0x78, 0x6f, 0x69,\n    0x6c, 0x70, 0x78, 0x7c, 0x6e, 0x52, 0x3e, 0x38, 0x42, 0x4c, 0x4e, 0x48, 0x4f, 0x61, 0x69, 0x64,\n    0x55, 0x58, 0x5c, 0x59, 0x46, 0x31, 0x2f, 0x3a, 0x3a, 0x3c, 0x3a, 0x32, 0x2b, 0x26, 0x22, 0x1e,\n    0x1e, 0x27, 0x26, 0x1b, 0x1b, 0x26, 0x2d, 0x29, 0x3f, 0x40, 0x43, 0x42, 0x38, 0x28, 0x1e, 0x1b,\n    0x21, 0x2c, 0x2a, 0x35, 0x50, 0x6a, 0x71, 0x5d, 0x46, 0x3e, 0x42, 0x4b, 0x50, 0x5b, 0x6f, 0x7c,\n    0x88, 0x85, 0x78, 0x62, 0x4a, 0x3b, 0x33, 0x31, 0x46, 0x63, 0x80, 0x85, 0x77, 0x6a, 0x69, 0x6e,\n    0x68, 0x63, 0x61, 0x61, 0x54, 0x3f, 0x32, 0x31, 0x26, 0x2b, 0x36, 0x3d, 0x36, 0x2b, 0x2e, 0x3a,\n    0x45, 0x46, 0x4c, 0x57, 0x62, 0x66, 0x61, 0x5a, 0x65, 0x6b, 0x74, 0x76, 0x76, 0x72, 0x73, 0x73,\n    0x66, 0x5b, 0x46, 0x2d, 0x1e, 0x22, 0x31, 0x3d, 0x3f, 0x4d, 0x5f, 0x66, 0x5d, 0x4e, 0x47, 0x49,\n    0x52, 0x52, 0x53, 0x5e, 0x76, 0x8b, 0x8e, 0x85, 0x82, 0x7e, 0x7f, 0x88, 0x90, 0x82, 0x58, 0x31,\n    0x1c, 0x16, 0x15, 0x1a, 0x1c, 0x18, 0x18, 0x1b, 0x1e, 0x24, 0x27, 0x29, 0x2f, 0x31, 0x26, 0x15,\n    0xa7, 0xa1, 0x9b, 0x99, 0x9e, 0xa2, 0xa0, 0x9b, 0x95, 0x92, 0x8b, 0x81, 0x7a, 0x7b, 0x83, 0x8a,\n    0x82, 0x7c, 0x77, 0x7a, 0x81, 0x85, 0x83, 0x7e, 0x72, 0x6f, 0x6e, 0x74, 0x81, 0x8d, 0x90, 0x8e,\n    0x94, 0x8b, 0x83, 0x83, 0x83, 0x81, 0x7f, 0x7f, 0x91, 0x93, 0x96, 0x95, 0x93, 0x95, 0x9b, 0xa1,\n    0x9d, 0x9b, 0xa2, 0xb2, 0xba, 0xb3, 0xa6, 0x9d, 0x97, 0x93, 0x8d, 0x8c, 0x91, 0x96, 0x95, 0x90,\n    0x96, 0x98, 0x9b, 0x9b, 0x96, 0x8f, 0x89, 0x85, 0x8b, 0x8b, 0x87, 0x84, 0x8d, 0x97, 0x91, 0x81,\n    0x73, 0x82, 0x8f, 0x95, 0x9c, 0xa0, 0x96, 0x86, 0x78, 0x7b, 0x80, 0x85, 0x87, 0x89, 0x8e, 0x93,\n    0x9b, 0x9b, 0x98, 0x93, 0x91, 0x8f, 0x8a, 0x84, 0x8f, 0x95, 0x9a, 0xa0, 0xad, 0xbd, 0xc1, 0xbc,\n    0x9b, 0x8b, 0x7e, 0x7e, 0x86, 0x8b, 0x8c, 0x8b, 0x98, 0xa1, 0xa8, 0xa8, 0xa5, 0xa2, 0xa0, 0x9e,\n    0xa3, 0x9f, 0x9b, 0x96, 0x8c, 0x86, 0x90, 0x9f, 0xa6, 0x9d, 0x9a, 0xa1, 0xa5, 0xa3, 0xa2, 0xa4,\n    0x9a, 0x94, 0x94, 0x97, 0x90, 0x7f, 0x75, 0x76, 0x87, 0x87, 0x84, 0x85, 0x8d, 0x93, 0x89, 0x7a,\n    0x73, 0x80, 0x87, 0x7e, 0x75, 0x7b, 0x8b, 0x96, 0x8a, 0x8e, 0x97, 0x9f, 0xa1, 0x9b, 0x92, 0x8b,\n    0x98, 0x95, 0x89, 0x90, 0x90, 0x91, 0x80, 0x7d, 0x7b, 0x7c, 0x7e, 0x81, 0x83, 0x87, 0x8d, 0x91,\n    0x95, 0x98, 0x9c, 0x9e, 0xa0, 0xa3, 0xa7, 0xab, 0xad, 0xaf, 0xb2, 0xb5, 0xb7, 0xb9, 0xbb, 0xbd,\n    0xc0, 0xc1, 0xc3, 0xc5, 0xc6, 0xc6, 0xc6, 0xc5, 0xc6, 0xc7, 0xc7, 0xc7, 0xc6, 0xc5, 0xc4, 0xc3,\n    0xc1, 0xc0, 0xbd, 0xbb, 0xb8, 0xb3, 0xae, 0xab, 0xa1, 0x9e, 0x9a, 0x96, 0x94, 0x94, 0x95, 0x97,\n    0x97, 0x9a, 0x9c, 0x9a, 0x94, 0x8e, 0x89, 0x88, 0x89, 0x8b, 0x8d, 0x8d, 0x8b, 0x8a, 0x90, 0x97,\n    0xa2, 0xa4, 0xa0, 0x93, 0x8f, 0x98, 0xa0, 0x9e, 0xa5, 0xa9, 0xae, 0xb2, 0xb4, 0xb6, 0xb7, 0xb8,\n    0xbd, 0xc1, 0xc5, 0xc6, 0xc4, 0xc3, 0xc6, 0xc9, 0xcb, 0xcd, 0xce, 0xcf, 0xd0, 0xd2, 0xd4, 0xd6,\n    0xd4, 0xd3, 0xd2, 0xd1, 0xd0, 0xce, 0xcd, 0xcc, 0xcd, 0xce, 0xcf, 0xcf, 0xce, 0xce, 0xd0, 0xd1,\n    0xd4, 0xd2, 0xd0, 0xd0, 0xd2, 0xd0, 0xc6, 0xbc, 0xbc, 0xb6, 0xb5, 0xba, 0xbf, 0xc0, 0xc5, 0xcb,\n    0xc6, 0xc8, 0xca, 0xcd, 0xcf, 0xd2, 0xd5, 0xd7, 0xd6, 0xd5, 0xd5, 0xd7, 0xd9, 0xdc, 0xdc, 0xdc,\n    0xd9, 0xd6, 0xd3, 0xd2, 0xd4, 0xd8, 0xd9, 0xd9, 0xdc, 0xda, 0xb3, 0x81, 0x85, 0x88, 0x88, 0xc0,\n    0xd8, 0xd7, 0xd5, 0xd3, 0xda, 0xd4, 0x90, 0x75, 0x74, 0xb3, 0xd4, 0xd3, 0xd2, 0xd6, 0xd8, 0xdb,\n    0xd8, 0x95, 0x76, 0x85, 0x7c, 0x78, 0x83, 0xc1, 0xce, 0xd0, 0xd5, 0xd9, 0xd8, 0xd6, 0xd7, 0xda,\n    0xdf, 0xdb, 0xd8, 0xd7, 0xd9, 0xda, 0xd8, 0xd6, 0xd5, 0xd3, 0xd1, 0xcf, 0xd1, 0xd2, 0xd2, 0xd0,\n    0xd6, 0xcc, 0xcf, 0xcb, 0xce, 0xcb, 0x9c, 0x67, 0x85, 0xbd, 0xd0, 0xc7, 0xc8, 0xc7, 0xc5, 0xc3,\n    0xc3, 0x9f, 0x6c, 0x6c, 0x9e, 0xbd, 0xbc, 0xbd, 0x99, 0x64, 0x56, 0x74, 0x75, 0x6d, 0x71, 0x62,\n    0x69, 0x6d, 0x6b, 0x65, 0x67, 0x70, 0x74, 0x70, 0x68, 0x7d, 0x87, 0x8d, 0x7a, 0x76, 0x69, 0x68,\n    0x63, 0x6d, 0x78, 0x7b, 0x72, 0x67, 0x61, 0x61, 0x61, 0x69, 0x6d, 0x6d, 0x6f, 0x73, 0x72, 0x6d,\n    0x6d, 0x72, 0x76, 0x78, 0x79, 0x7c, 0x82, 0x88, 0x86, 0x81, 0x7f, 0x82, 0x83, 0x7d, 0x75, 0x6f,\n    0x6c, 0x76, 0x79, 0x6a, 0x51, 0x40, 0x3e, 0x41, 0x4e, 0x52, 0x4e, 0x48, 0x51, 0x64, 0x6a, 0x63,\n    0x56, 0x56, 0x5e, 0x64, 0x57, 0x3e, 0x32, 0x36, 0x39, 0x3b, 0x3a, 0x35, 0x2e, 0x26, 0x1e, 0x19,\n    0x1a, 0x20, 0x22, 0x1d, 0x1b, 0x22, 0x2d, 0x35, 0x44, 0x45, 0x45, 0x42, 0x39, 0x2d, 0x24, 0x21,\n    0x24, 0x2d, 0x27, 0x2a, 0x3e, 0x5d, 0x76, 0x73, 0x57, 0x42, 0x38, 0x3d, 0x42, 0x4a, 0x54, 0x59,\n    0x66, 0x6d, 0x72, 0x70, 0x6e, 0x74, 0x80, 0x89, 0x73, 0x5d, 0x45, 0x43, 0x58, 0x70, 0x77, 0x73,\n    0x76, 0x70, 0x67, 0x61, 0x60, 0x5c, 0x4f, 0x42, 0x3b, 0x31, 0x2e, 0x31, 0x2e, 0x27, 0x2a, 0x34,\n    0x3a, 0x43, 0x46, 0x43, 0x48, 0x55, 0x5d, 0x5b, 0x5a, 0x57, 0x53, 0x53, 0x50, 0x4f, 0x49, 0x46,\n    0x35, 0x48, 0x5d, 0x69, 0x6b, 0x6b, 0x6a, 0x69, 0x6d, 0x61, 0x53, 0x4c, 0x4d, 0x51, 0x57, 0x5c,\n    0x5d, 0x5c, 0x52, 0x41, 0x36, 0x38, 0x40, 0x45, 0x48, 0x41, 0x42, 0x54, 0x72, 0x89, 0x8b, 0x83,\n    0x5c, 0x42, 0x29, 0x20, 0x22, 0x22, 0x1e, 0x1b, 0x27, 0x28, 0x27, 0x29, 0x32, 0x37, 0x2b, 0x19,\n    0x9a, 0xa1, 0xab, 0xb2, 0xb2, 0xa9, 0x9b, 0x91, 0x91, 0x8d, 0x84, 0x7c, 0x7c, 0x81, 0x85, 0x86,\n    0x7e, 0x80, 0x85, 0x8c, 0x8e, 0x84, 0x72, 0x62, 0x6b, 0x6b, 0x70, 0x7d, 0x8f, 0x9b, 0x9e, 0x9c,\n    0x9a, 0x95, 0x91, 0x92, 0x92, 0x90, 0x8e, 0x8e, 0x87, 0x81, 0x7a, 0x76, 0x76, 0x7b, 0x81, 0x85,\n    0x9c, 0x9a, 0xa8, 0xbe, 0xc4, 0xb4, 0xa2, 0x9c, 0x97, 0x94, 0x90, 0x94, 0x9d, 0xa3, 0x9f, 0x97,\n    0x84, 0x83, 0x88, 0x97, 0xa9, 0xb0, 0xaa, 0xa1, 0x9b, 0x92, 0x91, 0x97, 0x91, 0x81, 0x78, 0x7c,\n    0x7b, 0x7d, 0x81, 0x85, 0x87, 0x88, 0x8d, 0x92, 0x87, 0x87, 0x88, 0x89, 0x88, 0x88, 0x8e, 0x94,\n    0x98, 0x95, 0x8d, 0x84, 0x83, 0x87, 0x88, 0x85, 0x94, 0x9c, 0xa3, 0xa4, 0xa1, 0x9c, 0x95, 0x90,\n    0x92, 0x89, 0x7e, 0x75, 0x6e, 0x6f, 0x7e, 0x8d, 0x94, 0x99, 0x97, 0x89, 0x7d, 0x7d, 0x84, 0x8a,\n    0x8b, 0x86, 0x85, 0x86, 0x7f, 0x78, 0x7f, 0x8d, 0x84, 0x7f, 0x7f, 0x89, 0x97, 0xa0, 0xa3, 0xa4,\n    0x9d, 0x95, 0x90, 0x8e, 0x84, 0x79, 0x7a, 0x84, 0x93, 0x8c, 0x86, 0x86, 0x8d, 0x8f, 0x86, 0x7a,\n    0x6f, 0x84, 0x93, 0x92, 0x8f, 0x91, 0x8e, 0x86, 0x89, 0x8a, 0x90, 0x9a, 0x9e, 0x95, 0x86, 0x7a,\n    0x7f, 0x89, 0x81, 0x7c, 0x6e, 0x70, 0x6c, 0x75, 0x7e, 0x7a, 0x79, 0x7c, 0x81, 0x87, 0x8e, 0x94,\n    0x96, 0x99, 0x9c, 0x9f, 0xa1, 0xa5, 0xaa, 0xae, 0xb0, 0xb2, 0xb5, 0xb8, 0xba, 0xbd, 0xc0, 0xc2,\n    0xc4, 0xc6, 0xc8, 0xca, 0xcb, 0xcb, 0xca, 0xc9, 0xca, 0xca, 0xca, 0xca, 0xc9, 0xc8, 0xc7, 0xc7,\n    0xc6, 0xc4, 0xc3, 0xc1, 0xbe, 0xbb, 0xb7, 0xb4, 0xae, 0xaa, 0xa5, 0x9f, 0x9b, 0x99, 0x98, 0x99,\n    0x9a, 0x9c, 0x9d, 0x9d, 0x98, 0x92, 0x8d, 0x89, 0x8b, 0x8c, 0x8e, 0x8e, 0x8c, 0x8c, 0x93, 0x9c,\n    0xad, 0x98, 0x8f, 0x93, 0x94, 0x99, 0xa4, 0xab, 0xac, 0xaf, 0xb3, 0xb6, 0xb8, 0xba, 0xbb, 0xbd,\n    0xbe, 0xc1, 0xc5, 0xc7, 0xc7, 0xc8, 0xc9, 0xcb, 0xcc, 0xcd, 0xcf, 0xcf, 0xce, 0xce, 0xce, 0xcf,\n    0xcd, 0xce, 0xcf, 0xcf, 0xcf, 0xce, 0xcd, 0xcd, 0xcd, 0xcf, 0xd1, 0xd1, 0xd1, 0xd2, 0xd2, 0xd3,\n    0xd4, 0xd2, 0xce, 0xce, 0xd2, 0xd1, 0xc8, 0xbe, 0xbc, 0xc4, 0xd1, 0xdc, 0xdf, 0xdb, 0xd7, 0xd6,\n    0xd1, 0xd1, 0xd0, 0xd0, 0xd1, 0xd3, 0xd5, 0xd6, 0xd7, 0xd6, 0xd4, 0xd4, 0xd6, 0xd8, 0xda, 0xdb,\n    0xda, 0xd9, 0xd5, 0xd3, 0xd4, 0xd7, 0xd8, 0xd6, 0xd8, 0xdd, 0xa1, 0x7d, 0x86, 0x80, 0x9b, 0xd9,\n    0xd7, 0xd9, 0xd7, 0xca, 0xcf, 0xce, 0x8a, 0x75, 0x74, 0xb8, 0xd0, 0xd1, 0xcf, 0xd5, 0xd5, 0xd8,\n    0xdb, 0x9e, 0x7f, 0x7b, 0x6d, 0x81, 0xab, 0xd3, 0xd1, 0xd1, 0xd1, 0xd2, 0xd6, 0xdb, 0xdd, 0xdb,\n    0xda, 0xd7, 0xd5, 0xd4, 0xd5, 0xd7, 0xd6, 0xd5, 0xd2, 0xd3, 0xd2, 0xd0, 0xd1, 0xd3, 0xd3, 0xd0,\n    0xd6, 0xcf, 0xcf, 0xcc, 0xcf, 0xc1, 0x8d, 0x65, 0x8d, 0xbf, 0xc0, 0x9f, 0xa8, 0xc6, 0xcb, 0xc1,\n    0xc1, 0x9b, 0x65, 0x64, 0x9d, 0xc1, 0xbb, 0xb2, 0x94, 0x63, 0x50, 0x70, 0x7d, 0x75, 0x75, 0x6b,\n    0x6e, 0x67, 0x62, 0x68, 0x79, 0x88, 0x84, 0x78, 0x72, 0x84, 0x8e, 0x8b, 0x7a, 0x74, 0x6b, 0x67,\n    0x60, 0x65, 0x69, 0x68, 0x64, 0x63, 0x62, 0x61, 0x62, 0x67, 0x6a, 0x6b, 0x6c, 0x6d, 0x68, 0x61,\n    0x5d, 0x60, 0x67, 0x6f, 0x77, 0x7c, 0x7e, 0x7e, 0x7f, 0x7c, 0x7c, 0x82, 0x85, 0x81, 0x77, 0x71,\n    0x73, 0x76, 0x6c, 0x57, 0x48, 0x47, 0x47, 0x42, 0x52, 0x51, 0x4d, 0x4b, 0x55, 0x63, 0x65, 0x5d,\n    0x57, 0x4f, 0x51, 0x60, 0x63, 0x52, 0x3f, 0x38, 0x40, 0x40, 0x3d, 0x38, 0x2f, 0x25, 0x1d, 0x17,\n    0x20, 0x23, 0x24, 0x21, 0x1a, 0x1a, 0x27, 0x35, 0x39, 0x3a, 0x3a, 0x39, 0x38, 0x37, 0x38, 0x39,\n    0x37, 0x3c, 0x32, 0x2d, 0x36, 0x50, 0x74, 0x81, 0x63, 0x47, 0x37, 0x3a, 0x3e, 0x41, 0x43, 0x43,\n    0x44, 0x4e, 0x56, 0x56, 0x52, 0x4e, 0x4d, 0x4d, 0x67, 0x65, 0x65, 0x6f, 0x81, 0x90, 0x93, 0x8f,\n    0x92, 0x8d, 0x7d, 0x6b, 0x65, 0x6b, 0x6b, 0x64, 0x51, 0x40, 0x2c, 0x27, 0x35, 0x45, 0x4b, 0x48,\n    0x5f, 0x6c, 0x67, 0x4c, 0x38, 0x3a, 0x42, 0x43, 0x45, 0x46, 0x43, 0x47, 0x43, 0x48, 0x45, 0x46,\n    0x5d, 0x56, 0x4a, 0x40, 0x46, 0x5c, 0x74, 0x80, 0x8f, 0x91, 0x94, 0x98, 0x9f, 0xa6, 0xa8, 0xa6,\n    0x89, 0x8c, 0x95, 0xa1, 0xa5, 0x95, 0x76, 0x5d, 0x3a, 0x2e, 0x24, 0x27, 0x39, 0x58, 0x79, 0x90,\n    0x99, 0x89, 0x70, 0x58, 0x45, 0x39, 0x32, 0x2e, 0x2c, 0x2a, 0x26, 0x28, 0x33, 0x3c, 0x39, 0x2f,\n    0xa3, 0xa7, 0xac, 0xae, 0xac, 0xa7, 0xa1, 0x9e, 0x91, 0x8e, 0x88, 0x84, 0x86, 0x89, 0x87, 0x83,\n    0x90, 0x8d, 0x89, 0x85, 0x82, 0x7d, 0x79, 0x75, 0x6e, 0x70, 0x76, 0x81, 0x8d, 0x95, 0x9a, 0x9c,\n    0x9a, 0x95, 0x93, 0x95, 0x98, 0x98, 0x97, 0x97, 0x97, 0x99, 0x9a, 0x97, 0x95, 0x96, 0x9d, 0xa3,\n    0x9f, 0xa3, 0xb2, 0xc3, 0xc2, 0xac, 0x94, 0x88, 0x89, 0x8b, 0x90, 0x99, 0xa4, 0xa8, 0xa0, 0x96,\n    0x9d, 0x98, 0x96, 0x99, 0x9f, 0xa1, 0x9b, 0x94, 0x8e, 0x83, 0x7e, 0x82, 0x7e, 0x73, 0x70, 0x76,\n    0x73, 0x7d, 0x88, 0x89, 0x82, 0x7c, 0x7f, 0x86, 0x79, 0x7a, 0x7d, 0x82, 0x86, 0x89, 0x91, 0x98,\n    0x95, 0x94, 0x8c, 0x7f, 0x7b, 0x80, 0x86, 0x87, 0x88, 0x8a, 0x8d, 0x8e, 0x8c, 0x8c, 0x96, 0xa0,\n    0xa7, 0xa5, 0x9d, 0x8b, 0x72, 0x66, 0x74, 0x89, 0x94, 0x91, 0x87, 0x7c, 0x79, 0x7e, 0x80, 0x7c,\n    0x84, 0x88, 0x8d, 0x8e, 0x86, 0x79, 0x72, 0x72, 0x78, 0x7b, 0x7e, 0x82, 0x88, 0x91, 0x96, 0x96,\n    0x99, 0x96, 0x8e, 0x82, 0x79, 0x78, 0x7e, 0x85, 0x89, 0x83, 0x80, 0x83, 0x85, 0x7f, 0x77, 0x72,\n    0x7c, 0x87, 0x8b, 0x85, 0x80, 0x80, 0x7f, 0x7b, 0x86, 0x86, 0x8b, 0x91, 0x92, 0x8d, 0x87, 0x85,\n    0x7b, 0x86, 0x81, 0x80, 0x77, 0x7e, 0x84, 0x96, 0x90, 0x86, 0x7f, 0x82, 0x88, 0x8c, 0x8d, 0x8e,\n    0x96, 0x98, 0x9c, 0x9f, 0xa1, 0xa6, 0xac, 0xb0, 0xb1, 0xb3, 0xb6, 0xb8, 0xba, 0xbd, 0xc0, 0xc3,\n    0xc2, 0xc4, 0xc6, 0xc8, 0xca, 0xcc, 0xcd, 0xcd, 0xcd, 0xcc, 0xcb, 0xca, 0xca, 0xc9, 0xc9, 0xc9,\n    0xc7, 0xc6, 0xc4, 0xc2, 0xc1, 0xbe, 0xbb, 0xb9, 0xb8, 0xb5, 0xb0, 0xaa, 0xa6, 0xa4, 0xa3, 0xa3,\n    0xa2, 0xa1, 0xa0, 0x9f, 0x9d, 0x99, 0x94, 0x90, 0x90, 0x8f, 0x8f, 0x8e, 0x8c, 0x8f, 0x98, 0xa1,\n    0xa8, 0x90, 0x8c, 0x99, 0x9c, 0x9e, 0xaa, 0xb2, 0xb4, 0xb6, 0xb8, 0xba, 0xbb, 0xbd, 0xbe, 0xc0,\n    0xc0, 0xc3, 0xc7, 0xca, 0xcc, 0xcc, 0xca, 0xc8, 0xca, 0xcb, 0xcb, 0xcb, 0xc9, 0xc9, 0xc9, 0xca,\n    0xcd, 0xcf, 0xd1, 0xd3, 0xd4, 0xd4, 0xd3, 0xd2, 0xd1, 0xd3, 0xd6, 0xd7, 0xd6, 0xd6, 0xd5, 0xd6,\n    0xd3, 0xd2, 0xd0, 0xd0, 0xd3, 0xd6, 0xd4, 0xcf, 0xd5, 0xdc, 0xe1, 0xe2, 0xe2, 0xe2, 0xe0, 0xde,\n    0xd9, 0xd7, 0xd4, 0xd2, 0xd3, 0xd4, 0xd6, 0xd8, 0xda, 0xd9, 0xd8, 0xd7, 0xd7, 0xd8, 0xda, 0xdb,\n    0xdb, 0xdc, 0xd9, 0xd6, 0xd6, 0xd8, 0xd8, 0xd6, 0xd4, 0xdb, 0x93, 0x82, 0x84, 0x79, 0xb5, 0xdd,\n    0xd0, 0xd4, 0xdc, 0xd6, 0xd5, 0xc3, 0x75, 0x6a, 0x76, 0xbe, 0xcf, 0xd3, 0xd1, 0xd7, 0xd4, 0xd5,\n    0xdb, 0xb6, 0x91, 0x79, 0x7c, 0xa2, 0xd4, 0xd7, 0xcc, 0xd8, 0xdf, 0xda, 0xd6, 0xd9, 0xda, 0xd7,\n    0xd9, 0xd7, 0xd5, 0xd3, 0xd2, 0xd3, 0xd4, 0xd4, 0xd0, 0xd3, 0xd4, 0xd1, 0xd0, 0xd1, 0xd1, 0xcf,\n    0xcf, 0xcf, 0xcc, 0xcb, 0xd1, 0xb8, 0x81, 0x68, 0x87, 0xa2, 0x94, 0x76, 0x90, 0xbf, 0xc6, 0xbe,\n    0xb8, 0x91, 0x64, 0x70, 0xab, 0xc6, 0xb9, 0xb2, 0x80, 0x6c, 0x5e, 0x70, 0x7b, 0x74, 0x73, 0x6c,\n    0x67, 0x6c, 0x70, 0x6e, 0x68, 0x66, 0x6b, 0x71, 0x90, 0x98, 0x99, 0x85, 0x78, 0x6b, 0x64, 0x59,\n    0x5f, 0x5d, 0x5a, 0x5b, 0x64, 0x6a, 0x66, 0x5d, 0x64, 0x68, 0x6d, 0x6e, 0x6c, 0x68, 0x61, 0x5c,\n    0x6c, 0x6e, 0x75, 0x7f, 0x89, 0x8d, 0x88, 0x83, 0x7b, 0x75, 0x72, 0x76, 0x7c, 0x7b, 0x77, 0x73,\n    0x73, 0x6e, 0x63, 0x5e, 0x68, 0x73, 0x6d, 0x5d, 0x4d, 0x4c, 0x4c, 0x51, 0x5a, 0x5f, 0x5d, 0x57,\n    0x4c, 0x42, 0x45, 0x58, 0x67, 0x66, 0x5d, 0x59, 0x4d, 0x4a, 0x44, 0x3b, 0x2f, 0x24, 0x1c, 0x19,\n    0x18, 0x1e, 0x22, 0x21, 0x1f, 0x24, 0x33, 0x42, 0x43, 0x3f, 0x39, 0x33, 0x32, 0x37, 0x3e, 0x43,\n    0x4b, 0x4e, 0x44, 0x40, 0x40, 0x4c, 0x69, 0x79, 0x77, 0x5b, 0x47, 0x45, 0x41, 0x3c, 0x3b, 0x3b,\n    0x45, 0x44, 0x41, 0x3f, 0x43, 0x4b, 0x51, 0x53, 0x54, 0x55, 0x59, 0x63, 0x73, 0x80, 0x82, 0x7e,\n    0x82, 0x8a, 0x8d, 0x85, 0x7c, 0x77, 0x72, 0x6d, 0x62, 0x54, 0x46, 0x47, 0x55, 0x60, 0x60, 0x59,\n    0x71, 0x75, 0x6c, 0x55, 0x46, 0x4a, 0x52, 0x55, 0x69, 0x6c, 0x67, 0x6c, 0x64, 0x6c, 0x69, 0x6e,\n    0x5e, 0x6b, 0x78, 0x81, 0x89, 0x92, 0x94, 0x91, 0x92, 0xa0, 0xa7, 0xa1, 0x97, 0x91, 0x8b, 0x82,\n    0x84, 0x7f, 0x7b, 0x7a, 0x77, 0x76, 0x7f, 0x8a, 0x7a, 0x6c, 0x5d, 0x53, 0x4c, 0x4e, 0x5e, 0x71,\n    0x83, 0x93, 0x9f, 0x9c, 0x8b, 0x72, 0x55, 0x3f, 0x25, 0x24, 0x23, 0x24, 0x28, 0x2d, 0x2f, 0x30,\n    0xac, 0xac, 0xae, 0xaf, 0xac, 0xa8, 0xa5, 0xa5, 0xaa, 0xa5, 0x9a, 0x8c, 0x83, 0x82, 0x83, 0x81,\n    0x80, 0x89, 0x95, 0x9b, 0x9a, 0x96, 0x93, 0x91, 0x9b, 0x9c, 0x9f, 0xa2, 0xa6, 0xac, 0xb6, 0xbe,\n    0xb5, 0xa5, 0x93, 0x8d, 0x91, 0x97, 0x99, 0x99, 0x9e, 0x9d, 0x99, 0x95, 0x92, 0x93, 0x96, 0x99,\n    0xa0, 0xa5, 0xae, 0xb4, 0xb1, 0xa3, 0x92, 0x87, 0x95, 0x96, 0x98, 0x9d, 0xa4, 0xa8, 0xa4, 0x9e,\n    0x8c, 0x94, 0x9d, 0x9e, 0x99, 0x93, 0x91, 0x92, 0x93, 0x8a, 0x7a, 0x71, 0x77, 0x82, 0x81, 0x78,\n    0x7b, 0x82, 0x7e, 0x70, 0x6e, 0x77, 0x7a, 0x73, 0x71, 0x72, 0x76, 0x7a, 0x7b, 0x7a, 0x7b, 0x7e,\n    0x8d, 0x8f, 0x89, 0x7a, 0x6e, 0x6d, 0x6f, 0x6e, 0x6b, 0x74, 0x84, 0x90, 0x8c, 0x82, 0x80, 0x86,\n    0x90, 0x87, 0x7d, 0x77, 0x6e, 0x68, 0x6c, 0x76, 0x83, 0x86, 0x86, 0x84, 0x87, 0x8a, 0x83, 0x79,\n    0x73, 0x7e, 0x88, 0x8a, 0x89, 0x87, 0x82, 0x7c, 0x76, 0x81, 0x86, 0x7f, 0x79, 0x7a, 0x7b, 0x79,\n    0x79, 0x86, 0x8b, 0x83, 0x81, 0x87, 0x87, 0x80, 0x73, 0x72, 0x79, 0x82, 0x83, 0x79, 0x72, 0x72,\n    0x7a, 0x83, 0x89, 0x87, 0x7f, 0x77, 0x72, 0x70, 0x72, 0x7a, 0x83, 0x85, 0x7c, 0x72, 0x73, 0x79,\n    0x88, 0x85, 0x75, 0x74, 0x6c, 0x6f, 0x6d, 0x7b, 0x76, 0x78, 0x7d, 0x83, 0x84, 0x86, 0x8d, 0x96,\n    0x95, 0x97, 0x9b, 0x9e, 0xa1, 0xa6, 0xac, 0xb1, 0xb4, 0xb6, 0xb8, 0xba, 0xbc, 0xbe, 0xc1, 0xc4,\n    0xc5, 0xc5, 0xc5, 0xc6, 0xc7, 0xc9, 0xca, 0xcb, 0xcc, 0xcb, 0xca, 0xc9, 0xc8, 0xc8, 0xc8, 0xc8,\n    0xc8, 0xc7, 0xc5, 0xc3, 0xc2, 0xc0, 0xbe, 0xbc, 0xbd, 0xbb, 0xb7, 0xb3, 0xb0, 0xaf, 0xaf, 0xb0,\n    0xa9, 0xa7, 0xa4, 0xa2, 0xa0, 0x9e, 0x9b, 0x98, 0x94, 0x92, 0x8f, 0x8d, 0x8c, 0x90, 0x9b, 0xa5,\n    0x9a, 0x8e, 0x94, 0x9f, 0xa0, 0xa7, 0xb0, 0xaf, 0xba, 0xbb, 0xbc, 0xbd, 0xbd, 0xbe, 0xc0, 0xc1,\n    0xc4, 0xc6, 0xc9, 0xce, 0xd0, 0xcd, 0xc8, 0xc4, 0xc7, 0xc7, 0xc7, 0xc7, 0xc6, 0xc7, 0xc9, 0xcb,\n    0xd2, 0xd4, 0xd7, 0xda, 0xdb, 0xda, 0xd8, 0xd7, 0xd1, 0xd4, 0xd7, 0xd8, 0xd7, 0xd6, 0xd4, 0xd4,\n    0xd2, 0xd4, 0xd3, 0xd2, 0xd4, 0xda, 0xde, 0xe0, 0xd9, 0xdf, 0xe2, 0xe0, 0xe0, 0xe3, 0xe1, 0xdc,\n    0xe1, 0xde, 0xd9, 0xd5, 0xd5, 0xd6, 0xd7, 0xd8, 0xdc, 0xdd, 0xdd, 0xdc, 0xdb, 0xdb, 0xdc, 0xdd,\n    0xdd, 0xdf, 0xdd, 0xd9, 0xd8, 0xdb, 0xdb, 0xd8, 0xd3, 0xd5, 0x88, 0x87, 0x82, 0x79, 0xc7, 0xd0,\n    0xd7, 0xce, 0xd7, 0xdd, 0xda, 0xb9, 0x6d, 0x79, 0x7b, 0xc5, 0xd3, 0xd8, 0xd6, 0xdb, 0xd5, 0xd4,\n    0xcd, 0xd0, 0xc1, 0xb1, 0xc7, 0xd8, 0xdb, 0xa5, 0x81, 0xaa, 0xd1, 0xda, 0xd5, 0xd6, 0xd9, 0xd8,\n    0xdb, 0xda, 0xd8, 0xd4, 0xd1, 0xd0, 0xd1, 0xd2, 0xce, 0xd3, 0xd5, 0xd2, 0xcf, 0xd0, 0xcf, 0xcd,\n    0xc9, 0xcc, 0xc9, 0xc9, 0xd2, 0xb3, 0x79, 0x6b, 0x73, 0x79, 0x6c, 0x67, 0x94, 0xc1, 0xc5, 0xc5,\n    0xb4, 0x86, 0x60, 0x79, 0xaf, 0xb8, 0xad, 0xb8, 0x78, 0x85, 0x7d, 0x77, 0x79, 0x7a, 0x79, 0x6f,\n    0x6e, 0x65, 0x60, 0x66, 0x6d, 0x6f, 0x6b, 0x67, 0x76, 0x7f, 0x89, 0x7b, 0x7d, 0x72, 0x6b, 0x5a,\n    0x5d, 0x62, 0x65, 0x64, 0x66, 0x69, 0x65, 0x5e, 0x5d, 0x61, 0x68, 0x6d, 0x6b, 0x67, 0x65, 0x66,\n    0x67, 0x69, 0x6f, 0x7a, 0x84, 0x88, 0x83, 0x7d, 0x7b, 0x71, 0x69, 0x6c, 0x74, 0x7b, 0x7f, 0x80,\n    0x71, 0x6f, 0x6b, 0x6b, 0x72, 0x76, 0x6b, 0x5c, 0x43, 0x43, 0x49, 0x53, 0x5a, 0x5a, 0x55, 0x52,\n    0x48, 0x41, 0x40, 0x4a, 0x51, 0x51, 0x52, 0x55, 0x57, 0x51, 0x47, 0x3a, 0x2c, 0x20, 0x1a, 0x19,\n    0x17, 0x1f, 0x24, 0x21, 0x21, 0x2a, 0x39, 0x44, 0x47, 0x41, 0x38, 0x31, 0x34, 0x3f, 0x4d, 0x56,\n    0x58, 0x5a, 0x53, 0x52, 0x4c, 0x48, 0x57, 0x60, 0x68, 0x50, 0x41, 0x40, 0x3b, 0x38, 0x3d, 0x43,\n    0x51, 0x44, 0x34, 0x2c, 0x32, 0x3f, 0x49, 0x4c, 0x58, 0x5b, 0x58, 0x4d, 0x42, 0x43, 0x4d, 0x55,\n    0x55, 0x57, 0x5f, 0x6c, 0x78, 0x7c, 0x7a, 0x76, 0x6e, 0x5c, 0x52, 0x56, 0x5a, 0x57, 0x5e, 0x6b,\n    0x80, 0x7d, 0x73, 0x65, 0x5d, 0x62, 0x6e, 0x78, 0x6e, 0x66, 0x59, 0x67, 0x71, 0x85, 0x7f, 0x7d,\n    0x89, 0x9b, 0xa9, 0xa9, 0xa5, 0xa8, 0xad, 0xaf, 0x9a, 0x9c, 0x95, 0x8a, 0x8f, 0xa1, 0xaa, 0xa7,\n    0x9f, 0x95, 0x91, 0x94, 0x92, 0x87, 0x81, 0x83, 0x7f, 0x73, 0x6e, 0x70, 0x6b, 0x5d, 0x59, 0x5f,\n    0x5f, 0x6e, 0x82, 0x96, 0xa6, 0xa3, 0x82, 0x5f, 0x2d, 0x2e, 0x2f, 0x2e, 0x27, 0x20, 0x20, 0x24,\n    0xb0, 0xa7, 0xa3, 0xa4, 0xa0, 0x99, 0x9b, 0xa5, 0x9f, 0x9d, 0x9c, 0x9e, 0x9f, 0x9b, 0x91, 0x89,\n    0x92, 0x90, 0x91, 0x94, 0x94, 0x8b, 0x81, 0x7a, 0x87, 0x90, 0x92, 0x89, 0x85, 0x8e, 0x9b, 0xa0,\n    0x9c, 0x85, 0x79, 0x84, 0x94, 0x99, 0x97, 0x97, 0x92, 0x95, 0x98, 0x99, 0x9a, 0x9a, 0x9d, 0x9f,\n    0xa5, 0xa6, 0xac, 0xb1, 0xaa, 0x99, 0x8c, 0x88, 0x8d, 0x93, 0x9c, 0xa4, 0xab, 0xae, 0xae, 0xac,\n    0xa3, 0x9e, 0x9d, 0xa2, 0xa8, 0xaa, 0xaa, 0xab, 0xa3, 0x96, 0x86, 0x81, 0x8b, 0x96, 0x94, 0x8a,\n    0x7f, 0x75, 0x72, 0x7b, 0x7f, 0x79, 0x74, 0x75, 0x7e, 0x7a, 0x76, 0x73, 0x6f, 0x6d, 0x72, 0x79,\n    0x8b, 0x90, 0x8d, 0x7f, 0x70, 0x6a, 0x6a, 0x6a, 0x6c, 0x78, 0x89, 0x92, 0x90, 0x8b, 0x8c, 0x91,\n    0x8c, 0x8f, 0x8b, 0x7f, 0x72, 0x6d, 0x70, 0x73, 0x84, 0x8d, 0x94, 0x92, 0x8f, 0x8c, 0x82, 0x78,\n    0x6e, 0x72, 0x79, 0x7b, 0x7b, 0x81, 0x80, 0x76, 0x6f, 0x73, 0x6f, 0x72, 0x72, 0x71, 0x79, 0x78,\n    0x76, 0x7e, 0x7b, 0x7a, 0x84, 0x85, 0x82, 0x89, 0x81, 0x8b, 0x93, 0x90, 0x83, 0x75, 0x6c, 0x69,\n    0x79, 0x78, 0x76, 0x77, 0x79, 0x7a, 0x77, 0x73, 0x6e, 0x70, 0x77, 0x7c, 0x77, 0x6e, 0x71, 0x7b,\n    0x77, 0x79, 0x7a, 0x78, 0x77, 0x76, 0x72, 0x6d, 0x75, 0x76, 0x7b, 0x82, 0x86, 0x87, 0x8c, 0x92,\n    0x93, 0x96, 0x9b, 0x9f, 0xa4, 0xa9, 0xae, 0xb1, 0xb4, 0xb5, 0xb7, 0xb9, 0xbb, 0xbe, 0xc1, 0xc3,\n    0xc2, 0xc4, 0xc6, 0xc6, 0xc6, 0xc6, 0xc9, 0xcb, 0xcc, 0xcc, 0xcc, 0xcb, 0xcb, 0xca, 0xc9, 0xc9,\n    0xc7, 0xc7, 0xc7, 0xc6, 0xc4, 0xc2, 0xc0, 0xbf, 0xbc, 0xb9, 0xb6, 0xb3, 0xb3, 0xb3, 0xb3, 0xb2,\n    0xad, 0xab, 0xa9, 0xa8, 0xa7, 0xa5, 0xa3, 0xa1, 0x9c, 0x99, 0x93, 0x90, 0x95, 0x9d, 0x9f, 0x9c,\n    0x8d, 0x8e, 0x93, 0x9b, 0xa2, 0xa7, 0xaf, 0xb7, 0xbf, 0xc2, 0xc4, 0xc3, 0xc3, 0xc5, 0xc6, 0xc5,\n    0xc7, 0xca, 0xcd, 0xcd, 0xc9, 0xc6, 0xc5, 0xc5, 0xc3, 0xc3, 0xc4, 0xc6, 0xc8, 0xca, 0xcc, 0xcd,\n    0xd2, 0xd0, 0xd0, 0xd3, 0xd7, 0xd9, 0xd8, 0xd5, 0xd7, 0xd4, 0xd2, 0xd2, 0xd3, 0xd1, 0xcd, 0xc9,\n    0xd1, 0xd1, 0xcf, 0xcc, 0xca, 0xcd, 0xd5, 0xdc, 0xdb, 0xdc, 0xde, 0xdf, 0xdf, 0xdd, 0xdb, 0xd9,\n    0xdc, 0xd9, 0xd8, 0xda, 0xd8, 0xd3, 0xd1, 0xd2, 0xd8, 0xda, 0xdd, 0xdf, 0xdf, 0xdd, 0xda, 0xd8,\n    0xd8, 0xda, 0xdd, 0xe0, 0xe0, 0xde, 0xdb, 0xd8, 0xd3, 0xce, 0xa1, 0x77, 0x77, 0x80, 0xa1, 0xd9,\n    0xdb, 0xde, 0xc9, 0xcb, 0xbd, 0x94, 0x7e, 0x79, 0x85, 0xca, 0xdf, 0xda, 0xd4, 0xd2, 0xd9, 0xcf,\n    0xd0, 0xd1, 0xca, 0xce, 0xd6, 0xe2, 0xcc, 0x84, 0x83, 0x85, 0xc8, 0xde, 0xcb, 0xd6, 0xd4, 0xcb,\n    0xc1, 0xb0, 0xaa, 0xb3, 0xde, 0xcc, 0xd1, 0xd0, 0xcc, 0xd0, 0xd5, 0xd7, 0xd5, 0xd2, 0xcd, 0xca,\n    0xcd, 0xc6, 0xd1, 0xbf, 0xa2, 0x7c, 0x77, 0x6d, 0x69, 0x6e, 0x70, 0x68, 0x96, 0xbc, 0xc6, 0xc3,\n    0xbc, 0x90, 0x60, 0x90, 0xb2, 0xbc, 0xbc, 0xa8, 0x72, 0x85, 0xa8, 0xa0, 0x86, 0x71, 0x75, 0x68,\n    0x67, 0x6d, 0x65, 0x5c, 0x60, 0x5e, 0x5b, 0x61, 0x72, 0x6e, 0x72, 0x7b, 0x7c, 0x71, 0x64, 0x5d,\n    0x5e, 0x5c, 0x5d, 0x63, 0x6a, 0x6c, 0x67, 0x61, 0x5d, 0x68, 0x73, 0x73, 0x69, 0x5e, 0x58, 0x56,\n    0x62, 0x6b, 0x72, 0x80, 0x85, 0x7f, 0x80, 0x7a, 0x7a, 0x69, 0x68, 0x74, 0x7a, 0x7a, 0x7a, 0x79,\n    0x71, 0x77, 0x78, 0x7e, 0x71, 0x77, 0x6c, 0x62, 0x4d, 0x5f, 0x6a, 0x62, 0x57, 0x53, 0x51, 0x4d,\n    0x4c, 0x44, 0x3e, 0x3f, 0x3c, 0x37, 0x37, 0x3b, 0x4b, 0x4b, 0x41, 0x2f, 0x22, 0x20, 0x1c, 0x16,\n    0x11, 0x18, 0x1d, 0x1f, 0x22, 0x2d, 0x39, 0x42, 0x45, 0x3c, 0x31, 0x2b, 0x31, 0x3d, 0x46, 0x49,\n    0x4e, 0x4d, 0x4e, 0x4b, 0x45, 0x40, 0x43, 0x4a, 0x4a, 0x4b, 0x42, 0x36, 0x32, 0x33, 0x3d, 0x4c,\n    0x51, 0x55, 0x50, 0x4e, 0x56, 0x59, 0x50, 0x47, 0x45, 0x4f, 0x5d, 0x69, 0x72, 0x7a, 0x82, 0x87,\n    0x76, 0x68, 0x5f, 0x50, 0x42, 0x54, 0x6e, 0x70, 0x67, 0x60, 0x55, 0x4e, 0x51, 0x59, 0x5d, 0x5c,\n    0x5a, 0x68, 0x75, 0x79, 0x7a, 0x82, 0x8f, 0x99, 0x96, 0x8e, 0x7e, 0x74, 0x7a, 0x8f, 0xa2, 0xab,\n    0xa9, 0x97, 0x83, 0x7b, 0x7c, 0x80, 0x86, 0x8b, 0x96, 0x8b, 0x85, 0x86, 0x81, 0x71, 0x64, 0x61,\n    0x7a, 0x78, 0x77, 0x78, 0x73, 0x6f, 0x72, 0x7a, 0x75, 0x7e, 0x85, 0x80, 0x72, 0x67, 0x65, 0x68,\n    0x6b, 0x67, 0x64, 0x6f, 0x8d, 0xa5, 0x9d, 0x85, 0x61, 0x35, 0x1f, 0x26, 0x35, 0x4d, 0x5d, 0x58,\n    0xa9, 0xa8, 0xaa, 0xab, 0xa5, 0x9c, 0x9b, 0xa0, 0x9e, 0x9e, 0x9c, 0x96, 0x8f, 0x89, 0x85, 0x84,\n    0x84, 0x87, 0x8a, 0x88, 0x82, 0x7d, 0x81, 0x89, 0x89, 0x8a, 0x88, 0x81, 0x80, 0x83, 0x83, 0x81,\n    0x81, 0x89, 0x99, 0xad, 0xba, 0xbc, 0xb5, 0xaf, 0xa9, 0xa1, 0x97, 0x92, 0x95, 0x9d, 0xa4, 0xa8,\n    0xa7, 0xad, 0xb0, 0xaa, 0xa0, 0x99, 0x98, 0x99, 0xa5, 0x92, 0x8a, 0x98, 0xa6, 0xa4, 0xa0, 0xa1,\n    0xa4, 0xa6, 0xac, 0xb4, 0xb8, 0xb4, 0xa9, 0xa0, 0x9d, 0x90, 0x7f, 0x77, 0x7d, 0x84, 0x82, 0x7b,\n    0x73, 0x6e, 0x6e, 0x74, 0x74, 0x6e, 0x6d, 0x73, 0x84, 0x7c, 0x76, 0x77, 0x7a, 0x7b, 0x7b, 0x7d,\n    0x7f, 0x83, 0x81, 0x78, 0x72, 0x75, 0x7c, 0x7e, 0x84, 0x88, 0x8a, 0x88, 0x86, 0x8a, 0x93, 0x9a,\n    0xa4, 0xa3, 0xa1, 0x9c, 0x8d, 0x7b, 0x72, 0x72, 0x7c, 0x87, 0x8b, 0x84, 0x7a, 0x78, 0x79, 0x79,\n    0x7d, 0x74, 0x71, 0x73, 0x73, 0x76, 0x76, 0x70, 0x76, 0x74, 0x68, 0x64, 0x61, 0x62, 0x6f, 0x73,\n    0x81, 0x82, 0x78, 0x72, 0x78, 0x79, 0x77, 0x7e, 0x7c, 0x7d, 0x80, 0x80, 0x7c, 0x75, 0x6c, 0x66,\n    0x75, 0x79, 0x7a, 0x79, 0x7c, 0x82, 0x83, 0x81, 0x7d, 0x79, 0x72, 0x6c, 0x6a, 0x6d, 0x72, 0x76,\n    0x82, 0x82, 0x80, 0x7b, 0x77, 0x75, 0x74, 0x74, 0x70, 0x73, 0x78, 0x7e, 0x83, 0x88, 0x8e, 0x94,\n    0x95, 0x98, 0x9c, 0xa0, 0xa4, 0xa8, 0xac, 0xaf, 0xb2, 0xb4, 0xb6, 0xb9, 0xba, 0xbd, 0xbf, 0xc1,\n    0xc2, 0xc3, 0xc5, 0xc6, 0xc6, 0xc7, 0xc9, 0xcb, 0xcb, 0xcb, 0xcb, 0xcb, 0xca, 0xc9, 0xc8, 0xc8,\n    0xc8, 0xc8, 0xc7, 0xc6, 0xc4, 0xc2, 0xc1, 0xc0, 0xbe, 0xbc, 0xb9, 0xb7, 0xb6, 0xb6, 0xb5, 0xb4,\n    0xb0, 0xae, 0xac, 0xaa, 0xa9, 0xa8, 0xa6, 0xa4, 0xa3, 0x9f, 0x98, 0x95, 0x97, 0x9a, 0x96, 0x8f,\n    0x8f, 0x90, 0x96, 0x9e, 0xa5, 0xab, 0xb3, 0xbb, 0xc4, 0xc8, 0xcb, 0xca, 0xc9, 0xc9, 0xc8, 0xc6,\n    0xcb, 0xca, 0xca, 0xcb, 0xcb, 0xcb, 0xc9, 0xc7, 0xc8, 0xc9, 0xcb, 0xcc, 0xcd, 0xcd, 0xcd, 0xcc,\n    0xcf, 0xcf, 0xd0, 0xd3, 0xd6, 0xd8, 0xd8, 0xd7, 0xd5, 0xd2, 0xce, 0xcd, 0xce, 0xcf, 0xcf, 0xcf,\n    0xcc, 0xcc, 0xcb, 0xc9, 0xc7, 0xc8, 0xcc, 0xcf, 0xcf, 0xd0, 0xd2, 0xd3, 0xd5, 0xd5, 0xd5, 0xd5,\n    0xd7, 0xd5, 0xd5, 0xd7, 0xd6, 0xd2, 0xd1, 0xd3, 0xd4, 0xd6, 0xda, 0xdc, 0xdd, 0xdb, 0xd9, 0xd7,\n    0xd6, 0xd8, 0xdb, 0xde, 0xdf, 0xdf, 0xdd, 0xdc, 0xdc, 0xd3, 0xa8, 0x7f, 0x75, 0x75, 0x89, 0xb0,\n    0xc0, 0xc2, 0xac, 0x9b, 0x8e, 0x7b, 0x78, 0x80, 0x8a, 0xca, 0xda, 0xd7, 0xd7, 0xd4, 0xd9, 0xd1,\n    0xcd, 0xcc, 0xcb, 0xd3, 0xd7, 0xdd, 0xc6, 0x80, 0x84, 0x82, 0xba, 0xd0, 0xc7, 0xce, 0xb6, 0x93,\n    0x82, 0x80, 0x83, 0x97, 0xd1, 0xcc, 0xd2, 0xd0, 0xdf, 0xd5, 0xcd, 0xcf, 0xd0, 0xcd, 0xcb, 0xcc,\n    0xc8, 0xca, 0xcd, 0xa6, 0x7e, 0x64, 0x6e, 0x6c, 0x71, 0x6a, 0x6a, 0x6f, 0xa2, 0xc4, 0xc9, 0xc7,\n    0xbc, 0x8f, 0x65, 0x97, 0xbf, 0xbe, 0xb9, 0xa2, 0x67, 0x89, 0xaf, 0xa9, 0x90, 0x68, 0x65, 0x6f,\n    0x6d, 0x6f, 0x67, 0x5c, 0x5a, 0x5e, 0x67, 0x71, 0x6d, 0x6a, 0x6c, 0x75, 0x76, 0x6d, 0x62, 0x5c,\n    0x5b, 0x5b, 0x5c, 0x5f, 0x64, 0x66, 0x62, 0x5c, 0x5c, 0x64, 0x6c, 0x6e, 0x65, 0x59, 0x55, 0x57,\n    0x5d, 0x66, 0x6a, 0x74, 0x76, 0x74, 0x7b, 0x7a, 0x73, 0x70, 0x76, 0x7f, 0x82, 0x82, 0x7f, 0x78,\n    0x7c, 0x72, 0x6e, 0x6c, 0x70, 0x71, 0x68, 0x54, 0x51, 0x65, 0x6b, 0x59, 0x4d, 0x52, 0x53, 0x4b,\n    0x54, 0x4b, 0x43, 0x40, 0x3c, 0x37, 0x37, 0x3c, 0x4a, 0x48, 0x3c, 0x2a, 0x1f, 0x1e, 0x1c, 0x16,\n    0x15, 0x18, 0x1b, 0x1d, 0x24, 0x30, 0x39, 0x3d, 0x46, 0x39, 0x29, 0x21, 0x22, 0x29, 0x32, 0x37,\n    0x38, 0x3d, 0x40, 0x3e, 0x38, 0x36, 0x36, 0x37, 0x48, 0x53, 0x4e, 0x3a, 0x29, 0x26, 0x35, 0x48,\n    0x70, 0x81, 0x7e, 0x66, 0x58, 0x58, 0x5b, 0x5f, 0x4f, 0x5d, 0x66, 0x66, 0x68, 0x67, 0x58, 0x44,\n    0x35, 0x3a, 0x32, 0x2b, 0x3e, 0x5c, 0x68, 0x64, 0x64, 0x6e, 0x7d, 0x87, 0x86, 0x7b, 0x6d, 0x65,\n    0x54, 0x4a, 0x49, 0x5b, 0x73, 0x80, 0x82, 0x81, 0x8d, 0x91, 0x9b, 0xa7, 0xaa, 0xa3, 0x99, 0x92,\n    0x82, 0x8c, 0x90, 0x8f, 0x9a, 0xaa, 0xa8, 0x9a, 0x88, 0x72, 0x62, 0x68, 0x72, 0x70, 0x65, 0x5e,\n    0x50, 0x4d, 0x4a, 0x48, 0x48, 0x4d, 0x57, 0x61, 0x62, 0x62, 0x63, 0x66, 0x6b, 0x70, 0x75, 0x78,\n    0x7f, 0x83, 0x87, 0x89, 0x8c, 0x93, 0x9a, 0xa0, 0x94, 0x74, 0x5b, 0x55, 0x5b, 0x69, 0x6b, 0x5c,\n    0xa5, 0xa9, 0xac, 0xaa, 0xa7, 0xa6, 0xa8, 0xac, 0xa5, 0xa5, 0xa4, 0xa0, 0x9b, 0x94, 0x8f, 0x8d,\n    0x97, 0x91, 0x8b, 0x86, 0x83, 0x81, 0x83, 0x87, 0x8a, 0x8b, 0x8b, 0x8b, 0x8b, 0x88, 0x86, 0x83,\n    0x89, 0x89, 0x89, 0x8e, 0x9b, 0xa9, 0xaa, 0xa5, 0x90, 0x99, 0xa3, 0xa6, 0xa1, 0x9d, 0x9b, 0x9d,\n    0xac, 0xbc, 0xc8, 0xc6, 0xbf, 0xba, 0xb3, 0xab, 0x96, 0x87, 0x81, 0x8b, 0x94, 0x95, 0x99, 0xa1,\n    0xa8, 0xa9, 0xa7, 0xa6, 0xa8, 0xa9, 0xa1, 0x97, 0x7e, 0x7f, 0x81, 0x85, 0x88, 0x83, 0x76, 0x69,\n    0x6c, 0x6d, 0x71, 0x73, 0x6c, 0x64, 0x68, 0x73, 0x82, 0x7b, 0x75, 0x76, 0x79, 0x7b, 0x7b, 0x7c,\n    0x89, 0x8e, 0x8f, 0x8b, 0x89, 0x8b, 0x8a, 0x87, 0x97, 0x93, 0x87, 0x79, 0x75, 0x7d, 0x87, 0x8c,\n    0x8b, 0x86, 0x87, 0x8d, 0x89, 0x7c, 0x76, 0x7a, 0x6d, 0x6e, 0x6d, 0x6d, 0x73, 0x7e, 0x83, 0x83,\n    0x61, 0x58, 0x5f, 0x72, 0x78, 0x74, 0x6e, 0x69, 0x67, 0x69, 0x61, 0x61, 0x60, 0x60, 0x6c, 0x6e,\n    0x78, 0x7a, 0x78, 0x7a, 0x81, 0x80, 0x7a, 0x7a, 0x85, 0x8b, 0x8f, 0x8b, 0x80, 0x78, 0x76, 0x77,\n    0x73, 0x7a, 0x7e, 0x7e, 0x7f, 0x83, 0x83, 0x80, 0x78, 0x79, 0x76, 0x74, 0x7e, 0x8c, 0x90, 0x8a,\n    0x79, 0x7c, 0x7e, 0x7c, 0x78, 0x73, 0x72, 0x72, 0x6e, 0x72, 0x76, 0x7a, 0x80, 0x8a, 0x91, 0x95,\n    0x97, 0x9a, 0x9d, 0xa1, 0xa4, 0xa7, 0xab, 0xad, 0xaf, 0xb2, 0xb5, 0xb8, 0xba, 0xbb, 0xbd, 0xbe,\n    0xc1, 0xc2, 0xc4, 0xc5, 0xc6, 0xc8, 0xca, 0xcb, 0xca, 0xca, 0xca, 0xca, 0xc9, 0xc9, 0xc8, 0xc7,\n    0xc9, 0xc8, 0xc6, 0xc5, 0xc3, 0xc2, 0xc2, 0xc1, 0xbf, 0xbd, 0xbb, 0xb9, 0xb8, 0xb7, 0xb6, 0xb5,\n    0xb1, 0xb0, 0xad, 0xac, 0xab, 0xa9, 0xa7, 0xa5, 0xa6, 0xa2, 0x9d, 0x99, 0x99, 0x97, 0x8e, 0x84,\n    0x91, 0x94, 0x9b, 0xa3, 0xaa, 0xb0, 0xb9, 0xc0, 0xc6, 0xcb, 0xcf, 0xcf, 0xce, 0xce, 0xcc, 0xc9,\n    0xcb, 0xc8, 0xc5, 0xc7, 0xcd, 0xd0, 0xcf, 0xcc, 0xca, 0xcc, 0xcd, 0xcf, 0xcf, 0xce, 0xcc, 0xcb,\n    0xcd, 0xce, 0xd0, 0xd3, 0xd6, 0xd8, 0xd9, 0xda, 0xda, 0xd7, 0xd3, 0xd0, 0xd0, 0xd2, 0xd5, 0xd7,\n    0xd2, 0xd2, 0xd2, 0xd0, 0xcf, 0xcd, 0xcc, 0xcc, 0xcb, 0xcc, 0xcc, 0xce, 0xd1, 0xd4, 0xd7, 0xd9,\n    0xd0, 0xce, 0xcf, 0xd1, 0xd2, 0xd1, 0xd2, 0xd4, 0xd4, 0xd5, 0xd7, 0xd9, 0xd9, 0xd7, 0xd5, 0xd3,\n    0xd3, 0xd5, 0xd8, 0xdb, 0xdd, 0xde, 0xdf, 0xdf, 0xd3, 0xde, 0xc1, 0x8d, 0x7a, 0x81, 0x7b, 0x6c,\n    0x79, 0x7f, 0x7f, 0x74, 0x7a, 0x79, 0x70, 0x76, 0x92, 0xcd, 0xd6, 0xd5, 0xdd, 0xd7, 0xd8, 0xd6,\n    0xda, 0xbf, 0xbc, 0xd6, 0xe0, 0xdb, 0xbb, 0x7c, 0x80, 0x6f, 0xa9, 0xd5, 0xba, 0x8e, 0x77, 0x80,\n    0x7c, 0x7a, 0x74, 0x87, 0xca, 0xd0, 0xd2, 0xce, 0xcc, 0xce, 0xd2, 0xd5, 0xd5, 0xd3, 0xce, 0xca,\n    0xc2, 0xc4, 0xb6, 0x84, 0x65, 0x61, 0x6c, 0x62, 0x6c, 0x66, 0x73, 0x83, 0xae, 0xc0, 0xc2, 0xc4,\n    0xc2, 0x94, 0x6d, 0x98, 0xc7, 0xbd, 0xb7, 0x9b, 0x5d, 0x91, 0xb7, 0xab, 0x96, 0x6b, 0x63, 0x74,\n    0x71, 0x70, 0x6e, 0x64, 0x59, 0x5d, 0x6b, 0x72, 0x69, 0x68, 0x6c, 0x75, 0x77, 0x6e, 0x64, 0x5f,\n    0x5e, 0x60, 0x60, 0x60, 0x62, 0x65, 0x62, 0x5c, 0x59, 0x5d, 0x67, 0x6d, 0x66, 0x58, 0x55, 0x5a,\n    0x5f, 0x66, 0x65, 0x69, 0x69, 0x69, 0x77, 0x7a, 0x75, 0x77, 0x7d, 0x7f, 0x7c, 0x7e, 0x7b, 0x6f,\n    0x6f, 0x67, 0x6d, 0x65, 0x6c, 0x63, 0x65, 0x56, 0x5c, 0x5c, 0x5e, 0x5b, 0x51, 0x48, 0x4c, 0x56,\n    0x62, 0x57, 0x4c, 0x45, 0x3e, 0x39, 0x3a, 0x3f, 0x4d, 0x46, 0x37, 0x26, 0x1e, 0x1e, 0x1c, 0x18,\n    0x17, 0x17, 0x19, 0x1f, 0x2c, 0x3a, 0x41, 0x42, 0x3e, 0x34, 0x2c, 0x2e, 0x35, 0x3d, 0x46, 0x4e,\n    0x57, 0x5b, 0x5d, 0x59, 0x55, 0x50, 0x4b, 0x46, 0x4f, 0x64, 0x69, 0x52, 0x34, 0x24, 0x2f, 0x46,\n    0x72, 0x8b, 0x8c, 0x72, 0x62, 0x67, 0x73, 0x7d, 0x76, 0x6d, 0x5a, 0x45, 0x3a, 0x38, 0x32, 0x29,\n    0x48, 0x58, 0x56, 0x59, 0x76, 0x84, 0x7d, 0x7d, 0x80, 0x85, 0x7d, 0x69, 0x63, 0x6f, 0x7d, 0x81,\n    0x60, 0x53, 0x4d, 0x56, 0x62, 0x6c, 0x7d, 0x8d, 0x7f, 0x78, 0x71, 0x75, 0x82, 0x8b, 0x88, 0x80,\n    0x76, 0x78, 0x7e, 0x8a, 0x95, 0x94, 0x88, 0x7d, 0x6f, 0x7c, 0x87, 0x7d, 0x56, 0x29, 0x12, 0x10,\n    0x31, 0x3a, 0x4c, 0x66, 0x7e, 0x86, 0x7c, 0x6d, 0x6f, 0x6c, 0x6a, 0x6d, 0x75, 0x7b, 0x7d, 0x7c,\n    0x7c, 0x7e, 0x8a, 0x98, 0x99, 0x92, 0x92, 0x99, 0x8f, 0x87, 0x78, 0x6a, 0x68, 0x6d, 0x6b, 0x61,\n    0xaf, 0xaf, 0xa9, 0x9f, 0x9c, 0xa2, 0xa9, 0xab, 0xaa, 0xa2, 0x9a, 0x99, 0x9b, 0x9b, 0x94, 0x8d,\n    0x8c, 0x86, 0x83, 0x84, 0x87, 0x88, 0x89, 0x8b, 0x8c, 0x90, 0x95, 0x95, 0x8e, 0x86, 0x87, 0x8d,\n    0x95, 0x8f, 0x88, 0x87, 0x8e, 0x97, 0x98, 0x94, 0x97, 0x9c, 0xa1, 0x9f, 0x99, 0x92, 0x90, 0x90,\n    0x95, 0x9a, 0x9d, 0x9d, 0x9e, 0xa0, 0x9d, 0x97, 0x91, 0x95, 0x96, 0x92, 0x8f, 0x92, 0x96, 0x97,\n    0xa6, 0xad, 0xb1, 0xb0, 0xb1, 0xae, 0xa0, 0x8e, 0x84, 0x86, 0x8a, 0x90, 0x94, 0x95, 0x91, 0x8d,\n    0x82, 0x80, 0x7a, 0x6f, 0x5e, 0x56, 0x61, 0x73, 0x76, 0x73, 0x6e, 0x6a, 0x68, 0x69, 0x6e, 0x73,\n    0x74, 0x7c, 0x84, 0x89, 0x90, 0x97, 0x98, 0x94, 0x81, 0x80, 0x78, 0x71, 0x74, 0x81, 0x8a, 0x8b,\n    0x89, 0x83, 0x81, 0x84, 0x83, 0x7c, 0x76, 0x75, 0x72, 0x6d, 0x69, 0x6a, 0x76, 0x83, 0x87, 0x85,\n    0x7a, 0x6a, 0x6a, 0x75, 0x71, 0x65, 0x64, 0x69, 0x71, 0x75, 0x6f, 0x6d, 0x66, 0x5d, 0x61, 0x5e,\n    0x64, 0x67, 0x6e, 0x7a, 0x84, 0x83, 0x7c, 0x78, 0x82, 0x89, 0x8f, 0x8b, 0x81, 0x79, 0x78, 0x7a,\n    0x77, 0x79, 0x7f, 0x86, 0x85, 0x7d, 0x76, 0x73, 0x6b, 0x6f, 0x70, 0x71, 0x78, 0x81, 0x81, 0x7b,\n    0x85, 0x82, 0x81, 0x82, 0x7f, 0x7a, 0x78, 0x79, 0x8d, 0x8e, 0x8c, 0x87, 0x87, 0x8c, 0x8f, 0x8e,\n    0x97, 0x9a, 0x9d, 0xa1, 0xa4, 0xa7, 0xaa, 0xad, 0xae, 0xb1, 0xb5, 0xb8, 0xb9, 0xba, 0xbc, 0xbd,\n    0xc0, 0xc1, 0xc3, 0xc5, 0xc6, 0xc8, 0xc9, 0xca, 0xc9, 0xc9, 0xc9, 0xc9, 0xc9, 0xc8, 0xc8, 0xc7,\n    0xc9, 0xc8, 0xc6, 0xc4, 0xc3, 0xc2, 0xc2, 0xc2, 0xbe, 0xbd, 0xbb, 0xb9, 0xb8, 0xb7, 0xb5, 0xb3,\n    0xb1, 0xaf, 0xad, 0xab, 0xaa, 0xa9, 0xa6, 0xa5, 0xa4, 0xa2, 0x9f, 0x9b, 0x97, 0x91, 0x8a, 0x84,\n    0x94, 0x99, 0xa0, 0xa8, 0xad, 0xb4, 0xbc, 0xc3, 0xc3, 0xc8, 0xcd, 0xce, 0xce, 0xcf, 0xcf, 0xcd,\n    0xc9, 0xc6, 0xc3, 0xc6, 0xcd, 0xd3, 0xd4, 0xd4, 0xcc, 0xcd, 0xce, 0xcf, 0xce, 0xce, 0xcd, 0xcc,\n    0xcc, 0xce, 0xd1, 0xd3, 0xd5, 0xd7, 0xda, 0xdb, 0xdd, 0xdc, 0xd9, 0xd6, 0xd3, 0xd2, 0xd4, 0xd5,\n    0xd2, 0xd0, 0xcf, 0xcf, 0xce, 0xcc, 0xc9, 0xc6, 0xc3, 0xc2, 0xc0, 0xc0, 0xc3, 0xc6, 0xca, 0xcd,\n    0xc8, 0xc9, 0xca, 0xcd, 0xd0, 0xd2, 0xd4, 0xd6, 0xd7, 0xd7, 0xd7, 0xd7, 0xd5, 0xd3, 0xd0, 0xcf,\n    0xd1, 0xd2, 0xd4, 0xd7, 0xd9, 0xdc, 0xdd, 0xde, 0xd8, 0xd5, 0xcc, 0xb2, 0x88, 0x6b, 0x6f, 0x80,\n    0x7a, 0x73, 0x78, 0x73, 0x89, 0x89, 0x71, 0x6f, 0x9b, 0xd1, 0xd6, 0xd8, 0xe2, 0xd8, 0xd7, 0xd7,\n    0xb9, 0x89, 0x81, 0xa2, 0xad, 0xa5, 0x95, 0x7a, 0x78, 0x7f, 0xa0, 0x9d, 0x7e, 0x75, 0x79, 0x81,\n    0x86, 0x82, 0x77, 0x8e, 0xd0, 0xd5, 0xd0, 0xcb, 0xcb, 0xd9, 0xde, 0xd2, 0xc8, 0xcb, 0xcf, 0xcd,\n    0xc9, 0xc6, 0xa9, 0x77, 0x62, 0x6c, 0x73, 0x66, 0x68, 0x78, 0x9f, 0xae, 0xc1, 0xc0, 0xc2, 0xc9,\n    0xc9, 0x9f, 0x73, 0x8d, 0xc2, 0xbb, 0xb7, 0x96, 0x5f, 0x95, 0xbc, 0xab, 0x98, 0x7d, 0x77, 0x76,\n    0x6e, 0x6d, 0x72, 0x6b, 0x5a, 0x59, 0x61, 0x5f, 0x66, 0x68, 0x6f, 0x78, 0x79, 0x70, 0x66, 0x60,\n    0x59, 0x5c, 0x5c, 0x5a, 0x5b, 0x5e, 0x5c, 0x57, 0x57, 0x59, 0x65, 0x6f, 0x6a, 0x5b, 0x58, 0x5f,\n    0x66, 0x6c, 0x67, 0x68, 0x67, 0x69, 0x77, 0x79, 0x78, 0x73, 0x73, 0x73, 0x73, 0x78, 0x76, 0x6b,\n    0x61, 0x61, 0x6c, 0x6a, 0x67, 0x5d, 0x5e, 0x57, 0x61, 0x5a, 0x5a, 0x5e, 0x56, 0x4b, 0x52, 0x64,\n    0x6e, 0x63, 0x56, 0x4a, 0x41, 0x3d, 0x40, 0x46, 0x52, 0x46, 0x35, 0x26, 0x20, 0x1f, 0x1e, 0x1c,\n    0x1b, 0x1d, 0x22, 0x2a, 0x38, 0x44, 0x49, 0x47, 0x49, 0x3d, 0x34, 0x35, 0x3b, 0x42, 0x4c, 0x57,\n    0x5f, 0x5d, 0x5f, 0x66, 0x69, 0x63, 0x5c, 0x58, 0x55, 0x6b, 0x79, 0x70, 0x51, 0x34, 0x34, 0x4a,\n    0x73, 0x85, 0x87, 0x79, 0x73, 0x76, 0x79, 0x7d, 0x70, 0x57, 0x3c, 0x2f, 0x2a, 0x2e, 0x3e, 0x52,\n    0x6b, 0x6e, 0x6e, 0x73, 0x75, 0x6a, 0x6a, 0x7c, 0x8a, 0x90, 0x91, 0x8b, 0x86, 0x89, 0x8f, 0x92,\n    0x98, 0x84, 0x6e, 0x62, 0x5e, 0x5c, 0x5d, 0x61, 0x7d, 0x81, 0x7e, 0x76, 0x77, 0x78, 0x6a, 0x55,\n    0x54, 0x59, 0x60, 0x61, 0x56, 0x4c, 0x52, 0x60, 0x71, 0x54, 0x34, 0x23, 0x1f, 0x23, 0x2b, 0x33,\n    0x39, 0x56, 0x73, 0x7d, 0x79, 0x74, 0x71, 0x70, 0x66, 0x66, 0x66, 0x68, 0x6d, 0x73, 0x79, 0x7d,\n    0x7c, 0x74, 0x75, 0x83, 0x8b, 0x84, 0x7c, 0x7a, 0x7e, 0x89, 0x88, 0x7c, 0x75, 0x75, 0x79, 0x80,\n    0x9b, 0x9c, 0x98, 0x92, 0x96, 0xa1, 0xa7, 0xa6, 0x9f, 0x94, 0x88, 0x82, 0x84, 0x87, 0x85, 0x82,\n    0x82, 0x85, 0x8a, 0x8a, 0x85, 0x83, 0x89, 0x91, 0x90, 0x90, 0x90, 0x8b, 0x80, 0x77, 0x77, 0x7b,\n    0x77, 0x7c, 0x84, 0x89, 0x88, 0x87, 0x8d, 0x95, 0xa8, 0xa4, 0xa5, 0xad, 0xb3, 0xa8, 0x8e, 0x78,\n    0x65, 0x6b, 0x78, 0x85, 0x86, 0x7a, 0x6c, 0x65, 0x77, 0x80, 0x88, 0x8d, 0x96, 0xa1, 0xa7, 0xa6,\n    0xa1, 0xa6, 0xa7, 0xa3, 0xa2, 0xa2, 0x98, 0x8a, 0x7f, 0x7d, 0x7c, 0x7e, 0x83, 0x89, 0x8e, 0x92,\n    0x92, 0x92, 0x90, 0x84, 0x6f, 0x5e, 0x5d, 0x64, 0x6e, 0x6a, 0x63, 0x5d, 0x5c, 0x60, 0x66, 0x69,\n    0x7a, 0x7e, 0x7f, 0x7c, 0x7c, 0x7f, 0x7d, 0x77, 0x73, 0x75, 0x75, 0x75, 0x7c, 0x86, 0x89, 0x87,\n    0x81, 0x83, 0x84, 0x85, 0x8a, 0x90, 0x8e, 0x88, 0x87, 0x86, 0x80, 0x75, 0x6d, 0x70, 0x78, 0x7f,\n    0x7b, 0x70, 0x75, 0x7e, 0x73, 0x66, 0x6b, 0x78, 0x7f, 0x82, 0x7a, 0x75, 0x6b, 0x61, 0x65, 0x63,\n    0x5f, 0x5b, 0x5f, 0x69, 0x70, 0x72, 0x70, 0x6d, 0x75, 0x73, 0x74, 0x7b, 0x82, 0x81, 0x79, 0x70,\n    0x6d, 0x67, 0x6d, 0x7b, 0x7b, 0x6d, 0x64, 0x66, 0x81, 0x80, 0x7d, 0x7a, 0x78, 0x7b, 0x84, 0x8d,\n    0x99, 0x8c, 0x82, 0x81, 0x80, 0x7b, 0x78, 0x7a, 0x89, 0x89, 0x88, 0x86, 0x88, 0x8d, 0x90, 0x90,\n    0x96, 0x98, 0x9c, 0xa0, 0xa3, 0xa7, 0xab, 0xad, 0xaf, 0xb1, 0xb5, 0xb8, 0xb9, 0xba, 0xbb, 0xbc,\n    0xbf, 0xc0, 0xc1, 0xc4, 0xc6, 0xc8, 0xc8, 0xc8, 0xc8, 0xc8, 0xc9, 0xc9, 0xc9, 0xc8, 0xc8, 0xc8,\n    0xc8, 0xc7, 0xc5, 0xc3, 0xc2, 0xc2, 0xc2, 0xc2, 0xbe, 0xbc, 0xba, 0xb9, 0xb7, 0xb6, 0xb3, 0xb2,\n    0xb0, 0xaf, 0xac, 0xab, 0xaa, 0xa8, 0xa6, 0xa4, 0xa1, 0xa1, 0xa0, 0x9a, 0x91, 0x8a, 0x88, 0x8a,\n    0x96, 0x9d, 0xa5, 0xab, 0xb0, 0xb6, 0xbe, 0xc3, 0xc4, 0xc8, 0xcb, 0xcb, 0xcc, 0xcf, 0xd0, 0xcf,\n    0xcb, 0xcb, 0xca, 0xcb, 0xce, 0xd2, 0xd6, 0xd8, 0xd4, 0xd3, 0xd1, 0xd0, 0xce, 0xce, 0xce, 0xce,\n    0xcb, 0xcd, 0xcf, 0xd0, 0xd2, 0xd4, 0xd6, 0xd8, 0xd8, 0xd8, 0xd9, 0xd8, 0xd5, 0xd2, 0xd0, 0xcf,\n    0xd1, 0xcf, 0xcc, 0xcb, 0xcc, 0xcb, 0xc9, 0xc6, 0xc3, 0xc0, 0xbd, 0xbb, 0xbc, 0xbe, 0xc2, 0xc4,\n    0xc7, 0xc9, 0xcc, 0xcf, 0xd3, 0xd7, 0xd9, 0xda, 0xd9, 0xd8, 0xd7, 0xd6, 0xd4, 0xd1, 0xcf, 0xce,\n    0xd0, 0xd1, 0xd2, 0xd3, 0xd5, 0xd7, 0xd9, 0xda, 0xdb, 0xd2, 0xd9, 0xde, 0xbf, 0x91, 0x75, 0x6c,\n    0x75, 0x6b, 0x80, 0x8d, 0xab, 0x98, 0x76, 0x72, 0xa4, 0xd3, 0xd8, 0xda, 0xe0, 0xd5, 0xd3, 0xd0,\n    0xa0, 0x7d, 0x72, 0x77, 0x73, 0x71, 0x75, 0x78, 0x7e, 0x74, 0x7b, 0x7f, 0x7b, 0x7b, 0x7b, 0x7d,\n    0x70, 0x7a, 0x80, 0xa2, 0xd6, 0xd4, 0xcd, 0xce, 0xd9, 0xd1, 0xbd, 0xa1, 0x90, 0x94, 0xa6, 0xb6,\n    0xc5, 0xc8, 0xae, 0x85, 0x70, 0x75, 0x73, 0x69, 0x63, 0x87, 0xbe, 0xc6, 0xc6, 0xbf, 0xc2, 0xc6,\n    0xca, 0xa7, 0x75, 0x83, 0xb9, 0xba, 0xb7, 0x92, 0x65, 0x88, 0xb5, 0xaf, 0x97, 0x80, 0x80, 0x75,\n    0x6f, 0x6b, 0x6e, 0x69, 0x5b, 0x5a, 0x5f, 0x59, 0x6b, 0x6c, 0x6f, 0x72, 0x70, 0x69, 0x62, 0x5e,\n    0x5e, 0x5f, 0x60, 0x61, 0x62, 0x64, 0x62, 0x5f, 0x5d, 0x5c, 0x64, 0x6c, 0x66, 0x59, 0x58, 0x60,\n    0x68, 0x6d, 0x68, 0x6a, 0x6c, 0x6f, 0x79, 0x77, 0x70, 0x65, 0x66, 0x71, 0x78, 0x7a, 0x74, 0x6a,\n    0x65, 0x63, 0x64, 0x6e, 0x63, 0x5f, 0x55, 0x50, 0x60, 0x67, 0x63, 0x54, 0x4c, 0x56, 0x63, 0x6a,\n    0x74, 0x6a, 0x5b, 0x4d, 0x44, 0x41, 0x46, 0x4c, 0x54, 0x46, 0x34, 0x29, 0x23, 0x20, 0x1e, 0x1d,\n    0x22, 0x28, 0x31, 0x3b, 0x45, 0x4c, 0x4c, 0x48, 0x55, 0x45, 0x35, 0x2f, 0x31, 0x3a, 0x49, 0x56,\n    0x62, 0x5b, 0x61, 0x75, 0x7e, 0x74, 0x6a, 0x68, 0x5b, 0x66, 0x76, 0x7f, 0x6e, 0x4b, 0x43, 0x56,\n    0x76, 0x83, 0x8a, 0x87, 0x80, 0x77, 0x77, 0x81, 0x68, 0x49, 0x2b, 0x23, 0x2a, 0x3a, 0x52, 0x68,\n    0x76, 0x69, 0x6a, 0x6b, 0x5b, 0x58, 0x70, 0x87, 0x8f, 0x85, 0x89, 0x98, 0x9c, 0x95, 0x9b, 0xac,\n    0x95, 0x92, 0x8a, 0x7e, 0x76, 0x6f, 0x63, 0x57, 0x42, 0x51, 0x64, 0x72, 0x7c, 0x84, 0x8b, 0x8e,\n    0x8e, 0x84, 0x73, 0x6b, 0x78, 0x87, 0x7d, 0x66, 0x2c, 0x2b, 0x2c, 0x2e, 0x32, 0x3d, 0x54, 0x69,\n    0x73, 0x74, 0x72, 0x6e, 0x6e, 0x6c, 0x60, 0x53, 0x5a, 0x56, 0x4e, 0x49, 0x46, 0x47, 0x49, 0x4b,\n    0x4e, 0x4a, 0x48, 0x4a, 0x4f, 0x56, 0x5e, 0x63, 0x71, 0x78, 0x78, 0x71, 0x6c, 0x68, 0x6c, 0x78,\n    0x85, 0x8c, 0x91, 0x95, 0x9b, 0xa0, 0x9f, 0x9a, 0x9b, 0x9e, 0xa2, 0xa1, 0x9e, 0x9a, 0x99, 0x99,\n    0x91, 0x8f, 0x8d, 0x8d, 0x8a, 0x88, 0x88, 0x8b, 0x91, 0x8d, 0x88, 0x85, 0x84, 0x83, 0x80, 0x7d,\n    0x82, 0x85, 0x8d, 0x95, 0x98, 0x97, 0x9d, 0xa5, 0x90, 0x89, 0x86, 0x8d, 0x99, 0x9c, 0x92, 0x87,\n    0x89, 0x84, 0x83, 0x84, 0x80, 0x7a, 0x7d, 0x85, 0x92, 0x92, 0x97, 0x9d, 0x9c, 0x99, 0x9e, 0xa9,\n    0xa2, 0x9f, 0x97, 0x8c, 0x8a, 0x8e, 0x90, 0x8e, 0x89, 0x84, 0x7f, 0x80, 0x82, 0x84, 0x87, 0x8a,\n    0x95, 0x91, 0x8b, 0x82, 0x77, 0x6d, 0x6b, 0x6e, 0x6d, 0x68, 0x60, 0x5d, 0x62, 0x68, 0x68, 0x65,\n    0x6c, 0x75, 0x7a, 0x79, 0x76, 0x73, 0x6d, 0x67, 0x74, 0x74, 0x74, 0x76, 0x77, 0x78, 0x78, 0x78,\n    0x8c, 0x8c, 0x84, 0x77, 0x76, 0x80, 0x82, 0x7d, 0x88, 0x84, 0x7b, 0x6f, 0x69, 0x6e, 0x7a, 0x85,\n    0x89, 0x86, 0x8c, 0x8d, 0x7a, 0x68, 0x66, 0x6a, 0x6d, 0x75, 0x73, 0x74, 0x6d, 0x64, 0x67, 0x64,\n    0x66, 0x5f, 0x63, 0x6c, 0x6c, 0x6b, 0x6b, 0x67, 0x6c, 0x6c, 0x6f, 0x75, 0x7a, 0x79, 0x74, 0x6f,\n    0x76, 0x6e, 0x72, 0x80, 0x82, 0x78, 0x76, 0x7e, 0x7b, 0x7c, 0x7b, 0x77, 0x72, 0x76, 0x85, 0x94,\n    0x8c, 0x81, 0x7e, 0x86, 0x89, 0x7f, 0x74, 0x70, 0x71, 0x71, 0x74, 0x7c, 0x84, 0x8b, 0x90, 0x95,\n    0x94, 0x97, 0x9b, 0x9f, 0xa2, 0xa6, 0xaa, 0xad, 0xaf, 0xb2, 0xb5, 0xb7, 0xb8, 0xba, 0xbb, 0xbc,\n    0xbe, 0xbe, 0xc0, 0xc2, 0xc5, 0xc7, 0xc6, 0xc6, 0xc7, 0xc7, 0xc7, 0xc8, 0xc8, 0xc7, 0xc7, 0xc7,\n    0xc6, 0xc5, 0xc4, 0xc3, 0xc2, 0xc1, 0xc1, 0xc1, 0xbf, 0xbd, 0xba, 0xb8, 0xb7, 0xb5, 0xb4, 0xb2,\n    0xb1, 0xb0, 0xae, 0xac, 0xab, 0xa9, 0xa7, 0xa6, 0xa2, 0xa3, 0xa1, 0x98, 0x8b, 0x83, 0x87, 0x8f,\n    0x96, 0x9f, 0xa8, 0xad, 0xb1, 0xb8, 0xbf, 0xc3, 0xc8, 0xcc, 0xcd, 0xcd, 0xcd, 0xcf, 0xd0, 0xd0,\n    0xd1, 0xd3, 0xd4, 0xd2, 0xd0, 0xd0, 0xd4, 0xd7, 0xd9, 0xd7, 0xd3, 0xd0, 0xcd, 0xcc, 0xcc, 0xcc,\n    0xcb, 0xcb, 0xcb, 0xcc, 0xcd, 0xcf, 0xd0, 0xd1, 0xd4, 0xd6, 0xd8, 0xda, 0xda, 0xd8, 0xd5, 0xd2,\n    0xd1, 0xce, 0xcb, 0xca, 0xcb, 0xcc, 0xcc, 0xcb, 0xcd, 0xca, 0xc7, 0xc5, 0xc4, 0xc5, 0xc8, 0xc9,\n    0xcc, 0xd0, 0xd3, 0xd5, 0xd8, 0xdb, 0xdd, 0xdc, 0xd7, 0xd6, 0xd5, 0xd3, 0xd2, 0xd1, 0xd1, 0xd1,\n    0xd0, 0xd0, 0xd0, 0xd1, 0xd2, 0xd3, 0xd4, 0xd5, 0xd2, 0xcd, 0xc8, 0xc5, 0xcc, 0xd7, 0xcc, 0xb3,\n    0xb4, 0xae, 0xc3, 0xca, 0xd0, 0x95, 0x6d, 0x69, 0xb1, 0xd5, 0xd7, 0xd8, 0xd9, 0xd2, 0xd1, 0xc2,\n    0x82, 0x7c, 0x77, 0x70, 0x7b, 0x85, 0x74, 0x66, 0x68, 0x76, 0x7b, 0x74, 0x73, 0x7b, 0x7c, 0x78,\n    0x8a, 0x9b, 0xa8, 0xc1, 0xd6, 0xcf, 0xcd, 0xce, 0xb5, 0x9c, 0x85, 0x7c, 0x74, 0x6e, 0x76, 0x88,\n    0xc5, 0xd5, 0xcb, 0xbe, 0xb5, 0xb2, 0x90, 0x73, 0x64, 0x87, 0xbe, 0xc1, 0xbf, 0xbe, 0xc2, 0xbd,\n    0xc3, 0xa7, 0x71, 0x81, 0xb5, 0xbd, 0xb7, 0x96, 0x6b, 0x6e, 0x98, 0xa9, 0x95, 0x72, 0x72, 0x6f,\n    0x78, 0x72, 0x6c, 0x65, 0x5f, 0x63, 0x6a, 0x69, 0x75, 0x72, 0x6e, 0x69, 0x64, 0x62, 0x61, 0x62,\n    0x6b, 0x67, 0x68, 0x6f, 0x72, 0x70, 0x6d, 0x6e, 0x67, 0x64, 0x65, 0x65, 0x5e, 0x55, 0x57, 0x5f,\n    0x63, 0x6a, 0x65, 0x68, 0x6c, 0x70, 0x78, 0x73, 0x67, 0x61, 0x69, 0x78, 0x7d, 0x78, 0x6b, 0x5e,\n    0x60, 0x62, 0x64, 0x71, 0x5b, 0x58, 0x53, 0x5a, 0x64, 0x62, 0x5a, 0x4b, 0x41, 0x48, 0x5d, 0x6f,\n    0x75, 0x6d, 0x5f, 0x50, 0x46, 0x44, 0x4a, 0x4f, 0x4f, 0x41, 0x32, 0x2a, 0x25, 0x1f, 0x1c, 0x1c,\n    0x21, 0x2d, 0x3d, 0x4a, 0x53, 0x56, 0x52, 0x4c, 0x46, 0x40, 0x38, 0x34, 0x36, 0x3d, 0x46, 0x4b,\n    0x42, 0x41, 0x51, 0x6b, 0x79, 0x74, 0x6e, 0x70, 0x6c, 0x6b, 0x74, 0x84, 0x7f, 0x62, 0x56, 0x64,\n    0x77, 0x84, 0x8d, 0x88, 0x77, 0x64, 0x66, 0x79, 0x71, 0x5c, 0x40, 0x33, 0x3f, 0x55, 0x5b, 0x54,\n    0x4f, 0x49, 0x53, 0x59, 0x53, 0x63, 0x7c, 0x80, 0x83, 0x8a, 0x91, 0x93, 0x95, 0x99, 0x9c, 0x9d,\n    0x98, 0xa1, 0x9f, 0x90, 0x80, 0x73, 0x61, 0x50, 0x40, 0x2d, 0x24, 0x2b, 0x2d, 0x28, 0x2e, 0x3e,\n    0x31, 0x36, 0x36, 0x2f, 0x2a, 0x28, 0x24, 0x1e, 0x25, 0x29, 0x33, 0x40, 0x48, 0x4a, 0x48, 0x48,\n    0x50, 0x54, 0x57, 0x55, 0x53, 0x53, 0x53, 0x53, 0x46, 0x44, 0x46, 0x4e, 0x57, 0x5a, 0x54, 0x4e,\n    0x44, 0x4c, 0x52, 0x52, 0x53, 0x54, 0x52, 0x4d, 0x44, 0x3e, 0x3e, 0x45, 0x4e, 0x56, 0x5c, 0x5e,\n    0x96, 0x9c, 0xa1, 0xa0, 0x9a, 0x91, 0x8a, 0x85, 0x87, 0x92, 0xa0, 0xa7, 0xa4, 0x9e, 0x99, 0x97,\n    0x92, 0x8a, 0x87, 0x8d, 0x95, 0x96, 0x90, 0x8a, 0x8e, 0x8f, 0x8f, 0x8e, 0x91, 0x95, 0x93, 0x8c,\n    0x88, 0x8f, 0x99, 0xa1, 0xa6, 0xa4, 0x9b, 0x91, 0x78, 0x7f, 0x8b, 0x97, 0x9f, 0xa4, 0xa5, 0xa5,\n    0x9e, 0x99, 0x96, 0x97, 0x9a, 0x98, 0x93, 0x8f, 0x7e, 0x7e, 0x84, 0x8b, 0x8d, 0x8f, 0x98, 0xa4,\n    0x9f, 0x9e, 0x9b, 0x95, 0x8f, 0x8c, 0x8b, 0x8b, 0x8b, 0x7f, 0x74, 0x71, 0x73, 0x76, 0x7a, 0x7d,\n    0x75, 0x68, 0x5a, 0x55, 0x59, 0x5e, 0x62, 0x63, 0x68, 0x6d, 0x70, 0x6e, 0x6c, 0x6c, 0x6b, 0x68,\n    0x74, 0x7c, 0x7f, 0x76, 0x6a, 0x61, 0x5a, 0x55, 0x6a, 0x68, 0x6b, 0x71, 0x71, 0x6e, 0x71, 0x77,\n    0x7a, 0x7c, 0x7b, 0x77, 0x79, 0x82, 0x8a, 0x8c, 0x81, 0x7c, 0x76, 0x72, 0x73, 0x7c, 0x89, 0x94,\n    0x92, 0x8c, 0x89, 0x82, 0x78, 0x79, 0x81, 0x83, 0x7f, 0x89, 0x8a, 0x8d, 0x87, 0x7d, 0x80, 0x7c,\n    0x71, 0x67, 0x6b, 0x72, 0x6d, 0x69, 0x6b, 0x67, 0x6a, 0x6f, 0x72, 0x6e, 0x66, 0x62, 0x65, 0x6a,\n    0x6e, 0x6f, 0x74, 0x78, 0x76, 0x72, 0x75, 0x7d, 0x7e, 0x81, 0x7f, 0x76, 0x70, 0x73, 0x7b, 0x80,\n    0x7b, 0x75, 0x7c, 0x8e, 0x93, 0x85, 0x76, 0x72, 0x7a, 0x75, 0x78, 0x84, 0x8a, 0x89, 0x8b, 0x91,\n    0x94, 0x96, 0x9a, 0x9e, 0xa1, 0xa5, 0xa9, 0xac, 0xb0, 0xb2, 0xb4, 0xb6, 0xb7, 0xb8, 0xbb, 0xbc,\n    0xbd, 0xbd, 0xbf, 0xc1, 0xc4, 0xc5, 0xc4, 0xc3, 0xc5, 0xc5, 0xc5, 0xc6, 0xc6, 0xc6, 0xc5, 0xc5,\n    0xc4, 0xc4, 0xc4, 0xc3, 0xc2, 0xc1, 0xc0, 0xbf, 0xc0, 0xbd, 0xb9, 0xb7, 0xb5, 0xb4, 0xb3, 0xb2,\n    0xb2, 0xb0, 0xae, 0xac, 0xab, 0xaa, 0xa8, 0xa6, 0xa5, 0xa3, 0xa0, 0x97, 0x8a, 0x83, 0x88, 0x92,\n    0x95, 0xa0, 0xaa, 0xae, 0xb2, 0xba, 0xc1, 0xc5, 0xc9, 0xcd, 0xd0, 0xd0, 0xd1, 0xd2, 0xd3, 0xd1,\n    0xd4, 0xd6, 0xd7, 0xd5, 0xd2, 0xd0, 0xd2, 0xd4, 0xd8, 0xd7, 0xd4, 0xd2, 0xd0, 0xcf, 0xce, 0xce,\n    0xcd, 0xcb, 0xc9, 0xca, 0xcb, 0xcc, 0xcc, 0xcb, 0xd0, 0xcf, 0xd0, 0xd2, 0xd4, 0xd6, 0xd4, 0xd3,\n    0xcc, 0xca, 0xc7, 0xc6, 0xc6, 0xc7, 0xc8, 0xc9, 0xcd, 0xcb, 0xca, 0xc8, 0xc9, 0xca, 0xcc, 0xcd,\n    0xd2, 0xd6, 0xd9, 0xd9, 0xda, 0xdc, 0xdb, 0xd8, 0xd6, 0xd5, 0xd3, 0xd1, 0xcf, 0xcf, 0xcf, 0xcf,\n    0xd0, 0xd0, 0xd0, 0xd0, 0xd1, 0xd1, 0xd2, 0xd2, 0xd6, 0xd5, 0xda, 0xdf, 0xd6, 0xc8, 0xca, 0xd7,\n    0xcf, 0xc9, 0xce, 0xcb, 0xc7, 0x88, 0x7b, 0x82, 0xc3, 0xd9, 0xd7, 0xd5, 0xd3, 0xd2, 0xd3, 0xb5,\n    0x77, 0x7a, 0x7c, 0x8a, 0xbd, 0xcc, 0x98, 0x75, 0x77, 0x72, 0x71, 0x7f, 0x81, 0x76, 0x8e, 0xba,\n    0xbf, 0xca, 0xcb, 0xd0, 0xd1, 0xce, 0xc6, 0xb1, 0x84, 0x7a, 0x77, 0x7d, 0x7e, 0x76, 0x70, 0x71,\n    0xaa, 0xc5, 0xc7, 0xca, 0xce, 0xcb, 0x94, 0x66, 0x6e, 0x8a, 0xbd, 0xc2, 0xc1, 0xc2, 0xc6, 0xbf,\n    0xbe, 0xa2, 0x67, 0x82, 0xb4, 0xbf, 0xb9, 0xa6, 0x78, 0x63, 0x73, 0x8e, 0x97, 0x75, 0x6b, 0x6d,\n    0x79, 0x78, 0x6f, 0x65, 0x65, 0x67, 0x69, 0x6d, 0x73, 0x72, 0x6d, 0x66, 0x62, 0x62, 0x65, 0x68,\n    0x69, 0x60, 0x60, 0x6d, 0x72, 0x6b, 0x67, 0x6b, 0x6c, 0x6c, 0x6b, 0x68, 0x60, 0x5a, 0x5a, 0x5e,\n    0x61, 0x6a, 0x65, 0x65, 0x66, 0x6a, 0x74, 0x71, 0x69, 0x6c, 0x76, 0x7a, 0x74, 0x6e, 0x66, 0x5b,\n    0x59, 0x5e, 0x6c, 0x73, 0x60, 0x53, 0x57, 0x62, 0x61, 0x50, 0x48, 0x49, 0x3d, 0x32, 0x48, 0x6d,\n    0x76, 0x6f, 0x62, 0x53, 0x49, 0x48, 0x4d, 0x52, 0x48, 0x3b, 0x30, 0x2c, 0x26, 0x1e, 0x1a, 0x1c,\n    0x23, 0x32, 0x47, 0x58, 0x61, 0x60, 0x55, 0x4b, 0x39, 0x3c, 0x3a, 0x34, 0x33, 0x35, 0x33, 0x2e,\n    0x29, 0x34, 0x44, 0x55, 0x5f, 0x66, 0x6d, 0x72, 0x67, 0x66, 0x6c, 0x7b, 0x81, 0x73, 0x69, 0x70,\n    0x7f, 0x81, 0x7b, 0x72, 0x66, 0x54, 0x49, 0x4b, 0x50, 0x51, 0x4f, 0x4f, 0x5a, 0x61, 0x51, 0x38,\n    0x24, 0x2c, 0x3b, 0x4b, 0x59, 0x67, 0x6d, 0x6a, 0x74, 0x82, 0x81, 0x6a, 0x5d, 0x67, 0x73, 0x75,\n    0x82, 0x7d, 0x79, 0x7b, 0x82, 0x7f, 0x68, 0x50, 0x3e, 0x35, 0x35, 0x3f, 0x3e, 0x2e, 0x21, 0x1f,\n    0x25, 0x1f, 0x20, 0x29, 0x2a, 0x22, 0x1e, 0x22, 0x2e, 0x31, 0x3a, 0x4a, 0x5a, 0x64, 0x66, 0x67,\n    0x56, 0x47, 0x3a, 0x3b, 0x46, 0x50, 0x54, 0x54, 0x49, 0x4b, 0x4e, 0x51, 0x51, 0x4a, 0x3d, 0x33,\n    0x25, 0x32, 0x42, 0x51, 0x5f, 0x67, 0x66, 0x61, 0x67, 0x5b, 0x55, 0x50, 0x4b, 0x4f, 0x4c, 0x3c,\n    0x9b, 0xa0, 0xa3, 0xa0, 0x95, 0x8b, 0x89, 0x8c, 0xa0, 0xa2, 0xa6, 0xaa, 0xab, 0xaa, 0xa6, 0xa3,\n    0x9f, 0x9f, 0xa2, 0xa4, 0xa2, 0x9a, 0x92, 0x8f, 0x8a, 0x95, 0x9a, 0x94, 0x8e, 0x8f, 0x8c, 0x87,\n    0x88, 0x99, 0xa5, 0xa1, 0x9d, 0x9f, 0x9e, 0x98, 0x93, 0x8b, 0x82, 0x80, 0x89, 0x98, 0xa7, 0xb1,\n    0xb3, 0xa6, 0x96, 0x95, 0xa5, 0xb2, 0xaa, 0x98, 0x8a, 0x88, 0x85, 0x89, 0x9c, 0xae, 0xad, 0xa1,\n    0x94, 0x8c, 0x82, 0x77, 0x6f, 0x6d, 0x75, 0x7e, 0x76, 0x73, 0x76, 0x7f, 0x84, 0x7d, 0x71, 0x6a,\n    0x75, 0x79, 0x86, 0x9a, 0xa5, 0x99, 0x7c, 0x64, 0x60, 0x74, 0x83, 0x7f, 0x70, 0x67, 0x68, 0x6b,\n    0x79, 0x7c, 0x78, 0x6b, 0x64, 0x69, 0x75, 0x7c, 0x72, 0x6f, 0x71, 0x75, 0x70, 0x67, 0x69, 0x72,\n    0x73, 0x7b, 0x88, 0x90, 0x8f, 0x87, 0x81, 0x7f, 0x89, 0x90, 0x92, 0x8a, 0x7d, 0x7b, 0x89, 0x9a,\n    0x8d, 0x88, 0x84, 0x7b, 0x74, 0x75, 0x71, 0x65, 0x69, 0x70, 0x6f, 0x72, 0x72, 0x74, 0x83, 0x88,\n    0x7e, 0x6c, 0x66, 0x64, 0x5a, 0x5a, 0x64, 0x66, 0x76, 0x73, 0x6e, 0x68, 0x64, 0x63, 0x65, 0x67,\n    0x79, 0x86, 0x8d, 0x87, 0x7d, 0x7b, 0x7e, 0x7f, 0x7c, 0x81, 0x79, 0x6a, 0x67, 0x74, 0x7b, 0x78,\n    0x76, 0x6d, 0x70, 0x7e, 0x81, 0x76, 0x6f, 0x72, 0x6f, 0x6a, 0x70, 0x81, 0x8b, 0x89, 0x8c, 0x95,\n    0x94, 0x96, 0x9a, 0x9d, 0xa1, 0xa4, 0xa8, 0xaa, 0xb0, 0xb2, 0xb3, 0xb4, 0xb6, 0xb7, 0xba, 0xbc,\n    0xbd, 0xbd, 0xbe, 0xc1, 0xc4, 0xc5, 0xc3, 0xc1, 0xc3, 0xc3, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4,\n    0xc3, 0xc3, 0xc3, 0xc3, 0xc2, 0xc1, 0xbf, 0xbe, 0xbf, 0xbc, 0xb8, 0xb5, 0xb3, 0xb3, 0xb2, 0xb1,\n    0xb1, 0xaf, 0xad, 0xac, 0xab, 0xa9, 0xa7, 0xa5, 0xa6, 0xa3, 0x9e, 0x97, 0x8c, 0x86, 0x8b, 0x94,\n    0x94, 0xa0, 0xab, 0xaf, 0xb3, 0xbb, 0xc3, 0xc7, 0xc6, 0xcb, 0xd0, 0xd3, 0xd4, 0xd6, 0xd6, 0xd4,\n    0xd1, 0xd3, 0xd4, 0xd4, 0xd2, 0xd1, 0xd1, 0xd2, 0xd7, 0xd7, 0xd7, 0xd7, 0xd6, 0xd6, 0xd5, 0xd5,\n    0xd1, 0xcd, 0xca, 0xca, 0xcc, 0xcd, 0xcb, 0xc9, 0xc7, 0xc4, 0xc1, 0xc1, 0xc5, 0xc9, 0xca, 0xc9,\n    0xd1, 0xd0, 0xcf, 0xce, 0xcd, 0xce, 0xcf, 0xd0, 0xce, 0xce, 0xce, 0xce, 0xd0, 0xd1, 0xd3, 0xd4,\n    0xd5, 0xda, 0xdc, 0xda, 0xda, 0xdb, 0xd8, 0xd3, 0xd7, 0xd5, 0xd2, 0xcf, 0xcd, 0xcc, 0xcb, 0xcc,\n    0xd0, 0xd0, 0xd0, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd0, 0xd3, 0xd0, 0xd0, 0xd4, 0xd4, 0xcf, 0xce,\n    0xcb, 0xcb, 0xcf, 0xce, 0xcd, 0x8b, 0x84, 0x86, 0xd1, 0xdd, 0xd6, 0xd3, 0xcf, 0xd5, 0xd6, 0xaf,\n    0x81, 0x79, 0x75, 0x8c, 0xc8, 0xca, 0x86, 0x69, 0x6a, 0x7d, 0x7c, 0x84, 0xa6, 0xc3, 0xcd, 0xca,\n    0xc5, 0xcb, 0xc6, 0xc9, 0xcb, 0xd1, 0xbb, 0x88, 0x74, 0x7e, 0x7e, 0x74, 0x71, 0x77, 0x75, 0x6b,\n    0xa8, 0xcd, 0xce, 0xc7, 0xc2, 0xc5, 0x99, 0x74, 0x6c, 0x85, 0xba, 0xc2, 0xbe, 0xbb, 0xc0, 0xbc,\n    0xbe, 0x9d, 0x5d, 0x82, 0xb3, 0xbf, 0xbd, 0xb8, 0x89, 0x6a, 0x5c, 0x73, 0x9e, 0x8c, 0x74, 0x72,\n    0x6e, 0x76, 0x70, 0x67, 0x67, 0x61, 0x5a, 0x5d, 0x68, 0x6a, 0x6a, 0x66, 0x64, 0x65, 0x67, 0x69,\n    0x69, 0x5c, 0x5d, 0x6d, 0x73, 0x69, 0x64, 0x69, 0x6b, 0x6f, 0x73, 0x70, 0x6a, 0x64, 0x60, 0x5f,\n    0x64, 0x6e, 0x68, 0x63, 0x60, 0x63, 0x70, 0x6f, 0x6e, 0x79, 0x81, 0x76, 0x68, 0x6a, 0x6f, 0x6a,\n    0x63, 0x5d, 0x6d, 0x71, 0x70, 0x58, 0x57, 0x53, 0x51, 0x4b, 0x48, 0x45, 0x38, 0x31, 0x45, 0x62,\n    0x78, 0x72, 0x66, 0x57, 0x4c, 0x4b, 0x50, 0x55, 0x42, 0x37, 0x2f, 0x2d, 0x28, 0x1e, 0x1a, 0x1c,\n    0x30, 0x3e, 0x52, 0x62, 0x69, 0x62, 0x50, 0x40, 0x38, 0x3b, 0x36, 0x2c, 0x2b, 0x34, 0x38, 0x34,\n    0x3a, 0x46, 0x48, 0x3b, 0x32, 0x36, 0x3e, 0x41, 0x49, 0x51, 0x5b, 0x6b, 0x7a, 0x7a, 0x74, 0x76,\n    0x78, 0x6b, 0x58, 0x57, 0x66, 0x63, 0x49, 0x32, 0x31, 0x32, 0x33, 0x34, 0x34, 0x2f, 0x26, 0x1e,\n    0x0e, 0x18, 0x21, 0x36, 0x4f, 0x4f, 0x4b, 0x5a, 0x68, 0x66, 0x6a, 0x66, 0x4d, 0x34, 0x3e, 0x5a,\n    0x64, 0x6c, 0x7a, 0x82, 0x7e, 0x6e, 0x5e, 0x55, 0x60, 0x70, 0x72, 0x5b, 0x41, 0x35, 0x35, 0x35,\n    0x2f, 0x31, 0x2b, 0x1f, 0x1e, 0x26, 0x28, 0x23, 0x2b, 0x30, 0x3b, 0x46, 0x4f, 0x55, 0x58, 0x5a,\n    0x5e, 0x58, 0x53, 0x51, 0x4c, 0x4b, 0x53, 0x5e, 0x6a, 0x6b, 0x69, 0x5f, 0x52, 0x49, 0x48, 0x4b,\n    0x4d, 0x4b, 0x48, 0x43, 0x41, 0x49, 0x59, 0x66, 0x58, 0x58, 0x62, 0x63, 0x60, 0x73, 0x7c, 0x6a,\n    0xa2, 0x9f, 0x9c, 0x9b, 0x9c, 0x9e, 0x9f, 0xa0, 0xa0, 0xa0, 0xa2, 0xa4, 0xa6, 0xa6, 0xa5, 0xa3,\n    0xa7, 0xa9, 0xac, 0xa9, 0x99, 0x86, 0x7e, 0x81, 0x8c, 0x97, 0x9a, 0x90, 0x87, 0x85, 0x80, 0x78,\n    0x90, 0x99, 0xa1, 0xa0, 0x9c, 0x97, 0x91, 0x8b, 0x8b, 0x90, 0x94, 0x92, 0x8f, 0x8e, 0x8f, 0x90,\n    0x94, 0x8e, 0x8a, 0x8e, 0x96, 0x99, 0x94, 0x8d, 0x85, 0x85, 0x8b, 0x97, 0xa0, 0xa1, 0xa0, 0xa0,\n    0x8c, 0x83, 0x82, 0x87, 0x81, 0x73, 0x72, 0x7b, 0x82, 0x79, 0x7c, 0x88, 0x8f, 0x91, 0x8b, 0x81,\n    0x70, 0x72, 0x85, 0xa2, 0xad, 0x9b, 0x7e, 0x6d, 0x70, 0x8d, 0xa5, 0x9f, 0x85, 0x70, 0x6b, 0x6d,\n    0x7d, 0x86, 0x78, 0x67, 0x5f, 0x69, 0x7d, 0x7e, 0x82, 0x80, 0x79, 0x6d, 0x62, 0x5f, 0x66, 0x6d,\n    0x6d, 0x77, 0x8b, 0x91, 0x84, 0x80, 0x82, 0x7c, 0x93, 0x93, 0x88, 0x78, 0x75, 0x7f, 0x88, 0x88,\n    0x80, 0x83, 0x81, 0x79, 0x6f, 0x6a, 0x68, 0x67, 0x6f, 0x6e, 0x6a, 0x66, 0x6c, 0x77, 0x7e, 0x7d,\n    0x76, 0x7d, 0x87, 0x8d, 0x88, 0x80, 0x82, 0x8a, 0x7c, 0x6f, 0x64, 0x61, 0x5e, 0x5b, 0x60, 0x6a,\n    0x76, 0x7f, 0x87, 0x86, 0x7c, 0x71, 0x70, 0x74, 0x70, 0x74, 0x74, 0x70, 0x6f, 0x73, 0x74, 0x70,\n    0x69, 0x70, 0x76, 0x78, 0x7b, 0x7c, 0x72, 0x67, 0x62, 0x65, 0x72, 0x83, 0x8a, 0x88, 0x8b, 0x92,\n    0x94, 0x96, 0x9a, 0x9f, 0xa5, 0xa9, 0xab, 0xab, 0xae, 0xb0, 0xb2, 0xb3, 0xb4, 0xb6, 0xb9, 0xbb,\n    0xbb, 0xbd, 0xbe, 0xbf, 0xbf, 0xbf, 0xc1, 0xc2, 0xc1, 0xc1, 0xc2, 0xc2, 0xc3, 0xc3, 0xc4, 0xc4,\n    0xc2, 0xc2, 0xc2, 0xc2, 0xc1, 0xc1, 0xc0, 0xc0, 0xbc, 0xba, 0xb8, 0xb7, 0xb6, 0xb5, 0xb3, 0xb1,\n    0xaf, 0xae, 0xad, 0xac, 0xab, 0xaa, 0xa8, 0xa6, 0xa4, 0xa4, 0xa0, 0x98, 0x8e, 0x89, 0x8c, 0x92,\n    0x96, 0xa1, 0xaf, 0xb6, 0xb8, 0xbc, 0xc3, 0xcb, 0xc9, 0xcc, 0xd1, 0xd4, 0xd6, 0xd6, 0xd7, 0xd7,\n    0xd9, 0xd5, 0xd1, 0xd2, 0xd5, 0xd6, 0xd3, 0xd0, 0xd2, 0xd4, 0xd5, 0xd4, 0xd4, 0xd5, 0xd5, 0xd3,\n    0xd0, 0xcc, 0xc7, 0xc4, 0xc4, 0xc4, 0xc5, 0xc4, 0xc5, 0xc5, 0xc5, 0xc2, 0xc1, 0xc3, 0xca, 0xcf,\n    0xd0, 0xcf, 0xd0, 0xd1, 0xd3, 0xd2, 0xd0, 0xce, 0xd1, 0xd6, 0xda, 0xd9, 0xd5, 0xd4, 0xd8, 0xdd,\n    0xdb, 0xda, 0xd8, 0xd7, 0xd7, 0xd6, 0xd4, 0xd3, 0xd3, 0xd1, 0xce, 0xcc, 0xcc, 0xcd, 0xcf, 0xd0,\n    0xce, 0xd3, 0xd4, 0xd4, 0xd7, 0xd4, 0xd0, 0xd3, 0xd7, 0xd5, 0xd2, 0xd0, 0xd1, 0xd2, 0xd4, 0xd4,\n    0xd3, 0xd0, 0xcf, 0xd1, 0xce, 0x91, 0x7c, 0x87, 0xd0, 0xe1, 0xd0, 0xcd, 0xc9, 0xcf, 0xd4, 0x9f,\n    0x7d, 0x7b, 0x7f, 0x91, 0xd6, 0xc2, 0x82, 0x65, 0x77, 0x79, 0xa2, 0xc3, 0xd2, 0xd9, 0xc6, 0xc5,\n    0xce, 0xcd, 0xc6, 0xc1, 0xd3, 0xc8, 0x92, 0x76, 0x79, 0x7c, 0x77, 0x71, 0x7d, 0x78, 0x69, 0x65,\n    0xa3, 0xcd, 0xc8, 0xc6, 0xc6, 0xca, 0xa3, 0x77, 0x73, 0x88, 0xc8, 0xca, 0xc2, 0xc0, 0xc2, 0xb9,\n    0xbc, 0x82, 0x60, 0x88, 0xbe, 0xb9, 0xbe, 0xb6, 0x97, 0x62, 0x56, 0x91, 0xa4, 0x82, 0x75, 0x6e,\n    0x71, 0x6e, 0x6b, 0x5e, 0x69, 0x5d, 0x58, 0x50, 0x5c, 0x6b, 0x6e, 0x64, 0x63, 0x67, 0x67, 0x67,\n    0x61, 0x5a, 0x57, 0x69, 0x65, 0x6b, 0x61, 0x5c, 0x5a, 0x5d, 0x68, 0x62, 0x6a, 0x65, 0x6f, 0x6f,\n    0x75, 0x6b, 0x64, 0x66, 0x6a, 0x6f, 0x77, 0x80, 0x84, 0x7e, 0x6f, 0x6d, 0x68, 0x63, 0x6c, 0x6f,\n    0x68, 0x5d, 0x71, 0x62, 0x67, 0x55, 0x59, 0x55, 0x51, 0x51, 0x53, 0x4d, 0x39, 0x2b, 0x3c, 0x5a,\n    0x78, 0x6d, 0x65, 0x56, 0x46, 0x4b, 0x56, 0x53, 0x3f, 0x37, 0x31, 0x2c, 0x21, 0x16, 0x18, 0x22,\n    0x42, 0x5e, 0x71, 0x71, 0x6b, 0x5f, 0x4e, 0x43, 0x34, 0x30, 0x29, 0x25, 0x26, 0x29, 0x2a, 0x28,\n    0x35, 0x44, 0x46, 0x39, 0x39, 0x47, 0x4c, 0x43, 0x37, 0x2f, 0x30, 0x40, 0x57, 0x6d, 0x71, 0x67,\n    0x64, 0x59, 0x5b, 0x6f, 0x86, 0x87, 0x5f, 0x2d, 0x29, 0x20, 0x1d, 0x23, 0x25, 0x20, 0x1c, 0x1d,\n    0x14, 0x13, 0x1c, 0x2f, 0x3d, 0x40, 0x41, 0x44, 0x43, 0x42, 0x4c, 0x65, 0x7d, 0x85, 0x7c, 0x70,\n    0x62, 0x5c, 0x59, 0x5b, 0x58, 0x56, 0x61, 0x70, 0x75, 0x75, 0x69, 0x5b, 0x59, 0x55, 0x4a, 0x43,\n    0x3e, 0x31, 0x23, 0x1e, 0x20, 0x23, 0x22, 0x21, 0x27, 0x28, 0x31, 0x3f, 0x48, 0x4a, 0x4c, 0x51,\n    0x52, 0x55, 0x5a, 0x5b, 0x58, 0x51, 0x4b, 0x48, 0x3a, 0x3f, 0x42, 0x3f, 0x3c, 0x42, 0x4e, 0x58,\n    0x68, 0x65, 0x5f, 0x56, 0x4a, 0x3c, 0x34, 0x32, 0x3a, 0x4b, 0x53, 0x47, 0x3d, 0x3f, 0x44, 0x43,\n    0x94, 0x8f, 0x8b, 0x8b, 0x92, 0x99, 0x9f, 0xa1, 0x9b, 0x9d, 0xa0, 0xa2, 0xa5, 0xa7, 0xaa, 0xac,\n    0xaf, 0xa7, 0x9f, 0x98, 0x8f, 0x8b, 0x92, 0x9d, 0xac, 0xaa, 0x9f, 0x8f, 0x86, 0x8b, 0x94, 0x98,\n    0x9c, 0xa3, 0xa7, 0xa3, 0x9b, 0x96, 0x92, 0x8f, 0x91, 0x92, 0x95, 0x99, 0x9c, 0x9e, 0xa1, 0xa6,\n    0xa4, 0xa1, 0x9d, 0x9a, 0x97, 0x91, 0x8a, 0x84, 0x89, 0x8b, 0x8a, 0x8a, 0x93, 0x9d, 0x9b, 0x92,\n    0x89, 0x90, 0x91, 0x8d, 0x8e, 0x96, 0x98, 0x94, 0x86, 0x7d, 0x7b, 0x7f, 0x83, 0x89, 0x89, 0x81,\n    0x73, 0x74, 0x80, 0x92, 0x9a, 0x93, 0x86, 0x7e, 0x7d, 0x83, 0x89, 0x89, 0x82, 0x7a, 0x75, 0x75,\n    0x69, 0x6d, 0x66, 0x69, 0x6d, 0x72, 0x79, 0x74, 0x78, 0x70, 0x63, 0x56, 0x51, 0x57, 0x63, 0x6c,\n    0x84, 0x81, 0x83, 0x83, 0x7c, 0x79, 0x7f, 0x82, 0x8e, 0x8f, 0x89, 0x7e, 0x7d, 0x85, 0x89, 0x86,\n    0x87, 0x87, 0x7f, 0x72, 0x68, 0x67, 0x6e, 0x73, 0x6d, 0x6d, 0x71, 0x74, 0x6e, 0x64, 0x61, 0x66,\n    0x6a, 0x67, 0x65, 0x66, 0x67, 0x67, 0x6a, 0x6e, 0x6e, 0x63, 0x5b, 0x5a, 0x5e, 0x66, 0x71, 0x7c,\n    0x6f, 0x75, 0x7e, 0x83, 0x80, 0x79, 0x72, 0x6f, 0x76, 0x70, 0x6c, 0x71, 0x7e, 0x86, 0x80, 0x76,\n    0x79, 0x78, 0x79, 0x7b, 0x7d, 0x7a, 0x6f, 0x64, 0x62, 0x67, 0x74, 0x83, 0x8a, 0x8a, 0x8d, 0x92,\n    0x93, 0x95, 0x99, 0x9e, 0xa3, 0xa7, 0xa9, 0xa9, 0xac, 0xad, 0xaf, 0xb1, 0xb2, 0xb4, 0xb6, 0xb8,\n    0xba, 0xbb, 0xbd, 0xbe, 0xbe, 0xbf, 0xc0, 0xc2, 0xc1, 0xc1, 0xc2, 0xc2, 0xc3, 0xc3, 0xc4, 0xc4,\n    0xc3, 0xc3, 0xc2, 0xc1, 0xc0, 0xbe, 0xbd, 0xbd, 0xbb, 0xb9, 0xb8, 0xb7, 0xb7, 0xb6, 0xb4, 0xb3,\n    0xb0, 0xaf, 0xad, 0xad, 0xac, 0xab, 0xa9, 0xa7, 0xa7, 0xa7, 0xa3, 0x9c, 0x92, 0x8d, 0x90, 0x96,\n    0x9b, 0xa5, 0xb1, 0xb8, 0xbb, 0xbd, 0xc3, 0xc9, 0xcd, 0xd0, 0xd3, 0xd6, 0xd7, 0xd7, 0xd7, 0xd7,\n    0xd6, 0xd5, 0xd4, 0xd3, 0xd4, 0xd4, 0xd3, 0xd3, 0xd3, 0xd5, 0xd5, 0xd3, 0xd2, 0xd3, 0xd2, 0xcf,\n    0xce, 0xcb, 0xc7, 0xc5, 0xc6, 0xc7, 0xc8, 0xc8, 0xc9, 0xca, 0xca, 0xc9, 0xc8, 0xca, 0xcf, 0xd3,\n    0xdd, 0xdc, 0xda, 0xd9, 0xd9, 0xd7, 0xd4, 0xd1, 0xd5, 0xd7, 0xd9, 0xd9, 0xd9, 0xd9, 0xdb, 0xdc,\n    0xda, 0xd9, 0xd7, 0xd6, 0xd5, 0xd3, 0xd1, 0xcf, 0xcf, 0xce, 0xcd, 0xcd, 0xce, 0xd0, 0xd2, 0xd3,\n    0xd5, 0xd7, 0xd4, 0xd4, 0xdd, 0xe0, 0xdd, 0xdd, 0xdd, 0xdb, 0xd8, 0xd6, 0xd6, 0xd6, 0xd5, 0xd5,\n    0xd4, 0xd5, 0xd0, 0xd7, 0xd0, 0x90, 0x80, 0x88, 0xd0, 0xdf, 0xd4, 0xd3, 0xcf, 0xd1, 0xca, 0x8d,\n    0x7b, 0x7d, 0x7f, 0x9f, 0xdc, 0xca, 0x8d, 0x74, 0x76, 0x8c, 0xc6, 0xd5, 0xd5, 0xd4, 0xcc, 0xcd,\n    0xcf, 0xcb, 0xcc, 0xca, 0xcf, 0xac, 0x84, 0x72, 0x79, 0x7c, 0x8e, 0xac, 0xc7, 0xb2, 0x81, 0x6b,\n    0x9b, 0xcd, 0xc7, 0xc8, 0xc9, 0xcc, 0xae, 0x7b, 0x6d, 0x85, 0xc8, 0xcd, 0xc3, 0xc0, 0xc2, 0xbd,\n    0xb2, 0x73, 0x61, 0x85, 0xb8, 0xbb, 0xb6, 0xb7, 0xa2, 0x78, 0x6c, 0x97, 0x9f, 0x7e, 0x73, 0x6e,\n    0x66, 0x68, 0x6b, 0x65, 0x70, 0x62, 0x56, 0x49, 0x47, 0x57, 0x63, 0x68, 0x6a, 0x63, 0x5a, 0x58,\n    0x5b, 0x64, 0x64, 0x5f, 0x5b, 0x6a, 0x66, 0x54, 0x52, 0x56, 0x5d, 0x5a, 0x5b, 0x59, 0x5f, 0x61,\n    0x6a, 0x69, 0x6b, 0x71, 0x76, 0x78, 0x79, 0x7a, 0x71, 0x73, 0x6d, 0x6f, 0x6f, 0x6a, 0x6f, 0x6c,\n    0x58, 0x57, 0x76, 0x70, 0x72, 0x5b, 0x58, 0x51, 0x4d, 0x54, 0x60, 0x5f, 0x48, 0x33, 0x3b, 0x53,\n    0x74, 0x6d, 0x64, 0x54, 0x47, 0x4f, 0x56, 0x4d, 0x3b, 0x32, 0x30, 0x2e, 0x1e, 0x10, 0x23, 0x43,\n    0x5c, 0x71, 0x78, 0x6f, 0x6a, 0x5f, 0x4a, 0x38, 0x32, 0x2b, 0x24, 0x24, 0x2e, 0x3b, 0x43, 0x46,\n    0x42, 0x46, 0x46, 0x43, 0x47, 0x4e, 0x4f, 0x49, 0x3c, 0x38, 0x38, 0x3e, 0x4d, 0x63, 0x66, 0x57,\n    0x4c, 0x40, 0x3d, 0x48, 0x57, 0x5e, 0x51, 0x39, 0x29, 0x24, 0x22, 0x23, 0x23, 0x1e, 0x19, 0x17,\n    0x12, 0x13, 0x1b, 0x25, 0x29, 0x2a, 0x31, 0x3a, 0x4a, 0x4a, 0x51, 0x60, 0x6f, 0x76, 0x77, 0x75,\n    0x73, 0x6a, 0x65, 0x6c, 0x79, 0x7f, 0x7a, 0x73, 0x6d, 0x78, 0x7c, 0x7b, 0x79, 0x69, 0x4c, 0x38,\n    0x2e, 0x2c, 0x30, 0x34, 0x2f, 0x24, 0x26, 0x31, 0x3b, 0x3e, 0x41, 0x44, 0x4a, 0x4f, 0x4b, 0x44,\n    0x44, 0x48, 0x52, 0x5c, 0x5e, 0x5a, 0x59, 0x5b, 0x66, 0x60, 0x5a, 0x57, 0x57, 0x57, 0x56, 0x56,\n    0x55, 0x50, 0x48, 0x42, 0x45, 0x4c, 0x50, 0x50, 0x40, 0x4e, 0x5a, 0x58, 0x51, 0x4a, 0x41, 0x38,\n    0x8a, 0x86, 0x83, 0x86, 0x8f, 0x98, 0x9c, 0x9d, 0x9a, 0xa0, 0xa7, 0xab, 0xab, 0xa9, 0xa7, 0xa6,\n    0x9f, 0x9d, 0x9d, 0xa0, 0x9e, 0x99, 0x98, 0x9b, 0x96, 0x93, 0x8d, 0x85, 0x7e, 0x7c, 0x80, 0x85,\n    0x83, 0x8a, 0x90, 0x90, 0x90, 0x95, 0x9d, 0xa2, 0x96, 0x95, 0x96, 0x9b, 0x9c, 0x98, 0x91, 0x8d,\n    0x91, 0x95, 0x98, 0x96, 0x90, 0x8a, 0x86, 0x86, 0x88, 0x88, 0x89, 0x8c, 0x91, 0x91, 0x89, 0x80,\n    0x86, 0x90, 0x90, 0x88, 0x8d, 0x9a, 0x9a, 0x8f, 0x88, 0x7f, 0x77, 0x73, 0x74, 0x7f, 0x84, 0x7d,\n    0x71, 0x74, 0x78, 0x7e, 0x83, 0x87, 0x88, 0x88, 0x71, 0x6b, 0x6d, 0x78, 0x7d, 0x76, 0x6d, 0x6b,\n    0x65, 0x61, 0x59, 0x67, 0x75, 0x79, 0x7e, 0x77, 0x6d, 0x6e, 0x6c, 0x63, 0x5c, 0x5f, 0x6d, 0x7a,\n    0x8a, 0x83, 0x78, 0x74, 0x75, 0x76, 0x7e, 0x8b, 0x8a, 0x8e, 0x8d, 0x89, 0x8a, 0x8f, 0x8e, 0x87,\n    0x7d, 0x88, 0x90, 0x8d, 0x81, 0x78, 0x73, 0x71, 0x83, 0x85, 0x8b, 0x8e, 0x87, 0x79, 0x6c, 0x66,\n    0x5f, 0x60, 0x5e, 0x5c, 0x5c, 0x5e, 0x5e, 0x5d, 0x56, 0x52, 0x53, 0x5f, 0x6f, 0x76, 0x71, 0x68,\n    0x64, 0x60, 0x5d, 0x5e, 0x63, 0x67, 0x68, 0x66, 0x6a, 0x65, 0x63, 0x69, 0x71, 0x74, 0x74, 0x74,\n    0x79, 0x72, 0x6e, 0x6f, 0x72, 0x70, 0x6a, 0x65, 0x69, 0x70, 0x7c, 0x85, 0x8a, 0x8d, 0x8f, 0x90,\n    0x93, 0x96, 0x99, 0x9d, 0xa1, 0xa5, 0xa7, 0xa8, 0xaa, 0xac, 0xae, 0xb0, 0xb1, 0xb3, 0xb5, 0xb7,\n    0xb8, 0xba, 0xbb, 0xbd, 0xbd, 0xbe, 0xc0, 0xc2, 0xc1, 0xc1, 0xc1, 0xc2, 0xc2, 0xc3, 0xc3, 0xc3,\n    0xc3, 0xc3, 0xc2, 0xc0, 0xbe, 0xbc, 0xbb, 0xba, 0xb9, 0xb8, 0xb6, 0xb6, 0xb6, 0xb5, 0xb4, 0xb3,\n    0xb1, 0xaf, 0xae, 0xad, 0xad, 0xac, 0xaa, 0xa8, 0xa8, 0xa6, 0xa3, 0x9d, 0x93, 0x8d, 0x91, 0x98,\n    0xa0, 0xa7, 0xb2, 0xb9, 0xbc, 0xbf, 0xc2, 0xc5, 0xcb, 0xce, 0xd3, 0xd6, 0xd8, 0xd9, 0xda, 0xdb,\n    0xdb, 0xdc, 0xdc, 0xda, 0xd7, 0xd6, 0xd7, 0xd8, 0xd8, 0xd9, 0xd9, 0xd6, 0xd5, 0xd5, 0xd3, 0xd1,\n    0xd0, 0xcd, 0xca, 0xc8, 0xc9, 0xca, 0xcb, 0xcb, 0xcc, 0xcd, 0xcf, 0xcf, 0xcf, 0xd0, 0xd3, 0xd6,\n    0xd5, 0xd5, 0xd4, 0xd5, 0xd7, 0xd8, 0xd8, 0xd7, 0xda, 0xd9, 0xd9, 0xdb, 0xdd, 0xdd, 0xdb, 0xd8,\n    0xdb, 0xda, 0xd9, 0xd7, 0xd6, 0xd3, 0xcf, 0xcd, 0xcb, 0xcc, 0xcd, 0xce, 0xd0, 0xd3, 0xd5, 0xd6,\n    0xcd, 0xd9, 0xdd, 0xdb, 0xdc, 0xdc, 0xd9, 0xda, 0xda, 0xd8, 0xd6, 0xd5, 0xd4, 0xd4, 0xd2, 0xd1,\n    0xd6, 0xda, 0xd0, 0xda, 0xcb, 0x8b, 0x83, 0x8a, 0xce, 0xd7, 0xd3, 0xd3, 0xd2, 0xd6, 0xc2, 0x7e,\n    0x7d, 0x81, 0x7d, 0xaf, 0xdc, 0xc8, 0x8c, 0x74, 0x74, 0x96, 0xdb, 0xd9, 0xd1, 0xcc, 0xd0, 0xcf,\n    0xcc, 0xc7, 0xcf, 0xd4, 0xc2, 0x8a, 0x75, 0x71, 0x7e, 0x9c, 0xb7, 0xc3, 0xcd, 0xbf, 0x84, 0x60,\n    0x94, 0xd0, 0xc9, 0xcb, 0xca, 0xca, 0xb8, 0x7c, 0x6a, 0x84, 0xc7, 0xd1, 0xc3, 0xbf, 0xc0, 0xbf,\n    0xaa, 0x67, 0x65, 0x86, 0xb7, 0xbf, 0xb3, 0xba, 0xb0, 0x96, 0x8e, 0xa4, 0x9e, 0x7f, 0x74, 0x71,\n    0x68, 0x68, 0x66, 0x5e, 0x66, 0x5f, 0x58, 0x52, 0x4e, 0x5d, 0x6f, 0x7e, 0x81, 0x70, 0x5e, 0x5b,\n    0x5d, 0x61, 0x6b, 0x69, 0x69, 0x68, 0x66, 0x56, 0x4e, 0x54, 0x56, 0x58, 0x52, 0x55, 0x57, 0x5d,\n    0x54, 0x55, 0x56, 0x59, 0x60, 0x6a, 0x71, 0x73, 0x66, 0x6f, 0x6c, 0x6d, 0x6c, 0x68, 0x69, 0x5f,\n    0x65, 0x5e, 0x71, 0x62, 0x5b, 0x46, 0x49, 0x4b, 0x4c, 0x4f, 0x53, 0x4c, 0x34, 0x24, 0x33, 0x50,\n    0x6c, 0x6b, 0x62, 0x50, 0x49, 0x54, 0x54, 0x42, 0x3b, 0x36, 0x33, 0x2f, 0x24, 0x22, 0x3a, 0x59,\n    0x6f, 0x74, 0x69, 0x57, 0x52, 0x50, 0x44, 0x37, 0x23, 0x1f, 0x20, 0x2a, 0x3b, 0x4c, 0x55, 0x58,\n    0x53, 0x4b, 0x47, 0x4c, 0x54, 0x58, 0x5b, 0x5e, 0x54, 0x57, 0x59, 0x57, 0x5e, 0x6e, 0x6e, 0x5b,\n    0x49, 0x3d, 0x37, 0x35, 0x32, 0x34, 0x3a, 0x3b, 0x33, 0x36, 0x38, 0x37, 0x35, 0x33, 0x2e, 0x29,\n    0x29, 0x1b, 0x15, 0x21, 0x35, 0x3f, 0x3f, 0x3d, 0x37, 0x39, 0x43, 0x57, 0x6a, 0x76, 0x7a, 0x7b,\n    0x76, 0x83, 0x8a, 0x7d, 0x68, 0x5c, 0x5b, 0x5c, 0x75, 0x84, 0x86, 0x77, 0x66, 0x59, 0x54, 0x58,\n    0x59, 0x4a, 0x3b, 0x33, 0x30, 0x33, 0x3f, 0x4c, 0x56, 0x58, 0x54, 0x49, 0x42, 0x47, 0x54, 0x60,\n    0x53, 0x4b, 0x46, 0x47, 0x45, 0x3e, 0x38, 0x36, 0x42, 0x51, 0x6b, 0x81, 0x86, 0x7c, 0x71, 0x6d,\n    0x69, 0x6b, 0x6c, 0x6e, 0x73, 0x75, 0x6a, 0x5c, 0x66, 0x59, 0x4a, 0x45, 0x49, 0x4e, 0x4d, 0x4a,\n    0x8c, 0x8c, 0x8d, 0x92, 0x96, 0x99, 0x98, 0x95, 0x98, 0x9b, 0xa0, 0xa4, 0xa4, 0xa3, 0xa0, 0x9e,\n    0x97, 0x8f, 0x89, 0x8a, 0x8d, 0x91, 0x95, 0x99, 0x94, 0x95, 0x98, 0x98, 0x8e, 0x7d, 0x72, 0x6f,\n    0x7c, 0x8f, 0xa6, 0xb2, 0xad, 0x9f, 0x90, 0x87, 0x92, 0x94, 0x95, 0x97, 0x9d, 0xa0, 0x98, 0x8c,\n    0x74, 0x7c, 0x85, 0x89, 0x86, 0x84, 0x85, 0x87, 0x89, 0x7b, 0x76, 0x7e, 0x80, 0x7b, 0x82, 0x92,\n    0x96, 0x8f, 0x89, 0x8a, 0x8c, 0x8b, 0x88, 0x86, 0x7a, 0x7c, 0x82, 0x88, 0x8f, 0x98, 0x93, 0x81,\n    0x76, 0x79, 0x78, 0x74, 0x74, 0x79, 0x7c, 0x7b, 0x7a, 0x6c, 0x65, 0x69, 0x69, 0x64, 0x6b, 0x7b,\n    0x72, 0x6c, 0x5e, 0x64, 0x6f, 0x78, 0x85, 0x85, 0x8c, 0x85, 0x7e, 0x7c, 0x7d, 0x7e, 0x7c, 0x79,\n    0x6e, 0x7b, 0x7e, 0x7f, 0x83, 0x7d, 0x77, 0x7d, 0x89, 0x8c, 0x8c, 0x8b, 0x8d, 0x90, 0x8b, 0x82,\n    0x80, 0x89, 0x8d, 0x86, 0x7b, 0x77, 0x7a, 0x7e, 0x91, 0x94, 0x92, 0x90, 0x98, 0x9d, 0x8b, 0x71,\n    0x75, 0x7b, 0x7a, 0x6d, 0x61, 0x5c, 0x5b, 0x59, 0x5e, 0x5f, 0x62, 0x6a, 0x75, 0x78, 0x6e, 0x60,\n    0x55, 0x5a, 0x63, 0x6d, 0x77, 0x7d, 0x7c, 0x78, 0x65, 0x62, 0x64, 0x68, 0x6a, 0x69, 0x6f, 0x77,\n    0x77, 0x70, 0x6a, 0x68, 0x66, 0x62, 0x64, 0x6a, 0x6c, 0x74, 0x7d, 0x83, 0x88, 0x8e, 0x92, 0x92,\n    0x94, 0x96, 0x9a, 0x9d, 0xa0, 0xa3, 0xa5, 0xa7, 0xaa, 0xac, 0xaf, 0xb1, 0xb2, 0xb3, 0xb5, 0xb7,\n    0xb7, 0xb9, 0xbb, 0xbc, 0xbd, 0xbe, 0xc0, 0xc2, 0xc0, 0xc0, 0xc1, 0xc1, 0xc1, 0xc1, 0xc2, 0xc2,\n    0xc2, 0xc2, 0xc1, 0xc0, 0xbe, 0xbc, 0xba, 0xb9, 0xb8, 0xb7, 0xb5, 0xb4, 0xb4, 0xb4, 0xb2, 0xb1,\n    0xb0, 0xaf, 0xae, 0xad, 0xad, 0xac, 0xaa, 0xa8, 0xa8, 0xa5, 0xa3, 0x9e, 0x94, 0x8e, 0x92, 0x9a,\n    0xa2, 0xa8, 0xb1, 0xb9, 0xbd, 0xbf, 0xc0, 0xc1, 0xc4, 0xc8, 0xce, 0xd3, 0xd7, 0xda, 0xdd, 0xdf,\n    0xe0, 0xe0, 0xe0, 0xdd, 0xdb, 0xd9, 0xd9, 0xda, 0xda, 0xdc, 0xdb, 0xd8, 0xd7, 0xd7, 0xd6, 0xd4,\n    0xd4, 0xd2, 0xcf, 0xcd, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xce, 0xd0, 0xd1, 0xd1, 0xd2, 0xd4, 0xd6,\n    0xd2, 0xd2, 0xd3, 0xd6, 0xd9, 0xdc, 0xdf, 0xe0, 0xdd, 0xdb, 0xdb, 0xdc, 0xde, 0xdc, 0xd9, 0xd5,\n    0xdb, 0xda, 0xd9, 0xd8, 0xd6, 0xd3, 0xce, 0xcb, 0xca, 0xcc, 0xcf, 0xd1, 0xd2, 0xd3, 0xd4, 0xd5,\n    0xd3, 0xdd, 0xdf, 0xdb, 0xdc, 0xdc, 0xda, 0xdc, 0xdd, 0xdc, 0xdb, 0xdb, 0xdc, 0xdb, 0xda, 0xd8,\n    0xd8, 0xde, 0xd1, 0xda, 0xc0, 0x81, 0x82, 0x8e, 0xd3, 0xd3, 0xd0, 0xce, 0xcf, 0xd6, 0xb8, 0x77,\n    0x80, 0x81, 0x7b, 0xbb, 0xd9, 0xc5, 0x87, 0x6f, 0x77, 0x8f, 0xd4, 0xcf, 0xcd, 0xc9, 0xd2, 0xcc,\n    0xc6, 0xc8, 0xcc, 0xd5, 0xaa, 0x77, 0x6f, 0x7b, 0x99, 0xbd, 0xcf, 0xc1, 0xbb, 0xbc, 0x8c, 0x70,\n    0x90, 0xd2, 0xcd, 0xcc, 0xc9, 0xc6, 0xc0, 0x7d, 0x6e, 0x83, 0xc1, 0xd1, 0xc2, 0xc0, 0xbe, 0xc0,\n    0xa9, 0x67, 0x65, 0x8c, 0xbb, 0xbe, 0xb8, 0xb9, 0xb3, 0xa9, 0xa7, 0xac, 0x9e, 0x81, 0x71, 0x6d,\n    0x6b, 0x6d, 0x65, 0x5a, 0x5a, 0x58, 0x58, 0x5c, 0x5e, 0x61, 0x5f, 0x60, 0x61, 0x5b, 0x58, 0x5d,\n    0x60, 0x5b, 0x66, 0x65, 0x6f, 0x6c, 0x6e, 0x5f, 0x50, 0x56, 0x55, 0x5d, 0x53, 0x5a, 0x5a, 0x63,\n    0x6e, 0x6b, 0x61, 0x54, 0x51, 0x56, 0x5b, 0x5a, 0x67, 0x70, 0x6a, 0x65, 0x64, 0x66, 0x6b, 0x60,\n    0x53, 0x4e, 0x65, 0x60, 0x5b, 0x49, 0x48, 0x49, 0x42, 0x48, 0x51, 0x4d, 0x37, 0x26, 0x32, 0x4a,\n    0x63, 0x67, 0x5f, 0x4e, 0x4d, 0x58, 0x51, 0x39, 0x2c, 0x34, 0x32, 0x27, 0x26, 0x3a, 0x54, 0x62,\n    0x64, 0x69, 0x63, 0x5b, 0x53, 0x44, 0x31, 0x28, 0x23, 0x20, 0x21, 0x2a, 0x38, 0x46, 0x51, 0x57,\n    0x55, 0x4b, 0x43, 0x45, 0x4a, 0x50, 0x5c, 0x67, 0x71, 0x6c, 0x63, 0x55, 0x4f, 0x57, 0x59, 0x4e,\n    0x4a, 0x41, 0x40, 0x3d, 0x31, 0x2d, 0x37, 0x42, 0x47, 0x52, 0x5a, 0x59, 0x57, 0x58, 0x52, 0x4a,\n    0x3c, 0x36, 0x31, 0x32, 0x33, 0x34, 0x36, 0x39, 0x38, 0x2d, 0x29, 0x38, 0x51, 0x65, 0x6e, 0x70,\n    0x7e, 0x6e, 0x54, 0x3c, 0x36, 0x45, 0x5c, 0x6d, 0x75, 0x7b, 0x7d, 0x7f, 0x82, 0x75, 0x5c, 0x4c,\n    0x3c, 0x40, 0x40, 0x39, 0x38, 0x43, 0x53, 0x5d, 0x4f, 0x47, 0x44, 0x4b, 0x4f, 0x51, 0x55, 0x5d,\n    0x61, 0x58, 0x4e, 0x4c, 0x55, 0x5e, 0x5d, 0x56, 0x48, 0x4a, 0x50, 0x59, 0x5e, 0x63, 0x71, 0x80,\n    0x86, 0x7e, 0x73, 0x69, 0x60, 0x54, 0x45, 0x39, 0x2a, 0x20, 0x25, 0x43, 0x65, 0x76, 0x76, 0x71,\n    0x91, 0x94, 0x98, 0x9b, 0x9c, 0x9b, 0x99, 0x98, 0x96, 0x94, 0x93, 0x95, 0x9b, 0xa1, 0xa5, 0xa6,\n    0xa1, 0x97, 0x8b, 0x87, 0x8c, 0x94, 0x9d, 0xa3, 0x99, 0x96, 0x96, 0x97, 0x90, 0x84, 0x7f, 0x81,\n    0x88, 0x91, 0x9d, 0xa4, 0xa2, 0x9e, 0x9c, 0x9d, 0x99, 0xa0, 0x9e, 0x98, 0x9f, 0xac, 0xa8, 0x97,\n    0x75, 0x7b, 0x82, 0x85, 0x85, 0x82, 0x81, 0x81, 0x75, 0x75, 0x83, 0x93, 0x93, 0x8a, 0x90, 0xa2,\n    0xa3, 0x90, 0x83, 0x85, 0x86, 0x82, 0x82, 0x88, 0x8c, 0x87, 0x84, 0x85, 0x8c, 0x9a, 0x99, 0x89,\n    0x83, 0x83, 0x7d, 0x73, 0x70, 0x73, 0x73, 0x6e, 0x77, 0x6a, 0x66, 0x69, 0x61, 0x55, 0x5d, 0x72,\n    0x74, 0x7a, 0x72, 0x6f, 0x70, 0x78, 0x86, 0x86, 0x85, 0x85, 0x81, 0x74, 0x66, 0x5d, 0x5f, 0x63,\n    0x6d, 0x7f, 0x7f, 0x75, 0x74, 0x74, 0x77, 0x81, 0x8d, 0x8d, 0x8b, 0x87, 0x86, 0x86, 0x7f, 0x77,\n    0x82, 0x87, 0x88, 0x7d, 0x73, 0x73, 0x7e, 0x87, 0x80, 0x7f, 0x7a, 0x7c, 0x8b, 0x96, 0x87, 0x6e,\n    0x7e, 0x81, 0x7c, 0x6e, 0x64, 0x65, 0x69, 0x6b, 0x6e, 0x6f, 0x6b, 0x65, 0x63, 0x66, 0x6a, 0x6c,\n    0x76, 0x7c, 0x7f, 0x7a, 0x73, 0x6e, 0x6a, 0x66, 0x64, 0x60, 0x62, 0x6b, 0x71, 0x71, 0x71, 0x74,\n    0x7e, 0x7c, 0x7a, 0x74, 0x67, 0x5d, 0x61, 0x6c, 0x6d, 0x75, 0x7c, 0x81, 0x86, 0x8d, 0x93, 0x95,\n    0x95, 0x97, 0x9b, 0x9d, 0x9f, 0xa2, 0xa4, 0xa7, 0xa9, 0xac, 0xae, 0xb1, 0xb2, 0xb3, 0xb5, 0xb6,\n    0xb6, 0xb8, 0xba, 0xbb, 0xbc, 0xbd, 0xbf, 0xc1, 0xbf, 0xbf, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0,\n    0xc0, 0xc0, 0xc0, 0xc0, 0xbe, 0xbc, 0xba, 0xb9, 0xba, 0xb8, 0xb6, 0xb5, 0xb4, 0xb3, 0xb1, 0xb0,\n    0xaf, 0xae, 0xad, 0xad, 0xac, 0xac, 0xaa, 0xa8, 0xaa, 0xa6, 0xa4, 0xa0, 0x98, 0x91, 0x95, 0x9e,\n    0xa3, 0xa9, 0xb1, 0xb8, 0xbd, 0xc0, 0xc1, 0xc2, 0xc2, 0xc6, 0xca, 0xcf, 0xd2, 0xd5, 0xd8, 0xda,\n    0xdb, 0xda, 0xd8, 0xd8, 0xd9, 0xd9, 0xd8, 0xd8, 0xd9, 0xda, 0xda, 0xd7, 0xd7, 0xd8, 0xd8, 0xd6,\n    0xd7, 0xd6, 0xd4, 0xd2, 0xd0, 0xcf, 0xcf, 0xcf, 0xce, 0xcf, 0xd0, 0xd0, 0xd1, 0xd1, 0xd2, 0xd3,\n    0xd6, 0xd6, 0xd6, 0xd5, 0xd4, 0xd4, 0xd5, 0xd6, 0xd9, 0xdb, 0xdd, 0xdd, 0xdc, 0xda, 0xd9, 0xd8,\n    0xd9, 0xd8, 0xd7, 0xd7, 0xd5, 0xd2, 0xce, 0xca, 0xcd, 0xcf, 0xd1, 0xd2, 0xd2, 0xd1, 0xd1, 0xd2,\n    0xda, 0xd8, 0xce, 0xca, 0xd2, 0xd8, 0xd9, 0xdd, 0xdd, 0xdc, 0xdc, 0xdc, 0xdc, 0xdb, 0xd9, 0xd7,\n    0xd6, 0xdd, 0xd5, 0xdc, 0xb5, 0x7a, 0x7d, 0x91, 0xd9, 0xd4, 0xd2, 0xcc, 0xd2, 0xd4, 0xa9, 0x74,\n    0x7c, 0x79, 0x7c, 0xc5, 0xda, 0xca, 0x8b, 0x74, 0x7c, 0x86, 0xca, 0xd0, 0xd1, 0xc9, 0xd1, 0xcc,\n    0xc5, 0xcd, 0xc8, 0xc9, 0x8e, 0x73, 0x72, 0x8d, 0xc6, 0xc8, 0xc9, 0xc6, 0xc5, 0xc3, 0x85, 0x71,\n    0x88, 0xcc, 0xcf, 0xcb, 0xc8, 0xc7, 0xcb, 0x89, 0x71, 0x7d, 0xb5, 0xce, 0xc2, 0xc4, 0xbe, 0xc1,\n    0xa9, 0x6d, 0x61, 0x94, 0xbf, 0xb8, 0xbe, 0xb4, 0xb0, 0xae, 0xb1, 0xae, 0x9d, 0x7f, 0x66, 0x61,\n    0x64, 0x6f, 0x6f, 0x68, 0x5e, 0x58, 0x53, 0x58, 0x66, 0x6c, 0x69, 0x63, 0x64, 0x64, 0x62, 0x63,\n    0x6c, 0x6c, 0x6d, 0x5e, 0x72, 0x87, 0x8d, 0x71, 0x53, 0x57, 0x54, 0x5e, 0x55, 0x5c, 0x5b, 0x65,\n    0x66, 0x69, 0x67, 0x60, 0x5f, 0x62, 0x63, 0x5f, 0x68, 0x6e, 0x64, 0x5c, 0x60, 0x6e, 0x7e, 0x7a,\n    0x78, 0x66, 0x68, 0x5b, 0x4f, 0x41, 0x40, 0x44, 0x3d, 0x42, 0x49, 0x47, 0x37, 0x2b, 0x37, 0x4c,\n    0x5f, 0x66, 0x5f, 0x52, 0x54, 0x5a, 0x4c, 0x36, 0x36, 0x39, 0x31, 0x26, 0x2d, 0x48, 0x5f, 0x68,\n    0x6f, 0x6b, 0x63, 0x5a, 0x4b, 0x33, 0x26, 0x2b, 0x3b, 0x31, 0x27, 0x23, 0x25, 0x2e, 0x3d, 0x4b,\n    0x53, 0x51, 0x4c, 0x45, 0x41, 0x46, 0x53, 0x5d, 0x5e, 0x4c, 0x3c, 0x31, 0x2f, 0x3e, 0x51, 0x59,\n    0x55, 0x4a, 0x47, 0x45, 0x39, 0x33, 0x3c, 0x46, 0x5f, 0x6d, 0x79, 0x7a, 0x7b, 0x7d, 0x79, 0x70,\n    0x73, 0x6c, 0x62, 0x53, 0x42, 0x32, 0x28, 0x25, 0x2a, 0x20, 0x1c, 0x27, 0x39, 0x45, 0x47, 0x45,\n    0x2d, 0x26, 0x2d, 0x4b, 0x6a, 0x78, 0x78, 0x75, 0x6d, 0x6f, 0x65, 0x56, 0x4d, 0x47, 0x46, 0x4c,\n    0x45, 0x42, 0x42, 0x48, 0x4f, 0x50, 0x4c, 0x47, 0x47, 0x55, 0x6a, 0x7a, 0x7b, 0x6f, 0x5e, 0x52,\n    0x58, 0x5d, 0x59, 0x4d, 0x4a, 0x4f, 0x4a, 0x3c, 0x3a, 0x34, 0x34, 0x3b, 0x41, 0x3d, 0x37, 0x34,\n    0x31, 0x30, 0x34, 0x39, 0x37, 0x2e, 0x2b, 0x2f, 0x2c, 0x2e, 0x41, 0x61, 0x74, 0x6a, 0x56, 0x49,\n    0x97, 0x97, 0x97, 0x9a, 0x9d, 0xa1, 0xa3, 0xa5, 0x9e, 0x9f, 0xa1, 0xa6, 0xab, 0xae, 0xaf, 0xaf,\n    0xb0, 0xae, 0xaa, 0xa8, 0xa5, 0xa2, 0x9d, 0x9a, 0x92, 0x8c, 0x86, 0x83, 0x7e, 0x78, 0x79, 0x7d,\n    0x78, 0x7d, 0x84, 0x88, 0x87, 0x83, 0x82, 0x84, 0xa3, 0xaf, 0xb3, 0xab, 0xac, 0xb0, 0xa2, 0x8a,\n    0x78, 0x7b, 0x80, 0x84, 0x86, 0x86, 0x84, 0x83, 0x85, 0x82, 0x79, 0x6d, 0x6c, 0x7f, 0x9e, 0xb5,\n    0xa3, 0x95, 0x83, 0x79, 0x7a, 0x7f, 0x83, 0x84, 0x75, 0x6c, 0x69, 0x70, 0x82, 0x9c, 0xac, 0xa9,\n    0x88, 0x85, 0x7e, 0x75, 0x74, 0x78, 0x78, 0x75, 0x67, 0x61, 0x65, 0x70, 0x6a, 0x56, 0x52, 0x5c,\n    0x6e, 0x7f, 0x82, 0x83, 0x80, 0x7f, 0x84, 0x7d, 0x81, 0x89, 0x8d, 0x83, 0x71, 0x66, 0x68, 0x6f,\n    0x72, 0x78, 0x71, 0x63, 0x5f, 0x69, 0x7a, 0x8b, 0x95, 0x94, 0x90, 0x8b, 0x86, 0x82, 0x7a, 0x73,\n    0x65, 0x72, 0x7b, 0x78, 0x6e, 0x68, 0x69, 0x6c, 0x74, 0x6d, 0x6e, 0x79, 0x7f, 0x7a, 0x71, 0x6d,\n    0x71, 0x71, 0x71, 0x71, 0x73, 0x76, 0x75, 0x71, 0x78, 0x75, 0x74, 0x78, 0x7d, 0x7b, 0x73, 0x6b,\n    0x63, 0x69, 0x69, 0x60, 0x5a, 0x5e, 0x67, 0x6c, 0x5f, 0x65, 0x6e, 0x72, 0x70, 0x6b, 0x6a, 0x6d,\n    0x78, 0x7c, 0x7e, 0x78, 0x6b, 0x61, 0x63, 0x6a, 0x78, 0x7c, 0x82, 0x86, 0x89, 0x8b, 0x8e, 0x91,\n    0x94, 0x97, 0x9b, 0x9d, 0x9e, 0xa0, 0xa4, 0xa7, 0xa7, 0xaa, 0xad, 0xaf, 0xb0, 0xb1, 0xb3, 0xb4,\n    0xb6, 0xb7, 0xb9, 0xba, 0xbb, 0xbc, 0xbe, 0xbf, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe,\n    0xbe, 0xbe, 0xbf, 0xbf, 0xbe, 0xbc, 0xba, 0xb9, 0xbb, 0xba, 0xb8, 0xb6, 0xb5, 0xb4, 0xb2, 0xb0,\n    0xaf, 0xae, 0xad, 0xad, 0xad, 0xac, 0xaa, 0xa8, 0xa9, 0xa5, 0xa3, 0xa1, 0x98, 0x91, 0x95, 0xa0,\n    0xa5, 0xab, 0xb2, 0xb9, 0xbe, 0xc0, 0xc2, 0xc4, 0xc6, 0xc8, 0xca, 0xcc, 0xcc, 0xcd, 0xce, 0xcf,\n    0xd3, 0xd2, 0xd2, 0xd4, 0xd7, 0xda, 0xda, 0xda, 0xd9, 0xdb, 0xdb, 0xd9, 0xd9, 0xdc, 0xdd, 0xdb,\n    0xd7, 0xd8, 0xd7, 0xd6, 0xd4, 0xd3, 0xd3, 0xd4, 0xd1, 0xd0, 0xcf, 0xcf, 0xce, 0xcf, 0xd0, 0xd0,\n    0xd4, 0xd4, 0xd4, 0xd2, 0xcf, 0xcd, 0xcd, 0xcd, 0xd3, 0xd7, 0xda, 0xdb, 0xd9, 0xd8, 0xd9, 0xdb,\n    0xd9, 0xd8, 0xd7, 0xd7, 0xd6, 0xd4, 0xd1, 0xcf, 0xce, 0xd1, 0xd3, 0xd3, 0xd1, 0xcf, 0xcf, 0xd0,\n    0xcf, 0xcf, 0xcc, 0xcd, 0xd0, 0xcd, 0xce, 0xd8, 0xda, 0xd9, 0xd7, 0xd6, 0xd5, 0xd4, 0xd1, 0xcf,\n    0xd3, 0xd8, 0xdb, 0xdc, 0xa8, 0x77, 0x78, 0x99, 0xd2, 0xcf, 0xd2, 0xcd, 0xda, 0xd4, 0x9c, 0x7b,\n    0x7a, 0x72, 0x89, 0xcb, 0xd8, 0xcb, 0x8a, 0x77, 0x7c, 0x82, 0xc8, 0xda, 0xd3, 0xc8, 0xcc, 0xca,\n    0xca, 0xd1, 0xc9, 0xb2, 0x7a, 0x73, 0x7a, 0xa5, 0xd2, 0xcc, 0xc6, 0xc3, 0xc4, 0xc9, 0x80, 0x67,\n    0x7c, 0xbd, 0xcf, 0xcb, 0xc9, 0xcb, 0xd3, 0x97, 0x6c, 0x73, 0xa7, 0xc8, 0xc1, 0xc7, 0xbf, 0xc4,\n    0xa9, 0x71, 0x66, 0x9f, 0xc5, 0xb7, 0xc3, 0xb4, 0xb3, 0xb2, 0xb6, 0xaf, 0x9f, 0x7f, 0x5e, 0x5d,\n    0x64, 0x74, 0x76, 0x73, 0x64, 0x5d, 0x55, 0x5a, 0x5d, 0x69, 0x6d, 0x6a, 0x6c, 0x6b, 0x66, 0x65,\n    0x66, 0x63, 0x65, 0x66, 0x77, 0x86, 0x83, 0x6b, 0x58, 0x56, 0x54, 0x5b, 0x59, 0x5b, 0x5c, 0x64,\n    0x68, 0x69, 0x67, 0x61, 0x5b, 0x59, 0x56, 0x53, 0x68, 0x6c, 0x60, 0x5b, 0x61, 0x72, 0x87, 0x87,\n    0x5c, 0x56, 0x69, 0x71, 0x6b, 0x58, 0x44, 0x3d, 0x3c, 0x39, 0x38, 0x33, 0x2a, 0x28, 0x38, 0x4d,\n    0x60, 0x66, 0x61, 0x5a, 0x5c, 0x56, 0x44, 0x35, 0x3a, 0x26, 0x18, 0x25, 0x44, 0x5f, 0x6b, 0x6e,\n    0x71, 0x62, 0x4b, 0x3a, 0x2c, 0x1f, 0x26, 0x3b, 0x42, 0x3a, 0x30, 0x29, 0x21, 0x20, 0x29, 0x34,\n    0x47, 0x4f, 0x50, 0x47, 0x3e, 0x3c, 0x3e, 0x3e, 0x2d, 0x1f, 0x1b, 0x23, 0x31, 0x49, 0x64, 0x73,\n    0x5f, 0x50, 0x48, 0x46, 0x40, 0x43, 0x51, 0x5b, 0x62, 0x70, 0x7d, 0x83, 0x88, 0x8e, 0x8e, 0x88,\n    0x81, 0x77, 0x6d, 0x68, 0x65, 0x5d, 0x4f, 0x44, 0x2c, 0x27, 0x23, 0x23, 0x23, 0x1f, 0x1b, 0x19,\n    0x1a, 0x1c, 0x2c, 0x42, 0x4c, 0x45, 0x3e, 0x3e, 0x35, 0x2e, 0x26, 0x2e, 0x45, 0x50, 0x4c, 0x47,\n    0x40, 0x35, 0x37, 0x48, 0x54, 0x55, 0x57, 0x5f, 0x61, 0x71, 0x7c, 0x7a, 0x75, 0x6a, 0x51, 0x37,\n    0x36, 0x4e, 0x5c, 0x53, 0x48, 0x45, 0x3e, 0x33, 0x29, 0x26, 0x24, 0x25, 0x26, 0x24, 0x20, 0x1b,\n    0x16, 0x27, 0x3e, 0x48, 0x3c, 0x27, 0x1b, 0x1a, 0x1e, 0x20, 0x2a, 0x39, 0x3c, 0x35, 0x34, 0x39,\n    0x98, 0x92, 0x8d, 0x90, 0x99, 0xa2, 0xa6, 0xa6, 0xa4, 0xa8, 0xad, 0xae, 0xac, 0xaa, 0xaa, 0xab,\n    0xb3, 0xb1, 0xac, 0xa4, 0x9b, 0x94, 0x8f, 0x8c, 0x99, 0x96, 0x93, 0x8d, 0x84, 0x7a, 0x73, 0x70,\n    0x6f, 0x6b, 0x69, 0x6c, 0x73, 0x7e, 0x8d, 0x99, 0x9b, 0xa7, 0xb2, 0xb4, 0xb2, 0xaa, 0x97, 0x84,\n    0x74, 0x76, 0x79, 0x7d, 0x80, 0x82, 0x81, 0x81, 0x8b, 0x88, 0x7d, 0x71, 0x75, 0x8c, 0xa3, 0xaf,\n    0x9b, 0x94, 0x87, 0x7c, 0x7c, 0x82, 0x81, 0x7b, 0x76, 0x75, 0x7e, 0x8a, 0x90, 0x93, 0x90, 0x86,\n    0x8a, 0x87, 0x81, 0x7a, 0x76, 0x75, 0x75, 0x75, 0x72, 0x69, 0x68, 0x6e, 0x6a, 0x60, 0x65, 0x73,\n    0x76, 0x7c, 0x7c, 0x84, 0x87, 0x81, 0x80, 0x77, 0x81, 0x76, 0x70, 0x76, 0x83, 0x86, 0x7b, 0x6d,\n    0x68, 0x66, 0x6e, 0x76, 0x74, 0x70, 0x73, 0x78, 0x8d, 0x8f, 0x8f, 0x8c, 0x87, 0x80, 0x77, 0x71,\n    0x7c, 0x82, 0x85, 0x7d, 0x73, 0x72, 0x77, 0x7c, 0x73, 0x6c, 0x6e, 0x78, 0x76, 0x69, 0x64, 0x6a,\n    0x71, 0x71, 0x76, 0x7c, 0x7d, 0x75, 0x6a, 0x63, 0x64, 0x62, 0x6a, 0x7a, 0x82, 0x77, 0x63, 0x54,\n    0x64, 0x70, 0x79, 0x77, 0x73, 0x70, 0x6a, 0x64, 0x66, 0x72, 0x79, 0x74, 0x69, 0x65, 0x69, 0x6f,\n    0x70, 0x71, 0x70, 0x6a, 0x67, 0x68, 0x6a, 0x6c, 0x74, 0x77, 0x7f, 0x88, 0x8b, 0x89, 0x8a, 0x8e,\n    0x93, 0x96, 0x9a, 0x9c, 0x9d, 0x9f, 0xa3, 0xa6, 0xa6, 0xa8, 0xab, 0xae, 0xaf, 0xb0, 0xb1, 0xb2,\n    0xb4, 0xb6, 0xb7, 0xb8, 0xb8, 0xb9, 0xbb, 0xbc, 0xbd, 0xbd, 0xbd, 0xbd, 0xbc, 0xbc, 0xbc, 0xbc,\n    0xbc, 0xbd, 0xbe, 0xbe, 0xbd, 0xbb, 0xb9, 0xb7, 0xb9, 0xb8, 0xb6, 0xb5, 0xb4, 0xb3, 0xb2, 0xb0,\n    0xaf, 0xae, 0xad, 0xad, 0xad, 0xad, 0xab, 0xa9, 0xa8, 0xa3, 0xa1, 0xa0, 0x98, 0x90, 0x95, 0xa1,\n    0xa7, 0xac, 0xb4, 0xb9, 0xbc, 0xbe, 0xc2, 0xc4, 0xc5, 0xc7, 0xc9, 0xca, 0xca, 0xca, 0xca, 0xcb,\n    0xd0, 0xd1, 0xd3, 0xd5, 0xd6, 0xd8, 0xdb, 0xdd, 0xdb, 0xdd, 0xdd, 0xdb, 0xdc, 0xdf, 0xe0, 0xdf,\n    0xda, 0xdb, 0xdb, 0xd9, 0xd6, 0xd4, 0xd4, 0xd5, 0xd4, 0xd2, 0xce, 0xcc, 0xcb, 0xcb, 0xcd, 0xce,\n    0xd1, 0xd3, 0xd5, 0xd6, 0xd6, 0xd5, 0xd6, 0xd7, 0xcf, 0xd1, 0xd4, 0xd4, 0xd2, 0xd1, 0xd3, 0xd5,\n    0xd6, 0xd5, 0xd5, 0xd5, 0xd5, 0xd5, 0xd3, 0xd2, 0xce, 0xd1, 0xd3, 0xd3, 0xd0, 0xce, 0xcf, 0xd0,\n    0xcd, 0xc5, 0xc2, 0xce, 0xda, 0xd5, 0xd2, 0xdb, 0xe0, 0xde, 0xdb, 0xda, 0xd9, 0xd7, 0xd5, 0xd4,\n    0xd4, 0xd2, 0xdb, 0xd1, 0x94, 0x71, 0x76, 0xa8, 0xcd, 0xcd, 0xd1, 0xc9, 0xdb, 0xcd, 0x8d, 0x81,\n    0x7a, 0x70, 0x9c, 0xd0, 0xd3, 0xc7, 0x85, 0x77, 0x7b, 0x81, 0xc2, 0xdb, 0xce, 0xca, 0xca, 0xc7,\n    0xcd, 0xcc, 0xcd, 0x98, 0x74, 0x72, 0x84, 0xbf, 0xc6, 0xc9, 0xc8, 0xc2, 0xc0, 0xce, 0x89, 0x76,\n    0x72, 0xad, 0xd0, 0xc9, 0xc7, 0xc9, 0xce, 0x98, 0x65, 0x6a, 0x9d, 0xc6, 0xbf, 0xc7, 0xbc, 0xc3,\n    0xa3, 0x6b, 0x72, 0xa8, 0xc7, 0xbb, 0xbf, 0xb8, 0xba, 0xb5, 0xb8, 0xb0, 0xa1, 0x7f, 0x5e, 0x66,\n    0x6a, 0x79, 0x78, 0x77, 0x69, 0x66, 0x5d, 0x63, 0x6c, 0x6c, 0x65, 0x5f, 0x5f, 0x61, 0x69, 0x77,\n    0x76, 0x6f, 0x73, 0x87, 0x8a, 0x88, 0x7d, 0x73, 0x5b, 0x54, 0x55, 0x57, 0x5f, 0x5c, 0x61, 0x65,\n    0x61, 0x5f, 0x5d, 0x5d, 0x5d, 0x5e, 0x62, 0x68, 0x69, 0x6e, 0x66, 0x65, 0x69, 0x72, 0x7f, 0x7d,\n    0x68, 0x5e, 0x69, 0x71, 0x69, 0x5c, 0x4c, 0x4a, 0x41, 0x3c, 0x39, 0x38, 0x35, 0x35, 0x40, 0x4e,\n    0x63, 0x65, 0x61, 0x60, 0x5f, 0x4c, 0x37, 0x33, 0x31, 0x27, 0x2a, 0x46, 0x67, 0x76, 0x71, 0x69,\n    0x4d, 0x44, 0x33, 0x27, 0x25, 0x25, 0x2c, 0x39, 0x3a, 0x37, 0x37, 0x38, 0x33, 0x2c, 0x2c, 0x31,\n    0x36, 0x3d, 0x43, 0x43, 0x40, 0x39, 0x2f, 0x26, 0x20, 0x18, 0x19, 0x24, 0x33, 0x4a, 0x5c, 0x60,\n    0x58, 0x4c, 0x47, 0x46, 0x46, 0x51, 0x63, 0x6e, 0x74, 0x7c, 0x83, 0x88, 0x8d, 0x92, 0x93, 0x91,\n    0x95, 0x96, 0x91, 0x84, 0x73, 0x66, 0x5f, 0x5c, 0x55, 0x48, 0x39, 0x2d, 0x24, 0x1e, 0x1a, 0x1a,\n    0x1e, 0x1a, 0x1d, 0x29, 0x34, 0x3a, 0x3c, 0x3d, 0x3a, 0x3e, 0x3c, 0x39, 0x3a, 0x39, 0x3a, 0x41,\n    0x46, 0x5c, 0x70, 0x70, 0x62, 0x5b, 0x64, 0x71, 0x7f, 0x6f, 0x61, 0x63, 0x6b, 0x65, 0x4b, 0x31,\n    0x3c, 0x4b, 0x57, 0x54, 0x4b, 0x42, 0x3a, 0x34, 0x29, 0x2f, 0x31, 0x2b, 0x26, 0x26, 0x24, 0x20,\n    0x2f, 0x45, 0x54, 0x4c, 0x3b, 0x34, 0x37, 0x3b, 0x22, 0x1d, 0x1e, 0x29, 0x32, 0x38, 0x41, 0x4a,\n    0x93, 0x8a, 0x82, 0x86, 0x92, 0x9c, 0x9d, 0x9a, 0x9e, 0x9f, 0x9d, 0x95, 0x8e, 0x91, 0x9c, 0xa7,\n    0xa1, 0xa4, 0xa5, 0x9f, 0x96, 0x8d, 0x87, 0x83, 0x7e, 0x84, 0x8a, 0x8e, 0x8e, 0x8b, 0x86, 0x81,\n    0x7e, 0x7c, 0x7e, 0x83, 0x84, 0x82, 0x81, 0x82, 0x95, 0x96, 0x9a, 0x9b, 0x95, 0x87, 0x7a, 0x74,\n    0x78, 0x78, 0x78, 0x77, 0x76, 0x75, 0x74, 0x73, 0x6f, 0x65, 0x5e, 0x64, 0x73, 0x81, 0x8f, 0x98,\n    0x83, 0x7f, 0x7c, 0x7d, 0x7e, 0x7b, 0x73, 0x6c, 0x6d, 0x6c, 0x78, 0x84, 0x88, 0x8a, 0x8d, 0x8a,\n    0x92, 0x8f, 0x89, 0x80, 0x75, 0x6a, 0x65, 0x64, 0x66, 0x65, 0x6c, 0x73, 0x6e, 0x64, 0x6c, 0x7d,\n    0x85, 0x78, 0x69, 0x74, 0x7e, 0x7b, 0x7c, 0x77, 0x71, 0x6f, 0x6c, 0x6b, 0x6e, 0x75, 0x7d, 0x83,\n    0x7e, 0x69, 0x6e, 0x80, 0x7e, 0x73, 0x73, 0x75, 0x77, 0x7d, 0x82, 0x83, 0x7f, 0x78, 0x6f, 0x69,\n    0x7c, 0x7f, 0x7d, 0x73, 0x69, 0x69, 0x71, 0x78, 0x6c, 0x68, 0x65, 0x65, 0x64, 0x60, 0x5c, 0x5a,\n    0x66, 0x69, 0x72, 0x7a, 0x78, 0x70, 0x6f, 0x73, 0x73, 0x78, 0x81, 0x84, 0x7a, 0x6d, 0x6d, 0x78,\n    0x72, 0x7b, 0x81, 0x81, 0x81, 0x80, 0x78, 0x6d, 0x6b, 0x6c, 0x67, 0x60, 0x5f, 0x66, 0x6b, 0x6a,\n    0x76, 0x70, 0x66, 0x5e, 0x62, 0x6d, 0x72, 0x6f, 0x5f, 0x63, 0x70, 0x82, 0x8a, 0x88, 0x8b, 0x92,\n    0x91, 0x95, 0x99, 0x9b, 0x9b, 0x9e, 0xa2, 0xa6, 0xa6, 0xa8, 0xac, 0xae, 0xaf, 0xb0, 0xb1, 0xb2,\n    0xb3, 0xb5, 0xb6, 0xb7, 0xb7, 0xb7, 0xb9, 0xba, 0xbc, 0xbc, 0xbc, 0xbc, 0xbc, 0xbb, 0xbb, 0xbb,\n    0xbc, 0xbc, 0xbd, 0xbd, 0xbc, 0xb9, 0xb7, 0xb5, 0xb6, 0xb5, 0xb3, 0xb3, 0xb2, 0xb2, 0xb0, 0xaf,\n    0xb0, 0xaf, 0xae, 0xae, 0xae, 0xad, 0xac, 0xaa, 0xab, 0xa5, 0xa4, 0xa3, 0x9c, 0x93, 0x98, 0xa4,\n    0xa7, 0xad, 0xb3, 0xb7, 0xb9, 0xbb, 0xbf, 0xc3, 0xc0, 0xc3, 0xc6, 0xc8, 0xca, 0xcb, 0xcd, 0xcf,\n    0xce, 0xd2, 0xd6, 0xd5, 0xd3, 0xd3, 0xd8, 0xdc, 0xda, 0xdc, 0xdc, 0xda, 0xdb, 0xde, 0xdf, 0xdf,\n    0xde, 0xdf, 0xde, 0xdb, 0xd7, 0xd4, 0xd3, 0xd3, 0xd5, 0xd2, 0xcd, 0xc9, 0xc8, 0xc8, 0xca, 0xcb,\n    0xc7, 0xcb, 0xcf, 0xd2, 0xd3, 0xd4, 0xd6, 0xd8, 0xce, 0xce, 0xce, 0xcd, 0xcc, 0xcb, 0xcb, 0xcb,\n    0xcf, 0xcf, 0xce, 0xce, 0xd0, 0xd0, 0xd0, 0xcf, 0xcc, 0xcf, 0xd2, 0xd2, 0xd0, 0xce, 0xd0, 0xd2,\n    0xd1, 0xab, 0x91, 0xaa, 0xd5, 0xe3, 0xdc, 0xd9, 0xdb, 0xda, 0xd8, 0xd7, 0xd6, 0xd6, 0xd5, 0xd4,\n    0xd8, 0xce, 0xd7, 0xc3, 0x81, 0x6b, 0x76, 0xb6, 0xd4, 0xd3, 0xd3, 0xc5, 0xd6, 0xc0, 0x7a, 0x7c,\n    0x78, 0x6e, 0xab, 0xd5, 0xd3, 0xc8, 0x87, 0x7f, 0x7f, 0x81, 0xba, 0xd5, 0xc8, 0xd0, 0xcd, 0xc5,\n    0xce, 0xc4, 0xd0, 0x87, 0x76, 0x6f, 0x8b, 0xd2, 0xd2, 0xc2, 0xc1, 0xcb, 0xc4, 0xbd, 0x70, 0x6c,\n    0x6f, 0xa6, 0xd2, 0xc8, 0xc3, 0xc3, 0xc3, 0x91, 0x60, 0x66, 0x9a, 0xc6, 0xbd, 0xc3, 0xb7, 0xbf,\n    0x9b, 0x5f, 0x79, 0xa9, 0xc3, 0xbc, 0xb7, 0xb9, 0xbb, 0xb3, 0xb6, 0xae, 0x9f, 0x7e, 0x5f, 0x70,\n    0x69, 0x79, 0x7a, 0x7f, 0x73, 0x71, 0x62, 0x64, 0x5f, 0x5e, 0x5e, 0x60, 0x5e, 0x53, 0x53, 0x62,\n    0x71, 0x76, 0x73, 0x76, 0x6b, 0x77, 0x70, 0x67, 0x5a, 0x4f, 0x53, 0x54, 0x63, 0x5e, 0x66, 0x68,\n    0x6a, 0x66, 0x64, 0x65, 0x61, 0x5b, 0x5c, 0x61, 0x69, 0x70, 0x6e, 0x72, 0x75, 0x75, 0x7a, 0x74,\n    0x62, 0x5a, 0x69, 0x78, 0x75, 0x6f, 0x64, 0x67, 0x5a, 0x48, 0x35, 0x2c, 0x2c, 0x37, 0x4d, 0x61,\n    0x63, 0x63, 0x60, 0x62, 0x5f, 0x44, 0x2c, 0x2f, 0x58, 0x73, 0x8e, 0x95, 0x8b, 0x79, 0x63, 0x52,\n    0x44, 0x3c, 0x28, 0x1a, 0x23, 0x34, 0x3f, 0x44, 0x39, 0x36, 0x38, 0x40, 0x42, 0x40, 0x42, 0x48,\n    0x3a, 0x3b, 0x42, 0x4e, 0x54, 0x4c, 0x3c, 0x30, 0x29, 0x21, 0x1b, 0x1c, 0x29, 0x45, 0x56, 0x55,\n    0x61, 0x59, 0x53, 0x4b, 0x41, 0x44, 0x4e, 0x53, 0x59, 0x58, 0x57, 0x55, 0x54, 0x54, 0x53, 0x52,\n    0x4e, 0x49, 0x47, 0x4d, 0x5a, 0x64, 0x62, 0x5c, 0x47, 0x46, 0x4b, 0x57, 0x5f, 0x56, 0x43, 0x33,\n    0x20, 0x23, 0x22, 0x1c, 0x1b, 0x20, 0x28, 0x2c, 0x35, 0x35, 0x2d, 0x27, 0x26, 0x23, 0x23, 0x2b,\n    0x40, 0x54, 0x59, 0x4f, 0x58, 0x6e, 0x6a, 0x51, 0x3f, 0x3f, 0x51, 0x66, 0x59, 0x39, 0x33, 0x46,\n    0x48, 0x41, 0x40, 0x45, 0x49, 0x45, 0x40, 0x3f, 0x39, 0x39, 0x33, 0x2e, 0x32, 0x3a, 0x35, 0x28,\n    0x3f, 0x56, 0x5a, 0x40, 0x2d, 0x36, 0x47, 0x4e, 0x45, 0x31, 0x20, 0x24, 0x30, 0x37, 0x34, 0x30,\n    0x68, 0x68, 0x68, 0x68, 0x6a, 0x6c, 0x6e, 0x6f, 0x70, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x71, 0x72,\n    0x6d, 0x6e, 0x6f, 0x71, 0x72, 0x74, 0x75, 0x76, 0x76, 0x76, 0x75, 0x74, 0x74, 0x73, 0x72, 0x72,\n    0x6f, 0x72, 0x75, 0x74, 0x70, 0x6e, 0x6e, 0x70, 0x71, 0x73, 0x77, 0x7d, 0x80, 0x7d, 0x75, 0x6e,\n    0x72, 0x71, 0x70, 0x6f, 0x6e, 0x6d, 0x6c, 0x6b, 0x72, 0x72, 0x72, 0x71, 0x71, 0x72, 0x73, 0x73,\n    0x6d, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6d, 0x78, 0x78, 0x79, 0x7a, 0x79, 0x77, 0x75, 0x73,\n    0x75, 0x75, 0x73, 0x6e, 0x66, 0x61, 0x60, 0x61, 0x68, 0x66, 0x64, 0x63, 0x65, 0x68, 0x6c, 0x6e,\n    0x6d, 0x78, 0x84, 0x8a, 0x88, 0x86, 0x88, 0x8b, 0x7c, 0x7e, 0x81, 0x84, 0x86, 0x88, 0x88, 0x89,\n    0x87, 0x87, 0x87, 0x87, 0x88, 0x88, 0x88, 0x88, 0x84, 0x85, 0x85, 0x84, 0x82, 0x7e, 0x7b, 0x79,\n    0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x7f, 0x7b, 0x76, 0x75, 0x78, 0x7a, 0x7a, 0x79,\n    0x7e, 0x7d, 0x7b, 0x7a, 0x7b, 0x7c, 0x7d, 0x7f, 0x7d, 0x7f, 0x82, 0x84, 0x83, 0x81, 0x7d, 0x7a,\n    0x81, 0x81, 0x7f, 0x7d, 0x7b, 0x79, 0x77, 0x76, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78,\n    0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7b, 0x7b, 0x7d, 0x81, 0x84, 0x84, 0x7f, 0x7a, 0x77, 0x77, 0x78, 0x79, 0x7c, 0x7f, 0x82, 0x84,\n    0x85, 0x84, 0x83, 0x82, 0x83, 0x85, 0x88, 0x89, 0x87, 0x87, 0x86, 0x85, 0x83, 0x82, 0x81, 0x81,\n    0x80, 0x80, 0x80, 0x80, 0x81, 0x82, 0x83, 0x83, 0x82, 0x84, 0x86, 0x88, 0x88, 0x86, 0x84, 0x82,\n    0x85, 0x85, 0x84, 0x84, 0x84, 0x85, 0x86, 0x87, 0x85, 0x87, 0x87, 0x83, 0x7e, 0x7c, 0x7c, 0x7e,\n    0x7e, 0x82, 0x86, 0x87, 0x85, 0x83, 0x83, 0x85, 0x86, 0x84, 0x80, 0x7e, 0x7d, 0x7f, 0x81, 0x83,\n    0x87, 0x84, 0x81, 0x7e, 0x7c, 0x7b, 0x7c, 0x7d, 0x7f, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d,\n    0x7e, 0x7e, 0x7e, 0x7d, 0x7c, 0x7c, 0x7b, 0x7b, 0x7e, 0x7e, 0x7d, 0x7d, 0x7c, 0x7c, 0x7b, 0x7b,\n    0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x78, 0x77, 0x77,\n    0x68, 0x68, 0x68, 0x68, 0x6a, 0x6c, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x71, 0x72, 0x72,\n    0x6d, 0x6e, 0x6f, 0x71, 0x72, 0x74, 0x75, 0x76, 0x77, 0x77, 0x76, 0x75, 0x74, 0x73, 0x73, 0x72,\n    0x71, 0x73, 0x76, 0x75, 0x71, 0x6f, 0x70, 0x71, 0x70, 0x72, 0x77, 0x7c, 0x80, 0x7d, 0x76, 0x70,\n    0x72, 0x71, 0x6f, 0x6e, 0x6d, 0x6e, 0x70, 0x70, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x73, 0x73, 0x74, 0x74, 0x73, 0x72, 0x70, 0x6f, 0x77, 0x78, 0x79, 0x79, 0x78, 0x76, 0x74, 0x73,\n    0x6e, 0x70, 0x6f, 0x6c, 0x68, 0x65, 0x66, 0x69, 0x6c, 0x6a, 0x68, 0x65, 0x64, 0x63, 0x64, 0x64,\n    0x6c, 0x76, 0x81, 0x87, 0x86, 0x85, 0x86, 0x88, 0x7b, 0x7c, 0x7f, 0x82, 0x84, 0x86, 0x87, 0x87,\n    0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x87, 0x87, 0x84, 0x85, 0x85, 0x84, 0x82, 0x7f, 0x7b, 0x79,\n    0x7d, 0x7d, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x7e, 0x7a, 0x76, 0x75, 0x78, 0x7b, 0x7c, 0x7b,\n    0x7f, 0x7e, 0x7c, 0x7b, 0x7b, 0x7c, 0x7d, 0x7e, 0x7d, 0x7f, 0x82, 0x84, 0x83, 0x80, 0x7d, 0x7a,\n    0x80, 0x7f, 0x7e, 0x7d, 0x7b, 0x79, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79,\n    0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7c, 0x7c, 0x7d, 0x81, 0x84, 0x83, 0x7e, 0x79, 0x76, 0x78, 0x7a, 0x7d, 0x80, 0x82, 0x83, 0x83,\n    0x82, 0x81, 0x7f, 0x7e, 0x7f, 0x80, 0x83, 0x84, 0x85, 0x85, 0x84, 0x83, 0x83, 0x82, 0x81, 0x81,\n    0x81, 0x81, 0x80, 0x81, 0x81, 0x82, 0x82, 0x82, 0x82, 0x84, 0x86, 0x88, 0x88, 0x86, 0x84, 0x82,\n    0x85, 0x85, 0x84, 0x84, 0x84, 0x85, 0x86, 0x87, 0x85, 0x87, 0x86, 0x83, 0x7e, 0x7b, 0x7c, 0x7e,\n    0x7d, 0x81, 0x85, 0x86, 0x84, 0x82, 0x82, 0x84, 0x84, 0x82, 0x7f, 0x7c, 0x7c, 0x7d, 0x80, 0x81,\n    0x85, 0x83, 0x80, 0x7d, 0x7c, 0x7c, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d,\n    0x7e, 0x7e, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7d, 0x7d, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a,\n    0x7a, 0x79, 0x78, 0x78, 0x77, 0x78, 0x79, 0x79, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x77, 0x77,\n    0x68, 0x68, 0x68, 0x68, 0x6a, 0x6c, 0x6e, 0x6f, 0x6e, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x72, 0x73,\n    0x6d, 0x6e, 0x6f, 0x71, 0x73, 0x74, 0x75, 0x76, 0x79, 0x79, 0x78, 0x77, 0x75, 0x74, 0x73, 0x73,\n    0x72, 0x75, 0x78, 0x77, 0x73, 0x71, 0x72, 0x73, 0x71, 0x72, 0x75, 0x7b, 0x7f, 0x7e, 0x78, 0x73,\n    0x74, 0x71, 0x6e, 0x6c, 0x6d, 0x71, 0x75, 0x79, 0x85, 0x85, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83,\n    0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x77, 0x75, 0x73, 0x77, 0x77, 0x78, 0x78, 0x77, 0x76, 0x75, 0x74,\n    0x6a, 0x6d, 0x6e, 0x6d, 0x6b, 0x6b, 0x6f, 0x73, 0x73, 0x72, 0x6f, 0x6b, 0x67, 0x63, 0x60, 0x5e,\n    0x6d, 0x75, 0x7f, 0x84, 0x85, 0x84, 0x85, 0x86, 0x7a, 0x7c, 0x7e, 0x81, 0x84, 0x85, 0x86, 0x86,\n    0x8a, 0x8a, 0x89, 0x89, 0x88, 0x87, 0x87, 0x87, 0x84, 0x85, 0x85, 0x85, 0x83, 0x80, 0x7c, 0x7a,\n    0x7d, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x7c, 0x78, 0x75, 0x76, 0x7a, 0x7d, 0x7e, 0x7d,\n    0x80, 0x7f, 0x7e, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7e, 0x7f, 0x82, 0x83, 0x82, 0x80, 0x7c, 0x7a,\n    0x7d, 0x7d, 0x7c, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7d, 0x7d, 0x7d, 0x80, 0x82, 0x81, 0x7c, 0x78, 0x76, 0x79, 0x7e, 0x83, 0x85, 0x85, 0x83, 0x82,\n    0x7f, 0x7e, 0x7c, 0x7a, 0x7a, 0x7b, 0x7d, 0x7e, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82,\n    0x81, 0x81, 0x81, 0x82, 0x82, 0x82, 0x82, 0x82, 0x83, 0x84, 0x86, 0x87, 0x87, 0x86, 0x84, 0x83,\n    0x85, 0x85, 0x84, 0x84, 0x84, 0x85, 0x86, 0x87, 0x86, 0x86, 0x86, 0x82, 0x7c, 0x7a, 0x7b, 0x7d,\n    0x7c, 0x80, 0x84, 0x85, 0x82, 0x80, 0x80, 0x82, 0x81, 0x7f, 0x7c, 0x7a, 0x79, 0x7b, 0x7e, 0x80,\n    0x83, 0x81, 0x7f, 0x7d, 0x7c, 0x7c, 0x7e, 0x7f, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7c,\n    0x7e, 0x7d, 0x7d, 0x7c, 0x7c, 0x7b, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x78, 0x78, 0x77, 0x76, 0x76, 0x77, 0x78, 0x78, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x77, 0x77, 0x77,\n    0x68, 0x68, 0x68, 0x68, 0x6a, 0x6c, 0x6e, 0x6f, 0x6e, 0x6e, 0x70, 0x71, 0x72, 0x72, 0x73, 0x72,\n    0x6e, 0x6e, 0x70, 0x71, 0x73, 0x75, 0x76, 0x76, 0x7a, 0x7a, 0x79, 0x78, 0x76, 0x75, 0x74, 0x74,\n    0x75, 0x78, 0x7a, 0x79, 0x76, 0x74, 0x74, 0x76, 0x72, 0x72, 0x74, 0x79, 0x7d, 0x7e, 0x7b, 0x77,\n    0x75, 0x71, 0x6d, 0x6b, 0x6d, 0x73, 0x7a, 0x7f, 0x8a, 0x8a, 0x8a, 0x8a, 0x89, 0x88, 0x86, 0x86,\n    0x82, 0x82, 0x81, 0x80, 0x7e, 0x7b, 0x79, 0x78, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x75, 0x75,\n    0x71, 0x73, 0x74, 0x72, 0x70, 0x71, 0x75, 0x79, 0x7c, 0x7a, 0x78, 0x75, 0x71, 0x6c, 0x68, 0x66,\n    0x73, 0x78, 0x7f, 0x85, 0x87, 0x87, 0x86, 0x86, 0x7b, 0x7d, 0x80, 0x83, 0x85, 0x87, 0x87, 0x88,\n    0x8a, 0x8a, 0x8a, 0x89, 0x88, 0x87, 0x87, 0x86, 0x84, 0x85, 0x86, 0x85, 0x84, 0x80, 0x7d, 0x7b,\n    0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7a, 0x77, 0x75, 0x77, 0x7b, 0x7f, 0x7f, 0x7e,\n    0x80, 0x80, 0x7f, 0x7e, 0x7d, 0x7c, 0x7c, 0x7c, 0x7f, 0x80, 0x81, 0x82, 0x81, 0x7f, 0x7c, 0x7a,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7e, 0x7d, 0x7d, 0x7f, 0x81, 0x80, 0x7b, 0x77, 0x77, 0x7b, 0x81, 0x87, 0x89, 0x87, 0x84, 0x81,\n    0x80, 0x7e, 0x7c, 0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x7f, 0x80, 0x80, 0x81, 0x81, 0x82, 0x82, 0x82,\n    0x81, 0x82, 0x83, 0x83, 0x83, 0x83, 0x82, 0x82, 0x83, 0x84, 0x86, 0x86, 0x86, 0x86, 0x84, 0x83,\n    0x85, 0x85, 0x84, 0x84, 0x84, 0x85, 0x86, 0x87, 0x86, 0x86, 0x85, 0x80, 0x7b, 0x78, 0x7a, 0x7d,\n    0x7b, 0x7f, 0x83, 0x83, 0x81, 0x7e, 0x7f, 0x80, 0x7f, 0x7d, 0x7a, 0x78, 0x77, 0x79, 0x7c, 0x7e,\n    0x80, 0x7f, 0x7d, 0x7c, 0x7c, 0x7d, 0x7f, 0x80, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c,\n    0x7d, 0x7d, 0x7c, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79,\n    0x77, 0x76, 0x76, 0x75, 0x75, 0x76, 0x77, 0x78, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x77, 0x77,\n    0x68, 0x68, 0x68, 0x68, 0x6a, 0x6c, 0x6e, 0x6f, 0x6e, 0x6f, 0x71, 0x72, 0x73, 0x72, 0x72, 0x71,\n    0x6e, 0x6f, 0x70, 0x72, 0x73, 0x75, 0x76, 0x77, 0x79, 0x79, 0x78, 0x78, 0x77, 0x76, 0x76, 0x75,\n    0x78, 0x7b, 0x7d, 0x7c, 0x79, 0x76, 0x77, 0x78, 0x74, 0x73, 0x74, 0x77, 0x7b, 0x7d, 0x7c, 0x79,\n    0x75, 0x72, 0x6e, 0x6c, 0x6e, 0x74, 0x7c, 0x81, 0x88, 0x88, 0x88, 0x88, 0x87, 0x85, 0x83, 0x81,\n    0x83, 0x83, 0x83, 0x82, 0x80, 0x7e, 0x7c, 0x7b, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77,\n    0x7e, 0x7e, 0x7d, 0x79, 0x75, 0x74, 0x77, 0x7b, 0x83, 0x82, 0x80, 0x7e, 0x7c, 0x7a, 0x79, 0x79,\n    0x7c, 0x7e, 0x83, 0x88, 0x8b, 0x8b, 0x88, 0x86, 0x7d, 0x7f, 0x81, 0x84, 0x87, 0x88, 0x89, 0x89,\n    0x89, 0x89, 0x89, 0x88, 0x87, 0x87, 0x86, 0x86, 0x85, 0x85, 0x86, 0x86, 0x84, 0x81, 0x7e, 0x7d,\n    0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x7a, 0x7b, 0x7c, 0x79, 0x77, 0x76, 0x78, 0x7d, 0x80, 0x80, 0x7f,\n    0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x7e, 0x7d, 0x7d, 0x80, 0x80, 0x81, 0x81, 0x80, 0x7e, 0x7b, 0x7a,\n    0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7e, 0x7d, 0x7c, 0x7d, 0x7f, 0x7f, 0x7b, 0x77, 0x78, 0x7c, 0x82, 0x88, 0x8a, 0x88, 0x84, 0x82,\n    0x83, 0x81, 0x7e, 0x7c, 0x7b, 0x7b, 0x7c, 0x7d, 0x7e, 0x7f, 0x7f, 0x80, 0x81, 0x82, 0x82, 0x83,\n    0x81, 0x82, 0x84, 0x85, 0x86, 0x85, 0x85, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x85, 0x85, 0x84,\n    0x85, 0x85, 0x84, 0x84, 0x84, 0x85, 0x86, 0x87, 0x86, 0x86, 0x84, 0x7e, 0x79, 0x77, 0x79, 0x7c,\n    0x7b, 0x7f, 0x83, 0x83, 0x80, 0x7d, 0x7d, 0x7f, 0x7d, 0x7b, 0x79, 0x77, 0x77, 0x79, 0x7c, 0x7e,\n    0x7f, 0x7e, 0x7c, 0x7b, 0x7b, 0x7c, 0x7e, 0x80, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c,\n    0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79,\n    0x77, 0x77, 0x76, 0x76, 0x76, 0x77, 0x79, 0x79, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78,\n    0x68, 0x68, 0x68, 0x68, 0x6a, 0x6c, 0x6e, 0x6f, 0x70, 0x71, 0x73, 0x74, 0x73, 0x72, 0x70, 0x6e,\n    0x6e, 0x6f, 0x70, 0x72, 0x74, 0x75, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77,\n    0x7a, 0x7d, 0x80, 0x7f, 0x7b, 0x79, 0x79, 0x7b, 0x78, 0x75, 0x74, 0x76, 0x7a, 0x7c, 0x7c, 0x7a,\n    0x75, 0x73, 0x70, 0x6e, 0x70, 0x74, 0x7a, 0x7d, 0x82, 0x83, 0x83, 0x83, 0x81, 0x7e, 0x7b, 0x7a,\n    0x7e, 0x7f, 0x7f, 0x80, 0x7f, 0x7e, 0x7d, 0x7d, 0x79, 0x79, 0x78, 0x77, 0x77, 0x78, 0x79, 0x79,\n    0x86, 0x85, 0x82, 0x7c, 0x77, 0x75, 0x77, 0x7b, 0x89, 0x87, 0x83, 0x80, 0x80, 0x82, 0x85, 0x87,\n    0x84, 0x83, 0x85, 0x89, 0x8c, 0x8c, 0x88, 0x83, 0x7c, 0x7e, 0x80, 0x83, 0x85, 0x87, 0x88, 0x88,\n    0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x85, 0x86, 0x86, 0x86, 0x85, 0x82, 0x80, 0x7e,\n    0x7d, 0x7c, 0x7a, 0x79, 0x79, 0x7a, 0x7c, 0x7d, 0x7a, 0x78, 0x77, 0x7a, 0x7e, 0x81, 0x80, 0x7e,\n    0x7e, 0x7f, 0x7f, 0x80, 0x80, 0x80, 0x7f, 0x7e, 0x80, 0x81, 0x81, 0x80, 0x7f, 0x7d, 0x7b, 0x7a,\n    0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7d, 0x7c, 0x7a, 0x7c, 0x7e, 0x7e, 0x7b, 0x78, 0x7a, 0x7d, 0x81, 0x85, 0x87, 0x86, 0x84, 0x82,\n    0x84, 0x82, 0x80, 0x7d, 0x7c, 0x7d, 0x7e, 0x7f, 0x7f, 0x80, 0x80, 0x81, 0x81, 0x82, 0x82, 0x82,\n    0x81, 0x82, 0x85, 0x88, 0x89, 0x89, 0x88, 0x88, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85,\n    0x85, 0x85, 0x84, 0x84, 0x84, 0x85, 0x86, 0x87, 0x86, 0x86, 0x83, 0x7d, 0x77, 0x75, 0x78, 0x7b,\n    0x7c, 0x7f, 0x83, 0x83, 0x80, 0x7d, 0x7d, 0x7e, 0x7e, 0x7c, 0x79, 0x77, 0x78, 0x7a, 0x7d, 0x7f,\n    0x7f, 0x7e, 0x7c, 0x7a, 0x7a, 0x7b, 0x7d, 0x7f, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x79, 0x78, 0x78, 0x78, 0x78, 0x7a, 0x7b, 0x7c, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x68, 0x68, 0x68, 0x68, 0x6a, 0x6c, 0x6e, 0x6f, 0x72, 0x73, 0x75, 0x75, 0x74, 0x71, 0x6e, 0x6c,\n    0x6f, 0x6f, 0x71, 0x72, 0x74, 0x75, 0x77, 0x77, 0x74, 0x74, 0x75, 0x76, 0x77, 0x78, 0x78, 0x79,\n    0x7c, 0x7f, 0x82, 0x81, 0x7d, 0x7b, 0x7b, 0x7d, 0x7b, 0x78, 0x74, 0x75, 0x78, 0x7b, 0x7c, 0x7b,\n    0x74, 0x74, 0x72, 0x72, 0x72, 0x74, 0x76, 0x77, 0x7d, 0x7e, 0x7f, 0x7e, 0x7c, 0x79, 0x75, 0x73,\n    0x77, 0x78, 0x7a, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x79, 0x7b, 0x7c,\n    0x84, 0x84, 0x80, 0x7b, 0x75, 0x74, 0x77, 0x7b, 0x8c, 0x88, 0x80, 0x7b, 0x7a, 0x7e, 0x84, 0x89,\n    0x88, 0x85, 0x84, 0x87, 0x8b, 0x8a, 0x84, 0x7e, 0x77, 0x79, 0x7c, 0x7e, 0x81, 0x82, 0x83, 0x83,\n    0x83, 0x83, 0x84, 0x85, 0x85, 0x86, 0x87, 0x87, 0x85, 0x86, 0x87, 0x87, 0x86, 0x83, 0x80, 0x7f,\n    0x7d, 0x7c, 0x7a, 0x78, 0x78, 0x7a, 0x7c, 0x7e, 0x7b, 0x79, 0x78, 0x7b, 0x7f, 0x81, 0x7f, 0x7d,\n    0x7c, 0x7d, 0x7f, 0x81, 0x82, 0x81, 0x81, 0x80, 0x81, 0x81, 0x80, 0x80, 0x7e, 0x7c, 0x7a, 0x79,\n    0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x7c, 0x7a, 0x79, 0x7b, 0x7e, 0x7f, 0x7c, 0x79, 0x7c, 0x7d, 0x7f, 0x80, 0x82, 0x83, 0x84, 0x84,\n    0x82, 0x81, 0x7f, 0x7d, 0x7c, 0x7d, 0x7f, 0x80, 0x81, 0x81, 0x81, 0x82, 0x82, 0x82, 0x82, 0x82,\n    0x80, 0x82, 0x86, 0x8a, 0x8c, 0x8d, 0x8c, 0x8c, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85,\n    0x85, 0x85, 0x84, 0x84, 0x84, 0x85, 0x86, 0x87, 0x86, 0x86, 0x82, 0x7c, 0x76, 0x74, 0x77, 0x7a,\n    0x7c, 0x80, 0x84, 0x84, 0x80, 0x7d, 0x7d, 0x7e, 0x7f, 0x7d, 0x7a, 0x79, 0x79, 0x7c, 0x7f, 0x81,\n    0x80, 0x7e, 0x7c, 0x7a, 0x79, 0x7a, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b,\n    0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b,\n    0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7e, 0x7f, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x68, 0x68, 0x68, 0x68, 0x6a, 0x6c, 0x6e, 0x6f, 0x74, 0x75, 0x76, 0x76, 0x74, 0x70, 0x6d, 0x6a,\n    0x6f, 0x6f, 0x71, 0x72, 0x74, 0x76, 0x77, 0x77, 0x72, 0x72, 0x74, 0x75, 0x76, 0x78, 0x79, 0x7a,\n    0x7d, 0x80, 0x83, 0x82, 0x7e, 0x7c, 0x7c, 0x7e, 0x7d, 0x79, 0x75, 0x74, 0x77, 0x7a, 0x7b, 0x7b,\n    0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x7a, 0x7b, 0x7c, 0x7c, 0x7a, 0x76, 0x72, 0x6f,\n    0x72, 0x73, 0x76, 0x79, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x7a, 0x7c, 0x7d,\n    0x7f, 0x7f, 0x7c, 0x77, 0x73, 0x73, 0x77, 0x7c, 0x8e, 0x87, 0x7d, 0x75, 0x73, 0x77, 0x7f, 0x84,\n    0x89, 0x85, 0x82, 0x84, 0x88, 0x87, 0x80, 0x79, 0x73, 0x75, 0x77, 0x7a, 0x7d, 0x7e, 0x7f, 0x7f,\n    0x81, 0x81, 0x82, 0x83, 0x85, 0x86, 0x87, 0x87, 0x85, 0x86, 0x87, 0x87, 0x86, 0x84, 0x81, 0x7f,\n    0x7d, 0x7c, 0x79, 0x78, 0x78, 0x7a, 0x7d, 0x7f, 0x7c, 0x7a, 0x79, 0x7c, 0x7f, 0x81, 0x7f, 0x7c,\n    0x7b, 0x7c, 0x7f, 0x81, 0x82, 0x82, 0x82, 0x81, 0x81, 0x81, 0x80, 0x7f, 0x7e, 0x7c, 0x7a, 0x79,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79,\n    0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x7b, 0x79, 0x78, 0x7a, 0x7d, 0x7f, 0x7d, 0x7a, 0x7d, 0x7d, 0x7d, 0x7d, 0x7f, 0x81, 0x83, 0x85,\n    0x80, 0x7f, 0x7d, 0x7b, 0x7b, 0x7c, 0x7e, 0x7f, 0x83, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82,\n    0x80, 0x82, 0x87, 0x8b, 0x8e, 0x8f, 0x8f, 0x8e, 0x86, 0x85, 0x85, 0x84, 0x84, 0x85, 0x85, 0x86,\n    0x85, 0x85, 0x84, 0x84, 0x84, 0x85, 0x86, 0x87, 0x87, 0x85, 0x82, 0x7b, 0x75, 0x73, 0x76, 0x7a,\n    0x7d, 0x81, 0x84, 0x84, 0x81, 0x7e, 0x7d, 0x7e, 0x7f, 0x7e, 0x7b, 0x7a, 0x7a, 0x7d, 0x80, 0x82,\n    0x80, 0x7e, 0x7c, 0x7a, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b,\n    0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c,\n    0x7c, 0x7c, 0x7b, 0x7c, 0x7c, 0x7e, 0x80, 0x81, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d,\n    0x6c, 0x6b, 0x69, 0x68, 0x69, 0x6c, 0x6f, 0x71, 0x7a, 0x77, 0x73, 0x70, 0x6d, 0x6d, 0x6e, 0x6f,\n    0x6e, 0x6e, 0x6f, 0x71, 0x72, 0x73, 0x74, 0x75, 0x75, 0x74, 0x74, 0x74, 0x76, 0x79, 0x7c, 0x7e,\n    0x82, 0x85, 0x87, 0x86, 0x83, 0x83, 0x85, 0x87, 0x83, 0x80, 0x7c, 0x79, 0x79, 0x7c, 0x80, 0x83,\n    0x7a, 0x79, 0x77, 0x75, 0x75, 0x75, 0x76, 0x77, 0x7a, 0x7c, 0x7c, 0x78, 0x72, 0x6d, 0x6c, 0x6d,\n    0x72, 0x74, 0x77, 0x79, 0x7b, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x77, 0x78, 0x78,\n    0x80, 0x80, 0x80, 0x81, 0x83, 0x86, 0x8a, 0x8b, 0x8d, 0x89, 0x83, 0x7f, 0x7e, 0x81, 0x85, 0x88,\n    0x89, 0x87, 0x87, 0x89, 0x8a, 0x87, 0x81, 0x7c, 0x72, 0x79, 0x80, 0x82, 0x80, 0x82, 0x88, 0x8f,\n    0x83, 0x87, 0x8c, 0x8c, 0x89, 0x85, 0x84, 0x84, 0x88, 0x85, 0x82, 0x82, 0x83, 0x81, 0x7d, 0x79,\n    0x7e, 0x7e, 0x7d, 0x7c, 0x7c, 0x7c, 0x7d, 0x7e, 0x7d, 0x7d, 0x7e, 0x80, 0x82, 0x84, 0x86, 0x87,\n    0x7d, 0x7e, 0x81, 0x83, 0x86, 0x88, 0x8a, 0x8b, 0x84, 0x82, 0x7f, 0x7c, 0x7b, 0x7b, 0x7d, 0x7e,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e,\n    0x7e, 0x7d, 0x7d, 0x7c, 0x7d, 0x7e, 0x7f, 0x80, 0x82, 0x82, 0x83, 0x83, 0x84, 0x85, 0x85, 0x85,\n    0x83, 0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x83, 0x84, 0x85, 0x86, 0x86, 0x85, 0x84, 0x83,\n    0x85, 0x84, 0x84, 0x84, 0x84, 0x85, 0x87, 0x87, 0x87, 0x84, 0x80, 0x7c, 0x79, 0x79, 0x79, 0x7a,\n    0x7c, 0x7e, 0x82, 0x84, 0x84, 0x81, 0x7e, 0x7b, 0x7f, 0x7e, 0x7d, 0x7c, 0x7c, 0x7e, 0x80, 0x82,\n    0x80, 0x7e, 0x7b, 0x79, 0x79, 0x7a, 0x7c, 0x7e, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x77, 0x76,\n    0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7e, 0x7e, 0x7f, 0x80, 0x80,\n    0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7d, 0x7d, 0x7b, 0x79, 0x76, 0x74,\n    0x6a, 0x69, 0x68, 0x68, 0x69, 0x6c, 0x70, 0x72, 0x79, 0x76, 0x72, 0x6f, 0x6d, 0x6c, 0x6d, 0x6e,\n    0x6b, 0x6c, 0x6d, 0x6e, 0x6f, 0x71, 0x72, 0x72, 0x75, 0x75, 0x74, 0x74, 0x75, 0x77, 0x7a, 0x7c,\n    0x80, 0x82, 0x84, 0x83, 0x7f, 0x7e, 0x80, 0x82, 0x82, 0x7f, 0x7b, 0x78, 0x78, 0x7a, 0x7d, 0x80,\n    0x76, 0x76, 0x76, 0x77, 0x79, 0x7c, 0x7e, 0x80, 0x80, 0x81, 0x81, 0x7d, 0x76, 0x72, 0x71, 0x72,\n    0x72, 0x74, 0x76, 0x79, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x77, 0x78, 0x78,\n    0x82, 0x82, 0x83, 0x85, 0x87, 0x88, 0x89, 0x8a, 0x8b, 0x88, 0x82, 0x7e, 0x7d, 0x7f, 0x83, 0x85,\n    0x86, 0x85, 0x85, 0x86, 0x87, 0x85, 0x7f, 0x79, 0x75, 0x82, 0x92, 0x9b, 0x9d, 0x9d, 0xa0, 0xa3,\n    0x9b, 0x9e, 0xa0, 0x9e, 0x98, 0x92, 0x8f, 0x8f, 0x90, 0x8e, 0x8d, 0x8e, 0x8e, 0x8b, 0x85, 0x80,\n    0x7e, 0x7d, 0x7d, 0x7d, 0x7e, 0x80, 0x82, 0x83, 0x7d, 0x7c, 0x7c, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d,\n    0x7f, 0x7f, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x85, 0x83, 0x80, 0x7d, 0x7b, 0x7b, 0x7c, 0x7d,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d,\n    0x7e, 0x7d, 0x7d, 0x7c, 0x7d, 0x7e, 0x7f, 0x80, 0x81, 0x81, 0x82, 0x83, 0x83, 0x84, 0x84, 0x85,\n    0x84, 0x84, 0x84, 0x85, 0x86, 0x87, 0x87, 0x88, 0x83, 0x84, 0x85, 0x86, 0x86, 0x85, 0x84, 0x83,\n    0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x82, 0x80, 0x7c, 0x79, 0x78, 0x78, 0x79, 0x7a,\n    0x7c, 0x7d, 0x7f, 0x80, 0x7f, 0x7e, 0x7c, 0x7b, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7c, 0x7e, 0x80,\n    0x7e, 0x7c, 0x79, 0x78, 0x77, 0x78, 0x7a, 0x7c, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7a, 0x78, 0x77,\n    0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x7b, 0x7a, 0x79, 0x77, 0x75, 0x73,\n    0x69, 0x68, 0x68, 0x68, 0x6a, 0x6d, 0x71, 0x73, 0x76, 0x74, 0x71, 0x6e, 0x6c, 0x6b, 0x6c, 0x6c,\n    0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6f, 0x6f, 0x70, 0x76, 0x75, 0x74, 0x73, 0x74, 0x76, 0x78, 0x7a,\n    0x7f, 0x81, 0x82, 0x7f, 0x7b, 0x79, 0x7a, 0x7c, 0x7f, 0x7d, 0x7a, 0x77, 0x76, 0x77, 0x79, 0x7a,\n    0x72, 0x73, 0x75, 0x78, 0x7d, 0x81, 0x85, 0x87, 0x85, 0x86, 0x85, 0x81, 0x7b, 0x77, 0x77, 0x78,\n    0x73, 0x74, 0x76, 0x78, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x77, 0x77, 0x78,\n    0x81, 0x83, 0x86, 0x88, 0x89, 0x88, 0x86, 0x85, 0x88, 0x85, 0x81, 0x7d, 0x7c, 0x7d, 0x80, 0x82,\n    0x84, 0x83, 0x83, 0x84, 0x85, 0x83, 0x7d, 0x77, 0x76, 0x88, 0xa0, 0xb1, 0xb7, 0xb6, 0xb6, 0xb7,\n    0xb5, 0xb6, 0xb5, 0xb0, 0xa7, 0x9f, 0x9b, 0x9a, 0x98, 0x98, 0x99, 0x9b, 0x9b, 0x96, 0x8d, 0x86,\n    0x7c, 0x7d, 0x7e, 0x80, 0x82, 0x86, 0x88, 0x8a, 0x87, 0x86, 0x84, 0x82, 0x81, 0x81, 0x81, 0x81,\n    0x8d, 0x8c, 0x8c, 0x8a, 0x87, 0x84, 0x81, 0x7f, 0x86, 0x84, 0x81, 0x7e, 0x7c, 0x7b, 0x7b, 0x7c,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d,\n    0x7e, 0x7d, 0x7c, 0x7c, 0x7c, 0x7d, 0x7f, 0x7f, 0x80, 0x81, 0x81, 0x82, 0x82, 0x83, 0x83, 0x84,\n    0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x84, 0x85, 0x86, 0x86, 0x85, 0x84, 0x83,\n    0x82, 0x83, 0x84, 0x84, 0x83, 0x81, 0x7e, 0x7c, 0x7c, 0x7a, 0x78, 0x76, 0x76, 0x77, 0x78, 0x7a,\n    0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x79, 0x78, 0x77, 0x78, 0x7a, 0x7c, 0x7e,\n    0x7c, 0x7b, 0x79, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x79,\n    0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7e, 0x7e, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x77, 0x77, 0x77, 0x77, 0x76, 0x74, 0x73, 0x72,\n    0x67, 0x67, 0x68, 0x69, 0x6c, 0x6f, 0x72, 0x74, 0x74, 0x72, 0x70, 0x6d, 0x6b, 0x6a, 0x6a, 0x6b,\n    0x6a, 0x6a, 0x6b, 0x6d, 0x6e, 0x6f, 0x70, 0x71, 0x76, 0x75, 0x73, 0x72, 0x73, 0x74, 0x76, 0x78,\n    0x80, 0x81, 0x82, 0x7f, 0x7a, 0x77, 0x77, 0x79, 0x7c, 0x7b, 0x78, 0x76, 0x74, 0x74, 0x75, 0x75,\n    0x71, 0x72, 0x75, 0x78, 0x7b, 0x7f, 0x82, 0x83, 0x84, 0x85, 0x84, 0x80, 0x7b, 0x78, 0x78, 0x7a,\n    0x74, 0x74, 0x75, 0x76, 0x77, 0x78, 0x78, 0x78, 0x79, 0x79, 0x77, 0x76, 0x76, 0x76, 0x77, 0x78,\n    0x7e, 0x80, 0x83, 0x85, 0x85, 0x83, 0x7f, 0x7d, 0x84, 0x82, 0x7e, 0x7c, 0x7a, 0x7b, 0x7d, 0x7e,\n    0x85, 0x83, 0x83, 0x85, 0x86, 0x83, 0x7d, 0x78, 0x75, 0x85, 0x9a, 0xaa, 0xb0, 0xb3, 0xb6, 0xb9,\n    0xbb, 0xbb, 0xb9, 0xb2, 0xa9, 0xa2, 0x9e, 0x9e, 0x99, 0x9a, 0x9d, 0xa0, 0x9f, 0x98, 0x8d, 0x84,\n    0x7b, 0x7c, 0x7e, 0x81, 0x85, 0x8a, 0x8e, 0x90, 0x98, 0x97, 0x95, 0x94, 0x94, 0x95, 0x96, 0x97,\n    0xa0, 0xa0, 0x9f, 0x9e, 0x9b, 0x97, 0x94, 0x91, 0x86, 0x84, 0x81, 0x7e, 0x7c, 0x7b, 0x7a, 0x7a,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7d, 0x7e, 0x7f, 0x80, 0x80, 0x80, 0x81, 0x82, 0x82, 0x83, 0x83,\n    0x85, 0x85, 0x84, 0x84, 0x83, 0x83, 0x82, 0x82, 0x83, 0x84, 0x85, 0x86, 0x86, 0x85, 0x84, 0x83,\n    0x81, 0x82, 0x84, 0x84, 0x82, 0x7e, 0x7a, 0x78, 0x78, 0x77, 0x76, 0x76, 0x76, 0x78, 0x79, 0x7a,\n    0x7b, 0x7a, 0x78, 0x77, 0x76, 0x76, 0x77, 0x78, 0x77, 0x76, 0x75, 0x74, 0x75, 0x77, 0x7a, 0x7b,\n    0x7d, 0x7c, 0x7b, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b,\n    0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7e, 0x7e, 0x7c, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x78, 0x78,\n    0x7b, 0x7a, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x76, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x72, 0x71,\n    0x68, 0x69, 0x6a, 0x6b, 0x6e, 0x71, 0x73, 0x74, 0x72, 0x71, 0x6f, 0x6d, 0x6b, 0x6a, 0x6a, 0x6a,\n    0x6c, 0x6d, 0x6e, 0x6f, 0x70, 0x72, 0x73, 0x73, 0x76, 0x75, 0x73, 0x72, 0x73, 0x74, 0x76, 0x78,\n    0x82, 0x84, 0x84, 0x80, 0x7b, 0x77, 0x77, 0x79, 0x79, 0x79, 0x77, 0x76, 0x74, 0x73, 0x73, 0x72,\n    0x74, 0x74, 0x75, 0x76, 0x76, 0x77, 0x77, 0x77, 0x7c, 0x7d, 0x7d, 0x7a, 0x75, 0x74, 0x76, 0x79,\n    0x75, 0x75, 0x75, 0x75, 0x75, 0x76, 0x77, 0x77, 0x79, 0x78, 0x77, 0x76, 0x76, 0x76, 0x77, 0x77,\n    0x79, 0x7a, 0x7d, 0x7e, 0x7e, 0x7b, 0x78, 0x76, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x7b, 0x7c, 0x7d,\n    0x86, 0x85, 0x85, 0x86, 0x87, 0x84, 0x7e, 0x79, 0x71, 0x7b, 0x86, 0x8e, 0x93, 0x9a, 0xa4, 0xad,\n    0xb0, 0xb0, 0xad, 0xa7, 0x9f, 0x99, 0x98, 0x99, 0x95, 0x96, 0x98, 0x9a, 0x98, 0x91, 0x85, 0x7c,\n    0x7a, 0x7b, 0x7d, 0x81, 0x86, 0x8b, 0x90, 0x92, 0x9b, 0x9b, 0x9a, 0x9a, 0x9d, 0xa0, 0xa4, 0xa6,\n    0xa4, 0xa5, 0xa6, 0xa6, 0xa5, 0xa2, 0x9f, 0x9d, 0x83, 0x82, 0x80, 0x7e, 0x7c, 0x7a, 0x7a, 0x79,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c,\n    0x7d, 0x7c, 0x7c, 0x7b, 0x7c, 0x7d, 0x7e, 0x7f, 0x80, 0x80, 0x80, 0x81, 0x82, 0x82, 0x83, 0x83,\n    0x85, 0x85, 0x84, 0x83, 0x83, 0x82, 0x81, 0x81, 0x83, 0x84, 0x85, 0x86, 0x86, 0x85, 0x84, 0x83,\n    0x82, 0x82, 0x83, 0x82, 0x80, 0x7e, 0x7b, 0x79, 0x7a, 0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7c,\n    0x7c, 0x7b, 0x79, 0x78, 0x77, 0x77, 0x77, 0x78, 0x75, 0x74, 0x73, 0x73, 0x74, 0x76, 0x79, 0x7b,\n    0x7f, 0x7f, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7b, 0x7c, 0x7d, 0x7d, 0x7e, 0x7d, 0x7c, 0x7b,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x77, 0x77,\n    0x79, 0x79, 0x78, 0x78, 0x77, 0x77, 0x76, 0x76, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73,\n    0x6a, 0x6b, 0x6c, 0x6e, 0x70, 0x72, 0x74, 0x75, 0x71, 0x70, 0x6f, 0x6e, 0x6c, 0x6b, 0x6a, 0x6a,\n    0x6d, 0x6d, 0x6e, 0x70, 0x71, 0x72, 0x73, 0x74, 0x76, 0x75, 0x74, 0x73, 0x74, 0x76, 0x78, 0x7a,\n    0x83, 0x84, 0x84, 0x81, 0x7b, 0x78, 0x78, 0x79, 0x77, 0x77, 0x77, 0x77, 0x76, 0x75, 0x73, 0x72,\n    0x76, 0x76, 0x75, 0x75, 0x73, 0x71, 0x6f, 0x6e, 0x73, 0x74, 0x74, 0x72, 0x6f, 0x6f, 0x73, 0x77,\n    0x75, 0x75, 0x74, 0x73, 0x74, 0x74, 0x75, 0x76, 0x79, 0x78, 0x77, 0x76, 0x75, 0x76, 0x76, 0x77,\n    0x76, 0x76, 0x76, 0x76, 0x75, 0x74, 0x74, 0x73, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7d,\n    0x85, 0x84, 0x84, 0x85, 0x86, 0x84, 0x7e, 0x78, 0x71, 0x75, 0x79, 0x7b, 0x7e, 0x88, 0x97, 0xa4,\n    0xa7, 0xa7, 0xa3, 0x9d, 0x95, 0x91, 0x91, 0x93, 0x91, 0x90, 0x90, 0x90, 0x8e, 0x87, 0x7d, 0x75,\n    0x79, 0x7a, 0x7c, 0x80, 0x84, 0x89, 0x8e, 0x90, 0x91, 0x90, 0x90, 0x91, 0x94, 0x99, 0x9e, 0xa1,\n    0x98, 0x9a, 0x9c, 0x9e, 0x9d, 0x9a, 0x97, 0x95, 0x7f, 0x7f, 0x7e, 0x7c, 0x7b, 0x7a, 0x79, 0x79,\n    0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b,\n    0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79,\n    0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b,\n    0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7c, 0x7e, 0x7e, 0x80, 0x81, 0x81, 0x82, 0x82, 0x83, 0x83, 0x84,\n    0x85, 0x85, 0x84, 0x84, 0x83, 0x83, 0x82, 0x82, 0x83, 0x84, 0x85, 0x86, 0x86, 0x85, 0x84, 0x83,\n    0x84, 0x82, 0x81, 0x7f, 0x7e, 0x7f, 0x80, 0x81, 0x82, 0x81, 0x81, 0x80, 0x80, 0x80, 0x7f, 0x7f,\n    0x7d, 0x7d, 0x7e, 0x7e, 0x7d, 0x7b, 0x79, 0x78, 0x74, 0x74, 0x73, 0x73, 0x74, 0x77, 0x79, 0x7b,\n    0x7f, 0x7f, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c,\n    0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78,\n    0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x75, 0x75, 0x74, 0x74, 0x74, 0x75, 0x76, 0x77,\n    0x6d, 0x6e, 0x6f, 0x71, 0x72, 0x73, 0x74, 0x74, 0x70, 0x70, 0x6f, 0x6f, 0x6d, 0x6c, 0x6b, 0x6a,\n    0x6b, 0x6b, 0x6c, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x75, 0x75, 0x74, 0x74, 0x75, 0x77, 0x7a, 0x7c,\n    0x80, 0x82, 0x82, 0x7f, 0x7a, 0x76, 0x77, 0x78, 0x76, 0x77, 0x78, 0x79, 0x78, 0x77, 0x75, 0x74,\n    0x76, 0x76, 0x76, 0x75, 0x73, 0x71, 0x6e, 0x6d, 0x6b, 0x6d, 0x6d, 0x6c, 0x6b, 0x6c, 0x72, 0x76,\n    0x76, 0x75, 0x74, 0x72, 0x72, 0x73, 0x74, 0x75, 0x79, 0x78, 0x77, 0x76, 0x75, 0x76, 0x76, 0x77,\n    0x77, 0x75, 0x72, 0x70, 0x70, 0x71, 0x74, 0x75, 0x75, 0x76, 0x78, 0x7a, 0x7c, 0x7d, 0x7e, 0x7e,\n    0x81, 0x80, 0x80, 0x81, 0x82, 0x80, 0x7a, 0x74, 0x74, 0x78, 0x7d, 0x7f, 0x82, 0x8c, 0x9b, 0xa8,\n    0xad, 0xab, 0xa6, 0x9d, 0x94, 0x8f, 0x8f, 0x90, 0x92, 0x90, 0x8c, 0x8a, 0x88, 0x82, 0x7a, 0x74,\n    0x78, 0x79, 0x7a, 0x7d, 0x81, 0x86, 0x89, 0x8c, 0x8a, 0x89, 0x87, 0x87, 0x89, 0x8d, 0x91, 0x94,\n    0x90, 0x92, 0x93, 0x94, 0x91, 0x8d, 0x89, 0x85, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x78,\n    0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b,\n    0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79,\n    0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7c, 0x7d, 0x7e, 0x81, 0x81, 0x82, 0x83, 0x83, 0x84, 0x84, 0x85,\n    0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x84, 0x85, 0x86, 0x86, 0x85, 0x84, 0x83,\n    0x86, 0x83, 0x7f, 0x7c, 0x7d, 0x81, 0x86, 0x8a, 0x8b, 0x8a, 0x89, 0x88, 0x87, 0x85, 0x83, 0x82,\n    0x7e, 0x81, 0x84, 0x86, 0x85, 0x81, 0x7c, 0x78, 0x75, 0x74, 0x73, 0x73, 0x75, 0x78, 0x7b, 0x7d,\n    0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7c, 0x7c, 0x7b,\n    0x77, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79,\n    0x75, 0x76, 0x76, 0x77, 0x78, 0x79, 0x79, 0x79, 0x78, 0x77, 0x77, 0x76, 0x77, 0x78, 0x7a, 0x7b,\n    0x6f, 0x70, 0x71, 0x73, 0x74, 0x74, 0x74, 0x74, 0x70, 0x70, 0x70, 0x6f, 0x6e, 0x6d, 0x6b, 0x6a,\n    0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6e, 0x6f, 0x6f, 0x75, 0x74, 0x74, 0x74, 0x76, 0x79, 0x7c, 0x7e,\n    0x7d, 0x7f, 0x7f, 0x7c, 0x77, 0x74, 0x75, 0x76, 0x75, 0x76, 0x78, 0x7a, 0x7a, 0x78, 0x76, 0x75,\n    0x74, 0x75, 0x76, 0x76, 0x75, 0x74, 0x71, 0x70, 0x68, 0x69, 0x6a, 0x6a, 0x69, 0x6c, 0x72, 0x77,\n    0x76, 0x75, 0x73, 0x72, 0x71, 0x72, 0x73, 0x74, 0x78, 0x78, 0x76, 0x75, 0x75, 0x75, 0x76, 0x77,\n    0x79, 0x76, 0x71, 0x6e, 0x6e, 0x71, 0x75, 0x79, 0x73, 0x74, 0x77, 0x7a, 0x7d, 0x7e, 0x7f, 0x7f,\n    0x7e, 0x7c, 0x7c, 0x7d, 0x7f, 0x7c, 0x76, 0x71, 0x77, 0x7f, 0x87, 0x8c, 0x90, 0x98, 0xa5, 0xb0,\n    0xb7, 0xb4, 0xad, 0xa2, 0x97, 0x90, 0x8f, 0x91, 0x95, 0x91, 0x8c, 0x89, 0x86, 0x81, 0x7b, 0x75,\n    0x77, 0x78, 0x79, 0x7c, 0x7f, 0x83, 0x86, 0x88, 0x8d, 0x8b, 0x87, 0x85, 0x85, 0x87, 0x8b, 0x8d,\n    0x92, 0x92, 0x93, 0x92, 0x8e, 0x88, 0x81, 0x7d, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x78,\n    0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b,\n    0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79,\n    0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a,\n    0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7c, 0x7d, 0x7e, 0x82, 0x82, 0x83, 0x83, 0x84, 0x85, 0x85, 0x85,\n    0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x85, 0x83, 0x84, 0x85, 0x86, 0x86, 0x85, 0x84, 0x83,\n    0x87, 0x83, 0x7d, 0x7a, 0x7c, 0x82, 0x8a, 0x90, 0x91, 0x90, 0x8f, 0x8d, 0x8b, 0x88, 0x86, 0x84,\n    0x7f, 0x83, 0x88, 0x8c, 0x8a, 0x85, 0x7d, 0x78, 0x76, 0x75, 0x74, 0x74, 0x76, 0x79, 0x7c, 0x7e,\n    0x78, 0x78, 0x79, 0x79, 0x78, 0x78, 0x77, 0x76, 0x78, 0x79, 0x7a, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b,\n    0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x77, 0x77, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7b,\n    0x74, 0x75, 0x76, 0x77, 0x78, 0x7a, 0x7a, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x79, 0x7a, 0x7d, 0x7e,\n    0x75, 0x76, 0x77, 0x78, 0x78, 0x77, 0x76, 0x75, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6d,\n    0x6a, 0x6b, 0x6b, 0x67, 0x63, 0x62, 0x64, 0x67, 0x70, 0x6f, 0x6f, 0x6e, 0x6d, 0x6e, 0x6e, 0x6e,\n    0x72, 0x76, 0x79, 0x7a, 0x77, 0x75, 0x75, 0x77, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x77,\n    0x72, 0x74, 0x76, 0x78, 0x78, 0x77, 0x74, 0x73, 0x73, 0x72, 0x71, 0x6f, 0x6e, 0x6e, 0x6e, 0x6f,\n    0x74, 0x71, 0x6c, 0x69, 0x67, 0x69, 0x6c, 0x6f, 0x73, 0x73, 0x75, 0x76, 0x76, 0x76, 0x75, 0x75,\n    0x75, 0x70, 0x6b, 0x6a, 0x6c, 0x6f, 0x70, 0x6f, 0x71, 0x73, 0x76, 0x75, 0x74, 0x75, 0x78, 0x7c,\n    0x75, 0x77, 0x79, 0x7a, 0x7a, 0x78, 0x76, 0x74, 0x7a, 0x81, 0x8c, 0x98, 0xa1, 0xa8, 0xac, 0xae,\n    0xb3, 0xb4, 0xb1, 0xa7, 0x9b, 0x94, 0x96, 0x9b, 0x99, 0x8f, 0x83, 0x7a, 0x77, 0x78, 0x78, 0x78,\n    0x74, 0x75, 0x78, 0x7b, 0x7f, 0x83, 0x86, 0x88, 0x8d, 0x8b, 0x89, 0x88, 0x8a, 0x90, 0x95, 0x99,\n    0x95, 0x94, 0x91, 0x8c, 0x86, 0x7f, 0x7a, 0x77, 0x79, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77,\n    0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78,\n    0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78,\n    0x77, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77,\n    0x78, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7c, 0x82, 0x80, 0x7f, 0x81, 0x85, 0x86, 0x85, 0x82,\n    0x7c, 0x81, 0x85, 0x87, 0x86, 0x84, 0x85, 0x87, 0x86, 0x84, 0x82, 0x80, 0x81, 0x83, 0x86, 0x88,\n    0x87, 0x84, 0x7f, 0x7c, 0x7c, 0x80, 0x85, 0x88, 0x89, 0x89, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a,\n    0x87, 0x80, 0x7b, 0x7f, 0x87, 0x8a, 0x83, 0x7b, 0x73, 0x71, 0x70, 0x71, 0x75, 0x7b, 0x82, 0x86,\n    0x7e, 0x7c, 0x78, 0x75, 0x74, 0x75, 0x76, 0x78, 0x7d, 0x7c, 0x7b, 0x79, 0x78, 0x76, 0x75, 0x74,\n    0x77, 0x77, 0x77, 0x76, 0x75, 0x75, 0x75, 0x74, 0x76, 0x77, 0x79, 0x7a, 0x7b, 0x7c, 0x7b, 0x7b,\n    0x7a, 0x79, 0x77, 0x77, 0x77, 0x78, 0x7a, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x78,\n    0x75, 0x76, 0x77, 0x78, 0x78, 0x77, 0x76, 0x75, 0x73, 0x73, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71,\n    0x6f, 0x70, 0x6f, 0x6c, 0x68, 0x67, 0x69, 0x6c, 0x71, 0x70, 0x6e, 0x6c, 0x6a, 0x68, 0x67, 0x67,\n    0x6e, 0x70, 0x72, 0x71, 0x6e, 0x6e, 0x70, 0x73, 0x74, 0x75, 0x76, 0x77, 0x76, 0x74, 0x72, 0x71,\n    0x73, 0x75, 0x77, 0x78, 0x78, 0x76, 0x74, 0x72, 0x73, 0x72, 0x72, 0x71, 0x72, 0x73, 0x74, 0x75,\n    0x73, 0x72, 0x6f, 0x6d, 0x6d, 0x6e, 0x70, 0x72, 0x74, 0x74, 0x75, 0x76, 0x76, 0x75, 0x74, 0x73,\n    0x71, 0x6d, 0x68, 0x68, 0x6b, 0x6e, 0x6f, 0x6f, 0x6d, 0x70, 0x72, 0x72, 0x71, 0x71, 0x74, 0x77,\n    0x72, 0x74, 0x77, 0x79, 0x79, 0x78, 0x76, 0x75, 0x75, 0x80, 0x8e, 0x99, 0xa1, 0xa8, 0xaf, 0xb6,\n    0xb3, 0xb3, 0xae, 0xa3, 0x97, 0x90, 0x93, 0x97, 0x95, 0x8e, 0x84, 0x7e, 0x7c, 0x7b, 0x7a, 0x78,\n    0x76, 0x76, 0x77, 0x7a, 0x7e, 0x84, 0x8a, 0x8d, 0x91, 0x8e, 0x8a, 0x89, 0x8b, 0x90, 0x96, 0x98,\n    0x95, 0x92, 0x8e, 0x88, 0x82, 0x7d, 0x7a, 0x78, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77,\n    0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78,\n    0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78,\n    0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x75, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77,\n    0x78, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x80, 0x7e, 0x7e, 0x81, 0x85, 0x87, 0x86, 0x83,\n    0x83, 0x85, 0x86, 0x84, 0x80, 0x7e, 0x7f, 0x81, 0x82, 0x80, 0x7d, 0x7b, 0x7b, 0x7d, 0x7f, 0x81,\n    0x84, 0x82, 0x7d, 0x7b, 0x7b, 0x7f, 0x84, 0x87, 0x89, 0x89, 0x8a, 0x8a, 0x8b, 0x8b, 0x8c, 0x8c,\n    0x87, 0x81, 0x7c, 0x7f, 0x86, 0x88, 0x82, 0x7a, 0x76, 0x74, 0x71, 0x70, 0x71, 0x74, 0x79, 0x7c,\n    0x7e, 0x7c, 0x79, 0x76, 0x75, 0x76, 0x77, 0x78, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x75,\n    0x79, 0x78, 0x78, 0x78, 0x77, 0x77, 0x76, 0x76, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a,\n    0x79, 0x78, 0x77, 0x77, 0x77, 0x78, 0x7a, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x78,\n    0x75, 0x76, 0x77, 0x78, 0x78, 0x77, 0x76, 0x75, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75,\n    0x73, 0x75, 0x75, 0x72, 0x6e, 0x6c, 0x6e, 0x70, 0x72, 0x71, 0x6e, 0x6b, 0x68, 0x65, 0x62, 0x61,\n    0x6a, 0x6a, 0x69, 0x66, 0x63, 0x65, 0x6b, 0x6f, 0x70, 0x73, 0x76, 0x78, 0x76, 0x72, 0x6d, 0x6a,\n    0x74, 0x75, 0x76, 0x77, 0x76, 0x74, 0x72, 0x70, 0x73, 0x72, 0x72, 0x72, 0x73, 0x74, 0x76, 0x77,\n    0x70, 0x71, 0x72, 0x73, 0x73, 0x74, 0x74, 0x74, 0x75, 0x76, 0x76, 0x76, 0x76, 0x74, 0x73, 0x72,\n    0x6c, 0x68, 0x64, 0x65, 0x69, 0x6d, 0x6f, 0x6f, 0x69, 0x6b, 0x6e, 0x6d, 0x6b, 0x6b, 0x6d, 0x70,\n    0x6e, 0x70, 0x73, 0x75, 0x77, 0x77, 0x77, 0x76, 0x72, 0x80, 0x8f, 0x96, 0x96, 0x99, 0xa3, 0xad,\n    0xb4, 0xb2, 0xab, 0x9e, 0x91, 0x8c, 0x8f, 0x95, 0x92, 0x8e, 0x88, 0x86, 0x85, 0x82, 0x7e, 0x7a,\n    0x78, 0x77, 0x76, 0x77, 0x7d, 0x85, 0x8e, 0x94, 0x97, 0x92, 0x8c, 0x8a, 0x8d, 0x92, 0x95, 0x97,\n    0x93, 0x8f, 0x89, 0x82, 0x7c, 0x7a, 0x7a, 0x7a, 0x78, 0x78, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76,\n    0x75, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78,\n    0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78,\n    0x78, 0x78, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76,\n    0x77, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7a, 0x7d, 0x7c, 0x7c, 0x80, 0x85, 0x88, 0x86, 0x84,\n    0x88, 0x88, 0x85, 0x7f, 0x79, 0x76, 0x78, 0x7b, 0x7d, 0x7b, 0x77, 0x74, 0x73, 0x74, 0x77, 0x78,\n    0x80, 0x7e, 0x7b, 0x79, 0x7a, 0x7e, 0x82, 0x85, 0x87, 0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e,\n    0x86, 0x81, 0x7d, 0x7f, 0x84, 0x85, 0x7f, 0x79, 0x79, 0x76, 0x73, 0x6f, 0x6e, 0x6f, 0x70, 0x72,\n    0x7e, 0x7d, 0x7a, 0x78, 0x77, 0x77, 0x78, 0x79, 0x79, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77,\n    0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7b, 0x79, 0x79,\n    0x79, 0x78, 0x77, 0x77, 0x77, 0x78, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78,\n    0x75, 0x76, 0x77, 0x78, 0x78, 0x77, 0x76, 0x75, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75,\n    0x74, 0x76, 0x77, 0x74, 0x70, 0x6e, 0x6f, 0x71, 0x70, 0x6f, 0x6e, 0x6c, 0x6a, 0x67, 0x64, 0x63,\n    0x68, 0x67, 0x64, 0x5f, 0x5d, 0x60, 0x68, 0x6f, 0x70, 0x73, 0x78, 0x7a, 0x79, 0x73, 0x6c, 0x67,\n    0x70, 0x71, 0x72, 0x72, 0x71, 0x6f, 0x6d, 0x6c, 0x72, 0x71, 0x70, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d,\n    0x6b, 0x6d, 0x70, 0x73, 0x75, 0x75, 0x75, 0x74, 0x76, 0x77, 0x77, 0x76, 0x75, 0x74, 0x72, 0x71,\n    0x69, 0x65, 0x61, 0x62, 0x66, 0x6b, 0x6d, 0x6d, 0x65, 0x68, 0x6a, 0x6a, 0x67, 0x65, 0x67, 0x69,\n    0x69, 0x6b, 0x6e, 0x71, 0x73, 0x74, 0x75, 0x75, 0x71, 0x7f, 0x8d, 0x8f, 0x89, 0x88, 0x92, 0x9e,\n    0xb5, 0xb2, 0xa9, 0x9a, 0x8d, 0x89, 0x8e, 0x95, 0x92, 0x91, 0x90, 0x90, 0x8f, 0x8b, 0x84, 0x7e,\n    0x7a, 0x78, 0x75, 0x75, 0x7c, 0x87, 0x93, 0x9a, 0x9d, 0x95, 0x8c, 0x8a, 0x8e, 0x93, 0x95, 0x94,\n    0x90, 0x8b, 0x83, 0x7c, 0x78, 0x77, 0x79, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x75,\n    0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77,\n    0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77,\n    0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76,\n    0x76, 0x76, 0x77, 0x77, 0x78, 0x79, 0x79, 0x79, 0x7a, 0x79, 0x7b, 0x7f, 0x84, 0x87, 0x85, 0x82,\n    0x85, 0x84, 0x80, 0x79, 0x74, 0x73, 0x77, 0x7b, 0x7d, 0x7a, 0x76, 0x72, 0x70, 0x70, 0x72, 0x73,\n    0x7b, 0x7a, 0x78, 0x77, 0x78, 0x7b, 0x7f, 0x81, 0x83, 0x84, 0x86, 0x87, 0x89, 0x8b, 0x8d, 0x8d,\n    0x84, 0x81, 0x7e, 0x7f, 0x81, 0x81, 0x7c, 0x77, 0x78, 0x76, 0x74, 0x71, 0x70, 0x70, 0x71, 0x71,\n    0x7e, 0x7d, 0x7b, 0x7a, 0x79, 0x79, 0x7a, 0x7a, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x78, 0x77,\n    0x78, 0x77, 0x77, 0x77, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78,\n    0x75, 0x76, 0x77, 0x78, 0x78, 0x77, 0x76, 0x75, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74,\n    0x73, 0x75, 0x76, 0x74, 0x70, 0x6d, 0x6e, 0x70, 0x6d, 0x6e, 0x6e, 0x6e, 0x6e, 0x6c, 0x6a, 0x69,\n    0x68, 0x67, 0x63, 0x5f, 0x5d, 0x61, 0x69, 0x71, 0x72, 0x75, 0x7a, 0x7c, 0x7b, 0x75, 0x6e, 0x69,\n    0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6b, 0x69, 0x69, 0x72, 0x70, 0x6c, 0x68, 0x64, 0x61, 0x60, 0x5f,\n    0x66, 0x68, 0x6c, 0x70, 0x72, 0x73, 0x73, 0x72, 0x76, 0x77, 0x77, 0x76, 0x75, 0x74, 0x72, 0x71,\n    0x69, 0x65, 0x61, 0x61, 0x65, 0x69, 0x6b, 0x6b, 0x63, 0x66, 0x69, 0x68, 0x65, 0x62, 0x62, 0x64,\n    0x66, 0x68, 0x6a, 0x6c, 0x6e, 0x6f, 0x70, 0x70, 0x6c, 0x7a, 0x88, 0x8e, 0x8d, 0x91, 0x9c, 0xa7,\n    0xb5, 0xb1, 0xa6, 0x96, 0x89, 0x87, 0x90, 0x99, 0x96, 0x96, 0x96, 0x98, 0x97, 0x91, 0x88, 0x81,\n    0x7b, 0x78, 0x74, 0x75, 0x7c, 0x88, 0x95, 0x9d, 0xa1, 0x96, 0x8a, 0x88, 0x8d, 0x93, 0x94, 0x91,\n    0x8b, 0x86, 0x7f, 0x79, 0x75, 0x76, 0x78, 0x7a, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75,\n    0x74, 0x74, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76,\n    0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76,\n    0x78, 0x78, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75,\n    0x75, 0x75, 0x76, 0x76, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78, 0x7a, 0x7e, 0x82, 0x83, 0x81, 0x7d,\n    0x7b, 0x7b, 0x79, 0x75, 0x72, 0x74, 0x7a, 0x7f, 0x7f, 0x7c, 0x78, 0x74, 0x71, 0x71, 0x72, 0x73,\n    0x77, 0x76, 0x75, 0x75, 0x76, 0x78, 0x7a, 0x7b, 0x7e, 0x7f, 0x80, 0x82, 0x84, 0x86, 0x88, 0x89,\n    0x80, 0x7e, 0x7d, 0x7d, 0x7d, 0x7c, 0x79, 0x76, 0x73, 0x74, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79,\n    0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x77, 0x77, 0x78, 0x78, 0x79, 0x79, 0x79, 0x7a,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7a, 0x79, 0x77, 0x76,\n    0x76, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x77,\n    0x75, 0x76, 0x77, 0x78, 0x78, 0x77, 0x76, 0x75, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73,\n    0x71, 0x74, 0x76, 0x74, 0x70, 0x6d, 0x6d, 0x6e, 0x6d, 0x6e, 0x6f, 0x70, 0x6f, 0x6d, 0x6b, 0x69,\n    0x68, 0x67, 0x65, 0x61, 0x60, 0x63, 0x6b, 0x71, 0x73, 0x76, 0x79, 0x7b, 0x79, 0x75, 0x70, 0x6d,\n    0x69, 0x69, 0x69, 0x6a, 0x6a, 0x6a, 0x69, 0x69, 0x72, 0x70, 0x6b, 0x66, 0x61, 0x5e, 0x5b, 0x5a,\n    0x66, 0x67, 0x69, 0x6c, 0x6e, 0x71, 0x72, 0x73, 0x75, 0x76, 0x76, 0x76, 0x76, 0x74, 0x73, 0x72,\n    0x6d, 0x68, 0x63, 0x62, 0x65, 0x68, 0x69, 0x68, 0x64, 0x68, 0x6b, 0x6a, 0x66, 0x62, 0x61, 0x62,\n    0x65, 0x65, 0x66, 0x67, 0x68, 0x69, 0x69, 0x6a, 0x66, 0x6f, 0x7e, 0x8c, 0x99, 0xa6, 0xb3, 0xbb,\n    0xb0, 0xaa, 0x9e, 0x8e, 0x83, 0x84, 0x90, 0x9b, 0x9a, 0x99, 0x99, 0x99, 0x97, 0x91, 0x87, 0x7f,\n    0x79, 0x77, 0x75, 0x76, 0x7d, 0x88, 0x94, 0x9b, 0xa2, 0x95, 0x87, 0x85, 0x8c, 0x93, 0x92, 0x8e,\n    0x85, 0x82, 0x7d, 0x78, 0x76, 0x76, 0x77, 0x78, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74,\n    0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76,\n    0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76,\n    0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74,\n    0x74, 0x74, 0x75, 0x75, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x79, 0x7c, 0x7f, 0x7f, 0x7a, 0x76,\n    0x71, 0x73, 0x74, 0x74, 0x73, 0x76, 0x7c, 0x81, 0x82, 0x7f, 0x7a, 0x76, 0x74, 0x74, 0x75, 0x76,\n    0x74, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x77, 0x77, 0x79, 0x7b, 0x7d, 0x7f, 0x80, 0x81,\n    0x7a, 0x7a, 0x7b, 0x7b, 0x79, 0x78, 0x76, 0x75, 0x6f, 0x71, 0x74, 0x77, 0x7a, 0x7c, 0x7e, 0x7e,\n    0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x78, 0x76, 0x75,\n    0x75, 0x76, 0x77, 0x78, 0x79, 0x78, 0x78, 0x77, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77,\n    0x75, 0x76, 0x77, 0x78, 0x78, 0x77, 0x76, 0x75, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74,\n    0x72, 0x75, 0x77, 0x76, 0x71, 0x6e, 0x6e, 0x6f, 0x71, 0x71, 0x71, 0x6f, 0x6c, 0x68, 0x63, 0x60,\n    0x65, 0x66, 0x66, 0x64, 0x62, 0x65, 0x6a, 0x6f, 0x72, 0x73, 0x74, 0x75, 0x74, 0x72, 0x70, 0x6f,\n    0x6a, 0x6a, 0x6b, 0x6b, 0x6c, 0x6d, 0x6e, 0x6e, 0x73, 0x71, 0x6e, 0x6a, 0x67, 0x64, 0x63, 0x62,\n    0x6a, 0x69, 0x69, 0x69, 0x6c, 0x70, 0x74, 0x76, 0x74, 0x74, 0x75, 0x76, 0x76, 0x75, 0x74, 0x73,\n    0x72, 0x6d, 0x67, 0x64, 0x65, 0x67, 0x67, 0x66, 0x67, 0x6b, 0x6e, 0x6c, 0x68, 0x64, 0x62, 0x62,\n    0x65, 0x64, 0x64, 0x63, 0x63, 0x62, 0x63, 0x63, 0x63, 0x65, 0x6e, 0x81, 0x97, 0xa8, 0xb0, 0xb2,\n    0xa7, 0xa1, 0x94, 0x85, 0x7b, 0x7f, 0x8d, 0x9a, 0x9b, 0x99, 0x96, 0x94, 0x91, 0x8a, 0x81, 0x79,\n    0x77, 0x76, 0x76, 0x79, 0x7f, 0x89, 0x92, 0x98, 0xa1, 0x92, 0x83, 0x81, 0x8a, 0x92, 0x91, 0x8c,\n    0x7f, 0x7e, 0x7c, 0x7a, 0x78, 0x77, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74,\n    0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75,\n    0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75,\n    0x76, 0x76, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74,\n    0x73, 0x74, 0x74, 0x75, 0x75, 0x76, 0x77, 0x77, 0x7a, 0x79, 0x79, 0x7b, 0x7c, 0x7a, 0x74, 0x6f,\n    0x6c, 0x70, 0x74, 0x75, 0x75, 0x76, 0x79, 0x7d, 0x82, 0x7f, 0x7b, 0x77, 0x75, 0x75, 0x76, 0x77,\n    0x72, 0x72, 0x73, 0x73, 0x72, 0x71, 0x70, 0x70, 0x70, 0x71, 0x72, 0x74, 0x75, 0x77, 0x78, 0x78,\n    0x74, 0x77, 0x79, 0x78, 0x76, 0x74, 0x74, 0x75, 0x6e, 0x70, 0x74, 0x78, 0x7a, 0x7c, 0x7c, 0x7c,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x77, 0x78, 0x78, 0x79, 0x78, 0x77, 0x76, 0x75,\n    0x75, 0x76, 0x77, 0x78, 0x79, 0x78, 0x77, 0x76, 0x79, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77,\n    0x75, 0x76, 0x77, 0x78, 0x78, 0x77, 0x76, 0x75, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77,\n    0x73, 0x77, 0x79, 0x78, 0x74, 0x70, 0x70, 0x71, 0x74, 0x74, 0x72, 0x6e, 0x68, 0x61, 0x5b, 0x57,\n    0x62, 0x64, 0x66, 0x65, 0x64, 0x65, 0x69, 0x6d, 0x71, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f,\n    0x6c, 0x6c, 0x6d, 0x6e, 0x6f, 0x70, 0x72, 0x73, 0x73, 0x72, 0x70, 0x6f, 0x6e, 0x6d, 0x6d, 0x6e,\n    0x6e, 0x6c, 0x6a, 0x69, 0x6c, 0x71, 0x76, 0x7a, 0x73, 0x73, 0x75, 0x76, 0x76, 0x76, 0x75, 0x75,\n    0x75, 0x70, 0x69, 0x66, 0x66, 0x66, 0x66, 0x64, 0x69, 0x6d, 0x70, 0x6f, 0x6a, 0x65, 0x63, 0x63,\n    0x65, 0x64, 0x62, 0x61, 0x5f, 0x5f, 0x5e, 0x5e, 0x64, 0x60, 0x62, 0x72, 0x89, 0x98, 0x9a, 0x95,\n    0xa0, 0x9a, 0x8d, 0x7e, 0x75, 0x7a, 0x8b, 0x99, 0x9b, 0x97, 0x93, 0x8f, 0x8b, 0x84, 0x7b, 0x74,\n    0x75, 0x75, 0x77, 0x7a, 0x80, 0x89, 0x90, 0x95, 0xa0, 0x90, 0x81, 0x7f, 0x89, 0x91, 0x90, 0x8a,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7a, 0x78, 0x76, 0x74, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x73,\n    0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75,\n    0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75,\n    0x75, 0x75, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74,\n    0x73, 0x73, 0x74, 0x74, 0x75, 0x76, 0x76, 0x76, 0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x77, 0x70, 0x6a,\n    0x6c, 0x71, 0x76, 0x77, 0x76, 0x75, 0x76, 0x78, 0x81, 0x7e, 0x7a, 0x76, 0x74, 0x75, 0x76, 0x78,\n    0x71, 0x72, 0x72, 0x72, 0x71, 0x70, 0x6e, 0x6d, 0x6d, 0x6d, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x73,\n    0x71, 0x74, 0x77, 0x77, 0x74, 0x72, 0x73, 0x75, 0x6e, 0x70, 0x74, 0x77, 0x79, 0x79, 0x78, 0x77,\n    0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b,\n    0x78, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x76, 0x76, 0x77, 0x77, 0x77, 0x76, 0x75, 0x75,\n    0x74, 0x75, 0x77, 0x79, 0x79, 0x78, 0x77, 0x76, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77,\n    0x76, 0x77, 0x77, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x79,\n    0x7b, 0x7a, 0x78, 0x72, 0x6d, 0x6b, 0x6d, 0x71, 0x71, 0x73, 0x72, 0x6e, 0x67, 0x63, 0x62, 0x63,\n    0x64, 0x65, 0x66, 0x68, 0x68, 0x68, 0x67, 0x67, 0x6c, 0x70, 0x74, 0x75, 0x73, 0x72, 0x74, 0x76,\n    0x6c, 0x6c, 0x6b, 0x6c, 0x6c, 0x6e, 0x70, 0x71, 0x71, 0x70, 0x6e, 0x6d, 0x6d, 0x70, 0x73, 0x75,\n    0x6f, 0x6d, 0x6d, 0x6f, 0x74, 0x77, 0x76, 0x74, 0x76, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75,\n    0x6f, 0x6e, 0x6c, 0x6a, 0x68, 0x66, 0x64, 0x63, 0x6f, 0x6d, 0x6a, 0x67, 0x65, 0x64, 0x64, 0x64,\n    0x65, 0x66, 0x66, 0x66, 0x64, 0x62, 0x5f, 0x5d, 0x5d, 0x5d, 0x5f, 0x62, 0x66, 0x6a, 0x6e, 0x70,\n    0x76, 0x75, 0x75, 0x76, 0x78, 0x7a, 0x7d, 0x7f, 0x7a, 0x7b, 0x7d, 0x7f, 0x7f, 0x7d, 0x7b, 0x7a,\n    0x76, 0x76, 0x77, 0x79, 0x7c, 0x7f, 0x81, 0x82, 0x90, 0x8e, 0x8b, 0x8a, 0x8b, 0x8a, 0x86, 0x82,\n    0x7a, 0x7a, 0x79, 0x79, 0x78, 0x77, 0x77, 0x76, 0x74, 0x74, 0x74, 0x73, 0x72, 0x72, 0x72, 0x71,\n    0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75,\n    0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x72, 0x73, 0x74, 0x75, 0x75, 0x74, 0x73, 0x72,\n    0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71,\n    0x73, 0x73, 0x72, 0x73, 0x73, 0x75, 0x77, 0x78, 0x78, 0x78, 0x7a, 0x7a, 0x7a, 0x78, 0x76, 0x75,\n    0x70, 0x6f, 0x70, 0x71, 0x74, 0x78, 0x7c, 0x7e, 0x7f, 0x7e, 0x7c, 0x7a, 0x79, 0x7a, 0x7c, 0x7d,\n    0x78, 0x76, 0x72, 0x6e, 0x6c, 0x6c, 0x6c, 0x6d, 0x6d, 0x6e, 0x6f, 0x71, 0x72, 0x72, 0x72, 0x71,\n    0x6f, 0x71, 0x72, 0x74, 0x75, 0x74, 0x73, 0x72, 0x71, 0x72, 0x74, 0x76, 0x78, 0x7a, 0x7c, 0x7d,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7e, 0x7e, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x79,\n    0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x76,\n    0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b,\n    0x76, 0x76, 0x77, 0x78, 0x7a, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x79,\n    0x7a, 0x79, 0x77, 0x72, 0x6c, 0x69, 0x6b, 0x6e, 0x70, 0x72, 0x71, 0x6d, 0x67, 0x63, 0x63, 0x64,\n    0x63, 0x64, 0x65, 0x66, 0x67, 0x67, 0x66, 0x66, 0x6d, 0x71, 0x75, 0x76, 0x74, 0x73, 0x74, 0x76,\n    0x74, 0x73, 0x71, 0x6f, 0x6d, 0x6d, 0x6d, 0x6d, 0x6f, 0x6e, 0x6c, 0x6b, 0x6c, 0x6e, 0x71, 0x72,\n    0x6f, 0x6d, 0x6d, 0x70, 0x74, 0x77, 0x77, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x74,\n    0x6f, 0x6e, 0x6d, 0x6c, 0x6a, 0x68, 0x67, 0x67, 0x6f, 0x6d, 0x6a, 0x68, 0x66, 0x65, 0x64, 0x65,\n    0x67, 0x68, 0x68, 0x68, 0x67, 0x65, 0x62, 0x61, 0x62, 0x63, 0x63, 0x64, 0x66, 0x69, 0x6b, 0x6c,\n    0x69, 0x68, 0x68, 0x69, 0x6b, 0x6d, 0x6f, 0x71, 0x6d, 0x6f, 0x72, 0x75, 0x76, 0x77, 0x76, 0x76,\n    0x73, 0x74, 0x75, 0x76, 0x78, 0x7a, 0x7b, 0x7c, 0x8b, 0x88, 0x84, 0x83, 0x85, 0x86, 0x84, 0x82,\n    0x7a, 0x7a, 0x79, 0x79, 0x78, 0x77, 0x76, 0x76, 0x74, 0x73, 0x73, 0x73, 0x72, 0x72, 0x71, 0x71,\n    0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75,\n    0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x72, 0x73, 0x74, 0x75, 0x75, 0x74, 0x73, 0x72,\n    0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71,\n    0x72, 0x72, 0x71, 0x71, 0x72, 0x74, 0x75, 0x76, 0x77, 0x77, 0x79, 0x7a, 0x7a, 0x79, 0x78, 0x77,\n    0x73, 0x72, 0x72, 0x73, 0x75, 0x79, 0x7c, 0x7e, 0x81, 0x80, 0x7d, 0x7b, 0x7a, 0x7a, 0x7c, 0x7d,\n    0x77, 0x74, 0x71, 0x6e, 0x6c, 0x6c, 0x6d, 0x6e, 0x68, 0x69, 0x6b, 0x6c, 0x6d, 0x6d, 0x6d, 0x6c,\n    0x70, 0x71, 0x72, 0x74, 0x74, 0x74, 0x73, 0x72, 0x72, 0x73, 0x75, 0x77, 0x79, 0x7b, 0x7d, 0x7e,\n    0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x79, 0x78,\n    0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x76,\n    0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c,\n    0x76, 0x76, 0x77, 0x78, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x78,\n    0x78, 0x78, 0x76, 0x70, 0x6a, 0x67, 0x69, 0x6b, 0x6f, 0x70, 0x70, 0x6d, 0x67, 0x64, 0x64, 0x65,\n    0x64, 0x65, 0x66, 0x67, 0x67, 0x67, 0x66, 0x65, 0x6e, 0x72, 0x76, 0x77, 0x75, 0x73, 0x74, 0x75,\n    0x7b, 0x79, 0x75, 0x71, 0x6e, 0x6b, 0x69, 0x69, 0x6c, 0x6b, 0x69, 0x69, 0x69, 0x6b, 0x6e, 0x6f,\n    0x6f, 0x6d, 0x6d, 0x70, 0x75, 0x78, 0x77, 0x76, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74,\n    0x6f, 0x6f, 0x6e, 0x6d, 0x6d, 0x6c, 0x6c, 0x6b, 0x6e, 0x6c, 0x6a, 0x68, 0x66, 0x66, 0x65, 0x65,\n    0x68, 0x69, 0x69, 0x69, 0x68, 0x67, 0x65, 0x65, 0x68, 0x67, 0x67, 0x66, 0x67, 0x68, 0x69, 0x6a,\n    0x65, 0x65, 0x65, 0x66, 0x67, 0x69, 0x6b, 0x6c, 0x63, 0x65, 0x68, 0x6b, 0x6e, 0x70, 0x72, 0x72,\n    0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x73, 0x74, 0x83, 0x7e, 0x7a, 0x79, 0x7c, 0x80, 0x81, 0x81,\n    0x7a, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x75, 0x75, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72, 0x71, 0x71,\n    0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x75, 0x75,\n    0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x72, 0x73, 0x74, 0x75, 0x75, 0x74, 0x73, 0x72,\n    0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71,\n    0x71, 0x70, 0x70, 0x70, 0x71, 0x72, 0x73, 0x74, 0x75, 0x76, 0x78, 0x79, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x76, 0x75, 0x74, 0x74, 0x76, 0x78, 0x7b, 0x7d, 0x83, 0x81, 0x7e, 0x7b, 0x79, 0x79, 0x79, 0x7a,\n    0x74, 0x72, 0x70, 0x6e, 0x6d, 0x6e, 0x6f, 0x70, 0x6c, 0x6d, 0x6f, 0x70, 0x71, 0x71, 0x70, 0x70,\n    0x70, 0x71, 0x72, 0x73, 0x73, 0x73, 0x72, 0x72, 0x73, 0x74, 0x75, 0x77, 0x79, 0x7b, 0x7c, 0x7d,\n    0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x7b, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x77, 0x77,\n    0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78,\n    0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d,\n    0x75, 0x76, 0x77, 0x78, 0x7a, 0x7b, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x79, 0x78, 0x77, 0x77,\n    0x76, 0x76, 0x75, 0x70, 0x6a, 0x66, 0x67, 0x69, 0x6d, 0x6f, 0x70, 0x6d, 0x68, 0x66, 0x66, 0x68,\n    0x68, 0x68, 0x69, 0x6a, 0x6a, 0x6a, 0x69, 0x68, 0x6e, 0x73, 0x78, 0x79, 0x76, 0x73, 0x73, 0x74,\n    0x78, 0x76, 0x73, 0x6f, 0x6c, 0x6a, 0x68, 0x68, 0x68, 0x68, 0x67, 0x67, 0x67, 0x69, 0x6b, 0x6c,\n    0x6f, 0x6d, 0x6d, 0x70, 0x75, 0x78, 0x78, 0x76, 0x75, 0x75, 0x75, 0x74, 0x74, 0x73, 0x73, 0x72,\n    0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x6c, 0x6c, 0x6a, 0x69, 0x68, 0x67, 0x66, 0x66,\n    0x67, 0x68, 0x67, 0x67, 0x67, 0x66, 0x65, 0x65, 0x68, 0x67, 0x67, 0x67, 0x68, 0x69, 0x6b, 0x6b,\n    0x70, 0x70, 0x71, 0x71, 0x72, 0x73, 0x74, 0x75, 0x67, 0x67, 0x68, 0x6a, 0x6c, 0x6f, 0x71, 0x72,\n    0x74, 0x74, 0x73, 0x73, 0x72, 0x70, 0x6f, 0x6e, 0x79, 0x74, 0x6f, 0x6f, 0x74, 0x7a, 0x7e, 0x7f,\n    0x7a, 0x7a, 0x79, 0x78, 0x76, 0x75, 0x74, 0x74, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71,\n    0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x75,\n    0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x72, 0x73, 0x74, 0x75, 0x75, 0x74, 0x73, 0x72,\n    0x73, 0x73, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71,\n    0x70, 0x6f, 0x6f, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x73, 0x74, 0x76, 0x78, 0x7a, 0x7b, 0x7c, 0x7d,\n    0x77, 0x76, 0x75, 0x74, 0x74, 0x76, 0x78, 0x7a, 0x81, 0x7f, 0x7b, 0x78, 0x75, 0x74, 0x75, 0x75,\n    0x72, 0x71, 0x70, 0x6f, 0x6f, 0x70, 0x71, 0x72, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b, 0x7a,\n    0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x71, 0x72, 0x73, 0x75, 0x77, 0x78, 0x7a, 0x7a,\n    0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x79, 0x79, 0x78, 0x77, 0x76, 0x76, 0x77, 0x77,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x78, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a,\n    0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d,\n    0x74, 0x75, 0x76, 0x78, 0x7a, 0x7c, 0x7d, 0x7e, 0x7d, 0x7d, 0x7c, 0x7a, 0x79, 0x77, 0x76, 0x76,\n    0x74, 0x75, 0x74, 0x70, 0x6a, 0x67, 0x68, 0x6a, 0x6c, 0x6f, 0x70, 0x6e, 0x6a, 0x68, 0x6a, 0x6c,\n    0x6d, 0x6d, 0x6e, 0x6f, 0x6f, 0x6e, 0x6d, 0x6c, 0x6f, 0x73, 0x78, 0x79, 0x76, 0x73, 0x71, 0x72,\n    0x6e, 0x6d, 0x6c, 0x6a, 0x69, 0x69, 0x69, 0x69, 0x66, 0x66, 0x66, 0x66, 0x67, 0x68, 0x69, 0x6a,\n    0x6d, 0x6c, 0x6c, 0x6f, 0x74, 0x78, 0x78, 0x76, 0x75, 0x75, 0x74, 0x74, 0x73, 0x72, 0x71, 0x71,\n    0x6c, 0x6d, 0x6d, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6b, 0x6b, 0x6a, 0x6a, 0x69, 0x68, 0x67, 0x67,\n    0x66, 0x66, 0x65, 0x64, 0x63, 0x62, 0x62, 0x62, 0x64, 0x64, 0x64, 0x66, 0x68, 0x6a, 0x6c, 0x6e,\n    0x75, 0x75, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x70, 0x70, 0x6e, 0x6e, 0x6e, 0x70, 0x72, 0x73,\n    0x76, 0x76, 0x76, 0x75, 0x72, 0x6f, 0x6c, 0x6b, 0x70, 0x6c, 0x69, 0x6b, 0x71, 0x78, 0x7c, 0x7d,\n    0x7a, 0x79, 0x78, 0x77, 0x76, 0x74, 0x73, 0x73, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71,\n    0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74,\n    0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x72, 0x73, 0x74, 0x75, 0x75, 0x74, 0x73, 0x72,\n    0x72, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70,\n    0x6f, 0x6f, 0x6e, 0x6d, 0x6e, 0x6f, 0x70, 0x70, 0x72, 0x72, 0x74, 0x76, 0x78, 0x7a, 0x7c, 0x7d,\n    0x77, 0x76, 0x74, 0x73, 0x73, 0x74, 0x76, 0x77, 0x7e, 0x7b, 0x78, 0x74, 0x71, 0x70, 0x70, 0x71,\n    0x71, 0x71, 0x71, 0x71, 0x71, 0x72, 0x73, 0x74, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c,\n    0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x72, 0x6f, 0x70, 0x71, 0x72, 0x74, 0x75, 0x76, 0x77,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x77, 0x76, 0x76, 0x77, 0x78, 0x78,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c,\n    0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d,\n    0x74, 0x75, 0x76, 0x78, 0x7a, 0x7c, 0x7d, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x78, 0x76, 0x75, 0x74,\n    0x73, 0x74, 0x75, 0x72, 0x6d, 0x6a, 0x6b, 0x6c, 0x6c, 0x6f, 0x71, 0x70, 0x6d, 0x6c, 0x6d, 0x70,\n    0x6f, 0x70, 0x70, 0x71, 0x70, 0x6f, 0x6e, 0x6d, 0x6e, 0x73, 0x78, 0x79, 0x76, 0x71, 0x6f, 0x6f,\n    0x69, 0x69, 0x68, 0x67, 0x68, 0x69, 0x6a, 0x6a, 0x66, 0x66, 0x66, 0x67, 0x67, 0x68, 0x69, 0x69,\n    0x6c, 0x6a, 0x6a, 0x6e, 0x73, 0x77, 0x77, 0x75, 0x75, 0x75, 0x74, 0x73, 0x72, 0x71, 0x70, 0x70,\n    0x6a, 0x6a, 0x6a, 0x6b, 0x6b, 0x6c, 0x6c, 0x6d, 0x69, 0x6a, 0x6a, 0x6b, 0x6a, 0x69, 0x68, 0x67,\n    0x67, 0x66, 0x64, 0x62, 0x61, 0x60, 0x60, 0x60, 0x63, 0x63, 0x63, 0x64, 0x65, 0x68, 0x6a, 0x6b,\n    0x6a, 0x6b, 0x6c, 0x6c, 0x6c, 0x6c, 0x6b, 0x6a, 0x70, 0x6f, 0x6c, 0x6b, 0x6c, 0x6e, 0x71, 0x73,\n    0x77, 0x77, 0x77, 0x76, 0x73, 0x6f, 0x6b, 0x68, 0x69, 0x67, 0x67, 0x6b, 0x72, 0x78, 0x7b, 0x7b,\n    0x7a, 0x79, 0x78, 0x76, 0x75, 0x73, 0x72, 0x71, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x71, 0x71,\n    0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74,\n    0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x72, 0x73, 0x74, 0x75, 0x75, 0x74, 0x73, 0x72,\n    0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70,\n    0x70, 0x6f, 0x6e, 0x6d, 0x6d, 0x6e, 0x6f, 0x70, 0x71, 0x71, 0x72, 0x73, 0x76, 0x78, 0x7b, 0x7c,\n    0x79, 0x77, 0x75, 0x74, 0x74, 0x76, 0x78, 0x79, 0x7c, 0x7a, 0x77, 0x73, 0x71, 0x70, 0x70, 0x71,\n    0x72, 0x72, 0x73, 0x73, 0x74, 0x75, 0x75, 0x75, 0x73, 0x74, 0x75, 0x75, 0x75, 0x75, 0x74, 0x73,\n    0x73, 0x72, 0x71, 0x70, 0x70, 0x70, 0x71, 0x71, 0x70, 0x70, 0x71, 0x73, 0x74, 0x75, 0x76, 0x77,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x78, 0x77, 0x77, 0x78, 0x7a, 0x7b,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d,\n    0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7f, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d,\n    0x74, 0x74, 0x76, 0x78, 0x7a, 0x7c, 0x7e, 0x7f, 0x7d, 0x7c, 0x7b, 0x79, 0x77, 0x76, 0x74, 0x74,\n    0x72, 0x74, 0x76, 0x74, 0x70, 0x6d, 0x6e, 0x70, 0x6d, 0x6f, 0x72, 0x71, 0x6f, 0x6e, 0x71, 0x73,\n    0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6e, 0x6c, 0x6b, 0x6d, 0x72, 0x78, 0x78, 0x75, 0x70, 0x6d, 0x6c,\n    0x6d, 0x6c, 0x6a, 0x69, 0x68, 0x68, 0x69, 0x69, 0x66, 0x66, 0x67, 0x68, 0x69, 0x69, 0x69, 0x69,\n    0x6a, 0x68, 0x68, 0x6c, 0x72, 0x76, 0x76, 0x74, 0x75, 0x75, 0x74, 0x73, 0x71, 0x70, 0x70, 0x6f,\n    0x67, 0x67, 0x67, 0x68, 0x68, 0x68, 0x69, 0x69, 0x68, 0x69, 0x6a, 0x6b, 0x6b, 0x6a, 0x69, 0x68,\n    0x6c, 0x6a, 0x67, 0x64, 0x62, 0x61, 0x61, 0x61, 0x67, 0x66, 0x65, 0x63, 0x62, 0x61, 0x61, 0x62,\n    0x5d, 0x5e, 0x5f, 0x60, 0x5f, 0x5e, 0x5d, 0x5c, 0x62, 0x60, 0x5f, 0x5f, 0x62, 0x67, 0x6d, 0x70,\n    0x75, 0x75, 0x75, 0x74, 0x71, 0x6c, 0x68, 0x65, 0x65, 0x65, 0x68, 0x6f, 0x76, 0x7b, 0x7a, 0x79,\n    0x7a, 0x79, 0x78, 0x76, 0x74, 0x72, 0x71, 0x70, 0x6e, 0x6e, 0x6f, 0x6f, 0x70, 0x70, 0x71, 0x71,\n    0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x74,\n    0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x72, 0x73, 0x74, 0x75, 0x75, 0x74, 0x73, 0x72,\n    0x72, 0x72, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70,\n    0x70, 0x6f, 0x6e, 0x6e, 0x6d, 0x6e, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x71, 0x73, 0x76, 0x79, 0x7b,\n    0x7d, 0x7b, 0x7a, 0x79, 0x79, 0x7b, 0x7d, 0x7e, 0x7e, 0x7c, 0x79, 0x76, 0x74, 0x74, 0x74, 0x75,\n    0x74, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x76, 0x72, 0x72, 0x73, 0x74, 0x74, 0x73, 0x72, 0x71,\n    0x74, 0x73, 0x71, 0x70, 0x6f, 0x70, 0x70, 0x71, 0x74, 0x74, 0x75, 0x76, 0x78, 0x79, 0x7a, 0x7a,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7d, 0x7b, 0x79, 0x78, 0x78, 0x7a, 0x7c, 0x7e,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7c, 0x7d, 0x7e, 0x7e, 0x7f,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c,\n    0x73, 0x74, 0x76, 0x78, 0x7a, 0x7c, 0x7e, 0x7f, 0x7d, 0x7c, 0x7b, 0x79, 0x77, 0x75, 0x74, 0x73,\n    0x71, 0x74, 0x76, 0x75, 0x72, 0x70, 0x71, 0x73, 0x6d, 0x70, 0x72, 0x72, 0x70, 0x70, 0x73, 0x76,\n    0x6c, 0x6c, 0x6d, 0x6d, 0x6c, 0x6b, 0x6a, 0x69, 0x6c, 0x72, 0x77, 0x78, 0x74, 0x6f, 0x6c, 0x6b,\n    0x73, 0x71, 0x6f, 0x6c, 0x6a, 0x68, 0x68, 0x67, 0x67, 0x67, 0x68, 0x69, 0x6a, 0x6a, 0x6a, 0x6a,\n    0x69, 0x67, 0x67, 0x6b, 0x71, 0x75, 0x75, 0x74, 0x75, 0x74, 0x74, 0x72, 0x71, 0x70, 0x6f, 0x6f,\n    0x65, 0x65, 0x65, 0x66, 0x66, 0x66, 0x66, 0x66, 0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6b, 0x69, 0x68,\n    0x70, 0x6e, 0x6a, 0x67, 0x64, 0x63, 0x62, 0x62, 0x6d, 0x6b, 0x67, 0x63, 0x5f, 0x5c, 0x5a, 0x59,\n    0x58, 0x59, 0x5a, 0x5b, 0x5b, 0x59, 0x57, 0x56, 0x52, 0x51, 0x51, 0x53, 0x59, 0x61, 0x69, 0x6e,\n    0x72, 0x72, 0x73, 0x71, 0x6e, 0x69, 0x65, 0x62, 0x63, 0x65, 0x6a, 0x72, 0x7a, 0x7d, 0x7a, 0x77,\n    0x7a, 0x79, 0x78, 0x76, 0x74, 0x72, 0x71, 0x70, 0x6e, 0x6e, 0x6e, 0x6f, 0x70, 0x70, 0x70, 0x71,\n    0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73,\n    0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x72, 0x73, 0x74, 0x75, 0x75, 0x74, 0x73, 0x72,\n    0x72, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70,\n    0x71, 0x70, 0x6f, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x72, 0x75, 0x77, 0x79,\n    0x80, 0x7f, 0x7e, 0x7d, 0x7e, 0x80, 0x82, 0x83, 0x81, 0x7f, 0x7c, 0x79, 0x78, 0x78, 0x78, 0x79,\n    0x76, 0x76, 0x77, 0x77, 0x78, 0x77, 0x77, 0x76, 0x78, 0x79, 0x7a, 0x7a, 0x7a, 0x79, 0x78, 0x77,\n    0x74, 0x73, 0x71, 0x6f, 0x6f, 0x6f, 0x70, 0x71, 0x78, 0x78, 0x79, 0x7a, 0x7c, 0x7d, 0x7d, 0x7e,\n    0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7e, 0x7d, 0x7a, 0x79, 0x79, 0x7b, 0x7e, 0x80,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7c, 0x7d, 0x7e, 0x7f, 0x7f, 0x80,\n    0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7c, 0x7c, 0x7b,\n    0x73, 0x74, 0x75, 0x77, 0x79, 0x7b, 0x7c, 0x7d, 0x7c, 0x7b, 0x7a, 0x78, 0x76, 0x74, 0x73, 0x72,\n    0x74, 0x74, 0x74, 0x74, 0x72, 0x70, 0x6e, 0x6d, 0x6b, 0x6c, 0x6e, 0x6f, 0x70, 0x70, 0x70, 0x70,\n    0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x68, 0x71, 0x72, 0x73, 0x73, 0x71, 0x6d, 0x69, 0x66,\n    0x70, 0x6e, 0x6b, 0x68, 0x66, 0x65, 0x66, 0x66, 0x6a, 0x69, 0x68, 0x68, 0x69, 0x6c, 0x6f, 0x70,\n    0x69, 0x6b, 0x6d, 0x70, 0x72, 0x73, 0x74, 0x74, 0x73, 0x71, 0x70, 0x71, 0x74, 0x74, 0x71, 0x6e,\n    0x61, 0x61, 0x61, 0x62, 0x64, 0x67, 0x6a, 0x6c, 0x67, 0x6a, 0x6b, 0x67, 0x62, 0x63, 0x6b, 0x72,\n    0x68, 0x6a, 0x6c, 0x69, 0x65, 0x62, 0x63, 0x65, 0x66, 0x66, 0x66, 0x66, 0x64, 0x62, 0x60, 0x5e,\n    0x59, 0x5a, 0x5d, 0x5e, 0x5e, 0x5d, 0x5a, 0x59, 0x52, 0x4f, 0x4c, 0x4b, 0x4f, 0x58, 0x62, 0x68,\n    0x74, 0x76, 0x77, 0x72, 0x68, 0x5e, 0x58, 0x55, 0x5f, 0x60, 0x64, 0x6c, 0x75, 0x7c, 0x7d, 0x7c,\n    0x78, 0x77, 0x75, 0x73, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70,\n    0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x74,\n    0x72, 0x72, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73,\n    0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f,\n    0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x71, 0x72, 0x75, 0x77, 0x78,\n    0x7d, 0x7f, 0x80, 0x7f, 0x7d, 0x7d, 0x81, 0x84, 0x88, 0x83, 0x7c, 0x79, 0x7a, 0x7b, 0x7a, 0x79,\n    0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x73, 0x78, 0x7e, 0x82, 0x81, 0x7b, 0x74, 0x6f,\n    0x73, 0x73, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x76, 0x77, 0x78, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c,\n    0x7f, 0x7e, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e,\n    0x7e, 0x7e, 0x7d, 0x7c, 0x7c, 0x7d, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d,\n    0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x79, 0x78, 0x7c, 0x7d, 0x7e, 0x7e, 0x7e, 0x7d, 0x7c, 0x7c,\n    0x73, 0x73, 0x75, 0x77, 0x78, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b, 0x79, 0x78, 0x76, 0x74, 0x73, 0x72,\n    0x72, 0x72, 0x72, 0x71, 0x6f, 0x6d, 0x6b, 0x69, 0x6a, 0x6b, 0x6d, 0x6e, 0x6f, 0x6f, 0x6f, 0x6e,\n    0x6b, 0x6b, 0x6b, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x72, 0x73, 0x75, 0x75, 0x73, 0x6f, 0x6b, 0x68,\n    0x6d, 0x6c, 0x6a, 0x68, 0x67, 0x66, 0x67, 0x67, 0x69, 0x68, 0x67, 0x66, 0x67, 0x69, 0x6b, 0x6d,\n    0x6a, 0x6b, 0x6e, 0x70, 0x72, 0x73, 0x74, 0x74, 0x73, 0x71, 0x70, 0x72, 0x74, 0x74, 0x71, 0x6e,\n    0x67, 0x66, 0x64, 0x63, 0x63, 0x64, 0x65, 0x66, 0x68, 0x6a, 0x6a, 0x67, 0x62, 0x63, 0x6a, 0x70,\n    0x6e, 0x70, 0x70, 0x6d, 0x67, 0x63, 0x63, 0x64, 0x65, 0x64, 0x62, 0x60, 0x5f, 0x5e, 0x5d, 0x5d,\n    0x5f, 0x60, 0x61, 0x62, 0x60, 0x5d, 0x5a, 0x58, 0x54, 0x51, 0x4e, 0x4e, 0x52, 0x5a, 0x64, 0x6a,\n    0x71, 0x74, 0x74, 0x70, 0x67, 0x5e, 0x58, 0x56, 0x5d, 0x5e, 0x62, 0x6a, 0x73, 0x78, 0x79, 0x78,\n    0x78, 0x77, 0x75, 0x73, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70,\n    0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73,\n    0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73,\n    0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f,\n    0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x71, 0x72, 0x74, 0x76, 0x77,\n    0x79, 0x7b, 0x7d, 0x7d, 0x7c, 0x7c, 0x80, 0x84, 0x87, 0x81, 0x7b, 0x78, 0x79, 0x7a, 0x79, 0x78,\n    0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x83, 0x89, 0x90, 0x95, 0x94, 0x8e, 0x85, 0x7f,\n    0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x73, 0x78, 0x78, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7e,\n    0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x7b, 0x7b, 0x7c, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e,\n    0x7e, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d,\n    0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x79, 0x78, 0x7c, 0x7d, 0x7e, 0x7e, 0x7e, 0x7d, 0x7c, 0x7b,\n    0x73, 0x73, 0x75, 0x76, 0x78, 0x79, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x77, 0x75, 0x74, 0x73, 0x72,\n    0x70, 0x70, 0x70, 0x6f, 0x6d, 0x6a, 0x68, 0x66, 0x69, 0x6a, 0x6b, 0x6d, 0x6d, 0x6d, 0x6d, 0x6c,\n    0x6c, 0x6d, 0x6d, 0x6e, 0x6e, 0x6f, 0x6f, 0x70, 0x73, 0x74, 0x76, 0x76, 0x74, 0x71, 0x6d, 0x6a,\n    0x6a, 0x6a, 0x69, 0x69, 0x69, 0x6a, 0x6b, 0x6c, 0x6a, 0x68, 0x66, 0x65, 0x65, 0x67, 0x68, 0x6a,\n    0x6b, 0x6d, 0x6f, 0x71, 0x73, 0x74, 0x74, 0x74, 0x74, 0x72, 0x71, 0x73, 0x75, 0x75, 0x72, 0x6e,\n    0x6b, 0x6a, 0x67, 0x64, 0x62, 0x61, 0x60, 0x60, 0x6a, 0x6b, 0x6a, 0x66, 0x63, 0x64, 0x68, 0x6d,\n    0x70, 0x72, 0x73, 0x70, 0x6a, 0x65, 0x63, 0x64, 0x64, 0x62, 0x5e, 0x5a, 0x59, 0x5a, 0x5c, 0x5e,\n    0x69, 0x69, 0x68, 0x66, 0x63, 0x5e, 0x5a, 0x57, 0x58, 0x55, 0x53, 0x53, 0x57, 0x5e, 0x67, 0x6c,\n    0x6f, 0x72, 0x73, 0x6f, 0x67, 0x5f, 0x5b, 0x59, 0x5b, 0x5c, 0x60, 0x68, 0x71, 0x76, 0x76, 0x74,\n    0x77, 0x76, 0x74, 0x72, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70,\n    0x6f, 0x6f, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x73, 0x73,\n    0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73,\n    0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f,\n    0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x71, 0x73, 0x75, 0x77,\n    0x75, 0x78, 0x7b, 0x7b, 0x7a, 0x7c, 0x81, 0x85, 0x85, 0x80, 0x7a, 0x77, 0x78, 0x79, 0x78, 0x77,\n    0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x79, 0x79, 0x8a, 0x91, 0x9a, 0xa0, 0x9f, 0x98, 0x8e, 0x87,\n    0x72, 0x72, 0x72, 0x73, 0x74, 0x74, 0x75, 0x75, 0x7a, 0x7a, 0x7b, 0x7c, 0x7e, 0x7f, 0x80, 0x81,\n    0x7d, 0x7d, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e,\n    0x7e, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d,\n    0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x7c, 0x7d, 0x7e, 0x7e, 0x7e, 0x7d, 0x7b, 0x7b,\n    0x73, 0x73, 0x74, 0x76, 0x77, 0x78, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x76, 0x75, 0x74, 0x73, 0x72,\n    0x71, 0x71, 0x71, 0x70, 0x6e, 0x6b, 0x69, 0x67, 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6c, 0x6c, 0x6b,\n    0x6c, 0x6c, 0x6c, 0x6d, 0x6e, 0x6f, 0x6f, 0x70, 0x70, 0x72, 0x74, 0x74, 0x73, 0x70, 0x6c, 0x6a,\n    0x6b, 0x6c, 0x6c, 0x6d, 0x6f, 0x70, 0x71, 0x72, 0x6d, 0x6c, 0x69, 0x67, 0x67, 0x68, 0x69, 0x6a,\n    0x6d, 0x6f, 0x70, 0x72, 0x73, 0x74, 0x74, 0x74, 0x75, 0x73, 0x72, 0x73, 0x75, 0x75, 0x72, 0x6e,\n    0x69, 0x68, 0x67, 0x65, 0x64, 0x62, 0x62, 0x61, 0x6b, 0x6b, 0x69, 0x66, 0x64, 0x65, 0x67, 0x69,\n    0x6a, 0x6d, 0x6f, 0x6e, 0x6a, 0x67, 0x66, 0x67, 0x67, 0x63, 0x5d, 0x59, 0x58, 0x5a, 0x5e, 0x61,\n    0x70, 0x6f, 0x6d, 0x6a, 0x65, 0x60, 0x5b, 0x58, 0x5b, 0x5a, 0x58, 0x59, 0x5c, 0x63, 0x6a, 0x6f,\n    0x70, 0x73, 0x74, 0x70, 0x6a, 0x63, 0x60, 0x60, 0x5d, 0x5f, 0x63, 0x6b, 0x72, 0x77, 0x76, 0x73,\n    0x76, 0x75, 0x74, 0x72, 0x71, 0x70, 0x70, 0x71, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f,\n    0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x71, 0x71, 0x70, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72,\n    0x72, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72,\n    0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f,\n    0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x6f, 0x6f, 0x70, 0x71, 0x73, 0x74, 0x75,\n    0x75, 0x77, 0x7a, 0x7b, 0x7b, 0x7d, 0x82, 0x86, 0x85, 0x80, 0x7a, 0x77, 0x78, 0x79, 0x79, 0x78,\n    0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7f, 0x86, 0x90, 0x97, 0x96, 0x8f, 0x84, 0x7d,\n    0x71, 0x72, 0x72, 0x73, 0x75, 0x76, 0x76, 0x77, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7f, 0x81, 0x82,\n    0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e,\n    0x7e, 0x7d, 0x7c, 0x7b, 0x7b, 0x7c, 0x7d, 0x7e, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7b, 0x7a, 0x79, 0x7d, 0x7d, 0x7e, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a,\n    0x72, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x78, 0x78, 0x77, 0x76, 0x74, 0x73, 0x72, 0x72,\n    0x74, 0x74, 0x74, 0x73, 0x71, 0x6f, 0x6d, 0x6c, 0x6a, 0x6b, 0x6c, 0x6d, 0x6d, 0x6d, 0x6c, 0x6b,\n    0x6a, 0x6a, 0x6b, 0x6b, 0x6c, 0x6c, 0x6d, 0x6d, 0x6d, 0x6e, 0x71, 0x72, 0x71, 0x6e, 0x6b, 0x69,\n    0x6f, 0x70, 0x71, 0x73, 0x74, 0x76, 0x76, 0x77, 0x72, 0x70, 0x6d, 0x6b, 0x6b, 0x6b, 0x6c, 0x6d,\n    0x70, 0x71, 0x72, 0x73, 0x74, 0x74, 0x74, 0x74, 0x76, 0x73, 0x72, 0x73, 0x75, 0x74, 0x71, 0x6d,\n    0x63, 0x64, 0x65, 0x66, 0x67, 0x67, 0x67, 0x67, 0x6c, 0x6a, 0x67, 0x65, 0x66, 0x67, 0x67, 0x67,\n    0x5f, 0x64, 0x69, 0x6b, 0x69, 0x68, 0x69, 0x6b, 0x6b, 0x67, 0x61, 0x5d, 0x5c, 0x5f, 0x63, 0x66,\n    0x72, 0x71, 0x6e, 0x6b, 0x66, 0x62, 0x5e, 0x5c, 0x5f, 0x5e, 0x5d, 0x5e, 0x62, 0x68, 0x6d, 0x71,\n    0x73, 0x76, 0x77, 0x74, 0x6d, 0x68, 0x66, 0x66, 0x62, 0x64, 0x68, 0x6f, 0x77, 0x7a, 0x78, 0x75,\n    0x76, 0x75, 0x73, 0x71, 0x70, 0x70, 0x71, 0x71, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f,\n    0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x72,\n    0x71, 0x71, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72,\n    0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f,\n    0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x71, 0x73, 0x74,\n    0x76, 0x79, 0x7c, 0x7c, 0x7c, 0x7d, 0x82, 0x86, 0x84, 0x7e, 0x78, 0x76, 0x77, 0x79, 0x79, 0x77,\n    0x7c, 0x7c, 0x7d, 0x7d, 0x7e, 0x7f, 0x7f, 0x80, 0x74, 0x7a, 0x83, 0x8a, 0x89, 0x83, 0x79, 0x73,\n    0x71, 0x72, 0x72, 0x73, 0x75, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x78, 0x7a, 0x7c, 0x7f, 0x81,\n    0x7b, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d,\n    0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x7d, 0x7d, 0x7e, 0x7e, 0x7d, 0x7b, 0x7a, 0x79,\n    0x72, 0x73, 0x74, 0x74, 0x76, 0x76, 0x77, 0x78, 0x77, 0x77, 0x76, 0x75, 0x74, 0x73, 0x72, 0x72,\n    0x74, 0x74, 0x75, 0x75, 0x74, 0x73, 0x71, 0x70, 0x6d, 0x6d, 0x6e, 0x6f, 0x6f, 0x6e, 0x6d, 0x6d,\n    0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6d, 0x70, 0x72, 0x71, 0x6f, 0x6c, 0x6a,\n    0x71, 0x72, 0x74, 0x75, 0x76, 0x77, 0x76, 0x76, 0x73, 0x72, 0x6f, 0x6d, 0x6d, 0x6d, 0x6f, 0x70,\n    0x72, 0x72, 0x74, 0x75, 0x75, 0x75, 0x74, 0x74, 0x75, 0x73, 0x71, 0x72, 0x74, 0x73, 0x6f, 0x6c,\n    0x61, 0x62, 0x65, 0x67, 0x6a, 0x6b, 0x6c, 0x6c, 0x6b, 0x68, 0x64, 0x64, 0x67, 0x69, 0x68, 0x65,\n    0x5b, 0x60, 0x67, 0x6a, 0x6a, 0x69, 0x6a, 0x6b, 0x6c, 0x69, 0x65, 0x63, 0x62, 0x63, 0x66, 0x68,\n    0x6d, 0x6c, 0x6a, 0x68, 0x66, 0x64, 0x62, 0x61, 0x61, 0x61, 0x61, 0x63, 0x66, 0x6b, 0x70, 0x72,\n    0x75, 0x77, 0x78, 0x74, 0x6f, 0x6a, 0x68, 0x69, 0x66, 0x67, 0x6c, 0x73, 0x7a, 0x7c, 0x79, 0x75,\n    0x75, 0x74, 0x72, 0x71, 0x70, 0x70, 0x71, 0x71, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f,\n    0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x71, 0x71,\n    0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x73, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72,\n    0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f,\n    0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6e, 0x6f, 0x71, 0x72, 0x73,\n    0x77, 0x7a, 0x7b, 0x7b, 0x79, 0x79, 0x7d, 0x80, 0x7e, 0x79, 0x73, 0x71, 0x72, 0x74, 0x74, 0x73,\n    0x77, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x74, 0x79, 0x7f, 0x83, 0x83, 0x7f, 0x78, 0x74,\n    0x72, 0x72, 0x72, 0x73, 0x74, 0x74, 0x75, 0x75, 0x72, 0x72, 0x71, 0x72, 0x74, 0x77, 0x7a, 0x7d,\n    0x7a, 0x79, 0x78, 0x78, 0x78, 0x79, 0x7b, 0x7b, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d,\n    0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x7d, 0x7d, 0x7e, 0x7d, 0x7c, 0x7b, 0x79, 0x78,\n    0x72, 0x73, 0x73, 0x74, 0x75, 0x76, 0x76, 0x77, 0x76, 0x76, 0x75, 0x74, 0x73, 0x73, 0x72, 0x72,\n    0x71, 0x72, 0x73, 0x74, 0x74, 0x74, 0x73, 0x72, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x70, 0x6f,\n    0x70, 0x6f, 0x6f, 0x6e, 0x6d, 0x6c, 0x6c, 0x6c, 0x6e, 0x70, 0x73, 0x75, 0x74, 0x72, 0x70, 0x6e,\n    0x71, 0x72, 0x73, 0x74, 0x74, 0x73, 0x72, 0x71, 0x71, 0x6f, 0x6d, 0x6c, 0x6c, 0x6d, 0x6f, 0x70,\n    0x73, 0x74, 0x75, 0x76, 0x76, 0x75, 0x74, 0x73, 0x74, 0x72, 0x70, 0x71, 0x72, 0x72, 0x6e, 0x6a,\n    0x64, 0x65, 0x68, 0x6a, 0x6b, 0x6c, 0x6c, 0x6b, 0x6a, 0x66, 0x62, 0x64, 0x69, 0x6b, 0x69, 0x65,\n    0x60, 0x65, 0x6b, 0x6d, 0x6b, 0x69, 0x68, 0x69, 0x69, 0x68, 0x67, 0x66, 0x66, 0x66, 0x66, 0x66,\n    0x65, 0x65, 0x65, 0x65, 0x65, 0x66, 0x67, 0x67, 0x62, 0x63, 0x64, 0x66, 0x69, 0x6d, 0x71, 0x73,\n    0x74, 0x76, 0x76, 0x72, 0x6c, 0x67, 0x66, 0x67, 0x66, 0x68, 0x6c, 0x74, 0x7a, 0x7b, 0x77, 0x73,\n    0x74, 0x73, 0x72, 0x71, 0x70, 0x70, 0x71, 0x71, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e,\n    0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70,\n    0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72,\n    0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f,\n    0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6e, 0x6e, 0x6f, 0x70, 0x71, 0x72,\n    0x76, 0x78, 0x78, 0x76, 0x73, 0x72, 0x74, 0x77, 0x75, 0x70, 0x6a, 0x68, 0x6a, 0x6c, 0x6c, 0x6b,\n    0x6e, 0x6f, 0x70, 0x71, 0x72, 0x73, 0x74, 0x74, 0x76, 0x78, 0x7b, 0x7d, 0x7d, 0x7b, 0x78, 0x76,\n    0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x73, 0x6d, 0x6c, 0x6b, 0x6c, 0x6e, 0x71, 0x75, 0x78,\n    0x79, 0x78, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d,\n    0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7d, 0x7e, 0x7e, 0x7d, 0x7c, 0x7a, 0x79, 0x77,\n    0x72, 0x73, 0x73, 0x74, 0x75, 0x75, 0x76, 0x76, 0x76, 0x75, 0x75, 0x74, 0x73, 0x72, 0x72, 0x72,\n    0x6e, 0x6f, 0x70, 0x72, 0x73, 0x73, 0x72, 0x72, 0x71, 0x72, 0x73, 0x73, 0x73, 0x72, 0x71, 0x70,\n    0x74, 0x73, 0x72, 0x71, 0x70, 0x6f, 0x6e, 0x6d, 0x71, 0x73, 0x76, 0x78, 0x78, 0x76, 0x73, 0x71,\n    0x70, 0x70, 0x71, 0x72, 0x71, 0x6f, 0x6d, 0x6b, 0x6e, 0x6d, 0x6b, 0x6a, 0x6a, 0x6b, 0x6d, 0x6f,\n    0x74, 0x75, 0x75, 0x76, 0x76, 0x75, 0x74, 0x73, 0x74, 0x71, 0x6f, 0x70, 0x71, 0x71, 0x6d, 0x69,\n    0x68, 0x69, 0x6b, 0x6c, 0x6c, 0x6b, 0x69, 0x68, 0x69, 0x64, 0x61, 0x63, 0x69, 0x6c, 0x69, 0x65,\n    0x68, 0x6c, 0x71, 0x71, 0x6d, 0x68, 0x66, 0x66, 0x66, 0x67, 0x68, 0x68, 0x67, 0x66, 0x65, 0x64,\n    0x5f, 0x60, 0x61, 0x62, 0x65, 0x67, 0x69, 0x6b, 0x63, 0x64, 0x65, 0x67, 0x6b, 0x6e, 0x71, 0x73,\n    0x72, 0x73, 0x73, 0x6f, 0x69, 0x64, 0x64, 0x64, 0x65, 0x67, 0x6b, 0x72, 0x78, 0x79, 0x75, 0x71,\n    0x74, 0x73, 0x72, 0x70, 0x70, 0x70, 0x71, 0x71, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e,\n    0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70,\n    0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71,\n    0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f,\n    0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6f, 0x71, 0x72,\n    0x74, 0x75, 0x75, 0x72, 0x6e, 0x6c, 0x6d, 0x70, 0x6e, 0x69, 0x64, 0x62, 0x63, 0x65, 0x65, 0x64,\n    0x67, 0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x73, 0x73, 0x74, 0x75, 0x75, 0x75, 0x74, 0x74,\n    0x73, 0x73, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x69, 0x68, 0x67, 0x68, 0x6a, 0x6e, 0x72, 0x74,\n    0x78, 0x78, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d,\n    0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7c, 0x7b, 0x7d, 0x7e, 0x7e, 0x7d, 0x7c, 0x7a, 0x78, 0x77,\n    0x75, 0x76, 0x77, 0x78, 0x78, 0x76, 0x75, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72,\n    0x70, 0x70, 0x71, 0x71, 0x72, 0x73, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73,\n    0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x73, 0x76, 0x78, 0x78, 0x75, 0x71, 0x6f,\n    0x6f, 0x6f, 0x6e, 0x6d, 0x6c, 0x6c, 0x6b, 0x6b, 0x71, 0x6f, 0x6c, 0x69, 0x68, 0x69, 0x6b, 0x6c,\n    0x78, 0x77, 0x76, 0x75, 0x73, 0x71, 0x70, 0x70, 0x70, 0x71, 0x72, 0x73, 0x73, 0x72, 0x71, 0x70,\n    0x6b, 0x6c, 0x6d, 0x6e, 0x6e, 0x6d, 0x6b, 0x6a, 0x63, 0x64, 0x66, 0x68, 0x69, 0x69, 0x68, 0x67,\n    0x6e, 0x6f, 0x70, 0x72, 0x73, 0x73, 0x73, 0x72, 0x6c, 0x6a, 0x66, 0x64, 0x64, 0x66, 0x69, 0x6b,\n    0x64, 0x64, 0x64, 0x64, 0x65, 0x66, 0x68, 0x69, 0x66, 0x63, 0x5f, 0x5e, 0x61, 0x68, 0x6f, 0x74,\n    0x73, 0x73, 0x72, 0x70, 0x6d, 0x69, 0x65, 0x63, 0x60, 0x65, 0x6c, 0x73, 0x76, 0x76, 0x73, 0x71,\n    0x72, 0x72, 0x72, 0x71, 0x70, 0x70, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e,\n    0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f,\n    0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71,\n    0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f,\n    0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x71, 0x72, 0x73,\n    0x79, 0x7b, 0x7a, 0x76, 0x6f, 0x6b, 0x69, 0x6a, 0x67, 0x66, 0x64, 0x62, 0x61, 0x61, 0x62, 0x63,\n    0x64, 0x64, 0x64, 0x64, 0x63, 0x63, 0x63, 0x63, 0x63, 0x64, 0x64, 0x66, 0x6a, 0x6d, 0x71, 0x73,\n    0x72, 0x74, 0x76, 0x74, 0x71, 0x6f, 0x71, 0x73, 0x69, 0x6a, 0x6c, 0x6e, 0x70, 0x72, 0x74, 0x75,\n    0x79, 0x76, 0x73, 0x72, 0x73, 0x76, 0x7b, 0x7e, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7e, 0x7d, 0x7c, 0x78, 0x75, 0x73,\n    0x72, 0x73, 0x74, 0x75, 0x75, 0x74, 0x73, 0x72, 0x75, 0x74, 0x74, 0x73, 0x73, 0x72, 0x72, 0x72,\n    0x70, 0x71, 0x71, 0x72, 0x73, 0x74, 0x74, 0x75, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74,\n    0x73, 0x72, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x73, 0x76, 0x78, 0x78, 0x75, 0x72, 0x6f,\n    0x70, 0x6f, 0x6f, 0x6e, 0x6d, 0x6c, 0x6c, 0x6b, 0x70, 0x6f, 0x6c, 0x6a, 0x6a, 0x6b, 0x6d, 0x6e,\n    0x77, 0x76, 0x75, 0x74, 0x72, 0x71, 0x70, 0x6f, 0x70, 0x71, 0x72, 0x73, 0x73, 0x72, 0x71, 0x70,\n    0x6b, 0x6c, 0x6d, 0x6e, 0x6e, 0x6d, 0x6b, 0x6a, 0x64, 0x66, 0x67, 0x69, 0x6a, 0x6a, 0x69, 0x69,\n    0x6a, 0x6b, 0x6d, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x6d, 0x6b, 0x67, 0x64, 0x64, 0x66, 0x68, 0x6a,\n    0x65, 0x65, 0x64, 0x64, 0x64, 0x65, 0x66, 0x67, 0x65, 0x64, 0x63, 0x63, 0x65, 0x6a, 0x70, 0x73,\n    0x73, 0x73, 0x72, 0x70, 0x6d, 0x69, 0x66, 0x64, 0x61, 0x66, 0x6d, 0x73, 0x76, 0x76, 0x74, 0x72,\n    0x72, 0x72, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e,\n    0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f,\n    0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71,\n    0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f,\n    0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x71, 0x72, 0x73,\n    0x78, 0x7a, 0x7a, 0x76, 0x70, 0x6b, 0x6a, 0x6b, 0x69, 0x68, 0x66, 0x65, 0x64, 0x65, 0x65, 0x66,\n    0x67, 0x67, 0x67, 0x67, 0x66, 0x66, 0x66, 0x66, 0x65, 0x65, 0x66, 0x67, 0x6a, 0x6d, 0x71, 0x73,\n    0x74, 0x76, 0x77, 0x74, 0x70, 0x6e, 0x6f, 0x71, 0x6c, 0x6c, 0x6e, 0x70, 0x72, 0x73, 0x75, 0x75,\n    0x76, 0x74, 0x71, 0x6f, 0x70, 0x73, 0x78, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7e, 0x7f, 0x7e, 0x7c, 0x79, 0x76, 0x74,\n    0x71, 0x71, 0x72, 0x73, 0x73, 0x72, 0x71, 0x71, 0x76, 0x76, 0x75, 0x74, 0x73, 0x73, 0x72, 0x71,\n    0x72, 0x72, 0x72, 0x73, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75,\n    0x74, 0x74, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72, 0x74, 0x76, 0x78, 0x78, 0x75, 0x72, 0x70,\n    0x70, 0x70, 0x6f, 0x6f, 0x6e, 0x6d, 0x6d, 0x6d, 0x6f, 0x6e, 0x6d, 0x6c, 0x6c, 0x6e, 0x70, 0x71,\n    0x76, 0x75, 0x74, 0x73, 0x72, 0x71, 0x70, 0x6f, 0x71, 0x71, 0x72, 0x73, 0x73, 0x72, 0x71, 0x71,\n    0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6d, 0x6c, 0x6b, 0x67, 0x68, 0x69, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b,\n    0x67, 0x68, 0x69, 0x6b, 0x6b, 0x6b, 0x6b, 0x6a, 0x6e, 0x6c, 0x69, 0x66, 0x65, 0x66, 0x68, 0x69,\n    0x67, 0x66, 0x65, 0x63, 0x63, 0x63, 0x63, 0x64, 0x66, 0x66, 0x67, 0x69, 0x6c, 0x6e, 0x70, 0x72,\n    0x74, 0x73, 0x72, 0x70, 0x6d, 0x6a, 0x67, 0x65, 0x65, 0x68, 0x6e, 0x73, 0x76, 0x76, 0x75, 0x73,\n    0x72, 0x72, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e,\n    0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f,\n    0x6f, 0x6f, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71,\n    0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f,\n    0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x71, 0x73, 0x74,\n    0x76, 0x78, 0x79, 0x76, 0x71, 0x6c, 0x6b, 0x6c, 0x6c, 0x6c, 0x6b, 0x6a, 0x69, 0x6a, 0x6a, 0x6b,\n    0x6c, 0x6c, 0x6c, 0x6c, 0x6b, 0x6b, 0x6b, 0x6a, 0x68, 0x68, 0x67, 0x68, 0x6a, 0x6d, 0x71, 0x73,\n    0x76, 0x78, 0x78, 0x75, 0x70, 0x6c, 0x6d, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x73, 0x75, 0x75, 0x76,\n    0x74, 0x72, 0x6e, 0x6c, 0x6d, 0x71, 0x75, 0x78, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7e, 0x7f, 0x80, 0x7f, 0x7e, 0x7b, 0x78, 0x76,\n    0x72, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x73, 0x78, 0x77, 0x77, 0x75, 0x74, 0x73, 0x72, 0x72,\n    0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76,\n    0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x73, 0x75, 0x77, 0x78, 0x77, 0x76, 0x73, 0x72,\n    0x71, 0x71, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6f, 0x71, 0x73, 0x74,\n    0x75, 0x75, 0x74, 0x73, 0x72, 0x71, 0x70, 0x6f, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x71, 0x71,\n    0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6d, 0x6c, 0x6c, 0x6a, 0x6b, 0x6b, 0x6c, 0x6c, 0x6d, 0x6d, 0x6d,\n    0x67, 0x68, 0x69, 0x6a, 0x6b, 0x6a, 0x6a, 0x69, 0x6f, 0x6d, 0x6a, 0x67, 0x66, 0x66, 0x68, 0x69,\n    0x69, 0x68, 0x66, 0x63, 0x62, 0x61, 0x61, 0x61, 0x67, 0x69, 0x6c, 0x6f, 0x71, 0x71, 0x71, 0x70,\n    0x74, 0x74, 0x72, 0x70, 0x6e, 0x6c, 0x6a, 0x69, 0x6a, 0x6c, 0x70, 0x74, 0x76, 0x76, 0x75, 0x74,\n    0x72, 0x71, 0x71, 0x70, 0x70, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e,\n    0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f,\n    0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71,\n    0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f,\n    0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6f, 0x6e, 0x6e, 0x6f, 0x70, 0x71, 0x73, 0x74,\n    0x74, 0x77, 0x79, 0x77, 0x72, 0x6d, 0x6c, 0x6c, 0x6f, 0x6f, 0x6f, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f,\n    0x71, 0x71, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6b, 0x6a, 0x68, 0x68, 0x6a, 0x6d, 0x71, 0x73,\n    0x78, 0x79, 0x79, 0x75, 0x70, 0x6c, 0x6c, 0x6d, 0x73, 0x73, 0x74, 0x74, 0x75, 0x75, 0x75, 0x76,\n    0x74, 0x72, 0x6f, 0x6d, 0x6e, 0x71, 0x76, 0x79, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7f, 0x7f, 0x80, 0x80, 0x7f, 0x7c, 0x79, 0x77,\n    0x75, 0x75, 0x75, 0x76, 0x76, 0x77, 0x77, 0x78, 0x78, 0x78, 0x77, 0x76, 0x75, 0x75, 0x74, 0x73,\n    0x75, 0x76, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77,\n    0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x76, 0x77, 0x78, 0x77, 0x76, 0x74, 0x73,\n    0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x71, 0x72, 0x73, 0x75, 0x76,\n    0x75, 0x74, 0x74, 0x73, 0x72, 0x71, 0x71, 0x70, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72,\n    0x71, 0x70, 0x6f, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e,\n    0x69, 0x6a, 0x6b, 0x6c, 0x6c, 0x6c, 0x6b, 0x6b, 0x6e, 0x6d, 0x6a, 0x68, 0x67, 0x68, 0x69, 0x69,\n    0x6a, 0x69, 0x66, 0x64, 0x62, 0x61, 0x60, 0x60, 0x68, 0x6b, 0x6e, 0x71, 0x73, 0x72, 0x71, 0x70,\n    0x74, 0x74, 0x72, 0x71, 0x70, 0x6f, 0x6f, 0x6e, 0x70, 0x72, 0x73, 0x75, 0x76, 0x75, 0x75, 0x74,\n    0x71, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e,\n    0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e,\n    0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70,\n    0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f,\n    0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x72, 0x73, 0x74,\n    0x74, 0x77, 0x79, 0x77, 0x72, 0x6e, 0x6c, 0x6c, 0x6f, 0x70, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72,\n    0x74, 0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x6b, 0x6a, 0x68, 0x67, 0x69, 0x6d, 0x71, 0x74,\n    0x78, 0x7a, 0x7a, 0x76, 0x71, 0x6d, 0x6d, 0x6f, 0x76, 0x76, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74,\n    0x74, 0x72, 0x70, 0x6e, 0x70, 0x74, 0x79, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7e, 0x7f, 0x80, 0x80, 0x7f, 0x7d, 0x7a, 0x78,\n    0x77, 0x77, 0x76, 0x76, 0x77, 0x78, 0x7a, 0x7a, 0x78, 0x78, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76,\n    0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79,\n    0x79, 0x79, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x76, 0x77, 0x77, 0x78, 0x77, 0x76, 0x75, 0x74,\n    0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x73, 0x73, 0x74, 0x75, 0x76, 0x76,\n    0x75, 0x75, 0x75, 0x74, 0x73, 0x72, 0x72, 0x72, 0x73, 0x72, 0x71, 0x71, 0x71, 0x71, 0x72, 0x73,\n    0x72, 0x71, 0x70, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6f, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6f,\n    0x6b, 0x6b, 0x6c, 0x6d, 0x6d, 0x6c, 0x6b, 0x6b, 0x6d, 0x6c, 0x6a, 0x69, 0x69, 0x69, 0x6a, 0x6b,\n    0x6b, 0x6a, 0x67, 0x65, 0x63, 0x62, 0x61, 0x61, 0x6b, 0x6c, 0x6e, 0x70, 0x71, 0x71, 0x71, 0x70,\n    0x74, 0x73, 0x73, 0x72, 0x73, 0x73, 0x75, 0x75, 0x78, 0x77, 0x77, 0x76, 0x75, 0x74, 0x73, 0x73,\n    0x71, 0x71, 0x70, 0x70, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e,\n    0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e,\n    0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70,\n    0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f,\n    0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x72, 0x74, 0x75,\n    0x74, 0x77, 0x7a, 0x78, 0x73, 0x6d, 0x6a, 0x6a, 0x6e, 0x6f, 0x70, 0x72, 0x73, 0x73, 0x73, 0x73,\n    0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x72, 0x72, 0x6a, 0x69, 0x66, 0x66, 0x68, 0x6c, 0x72, 0x75,\n    0x77, 0x79, 0x7a, 0x77, 0x73, 0x70, 0x71, 0x73, 0x77, 0x76, 0x76, 0x74, 0x73, 0x72, 0x71, 0x70,\n    0x72, 0x70, 0x6f, 0x6e, 0x71, 0x76, 0x7c, 0x80, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7e, 0x7f, 0x80, 0x80, 0x7f, 0x7d, 0x7a, 0x78,\n    0x75, 0x75, 0x74, 0x74, 0x75, 0x77, 0x78, 0x7a, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x79, 0x79,\n    0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x78, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x78, 0x77, 0x77, 0x78, 0x78, 0x77, 0x77, 0x76, 0x75,\n    0x73, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x74, 0x75, 0x76, 0x76, 0x76, 0x76, 0x76,\n    0x76, 0x76, 0x75, 0x75, 0x74, 0x74, 0x74, 0x73, 0x73, 0x72, 0x71, 0x70, 0x70, 0x71, 0x72, 0x73,\n    0x74, 0x72, 0x70, 0x6e, 0x6d, 0x6d, 0x6d, 0x6e, 0x70, 0x6f, 0x6d, 0x6c, 0x6c, 0x6d, 0x6e, 0x6f,\n    0x69, 0x6a, 0x6b, 0x6b, 0x6b, 0x6a, 0x69, 0x69, 0x6b, 0x6a, 0x6a, 0x6a, 0x6a, 0x6b, 0x6c, 0x6d,\n    0x6c, 0x6a, 0x68, 0x66, 0x64, 0x63, 0x63, 0x63, 0x6d, 0x6d, 0x6c, 0x6c, 0x6d, 0x6f, 0x70, 0x71,\n    0x73, 0x73, 0x73, 0x73, 0x75, 0x78, 0x7a, 0x7c, 0x7e, 0x7c, 0x7a, 0x77, 0x74, 0x73, 0x71, 0x71,\n    0x71, 0x70, 0x70, 0x6f, 0x6f, 0x6e, 0x6e, 0x6d, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e,\n    0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e,\n    0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70,\n    0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f,\n    0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x70, 0x6f, 0x6f, 0x6f, 0x70, 0x72, 0x74, 0x75,\n    0x75, 0x78, 0x7b, 0x79, 0x73, 0x6d, 0x69, 0x68, 0x6b, 0x6d, 0x6f, 0x71, 0x73, 0x73, 0x73, 0x72,\n    0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72, 0x71, 0x68, 0x67, 0x64, 0x64, 0x67, 0x6c, 0x72, 0x76,\n    0x75, 0x78, 0x7a, 0x78, 0x75, 0x74, 0x76, 0x78, 0x77, 0x76, 0x75, 0x73, 0x71, 0x6f, 0x6e, 0x6d,\n    0x6d, 0x6c, 0x6b, 0x6b, 0x6f, 0x75, 0x7c, 0x80, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7f, 0x7f, 0x7e, 0x7c, 0x7a, 0x78,\n    0x73, 0x72, 0x71, 0x71, 0x72, 0x74, 0x76, 0x78, 0x76, 0x76, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x7a,\n    0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x76, 0x76,\n    0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x76, 0x77, 0x77, 0x77, 0x76, 0x76,\n    0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x74, 0x74, 0x73, 0x72, 0x71, 0x70, 0x70, 0x71, 0x72, 0x73,\n    0x75, 0x73, 0x71, 0x6e, 0x6d, 0x6d, 0x6e, 0x6e, 0x70, 0x6f, 0x6d, 0x6c, 0x6c, 0x6d, 0x6e, 0x6f,\n    0x67, 0x68, 0x69, 0x69, 0x69, 0x68, 0x67, 0x66, 0x69, 0x69, 0x6a, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e,\n    0x6c, 0x6b, 0x69, 0x67, 0x65, 0x65, 0x64, 0x65, 0x6f, 0x6d, 0x6b, 0x6a, 0x6a, 0x6d, 0x70, 0x72,\n    0x73, 0x73, 0x73, 0x74, 0x77, 0x7a, 0x7e, 0x80, 0x81, 0x7f, 0x7c, 0x78, 0x74, 0x72, 0x70, 0x70,\n    0x71, 0x70, 0x70, 0x6f, 0x6f, 0x6e, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e,\n    0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e,\n    0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70,\n    0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f,\n    0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x70, 0x70, 0x6f, 0x70, 0x71, 0x72, 0x74, 0x75,\n    0x76, 0x79, 0x7c, 0x7a, 0x73, 0x6c, 0x68, 0x67, 0x6a, 0x6b, 0x6e, 0x70, 0x72, 0x72, 0x72, 0x71,\n    0x72, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x70, 0x67, 0x65, 0x63, 0x63, 0x66, 0x6c, 0x72, 0x77,\n    0x74, 0x77, 0x79, 0x79, 0x77, 0x76, 0x79, 0x7c, 0x77, 0x76, 0x74, 0x72, 0x70, 0x6e, 0x6c, 0x6b,\n    0x68, 0x67, 0x67, 0x68, 0x6d, 0x74, 0x7b, 0x7f, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7e, 0x7f, 0x7e, 0x7c, 0x79, 0x78,\n    0x73, 0x72, 0x71, 0x70, 0x70, 0x72, 0x74, 0x75, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x77, 0x77, 0x77,\n    0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x79, 0x7a, 0x7a, 0x7a, 0x79, 0x77, 0x75, 0x74,\n    0x77, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x76, 0x76, 0x77, 0x77, 0x78,\n    0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x74, 0x74, 0x73, 0x73, 0x72, 0x71, 0x71, 0x72, 0x73, 0x73,\n    0x73, 0x73, 0x73, 0x72, 0x72, 0x71, 0x71, 0x70, 0x71, 0x71, 0x70, 0x70, 0x6f, 0x6e, 0x6d, 0x6d,\n    0x6a, 0x6b, 0x6c, 0x6d, 0x6d, 0x6c, 0x6a, 0x69, 0x62, 0x64, 0x66, 0x69, 0x69, 0x67, 0x65, 0x63,\n    0x68, 0x68, 0x67, 0x66, 0x66, 0x66, 0x67, 0x67, 0x6c, 0x6d, 0x70, 0x72, 0x73, 0x72, 0x71, 0x70,\n    0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x76, 0x76, 0x75, 0x74, 0x72, 0x71,\n    0x72, 0x71, 0x70, 0x6f, 0x6e, 0x6d, 0x6c, 0x6b, 0x6c, 0x6c, 0x6c, 0x6c, 0x6d, 0x6d, 0x6d, 0x6d,\n    0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d,\n    0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x6f,\n    0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e,\n    0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x71, 0x72, 0x73,\n    0x78, 0x7a, 0x7a, 0x75, 0x6c, 0x64, 0x5f, 0x5e, 0x63, 0x64, 0x65, 0x67, 0x69, 0x6a, 0x6b, 0x6b,\n    0x68, 0x68, 0x6a, 0x6b, 0x6d, 0x6f, 0x70, 0x70, 0x6b, 0x6c, 0x6e, 0x6f, 0x71, 0x71, 0x71, 0x71,\n    0x71, 0x72, 0x74, 0x76, 0x77, 0x78, 0x78, 0x78, 0x76, 0x74, 0x71, 0x6e, 0x6c, 0x6b, 0x6b, 0x6b,\n    0x62, 0x62, 0x65, 0x6c, 0x74, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7e, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7e, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7e, 0x7d, 0x7c, 0x7b, 0x7b, 0x7c, 0x7d, 0x7e,\n    0x73, 0x72, 0x71, 0x71, 0x71, 0x72, 0x74, 0x75, 0x79, 0x79, 0x79, 0x78, 0x78, 0x77, 0x77, 0x77,\n    0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x77, 0x76, 0x75,\n    0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x75, 0x75, 0x76, 0x76, 0x77, 0x77, 0x77, 0x78,\n    0x76, 0x76, 0x76, 0x75, 0x75, 0x74, 0x74, 0x74, 0x73, 0x73, 0x72, 0x71, 0x71, 0x72, 0x73, 0x73,\n    0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72, 0x72, 0x73, 0x73, 0x72, 0x72, 0x71, 0x70, 0x6f, 0x6f,\n    0x6c, 0x6d, 0x6e, 0x6e, 0x6e, 0x6d, 0x6c, 0x6b, 0x66, 0x67, 0x67, 0x67, 0x67, 0x66, 0x65, 0x65,\n    0x68, 0x68, 0x69, 0x69, 0x69, 0x6a, 0x6b, 0x6b, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x70, 0x70, 0x71,\n    0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x70, 0x70, 0x75, 0x75, 0x76, 0x76, 0x75, 0x74, 0x72, 0x71,\n    0x71, 0x71, 0x70, 0x6f, 0x6e, 0x6d, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6d, 0x6d, 0x6d, 0x6d,\n    0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e,\n    0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x6f,\n    0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e,\n    0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x71, 0x72, 0x73,\n    0x78, 0x79, 0x7a, 0x75, 0x6c, 0x64, 0x60, 0x5f, 0x62, 0x63, 0x64, 0x66, 0x67, 0x68, 0x69, 0x69,\n    0x63, 0x63, 0x65, 0x66, 0x68, 0x69, 0x6b, 0x6b, 0x6a, 0x6b, 0x6d, 0x6f, 0x71, 0x72, 0x72, 0x72,\n    0x71, 0x72, 0x73, 0x75, 0x76, 0x76, 0x75, 0x75, 0x74, 0x72, 0x70, 0x6d, 0x6c, 0x6b, 0x6b, 0x6c,\n    0x63, 0x63, 0x65, 0x6c, 0x74, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7e, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7e, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d,\n    0x73, 0x73, 0x72, 0x72, 0x72, 0x73, 0x74, 0x75, 0x79, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77,\n    0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7b, 0x7a, 0x79, 0x78, 0x76, 0x75,\n    0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78,\n    0x76, 0x76, 0x76, 0x75, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x72, 0x71, 0x71, 0x72, 0x73, 0x73,\n    0x72, 0x72, 0x72, 0x73, 0x74, 0x74, 0x75, 0x75, 0x76, 0x76, 0x76, 0x75, 0x74, 0x74, 0x73, 0x73,\n    0x6f, 0x6f, 0x70, 0x70, 0x70, 0x6f, 0x6e, 0x6d, 0x6d, 0x6b, 0x68, 0x66, 0x65, 0x65, 0x67, 0x68,\n    0x69, 0x6a, 0x6b, 0x6d, 0x6e, 0x70, 0x71, 0x71, 0x71, 0x6f, 0x6c, 0x6a, 0x6a, 0x6c, 0x70, 0x72,\n    0x70, 0x70, 0x6f, 0x6e, 0x6d, 0x6c, 0x6c, 0x6b, 0x75, 0x75, 0x75, 0x75, 0x75, 0x73, 0x72, 0x71,\n    0x71, 0x71, 0x70, 0x6f, 0x6e, 0x6d, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e,\n    0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e,\n    0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x6f,\n    0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e,\n    0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x71, 0x73, 0x74,\n    0x78, 0x79, 0x79, 0x74, 0x6c, 0x65, 0x61, 0x60, 0x62, 0x62, 0x63, 0x63, 0x64, 0x65, 0x66, 0x67,\n    0x5d, 0x5e, 0x5f, 0x61, 0x62, 0x64, 0x65, 0x66, 0x69, 0x6b, 0x6d, 0x6f, 0x71, 0x73, 0x73, 0x73,\n    0x70, 0x71, 0x72, 0x73, 0x73, 0x72, 0x71, 0x71, 0x70, 0x70, 0x6e, 0x6d, 0x6c, 0x6c, 0x6d, 0x6d,\n    0x65, 0x65, 0x66, 0x6c, 0x74, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7e, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7e, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d,\n    0x74, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x77,\n    0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x78, 0x77, 0x76,\n    0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78,\n    0x77, 0x76, 0x76, 0x75, 0x74, 0x73, 0x73, 0x72, 0x73, 0x73, 0x72, 0x71, 0x71, 0x72, 0x73, 0x73,\n    0x71, 0x72, 0x73, 0x74, 0x75, 0x77, 0x77, 0x78, 0x79, 0x79, 0x79, 0x78, 0x78, 0x77, 0x77, 0x77,\n    0x73, 0x73, 0x73, 0x72, 0x72, 0x71, 0x70, 0x70, 0x73, 0x6f, 0x6a, 0x65, 0x63, 0x65, 0x68, 0x6b,\n    0x6a, 0x6b, 0x6e, 0x70, 0x73, 0x74, 0x75, 0x75, 0x73, 0x70, 0x6a, 0x66, 0x66, 0x69, 0x6f, 0x73,\n    0x72, 0x71, 0x70, 0x6f, 0x6e, 0x6c, 0x6b, 0x6b, 0x74, 0x75, 0x75, 0x75, 0x74, 0x73, 0x72, 0x71,\n    0x71, 0x70, 0x70, 0x6f, 0x6e, 0x6d, 0x6d, 0x6c, 0x6c, 0x6c, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e,\n    0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f,\n    0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x6f,\n    0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e,\n    0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x6e, 0x6e, 0x6f, 0x70, 0x71, 0x73, 0x74,\n    0x77, 0x79, 0x79, 0x74, 0x6c, 0x65, 0x62, 0x62, 0x62, 0x62, 0x62, 0x61, 0x62, 0x63, 0x63, 0x64,\n    0x5c, 0x5d, 0x5e, 0x5f, 0x61, 0x63, 0x64, 0x65, 0x69, 0x6a, 0x6d, 0x70, 0x72, 0x73, 0x74, 0x74,\n    0x70, 0x70, 0x71, 0x71, 0x71, 0x6f, 0x6e, 0x6d, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e,\n    0x68, 0x66, 0x67, 0x6c, 0x74, 0x79, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7e, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7e, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b,\n    0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7d,\n    0x74, 0x74, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77,\n    0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b,\n    0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x79, 0x77, 0x76,\n    0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78,\n    0x78, 0x78, 0x77, 0x76, 0x75, 0x74, 0x73, 0x72, 0x73, 0x73, 0x72, 0x71, 0x71, 0x72, 0x73, 0x73,\n    0x72, 0x73, 0x74, 0x75, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79,\n    0x76, 0x76, 0x75, 0x74, 0x73, 0x73, 0x72, 0x72, 0x77, 0x72, 0x6c, 0x66, 0x65, 0x67, 0x6a, 0x6d,\n    0x6b, 0x6d, 0x70, 0x72, 0x74, 0x75, 0x76, 0x76, 0x73, 0x6f, 0x69, 0x64, 0x64, 0x69, 0x6f, 0x73,\n    0x75, 0x75, 0x74, 0x72, 0x71, 0x70, 0x6f, 0x6e, 0x74, 0x74, 0x75, 0x75, 0x74, 0x73, 0x71, 0x70,\n    0x70, 0x70, 0x6f, 0x6f, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6e,\n    0x6d, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f,\n    0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x6f,\n    0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e,\n    0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x72, 0x73, 0x74,\n    0x77, 0x79, 0x78, 0x73, 0x6c, 0x66, 0x64, 0x64, 0x64, 0x63, 0x62, 0x61, 0x60, 0x61, 0x62, 0x63,\n    0x5f, 0x60, 0x61, 0x62, 0x64, 0x66, 0x67, 0x68, 0x6a, 0x6b, 0x6e, 0x70, 0x72, 0x73, 0x74, 0x74,\n    0x70, 0x70, 0x71, 0x71, 0x70, 0x6e, 0x6d, 0x6c, 0x6c, 0x6d, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f,\n    0x6a, 0x68, 0x68, 0x6c, 0x73, 0x79, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7e, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d,\n    0x74, 0x75, 0x76, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x78,\n    0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b,\n    0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7d, 0x7c, 0x7b, 0x7a, 0x78, 0x77,\n    0x78, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78,\n    0x7a, 0x79, 0x78, 0x77, 0x76, 0x75, 0x74, 0x73, 0x73, 0x73, 0x72, 0x71, 0x71, 0x72, 0x73, 0x73,\n    0x74, 0x75, 0x75, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x79, 0x78, 0x76, 0x75, 0x73, 0x73, 0x73, 0x74, 0x77, 0x73, 0x6e, 0x6a, 0x68, 0x69, 0x6c, 0x6e,\n    0x6d, 0x6e, 0x71, 0x73, 0x74, 0x74, 0x72, 0x71, 0x70, 0x6d, 0x68, 0x65, 0x66, 0x6a, 0x70, 0x74,\n    0x77, 0x77, 0x76, 0x75, 0x74, 0x73, 0x73, 0x72, 0x74, 0x74, 0x74, 0x74, 0x74, 0x72, 0x71, 0x70,\n    0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f,\n    0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70,\n    0x6f, 0x6f, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x6f,\n    0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e,\n    0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x72, 0x74, 0x75,\n    0x77, 0x78, 0x77, 0x73, 0x6c, 0x67, 0x66, 0x66, 0x68, 0x66, 0x64, 0x61, 0x60, 0x61, 0x62, 0x63,\n    0x63, 0x64, 0x65, 0x67, 0x68, 0x6a, 0x6b, 0x6c, 0x6c, 0x6d, 0x6f, 0x71, 0x72, 0x73, 0x73, 0x72,\n    0x70, 0x71, 0x71, 0x71, 0x71, 0x6f, 0x6e, 0x6d, 0x6d, 0x6e, 0x6f, 0x70, 0x71, 0x71, 0x70, 0x70,\n    0x6d, 0x6a, 0x69, 0x6d, 0x73, 0x79, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7e, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7b, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c,\n    0x75, 0x76, 0x77, 0x78, 0x79, 0x78, 0x77, 0x76, 0x75, 0x75, 0x76, 0x76, 0x77, 0x77, 0x78, 0x78,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b,\n    0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7a, 0x79, 0x77,\n    0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x78,\n    0x7c, 0x7b, 0x7a, 0x79, 0x77, 0x76, 0x75, 0x74, 0x73, 0x73, 0x72, 0x71, 0x71, 0x72, 0x73, 0x73,\n    0x76, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7a, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x7a, 0x79, 0x77, 0x75, 0x73, 0x73, 0x74, 0x74, 0x75, 0x73, 0x70, 0x6d, 0x6c, 0x6c, 0x6e, 0x6e,\n    0x6e, 0x6f, 0x71, 0x72, 0x72, 0x70, 0x6d, 0x6c, 0x6c, 0x6b, 0x69, 0x68, 0x6a, 0x6d, 0x71, 0x73,\n    0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74, 0x74, 0x73, 0x74, 0x74, 0x74, 0x74, 0x72, 0x71, 0x70,\n    0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f,\n    0x70, 0x70, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71,\n    0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x6f,\n    0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e,\n    0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x70, 0x6f, 0x6f, 0x6f, 0x70, 0x72, 0x74, 0x75,\n    0x77, 0x78, 0x77, 0x72, 0x6c, 0x67, 0x67, 0x68, 0x6b, 0x69, 0x66, 0x63, 0x61, 0x62, 0x63, 0x64,\n    0x65, 0x66, 0x67, 0x69, 0x6a, 0x6c, 0x6d, 0x6e, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x72, 0x71, 0x71,\n    0x70, 0x71, 0x72, 0x72, 0x72, 0x71, 0x70, 0x6f, 0x6f, 0x70, 0x71, 0x72, 0x73, 0x72, 0x71, 0x70,\n    0x6e, 0x6c, 0x6a, 0x6d, 0x73, 0x79, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7e, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c,\n    0x7d, 0x7d, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c,\n    0x75, 0x76, 0x78, 0x79, 0x79, 0x79, 0x77, 0x76, 0x75, 0x75, 0x76, 0x76, 0x77, 0x77, 0x78, 0x78,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b,\n    0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7a, 0x79, 0x78,\n    0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7d, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x78,\n    0x7d, 0x7c, 0x7b, 0x7a, 0x78, 0x77, 0x75, 0x75, 0x73, 0x73, 0x72, 0x71, 0x71, 0x72, 0x73, 0x73,\n    0x77, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x7b, 0x79, 0x77, 0x75, 0x73, 0x73, 0x74, 0x74, 0x73, 0x72, 0x71, 0x70, 0x6f, 0x6e, 0x6e, 0x6e,\n    0x6e, 0x70, 0x71, 0x72, 0x70, 0x6d, 0x6a, 0x68, 0x69, 0x69, 0x69, 0x6a, 0x6c, 0x6f, 0x72, 0x73,\n    0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x73, 0x74, 0x74, 0x74, 0x73, 0x72, 0x71, 0x70,\n    0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f,\n    0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x73, 0x73, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71,\n    0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x6f,\n    0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e,\n    0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x70, 0x70, 0x6f, 0x70, 0x71, 0x72, 0x74, 0x75,\n    0x77, 0x78, 0x77, 0x72, 0x6b, 0x67, 0x67, 0x69, 0x6d, 0x6b, 0x67, 0x64, 0x62, 0x62, 0x63, 0x65,\n    0x65, 0x66, 0x67, 0x69, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x72, 0x71, 0x70, 0x70,\n    0x71, 0x71, 0x72, 0x73, 0x73, 0x73, 0x72, 0x71, 0x70, 0x71, 0x73, 0x74, 0x74, 0x73, 0x71, 0x70,\n    0x6f, 0x6c, 0x6a, 0x6d, 0x73, 0x79, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7e, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c,\n    0x7d, 0x7d, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c,\n    0x76, 0x76, 0x76, 0x77, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b,\n    0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7c, 0x7c, 0x7d, 0x7c, 0x7b, 0x7a, 0x78, 0x77,\n    0x75, 0x76, 0x78, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x79, 0x78, 0x78, 0x78, 0x78, 0x79,\n    0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x74, 0x73, 0x72, 0x71, 0x71, 0x71, 0x72, 0x73,\n    0x77, 0x78, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a,\n    0x79, 0x78, 0x78, 0x77, 0x77, 0x76, 0x76, 0x75, 0x70, 0x6f, 0x6f, 0x70, 0x73, 0x77, 0x7a, 0x7d,\n    0x77, 0x75, 0x71, 0x6d, 0x6b, 0x6b, 0x6c, 0x6d, 0x6c, 0x6c, 0x6b, 0x6b, 0x6c, 0x6f, 0x72, 0x73,\n    0x76, 0x76, 0x74, 0x72, 0x6e, 0x6b, 0x69, 0x67, 0x6c, 0x6d, 0x6f, 0x71, 0x71, 0x70, 0x6f, 0x6d,\n    0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x70, 0x70, 0x71, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6e, 0x6e, 0x6d,\n    0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72,\n    0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x71, 0x71, 0x70, 0x70, 0x6f, 0x6f,\n    0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70,\n    0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x74, 0x75, 0x75,\n    0x77, 0x76, 0x75, 0x73, 0x71, 0x6f, 0x6e, 0x6d, 0x6f, 0x6e, 0x6d, 0x6b, 0x6a, 0x6a, 0x6a, 0x6b,\n    0x6a, 0x6a, 0x6a, 0x6b, 0x6c, 0x6e, 0x70, 0x72, 0x72, 0x73, 0x74, 0x74, 0x74, 0x72, 0x70, 0x6f,\n    0x6d, 0x6e, 0x6f, 0x70, 0x72, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x76, 0x75, 0x75, 0x74, 0x73,\n    0x72, 0x73, 0x74, 0x76, 0x77, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a,\n    0x7f, 0x7f, 0x7d, 0x7c, 0x7c, 0x7c, 0x7d, 0x7e, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b,\n    0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x7b,\n    0x76, 0x76, 0x77, 0x77, 0x78, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b,\n    0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7a, 0x78, 0x77,\n    0x75, 0x76, 0x78, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x78, 0x78, 0x77, 0x78, 0x78,\n    0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x74, 0x73, 0x72, 0x71, 0x71, 0x71, 0x72, 0x73,\n    0x77, 0x78, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a,\n    0x79, 0x79, 0x78, 0x77, 0x77, 0x76, 0x76, 0x75, 0x71, 0x70, 0x70, 0x70, 0x72, 0x76, 0x79, 0x7b,\n    0x77, 0x75, 0x71, 0x6d, 0x6b, 0x6b, 0x6c, 0x6c, 0x6d, 0x6c, 0x6b, 0x6b, 0x6c, 0x6f, 0x72, 0x74,\n    0x75, 0x74, 0x73, 0x71, 0x6e, 0x6c, 0x6a, 0x69, 0x6c, 0x6d, 0x6f, 0x71, 0x71, 0x70, 0x6f, 0x6e,\n    0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e,\n    0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x71,\n    0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x72, 0x71, 0x71, 0x71, 0x70, 0x70, 0x6f, 0x6f,\n    0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f,\n    0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x74, 0x75, 0x75,\n    0x7a, 0x79, 0x78, 0x76, 0x74, 0x73, 0x71, 0x71, 0x6e, 0x6e, 0x6c, 0x6b, 0x6b, 0x6b, 0x6c, 0x6c,\n    0x6d, 0x6d, 0x6c, 0x6c, 0x6d, 0x6f, 0x71, 0x72, 0x72, 0x73, 0x74, 0x74, 0x74, 0x72, 0x71, 0x6f,\n    0x6e, 0x6f, 0x70, 0x71, 0x73, 0x74, 0x75, 0x76, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74,\n    0x73, 0x74, 0x75, 0x76, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a,\n    0x7f, 0x7e, 0x7d, 0x7c, 0x7b, 0x7c, 0x7c, 0x7d, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b,\n    0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x7b,\n    0x76, 0x77, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7a, 0x78, 0x77,\n    0x75, 0x76, 0x78, 0x7a, 0x7c, 0x7c, 0x7c, 0x7c, 0x7e, 0x7c, 0x7b, 0x79, 0x77, 0x77, 0x77, 0x77,\n    0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x74, 0x73, 0x72, 0x71, 0x71, 0x71, 0x72, 0x73,\n    0x77, 0x78, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a,\n    0x79, 0x79, 0x78, 0x78, 0x77, 0x76, 0x76, 0x76, 0x73, 0x72, 0x71, 0x70, 0x71, 0x74, 0x76, 0x78,\n    0x77, 0x75, 0x71, 0x6e, 0x6c, 0x6b, 0x6c, 0x6c, 0x6d, 0x6c, 0x6b, 0x6b, 0x6c, 0x6f, 0x72, 0x74,\n    0x73, 0x73, 0x71, 0x70, 0x6e, 0x6c, 0x6b, 0x6b, 0x6c, 0x6e, 0x70, 0x71, 0x72, 0x71, 0x6f, 0x6e,\n    0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e,\n    0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x71, 0x71,\n    0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70,\n    0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f,\n    0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x74, 0x75, 0x75,\n    0x7d, 0x7c, 0x7b, 0x79, 0x77, 0x76, 0x75, 0x74, 0x6e, 0x6d, 0x6c, 0x6c, 0x6c, 0x6d, 0x6e, 0x6f,\n    0x71, 0x71, 0x70, 0x6f, 0x6f, 0x70, 0x71, 0x71, 0x72, 0x73, 0x73, 0x73, 0x73, 0x72, 0x71, 0x70,\n    0x6f, 0x70, 0x71, 0x72, 0x73, 0x75, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75,\n    0x74, 0x75, 0x76, 0x77, 0x78, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a,\n    0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b,\n    0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x7c,\n    0x77, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c,\n    0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7a, 0x79, 0x78,\n    0x76, 0x77, 0x79, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7e, 0x7d, 0x7b, 0x79, 0x77, 0x76, 0x76, 0x76,\n    0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x74, 0x73, 0x72, 0x71, 0x71, 0x71, 0x72, 0x73,\n    0x77, 0x78, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x79, 0x79, 0x79, 0x78, 0x77, 0x77, 0x76, 0x76, 0x74, 0x73, 0x71, 0x70, 0x70, 0x72, 0x74, 0x75,\n    0x76, 0x75, 0x72, 0x6f, 0x6d, 0x6c, 0x6c, 0x6c, 0x6d, 0x6c, 0x6b, 0x6b, 0x6d, 0x6f, 0x72, 0x74,\n    0x72, 0x71, 0x70, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6c, 0x6e, 0x70, 0x72, 0x72, 0x71, 0x6f, 0x6e,\n    0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f,\n    0x71, 0x71, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71,\n    0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70,\n    0x72, 0x72, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f,\n    0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x74, 0x75, 0x75,\n    0x7c, 0x7b, 0x7a, 0x79, 0x77, 0x76, 0x75, 0x74, 0x6e, 0x6e, 0x6d, 0x6d, 0x6e, 0x70, 0x72, 0x73,\n    0x76, 0x75, 0x73, 0x72, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72,\n    0x71, 0x72, 0x72, 0x73, 0x75, 0x76, 0x76, 0x77, 0x75, 0x75, 0x74, 0x74, 0x74, 0x75, 0x76, 0x76,\n    0x76, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b,\n    0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c,\n    0x78, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c,\n    0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7e, 0x7e, 0x7d, 0x7c, 0x7b, 0x79, 0x78,\n    0x76, 0x77, 0x79, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7e, 0x7c, 0x7a, 0x79, 0x77, 0x77, 0x77, 0x77,\n    0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x74, 0x73, 0x72, 0x71, 0x71, 0x71, 0x72, 0x73,\n    0x77, 0x78, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7a, 0x7a, 0x79, 0x78, 0x78, 0x77, 0x77, 0x76, 0x75, 0x73, 0x71, 0x70, 0x6f, 0x71, 0x72, 0x74,\n    0x76, 0x75, 0x73, 0x70, 0x6e, 0x6d, 0x6c, 0x6b, 0x6d, 0x6d, 0x6c, 0x6c, 0x6d, 0x70, 0x73, 0x74,\n    0x72, 0x71, 0x6f, 0x6d, 0x6c, 0x6c, 0x6d, 0x6e, 0x6d, 0x6e, 0x70, 0x72, 0x72, 0x71, 0x70, 0x6e,\n    0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70,\n    0x72, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71,\n    0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71,\n    0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70,\n    0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x74, 0x75, 0x75,\n    0x78, 0x78, 0x77, 0x76, 0x74, 0x73, 0x72, 0x72, 0x70, 0x70, 0x70, 0x70, 0x71, 0x73, 0x75, 0x76,\n    0x79, 0x77, 0x76, 0x74, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x73, 0x73,\n    0x73, 0x73, 0x74, 0x75, 0x76, 0x77, 0x77, 0x78, 0x75, 0x74, 0x73, 0x73, 0x73, 0x75, 0x76, 0x77,\n    0x77, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b,\n    0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7b, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c,\n    0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7b, 0x79, 0x78,\n    0x76, 0x77, 0x79, 0x7b, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x78, 0x78, 0x78, 0x78, 0x79,\n    0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x74, 0x73, 0x72, 0x71, 0x71, 0x71, 0x72, 0x73,\n    0x77, 0x78, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c,\n    0x7a, 0x7a, 0x79, 0x79, 0x78, 0x77, 0x77, 0x77, 0x74, 0x73, 0x71, 0x6f, 0x6f, 0x70, 0x72, 0x73,\n    0x76, 0x75, 0x73, 0x71, 0x6f, 0x6d, 0x6c, 0x6b, 0x6e, 0x6d, 0x6c, 0x6c, 0x6d, 0x70, 0x73, 0x75,\n    0x73, 0x71, 0x6f, 0x6c, 0x6b, 0x6c, 0x6d, 0x6d, 0x6d, 0x6f, 0x71, 0x72, 0x73, 0x72, 0x70, 0x6f,\n    0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71,\n    0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x74, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x70, 0x70,\n    0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71,\n    0x72, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72,\n    0x71, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x74, 0x75, 0x75,\n    0x76, 0x76, 0x75, 0x74, 0x73, 0x72, 0x71, 0x71, 0x74, 0x73, 0x73, 0x73, 0x74, 0x76, 0x78, 0x79,\n    0x7a, 0x78, 0x77, 0x75, 0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x71, 0x71, 0x71, 0x72, 0x73, 0x74,\n    0x75, 0x75, 0x76, 0x76, 0x77, 0x78, 0x78, 0x78, 0x75, 0x74, 0x73, 0x72, 0x73, 0x75, 0x77, 0x79,\n    0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c,\n    0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b,\n    0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d,\n    0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d,\n    0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7b, 0x7a, 0x79,\n    0x76, 0x78, 0x7a, 0x7c, 0x7d, 0x7e, 0x7e, 0x7d, 0x7a, 0x79, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x7b,\n    0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x74, 0x73, 0x72, 0x71, 0x71, 0x71, 0x72, 0x73,\n    0x77, 0x78, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c,\n    0x7a, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x77, 0x77, 0x73, 0x72, 0x70, 0x6e, 0x6e, 0x70, 0x72, 0x73,\n    0x75, 0x75, 0x74, 0x72, 0x70, 0x6e, 0x6c, 0x6b, 0x6e, 0x6d, 0x6c, 0x6c, 0x6e, 0x70, 0x73, 0x75,\n    0x74, 0x72, 0x6f, 0x6c, 0x6a, 0x6a, 0x6c, 0x6d, 0x6d, 0x6f, 0x71, 0x73, 0x73, 0x72, 0x70, 0x6f,\n    0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x70, 0x70, 0x71, 0x71, 0x72, 0x72,\n    0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x74, 0x74, 0x72, 0x72, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70,\n    0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x6f, 0x6f, 0x70, 0x70, 0x71, 0x71, 0x71, 0x72,\n    0x73, 0x72, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74,\n    0x72, 0x72, 0x71, 0x70, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x74, 0x75, 0x75,\n    0x77, 0x76, 0x76, 0x75, 0x74, 0x73, 0x72, 0x72, 0x78, 0x77, 0x77, 0x77, 0x77, 0x78, 0x7a, 0x7a,\n    0x79, 0x78, 0x76, 0x75, 0x74, 0x74, 0x74, 0x74, 0x73, 0x72, 0x71, 0x70, 0x71, 0x72, 0x74, 0x75,\n    0x76, 0x76, 0x77, 0x77, 0x78, 0x78, 0x79, 0x79, 0x75, 0x74, 0x72, 0x72, 0x72, 0x75, 0x78, 0x79,\n    0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c,\n    0x7f, 0x7e, 0x7d, 0x7c, 0x7b, 0x7c, 0x7c, 0x7d, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b,\n    0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7d,\n    0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7d, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d,\n    0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7b, 0x7a, 0x79,\n    0x77, 0x78, 0x7a, 0x7c, 0x7d, 0x7e, 0x7e, 0x7e, 0x79, 0x78, 0x78, 0x78, 0x78, 0x79, 0x7b, 0x7c,\n    0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x74, 0x73, 0x72, 0x71, 0x71, 0x71, 0x72, 0x73,\n    0x77, 0x78, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c,\n    0x7a, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x77, 0x77, 0x72, 0x71, 0x6f, 0x6e, 0x6e, 0x70, 0x72, 0x73,\n    0x75, 0x75, 0x74, 0x72, 0x70, 0x6e, 0x6c, 0x6b, 0x6e, 0x6d, 0x6c, 0x6c, 0x6e, 0x70, 0x73, 0x75,\n    0x75, 0x73, 0x6f, 0x6c, 0x6a, 0x6a, 0x6b, 0x6c, 0x6d, 0x6f, 0x71, 0x73, 0x73, 0x72, 0x70, 0x6f,\n    0x71, 0x70, 0x70, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x70, 0x70, 0x71, 0x71, 0x72, 0x72,\n    0x72, 0x72, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x72, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70,\n    0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x6f, 0x6f, 0x70, 0x70, 0x71, 0x71, 0x72, 0x72,\n    0x73, 0x73, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75,\n    0x72, 0x72, 0x71, 0x70, 0x70, 0x6f, 0x6e, 0x6e, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x74, 0x75, 0x75,\n    0x78, 0x78, 0x77, 0x77, 0x76, 0x75, 0x75, 0x74, 0x7a, 0x7a, 0x79, 0x78, 0x79, 0x7a, 0x7b, 0x7b,\n    0x78, 0x78, 0x76, 0x75, 0x74, 0x74, 0x74, 0x75, 0x73, 0x72, 0x71, 0x70, 0x71, 0x72, 0x74, 0x75,\n    0x77, 0x77, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x75, 0x74, 0x72, 0x71, 0x72, 0x75, 0x78, 0x7a,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c,\n    0x7f, 0x7f, 0x7d, 0x7c, 0x7c, 0x7c, 0x7d, 0x7e, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b,\n    0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7d,\n    0x78, 0x79, 0x79, 0x7a, 0x7c, 0x7c, 0x7d, 0x7e, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7a, 0x7b, 0x7b, 0x7c, 0x7d, 0x7e, 0x7e, 0x7f, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79,\n    0x77, 0x78, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b, 0x79, 0x78, 0x78, 0x77, 0x78, 0x79, 0x7a, 0x7a,\n    0x7a, 0x7b, 0x7b, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x74, 0x73, 0x72, 0x71, 0x71, 0x71, 0x72, 0x73,\n    0x78, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x76, 0x71, 0x6f, 0x6e, 0x6d, 0x6e, 0x70, 0x73, 0x75,\n    0x76, 0x75, 0x73, 0x71, 0x6f, 0x6d, 0x6c, 0x6b, 0x6a, 0x6a, 0x6c, 0x6d, 0x6f, 0x71, 0x72, 0x73,\n    0x72, 0x70, 0x6d, 0x6b, 0x6a, 0x6a, 0x6b, 0x6c, 0x6e, 0x6f, 0x70, 0x71, 0x71, 0x71, 0x70, 0x6f,\n    0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6e, 0x6f, 0x6f, 0x70, 0x71, 0x72, 0x72, 0x72,\n    0x74, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x74, 0x73, 0x73, 0x71, 0x70, 0x6f, 0x6e, 0x6e,\n    0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70,\n    0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x73, 0x73, 0x74, 0x74, 0x75, 0x75, 0x76, 0x76,\n    0x76, 0x75, 0x75, 0x74, 0x74, 0x73, 0x73, 0x72, 0x70, 0x70, 0x70, 0x70, 0x71, 0x73, 0x74, 0x75,\n    0x76, 0x76, 0x77, 0x77, 0x79, 0x7a, 0x7b, 0x7c, 0x79, 0x79, 0x7a, 0x7a, 0x79, 0x78, 0x77, 0x76,\n    0x70, 0x6f, 0x6e, 0x6e, 0x6f, 0x70, 0x72, 0x74, 0x72, 0x71, 0x71, 0x70, 0x70, 0x71, 0x72, 0x72,\n    0x76, 0x77, 0x79, 0x7a, 0x7a, 0x79, 0x78, 0x77, 0x75, 0x72, 0x6e, 0x6b, 0x6c, 0x70, 0x76, 0x7a,\n    0x7c, 0x7a, 0x78, 0x7a, 0x7d, 0x7e, 0x7d, 0x7a, 0x78, 0x79, 0x7a, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b,\n    0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79,\n    0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7e, 0x7e, 0x7e, 0x7d, 0x7b, 0x7a, 0x7a, 0x7a, 0x7c, 0x7d,\n    0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7d, 0x7e, 0x7e, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79,\n    0x77, 0x78, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b, 0x79, 0x78, 0x78, 0x77, 0x78, 0x79, 0x7a, 0x7a,\n    0x7a, 0x7b, 0x7b, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x74, 0x73, 0x72, 0x71, 0x71, 0x71, 0x72, 0x73,\n    0x78, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x76, 0x72, 0x70, 0x6f, 0x6e, 0x6f, 0x71, 0x74, 0x76,\n    0x75, 0x74, 0x73, 0x72, 0x70, 0x6f, 0x6e, 0x6d, 0x6c, 0x6c, 0x6d, 0x6e, 0x70, 0x71, 0x72, 0x72,\n    0x72, 0x70, 0x6e, 0x6b, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f, 0x70, 0x71, 0x71, 0x71, 0x70, 0x6f,\n    0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x72, 0x72, 0x73, 0x73,\n    0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72, 0x75, 0x75, 0x74, 0x73, 0x73, 0x72, 0x71, 0x71,\n    0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70,\n    0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x71, 0x72, 0x72, 0x73, 0x74, 0x74, 0x75, 0x75,\n    0x75, 0x75, 0x74, 0x74, 0x73, 0x72, 0x72, 0x72, 0x70, 0x70, 0x70, 0x70, 0x71, 0x73, 0x74, 0x75,\n    0x77, 0x77, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x78, 0x76, 0x75, 0x74,\n    0x70, 0x6f, 0x6f, 0x6e, 0x6f, 0x71, 0x72, 0x74, 0x71, 0x71, 0x70, 0x70, 0x71, 0x72, 0x73, 0x74,\n    0x77, 0x78, 0x79, 0x7a, 0x7a, 0x7a, 0x78, 0x78, 0x76, 0x73, 0x6f, 0x6d, 0x6d, 0x71, 0x76, 0x7a,\n    0x7a, 0x78, 0x77, 0x79, 0x7c, 0x7e, 0x7d, 0x7b, 0x78, 0x79, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b,\n    0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79,\n    0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7e, 0x7d, 0x7b, 0x7a, 0x7a, 0x7a, 0x7c, 0x7c,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79,\n    0x77, 0x78, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b, 0x79, 0x78, 0x78, 0x77, 0x78, 0x79, 0x7a, 0x7a,\n    0x7a, 0x7b, 0x7b, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x74, 0x73, 0x72, 0x71, 0x71, 0x71, 0x72, 0x73,\n    0x78, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x76, 0x73, 0x72, 0x70, 0x70, 0x70, 0x72, 0x75, 0x76,\n    0x74, 0x74, 0x73, 0x73, 0x72, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x6f, 0x70, 0x71, 0x72, 0x72, 0x72,\n    0x72, 0x71, 0x6e, 0x6c, 0x6b, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f, 0x70, 0x71, 0x71, 0x71, 0x70, 0x6f,\n    0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72,\n    0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x73,\n    0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70,\n    0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x71, 0x72, 0x72, 0x73, 0x73,\n    0x74, 0x74, 0x73, 0x73, 0x72, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x71, 0x73, 0x74, 0x75,\n    0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x76, 0x79, 0x79, 0x79, 0x78, 0x76, 0x74, 0x72, 0x70,\n    0x70, 0x6f, 0x6f, 0x6f, 0x70, 0x71, 0x72, 0x73, 0x70, 0x6f, 0x6f, 0x70, 0x71, 0x73, 0x75, 0x76,\n    0x78, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x78, 0x76, 0x74, 0x71, 0x6f, 0x70, 0x73, 0x77, 0x7a,\n    0x77, 0x75, 0x74, 0x77, 0x7b, 0x7e, 0x7d, 0x7b, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b,\n    0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79,\n    0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x7b, 0x7b, 0x7c,\n    0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79,\n    0x77, 0x78, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b, 0x79, 0x78, 0x78, 0x77, 0x78, 0x79, 0x7a, 0x7a,\n    0x7a, 0x7b, 0x7b, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x74, 0x73, 0x72, 0x71, 0x71, 0x71, 0x72, 0x73,\n    0x78, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7b, 0x7a, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x75, 0x74, 0x73, 0x72, 0x71, 0x72, 0x73, 0x75, 0x76,\n    0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x73,\n    0x73, 0x71, 0x6f, 0x6c, 0x6b, 0x6c, 0x6d, 0x6e, 0x6e, 0x6f, 0x70, 0x71, 0x71, 0x71, 0x70, 0x6f,\n    0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70,\n    0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73,\n    0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70,\n    0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6e, 0x6e, 0x6f, 0x70, 0x70, 0x71, 0x71, 0x72,\n    0x73, 0x73, 0x73, 0x72, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x71, 0x73, 0x74, 0x75,\n    0x79, 0x79, 0x79, 0x78, 0x77, 0x75, 0x74, 0x73, 0x78, 0x78, 0x78, 0x76, 0x74, 0x72, 0x6f, 0x6e,\n    0x6f, 0x6f, 0x70, 0x70, 0x71, 0x72, 0x72, 0x73, 0x6f, 0x6f, 0x6f, 0x70, 0x72, 0x75, 0x77, 0x79,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x77, 0x75, 0x73, 0x72, 0x72, 0x75, 0x77, 0x79,\n    0x74, 0x72, 0x72, 0x75, 0x7a, 0x7d, 0x7d, 0x7b, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79,\n    0x78, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79,\n    0x77, 0x78, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b, 0x79, 0x78, 0x78, 0x77, 0x78, 0x79, 0x7a, 0x7a,\n    0x7a, 0x7b, 0x7b, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x74, 0x73, 0x72, 0x71, 0x71, 0x71, 0x72, 0x73,\n    0x78, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7a, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x75, 0x75, 0x74, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x75,\n    0x72, 0x72, 0x73, 0x73, 0x74, 0x74, 0x75, 0x75, 0x72, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73,\n    0x74, 0x72, 0x6f, 0x6d, 0x6c, 0x6c, 0x6e, 0x6f, 0x6e, 0x6f, 0x70, 0x71, 0x71, 0x71, 0x70, 0x6f,\n    0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6e,\n    0x71, 0x71, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72, 0x71, 0x71, 0x70, 0x70,\n    0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70,\n    0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6e, 0x6e, 0x6f, 0x70, 0x70, 0x71, 0x71, 0x72,\n    0x73, 0x73, 0x73, 0x72, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x71, 0x73, 0x74, 0x75,\n    0x78, 0x78, 0x78, 0x78, 0x76, 0x74, 0x71, 0x70, 0x77, 0x77, 0x77, 0x75, 0x73, 0x71, 0x6e, 0x6d,\n    0x6f, 0x70, 0x70, 0x71, 0x72, 0x72, 0x72, 0x73, 0x6f, 0x6f, 0x70, 0x71, 0x73, 0x76, 0x78, 0x7a,\n    0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x77, 0x76, 0x75, 0x75, 0x77, 0x78, 0x79,\n    0x73, 0x71, 0x71, 0x74, 0x7a, 0x7d, 0x7d, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a,\n    0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79,\n    0x78, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79,\n    0x77, 0x78, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b, 0x79, 0x78, 0x78, 0x77, 0x78, 0x79, 0x7a, 0x7a,\n    0x7a, 0x7b, 0x7b, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x74, 0x73, 0x72, 0x71, 0x71, 0x71, 0x72, 0x73,\n    0x78, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7a, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x75, 0x75, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73,\n    0x72, 0x72, 0x72, 0x73, 0x74, 0x74, 0x74, 0x75, 0x71, 0x71, 0x71, 0x72, 0x73, 0x73, 0x74, 0x74,\n    0x74, 0x73, 0x70, 0x6e, 0x6d, 0x6d, 0x6e, 0x6f, 0x6e, 0x6f, 0x70, 0x71, 0x71, 0x71, 0x70, 0x6f,\n    0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6c, 0x6d, 0x6d, 0x6e, 0x6e, 0x6f, 0x70, 0x70,\n    0x74, 0x74, 0x75, 0x75, 0x76, 0x77, 0x77, 0x77, 0x74, 0x74, 0x73, 0x72, 0x71, 0x70, 0x6f, 0x6f,\n    0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70,\n    0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x71, 0x72, 0x72, 0x73, 0x73,\n    0x74, 0x74, 0x73, 0x73, 0x72, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x71, 0x73, 0x74, 0x75,\n    0x76, 0x77, 0x78, 0x78, 0x76, 0x73, 0x70, 0x6e, 0x76, 0x76, 0x76, 0x75, 0x73, 0x71, 0x6f, 0x6d,\n    0x6f, 0x70, 0x71, 0x72, 0x73, 0x73, 0x73, 0x72, 0x70, 0x70, 0x71, 0x72, 0x74, 0x76, 0x79, 0x7a,\n    0x7b, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x77, 0x78, 0x79, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79,\n    0x73, 0x72, 0x71, 0x74, 0x7a, 0x7d, 0x7d, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a,\n    0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79,\n    0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7c, 0x7a, 0x7a,\n    0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79,\n    0x77, 0x78, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b, 0x79, 0x78, 0x78, 0x77, 0x78, 0x79, 0x7a, 0x7a,\n    0x7a, 0x7b, 0x7b, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x74, 0x73, 0x72, 0x71, 0x71, 0x71, 0x72, 0x73,\n    0x78, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7a, 0x79, 0x79, 0x78, 0x77, 0x76, 0x75, 0x75, 0x72, 0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72,\n    0x72, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x6f, 0x6f, 0x70, 0x71, 0x73, 0x74, 0x75, 0x75,\n    0x75, 0x73, 0x70, 0x6e, 0x6d, 0x6e, 0x6f, 0x70, 0x6e, 0x6f, 0x70, 0x71, 0x71, 0x71, 0x70, 0x6f,\n    0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6e, 0x6f, 0x70, 0x71, 0x73, 0x74, 0x75, 0x76,\n    0x78, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7a, 0x79, 0x78, 0x76, 0x74, 0x72, 0x71, 0x70,\n    0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70,\n    0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x71, 0x72, 0x72, 0x73, 0x74, 0x74, 0x75, 0x75,\n    0x75, 0x75, 0x74, 0x74, 0x73, 0x72, 0x72, 0x72, 0x70, 0x70, 0x70, 0x70, 0x71, 0x73, 0x74, 0x75,\n    0x75, 0x76, 0x77, 0x77, 0x76, 0x73, 0x70, 0x6e, 0x75, 0x75, 0x75, 0x75, 0x74, 0x72, 0x70, 0x6f,\n    0x6e, 0x70, 0x71, 0x73, 0x74, 0x73, 0x73, 0x72, 0x72, 0x71, 0x72, 0x72, 0x74, 0x76, 0x78, 0x79,\n    0x7b, 0x7a, 0x78, 0x76, 0x75, 0x75, 0x76, 0x77, 0x79, 0x7a, 0x7a, 0x7b, 0x7a, 0x7a, 0x79, 0x79,\n    0x75, 0x73, 0x72, 0x75, 0x7a, 0x7d, 0x7c, 0x7a, 0x7c, 0x7d, 0x7e, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79,\n    0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7a, 0x79,\n    0x78, 0x79, 0x79, 0x7a, 0x7c, 0x7c, 0x7d, 0x7e, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7f, 0x7f, 0x7f, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79,\n    0x77, 0x78, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b, 0x79, 0x78, 0x78, 0x77, 0x78, 0x79, 0x7a, 0x7a,\n    0x7a, 0x7b, 0x7b, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x74, 0x73, 0x72, 0x71, 0x71, 0x71, 0x72, 0x73,\n    0x78, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7a, 0x79, 0x78, 0x78, 0x76, 0x76, 0x75, 0x74, 0x72, 0x72, 0x73, 0x73, 0x72, 0x72, 0x71, 0x71,\n    0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x6d, 0x6e, 0x6f, 0x71, 0x72, 0x74, 0x75, 0x76,\n    0x75, 0x73, 0x71, 0x6e, 0x6d, 0x6e, 0x6f, 0x70, 0x6e, 0x6f, 0x70, 0x71, 0x71, 0x71, 0x70, 0x6f,\n    0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x71, 0x72, 0x73, 0x75, 0x77, 0x79, 0x7a, 0x7b,\n    0x7a, 0x7b, 0x7b, 0x7c, 0x7d, 0x7e, 0x7e, 0x7f, 0x7e, 0x7d, 0x7c, 0x7a, 0x77, 0x75, 0x73, 0x73,\n    0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70,\n    0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x73, 0x73, 0x74, 0x74, 0x75, 0x75, 0x76, 0x76,\n    0x76, 0x75, 0x75, 0x74, 0x74, 0x73, 0x73, 0x72, 0x70, 0x70, 0x70, 0x70, 0x71, 0x73, 0x74, 0x75,\n    0x73, 0x75, 0x76, 0x77, 0x76, 0x73, 0x70, 0x6e, 0x74, 0x74, 0x75, 0x75, 0x74, 0x73, 0x71, 0x70,\n    0x6e, 0x70, 0x72, 0x73, 0x74, 0x74, 0x73, 0x72, 0x73, 0x72, 0x72, 0x73, 0x74, 0x76, 0x78, 0x79,\n    0x7b, 0x79, 0x77, 0x75, 0x74, 0x74, 0x75, 0x76, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b, 0x79, 0x78,\n    0x76, 0x74, 0x73, 0x76, 0x7a, 0x7d, 0x7c, 0x7a, 0x7d, 0x7d, 0x7e, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79,\n    0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7e, 0x7e, 0x7b, 0x7c, 0x7d, 0x7e, 0x7d, 0x7c, 0x7a, 0x79,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7b, 0x7a, 0x79,\n    0x79, 0x7a, 0x7c, 0x7e, 0x7e, 0x7c, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79,\n    0x78, 0x7a, 0x7b, 0x7c, 0x7c, 0x7a, 0x78, 0x77, 0x73, 0x73, 0x72, 0x71, 0x71, 0x72, 0x73, 0x73,\n    0x77, 0x77, 0x78, 0x79, 0x7b, 0x7c, 0x7d, 0x7d, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x78, 0x78, 0x77, 0x77, 0x76, 0x75, 0x74, 0x74, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d,\n    0x71, 0x72, 0x75, 0x76, 0x76, 0x74, 0x71, 0x6f, 0x6f, 0x70, 0x70, 0x71, 0x73, 0x73, 0x74, 0x75,\n    0x73, 0x73, 0x73, 0x72, 0x71, 0x71, 0x70, 0x70, 0x72, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x6e, 0x6e,\n    0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x71, 0x74, 0x74, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76,\n    0x78, 0x79, 0x7a, 0x7b, 0x7d, 0x7e, 0x7f, 0x80, 0x7f, 0x7f, 0x7e, 0x7d, 0x7a, 0x78, 0x75, 0x74,\n    0x70, 0x70, 0x6f, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x71, 0x71, 0x72, 0x72, 0x72, 0x71, 0x70, 0x6f,\n    0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x72, 0x73, 0x73, 0x74, 0x74, 0x75, 0x75, 0x75,\n    0x74, 0x73, 0x72, 0x71, 0x71, 0x72, 0x74, 0x75, 0x73, 0x72, 0x70, 0x6f, 0x6f, 0x72, 0x75, 0x77,\n    0x79, 0x77, 0x75, 0x73, 0x72, 0x73, 0x74, 0x75, 0x70, 0x70, 0x71, 0x73, 0x74, 0x76, 0x77, 0x77,\n    0x74, 0x73, 0x71, 0x6f, 0x6f, 0x6e, 0x6f, 0x6f, 0x72, 0x76, 0x79, 0x79, 0x75, 0x72, 0x71, 0x71,\n    0x77, 0x77, 0x77, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7c, 0x7d, 0x7e, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x79, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7e, 0x7c, 0x7d, 0x7d, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a,\n    0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x7c, 0x7c, 0x7d, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x79,\n    0x79, 0x7a, 0x7c, 0x7d, 0x7d, 0x7c, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79,\n    0x78, 0x7a, 0x7b, 0x7c, 0x7c, 0x7a, 0x78, 0x77, 0x73, 0x73, 0x72, 0x71, 0x71, 0x72, 0x73, 0x73,\n    0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x79, 0x79, 0x78, 0x77, 0x76, 0x75, 0x75, 0x75, 0x70, 0x70, 0x70, 0x6f, 0x6e, 0x6e, 0x6e, 0x6d,\n    0x70, 0x71, 0x74, 0x76, 0x76, 0x74, 0x72, 0x71, 0x71, 0x71, 0x72, 0x72, 0x73, 0x73, 0x74, 0x74,\n    0x73, 0x73, 0x73, 0x72, 0x71, 0x71, 0x70, 0x70, 0x72, 0x72, 0x71, 0x71, 0x70, 0x70, 0x6f, 0x6f,\n    0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x71, 0x73, 0x73, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75,\n    0x76, 0x76, 0x77, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7a, 0x78, 0x76, 0x74,\n    0x72, 0x71, 0x70, 0x6f, 0x6f, 0x70, 0x71, 0x72, 0x71, 0x71, 0x72, 0x72, 0x72, 0x71, 0x70, 0x6f,\n    0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x72, 0x72, 0x73, 0x73, 0x74, 0x74, 0x74, 0x75,\n    0x74, 0x73, 0x72, 0x71, 0x71, 0x72, 0x73, 0x74, 0x73, 0x71, 0x70, 0x6f, 0x6f, 0x72, 0x74, 0x76,\n    0x75, 0x74, 0x72, 0x70, 0x70, 0x71, 0x72, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x76, 0x76, 0x77,\n    0x73, 0x72, 0x71, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x73, 0x76, 0x7a, 0x7a, 0x76, 0x73, 0x72, 0x73,\n    0x77, 0x77, 0x77, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7c, 0x7b, 0x7b, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7e, 0x7c, 0x7d, 0x7d, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a,\n    0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x7c, 0x7c, 0x7d, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x79,\n    0x79, 0x7a, 0x7c, 0x7d, 0x7d, 0x7c, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79,\n    0x78, 0x7a, 0x7b, 0x7c, 0x7c, 0x7a, 0x78, 0x77, 0x73, 0x73, 0x72, 0x71, 0x71, 0x72, 0x73, 0x73,\n    0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d,\n    0x7a, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x75, 0x75, 0x71, 0x71, 0x70, 0x70, 0x6f, 0x6e, 0x6e, 0x6e,\n    0x6e, 0x70, 0x72, 0x74, 0x75, 0x75, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73,\n    0x73, 0x73, 0x73, 0x72, 0x71, 0x71, 0x70, 0x70, 0x73, 0x73, 0x72, 0x72, 0x71, 0x70, 0x70, 0x70,\n    0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x71, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x74,\n    0x73, 0x73, 0x74, 0x75, 0x76, 0x77, 0x77, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x79, 0x78, 0x76, 0x76,\n    0x74, 0x73, 0x72, 0x71, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x71, 0x70, 0x6f,\n    0x6f, 0x70, 0x70, 0x71, 0x72, 0x73, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75,\n    0x74, 0x73, 0x72, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x71, 0x70, 0x6f, 0x70, 0x72, 0x74, 0x75,\n    0x71, 0x70, 0x6e, 0x6d, 0x6d, 0x6f, 0x71, 0x72, 0x78, 0x78, 0x78, 0x77, 0x77, 0x76, 0x76, 0x75,\n    0x73, 0x72, 0x71, 0x70, 0x6f, 0x6f, 0x70, 0x70, 0x74, 0x78, 0x7b, 0x7b, 0x77, 0x74, 0x74, 0x75,\n    0x77, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x7b, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a,\n    0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x7c, 0x7c, 0x7d, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a,\n    0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79,\n    0x78, 0x7a, 0x7b, 0x7d, 0x7d, 0x7b, 0x7a, 0x78, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79,\n    0x78, 0x7a, 0x7b, 0x7c, 0x7c, 0x7a, 0x78, 0x77, 0x73, 0x73, 0x72, 0x71, 0x71, 0x72, 0x73, 0x73,\n    0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d,\n    0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x75, 0x72, 0x72, 0x71, 0x70, 0x6f, 0x6e, 0x6e, 0x6d,\n    0x6c, 0x6e, 0x70, 0x72, 0x74, 0x75, 0x75, 0x74, 0x75, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73,\n    0x73, 0x73, 0x73, 0x72, 0x71, 0x71, 0x70, 0x70, 0x74, 0x74, 0x73, 0x72, 0x72, 0x71, 0x71, 0x70,\n    0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72,\n    0x70, 0x70, 0x71, 0x71, 0x72, 0x72, 0x73, 0x73, 0x75, 0x76, 0x77, 0x78, 0x78, 0x78, 0x77, 0x76,\n    0x76, 0x75, 0x73, 0x72, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x71, 0x70, 0x6f,\n    0x6f, 0x6f, 0x71, 0x73, 0x74, 0x76, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79,\n    0x74, 0x74, 0x73, 0x72, 0x71, 0x71, 0x70, 0x70, 0x71, 0x70, 0x70, 0x6f, 0x70, 0x72, 0x73, 0x74,\n    0x70, 0x6f, 0x6e, 0x6d, 0x6e, 0x70, 0x72, 0x74, 0x7b, 0x7b, 0x7a, 0x78, 0x77, 0x76, 0x75, 0x74,\n    0x73, 0x72, 0x71, 0x70, 0x6f, 0x70, 0x70, 0x71, 0x76, 0x79, 0x7c, 0x7b, 0x78, 0x76, 0x76, 0x77,\n    0x77, 0x77, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a,\n    0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x7c, 0x7c, 0x7d, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a,\n    0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7b, 0x7a, 0x79,\n    0x78, 0x79, 0x7b, 0x7c, 0x7c, 0x7b, 0x79, 0x78, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79,\n    0x78, 0x7a, 0x7b, 0x7c, 0x7c, 0x7a, 0x78, 0x77, 0x73, 0x73, 0x72, 0x71, 0x71, 0x72, 0x73, 0x73,\n    0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d,\n    0x7c, 0x7c, 0x7b, 0x79, 0x78, 0x76, 0x75, 0x75, 0x72, 0x72, 0x71, 0x70, 0x6f, 0x6e, 0x6d, 0x6d,\n    0x6b, 0x6c, 0x6e, 0x70, 0x72, 0x73, 0x74, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x72, 0x72,\n    0x73, 0x73, 0x73, 0x72, 0x71, 0x71, 0x70, 0x70, 0x74, 0x74, 0x73, 0x72, 0x72, 0x71, 0x71, 0x70,\n    0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x71, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x72,\n    0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x72, 0x73, 0x75, 0x76, 0x77, 0x76, 0x76, 0x76,\n    0x76, 0x75, 0x73, 0x72, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x71, 0x70, 0x6f,\n    0x6f, 0x70, 0x71, 0x73, 0x76, 0x78, 0x79, 0x7a, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d,\n    0x76, 0x75, 0x75, 0x74, 0x72, 0x71, 0x70, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x70, 0x71, 0x73, 0x73,\n    0x72, 0x71, 0x6f, 0x6f, 0x6f, 0x71, 0x74, 0x75, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x74, 0x73, 0x73,\n    0x73, 0x72, 0x71, 0x70, 0x70, 0x70, 0x71, 0x72, 0x76, 0x79, 0x7c, 0x7b, 0x78, 0x76, 0x77, 0x79,\n    0x78, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7b, 0x7b, 0x7a, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7c, 0x7c, 0x7d, 0x7c, 0x7b, 0x7a, 0x79,\n    0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x7c, 0x7c, 0x7d, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7b, 0x79, 0x78,\n    0x78, 0x79, 0x7b, 0x7c, 0x7c, 0x7b, 0x79, 0x78, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79,\n    0x78, 0x7a, 0x7b, 0x7c, 0x7c, 0x7a, 0x78, 0x77, 0x73, 0x73, 0x72, 0x71, 0x71, 0x72, 0x73, 0x73,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d,\n    0x7c, 0x7b, 0x7a, 0x79, 0x77, 0x75, 0x74, 0x73, 0x72, 0x71, 0x70, 0x6f, 0x6e, 0x6d, 0x6c, 0x6b,\n    0x69, 0x6a, 0x6b, 0x6d, 0x6f, 0x70, 0x71, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72,\n    0x73, 0x73, 0x73, 0x72, 0x71, 0x71, 0x70, 0x70, 0x73, 0x73, 0x72, 0x72, 0x71, 0x70, 0x70, 0x70,\n    0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x71, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x72, 0x72,\n    0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x71, 0x72, 0x73, 0x74, 0x75, 0x75, 0x74, 0x74,\n    0x74, 0x73, 0x72, 0x71, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x71, 0x70, 0x6f,\n    0x6f, 0x70, 0x72, 0x74, 0x76, 0x78, 0x7a, 0x7b, 0x7f, 0x7f, 0x7f, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d,\n    0x77, 0x77, 0x77, 0x76, 0x74, 0x72, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x71, 0x71, 0x72, 0x72,\n    0x73, 0x72, 0x70, 0x6f, 0x6f, 0x71, 0x73, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x72, 0x72, 0x71,\n    0x73, 0x72, 0x71, 0x70, 0x70, 0x71, 0x72, 0x73, 0x77, 0x79, 0x7b, 0x7a, 0x77, 0x76, 0x78, 0x7b,\n    0x78, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7b, 0x7a, 0x7a, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x79,\n    0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x7c, 0x7c, 0x7d, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7e, 0x7e, 0x7f, 0x7e, 0x7d, 0x7b, 0x79, 0x78,\n    0x77, 0x79, 0x7b, 0x7c, 0x7c, 0x7b, 0x79, 0x77, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79,\n    0x78, 0x7a, 0x7b, 0x7c, 0x7c, 0x7a, 0x78, 0x77, 0x73, 0x73, 0x72, 0x71, 0x71, 0x72, 0x73, 0x73,\n    0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7b, 0x7b, 0x79, 0x78, 0x76, 0x74, 0x73, 0x72, 0x71, 0x71, 0x6f, 0x6e, 0x6d, 0x6b, 0x6a, 0x69,\n    0x69, 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f, 0x6f, 0x70, 0x70, 0x71, 0x71, 0x72, 0x72, 0x73,\n    0x73, 0x73, 0x73, 0x72, 0x71, 0x71, 0x70, 0x70, 0x72, 0x72, 0x71, 0x71, 0x70, 0x70, 0x6f, 0x6f,\n    0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x71, 0x70, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72,\n    0x73, 0x73, 0x73, 0x72, 0x72, 0x71, 0x71, 0x70, 0x70, 0x71, 0x72, 0x73, 0x74, 0x73, 0x73, 0x72,\n    0x72, 0x71, 0x70, 0x6f, 0x6f, 0x70, 0x71, 0x72, 0x71, 0x71, 0x72, 0x72, 0x72, 0x71, 0x70, 0x6f,\n    0x6f, 0x70, 0x72, 0x74, 0x76, 0x78, 0x79, 0x7a, 0x7d, 0x7d, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a,\n    0x79, 0x79, 0x79, 0x78, 0x76, 0x73, 0x70, 0x6f, 0x6e, 0x6f, 0x6f, 0x70, 0x71, 0x71, 0x72, 0x72,\n    0x72, 0x70, 0x6e, 0x6d, 0x6c, 0x6d, 0x6f, 0x70, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x70, 0x70, 0x71,\n    0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x72, 0x73, 0x76, 0x79, 0x7a, 0x79, 0x77, 0x76, 0x78, 0x7b,\n    0x78, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7b, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x79,\n    0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x7c, 0x7c, 0x7d, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7f, 0x7f, 0x7f, 0x7e, 0x7d, 0x7b, 0x79, 0x78,\n    0x77, 0x79, 0x7a, 0x7c, 0x7c, 0x7a, 0x79, 0x77, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79,\n    0x78, 0x7a, 0x7b, 0x7c, 0x7c, 0x7a, 0x78, 0x77, 0x73, 0x73, 0x72, 0x71, 0x71, 0x72, 0x73, 0x73,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7b, 0x7a, 0x79, 0x77, 0x75, 0x73, 0x72, 0x71, 0x71, 0x70, 0x6f, 0x6d, 0x6c, 0x6a, 0x69, 0x68,\n    0x69, 0x69, 0x69, 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x72, 0x73,\n    0x73, 0x73, 0x73, 0x72, 0x71, 0x71, 0x70, 0x70, 0x72, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x6e, 0x6e,\n    0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x73,\n    0x75, 0x75, 0x74, 0x74, 0x73, 0x72, 0x71, 0x71, 0x70, 0x71, 0x72, 0x73, 0x73, 0x72, 0x71, 0x71,\n    0x70, 0x70, 0x6f, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x71, 0x71, 0x72, 0x72, 0x72, 0x71, 0x70, 0x6f,\n    0x70, 0x70, 0x72, 0x73, 0x75, 0x77, 0x78, 0x79, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x77, 0x77,\n    0x7a, 0x7a, 0x7a, 0x79, 0x77, 0x74, 0x71, 0x6f, 0x6e, 0x6e, 0x6f, 0x70, 0x71, 0x71, 0x71, 0x71,\n    0x70, 0x6e, 0x6c, 0x6a, 0x69, 0x6a, 0x6b, 0x6c, 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6f, 0x70, 0x70,\n    0x72, 0x72, 0x71, 0x71, 0x71, 0x72, 0x73, 0x74, 0x76, 0x78, 0x7a, 0x78, 0x76, 0x75, 0x78, 0x7b,\n    0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7a, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x79,\n    0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x7c, 0x7c, 0x7d, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a,\n    0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7e, 0x7e, 0x7e, 0x7d, 0x7b, 0x7a, 0x79,\n    0x76, 0x77, 0x79, 0x79, 0x79, 0x78, 0x76, 0x75, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78,\n    0x79, 0x79, 0x7a, 0x7a, 0x79, 0x78, 0x76, 0x75, 0x72, 0x71, 0x71, 0x70, 0x70, 0x71, 0x71, 0x72,\n    0x79, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x78, 0x78, 0x77, 0x76, 0x74, 0x70, 0x6d, 0x6b, 0x6b, 0x6c, 0x6c, 0x6d, 0x6c, 0x6b, 0x6a, 0x69,\n    0x68, 0x68, 0x68, 0x69, 0x6a, 0x6a, 0x6a, 0x6b, 0x69, 0x6b, 0x6e, 0x70, 0x72, 0x72, 0x71, 0x70,\n    0x73, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x6f, 0x70, 0x70, 0x71, 0x70, 0x6f, 0x6e, 0x6d,\n    0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x71, 0x6f, 0x6f, 0x70, 0x71, 0x72, 0x73, 0x73, 0x74,\n    0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x76, 0x73, 0x73, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75,\n    0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x70, 0x6f, 0x6e,\n    0x6f, 0x6f, 0x70, 0x71, 0x72, 0x74, 0x74, 0x75, 0x75, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7a,\n    0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x77, 0x77, 0x72, 0x71, 0x70, 0x6f, 0x70, 0x71, 0x72, 0x74,\n    0x70, 0x6c, 0x68, 0x66, 0x68, 0x68, 0x67, 0x65, 0x65, 0x62, 0x5f, 0x62, 0x68, 0x6e, 0x72, 0x73,\n    0x72, 0x71, 0x71, 0x71, 0x70, 0x70, 0x6f, 0x6f, 0x72, 0x74, 0x76, 0x77, 0x77, 0x76, 0x75, 0x73,\n    0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d,\n    0x7b, 0x7a, 0x7a, 0x7d, 0x7f, 0x7e, 0x7a, 0x75, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7e, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x79,\n    0x79, 0x79, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7e, 0x7e, 0x7e, 0x7d, 0x7c, 0x7a, 0x79,\n    0x77, 0x78, 0x79, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78,\n    0x79, 0x79, 0x7a, 0x7a, 0x79, 0x78, 0x76, 0x75, 0x72, 0x71, 0x71, 0x70, 0x70, 0x71, 0x71, 0x72,\n    0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x77, 0x77, 0x77, 0x76, 0x73, 0x70, 0x6d, 0x6c, 0x6b, 0x6c, 0x6d, 0x6d, 0x6d, 0x6c, 0x6b, 0x6a,\n    0x68, 0x68, 0x69, 0x69, 0x6a, 0x6a, 0x6a, 0x6b, 0x69, 0x6b, 0x6e, 0x71, 0x72, 0x72, 0x71, 0x70,\n    0x72, 0x71, 0x70, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x6f, 0x70, 0x71, 0x71, 0x71, 0x70, 0x6e, 0x6e,\n    0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x71, 0x70, 0x70, 0x71, 0x71, 0x72, 0x73, 0x74, 0x74,\n    0x74, 0x74, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74,\n    0x70, 0x70, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x71, 0x72, 0x72, 0x72, 0x72, 0x70, 0x6f, 0x6e,\n    0x6e, 0x6e, 0x6f, 0x70, 0x72, 0x73, 0x73, 0x74, 0x72, 0x72, 0x73, 0x73, 0x74, 0x74, 0x75, 0x75,\n    0x76, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x72, 0x71, 0x70, 0x6f, 0x70, 0x71, 0x72, 0x73,\n    0x6f, 0x6b, 0x67, 0x66, 0x67, 0x68, 0x66, 0x64, 0x64, 0x61, 0x5f, 0x62, 0x68, 0x6f, 0x72, 0x73,\n    0x71, 0x71, 0x71, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6e, 0x70, 0x72, 0x73, 0x73, 0x72, 0x70, 0x6f,\n    0x75, 0x76, 0x77, 0x77, 0x78, 0x78, 0x77, 0x77, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7b, 0x7b,\n    0x79, 0x77, 0x77, 0x79, 0x7c, 0x7d, 0x7b, 0x78, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7e, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x79,\n    0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7d, 0x7d, 0x7e, 0x7e, 0x7d, 0x7c, 0x7a, 0x79,\n    0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x79, 0x78, 0x77, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x77,\n    0x78, 0x79, 0x79, 0x79, 0x78, 0x77, 0x76, 0x75, 0x72, 0x71, 0x71, 0x70, 0x70, 0x71, 0x71, 0x72,\n    0x78, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79,\n    0x77, 0x77, 0x76, 0x75, 0x73, 0x70, 0x6e, 0x6d, 0x6c, 0x6d, 0x6d, 0x6e, 0x6d, 0x6c, 0x6b, 0x6a,\n    0x69, 0x69, 0x69, 0x69, 0x6a, 0x6a, 0x6a, 0x6a, 0x69, 0x6b, 0x6e, 0x71, 0x72, 0x72, 0x71, 0x70,\n    0x70, 0x6f, 0x6e, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x70, 0x70, 0x71, 0x71, 0x71, 0x70, 0x6f, 0x6e,\n    0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x72, 0x72, 0x73, 0x74, 0x74, 0x74,\n    0x75, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x75, 0x74, 0x74, 0x73, 0x73, 0x72, 0x72, 0x71,\n    0x71, 0x71, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x72, 0x72, 0x73, 0x73, 0x72, 0x71, 0x6f, 0x6e,\n    0x6d, 0x6e, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x72, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f,\n    0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x72, 0x71, 0x70, 0x70, 0x70, 0x70, 0x71, 0x72,\n    0x6e, 0x6a, 0x66, 0x65, 0x67, 0x67, 0x65, 0x63, 0x63, 0x60, 0x5f, 0x63, 0x69, 0x6f, 0x72, 0x72,\n    0x71, 0x71, 0x70, 0x70, 0x6f, 0x6e, 0x6e, 0x6e, 0x6a, 0x6c, 0x6e, 0x6f, 0x6f, 0x6e, 0x6c, 0x6a,\n    0x72, 0x73, 0x74, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x76, 0x76, 0x77, 0x78, 0x79, 0x79,\n    0x75, 0x73, 0x71, 0x73, 0x78, 0x7c, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7e, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x79,\n    0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7a, 0x7a, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x77, 0x77,\n    0x78, 0x78, 0x78, 0x78, 0x78, 0x76, 0x75, 0x74, 0x72, 0x71, 0x71, 0x70, 0x70, 0x71, 0x71, 0x72,\n    0x77, 0x77, 0x77, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78,\n    0x76, 0x76, 0x75, 0x74, 0x72, 0x70, 0x6f, 0x6e, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6d, 0x6c, 0x6b,\n    0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x6c, 0x6f, 0x71, 0x73, 0x72, 0x72, 0x71,\n    0x6f, 0x6e, 0x6c, 0x6a, 0x6a, 0x6b, 0x6c, 0x6d, 0x70, 0x70, 0x71, 0x72, 0x71, 0x70, 0x6f, 0x6e,\n    0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x71, 0x72, 0x72, 0x72, 0x73, 0x73, 0x74, 0x74, 0x74,\n    0x75, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x75, 0x74, 0x74, 0x73, 0x72, 0x71, 0x70, 0x6f,\n    0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x74, 0x72, 0x72, 0x73, 0x73, 0x72, 0x71, 0x6f, 0x6f,\n    0x6d, 0x6d, 0x6e, 0x6e, 0x6f, 0x70, 0x70, 0x71, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e,\n    0x6e, 0x6e, 0x6f, 0x6f, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70,\n    0x6c, 0x69, 0x66, 0x65, 0x67, 0x67, 0x64, 0x61, 0x60, 0x5f, 0x5f, 0x64, 0x6a, 0x70, 0x71, 0x71,\n    0x71, 0x70, 0x70, 0x6f, 0x6e, 0x6d, 0x6c, 0x6c, 0x69, 0x6b, 0x6c, 0x6e, 0x6d, 0x6c, 0x6a, 0x68,\n    0x6d, 0x6e, 0x71, 0x73, 0x74, 0x74, 0x73, 0x73, 0x74, 0x74, 0x75, 0x76, 0x77, 0x77, 0x78, 0x79,\n    0x70, 0x6d, 0x6c, 0x6e, 0x75, 0x7b, 0x7e, 0x7f, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7e, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x79,\n    0x77, 0x78, 0x79, 0x7a, 0x7a, 0x7a, 0x79, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b,\n    0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77,\n    0x77, 0x77, 0x78, 0x78, 0x77, 0x76, 0x74, 0x73, 0x72, 0x71, 0x71, 0x70, 0x70, 0x71, 0x71, 0x72,\n    0x76, 0x76, 0x76, 0x77, 0x78, 0x78, 0x79, 0x79, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77,\n    0x75, 0x75, 0x74, 0x72, 0x71, 0x70, 0x70, 0x70, 0x6d, 0x6e, 0x6f, 0x6f, 0x6f, 0x6e, 0x6c, 0x6c,\n    0x6b, 0x6b, 0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x6c, 0x6f, 0x72, 0x73, 0x73, 0x72, 0x71,\n    0x6e, 0x6d, 0x6a, 0x68, 0x68, 0x69, 0x6b, 0x6d, 0x70, 0x71, 0x71, 0x72, 0x72, 0x71, 0x6f, 0x6f,\n    0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x71, 0x72, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73,\n    0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x76, 0x76, 0x74, 0x73, 0x73, 0x72, 0x71, 0x70, 0x6f, 0x6e,\n    0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x74, 0x72, 0x73, 0x73, 0x73, 0x73, 0x71, 0x70, 0x6f,\n    0x6d, 0x6d, 0x6e, 0x6e, 0x6f, 0x6f, 0x70, 0x70, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x70, 0x70,\n    0x70, 0x70, 0x71, 0x71, 0x72, 0x73, 0x73, 0x73, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x6f, 0x6f,\n    0x6c, 0x69, 0x66, 0x66, 0x68, 0x67, 0x64, 0x61, 0x5e, 0x5e, 0x5f, 0x65, 0x6c, 0x70, 0x71, 0x6f,\n    0x70, 0x70, 0x6f, 0x6e, 0x6d, 0x6c, 0x6b, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6e, 0x6c, 0x6a, 0x68,\n    0x67, 0x69, 0x6c, 0x6f, 0x71, 0x71, 0x70, 0x6f, 0x74, 0x74, 0x75, 0x75, 0x76, 0x76, 0x76, 0x77,\n    0x6a, 0x68, 0x68, 0x6c, 0x74, 0x7c, 0x7f, 0x80, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x78,\n    0x76, 0x77, 0x78, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c,\n    0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b,\n    0x7b, 0x7a, 0x79, 0x78, 0x78, 0x78, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77,\n    0x76, 0x77, 0x77, 0x77, 0x76, 0x75, 0x74, 0x73, 0x72, 0x71, 0x71, 0x70, 0x70, 0x71, 0x71, 0x72,\n    0x75, 0x75, 0x75, 0x76, 0x77, 0x77, 0x78, 0x78, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75,\n    0x75, 0x74, 0x72, 0x71, 0x70, 0x70, 0x71, 0x71, 0x6e, 0x6e, 0x6f, 0x70, 0x6f, 0x6e, 0x6d, 0x6c,\n    0x6b, 0x6b, 0x6b, 0x6b, 0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x6c, 0x6f, 0x72, 0x73, 0x73, 0x72, 0x71,\n    0x6e, 0x6c, 0x69, 0x67, 0x67, 0x68, 0x6b, 0x6d, 0x71, 0x71, 0x72, 0x72, 0x72, 0x71, 0x70, 0x6f,\n    0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x71, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72,\n    0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x72, 0x72, 0x71, 0x70, 0x70, 0x6f, 0x6f, 0x6f,\n    0x71, 0x71, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x73, 0x72, 0x70, 0x6f,\n    0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73,\n    0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x71, 0x71, 0x71, 0x71, 0x71, 0x6f, 0x6e, 0x6d,\n    0x6c, 0x69, 0x67, 0x67, 0x69, 0x68, 0x64, 0x61, 0x5c, 0x5c, 0x5f, 0x66, 0x6d, 0x71, 0x70, 0x6e,\n    0x70, 0x6f, 0x6e, 0x6d, 0x6c, 0x6a, 0x69, 0x69, 0x6b, 0x6c, 0x6e, 0x6e, 0x6e, 0x6c, 0x69, 0x68,\n    0x61, 0x63, 0x68, 0x6b, 0x6d, 0x6d, 0x6c, 0x6b, 0x73, 0x73, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71,\n    0x64, 0x64, 0x67, 0x6e, 0x76, 0x7d, 0x7e, 0x7e, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x78,\n    0x76, 0x76, 0x78, 0x79, 0x79, 0x79, 0x78, 0x77, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7c,\n    0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b,\n    0x7a, 0x79, 0x78, 0x77, 0x76, 0x77, 0x78, 0x79, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x76, 0x76,\n    0x76, 0x76, 0x77, 0x77, 0x76, 0x75, 0x73, 0x72, 0x72, 0x71, 0x71, 0x70, 0x70, 0x71, 0x71, 0x72,\n    0x74, 0x74, 0x75, 0x75, 0x76, 0x77, 0x77, 0x77, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74,\n    0x74, 0x73, 0x71, 0x70, 0x70, 0x70, 0x71, 0x72, 0x6e, 0x6f, 0x70, 0x70, 0x70, 0x6f, 0x6d, 0x6d,\n    0x6c, 0x6c, 0x6c, 0x6b, 0x6b, 0x6a, 0x6a, 0x6a, 0x6b, 0x6d, 0x6f, 0x72, 0x73, 0x73, 0x72, 0x72,\n    0x6f, 0x6c, 0x69, 0x66, 0x66, 0x68, 0x6b, 0x6d, 0x71, 0x71, 0x72, 0x72, 0x72, 0x71, 0x70, 0x6f,\n    0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70,\n    0x71, 0x71, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f,\n    0x70, 0x70, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x73, 0x73, 0x74, 0x74, 0x73, 0x72, 0x70, 0x6f,\n    0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x71, 0x72, 0x72, 0x73, 0x73, 0x74, 0x74, 0x75,\n    0x74, 0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x70, 0x71, 0x71, 0x72, 0x71, 0x6f, 0x6d, 0x6c,\n    0x6c, 0x6a, 0x68, 0x69, 0x6a, 0x69, 0x65, 0x61, 0x5a, 0x5b, 0x5f, 0x66, 0x6e, 0x71, 0x70, 0x6d,\n    0x6f, 0x6f, 0x6e, 0x6c, 0x6b, 0x69, 0x68, 0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6b, 0x69, 0x66, 0x65,\n    0x5b, 0x5f, 0x63, 0x68, 0x6a, 0x6a, 0x69, 0x67, 0x6f, 0x6e, 0x6d, 0x6c, 0x6b, 0x6a, 0x69, 0x68,\n    0x5f, 0x61, 0x67, 0x70, 0x7a, 0x7e, 0x7d, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x78,\n    0x75, 0x76, 0x77, 0x78, 0x79, 0x78, 0x78, 0x77, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7c,\n    0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c,\n    0x7a, 0x79, 0x77, 0x76, 0x75, 0x76, 0x77, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76,\n    0x75, 0x76, 0x76, 0x76, 0x76, 0x74, 0x73, 0x72, 0x72, 0x71, 0x71, 0x70, 0x70, 0x71, 0x71, 0x72,\n    0x74, 0x74, 0x74, 0x75, 0x76, 0x76, 0x77, 0x77, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74,\n    0x74, 0x73, 0x71, 0x70, 0x6f, 0x70, 0x72, 0x73, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x6f, 0x6e, 0x6d,\n    0x6c, 0x6c, 0x6c, 0x6b, 0x6b, 0x6a, 0x6a, 0x6a, 0x6b, 0x6d, 0x70, 0x72, 0x74, 0x74, 0x73, 0x72,\n    0x6f, 0x6d, 0x69, 0x66, 0x66, 0x68, 0x6b, 0x6e, 0x71, 0x71, 0x72, 0x73, 0x72, 0x71, 0x70, 0x6f,\n    0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x71, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f,\n    0x70, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x70, 0x70, 0x70,\n    0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x73, 0x73, 0x74, 0x74, 0x73, 0x72, 0x71, 0x70,\n    0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x70, 0x71, 0x72, 0x73, 0x74, 0x74,\n    0x73, 0x73, 0x72, 0x72, 0x71, 0x70, 0x70, 0x70, 0x70, 0x71, 0x72, 0x72, 0x71, 0x6f, 0x6d, 0x6b,\n    0x6c, 0x6a, 0x69, 0x6a, 0x6b, 0x6a, 0x66, 0x61, 0x59, 0x5b, 0x5f, 0x67, 0x6e, 0x71, 0x70, 0x6d,\n    0x6f, 0x6f, 0x6e, 0x6c, 0x6a, 0x69, 0x68, 0x67, 0x67, 0x67, 0x69, 0x69, 0x68, 0x66, 0x64, 0x62,\n    0x58, 0x5c, 0x61, 0x66, 0x68, 0x68, 0x67, 0x65, 0x6b, 0x6a, 0x69, 0x67, 0x66, 0x64, 0x62, 0x62,\n    0x5c, 0x60, 0x68, 0x73, 0x7c, 0x7f, 0x7c, 0x78, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x78,\n    0x76, 0x76, 0x78, 0x79, 0x7a, 0x79, 0x79, 0x78, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79,\n    0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c,\n    0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x79, 0x79, 0x78, 0x77, 0x76, 0x75, 0x75, 0x74,\n    0x75, 0x75, 0x75, 0x74, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x73,\n    0x74, 0x74, 0x74, 0x73, 0x72, 0x72, 0x72, 0x71, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x70,\n    0x70, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x73, 0x73, 0x72, 0x71, 0x70, 0x6f, 0x6f, 0x6e,\n    0x6f, 0x6f, 0x6e, 0x6e, 0x6d, 0x6d, 0x6c, 0x6c, 0x6d, 0x6f, 0x71, 0x74, 0x74, 0x72, 0x70, 0x6f,\n    0x70, 0x6f, 0x6d, 0x6b, 0x69, 0x68, 0x68, 0x68, 0x6f, 0x70, 0x72, 0x73, 0x72, 0x71, 0x70, 0x6e,\n    0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71,\n    0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x6e, 0x6f, 0x71, 0x72, 0x73, 0x73, 0x73, 0x73,\n    0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70,\n    0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71,\n    0x73, 0x73, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x6f, 0x6e, 0x6d, 0x6c, 0x6b,\n    0x6a, 0x6b, 0x6d, 0x6d, 0x6b, 0x67, 0x63, 0x60, 0x5e, 0x62, 0x67, 0x6d, 0x71, 0x73, 0x73, 0x72,\n    0x6e, 0x6d, 0x6b, 0x66, 0x62, 0x63, 0x68, 0x6c, 0x64, 0x65, 0x67, 0x6a, 0x6a, 0x65, 0x5b, 0x54,\n    0x5e, 0x5a, 0x5a, 0x61, 0x6a, 0x6a, 0x60, 0x55, 0x64, 0x6d, 0x73, 0x6f, 0x63, 0x59, 0x58, 0x5b,\n    0x5b, 0x63, 0x6f, 0x77, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7c, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79,\n    0x76, 0x76, 0x78, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78,\n    0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7a, 0x7a, 0x79, 0x78, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b,\n    0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78, 0x77, 0x76, 0x75, 0x75, 0x74,\n    0x75, 0x75, 0x74, 0x74, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72,\n    0x74, 0x73, 0x73, 0x73, 0x72, 0x72, 0x71, 0x71, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x70, 0x70,\n    0x70, 0x70, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x73, 0x72, 0x72, 0x71, 0x70, 0x6f, 0x6f, 0x6e,\n    0x6f, 0x6f, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6c, 0x6e, 0x6f, 0x72, 0x74, 0x74, 0x73, 0x71, 0x6f,\n    0x70, 0x6f, 0x6d, 0x6b, 0x6a, 0x69, 0x69, 0x69, 0x6e, 0x6f, 0x70, 0x72, 0x72, 0x71, 0x70, 0x6f,\n    0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70,\n    0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x6f, 0x70, 0x71, 0x72, 0x72, 0x72, 0x72, 0x71,\n    0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f,\n    0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71,\n    0x73, 0x72, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x6f, 0x6e, 0x6c, 0x6a, 0x6a,\n    0x6a, 0x6b, 0x6c, 0x6c, 0x6a, 0x66, 0x62, 0x5f, 0x5f, 0x62, 0x68, 0x6d, 0x71, 0x72, 0x72, 0x71,\n    0x6f, 0x6d, 0x6a, 0x65, 0x61, 0x62, 0x66, 0x6a, 0x63, 0x64, 0x65, 0x68, 0x68, 0x64, 0x5b, 0x53,\n    0x5d, 0x5a, 0x59, 0x60, 0x67, 0x67, 0x5e, 0x54, 0x62, 0x6a, 0x70, 0x6d, 0x62, 0x59, 0x59, 0x5c,\n    0x5b, 0x63, 0x6f, 0x77, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7b, 0x7a, 0x79,\n    0x76, 0x77, 0x78, 0x79, 0x79, 0x79, 0x78, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77,\n    0x77, 0x77, 0x79, 0x7a, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79,\n    0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78,\n    0x75, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x76, 0x75, 0x75, 0x74, 0x74,\n    0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71,\n    0x73, 0x73, 0x72, 0x72, 0x72, 0x72, 0x71, 0x71, 0x72, 0x72, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70,\n    0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x6f,\n    0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6f, 0x70, 0x72, 0x74, 0x74, 0x73, 0x72, 0x71,\n    0x70, 0x6f, 0x6d, 0x6c, 0x6b, 0x6b, 0x6b, 0x6b, 0x6d, 0x6e, 0x6f, 0x70, 0x71, 0x71, 0x70, 0x70,\n    0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f,\n    0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x71, 0x70, 0x6f,\n    0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d,\n    0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x72, 0x73,\n    0x72, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x6f, 0x6d, 0x6b, 0x69, 0x67,\n    0x6a, 0x6b, 0x6c, 0x6c, 0x69, 0x65, 0x61, 0x5e, 0x5f, 0x63, 0x68, 0x6d, 0x70, 0x71, 0x71, 0x70,\n    0x70, 0x6d, 0x68, 0x63, 0x60, 0x60, 0x63, 0x65, 0x61, 0x61, 0x62, 0x65, 0x65, 0x61, 0x59, 0x53,\n    0x5c, 0x59, 0x58, 0x5d, 0x63, 0x63, 0x5b, 0x53, 0x5f, 0x66, 0x6b, 0x68, 0x60, 0x5a, 0x59, 0x5c,\n    0x5b, 0x63, 0x6f, 0x77, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7a, 0x7a,\n    0x76, 0x77, 0x78, 0x78, 0x79, 0x78, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77,\n    0x76, 0x77, 0x78, 0x79, 0x79, 0x79, 0x78, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78,\n    0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76,\n    0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x77, 0x76, 0x76, 0x75, 0x75, 0x74, 0x74, 0x74, 0x73,\n    0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70,\n    0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70,\n    0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x6f, 0x6f, 0x6f,\n    0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x70, 0x71, 0x72, 0x74, 0x74, 0x73, 0x72, 0x72,\n    0x70, 0x6f, 0x6e, 0x6d, 0x6c, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6f, 0x70, 0x70, 0x71, 0x71,\n    0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f,\n    0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x72, 0x70, 0x6f, 0x6e,\n    0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c,\n    0x6d, 0x6d, 0x6e, 0x6f, 0x6f, 0x6e, 0x6d, 0x6d, 0x6c, 0x6d, 0x6e, 0x6f, 0x71, 0x72, 0x73, 0x73,\n    0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6d, 0x69, 0x66, 0x64,\n    0x68, 0x69, 0x6b, 0x6b, 0x69, 0x65, 0x60, 0x5e, 0x60, 0x63, 0x68, 0x6d, 0x70, 0x71, 0x70, 0x6f,\n    0x71, 0x6c, 0x65, 0x60, 0x5f, 0x5f, 0x60, 0x60, 0x5f, 0x5f, 0x5f, 0x61, 0x62, 0x5f, 0x59, 0x53,\n    0x59, 0x57, 0x57, 0x5a, 0x5e, 0x5e, 0x59, 0x53, 0x5d, 0x61, 0x65, 0x63, 0x5e, 0x5a, 0x5a, 0x5c,\n    0x5b, 0x63, 0x6f, 0x77, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a,\n    0x76, 0x77, 0x78, 0x78, 0x78, 0x77, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75,\n    0x75, 0x76, 0x77, 0x78, 0x78, 0x78, 0x77, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76,\n    0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75,\n    0x74, 0x74, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73,\n    0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x72, 0x71, 0x71, 0x71, 0x70, 0x70, 0x6f, 0x6f,\n    0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x6f, 0x6f,\n    0x6f, 0x6f, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f,\n    0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x70, 0x71, 0x72, 0x73, 0x73, 0x73, 0x72, 0x72,\n    0x71, 0x70, 0x6f, 0x6e, 0x6e, 0x6f, 0x6f, 0x70, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x70, 0x71, 0x71,\n    0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f,\n    0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x73, 0x71, 0x6f, 0x6e,\n    0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c,\n    0x6d, 0x6e, 0x6f, 0x70, 0x70, 0x6f, 0x6e, 0x6d, 0x6c, 0x6d, 0x6e, 0x6f, 0x70, 0x72, 0x73, 0x73,\n    0x72, 0x72, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6c, 0x68, 0x63, 0x60,\n    0x65, 0x67, 0x69, 0x69, 0x68, 0x65, 0x61, 0x5e, 0x61, 0x64, 0x68, 0x6d, 0x6f, 0x70, 0x6f, 0x6d,\n    0x71, 0x6a, 0x61, 0x5d, 0x5d, 0x5e, 0x5d, 0x5b, 0x5e, 0x5c, 0x5c, 0x5e, 0x5f, 0x5e, 0x59, 0x54,\n    0x55, 0x55, 0x55, 0x58, 0x5a, 0x5a, 0x58, 0x56, 0x5d, 0x5e, 0x5f, 0x5e, 0x5c, 0x5b, 0x5b, 0x5c,\n    0x5b, 0x63, 0x6f, 0x77, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b,\n    0x76, 0x77, 0x78, 0x78, 0x78, 0x77, 0x76, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75,\n    0x74, 0x75, 0x76, 0x77, 0x77, 0x77, 0x76, 0x75, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74,\n    0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74,\n    0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73,\n    0x72, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x72, 0x71, 0x71, 0x70, 0x70, 0x6f,\n    0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f,\n    0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x71, 0x71, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f,\n    0x6f, 0x6f, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72,\n    0x71, 0x70, 0x70, 0x6f, 0x6f, 0x70, 0x72, 0x72, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x70, 0x71, 0x71,\n    0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f,\n    0x70, 0x71, 0x71, 0x72, 0x72, 0x73, 0x74, 0x74, 0x75, 0x75, 0x76, 0x75, 0x75, 0x73, 0x71, 0x70,\n    0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e,\n    0x6d, 0x6e, 0x70, 0x71, 0x71, 0x70, 0x6e, 0x6d, 0x6d, 0x6d, 0x6e, 0x6f, 0x70, 0x71, 0x71, 0x72,\n    0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x71, 0x6f, 0x6b, 0x66, 0x61, 0x5d,\n    0x62, 0x64, 0x66, 0x68, 0x68, 0x65, 0x62, 0x60, 0x62, 0x64, 0x69, 0x6d, 0x6f, 0x6f, 0x6d, 0x6c,\n    0x70, 0x67, 0x5c, 0x59, 0x5c, 0x5e, 0x5c, 0x58, 0x5d, 0x5b, 0x5a, 0x5b, 0x5d, 0x5d, 0x59, 0x55,\n    0x52, 0x53, 0x54, 0x56, 0x57, 0x58, 0x59, 0x59, 0x5e, 0x5d, 0x5c, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b,\n    0x5b, 0x63, 0x6f, 0x77, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b,\n    0x77, 0x77, 0x78, 0x78, 0x77, 0x76, 0x75, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74,\n    0x73, 0x74, 0x75, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x73, 0x73, 0x73, 0x72,\n    0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74,\n    0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x75, 0x75, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72,\n    0x71, 0x71, 0x71, 0x72, 0x72, 0x73, 0x73, 0x73, 0x74, 0x74, 0x73, 0x73, 0x72, 0x71, 0x70, 0x70,\n    0x6e, 0x6e, 0x6f, 0x6f, 0x70, 0x70, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f,\n    0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f,\n    0x6f, 0x70, 0x70, 0x70, 0x71, 0x71, 0x72, 0x72, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x71, 0x71,\n    0x71, 0x71, 0x70, 0x70, 0x71, 0x72, 0x73, 0x74, 0x75, 0x74, 0x72, 0x70, 0x70, 0x70, 0x71, 0x71,\n    0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70,\n    0x70, 0x71, 0x71, 0x72, 0x73, 0x74, 0x74, 0x74, 0x76, 0x76, 0x77, 0x77, 0x76, 0x75, 0x74, 0x73,\n    0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70,\n    0x6e, 0x6f, 0x71, 0x73, 0x73, 0x71, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x70, 0x70, 0x70,\n    0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x70, 0x71, 0x71, 0x6f, 0x6b, 0x65, 0x5f, 0x5b,\n    0x5e, 0x61, 0x64, 0x67, 0x67, 0x66, 0x64, 0x62, 0x62, 0x65, 0x69, 0x6d, 0x6e, 0x6e, 0x6c, 0x6b,\n    0x6e, 0x64, 0x59, 0x57, 0x5b, 0x5e, 0x5b, 0x56, 0x5d, 0x5b, 0x59, 0x5a, 0x5c, 0x5c, 0x5a, 0x57,\n    0x4f, 0x51, 0x53, 0x54, 0x55, 0x57, 0x5a, 0x5d, 0x60, 0x5d, 0x5a, 0x59, 0x5a, 0x5c, 0x5c, 0x5b,\n    0x5b, 0x63, 0x6f, 0x77, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7b, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c,\n    0x77, 0x77, 0x78, 0x78, 0x77, 0x76, 0x75, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73,\n    0x73, 0x73, 0x75, 0x76, 0x76, 0x76, 0x75, 0x74, 0x75, 0x74, 0x74, 0x73, 0x73, 0x72, 0x72, 0x72,\n    0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74,\n    0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72,\n    0x71, 0x71, 0x71, 0x72, 0x72, 0x73, 0x73, 0x73, 0x75, 0x75, 0x74, 0x73, 0x72, 0x71, 0x71, 0x70,\n    0x6e, 0x6e, 0x6e, 0x6f, 0x70, 0x70, 0x70, 0x71, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f,\n    0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f,\n    0x6f, 0x70, 0x70, 0x71, 0x71, 0x72, 0x72, 0x72, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6f, 0x70, 0x71,\n    0x71, 0x71, 0x70, 0x70, 0x71, 0x73, 0x74, 0x75, 0x77, 0x76, 0x73, 0x71, 0x70, 0x70, 0x70, 0x71,\n    0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71,\n    0x70, 0x71, 0x71, 0x72, 0x73, 0x74, 0x74, 0x75, 0x76, 0x77, 0x77, 0x78, 0x78, 0x77, 0x76, 0x75,\n    0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72,\n    0x6e, 0x70, 0x72, 0x74, 0x74, 0x72, 0x70, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f,\n    0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x70, 0x71, 0x71, 0x6f, 0x6b, 0x64, 0x5e, 0x59,\n    0x5c, 0x5f, 0x63, 0x66, 0x67, 0x67, 0x65, 0x63, 0x62, 0x65, 0x69, 0x6c, 0x6e, 0x6e, 0x6c, 0x6a,\n    0x6d, 0x62, 0x57, 0x55, 0x5b, 0x5f, 0x5b, 0x55, 0x5d, 0x5b, 0x58, 0x59, 0x5b, 0x5c, 0x5a, 0x58,\n    0x4d, 0x50, 0x53, 0x54, 0x54, 0x56, 0x5b, 0x60, 0x62, 0x5e, 0x59, 0x58, 0x5a, 0x5c, 0x5c, 0x5a,\n    0x5b, 0x63, 0x6f, 0x77, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7c,\n    0x76, 0x77, 0x78, 0x79, 0x79, 0x79, 0x78, 0x77, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x72, 0x72,\n    0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73,\n    0x71, 0x71, 0x70, 0x70, 0x71, 0x72, 0x73, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74,\n    0x71, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71,\n    0x70, 0x70, 0x70, 0x70, 0x71, 0x73, 0x74, 0x75, 0x77, 0x76, 0x75, 0x73, 0x72, 0x70, 0x6f, 0x6e,\n    0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x71, 0x70, 0x70, 0x6f, 0x6f, 0x70, 0x70, 0x71,\n    0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6f,\n    0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f,\n    0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x72, 0x72, 0x71, 0x70, 0x6f, 0x6e, 0x6e, 0x6f, 0x6f,\n    0x72, 0x72, 0x73, 0x73, 0x74, 0x74, 0x75, 0x75, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x72,\n    0x73, 0x72, 0x71, 0x70, 0x71, 0x72, 0x74, 0x75, 0x76, 0x76, 0x77, 0x77, 0x78, 0x78, 0x79, 0x79,\n    0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74,\n    0x75, 0x76, 0x76, 0x76, 0x75, 0x73, 0x72, 0x71, 0x72, 0x72, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x6f,\n    0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x72, 0x71, 0x6f, 0x6c, 0x67, 0x62, 0x5d, 0x5a,\n    0x5a, 0x5c, 0x5f, 0x62, 0x64, 0x65, 0x64, 0x63, 0x67, 0x69, 0x6c, 0x6f, 0x70, 0x6f, 0x6e, 0x6c,\n    0x67, 0x62, 0x5b, 0x55, 0x54, 0x57, 0x5b, 0x5f, 0x51, 0x5c, 0x66, 0x66, 0x5c, 0x54, 0x53, 0x57,\n    0x5a, 0x57, 0x52, 0x4f, 0x4d, 0x4f, 0x52, 0x55, 0x60, 0x64, 0x66, 0x61, 0x59, 0x55, 0x58, 0x5d,\n    0x5f, 0x67, 0x72, 0x79, 0x7b, 0x7a, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d,\n    0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7e, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x79,\n    0x75, 0x76, 0x77, 0x78, 0x79, 0x78, 0x78, 0x77, 0x75, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73,\n    0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73,\n    0x71, 0x71, 0x70, 0x70, 0x70, 0x71, 0x73, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73,\n    0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x73, 0x73, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71,\n    0x70, 0x70, 0x70, 0x70, 0x71, 0x73, 0x74, 0x75, 0x76, 0x76, 0x75, 0x73, 0x72, 0x70, 0x6f, 0x6f,\n    0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x71, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x71,\n    0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6f,\n    0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70,\n    0x6f, 0x6f, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x72, 0x71, 0x70, 0x6f, 0x6e, 0x6e, 0x6f, 0x70,\n    0x72, 0x72, 0x73, 0x73, 0x74, 0x74, 0x75, 0x75, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72,\n    0x73, 0x72, 0x71, 0x71, 0x71, 0x73, 0x74, 0x75, 0x76, 0x76, 0x76, 0x77, 0x77, 0x78, 0x78, 0x78,\n    0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x73, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75,\n    0x76, 0x76, 0x77, 0x76, 0x76, 0x74, 0x73, 0x72, 0x72, 0x72, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x6f,\n    0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x71, 0x71, 0x6f, 0x6c, 0x68, 0x64, 0x60, 0x5d,\n    0x5b, 0x5c, 0x5f, 0x62, 0x64, 0x64, 0x64, 0x63, 0x67, 0x69, 0x6c, 0x6f, 0x70, 0x6f, 0x6d, 0x6c,\n    0x66, 0x62, 0x5b, 0x56, 0x54, 0x57, 0x5b, 0x5e, 0x55, 0x5d, 0x65, 0x63, 0x5a, 0x54, 0x54, 0x58,\n    0x5b, 0x58, 0x53, 0x50, 0x4e, 0x50, 0x52, 0x54, 0x5e, 0x62, 0x66, 0x63, 0x5e, 0x5a, 0x5c, 0x5f,\n    0x5f, 0x67, 0x72, 0x7a, 0x7b, 0x7b, 0x7a, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b,\n    0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d,\n    0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7e, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x79,\n    0x75, 0x76, 0x77, 0x78, 0x78, 0x78, 0x77, 0x77, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74,\n    0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73,\n    0x71, 0x71, 0x70, 0x6f, 0x70, 0x71, 0x72, 0x73, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72,\n    0x70, 0x70, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71,\n    0x70, 0x70, 0x70, 0x70, 0x71, 0x73, 0x74, 0x75, 0x76, 0x75, 0x74, 0x73, 0x71, 0x70, 0x6f, 0x6f,\n    0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x71, 0x70, 0x6f, 0x6e, 0x6e, 0x6f, 0x70, 0x71,\n    0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6f,\n    0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70,\n    0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x72, 0x71, 0x70, 0x6f, 0x6f, 0x6f, 0x70, 0x70,\n    0x72, 0x72, 0x73, 0x73, 0x74, 0x74, 0x75, 0x75, 0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72,\n    0x73, 0x72, 0x72, 0x72, 0x73, 0x74, 0x75, 0x76, 0x75, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77,\n    0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76,\n    0x76, 0x77, 0x77, 0x77, 0x77, 0x75, 0x74, 0x73, 0x72, 0x72, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x6f,\n    0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x71, 0x70, 0x6f, 0x6d, 0x6a, 0x66, 0x63, 0x61,\n    0x5d, 0x5e, 0x5f, 0x61, 0x62, 0x63, 0x63, 0x63, 0x69, 0x6a, 0x6d, 0x6f, 0x6f, 0x6f, 0x6d, 0x6c,\n    0x66, 0x62, 0x5c, 0x57, 0x55, 0x57, 0x5a, 0x5d, 0x5a, 0x5f, 0x62, 0x5f, 0x58, 0x54, 0x56, 0x5a,\n    0x5c, 0x59, 0x55, 0x52, 0x50, 0x51, 0x52, 0x53, 0x58, 0x5d, 0x63, 0x65, 0x62, 0x60, 0x5f, 0x60,\n    0x5f, 0x68, 0x73, 0x7a, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b,\n    0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a,\n    0x74, 0x75, 0x76, 0x77, 0x78, 0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74,\n    0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72,\n    0x71, 0x70, 0x6f, 0x6f, 0x6f, 0x70, 0x71, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71,\n    0x6f, 0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70,\n    0x70, 0x70, 0x70, 0x70, 0x71, 0x73, 0x74, 0x75, 0x75, 0x74, 0x73, 0x72, 0x71, 0x70, 0x6f, 0x6f,\n    0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x6f, 0x6e, 0x6e, 0x6f, 0x70, 0x70,\n    0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6f,\n    0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71,\n    0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x72, 0x71, 0x70, 0x6f, 0x6f, 0x70, 0x70, 0x71,\n    0x72, 0x72, 0x73, 0x73, 0x74, 0x74, 0x75, 0x75, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73,\n    0x72, 0x72, 0x73, 0x73, 0x74, 0x75, 0x76, 0x77, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76,\n    0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x77, 0x77,\n    0x77, 0x77, 0x78, 0x78, 0x77, 0x76, 0x75, 0x74, 0x72, 0x72, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x6f,\n    0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x71, 0x70, 0x6f, 0x6d, 0x6b, 0x68, 0x67, 0x65,\n    0x60, 0x60, 0x60, 0x61, 0x61, 0x63, 0x64, 0x64, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f, 0x6e, 0x6d, 0x6c,\n    0x65, 0x62, 0x5d, 0x59, 0x57, 0x57, 0x59, 0x5b, 0x5e, 0x60, 0x60, 0x5c, 0x57, 0x55, 0x59, 0x5d,\n    0x5c, 0x5a, 0x58, 0x55, 0x53, 0x53, 0x53, 0x54, 0x52, 0x57, 0x5d, 0x62, 0x63, 0x62, 0x60, 0x5f,\n    0x60, 0x68, 0x73, 0x7b, 0x7d, 0x7d, 0x7d, 0x7d, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b,\n    0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b,\n    0x74, 0x74, 0x76, 0x77, 0x77, 0x77, 0x76, 0x75, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74,\n    0x73, 0x73, 0x73, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71,\n    0x71, 0x70, 0x6f, 0x6e, 0x6e, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70,\n    0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f,\n    0x70, 0x70, 0x70, 0x70, 0x71, 0x73, 0x74, 0x75, 0x74, 0x73, 0x73, 0x72, 0x71, 0x70, 0x6f, 0x6f,\n    0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x70,\n    0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6f,\n    0x70, 0x70, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71,\n    0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x70, 0x71, 0x72,\n    0x72, 0x72, 0x73, 0x73, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73,\n    0x72, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x78, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76,\n    0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x77, 0x77,\n    0x76, 0x77, 0x77, 0x78, 0x78, 0x77, 0x76, 0x75, 0x72, 0x72, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x6f,\n    0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x71, 0x70, 0x6f, 0x6d, 0x6b, 0x69, 0x69, 0x68,\n    0x63, 0x63, 0x61, 0x61, 0x61, 0x63, 0x65, 0x66, 0x6d, 0x6e, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6c,\n    0x64, 0x62, 0x5e, 0x5a, 0x58, 0x58, 0x58, 0x59, 0x61, 0x60, 0x5f, 0x5c, 0x59, 0x5a, 0x5d, 0x60,\n    0x5c, 0x5c, 0x5a, 0x59, 0x58, 0x57, 0x57, 0x56, 0x4e, 0x51, 0x56, 0x5c, 0x61, 0x62, 0x5f, 0x5d,\n    0x5f, 0x68, 0x73, 0x7b, 0x7d, 0x7d, 0x7d, 0x7e, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b,\n    0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x73, 0x74, 0x75, 0x76, 0x76, 0x76, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73,\n    0x73, 0x73, 0x73, 0x72, 0x71, 0x71, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71,\n    0x71, 0x70, 0x6f, 0x6e, 0x6d, 0x6e, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e,\n    0x6d, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f,\n    0x70, 0x70, 0x70, 0x70, 0x71, 0x73, 0x74, 0x75, 0x73, 0x73, 0x72, 0x71, 0x71, 0x70, 0x70, 0x6f,\n    0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x6f, 0x6e, 0x6d, 0x6d, 0x6e, 0x6f, 0x70,\n    0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6f,\n    0x70, 0x70, 0x71, 0x71, 0x72, 0x72, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72,\n    0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x71, 0x72, 0x73,\n    0x72, 0x72, 0x73, 0x73, 0x74, 0x74, 0x75, 0x75, 0x76, 0x76, 0x75, 0x75, 0x74, 0x74, 0x73, 0x73,\n    0x72, 0x73, 0x75, 0x77, 0x78, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x76,\n    0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76,\n    0x75, 0x75, 0x76, 0x77, 0x77, 0x76, 0x75, 0x75, 0x72, 0x72, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x6f,\n    0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x72, 0x70, 0x6e, 0x6c, 0x6a, 0x69, 0x69, 0x69,\n    0x68, 0x66, 0x63, 0x62, 0x62, 0x63, 0x66, 0x68, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6d, 0x6c, 0x6c,\n    0x63, 0x61, 0x5f, 0x5c, 0x59, 0x58, 0x57, 0x57, 0x60, 0x5f, 0x5e, 0x5e, 0x5f, 0x60, 0x61, 0x62,\n    0x5c, 0x5c, 0x5d, 0x5d, 0x5d, 0x5c, 0x5b, 0x5a, 0x52, 0x51, 0x52, 0x58, 0x5e, 0x61, 0x60, 0x5d,\n    0x5e, 0x67, 0x72, 0x7a, 0x7d, 0x7d, 0x7d, 0x7e, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b,\n    0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x79, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d,\n    0x73, 0x73, 0x74, 0x75, 0x76, 0x75, 0x75, 0x74, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72, 0x71,\n    0x74, 0x73, 0x73, 0x72, 0x71, 0x70, 0x70, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70,\n    0x71, 0x70, 0x6e, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d,\n    0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e,\n    0x70, 0x70, 0x70, 0x70, 0x71, 0x73, 0x74, 0x75, 0x72, 0x72, 0x72, 0x71, 0x71, 0x70, 0x70, 0x70,\n    0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x70, 0x6f, 0x6e, 0x6d, 0x6d, 0x6e, 0x6f, 0x70,\n    0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6f,\n    0x70, 0x70, 0x71, 0x71, 0x72, 0x73, 0x73, 0x74, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72,\n    0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x71, 0x71, 0x70, 0x70, 0x70, 0x71, 0x73, 0x73,\n    0x72, 0x72, 0x73, 0x73, 0x74, 0x74, 0x75, 0x75, 0x77, 0x77, 0x76, 0x75, 0x75, 0x74, 0x73, 0x73,\n    0x72, 0x73, 0x75, 0x78, 0x79, 0x7a, 0x7a, 0x79, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x78, 0x77, 0x77,\n    0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x73, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75,\n    0x73, 0x74, 0x75, 0x76, 0x76, 0x76, 0x75, 0x74, 0x72, 0x72, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x6f,\n    0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x72, 0x71, 0x6e, 0x6b, 0x69, 0x68, 0x68, 0x68,\n    0x6c, 0x69, 0x65, 0x63, 0x62, 0x64, 0x68, 0x6a, 0x71, 0x70, 0x6f, 0x6e, 0x6d, 0x6c, 0x6c, 0x6c,\n    0x63, 0x61, 0x5f, 0x5d, 0x5a, 0x58, 0x56, 0x56, 0x5e, 0x5e, 0x5f, 0x61, 0x65, 0x66, 0x65, 0x63,\n    0x5c, 0x5d, 0x5f, 0x61, 0x61, 0x61, 0x5f, 0x5f, 0x5a, 0x56, 0x53, 0x56, 0x5d, 0x63, 0x63, 0x61,\n    0x5c, 0x65, 0x71, 0x79, 0x7c, 0x7c, 0x7c, 0x7d, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b,\n    0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79,\n    0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d,\n    0x72, 0x73, 0x74, 0x75, 0x76, 0x75, 0x75, 0x74, 0x72, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71,\n    0x74, 0x73, 0x73, 0x72, 0x71, 0x70, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70,\n    0x71, 0x70, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d,\n    0x6c, 0x6c, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e,\n    0x70, 0x70, 0x70, 0x70, 0x71, 0x73, 0x74, 0x75, 0x72, 0x72, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70,\n    0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6e, 0x6d, 0x6d, 0x6e, 0x6f, 0x6f,\n    0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6f,\n    0x70, 0x70, 0x71, 0x71, 0x72, 0x73, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73,\n    0x72, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x71, 0x70, 0x70, 0x70, 0x70, 0x72, 0x73, 0x74,\n    0x72, 0x72, 0x73, 0x73, 0x74, 0x74, 0x75, 0x75, 0x78, 0x77, 0x77, 0x76, 0x75, 0x74, 0x73, 0x73,\n    0x71, 0x73, 0x76, 0x78, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x78,\n    0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74,\n    0x72, 0x73, 0x74, 0x75, 0x75, 0x75, 0x74, 0x74, 0x72, 0x72, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x6f,\n    0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x73, 0x71, 0x6e, 0x6b, 0x68, 0x67, 0x67, 0x67,\n    0x6e, 0x6b, 0x67, 0x63, 0x63, 0x65, 0x69, 0x6b, 0x72, 0x71, 0x6f, 0x6e, 0x6d, 0x6c, 0x6c, 0x6c,\n    0x62, 0x61, 0x60, 0x5d, 0x5b, 0x58, 0x56, 0x55, 0x5d, 0x5d, 0x5f, 0x64, 0x68, 0x6a, 0x67, 0x63,\n    0x5b, 0x5d, 0x60, 0x63, 0x64, 0x63, 0x62, 0x61, 0x61, 0x5b, 0x55, 0x56, 0x5e, 0x65, 0x66, 0x64,\n    0x5c, 0x64, 0x70, 0x78, 0x7b, 0x7c, 0x7c, 0x7d, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x79,\n    0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e,\n    0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x71, 0x71, 0x72, 0x72, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x6e,\n    0x71, 0x71, 0x71, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x70, 0x71, 0x71, 0x72, 0x72, 0x71, 0x71, 0x70,\n    0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6d, 0x6d, 0x6c, 0x6b, 0x6b,\n    0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6d, 0x6c, 0x6b, 0x6b, 0x6b, 0x6d, 0x6f, 0x70,\n    0x70, 0x70, 0x71, 0x72, 0x73, 0x74, 0x74, 0x75, 0x70, 0x71, 0x72, 0x72, 0x71, 0x70, 0x6e, 0x6d,\n    0x6c, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d,\n    0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e,\n    0x70, 0x70, 0x71, 0x71, 0x72, 0x72, 0x73, 0x73, 0x75, 0x75, 0x74, 0x73, 0x72, 0x71, 0x71, 0x70,\n    0x6f, 0x6f, 0x70, 0x71, 0x71, 0x72, 0x73, 0x73, 0x72, 0x71, 0x6f, 0x6e, 0x6f, 0x71, 0x74, 0x77,\n    0x73, 0x72, 0x71, 0x71, 0x72, 0x73, 0x75, 0x77, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75,\n    0x75, 0x76, 0x77, 0x78, 0x7a, 0x7b, 0x7c, 0x7d, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x76,\n    0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x75, 0x75, 0x76, 0x77, 0x77, 0x77,\n    0x76, 0x76, 0x75, 0x75, 0x74, 0x74, 0x73, 0x73, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x6f,\n    0x6f, 0x6f, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x74, 0x72, 0x6f, 0x6c, 0x6a, 0x68, 0x67, 0x67,\n    0x69, 0x6f, 0x71, 0x6b, 0x61, 0x5e, 0x65, 0x6e, 0x71, 0x71, 0x71, 0x70, 0x6f, 0x6d, 0x6b, 0x69,\n    0x64, 0x61, 0x5d, 0x5c, 0x5d, 0x5c, 0x59, 0x56, 0x58, 0x5c, 0x61, 0x63, 0x63, 0x64, 0x68, 0x6b,\n    0x61, 0x60, 0x60, 0x5f, 0x5e, 0x5c, 0x5b, 0x5a, 0x62, 0x62, 0x62, 0x63, 0x63, 0x63, 0x62, 0x62,\n    0x5f, 0x67, 0x72, 0x79, 0x7c, 0x7c, 0x7d, 0x7f, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x7c,\n    0x78, 0x79, 0x7a, 0x7a, 0x7c, 0x7c, 0x7d, 0x7e, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a,\n    0x73, 0x73, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x72, 0x71, 0x71, 0x70, 0x70, 0x6f, 0x6e, 0x6e,\n    0x71, 0x71, 0x71, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x70, 0x71, 0x71, 0x72, 0x72, 0x71, 0x71, 0x70,\n    0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6d, 0x6c, 0x6b, 0x6b,\n    0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6c, 0x6b, 0x6c, 0x6d, 0x6f, 0x70,\n    0x6f, 0x6f, 0x70, 0x71, 0x72, 0x73, 0x74, 0x74, 0x71, 0x72, 0x72, 0x72, 0x71, 0x6f, 0x6d, 0x6c,\n    0x6c, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d,\n    0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f,\n    0x6f, 0x6f, 0x70, 0x70, 0x71, 0x72, 0x73, 0x73, 0x74, 0x74, 0x73, 0x73, 0x72, 0x71, 0x70, 0x70,\n    0x6f, 0x6f, 0x70, 0x71, 0x71, 0x72, 0x73, 0x73, 0x71, 0x70, 0x6e, 0x6e, 0x6e, 0x71, 0x74, 0x75,\n    0x75, 0x74, 0x73, 0x72, 0x73, 0x74, 0x75, 0x76, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75,\n    0x75, 0x75, 0x77, 0x78, 0x79, 0x7b, 0x7c, 0x7d, 0x7b, 0x7a, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x76,\n    0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x76, 0x76, 0x77, 0x78, 0x78, 0x78,\n    0x78, 0x77, 0x77, 0x76, 0x74, 0x73, 0x73, 0x72, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x6f,\n    0x6f, 0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x72, 0x71, 0x6f, 0x6c, 0x6a, 0x69, 0x69, 0x69,\n    0x6a, 0x6f, 0x71, 0x6c, 0x63, 0x60, 0x67, 0x6f, 0x71, 0x71, 0x71, 0x70, 0x6f, 0x6d, 0x6b, 0x6a,\n    0x67, 0x64, 0x60, 0x60, 0x60, 0x60, 0x5d, 0x59, 0x59, 0x5e, 0x64, 0x67, 0x67, 0x67, 0x69, 0x6b,\n    0x63, 0x62, 0x61, 0x60, 0x5e, 0x5c, 0x5b, 0x5a, 0x61, 0x61, 0x62, 0x63, 0x63, 0x63, 0x63, 0x62,\n    0x60, 0x68, 0x72, 0x79, 0x7b, 0x7c, 0x7c, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x7c,\n    0x78, 0x79, 0x7a, 0x7a, 0x7c, 0x7c, 0x7d, 0x7e, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a,\n    0x72, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x70, 0x71, 0x71, 0x70, 0x70, 0x6f, 0x6e, 0x6e, 0x6e,\n    0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x71, 0x71, 0x72, 0x72, 0x71, 0x71, 0x70,\n    0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6e, 0x6e, 0x6d, 0x6c, 0x6c, 0x6c,\n    0x6c, 0x6c, 0x6c, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6c, 0x6d, 0x6e, 0x6f, 0x6f,\n    0x6e, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x73, 0x73, 0x73, 0x73, 0x72, 0x71, 0x70, 0x6e, 0x6c, 0x6a,\n    0x6c, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d,\n    0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f,\n    0x6d, 0x6d, 0x6e, 0x6f, 0x71, 0x72, 0x73, 0x73, 0x73, 0x73, 0x72, 0x71, 0x71, 0x70, 0x70, 0x6f,\n    0x6f, 0x70, 0x70, 0x71, 0x71, 0x72, 0x72, 0x73, 0x71, 0x6f, 0x6e, 0x6e, 0x6e, 0x70, 0x72, 0x74,\n    0x77, 0x77, 0x75, 0x75, 0x74, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74, 0x74,\n    0x75, 0x75, 0x76, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x77, 0x77, 0x77,\n    0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x77, 0x78, 0x78, 0x79, 0x79, 0x7a,\n    0x7a, 0x79, 0x78, 0x77, 0x75, 0x73, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x6f,\n    0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x6e, 0x6c, 0x6b, 0x6b, 0x6b, 0x6b,\n    0x6c, 0x70, 0x71, 0x6d, 0x66, 0x64, 0x69, 0x70, 0x71, 0x71, 0x71, 0x70, 0x6f, 0x6d, 0x6b, 0x6a,\n    0x6a, 0x66, 0x63, 0x63, 0x64, 0x63, 0x60, 0x5d, 0x5b, 0x61, 0x68, 0x6c, 0x6c, 0x6a, 0x6a, 0x6b,\n    0x66, 0x66, 0x64, 0x62, 0x5f, 0x5d, 0x5b, 0x5b, 0x5f, 0x60, 0x62, 0x63, 0x63, 0x63, 0x63, 0x62,\n    0x63, 0x6a, 0x74, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x7b,\n    0x78, 0x79, 0x7a, 0x7a, 0x7c, 0x7c, 0x7d, 0x7e, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a,\n    0x72, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x71, 0x70, 0x70, 0x6f, 0x6e, 0x6e, 0x6d, 0x6d,\n    0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x71, 0x71, 0x72, 0x72, 0x71, 0x71, 0x70,\n    0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x6f, 0x6f, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d,\n    0x6b, 0x6b, 0x6c, 0x6c, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f,\n    0x6d, 0x6e, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x72, 0x74, 0x74, 0x72, 0x71, 0x6f, 0x6c, 0x6b, 0x6a,\n    0x6c, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d,\n    0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70,\n    0x6b, 0x6c, 0x6d, 0x6e, 0x70, 0x71, 0x72, 0x73, 0x72, 0x71, 0x71, 0x71, 0x70, 0x70, 0x6f, 0x6f,\n    0x70, 0x70, 0x70, 0x71, 0x71, 0x72, 0x72, 0x72, 0x70, 0x6f, 0x6e, 0x6e, 0x6e, 0x70, 0x71, 0x72,\n    0x79, 0x78, 0x78, 0x77, 0x76, 0x76, 0x75, 0x75, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74,\n    0x75, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x78, 0x77, 0x77, 0x77,\n    0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7b, 0x7b,\n    0x7b, 0x7b, 0x79, 0x77, 0x75, 0x73, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x6f,\n    0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x72, 0x72, 0x6f, 0x6e, 0x6d, 0x6c, 0x6c, 0x6d, 0x6e, 0x6e,\n    0x6d, 0x70, 0x71, 0x6e, 0x6a, 0x68, 0x6c, 0x70, 0x70, 0x70, 0x71, 0x70, 0x6f, 0x6d, 0x6c, 0x6a,\n    0x6a, 0x66, 0x63, 0x63, 0x64, 0x64, 0x61, 0x5e, 0x5d, 0x64, 0x6d, 0x71, 0x70, 0x6d, 0x6b, 0x6b,\n    0x6a, 0x69, 0x66, 0x63, 0x60, 0x5e, 0x5d, 0x5c, 0x5f, 0x60, 0x62, 0x64, 0x64, 0x64, 0x63, 0x62,\n    0x65, 0x6c, 0x75, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7b,\n    0x78, 0x79, 0x7a, 0x7a, 0x7c, 0x7c, 0x7d, 0x7e, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x70, 0x70, 0x6f, 0x6e, 0x6e, 0x6d, 0x6d, 0x6c,\n    0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x71, 0x71, 0x72, 0x72, 0x71, 0x71, 0x70,\n    0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6d,\n    0x6b, 0x6b, 0x6c, 0x6c, 0x6d, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e,\n    0x6d, 0x6e, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x72, 0x75, 0x74, 0x72, 0x70, 0x6e, 0x6c, 0x6b, 0x6a,\n    0x6c, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d,\n    0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x71, 0x71, 0x71,\n    0x6c, 0x6c, 0x6d, 0x6f, 0x70, 0x71, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70,\n    0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x72, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x70, 0x71, 0x71,\n    0x79, 0x79, 0x79, 0x78, 0x77, 0x77, 0x76, 0x75, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74,\n    0x75, 0x75, 0x76, 0x76, 0x77, 0x78, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77,\n    0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c,\n    0x7b, 0x7a, 0x79, 0x77, 0x75, 0x73, 0x71, 0x70, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x6f,\n    0x70, 0x70, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x6f, 0x6e, 0x6d, 0x6d, 0x6d, 0x6e, 0x6f, 0x70,\n    0x6e, 0x6f, 0x70, 0x6e, 0x6d, 0x6c, 0x6e, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6e, 0x6c, 0x6b,\n    0x68, 0x65, 0x62, 0x62, 0x63, 0x63, 0x61, 0x5d, 0x61, 0x67, 0x6f, 0x72, 0x71, 0x6e, 0x6c, 0x6c,\n    0x6e, 0x6c, 0x68, 0x65, 0x62, 0x60, 0x60, 0x60, 0x60, 0x62, 0x64, 0x66, 0x66, 0x65, 0x62, 0x61,\n    0x65, 0x6d, 0x76, 0x7b, 0x7c, 0x7a, 0x7a, 0x7a, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x79, 0x7a, 0x7b,\n    0x78, 0x79, 0x7a, 0x7a, 0x7c, 0x7c, 0x7d, 0x7e, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6d, 0x6d, 0x6c, 0x6c,\n    0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x71, 0x71, 0x72, 0x72, 0x71, 0x71, 0x70,\n    0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e,\n    0x6b, 0x6c, 0x6c, 0x6d, 0x6e, 0x6f, 0x70, 0x70, 0x6f, 0x70, 0x70, 0x71, 0x70, 0x6f, 0x6e, 0x6e,\n    0x6e, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x73, 0x73, 0x74, 0x73, 0x71, 0x6e, 0x6d, 0x6c, 0x6b, 0x6b,\n    0x6c, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d,\n    0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x70, 0x71, 0x71, 0x72, 0x72,\n    0x6e, 0x6e, 0x6f, 0x70, 0x70, 0x71, 0x71, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71,\n    0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71,\n    0x77, 0x78, 0x78, 0x79, 0x78, 0x77, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x73,\n    0x74, 0x75, 0x75, 0x76, 0x77, 0x77, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77,\n    0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c,\n    0x79, 0x78, 0x77, 0x76, 0x74, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x6f,\n    0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6f, 0x70, 0x71,\n    0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x6f, 0x6e, 0x6c, 0x6c,\n    0x68, 0x65, 0x62, 0x62, 0x64, 0x64, 0x61, 0x5f, 0x65, 0x69, 0x6e, 0x70, 0x6e, 0x6d, 0x6d, 0x6e,\n    0x6f, 0x6d, 0x6a, 0x66, 0x64, 0x63, 0x63, 0x64, 0x63, 0x65, 0x67, 0x69, 0x68, 0x65, 0x62, 0x60,\n    0x65, 0x6c, 0x76, 0x7b, 0x7c, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x79, 0x7a, 0x7a,\n    0x78, 0x79, 0x7a, 0x7a, 0x7c, 0x7c, 0x7d, 0x7e, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c,\n    0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6f, 0x6e, 0x6e, 0x6d, 0x6d, 0x6c, 0x6c, 0x6b,\n    0x6d, 0x6d, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x71, 0x71, 0x72, 0x72, 0x71, 0x71, 0x70,\n    0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f,\n    0x6c, 0x6d, 0x6d, 0x6e, 0x70, 0x71, 0x72, 0x72, 0x70, 0x70, 0x71, 0x72, 0x71, 0x70, 0x6e, 0x6d,\n    0x6f, 0x6f, 0x70, 0x71, 0x72, 0x73, 0x74, 0x74, 0x73, 0x71, 0x6f, 0x6d, 0x6c, 0x6c, 0x6d, 0x6d,\n    0x6c, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d,\n    0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x6e, 0x6f, 0x6f, 0x70, 0x71, 0x72, 0x72, 0x73,\n    0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72,\n    0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x73, 0x73, 0x73, 0x72, 0x72, 0x71,\n    0x75, 0x76, 0x77, 0x78, 0x79, 0x78, 0x77, 0x76, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73,\n    0x74, 0x75, 0x75, 0x75, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77,\n    0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b,\n    0x76, 0x76, 0x75, 0x74, 0x73, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x6f,\n    0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x73, 0x71, 0x70, 0x6f, 0x6e, 0x6e, 0x6f, 0x70, 0x70,\n    0x6e, 0x6d, 0x6c, 0x6d, 0x70, 0x71, 0x70, 0x6e, 0x6f, 0x6f, 0x70, 0x70, 0x6f, 0x6e, 0x6d, 0x6c,\n    0x6b, 0x68, 0x65, 0x66, 0x67, 0x68, 0x65, 0x62, 0x68, 0x6b, 0x6d, 0x6c, 0x6a, 0x6a, 0x6d, 0x70,\n    0x70, 0x6e, 0x6a, 0x67, 0x65, 0x65, 0x66, 0x67, 0x67, 0x68, 0x6a, 0x6b, 0x6a, 0x66, 0x62, 0x5f,\n    0x64, 0x6c, 0x75, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x79, 0x79, 0x7a,\n    0x78, 0x79, 0x7a, 0x7a, 0x7c, 0x7c, 0x7d, 0x7e, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c,\n    0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6d, 0x6c, 0x6c, 0x6b, 0x6b,\n    0x6d, 0x6d, 0x6d, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x71, 0x71, 0x72, 0x72, 0x71, 0x71, 0x70,\n    0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f,\n    0x6d, 0x6d, 0x6e, 0x6f, 0x71, 0x72, 0x73, 0x73, 0x70, 0x71, 0x72, 0x72, 0x72, 0x70, 0x6e, 0x6d,\n    0x70, 0x70, 0x71, 0x72, 0x73, 0x74, 0x74, 0x75, 0x72, 0x70, 0x6e, 0x6d, 0x6c, 0x6d, 0x6e, 0x6e,\n    0x6c, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d,\n    0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x6e, 0x6f, 0x6f, 0x70, 0x71, 0x72, 0x73, 0x73,\n    0x73, 0x73, 0x72, 0x72, 0x71, 0x71, 0x70, 0x70, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x73,\n    0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x73, 0x73, 0x74, 0x74, 0x74, 0x73, 0x72, 0x72,\n    0x73, 0x74, 0x76, 0x78, 0x79, 0x78, 0x77, 0x77, 0x75, 0x75, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73,\n    0x74, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x77, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x78,\n    0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x77, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7b,\n    0x74, 0x74, 0x74, 0x73, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x6f,\n    0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x73, 0x73, 0x71, 0x71, 0x6f, 0x6f, 0x6e, 0x6f, 0x70, 0x70,\n    0x6d, 0x6c, 0x6b, 0x6d, 0x70, 0x72, 0x70, 0x6d, 0x6e, 0x6f, 0x70, 0x70, 0x6f, 0x6e, 0x6d, 0x6c,\n    0x6e, 0x6b, 0x68, 0x69, 0x6b, 0x6b, 0x68, 0x66, 0x6b, 0x6b, 0x6b, 0x69, 0x67, 0x68, 0x6d, 0x72,\n    0x70, 0x6e, 0x6b, 0x68, 0x66, 0x67, 0x68, 0x6a, 0x69, 0x6b, 0x6c, 0x6d, 0x6b, 0x66, 0x61, 0x5e,\n    0x64, 0x6b, 0x75, 0x7b, 0x7d, 0x7c, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x7a, 0x79, 0x78, 0x78, 0x78, 0x78, 0x79, 0x7a,\n    0x78, 0x79, 0x7a, 0x7a, 0x7c, 0x7c, 0x7d, 0x7e, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c,\n    0x6e, 0x6e, 0x70, 0x70, 0x70, 0x6f, 0x6d, 0x6c, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e,\n    0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70,\n    0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x73, 0x72, 0x72, 0x70, 0x6f, 0x6e, 0x6d, 0x6d,\n    0x6b, 0x6d, 0x6f, 0x71, 0x72, 0x72, 0x71, 0x71, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72, 0x71,\n    0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x70, 0x6f, 0x6f, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d,\n    0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d,\n    0x70, 0x70, 0x71, 0x71, 0x70, 0x6f, 0x6e, 0x6d, 0x6f, 0x70, 0x70, 0x71, 0x72, 0x73, 0x74, 0x74,\n    0x73, 0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71,\n    0x72, 0x71, 0x70, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6c, 0x6d, 0x6f, 0x70, 0x71, 0x70, 0x6f, 0x6e,\n    0x70, 0x72, 0x74, 0x77, 0x79, 0x7b, 0x7b, 0x7c, 0x78, 0x77, 0x76, 0x75, 0x73, 0x72, 0x71, 0x70,\n    0x74, 0x74, 0x74, 0x74, 0x75, 0x76, 0x78, 0x79, 0x78, 0x78, 0x78, 0x77, 0x76, 0x76, 0x76, 0x75,\n    0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78,\n    0x77, 0x77, 0x76, 0x75, 0x73, 0x72, 0x71, 0x71, 0x74, 0x73, 0x71, 0x70, 0x6f, 0x70, 0x72, 0x72,\n    0x70, 0x71, 0x71, 0x72, 0x72, 0x73, 0x73, 0x73, 0x70, 0x70, 0x71, 0x72, 0x72, 0x73, 0x73, 0x74,\n    0x6f, 0x6e, 0x6d, 0x6d, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x72, 0x72, 0x71, 0x6f, 0x6d, 0x6b, 0x69,\n    0x6c, 0x6b, 0x6b, 0x6b, 0x6b, 0x6d, 0x6e, 0x6f, 0x6f, 0x6f, 0x6e, 0x6d, 0x6d, 0x6e, 0x6f, 0x6f,\n    0x6e, 0x6f, 0x6f, 0x6c, 0x68, 0x66, 0x68, 0x6b, 0x6c, 0x6c, 0x6c, 0x6b, 0x69, 0x65, 0x62, 0x60,\n    0x65, 0x6d, 0x77, 0x7d, 0x7e, 0x7c, 0x7a, 0x7a, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b,\n    0x78, 0x79, 0x7a, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x78, 0x79, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d,\n    0x6e, 0x6f, 0x70, 0x70, 0x70, 0x6f, 0x6d, 0x6c, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e,\n    0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70,\n    0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x73, 0x72, 0x71, 0x70, 0x6f, 0x6e, 0x6d, 0x6d,\n    0x6d, 0x6e, 0x70, 0x71, 0x72, 0x71, 0x71, 0x70, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72, 0x71,\n    0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e,\n    0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e,\n    0x70, 0x70, 0x71, 0x71, 0x71, 0x6f, 0x6e, 0x6d, 0x6f, 0x6f, 0x70, 0x71, 0x71, 0x72, 0x73, 0x73,\n    0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71,\n    0x71, 0x71, 0x70, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x72, 0x71, 0x70, 0x6f,\n    0x6e, 0x6f, 0x72, 0x75, 0x78, 0x7a, 0x7a, 0x7b, 0x78, 0x78, 0x77, 0x75, 0x74, 0x73, 0x72, 0x71,\n    0x74, 0x74, 0x74, 0x74, 0x75, 0x76, 0x78, 0x79, 0x79, 0x78, 0x78, 0x78, 0x77, 0x77, 0x76, 0x76,\n    0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x76, 0x76, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78,\n    0x77, 0x76, 0x75, 0x74, 0x73, 0x72, 0x71, 0x71, 0x73, 0x72, 0x70, 0x6f, 0x6f, 0x70, 0x71, 0x72,\n    0x70, 0x71, 0x71, 0x71, 0x72, 0x72, 0x73, 0x73, 0x70, 0x70, 0x71, 0x71, 0x72, 0x73, 0x73, 0x73,\n    0x70, 0x6f, 0x6e, 0x6d, 0x6d, 0x6e, 0x6f, 0x70, 0x70, 0x71, 0x71, 0x70, 0x6f, 0x6d, 0x6c, 0x6b,\n    0x6c, 0x6c, 0x6b, 0x6b, 0x6b, 0x6c, 0x6e, 0x6e, 0x6f, 0x6f, 0x6e, 0x6d, 0x6d, 0x6e, 0x6f, 0x6f,\n    0x6e, 0x6f, 0x6f, 0x6c, 0x68, 0x66, 0x68, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x68, 0x65, 0x61, 0x5f,\n    0x63, 0x6b, 0x76, 0x7c, 0x7d, 0x7c, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b,\n    0x78, 0x79, 0x7a, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x78, 0x79, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d,\n    0x6e, 0x6f, 0x6f, 0x70, 0x6f, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d,\n    0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71,\n    0x72, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x71, 0x70, 0x6f, 0x6e, 0x6e, 0x6d,\n    0x6e, 0x6f, 0x70, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72, 0x71,\n    0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70,\n    0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e,\n    0x70, 0x70, 0x71, 0x71, 0x71, 0x70, 0x6f, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x70, 0x71, 0x71, 0x71,\n    0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71,\n    0x71, 0x70, 0x70, 0x6f, 0x6f, 0x6e, 0x6d, 0x6d, 0x72, 0x72, 0x73, 0x73, 0x72, 0x71, 0x70, 0x6f,\n    0x6a, 0x6c, 0x6f, 0x72, 0x75, 0x78, 0x79, 0x79, 0x78, 0x78, 0x77, 0x76, 0x75, 0x75, 0x74, 0x73,\n    0x75, 0x74, 0x74, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78,\n    0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77,\n    0x76, 0x75, 0x75, 0x74, 0x73, 0x72, 0x71, 0x71, 0x71, 0x70, 0x70, 0x6f, 0x6f, 0x70, 0x70, 0x71,\n    0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x70, 0x70, 0x70, 0x71, 0x72, 0x72, 0x73, 0x73,\n    0x71, 0x70, 0x6f, 0x6e, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x70, 0x6f, 0x6e, 0x6d, 0x6c,\n    0x6c, 0x6c, 0x6b, 0x6b, 0x6b, 0x6c, 0x6d, 0x6e, 0x70, 0x6f, 0x6e, 0x6d, 0x6d, 0x6e, 0x6f, 0x70,\n    0x6d, 0x6e, 0x6e, 0x6b, 0x67, 0x66, 0x68, 0x6a, 0x69, 0x6a, 0x6a, 0x69, 0x67, 0x63, 0x60, 0x5d,\n    0x61, 0x69, 0x74, 0x7b, 0x7d, 0x7c, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b,\n    0x78, 0x79, 0x7a, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c,\n    0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6d, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c,\n    0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71,\n    0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72, 0x72, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x6e, 0x6e,\n    0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6e, 0x6e, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72, 0x71,\n    0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72,\n    0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f,\n    0x6f, 0x70, 0x71, 0x71, 0x71, 0x71, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x70,\n    0x71, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71,\n    0x70, 0x70, 0x70, 0x70, 0x6f, 0x6e, 0x6d, 0x6c, 0x71, 0x70, 0x70, 0x6f, 0x6e, 0x6d, 0x6c, 0x6b,\n    0x67, 0x69, 0x6c, 0x70, 0x73, 0x76, 0x77, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x76, 0x76, 0x76,\n    0x75, 0x75, 0x74, 0x74, 0x74, 0x76, 0x77, 0x78, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79,\n    0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74, 0x74, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76,\n    0x75, 0x74, 0x74, 0x73, 0x72, 0x71, 0x71, 0x71, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x71,\n    0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x6f, 0x70, 0x70, 0x71, 0x72, 0x72, 0x73, 0x73,\n    0x72, 0x71, 0x70, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6c, 0x6d, 0x6e, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e,\n    0x6c, 0x6c, 0x6b, 0x6a, 0x6a, 0x6b, 0x6c, 0x6d, 0x6f, 0x6f, 0x6e, 0x6d, 0x6d, 0x6e, 0x6f, 0x6f,\n    0x6c, 0x6e, 0x6e, 0x6b, 0x67, 0x65, 0x67, 0x6a, 0x68, 0x69, 0x69, 0x68, 0x65, 0x62, 0x5e, 0x5c,\n    0x5f, 0x68, 0x73, 0x7a, 0x7c, 0x7c, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b,\n    0x78, 0x79, 0x7a, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x79, 0x7a, 0x7b, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c,\n    0x70, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c,\n    0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72,\n    0x74, 0x74, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x6f, 0x6e,\n    0x70, 0x70, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72, 0x71,\n    0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73,\n    0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f,\n    0x6f, 0x70, 0x71, 0x72, 0x72, 0x71, 0x70, 0x70, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f,\n    0x6f, 0x70, 0x70, 0x70, 0x71, 0x71, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71,\n    0x6f, 0x6f, 0x70, 0x70, 0x6f, 0x6e, 0x6c, 0x6b, 0x6b, 0x6b, 0x6a, 0x69, 0x67, 0x67, 0x66, 0x66,\n    0x67, 0x69, 0x6c, 0x6f, 0x72, 0x74, 0x75, 0x76, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77,\n    0x76, 0x75, 0x75, 0x74, 0x74, 0x75, 0x76, 0x77, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79,\n    0x76, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75,\n    0x73, 0x73, 0x73, 0x72, 0x72, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71,\n    0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x6f, 0x6f, 0x70, 0x70, 0x71, 0x72, 0x72, 0x73,\n    0x72, 0x71, 0x70, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6b, 0x6c, 0x6d, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e,\n    0x6d, 0x6c, 0x6b, 0x6a, 0x6a, 0x6b, 0x6b, 0x6c, 0x6e, 0x6e, 0x6d, 0x6c, 0x6c, 0x6d, 0x6e, 0x6e,\n    0x6c, 0x6d, 0x6d, 0x6a, 0x66, 0x64, 0x66, 0x69, 0x67, 0x68, 0x68, 0x67, 0x65, 0x61, 0x5e, 0x5b,\n    0x5f, 0x68, 0x73, 0x7a, 0x7c, 0x7c, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b,\n    0x78, 0x79, 0x7a, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7c, 0x7b,\n    0x70, 0x70, 0x6f, 0x6e, 0x6d, 0x6e, 0x6e, 0x6f, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d,\n    0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73,\n    0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72, 0x71, 0x71, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f,\n    0x70, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x70, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72, 0x71,\n    0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73,\n    0x73, 0x73, 0x72, 0x72, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70,\n    0x6f, 0x70, 0x71, 0x72, 0x72, 0x72, 0x71, 0x71, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f,\n    0x6e, 0x6f, 0x6f, 0x70, 0x70, 0x71, 0x71, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71,\n    0x6e, 0x6f, 0x70, 0x71, 0x70, 0x6e, 0x6c, 0x6a, 0x66, 0x66, 0x64, 0x63, 0x62, 0x62, 0x63, 0x63,\n    0x69, 0x6a, 0x6d, 0x70, 0x72, 0x74, 0x74, 0x75, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78,\n    0x76, 0x76, 0x75, 0x74, 0x74, 0x75, 0x76, 0x77, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79,\n    0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74,\n    0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x70, 0x70, 0x6e, 0x6f, 0x70, 0x72, 0x72, 0x72, 0x72, 0x72,\n    0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x70, 0x70, 0x71, 0x71, 0x72, 0x72,\n    0x71, 0x70, 0x6f, 0x6e, 0x6d, 0x6d, 0x6e, 0x6e, 0x6c, 0x6c, 0x6d, 0x6e, 0x6f, 0x6e, 0x6d, 0x6d,\n    0x6d, 0x6c, 0x6b, 0x6a, 0x6a, 0x6a, 0x6b, 0x6b, 0x6d, 0x6c, 0x6b, 0x6a, 0x6a, 0x6b, 0x6c, 0x6d,\n    0x6b, 0x6c, 0x6c, 0x69, 0x65, 0x64, 0x66, 0x68, 0x67, 0x68, 0x68, 0x67, 0x65, 0x61, 0x5e, 0x5b,\n    0x61, 0x69, 0x74, 0x7b, 0x7d, 0x7c, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b,\n    0x78, 0x79, 0x7a, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b,\n    0x71, 0x70, 0x6e, 0x6d, 0x6d, 0x6d, 0x6e, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e,\n    0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73,\n    0x73, 0x73, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f,\n    0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6f, 0x70, 0x72, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72, 0x71,\n    0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x71, 0x71, 0x71, 0x72, 0x72, 0x73, 0x73, 0x73,\n    0x74, 0x74, 0x73, 0x72, 0x72, 0x71, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71,\n    0x6f, 0x70, 0x71, 0x72, 0x72, 0x72, 0x72, 0x71, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f,\n    0x6d, 0x6e, 0x6e, 0x6f, 0x70, 0x71, 0x71, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71,\n    0x6d, 0x6e, 0x70, 0x71, 0x70, 0x6e, 0x6b, 0x69, 0x64, 0x63, 0x62, 0x61, 0x61, 0x62, 0x63, 0x64,\n    0x6c, 0x6d, 0x6f, 0x71, 0x73, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x76, 0x77, 0x77, 0x78, 0x78,\n    0x77, 0x76, 0x75, 0x74, 0x74, 0x75, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x78, 0x78, 0x78, 0x79,\n    0x77, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73,\n    0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x6f, 0x70, 0x72, 0x73, 0x74, 0x74, 0x73, 0x73,\n    0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x71, 0x71, 0x72, 0x72,\n    0x70, 0x6f, 0x6e, 0x6d, 0x6d, 0x6e, 0x6f, 0x70, 0x6c, 0x6d, 0x6e, 0x6e, 0x6e, 0x6d, 0x6c, 0x6c,\n    0x6d, 0x6c, 0x6b, 0x6a, 0x69, 0x69, 0x6a, 0x6b, 0x6b, 0x6a, 0x69, 0x69, 0x69, 0x69, 0x6a, 0x6b,\n    0x6b, 0x6c, 0x6c, 0x69, 0x65, 0x63, 0x65, 0x68, 0x68, 0x68, 0x68, 0x68, 0x65, 0x62, 0x5e, 0x5c,\n    0x63, 0x6b, 0x76, 0x7c, 0x7d, 0x7c, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b,\n    0x78, 0x79, 0x7a, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a,\n    0x71, 0x70, 0x6e, 0x6d, 0x6d, 0x6d, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e,\n    0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73,\n    0x72, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f,\n    0x6d, 0x6d, 0x6c, 0x6c, 0x6d, 0x6f, 0x71, 0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72, 0x71,\n    0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x70, 0x70, 0x71, 0x71, 0x72, 0x72, 0x73, 0x73,\n    0x75, 0x74, 0x74, 0x73, 0x72, 0x71, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71,\n    0x6f, 0x70, 0x71, 0x72, 0x73, 0x73, 0x72, 0x72, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6f,\n    0x6d, 0x6d, 0x6e, 0x6f, 0x70, 0x71, 0x71, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71,\n    0x6c, 0x6e, 0x70, 0x71, 0x70, 0x6e, 0x6b, 0x69, 0x64, 0x63, 0x62, 0x61, 0x62, 0x63, 0x65, 0x66,\n    0x6e, 0x6f, 0x71, 0x72, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x76, 0x77, 0x77, 0x78,\n    0x77, 0x76, 0x75, 0x74, 0x74, 0x75, 0x75, 0x76, 0x75, 0x76, 0x76, 0x76, 0x77, 0x78, 0x78, 0x78,\n    0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x75, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73,\n    0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x70, 0x72, 0x74, 0x75, 0x75, 0x74, 0x73,\n    0x72, 0x71, 0x71, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6e, 0x6f, 0x6f, 0x70, 0x70, 0x71, 0x72, 0x72,\n    0x6f, 0x6e, 0x6d, 0x6d, 0x6e, 0x6f, 0x70, 0x71, 0x6d, 0x6e, 0x6e, 0x6e, 0x6e, 0x6d, 0x6b, 0x6b,\n    0x6d, 0x6c, 0x6b, 0x6a, 0x69, 0x69, 0x6a, 0x6a, 0x6a, 0x69, 0x68, 0x68, 0x68, 0x68, 0x69, 0x6a,\n    0x6a, 0x6c, 0x6c, 0x69, 0x65, 0x63, 0x65, 0x67, 0x68, 0x69, 0x69, 0x68, 0x66, 0x62, 0x5e, 0x5c,\n    0x65, 0x6d, 0x77, 0x7d, 0x7e, 0x7c, 0x7a, 0x7a, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b,\n    0x78, 0x79, 0x7a, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a,\n    0x73, 0x72, 0x72, 0x71, 0x70, 0x6f, 0x6e, 0x6e, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6e, 0x6e, 0x6d,\n    0x6c, 0x6c, 0x6d, 0x6d, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x71, 0x71, 0x71, 0x72,\n    0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x73, 0x72, 0x72, 0x72, 0x72, 0x71, 0x6f, 0x6d, 0x6c,\n    0x6c, 0x6d, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x73, 0x73, 0x74, 0x76, 0x76, 0x76, 0x75, 0x73, 0x72,\n    0x71, 0x73, 0x75, 0x77, 0x76, 0x74, 0x71, 0x6f, 0x73, 0x72, 0x70, 0x6f, 0x6f, 0x6f, 0x71, 0x71,\n    0x72, 0x72, 0x72, 0x71, 0x70, 0x70, 0x70, 0x6f, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72,\n    0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x72, 0x72, 0x6f, 0x70, 0x71, 0x72, 0x73, 0x73, 0x72, 0x72,\n    0x73, 0x72, 0x70, 0x6e, 0x6e, 0x6e, 0x6f, 0x70, 0x70, 0x71, 0x72, 0x73, 0x73, 0x71, 0x6e, 0x6d,\n    0x6f, 0x6e, 0x6e, 0x6f, 0x71, 0x70, 0x6b, 0x66, 0x61, 0x5e, 0x5a, 0x59, 0x5b, 0x62, 0x6a, 0x6f,\n    0x74, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75,\n    0x76, 0x77, 0x77, 0x77, 0x77, 0x76, 0x74, 0x73, 0x77, 0x77, 0x77, 0x78, 0x78, 0x79, 0x79, 0x79,\n    0x76, 0x76, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73,\n    0x6d, 0x70, 0x73, 0x73, 0x71, 0x71, 0x72, 0x75, 0x72, 0x73, 0x73, 0x74, 0x73, 0x71, 0x6f, 0x6e,\n    0x6b, 0x6d, 0x6e, 0x6f, 0x6f, 0x6e, 0x6d, 0x6c, 0x72, 0x72, 0x71, 0x71, 0x70, 0x70, 0x6f, 0x6f,\n    0x6b, 0x6b, 0x6a, 0x6b, 0x6c, 0x6f, 0x71, 0x73, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d,\n    0x6d, 0x6d, 0x6c, 0x6b, 0x69, 0x68, 0x67, 0x67, 0x68, 0x68, 0x68, 0x68, 0x67, 0x67, 0x67, 0x67,\n    0x67, 0x67, 0x68, 0x68, 0x68, 0x68, 0x68, 0x68, 0x69, 0x68, 0x66, 0x64, 0x63, 0x63, 0x63, 0x63,\n    0x71, 0x73, 0x77, 0x7b, 0x7d, 0x7e, 0x7d, 0x7c, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x78,\n    0x78, 0x79, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x78, 0x7a, 0x7c, 0x7e, 0x7e, 0x7d, 0x7b, 0x7a,\n    0x73, 0x73, 0x72, 0x71, 0x70, 0x70, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e,\n    0x6c, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6f, 0x6f, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x71, 0x71,\n    0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x72, 0x72, 0x71, 0x71, 0x72, 0x72, 0x71, 0x70, 0x6e, 0x6d,\n    0x6d, 0x6e, 0x6e, 0x6f, 0x71, 0x72, 0x73, 0x73, 0x74, 0x74, 0x75, 0x76, 0x76, 0x74, 0x73, 0x72,\n    0x70, 0x71, 0x74, 0x75, 0x75, 0x74, 0x72, 0x70, 0x73, 0x72, 0x71, 0x6f, 0x6f, 0x70, 0x71, 0x71,\n    0x72, 0x72, 0x72, 0x71, 0x71, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72,\n    0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x70, 0x71, 0x72, 0x72, 0x72, 0x72, 0x71,\n    0x72, 0x71, 0x70, 0x6e, 0x6e, 0x6e, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f,\n    0x71, 0x71, 0x71, 0x74, 0x74, 0x71, 0x6a, 0x64, 0x5d, 0x5b, 0x59, 0x58, 0x5a, 0x5f, 0x65, 0x68,\n    0x6e, 0x70, 0x72, 0x74, 0x75, 0x75, 0x74, 0x74, 0x73, 0x73, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75,\n    0x76, 0x77, 0x77, 0x77, 0x77, 0x76, 0x74, 0x74, 0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78,\n    0x76, 0x76, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73,\n    0x6f, 0x72, 0x74, 0x73, 0x70, 0x6f, 0x71, 0x73, 0x76, 0x74, 0x71, 0x6f, 0x6e, 0x6e, 0x6f, 0x70,\n    0x6b, 0x6c, 0x6d, 0x6e, 0x6f, 0x6e, 0x6d, 0x6c, 0x71, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6e, 0x6e,\n    0x6b, 0x6b, 0x6a, 0x6b, 0x6c, 0x6f, 0x71, 0x73, 0x70, 0x70, 0x6f, 0x6f, 0x6e, 0x6d, 0x6d, 0x6c,\n    0x6d, 0x6c, 0x6b, 0x6a, 0x69, 0x68, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x66,\n    0x66, 0x67, 0x67, 0x68, 0x68, 0x69, 0x69, 0x69, 0x6a, 0x69, 0x68, 0x66, 0x65, 0x65, 0x65, 0x65,\n    0x72, 0x74, 0x78, 0x7b, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x78,\n    0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x78, 0x7a, 0x7c, 0x7e, 0x7e, 0x7d, 0x7b, 0x7a,\n    0x73, 0x73, 0x72, 0x72, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e,\n    0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f,\n    0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x71, 0x6f, 0x70, 0x71, 0x72, 0x72, 0x71, 0x70, 0x6f,\n    0x6e, 0x6f, 0x6f, 0x70, 0x71, 0x72, 0x73, 0x73, 0x74, 0x74, 0x75, 0x75, 0x75, 0x74, 0x73, 0x72,\n    0x6e, 0x6f, 0x72, 0x74, 0x74, 0x74, 0x72, 0x71, 0x73, 0x72, 0x71, 0x70, 0x70, 0x70, 0x71, 0x71,\n    0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x70, 0x70, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x73,\n    0x71, 0x71, 0x70, 0x70, 0x6f, 0x6e, 0x6e, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x72, 0x72, 0x71, 0x71,\n    0x72, 0x71, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x71, 0x70, 0x6e, 0x6d, 0x6d, 0x6f, 0x72, 0x73,\n    0x75, 0x76, 0x78, 0x7a, 0x7a, 0x74, 0x6a, 0x62, 0x58, 0x58, 0x57, 0x57, 0x58, 0x5a, 0x5d, 0x5f,\n    0x65, 0x68, 0x6d, 0x72, 0x75, 0x76, 0x75, 0x75, 0x73, 0x73, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75,\n    0x76, 0x76, 0x77, 0x77, 0x77, 0x76, 0x75, 0x74, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77,\n    0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73,\n    0x71, 0x73, 0x74, 0x72, 0x6f, 0x6d, 0x6e, 0x70, 0x78, 0x76, 0x73, 0x70, 0x6f, 0x70, 0x71, 0x72,\n    0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6e, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d,\n    0x6b, 0x6b, 0x6b, 0x6c, 0x6d, 0x6f, 0x71, 0x72, 0x72, 0x72, 0x71, 0x6f, 0x6e, 0x6d, 0x6c, 0x6b,\n    0x6c, 0x6b, 0x6b, 0x6a, 0x69, 0x68, 0x67, 0x67, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66,\n    0x65, 0x66, 0x67, 0x68, 0x69, 0x6b, 0x6c, 0x6c, 0x6d, 0x6c, 0x6a, 0x69, 0x68, 0x69, 0x69, 0x69,\n    0x74, 0x76, 0x79, 0x7b, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79,\n    0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7a, 0x79, 0x78, 0x78, 0x7a, 0x7c, 0x7e, 0x7e, 0x7d, 0x7b, 0x7a,\n    0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f,\n    0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e,\n    0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x6e, 0x6f, 0x70, 0x72, 0x72, 0x72, 0x72, 0x71,\n    0x70, 0x70, 0x71, 0x71, 0x72, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x72,\n    0x6d, 0x6e, 0x70, 0x72, 0x73, 0x73, 0x73, 0x72, 0x73, 0x73, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71,\n    0x72, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73,\n    0x71, 0x71, 0x70, 0x6f, 0x6e, 0x6d, 0x6c, 0x6c, 0x6f, 0x70, 0x71, 0x72, 0x72, 0x71, 0x70, 0x70,\n    0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x72, 0x6f, 0x6c, 0x6b, 0x6c, 0x70, 0x75, 0x78,\n    0x7a, 0x7b, 0x7d, 0x80, 0x7f, 0x77, 0x6b, 0x62, 0x56, 0x56, 0x56, 0x56, 0x56, 0x56, 0x56, 0x56,\n    0x5c, 0x60, 0x68, 0x6f, 0x74, 0x76, 0x76, 0x75, 0x73, 0x73, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75,\n    0x75, 0x76, 0x77, 0x77, 0x77, 0x76, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75,\n    0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73,\n    0x74, 0x75, 0x75, 0x71, 0x6c, 0x6a, 0x6b, 0x6d, 0x74, 0x77, 0x7b, 0x7d, 0x7d, 0x79, 0x75, 0x71,\n    0x6a, 0x6a, 0x6b, 0x6c, 0x6d, 0x6d, 0x6d, 0x6d, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c,\n    0x6b, 0x6b, 0x6b, 0x6c, 0x6d, 0x6f, 0x70, 0x70, 0x73, 0x72, 0x71, 0x70, 0x6e, 0x6c, 0x6b, 0x6a,\n    0x6b, 0x6a, 0x6a, 0x69, 0x68, 0x67, 0x67, 0x67, 0x65, 0x65, 0x65, 0x65, 0x65, 0x66, 0x66, 0x66,\n    0x65, 0x66, 0x67, 0x69, 0x6b, 0x6d, 0x6e, 0x6f, 0x6f, 0x6e, 0x6d, 0x6c, 0x6c, 0x6d, 0x6d, 0x6e,\n    0x76, 0x77, 0x79, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x79, 0x79, 0x7a,\n    0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x79, 0x77, 0x76, 0x78, 0x7a, 0x7c, 0x7e, 0x7e, 0x7d, 0x7b, 0x7a,\n    0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70,\n    0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e,\n    0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6f, 0x70, 0x72, 0x73, 0x73, 0x72, 0x72,\n    0x71, 0x72, 0x72, 0x72, 0x73, 0x74, 0x74, 0x74, 0x75, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73,\n    0x6e, 0x6f, 0x70, 0x71, 0x72, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x71,\n    0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73,\n    0x71, 0x71, 0x70, 0x6f, 0x6e, 0x6d, 0x6c, 0x6c, 0x6f, 0x70, 0x71, 0x71, 0x71, 0x71, 0x6f, 0x6f,\n    0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x72, 0x70, 0x6d, 0x6c, 0x6f, 0x73, 0x79, 0x7c,\n    0x7e, 0x7f, 0x80, 0x82, 0x81, 0x7a, 0x6f, 0x67, 0x58, 0x58, 0x57, 0x56, 0x54, 0x53, 0x52, 0x51,\n    0x56, 0x5a, 0x61, 0x68, 0x6e, 0x72, 0x74, 0x75, 0x73, 0x73, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75,\n    0x75, 0x75, 0x76, 0x77, 0x77, 0x77, 0x76, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74,\n    0x75, 0x75, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73,\n    0x75, 0x76, 0x74, 0x70, 0x6a, 0x68, 0x69, 0x6b, 0x6d, 0x77, 0x84, 0x8f, 0x90, 0x87, 0x7b, 0x72,\n    0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6d, 0x6d, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b,\n    0x6b, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f, 0x6f, 0x6f, 0x72, 0x72, 0x71, 0x6f, 0x6d, 0x6c, 0x6a, 0x6a,\n    0x69, 0x69, 0x69, 0x68, 0x68, 0x67, 0x67, 0x66, 0x64, 0x64, 0x65, 0x65, 0x65, 0x66, 0x66, 0x66,\n    0x67, 0x68, 0x6a, 0x6c, 0x6e, 0x70, 0x71, 0x72, 0x71, 0x71, 0x70, 0x6f, 0x70, 0x70, 0x72, 0x72,\n    0x79, 0x79, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x78, 0x7a, 0x7b,\n    0x7e, 0x7e, 0x7d, 0x7c, 0x7a, 0x78, 0x75, 0x74, 0x78, 0x7a, 0x7c, 0x7e, 0x7e, 0x7d, 0x7b, 0x7a,\n    0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71,\n    0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e,\n    0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x6f, 0x70, 0x71, 0x72, 0x73, 0x73, 0x72, 0x72,\n    0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x74, 0x73, 0x72, 0x72, 0x72, 0x73, 0x73,\n    0x70, 0x70, 0x71, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x73, 0x72, 0x71,\n    0x71, 0x71, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x74,\n    0x71, 0x71, 0x70, 0x70, 0x6f, 0x6e, 0x6e, 0x6e, 0x70, 0x70, 0x71, 0x71, 0x71, 0x70, 0x6f, 0x6e,\n    0x6e, 0x6f, 0x70, 0x71, 0x71, 0x71, 0x70, 0x70, 0x71, 0x70, 0x70, 0x71, 0x74, 0x79, 0x7d, 0x80,\n    0x81, 0x80, 0x81, 0x82, 0x82, 0x7d, 0x75, 0x6e, 0x5f, 0x5d, 0x59, 0x56, 0x53, 0x52, 0x52, 0x52,\n    0x54, 0x56, 0x5a, 0x60, 0x66, 0x6c, 0x71, 0x74, 0x73, 0x73, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75,\n    0x74, 0x75, 0x76, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74,\n    0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73,\n    0x75, 0x75, 0x73, 0x6e, 0x69, 0x66, 0x68, 0x6a, 0x69, 0x76, 0x88, 0x96, 0x9a, 0x92, 0x84, 0x7a,\n    0x70, 0x6f, 0x6e, 0x6d, 0x6c, 0x6c, 0x6c, 0x6d, 0x6a, 0x6a, 0x6a, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b,\n    0x6a, 0x6b, 0x6d, 0x6e, 0x6f, 0x6f, 0x6e, 0x6e, 0x70, 0x70, 0x6f, 0x6d, 0x6c, 0x6b, 0x6a, 0x69,\n    0x68, 0x68, 0x68, 0x67, 0x67, 0x67, 0x66, 0x66, 0x64, 0x64, 0x65, 0x66, 0x66, 0x67, 0x67, 0x68,\n    0x6b, 0x6b, 0x6d, 0x6f, 0x71, 0x72, 0x74, 0x75, 0x72, 0x72, 0x71, 0x71, 0x72, 0x73, 0x75, 0x76,\n    0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x77, 0x76, 0x77, 0x78, 0x7a, 0x7c,\n    0x7e, 0x7e, 0x7d, 0x7c, 0x7a, 0x78, 0x75, 0x74, 0x78, 0x7a, 0x7c, 0x7e, 0x7e, 0x7d, 0x7b, 0x7a,\n    0x6d, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x70, 0x70, 0x71, 0x71, 0x72, 0x72,\n    0x72, 0x72, 0x71, 0x71, 0x70, 0x70, 0x70, 0x6f, 0x71, 0x71, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6e,\n    0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x70, 0x71, 0x72, 0x73, 0x73, 0x72, 0x72, 0x71,\n    0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x74, 0x73, 0x71, 0x71, 0x72, 0x73, 0x73,\n    0x73, 0x73, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x74, 0x75, 0x75, 0x75, 0x74, 0x72, 0x71,\n    0x71, 0x71, 0x72, 0x72, 0x73, 0x73, 0x73, 0x74, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x74, 0x74,\n    0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x6f, 0x6e, 0x6d,\n    0x6d, 0x6e, 0x70, 0x71, 0x72, 0x71, 0x70, 0x6f, 0x6f, 0x71, 0x74, 0x77, 0x7b, 0x7e, 0x81, 0x82,\n    0x83, 0x81, 0x7f, 0x7f, 0x80, 0x7f, 0x7a, 0x76, 0x68, 0x63, 0x5d, 0x56, 0x53, 0x52, 0x54, 0x55,\n    0x55, 0x55, 0x55, 0x58, 0x5e, 0x66, 0x6e, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75,\n    0x74, 0x74, 0x76, 0x77, 0x77, 0x77, 0x77, 0x76, 0x77, 0x77, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75,\n    0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73,\n    0x75, 0x75, 0x72, 0x6d, 0x67, 0x65, 0x67, 0x6a, 0x6b, 0x75, 0x84, 0x90, 0x96, 0x94, 0x8d, 0x88,\n    0x74, 0x73, 0x70, 0x6e, 0x6c, 0x6c, 0x6c, 0x6c, 0x6a, 0x6a, 0x6a, 0x6b, 0x6b, 0x6c, 0x6c, 0x6c,\n    0x6a, 0x6b, 0x6d, 0x6e, 0x6f, 0x6f, 0x6e, 0x6d, 0x6d, 0x6d, 0x6c, 0x6c, 0x6b, 0x6a, 0x6a, 0x69,\n    0x67, 0x67, 0x67, 0x67, 0x67, 0x66, 0x66, 0x66, 0x65, 0x65, 0x66, 0x66, 0x67, 0x68, 0x69, 0x69,\n    0x6e, 0x6f, 0x70, 0x71, 0x73, 0x74, 0x76, 0x76, 0x73, 0x72, 0x72, 0x72, 0x73, 0x75, 0x77, 0x78,\n    0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x78, 0x77, 0x75, 0x76, 0x78, 0x7b, 0x7c,\n    0x7d, 0x7d, 0x7d, 0x7c, 0x7a, 0x78, 0x76, 0x74, 0x78, 0x7a, 0x7c, 0x7e, 0x7e, 0x7d, 0x7b, 0x7a,\n    0x6c, 0x6c, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6f, 0x6f, 0x70, 0x70, 0x71, 0x71, 0x72, 0x72,\n    0x72, 0x72, 0x72, 0x71, 0x71, 0x70, 0x70, 0x6f, 0x72, 0x71, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x6f,\n    0x6f, 0x6f, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x72, 0x73, 0x73, 0x73, 0x72, 0x71, 0x70,\n    0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x74, 0x72, 0x71, 0x71, 0x71, 0x73, 0x74,\n    0x75, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x74, 0x75, 0x76, 0x76, 0x74, 0x72, 0x71,\n    0x71, 0x71, 0x72, 0x72, 0x73, 0x73, 0x74, 0x74, 0x72, 0x72, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74,\n    0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x72, 0x72, 0x70, 0x70, 0x71, 0x71, 0x70, 0x6f, 0x6e, 0x6d,\n    0x6c, 0x6e, 0x70, 0x71, 0x72, 0x71, 0x70, 0x6f, 0x6e, 0x71, 0x76, 0x7b, 0x7f, 0x82, 0x83, 0x83,\n    0x84, 0x81, 0x7d, 0x7d, 0x7f, 0x7f, 0x7e, 0x7b, 0x6d, 0x68, 0x5f, 0x57, 0x53, 0x53, 0x56, 0x59,\n    0x56, 0x54, 0x52, 0x53, 0x59, 0x62, 0x6c, 0x72, 0x73, 0x73, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75,\n    0x73, 0x74, 0x76, 0x77, 0x77, 0x77, 0x77, 0x76, 0x78, 0x77, 0x77, 0x77, 0x76, 0x75, 0x75, 0x75,\n    0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x72, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73,\n    0x74, 0x74, 0x72, 0x6c, 0x67, 0x65, 0x67, 0x6b, 0x6f, 0x74, 0x7d, 0x87, 0x8e, 0x92, 0x93, 0x93,\n    0x77, 0x75, 0x72, 0x6f, 0x6c, 0x6b, 0x6b, 0x6b, 0x6a, 0x6a, 0x6a, 0x6b, 0x6b, 0x6c, 0x6c, 0x6d,\n    0x6a, 0x6c, 0x6d, 0x6f, 0x6f, 0x6f, 0x6d, 0x6d, 0x6b, 0x6b, 0x6b, 0x6b, 0x6a, 0x6a, 0x6a, 0x6a,\n    0x67, 0x67, 0x67, 0x67, 0x66, 0x66, 0x66, 0x66, 0x65, 0x66, 0x66, 0x67, 0x68, 0x69, 0x69, 0x6a,\n    0x71, 0x71, 0x72, 0x73, 0x74, 0x76, 0x76, 0x77, 0x73, 0x73, 0x72, 0x73, 0x74, 0x76, 0x77, 0x79,\n    0x7e, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x78, 0x76, 0x75, 0x76, 0x78, 0x7b, 0x7d,\n    0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x78, 0x76, 0x75, 0x78, 0x7a, 0x7c, 0x7e, 0x7e, 0x7d, 0x7b, 0x7a,\n    0x6d, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x71, 0x70, 0x6f, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f,\n    0x74, 0x73, 0x73, 0x72, 0x71, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70,\n    0x70, 0x70, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73,\n    0x74, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x79, 0x75, 0x75, 0x75, 0x76, 0x76, 0x77, 0x77, 0x77,\n    0x75, 0x75, 0x74, 0x73, 0x72, 0x72, 0x71, 0x71, 0x70, 0x71, 0x74, 0x76, 0x76, 0x75, 0x72, 0x71,\n    0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74,\n    0x70, 0x70, 0x6f, 0x6f, 0x70, 0x71, 0x72, 0x73, 0x70, 0x71, 0x72, 0x73, 0x72, 0x71, 0x70, 0x6e,\n    0x73, 0x72, 0x71, 0x70, 0x6f, 0x70, 0x72, 0x73, 0x7b, 0x7c, 0x7f, 0x81, 0x82, 0x83, 0x82, 0x81,\n    0x7f, 0x7f, 0x7f, 0x7f, 0x80, 0x80, 0x80, 0x80, 0x82, 0x7a, 0x6d, 0x60, 0x57, 0x53, 0x54, 0x55,\n    0x59, 0x55, 0x50, 0x4e, 0x52, 0x5b, 0x65, 0x6c, 0x74, 0x76, 0x78, 0x76, 0x73, 0x72, 0x74, 0x77,\n    0x73, 0x73, 0x73, 0x74, 0x75, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x79, 0x79, 0x79,\n    0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x73, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74,\n    0x79, 0x75, 0x6e, 0x69, 0x65, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x72, 0x80, 0x91, 0x99, 0x95, 0x8e,\n    0x8c, 0x82, 0x74, 0x6a, 0x68, 0x6a, 0x6d, 0x6e, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c,\n    0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6e, 0x71, 0x70, 0x6e, 0x6d, 0x6b, 0x6b, 0x6b, 0x6b,\n    0x68, 0x67, 0x66, 0x66, 0x66, 0x66, 0x67, 0x68, 0x66, 0x66, 0x66, 0x67, 0x69, 0x6c, 0x70, 0x71,\n    0x6d, 0x6e, 0x6f, 0x71, 0x72, 0x73, 0x74, 0x74, 0x6f, 0x73, 0x77, 0x78, 0x77, 0x77, 0x79, 0x7c,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x7c, 0x7d,\n    0x7f, 0x7e, 0x7c, 0x79, 0x77, 0x76, 0x76, 0x76, 0x79, 0x7b, 0x7d, 0x7e, 0x7e, 0x7d, 0x7b, 0x79,\n    0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x71, 0x70, 0x6f, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f,\n    0x73, 0x73, 0x72, 0x72, 0x71, 0x70, 0x6f, 0x6f, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72,\n    0x72, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x76,\n    0x75, 0x75, 0x75, 0x76, 0x76, 0x77, 0x78, 0x78, 0x74, 0x75, 0x75, 0x75, 0x76, 0x76, 0x77, 0x77,\n    0x75, 0x75, 0x74, 0x74, 0x73, 0x72, 0x71, 0x71, 0x72, 0x74, 0x76, 0x78, 0x78, 0x76, 0x74, 0x73,\n    0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73,\n    0x71, 0x70, 0x70, 0x6f, 0x70, 0x71, 0x72, 0x73, 0x6f, 0x70, 0x71, 0x72, 0x72, 0x71, 0x70, 0x6f,\n    0x72, 0x71, 0x71, 0x71, 0x71, 0x73, 0x75, 0x76, 0x7c, 0x7e, 0x80, 0x81, 0x82, 0x82, 0x81, 0x80,\n    0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x81, 0x7e, 0x78, 0x70, 0x67, 0x5d, 0x56, 0x52,\n    0x55, 0x54, 0x53, 0x54, 0x57, 0x5c, 0x62, 0x65, 0x6f, 0x73, 0x76, 0x77, 0x75, 0x74, 0x76, 0x78,\n    0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x76, 0x76, 0x77, 0x77, 0x78, 0x78, 0x78, 0x79,\n    0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73,\n    0x77, 0x74, 0x70, 0x6b, 0x68, 0x66, 0x66, 0x66, 0x6c, 0x6b, 0x70, 0x7d, 0x8e, 0x97, 0x96, 0x90,\n    0x8f, 0x85, 0x78, 0x6e, 0x6a, 0x6b, 0x6c, 0x6c, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d,\n    0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x71, 0x6f, 0x6e, 0x6c, 0x6b, 0x6a, 0x6a, 0x6b,\n    0x68, 0x68, 0x67, 0x66, 0x66, 0x67, 0x68, 0x68, 0x68, 0x68, 0x68, 0x69, 0x6b, 0x6d, 0x70, 0x72,\n    0x6d, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x72, 0x72, 0x70, 0x73, 0x77, 0x79, 0x77, 0x77, 0x79, 0x7c,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x7c, 0x7d,\n    0x7f, 0x7d, 0x7b, 0x79, 0x77, 0x76, 0x75, 0x75, 0x79, 0x7b, 0x7d, 0x7e, 0x7e, 0x7d, 0x7b, 0x79,\n    0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x71, 0x70, 0x6f, 0x6e, 0x6e, 0x6e, 0x6f, 0x70,\n    0x73, 0x72, 0x72, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x74,\n    0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x75, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x78,\n    0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76,\n    0x76, 0x75, 0x75, 0x74, 0x74, 0x73, 0x73, 0x72, 0x74, 0x75, 0x77, 0x78, 0x78, 0x77, 0x75, 0x74,\n    0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73,\n    0x71, 0x71, 0x70, 0x70, 0x70, 0x71, 0x72, 0x73, 0x6f, 0x70, 0x71, 0x71, 0x71, 0x71, 0x70, 0x6f,\n    0x71, 0x71, 0x71, 0x73, 0x75, 0x77, 0x79, 0x7b, 0x7f, 0x80, 0x80, 0x81, 0x81, 0x80, 0x80, 0x7f,\n    0x80, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x81, 0x83, 0x81, 0x79, 0x6b, 0x5e, 0x55,\n    0x54, 0x55, 0x56, 0x57, 0x59, 0x5b, 0x5c, 0x5d, 0x67, 0x6c, 0x73, 0x77, 0x77, 0x76, 0x77, 0x79,\n    0x76, 0x76, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78,\n    0x75, 0x75, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72,\n    0x74, 0x73, 0x72, 0x70, 0x6c, 0x68, 0x64, 0x61, 0x67, 0x67, 0x6c, 0x79, 0x89, 0x94, 0x96, 0x94,\n    0x94, 0x8b, 0x7e, 0x75, 0x70, 0x6e, 0x6c, 0x6a, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d,\n    0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x6f, 0x6e, 0x6c, 0x6b, 0x6a, 0x6a, 0x6a, 0x6a,\n    0x69, 0x68, 0x68, 0x67, 0x67, 0x68, 0x68, 0x69, 0x6a, 0x6a, 0x6a, 0x6b, 0x6d, 0x6f, 0x71, 0x72,\n    0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x71, 0x75, 0x79, 0x79, 0x78, 0x78, 0x7a, 0x7c,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x78, 0x79, 0x7a, 0x7c, 0x7d,\n    0x7e, 0x7c, 0x7a, 0x78, 0x76, 0x75, 0x75, 0x75, 0x79, 0x7b, 0x7d, 0x7e, 0x7e, 0x7d, 0x7b, 0x79,\n    0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x72, 0x71, 0x70, 0x6f, 0x6e, 0x6f, 0x6f, 0x70,\n    0x72, 0x72, 0x71, 0x71, 0x70, 0x70, 0x70, 0x6f, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x74, 0x73,\n    0x72, 0x72, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78,\n    0x78, 0x78, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x77,\n    0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74, 0x75, 0x75, 0x76, 0x77, 0x77, 0x76, 0x74, 0x73,\n    0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x72,\n    0x72, 0x72, 0x71, 0x70, 0x70, 0x71, 0x72, 0x73, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71,\n    0x71, 0x72, 0x73, 0x76, 0x79, 0x7b, 0x7e, 0x7f, 0x81, 0x81, 0x81, 0x81, 0x80, 0x7f, 0x7f, 0x7e,\n    0x81, 0x81, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x7e, 0x81, 0x85, 0x85, 0x80, 0x77, 0x6c, 0x65,\n    0x5c, 0x5a, 0x56, 0x54, 0x53, 0x55, 0x58, 0x5a, 0x5e, 0x65, 0x6f, 0x75, 0x76, 0x77, 0x77, 0x79,\n    0x77, 0x77, 0x76, 0x76, 0x75, 0x74, 0x74, 0x73, 0x76, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77,\n    0x75, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71,\n    0x71, 0x73, 0x75, 0x74, 0x70, 0x6a, 0x63, 0x5f, 0x63, 0x63, 0x68, 0x73, 0x82, 0x8f, 0x95, 0x96,\n    0x98, 0x90, 0x86, 0x7d, 0x78, 0x72, 0x6d, 0x69, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d,\n    0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x6e, 0x6d, 0x6c, 0x6a, 0x69, 0x69, 0x6a, 0x6a,\n    0x6a, 0x69, 0x68, 0x68, 0x68, 0x68, 0x69, 0x6a, 0x6c, 0x6c, 0x6d, 0x6d, 0x6f, 0x70, 0x71, 0x72,\n    0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x73, 0x77, 0x7a, 0x7b, 0x79, 0x78, 0x7a, 0x7c,\n    0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7c, 0x7c,\n    0x7d, 0x7b, 0x79, 0x77, 0x76, 0x75, 0x75, 0x75, 0x79, 0x7b, 0x7d, 0x7e, 0x7e, 0x7d, 0x7b, 0x79,\n    0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x72, 0x71, 0x70, 0x6f, 0x6f, 0x6f, 0x70, 0x70,\n    0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74,\n    0x72, 0x72, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78,\n    0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78,\n    0x79, 0x78, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x75, 0x75, 0x75, 0x75, 0x75, 0x74, 0x73, 0x73,\n    0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x74, 0x74, 0x73, 0x73, 0x73,\n    0x73, 0x73, 0x71, 0x71, 0x71, 0x71, 0x72, 0x73, 0x71, 0x71, 0x71, 0x71, 0x71, 0x72, 0x73, 0x73,\n    0x73, 0x74, 0x77, 0x7a, 0x7c, 0x7f, 0x81, 0x81, 0x82, 0x82, 0x81, 0x80, 0x7f, 0x7f, 0x7e, 0x7e,\n    0x81, 0x81, 0x81, 0x81, 0x82, 0x82, 0x82, 0x82, 0x7f, 0x7f, 0x7f, 0x7f, 0x7e, 0x7d, 0x7b, 0x7a,\n    0x6b, 0x63, 0x59, 0x50, 0x4d, 0x50, 0x56, 0x5b, 0x58, 0x5f, 0x69, 0x6f, 0x72, 0x73, 0x75, 0x77,\n    0x77, 0x77, 0x77, 0x76, 0x75, 0x75, 0x74, 0x74, 0x76, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75,\n    0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71,\n    0x70, 0x73, 0x76, 0x77, 0x74, 0x6d, 0x65, 0x60, 0x60, 0x61, 0x65, 0x6e, 0x7b, 0x88, 0x92, 0x97,\n    0x9a, 0x95, 0x8d, 0x86, 0x80, 0x79, 0x70, 0x6a, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d,\n    0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x6d, 0x6d, 0x6b, 0x6a, 0x69, 0x6a, 0x6a, 0x6b,\n    0x6b, 0x6a, 0x6a, 0x69, 0x69, 0x6a, 0x6a, 0x6b, 0x6d, 0x6e, 0x6f, 0x6f, 0x70, 0x71, 0x71, 0x71,\n    0x70, 0x6f, 0x6e, 0x6d, 0x6d, 0x6e, 0x6f, 0x70, 0x75, 0x79, 0x7c, 0x7c, 0x7a, 0x78, 0x7a, 0x7c,\n    0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x7a, 0x7c, 0x7c,\n    0x7c, 0x7b, 0x79, 0x78, 0x76, 0x76, 0x76, 0x76, 0x79, 0x7b, 0x7d, 0x7e, 0x7e, 0x7d, 0x7b, 0x79,\n    0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x72, 0x71, 0x70, 0x6f, 0x6f, 0x6f, 0x70, 0x70,\n    0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x72, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77, 0x77,\n    0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x78, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7b,\n    0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x78, 0x78, 0x77, 0x77, 0x76, 0x75, 0x75, 0x75,\n    0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x77, 0x77, 0x77, 0x76, 0x75, 0x75, 0x74, 0x74,\n    0x74, 0x73, 0x72, 0x71, 0x71, 0x71, 0x72, 0x72, 0x73, 0x72, 0x72, 0x72, 0x73, 0x74, 0x75, 0x76,\n    0x78, 0x79, 0x7b, 0x7e, 0x80, 0x81, 0x81, 0x81, 0x83, 0x82, 0x80, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f,\n    0x81, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x86, 0x83, 0x81, 0x7e, 0x7c, 0x7c, 0x7f, 0x83, 0x86,\n    0x78, 0x70, 0x64, 0x59, 0x53, 0x53, 0x57, 0x5a, 0x55, 0x5b, 0x62, 0x67, 0x69, 0x6c, 0x71, 0x74,\n    0x77, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74,\n    0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71,\n    0x71, 0x74, 0x77, 0x78, 0x76, 0x70, 0x6a, 0x65, 0x60, 0x60, 0x63, 0x69, 0x73, 0x80, 0x8e, 0x96,\n    0x9a, 0x97, 0x92, 0x8e, 0x89, 0x80, 0x75, 0x6d, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e,\n    0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6e, 0x6d, 0x6c, 0x6b, 0x6a, 0x6b, 0x6b, 0x6c,\n    0x6c, 0x6b, 0x6a, 0x6a, 0x6a, 0x6a, 0x6b, 0x6c, 0x6e, 0x6f, 0x70, 0x71, 0x71, 0x71, 0x70, 0x70,\n    0x70, 0x6f, 0x6e, 0x6d, 0x6d, 0x6f, 0x71, 0x72, 0x77, 0x7b, 0x7d, 0x7d, 0x7a, 0x79, 0x7a, 0x7c,\n    0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c,\n    0x7d, 0x7c, 0x7a, 0x79, 0x77, 0x77, 0x77, 0x78, 0x79, 0x7b, 0x7d, 0x7e, 0x7e, 0x7d, 0x7b, 0x79,\n    0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x71, 0x71, 0x72, 0x72, 0x70, 0x6f, 0x6f, 0x70, 0x70, 0x71,\n    0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x70, 0x73, 0x74, 0x76, 0x77, 0x79, 0x7b, 0x7d, 0x7d,\n    0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x80, 0x80, 0x80, 0x80,\n    0x7f, 0x7f, 0x80, 0x80, 0x81, 0x81, 0x82, 0x82, 0x81, 0x81, 0x81, 0x80, 0x80, 0x7f, 0x7f, 0x7f,\n    0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a,\n    0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x79, 0x79, 0x78, 0x77, 0x76, 0x76, 0x75,\n    0x75, 0x74, 0x73, 0x71, 0x71, 0x71, 0x72, 0x72, 0x74, 0x74, 0x73, 0x73, 0x74, 0x75, 0x77, 0x79,\n    0x7c, 0x7d, 0x7f, 0x81, 0x82, 0x81, 0x81, 0x80, 0x82, 0x81, 0x80, 0x7f, 0x7e, 0x7f, 0x80, 0x81,\n    0x80, 0x81, 0x82, 0x84, 0x86, 0x88, 0x89, 0x8a, 0x88, 0x86, 0x84, 0x83, 0x82, 0x82, 0x83, 0x84,\n    0x80, 0x7c, 0x76, 0x6e, 0x66, 0x5e, 0x58, 0x55, 0x55, 0x59, 0x5c, 0x5f, 0x61, 0x65, 0x6c, 0x72,\n    0x75, 0x75, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x76, 0x76, 0x75, 0x75, 0x74, 0x74, 0x73, 0x73,\n    0x74, 0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72,\n    0x73, 0x75, 0x77, 0x78, 0x76, 0x73, 0x6f, 0x6c, 0x61, 0x61, 0x62, 0x65, 0x6d, 0x7a, 0x89, 0x93,\n    0x98, 0x97, 0x95, 0x94, 0x8f, 0x86, 0x7a, 0x70, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e,\n    0x6c, 0x6c, 0x6c, 0x6c, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6d, 0x6c, 0x6b, 0x6b, 0x6c, 0x6c, 0x6d,\n    0x6d, 0x6c, 0x6b, 0x6b, 0x6b, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f, 0x70, 0x71, 0x71, 0x70, 0x6f, 0x6e,\n    0x70, 0x6f, 0x6e, 0x6d, 0x6e, 0x70, 0x73, 0x75, 0x79, 0x7c, 0x7f, 0x7e, 0x7b, 0x79, 0x7a, 0x7c,\n    0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c,\n    0x7e, 0x7d, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7b, 0x7d, 0x7e, 0x7e, 0x7d, 0x7b, 0x79,\n    0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x71, 0x71, 0x73, 0x72, 0x71, 0x70, 0x6f, 0x70, 0x70, 0x71,\n    0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x76, 0x77, 0x79, 0x7b, 0x7e, 0x80, 0x82, 0x83,\n    0x82, 0x82, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85,\n    0x80, 0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x85, 0x84, 0x83, 0x83, 0x82, 0x82, 0x81, 0x81, 0x81,\n    0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x80, 0x80, 0x83, 0x82, 0x81, 0x80, 0x7f, 0x7e, 0x7e, 0x7e,\n    0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7b, 0x7a, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x76,\n    0x75, 0x74, 0x73, 0x72, 0x71, 0x71, 0x72, 0x72, 0x75, 0x75, 0x74, 0x74, 0x75, 0x77, 0x79, 0x7a,\n    0x7f, 0x80, 0x82, 0x83, 0x83, 0x82, 0x80, 0x7f, 0x81, 0x80, 0x7f, 0x7e, 0x7e, 0x7f, 0x81, 0x82,\n    0x80, 0x81, 0x83, 0x85, 0x88, 0x8a, 0x8c, 0x8d, 0x8b, 0x8c, 0x8c, 0x8b, 0x89, 0x84, 0x7f, 0x7c,\n    0x82, 0x84, 0x84, 0x81, 0x77, 0x68, 0x59, 0x4f, 0x56, 0x58, 0x59, 0x59, 0x5b, 0x60, 0x69, 0x70,\n    0x74, 0x75, 0x75, 0x76, 0x77, 0x77, 0x78, 0x78, 0x76, 0x75, 0x75, 0x75, 0x74, 0x73, 0x73, 0x73,\n    0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73,\n    0x75, 0x76, 0x77, 0x77, 0x76, 0x74, 0x72, 0x70, 0x62, 0x62, 0x62, 0x64, 0x6a, 0x76, 0x86, 0x91,\n    0x97, 0x97, 0x97, 0x97, 0x93, 0x8a, 0x7d, 0x73, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e,\n    0x6b, 0x6b, 0x6b, 0x6c, 0x6c, 0x6c, 0x6d, 0x6d, 0x6f, 0x6e, 0x6d, 0x6c, 0x6c, 0x6c, 0x6d, 0x6e,\n    0x6d, 0x6d, 0x6c, 0x6b, 0x6b, 0x6c, 0x6d, 0x6d, 0x6e, 0x6f, 0x70, 0x71, 0x71, 0x70, 0x6e, 0x6d,\n    0x70, 0x6f, 0x6e, 0x6d, 0x6f, 0x72, 0x75, 0x77, 0x7a, 0x7d, 0x7f, 0x7e, 0x7b, 0x79, 0x7a, 0x7b,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c,\n    0x7e, 0x7d, 0x7c, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x7b, 0x7d, 0x7e, 0x7e, 0x7d, 0x7b, 0x79,\n    0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x71, 0x72, 0x73, 0x74, 0x75, 0x76, 0x76,\n    0x74, 0x75, 0x78, 0x7a, 0x7c, 0x7c, 0x7c, 0x7b, 0x7f, 0x7f, 0x80, 0x82, 0x83, 0x84, 0x85, 0x86,\n    0x82, 0x82, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x87, 0x86, 0x84, 0x83, 0x81, 0x81, 0x81, 0x82,\n    0x84, 0x83, 0x83, 0x83, 0x83, 0x84, 0x86, 0x87, 0x84, 0x84, 0x83, 0x83, 0x82, 0x81, 0x81, 0x80,\n    0x83, 0x83, 0x82, 0x82, 0x82, 0x82, 0x81, 0x81, 0x81, 0x81, 0x82, 0x83, 0x84, 0x84, 0x85, 0x85,\n    0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x82, 0x82, 0x82, 0x81, 0x81, 0x80, 0x80, 0x7f,\n    0x77, 0x77, 0x76, 0x75, 0x74, 0x73, 0x73, 0x72, 0x74, 0x73, 0x72, 0x73, 0x76, 0x7c, 0x81, 0x85,\n    0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x7e, 0x7f, 0x80, 0x82, 0x83, 0x85, 0x86, 0x87, 0x8a, 0x8b, 0x8d, 0x8d, 0x8d, 0x8b, 0x8a, 0x88,\n    0x84, 0x84, 0x84, 0x81, 0x7d, 0x77, 0x71, 0x6e, 0x57, 0x57, 0x58, 0x59, 0x5c, 0x5f, 0x62, 0x64,\n    0x6d, 0x6f, 0x71, 0x74, 0x76, 0x77, 0x77, 0x77, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x78,\n    0x73, 0x73, 0x73, 0x74, 0x74, 0x75, 0x75, 0x75, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73,\n    0x73, 0x75, 0x78, 0x79, 0x79, 0x75, 0x71, 0x6e, 0x64, 0x5e, 0x5d, 0x63, 0x66, 0x6b, 0x80, 0x97,\n    0x90, 0x94, 0x9b, 0x9e, 0x9a, 0x91, 0x86, 0x7e, 0x70, 0x6d, 0x6a, 0x6a, 0x6d, 0x6e, 0x6d, 0x6b,\n    0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f, 0x6f, 0x6e, 0x6e,\n    0x69, 0x69, 0x69, 0x6a, 0x6b, 0x6d, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70,\n    0x70, 0x6f, 0x6e, 0x6e, 0x70, 0x73, 0x76, 0x78, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x78,\n    0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7c,\n    0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x7e, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b,\n    0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x72, 0x73, 0x74, 0x76, 0x77, 0x79, 0x79,\n    0x7b, 0x7c, 0x7e, 0x80, 0x81, 0x81, 0x80, 0x80, 0x81, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x86,\n    0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x85, 0x85, 0x83, 0x82, 0x81, 0x81, 0x82, 0x82,\n    0x81, 0x80, 0x80, 0x80, 0x80, 0x81, 0x83, 0x83, 0x83, 0x83, 0x82, 0x82, 0x82, 0x82, 0x81, 0x81,\n    0x83, 0x83, 0x83, 0x82, 0x82, 0x82, 0x82, 0x81, 0x81, 0x81, 0x82, 0x82, 0x83, 0x84, 0x85, 0x85,\n    0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x83, 0x83, 0x82, 0x82, 0x82, 0x81, 0x81, 0x81,\n    0x7d, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x78, 0x76, 0x76, 0x76, 0x77, 0x7a, 0x7d, 0x81, 0x84,\n    0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x7f, 0x7f, 0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x8a, 0x8b, 0x8d, 0x8e, 0x8f, 0x8f, 0x8e, 0x8e,\n    0x87, 0x86, 0x85, 0x83, 0x81, 0x7e, 0x7b, 0x79, 0x69, 0x65, 0x5e, 0x59, 0x57, 0x58, 0x5b, 0x5e,\n    0x66, 0x68, 0x6b, 0x6f, 0x72, 0x74, 0x76, 0x77, 0x77, 0x76, 0x76, 0x75, 0x74, 0x73, 0x73, 0x73,\n    0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73,\n    0x73, 0x75, 0x78, 0x79, 0x79, 0x76, 0x72, 0x6f, 0x65, 0x5f, 0x5e, 0x63, 0x66, 0x6b, 0x7f, 0x96,\n    0x92, 0x95, 0x9a, 0x9c, 0x99, 0x92, 0x89, 0x84, 0x73, 0x6f, 0x6c, 0x6b, 0x6d, 0x6e, 0x6d, 0x6b,\n    0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6c, 0x6d, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e,\n    0x6a, 0x6a, 0x6a, 0x6a, 0x6c, 0x6e, 0x70, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70,\n    0x70, 0x6f, 0x6e, 0x6e, 0x70, 0x73, 0x76, 0x78, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x78,\n    0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c,\n    0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b,\n    0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x72, 0x73, 0x75, 0x77, 0x79, 0x7c, 0x7d, 0x7e,\n    0x83, 0x84, 0x85, 0x86, 0x87, 0x86, 0x86, 0x85, 0x84, 0x84, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86,\n    0x85, 0x85, 0x84, 0x84, 0x83, 0x82, 0x82, 0x82, 0x84, 0x83, 0x82, 0x81, 0x81, 0x82, 0x83, 0x83,\n    0x7f, 0x7e, 0x7e, 0x7d, 0x7e, 0x7f, 0x80, 0x81, 0x81, 0x81, 0x81, 0x82, 0x82, 0x82, 0x82, 0x83,\n    0x84, 0x83, 0x83, 0x83, 0x83, 0x82, 0x82, 0x82, 0x81, 0x81, 0x81, 0x82, 0x83, 0x83, 0x84, 0x84,\n    0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x83, 0x82,\n    0x83, 0x83, 0x82, 0x81, 0x81, 0x80, 0x80, 0x7f, 0x7a, 0x7b, 0x7d, 0x7e, 0x80, 0x81, 0x82, 0x82,\n    0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x80, 0x80, 0x80, 0x80, 0x81, 0x81, 0x81, 0x82, 0x87, 0x88, 0x8b, 0x8e, 0x91, 0x92, 0x93, 0x94,\n    0x8c, 0x8b, 0x89, 0x86, 0x85, 0x84, 0x85, 0x85, 0x7e, 0x77, 0x6b, 0x5f, 0x58, 0x55, 0x55, 0x57,\n    0x5c, 0x5d, 0x61, 0x65, 0x6a, 0x6e, 0x72, 0x74, 0x7a, 0x79, 0x77, 0x75, 0x73, 0x71, 0x70, 0x6f,\n    0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74,\n    0x74, 0x76, 0x78, 0x79, 0x79, 0x76, 0x73, 0x71, 0x67, 0x60, 0x5f, 0x64, 0x65, 0x6a, 0x7d, 0x94,\n    0x95, 0x96, 0x98, 0x99, 0x97, 0x93, 0x8f, 0x8c, 0x79, 0x74, 0x6f, 0x6d, 0x6d, 0x6e, 0x6d, 0x6b,\n    0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6f, 0x70, 0x70, 0x70, 0x6f, 0x6f,\n    0x6b, 0x6b, 0x6b, 0x6b, 0x6d, 0x6f, 0x70, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71,\n    0x71, 0x70, 0x6f, 0x6f, 0x70, 0x73, 0x76, 0x77, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79,\n    0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x78, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a,\n    0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x72, 0x74, 0x75, 0x77, 0x7a, 0x7d, 0x7f, 0x82, 0x83,\n    0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87,\n    0x86, 0x86, 0x85, 0x84, 0x83, 0x82, 0x82, 0x81, 0x82, 0x82, 0x81, 0x81, 0x81, 0x82, 0x84, 0x84,\n    0x80, 0x80, 0x7f, 0x7e, 0x7f, 0x7f, 0x80, 0x81, 0x80, 0x81, 0x81, 0x82, 0x82, 0x83, 0x84, 0x84,\n    0x84, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x83, 0x81, 0x81, 0x82, 0x82, 0x82, 0x83, 0x83, 0x83,\n    0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84,\n    0x86, 0x86, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x82, 0x83, 0x84, 0x85, 0x86, 0x85, 0x83, 0x82,\n    0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x80, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x81, 0x83, 0x86, 0x8a, 0x8e, 0x91, 0x94, 0x95,\n    0x93, 0x90, 0x8c, 0x89, 0x86, 0x86, 0x87, 0x87, 0x86, 0x82, 0x7a, 0x71, 0x67, 0x5f, 0x59, 0x55,\n    0x53, 0x54, 0x57, 0x5a, 0x5f, 0x65, 0x6a, 0x6c, 0x76, 0x76, 0x75, 0x75, 0x74, 0x74, 0x73, 0x73,\n    0x76, 0x76, 0x75, 0x75, 0x74, 0x74, 0x74, 0x73, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75,\n    0x75, 0x76, 0x78, 0x79, 0x79, 0x77, 0x74, 0x72, 0x6a, 0x63, 0x60, 0x64, 0x65, 0x68, 0x7b, 0x91,\n    0x97, 0x97, 0x97, 0x97, 0x96, 0x95, 0x94, 0x94, 0x80, 0x7a, 0x73, 0x6f, 0x6e, 0x6e, 0x6d, 0x6c,\n    0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6f, 0x70, 0x71, 0x71, 0x70, 0x6f, 0x6f,\n    0x6b, 0x6b, 0x6b, 0x6c, 0x6d, 0x6f, 0x71, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71,\n    0x71, 0x71, 0x6f, 0x6f, 0x70, 0x73, 0x75, 0x77, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b,\n    0x7a, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x78, 0x77, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79,\n    0x75, 0x76, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b, 0x7a, 0x7a,\n    0x70, 0x70, 0x70, 0x71, 0x71, 0x72, 0x72, 0x72, 0x75, 0x76, 0x78, 0x7b, 0x7f, 0x82, 0x84, 0x85,\n    0x87, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88,\n    0x88, 0x87, 0x87, 0x86, 0x85, 0x84, 0x83, 0x82, 0x83, 0x83, 0x82, 0x82, 0x82, 0x83, 0x84, 0x85,\n    0x84, 0x84, 0x83, 0x82, 0x82, 0x82, 0x83, 0x84, 0x81, 0x82, 0x82, 0x83, 0x83, 0x84, 0x85, 0x85,\n    0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x83, 0x83, 0x82, 0x82, 0x83, 0x83, 0x83, 0x83, 0x83, 0x84,\n    0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86,\n    0x85, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x89, 0x89, 0x88, 0x88, 0x86, 0x84, 0x82, 0x81,\n    0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x81, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x7e, 0x7e, 0x7c, 0x7e, 0x80, 0x84, 0x87, 0x8b, 0x8e, 0x90,\n    0x97, 0x94, 0x8f, 0x8a, 0x86, 0x84, 0x83, 0x83, 0x83, 0x85, 0x86, 0x84, 0x7d, 0x72, 0x66, 0x5e,\n    0x54, 0x53, 0x53, 0x54, 0x57, 0x5b, 0x60, 0x63, 0x6c, 0x6d, 0x6f, 0x71, 0x74, 0x77, 0x78, 0x79,\n    0x76, 0x75, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76,\n    0x76, 0x77, 0x78, 0x79, 0x79, 0x77, 0x76, 0x74, 0x6d, 0x65, 0x62, 0x65, 0x64, 0x66, 0x78, 0x8e,\n    0x98, 0x97, 0x96, 0x96, 0x96, 0x97, 0x97, 0x98, 0x89, 0x81, 0x77, 0x71, 0x6e, 0x6e, 0x6d, 0x6c,\n    0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6f, 0x6f, 0x70, 0x71, 0x71, 0x70, 0x6f, 0x6e,\n    0x6b, 0x6b, 0x6b, 0x6c, 0x6d, 0x6f, 0x71, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71,\n    0x72, 0x71, 0x70, 0x70, 0x71, 0x73, 0x75, 0x77, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a,\n    0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79,\n    0x74, 0x74, 0x75, 0x76, 0x78, 0x79, 0x7a, 0x7a, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7a, 0x7a, 0x79,\n    0x6f, 0x70, 0x70, 0x71, 0x71, 0x72, 0x72, 0x73, 0x75, 0x77, 0x79, 0x7c, 0x7f, 0x81, 0x84, 0x85,\n    0x83, 0x83, 0x82, 0x82, 0x83, 0x84, 0x85, 0x85, 0x87, 0x87, 0x88, 0x88, 0x88, 0x89, 0x89, 0x89,\n    0x89, 0x88, 0x88, 0x87, 0x87, 0x86, 0x86, 0x85, 0x85, 0x85, 0x84, 0x83, 0x83, 0x84, 0x85, 0x85,\n    0x87, 0x87, 0x85, 0x84, 0x84, 0x84, 0x85, 0x86, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x85,\n    0x86, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84,\n    0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x84, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86,\n    0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x8b, 0x89, 0x85, 0x81, 0x7e, 0x7d, 0x7c, 0x7c,\n    0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x80, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x7c, 0x7c, 0x7d, 0x7f, 0x82, 0x85, 0x88, 0x89,\n    0x94, 0x93, 0x91, 0x8e, 0x8a, 0x86, 0x82, 0x80, 0x7f, 0x84, 0x8a, 0x8d, 0x8a, 0x81, 0x76, 0x6f,\n    0x61, 0x5e, 0x5a, 0x56, 0x55, 0x56, 0x59, 0x5b, 0x60, 0x62, 0x65, 0x6a, 0x6f, 0x73, 0x77, 0x79,\n    0x74, 0x74, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77,\n    0x76, 0x77, 0x78, 0x79, 0x79, 0x78, 0x77, 0x76, 0x70, 0x67, 0x64, 0x65, 0x64, 0x65, 0x76, 0x8b,\n    0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x98, 0x98, 0x90, 0x87, 0x7b, 0x73, 0x6f, 0x6e, 0x6d, 0x6c,\n    0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x6f, 0x6e, 0x6d,\n    0x6b, 0x6b, 0x6b, 0x6b, 0x6d, 0x6f, 0x70, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71,\n    0x73, 0x72, 0x71, 0x70, 0x71, 0x73, 0x75, 0x77, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c,\n    0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79,\n    0x75, 0x75, 0x76, 0x77, 0x78, 0x78, 0x79, 0x79, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7a, 0x79, 0x78,\n    0x6f, 0x6f, 0x70, 0x71, 0x71, 0x72, 0x73, 0x73, 0x76, 0x77, 0x79, 0x7b, 0x7e, 0x80, 0x82, 0x83,\n    0x81, 0x81, 0x80, 0x80, 0x81, 0x83, 0x85, 0x86, 0x85, 0x86, 0x87, 0x87, 0x88, 0x89, 0x8a, 0x8a,\n    0x89, 0x89, 0x89, 0x89, 0x89, 0x89, 0x89, 0x89, 0x88, 0x88, 0x86, 0x85, 0x84, 0x84, 0x85, 0x85,\n    0x87, 0x86, 0x85, 0x84, 0x84, 0x84, 0x84, 0x85, 0x87, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x86,\n    0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x84, 0x84, 0x86, 0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85,\n    0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86,\n    0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x88, 0x83, 0x7c, 0x75, 0x71, 0x71, 0x72, 0x74,\n    0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x80, 0x80, 0x80, 0x80, 0x80, 0x81, 0x81, 0x81, 0x80, 0x80, 0x7f, 0x7f, 0x80, 0x81, 0x83, 0x84,\n    0x8d, 0x8f, 0x91, 0x92, 0x91, 0x8d, 0x88, 0x85, 0x83, 0x85, 0x87, 0x88, 0x87, 0x85, 0x82, 0x81,\n    0x74, 0x6f, 0x67, 0x5f, 0x59, 0x57, 0x58, 0x59, 0x56, 0x58, 0x5c, 0x60, 0x65, 0x69, 0x6d, 0x6f,\n    0x73, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78,\n    0x77, 0x77, 0x78, 0x79, 0x79, 0x79, 0x78, 0x78, 0x72, 0x69, 0x65, 0x66, 0x63, 0x64, 0x74, 0x89,\n    0x95, 0x96, 0x98, 0x99, 0x99, 0x98, 0x96, 0x95, 0x96, 0x8c, 0x7f, 0x74, 0x6f, 0x6e, 0x6d, 0x6c,\n    0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6d, 0x6c,\n    0x6a, 0x6a, 0x6a, 0x6a, 0x6c, 0x6e, 0x70, 0x71, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72,\n    0x74, 0x73, 0x71, 0x70, 0x71, 0x73, 0x75, 0x77, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c,\n    0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78,\n    0x76, 0x76, 0x77, 0x77, 0x78, 0x78, 0x79, 0x79, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x79, 0x78, 0x78,\n    0x6f, 0x6f, 0x70, 0x71, 0x71, 0x72, 0x73, 0x73, 0x76, 0x77, 0x79, 0x7b, 0x7d, 0x7f, 0x81, 0x81,\n    0x81, 0x80, 0x80, 0x80, 0x81, 0x84, 0x86, 0x88, 0x84, 0x85, 0x86, 0x87, 0x88, 0x8a, 0x8b, 0x8b,\n    0x89, 0x89, 0x8a, 0x8a, 0x8a, 0x8b, 0x8b, 0x8b, 0x8a, 0x89, 0x88, 0x86, 0x85, 0x85, 0x85, 0x85,\n    0x86, 0x85, 0x84, 0x82, 0x82, 0x82, 0x83, 0x83, 0x89, 0x89, 0x89, 0x88, 0x87, 0x86, 0x86, 0x86,\n    0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x87, 0x87, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86,\n    0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x83, 0x83, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86,\n    0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x87, 0x87, 0x85, 0x7e, 0x75, 0x6c, 0x67, 0x67, 0x6a, 0x6d,\n    0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x80, 0x80, 0x80, 0x81, 0x81, 0x82, 0x82, 0x82, 0x84, 0x83, 0x81, 0x80, 0x7f, 0x80, 0x81, 0x82,\n    0x86, 0x8b, 0x91, 0x96, 0x97, 0x94, 0x8f, 0x8c, 0x89, 0x86, 0x82, 0x7f, 0x7f, 0x83, 0x88, 0x8c,\n    0x83, 0x7c, 0x71, 0x66, 0x5e, 0x59, 0x58, 0x59, 0x52, 0x53, 0x56, 0x59, 0x5d, 0x60, 0x63, 0x64,\n    0x71, 0x72, 0x73, 0x75, 0x76, 0x78, 0x79, 0x7a, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78,\n    0x77, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x78, 0x73, 0x6a, 0x65, 0x66, 0x63, 0x63, 0x73, 0x88,\n    0x93, 0x95, 0x98, 0x9a, 0x9a, 0x98, 0x95, 0x93, 0x99, 0x8f, 0x80, 0x75, 0x70, 0x6e, 0x6d, 0x6c,\n    0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6f, 0x6f, 0x6e, 0x6d, 0x6c, 0x6b,\n    0x69, 0x69, 0x69, 0x6a, 0x6b, 0x6d, 0x6f, 0x70, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72,\n    0x74, 0x73, 0x72, 0x71, 0x71, 0x73, 0x75, 0x77, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d,\n    0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79,\n    0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78,\n    0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x77, 0x78, 0x79, 0x7a, 0x7a, 0x79, 0x78, 0x77,\n    0x6e, 0x6d, 0x6d, 0x6d, 0x6e, 0x70, 0x71, 0x73, 0x79, 0x79, 0x7b, 0x7d, 0x80, 0x84, 0x87, 0x89,\n    0x83, 0x85, 0x87, 0x89, 0x8b, 0x8d, 0x8d, 0x8d, 0x89, 0x89, 0x89, 0x89, 0x8a, 0x8a, 0x8a, 0x8a,\n    0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x89, 0x89, 0x88, 0x88, 0x87, 0x87, 0x86, 0x86,\n    0x88, 0x88, 0x89, 0x89, 0x87, 0x85, 0x82, 0x80, 0x87, 0x88, 0x88, 0x89, 0x89, 0x88, 0x87, 0x86,\n    0x8a, 0x89, 0x87, 0x86, 0x85, 0x84, 0x84, 0x84, 0x87, 0x86, 0x85, 0x84, 0x84, 0x85, 0x86, 0x87,\n    0x89, 0x87, 0x86, 0x84, 0x84, 0x84, 0x85, 0x86, 0x85, 0x84, 0x83, 0x83, 0x84, 0x86, 0x88, 0x8a,\n    0x89, 0x83, 0x80, 0x84, 0x8d, 0x8f, 0x89, 0x82, 0x70, 0x68, 0x5d, 0x54, 0x4f, 0x51, 0x56, 0x5a,\n    0x59, 0x64, 0x73, 0x7d, 0x81, 0x80, 0x7f, 0x7e, 0x7c, 0x7f, 0x82, 0x82, 0x80, 0x80, 0x82, 0x84,\n    0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x80, 0x82, 0x85, 0x89, 0x8d, 0x91, 0x95, 0x96, 0x8b, 0x8b, 0x8b, 0x8a, 0x88, 0x85, 0x82, 0x80,\n    0x84, 0x86, 0x87, 0x84, 0x7a, 0x6b, 0x5d, 0x53, 0x55, 0x56, 0x58, 0x5a, 0x5a, 0x59, 0x57, 0x56,\n    0x60, 0x62, 0x65, 0x69, 0x6d, 0x70, 0x72, 0x73, 0x71, 0x73, 0x76, 0x79, 0x7b, 0x7c, 0x7c, 0x7c,\n    0x7a, 0x7b, 0x7b, 0x7a, 0x78, 0x76, 0x73, 0x71, 0x69, 0x69, 0x67, 0x62, 0x5e, 0x64, 0x71, 0x7c,\n    0x92, 0x94, 0x97, 0x9a, 0x9a, 0x99, 0x97, 0x95, 0x99, 0x96, 0x8e, 0x7f, 0x70, 0x69, 0x6c, 0x71,\n    0x6d, 0x6c, 0x6b, 0x6a, 0x6a, 0x6b, 0x6c, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6c, 0x6c, 0x6c, 0x6c,\n    0x69, 0x6b, 0x6c, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71,\n    0x72, 0x72, 0x72, 0x72, 0x73, 0x75, 0x76, 0x77, 0x77, 0x78, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c,\n    0x77, 0x77, 0x78, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x79, 0x79, 0x7a, 0x7a, 0x79, 0x78, 0x77, 0x76,\n    0x7b, 0x7c, 0x7d, 0x7c, 0x7b, 0x79, 0x76, 0x75, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7b,\n    0x70, 0x6f, 0x6f, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x78, 0x78, 0x79, 0x7b, 0x7e, 0x82, 0x85, 0x87,\n    0x83, 0x85, 0x87, 0x89, 0x8b, 0x8c, 0x8d, 0x8d, 0x89, 0x89, 0x89, 0x8a, 0x8a, 0x8a, 0x8b, 0x8b,\n    0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x89, 0x89, 0x89, 0x88, 0x88, 0x87, 0x87, 0x87,\n    0x88, 0x89, 0x89, 0x89, 0x87, 0x85, 0x83, 0x82, 0x84, 0x85, 0x86, 0x86, 0x86, 0x85, 0x84, 0x84,\n    0x88, 0x87, 0x87, 0x86, 0x85, 0x85, 0x85, 0x85, 0x87, 0x86, 0x86, 0x85, 0x85, 0x86, 0x86, 0x87,\n    0x88, 0x87, 0x85, 0x84, 0x84, 0x85, 0x86, 0x87, 0x86, 0x86, 0x85, 0x85, 0x86, 0x87, 0x89, 0x8a,\n    0x81, 0x82, 0x86, 0x8a, 0x8b, 0x85, 0x79, 0x70, 0x65, 0x60, 0x58, 0x51, 0x4d, 0x4e, 0x52, 0x54,\n    0x52, 0x5b, 0x67, 0x71, 0x77, 0x7b, 0x7f, 0x82, 0x7e, 0x80, 0x81, 0x80, 0x7d, 0x7d, 0x7f, 0x82,\n    0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x80, 0x81, 0x84, 0x87, 0x8b, 0x8e, 0x91, 0x92, 0x92, 0x91, 0x91, 0x8f, 0x8c, 0x88, 0x85, 0x83,\n    0x84, 0x86, 0x87, 0x86, 0x81, 0x77, 0x6e, 0x67, 0x5e, 0x5c, 0x57, 0x54, 0x53, 0x55, 0x58, 0x5a,\n    0x58, 0x59, 0x5b, 0x5d, 0x5f, 0x60, 0x61, 0x62, 0x69, 0x6b, 0x6d, 0x70, 0x72, 0x73, 0x73, 0x73,\n    0x74, 0x74, 0x74, 0x74, 0x73, 0x71, 0x6f, 0x6d, 0x67, 0x67, 0x66, 0x61, 0x5e, 0x64, 0x71, 0x7d,\n    0x93, 0x95, 0x97, 0x99, 0x9a, 0x99, 0x97, 0x96, 0x98, 0x96, 0x8f, 0x83, 0x74, 0x6c, 0x6c, 0x6e,\n    0x6d, 0x6c, 0x6b, 0x6a, 0x6a, 0x6b, 0x6c, 0x6d, 0x6d, 0x6d, 0x6c, 0x6c, 0x6c, 0x6b, 0x6b, 0x6b,\n    0x69, 0x6b, 0x6c, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71,\n    0x72, 0x72, 0x72, 0x72, 0x73, 0x75, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7b, 0x7a, 0x7a,\n    0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7b,\n    0x76, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x79, 0x7a, 0x7a, 0x7b, 0x7a, 0x79, 0x78, 0x77,\n    0x7b, 0x7b, 0x7c, 0x7c, 0x7b, 0x7a, 0x78, 0x77, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a,\n    0x73, 0x72, 0x71, 0x70, 0x70, 0x70, 0x71, 0x71, 0x76, 0x76, 0x77, 0x79, 0x7c, 0x7f, 0x82, 0x83,\n    0x83, 0x84, 0x86, 0x89, 0x8a, 0x8b, 0x8b, 0x8b, 0x89, 0x89, 0x8a, 0x8a, 0x8a, 0x8b, 0x8b, 0x8b,\n    0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x89, 0x89, 0x89, 0x88, 0x88, 0x88, 0x88, 0x87,\n    0x89, 0x89, 0x89, 0x89, 0x88, 0x86, 0x85, 0x84, 0x82, 0x83, 0x84, 0x84, 0x84, 0x84, 0x83, 0x82,\n    0x85, 0x85, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x88, 0x87, 0x86, 0x85, 0x85, 0x86, 0x87, 0x88,\n    0x86, 0x85, 0x85, 0x84, 0x85, 0x86, 0x87, 0x87, 0x88, 0x87, 0x87, 0x87, 0x88, 0x89, 0x8a, 0x8b,\n    0x7b, 0x84, 0x8d, 0x8d, 0x83, 0x73, 0x64, 0x5c, 0x57, 0x55, 0x51, 0x4e, 0x4c, 0x4c, 0x4d, 0x4e,\n    0x4b, 0x50, 0x58, 0x5f, 0x66, 0x70, 0x7b, 0x83, 0x81, 0x82, 0x81, 0x7e, 0x7b, 0x7a, 0x7e, 0x81,\n    0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x80, 0x81, 0x82, 0x85, 0x87, 0x89, 0x8b, 0x8c, 0x96, 0x95, 0x94, 0x92, 0x90, 0x8d, 0x8a, 0x88,\n    0x85, 0x86, 0x88, 0x89, 0x88, 0x85, 0x82, 0x80, 0x6e, 0x68, 0x5e, 0x55, 0x51, 0x53, 0x58, 0x5c,\n    0x56, 0x56, 0x56, 0x56, 0x56, 0x57, 0x57, 0x57, 0x5f, 0x60, 0x62, 0x64, 0x66, 0x67, 0x67, 0x67,\n    0x69, 0x6a, 0x6a, 0x6b, 0x6a, 0x69, 0x68, 0x67, 0x63, 0x64, 0x64, 0x60, 0x5e, 0x65, 0x73, 0x7f,\n    0x94, 0x96, 0x98, 0x99, 0x9a, 0x99, 0x97, 0x96, 0x96, 0x96, 0x92, 0x88, 0x7b, 0x71, 0x6c, 0x6b,\n    0x6d, 0x6c, 0x6b, 0x6a, 0x6a, 0x6b, 0x6c, 0x6d, 0x6c, 0x6c, 0x6b, 0x6b, 0x6b, 0x6a, 0x6a, 0x6a,\n    0x69, 0x6b, 0x6c, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x72, 0x72,\n    0x73, 0x73, 0x72, 0x73, 0x74, 0x75, 0x77, 0x78, 0x7a, 0x7b, 0x7b, 0x7c, 0x7b, 0x7b, 0x79, 0x79,\n    0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x79,\n    0x76, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7a, 0x7a, 0x7b, 0x7c, 0x7b, 0x7a, 0x79, 0x78,\n    0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78,\n    0x75, 0x74, 0x73, 0x71, 0x70, 0x70, 0x70, 0x71, 0x74, 0x74, 0x75, 0x76, 0x79, 0x7b, 0x7e, 0x7f,\n    0x82, 0x83, 0x85, 0x87, 0x89, 0x89, 0x89, 0x89, 0x89, 0x89, 0x89, 0x8a, 0x8a, 0x8a, 0x8b, 0x8b,\n    0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x89, 0x89, 0x89, 0x88, 0x88, 0x88, 0x88, 0x88,\n    0x89, 0x89, 0x89, 0x88, 0x88, 0x87, 0x86, 0x86, 0x83, 0x83, 0x84, 0x85, 0x85, 0x85, 0x84, 0x84,\n    0x84, 0x84, 0x85, 0x86, 0x86, 0x86, 0x86, 0x86, 0x88, 0x87, 0x86, 0x85, 0x85, 0x86, 0x87, 0x88,\n    0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x87, 0x87, 0x89, 0x88, 0x89, 0x89, 0x89, 0x8a, 0x8a, 0x8b,\n    0x80, 0x89, 0x8e, 0x87, 0x74, 0x61, 0x57, 0x54, 0x4d, 0x4e, 0x4e, 0x4e, 0x4d, 0x4c, 0x4b, 0x4b,\n    0x49, 0x4b, 0x4d, 0x4f, 0x55, 0x61, 0x70, 0x7a, 0x82, 0x83, 0x82, 0x7f, 0x7c, 0x7b, 0x7f, 0x82,\n    0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x80, 0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x85, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x8f, 0x8f,\n    0x89, 0x89, 0x89, 0x89, 0x8a, 0x8c, 0x8d, 0x8e, 0x7e, 0x79, 0x6f, 0x66, 0x5e, 0x5a, 0x58, 0x58,\n    0x59, 0x59, 0x58, 0x58, 0x58, 0x59, 0x5a, 0x5b, 0x58, 0x59, 0x5a, 0x5c, 0x5d, 0x5e, 0x5e, 0x5f,\n    0x5f, 0x60, 0x60, 0x61, 0x62, 0x62, 0x62, 0x62, 0x60, 0x62, 0x62, 0x60, 0x5f, 0x68, 0x77, 0x84,\n    0x96, 0x97, 0x98, 0x99, 0x99, 0x98, 0x97, 0x96, 0x95, 0x95, 0x94, 0x8e, 0x84, 0x78, 0x6e, 0x69,\n    0x6d, 0x6c, 0x6b, 0x6a, 0x6a, 0x6b, 0x6c, 0x6d, 0x6b, 0x6b, 0x6b, 0x6a, 0x6a, 0x6a, 0x69, 0x69,\n    0x69, 0x6b, 0x6c, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x71, 0x71, 0x72, 0x72, 0x72,\n    0x74, 0x73, 0x73, 0x73, 0x74, 0x76, 0x78, 0x79, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7a, 0x79, 0x78,\n    0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77,\n    0x77, 0x77, 0x77, 0x78, 0x78, 0x79, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x79,\n    0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x77, 0x77, 0x76,\n    0x76, 0x75, 0x74, 0x72, 0x71, 0x70, 0x70, 0x70, 0x73, 0x73, 0x73, 0x74, 0x76, 0x78, 0x7b, 0x7c,\n    0x80, 0x81, 0x83, 0x85, 0x86, 0x87, 0x87, 0x86, 0x88, 0x88, 0x88, 0x89, 0x89, 0x89, 0x89, 0x8a,\n    0x89, 0x89, 0x89, 0x89, 0x89, 0x89, 0x89, 0x89, 0x87, 0x87, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88,\n    0x88, 0x88, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x85, 0x86, 0x87, 0x88, 0x88, 0x88, 0x87, 0x87,\n    0x84, 0x85, 0x86, 0x87, 0x88, 0x87, 0x86, 0x86, 0x87, 0x86, 0x85, 0x85, 0x85, 0x85, 0x86, 0x87,\n    0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x86, 0x88, 0x88, 0x89, 0x89, 0x89, 0x89, 0x89, 0x89,\n    0x8b, 0x8c, 0x86, 0x76, 0x62, 0x55, 0x53, 0x57, 0x4b, 0x4d, 0x4e, 0x4f, 0x4f, 0x4e, 0x4c, 0x4b,\n    0x4c, 0x4b, 0x49, 0x48, 0x4a, 0x53, 0x60, 0x6a, 0x7d, 0x80, 0x82, 0x81, 0x7f, 0x7f, 0x82, 0x84,\n    0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x80, 0x80, 0x80, 0x80, 0x81, 0x81, 0x81, 0x81, 0x84, 0x85, 0x86, 0x89, 0x8c, 0x8f, 0x91, 0x93,\n    0x8d, 0x8c, 0x8a, 0x89, 0x89, 0x8a, 0x8c, 0x8d, 0x89, 0x88, 0x85, 0x7e, 0x74, 0x68, 0x5d, 0x57,\n    0x5a, 0x59, 0x58, 0x58, 0x59, 0x5a, 0x5c, 0x5d, 0x57, 0x58, 0x58, 0x58, 0x59, 0x5a, 0x5b, 0x5c,\n    0x59, 0x5a, 0x5a, 0x5b, 0x5c, 0x5d, 0x5e, 0x5e, 0x5e, 0x61, 0x62, 0x61, 0x62, 0x6c, 0x7c, 0x8a,\n    0x97, 0x98, 0x98, 0x99, 0x99, 0x98, 0x97, 0x97, 0x96, 0x96, 0x95, 0x92, 0x8b, 0x80, 0x73, 0x6b,\n    0x6d, 0x6c, 0x6b, 0x6a, 0x6a, 0x6b, 0x6c, 0x6d, 0x6b, 0x6b, 0x6b, 0x6a, 0x6a, 0x6a, 0x69, 0x69,\n    0x69, 0x6b, 0x6c, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x71, 0x71, 0x72, 0x73, 0x73,\n    0x74, 0x74, 0x74, 0x74, 0x75, 0x77, 0x78, 0x79, 0x7c, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x79, 0x78,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77,\n    0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a,\n    0x77, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x79, 0x79, 0x79, 0x78, 0x77, 0x77, 0x76, 0x76,\n    0x76, 0x74, 0x73, 0x71, 0x70, 0x70, 0x70, 0x71, 0x72, 0x72, 0x72, 0x73, 0x74, 0x76, 0x78, 0x79,\n    0x7e, 0x7f, 0x80, 0x82, 0x83, 0x83, 0x83, 0x83, 0x86, 0x86, 0x87, 0x87, 0x87, 0x88, 0x88, 0x88,\n    0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x87,\n    0x86, 0x86, 0x85, 0x85, 0x85, 0x86, 0x87, 0x88, 0x85, 0x86, 0x88, 0x89, 0x8a, 0x89, 0x89, 0x89,\n    0x85, 0x87, 0x88, 0x8a, 0x8a, 0x88, 0x86, 0x85, 0x86, 0x85, 0x84, 0x83, 0x83, 0x84, 0x85, 0x86,\n    0x86, 0x86, 0x87, 0x87, 0x86, 0x86, 0x84, 0x84, 0x86, 0x87, 0x88, 0x88, 0x88, 0x88, 0x87, 0x86,\n    0x8e, 0x86, 0x77, 0x64, 0x55, 0x50, 0x53, 0x59, 0x4e, 0x4f, 0x50, 0x50, 0x50, 0x4e, 0x4d, 0x4c,\n    0x4d, 0x4d, 0x4b, 0x48, 0x47, 0x4c, 0x54, 0x5b, 0x70, 0x76, 0x7d, 0x81, 0x82, 0x81, 0x82, 0x84,\n    0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x7d, 0x7e, 0x7f, 0x82, 0x86, 0x8a, 0x8e, 0x90,\n    0x8e, 0x8d, 0x8b, 0x89, 0x87, 0x87, 0x87, 0x87, 0x8d, 0x8f, 0x91, 0x8e, 0x86, 0x7a, 0x6c, 0x64,\n    0x5d, 0x5c, 0x59, 0x57, 0x56, 0x56, 0x57, 0x58, 0x59, 0x59, 0x58, 0x58, 0x58, 0x59, 0x5a, 0x5b,\n    0x58, 0x58, 0x58, 0x58, 0x59, 0x5b, 0x5c, 0x5d, 0x5e, 0x61, 0x63, 0x63, 0x66, 0x71, 0x83, 0x91,\n    0x99, 0x99, 0x99, 0x99, 0x98, 0x98, 0x97, 0x97, 0x99, 0x97, 0x96, 0x95, 0x91, 0x87, 0x7b, 0x71,\n    0x6d, 0x6c, 0x6b, 0x6a, 0x6a, 0x6b, 0x6c, 0x6d, 0x6c, 0x6c, 0x6b, 0x6b, 0x6b, 0x6a, 0x6a, 0x6a,\n    0x69, 0x6b, 0x6c, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6f, 0x70, 0x70, 0x71, 0x72, 0x73, 0x74,\n    0x75, 0x75, 0x74, 0x75, 0x76, 0x77, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7d, 0x7c, 0x7c, 0x7a, 0x7a,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78,\n    0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7b, 0x7a, 0x7a,\n    0x77, 0x77, 0x76, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x78, 0x78, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76,\n    0x74, 0x73, 0x72, 0x70, 0x70, 0x70, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x73, 0x75, 0x77, 0x78,\n    0x7b, 0x7c, 0x7e, 0x7f, 0x80, 0x80, 0x80, 0x80, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86,\n    0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x86,\n    0x85, 0x84, 0x83, 0x83, 0x84, 0x85, 0x87, 0x88, 0x83, 0x84, 0x85, 0x87, 0x88, 0x88, 0x87, 0x87,\n    0x88, 0x89, 0x8b, 0x8c, 0x8b, 0x89, 0x86, 0x84, 0x84, 0x84, 0x83, 0x82, 0x82, 0x83, 0x84, 0x84,\n    0x87, 0x87, 0x88, 0x88, 0x87, 0x85, 0x83, 0x81, 0x84, 0x85, 0x86, 0x87, 0x87, 0x86, 0x84, 0x83,\n    0x86, 0x79, 0x66, 0x57, 0x51, 0x51, 0x53, 0x53, 0x52, 0x51, 0x50, 0x4e, 0x4d, 0x4c, 0x4b, 0x4b,\n    0x49, 0x4c, 0x4e, 0x4d, 0x4b, 0x4c, 0x50, 0x53, 0x5e, 0x68, 0x75, 0x7e, 0x81, 0x81, 0x80, 0x80,\n    0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x81, 0x81, 0x81, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x80, 0x81, 0x84, 0x86, 0x88,\n    0x8c, 0x8c, 0x8b, 0x8a, 0x89, 0x87, 0x85, 0x84, 0x8b, 0x8d, 0x8f, 0x8f, 0x8d, 0x88, 0x82, 0x7f,\n    0x70, 0x6c, 0x67, 0x60, 0x5b, 0x58, 0x57, 0x56, 0x5a, 0x59, 0x58, 0x57, 0x57, 0x58, 0x5a, 0x5b,\n    0x5a, 0x5a, 0x59, 0x59, 0x59, 0x5b, 0x5d, 0x5e, 0x5e, 0x62, 0x65, 0x66, 0x6a, 0x76, 0x89, 0x97,\n    0x9a, 0x9a, 0x99, 0x98, 0x98, 0x98, 0x98, 0x98, 0x9c, 0x98, 0x96, 0x95, 0x94, 0x8e, 0x82, 0x78,\n    0x6d, 0x6c, 0x6b, 0x6a, 0x6a, 0x6b, 0x6c, 0x6d, 0x6d, 0x6d, 0x6c, 0x6c, 0x6c, 0x6b, 0x6b, 0x6b,\n    0x69, 0x6b, 0x6c, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6f, 0x70, 0x72, 0x73, 0x73, 0x74,\n    0x75, 0x75, 0x75, 0x75, 0x76, 0x78, 0x7a, 0x7b, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a,\n    0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7a, 0x7a, 0x79,\n    0x77, 0x76, 0x75, 0x74, 0x74, 0x75, 0x77, 0x78, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77,\n    0x72, 0x72, 0x71, 0x70, 0x6f, 0x70, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x73, 0x74, 0x76, 0x77,\n    0x7a, 0x7b, 0x7c, 0x7e, 0x7f, 0x7f, 0x7e, 0x7e, 0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85,\n    0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x84, 0x84, 0x85, 0x85, 0x85,\n    0x84, 0x83, 0x82, 0x82, 0x83, 0x85, 0x87, 0x88, 0x80, 0x81, 0x83, 0x84, 0x85, 0x85, 0x85, 0x85,\n    0x89, 0x8b, 0x8c, 0x8d, 0x8c, 0x89, 0x86, 0x84, 0x83, 0x83, 0x82, 0x81, 0x81, 0x82, 0x83, 0x83,\n    0x88, 0x88, 0x89, 0x88, 0x87, 0x84, 0x81, 0x80, 0x82, 0x83, 0x85, 0x86, 0x85, 0x84, 0x82, 0x81,\n    0x7c, 0x6d, 0x5b, 0x52, 0x52, 0x54, 0x50, 0x4c, 0x54, 0x52, 0x4f, 0x4b, 0x49, 0x49, 0x49, 0x4a,\n    0x45, 0x49, 0x4f, 0x51, 0x4f, 0x4f, 0x50, 0x51, 0x51, 0x5e, 0x6e, 0x7b, 0x80, 0x7f, 0x7d, 0x7c,\n    0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x80, 0x80, 0x85, 0x83, 0x81, 0x80, 0x7f, 0x7f, 0x80, 0x81,\n    0x89, 0x8a, 0x8b, 0x8c, 0x8b, 0x89, 0x86, 0x85, 0x89, 0x89, 0x88, 0x89, 0x8c, 0x8f, 0x92, 0x94,\n    0x86, 0x81, 0x79, 0x6f, 0x66, 0x60, 0x5c, 0x5b, 0x5a, 0x59, 0x58, 0x57, 0x56, 0x57, 0x59, 0x5a,\n    0x5c, 0x5c, 0x5a, 0x5a, 0x5a, 0x5c, 0x5d, 0x5f, 0x5f, 0x62, 0x66, 0x68, 0x6d, 0x79, 0x8c, 0x9a,\n    0x9b, 0x9a, 0x99, 0x98, 0x98, 0x98, 0x98, 0x98, 0x9e, 0x99, 0x95, 0x95, 0x96, 0x91, 0x86, 0x7d,\n    0x6d, 0x6c, 0x6b, 0x6a, 0x6a, 0x6b, 0x6c, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6c, 0x6c, 0x6c, 0x6c,\n    0x69, 0x6b, 0x6c, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6f, 0x70, 0x72, 0x73, 0x74, 0x74,\n    0x76, 0x75, 0x75, 0x75, 0x76, 0x78, 0x7a, 0x7b, 0x79, 0x7a, 0x7b, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d,\n    0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b,\n    0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x78, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7a, 0x79, 0x79,\n    0x77, 0x76, 0x74, 0x73, 0x73, 0x74, 0x75, 0x76, 0x74, 0x75, 0x75, 0x76, 0x77, 0x77, 0x78, 0x78,\n    0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x70, 0x71, 0x72, 0x73, 0x74, 0x74, 0x73, 0x73,\n    0x74, 0x74, 0x75, 0x76, 0x78, 0x7a, 0x7c, 0x7d, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x80, 0x80,\n    0x81, 0x82, 0x83, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x84, 0x85, 0x87, 0x87, 0x87, 0x86, 0x86,\n    0x86, 0x85, 0x83, 0x81, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x81, 0x82, 0x82, 0x83, 0x84, 0x84,\n    0x8b, 0x8a, 0x8a, 0x89, 0x88, 0x87, 0x87, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x86, 0x86, 0x86,\n    0x89, 0x86, 0x82, 0x82, 0x84, 0x86, 0x86, 0x84, 0x81, 0x8a, 0x89, 0x80, 0x82, 0x8b, 0x87, 0x78,\n    0x5b, 0x55, 0x4f, 0x50, 0x53, 0x54, 0x50, 0x4b, 0x4e, 0x4e, 0x4d, 0x4c, 0x4b, 0x4a, 0x4a, 0x49,\n    0x4b, 0x4b, 0x4b, 0x4c, 0x4c, 0x4c, 0x4c, 0x4d, 0x4c, 0x51, 0x5a, 0x65, 0x71, 0x7c, 0x84, 0x89,\n    0x80, 0x7f, 0x80, 0x83, 0x86, 0x87, 0x83, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x83, 0x84, 0x87, 0x88, 0x89, 0x89, 0x88, 0x88, 0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x8b,\n    0x8c, 0x8c, 0x8a, 0x87, 0x82, 0x7b, 0x75, 0x71, 0x61, 0x5f, 0x5c, 0x59, 0x58, 0x59, 0x5a, 0x5c,\n    0x5a, 0x5a, 0x5b, 0x5c, 0x5d, 0x5e, 0x5f, 0x5f, 0x5b, 0x60, 0x69, 0x75, 0x81, 0x8d, 0x96, 0x9b,\n    0x9b, 0x9b, 0x9a, 0x9a, 0x99, 0x98, 0x98, 0x97, 0x98, 0x99, 0x99, 0x98, 0x95, 0x91, 0x8c, 0x89,\n    0x77, 0x73, 0x6d, 0x6b, 0x6c, 0x6c, 0x6a, 0x68, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6c, 0x6c, 0x6c,\n    0x6c, 0x6d, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x70, 0x71, 0x72, 0x73, 0x74, 0x74,\n    0x74, 0x75, 0x76, 0x78, 0x78, 0x78, 0x78, 0x77, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e,\n    0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a,\n    0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x77, 0x77, 0x78, 0x78, 0x79, 0x79,\n    0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x70, 0x72, 0x73, 0x74, 0x74, 0x73, 0x73,\n    0x71, 0x71, 0x72, 0x73, 0x75, 0x77, 0x78, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79,\n    0x7b, 0x7c, 0x7d, 0x7e, 0x7e, 0x7e, 0x7d, 0x7c, 0x80, 0x81, 0x82, 0x84, 0x84, 0x85, 0x84, 0x84,\n    0x83, 0x82, 0x81, 0x7f, 0x7e, 0x7e, 0x7e, 0x7e, 0x81, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87,\n    0x8c, 0x8c, 0x8b, 0x8a, 0x89, 0x89, 0x88, 0x88, 0x88, 0x88, 0x89, 0x89, 0x89, 0x89, 0x88, 0x88,\n    0x8a, 0x86, 0x83, 0x82, 0x85, 0x86, 0x85, 0x83, 0x7e, 0x87, 0x88, 0x81, 0x82, 0x86, 0x7e, 0x6e,\n    0x58, 0x53, 0x4f, 0x4f, 0x53, 0x54, 0x50, 0x4b, 0x4e, 0x4e, 0x4d, 0x4c, 0x4b, 0x4a, 0x49, 0x49,\n    0x4b, 0x4b, 0x4b, 0x4b, 0x4c, 0x4c, 0x4c, 0x4c, 0x4d, 0x50, 0x56, 0x60, 0x6b, 0x76, 0x80, 0x85,\n    0x80, 0x7f, 0x7e, 0x80, 0x82, 0x82, 0x80, 0x7e, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x81, 0x83, 0x85, 0x87, 0x88, 0x88, 0x88, 0x87, 0x84, 0x85, 0x85, 0x86, 0x88, 0x89, 0x8a, 0x8a,\n    0x89, 0x8a, 0x8b, 0x8a, 0x88, 0x84, 0x81, 0x7e, 0x7c, 0x78, 0x73, 0x6d, 0x69, 0x66, 0x65, 0x65,\n    0x64, 0x65, 0x65, 0x66, 0x67, 0x68, 0x69, 0x69, 0x71, 0x75, 0x7a, 0x82, 0x8a, 0x92, 0x97, 0x9a,\n    0x9b, 0x9b, 0x9a, 0x99, 0x99, 0x98, 0x98, 0x97, 0x98, 0x98, 0x99, 0x98, 0x96, 0x92, 0x8f, 0x8c,\n    0x7a, 0x74, 0x6f, 0x6c, 0x6c, 0x6c, 0x6b, 0x69, 0x6d, 0x6d, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c,\n    0x6d, 0x6d, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x70, 0x71, 0x72, 0x73, 0x74, 0x74,\n    0x74, 0x75, 0x77, 0x78, 0x79, 0x78, 0x78, 0x78, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d,\n    0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x7a, 0x7b, 0x7c, 0x7c, 0x7d, 0x7c, 0x7b, 0x7b,\n    0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b,\n    0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6d, 0x6f, 0x70, 0x72, 0x73, 0x74, 0x74, 0x73, 0x73,\n    0x6d, 0x6e, 0x6f, 0x70, 0x72, 0x73, 0x74, 0x74, 0x75, 0x74, 0x74, 0x73, 0x73, 0x72, 0x72, 0x71,\n    0x73, 0x74, 0x75, 0x76, 0x76, 0x76, 0x75, 0x75, 0x7a, 0x7b, 0x7d, 0x7f, 0x80, 0x80, 0x80, 0x80,\n    0x7f, 0x7e, 0x7d, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x80, 0x80, 0x82, 0x83, 0x85, 0x86, 0x87, 0x88,\n    0x8b, 0x8a, 0x8a, 0x89, 0x89, 0x88, 0x88, 0x87, 0x88, 0x89, 0x8a, 0x8a, 0x8a, 0x8a, 0x89, 0x88,\n    0x88, 0x85, 0x81, 0x81, 0x82, 0x83, 0x81, 0x7f, 0x79, 0x81, 0x84, 0x82, 0x80, 0x7c, 0x6e, 0x5e,\n    0x53, 0x50, 0x4e, 0x4f, 0x51, 0x52, 0x4f, 0x4c, 0x4e, 0x4e, 0x4d, 0x4c, 0x4b, 0x4a, 0x49, 0x49,\n    0x4a, 0x4b, 0x4b, 0x4b, 0x4c, 0x4c, 0x4c, 0x4c, 0x4e, 0x4f, 0x51, 0x58, 0x61, 0x6d, 0x78, 0x7f,\n    0x81, 0x80, 0x7e, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x7f, 0x80, 0x82, 0x84, 0x86, 0x87, 0x87, 0x87, 0x84, 0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x89,\n    0x86, 0x88, 0x8b, 0x8d, 0x8e, 0x8e, 0x8d, 0x8c, 0x8f, 0x8c, 0x88, 0x83, 0x80, 0x7e, 0x7e, 0x7d,\n    0x7b, 0x7c, 0x7d, 0x7d, 0x7f, 0x7f, 0x80, 0x81, 0x8c, 0x8d, 0x8f, 0x91, 0x94, 0x97, 0x99, 0x9a,\n    0x9b, 0x9a, 0x9a, 0x99, 0x98, 0x98, 0x97, 0x97, 0x97, 0x98, 0x99, 0x99, 0x97, 0x95, 0x92, 0x90,\n    0x7e, 0x78, 0x70, 0x6c, 0x6c, 0x6c, 0x6b, 0x6a, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c,\n    0x6d, 0x6e, 0x6f, 0x70, 0x71, 0x70, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x71, 0x72, 0x73, 0x74, 0x74,\n    0x75, 0x76, 0x77, 0x78, 0x79, 0x79, 0x78, 0x78, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b,\n    0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d,\n    0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6f, 0x70, 0x71, 0x73, 0x73, 0x73, 0x73, 0x72,\n    0x6d, 0x6e, 0x6f, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x71, 0x71, 0x70, 0x6f, 0x6e, 0x6e, 0x6d,\n    0x6e, 0x6f, 0x70, 0x71, 0x72, 0x71, 0x71, 0x70, 0x74, 0x75, 0x77, 0x79, 0x7b, 0x7c, 0x7c, 0x7c,\n    0x7a, 0x79, 0x78, 0x77, 0x77, 0x77, 0x78, 0x79, 0x7b, 0x7c, 0x7d, 0x7f, 0x81, 0x83, 0x84, 0x85,\n    0x85, 0x85, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x83, 0x84, 0x86, 0x87, 0x87, 0x86, 0x84, 0x83,\n    0x82, 0x7f, 0x7b, 0x7b, 0x7d, 0x7d, 0x7a, 0x78, 0x74, 0x79, 0x7e, 0x7f, 0x7b, 0x70, 0x5e, 0x4f,\n    0x4e, 0x4d, 0x4d, 0x4f, 0x50, 0x50, 0x4f, 0x4e, 0x4e, 0x4d, 0x4d, 0x4c, 0x4b, 0x4a, 0x49, 0x48,\n    0x4a, 0x4a, 0x4b, 0x4b, 0x4b, 0x4c, 0x4c, 0x4c, 0x4e, 0x4d, 0x4d, 0x50, 0x58, 0x63, 0x6f, 0x76,\n    0x82, 0x82, 0x81, 0x7e, 0x7c, 0x7c, 0x7e, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x7d, 0x7e, 0x80, 0x81, 0x83, 0x85, 0x86, 0x86, 0x84, 0x84, 0x85, 0x86, 0x86, 0x87, 0x88, 0x88,\n    0x86, 0x88, 0x8b, 0x8e, 0x90, 0x91, 0x91, 0x91, 0x8d, 0x8d, 0x8d, 0x8e, 0x90, 0x92, 0x94, 0x96,\n    0x93, 0x93, 0x94, 0x95, 0x96, 0x97, 0x98, 0x98, 0x98, 0x98, 0x99, 0x99, 0x99, 0x9a, 0x9a, 0x9a,\n    0x9a, 0x9a, 0x9a, 0x99, 0x98, 0x98, 0x97, 0x97, 0x97, 0x98, 0x99, 0x99, 0x99, 0x97, 0x95, 0x94,\n    0x83, 0x7c, 0x73, 0x6d, 0x6c, 0x6c, 0x6c, 0x6b, 0x6b, 0x6b, 0x6b, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c,\n    0x6e, 0x6f, 0x70, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x6f, 0x70, 0x71, 0x72, 0x73, 0x74, 0x74, 0x75,\n    0x75, 0x76, 0x78, 0x79, 0x7a, 0x7a, 0x79, 0x79, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6f, 0x6f, 0x71, 0x72, 0x73, 0x73, 0x72, 0x72,\n    0x6f, 0x70, 0x72, 0x73, 0x74, 0x73, 0x72, 0x72, 0x71, 0x71, 0x70, 0x70, 0x6f, 0x6f, 0x6e, 0x6e,\n    0x6e, 0x6f, 0x70, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x72, 0x73, 0x75, 0x77, 0x77, 0x77, 0x77,\n    0x75, 0x74, 0x73, 0x73, 0x73, 0x74, 0x75, 0x76, 0x75, 0x76, 0x77, 0x79, 0x7a, 0x7c, 0x7d, 0x7e,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7d, 0x7f, 0x81, 0x81, 0x7f, 0x7d, 0x7b,\n    0x79, 0x76, 0x74, 0x74, 0x76, 0x76, 0x73, 0x70, 0x73, 0x72, 0x75, 0x78, 0x72, 0x63, 0x51, 0x46,\n    0x4a, 0x4c, 0x4f, 0x50, 0x4f, 0x4e, 0x4e, 0x4e, 0x4d, 0x4d, 0x4c, 0x4b, 0x4a, 0x49, 0x48, 0x48,\n    0x4a, 0x4a, 0x4a, 0x4b, 0x4b, 0x4b, 0x4b, 0x4c, 0x4e, 0x4c, 0x4a, 0x4b, 0x51, 0x5b, 0x65, 0x6b,\n    0x7f, 0x82, 0x84, 0x82, 0x7e, 0x7d, 0x80, 0x84, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x7d, 0x7d, 0x7e, 0x7f, 0x81, 0x83, 0x84, 0x85, 0x84, 0x84, 0x84, 0x85, 0x86, 0x86, 0x86, 0x87,\n    0x88, 0x89, 0x8a, 0x8c, 0x8c, 0x8d, 0x8d, 0x8c, 0x8b, 0x8c, 0x8d, 0x8e, 0x91, 0x94, 0x96, 0x97,\n    0x97, 0x98, 0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9c, 0x97, 0x97, 0x98, 0x98, 0x99, 0x9a, 0x9a, 0x9a,\n    0x9a, 0x9a, 0x99, 0x99, 0x98, 0x97, 0x97, 0x96, 0x97, 0x98, 0x98, 0x99, 0x99, 0x98, 0x97, 0x97,\n    0x89, 0x81, 0x76, 0x6f, 0x6c, 0x6d, 0x6d, 0x6c, 0x6b, 0x6b, 0x6c, 0x6c, 0x6d, 0x6d, 0x6d, 0x6e,\n    0x6f, 0x70, 0x71, 0x71, 0x71, 0x70, 0x6f, 0x6e, 0x70, 0x70, 0x71, 0x72, 0x73, 0x74, 0x75, 0x75,\n    0x76, 0x77, 0x78, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7c, 0x7b, 0x7a, 0x79,\n    0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79,\n    0x6e, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6f, 0x71, 0x72, 0x73, 0x73, 0x72, 0x72,\n    0x70, 0x72, 0x74, 0x75, 0x75, 0x74, 0x72, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70,\n    0x6f, 0x70, 0x71, 0x72, 0x72, 0x72, 0x71, 0x71, 0x6f, 0x70, 0x72, 0x73, 0x74, 0x74, 0x73, 0x73,\n    0x71, 0x70, 0x70, 0x70, 0x71, 0x72, 0x73, 0x74, 0x72, 0x72, 0x73, 0x74, 0x75, 0x76, 0x76, 0x77,\n    0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x74, 0x76, 0x79, 0x7b, 0x7b, 0x79, 0x76, 0x74,\n    0x72, 0x70, 0x6e, 0x70, 0x72, 0x72, 0x6f, 0x6c, 0x74, 0x6c, 0x6a, 0x6d, 0x67, 0x57, 0x49, 0x46,\n    0x49, 0x4d, 0x51, 0x51, 0x4f, 0x4c, 0x4d, 0x4f, 0x4d, 0x4d, 0x4c, 0x4b, 0x4a, 0x49, 0x48, 0x48,\n    0x4a, 0x4a, 0x4a, 0x4a, 0x4b, 0x4b, 0x4b, 0x4b, 0x4d, 0x4b, 0x4a, 0x4b, 0x4f, 0x55, 0x5c, 0x61,\n    0x75, 0x7d, 0x84, 0x85, 0x81, 0x7e, 0x81, 0x85, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x7f, 0x7e, 0x7e, 0x7f, 0x80, 0x81, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x86,\n    0x89, 0x89, 0x89, 0x89, 0x89, 0x89, 0x89, 0x89, 0x92, 0x91, 0x90, 0x8f, 0x8d, 0x8c, 0x8b, 0x8a,\n    0x8e, 0x8f, 0x8f, 0x90, 0x91, 0x92, 0x93, 0x93, 0x93, 0x94, 0x95, 0x96, 0x98, 0x99, 0x9a, 0x9b,\n    0x9a, 0x99, 0x99, 0x98, 0x98, 0x97, 0x96, 0x96, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98,\n    0x8e, 0x85, 0x78, 0x70, 0x6d, 0x6d, 0x6d, 0x6d, 0x6c, 0x6c, 0x6d, 0x6d, 0x6e, 0x6f, 0x6f, 0x6f,\n    0x70, 0x70, 0x71, 0x72, 0x71, 0x70, 0x6f, 0x6e, 0x70, 0x71, 0x71, 0x72, 0x73, 0x74, 0x75, 0x75,\n    0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x79, 0x78, 0x77,\n    0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78,\n    0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6c, 0x6c, 0x6e, 0x6f, 0x70, 0x72, 0x72, 0x72, 0x72, 0x71,\n    0x6f, 0x70, 0x73, 0x74, 0x74, 0x72, 0x6f, 0x6e, 0x6d, 0x6d, 0x6e, 0x6f, 0x6f, 0x70, 0x71, 0x71,\n    0x6e, 0x6f, 0x70, 0x71, 0x72, 0x71, 0x71, 0x70, 0x70, 0x71, 0x72, 0x72, 0x72, 0x72, 0x71, 0x70,\n    0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x71, 0x72, 0x73, 0x72, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73,\n    0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x71, 0x73, 0x76, 0x78, 0x78, 0x76, 0x73, 0x71,\n    0x6f, 0x6d, 0x6d, 0x6f, 0x73, 0x73, 0x70, 0x6d, 0x77, 0x68, 0x60, 0x62, 0x5d, 0x4e, 0x46, 0x49,\n    0x49, 0x4e, 0x54, 0x53, 0x4f, 0x4b, 0x4c, 0x4f, 0x4d, 0x4c, 0x4c, 0x4b, 0x4a, 0x49, 0x48, 0x48,\n    0x49, 0x49, 0x4a, 0x4a, 0x4a, 0x4b, 0x4b, 0x4b, 0x4b, 0x4b, 0x4b, 0x4c, 0x4f, 0x52, 0x56, 0x58,\n    0x68, 0x74, 0x81, 0x86, 0x81, 0x7d, 0x7f, 0x83, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x81, 0x80, 0x7f, 0x7e, 0x7f, 0x80, 0x81, 0x82, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85,\n    0x86, 0x86, 0x87, 0x87, 0x88, 0x8a, 0x8b, 0x8b, 0x93, 0x93, 0x92, 0x91, 0x8f, 0x8d, 0x8c, 0x8b,\n    0x8d, 0x8d, 0x8e, 0x8f, 0x90, 0x91, 0x92, 0x92, 0x96, 0x96, 0x97, 0x98, 0x99, 0x9a, 0x9b, 0x9b,\n    0x99, 0x99, 0x99, 0x98, 0x97, 0x97, 0x96, 0x96, 0x99, 0x98, 0x98, 0x97, 0x97, 0x97, 0x97, 0x97,\n    0x92, 0x88, 0x7a, 0x70, 0x6d, 0x6d, 0x6e, 0x6e, 0x6d, 0x6d, 0x6e, 0x6f, 0x70, 0x70, 0x71, 0x71,\n    0x71, 0x71, 0x72, 0x72, 0x71, 0x70, 0x6f, 0x6e, 0x70, 0x71, 0x71, 0x72, 0x73, 0x74, 0x75, 0x76,\n    0x77, 0x78, 0x79, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7a, 0x79, 0x78, 0x76, 0x75,\n    0x77, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79,\n    0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6c, 0x6c, 0x6e, 0x6f, 0x70, 0x72, 0x72, 0x72, 0x72, 0x71,\n    0x6d, 0x6e, 0x71, 0x72, 0x71, 0x6f, 0x6d, 0x6b, 0x6a, 0x6b, 0x6b, 0x6d, 0x6e, 0x6f, 0x70, 0x71,\n    0x6d, 0x6e, 0x6f, 0x70, 0x71, 0x70, 0x70, 0x6f, 0x71, 0x72, 0x72, 0x72, 0x72, 0x71, 0x6f, 0x6e,\n    0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x70, 0x72, 0x73, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x72, 0x72,\n    0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x73, 0x70, 0x72, 0x76, 0x78, 0x78, 0x76, 0x72, 0x70,\n    0x6f, 0x6e, 0x6e, 0x71, 0x74, 0x75, 0x73, 0x6f, 0x79, 0x66, 0x5a, 0x5b, 0x56, 0x49, 0x45, 0x4d,\n    0x49, 0x4f, 0x55, 0x55, 0x4f, 0x4a, 0x4b, 0x4f, 0x4d, 0x4c, 0x4b, 0x4b, 0x49, 0x49, 0x48, 0x47,\n    0x49, 0x49, 0x4a, 0x4a, 0x4a, 0x4a, 0x4b, 0x4b, 0x4a, 0x4b, 0x4d, 0x4e, 0x50, 0x51, 0x52, 0x53,\n    0x5f, 0x6d, 0x7e, 0x84, 0x80, 0x7c, 0x7c, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x83, 0x81, 0x80, 0x7e, 0x7e, 0x7f, 0x80, 0x81, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84,\n    0x84, 0x84, 0x85, 0x87, 0x8a, 0x8c, 0x8f, 0x90, 0x8c, 0x8e, 0x90, 0x92, 0x95, 0x97, 0x98, 0x98,\n    0x95, 0x95, 0x96, 0x97, 0x98, 0x99, 0x99, 0x9a, 0x9b, 0x9b, 0x9b, 0x9b, 0x9c, 0x9c, 0x9c, 0x9c,\n    0x99, 0x99, 0x98, 0x98, 0x97, 0x97, 0x96, 0x96, 0x99, 0x99, 0x98, 0x97, 0x96, 0x96, 0x96, 0x96,\n    0x95, 0x8a, 0x7b, 0x71, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x70, 0x71, 0x71, 0x72, 0x72,\n    0x71, 0x71, 0x72, 0x72, 0x71, 0x70, 0x6f, 0x6e, 0x71, 0x71, 0x72, 0x73, 0x74, 0x75, 0x75, 0x76,\n    0x77, 0x78, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x79, 0x79, 0x79, 0x79, 0x78, 0x77, 0x75, 0x74,\n    0x77, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7f, 0x7f, 0x7e, 0x7e, 0x7d, 0x7c, 0x7c, 0x7c,\n    0x6c, 0x6d, 0x6e, 0x6f, 0x6f, 0x6e, 0x6e, 0x6d, 0x73, 0x73, 0x74, 0x74, 0x73, 0x71, 0x70, 0x6f,\n    0x6e, 0x70, 0x71, 0x73, 0x73, 0x72, 0x71, 0x70, 0x71, 0x70, 0x6f, 0x6e, 0x6d, 0x6e, 0x6e, 0x6f,\n    0x6e, 0x6e, 0x6d, 0x6c, 0x6c, 0x6d, 0x6e, 0x6e, 0x70, 0x6f, 0x6e, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e,\n    0x6c, 0x6b, 0x6a, 0x6a, 0x6b, 0x6d, 0x6f, 0x71, 0x72, 0x71, 0x70, 0x70, 0x6f, 0x70, 0x71, 0x71,\n    0x73, 0x72, 0x71, 0x70, 0x70, 0x72, 0x73, 0x75, 0x72, 0x73, 0x74, 0x75, 0x75, 0x75, 0x74, 0x74,\n    0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6f, 0x70, 0x70, 0x6e, 0x67, 0x5c, 0x51, 0x4a, 0x47, 0x49, 0x4a,\n    0x51, 0x50, 0x4f, 0x4f, 0x4d, 0x4d, 0x4c, 0x4b, 0x4c, 0x4c, 0x4b, 0x4a, 0x48, 0x47, 0x46, 0x46,\n    0x49, 0x49, 0x49, 0x49, 0x4a, 0x4a, 0x4a, 0x4a, 0x4b, 0x4b, 0x4b, 0x4b, 0x4c, 0x4d, 0x4f, 0x50,\n    0x4f, 0x5d, 0x71, 0x7e, 0x81, 0x80, 0x7f, 0x80, 0x7e, 0x7f, 0x7f, 0x7f, 0x80, 0x81, 0x81, 0x81,\n    0x81, 0x81, 0x81, 0x81, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x83, 0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85,\n    0x83, 0x84, 0x84, 0x85, 0x86, 0x87, 0x87, 0x87, 0x8c, 0x8d, 0x8e, 0x90, 0x92, 0x94, 0x95, 0x96,\n    0x97, 0x97, 0x98, 0x98, 0x99, 0x9a, 0x9a, 0x9a, 0x99, 0x99, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a,\n    0x9b, 0x9a, 0x9a, 0x99, 0x98, 0x97, 0x96, 0x96, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97,\n    0x99, 0x8e, 0x80, 0x75, 0x70, 0x6e, 0x6d, 0x6c, 0x6f, 0x6f, 0x6f, 0x70, 0x71, 0x71, 0x72, 0x72,\n    0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x71, 0x72, 0x72, 0x74, 0x74, 0x75, 0x76,\n    0x76, 0x78, 0x7a, 0x7d, 0x7d, 0x7c, 0x7a, 0x79, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x79,\n    0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7f, 0x7f, 0x7f, 0x7e, 0x7e, 0x7d, 0x7d, 0x7c,\n    0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x7a, 0x7a, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x77, 0x77,\n    0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7f, 0x7e, 0x7d, 0x7c, 0x7b, 0x7c, 0x7d, 0x7d,\n    0x6c, 0x6d, 0x6e, 0x6f, 0x6f, 0x6f, 0x6e, 0x6d, 0x72, 0x72, 0x73, 0x73, 0x72, 0x70, 0x6f, 0x6e,\n    0x6e, 0x6f, 0x71, 0x72, 0x72, 0x72, 0x71, 0x70, 0x71, 0x70, 0x6f, 0x6e, 0x6d, 0x6e, 0x6e, 0x6f,\n    0x6e, 0x6d, 0x6c, 0x6c, 0x6c, 0x6c, 0x6d, 0x6e, 0x70, 0x6f, 0x6e, 0x6d, 0x6c, 0x6d, 0x6d, 0x6e,\n    0x6b, 0x6b, 0x6a, 0x6a, 0x6b, 0x6c, 0x6e, 0x6f, 0x70, 0x6f, 0x6f, 0x6e, 0x6e, 0x6f, 0x70, 0x71,\n    0x73, 0x72, 0x70, 0x6f, 0x6f, 0x70, 0x71, 0x72, 0x72, 0x72, 0x74, 0x75, 0x75, 0x75, 0x74, 0x73,\n    0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x69, 0x5f, 0x53, 0x4a, 0x47, 0x49, 0x4b,\n    0x51, 0x50, 0x4f, 0x4f, 0x4d, 0x4d, 0x4c, 0x4b, 0x4c, 0x4b, 0x4b, 0x4a, 0x48, 0x47, 0x46, 0x46,\n    0x49, 0x49, 0x49, 0x49, 0x4a, 0x4a, 0x4a, 0x4a, 0x4b, 0x4b, 0x4b, 0x4b, 0x4c, 0x4d, 0x4f, 0x50,\n    0x50, 0x5a, 0x69, 0x77, 0x80, 0x82, 0x80, 0x7e, 0x7f, 0x7f, 0x7f, 0x80, 0x80, 0x81, 0x81, 0x81,\n    0x81, 0x81, 0x81, 0x81, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x82, 0x82, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84,\n    0x83, 0x84, 0x84, 0x85, 0x86, 0x87, 0x87, 0x88, 0x8c, 0x8c, 0x8e, 0x8f, 0x91, 0x93, 0x94, 0x95,\n    0x96, 0x96, 0x96, 0x97, 0x98, 0x98, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x9a, 0x9a, 0x9a,\n    0x9a, 0x9a, 0x9a, 0x99, 0x98, 0x97, 0x97, 0x96, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97,\n    0x99, 0x8f, 0x81, 0x76, 0x71, 0x6f, 0x6e, 0x6d, 0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71,\n    0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x72, 0x73, 0x74, 0x75, 0x75, 0x76,\n    0x77, 0x78, 0x7b, 0x7d, 0x7e, 0x7c, 0x7b, 0x79, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x79,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c,\n    0x7d, 0x7c, 0x7a, 0x79, 0x78, 0x78, 0x79, 0x79, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x76,\n    0x78, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7e, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c,\n    0x6c, 0x6d, 0x6e, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x70, 0x71, 0x71, 0x71, 0x70, 0x6f, 0x6e, 0x6d,\n    0x6e, 0x6f, 0x70, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x6e, 0x6d, 0x6d, 0x6d, 0x6e, 0x6f,\n    0x6d, 0x6d, 0x6c, 0x6b, 0x6b, 0x6c, 0x6d, 0x6d, 0x6f, 0x6e, 0x6d, 0x6c, 0x6c, 0x6c, 0x6d, 0x6d,\n    0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x6b, 0x6d, 0x6e, 0x6d, 0x6d, 0x6c, 0x6c, 0x6d, 0x6e, 0x6f, 0x70,\n    0x72, 0x71, 0x70, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x71, 0x72, 0x73, 0x74, 0x74, 0x74, 0x73, 0x73,\n    0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x71, 0x6c, 0x63, 0x56, 0x4c, 0x47, 0x48, 0x4b,\n    0x51, 0x50, 0x4f, 0x4f, 0x4d, 0x4d, 0x4c, 0x4b, 0x4c, 0x4b, 0x4a, 0x49, 0x48, 0x48, 0x47, 0x46,\n    0x49, 0x49, 0x49, 0x49, 0x4a, 0x4a, 0x4a, 0x4a, 0x4b, 0x4b, 0x4a, 0x4a, 0x4b, 0x4c, 0x4e, 0x4f,\n    0x51, 0x54, 0x5d, 0x6d, 0x7d, 0x85, 0x82, 0x7c, 0x7f, 0x7f, 0x80, 0x80, 0x80, 0x81, 0x81, 0x81,\n    0x82, 0x81, 0x81, 0x81, 0x81, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x81, 0x81, 0x81, 0x82, 0x82, 0x82, 0x82, 0x83,\n    0x83, 0x83, 0x84, 0x85, 0x86, 0x87, 0x88, 0x88, 0x8b, 0x8b, 0x8c, 0x8e, 0x90, 0x91, 0x92, 0x93,\n    0x94, 0x94, 0x94, 0x95, 0x96, 0x96, 0x97, 0x97, 0x98, 0x98, 0x98, 0x98, 0x99, 0x99, 0x99, 0x99,\n    0x9a, 0x9a, 0x99, 0x99, 0x98, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97,\n    0x99, 0x8f, 0x81, 0x76, 0x72, 0x70, 0x70, 0x6f, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70,\n    0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x73, 0x74, 0x75, 0x76, 0x76,\n    0x78, 0x7a, 0x7c, 0x7d, 0x7e, 0x7d, 0x7b, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7b, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x78, 0x78, 0x7a, 0x79, 0x79, 0x78, 0x77, 0x77, 0x76, 0x76,\n    0x78, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b,\n    0x6b, 0x6c, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6f, 0x6f, 0x70, 0x6f, 0x6e, 0x6d, 0x6c,\n    0x6e, 0x6e, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6e, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e,\n    0x6c, 0x6c, 0x6b, 0x6a, 0x6a, 0x6b, 0x6c, 0x6c, 0x6e, 0x6d, 0x6c, 0x6b, 0x6b, 0x6b, 0x6c, 0x6c,\n    0x69, 0x69, 0x69, 0x6a, 0x6a, 0x6b, 0x6b, 0x6c, 0x6b, 0x6a, 0x6a, 0x6a, 0x6b, 0x6c, 0x6e, 0x6f,\n    0x71, 0x70, 0x6f, 0x6d, 0x6b, 0x6a, 0x69, 0x69, 0x70, 0x71, 0x72, 0x73, 0x73, 0x73, 0x72, 0x72,\n    0x6d, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6d, 0x6c, 0x72, 0x6f, 0x67, 0x5a, 0x4d, 0x47, 0x49, 0x4d,\n    0x51, 0x50, 0x4f, 0x4f, 0x4d, 0x4d, 0x4c, 0x4b, 0x4b, 0x4b, 0x4a, 0x49, 0x49, 0x48, 0x47, 0x47,\n    0x49, 0x49, 0x49, 0x49, 0x4a, 0x4a, 0x4a, 0x4a, 0x4b, 0x4b, 0x4a, 0x4a, 0x4a, 0x4b, 0x4d, 0x4e,\n    0x51, 0x4e, 0x52, 0x62, 0x78, 0x85, 0x83, 0x7c, 0x80, 0x80, 0x80, 0x80, 0x81, 0x81, 0x81, 0x81,\n    0x82, 0x82, 0x82, 0x81, 0x81, 0x81, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x81, 0x81, 0x81, 0x81,\n    0x83, 0x83, 0x84, 0x85, 0x87, 0x88, 0x89, 0x89, 0x8a, 0x8a, 0x8b, 0x8d, 0x8e, 0x90, 0x91, 0x91,\n    0x92, 0x92, 0x93, 0x93, 0x94, 0x95, 0x95, 0x95, 0x96, 0x96, 0x97, 0x97, 0x98, 0x98, 0x99, 0x99,\n    0x9a, 0x99, 0x99, 0x99, 0x98, 0x98, 0x97, 0x97, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98,\n    0x99, 0x8f, 0x81, 0x77, 0x73, 0x72, 0x71, 0x71, 0x72, 0x72, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x6f,\n    0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77, 0x77,\n    0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x7a, 0x79, 0x78, 0x77, 0x76, 0x76, 0x77, 0x77, 0x78, 0x77, 0x76, 0x76, 0x76, 0x76, 0x76, 0x77,\n    0x78, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x79, 0x78, 0x78, 0x78, 0x79, 0x7a,\n    0x6b, 0x6c, 0x6d, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6d, 0x6e, 0x6e, 0x6f, 0x6f, 0x6e, 0x6d, 0x6c,\n    0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6f, 0x6f, 0x70, 0x6f, 0x6e, 0x6d, 0x6c, 0x6d, 0x6d, 0x6e,\n    0x6b, 0x6b, 0x6a, 0x69, 0x69, 0x6a, 0x6b, 0x6b, 0x6d, 0x6c, 0x6b, 0x6a, 0x6a, 0x6a, 0x6b, 0x6b,\n    0x69, 0x6a, 0x6a, 0x6a, 0x6b, 0x6b, 0x6b, 0x6a, 0x6a, 0x69, 0x69, 0x69, 0x69, 0x6b, 0x6c, 0x6d,\n    0x6f, 0x6e, 0x6d, 0x6c, 0x6a, 0x68, 0x66, 0x66, 0x6e, 0x6f, 0x70, 0x71, 0x71, 0x71, 0x70, 0x70,\n    0x6d, 0x6d, 0x6e, 0x6f, 0x6e, 0x6d, 0x6b, 0x6a, 0x70, 0x70, 0x6a, 0x5d, 0x4d, 0x46, 0x49, 0x4f,\n    0x51, 0x50, 0x4f, 0x4f, 0x4d, 0x4d, 0x4c, 0x4b, 0x4a, 0x4a, 0x4a, 0x49, 0x49, 0x48, 0x48, 0x48,\n    0x49, 0x49, 0x49, 0x49, 0x4a, 0x4a, 0x4a, 0x4a, 0x4b, 0x4b, 0x4a, 0x49, 0x4a, 0x4a, 0x4b, 0x4c,\n    0x50, 0x4a, 0x4b, 0x5a, 0x71, 0x81, 0x84, 0x7f, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81,\n    0x82, 0x82, 0x82, 0x82, 0x81, 0x81, 0x81, 0x81, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x80, 0x80, 0x80, 0x80, 0x81,\n    0x83, 0x83, 0x84, 0x86, 0x87, 0x89, 0x8a, 0x8a, 0x8a, 0x8a, 0x8b, 0x8c, 0x8e, 0x8f, 0x90, 0x90,\n    0x90, 0x91, 0x91, 0x92, 0x92, 0x93, 0x94, 0x94, 0x95, 0x95, 0x95, 0x96, 0x97, 0x98, 0x98, 0x99,\n    0x99, 0x99, 0x99, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98,\n    0x98, 0x8e, 0x81, 0x77, 0x73, 0x72, 0x72, 0x72, 0x72, 0x72, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x6f,\n    0x70, 0x70, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77, 0x77, 0x78,\n    0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b,\n    0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x7a, 0x79, 0x78, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x76, 0x75, 0x74, 0x74, 0x75, 0x77, 0x78,\n    0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x77, 0x77, 0x78,\n    0x6a, 0x6b, 0x6d, 0x6f, 0x70, 0x70, 0x70, 0x6f, 0x6d, 0x6d, 0x6e, 0x6f, 0x6f, 0x6e, 0x6d, 0x6c,\n    0x6d, 0x6d, 0x6c, 0x6c, 0x6c, 0x6d, 0x6e, 0x6f, 0x6f, 0x6f, 0x6d, 0x6c, 0x6c, 0x6c, 0x6d, 0x6e,\n    0x6a, 0x6a, 0x69, 0x68, 0x68, 0x69, 0x6a, 0x6a, 0x6c, 0x6b, 0x6a, 0x69, 0x69, 0x69, 0x6a, 0x6a,\n    0x6a, 0x6a, 0x6b, 0x6c, 0x6c, 0x6b, 0x6b, 0x6a, 0x6b, 0x6a, 0x69, 0x68, 0x68, 0x69, 0x6a, 0x6b,\n    0x6d, 0x6d, 0x6c, 0x6c, 0x6a, 0x68, 0x66, 0x64, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f, 0x6e, 0x6e, 0x6d,\n    0x6c, 0x6d, 0x6e, 0x6f, 0x6e, 0x6c, 0x6a, 0x68, 0x6e, 0x70, 0x6c, 0x5e, 0x4d, 0x45, 0x49, 0x51,\n    0x51, 0x50, 0x4f, 0x4f, 0x4d, 0x4d, 0x4c, 0x4b, 0x4a, 0x4a, 0x4a, 0x49, 0x49, 0x48, 0x48, 0x48,\n    0x49, 0x49, 0x49, 0x49, 0x4a, 0x4a, 0x4a, 0x4a, 0x4b, 0x4a, 0x49, 0x49, 0x49, 0x49, 0x4a, 0x4b,\n    0x4d, 0x49, 0x4a, 0x56, 0x69, 0x7a, 0x83, 0x85, 0x82, 0x82, 0x82, 0x81, 0x81, 0x81, 0x80, 0x80,\n    0x83, 0x82, 0x82, 0x82, 0x82, 0x81, 0x81, 0x81, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x80, 0x80, 0x80, 0x81, 0x81,\n    0x82, 0x83, 0x84, 0x86, 0x88, 0x89, 0x8a, 0x8b, 0x8a, 0x8b, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f, 0x90,\n    0x90, 0x90, 0x91, 0x91, 0x92, 0x93, 0x93, 0x93, 0x93, 0x93, 0x94, 0x95, 0x96, 0x97, 0x98, 0x98,\n    0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98,\n    0x96, 0x8c, 0x7f, 0x76, 0x72, 0x72, 0x73, 0x72, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70,\n    0x70, 0x70, 0x71, 0x71, 0x72, 0x72, 0x73, 0x73, 0x73, 0x74, 0x74, 0x75, 0x76, 0x77, 0x78, 0x78,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x7a, 0x79, 0x78, 0x77, 0x76, 0x76, 0x77, 0x77, 0x76, 0x75, 0x74, 0x73, 0x74, 0x76, 0x78, 0x7a,\n    0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x77, 0x76, 0x75, 0x75, 0x75, 0x76, 0x76,\n    0x6a, 0x6b, 0x6d, 0x6e, 0x70, 0x70, 0x70, 0x70, 0x6d, 0x6d, 0x6e, 0x6f, 0x6f, 0x6f, 0x6e, 0x6d,\n    0x6d, 0x6c, 0x6b, 0x6b, 0x6b, 0x6c, 0x6e, 0x6f, 0x6f, 0x6e, 0x6d, 0x6c, 0x6c, 0x6c, 0x6d, 0x6d,\n    0x6a, 0x69, 0x68, 0x67, 0x67, 0x68, 0x69, 0x6a, 0x6b, 0x6a, 0x69, 0x68, 0x68, 0x68, 0x69, 0x69,\n    0x6b, 0x6c, 0x6d, 0x6d, 0x6d, 0x6c, 0x6b, 0x6a, 0x6d, 0x6c, 0x6a, 0x69, 0x68, 0x68, 0x68, 0x69,\n    0x6b, 0x6b, 0x6c, 0x6c, 0x6a, 0x68, 0x66, 0x65, 0x69, 0x6a, 0x6b, 0x6c, 0x6c, 0x6c, 0x6b, 0x6b,\n    0x6b, 0x6c, 0x6e, 0x6f, 0x6e, 0x6c, 0x69, 0x67, 0x6a, 0x6e, 0x6c, 0x5f, 0x4d, 0x45, 0x4a, 0x53,\n    0x51, 0x50, 0x4f, 0x4f, 0x4d, 0x4d, 0x4c, 0x4b, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x48,\n    0x49, 0x49, 0x49, 0x49, 0x4a, 0x4a, 0x4a, 0x4a, 0x4b, 0x4a, 0x49, 0x48, 0x48, 0x49, 0x4a, 0x4a,\n    0x4a, 0x4a, 0x4d, 0x54, 0x61, 0x71, 0x82, 0x8c, 0x83, 0x82, 0x82, 0x82, 0x81, 0x81, 0x80, 0x80,\n    0x83, 0x83, 0x82, 0x82, 0x82, 0x81, 0x81, 0x81, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x80, 0x80, 0x80, 0x81, 0x81, 0x81,\n    0x82, 0x83, 0x84, 0x86, 0x88, 0x8a, 0x8b, 0x8c, 0x8b, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f, 0x8f, 0x90,\n    0x90, 0x90, 0x91, 0x91, 0x92, 0x92, 0x93, 0x93, 0x92, 0x92, 0x93, 0x94, 0x95, 0x97, 0x97, 0x98,\n    0x98, 0x98, 0x98, 0x98, 0x98, 0x99, 0x99, 0x99, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98,\n    0x94, 0x8b, 0x7e, 0x75, 0x72, 0x72, 0x72, 0x72, 0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71,\n    0x70, 0x70, 0x71, 0x71, 0x72, 0x73, 0x73, 0x74, 0x74, 0x74, 0x75, 0x76, 0x77, 0x78, 0x78, 0x79,\n    0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b,\n    0x7b, 0x7a, 0x79, 0x77, 0x77, 0x77, 0x77, 0x78, 0x76, 0x75, 0x74, 0x73, 0x74, 0x77, 0x79, 0x7b,\n    0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x78, 0x77, 0x76, 0x75, 0x74, 0x73, 0x74, 0x75, 0x75,\n    0x6a, 0x6b, 0x6d, 0x6e, 0x70, 0x70, 0x70, 0x70, 0x6d, 0x6e, 0x6f, 0x70, 0x70, 0x6f, 0x6f, 0x6e,\n    0x6d, 0x6c, 0x6b, 0x6a, 0x6a, 0x6c, 0x6d, 0x6f, 0x6f, 0x6e, 0x6d, 0x6c, 0x6c, 0x6c, 0x6d, 0x6d,\n    0x69, 0x69, 0x68, 0x67, 0x67, 0x68, 0x69, 0x69, 0x6b, 0x6a, 0x69, 0x68, 0x67, 0x68, 0x69, 0x69,\n    0x6b, 0x6c, 0x6e, 0x6e, 0x6e, 0x6d, 0x6b, 0x6a, 0x6e, 0x6d, 0x6b, 0x69, 0x68, 0x67, 0x67, 0x68,\n    0x6a, 0x6b, 0x6b, 0x6c, 0x6b, 0x69, 0x67, 0x65, 0x67, 0x68, 0x69, 0x6a, 0x6b, 0x6a, 0x6a, 0x69,\n    0x6b, 0x6c, 0x6e, 0x6f, 0x6e, 0x6b, 0x68, 0x66, 0x68, 0x6d, 0x6c, 0x5f, 0x4d, 0x45, 0x4a, 0x54,\n    0x51, 0x50, 0x4f, 0x4f, 0x4d, 0x4d, 0x4c, 0x4b, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49,\n    0x49, 0x49, 0x49, 0x49, 0x4a, 0x4a, 0x4a, 0x4a, 0x4b, 0x4a, 0x49, 0x48, 0x48, 0x48, 0x49, 0x4a,\n    0x47, 0x4b, 0x50, 0x54, 0x5c, 0x6c, 0x81, 0x90, 0x83, 0x83, 0x82, 0x82, 0x81, 0x81, 0x80, 0x80,\n    0x83, 0x83, 0x83, 0x82, 0x82, 0x82, 0x81, 0x81, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x81, 0x81, 0x81, 0x82,\n    0x82, 0x83, 0x84, 0x86, 0x88, 0x8a, 0x8b, 0x8c, 0x8c, 0x8c, 0x8d, 0x8d, 0x8e, 0x8f, 0x8f, 0x90,\n    0x90, 0x90, 0x91, 0x91, 0x92, 0x93, 0x93, 0x93, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97, 0x98,\n    0x98, 0x98, 0x98, 0x98, 0x98, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99,\n    0x93, 0x8a, 0x7d, 0x74, 0x71, 0x71, 0x72, 0x72, 0x6f, 0x6f, 0x6f, 0x70, 0x71, 0x71, 0x72, 0x72,\n    0x70, 0x70, 0x71, 0x71, 0x72, 0x73, 0x74, 0x74, 0x74, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x79,\n    0x7a, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x77, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c,\n    0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c,\n    0x7c, 0x7b, 0x79, 0x78, 0x77, 0x77, 0x78, 0x78, 0x77, 0x75, 0x74, 0x73, 0x74, 0x77, 0x7a, 0x7c,\n    0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x78, 0x76, 0x75, 0x74, 0x73, 0x73, 0x73, 0x74, 0x74,\n    0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x69, 0x6b, 0x6d, 0x6f, 0x70, 0x6f, 0x6e, 0x6d,\n    0x6d, 0x6e, 0x6e, 0x6f, 0x6e, 0x6d, 0x6b, 0x6b, 0x6d, 0x6d, 0x6b, 0x6a, 0x69, 0x6a, 0x6a, 0x6b,\n    0x6b, 0x6a, 0x6a, 0x69, 0x69, 0x6a, 0x6b, 0x6c, 0x69, 0x6a, 0x6b, 0x6c, 0x6c, 0x6a, 0x69, 0x67,\n    0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x69, 0x69, 0x69, 0x69, 0x69, 0x68, 0x68, 0x68, 0x68, 0x68, 0x68,\n    0x69, 0x6b, 0x6d, 0x6f, 0x6f, 0x6d, 0x6b, 0x69, 0x68, 0x68, 0x69, 0x69, 0x6a, 0x6a, 0x6b, 0x6b,\n    0x70, 0x6f, 0x6f, 0x6e, 0x6d, 0x6c, 0x6b, 0x6b, 0x6c, 0x67, 0x5e, 0x56, 0x51, 0x4f, 0x4f, 0x50,\n    0x50, 0x4f, 0x4f, 0x4e, 0x4d, 0x4c, 0x4c, 0x4b, 0x49, 0x49, 0x49, 0x49, 0x48, 0x48, 0x48, 0x47,\n    0x48, 0x49, 0x49, 0x49, 0x49, 0x4a, 0x4a, 0x4a, 0x4a, 0x4a, 0x4a, 0x4a, 0x4a, 0x4a, 0x4a, 0x4a,\n    0x4c, 0x4d, 0x4e, 0x50, 0x57, 0x68, 0x80, 0x92, 0x88, 0x87, 0x84, 0x81, 0x80, 0x7f, 0x7f, 0x80,\n    0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x83, 0x83, 0x83, 0x82, 0x82, 0x81, 0x81, 0x80,\n    0x7e, 0x7f, 0x80, 0x81, 0x82, 0x82, 0x82, 0x82, 0x82, 0x81, 0x81, 0x80, 0x80, 0x80, 0x81, 0x81,\n    0x85, 0x86, 0x88, 0x8a, 0x8b, 0x8b, 0x8a, 0x89, 0x8d, 0x8e, 0x8e, 0x8f, 0x90, 0x91, 0x92, 0x92,\n    0x8f, 0x8f, 0x8f, 0x90, 0x90, 0x90, 0x90, 0x91, 0x91, 0x91, 0x92, 0x93, 0x95, 0x96, 0x97, 0x97,\n    0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x99, 0x99, 0x98, 0x98, 0x98, 0x98, 0x99, 0x99,\n    0x92, 0x89, 0x7c, 0x73, 0x71, 0x72, 0x73, 0x73, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x72,\n    0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x73, 0x73, 0x76, 0x76, 0x76, 0x76, 0x76, 0x77, 0x78, 0x79,\n    0x7b, 0x78, 0x75, 0x76, 0x79, 0x7b, 0x7b, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x78, 0x7c, 0x7c, 0x7d, 0x7e, 0x7e, 0x7d, 0x7c, 0x7b,\n    0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78, 0x75, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7a,\n    0x77, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x74, 0x74, 0x75, 0x75, 0x76, 0x76, 0x77, 0x77,\n    0x6e, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6a, 0x6b, 0x6e, 0x70, 0x70, 0x70, 0x6e, 0x6d,\n    0x6d, 0x6d, 0x6e, 0x6e, 0x6d, 0x6c, 0x6b, 0x6a, 0x6e, 0x6d, 0x6b, 0x6a, 0x6a, 0x6a, 0x6b, 0x6b,\n    0x6b, 0x6a, 0x69, 0x69, 0x69, 0x6a, 0x6b, 0x6b, 0x69, 0x6a, 0x6b, 0x6c, 0x6b, 0x6a, 0x69, 0x68,\n    0x68, 0x68, 0x68, 0x68, 0x67, 0x67, 0x67, 0x67, 0x69, 0x69, 0x69, 0x69, 0x68, 0x68, 0x68, 0x68,\n    0x69, 0x6b, 0x6d, 0x6f, 0x6f, 0x6d, 0x6b, 0x69, 0x69, 0x69, 0x6a, 0x6a, 0x6b, 0x6b, 0x6b, 0x6c,\n    0x6f, 0x6e, 0x6e, 0x6d, 0x6c, 0x6b, 0x6b, 0x6a, 0x6c, 0x67, 0x5f, 0x57, 0x52, 0x4f, 0x50, 0x50,\n    0x4f, 0x4e, 0x4e, 0x4d, 0x4c, 0x4c, 0x4b, 0x4b, 0x49, 0x49, 0x49, 0x49, 0x48, 0x48, 0x48, 0x47,\n    0x48, 0x48, 0x49, 0x49, 0x49, 0x4a, 0x4a, 0x4a, 0x4a, 0x4a, 0x4a, 0x4a, 0x4a, 0x4a, 0x4a, 0x4a,\n    0x4b, 0x4d, 0x4e, 0x4f, 0x55, 0x66, 0x7d, 0x8f, 0x8a, 0x89, 0x86, 0x83, 0x81, 0x80, 0x80, 0x80,\n    0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x83, 0x83, 0x82, 0x82, 0x81, 0x81, 0x80, 0x80,\n    0x7f, 0x7f, 0x80, 0x81, 0x81, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x83, 0x84, 0x85, 0x85,\n    0x86, 0x87, 0x89, 0x8b, 0x8b, 0x8b, 0x8b, 0x8a, 0x8d, 0x8d, 0x8e, 0x8f, 0x90, 0x90, 0x91, 0x91,\n    0x90, 0x90, 0x90, 0x90, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x92, 0x93, 0x95, 0x96, 0x96, 0x97,\n    0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x99,\n    0x90, 0x87, 0x7b, 0x73, 0x71, 0x71, 0x72, 0x72, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x72, 0x72,\n    0x71, 0x71, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x75, 0x75, 0x75, 0x76, 0x77, 0x78, 0x79, 0x79,\n    0x7a, 0x77, 0x75, 0x75, 0x79, 0x7b, 0x7b, 0x79, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a,\n    0x76, 0x77, 0x77, 0x77, 0x78, 0x79, 0x79, 0x79, 0x76, 0x77, 0x77, 0x78, 0x78, 0x79, 0x79, 0x7a,\n    0x78, 0x78, 0x78, 0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x76, 0x76, 0x76, 0x77, 0x77, 0x78, 0x78,\n    0x6c, 0x6c, 0x6c, 0x6c, 0x6b, 0x6b, 0x6b, 0x6b, 0x6a, 0x6c, 0x6e, 0x70, 0x71, 0x70, 0x6f, 0x6e,\n    0x6b, 0x6c, 0x6c, 0x6d, 0x6d, 0x6c, 0x6a, 0x6a, 0x6e, 0x6d, 0x6c, 0x6b, 0x6a, 0x6b, 0x6b, 0x6c,\n    0x6a, 0x6a, 0x69, 0x68, 0x68, 0x69, 0x6a, 0x6a, 0x6a, 0x6a, 0x6b, 0x6b, 0x6b, 0x6a, 0x69, 0x68,\n    0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69,\n    0x6a, 0x6b, 0x6d, 0x6e, 0x6e, 0x6d, 0x6b, 0x6a, 0x6a, 0x6b, 0x6b, 0x6b, 0x6b, 0x6c, 0x6c, 0x6c,\n    0x6d, 0x6d, 0x6c, 0x6c, 0x6b, 0x6a, 0x6a, 0x6a, 0x6d, 0x68, 0x60, 0x59, 0x53, 0x51, 0x50, 0x51,\n    0x4d, 0x4d, 0x4c, 0x4c, 0x4b, 0x4b, 0x4a, 0x4a, 0x49, 0x49, 0x49, 0x49, 0x48, 0x48, 0x48, 0x47,\n    0x48, 0x48, 0x48, 0x49, 0x49, 0x49, 0x4a, 0x4a, 0x4a, 0x4a, 0x4a, 0x4a, 0x4a, 0x4a, 0x4a, 0x4a,\n    0x4a, 0x4c, 0x4d, 0x4e, 0x53, 0x62, 0x78, 0x89, 0x8d, 0x8c, 0x89, 0x86, 0x83, 0x81, 0x80, 0x80,\n    0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x82, 0x82, 0x82, 0x81, 0x81, 0x81, 0x80, 0x80,\n    0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x82, 0x83, 0x84, 0x86, 0x88, 0x8a, 0x8b, 0x8c,\n    0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8c, 0x8c, 0x8b, 0x8d, 0x8d, 0x8e, 0x8e, 0x8f, 0x90, 0x90, 0x90,\n    0x90, 0x91, 0x91, 0x91, 0x91, 0x92, 0x92, 0x92, 0x91, 0x92, 0x93, 0x93, 0x94, 0x95, 0x96, 0x97,\n    0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x97, 0x97, 0x97, 0x97, 0x98, 0x98, 0x98, 0x98,\n    0x8b, 0x83, 0x79, 0x72, 0x70, 0x71, 0x71, 0x71, 0x70, 0x70, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72,\n    0x72, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x73, 0x74, 0x75, 0x76, 0x77, 0x79, 0x79, 0x7a,\n    0x78, 0x75, 0x73, 0x74, 0x78, 0x7b, 0x7b, 0x79, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x7a, 0x7b, 0x7b, 0x7c, 0x7b, 0x7a, 0x79, 0x78,\n    0x76, 0x76, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79,\n    0x7a, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x75, 0x75, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79,\n    0x6b, 0x6a, 0x6a, 0x6a, 0x69, 0x69, 0x69, 0x69, 0x6a, 0x6c, 0x6e, 0x70, 0x71, 0x70, 0x6f, 0x6e,\n    0x6a, 0x6b, 0x6b, 0x6c, 0x6c, 0x6b, 0x6a, 0x69, 0x6e, 0x6d, 0x6c, 0x6b, 0x6b, 0x6c, 0x6d, 0x6d,\n    0x6b, 0x6a, 0x69, 0x68, 0x68, 0x68, 0x69, 0x69, 0x6b, 0x6b, 0x6b, 0x6b, 0x6a, 0x6a, 0x69, 0x69,\n    0x67, 0x67, 0x67, 0x68, 0x68, 0x68, 0x68, 0x68, 0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x6b, 0x6b, 0x6b,\n    0x6a, 0x6b, 0x6d, 0x6d, 0x6d, 0x6d, 0x6b, 0x6a, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c,\n    0x6c, 0x6b, 0x6b, 0x6b, 0x6a, 0x6a, 0x69, 0x69, 0x6d, 0x68, 0x61, 0x5a, 0x54, 0x52, 0x51, 0x51,\n    0x4c, 0x4c, 0x4b, 0x4b, 0x4a, 0x4a, 0x4a, 0x49, 0x49, 0x49, 0x49, 0x49, 0x48, 0x48, 0x48, 0x47,\n    0x48, 0x48, 0x48, 0x48, 0x49, 0x49, 0x49, 0x49, 0x4a, 0x4a, 0x4a, 0x4a, 0x4a, 0x4a, 0x4a, 0x4a,\n    0x49, 0x4b, 0x4c, 0x4d, 0x51, 0x5e, 0x72, 0x81, 0x90, 0x8e, 0x8c, 0x89, 0x85, 0x83, 0x81, 0x80,\n    0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81,\n    0x82, 0x82, 0x81, 0x81, 0x80, 0x81, 0x81, 0x82, 0x84, 0x86, 0x88, 0x8b, 0x8e, 0x90, 0x92, 0x92,\n    0x8b, 0x8b, 0x8c, 0x8c, 0x8d, 0x8d, 0x8d, 0x8d, 0x8e, 0x8e, 0x8e, 0x8f, 0x8f, 0x8f, 0x90, 0x90,\n    0x91, 0x91, 0x92, 0x92, 0x92, 0x92, 0x93, 0x93, 0x92, 0x92, 0x93, 0x94, 0x94, 0x95, 0x96, 0x96,\n    0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x96, 0x96, 0x97, 0x97, 0x97, 0x97, 0x96, 0x96,\n    0x86, 0x7f, 0x76, 0x71, 0x70, 0x71, 0x71, 0x70, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72,\n    0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x74, 0x72, 0x73, 0x75, 0x77, 0x78, 0x79, 0x7a, 0x7a,\n    0x75, 0x72, 0x71, 0x73, 0x77, 0x7a, 0x7b, 0x79, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7d, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x77, 0x76,\n    0x75, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79,\n    0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x76, 0x76, 0x75, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a,\n    0x69, 0x69, 0x69, 0x68, 0x68, 0x68, 0x68, 0x67, 0x69, 0x6b, 0x6d, 0x6f, 0x70, 0x6f, 0x6e, 0x6d,\n    0x69, 0x6a, 0x6b, 0x6c, 0x6c, 0x6b, 0x6b, 0x6a, 0x6e, 0x6d, 0x6c, 0x6c, 0x6c, 0x6d, 0x6e, 0x6e,\n    0x6b, 0x6b, 0x69, 0x68, 0x68, 0x68, 0x69, 0x69, 0x6b, 0x6b, 0x6a, 0x6a, 0x6a, 0x69, 0x6a, 0x6a,\n    0x6a, 0x6a, 0x6b, 0x6b, 0x6b, 0x6c, 0x6c, 0x6c, 0x6a, 0x6a, 0x6b, 0x6b, 0x6b, 0x6c, 0x6c, 0x6c,\n    0x6b, 0x6c, 0x6c, 0x6d, 0x6d, 0x6c, 0x6c, 0x6b, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c,\n    0x6b, 0x6b, 0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x69, 0x6c, 0x68, 0x62, 0x5b, 0x55, 0x52, 0x51, 0x50,\n    0x4b, 0x4b, 0x4b, 0x4a, 0x4a, 0x4a, 0x4a, 0x4a, 0x49, 0x49, 0x49, 0x49, 0x48, 0x48, 0x48, 0x47,\n    0x47, 0x47, 0x48, 0x48, 0x48, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49,\n    0x48, 0x4b, 0x4d, 0x4d, 0x4f, 0x5a, 0x6c, 0x7a, 0x90, 0x8f, 0x8d, 0x8b, 0x87, 0x84, 0x82, 0x80,\n    0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82,\n    0x84, 0x83, 0x82, 0x81, 0x81, 0x82, 0x83, 0x84, 0x88, 0x8a, 0x8d, 0x91, 0x93, 0x95, 0x96, 0x96,\n    0x8e, 0x8e, 0x8d, 0x8d, 0x8e, 0x8e, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x90, 0x90, 0x90, 0x90,\n    0x91, 0x91, 0x92, 0x92, 0x92, 0x92, 0x93, 0x93, 0x93, 0x93, 0x93, 0x94, 0x94, 0x95, 0x95, 0x95,\n    0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x95, 0x96, 0x97, 0x97, 0x97, 0x95, 0x93, 0x92,\n    0x82, 0x7c, 0x75, 0x71, 0x71, 0x72, 0x71, 0x70, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x73, 0x73,\n    0x72, 0x72, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x72, 0x73, 0x75, 0x77, 0x79, 0x79, 0x79, 0x78,\n    0x72, 0x70, 0x6e, 0x71, 0x76, 0x7a, 0x7b, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x79, 0x79, 0x7a, 0x7a, 0x79, 0x78, 0x76, 0x75,\n    0x76, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79,\n    0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x76, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x69, 0x68, 0x68, 0x68, 0x68, 0x67, 0x67, 0x67, 0x68, 0x6a, 0x6c, 0x6e, 0x6f, 0x6e, 0x6d, 0x6c,\n    0x6a, 0x6a, 0x6c, 0x6d, 0x6d, 0x6c, 0x6c, 0x6b, 0x6e, 0x6d, 0x6d, 0x6c, 0x6d, 0x6e, 0x6f, 0x70,\n    0x6d, 0x6c, 0x6b, 0x69, 0x69, 0x69, 0x69, 0x6a, 0x6c, 0x6b, 0x6a, 0x69, 0x69, 0x69, 0x6a, 0x6a,\n    0x6b, 0x6b, 0x6c, 0x6d, 0x6d, 0x6e, 0x6e, 0x6f, 0x6b, 0x6b, 0x6b, 0x6c, 0x6d, 0x6d, 0x6e, 0x6e,\n    0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6b, 0x6b, 0x6b, 0x6b, 0x6a,\n    0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x6b, 0x67, 0x61, 0x5b, 0x55, 0x51, 0x50, 0x4f,\n    0x4b, 0x4b, 0x4b, 0x4b, 0x4b, 0x4a, 0x4a, 0x4a, 0x49, 0x49, 0x49, 0x49, 0x48, 0x48, 0x48, 0x47,\n    0x47, 0x47, 0x47, 0x48, 0x48, 0x48, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49,\n    0x48, 0x4b, 0x4d, 0x4d, 0x4e, 0x58, 0x67, 0x74, 0x8f, 0x8f, 0x8e, 0x8c, 0x89, 0x86, 0x83, 0x81,\n    0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x82, 0x82, 0x83, 0x83, 0x83, 0x83, 0x84, 0x84,\n    0x85, 0x84, 0x83, 0x82, 0x83, 0x85, 0x87, 0x89, 0x8d, 0x8f, 0x92, 0x95, 0x97, 0x98, 0x97, 0x97,\n    0x91, 0x90, 0x8f, 0x8f, 0x8f, 0x8f, 0x90, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91,\n    0x90, 0x91, 0x91, 0x91, 0x91, 0x92, 0x92, 0x92, 0x93, 0x93, 0x93, 0x94, 0x94, 0x94, 0x95, 0x95,\n    0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x97, 0x97, 0x98, 0x97, 0x96, 0x93, 0x90, 0x8e,\n    0x7e, 0x79, 0x74, 0x72, 0x73, 0x73, 0x72, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73,\n    0x72, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x73, 0x74, 0x77, 0x78, 0x79, 0x78, 0x77, 0x76,\n    0x6f, 0x6d, 0x6c, 0x6f, 0x75, 0x7a, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x77, 0x76, 0x75,\n    0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79,\n    0x69, 0x68, 0x68, 0x68, 0x67, 0x67, 0x67, 0x67, 0x67, 0x68, 0x6b, 0x6d, 0x6d, 0x6d, 0x6b, 0x6a,\n    0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6e, 0x6d, 0x6d, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6e, 0x70, 0x70,\n    0x6f, 0x6e, 0x6c, 0x6b, 0x6a, 0x6a, 0x6a, 0x6a, 0x6d, 0x6b, 0x6a, 0x69, 0x68, 0x69, 0x6a, 0x6b,\n    0x69, 0x6a, 0x6a, 0x6b, 0x6c, 0x6d, 0x6d, 0x6e, 0x6b, 0x6b, 0x6c, 0x6d, 0x6d, 0x6e, 0x6f, 0x6f,\n    0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6b, 0x6b, 0x6b, 0x6a, 0x6a, 0x69, 0x69,\n    0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x69, 0x66, 0x60, 0x5a, 0x55, 0x51, 0x4e, 0x4d,\n    0x4b, 0x4b, 0x4b, 0x4b, 0x4b, 0x4b, 0x4c, 0x4c, 0x49, 0x49, 0x49, 0x49, 0x48, 0x48, 0x48, 0x47,\n    0x47, 0x47, 0x47, 0x47, 0x48, 0x48, 0x48, 0x48, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49,\n    0x49, 0x4c, 0x4e, 0x4e, 0x4e, 0x56, 0x64, 0x70, 0x8d, 0x8d, 0x8d, 0x8c, 0x8a, 0x87, 0x84, 0x82,\n    0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x83, 0x83, 0x84, 0x84, 0x85, 0x85, 0x85, 0x86,\n    0x85, 0x84, 0x83, 0x83, 0x85, 0x88, 0x8b, 0x8d, 0x92, 0x93, 0x96, 0x98, 0x99, 0x98, 0x97, 0x95,\n    0x93, 0x92, 0x90, 0x8f, 0x8f, 0x90, 0x91, 0x92, 0x93, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92,\n    0x90, 0x90, 0x90, 0x90, 0x91, 0x91, 0x91, 0x91, 0x93, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94,\n    0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x99, 0x98, 0x95, 0x91, 0x8d, 0x8a,\n    0x7b, 0x77, 0x73, 0x73, 0x74, 0x75, 0x74, 0x71, 0x71, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73,\n    0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x74, 0x76, 0x78, 0x79, 0x79, 0x78, 0x75, 0x74,\n    0x6d, 0x6b, 0x6a, 0x6e, 0x74, 0x79, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x76, 0x75,\n    0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x78, 0x76, 0x77, 0x77, 0x78, 0x78, 0x79, 0x79, 0x7a,\n    0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x78,\n    0x69, 0x69, 0x68, 0x68, 0x68, 0x67, 0x67, 0x67, 0x66, 0x67, 0x6a, 0x6c, 0x6c, 0x6c, 0x6a, 0x69,\n    0x6b, 0x6b, 0x6d, 0x6e, 0x6f, 0x6e, 0x6e, 0x6d, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6f, 0x70, 0x71,\n    0x70, 0x6f, 0x6d, 0x6b, 0x6b, 0x6a, 0x6b, 0x6b, 0x6d, 0x6c, 0x6a, 0x68, 0x68, 0x69, 0x6a, 0x6b,\n    0x67, 0x67, 0x68, 0x69, 0x6a, 0x6a, 0x6b, 0x6b, 0x6b, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f, 0x6f, 0x70,\n    0x6d, 0x6c, 0x6c, 0x6b, 0x6b, 0x6c, 0x6c, 0x6d, 0x6b, 0x6b, 0x6a, 0x6a, 0x69, 0x69, 0x68, 0x68,\n    0x6b, 0x6b, 0x6b, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x68, 0x65, 0x60, 0x5a, 0x54, 0x50, 0x4e, 0x4c,\n    0x4b, 0x4b, 0x4b, 0x4c, 0x4c, 0x4c, 0x4c, 0x4c, 0x49, 0x49, 0x49, 0x49, 0x48, 0x48, 0x48, 0x47,\n    0x47, 0x47, 0x47, 0x47, 0x48, 0x48, 0x48, 0x48, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49,\n    0x4a, 0x4d, 0x4f, 0x4e, 0x4e, 0x55, 0x63, 0x6e, 0x8c, 0x8c, 0x8c, 0x8c, 0x8a, 0x88, 0x85, 0x83,\n    0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x87, 0x87,\n    0x86, 0x85, 0x84, 0x84, 0x86, 0x89, 0x8d, 0x90, 0x94, 0x96, 0x99, 0x9a, 0x9a, 0x98, 0x96, 0x94,\n    0x94, 0x93, 0x91, 0x90, 0x90, 0x90, 0x92, 0x93, 0x94, 0x94, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93,\n    0x8f, 0x8f, 0x8f, 0x90, 0x90, 0x90, 0x90, 0x91, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94,\n    0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x99, 0x99, 0x99, 0x98, 0x94, 0x90, 0x8b, 0x88,\n    0x7a, 0x77, 0x73, 0x73, 0x75, 0x76, 0x74, 0x72, 0x72, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73,\n    0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x77, 0x79, 0x7a, 0x79, 0x77, 0x74, 0x72,\n    0x6c, 0x6a, 0x6a, 0x6d, 0x74, 0x79, 0x7b, 0x7b, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x78, 0x76, 0x75,\n    0x7c, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x75, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7a,\n    0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7d, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x78,\n    0x67, 0x68, 0x69, 0x69, 0x6a, 0x6a, 0x69, 0x69, 0x6b, 0x6a, 0x69, 0x68, 0x68, 0x69, 0x6a, 0x6b,\n    0x6a, 0x6b, 0x6c, 0x6e, 0x6f, 0x6f, 0x6f, 0x6e, 0x6d, 0x6d, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x72,\n    0x75, 0x73, 0x71, 0x6e, 0x6d, 0x6c, 0x6d, 0x6d, 0x6e, 0x6d, 0x6c, 0x6a, 0x6a, 0x6c, 0x6d, 0x6e,\n    0x6a, 0x6a, 0x69, 0x69, 0x69, 0x6a, 0x6b, 0x6c, 0x6c, 0x6c, 0x6d, 0x6e, 0x6f, 0x70, 0x70, 0x71,\n    0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6c, 0x6c, 0x6c, 0x6b, 0x6a, 0x6a, 0x69, 0x6a, 0x6b, 0x6b,\n    0x6a, 0x6a, 0x6b, 0x6c, 0x6c, 0x6d, 0x6e, 0x6e, 0x67, 0x63, 0x5c, 0x55, 0x4f, 0x4c, 0x4b, 0x4b,\n    0x4a, 0x4a, 0x4a, 0x4a, 0x4a, 0x4a, 0x4a, 0x4a, 0x49, 0x48, 0x48, 0x48, 0x48, 0x47, 0x47, 0x47,\n    0x45, 0x45, 0x45, 0x46, 0x46, 0x46, 0x47, 0x47, 0x48, 0x48, 0x48, 0x49, 0x49, 0x49, 0x4a, 0x4a,\n    0x4c, 0x4e, 0x4f, 0x4f, 0x4f, 0x54, 0x5c, 0x62, 0x82, 0x8c, 0x91, 0x8c, 0x8c, 0x90, 0x8b, 0x80,\n    0x83, 0x83, 0x82, 0x82, 0x81, 0x82, 0x82, 0x82, 0x84, 0x85, 0x87, 0x88, 0x88, 0x87, 0x86, 0x85,\n    0x83, 0x84, 0x86, 0x8a, 0x8d, 0x90, 0x93, 0x94, 0x95, 0x96, 0x96, 0x97, 0x97, 0x97, 0x97, 0x96,\n    0x94, 0x93, 0x91, 0x90, 0x8f, 0x90, 0x91, 0x92, 0x93, 0x93, 0x92, 0x92, 0x91, 0x91, 0x90, 0x90,\n    0x90, 0x90, 0x90, 0x91, 0x92, 0x92, 0x92, 0x93, 0x95, 0x94, 0x94, 0x94, 0x95, 0x96, 0x97, 0x98,\n    0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x97, 0x97, 0x98, 0x9a, 0x98, 0x90, 0x85, 0x7c,\n    0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73,\n    0x73, 0x73, 0x74, 0x75, 0x75, 0x76, 0x76, 0x77, 0x76, 0x78, 0x7a, 0x7b, 0x7a, 0x77, 0x73, 0x70,\n    0x6b, 0x6c, 0x6f, 0x72, 0x77, 0x7b, 0x7f, 0x81, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c,\n    0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x74, 0x75, 0x76, 0x77, 0x78, 0x7a, 0x7b, 0x7b,\n    0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x77, 0x76, 0x76,\n    0x68, 0x68, 0x69, 0x69, 0x69, 0x6a, 0x69, 0x69, 0x69, 0x69, 0x68, 0x68, 0x68, 0x69, 0x6a, 0x6b,\n    0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6e, 0x6d, 0x6c, 0x6a, 0x6b, 0x6c, 0x6d, 0x6f, 0x70, 0x71, 0x71,\n    0x72, 0x70, 0x6e, 0x6c, 0x6b, 0x6a, 0x6b, 0x6b, 0x6d, 0x6c, 0x6b, 0x6a, 0x6a, 0x6b, 0x6c, 0x6d,\n    0x6a, 0x6a, 0x69, 0x69, 0x69, 0x6a, 0x6b, 0x6c, 0x6b, 0x6b, 0x6c, 0x6c, 0x6d, 0x6e, 0x6f, 0x6f,\n    0x6d, 0x6d, 0x6d, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6b, 0x6a, 0x69, 0x69, 0x69, 0x6a, 0x6b,\n    0x69, 0x6a, 0x6a, 0x6b, 0x6b, 0x6c, 0x6c, 0x6c, 0x67, 0x63, 0x5c, 0x55, 0x4f, 0x4c, 0x4b, 0x4a,\n    0x4b, 0x4b, 0x4a, 0x4a, 0x4a, 0x4a, 0x4a, 0x4a, 0x49, 0x48, 0x48, 0x48, 0x48, 0x47, 0x47, 0x47,\n    0x45, 0x45, 0x45, 0x46, 0x46, 0x46, 0x47, 0x47, 0x48, 0x48, 0x48, 0x49, 0x49, 0x49, 0x4a, 0x4a,\n    0x4c, 0x4e, 0x4f, 0x4f, 0x4f, 0x54, 0x5b, 0x61, 0x80, 0x8c, 0x91, 0x8d, 0x8c, 0x8f, 0x8b, 0x81,\n    0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x82, 0x85, 0x85, 0x87, 0x88, 0x88, 0x87, 0x86, 0x86,\n    0x85, 0x87, 0x89, 0x8c, 0x8f, 0x92, 0x94, 0x95, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95,\n    0x94, 0x93, 0x91, 0x90, 0x90, 0x90, 0x91, 0x92, 0x93, 0x93, 0x93, 0x92, 0x92, 0x91, 0x91, 0x91,\n    0x90, 0x90, 0x91, 0x91, 0x92, 0x92, 0x92, 0x93, 0x94, 0x94, 0x93, 0x93, 0x94, 0x95, 0x97, 0x97,\n    0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x97, 0x97, 0x98, 0x99, 0x98, 0x91, 0x86, 0x7d,\n    0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73,\n    0x73, 0x74, 0x74, 0x75, 0x75, 0x76, 0x77, 0x77, 0x77, 0x79, 0x7a, 0x7a, 0x78, 0x74, 0x70, 0x6e,\n    0x6a, 0x6c, 0x6e, 0x71, 0x75, 0x78, 0x7b, 0x7d, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b,\n    0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7c,\n    0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x77, 0x77,\n    0x68, 0x68, 0x68, 0x69, 0x69, 0x69, 0x6a, 0x6a, 0x67, 0x67, 0x67, 0x67, 0x68, 0x6a, 0x6b, 0x6c,\n    0x6b, 0x6c, 0x6c, 0x6d, 0x6c, 0x6c, 0x6a, 0x6a, 0x67, 0x68, 0x69, 0x6a, 0x6c, 0x6e, 0x6f, 0x6f,\n    0x6e, 0x6d, 0x6c, 0x6a, 0x69, 0x69, 0x69, 0x69, 0x6c, 0x6b, 0x6b, 0x6a, 0x6a, 0x6b, 0x6b, 0x6c,\n    0x6a, 0x6a, 0x69, 0x69, 0x69, 0x6a, 0x6b, 0x6c, 0x6a, 0x6b, 0x6b, 0x6c, 0x6c, 0x6d, 0x6d, 0x6e,\n    0x70, 0x6f, 0x6f, 0x6e, 0x6e, 0x6d, 0x6d, 0x6c, 0x6b, 0x6a, 0x69, 0x68, 0x68, 0x68, 0x69, 0x69,\n    0x68, 0x69, 0x69, 0x69, 0x69, 0x6a, 0x6a, 0x6a, 0x66, 0x62, 0x5b, 0x54, 0x4e, 0x4b, 0x4a, 0x49,\n    0x4b, 0x4b, 0x4b, 0x4b, 0x4a, 0x4a, 0x4a, 0x49, 0x49, 0x48, 0x48, 0x48, 0x48, 0x47, 0x47, 0x47,\n    0x45, 0x45, 0x45, 0x46, 0x46, 0x46, 0x47, 0x47, 0x48, 0x48, 0x48, 0x49, 0x49, 0x49, 0x4a, 0x4a,\n    0x4c, 0x4d, 0x4f, 0x4e, 0x4f, 0x53, 0x59, 0x5f, 0x7c, 0x8a, 0x92, 0x8e, 0x8c, 0x8f, 0x8b, 0x82,\n    0x7f, 0x7f, 0x80, 0x80, 0x81, 0x81, 0x81, 0x81, 0x85, 0x86, 0x87, 0x88, 0x89, 0x88, 0x88, 0x87,\n    0x8a, 0x8b, 0x8d, 0x8f, 0x92, 0x95, 0x96, 0x98, 0x97, 0x97, 0x96, 0x95, 0x94, 0x93, 0x92, 0x92,\n    0x93, 0x93, 0x92, 0x91, 0x90, 0x91, 0x91, 0x92, 0x93, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x92,\n    0x91, 0x91, 0x91, 0x91, 0x92, 0x92, 0x92, 0x92, 0x93, 0x92, 0x92, 0x92, 0x93, 0x94, 0x95, 0x96,\n    0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x97, 0x96, 0x97, 0x99, 0x98, 0x91, 0x87, 0x7f,\n    0x76, 0x76, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74,\n    0x74, 0x74, 0x75, 0x75, 0x76, 0x77, 0x77, 0x77, 0x79, 0x79, 0x79, 0x77, 0x74, 0x70, 0x6c, 0x6a,\n    0x6b, 0x6c, 0x6e, 0x71, 0x74, 0x76, 0x78, 0x79, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x78, 0x78, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a,\n    0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7c,\n    0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x78, 0x78,\n    0x69, 0x68, 0x68, 0x68, 0x68, 0x69, 0x6a, 0x6b, 0x66, 0x66, 0x66, 0x67, 0x68, 0x6a, 0x6c, 0x6d,\n    0x6c, 0x6c, 0x6d, 0x6c, 0x6c, 0x6a, 0x68, 0x67, 0x65, 0x65, 0x67, 0x68, 0x6a, 0x6b, 0x6c, 0x6d,\n    0x6e, 0x6d, 0x6d, 0x6c, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6a, 0x6a, 0x6b, 0x6b, 0x6b,\n    0x6a, 0x6a, 0x69, 0x69, 0x69, 0x6a, 0x6b, 0x6c, 0x6c, 0x6c, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6f,\n    0x71, 0x71, 0x70, 0x70, 0x6f, 0x6e, 0x6d, 0x6d, 0x6b, 0x6a, 0x69, 0x67, 0x67, 0x67, 0x68, 0x68,\n    0x68, 0x68, 0x68, 0x68, 0x68, 0x67, 0x67, 0x67, 0x65, 0x61, 0x5a, 0x53, 0x4d, 0x4a, 0x49, 0x49,\n    0x4c, 0x4c, 0x4c, 0x4b, 0x4a, 0x4a, 0x49, 0x49, 0x49, 0x48, 0x48, 0x48, 0x48, 0x47, 0x47, 0x47,\n    0x45, 0x45, 0x45, 0x46, 0x46, 0x46, 0x47, 0x47, 0x48, 0x48, 0x48, 0x49, 0x49, 0x49, 0x4a, 0x4a,\n    0x4b, 0x4d, 0x4f, 0x4e, 0x4e, 0x51, 0x57, 0x5c, 0x77, 0x88, 0x93, 0x8f, 0x8c, 0x8e, 0x8b, 0x83,\n    0x7e, 0x7f, 0x80, 0x81, 0x82, 0x82, 0x82, 0x82, 0x87, 0x88, 0x88, 0x89, 0x8a, 0x8a, 0x8a, 0x8a,\n    0x8f, 0x90, 0x91, 0x93, 0x95, 0x97, 0x98, 0x99, 0x98, 0x97, 0x95, 0x93, 0x91, 0x90, 0x90, 0x90,\n    0x93, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93,\n    0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x91, 0x91, 0x91, 0x92, 0x93, 0x94, 0x95,\n    0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x96, 0x96, 0x97, 0x98, 0x97, 0x91, 0x87, 0x80,\n    0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74,\n    0x75, 0x75, 0x75, 0x76, 0x77, 0x77, 0x78, 0x78, 0x7a, 0x79, 0x77, 0x74, 0x71, 0x6d, 0x6a, 0x68,\n    0x6f, 0x70, 0x72, 0x74, 0x76, 0x78, 0x78, 0x79, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x78, 0x78, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x77, 0x77, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c,\n    0x77, 0x77, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x79,\n    0x69, 0x69, 0x68, 0x67, 0x68, 0x69, 0x6a, 0x6b, 0x67, 0x67, 0x67, 0x67, 0x69, 0x6b, 0x6d, 0x6e,\n    0x6d, 0x6d, 0x6d, 0x6d, 0x6b, 0x6a, 0x68, 0x67, 0x65, 0x65, 0x66, 0x67, 0x69, 0x6a, 0x6a, 0x6b,\n    0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b,\n    0x6a, 0x6a, 0x69, 0x69, 0x69, 0x6a, 0x6b, 0x6c, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70,\n    0x70, 0x70, 0x70, 0x6f, 0x6e, 0x6e, 0x6d, 0x6d, 0x6c, 0x6b, 0x69, 0x68, 0x67, 0x67, 0x67, 0x67,\n    0x68, 0x68, 0x67, 0x67, 0x66, 0x66, 0x65, 0x65, 0x62, 0x5e, 0x58, 0x51, 0x4d, 0x4a, 0x4a, 0x4a,\n    0x4d, 0x4d, 0x4c, 0x4b, 0x4b, 0x4a, 0x49, 0x49, 0x49, 0x48, 0x48, 0x48, 0x48, 0x47, 0x47, 0x47,\n    0x45, 0x45, 0x45, 0x46, 0x46, 0x46, 0x47, 0x47, 0x48, 0x48, 0x48, 0x49, 0x49, 0x49, 0x4a, 0x4a,\n    0x4a, 0x4d, 0x4e, 0x4e, 0x4e, 0x50, 0x55, 0x59, 0x70, 0x84, 0x92, 0x90, 0x8b, 0x8c, 0x89, 0x83,\n    0x7f, 0x80, 0x82, 0x84, 0x86, 0x86, 0x86, 0x85, 0x8a, 0x8a, 0x8a, 0x8b, 0x8b, 0x8c, 0x8d, 0x8e,\n    0x93, 0x93, 0x94, 0x95, 0x97, 0x98, 0x99, 0x9a, 0x97, 0x96, 0x93, 0x91, 0x8f, 0x8e, 0x8e, 0x8e,\n    0x92, 0x92, 0x92, 0x93, 0x93, 0x93, 0x92, 0x92, 0x93, 0x93, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94,\n    0x93, 0x93, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x91, 0x91, 0x91, 0x91, 0x91, 0x93, 0x94, 0x95,\n    0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x97, 0x96, 0x96, 0x96, 0x95, 0x8f, 0x86, 0x7f,\n    0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74,\n    0x75, 0x75, 0x76, 0x77, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x78, 0x75, 0x71, 0x6e, 0x6b, 0x69, 0x69,\n    0x73, 0x75, 0x77, 0x79, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x78, 0x78, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x79, 0x79,\n    0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x79,\n    0x6a, 0x69, 0x67, 0x67, 0x67, 0x68, 0x6b, 0x6c, 0x69, 0x69, 0x69, 0x69, 0x6a, 0x6c, 0x6d, 0x6e,\n    0x6d, 0x6d, 0x6d, 0x6d, 0x6c, 0x6b, 0x69, 0x68, 0x67, 0x68, 0x68, 0x68, 0x68, 0x69, 0x69, 0x69,\n    0x6e, 0x6f, 0x70, 0x71, 0x71, 0x71, 0x70, 0x6f, 0x6b, 0x6c, 0x6c, 0x6d, 0x6d, 0x6c, 0x6c, 0x6b,\n    0x6a, 0x6a, 0x69, 0x69, 0x69, 0x6a, 0x6b, 0x6c, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e,\n    0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6c, 0x6a, 0x68, 0x67, 0x67, 0x67, 0x68,\n    0x69, 0x68, 0x68, 0x67, 0x66, 0x65, 0x64, 0x64, 0x5f, 0x5b, 0x56, 0x50, 0x4c, 0x4b, 0x4b, 0x4b,\n    0x4e, 0x4e, 0x4d, 0x4c, 0x4b, 0x4a, 0x49, 0x49, 0x49, 0x48, 0x48, 0x48, 0x48, 0x47, 0x47, 0x47,\n    0x45, 0x45, 0x45, 0x46, 0x46, 0x46, 0x47, 0x47, 0x48, 0x48, 0x48, 0x49, 0x49, 0x49, 0x4a, 0x4a,\n    0x4a, 0x4c, 0x4e, 0x4e, 0x4d, 0x4f, 0x53, 0x57, 0x6a, 0x80, 0x91, 0x8f, 0x89, 0x89, 0x87, 0x82,\n    0x82, 0x84, 0x87, 0x89, 0x8b, 0x8b, 0x8b, 0x8a, 0x8d, 0x8c, 0x8c, 0x8d, 0x8e, 0x8f, 0x91, 0x92,\n    0x95, 0x95, 0x96, 0x96, 0x97, 0x98, 0x98, 0x99, 0x96, 0x94, 0x91, 0x8e, 0x8d, 0x8c, 0x8d, 0x8e,\n    0x91, 0x91, 0x93, 0x93, 0x94, 0x93, 0x93, 0x92, 0x94, 0x94, 0x94, 0x94, 0x95, 0x95, 0x95, 0x95,\n    0x93, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x92, 0x92, 0x91, 0x91, 0x91, 0x92, 0x93, 0x94, 0x95,\n    0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x97, 0x96, 0x95, 0x94, 0x92, 0x8d, 0x84, 0x7d,\n    0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75,\n    0x76, 0x76, 0x77, 0x77, 0x78, 0x79, 0x79, 0x79, 0x78, 0x76, 0x72, 0x6f, 0x6d, 0x6c, 0x6c, 0x6c,\n    0x75, 0x77, 0x7a, 0x7c, 0x7e, 0x7e, 0x7d, 0x7d, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x77, 0x77, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79,\n    0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7e, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x78, 0x78,\n    0x6b, 0x69, 0x67, 0x66, 0x66, 0x68, 0x6b, 0x6c, 0x6c, 0x6c, 0x6b, 0x6b, 0x6b, 0x6c, 0x6d, 0x6e,\n    0x6d, 0x6d, 0x6e, 0x6e, 0x6d, 0x6c, 0x6b, 0x6a, 0x6b, 0x6b, 0x6a, 0x6a, 0x69, 0x69, 0x68, 0x68,\n    0x6b, 0x6c, 0x6d, 0x6f, 0x70, 0x6f, 0x6e, 0x6e, 0x6c, 0x6d, 0x6e, 0x6f, 0x6f, 0x6e, 0x6d, 0x6c,\n    0x6a, 0x6a, 0x69, 0x69, 0x69, 0x6a, 0x6b, 0x6c, 0x6a, 0x6a, 0x6a, 0x69, 0x69, 0x69, 0x69, 0x69,\n    0x69, 0x69, 0x6a, 0x6b, 0x6b, 0x6c, 0x6d, 0x6d, 0x6e, 0x6d, 0x6b, 0x69, 0x68, 0x68, 0x68, 0x68,\n    0x6a, 0x69, 0x68, 0x67, 0x66, 0x65, 0x64, 0x63, 0x5b, 0x58, 0x53, 0x4f, 0x4c, 0x4b, 0x4c, 0x4d,\n    0x4f, 0x4e, 0x4d, 0x4c, 0x4b, 0x4a, 0x49, 0x49, 0x49, 0x48, 0x48, 0x48, 0x48, 0x47, 0x47, 0x47,\n    0x45, 0x45, 0x45, 0x46, 0x46, 0x46, 0x47, 0x47, 0x48, 0x48, 0x48, 0x49, 0x49, 0x49, 0x4a, 0x4a,\n    0x49, 0x4c, 0x4e, 0x4e, 0x4d, 0x4e, 0x51, 0x55, 0x64, 0x7d, 0x90, 0x8f, 0x88, 0x87, 0x86, 0x81,\n    0x85, 0x88, 0x8b, 0x8f, 0x91, 0x91, 0x90, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x90, 0x92, 0x94, 0x95,\n    0x96, 0x96, 0x96, 0x96, 0x96, 0x97, 0x97, 0x97, 0x94, 0x92, 0x8f, 0x8c, 0x8b, 0x8c, 0x8d, 0x8e,\n    0x90, 0x91, 0x93, 0x94, 0x95, 0x94, 0x93, 0x93, 0x94, 0x94, 0x94, 0x95, 0x95, 0x96, 0x96, 0x96,\n    0x94, 0x94, 0x94, 0x93, 0x93, 0x92, 0x92, 0x92, 0x93, 0x92, 0x92, 0x92, 0x92, 0x94, 0x95, 0x96,\n    0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x96, 0x94, 0x92, 0x90, 0x8a, 0x80, 0x79,\n    0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75,\n    0x76, 0x77, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x75, 0x73, 0x70, 0x6d, 0x6c, 0x6d, 0x6f, 0x70,\n    0x73, 0x75, 0x79, 0x7c, 0x7e, 0x7e, 0x7d, 0x7c, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x7a, 0x7a,\n    0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x78,\n    0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7a, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x77, 0x77,\n    0x6b, 0x69, 0x67, 0x66, 0x66, 0x68, 0x6b, 0x6d, 0x6e, 0x6e, 0x6d, 0x6c, 0x6c, 0x6c, 0x6d, 0x6e,\n    0x6c, 0x6d, 0x6e, 0x6e, 0x6e, 0x6d, 0x6c, 0x6b, 0x6d, 0x6d, 0x6c, 0x6b, 0x6a, 0x69, 0x68, 0x67,\n    0x67, 0x69, 0x6b, 0x6d, 0x6d, 0x6d, 0x6c, 0x6b, 0x6c, 0x6d, 0x6f, 0x70, 0x70, 0x6f, 0x6d, 0x6c,\n    0x6a, 0x6a, 0x69, 0x69, 0x69, 0x6a, 0x6b, 0x6c, 0x66, 0x66, 0x65, 0x65, 0x65, 0x65, 0x65, 0x64,\n    0x66, 0x67, 0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6f, 0x6e, 0x6c, 0x6a, 0x69, 0x68, 0x68, 0x69,\n    0x6b, 0x6a, 0x69, 0x68, 0x66, 0x65, 0x64, 0x63, 0x59, 0x56, 0x52, 0x4e, 0x4c, 0x4c, 0x4d, 0x4f,\n    0x4f, 0x4e, 0x4e, 0x4c, 0x4b, 0x4a, 0x49, 0x49, 0x49, 0x48, 0x48, 0x48, 0x48, 0x47, 0x47, 0x47,\n    0x45, 0x45, 0x45, 0x46, 0x46, 0x46, 0x47, 0x47, 0x48, 0x48, 0x48, 0x49, 0x49, 0x49, 0x4a, 0x4a,\n    0x49, 0x4c, 0x4e, 0x4e, 0x4d, 0x4d, 0x50, 0x54, 0x61, 0x7b, 0x90, 0x8e, 0x86, 0x85, 0x85, 0x81,\n    0x88, 0x8a, 0x8e, 0x92, 0x94, 0x94, 0x93, 0x93, 0x91, 0x90, 0x90, 0x90, 0x91, 0x93, 0x96, 0x97,\n    0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x93, 0x91, 0x8e, 0x8b, 0x8a, 0x8b, 0x8d, 0x8e,\n    0x90, 0x91, 0x93, 0x94, 0x95, 0x95, 0x93, 0x93, 0x94, 0x94, 0x94, 0x95, 0x95, 0x96, 0x96, 0x97,\n    0x94, 0x94, 0x94, 0x93, 0x93, 0x92, 0x92, 0x92, 0x93, 0x93, 0x92, 0x92, 0x93, 0x94, 0x96, 0x97,\n    0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x99, 0x96, 0x93, 0x91, 0x8e, 0x88, 0x7e, 0x77,\n    0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75,\n    0x77, 0x77, 0x77, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x74, 0x72, 0x6e, 0x6c, 0x6c, 0x6e, 0x71, 0x73,\n    0x70, 0x73, 0x76, 0x7a, 0x7c, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x78, 0x79, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x77,\n    0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x77, 0x76, 0x76,\n    0x69, 0x69, 0x69, 0x6a, 0x6b, 0x6b, 0x6c, 0x6c, 0x6e, 0x6d, 0x6d, 0x6c, 0x6c, 0x6d, 0x6d, 0x6e,\n    0x6e, 0x6d, 0x6c, 0x6b, 0x6b, 0x6c, 0x6d, 0x6d, 0x6d, 0x6c, 0x6b, 0x6a, 0x69, 0x69, 0x6a, 0x6b,\n    0x67, 0x67, 0x67, 0x67, 0x68, 0x6a, 0x6b, 0x6c, 0x6d, 0x6c, 0x6b, 0x6b, 0x6b, 0x6c, 0x6d, 0x6e,\n    0x69, 0x68, 0x67, 0x67, 0x68, 0x6a, 0x6c, 0x6d, 0x69, 0x69, 0x68, 0x67, 0x68, 0x68, 0x69, 0x6a,\n    0x66, 0x67, 0x67, 0x68, 0x69, 0x6a, 0x6b, 0x6b, 0x6c, 0x6d, 0x6d, 0x6c, 0x6b, 0x69, 0x67, 0x66,\n    0x66, 0x68, 0x6b, 0x6c, 0x6c, 0x6a, 0x67, 0x65, 0x54, 0x52, 0x50, 0x4e, 0x4d, 0x4d, 0x4e, 0x4e,\n    0x4a, 0x4a, 0x49, 0x49, 0x49, 0x48, 0x48, 0x48, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49,\n    0x48, 0x47, 0x47, 0x46, 0x46, 0x45, 0x44, 0x44, 0x47, 0x47, 0x47, 0x48, 0x49, 0x49, 0x4a, 0x4a,\n    0x4a, 0x4d, 0x4f, 0x4f, 0x4d, 0x4c, 0x4f, 0x51, 0x60, 0x79, 0x8c, 0x8e, 0x8b, 0x8e, 0x8f, 0x8b,\n    0x91, 0x91, 0x90, 0x90, 0x90, 0x91, 0x92, 0x93, 0x91, 0x92, 0x93, 0x94, 0x96, 0x97, 0x97, 0x98,\n    0x8c, 0x8f, 0x94, 0x97, 0x98, 0x96, 0x93, 0x90, 0x8c, 0x8d, 0x8b, 0x8a, 0x8d, 0x91, 0x90, 0x8a,\n    0x92, 0x94, 0x97, 0x99, 0x98, 0x96, 0x93, 0x90, 0x93, 0x95, 0x98, 0x9a, 0x9a, 0x9a, 0x98, 0x97,\n    0x92, 0x93, 0x92, 0x8f, 0x8b, 0x8b, 0x8f, 0x93, 0x90, 0x91, 0x93, 0x94, 0x96, 0x97, 0x98, 0x99,\n    0x9b, 0x97, 0x93, 0x92, 0x94, 0x96, 0x97, 0x97, 0x95, 0x8d, 0x8e, 0x95, 0x91, 0x81, 0x74, 0x72,\n    0x77, 0x76, 0x76, 0x75, 0x75, 0x74, 0x74, 0x74, 0x73, 0x73, 0x74, 0x75, 0x75, 0x76, 0x76, 0x77,\n    0x75, 0x76, 0x78, 0x79, 0x79, 0x78, 0x77, 0x76, 0x6f, 0x6e, 0x6d, 0x6c, 0x6c, 0x6d, 0x6e, 0x6e,\n    0x67, 0x6b, 0x72, 0x78, 0x7c, 0x7d, 0x7c, 0x7b, 0x7e, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a,\n    0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x76, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7b,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x77,\n    0x69, 0x6a, 0x6a, 0x6b, 0x6b, 0x6c, 0x6c, 0x6d, 0x6d, 0x6c, 0x6b, 0x6b, 0x6b, 0x6b, 0x6c, 0x6d,\n    0x6d, 0x6c, 0x6b, 0x6b, 0x6b, 0x6c, 0x6d, 0x6d, 0x6e, 0x6d, 0x6c, 0x6a, 0x69, 0x69, 0x69, 0x6a,\n    0x67, 0x67, 0x67, 0x67, 0x68, 0x69, 0x6b, 0x6c, 0x6a, 0x69, 0x68, 0x68, 0x68, 0x69, 0x6a, 0x6a,\n    0x68, 0x68, 0x67, 0x67, 0x68, 0x6a, 0x6b, 0x6d, 0x6a, 0x6a, 0x69, 0x68, 0x68, 0x68, 0x69, 0x69,\n    0x68, 0x68, 0x68, 0x69, 0x69, 0x69, 0x6a, 0x6a, 0x6b, 0x6b, 0x6c, 0x6c, 0x6b, 0x6a, 0x68, 0x67,\n    0x65, 0x66, 0x68, 0x6a, 0x69, 0x66, 0x63, 0x60, 0x53, 0x51, 0x4f, 0x4d, 0x4c, 0x4c, 0x4d, 0x4d,\n    0x4a, 0x4a, 0x49, 0x49, 0x49, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48,\n    0x47, 0x47, 0x46, 0x46, 0x46, 0x45, 0x45, 0x45, 0x47, 0x47, 0x47, 0x48, 0x49, 0x49, 0x4a, 0x4a,\n    0x4a, 0x4c, 0x4f, 0x4f, 0x4c, 0x4c, 0x4e, 0x51, 0x5f, 0x78, 0x8b, 0x8d, 0x8c, 0x8f, 0x90, 0x8c,\n    0x90, 0x90, 0x8f, 0x8f, 0x90, 0x91, 0x93, 0x94, 0x96, 0x95, 0x96, 0x96, 0x97, 0x97, 0x95, 0x94,\n    0x95, 0x98, 0x9c, 0x9e, 0x9f, 0x9c, 0x99, 0x97, 0x97, 0x96, 0x93, 0x92, 0x95, 0x98, 0x98, 0x97,\n    0x97, 0x98, 0x9a, 0x9b, 0x9a, 0x9a, 0x99, 0x9a, 0x94, 0x96, 0x99, 0x9b, 0x99, 0x95, 0x92, 0x91,\n    0x97, 0x98, 0x99, 0x97, 0x94, 0x93, 0x93, 0x94, 0x8f, 0x8f, 0x8e, 0x8e, 0x8e, 0x8e, 0x8e, 0x8f,\n    0x93, 0x94, 0x92, 0x8b, 0x83, 0x80, 0x82, 0x86, 0x86, 0x7f, 0x81, 0x8b, 0x8b, 0x7e, 0x75, 0x75,\n    0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74, 0x74, 0x73, 0x74, 0x74, 0x75, 0x75, 0x76, 0x77, 0x77,\n    0x77, 0x78, 0x79, 0x79, 0x79, 0x77, 0x76, 0x75, 0x6f, 0x6e, 0x6d, 0x6c, 0x6b, 0x6c, 0x6c, 0x6d,\n    0x6a, 0x6d, 0x73, 0x78, 0x7b, 0x7c, 0x7b, 0x7a, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b,\n    0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x7a, 0x7b, 0x7b,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79,\n    0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78,\n    0x6a, 0x6a, 0x6b, 0x6b, 0x6c, 0x6d, 0x6d, 0x6d, 0x6b, 0x6a, 0x69, 0x69, 0x69, 0x69, 0x6a, 0x6b,\n    0x6a, 0x6a, 0x6a, 0x69, 0x6a, 0x6b, 0x6d, 0x6e, 0x6f, 0x6e, 0x6c, 0x6a, 0x69, 0x68, 0x68, 0x69,\n    0x68, 0x67, 0x67, 0x67, 0x67, 0x69, 0x6a, 0x6b, 0x67, 0x66, 0x66, 0x65, 0x65, 0x65, 0x66, 0x67,\n    0x68, 0x68, 0x67, 0x67, 0x68, 0x69, 0x6b, 0x6b, 0x6c, 0x6b, 0x69, 0x68, 0x68, 0x68, 0x68, 0x69,\n    0x6a, 0x6a, 0x69, 0x69, 0x69, 0x69, 0x68, 0x68, 0x69, 0x6a, 0x6a, 0x6b, 0x6b, 0x6a, 0x69, 0x69,\n    0x64, 0x66, 0x67, 0x67, 0x65, 0x61, 0x5d, 0x5a, 0x51, 0x50, 0x4f, 0x4d, 0x4c, 0x4c, 0x4c, 0x4c,\n    0x4a, 0x4a, 0x49, 0x49, 0x49, 0x48, 0x48, 0x48, 0x47, 0x47, 0x47, 0x47, 0x47, 0x47, 0x47, 0x47,\n    0x45, 0x45, 0x45, 0x46, 0x46, 0x46, 0x47, 0x47, 0x47, 0x47, 0x47, 0x48, 0x49, 0x49, 0x4a, 0x4a,\n    0x49, 0x4c, 0x4f, 0x4e, 0x4c, 0x4c, 0x4e, 0x51, 0x5e, 0x76, 0x8b, 0x8d, 0x8c, 0x91, 0x92, 0x8e,\n    0x8e, 0x8e, 0x8e, 0x8e, 0x8f, 0x91, 0x93, 0x94, 0x9a, 0x99, 0x97, 0x98, 0x98, 0x95, 0x8f, 0x8a,\n    0x91, 0x93, 0x95, 0x96, 0x96, 0x93, 0x90, 0x8e, 0x92, 0x8e, 0x8c, 0x8c, 0x8d, 0x8f, 0x92, 0x96,\n    0x92, 0x92, 0x91, 0x8e, 0x8c, 0x8c, 0x90, 0x94, 0x92, 0x96, 0x9b, 0x9a, 0x94, 0x8c, 0x86, 0x83,\n    0x80, 0x82, 0x85, 0x86, 0x84, 0x80, 0x7c, 0x79, 0x78, 0x77, 0x75, 0x73, 0x71, 0x71, 0x71, 0x71,\n    0x87, 0x8f, 0x91, 0x84, 0x6e, 0x63, 0x69, 0x74, 0x75, 0x6e, 0x72, 0x7f, 0x82, 0x7a, 0x74, 0x77,\n    0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x75, 0x75, 0x76, 0x77, 0x77, 0x77,\n    0x79, 0x79, 0x79, 0x79, 0x77, 0x75, 0x74, 0x72, 0x6e, 0x6d, 0x6c, 0x6b, 0x6a, 0x6a, 0x6b, 0x6b,\n    0x6d, 0x70, 0x74, 0x78, 0x7b, 0x7b, 0x7a, 0x79, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x79, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79,\n    0x77, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79,\n    0x6a, 0x6b, 0x6b, 0x6c, 0x6c, 0x6d, 0x6e, 0x6e, 0x6a, 0x69, 0x68, 0x67, 0x67, 0x68, 0x69, 0x6a,\n    0x69, 0x69, 0x69, 0x69, 0x69, 0x6b, 0x6c, 0x6d, 0x70, 0x6e, 0x6c, 0x6a, 0x69, 0x68, 0x68, 0x68,\n    0x68, 0x68, 0x67, 0x67, 0x68, 0x69, 0x6a, 0x6b, 0x68, 0x67, 0x66, 0x65, 0x65, 0x66, 0x66, 0x67,\n    0x68, 0x68, 0x68, 0x68, 0x68, 0x69, 0x6a, 0x6a, 0x6d, 0x6c, 0x6a, 0x69, 0x68, 0x68, 0x68, 0x68,\n    0x6c, 0x6b, 0x6b, 0x6a, 0x69, 0x68, 0x67, 0x67, 0x67, 0x68, 0x69, 0x6a, 0x6b, 0x6b, 0x6a, 0x6a,\n    0x67, 0x68, 0x68, 0x67, 0x64, 0x5f, 0x5a, 0x56, 0x50, 0x4f, 0x4e, 0x4d, 0x4c, 0x4b, 0x4b, 0x4b,\n    0x4a, 0x4a, 0x49, 0x49, 0x49, 0x48, 0x48, 0x48, 0x47, 0x47, 0x47, 0x47, 0x47, 0x47, 0x47, 0x47,\n    0x44, 0x44, 0x45, 0x46, 0x46, 0x47, 0x47, 0x48, 0x47, 0x47, 0x47, 0x48, 0x49, 0x49, 0x4a, 0x4a,\n    0x49, 0x4c, 0x4e, 0x4e, 0x4c, 0x4b, 0x4e, 0x51, 0x5c, 0x75, 0x8a, 0x8d, 0x8d, 0x92, 0x94, 0x90,\n    0x8c, 0x8c, 0x8d, 0x8e, 0x8f, 0x92, 0x94, 0x95, 0x9c, 0x99, 0x96, 0x96, 0x96, 0x90, 0x86, 0x7d,\n    0x7a, 0x7a, 0x7b, 0x7a, 0x79, 0x76, 0x74, 0x72, 0x77, 0x71, 0x70, 0x73, 0x73, 0x72, 0x77, 0x82,\n    0x85, 0x84, 0x7f, 0x76, 0x6e, 0x6d, 0x72, 0x79, 0x8b, 0x93, 0x99, 0x97, 0x8d, 0x80, 0x76, 0x72,\n    0x64, 0x66, 0x6b, 0x6f, 0x70, 0x6c, 0x64, 0x5d, 0x63, 0x61, 0x5f, 0x5d, 0x5c, 0x5d, 0x5f, 0x61,\n    0x7b, 0x8b, 0x93, 0x81, 0x62, 0x52, 0x5d, 0x6f, 0x6f, 0x68, 0x6a, 0x77, 0x7b, 0x75, 0x72, 0x76,\n    0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x76, 0x77, 0x77, 0x78, 0x78,\n    0x7b, 0x7a, 0x79, 0x77, 0x75, 0x73, 0x71, 0x70, 0x6d, 0x6c, 0x6b, 0x6a, 0x69, 0x69, 0x6a, 0x6a,\n    0x70, 0x72, 0x76, 0x79, 0x7a, 0x7a, 0x79, 0x78, 0x79, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d,\n    0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78,\n    0x76, 0x76, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x6a, 0x6a, 0x6b, 0x6b, 0x6c, 0x6d, 0x6d, 0x6d, 0x6a, 0x69, 0x68, 0x67, 0x67, 0x68, 0x69, 0x6a,\n    0x6a, 0x69, 0x69, 0x69, 0x69, 0x6b, 0x6c, 0x6d, 0x6f, 0x6e, 0x6c, 0x6a, 0x69, 0x68, 0x68, 0x69,\n    0x6a, 0x69, 0x69, 0x68, 0x68, 0x69, 0x6a, 0x6b, 0x6b, 0x6b, 0x69, 0x68, 0x68, 0x68, 0x69, 0x69,\n    0x67, 0x67, 0x68, 0x68, 0x69, 0x69, 0x68, 0x68, 0x6c, 0x6b, 0x6a, 0x69, 0x68, 0x68, 0x69, 0x69,\n    0x6d, 0x6c, 0x6b, 0x6a, 0x69, 0x68, 0x67, 0x67, 0x66, 0x67, 0x69, 0x6a, 0x6b, 0x6b, 0x6b, 0x6a,\n    0x6a, 0x6b, 0x6b, 0x69, 0x64, 0x5e, 0x59, 0x55, 0x4f, 0x4f, 0x4e, 0x4e, 0x4d, 0x4c, 0x4a, 0x4a,\n    0x4a, 0x4a, 0x49, 0x49, 0x49, 0x48, 0x48, 0x48, 0x47, 0x47, 0x47, 0x47, 0x47, 0x47, 0x47, 0x47,\n    0x44, 0x44, 0x45, 0x46, 0x46, 0x47, 0x47, 0x48, 0x47, 0x47, 0x47, 0x48, 0x49, 0x49, 0x4a, 0x4a,\n    0x49, 0x4c, 0x4e, 0x4e, 0x4c, 0x4b, 0x4e, 0x50, 0x5c, 0x75, 0x8a, 0x8e, 0x8d, 0x92, 0x95, 0x91,\n    0x8d, 0x8d, 0x8d, 0x8e, 0x90, 0x92, 0x94, 0x95, 0x9a, 0x96, 0x92, 0x93, 0x93, 0x8b, 0x7d, 0x70,\n    0x64, 0x63, 0x62, 0x61, 0x5f, 0x5d, 0x5b, 0x5a, 0x5c, 0x56, 0x58, 0x62, 0x61, 0x5a, 0x62, 0x72,\n    0x80, 0x7e, 0x76, 0x68, 0x59, 0x54, 0x59, 0x61, 0x83, 0x8d, 0x97, 0x94, 0x86, 0x74, 0x67, 0x62,\n    0x60, 0x62, 0x68, 0x70, 0x75, 0x72, 0x69, 0x61, 0x61, 0x5f, 0x5c, 0x5b, 0x5c, 0x60, 0x64, 0x67,\n    0x73, 0x88, 0x95, 0x83, 0x61, 0x50, 0x5e, 0x74, 0x74, 0x6b, 0x6a, 0x74, 0x78, 0x71, 0x6f, 0x73,\n    0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x76, 0x77, 0x77, 0x78, 0x78, 0x79,\n    0x7b, 0x79, 0x77, 0x75, 0x72, 0x70, 0x6e, 0x6d, 0x6c, 0x6b, 0x6a, 0x69, 0x69, 0x69, 0x6a, 0x6b,\n    0x73, 0x74, 0x77, 0x79, 0x7a, 0x7a, 0x79, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7d,\n    0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79,\n    0x76, 0x77, 0x77, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x78, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b,\n    0x69, 0x69, 0x6a, 0x6a, 0x6b, 0x6c, 0x6c, 0x6c, 0x6b, 0x6a, 0x69, 0x69, 0x69, 0x69, 0x6a, 0x6b,\n    0x6c, 0x6b, 0x6a, 0x6a, 0x6a, 0x6a, 0x6b, 0x6c, 0x6e, 0x6d, 0x6b, 0x6a, 0x69, 0x69, 0x6a, 0x6a,\n    0x6c, 0x6c, 0x6b, 0x6a, 0x6a, 0x6b, 0x6c, 0x6c, 0x6e, 0x6d, 0x6b, 0x6a, 0x69, 0x69, 0x6a, 0x6a,\n    0x67, 0x67, 0x68, 0x69, 0x69, 0x68, 0x67, 0x67, 0x6b, 0x6a, 0x69, 0x69, 0x69, 0x6a, 0x6b, 0x6b,\n    0x6c, 0x6c, 0x6b, 0x6a, 0x6a, 0x69, 0x68, 0x68, 0x66, 0x67, 0x69, 0x6a, 0x6a, 0x6a, 0x6a, 0x69,\n    0x6b, 0x6b, 0x6b, 0x68, 0x64, 0x5d, 0x57, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4c, 0x4b, 0x4a,\n    0x4a, 0x4a, 0x49, 0x49, 0x49, 0x48, 0x48, 0x48, 0x47, 0x47, 0x47, 0x47, 0x47, 0x47, 0x47, 0x47,\n    0x45, 0x45, 0x45, 0x46, 0x46, 0x46, 0x47, 0x47, 0x47, 0x47, 0x47, 0x48, 0x49, 0x49, 0x4a, 0x4a,\n    0x48, 0x4b, 0x4e, 0x4d, 0x4b, 0x4b, 0x4d, 0x50, 0x5d, 0x76, 0x8b, 0x8e, 0x8e, 0x92, 0x94, 0x91,\n    0x8f, 0x8f, 0x8f, 0x8f, 0x90, 0x92, 0x94, 0x95, 0x99, 0x93, 0x8f, 0x91, 0x93, 0x8b, 0x78, 0x68,\n    0x5c, 0x5b, 0x58, 0x56, 0x54, 0x53, 0x52, 0x52, 0x53, 0x4d, 0x55, 0x65, 0x64, 0x59, 0x60, 0x74,\n    0x83, 0x83, 0x7c, 0x6a, 0x57, 0x4e, 0x53, 0x5a, 0x7c, 0x8a, 0x97, 0x95, 0x83, 0x6d, 0x5f, 0x5a,\n    0x5e, 0x5f, 0x65, 0x70, 0x7a, 0x7c, 0x74, 0x6c, 0x5e, 0x5b, 0x58, 0x56, 0x57, 0x5b, 0x61, 0x64,\n    0x71, 0x87, 0x94, 0x84, 0x64, 0x54, 0x62, 0x77, 0x7b, 0x70, 0x6d, 0x74, 0x76, 0x70, 0x6e, 0x73,\n    0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x77, 0x77, 0x78, 0x79, 0x79, 0x79,\n    0x79, 0x77, 0x74, 0x71, 0x6f, 0x6d, 0x6c, 0x6b, 0x6a, 0x69, 0x69, 0x69, 0x6a, 0x6b, 0x6c, 0x6d,\n    0x74, 0x75, 0x77, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x77, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7b,\n    0x68, 0x68, 0x69, 0x69, 0x6a, 0x6b, 0x6b, 0x6b, 0x6d, 0x6c, 0x6b, 0x6b, 0x6b, 0x6b, 0x6c, 0x6d,\n    0x6f, 0x6e, 0x6c, 0x6b, 0x6a, 0x6a, 0x6b, 0x6b, 0x6c, 0x6b, 0x6a, 0x6a, 0x6a, 0x6a, 0x6b, 0x6c,\n    0x6e, 0x6e, 0x6d, 0x6c, 0x6c, 0x6c, 0x6d, 0x6e, 0x6d, 0x6c, 0x6b, 0x69, 0x68, 0x68, 0x69, 0x69,\n    0x66, 0x67, 0x68, 0x69, 0x69, 0x68, 0x67, 0x66, 0x69, 0x69, 0x69, 0x69, 0x69, 0x6b, 0x6c, 0x6d,\n    0x6c, 0x6b, 0x6b, 0x6a, 0x6a, 0x69, 0x69, 0x69, 0x67, 0x68, 0x69, 0x6a, 0x6a, 0x6a, 0x69, 0x68,\n    0x68, 0x68, 0x68, 0x65, 0x60, 0x5a, 0x54, 0x50, 0x50, 0x50, 0x51, 0x51, 0x4f, 0x4e, 0x4c, 0x4a,\n    0x4a, 0x4a, 0x49, 0x49, 0x49, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48,\n    0x47, 0x47, 0x46, 0x46, 0x46, 0x45, 0x45, 0x45, 0x47, 0x47, 0x47, 0x48, 0x49, 0x49, 0x4a, 0x4a,\n    0x48, 0x4b, 0x4d, 0x4d, 0x4b, 0x4b, 0x4d, 0x50, 0x5e, 0x77, 0x8c, 0x8e, 0x8e, 0x92, 0x94, 0x90,\n    0x91, 0x91, 0x91, 0x91, 0x91, 0x93, 0x94, 0x95, 0x99, 0x93, 0x90, 0x93, 0x96, 0x8e, 0x79, 0x67,\n    0x59, 0x57, 0x54, 0x51, 0x50, 0x4f, 0x4f, 0x50, 0x53, 0x4e, 0x5c, 0x72, 0x71, 0x61, 0x66, 0x7d,\n    0x81, 0x83, 0x7f, 0x6f, 0x5b, 0x50, 0x55, 0x5d, 0x79, 0x8a, 0x9b, 0x99, 0x85, 0x6d, 0x5e, 0x58,\n    0x57, 0x57, 0x5c, 0x6a, 0x79, 0x7f, 0x7a, 0x73, 0x61, 0x5d, 0x56, 0x52, 0x50, 0x53, 0x57, 0x5b,\n    0x73, 0x85, 0x91, 0x82, 0x64, 0x55, 0x60, 0x72, 0x7c, 0x71, 0x6c, 0x73, 0x75, 0x70, 0x6f, 0x75,\n    0x75, 0x76, 0x76, 0x76, 0x77, 0x77, 0x78, 0x78, 0x76, 0x77, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x7a,\n    0x76, 0x74, 0x71, 0x6e, 0x6c, 0x6b, 0x6a, 0x6a, 0x68, 0x68, 0x68, 0x69, 0x6b, 0x6d, 0x6f, 0x70,\n    0x74, 0x75, 0x77, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7c, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x78, 0x76, 0x76, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x7a,\n    0x67, 0x67, 0x68, 0x68, 0x69, 0x6a, 0x6a, 0x6a, 0x6e, 0x6d, 0x6d, 0x6c, 0x6c, 0x6d, 0x6d, 0x6e,\n    0x71, 0x70, 0x6e, 0x6c, 0x6b, 0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x69, 0x69, 0x6a, 0x6b, 0x6c, 0x6d,\n    0x70, 0x6f, 0x6e, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6b, 0x6a, 0x69, 0x67, 0x66, 0x66, 0x66, 0x67,\n    0x66, 0x67, 0x68, 0x69, 0x69, 0x68, 0x66, 0x65, 0x68, 0x68, 0x68, 0x69, 0x6a, 0x6c, 0x6e, 0x6f,\n    0x6b, 0x6b, 0x6b, 0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x68, 0x68, 0x69, 0x6a, 0x6a, 0x69, 0x68, 0x67,\n    0x65, 0x65, 0x64, 0x62, 0x5d, 0x57, 0x51, 0x4d, 0x50, 0x51, 0x51, 0x51, 0x50, 0x4e, 0x4c, 0x4b,\n    0x4a, 0x4a, 0x49, 0x49, 0x49, 0x48, 0x48, 0x48, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49,\n    0x48, 0x47, 0x47, 0x46, 0x46, 0x45, 0x44, 0x44, 0x47, 0x47, 0x47, 0x48, 0x49, 0x49, 0x4a, 0x4a,\n    0x48, 0x4b, 0x4d, 0x4d, 0x4b, 0x4a, 0x4d, 0x50, 0x5f, 0x78, 0x8c, 0x8f, 0x8e, 0x92, 0x93, 0x8f,\n    0x93, 0x93, 0x92, 0x92, 0x92, 0x93, 0x94, 0x95, 0x9b, 0x95, 0x91, 0x96, 0x9a, 0x91, 0x7c, 0x69,\n    0x54, 0x52, 0x4f, 0x4c, 0x4a, 0x4a, 0x4b, 0x4c, 0x51, 0x4e, 0x5f, 0x78, 0x77, 0x65, 0x6a, 0x82,\n    0x78, 0x7d, 0x7c, 0x6e, 0x5a, 0x50, 0x55, 0x5d, 0x7a, 0x8c, 0x9e, 0x9d, 0x88, 0x6f, 0x5f, 0x5a,\n    0x58, 0x57, 0x5c, 0x6b, 0x7d, 0x86, 0x84, 0x7d, 0x72, 0x6c, 0x64, 0x5c, 0x58, 0x59, 0x5c, 0x5e,\n    0x75, 0x84, 0x8d, 0x7f, 0x63, 0x54, 0x5b, 0x6a, 0x7a, 0x6e, 0x6a, 0x71, 0x74, 0x70, 0x71, 0x78,\n    0x75, 0x76, 0x76, 0x77, 0x77, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x78, 0x79, 0x79, 0x7a, 0x7a,\n    0x74, 0x72, 0x6f, 0x6c, 0x6a, 0x69, 0x69, 0x6a, 0x67, 0x67, 0x68, 0x69, 0x6c, 0x6e, 0x71, 0x72,\n    0x74, 0x75, 0x77, 0x79, 0x7a, 0x7c, 0x7c, 0x7d, 0x7c, 0x7c, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x78,\n    0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x78, 0x78, 0x77, 0x75, 0x75, 0x76, 0x77, 0x78, 0x79, 0x79, 0x7a,\n    0x67, 0x66, 0x65, 0x64, 0x65, 0x67, 0x68, 0x6a, 0x6f, 0x6e, 0x6d, 0x6c, 0x6c, 0x6c, 0x6d, 0x6e,\n    0x6c, 0x6b, 0x6a, 0x69, 0x68, 0x68, 0x69, 0x69, 0x68, 0x67, 0x67, 0x67, 0x67, 0x69, 0x6a, 0x6b,\n    0x69, 0x6a, 0x6a, 0x6b, 0x6b, 0x6c, 0x6c, 0x6c, 0x6b, 0x6a, 0x68, 0x67, 0x65, 0x65, 0x65, 0x65,\n    0x6b, 0x6a, 0x69, 0x68, 0x68, 0x68, 0x69, 0x6a, 0x66, 0x66, 0x66, 0x67, 0x68, 0x6b, 0x6d, 0x6e,\n    0x6e, 0x6d, 0x6a, 0x68, 0x67, 0x67, 0x67, 0x68, 0x66, 0x66, 0x66, 0x66, 0x67, 0x68, 0x6a, 0x6b,\n    0x67, 0x64, 0x5f, 0x5a, 0x55, 0x51, 0x4f, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4d, 0x4b, 0x4a,\n    0x4b, 0x4a, 0x49, 0x48, 0x47, 0x47, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x47, 0x47, 0x47, 0x47,\n    0x47, 0x47, 0x47, 0x46, 0x46, 0x46, 0x46, 0x45, 0x44, 0x44, 0x45, 0x46, 0x47, 0x48, 0x48, 0x49,\n    0x4b, 0x4a, 0x49, 0x4c, 0x4f, 0x4f, 0x4d, 0x4a, 0x5a, 0x76, 0x8f, 0x93, 0x90, 0x93, 0x95, 0x93,\n    0x90, 0x90, 0x90, 0x91, 0x92, 0x94, 0x95, 0x96, 0x91, 0x93, 0x92, 0x90, 0x96, 0x96, 0x80, 0x66,\n    0x57, 0x56, 0x53, 0x4e, 0x4b, 0x4d, 0x53, 0x58, 0x63, 0x66, 0x6b, 0x71, 0x77, 0x7b, 0x7d, 0x7e,\n    0x80, 0x7d, 0x75, 0x66, 0x58, 0x52, 0x55, 0x5b, 0x77, 0x8f, 0x98, 0x95, 0x8b, 0x70, 0x58, 0x58,\n    0x56, 0x59, 0x61, 0x6d, 0x7b, 0x84, 0x88, 0x88, 0x75, 0x6c, 0x61, 0x5a, 0x58, 0x5a, 0x5b, 0x5b,\n    0x71, 0x87, 0x95, 0x86, 0x64, 0x4f, 0x55, 0x66, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x77, 0x77,\n    0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x77, 0x78, 0x7a, 0x7a, 0x7a, 0x78, 0x76, 0x75,\n    0x71, 0x6f, 0x6c, 0x69, 0x68, 0x69, 0x6b, 0x6d, 0x68, 0x67, 0x66, 0x65, 0x67, 0x6a, 0x6e, 0x70,\n    0x70, 0x74, 0x79, 0x7a, 0x79, 0x79, 0x7b, 0x7d, 0x7e, 0x7e, 0x7d, 0x7b, 0x7a, 0x79, 0x78, 0x77,\n    0x7a, 0x79, 0x77, 0x76, 0x76, 0x77, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79,\n    0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x7b, 0x7a, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x76,\n    0x7b, 0x7a, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x76, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78,\n    0x67, 0x67, 0x66, 0x65, 0x66, 0x67, 0x69, 0x6a, 0x6e, 0x6d, 0x6c, 0x6b, 0x6b, 0x6c, 0x6d, 0x6d,\n    0x6c, 0x6b, 0x6a, 0x69, 0x68, 0x68, 0x69, 0x69, 0x69, 0x69, 0x68, 0x67, 0x67, 0x68, 0x69, 0x6a,\n    0x68, 0x68, 0x68, 0x69, 0x69, 0x6a, 0x6a, 0x6a, 0x6a, 0x69, 0x68, 0x67, 0x66, 0x66, 0x67, 0x67,\n    0x6a, 0x69, 0x68, 0x67, 0x67, 0x68, 0x68, 0x69, 0x68, 0x67, 0x67, 0x67, 0x68, 0x6a, 0x6b, 0x6c,\n    0x6d, 0x6c, 0x6a, 0x68, 0x67, 0x66, 0x67, 0x67, 0x66, 0x66, 0x65, 0x65, 0x66, 0x68, 0x69, 0x6a,\n    0x67, 0x64, 0x5f, 0x59, 0x54, 0x51, 0x4f, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4e, 0x4d, 0x4b, 0x4a,\n    0x4a, 0x4a, 0x49, 0x48, 0x48, 0x48, 0x49, 0x4a, 0x49, 0x49, 0x48, 0x48, 0x48, 0x48, 0x47, 0x47,\n    0x47, 0x47, 0x47, 0x47, 0x46, 0x46, 0x46, 0x46, 0x44, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x49,\n    0x4b, 0x4a, 0x4a, 0x4c, 0x4e, 0x4e, 0x4d, 0x4b, 0x5e, 0x79, 0x90, 0x93, 0x90, 0x94, 0x96, 0x93,\n    0x90, 0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x91, 0x94, 0x92, 0x91, 0x96, 0x96, 0x80, 0x65,\n    0x54, 0x53, 0x50, 0x4b, 0x49, 0x4a, 0x4e, 0x52, 0x67, 0x6a, 0x6e, 0x73, 0x78, 0x7b, 0x7d, 0x7e,\n    0x7e, 0x7a, 0x70, 0x61, 0x52, 0x4e, 0x53, 0x5a, 0x78, 0x90, 0x99, 0x95, 0x8b, 0x70, 0x58, 0x59,\n    0x57, 0x5a, 0x63, 0x6f, 0x7a, 0x80, 0x81, 0x7e, 0x6f, 0x67, 0x5d, 0x57, 0x56, 0x59, 0x5a, 0x5b,\n    0x6f, 0x85, 0x95, 0x86, 0x64, 0x50, 0x57, 0x68, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77,\n    0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x79, 0x77, 0x75, 0x74,\n    0x70, 0x6e, 0x6b, 0x69, 0x68, 0x69, 0x6b, 0x6c, 0x68, 0x67, 0x66, 0x66, 0x67, 0x6a, 0x6d, 0x6f,\n    0x6f, 0x74, 0x79, 0x7a, 0x7a, 0x79, 0x7b, 0x7d, 0x7f, 0x7e, 0x7d, 0x7c, 0x7b, 0x79, 0x78, 0x78,\n    0x7a, 0x79, 0x78, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x77, 0x76, 0x76,\n    0x7a, 0x7a, 0x79, 0x78, 0x78, 0x77, 0x76, 0x76, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x78,\n    0x68, 0x68, 0x67, 0x67, 0x67, 0x68, 0x69, 0x6a, 0x6d, 0x6c, 0x6b, 0x6a, 0x6a, 0x6b, 0x6c, 0x6d,\n    0x6b, 0x6b, 0x69, 0x68, 0x68, 0x69, 0x69, 0x6a, 0x6b, 0x6a, 0x69, 0x67, 0x67, 0x67, 0x67, 0x68,\n    0x65, 0x65, 0x66, 0x66, 0x66, 0x67, 0x67, 0x67, 0x68, 0x67, 0x67, 0x66, 0x67, 0x68, 0x69, 0x6a,\n    0x68, 0x67, 0x67, 0x66, 0x66, 0x67, 0x68, 0x68, 0x6a, 0x69, 0x68, 0x68, 0x68, 0x68, 0x69, 0x6a,\n    0x6b, 0x6a, 0x69, 0x67, 0x66, 0x66, 0x66, 0x66, 0x65, 0x65, 0x64, 0x64, 0x65, 0x66, 0x68, 0x69,\n    0x67, 0x64, 0x5e, 0x58, 0x54, 0x51, 0x4f, 0x4f, 0x4c, 0x4d, 0x4d, 0x4e, 0x4d, 0x4c, 0x4b, 0x4a,\n    0x49, 0x49, 0x48, 0x48, 0x48, 0x49, 0x4a, 0x4b, 0x4a, 0x49, 0x49, 0x49, 0x49, 0x48, 0x48, 0x48,\n    0x47, 0x47, 0x47, 0x47, 0x46, 0x46, 0x46, 0x46, 0x44, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x49,\n    0x4c, 0x4b, 0x4b, 0x4c, 0x4d, 0x4d, 0x4e, 0x4e, 0x63, 0x7b, 0x8f, 0x91, 0x90, 0x94, 0x95, 0x92,\n    0x90, 0x91, 0x91, 0x92, 0x93, 0x94, 0x95, 0x95, 0x92, 0x95, 0x93, 0x92, 0x97, 0x96, 0x7f, 0x64,\n    0x51, 0x50, 0x4d, 0x4b, 0x4b, 0x4d, 0x4f, 0x52, 0x6e, 0x70, 0x73, 0x76, 0x79, 0x7c, 0x7d, 0x7e,\n    0x7d, 0x78, 0x6c, 0x5b, 0x4d, 0x4a, 0x51, 0x5a, 0x79, 0x90, 0x99, 0x94, 0x8b, 0x70, 0x58, 0x59,\n    0x59, 0x5d, 0x67, 0x72, 0x7b, 0x7d, 0x78, 0x73, 0x66, 0x5f, 0x57, 0x52, 0x54, 0x57, 0x5a, 0x5b,\n    0x6c, 0x83, 0x93, 0x85, 0x65, 0x52, 0x5a, 0x6b, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x78,\n    0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x76, 0x73, 0x72,\n    0x6e, 0x6d, 0x6a, 0x68, 0x68, 0x68, 0x6a, 0x6b, 0x68, 0x68, 0x66, 0x66, 0x67, 0x69, 0x6c, 0x6d,\n    0x6e, 0x73, 0x78, 0x7a, 0x7a, 0x79, 0x7b, 0x7c, 0x7e, 0x7e, 0x7d, 0x7c, 0x7b, 0x7b, 0x7a, 0x79,\n    0x7a, 0x79, 0x78, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d,\n    0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x77, 0x77, 0x76, 0x76,\n    0x79, 0x79, 0x79, 0x78, 0x77, 0x77, 0x76, 0x76, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77,\n    0x69, 0x69, 0x68, 0x68, 0x68, 0x69, 0x69, 0x69, 0x6b, 0x6a, 0x69, 0x69, 0x69, 0x6a, 0x6b, 0x6c,\n    0x6b, 0x6a, 0x69, 0x68, 0x68, 0x69, 0x6a, 0x6a, 0x6d, 0x6b, 0x6a, 0x68, 0x66, 0x66, 0x66, 0x66,\n    0x63, 0x63, 0x63, 0x63, 0x64, 0x64, 0x64, 0x64, 0x66, 0x65, 0x65, 0x66, 0x67, 0x69, 0x6a, 0x6c,\n    0x67, 0x66, 0x65, 0x65, 0x65, 0x66, 0x67, 0x68, 0x6c, 0x6b, 0x6a, 0x68, 0x67, 0x67, 0x68, 0x68,\n    0x69, 0x69, 0x68, 0x67, 0x66, 0x66, 0x66, 0x65, 0x65, 0x65, 0x64, 0x64, 0x64, 0x65, 0x67, 0x68,\n    0x67, 0x63, 0x5d, 0x57, 0x53, 0x50, 0x50, 0x50, 0x4c, 0x4d, 0x4d, 0x4d, 0x4d, 0x4c, 0x4b, 0x4a,\n    0x49, 0x48, 0x48, 0x47, 0x48, 0x49, 0x4a, 0x4b, 0x4a, 0x4a, 0x4a, 0x49, 0x49, 0x49, 0x48, 0x48,\n    0x48, 0x48, 0x47, 0x47, 0x47, 0x46, 0x46, 0x46, 0x44, 0x45, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4a,\n    0x4c, 0x4d, 0x4d, 0x4d, 0x4c, 0x4d, 0x50, 0x53, 0x67, 0x7c, 0x8c, 0x8d, 0x8c, 0x91, 0x92, 0x8e,\n    0x90, 0x91, 0x92, 0x94, 0x94, 0x95, 0x95, 0x94, 0x93, 0x95, 0x94, 0x93, 0x98, 0x96, 0x7e, 0x62,\n    0x4e, 0x4d, 0x4e, 0x52, 0x57, 0x5c, 0x5e, 0x5f, 0x76, 0x77, 0x78, 0x7a, 0x7b, 0x7d, 0x7d, 0x7e,\n    0x7e, 0x79, 0x6c, 0x5a, 0x4c, 0x4a, 0x53, 0x5c, 0x7b, 0x91, 0x99, 0x94, 0x8b, 0x70, 0x59, 0x59,\n    0x5d, 0x62, 0x6c, 0x78, 0x7e, 0x7c, 0x74, 0x6c, 0x60, 0x5a, 0x52, 0x50, 0x52, 0x56, 0x59, 0x5a,\n    0x6a, 0x81, 0x92, 0x85, 0x66, 0x54, 0x5d, 0x6f, 0x7e, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x79,\n    0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x79, 0x7c, 0x7b, 0x7a, 0x78, 0x75, 0x73, 0x71, 0x70,\n    0x6c, 0x6b, 0x6a, 0x68, 0x68, 0x68, 0x69, 0x6a, 0x68, 0x68, 0x67, 0x67, 0x67, 0x69, 0x6a, 0x6b,\n    0x6c, 0x71, 0x77, 0x7a, 0x7a, 0x79, 0x7a, 0x7c, 0x7e, 0x7e, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b,\n    0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7e,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x79, 0x79, 0x79, 0x78, 0x78, 0x77, 0x77, 0x77,\n    0x79, 0x79, 0x79, 0x78, 0x78, 0x77, 0x77, 0x77, 0x79, 0x78, 0x78, 0x77, 0x77, 0x76, 0x76, 0x76,\n    0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x68, 0x68, 0x69, 0x68, 0x68, 0x67, 0x68, 0x69, 0x6a, 0x6b,\n    0x6a, 0x6a, 0x69, 0x68, 0x68, 0x69, 0x6a, 0x6b, 0x6d, 0x6c, 0x6a, 0x68, 0x66, 0x66, 0x65, 0x66,\n    0x62, 0x62, 0x62, 0x62, 0x62, 0x62, 0x62, 0x62, 0x63, 0x63, 0x64, 0x64, 0x66, 0x68, 0x6a, 0x6c,\n    0x66, 0x65, 0x65, 0x64, 0x65, 0x66, 0x67, 0x68, 0x6d, 0x6c, 0x6a, 0x68, 0x67, 0x67, 0x67, 0x67,\n    0x68, 0x68, 0x68, 0x68, 0x67, 0x66, 0x66, 0x65, 0x66, 0x65, 0x64, 0x64, 0x64, 0x65, 0x66, 0x67,\n    0x67, 0x63, 0x5c, 0x56, 0x52, 0x50, 0x50, 0x51, 0x4d, 0x4e, 0x4e, 0x4e, 0x4d, 0x4c, 0x4a, 0x49,\n    0x48, 0x48, 0x47, 0x46, 0x47, 0x48, 0x49, 0x4a, 0x4a, 0x49, 0x49, 0x49, 0x49, 0x48, 0x48, 0x48,\n    0x48, 0x48, 0x48, 0x47, 0x47, 0x47, 0x47, 0x46, 0x45, 0x45, 0x46, 0x47, 0x48, 0x49, 0x49, 0x4a,\n    0x4b, 0x4e, 0x4f, 0x4e, 0x4c, 0x4e, 0x54, 0x5a, 0x6b, 0x7c, 0x89, 0x88, 0x88, 0x8e, 0x8f, 0x89,\n    0x91, 0x92, 0x93, 0x95, 0x95, 0x95, 0x94, 0x93, 0x93, 0x96, 0x96, 0x94, 0x98, 0x96, 0x7d, 0x61,\n    0x4d, 0x4d, 0x52, 0x5c, 0x68, 0x71, 0x74, 0x73, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7e, 0x7e,\n    0x81, 0x7c, 0x6f, 0x5f, 0x51, 0x4e, 0x57, 0x60, 0x7c, 0x93, 0x9a, 0x94, 0x8a, 0x6f, 0x59, 0x5a,\n    0x5f, 0x65, 0x70, 0x7b, 0x81, 0x7e, 0x75, 0x6d, 0x60, 0x5a, 0x53, 0x50, 0x52, 0x56, 0x58, 0x58,\n    0x68, 0x7f, 0x91, 0x85, 0x67, 0x56, 0x5f, 0x72, 0x7e, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x79,\n    0x77, 0x77, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x7b, 0x7a, 0x78, 0x75, 0x73, 0x70, 0x6f, 0x6e,\n    0x6b, 0x6a, 0x6a, 0x69, 0x69, 0x69, 0x69, 0x6a, 0x69, 0x68, 0x68, 0x67, 0x67, 0x68, 0x69, 0x69,\n    0x6a, 0x70, 0x77, 0x7a, 0x7a, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7e,\n    0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79,\n    0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x79, 0x79, 0x78, 0x77, 0x76, 0x76, 0x75,\n    0x68, 0x68, 0x69, 0x69, 0x69, 0x68, 0x67, 0x66, 0x67, 0x67, 0x66, 0x66, 0x67, 0x68, 0x69, 0x6a,\n    0x6a, 0x69, 0x69, 0x68, 0x68, 0x69, 0x6b, 0x6b, 0x6d, 0x6c, 0x6a, 0x68, 0x66, 0x66, 0x66, 0x66,\n    0x63, 0x63, 0x63, 0x62, 0x62, 0x62, 0x62, 0x61, 0x62, 0x62, 0x62, 0x63, 0x64, 0x67, 0x69, 0x6a,\n    0x65, 0x65, 0x65, 0x65, 0x65, 0x67, 0x68, 0x69, 0x6d, 0x6c, 0x6a, 0x68, 0x67, 0x67, 0x67, 0x67,\n    0x68, 0x68, 0x69, 0x69, 0x69, 0x68, 0x67, 0x66, 0x67, 0x66, 0x65, 0x65, 0x65, 0x65, 0x66, 0x67,\n    0x66, 0x62, 0x5c, 0x55, 0x51, 0x50, 0x50, 0x52, 0x51, 0x51, 0x50, 0x4f, 0x4e, 0x4b, 0x49, 0x48,\n    0x48, 0x47, 0x46, 0x45, 0x45, 0x45, 0x46, 0x46, 0x49, 0x48, 0x48, 0x48, 0x48, 0x47, 0x47, 0x47,\n    0x48, 0x48, 0x48, 0x48, 0x47, 0x47, 0x47, 0x47, 0x45, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4a, 0x4a,\n    0x4b, 0x4f, 0x51, 0x4f, 0x4d, 0x50, 0x5a, 0x63, 0x72, 0x80, 0x88, 0x86, 0x87, 0x8e, 0x8e, 0x87,\n    0x91, 0x92, 0x94, 0x96, 0x96, 0x95, 0x94, 0x93, 0x94, 0x97, 0x97, 0x95, 0x99, 0x96, 0x7d, 0x60,\n    0x4e, 0x4f, 0x55, 0x64, 0x75, 0x81, 0x82, 0x7f, 0x80, 0x80, 0x7f, 0x7e, 0x7e, 0x7e, 0x7f, 0x7f,\n    0x81, 0x7d, 0x74, 0x65, 0x57, 0x53, 0x5a, 0x61, 0x7e, 0x94, 0x9a, 0x94, 0x8a, 0x6f, 0x59, 0x5a,\n    0x5e, 0x63, 0x6d, 0x79, 0x80, 0x80, 0x78, 0x71, 0x65, 0x5f, 0x57, 0x54, 0x54, 0x56, 0x56, 0x56,\n    0x67, 0x7e, 0x90, 0x85, 0x67, 0x56, 0x61, 0x73, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x79,\n    0x77, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x79, 0x77, 0x75, 0x72, 0x6f, 0x6e, 0x6d, 0x6d,\n    0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x69, 0x68, 0x68, 0x68, 0x67, 0x67, 0x67, 0x67,\n    0x68, 0x6e, 0x76, 0x7a, 0x7a, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c,\n    0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c,\n    0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x76,\n    0x67, 0x68, 0x68, 0x69, 0x68, 0x67, 0x65, 0x64, 0x66, 0x65, 0x65, 0x65, 0x66, 0x67, 0x69, 0x6a,\n    0x69, 0x69, 0x68, 0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6c, 0x6b, 0x69, 0x68, 0x67, 0x66, 0x67, 0x67,\n    0x64, 0x64, 0x64, 0x63, 0x63, 0x62, 0x62, 0x62, 0x61, 0x61, 0x61, 0x61, 0x63, 0x65, 0x66, 0x68,\n    0x66, 0x65, 0x65, 0x65, 0x66, 0x67, 0x69, 0x6a, 0x6d, 0x6c, 0x6a, 0x68, 0x67, 0x67, 0x67, 0x67,\n    0x68, 0x69, 0x6a, 0x6a, 0x6a, 0x69, 0x68, 0x67, 0x68, 0x68, 0x67, 0x66, 0x66, 0x66, 0x67, 0x68,\n    0x66, 0x62, 0x5b, 0x54, 0x50, 0x50, 0x51, 0x52, 0x54, 0x54, 0x53, 0x51, 0x4e, 0x4b, 0x48, 0x47,\n    0x48, 0x47, 0x46, 0x44, 0x43, 0x42, 0x43, 0x43, 0x47, 0x47, 0x47, 0x47, 0x46, 0x46, 0x46, 0x46,\n    0x49, 0x49, 0x48, 0x48, 0x48, 0x47, 0x47, 0x47, 0x45, 0x46, 0x46, 0x47, 0x48, 0x49, 0x4a, 0x4a,\n    0x4a, 0x4f, 0x53, 0x51, 0x4e, 0x52, 0x5f, 0x6a, 0x7b, 0x86, 0x8b, 0x88, 0x8a, 0x92, 0x91, 0x8a,\n    0x91, 0x93, 0x95, 0x97, 0x97, 0x95, 0x93, 0x92, 0x95, 0x98, 0x98, 0x96, 0x9a, 0x96, 0x7c, 0x5e,\n    0x4f, 0x4f, 0x56, 0x66, 0x79, 0x84, 0x83, 0x7e, 0x82, 0x81, 0x80, 0x7e, 0x7e, 0x7f, 0x80, 0x80,\n    0x7e, 0x7c, 0x76, 0x69, 0x5b, 0x56, 0x59, 0x5f, 0x7f, 0x94, 0x9a, 0x93, 0x89, 0x6f, 0x59, 0x5b,\n    0x58, 0x5d, 0x66, 0x72, 0x7c, 0x7e, 0x7b, 0x76, 0x6d, 0x66, 0x5e, 0x59, 0x57, 0x57, 0x56, 0x54,\n    0x67, 0x7f, 0x90, 0x85, 0x67, 0x57, 0x61, 0x73, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79,\n    0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x76, 0x74, 0x71, 0x6f, 0x6d, 0x6c, 0x6c, 0x6c,\n    0x6a, 0x6b, 0x6b, 0x6c, 0x6c, 0x6c, 0x6b, 0x6b, 0x69, 0x69, 0x69, 0x68, 0x68, 0x67, 0x66, 0x66,\n    0x67, 0x6d, 0x75, 0x7a, 0x7a, 0x79, 0x79, 0x7a, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7b,\n    0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79,\n    0x77, 0x78, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x77,\n    0x66, 0x67, 0x68, 0x69, 0x68, 0x66, 0x65, 0x63, 0x65, 0x65, 0x64, 0x64, 0x65, 0x67, 0x68, 0x69,\n    0x69, 0x69, 0x68, 0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6b, 0x6a, 0x69, 0x67, 0x67, 0x67, 0x68, 0x68,\n    0x65, 0x65, 0x65, 0x64, 0x64, 0x63, 0x63, 0x62, 0x60, 0x60, 0x60, 0x60, 0x61, 0x63, 0x65, 0x66,\n    0x66, 0x66, 0x65, 0x66, 0x67, 0x68, 0x6a, 0x6b, 0x6c, 0x6b, 0x69, 0x68, 0x67, 0x67, 0x68, 0x68,\n    0x68, 0x69, 0x6a, 0x6b, 0x6b, 0x6a, 0x68, 0x67, 0x69, 0x68, 0x67, 0x66, 0x66, 0x67, 0x68, 0x68,\n    0x66, 0x62, 0x5b, 0x54, 0x50, 0x4f, 0x51, 0x53, 0x56, 0x56, 0x54, 0x52, 0x4f, 0x4b, 0x48, 0x46,\n    0x49, 0x47, 0x45, 0x43, 0x41, 0x41, 0x40, 0x40, 0x47, 0x46, 0x46, 0x46, 0x46, 0x45, 0x45, 0x45,\n    0x49, 0x49, 0x48, 0x48, 0x48, 0x47, 0x47, 0x47, 0x45, 0x46, 0x47, 0x47, 0x49, 0x49, 0x4a, 0x4b,\n    0x49, 0x4f, 0x54, 0x52, 0x4f, 0x54, 0x62, 0x6f, 0x81, 0x8b, 0x8f, 0x8b, 0x8d, 0x95, 0x95, 0x8d,\n    0x91, 0x93, 0x95, 0x97, 0x97, 0x96, 0x93, 0x92, 0x95, 0x99, 0x98, 0x97, 0x9a, 0x96, 0x7c, 0x5e,\n    0x50, 0x50, 0x56, 0x65, 0x78, 0x81, 0x7e, 0x77, 0x83, 0x82, 0x80, 0x7f, 0x7e, 0x7f, 0x80, 0x81,\n    0x7a, 0x7a, 0x76, 0x6a, 0x5d, 0x56, 0x57, 0x5c, 0x80, 0x95, 0x9a, 0x93, 0x89, 0x6f, 0x59, 0x5b,\n    0x53, 0x57, 0x60, 0x6c, 0x77, 0x7c, 0x7b, 0x78, 0x73, 0x6c, 0x63, 0x5c, 0x5a, 0x58, 0x55, 0x53,\n    0x67, 0x7f, 0x91, 0x85, 0x68, 0x57, 0x61, 0x73, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x79,\n    0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x74, 0x72, 0x6f, 0x6d, 0x6b, 0x6b, 0x6b, 0x6c,\n    0x6b, 0x6b, 0x6c, 0x6c, 0x6d, 0x6c, 0x6c, 0x6c, 0x69, 0x69, 0x69, 0x68, 0x68, 0x67, 0x65, 0x65,\n    0x66, 0x6d, 0x75, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x77, 0x77, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7b,\n    0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x77,\n    0x76, 0x77, 0x77, 0x77, 0x78, 0x79, 0x79, 0x79, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e,\n    0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x77,\n    0x65, 0x64, 0x62, 0x61, 0x62, 0x65, 0x68, 0x6a, 0x63, 0x65, 0x68, 0x6b, 0x6c, 0x6b, 0x69, 0x68,\n    0x65, 0x67, 0x69, 0x6b, 0x6c, 0x6c, 0x6b, 0x6a, 0x6c, 0x6a, 0x67, 0x64, 0x62, 0x61, 0x61, 0x62,\n    0x62, 0x63, 0x64, 0x65, 0x65, 0x63, 0x62, 0x60, 0x5f, 0x5f, 0x60, 0x62, 0x63, 0x64, 0x65, 0x65,\n    0x64, 0x63, 0x63, 0x64, 0x66, 0x69, 0x6c, 0x6e, 0x6a, 0x69, 0x68, 0x67, 0x67, 0x67, 0x68, 0x68,\n    0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x6b, 0x6b, 0x6a, 0x69, 0x68, 0x67, 0x66, 0x66,\n    0x61, 0x5c, 0x54, 0x4d, 0x4a, 0x4b, 0x4f, 0x52, 0x54, 0x56, 0x58, 0x58, 0x54, 0x4e, 0x48, 0x44,\n    0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x41, 0x40, 0x40, 0x40, 0x41, 0x42, 0x44, 0x45,\n    0x46, 0x47, 0x49, 0x4a, 0x4a, 0x49, 0x47, 0x46, 0x45, 0x46, 0x46, 0x47, 0x48, 0x49, 0x4a, 0x4a,\n    0x49, 0x50, 0x55, 0x54, 0x51, 0x56, 0x64, 0x70, 0x85, 0x87, 0x89, 0x8c, 0x8f, 0x90, 0x91, 0x91,\n    0x96, 0x95, 0x93, 0x92, 0x92, 0x94, 0x96, 0x98, 0x98, 0x9b, 0x99, 0x97, 0x99, 0x95, 0x7b, 0x5d,\n    0x52, 0x50, 0x53, 0x5e, 0x6f, 0x7d, 0x83, 0x83, 0x84, 0x7d, 0x78, 0x7a, 0x82, 0x85, 0x80, 0x79,\n    0x7a, 0x71, 0x66, 0x62, 0x64, 0x64, 0x61, 0x5d, 0x82, 0x95, 0x99, 0x93, 0x8b, 0x71, 0x58, 0x57,\n    0x56, 0x55, 0x59, 0x64, 0x73, 0x7d, 0x7e, 0x7c, 0x7a, 0x73, 0x71, 0x71, 0x67, 0x56, 0x51, 0x57,\n    0x64, 0x81, 0x93, 0x86, 0x70, 0x68, 0x6c, 0x70, 0x72, 0x73, 0x75, 0x77, 0x78, 0x78, 0x78, 0x77,\n    0x77, 0x78, 0x7a, 0x7b, 0x79, 0x75, 0x71, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6c, 0x6c, 0x6c,\n    0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6a, 0x6b, 0x6b, 0x6b, 0x6b, 0x6a, 0x6a, 0x69,\n    0x6d, 0x73, 0x79, 0x7c, 0x7b, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x77, 0x76, 0x76,\n    0x74, 0x75, 0x76, 0x77, 0x79, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c,\n    0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d,\n    0x65, 0x64, 0x63, 0x62, 0x63, 0x65, 0x68, 0x6a, 0x65, 0x66, 0x69, 0x6b, 0x6b, 0x6a, 0x68, 0x67,\n    0x66, 0x67, 0x69, 0x6a, 0x6b, 0x6a, 0x6a, 0x69, 0x6b, 0x69, 0x67, 0x64, 0x62, 0x62, 0x62, 0x62,\n    0x62, 0x63, 0x64, 0x65, 0x65, 0x63, 0x62, 0x61, 0x5f, 0x60, 0x60, 0x61, 0x63, 0x64, 0x65, 0x65,\n    0x63, 0x63, 0x63, 0x64, 0x66, 0x69, 0x6b, 0x6d, 0x6a, 0x69, 0x68, 0x67, 0x66, 0x67, 0x67, 0x68,\n    0x66, 0x66, 0x66, 0x67, 0x67, 0x67, 0x68, 0x68, 0x6c, 0x6c, 0x6b, 0x6a, 0x68, 0x67, 0x66, 0x66,\n    0x61, 0x5c, 0x55, 0x50, 0x4e, 0x4f, 0x53, 0x56, 0x5a, 0x5c, 0x5e, 0x5f, 0x5c, 0x57, 0x50, 0x4c,\n    0x48, 0x47, 0x47, 0x46, 0x45, 0x45, 0x44, 0x44, 0x43, 0x43, 0x42, 0x42, 0x43, 0x44, 0x46, 0x47,\n    0x46, 0x47, 0x48, 0x49, 0x49, 0x48, 0x47, 0x46, 0x46, 0x46, 0x47, 0x48, 0x49, 0x4a, 0x4a, 0x4b,\n    0x4c, 0x52, 0x56, 0x55, 0x54, 0x5c, 0x6b, 0x79, 0x87, 0x88, 0x8b, 0x8d, 0x90, 0x91, 0x92, 0x92,\n    0x96, 0x95, 0x94, 0x93, 0x93, 0x95, 0x97, 0x98, 0x98, 0x9a, 0x99, 0x97, 0x99, 0x94, 0x7a, 0x5d,\n    0x50, 0x4d, 0x4f, 0x58, 0x66, 0x71, 0x76, 0x77, 0x7a, 0x79, 0x79, 0x7b, 0x7f, 0x81, 0x80, 0x7e,\n    0x79, 0x70, 0x67, 0x64, 0x66, 0x67, 0x63, 0x5f, 0x82, 0x95, 0x99, 0x93, 0x8b, 0x71, 0x58, 0x57,\n    0x57, 0x55, 0x57, 0x61, 0x70, 0x7b, 0x7e, 0x7d, 0x73, 0x6d, 0x6d, 0x6f, 0x66, 0x57, 0x53, 0x5a,\n    0x63, 0x80, 0x93, 0x87, 0x72, 0x6a, 0x6f, 0x73, 0x73, 0x74, 0x76, 0x77, 0x78, 0x79, 0x79, 0x79,\n    0x79, 0x79, 0x79, 0x77, 0x75, 0x72, 0x6f, 0x6d, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6d, 0x6d,\n    0x6b, 0x6b, 0x6b, 0x6b, 0x6a, 0x6a, 0x6a, 0x69, 0x69, 0x6a, 0x6a, 0x6a, 0x69, 0x69, 0x68, 0x68,\n    0x6d, 0x72, 0x79, 0x7c, 0x7b, 0x7a, 0x7a, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x77,\n    0x76, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x66, 0x65, 0x64, 0x63, 0x64, 0x65, 0x68, 0x69, 0x67, 0x68, 0x69, 0x6a, 0x6a, 0x69, 0x67, 0x65,\n    0x66, 0x67, 0x68, 0x69, 0x69, 0x68, 0x67, 0x67, 0x69, 0x68, 0x66, 0x64, 0x63, 0x62, 0x62, 0x62,\n    0x63, 0x64, 0x64, 0x65, 0x64, 0x63, 0x62, 0x61, 0x5f, 0x60, 0x61, 0x62, 0x63, 0x63, 0x64, 0x65,\n    0x63, 0x63, 0x63, 0x64, 0x66, 0x68, 0x6a, 0x6c, 0x6a, 0x69, 0x68, 0x67, 0x66, 0x67, 0x67, 0x68,\n    0x65, 0x65, 0x66, 0x67, 0x68, 0x69, 0x69, 0x6a, 0x6e, 0x6d, 0x6c, 0x6b, 0x69, 0x68, 0x66, 0x66,\n    0x61, 0x5e, 0x59, 0x55, 0x54, 0x57, 0x5b, 0x5d, 0x63, 0x65, 0x67, 0x68, 0x66, 0x61, 0x5c, 0x59,\n    0x50, 0x4f, 0x4e, 0x4c, 0x4a, 0x48, 0x47, 0x46, 0x47, 0x46, 0x45, 0x45, 0x45, 0x46, 0x47, 0x48,\n    0x47, 0x47, 0x48, 0x49, 0x49, 0x48, 0x47, 0x47, 0x46, 0x46, 0x47, 0x48, 0x49, 0x4a, 0x4b, 0x4b,\n    0x50, 0x53, 0x55, 0x55, 0x58, 0x64, 0x76, 0x84, 0x89, 0x8b, 0x8d, 0x8f, 0x92, 0x93, 0x93, 0x93,\n    0x97, 0x96, 0x94, 0x93, 0x93, 0x95, 0x97, 0x99, 0x98, 0x9a, 0x99, 0x96, 0x99, 0x94, 0x79, 0x5c,\n    0x4d, 0x4b, 0x4b, 0x50, 0x59, 0x61, 0x65, 0x66, 0x6d, 0x74, 0x7a, 0x7b, 0x78, 0x77, 0x7c, 0x81,\n    0x79, 0x72, 0x6a, 0x69, 0x6b, 0x6c, 0x68, 0x63, 0x82, 0x95, 0x99, 0x93, 0x8b, 0x71, 0x58, 0x57,\n    0x59, 0x55, 0x55, 0x5d, 0x6c, 0x78, 0x7e, 0x7f, 0x6e, 0x69, 0x6a, 0x6d, 0x66, 0x58, 0x55, 0x5c,\n    0x61, 0x7f, 0x94, 0x89, 0x75, 0x6e, 0x74, 0x78, 0x73, 0x75, 0x76, 0x78, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x7c, 0x7a, 0x76, 0x72, 0x6f, 0x6d, 0x6c, 0x6b, 0x6a, 0x6a, 0x6b, 0x6b, 0x6c, 0x6c, 0x6d, 0x6d,\n    0x6c, 0x6c, 0x6b, 0x6a, 0x69, 0x68, 0x68, 0x67, 0x68, 0x68, 0x68, 0x67, 0x67, 0x67, 0x67, 0x67,\n    0x6d, 0x72, 0x78, 0x7c, 0x7b, 0x7a, 0x7b, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x78, 0x78,\n    0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x77, 0x77, 0x77,\n    0x77, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a,\n    0x66, 0x66, 0x65, 0x64, 0x65, 0x66, 0x68, 0x69, 0x69, 0x69, 0x6a, 0x6a, 0x69, 0x67, 0x65, 0x64,\n    0x67, 0x67, 0x67, 0x67, 0x67, 0x66, 0x66, 0x65, 0x66, 0x66, 0x65, 0x64, 0x64, 0x63, 0x63, 0x63,\n    0x64, 0x64, 0x64, 0x64, 0x64, 0x63, 0x63, 0x62, 0x61, 0x61, 0x62, 0x62, 0x63, 0x64, 0x64, 0x65,\n    0x63, 0x64, 0x64, 0x65, 0x67, 0x69, 0x6a, 0x6b, 0x6a, 0x69, 0x68, 0x67, 0x67, 0x67, 0x68, 0x68,\n    0x64, 0x64, 0x65, 0x67, 0x68, 0x69, 0x6a, 0x6b, 0x6f, 0x6e, 0x6d, 0x6b, 0x6a, 0x68, 0x67, 0x67,\n    0x62, 0x60, 0x5d, 0x5b, 0x5b, 0x5e, 0x61, 0x64, 0x67, 0x69, 0x6c, 0x6d, 0x6c, 0x69, 0x65, 0x63,\n    0x5c, 0x5b, 0x59, 0x57, 0x54, 0x51, 0x4f, 0x4e, 0x4b, 0x4a, 0x48, 0x46, 0x46, 0x45, 0x46, 0x46,\n    0x47, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x47, 0x47, 0x47, 0x48, 0x49, 0x4a, 0x4b, 0x4b, 0x4c,\n    0x50, 0x51, 0x53, 0x55, 0x5b, 0x6a, 0x7d, 0x8b, 0x8c, 0x8d, 0x8f, 0x92, 0x93, 0x94, 0x95, 0x95,\n    0x97, 0x96, 0x94, 0x93, 0x93, 0x95, 0x97, 0x99, 0x97, 0x9a, 0x98, 0x96, 0x98, 0x93, 0x78, 0x5a,\n    0x4e, 0x4c, 0x4b, 0x4d, 0x50, 0x54, 0x57, 0x58, 0x64, 0x71, 0x7c, 0x7a, 0x6f, 0x69, 0x70, 0x7a,\n    0x7c, 0x76, 0x71, 0x71, 0x75, 0x75, 0x6f, 0x69, 0x82, 0x95, 0x99, 0x93, 0x8b, 0x71, 0x58, 0x57,\n    0x5a, 0x55, 0x52, 0x59, 0x67, 0x75, 0x7c, 0x7e, 0x71, 0x6c, 0x6d, 0x70, 0x68, 0x59, 0x55, 0x5b,\n    0x5f, 0x7e, 0x94, 0x8b, 0x77, 0x72, 0x77, 0x7b, 0x75, 0x76, 0x77, 0x79, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x7d, 0x79, 0x73, 0x6e, 0x6a, 0x69, 0x69, 0x6a, 0x67, 0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6c, 0x6d,\n    0x6c, 0x6c, 0x6b, 0x69, 0x68, 0x67, 0x66, 0x65, 0x67, 0x67, 0x66, 0x66, 0x66, 0x67, 0x68, 0x68,\n    0x6e, 0x73, 0x79, 0x7b, 0x7b, 0x7a, 0x7c, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79,\n    0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x79, 0x79, 0x78, 0x77, 0x76, 0x76, 0x75, 0x75,\n    0x75, 0x76, 0x76, 0x77, 0x79, 0x7a, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x78,\n    0x67, 0x67, 0x66, 0x66, 0x66, 0x67, 0x68, 0x68, 0x6a, 0x6a, 0x69, 0x69, 0x68, 0x66, 0x65, 0x64,\n    0x68, 0x67, 0x67, 0x66, 0x66, 0x66, 0x66, 0x66, 0x65, 0x65, 0x65, 0x65, 0x65, 0x65, 0x65, 0x65,\n    0x65, 0x65, 0x64, 0x64, 0x64, 0x63, 0x63, 0x64, 0x63, 0x63, 0x63, 0x64, 0x64, 0x65, 0x65, 0x65,\n    0x64, 0x65, 0x66, 0x67, 0x69, 0x6a, 0x6a, 0x6a, 0x6b, 0x6a, 0x69, 0x68, 0x68, 0x68, 0x69, 0x69,\n    0x64, 0x65, 0x66, 0x67, 0x69, 0x6a, 0x6b, 0x6b, 0x6e, 0x6d, 0x6c, 0x6b, 0x6a, 0x69, 0x68, 0x68,\n    0x65, 0x63, 0x61, 0x60, 0x61, 0x63, 0x65, 0x67, 0x67, 0x69, 0x6b, 0x6d, 0x6e, 0x6c, 0x6a, 0x68,\n    0x68, 0x67, 0x65, 0x62, 0x5f, 0x5d, 0x5b, 0x5a, 0x50, 0x4f, 0x4c, 0x49, 0x47, 0x45, 0x44, 0x44,\n    0x48, 0x48, 0x48, 0x47, 0x47, 0x48, 0x48, 0x48, 0x47, 0x48, 0x48, 0x49, 0x4a, 0x4b, 0x4c, 0x4d,\n    0x4f, 0x4f, 0x50, 0x55, 0x5f, 0x6f, 0x81, 0x8c, 0x8e, 0x8f, 0x91, 0x93, 0x95, 0x95, 0x96, 0x96,\n    0x96, 0x95, 0x93, 0x92, 0x93, 0x94, 0x96, 0x98, 0x97, 0x9a, 0x98, 0x95, 0x97, 0x92, 0x77, 0x59,\n    0x50, 0x50, 0x4f, 0x4d, 0x4c, 0x4d, 0x50, 0x52, 0x62, 0x71, 0x7d, 0x79, 0x69, 0x5f, 0x65, 0x6f,\n    0x80, 0x7c, 0x79, 0x7a, 0x7e, 0x7d, 0x76, 0x6f, 0x82, 0x95, 0x99, 0x93, 0x8b, 0x71, 0x58, 0x57,\n    0x5a, 0x55, 0x52, 0x57, 0x65, 0x72, 0x78, 0x7a, 0x78, 0x73, 0x73, 0x75, 0x6b, 0x59, 0x53, 0x58,\n    0x5e, 0x7d, 0x94, 0x8b, 0x78, 0x72, 0x77, 0x7b, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x79, 0x79, 0x78,\n    0x79, 0x76, 0x71, 0x6c, 0x68, 0x67, 0x68, 0x69, 0x66, 0x67, 0x67, 0x68, 0x69, 0x6a, 0x6b, 0x6b,\n    0x6b, 0x6b, 0x6a, 0x68, 0x67, 0x66, 0x65, 0x64, 0x68, 0x67, 0x67, 0x67, 0x68, 0x6a, 0x6c, 0x6d,\n    0x70, 0x74, 0x79, 0x7b, 0x7a, 0x7a, 0x7b, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x76, 0x76, 0x75,\n    0x76, 0x76, 0x77, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x77, 0x77,\n    0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x68, 0x69, 0x69, 0x69, 0x68, 0x67, 0x66, 0x65, 0x65,\n    0x68, 0x67, 0x66, 0x66, 0x66, 0x66, 0x67, 0x68, 0x64, 0x64, 0x66, 0x67, 0x68, 0x68, 0x67, 0x67,\n    0x66, 0x66, 0x64, 0x64, 0x63, 0x63, 0x64, 0x65, 0x65, 0x65, 0x65, 0x66, 0x66, 0x66, 0x67, 0x67,\n    0x66, 0x67, 0x68, 0x6a, 0x6b, 0x6b, 0x6b, 0x6b, 0x6c, 0x6c, 0x6b, 0x6a, 0x69, 0x6a, 0x6a, 0x6b,\n    0x66, 0x66, 0x67, 0x68, 0x69, 0x6a, 0x6a, 0x6b, 0x6b, 0x6b, 0x6a, 0x6a, 0x6a, 0x69, 0x69, 0x69,\n    0x67, 0x67, 0x65, 0x64, 0x64, 0x65, 0x66, 0x67, 0x65, 0x66, 0x69, 0x6c, 0x6d, 0x6d, 0x6c, 0x6b,\n    0x6f, 0x6e, 0x6c, 0x6b, 0x69, 0x67, 0x65, 0x65, 0x5a, 0x58, 0x54, 0x4f, 0x4b, 0x47, 0x45, 0x44,\n    0x49, 0x48, 0x47, 0x47, 0x47, 0x47, 0x48, 0x49, 0x48, 0x48, 0x49, 0x4a, 0x4b, 0x4c, 0x4d, 0x4d,\n    0x50, 0x50, 0x52, 0x59, 0x65, 0x74, 0x83, 0x8b, 0x8f, 0x90, 0x92, 0x94, 0x95, 0x96, 0x96, 0x96,\n    0x95, 0x94, 0x92, 0x91, 0x91, 0x93, 0x95, 0x97, 0x97, 0x9a, 0x98, 0x95, 0x96, 0x91, 0x76, 0x58,\n    0x51, 0x52, 0x52, 0x4f, 0x4b, 0x4a, 0x4e, 0x52, 0x64, 0x71, 0x7c, 0x79, 0x6b, 0x61, 0x64, 0x6a,\n    0x82, 0x7e, 0x7d, 0x7f, 0x83, 0x80, 0x77, 0x6f, 0x82, 0x95, 0x99, 0x93, 0x8b, 0x71, 0x58, 0x57,\n    0x5a, 0x55, 0x52, 0x58, 0x64, 0x6f, 0x73, 0x72, 0x7a, 0x75, 0x75, 0x76, 0x6b, 0x59, 0x51, 0x56,\n    0x5d, 0x7d, 0x94, 0x8b, 0x77, 0x70, 0x74, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x77, 0x76, 0x75,\n    0x73, 0x71, 0x6f, 0x6c, 0x6a, 0x69, 0x69, 0x69, 0x66, 0x66, 0x67, 0x67, 0x68, 0x68, 0x69, 0x69,\n    0x69, 0x69, 0x68, 0x67, 0x66, 0x65, 0x65, 0x64, 0x69, 0x68, 0x68, 0x69, 0x6b, 0x6f, 0x72, 0x75,\n    0x73, 0x77, 0x7a, 0x7b, 0x79, 0x79, 0x7a, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d,\n    0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78,\n    0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77,\n    0x68, 0x68, 0x68, 0x68, 0x68, 0x68, 0x67, 0x67, 0x69, 0x68, 0x67, 0x67, 0x66, 0x66, 0x66, 0x66,\n    0x67, 0x67, 0x66, 0x65, 0x66, 0x68, 0x69, 0x6b, 0x63, 0x65, 0x67, 0x69, 0x6a, 0x6a, 0x69, 0x69,\n    0x67, 0x66, 0x64, 0x63, 0x63, 0x63, 0x65, 0x65, 0x67, 0x67, 0x68, 0x68, 0x68, 0x68, 0x68, 0x68,\n    0x67, 0x68, 0x6a, 0x6c, 0x6d, 0x6d, 0x6c, 0x6c, 0x6e, 0x6d, 0x6c, 0x6b, 0x6b, 0x6b, 0x6c, 0x6c,\n    0x67, 0x68, 0x68, 0x68, 0x69, 0x69, 0x69, 0x69, 0x68, 0x68, 0x68, 0x69, 0x69, 0x6a, 0x6a, 0x6a,\n    0x6a, 0x69, 0x68, 0x67, 0x66, 0x65, 0x64, 0x64, 0x63, 0x65, 0x68, 0x6b, 0x6e, 0x6e, 0x6e, 0x6e,\n    0x6f, 0x6f, 0x6e, 0x6d, 0x6d, 0x6c, 0x6b, 0x6b, 0x67, 0x63, 0x5e, 0x58, 0x52, 0x4d, 0x49, 0x48,\n    0x49, 0x48, 0x47, 0x46, 0x46, 0x47, 0x48, 0x49, 0x48, 0x49, 0x4a, 0x4b, 0x4c, 0x4d, 0x4d, 0x4e,\n    0x53, 0x54, 0x57, 0x60, 0x6e, 0x7b, 0x85, 0x8a, 0x8f, 0x90, 0x92, 0x94, 0x95, 0x96, 0x95, 0x95,\n    0x93, 0x92, 0x91, 0x90, 0x90, 0x92, 0x94, 0x95, 0x97, 0x9a, 0x97, 0x94, 0x96, 0x90, 0x75, 0x57,\n    0x4f, 0x52, 0x53, 0x4f, 0x4a, 0x49, 0x4e, 0x53, 0x66, 0x70, 0x7b, 0x7c, 0x74, 0x6e, 0x6d, 0x70,\n    0x80, 0x7d, 0x7c, 0x7f, 0x82, 0x7e, 0x74, 0x6a, 0x82, 0x95, 0x99, 0x93, 0x8b, 0x71, 0x58, 0x57,\n    0x58, 0x55, 0x54, 0x5a, 0x65, 0x6d, 0x6d, 0x6b, 0x73, 0x6e, 0x70, 0x73, 0x6a, 0x58, 0x51, 0x56,\n    0x5d, 0x7d, 0x93, 0x8a, 0x75, 0x6d, 0x70, 0x73, 0x7a, 0x7a, 0x7a, 0x79, 0x77, 0x75, 0x73, 0x71,\n    0x6c, 0x6c, 0x6d, 0x6e, 0x6d, 0x6c, 0x6a, 0x69, 0x66, 0x66, 0x66, 0x67, 0x67, 0x67, 0x67, 0x67,\n    0x67, 0x67, 0x67, 0x66, 0x66, 0x65, 0x65, 0x65, 0x6a, 0x6a, 0x6a, 0x6c, 0x70, 0x75, 0x79, 0x7c,\n    0x76, 0x79, 0x7c, 0x7b, 0x79, 0x77, 0x79, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x79,\n    0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77,\n    0x68, 0x68, 0x69, 0x69, 0x69, 0x68, 0x67, 0x67, 0x68, 0x67, 0x67, 0x66, 0x66, 0x66, 0x67, 0x67,\n    0x67, 0x66, 0x66, 0x66, 0x67, 0x69, 0x6b, 0x6c, 0x63, 0x65, 0x67, 0x6a, 0x6b, 0x6b, 0x6b, 0x6a,\n    0x67, 0x66, 0x64, 0x63, 0x63, 0x63, 0x65, 0x66, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69,\n    0x68, 0x6a, 0x6c, 0x6d, 0x6e, 0x6e, 0x6d, 0x6c, 0x6f, 0x6e, 0x6d, 0x6c, 0x6c, 0x6c, 0x6d, 0x6e,\n    0x69, 0x69, 0x69, 0x69, 0x68, 0x68, 0x68, 0x68, 0x65, 0x66, 0x67, 0x68, 0x69, 0x6a, 0x6b, 0x6b,\n    0x6c, 0x6b, 0x6a, 0x68, 0x66, 0x64, 0x63, 0x62, 0x64, 0x65, 0x69, 0x6c, 0x6e, 0x70, 0x70, 0x70,\n    0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6f, 0x6c, 0x66, 0x5f, 0x58, 0x52, 0x4d, 0x4b,\n    0x4a, 0x49, 0x47, 0x46, 0x46, 0x47, 0x49, 0x4a, 0x49, 0x49, 0x4a, 0x4b, 0x4c, 0x4d, 0x4e, 0x4e,\n    0x56, 0x57, 0x5c, 0x67, 0x74, 0x80, 0x88, 0x8a, 0x8f, 0x90, 0x92, 0x94, 0x95, 0x95, 0x95, 0x95,\n    0x93, 0x91, 0x90, 0x8f, 0x8f, 0x91, 0x93, 0x94, 0x97, 0x99, 0x97, 0x94, 0x95, 0x90, 0x75, 0x57,\n    0x4c, 0x50, 0x52, 0x4e, 0x49, 0x48, 0x4e, 0x54, 0x68, 0x70, 0x79, 0x7e, 0x7d, 0x7a, 0x77, 0x77,\n    0x7d, 0x7a, 0x7a, 0x7d, 0x80, 0x7b, 0x70, 0x66, 0x82, 0x95, 0x99, 0x93, 0x8b, 0x71, 0x58, 0x57,\n    0x57, 0x55, 0x55, 0x5c, 0x66, 0x6c, 0x6a, 0x66, 0x6b, 0x67, 0x6a, 0x6f, 0x68, 0x58, 0x52, 0x58,\n    0x5e, 0x7d, 0x93, 0x89, 0x74, 0x6b, 0x6d, 0x6f, 0x7b, 0x7b, 0x7a, 0x78, 0x76, 0x73, 0x70, 0x6f,\n    0x67, 0x69, 0x6c, 0x6f, 0x70, 0x6e, 0x6b, 0x69, 0x67, 0x67, 0x67, 0x66, 0x66, 0x65, 0x65, 0x65,\n    0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x6b, 0x6b, 0x6c, 0x6e, 0x72, 0x78, 0x7e, 0x81,\n    0x78, 0x7b, 0x7d, 0x7b, 0x78, 0x76, 0x78, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79,\n    0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7f,\n    0x7f, 0x7f, 0x7e, 0x7d, 0x7c, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x77,\n    0x67, 0x68, 0x69, 0x69, 0x69, 0x69, 0x68, 0x67, 0x67, 0x68, 0x68, 0x69, 0x68, 0x67, 0x66, 0x65,\n    0x64, 0x65, 0x67, 0x69, 0x6b, 0x6c, 0x6c, 0x6c, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69,\n    0x65, 0x65, 0x65, 0x66, 0x67, 0x67, 0x68, 0x68, 0x68, 0x68, 0x69, 0x6a, 0x6b, 0x6b, 0x6b, 0x6b,\n    0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6d, 0x6d, 0x6c, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f,\n    0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6b, 0x6a, 0x68, 0x67, 0x67, 0x67, 0x68,\n    0x68, 0x69, 0x6a, 0x6b, 0x6a, 0x69, 0x67, 0x66, 0x67, 0x67, 0x68, 0x6a, 0x6c, 0x6d, 0x6f, 0x6f,\n    0x6f, 0x6f, 0x70, 0x70, 0x6f, 0x6e, 0x6d, 0x6c, 0x69, 0x6a, 0x6a, 0x69, 0x67, 0x62, 0x5e, 0x5b,\n    0x4d, 0x4c, 0x4a, 0x49, 0x48, 0x49, 0x4a, 0x4b, 0x48, 0x4a, 0x4c, 0x4e, 0x4f, 0x4e, 0x4c, 0x4b,\n    0x51, 0x56, 0x61, 0x6d, 0x78, 0x80, 0x86, 0x89, 0x8d, 0x90, 0x93, 0x95, 0x96, 0x95, 0x93, 0x92,\n    0x92, 0x92, 0x91, 0x91, 0x91, 0x92, 0x93, 0x93, 0x9e, 0x97, 0x93, 0x98, 0x9a, 0x8b, 0x6b, 0x51,\n    0x4c, 0x4d, 0x4e, 0x4d, 0x4c, 0x4f, 0x55, 0x5b, 0x69, 0x71, 0x7c, 0x83, 0x83, 0x7f, 0x7c, 0x7a,\n    0x83, 0x7d, 0x7d, 0x82, 0x7b, 0x6b, 0x64, 0x67, 0x82, 0x93, 0x96, 0x92, 0x8d, 0x74, 0x59, 0x55,\n    0x55, 0x53, 0x54, 0x5b, 0x67, 0x72, 0x7a, 0x7d, 0x78, 0x78, 0x75, 0x6e, 0x64, 0x5d, 0x59, 0x59,\n    0x5f, 0x79, 0x91, 0x8d, 0x74, 0x62, 0x65, 0x71, 0x79, 0x77, 0x74, 0x71, 0x6e, 0x6d, 0x6c, 0x6b,\n    0x69, 0x6b, 0x6e, 0x70, 0x70, 0x6e, 0x6c, 0x6a, 0x67, 0x68, 0x69, 0x69, 0x69, 0x68, 0x67, 0x66,\n    0x60, 0x62, 0x65, 0x68, 0x6b, 0x6d, 0x6e, 0x6e, 0x76, 0x76, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x7a,\n    0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7c, 0x7b, 0x79, 0x78, 0x77, 0x78, 0x79, 0x7a,\n    0x7b, 0x7b, 0x7a, 0x79, 0x7a, 0x7a, 0x7c, 0x7c, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x76, 0x76,\n    0x77, 0x77, 0x77, 0x78, 0x78, 0x79, 0x79, 0x79, 0x7d, 0x7e, 0x7f, 0x80, 0x80, 0x7f, 0x7e, 0x7d,\n    0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79,\n    0x67, 0x68, 0x69, 0x69, 0x69, 0x69, 0x68, 0x67, 0x65, 0x66, 0x67, 0x68, 0x68, 0x67, 0x66, 0x66,\n    0x64, 0x65, 0x67, 0x6a, 0x6b, 0x6c, 0x6c, 0x6c, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69,\n    0x65, 0x65, 0x66, 0x66, 0x67, 0x68, 0x68, 0x68, 0x69, 0x6a, 0x6a, 0x6b, 0x6c, 0x6c, 0x6c, 0x6c,\n    0x6c, 0x6d, 0x6e, 0x6e, 0x6e, 0x6e, 0x6d, 0x6c, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70,\n    0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6c, 0x6a, 0x69, 0x68, 0x68, 0x68, 0x69,\n    0x68, 0x69, 0x6a, 0x6a, 0x6a, 0x69, 0x67, 0x66, 0x67, 0x67, 0x69, 0x6a, 0x6c, 0x6e, 0x6f, 0x6f,\n    0x70, 0x70, 0x71, 0x71, 0x70, 0x6f, 0x6e, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6c, 0x68, 0x64, 0x62,\n    0x59, 0x56, 0x53, 0x4f, 0x4b, 0x49, 0x48, 0x48, 0x47, 0x48, 0x4a, 0x4c, 0x4e, 0x4f, 0x50, 0x51,\n    0x50, 0x56, 0x61, 0x6d, 0x79, 0x81, 0x87, 0x89, 0x8e, 0x90, 0x93, 0x95, 0x96, 0x95, 0x93, 0x92,\n    0x92, 0x92, 0x92, 0x92, 0x93, 0x93, 0x94, 0x95, 0x9a, 0x94, 0x91, 0x97, 0x9a, 0x8c, 0x6e, 0x54,\n    0x4b, 0x4c, 0x4c, 0x4a, 0x48, 0x4a, 0x50, 0x55, 0x6d, 0x73, 0x7b, 0x7f, 0x7f, 0x7d, 0x7c, 0x7c,\n    0x81, 0x7d, 0x7d, 0x7f, 0x74, 0x64, 0x60, 0x67, 0x83, 0x93, 0x96, 0x91, 0x8c, 0x74, 0x59, 0x55,\n    0x57, 0x55, 0x54, 0x5a, 0x63, 0x6d, 0x73, 0x75, 0x6a, 0x6c, 0x6c, 0x67, 0x5e, 0x57, 0x53, 0x52,\n    0x5f, 0x7a, 0x92, 0x90, 0x77, 0x64, 0x64, 0x6e, 0x76, 0x74, 0x72, 0x6f, 0x6d, 0x6c, 0x6b, 0x6b,\n    0x6a, 0x6b, 0x6d, 0x6f, 0x6f, 0x6d, 0x6a, 0x69, 0x68, 0x68, 0x69, 0x69, 0x69, 0x68, 0x67, 0x66,\n    0x64, 0x66, 0x69, 0x6c, 0x70, 0x72, 0x73, 0x74, 0x77, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x7a, 0x7b,\n    0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x79, 0x7a, 0x7b,\n    0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x77, 0x76, 0x76,\n    0x77, 0x77, 0x78, 0x78, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79,\n    0x67, 0x68, 0x69, 0x69, 0x69, 0x69, 0x68, 0x67, 0x63, 0x64, 0x66, 0x67, 0x67, 0x67, 0x67, 0x67,\n    0x64, 0x66, 0x68, 0x6a, 0x6c, 0x6d, 0x6d, 0x6d, 0x68, 0x68, 0x68, 0x68, 0x68, 0x68, 0x68, 0x68,\n    0x66, 0x66, 0x66, 0x67, 0x68, 0x68, 0x69, 0x69, 0x6b, 0x6b, 0x6c, 0x6c, 0x6d, 0x6e, 0x6e, 0x6f,\n    0x6f, 0x6f, 0x70, 0x70, 0x6f, 0x6e, 0x6d, 0x6c, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x70, 0x70, 0x71,\n    0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6d, 0x6b, 0x6a, 0x69, 0x69, 0x6a, 0x6a,\n    0x69, 0x69, 0x6a, 0x6a, 0x6a, 0x69, 0x68, 0x67, 0x67, 0x68, 0x69, 0x6b, 0x6c, 0x6e, 0x6f, 0x70,\n    0x71, 0x71, 0x72, 0x73, 0x72, 0x71, 0x70, 0x6f, 0x71, 0x72, 0x73, 0x73, 0x71, 0x6f, 0x6c, 0x6a,\n    0x68, 0x65, 0x60, 0x5a, 0x54, 0x4e, 0x4b, 0x49, 0x49, 0x48, 0x48, 0x49, 0x4b, 0x4f, 0x53, 0x56,\n    0x50, 0x57, 0x62, 0x6f, 0x7a, 0x83, 0x88, 0x8b, 0x8f, 0x90, 0x93, 0x95, 0x95, 0x95, 0x93, 0x92,\n    0x91, 0x92, 0x93, 0x94, 0x95, 0x95, 0x96, 0x96, 0x97, 0x92, 0x91, 0x96, 0x98, 0x8b, 0x6f, 0x58,\n    0x50, 0x51, 0x51, 0x4f, 0x4e, 0x50, 0x56, 0x5b, 0x73, 0x76, 0x7a, 0x7a, 0x79, 0x7a, 0x7c, 0x7f,\n    0x7e, 0x7c, 0x7c, 0x79, 0x69, 0x58, 0x5a, 0x68, 0x83, 0x94, 0x96, 0x91, 0x8c, 0x74, 0x59, 0x56,\n    0x58, 0x56, 0x55, 0x59, 0x61, 0x68, 0x6d, 0x6e, 0x64, 0x67, 0x6a, 0x67, 0x60, 0x57, 0x52, 0x50,\n    0x5e, 0x79, 0x93, 0x92, 0x7b, 0x66, 0x62, 0x69, 0x71, 0x70, 0x6e, 0x6c, 0x6b, 0x6a, 0x6a, 0x6a,\n    0x6a, 0x6b, 0x6d, 0x6d, 0x6d, 0x6b, 0x69, 0x67, 0x68, 0x69, 0x69, 0x6a, 0x69, 0x68, 0x67, 0x66,\n    0x67, 0x69, 0x6d, 0x71, 0x75, 0x78, 0x79, 0x7a, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7b,\n    0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7c, 0x7d,\n    0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x78, 0x77, 0x77,\n    0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x77, 0x77, 0x78, 0x79, 0x79, 0x78, 0x77, 0x77,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x67, 0x68, 0x69, 0x69, 0x69, 0x69, 0x68, 0x67, 0x62, 0x63, 0x65, 0x66, 0x67, 0x68, 0x67, 0x67,\n    0x65, 0x66, 0x68, 0x6b, 0x6c, 0x6d, 0x6e, 0x6e, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67,\n    0x67, 0x67, 0x67, 0x68, 0x69, 0x69, 0x6a, 0x6a, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x70, 0x70,\n    0x71, 0x71, 0x71, 0x71, 0x70, 0x6e, 0x6d, 0x6c, 0x6d, 0x6d, 0x6e, 0x6f, 0x70, 0x70, 0x71, 0x71,\n    0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6d, 0x6c, 0x6b, 0x6a, 0x6b, 0x6b, 0x6c,\n    0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x69, 0x68, 0x68, 0x68, 0x69, 0x6a, 0x6b, 0x6d, 0x6f, 0x70, 0x71,\n    0x72, 0x73, 0x74, 0x74, 0x74, 0x73, 0x72, 0x71, 0x73, 0x73, 0x74, 0x74, 0x74, 0x72, 0x71, 0x70,\n    0x74, 0x71, 0x6d, 0x67, 0x61, 0x5c, 0x58, 0x56, 0x51, 0x4e, 0x4b, 0x48, 0x49, 0x4c, 0x50, 0x53,\n    0x52, 0x59, 0x64, 0x72, 0x7d, 0x86, 0x8a, 0x8c, 0x90, 0x91, 0x93, 0x94, 0x94, 0x94, 0x93, 0x92,\n    0x91, 0x92, 0x94, 0x95, 0x96, 0x97, 0x97, 0x97, 0x98, 0x94, 0x93, 0x97, 0x96, 0x88, 0x6e, 0x58,\n    0x4d, 0x4f, 0x50, 0x50, 0x51, 0x55, 0x5c, 0x61, 0x7a, 0x7a, 0x79, 0x76, 0x74, 0x76, 0x7c, 0x82,\n    0x7c, 0x79, 0x77, 0x70, 0x5d, 0x4e, 0x56, 0x68, 0x84, 0x94, 0x96, 0x91, 0x8c, 0x74, 0x5a, 0x57,\n    0x57, 0x55, 0x54, 0x59, 0x61, 0x69, 0x6d, 0x6e, 0x6a, 0x6e, 0x71, 0x6f, 0x67, 0x5d, 0x56, 0x53,\n    0x5d, 0x77, 0x91, 0x92, 0x7c, 0x66, 0x60, 0x63, 0x6d, 0x6c, 0x6b, 0x69, 0x69, 0x69, 0x69, 0x69,\n    0x6a, 0x6b, 0x6c, 0x6c, 0x6b, 0x69, 0x67, 0x66, 0x69, 0x69, 0x6a, 0x6a, 0x6a, 0x69, 0x68, 0x67,\n    0x68, 0x6a, 0x6e, 0x73, 0x77, 0x7a, 0x7c, 0x7d, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7c, 0x7d, 0x7d,\n    0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x78,\n    0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x67, 0x68, 0x69, 0x69, 0x69, 0x69, 0x68, 0x67, 0x62, 0x63, 0x65, 0x67, 0x68, 0x68, 0x68, 0x68,\n    0x66, 0x67, 0x69, 0x6b, 0x6d, 0x6e, 0x6e, 0x6e, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67,\n    0x68, 0x68, 0x68, 0x69, 0x6a, 0x6a, 0x6b, 0x6b, 0x6d, 0x6d, 0x6c, 0x6c, 0x6c, 0x6e, 0x70, 0x71,\n    0x71, 0x72, 0x72, 0x71, 0x70, 0x6f, 0x6d, 0x6c, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x70, 0x70, 0x71,\n    0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6d, 0x6c, 0x6b, 0x6b, 0x6b, 0x6c, 0x6d,\n    0x6b, 0x6b, 0x6a, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x6a, 0x6c, 0x6e, 0x6f, 0x71, 0x71,\n    0x72, 0x73, 0x74, 0x75, 0x75, 0x75, 0x74, 0x73, 0x72, 0x73, 0x73, 0x73, 0x73, 0x73, 0x72, 0x72,\n    0x78, 0x77, 0x75, 0x72, 0x6f, 0x6c, 0x69, 0x68, 0x5e, 0x5a, 0x54, 0x4e, 0x4b, 0x4b, 0x4d, 0x4e,\n    0x55, 0x5d, 0x69, 0x76, 0x81, 0x88, 0x8c, 0x8e, 0x91, 0x92, 0x93, 0x93, 0x94, 0x93, 0x93, 0x93,\n    0x91, 0x93, 0x95, 0x96, 0x97, 0x97, 0x97, 0x96, 0x99, 0x97, 0x96, 0x98, 0x95, 0x85, 0x6d, 0x5a,\n    0x4c, 0x4e, 0x51, 0x53, 0x55, 0x5b, 0x63, 0x6a, 0x7f, 0x7d, 0x78, 0x73, 0x70, 0x73, 0x7b, 0x82,\n    0x7b, 0x73, 0x6d, 0x64, 0x54, 0x49, 0x54, 0x68, 0x85, 0x95, 0x96, 0x90, 0x8b, 0x74, 0x5b, 0x58,\n    0x54, 0x53, 0x54, 0x5a, 0x63, 0x6b, 0x6f, 0x70, 0x6b, 0x6e, 0x71, 0x6d, 0x65, 0x5b, 0x54, 0x51,\n    0x5d, 0x76, 0x8e, 0x90, 0x7d, 0x68, 0x60, 0x62, 0x6c, 0x6b, 0x69, 0x68, 0x68, 0x68, 0x68, 0x69,\n    0x6a, 0x6a, 0x6b, 0x6b, 0x6a, 0x69, 0x68, 0x67, 0x6a, 0x6a, 0x6b, 0x6b, 0x6b, 0x6a, 0x69, 0x68,\n    0x67, 0x69, 0x6d, 0x72, 0x76, 0x79, 0x7b, 0x7c, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d,\n    0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x79, 0x7a, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x79,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x67, 0x68, 0x69, 0x69, 0x69, 0x69, 0x68, 0x67, 0x64, 0x65, 0x67, 0x68, 0x68, 0x68, 0x68, 0x67,\n    0x66, 0x68, 0x6a, 0x6c, 0x6e, 0x6f, 0x6f, 0x6f, 0x68, 0x68, 0x68, 0x68, 0x68, 0x68, 0x68, 0x68,\n    0x69, 0x69, 0x69, 0x6a, 0x6b, 0x6b, 0x6c, 0x6c, 0x6c, 0x6b, 0x6a, 0x69, 0x6a, 0x6c, 0x6e, 0x70,\n    0x70, 0x70, 0x71, 0x71, 0x70, 0x6f, 0x6e, 0x6d, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f,\n    0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6d, 0x6c, 0x6b, 0x6b, 0x6b, 0x6b, 0x6c, 0x6d,\n    0x6c, 0x6b, 0x6a, 0x69, 0x69, 0x69, 0x6a, 0x6a, 0x69, 0x6a, 0x6b, 0x6d, 0x6e, 0x70, 0x71, 0x72,\n    0x72, 0x73, 0x74, 0x75, 0x75, 0x75, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x72,\n    0x76, 0x77, 0x77, 0x77, 0x77, 0x76, 0x75, 0x74, 0x6b, 0x68, 0x62, 0x5b, 0x56, 0x53, 0x51, 0x51,\n    0x5a, 0x62, 0x6e, 0x7a, 0x85, 0x8b, 0x8e, 0x8e, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93,\n    0x92, 0x93, 0x95, 0x97, 0x97, 0x96, 0x95, 0x94, 0x95, 0x95, 0x96, 0x99, 0x95, 0x87, 0x72, 0x62,\n    0x66, 0x68, 0x6b, 0x6c, 0x6e, 0x73, 0x7b, 0x81, 0x81, 0x7e, 0x79, 0x73, 0x6f, 0x72, 0x79, 0x80,\n    0x7c, 0x6d, 0x5e, 0x57, 0x4f, 0x4b, 0x56, 0x67, 0x86, 0x96, 0x96, 0x90, 0x8b, 0x74, 0x5b, 0x59,\n    0x54, 0x53, 0x54, 0x59, 0x62, 0x69, 0x6c, 0x6c, 0x61, 0x63, 0x65, 0x62, 0x5b, 0x55, 0x52, 0x51,\n    0x63, 0x79, 0x8e, 0x91, 0x80, 0x6e, 0x67, 0x68, 0x6d, 0x6c, 0x6a, 0x69, 0x68, 0x68, 0x68, 0x69,\n    0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x6b, 0x6b, 0x6c, 0x6b, 0x6a, 0x69, 0x68,\n    0x67, 0x6a, 0x6d, 0x71, 0x75, 0x78, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x79, 0x7a, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b,\n    0x7c, 0x7b, 0x7a, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b,\n    0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x67, 0x68, 0x69, 0x69, 0x69, 0x69, 0x68, 0x67, 0x67, 0x68, 0x69, 0x69, 0x69, 0x69, 0x68, 0x67,\n    0x67, 0x68, 0x6a, 0x6c, 0x6e, 0x6f, 0x6f, 0x6f, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69,\n    0x69, 0x6a, 0x6a, 0x6b, 0x6b, 0x6c, 0x6d, 0x6d, 0x6b, 0x69, 0x68, 0x67, 0x67, 0x6a, 0x6c, 0x6e,\n    0x6e, 0x6e, 0x6f, 0x70, 0x70, 0x6f, 0x6e, 0x6d, 0x71, 0x71, 0x70, 0x70, 0x6f, 0x6e, 0x6d, 0x6d,\n    0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6c, 0x6b, 0x6a, 0x6a, 0x6a, 0x6b, 0x6c, 0x6d,\n    0x6d, 0x6c, 0x6a, 0x69, 0x69, 0x69, 0x6a, 0x6b, 0x6a, 0x6a, 0x6c, 0x6d, 0x6f, 0x71, 0x72, 0x72,\n    0x72, 0x72, 0x74, 0x75, 0x75, 0x75, 0x75, 0x74, 0x76, 0x76, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74,\n    0x73, 0x74, 0x76, 0x77, 0x77, 0x77, 0x76, 0x75, 0x74, 0x73, 0x70, 0x6c, 0x67, 0x62, 0x5f, 0x5d,\n    0x5f, 0x66, 0x72, 0x7e, 0x88, 0x8d, 0x8f, 0x8f, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x93, 0x93,\n    0x93, 0x94, 0x96, 0x97, 0x97, 0x95, 0x92, 0x90, 0x8a, 0x8d, 0x93, 0x98, 0x98, 0x8e, 0x7d, 0x71,\n    0x80, 0x81, 0x80, 0x7e, 0x7d, 0x7f, 0x84, 0x89, 0x81, 0x7f, 0x7a, 0x74, 0x6f, 0x71, 0x77, 0x7d,\n    0x7f, 0x66, 0x51, 0x4c, 0x4d, 0x50, 0x59, 0x66, 0x87, 0x96, 0x96, 0x90, 0x8b, 0x74, 0x5c, 0x5a,\n    0x56, 0x54, 0x54, 0x57, 0x5c, 0x61, 0x61, 0x60, 0x59, 0x5c, 0x5d, 0x5c, 0x5a, 0x5a, 0x5d, 0x60,\n    0x6d, 0x7f, 0x92, 0x94, 0x86, 0x77, 0x71, 0x73, 0x6f, 0x6e, 0x6c, 0x6a, 0x69, 0x69, 0x69, 0x69,\n    0x69, 0x69, 0x69, 0x6a, 0x6a, 0x6b, 0x6c, 0x6d, 0x6b, 0x6b, 0x6c, 0x6c, 0x6c, 0x6b, 0x6a, 0x69,\n    0x6a, 0x6c, 0x6f, 0x73, 0x76, 0x78, 0x79, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78,\n    0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x79, 0x7a, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a,\n    0x7c, 0x7b, 0x7a, 0x78, 0x77, 0x77, 0x78, 0x78, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7d,\n    0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x79, 0x7a, 0x7b,\n    0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79,\n    0x67, 0x68, 0x69, 0x69, 0x69, 0x69, 0x68, 0x67, 0x69, 0x69, 0x6a, 0x6a, 0x6a, 0x69, 0x68, 0x67,\n    0x67, 0x68, 0x6a, 0x6d, 0x6e, 0x6f, 0x70, 0x70, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69,\n    0x6a, 0x6a, 0x6a, 0x6b, 0x6c, 0x6c, 0x6d, 0x6d, 0x69, 0x68, 0x66, 0x65, 0x66, 0x68, 0x6b, 0x6d,\n    0x6c, 0x6d, 0x6e, 0x6f, 0x70, 0x6f, 0x6f, 0x6e, 0x72, 0x72, 0x71, 0x70, 0x6e, 0x6d, 0x6c, 0x6c,\n    0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6b, 0x6a, 0x6a, 0x69, 0x69, 0x6a, 0x6b, 0x6c,\n    0x6d, 0x6c, 0x6a, 0x69, 0x68, 0x69, 0x6a, 0x6b, 0x6a, 0x6b, 0x6c, 0x6d, 0x6f, 0x71, 0x72, 0x73,\n    0x71, 0x72, 0x73, 0x75, 0x75, 0x75, 0x74, 0x74, 0x79, 0x79, 0x78, 0x77, 0x76, 0x76, 0x76, 0x76,\n    0x72, 0x73, 0x74, 0x75, 0x75, 0x74, 0x72, 0x71, 0x78, 0x79, 0x78, 0x77, 0x74, 0x6f, 0x6b, 0x68,\n    0x62, 0x69, 0x75, 0x81, 0x8a, 0x8e, 0x8f, 0x8f, 0x94, 0x93, 0x93, 0x92, 0x92, 0x92, 0x93, 0x93,\n    0x93, 0x95, 0x96, 0x97, 0x96, 0x94, 0x90, 0x8e, 0x81, 0x86, 0x8f, 0x97, 0x9a, 0x93, 0x86, 0x7c,\n    0x7e, 0x7d, 0x7b, 0x76, 0x71, 0x6f, 0x73, 0x76, 0x81, 0x7f, 0x7b, 0x75, 0x70, 0x71, 0x76, 0x7b,\n    0x80, 0x62, 0x48, 0x45, 0x4d, 0x54, 0x5c, 0x65, 0x88, 0x96, 0x96, 0x90, 0x8b, 0x74, 0x5c, 0x5a,\n    0x59, 0x56, 0x54, 0x55, 0x57, 0x59, 0x57, 0x55, 0x5a, 0x5c, 0x5f, 0x60, 0x61, 0x66, 0x6e, 0x74,\n    0x74, 0x85, 0x96, 0x97, 0x8b, 0x7d, 0x7a, 0x7c, 0x71, 0x6f, 0x6d, 0x6b, 0x6a, 0x69, 0x69, 0x69,\n    0x68, 0x69, 0x69, 0x6a, 0x6b, 0x6d, 0x6e, 0x6f, 0x6b, 0x6b, 0x6c, 0x6d, 0x6c, 0x6b, 0x6a, 0x69,\n    0x6d, 0x6f, 0x72, 0x75, 0x78, 0x79, 0x7a, 0x7b, 0x79, 0x78, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77,\n    0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x7a, 0x7b, 0x7d, 0x7d, 0x7d, 0x7b, 0x7a, 0x78,\n    0x7c, 0x7b, 0x7a, 0x78, 0x77, 0x77, 0x77, 0x78, 0x74, 0x75, 0x76, 0x78, 0x7a, 0x7b, 0x7d, 0x7e,\n    0x7d, 0x7d, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x78, 0x76, 0x75, 0x75, 0x76, 0x78, 0x79,\n    0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79,\n    0x6d, 0x6c, 0x6b, 0x6a, 0x68, 0x66, 0x65, 0x65, 0x66, 0x67, 0x68, 0x69, 0x6b, 0x6c, 0x6d, 0x6e,\n    0x6d, 0x6e, 0x6f, 0x70, 0x70, 0x6e, 0x6c, 0x6b, 0x6a, 0x69, 0x67, 0x66, 0x66, 0x69, 0x6c, 0x6e,\n    0x68, 0x68, 0x68, 0x68, 0x69, 0x69, 0x69, 0x69, 0x67, 0x68, 0x6a, 0x6b, 0x6c, 0x6c, 0x6b, 0x6b,\n    0x6b, 0x6b, 0x6c, 0x6d, 0x6f, 0x70, 0x71, 0x72, 0x70, 0x70, 0x70, 0x6e, 0x6d, 0x6a, 0x68, 0x67,\n    0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c,\n    0x6a, 0x6a, 0x6b, 0x6b, 0x6b, 0x6c, 0x6c, 0x6c, 0x6b, 0x6a, 0x6a, 0x6b, 0x6d, 0x6f, 0x72, 0x74,\n    0x73, 0x73, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75,\n    0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x72, 0x74, 0x76, 0x77, 0x78, 0x78, 0x77, 0x76,\n    0x75, 0x7b, 0x83, 0x88, 0x8a, 0x8b, 0x8e, 0x90, 0x93, 0x92, 0x91, 0x90, 0x90, 0x92, 0x93, 0x95,\n    0x96, 0x92, 0x8f, 0x94, 0x99, 0x95, 0x87, 0x7a, 0x69, 0x7a, 0x8f, 0x9a, 0x95, 0x87, 0x7a, 0x73,\n    0x76, 0x70, 0x67, 0x5f, 0x5e, 0x68, 0x77, 0x83, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d,\n    0x71, 0x67, 0x58, 0x4d, 0x4b, 0x52, 0x5d, 0x65, 0x93, 0x94, 0x95, 0x90, 0x86, 0x76, 0x67, 0x5d,\n    0x5a, 0x5c, 0x5f, 0x63, 0x68, 0x6c, 0x6f, 0x71, 0x6f, 0x75, 0x7d, 0x82, 0x86, 0x89, 0x8e, 0x92,\n    0x96, 0x95, 0x96, 0x9a, 0x9b, 0x95, 0x87, 0x7b, 0x73, 0x71, 0x6e, 0x6c, 0x6c, 0x6d, 0x6f, 0x71,\n    0x6f, 0x6e, 0x6c, 0x6b, 0x6b, 0x6c, 0x6e, 0x6f, 0x6c, 0x6c, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e,\n    0x6a, 0x6c, 0x70, 0x75, 0x78, 0x79, 0x79, 0x79, 0x75, 0x76, 0x76, 0x77, 0x77, 0x78, 0x79, 0x79,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a,\n    0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x78, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7c,\n    0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7b,\n    0x77, 0x78, 0x79, 0x7a, 0x7a, 0x79, 0x78, 0x77, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x78, 0x77, 0x76,\n    0x6c, 0x6c, 0x6b, 0x6a, 0x69, 0x68, 0x67, 0x66, 0x69, 0x69, 0x6a, 0x6c, 0x6d, 0x6f, 0x70, 0x70,\n    0x6e, 0x6f, 0x70, 0x70, 0x6f, 0x6e, 0x6c, 0x6b, 0x6a, 0x69, 0x67, 0x65, 0x66, 0x67, 0x6a, 0x6c,\n    0x6a, 0x6a, 0x6a, 0x6b, 0x6b, 0x6b, 0x6b, 0x6c, 0x69, 0x6a, 0x6b, 0x6c, 0x6c, 0x6c, 0x6b, 0x6b,\n    0x6b, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f, 0x6f, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6c, 0x6a, 0x69,\n    0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c,\n    0x6a, 0x6a, 0x6b, 0x6b, 0x6b, 0x6c, 0x6c, 0x6c, 0x6b, 0x6b, 0x6b, 0x6c, 0x6d, 0x70, 0x72, 0x74,\n    0x73, 0x73, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75,\n    0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x73, 0x74, 0x76, 0x77, 0x78, 0x78, 0x77, 0x76,\n    0x79, 0x7f, 0x87, 0x8c, 0x8e, 0x8f, 0x91, 0x93, 0x93, 0x92, 0x91, 0x91, 0x91, 0x92, 0x94, 0x95,\n    0x97, 0x93, 0x91, 0x95, 0x99, 0x96, 0x89, 0x7d, 0x68, 0x78, 0x8c, 0x98, 0x97, 0x8d, 0x82, 0x7c,\n    0x75, 0x71, 0x6a, 0x63, 0x61, 0x68, 0x74, 0x7d, 0x80, 0x81, 0x81, 0x81, 0x82, 0x82, 0x82, 0x82,\n    0x7a, 0x72, 0x68, 0x61, 0x60, 0x67, 0x71, 0x78, 0x91, 0x92, 0x94, 0x92, 0x8c, 0x82, 0x78, 0x71,\n    0x75, 0x77, 0x79, 0x7c, 0x80, 0x83, 0x85, 0x86, 0x85, 0x89, 0x8f, 0x92, 0x93, 0x94, 0x97, 0x9a,\n    0x9a, 0x97, 0x96, 0x98, 0x99, 0x93, 0x87, 0x7d, 0x73, 0x72, 0x6f, 0x6d, 0x6d, 0x6e, 0x70, 0x71,\n    0x70, 0x6f, 0x6d, 0x6c, 0x6c, 0x6d, 0x6f, 0x70, 0x6b, 0x6b, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c,\n    0x6c, 0x6e, 0x72, 0x76, 0x78, 0x79, 0x79, 0x79, 0x76, 0x76, 0x77, 0x77, 0x78, 0x79, 0x79, 0x79,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7d, 0x7d, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7c,\n    0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x78, 0x76, 0x76,\n    0x6b, 0x6b, 0x6a, 0x6a, 0x6a, 0x69, 0x69, 0x69, 0x6b, 0x6c, 0x6c, 0x6e, 0x6f, 0x70, 0x71, 0x72,\n    0x6f, 0x6f, 0x70, 0x6f, 0x6e, 0x6d, 0x6b, 0x6a, 0x6a, 0x69, 0x67, 0x65, 0x65, 0x66, 0x67, 0x69,\n    0x6c, 0x6c, 0x6c, 0x6c, 0x6d, 0x6d, 0x6d, 0x6d, 0x6c, 0x6c, 0x6d, 0x6d, 0x6d, 0x6c, 0x6b, 0x6a,\n    0x6b, 0x6b, 0x6c, 0x6c, 0x6c, 0x6d, 0x6d, 0x6d, 0x6e, 0x6f, 0x70, 0x70, 0x70, 0x6f, 0x6d, 0x6d,\n    0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d,\n    0x6b, 0x6b, 0x6b, 0x6c, 0x6c, 0x6c, 0x6c, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6f, 0x71, 0x72, 0x73,\n    0x73, 0x73, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75,\n    0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x73, 0x74, 0x75, 0x77, 0x77, 0x77, 0x77, 0x77,\n    0x7e, 0x84, 0x8b, 0x90, 0x92, 0x92, 0x94, 0x96, 0x93, 0x93, 0x92, 0x92, 0x92, 0x93, 0x94, 0x95,\n    0x97, 0x94, 0x93, 0x96, 0x9a, 0x97, 0x8c, 0x83, 0x69, 0x75, 0x86, 0x94, 0x9a, 0x96, 0x8e, 0x88,\n    0x87, 0x86, 0x82, 0x7d, 0x79, 0x7b, 0x81, 0x87, 0x85, 0x86, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x8a,\n    0x87, 0x84, 0x7f, 0x7c, 0x7d, 0x82, 0x89, 0x8e, 0x90, 0x91, 0x92, 0x93, 0x91, 0x8f, 0x8b, 0x89,\n    0x8d, 0x8e, 0x8f, 0x91, 0x92, 0x94, 0x95, 0x96, 0x94, 0x98, 0x9b, 0x9b, 0x99, 0x98, 0x9a, 0x9c,\n    0x9d, 0x98, 0x93, 0x93, 0x93, 0x8f, 0x86, 0x7d, 0x74, 0x73, 0x71, 0x6f, 0x6f, 0x70, 0x71, 0x72,\n    0x72, 0x70, 0x6e, 0x6d, 0x6d, 0x6e, 0x70, 0x72, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c,\n    0x6f, 0x71, 0x75, 0x78, 0x79, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x77, 0x78, 0x79, 0x79, 0x7a, 0x7a,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d,\n    0x7e, 0x7d, 0x7d, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c,\n    0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d,\n    0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x79, 0x7a, 0x7a, 0x7a, 0x79, 0x77, 0x77,\n    0x6a, 0x6a, 0x6a, 0x6b, 0x6b, 0x6b, 0x6b, 0x6c, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f, 0x70, 0x70,\n    0x6f, 0x6f, 0x6f, 0x6e, 0x6d, 0x6c, 0x6b, 0x6b, 0x6a, 0x69, 0x68, 0x66, 0x65, 0x65, 0x66, 0x67,\n    0x6b, 0x6b, 0x6b, 0x6c, 0x6c, 0x6c, 0x6c, 0x6d, 0x6e, 0x6e, 0x6f, 0x6f, 0x6e, 0x6d, 0x6b, 0x6a,\n    0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x72, 0x71, 0x71,\n    0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e,\n    0x6c, 0x6c, 0x6c, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x70, 0x71, 0x72, 0x73,\n    0x73, 0x73, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75,\n    0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x75, 0x76, 0x77, 0x77, 0x77, 0x77,\n    0x80, 0x86, 0x8d, 0x91, 0x92, 0x93, 0x94, 0x96, 0x94, 0x93, 0x93, 0x94, 0x94, 0x94, 0x95, 0x95,\n    0x97, 0x96, 0x95, 0x98, 0x9a, 0x97, 0x90, 0x89, 0x6c, 0x72, 0x7f, 0x8e, 0x9a, 0x9d, 0x98, 0x92,\n    0x94, 0x95, 0x96, 0x93, 0x8e, 0x8b, 0x8c, 0x8e, 0x8b, 0x8b, 0x8c, 0x8d, 0x8f, 0x90, 0x91, 0x92,\n    0x94, 0x93, 0x91, 0x90, 0x90, 0x92, 0x94, 0x96, 0x91, 0x91, 0x91, 0x92, 0x93, 0x94, 0x96, 0x96,\n    0x93, 0x93, 0x93, 0x93, 0x93, 0x94, 0x94, 0x94, 0x93, 0x96, 0x98, 0x97, 0x94, 0x93, 0x95, 0x97,\n    0x9d, 0x96, 0x8e, 0x8c, 0x8c, 0x89, 0x81, 0x7a, 0x75, 0x74, 0x72, 0x71, 0x71, 0x71, 0x72, 0x73,\n    0x73, 0x71, 0x70, 0x6e, 0x6e, 0x70, 0x71, 0x73, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f,\n    0x72, 0x74, 0x77, 0x79, 0x7a, 0x7a, 0x79, 0x78, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7b, 0x7b,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x79, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7f,\n    0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7b, 0x7b, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b,\n    0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b,\n    0x6b, 0x6b, 0x6b, 0x6c, 0x6c, 0x6d, 0x6d, 0x6d, 0x68, 0x69, 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6d,\n    0x6f, 0x6e, 0x6e, 0x6d, 0x6c, 0x6c, 0x6c, 0x6c, 0x6b, 0x6a, 0x69, 0x68, 0x67, 0x67, 0x67, 0x67,\n    0x69, 0x69, 0x69, 0x6a, 0x6a, 0x6a, 0x6b, 0x6b, 0x6f, 0x70, 0x70, 0x70, 0x6f, 0x6e, 0x6d, 0x6c,\n    0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6f, 0x70, 0x72, 0x73, 0x74, 0x74, 0x74, 0x74,\n    0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70,\n    0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x71, 0x71, 0x72, 0x72, 0x72, 0x73, 0x72,\n    0x73, 0x73, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75,\n    0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x76, 0x77, 0x78, 0x78,\n    0x7f, 0x85, 0x8c, 0x90, 0x91, 0x91, 0x92, 0x94, 0x94, 0x94, 0x95, 0x95, 0x96, 0x96, 0x96, 0x96,\n    0x97, 0x97, 0x97, 0x98, 0x99, 0x97, 0x93, 0x8f, 0x72, 0x72, 0x77, 0x86, 0x96, 0x9e, 0x9b, 0x94,\n    0x8e, 0x92, 0x96, 0x95, 0x90, 0x8c, 0x8a, 0x8a, 0x8f, 0x90, 0x91, 0x92, 0x94, 0x95, 0x96, 0x96,\n    0x9a, 0x9a, 0x99, 0x98, 0x96, 0x94, 0x92, 0x91, 0x94, 0x92, 0x91, 0x90, 0x91, 0x93, 0x95, 0x96,\n    0x92, 0x92, 0x92, 0x91, 0x91, 0x91, 0x90, 0x90, 0x90, 0x93, 0x95, 0x94, 0x92, 0x92, 0x95, 0x98,\n    0x98, 0x91, 0x89, 0x86, 0x86, 0x84, 0x7c, 0x76, 0x75, 0x74, 0x73, 0x72, 0x72, 0x72, 0x73, 0x73,\n    0x74, 0x72, 0x70, 0x6f, 0x6f, 0x70, 0x72, 0x74, 0x75, 0x75, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73,\n    0x74, 0x75, 0x78, 0x7a, 0x7b, 0x7a, 0x79, 0x78, 0x79, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7e,\n    0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x78, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7c,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7e, 0x7f, 0x80, 0x81, 0x81, 0x80, 0x80, 0x7f,\n    0x6c, 0x6c, 0x6c, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x68, 0x68, 0x69, 0x69, 0x6a, 0x6b, 0x6b, 0x6b,\n    0x6d, 0x6c, 0x6c, 0x6c, 0x6c, 0x6d, 0x6e, 0x6f, 0x6c, 0x6c, 0x6c, 0x6b, 0x6b, 0x6b, 0x6b, 0x6a,\n    0x6a, 0x6a, 0x6a, 0x6a, 0x6b, 0x6b, 0x6b, 0x6b, 0x6f, 0x70, 0x71, 0x71, 0x71, 0x70, 0x6f, 0x6e,\n    0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x71, 0x72, 0x74, 0x75, 0x76, 0x76, 0x76, 0x76,\n    0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73,\n    0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x73, 0x74, 0x74, 0x73, 0x73, 0x72,\n    0x73, 0x73, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75,\n    0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x77, 0x78, 0x79,\n    0x80, 0x86, 0x8c, 0x90, 0x90, 0x8f, 0x91, 0x92, 0x94, 0x95, 0x96, 0x97, 0x97, 0x97, 0x96, 0x96,\n    0x96, 0x97, 0x98, 0x98, 0x97, 0x96, 0x95, 0x94, 0x7a, 0x73, 0x70, 0x7c, 0x8f, 0x9a, 0x96, 0x8e,\n    0x8f, 0x94, 0x99, 0x9a, 0x97, 0x93, 0x92, 0x92, 0x93, 0x93, 0x94, 0x95, 0x96, 0x97, 0x98, 0x98,\n    0x9a, 0x99, 0x98, 0x97, 0x94, 0x91, 0x8e, 0x8d, 0x94, 0x93, 0x91, 0x90, 0x90, 0x90, 0x91, 0x91,\n    0x95, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x96, 0x98, 0x99, 0x97, 0x95, 0x94, 0x97, 0x9a,\n    0x94, 0x8d, 0x87, 0x85, 0x86, 0x83, 0x7b, 0x73, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x72, 0x72,\n    0x73, 0x72, 0x70, 0x6f, 0x6f, 0x70, 0x72, 0x73, 0x77, 0x77, 0x77, 0x76, 0x75, 0x75, 0x74, 0x74,\n    0x73, 0x75, 0x77, 0x7a, 0x7b, 0x7b, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x77, 0x77, 0x77, 0x78, 0x79, 0x79, 0x7a, 0x7a,\n    0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7e, 0x7f, 0x80, 0x81, 0x82, 0x81, 0x81, 0x80,\n    0x6e, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6a, 0x6a, 0x6b, 0x6b, 0x6c, 0x6c, 0x6d, 0x6d,\n    0x6b, 0x6a, 0x6a, 0x6a, 0x6c, 0x6e, 0x70, 0x71, 0x6d, 0x6d, 0x6e, 0x6e, 0x6f, 0x6f, 0x6e, 0x6e,\n    0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x71, 0x72, 0x72, 0x72, 0x71, 0x70,\n    0x6f, 0x70, 0x70, 0x71, 0x72, 0x73, 0x74, 0x74, 0x73, 0x74, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77,\n    0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75,\n    0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x73, 0x74, 0x75, 0x76, 0x75, 0x74, 0x73, 0x72,\n    0x73, 0x73, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75,\n    0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x76, 0x75, 0x74, 0x74, 0x75, 0x76, 0x78, 0x79,\n    0x83, 0x88, 0x8f, 0x92, 0x92, 0x91, 0x92, 0x93, 0x94, 0x95, 0x97, 0x98, 0x99, 0x98, 0x97, 0x96,\n    0x94, 0x96, 0x98, 0x98, 0x96, 0x95, 0x96, 0x98, 0x82, 0x75, 0x6b, 0x74, 0x87, 0x93, 0x8e, 0x84,\n    0x8e, 0x94, 0x9a, 0x9d, 0x9c, 0x9a, 0x9a, 0x9b, 0x95, 0x95, 0x95, 0x96, 0x96, 0x97, 0x97, 0x97,\n    0x95, 0x95, 0x94, 0x93, 0x92, 0x91, 0x90, 0x90, 0x91, 0x91, 0x92, 0x92, 0x92, 0x91, 0x90, 0x90,\n    0x94, 0x94, 0x95, 0x95, 0x96, 0x96, 0x97, 0x97, 0x9a, 0x9b, 0x9a, 0x95, 0x90, 0x8d, 0x8f, 0x91,\n    0x92, 0x8d, 0x89, 0x89, 0x8b, 0x87, 0x7d, 0x75, 0x73, 0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x71,\n    0x73, 0x72, 0x70, 0x6e, 0x6e, 0x70, 0x72, 0x73, 0x76, 0x76, 0x75, 0x74, 0x74, 0x73, 0x72, 0x72,\n    0x71, 0x73, 0x76, 0x79, 0x7b, 0x7b, 0x7a, 0x79, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7e,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79,\n    0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7c, 0x7c, 0x7b, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78,\n    0x7b, 0x7a, 0x79, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7c, 0x7d, 0x7e, 0x7f, 0x7f, 0x7e, 0x7d,\n    0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f,\n    0x69, 0x69, 0x69, 0x6a, 0x6c, 0x6e, 0x71, 0x73, 0x6d, 0x6e, 0x6f, 0x70, 0x71, 0x71, 0x71, 0x71,\n    0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x73, 0x73, 0x6e, 0x6f, 0x71, 0x72, 0x73, 0x73, 0x72, 0x72,\n    0x70, 0x70, 0x71, 0x73, 0x74, 0x75, 0x76, 0x77, 0x75, 0x75, 0x77, 0x78, 0x78, 0x78, 0x77, 0x77,\n    0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77,\n    0x75, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x74, 0x75, 0x76, 0x76, 0x76, 0x75, 0x73, 0x71,\n    0x73, 0x73, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75,\n    0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x76, 0x75, 0x74, 0x74, 0x75, 0x76, 0x78, 0x7a,\n    0x86, 0x8b, 0x91, 0x95, 0x94, 0x93, 0x94, 0x95, 0x95, 0x96, 0x97, 0x99, 0x99, 0x98, 0x97, 0x96,\n    0x94, 0x96, 0x98, 0x97, 0x95, 0x94, 0x97, 0x99, 0x87, 0x76, 0x69, 0x6f, 0x82, 0x8e, 0x88, 0x7c,\n    0x81, 0x86, 0x8d, 0x91, 0x91, 0x91, 0x93, 0x94, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96,\n    0x91, 0x91, 0x91, 0x91, 0x92, 0x93, 0x95, 0x96, 0x8e, 0x8f, 0x92, 0x94, 0x95, 0x94, 0x92, 0x91,\n    0x8e, 0x8f, 0x90, 0x91, 0x92, 0x93, 0x94, 0x94, 0x99, 0x98, 0x95, 0x8e, 0x86, 0x81, 0x81, 0x82,\n    0x92, 0x8e, 0x8c, 0x8e, 0x90, 0x8b, 0x80, 0x77, 0x72, 0x73, 0x73, 0x73, 0x73, 0x72, 0x71, 0x71,\n    0x73, 0x71, 0x6f, 0x6e, 0x6e, 0x6f, 0x71, 0x73, 0x74, 0x73, 0x73, 0x72, 0x71, 0x70, 0x70, 0x6f,\n    0x70, 0x72, 0x75, 0x79, 0x7a, 0x7b, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7e, 0x7e,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77,\n    0x78, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x76, 0x76,\n    0x7a, 0x79, 0x78, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x77, 0x78, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a,\n    0x6e, 0x6d, 0x6d, 0x6d, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e,\n    0x6f, 0x6f, 0x70, 0x71, 0x71, 0x72, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72,\n    0x75, 0x75, 0x76, 0x77, 0x77, 0x76, 0x75, 0x74, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x75,\n    0x74, 0x73, 0x73, 0x74, 0x75, 0x77, 0x79, 0x7a, 0x79, 0x78, 0x76, 0x75, 0x74, 0x74, 0x74, 0x74,\n    0x75, 0x76, 0x77, 0x78, 0x78, 0x77, 0x76, 0x75, 0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75,\n    0x75, 0x77, 0x79, 0x77, 0x75, 0x73, 0x75, 0x77, 0x74, 0x74, 0x74, 0x73, 0x72, 0x71, 0x70, 0x6f,\n    0x72, 0x72, 0x73, 0x73, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x77,\n    0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x75, 0x77, 0x78, 0x77, 0x76, 0x77, 0x7b, 0x7f,\n    0x88, 0x8a, 0x8e, 0x91, 0x94, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x97, 0x97, 0x98, 0x98, 0x99,\n    0x96, 0x96, 0x97, 0x97, 0x97, 0x98, 0x98, 0x98, 0x8f, 0x7e, 0x6d, 0x6a, 0x73, 0x7b, 0x7a, 0x74,\n    0x66, 0x7c, 0x95, 0x9d, 0x96, 0x90, 0x97, 0xa1, 0x96, 0x96, 0x97, 0x98, 0x99, 0x99, 0x99, 0x99,\n    0x99, 0x98, 0x98, 0x96, 0x95, 0x94, 0x93, 0x92, 0x8c, 0x90, 0x93, 0x93, 0x91, 0x90, 0x92, 0x94,\n    0x92, 0x92, 0x93, 0x93, 0x94, 0x95, 0x95, 0x95, 0x9b, 0x99, 0x93, 0x8d, 0x89, 0x8b, 0x92, 0x98,\n    0x95, 0x8c, 0x87, 0x8b, 0x93, 0x90, 0x81, 0x72, 0x72, 0x72, 0x73, 0x72, 0x72, 0x70, 0x6e, 0x6d,\n    0x6f, 0x6e, 0x6d, 0x6d, 0x6d, 0x6f, 0x71, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70,\n    0x73, 0x75, 0x78, 0x7a, 0x7b, 0x79, 0x77, 0x76, 0x75, 0x78, 0x7b, 0x7e, 0x7f, 0x7f, 0x7d, 0x7c,\n    0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x79, 0x7b, 0x7c,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x79, 0x78, 0x78, 0x77, 0x78, 0x79, 0x7b, 0x7c,\n    0x79, 0x79, 0x79, 0x78, 0x78, 0x77, 0x77, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77,\n    0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6c, 0x6b, 0x6c, 0x6c, 0x6d, 0x6e, 0x6e, 0x6f, 0x6f,\n    0x6d, 0x6d, 0x6e, 0x6f, 0x70, 0x70, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70,\n    0x75, 0x75, 0x76, 0x77, 0x77, 0x76, 0x75, 0x74, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x75, 0x75,\n    0x74, 0x74, 0x74, 0x74, 0x75, 0x77, 0x79, 0x7a, 0x7a, 0x79, 0x77, 0x76, 0x75, 0x75, 0x75, 0x76,\n    0x76, 0x77, 0x78, 0x79, 0x79, 0x78, 0x77, 0x76, 0x77, 0x77, 0x77, 0x76, 0x76, 0x75, 0x75, 0x75,\n    0x72, 0x74, 0x76, 0x75, 0x72, 0x71, 0x73, 0x75, 0x74, 0x74, 0x74, 0x73, 0x73, 0x72, 0x71, 0x70,\n    0x72, 0x72, 0x73, 0x73, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x77, 0x77,\n    0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x75, 0x77, 0x79, 0x78, 0x76, 0x77, 0x7c, 0x80,\n    0x88, 0x8b, 0x8e, 0x92, 0x95, 0x96, 0x96, 0x95, 0x96, 0x96, 0x96, 0x97, 0x97, 0x98, 0x98, 0x98,\n    0x96, 0x96, 0x97, 0x97, 0x97, 0x98, 0x98, 0x98, 0x98, 0x92, 0x88, 0x7b, 0x6f, 0x68, 0x66, 0x66,\n    0x5e, 0x69, 0x7b, 0x8b, 0x94, 0x98, 0x98, 0x98, 0x97, 0x97, 0x98, 0x98, 0x98, 0x97, 0x96, 0x96,\n    0x90, 0x90, 0x8f, 0x8f, 0x8f, 0x8f, 0x90, 0x90, 0x92, 0x94, 0x95, 0x94, 0x92, 0x90, 0x91, 0x92,\n    0x92, 0x92, 0x93, 0x94, 0x94, 0x95, 0x95, 0x96, 0x97, 0x96, 0x92, 0x8d, 0x89, 0x8b, 0x91, 0x96,\n    0x89, 0x83, 0x80, 0x86, 0x8f, 0x8f, 0x82, 0x75, 0x72, 0x72, 0x72, 0x72, 0x71, 0x70, 0x6e, 0x6d,\n    0x6f, 0x6e, 0x6d, 0x6d, 0x6e, 0x6f, 0x71, 0x72, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70,\n    0x73, 0x75, 0x78, 0x7a, 0x7a, 0x79, 0x77, 0x76, 0x76, 0x78, 0x7b, 0x7e, 0x7f, 0x7e, 0x7d, 0x7c,\n    0x7d, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x7a, 0x79, 0x79, 0x78, 0x79, 0x7a, 0x7b, 0x7c,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c,\n    0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7b, 0x7b, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e,\n    0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78,\n    0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f, 0x70, 0x71,\n    0x6d, 0x6d, 0x6e, 0x6e, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70,\n    0x75, 0x76, 0x76, 0x77, 0x76, 0x75, 0x74, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75,\n    0x75, 0x74, 0x74, 0x74, 0x75, 0x77, 0x79, 0x7a, 0x7b, 0x7a, 0x78, 0x77, 0x76, 0x76, 0x77, 0x77,\n    0x77, 0x78, 0x79, 0x79, 0x79, 0x79, 0x78, 0x77, 0x78, 0x77, 0x77, 0x76, 0x76, 0x75, 0x74, 0x74,\n    0x70, 0x72, 0x74, 0x73, 0x70, 0x6f, 0x71, 0x74, 0x75, 0x75, 0x74, 0x73, 0x73, 0x72, 0x72, 0x71,\n    0x72, 0x72, 0x73, 0x73, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77,\n    0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x78, 0x79, 0x78, 0x77, 0x78, 0x7d, 0x82,\n    0x8a, 0x8c, 0x90, 0x93, 0x95, 0x96, 0x96, 0x96, 0x96, 0x96, 0x97, 0x97, 0x97, 0x98, 0x98, 0x98,\n    0x96, 0x96, 0x97, 0x97, 0x97, 0x98, 0x98, 0x98, 0x9e, 0x9c, 0x96, 0x88, 0x77, 0x67, 0x5d, 0x59,\n    0x57, 0x57, 0x61, 0x78, 0x91, 0x9e, 0x99, 0x8f, 0x98, 0x98, 0x98, 0x98, 0x96, 0x94, 0x92, 0x91,\n    0x85, 0x85, 0x86, 0x87, 0x89, 0x8b, 0x8e, 0x8f, 0x96, 0x96, 0x95, 0x94, 0x92, 0x91, 0x91, 0x90,\n    0x92, 0x93, 0x93, 0x94, 0x94, 0x95, 0x96, 0x96, 0x93, 0x93, 0x92, 0x8f, 0x8c, 0x8c, 0x90, 0x95,\n    0x7e, 0x7a, 0x79, 0x81, 0x8a, 0x8b, 0x81, 0x76, 0x71, 0x71, 0x72, 0x72, 0x71, 0x70, 0x6e, 0x6d,\n    0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70,\n    0x73, 0x75, 0x77, 0x79, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x79, 0x7b, 0x7d, 0x7e, 0x7e, 0x7d, 0x7c,\n    0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c,\n    0x7e, 0x7e, 0x7e, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x7e, 0x7d, 0x7c, 0x7c, 0x7c, 0x7d, 0x7f, 0x7f,\n    0x80, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x7f, 0x7d, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a,\n    0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6a, 0x6b, 0x6c, 0x6d, 0x6f, 0x71, 0x72, 0x73,\n    0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73,\n    0x75, 0x76, 0x76, 0x76, 0x76, 0x75, 0x73, 0x72, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x75, 0x75,\n    0x75, 0x75, 0x74, 0x74, 0x75, 0x76, 0x78, 0x79, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x78, 0x79,\n    0x78, 0x78, 0x78, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x76, 0x75, 0x74, 0x73, 0x73,\n    0x6f, 0x72, 0x74, 0x73, 0x71, 0x70, 0x72, 0x75, 0x75, 0x74, 0x73, 0x73, 0x72, 0x72, 0x72, 0x73,\n    0x72, 0x72, 0x73, 0x73, 0x74, 0x74, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77,\n    0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x78, 0x77, 0x7a, 0x7f, 0x84,\n    0x8c, 0x8e, 0x91, 0x94, 0x97, 0x97, 0x97, 0x96, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97,\n    0x96, 0x96, 0x97, 0x97, 0x97, 0x98, 0x98, 0x98, 0x9c, 0x96, 0x8f, 0x8c, 0x88, 0x7c, 0x69, 0x59,\n    0x5a, 0x58, 0x5f, 0x75, 0x8f, 0x9d, 0x99, 0x8f, 0x99, 0x99, 0x98, 0x97, 0x94, 0x91, 0x8d, 0x8b,\n    0x81, 0x80, 0x81, 0x82, 0x86, 0x8a, 0x8f, 0x92, 0x92, 0x90, 0x8e, 0x8f, 0x91, 0x93, 0x92, 0x91,\n    0x93, 0x93, 0x93, 0x94, 0x95, 0x95, 0x96, 0x96, 0x92, 0x94, 0x94, 0x92, 0x8f, 0x8f, 0x93, 0x96,\n    0x7e, 0x7b, 0x7b, 0x81, 0x88, 0x87, 0x7e, 0x75, 0x6f, 0x70, 0x71, 0x71, 0x70, 0x6f, 0x6e, 0x6d,\n    0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x70, 0x71, 0x71, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70,\n    0x73, 0x74, 0x76, 0x78, 0x79, 0x79, 0x78, 0x78, 0x78, 0x79, 0x7b, 0x7d, 0x7e, 0x7d, 0x7d, 0x7c,\n    0x7d, 0x7d, 0x7c, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c,\n    0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7c, 0x7d, 0x7e,\n    0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x7e, 0x7d, 0x7c, 0x7c, 0x7b,\n    0x73, 0x73, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x6c, 0x6c, 0x6e, 0x6f, 0x71, 0x73, 0x74, 0x74,\n    0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77,\n    0x75, 0x76, 0x76, 0x76, 0x75, 0x74, 0x72, 0x71, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x74, 0x74,\n    0x74, 0x74, 0x73, 0x73, 0x74, 0x75, 0x76, 0x77, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x77, 0x78, 0x78,\n    0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x75, 0x73, 0x72, 0x71, 0x71,\n    0x70, 0x73, 0x75, 0x75, 0x72, 0x72, 0x74, 0x77, 0x74, 0x74, 0x72, 0x71, 0x71, 0x71, 0x73, 0x73,\n    0x72, 0x72, 0x73, 0x73, 0x74, 0x74, 0x75, 0x75, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78,\n    0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x79, 0x78, 0x7b, 0x81, 0x87,\n    0x8d, 0x90, 0x93, 0x96, 0x98, 0x98, 0x98, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97,\n    0x96, 0x96, 0x97, 0x97, 0x97, 0x98, 0x98, 0x98, 0x96, 0x94, 0x92, 0x92, 0x8f, 0x84, 0x74, 0x67,\n    0x69, 0x6d, 0x75, 0x82, 0x8f, 0x96, 0x97, 0x95, 0x98, 0x98, 0x98, 0x96, 0x93, 0x8e, 0x89, 0x86,\n    0x84, 0x83, 0x82, 0x83, 0x87, 0x8d, 0x93, 0x97, 0x8a, 0x87, 0x85, 0x88, 0x8f, 0x95, 0x95, 0x94,\n    0x93, 0x93, 0x94, 0x94, 0x95, 0x96, 0x96, 0x97, 0x95, 0x96, 0x96, 0x94, 0x91, 0x92, 0x96, 0x9a,\n    0x86, 0x85, 0x84, 0x87, 0x88, 0x84, 0x7a, 0x71, 0x6e, 0x6f, 0x70, 0x70, 0x70, 0x6f, 0x6e, 0x6d,\n    0x6c, 0x6c, 0x6d, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x71, 0x71,\n    0x73, 0x74, 0x75, 0x77, 0x78, 0x78, 0x79, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c,\n    0x7e, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x7e, 0x7d, 0x7c, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c,\n    0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x78, 0x79, 0x7a, 0x7a,\n    0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x80, 0x80, 0x7f, 0x7f, 0x7e, 0x7e, 0x7d, 0x7d,\n    0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x6f, 0x6f, 0x70, 0x72, 0x73, 0x74, 0x75, 0x76,\n    0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79,\n    0x76, 0x76, 0x76, 0x76, 0x75, 0x73, 0x72, 0x71, 0x70, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72,\n    0x73, 0x73, 0x72, 0x72, 0x72, 0x73, 0x74, 0x75, 0x77, 0x76, 0x76, 0x75, 0x75, 0x75, 0x76, 0x77,\n    0x75, 0x75, 0x74, 0x73, 0x73, 0x74, 0x75, 0x75, 0x75, 0x75, 0x74, 0x73, 0x71, 0x70, 0x6f, 0x6f,\n    0x6f, 0x72, 0x74, 0x74, 0x72, 0x71, 0x73, 0x76, 0x73, 0x72, 0x70, 0x6f, 0x6f, 0x70, 0x72, 0x73,\n    0x72, 0x72, 0x73, 0x73, 0x74, 0x74, 0x75, 0x75, 0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78,\n    0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x7b, 0x7c, 0x7b, 0x79, 0x79, 0x7c, 0x83, 0x89,\n    0x8f, 0x91, 0x94, 0x97, 0x99, 0x99, 0x99, 0x98, 0x98, 0x98, 0x98, 0x97, 0x97, 0x97, 0x96, 0x96,\n    0x96, 0x96, 0x97, 0x97, 0x97, 0x98, 0x98, 0x98, 0x92, 0x9b, 0xa2, 0x9b, 0x8a, 0x7c, 0x78, 0x7a,\n    0x7d, 0x85, 0x8e, 0x91, 0x90, 0x91, 0x95, 0x9a, 0x97, 0x97, 0x97, 0x95, 0x91, 0x8b, 0x86, 0x82,\n    0x8d, 0x8b, 0x88, 0x87, 0x8a, 0x8f, 0x96, 0x9a, 0x89, 0x84, 0x81, 0x85, 0x8f, 0x96, 0x97, 0x94,\n    0x93, 0x94, 0x94, 0x95, 0x95, 0x96, 0x97, 0x97, 0x99, 0x98, 0x95, 0x91, 0x8e, 0x8f, 0x95, 0x9b,\n    0x8e, 0x8d, 0x8d, 0x8c, 0x89, 0x82, 0x77, 0x70, 0x6d, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6d,\n    0x69, 0x6a, 0x6c, 0x6d, 0x6e, 0x6e, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6f, 0x70, 0x70, 0x71, 0x71,\n    0x73, 0x73, 0x74, 0x76, 0x77, 0x78, 0x79, 0x79, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7e, 0x7e, 0x7d, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7e, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c,\n    0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x78, 0x78, 0x79,\n    0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e,\n    0x76, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x74, 0x75, 0x76, 0x76, 0x76,\n    0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77,\n    0x76, 0x76, 0x76, 0x76, 0x75, 0x73, 0x71, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70,\n    0x72, 0x71, 0x71, 0x70, 0x70, 0x71, 0x72, 0x73, 0x74, 0x74, 0x73, 0x72, 0x72, 0x73, 0x74, 0x75,\n    0x73, 0x72, 0x71, 0x70, 0x70, 0x71, 0x72, 0x73, 0x74, 0x73, 0x72, 0x71, 0x6f, 0x6e, 0x6d, 0x6c,\n    0x6b, 0x6d, 0x70, 0x70, 0x6e, 0x6d, 0x70, 0x73, 0x72, 0x70, 0x6e, 0x6d, 0x6d, 0x6f, 0x71, 0x73,\n    0x72, 0x72, 0x73, 0x73, 0x74, 0x74, 0x75, 0x75, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78,\n    0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7c, 0x7c, 0x7c, 0x7a, 0x79, 0x7d, 0x85, 0x8b,\n    0x91, 0x93, 0x96, 0x98, 0x9a, 0x9a, 0x99, 0x99, 0x98, 0x98, 0x98, 0x97, 0x97, 0x96, 0x96, 0x96,\n    0x96, 0x96, 0x97, 0x97, 0x97, 0x98, 0x98, 0x98, 0x93, 0x9b, 0xa0, 0x99, 0x8a, 0x81, 0x84, 0x8b,\n    0x8e, 0x93, 0x98, 0x97, 0x93, 0x91, 0x94, 0x98, 0x95, 0x95, 0x96, 0x94, 0x90, 0x8a, 0x84, 0x80,\n    0x95, 0x91, 0x8d, 0x8a, 0x8b, 0x8f, 0x95, 0x9a, 0x92, 0x8a, 0x84, 0x87, 0x91, 0x97, 0x96, 0x91,\n    0x94, 0x94, 0x94, 0x95, 0x96, 0x96, 0x97, 0x97, 0x99, 0x97, 0x90, 0x89, 0x86, 0x89, 0x91, 0x99,\n    0x8f, 0x8f, 0x8f, 0x8e, 0x89, 0x81, 0x77, 0x71, 0x6c, 0x6d, 0x6e, 0x6f, 0x6f, 0x6e, 0x6d, 0x6d,\n    0x67, 0x68, 0x6a, 0x6c, 0x6c, 0x6c, 0x6b, 0x6b, 0x6d, 0x6d, 0x6e, 0x6f, 0x6f, 0x70, 0x71, 0x71,\n    0x72, 0x73, 0x74, 0x75, 0x76, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d,\n    0x7e, 0x7e, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7e, 0x7d, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x7a, 0x7a,\n    0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7e, 0x7f, 0x7f,\n    0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x74, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x77, 0x77,\n    0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x77, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74,\n    0x76, 0x76, 0x76, 0x76, 0x74, 0x73, 0x71, 0x70, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f,\n    0x71, 0x71, 0x70, 0x6f, 0x6f, 0x70, 0x71, 0x72, 0x73, 0x72, 0x71, 0x71, 0x71, 0x72, 0x73, 0x74,\n    0x71, 0x70, 0x6f, 0x6e, 0x6e, 0x6f, 0x70, 0x71, 0x73, 0x72, 0x71, 0x70, 0x6e, 0x6d, 0x6b, 0x6b,\n    0x67, 0x69, 0x6c, 0x6c, 0x6a, 0x6a, 0x6c, 0x6f, 0x71, 0x6f, 0x6d, 0x6c, 0x6c, 0x6e, 0x70, 0x72,\n    0x72, 0x72, 0x73, 0x73, 0x74, 0x74, 0x75, 0x75, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78,\n    0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7c, 0x7d, 0x7c, 0x7a, 0x7a, 0x7e, 0x86, 0x8c,\n    0x91, 0x93, 0x96, 0x99, 0x9a, 0x9b, 0x9a, 0x99, 0x99, 0x98, 0x98, 0x97, 0x97, 0x96, 0x96, 0x96,\n    0x96, 0x96, 0x97, 0x97, 0x97, 0x98, 0x98, 0x98, 0x94, 0x92, 0x90, 0x8f, 0x90, 0x92, 0x94, 0x95,\n    0x97, 0x97, 0x98, 0x97, 0x95, 0x94, 0x93, 0x94, 0x93, 0x94, 0x95, 0x94, 0x90, 0x8a, 0x83, 0x7f,\n    0x99, 0x95, 0x8f, 0x8a, 0x8a, 0x8e, 0x94, 0x98, 0x9b, 0x92, 0x89, 0x8b, 0x93, 0x97, 0x94, 0x8e,\n    0x94, 0x94, 0x94, 0x95, 0x96, 0x96, 0x97, 0x97, 0x99, 0x94, 0x8c, 0x83, 0x7f, 0x83, 0x8d, 0x96,\n    0x8c, 0x8d, 0x8e, 0x8d, 0x88, 0x81, 0x78, 0x73, 0x6c, 0x6c, 0x6e, 0x6e, 0x6f, 0x6e, 0x6d, 0x6d,\n    0x66, 0x67, 0x69, 0x6b, 0x6c, 0x6b, 0x6a, 0x69, 0x6d, 0x6d, 0x6e, 0x6e, 0x6f, 0x70, 0x71, 0x71,\n    0x72, 0x73, 0x73, 0x74, 0x76, 0x78, 0x79, 0x7a, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d,\n    0x7e, 0x7e, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x7a, 0x7a,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c,\n    0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x80, 0x7f, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d,\n    0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x79, 0x79, 0x7a, 0x7b, 0x7d, 0x7e, 0x7f, 0x7f,\n    0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x78, 0x79, 0x79, 0x79, 0x78, 0x77, 0x75, 0x75,\n    0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74,\n    0x76, 0x76, 0x76, 0x75, 0x75, 0x74, 0x74, 0x74, 0x72, 0x71, 0x70, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d,\n    0x73, 0x72, 0x70, 0x6f, 0x70, 0x73, 0x76, 0x78, 0x75, 0x75, 0x74, 0x73, 0x71, 0x70, 0x6f, 0x6f,\n    0x72, 0x72, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x6e, 0x6a, 0x6a, 0x6b, 0x6b, 0x6b, 0x6c, 0x6c, 0x6c,\n    0x6c, 0x6b, 0x6b, 0x6b, 0x6b, 0x6c, 0x6e, 0x6f, 0x74, 0x72, 0x70, 0x6e, 0x6e, 0x6f, 0x70, 0x71,\n    0x72, 0x72, 0x73, 0x73, 0x74, 0x74, 0x75, 0x75, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77,\n    0x77, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7c, 0x81, 0x89, 0x90,\n    0x95, 0x96, 0x98, 0x99, 0x9a, 0x9a, 0x9a, 0x9a, 0x99, 0x99, 0x99, 0x98, 0x97, 0x97, 0x96, 0x96,\n    0x96, 0x96, 0x95, 0x95, 0x96, 0x98, 0x9a, 0x9c, 0x96, 0x95, 0x94, 0x93, 0x92, 0x93, 0x93, 0x94,\n    0x9a, 0x98, 0x96, 0x94, 0x93, 0x94, 0x94, 0x95, 0x91, 0x91, 0x91, 0x90, 0x8c, 0x88, 0x83, 0x80,\n    0x7b, 0x82, 0x82, 0x7d, 0x83, 0x92, 0x99, 0x96, 0x94, 0x8f, 0x89, 0x87, 0x88, 0x8a, 0x8a, 0x89,\n    0x7d, 0x8a, 0x98, 0x9a, 0x94, 0x92, 0x9a, 0xa4, 0x8c, 0x91, 0x8b, 0x7a, 0x74, 0x80, 0x8e, 0x93,\n    0x8d, 0x8c, 0x8c, 0x8d, 0x8c, 0x87, 0x7f, 0x78, 0x6f, 0x6e, 0x6d, 0x6c, 0x6c, 0x6c, 0x6d, 0x6e,\n    0x6b, 0x6c, 0x6d, 0x6e, 0x6d, 0x6c, 0x6a, 0x69, 0x6b, 0x6c, 0x6d, 0x6e, 0x70, 0x71, 0x72, 0x73,\n    0x6a, 0x6d, 0x71, 0x75, 0x78, 0x79, 0x79, 0x79, 0x7b, 0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x7d, 0x7f,\n    0x7e, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b,\n    0x7e, 0x7e, 0x7d, 0x7b, 0x7a, 0x78, 0x77, 0x77, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7d, 0x7e, 0x7e,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d,\n    0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x77, 0x78, 0x78, 0x79, 0x78, 0x77, 0x76, 0x75,\n    0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x77, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x73,\n    0x76, 0x76, 0x75, 0x75, 0x74, 0x73, 0x72, 0x72, 0x72, 0x71, 0x70, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f,\n    0x71, 0x6f, 0x6d, 0x6c, 0x6c, 0x6e, 0x71, 0x73, 0x71, 0x71, 0x70, 0x70, 0x6f, 0x6e, 0x6e, 0x6d,\n    0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6a, 0x6a, 0x6a, 0x6b, 0x6b, 0x6b, 0x6c, 0x6c,\n    0x6d, 0x6c, 0x6c, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f, 0x73, 0x72, 0x6f, 0x6e, 0x6e, 0x6f, 0x70, 0x72,\n    0x72, 0x72, 0x73, 0x73, 0x74, 0x74, 0x75, 0x75, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77,\n    0x77, 0x77, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x7b, 0x7b, 0x7b, 0x7c, 0x81, 0x8a, 0x90,\n    0x94, 0x95, 0x97, 0x98, 0x99, 0x99, 0x99, 0x99, 0x98, 0x98, 0x98, 0x97, 0x97, 0x97, 0x97, 0x97,\n    0x97, 0x96, 0x96, 0x95, 0x96, 0x97, 0x99, 0x9a, 0x99, 0x98, 0x97, 0x96, 0x95, 0x96, 0x96, 0x97,\n    0x98, 0x97, 0x96, 0x94, 0x94, 0x94, 0x95, 0x96, 0x95, 0x95, 0x95, 0x94, 0x91, 0x8d, 0x89, 0x87,\n    0x80, 0x86, 0x85, 0x80, 0x85, 0x93, 0x98, 0x93, 0x90, 0x8b, 0x85, 0x81, 0x81, 0x81, 0x81, 0x80,\n    0x7a, 0x88, 0x97, 0x99, 0x92, 0x8d, 0x8f, 0x94, 0x8d, 0x93, 0x8d, 0x7d, 0x77, 0x83, 0x91, 0x95,\n    0x8c, 0x8c, 0x8c, 0x8d, 0x8d, 0x88, 0x7f, 0x78, 0x6f, 0x6e, 0x6d, 0x6c, 0x6c, 0x6c, 0x6d, 0x6e,\n    0x6a, 0x6b, 0x6c, 0x6d, 0x6d, 0x6c, 0x6b, 0x6a, 0x6d, 0x6e, 0x6e, 0x6f, 0x70, 0x71, 0x71, 0x72,\n    0x6a, 0x6d, 0x71, 0x75, 0x78, 0x79, 0x79, 0x79, 0x7b, 0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x7d, 0x7e,\n    0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c,\n    0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x76, 0x77, 0x78, 0x78, 0x78, 0x77, 0x77,\n    0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x75, 0x75, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73,\n    0x76, 0x76, 0x75, 0x73, 0x72, 0x71, 0x70, 0x6f, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x70, 0x71, 0x71,\n    0x6e, 0x6d, 0x6b, 0x69, 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d,\n    0x6c, 0x6c, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6a, 0x6a, 0x6a, 0x6a, 0x6b, 0x6b, 0x6b, 0x6c,\n    0x6e, 0x6d, 0x6d, 0x6c, 0x6d, 0x6e, 0x6f, 0x70, 0x72, 0x70, 0x6e, 0x6d, 0x6d, 0x6f, 0x70, 0x72,\n    0x72, 0x72, 0x73, 0x73, 0x74, 0x74, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76,\n    0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x7a, 0x7b, 0x7c, 0x7c, 0x7d, 0x82, 0x8a, 0x91,\n    0x94, 0x95, 0x96, 0x97, 0x98, 0x98, 0x97, 0x97, 0x96, 0x96, 0x96, 0x97, 0x97, 0x97, 0x97, 0x98,\n    0x98, 0x97, 0x97, 0x96, 0x96, 0x97, 0x98, 0x98, 0x9b, 0x9a, 0x99, 0x98, 0x98, 0x98, 0x99, 0x9a,\n    0x96, 0x96, 0x95, 0x95, 0x95, 0x96, 0x97, 0x98, 0x98, 0x98, 0x99, 0x99, 0x97, 0x94, 0x91, 0x8f,\n    0x89, 0x8d, 0x8a, 0x83, 0x88, 0x94, 0x97, 0x90, 0x89, 0x85, 0x81, 0x7c, 0x7a, 0x7a, 0x7b, 0x7b,\n    0x7f, 0x89, 0x93, 0x95, 0x8d, 0x85, 0x82, 0x82, 0x8f, 0x96, 0x92, 0x82, 0x7d, 0x88, 0x94, 0x98,\n    0x8c, 0x8b, 0x8c, 0x8e, 0x8d, 0x88, 0x7f, 0x78, 0x6f, 0x6e, 0x6d, 0x6c, 0x6c, 0x6c, 0x6d, 0x6e,\n    0x69, 0x69, 0x6b, 0x6c, 0x6d, 0x6d, 0x6c, 0x6c, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70,\n    0x6b, 0x6d, 0x71, 0x75, 0x78, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7c, 0x7d, 0x7e,\n    0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x74, 0x75, 0x76, 0x78, 0x78, 0x78, 0x78, 0x77,\n    0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x72, 0x72,\n    0x75, 0x75, 0x74, 0x72, 0x71, 0x6f, 0x6e, 0x6e, 0x71, 0x71, 0x70, 0x70, 0x70, 0x71, 0x72, 0x73,\n    0x6f, 0x6d, 0x6c, 0x6a, 0x69, 0x69, 0x69, 0x6a, 0x6c, 0x6d, 0x6d, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f,\n    0x6d, 0x6d, 0x6d, 0x6e, 0x6f, 0x6f, 0x70, 0x70, 0x6a, 0x6a, 0x6a, 0x6b, 0x6b, 0x6b, 0x6c, 0x6c,\n    0x6f, 0x6f, 0x6e, 0x6d, 0x6d, 0x6e, 0x6f, 0x70, 0x70, 0x6f, 0x6d, 0x6c, 0x6d, 0x6f, 0x71, 0x72,\n    0x72, 0x72, 0x73, 0x73, 0x74, 0x74, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76,\n    0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x7a, 0x7c, 0x7c, 0x7c, 0x7d, 0x82, 0x8b, 0x91,\n    0x93, 0x94, 0x95, 0x96, 0x97, 0x97, 0x96, 0x96, 0x94, 0x95, 0x95, 0x96, 0x97, 0x97, 0x98, 0x98,\n    0x98, 0x98, 0x97, 0x97, 0x97, 0x96, 0x96, 0x97, 0x9b, 0x9a, 0x99, 0x98, 0x97, 0x98, 0x98, 0x99,\n    0x94, 0x94, 0x95, 0x95, 0x96, 0x98, 0x98, 0x99, 0x98, 0x98, 0x99, 0x99, 0x99, 0x97, 0x96, 0x95,\n    0x91, 0x93, 0x8e, 0x87, 0x8b, 0x96, 0x95, 0x8b, 0x82, 0x82, 0x80, 0x7d, 0x7c, 0x7d, 0x81, 0x85,\n    0x8e, 0x8f, 0x8f, 0x8c, 0x85, 0x80, 0x7e, 0x7e, 0x90, 0x98, 0x95, 0x87, 0x82, 0x8c, 0x97, 0x99,\n    0x8b, 0x8b, 0x8c, 0x8f, 0x8f, 0x89, 0x80, 0x78, 0x6f, 0x6e, 0x6d, 0x6c, 0x6c, 0x6c, 0x6d, 0x6e,\n    0x68, 0x68, 0x6a, 0x6b, 0x6c, 0x6d, 0x6d, 0x6d, 0x72, 0x72, 0x71, 0x70, 0x70, 0x6f, 0x6e, 0x6e,\n    0x6c, 0x6e, 0x72, 0x76, 0x78, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d,\n    0x7a, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79,\n    0x77, 0x77, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79,\n    0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x73, 0x74, 0x76, 0x77, 0x78, 0x78, 0x77, 0x77,\n    0x75, 0x75, 0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72,\n    0x74, 0x74, 0x73, 0x71, 0x70, 0x6f, 0x6e, 0x6d, 0x71, 0x71, 0x70, 0x70, 0x70, 0x71, 0x72, 0x73,\n    0x71, 0x70, 0x6f, 0x6d, 0x6c, 0x6c, 0x6b, 0x6b, 0x6e, 0x6f, 0x6f, 0x70, 0x71, 0x72, 0x72, 0x72,\n    0x6f, 0x6f, 0x70, 0x70, 0x71, 0x72, 0x72, 0x73, 0x6b, 0x6b, 0x6b, 0x6c, 0x6c, 0x6c, 0x6d, 0x6d,\n    0x70, 0x6f, 0x6e, 0x6d, 0x6d, 0x6e, 0x6f, 0x6f, 0x6e, 0x6d, 0x6c, 0x6b, 0x6c, 0x6f, 0x71, 0x73,\n    0x72, 0x72, 0x73, 0x73, 0x74, 0x74, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76,\n    0x75, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x7a, 0x7b, 0x7c, 0x7c, 0x7d, 0x82, 0x8a, 0x91,\n    0x93, 0x94, 0x95, 0x96, 0x96, 0x96, 0x95, 0x95, 0x94, 0x94, 0x95, 0x95, 0x96, 0x97, 0x97, 0x97,\n    0x98, 0x98, 0x98, 0x98, 0x97, 0x97, 0x96, 0x96, 0x97, 0x97, 0x95, 0x94, 0x94, 0x94, 0x95, 0x96,\n    0x93, 0x94, 0x95, 0x96, 0x98, 0x98, 0x99, 0x99, 0x95, 0x96, 0x96, 0x97, 0x97, 0x96, 0x96, 0x95,\n    0x96, 0x96, 0x8f, 0x88, 0x8e, 0x98, 0x94, 0x87, 0x7f, 0x81, 0x84, 0x84, 0x83, 0x87, 0x8f, 0x96,\n    0xa0, 0x97, 0x8b, 0x83, 0x80, 0x82, 0x84, 0x85, 0x8f, 0x98, 0x97, 0x8b, 0x86, 0x8f, 0x98, 0x99,\n    0x8b, 0x8c, 0x8e, 0x91, 0x91, 0x8b, 0x81, 0x7a, 0x6f, 0x6e, 0x6d, 0x6c, 0x6c, 0x6c, 0x6d, 0x6e,\n    0x68, 0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x73, 0x72, 0x71, 0x70, 0x6f, 0x6d, 0x6d, 0x6c,\n    0x6d, 0x6f, 0x73, 0x76, 0x78, 0x79, 0x79, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7a, 0x79, 0x79, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79,\n    0x76, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79,\n    0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x74, 0x75, 0x76, 0x77, 0x77, 0x77, 0x76, 0x76,\n    0x74, 0x75, 0x75, 0x76, 0x76, 0x77, 0x78, 0x78, 0x73, 0x73, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71,\n    0x72, 0x72, 0x72, 0x71, 0x70, 0x70, 0x6f, 0x6f, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x70, 0x71, 0x71,\n    0x73, 0x72, 0x71, 0x70, 0x6f, 0x6f, 0x6e, 0x6e, 0x6f, 0x70, 0x70, 0x71, 0x71, 0x72, 0x72, 0x73,\n    0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x72, 0x72, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6e,\n    0x70, 0x6f, 0x6e, 0x6d, 0x6c, 0x6d, 0x6d, 0x6e, 0x6c, 0x6c, 0x6b, 0x6b, 0x6c, 0x6e, 0x71, 0x73,\n    0x72, 0x72, 0x73, 0x73, 0x74, 0x74, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76,\n    0x75, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x79, 0x7a, 0x7b, 0x7b, 0x7c, 0x81, 0x89, 0x90,\n    0x94, 0x95, 0x96, 0x97, 0x97, 0x96, 0x95, 0x94, 0x94, 0x94, 0x94, 0x95, 0x95, 0x95, 0x96, 0x96,\n    0x96, 0x97, 0x97, 0x98, 0x98, 0x98, 0x97, 0x96, 0x95, 0x95, 0x93, 0x92, 0x92, 0x92, 0x93, 0x94,\n    0x94, 0x94, 0x96, 0x98, 0x98, 0x99, 0x99, 0x98, 0x93, 0x93, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94,\n    0x98, 0x96, 0x8e, 0x88, 0x8f, 0x9a, 0x94, 0x85, 0x7e, 0x84, 0x89, 0x89, 0x89, 0x8d, 0x98, 0xa1,\n    0xa6, 0x98, 0x88, 0x81, 0x84, 0x8a, 0x8d, 0x8c, 0x8b, 0x96, 0x97, 0x8c, 0x87, 0x8f, 0x97, 0x97,\n    0x8c, 0x8d, 0x90, 0x93, 0x94, 0x8e, 0x84, 0x7b, 0x6f, 0x6e, 0x6d, 0x6c, 0x6c, 0x6c, 0x6d, 0x6e,\n    0x6a, 0x69, 0x69, 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x71, 0x71, 0x70, 0x6f, 0x6d, 0x6c, 0x6b, 0x6b,\n    0x6e, 0x70, 0x73, 0x76, 0x79, 0x79, 0x79, 0x78, 0x78, 0x79, 0x7a, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7a, 0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x76, 0x77, 0x77, 0x77, 0x76, 0x75, 0x74,\n    0x74, 0x74, 0x75, 0x75, 0x76, 0x77, 0x78, 0x78, 0x72, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71,\n    0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x72, 0x71, 0x70, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f,\n    0x71, 0x71, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f,\n    0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70,\n    0x6f, 0x6e, 0x6d, 0x6c, 0x6b, 0x6c, 0x6c, 0x6d, 0x6b, 0x6a, 0x6a, 0x6a, 0x6c, 0x6e, 0x72, 0x73,\n    0x72, 0x72, 0x73, 0x73, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75,\n    0x74, 0x74, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x78, 0x79, 0x7a, 0x7a, 0x7b, 0x80, 0x88, 0x8f,\n    0x95, 0x96, 0x97, 0x97, 0x97, 0x96, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x94,\n    0x94, 0x95, 0x97, 0x98, 0x99, 0x99, 0x98, 0x97, 0x96, 0x95, 0x94, 0x93, 0x93, 0x93, 0x94, 0x94,\n    0x94, 0x95, 0x97, 0x98, 0x99, 0x99, 0x98, 0x97, 0x94, 0x94, 0x93, 0x93, 0x93, 0x94, 0x94, 0x94,\n    0x96, 0x94, 0x8b, 0x87, 0x90, 0x9b, 0x94, 0x83, 0x80, 0x86, 0x8c, 0x8a, 0x87, 0x8a, 0x95, 0x9f,\n    0x9d, 0x91, 0x86, 0x87, 0x8f, 0x95, 0x92, 0x8b, 0x88, 0x93, 0x96, 0x8c, 0x87, 0x8e, 0x95, 0x94,\n    0x8d, 0x8e, 0x92, 0x96, 0x96, 0x90, 0x86, 0x7d, 0x6f, 0x6e, 0x6d, 0x6c, 0x6c, 0x6c, 0x6d, 0x6e,\n    0x6b, 0x6b, 0x69, 0x68, 0x68, 0x69, 0x6b, 0x6c, 0x6f, 0x6f, 0x6e, 0x6d, 0x6c, 0x6b, 0x6a, 0x6a,\n    0x6e, 0x70, 0x74, 0x77, 0x79, 0x79, 0x79, 0x78, 0x78, 0x79, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b,\n    0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7e, 0x7f, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c,\n    0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x76, 0x77, 0x77, 0x77, 0x77, 0x75, 0x74, 0x73,\n    0x73, 0x74, 0x74, 0x75, 0x76, 0x77, 0x78, 0x78, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x70, 0x70,\n    0x70, 0x70, 0x71, 0x71, 0x72, 0x73, 0x73, 0x73, 0x72, 0x71, 0x70, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d,\n    0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6d, 0x6d, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c,\n    0x6c, 0x6c, 0x6b, 0x6b, 0x6a, 0x69, 0x69, 0x69, 0x6f, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71,\n    0x6f, 0x6e, 0x6c, 0x6b, 0x6b, 0x6b, 0x6b, 0x6c, 0x6a, 0x6a, 0x69, 0x6a, 0x6b, 0x6e, 0x72, 0x74,\n    0x72, 0x72, 0x73, 0x73, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75,\n    0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x76, 0x76, 0x77, 0x78, 0x79, 0x79, 0x7a, 0x7f, 0x87, 0x8e,\n    0x96, 0x97, 0x98, 0x98, 0x98, 0x97, 0x96, 0x95, 0x96, 0x96, 0x95, 0x94, 0x94, 0x93, 0x93, 0x92,\n    0x93, 0x94, 0x96, 0x98, 0x99, 0x99, 0x99, 0x98, 0x98, 0x97, 0x96, 0x95, 0x95, 0x95, 0x96, 0x96,\n    0x95, 0x96, 0x98, 0x99, 0x99, 0x98, 0x97, 0x96, 0x95, 0x95, 0x94, 0x94, 0x94, 0x94, 0x95, 0x95,\n    0x95, 0x92, 0x89, 0x85, 0x90, 0x9c, 0x94, 0x82, 0x82, 0x88, 0x8c, 0x89, 0x83, 0x84, 0x8e, 0x99,\n    0x91, 0x8a, 0x86, 0x8e, 0x9a, 0x9d, 0x92, 0x86, 0x85, 0x91, 0x94, 0x8b, 0x86, 0x8d, 0x93, 0x92,\n    0x8d, 0x8f, 0x93, 0x97, 0x98, 0x91, 0x87, 0x7e, 0x6f, 0x6e, 0x6d, 0x6c, 0x6c, 0x6c, 0x6d, 0x6e,\n    0x6d, 0x6b, 0x6a, 0x68, 0x68, 0x69, 0x6a, 0x6b, 0x6e, 0x6d, 0x6d, 0x6c, 0x6b, 0x6b, 0x6a, 0x6a,\n    0x6f, 0x71, 0x74, 0x77, 0x79, 0x79, 0x79, 0x78, 0x77, 0x79, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b,\n    0x7b, 0x7b, 0x7a, 0x7b, 0x7b, 0x7d, 0x7f, 0x80, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b,\n    0x7a, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d,\n    0x91, 0x90, 0x8f, 0x8d, 0x8a, 0x86, 0x83, 0x81, 0x7c, 0x7e, 0x81, 0x83, 0x84, 0x83, 0x82, 0x81,\n    0x82, 0x82, 0x82, 0x81, 0x7f, 0x7d, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78,\n    0x75, 0x75, 0x76, 0x77, 0x78, 0x78, 0x78, 0x78, 0x7d, 0x7d, 0x7e, 0x7d, 0x7b, 0x78, 0x74, 0x72,\n    0x78, 0x77, 0x75, 0x74, 0x74, 0x75, 0x77, 0x78, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7a, 0x78, 0x77,\n    0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x7f, 0x80, 0x81, 0x83, 0x83, 0x83, 0x83, 0x82,\n    0x78, 0x79, 0x7a, 0x79, 0x75, 0x74, 0x76, 0x78, 0x76, 0x76, 0x76, 0x75, 0x74, 0x73, 0x72, 0x72,\n    0x78, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7a, 0x79, 0x80, 0x81, 0x81, 0x7e, 0x79, 0x77, 0x78, 0x7a,\n    0x79, 0x78, 0x76, 0x75, 0x75, 0x77, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b,\n    0x80, 0x80, 0x81, 0x82, 0x81, 0x7f, 0x7d, 0x7b, 0x7f, 0x7e, 0x7c, 0x7b, 0x7b, 0x7b, 0x7d, 0x7e,\n    0x7d, 0x7d, 0x7e, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x7f, 0x7e, 0x7d, 0x7c, 0x7b, 0x7b, 0x7c, 0x7c,\n    0x7f, 0x7e, 0x7c, 0x7b, 0x7b, 0x7d, 0x7e, 0x7f, 0x82, 0x82, 0x83, 0x84, 0x85, 0x85, 0x86, 0x86,\n    0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x80, 0x80, 0x80, 0x80,\n    0x80, 0x7e, 0x7c, 0x7a, 0x7a, 0x7c, 0x7f, 0x80, 0x7b, 0x7b, 0x79, 0x79, 0x78, 0x79, 0x7a, 0x7a,\n    0x7d, 0x7d, 0x7d, 0x7d, 0x7b, 0x7a, 0x78, 0x77, 0x73, 0x73, 0x74, 0x75, 0x77, 0x78, 0x79, 0x79,\n    0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x7a, 0x7b, 0x7b, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x7c, 0x7a, 0x79, 0x7b, 0x7f, 0x82, 0x81, 0x7f,\n    0x7c, 0x79, 0x76, 0x77, 0x7a, 0x7c, 0x7b, 0x7a, 0x77, 0x7a, 0x7f, 0x82, 0x82, 0x7f, 0x7b, 0x78,\n    0x7d, 0x7f, 0x82, 0x84, 0x86, 0x85, 0x84, 0x84, 0x7e, 0x7f, 0x7f, 0x80, 0x81, 0x82, 0x82, 0x83,\n    0x81, 0x81, 0x82, 0x82, 0x83, 0x83, 0x84, 0x84, 0x80, 0x80, 0x82, 0x84, 0x87, 0x89, 0x8a, 0x8b,\n    0x87, 0x87, 0x88, 0x88, 0x87, 0x86, 0x84, 0x83, 0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85,\n    0x90, 0x90, 0x8f, 0x8e, 0x8b, 0x88, 0x85, 0x84, 0x7c, 0x7c, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e,\n    0x82, 0x81, 0x80, 0x7e, 0x7d, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79,\n    0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x7e, 0x7f, 0x7f, 0x7f, 0x7d, 0x7a, 0x76, 0x74,\n    0x78, 0x77, 0x75, 0x74, 0x75, 0x76, 0x79, 0x7a, 0x7f, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7f, 0x80, 0x81, 0x83, 0x83, 0x83, 0x83, 0x82,\n    0x7b, 0x7c, 0x7c, 0x7a, 0x77, 0x75, 0x76, 0x78, 0x79, 0x78, 0x77, 0x76, 0x75, 0x75, 0x75, 0x75,\n    0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b, 0x79, 0x78, 0x80, 0x81, 0x81, 0x7e, 0x7a, 0x77, 0x79, 0x7b,\n    0x79, 0x78, 0x77, 0x76, 0x76, 0x78, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7b, 0x7b,\n    0x7f, 0x80, 0x80, 0x81, 0x80, 0x7e, 0x7c, 0x7b, 0x7f, 0x7e, 0x7d, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d,\n    0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7d, 0x7b, 0x7a, 0x7e, 0x7e, 0x7c, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c,\n    0x7d, 0x7c, 0x7b, 0x7b, 0x7c, 0x7d, 0x7f, 0x80, 0x83, 0x84, 0x84, 0x85, 0x86, 0x87, 0x87, 0x87,\n    0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x83, 0x83, 0x83, 0x83, 0x82, 0x82, 0x82, 0x81,\n    0x82, 0x80, 0x7e, 0x7c, 0x7b, 0x7c, 0x7e, 0x80, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x7b, 0x7b, 0x7c,\n    0x7d, 0x7d, 0x7e, 0x7e, 0x7d, 0x7b, 0x7a, 0x79, 0x75, 0x76, 0x76, 0x77, 0x78, 0x79, 0x79, 0x79,\n    0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x7a, 0x7b, 0x7b, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x7b, 0x7a, 0x79, 0x7b, 0x80, 0x82, 0x81, 0x7f,\n    0x7d, 0x7a, 0x77, 0x78, 0x7b, 0x7d, 0x7d, 0x7b, 0x78, 0x7b, 0x7f, 0x82, 0x82, 0x7f, 0x7b, 0x79,\n    0x7a, 0x7b, 0x7e, 0x81, 0x83, 0x83, 0x82, 0x81, 0x7f, 0x80, 0x80, 0x81, 0x82, 0x82, 0x83, 0x83,\n    0x82, 0x82, 0x82, 0x83, 0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85,\n    0x85, 0x85, 0x86, 0x86, 0x85, 0x84, 0x82, 0x81, 0x86, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85,\n    0x90, 0x90, 0x90, 0x8f, 0x8d, 0x8b, 0x88, 0x87, 0x7e, 0x7c, 0x7a, 0x78, 0x78, 0x79, 0x7b, 0x7c,\n    0x82, 0x80, 0x7d, 0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x7e, 0x7f, 0x80, 0x7f, 0x7e, 0x7b, 0x78, 0x76,\n    0x78, 0x77, 0x75, 0x75, 0x76, 0x78, 0x7b, 0x7c, 0x84, 0x81, 0x7d, 0x7a, 0x78, 0x79, 0x7c, 0x7d,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7f, 0x80, 0x81, 0x83, 0x83, 0x83, 0x83, 0x82,\n    0x7f, 0x7e, 0x7c, 0x7a, 0x78, 0x77, 0x77, 0x77, 0x7c, 0x7a, 0x78, 0x76, 0x75, 0x76, 0x77, 0x78,\n    0x7b, 0x7b, 0x7c, 0x7c, 0x7b, 0x7a, 0x78, 0x78, 0x80, 0x81, 0x81, 0x7e, 0x7a, 0x78, 0x7a, 0x7d,\n    0x79, 0x79, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c,\n    0x7e, 0x7f, 0x7f, 0x7f, 0x7e, 0x7d, 0x7c, 0x7b, 0x7f, 0x7e, 0x7d, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d,\n    0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7d, 0x7c, 0x7b, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7d, 0x7e, 0x80, 0x81, 0x86, 0x86, 0x86, 0x87, 0x88, 0x88, 0x89, 0x89,\n    0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x84, 0x84,\n    0x84, 0x83, 0x80, 0x7e, 0x7d, 0x7d, 0x7e, 0x7f, 0x80, 0x7f, 0x7e, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d,\n    0x7d, 0x7d, 0x7e, 0x7f, 0x7f, 0x7e, 0x7d, 0x7d, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x7a, 0x7b, 0x7b, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x7b, 0x79, 0x79, 0x7b, 0x80, 0x83, 0x82, 0x80,\n    0x7f, 0x7c, 0x79, 0x7a, 0x7d, 0x7f, 0x7e, 0x7c, 0x79, 0x7c, 0x80, 0x82, 0x82, 0x80, 0x7c, 0x79,\n    0x76, 0x78, 0x7b, 0x7f, 0x81, 0x81, 0x81, 0x80, 0x81, 0x81, 0x82, 0x82, 0x83, 0x83, 0x84, 0x84,\n    0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x8a, 0x89, 0x88, 0x86, 0x84, 0x82, 0x80, 0x7f,\n    0x83, 0x84, 0x84, 0x84, 0x84, 0x82, 0x81, 0x80, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85,\n    0x90, 0x90, 0x90, 0x90, 0x8e, 0x8d, 0x8b, 0x8a, 0x83, 0x80, 0x7b, 0x77, 0x76, 0x78, 0x7c, 0x7e,\n    0x81, 0x7f, 0x7b, 0x78, 0x77, 0x78, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d,\n    0x7f, 0x7e, 0x7c, 0x7b, 0x79, 0x79, 0x79, 0x78, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x79, 0x77, 0x75,\n    0x77, 0x76, 0x75, 0x75, 0x77, 0x79, 0x7c, 0x7e, 0x84, 0x80, 0x7a, 0x75, 0x74, 0x76, 0x7a, 0x7d,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7f, 0x80, 0x81, 0x83, 0x83, 0x83, 0x83, 0x82,\n    0x80, 0x7d, 0x79, 0x77, 0x78, 0x78, 0x78, 0x77, 0x7b, 0x7a, 0x77, 0x76, 0x75, 0x76, 0x78, 0x79,\n    0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x81, 0x81, 0x81, 0x7d, 0x79, 0x78, 0x7a, 0x7d,\n    0x79, 0x79, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7b, 0x7c, 0x7c, 0x7d,\n    0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7c, 0x7c, 0x7b, 0x7f, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d,\n    0x7c, 0x7d, 0x7e, 0x7f, 0x7e, 0x7e, 0x7d, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x7b,\n    0x7a, 0x7a, 0x7b, 0x7d, 0x7f, 0x81, 0x83, 0x84, 0x88, 0x88, 0x89, 0x89, 0x89, 0x8a, 0x8a, 0x8a,\n    0x8b, 0x8b, 0x8b, 0x8b, 0x8b, 0x8b, 0x8b, 0x8b, 0x89, 0x89, 0x88, 0x88, 0x88, 0x87, 0x87, 0x87,\n    0x87, 0x85, 0x83, 0x81, 0x7f, 0x7f, 0x7f, 0x7f, 0x80, 0x7f, 0x7d, 0x7c, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x7d, 0x7e, 0x7f, 0x80, 0x81, 0x81, 0x80, 0x80, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a,\n    0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x7a, 0x7b, 0x7b, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x7b, 0x79, 0x79, 0x7c, 0x80, 0x83, 0x83, 0x81,\n    0x80, 0x7d, 0x7b, 0x7b, 0x7f, 0x81, 0x80, 0x7e, 0x7c, 0x7e, 0x81, 0x83, 0x83, 0x80, 0x7d, 0x7a,\n    0x77, 0x79, 0x7c, 0x80, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x83, 0x83, 0x84, 0x84, 0x84, 0x85,\n    0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x89, 0x88, 0x87, 0x85, 0x83, 0x82, 0x80, 0x80,\n    0x85, 0x85, 0x86, 0x86, 0x85, 0x84, 0x82, 0x81, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85,\n    0x90, 0x90, 0x90, 0x90, 0x8f, 0x8e, 0x8c, 0x8b, 0x87, 0x84, 0x7f, 0x7c, 0x7a, 0x7c, 0x7f, 0x82,\n    0x7f, 0x7e, 0x7c, 0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d,\n    0x7e, 0x7c, 0x7a, 0x78, 0x76, 0x76, 0x76, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x79, 0x77, 0x74, 0x73,\n    0x77, 0x76, 0x75, 0x75, 0x77, 0x79, 0x7c, 0x7e, 0x80, 0x7c, 0x76, 0x71, 0x70, 0x72, 0x76, 0x79,\n    0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78, 0x7f, 0x80, 0x81, 0x83, 0x83, 0x83, 0x83, 0x82,\n    0x7e, 0x79, 0x74, 0x75, 0x79, 0x7c, 0x7c, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x78,\n    0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x82, 0x82, 0x80, 0x7c, 0x77, 0x76, 0x79, 0x7c,\n    0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x7a, 0x7c, 0x7d, 0x7e,\n    0x7e, 0x7e, 0x7d, 0x7d, 0x7c, 0x7c, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7c,\n    0x7c, 0x7d, 0x7e, 0x7f, 0x7f, 0x7e, 0x7d, 0x7d, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x7c,\n    0x7b, 0x7c, 0x7e, 0x80, 0x82, 0x84, 0x86, 0x86, 0x8a, 0x8a, 0x8a, 0x8a, 0x8b, 0x8b, 0x8b, 0x8b,\n    0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x89, 0x89, 0x89, 0x88, 0x88,\n    0x88, 0x87, 0x85, 0x83, 0x82, 0x81, 0x81, 0x81, 0x7f, 0x7e, 0x7c, 0x7a, 0x78, 0x77, 0x77, 0x77,\n    0x7d, 0x7e, 0x80, 0x81, 0x82, 0x82, 0x82, 0x81, 0x80, 0x7f, 0x7f, 0x7e, 0x7d, 0x7c, 0x7c, 0x7c,\n    0x7f, 0x7e, 0x7d, 0x7b, 0x7b, 0x7b, 0x7c, 0x7d, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x7a, 0x7b, 0x7b, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x7b, 0x79, 0x79, 0x7c, 0x81, 0x84, 0x83, 0x82,\n    0x81, 0x7e, 0x7c, 0x7c, 0x80, 0x82, 0x81, 0x7f, 0x7e, 0x80, 0x82, 0x83, 0x83, 0x80, 0x7e, 0x7c,\n    0x7b, 0x7d, 0x80, 0x83, 0x85, 0x86, 0x85, 0x85, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84,\n    0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x82, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84,\n    0x87, 0x88, 0x88, 0x88, 0x88, 0x86, 0x85, 0x84, 0x82, 0x82, 0x83, 0x83, 0x84, 0x84, 0x84, 0x85,\n    0x90, 0x90, 0x91, 0x90, 0x8f, 0x8d, 0x8c, 0x8b, 0x89, 0x87, 0x84, 0x81, 0x80, 0x81, 0x82, 0x84,\n    0x7d, 0x7e, 0x7f, 0x7f, 0x7e, 0x7d, 0x7b, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7e,\n    0x7d, 0x7b, 0x79, 0x76, 0x75, 0x75, 0x76, 0x77, 0x75, 0x76, 0x78, 0x79, 0x78, 0x77, 0x75, 0x73,\n    0x78, 0x77, 0x75, 0x75, 0x76, 0x78, 0x7b, 0x7c, 0x7a, 0x77, 0x73, 0x71, 0x70, 0x72, 0x74, 0x76,\n    0x74, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x79, 0x7f, 0x80, 0x81, 0x83, 0x83, 0x83, 0x83, 0x82,\n    0x7c, 0x76, 0x72, 0x75, 0x7e, 0x86, 0x87, 0x85, 0x79, 0x7b, 0x7e, 0x81, 0x81, 0x7e, 0x7b, 0x79,\n    0x7a, 0x7a, 0x79, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x83, 0x83, 0x80, 0x7b, 0x75, 0x73, 0x76, 0x7a,\n    0x77, 0x77, 0x79, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7c, 0x7e, 0x7f,\n    0x7f, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7f, 0x7e, 0x7e, 0x7f, 0x7f, 0x7f, 0x7e, 0x7d, 0x7c,\n    0x7c, 0x7d, 0x7e, 0x7f, 0x7f, 0x7f, 0x7e, 0x7e, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d,\n    0x7f, 0x80, 0x82, 0x85, 0x87, 0x88, 0x89, 0x89, 0x8b, 0x8b, 0x8b, 0x8b, 0x8b, 0x8b, 0x8b, 0x8b,\n    0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x8a, 0x8a, 0x8a, 0x89, 0x89, 0x89, 0x88, 0x88,\n    0x88, 0x88, 0x87, 0x86, 0x85, 0x84, 0x83, 0x83, 0x81, 0x7f, 0x7d, 0x7a, 0x78, 0x77, 0x76, 0x76,\n    0x7e, 0x7f, 0x80, 0x82, 0x82, 0x82, 0x82, 0x81, 0x80, 0x80, 0x7f, 0x7f, 0x7e, 0x7e, 0x7d, 0x7d,\n    0x81, 0x7f, 0x7d, 0x7b, 0x7a, 0x7a, 0x7b, 0x7c, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x7a, 0x7b, 0x7b, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x7b, 0x79, 0x79, 0x7c, 0x81, 0x84, 0x84, 0x83,\n    0x82, 0x7f, 0x7c, 0x7d, 0x80, 0x82, 0x81, 0x7f, 0x80, 0x81, 0x83, 0x84, 0x83, 0x81, 0x7e, 0x7d,\n    0x7e, 0x80, 0x83, 0x86, 0x87, 0x87, 0x86, 0x85, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x84, 0x83,\n    0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x85, 0x7f, 0x7f, 0x80, 0x82, 0x84, 0x85, 0x86, 0x87,\n    0x87, 0x88, 0x88, 0x88, 0x88, 0x86, 0x85, 0x84, 0x81, 0x81, 0x82, 0x82, 0x83, 0x84, 0x84, 0x84,\n    0x91, 0x91, 0x91, 0x90, 0x8e, 0x8c, 0x8a, 0x89, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x83, 0x83,\n    0x7b, 0x7e, 0x82, 0x85, 0x85, 0x81, 0x7c, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d,\n    0x7f, 0x7d, 0x7a, 0x78, 0x77, 0x78, 0x79, 0x7a, 0x77, 0x78, 0x7a, 0x7b, 0x7b, 0x7a, 0x78, 0x77,\n    0x78, 0x77, 0x75, 0x74, 0x75, 0x76, 0x79, 0x7a, 0x76, 0x75, 0x75, 0x74, 0x74, 0x75, 0x76, 0x76,\n    0x74, 0x74, 0x76, 0x78, 0x7a, 0x7b, 0x7d, 0x7e, 0x7f, 0x80, 0x81, 0x83, 0x83, 0x83, 0x83, 0x82,\n    0x7d, 0x76, 0x72, 0x79, 0x87, 0x92, 0x94, 0x92, 0x7b, 0x80, 0x87, 0x8c, 0x8c, 0x88, 0x81, 0x7c,\n    0x79, 0x78, 0x77, 0x77, 0x78, 0x79, 0x7b, 0x7d, 0x85, 0x84, 0x80, 0x79, 0x73, 0x70, 0x73, 0x76,\n    0x75, 0x76, 0x78, 0x7a, 0x7c, 0x7c, 0x7b, 0x7b, 0x7e, 0x7d, 0x7b, 0x79, 0x7a, 0x7c, 0x7e, 0x80,\n    0x80, 0x7f, 0x7e, 0x7d, 0x7d, 0x7e, 0x80, 0x80, 0x7e, 0x7e, 0x7f, 0x80, 0x80, 0x7e, 0x7d, 0x7c,\n    0x7c, 0x7d, 0x7e, 0x7f, 0x80, 0x7f, 0x7f, 0x7e, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7c, 0x7e, 0x7e,\n    0x83, 0x85, 0x87, 0x89, 0x8b, 0x8c, 0x8b, 0x8b, 0x8c, 0x8b, 0x8b, 0x8b, 0x8b, 0x8b, 0x8b, 0x8b,\n    0x89, 0x89, 0x89, 0x89, 0x89, 0x89, 0x89, 0x89, 0x89, 0x89, 0x89, 0x88, 0x88, 0x88, 0x87, 0x87,\n    0x87, 0x88, 0x88, 0x87, 0x87, 0x86, 0x86, 0x86, 0x85, 0x83, 0x81, 0x7e, 0x7b, 0x7a, 0x79, 0x79,\n    0x7f, 0x80, 0x81, 0x82, 0x82, 0x81, 0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7e, 0x7e,\n    0x7f, 0x7d, 0x7a, 0x77, 0x76, 0x76, 0x77, 0x78, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x7a, 0x7b, 0x7b, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x7a, 0x79, 0x79, 0x7c, 0x81, 0x85, 0x85, 0x83,\n    0x82, 0x7e, 0x7c, 0x7d, 0x80, 0x82, 0x81, 0x7f, 0x82, 0x83, 0x84, 0x84, 0x83, 0x81, 0x7f, 0x7e,\n    0x80, 0x81, 0x84, 0x86, 0x86, 0x85, 0x84, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x82, 0x82,\n    0x86, 0x86, 0x85, 0x85, 0x84, 0x84, 0x84, 0x83, 0x81, 0x81, 0x81, 0x82, 0x83, 0x83, 0x84, 0x84,\n    0x84, 0x85, 0x85, 0x85, 0x84, 0x83, 0x82, 0x81, 0x80, 0x80, 0x81, 0x82, 0x83, 0x83, 0x84, 0x84,\n    0x91, 0x91, 0x91, 0x90, 0x8e, 0x8c, 0x89, 0x88, 0x82, 0x83, 0x85, 0x86, 0x86, 0x84, 0x82, 0x81,\n    0x79, 0x7e, 0x85, 0x89, 0x89, 0x83, 0x7c, 0x77, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d,\n    0x81, 0x7f, 0x7c, 0x7a, 0x79, 0x7b, 0x7d, 0x7e, 0x7a, 0x7b, 0x7d, 0x7e, 0x7e, 0x7d, 0x7b, 0x7a,\n    0x78, 0x77, 0x75, 0x74, 0x74, 0x75, 0x77, 0x78, 0x74, 0x75, 0x77, 0x78, 0x79, 0x79, 0x78, 0x77,\n    0x75, 0x76, 0x78, 0x7a, 0x7c, 0x7f, 0x81, 0x82, 0x7f, 0x80, 0x81, 0x83, 0x83, 0x83, 0x83, 0x82,\n    0x7e, 0x77, 0x74, 0x7d, 0x8e, 0x9b, 0x9e, 0x9d, 0x7e, 0x85, 0x8e, 0x95, 0x95, 0x8f, 0x86, 0x7f,\n    0x77, 0x77, 0x76, 0x76, 0x78, 0x7a, 0x7c, 0x7e, 0x86, 0x84, 0x80, 0x78, 0x71, 0x6f, 0x71, 0x74,\n    0x74, 0x75, 0x78, 0x7a, 0x7b, 0x7b, 0x7b, 0x7a, 0x7f, 0x7d, 0x7b, 0x79, 0x7a, 0x7c, 0x7e, 0x80,\n    0x80, 0x80, 0x7e, 0x7d, 0x7e, 0x7f, 0x80, 0x82, 0x7d, 0x7e, 0x80, 0x80, 0x80, 0x7f, 0x7d, 0x7c,\n    0x7c, 0x7d, 0x7e, 0x7f, 0x80, 0x80, 0x7f, 0x7f, 0x7c, 0x7c, 0x7b, 0x7b, 0x7c, 0x7d, 0x7e, 0x7f,\n    0x86, 0x88, 0x8a, 0x8c, 0x8e, 0x8e, 0x8d, 0x8c, 0x8c, 0x8c, 0x8b, 0x8b, 0x8b, 0x8b, 0x8b, 0x8a,\n    0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x88, 0x88, 0x88, 0x88, 0x87, 0x87, 0x87, 0x87,\n    0x87, 0x87, 0x88, 0x88, 0x88, 0x88, 0x87, 0x87, 0x89, 0x87, 0x84, 0x81, 0x7f, 0x7d, 0x7c, 0x7c,\n    0x7f, 0x80, 0x81, 0x81, 0x81, 0x80, 0x7f, 0x7f, 0x7e, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f,\n    0x7c, 0x7a, 0x76, 0x73, 0x72, 0x72, 0x73, 0x75, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x7a, 0x7b, 0x7b, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x7a, 0x79, 0x79, 0x7c, 0x82, 0x85, 0x85, 0x84,\n    0x81, 0x7e, 0x7c, 0x7c, 0x7f, 0x81, 0x81, 0x7f, 0x83, 0x83, 0x84, 0x84, 0x83, 0x81, 0x7f, 0x7e,\n    0x80, 0x81, 0x83, 0x84, 0x84, 0x83, 0x81, 0x80, 0x83, 0x83, 0x83, 0x82, 0x82, 0x82, 0x82, 0x82,\n    0x86, 0x85, 0x85, 0x84, 0x84, 0x83, 0x83, 0x83, 0x84, 0x84, 0x83, 0x82, 0x82, 0x81, 0x80, 0x80,\n    0x81, 0x81, 0x82, 0x82, 0x81, 0x80, 0x7e, 0x7d, 0x80, 0x80, 0x81, 0x82, 0x82, 0x83, 0x84, 0x84,\n    0x8e, 0x90, 0x91, 0x92, 0x91, 0x8f, 0x8b, 0x89, 0x82, 0x84, 0x86, 0x88, 0x89, 0x8a, 0x8a, 0x8a,\n    0x81, 0x83, 0x84, 0x82, 0x7d, 0x7a, 0x7a, 0x7b, 0x80, 0x7c, 0x79, 0x7c, 0x81, 0x82, 0x7d, 0x77,\n    0x80, 0x7c, 0x78, 0x78, 0x7b, 0x7d, 0x7d, 0x7b, 0x75, 0x77, 0x7b, 0x7d, 0x7d, 0x7b, 0x77, 0x75,\n    0x75, 0x76, 0x77, 0x79, 0x7b, 0x7d, 0x7e, 0x7f, 0x7f, 0x7f, 0x7e, 0x7c, 0x7a, 0x78, 0x75, 0x74,\n    0x74, 0x76, 0x79, 0x7d, 0x81, 0x85, 0x88, 0x8a, 0x81, 0x82, 0x83, 0x83, 0x83, 0x83, 0x82, 0x81,\n    0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x80, 0x81, 0x81, 0x7d, 0x7f, 0x82, 0x83, 0x82, 0x7f, 0x7b, 0x78,\n    0x77, 0x79, 0x7b, 0x7a, 0x78, 0x7a, 0x7e, 0x82, 0x83, 0x80, 0x7e, 0x7d, 0x7b, 0x76, 0x6e, 0x68,\n    0x74, 0x70, 0x6d, 0x6f, 0x74, 0x7a, 0x7d, 0x7e, 0x7b, 0x7a, 0x7a, 0x7a, 0x7c, 0x7e, 0x80, 0x82,\n    0x81, 0x7f, 0x7d, 0x7c, 0x7b, 0x7d, 0x7f, 0x80, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b,\n    0x7d, 0x7d, 0x7e, 0x7f, 0x7f, 0x7e, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7c, 0x7f, 0x83, 0x87, 0x8a,\n    0x8d, 0x8d, 0x8c, 0x8b, 0x8b, 0x8a, 0x89, 0x89, 0x8d, 0x8d, 0x8c, 0x8c, 0x8c, 0x8b, 0x8b, 0x8b,\n    0x8a, 0x8a, 0x8a, 0x8a, 0x89, 0x89, 0x89, 0x89, 0x88, 0x88, 0x88, 0x89, 0x89, 0x89, 0x8a, 0x8a,\n    0x8b, 0x8b, 0x8a, 0x8a, 0x89, 0x88, 0x87, 0x87, 0x87, 0x87, 0x86, 0x85, 0x83, 0x82, 0x81, 0x81,\n    0x7f, 0x80, 0x80, 0x80, 0x81, 0x81, 0x81, 0x82, 0x7f, 0x80, 0x80, 0x80, 0x7f, 0x7d, 0x7c, 0x7b,\n    0x7b, 0x7a, 0x78, 0x77, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c,\n    0x77, 0x7b, 0x7e, 0x7f, 0x7c, 0x79, 0x79, 0x7a, 0x7a, 0x79, 0x78, 0x7b, 0x7f, 0x82, 0x80, 0x7e,\n    0x82, 0x7f, 0x7c, 0x7a, 0x7a, 0x7e, 0x83, 0x86, 0x81, 0x82, 0x82, 0x83, 0x82, 0x81, 0x80, 0x7f,\n    0x82, 0x82, 0x83, 0x84, 0x84, 0x84, 0x83, 0x82, 0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x85, 0x86,\n    0x89, 0x88, 0x87, 0x86, 0x84, 0x83, 0x81, 0x81, 0x80, 0x80, 0x81, 0x81, 0x82, 0x82, 0x83, 0x83,\n    0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x87, 0x87, 0x85, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86,\n    0x8f, 0x90, 0x91, 0x92, 0x90, 0x8d, 0x8a, 0x88, 0x83, 0x84, 0x86, 0x88, 0x89, 0x8a, 0x8a, 0x8a,\n    0x83, 0x85, 0x86, 0x83, 0x7e, 0x7a, 0x7a, 0x7c, 0x7e, 0x79, 0x77, 0x79, 0x7e, 0x80, 0x7e, 0x7a,\n    0x80, 0x7c, 0x78, 0x77, 0x7a, 0x7c, 0x7c, 0x7b, 0x75, 0x77, 0x7a, 0x7d, 0x7d, 0x7a, 0x77, 0x75,\n    0x76, 0x76, 0x77, 0x78, 0x7a, 0x7b, 0x7c, 0x7c, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7a, 0x7a,\n    0x74, 0x75, 0x77, 0x7a, 0x7d, 0x80, 0x82, 0x84, 0x81, 0x82, 0x83, 0x84, 0x84, 0x83, 0x82, 0x81,\n    0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x75, 0x78, 0x7c, 0x7f, 0x80, 0x7f, 0x7c, 0x7a,\n    0x74, 0x75, 0x75, 0x74, 0x73, 0x75, 0x7b, 0x80, 0x8c, 0x82, 0x74, 0x69, 0x65, 0x64, 0x65, 0x65,\n    0x67, 0x64, 0x62, 0x64, 0x69, 0x6f, 0x72, 0x72, 0x75, 0x73, 0x72, 0x71, 0x73, 0x76, 0x7a, 0x7d,\n    0x81, 0x81, 0x80, 0x7f, 0x7e, 0x7e, 0x7d, 0x7d, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a,\n    0x7d, 0x7e, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x7e, 0x7a, 0x7b, 0x7d, 0x7f, 0x82, 0x85, 0x88, 0x89,\n    0x8c, 0x8c, 0x8c, 0x8b, 0x8b, 0x8b, 0x8a, 0x8a, 0x8d, 0x8d, 0x8c, 0x8c, 0x8c, 0x8b, 0x8b, 0x8b,\n    0x8b, 0x8a, 0x8a, 0x8a, 0x8a, 0x89, 0x89, 0x89, 0x88, 0x88, 0x89, 0x89, 0x89, 0x8a, 0x8a, 0x8a,\n    0x8b, 0x8b, 0x8a, 0x8a, 0x89, 0x88, 0x87, 0x87, 0x88, 0x87, 0x86, 0x85, 0x84, 0x83, 0x82, 0x82,\n    0x80, 0x80, 0x81, 0x81, 0x81, 0x81, 0x82, 0x82, 0x7f, 0x7f, 0x80, 0x80, 0x7f, 0x7d, 0x7c, 0x7b,\n    0x7b, 0x7a, 0x79, 0x77, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c,\n    0x78, 0x7a, 0x7c, 0x7d, 0x7c, 0x7e, 0x81, 0x84, 0x87, 0x86, 0x87, 0x89, 0x8d, 0x8d, 0x89, 0x85,\n    0x82, 0x82, 0x82, 0x82, 0x83, 0x83, 0x84, 0x85, 0x82, 0x82, 0x83, 0x83, 0x82, 0x81, 0x80, 0x7f,\n    0x81, 0x82, 0x83, 0x84, 0x84, 0x84, 0x83, 0x82, 0x81, 0x81, 0x82, 0x82, 0x83, 0x84, 0x84, 0x84,\n    0x85, 0x85, 0x84, 0x83, 0x82, 0x81, 0x80, 0x7f, 0x81, 0x81, 0x82, 0x82, 0x83, 0x83, 0x83, 0x84,\n    0x86, 0x86, 0x86, 0x87, 0x87, 0x88, 0x88, 0x88, 0x85, 0x85, 0x86, 0x86, 0x87, 0x87, 0x88, 0x88,\n    0x90, 0x91, 0x91, 0x90, 0x8e, 0x8b, 0x88, 0x86, 0x84, 0x85, 0x87, 0x88, 0x89, 0x89, 0x89, 0x89,\n    0x86, 0x88, 0x88, 0x84, 0x7f, 0x7b, 0x7b, 0x7d, 0x7c, 0x79, 0x75, 0x77, 0x7b, 0x7f, 0x81, 0x80,\n    0x7f, 0x7b, 0x77, 0x76, 0x79, 0x7b, 0x7b, 0x79, 0x75, 0x77, 0x7a, 0x7c, 0x7c, 0x7a, 0x77, 0x75,\n    0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x79, 0x79, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x79,\n    0x77, 0x77, 0x77, 0x77, 0x78, 0x79, 0x7b, 0x7d, 0x81, 0x82, 0x83, 0x84, 0x84, 0x83, 0x82, 0x81,\n    0x79, 0x78, 0x77, 0x76, 0x76, 0x77, 0x78, 0x79, 0x6f, 0x72, 0x76, 0x7b, 0x7d, 0x7e, 0x7d, 0x7c,\n    0x76, 0x77, 0x77, 0x75, 0x74, 0x77, 0x7e, 0x84, 0x8e, 0x7f, 0x69, 0x58, 0x51, 0x53, 0x58, 0x5b,\n    0x5a, 0x58, 0x56, 0x59, 0x5f, 0x64, 0x66, 0x66, 0x6e, 0x6b, 0x68, 0x66, 0x68, 0x6e, 0x74, 0x79,\n    0x80, 0x81, 0x82, 0x82, 0x81, 0x7d, 0x7a, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x79, 0x78, 0x77, 0x76,\n    0x78, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7c, 0x78, 0x7b, 0x7f, 0x84, 0x87, 0x89, 0x89, 0x89,\n    0x8b, 0x8b, 0x8b, 0x8b, 0x8c, 0x8c, 0x8c, 0x8c, 0x8d, 0x8d, 0x8c, 0x8c, 0x8c, 0x8b, 0x8b, 0x8b,\n    0x8b, 0x8b, 0x8b, 0x8a, 0x8a, 0x8a, 0x8a, 0x89, 0x89, 0x89, 0x89, 0x89, 0x8a, 0x8a, 0x8a, 0x8a,\n    0x8b, 0x8b, 0x8a, 0x8a, 0x89, 0x89, 0x88, 0x88, 0x88, 0x88, 0x87, 0x86, 0x85, 0x84, 0x83, 0x83,\n    0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x7f, 0x7f, 0x80, 0x80, 0x7f, 0x7e, 0x7c, 0x7b,\n    0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c,\n    0x7b, 0x7a, 0x79, 0x7b, 0x7f, 0x86, 0x8d, 0x92, 0x96, 0x96, 0x97, 0x9a, 0x9b, 0x98, 0x92, 0x8c,\n    0x85, 0x88, 0x8c, 0x90, 0x90, 0x8d, 0x88, 0x85, 0x83, 0x83, 0x84, 0x84, 0x83, 0x82, 0x80, 0x7f,\n    0x81, 0x82, 0x83, 0x84, 0x84, 0x84, 0x83, 0x83, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82,\n    0x81, 0x81, 0x81, 0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x85, 0x85,\n    0x87, 0x88, 0x88, 0x88, 0x88, 0x89, 0x89, 0x89, 0x85, 0x85, 0x86, 0x87, 0x88, 0x89, 0x89, 0x8a,\n    0x91, 0x90, 0x90, 0x8f, 0x8c, 0x89, 0x86, 0x84, 0x85, 0x86, 0x88, 0x89, 0x89, 0x89, 0x89, 0x88,\n    0x88, 0x89, 0x89, 0x85, 0x7f, 0x7c, 0x7c, 0x7e, 0x7e, 0x7c, 0x79, 0x79, 0x7d, 0x82, 0x86, 0x88,\n    0x7f, 0x7b, 0x77, 0x76, 0x78, 0x7a, 0x79, 0x78, 0x76, 0x77, 0x79, 0x7b, 0x7b, 0x79, 0x77, 0x76,\n    0x78, 0x78, 0x78, 0x77, 0x77, 0x76, 0x76, 0x76, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x77, 0x77,\n    0x7e, 0x7c, 0x79, 0x76, 0x75, 0x76, 0x78, 0x79, 0x82, 0x82, 0x83, 0x84, 0x84, 0x83, 0x82, 0x82,\n    0x7a, 0x79, 0x77, 0x75, 0x75, 0x75, 0x77, 0x78, 0x72, 0x74, 0x78, 0x7b, 0x7d, 0x7d, 0x7c, 0x7b,\n    0x7c, 0x7d, 0x7c, 0x7a, 0x7a, 0x7d, 0x84, 0x8a, 0x87, 0x7e, 0x71, 0x67, 0x61, 0x5d, 0x5a, 0x57,\n    0x58, 0x56, 0x56, 0x59, 0x60, 0x64, 0x65, 0x64, 0x6b, 0x68, 0x63, 0x62, 0x64, 0x6b, 0x73, 0x79,\n    0x7e, 0x80, 0x82, 0x82, 0x80, 0x7a, 0x75, 0x71, 0x71, 0x72, 0x72, 0x72, 0x71, 0x70, 0x6e, 0x6d,\n    0x6c, 0x6c, 0x6b, 0x6c, 0x6d, 0x6f, 0x72, 0x73, 0x78, 0x7c, 0x82, 0x88, 0x8b, 0x8c, 0x8a, 0x89,\n    0x8a, 0x8a, 0x8b, 0x8b, 0x8c, 0x8d, 0x8d, 0x8e, 0x8d, 0x8d, 0x8c, 0x8c, 0x8c, 0x8b, 0x8b, 0x8b,\n    0x8c, 0x8c, 0x8b, 0x8b, 0x8b, 0x8a, 0x8a, 0x8a, 0x89, 0x8a, 0x8a, 0x8a, 0x8a, 0x8b, 0x8b, 0x8b,\n    0x8b, 0x8b, 0x8a, 0x8a, 0x8a, 0x89, 0x89, 0x89, 0x89, 0x89, 0x88, 0x87, 0x86, 0x86, 0x85, 0x85,\n    0x84, 0x84, 0x83, 0x83, 0x82, 0x82, 0x82, 0x81, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x7e, 0x7d, 0x7c,\n    0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c,\n    0x7c, 0x7a, 0x78, 0x7b, 0x83, 0x8d, 0x96, 0x9a, 0x9a, 0x9b, 0x9c, 0x9f, 0x9f, 0x9b, 0x92, 0x8b,\n    0x89, 0x8e, 0x96, 0x9b, 0x9b, 0x95, 0x8d, 0x88, 0x84, 0x85, 0x85, 0x85, 0x84, 0x82, 0x81, 0x80,\n    0x81, 0x81, 0x83, 0x84, 0x85, 0x84, 0x84, 0x83, 0x83, 0x83, 0x83, 0x82, 0x82, 0x82, 0x81, 0x81,\n    0x81, 0x81, 0x81, 0x81, 0x81, 0x82, 0x82, 0x82, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85,\n    0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x87, 0x85, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x8b,\n    0x90, 0x8f, 0x8e, 0x8d, 0x8a, 0x87, 0x85, 0x84, 0x87, 0x88, 0x89, 0x89, 0x89, 0x89, 0x88, 0x87,\n    0x88, 0x89, 0x88, 0x83, 0x7e, 0x7b, 0x7d, 0x7f, 0x82, 0x82, 0x81, 0x81, 0x82, 0x85, 0x8a, 0x8e,\n    0x80, 0x7b, 0x77, 0x76, 0x78, 0x7a, 0x79, 0x77, 0x77, 0x78, 0x7a, 0x7b, 0x7b, 0x7a, 0x78, 0x77,\n    0x79, 0x79, 0x78, 0x77, 0x76, 0x75, 0x75, 0x74, 0x79, 0x79, 0x79, 0x7a, 0x7c, 0x7f, 0x82, 0x84,\n    0x84, 0x81, 0x7c, 0x78, 0x76, 0x76, 0x78, 0x7a, 0x82, 0x83, 0x84, 0x84, 0x84, 0x84, 0x83, 0x82,\n    0x7e, 0x7c, 0x79, 0x77, 0x76, 0x77, 0x78, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7e, 0x7c, 0x7a, 0x79,\n    0x7a, 0x7c, 0x7d, 0x7b, 0x7a, 0x7c, 0x81, 0x86, 0x85, 0x89, 0x8f, 0x93, 0x90, 0x83, 0x71, 0x63,\n    0x5e, 0x5d, 0x5e, 0x63, 0x69, 0x6d, 0x6d, 0x6c, 0x6c, 0x69, 0x66, 0x65, 0x69, 0x70, 0x78, 0x7d,\n    0x7c, 0x7d, 0x7f, 0x7f, 0x7c, 0x77, 0x71, 0x6d, 0x6b, 0x6b, 0x6b, 0x6b, 0x69, 0x68, 0x66, 0x65,\n    0x61, 0x60, 0x5f, 0x5f, 0x61, 0x65, 0x69, 0x6b, 0x7b, 0x7f, 0x85, 0x8b, 0x8e, 0x8e, 0x8c, 0x8a,\n    0x8a, 0x8b, 0x8b, 0x8c, 0x8c, 0x8d, 0x8e, 0x8e, 0x8d, 0x8d, 0x8c, 0x8c, 0x8c, 0x8b, 0x8b, 0x8b,\n    0x8c, 0x8c, 0x8c, 0x8c, 0x8b, 0x8b, 0x8b, 0x8b, 0x8a, 0x8a, 0x8a, 0x8b, 0x8b, 0x8b, 0x8c, 0x8c,\n    0x8b, 0x8b, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x89, 0x89, 0x88, 0x88, 0x87, 0x87, 0x87,\n    0x86, 0x86, 0x85, 0x84, 0x83, 0x82, 0x82, 0x81, 0x7e, 0x7e, 0x7f, 0x7f, 0x7f, 0x7e, 0x7d, 0x7c,\n    0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c,\n    0x7d, 0x7a, 0x79, 0x7e, 0x88, 0x92, 0x96, 0x97, 0x92, 0x92, 0x93, 0x95, 0x96, 0x92, 0x8a, 0x84,\n    0x8a, 0x90, 0x98, 0x9e, 0x9e, 0x98, 0x90, 0x8b, 0x86, 0x86, 0x86, 0x86, 0x85, 0x83, 0x81, 0x80,\n    0x80, 0x81, 0x82, 0x84, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x82, 0x82, 0x82,\n    0x84, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86,\n    0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x83, 0x85, 0x85, 0x86, 0x87, 0x88, 0x89, 0x89, 0x8a,\n    0x8e, 0x8e, 0x8c, 0x8a, 0x88, 0x86, 0x85, 0x84, 0x88, 0x89, 0x89, 0x8a, 0x8a, 0x89, 0x87, 0x87,\n    0x86, 0x86, 0x85, 0x81, 0x7c, 0x7a, 0x7d, 0x80, 0x84, 0x87, 0x89, 0x89, 0x87, 0x87, 0x8a, 0x8d,\n    0x81, 0x7d, 0x78, 0x77, 0x78, 0x7a, 0x79, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b, 0x7a, 0x79,\n    0x79, 0x79, 0x78, 0x77, 0x76, 0x76, 0x75, 0x75, 0x71, 0x72, 0x75, 0x7a, 0x81, 0x89, 0x90, 0x94,\n    0x88, 0x83, 0x7d, 0x78, 0x76, 0x77, 0x7a, 0x7c, 0x82, 0x83, 0x84, 0x85, 0x85, 0x84, 0x83, 0x82,\n    0x82, 0x80, 0x7c, 0x79, 0x77, 0x78, 0x7a, 0x7b, 0x7f, 0x80, 0x80, 0x7f, 0x7e, 0x7c, 0x7a, 0x79,\n    0x76, 0x79, 0x7d, 0x7e, 0x7b, 0x7a, 0x7b, 0x7d, 0x8b, 0x96, 0xa7, 0xb3, 0xb2, 0xa1, 0x88, 0x75,\n    0x63, 0x63, 0x66, 0x6b, 0x72, 0x75, 0x74, 0x72, 0x6e, 0x6d, 0x6d, 0x6e, 0x72, 0x78, 0x7f, 0x82,\n    0x7e, 0x7e, 0x7e, 0x7d, 0x7a, 0x76, 0x71, 0x6f, 0x6c, 0x6c, 0x6c, 0x6b, 0x69, 0x67, 0x65, 0x63,\n    0x61, 0x5f, 0x5e, 0x5e, 0x60, 0x65, 0x6b, 0x6f, 0x82, 0x84, 0x88, 0x8b, 0x8d, 0x8e, 0x8d, 0x8c,\n    0x8c, 0x8c, 0x8c, 0x8c, 0x8d, 0x8d, 0x8d, 0x8d, 0x8d, 0x8d, 0x8c, 0x8c, 0x8c, 0x8b, 0x8b, 0x8b,\n    0x8d, 0x8d, 0x8d, 0x8c, 0x8c, 0x8c, 0x8b, 0x8b, 0x8b, 0x8b, 0x8b, 0x8b, 0x8c, 0x8c, 0x8c, 0x8c,\n    0x8b, 0x8b, 0x8b, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x89, 0x89, 0x89, 0x89,\n    0x88, 0x87, 0x86, 0x85, 0x84, 0x83, 0x82, 0x81, 0x7d, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x7e, 0x7d,\n    0x7c, 0x7c, 0x7e, 0x7e, 0x7f, 0x7e, 0x7e, 0x7d, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c,\n    0x7d, 0x7c, 0x7d, 0x85, 0x8f, 0x93, 0x8e, 0x88, 0x84, 0x83, 0x83, 0x85, 0x87, 0x86, 0x81, 0x7d,\n    0x87, 0x8a, 0x8f, 0x93, 0x94, 0x91, 0x8d, 0x8b, 0x87, 0x88, 0x88, 0x87, 0x86, 0x84, 0x82, 0x81,\n    0x7f, 0x80, 0x82, 0x84, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84,\n    0x87, 0x87, 0x87, 0x88, 0x88, 0x88, 0x88, 0x88, 0x87, 0x87, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85,\n    0x84, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x83, 0x85, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87,\n    0x8c, 0x8b, 0x8a, 0x89, 0x87, 0x86, 0x85, 0x85, 0x89, 0x8a, 0x8a, 0x8a, 0x8a, 0x88, 0x87, 0x86,\n    0x82, 0x83, 0x81, 0x7e, 0x7a, 0x79, 0x7c, 0x80, 0x83, 0x89, 0x8e, 0x8e, 0x89, 0x85, 0x85, 0x88,\n    0x82, 0x7e, 0x79, 0x78, 0x79, 0x7b, 0x7a, 0x78, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b,\n    0x79, 0x79, 0x79, 0x78, 0x77, 0x77, 0x76, 0x76, 0x77, 0x77, 0x78, 0x7b, 0x80, 0x86, 0x8b, 0x8f,\n    0x86, 0x82, 0x7b, 0x76, 0x74, 0x76, 0x7a, 0x7d, 0x83, 0x83, 0x84, 0x85, 0x85, 0x84, 0x83, 0x83,\n    0x83, 0x80, 0x7c, 0x78, 0x76, 0x77, 0x79, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d,\n    0x7f, 0x85, 0x8c, 0x8e, 0x8b, 0x86, 0x83, 0x82, 0x8b, 0x92, 0x9c, 0xa5, 0xa4, 0x97, 0x84, 0x76,\n    0x62, 0x62, 0x66, 0x6c, 0x73, 0x76, 0x74, 0x71, 0x6e, 0x70, 0x73, 0x77, 0x7b, 0x80, 0x83, 0x85,\n    0x84, 0x83, 0x80, 0x7e, 0x7b, 0x79, 0x77, 0x76, 0x75, 0x75, 0x74, 0x73, 0x71, 0x6f, 0x6c, 0x6b,\n    0x6d, 0x6b, 0x69, 0x69, 0x6c, 0x72, 0x79, 0x7d, 0x89, 0x89, 0x8a, 0x8a, 0x8c, 0x8d, 0x8e, 0x8f,\n    0x8d, 0x8d, 0x8d, 0x8d, 0x8c, 0x8c, 0x8c, 0x8c, 0x8d, 0x8d, 0x8c, 0x8c, 0x8c, 0x8b, 0x8b, 0x8b,\n    0x8e, 0x8d, 0x8d, 0x8d, 0x8d, 0x8c, 0x8c, 0x8c, 0x8b, 0x8b, 0x8c, 0x8c, 0x8c, 0x8d, 0x8d, 0x8d,\n    0x8a, 0x8a, 0x8b, 0x8b, 0x8b, 0x8b, 0x8b, 0x8b, 0x8b, 0x8b, 0x8b, 0x8b, 0x8a, 0x8a, 0x8a, 0x8a,\n    0x89, 0x89, 0x88, 0x86, 0x84, 0x83, 0x82, 0x81, 0x7d, 0x7d, 0x7e, 0x7f, 0x7f, 0x7f, 0x7e, 0x7d,\n    0x7c, 0x7d, 0x7f, 0x80, 0x80, 0x80, 0x7f, 0x7e, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c,\n    0x7d, 0x7d, 0x82, 0x8c, 0x94, 0x91, 0x83, 0x76, 0x79, 0x76, 0x75, 0x77, 0x7b, 0x7e, 0x7d, 0x7c,\n    0x7f, 0x80, 0x80, 0x81, 0x83, 0x84, 0x86, 0x87, 0x89, 0x89, 0x89, 0x88, 0x86, 0x84, 0x82, 0x81,\n    0x7f, 0x80, 0x82, 0x84, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x85, 0x85, 0x86, 0x87, 0x87, 0x87,\n    0x88, 0x88, 0x88, 0x88, 0x87, 0x87, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x85, 0x85, 0x84, 0x84,\n    0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x85, 0x85, 0x86, 0x86, 0x86, 0x85, 0x85, 0x84, 0x84, 0x84,\n    0x8b, 0x8a, 0x89, 0x88, 0x87, 0x86, 0x86, 0x86, 0x8a, 0x8a, 0x8b, 0x8b, 0x8a, 0x88, 0x87, 0x86,\n    0x80, 0x80, 0x7f, 0x7c, 0x78, 0x78, 0x7c, 0x80, 0x81, 0x88, 0x90, 0x90, 0x89, 0x82, 0x81, 0x82,\n    0x83, 0x7f, 0x7a, 0x78, 0x7a, 0x7b, 0x7a, 0x79, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c,\n    0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x77, 0x77, 0x87, 0x85, 0x81, 0x7d, 0x7b, 0x7b, 0x7c, 0x7d,\n    0x84, 0x7f, 0x78, 0x73, 0x71, 0x74, 0x79, 0x7d, 0x83, 0x83, 0x84, 0x85, 0x85, 0x84, 0x83, 0x83,\n    0x82, 0x7f, 0x7b, 0x77, 0x75, 0x75, 0x78, 0x79, 0x74, 0x76, 0x78, 0x7a, 0x7c, 0x7e, 0x7f, 0x80,\n    0x8f, 0x96, 0x9f, 0xa3, 0x9f, 0x98, 0x92, 0x8f, 0x84, 0x83, 0x83, 0x83, 0x82, 0x7c, 0x72, 0x6a,\n    0x5d, 0x5e, 0x62, 0x69, 0x70, 0x73, 0x70, 0x6d, 0x6e, 0x71, 0x76, 0x7b, 0x80, 0x83, 0x85, 0x86,\n    0x89, 0x87, 0x83, 0x7f, 0x7d, 0x7c, 0x7c, 0x7d, 0x7e, 0x7d, 0x7d, 0x7b, 0x79, 0x77, 0x74, 0x73,\n    0x7a, 0x77, 0x75, 0x75, 0x78, 0x7f, 0x86, 0x8b, 0x8d, 0x8c, 0x8a, 0x8a, 0x8a, 0x8c, 0x8e, 0x90,\n    0x8f, 0x8e, 0x8e, 0x8d, 0x8c, 0x8c, 0x8b, 0x8b, 0x8d, 0x8d, 0x8c, 0x8c, 0x8c, 0x8b, 0x8b, 0x8b,\n    0x8e, 0x8e, 0x8d, 0x8d, 0x8d, 0x8c, 0x8c, 0x8c, 0x8b, 0x8c, 0x8c, 0x8c, 0x8d, 0x8d, 0x8d, 0x8d,\n    0x8a, 0x8a, 0x8b, 0x8b, 0x8b, 0x8b, 0x8b, 0x8b, 0x8b, 0x8b, 0x8b, 0x8b, 0x8b, 0x8b, 0x8b, 0x8b,\n    0x8a, 0x8a, 0x88, 0x87, 0x85, 0x83, 0x82, 0x81, 0x7c, 0x7d, 0x7e, 0x7f, 0x7f, 0x7f, 0x7e, 0x7e,\n    0x7c, 0x7d, 0x7f, 0x81, 0x81, 0x81, 0x80, 0x7f, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c,\n    0x7c, 0x7e, 0x85, 0x91, 0x98, 0x90, 0x7b, 0x69, 0x74, 0x70, 0x6e, 0x70, 0x75, 0x7a, 0x7d, 0x7d,\n    0x79, 0x77, 0x74, 0x73, 0x75, 0x7a, 0x7f, 0x83, 0x89, 0x89, 0x89, 0x88, 0x87, 0x85, 0x82, 0x81,\n    0x7f, 0x80, 0x82, 0x84, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x89,\n    0x87, 0x87, 0x87, 0x86, 0x86, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x85, 0x85, 0x84, 0x84, 0x84,\n    0x8b, 0x8b, 0x8a, 0x8a, 0x89, 0x89, 0x88, 0x88, 0x87, 0x86, 0x86, 0x85, 0x84, 0x83, 0x82, 0x82,\n    0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x89, 0x8a, 0x8a, 0x8b, 0x8b, 0x8c, 0x8c, 0x8c,\n    0x88, 0x87, 0x86, 0x84, 0x83, 0x81, 0x80, 0x7f, 0x82, 0x8a, 0x91, 0x90, 0x89, 0x81, 0x7f, 0x80,\n    0x7c, 0x78, 0x74, 0x75, 0x78, 0x7c, 0x7d, 0x7d, 0x74, 0x76, 0x78, 0x7a, 0x7c, 0x7c, 0x7c, 0x7b,\n    0x77, 0x78, 0x79, 0x77, 0x76, 0x78, 0x7e, 0x83, 0x94, 0x90, 0x88, 0x80, 0x79, 0x76, 0x74, 0x74,\n    0x79, 0x79, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x80, 0x84, 0x88, 0x89, 0x86, 0x83, 0x82, 0x82,\n    0x77, 0x7a, 0x7c, 0x7c, 0x7a, 0x79, 0x7a, 0x7c, 0x78, 0x79, 0x7a, 0x7c, 0x7f, 0x81, 0x83, 0x84,\n    0x8f, 0xa2, 0xb8, 0xbe, 0xb2, 0x9d, 0x8e, 0x86, 0x8a, 0x82, 0x77, 0x6d, 0x68, 0x63, 0x5f, 0x5c,\n    0x5e, 0x5d, 0x5f, 0x65, 0x6c, 0x72, 0x73, 0x72, 0x6c, 0x73, 0x7d, 0x83, 0x85, 0x84, 0x83, 0x84,\n    0x83, 0x84, 0x84, 0x83, 0x7f, 0x7a, 0x75, 0x72, 0x70, 0x6f, 0x76, 0x80, 0x7d, 0x6f, 0x6a, 0x70,\n    0x6c, 0x70, 0x76, 0x7d, 0x83, 0x87, 0x8a, 0x8b, 0x8d, 0x8d, 0x8d, 0x8e, 0x8e, 0x8e, 0x8f, 0x8f,\n    0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8e, 0x8e, 0x8e, 0x8e, 0x8e, 0x8e, 0x8e, 0x8e,\n    0x8d, 0x8d, 0x8d, 0x8d, 0x8d, 0x8d, 0x8d, 0x8d, 0x8d, 0x8d, 0x8c, 0x8c, 0x8b, 0x8b, 0x8a, 0x8a,\n    0x8e, 0x8e, 0x8e, 0x8e, 0x8d, 0x8d, 0x8d, 0x8d, 0x8d, 0x8d, 0x8d, 0x8c, 0x8c, 0x8c, 0x8b, 0x8b,\n    0x8a, 0x8a, 0x89, 0x88, 0x88, 0x87, 0x87, 0x86, 0x83, 0x82, 0x80, 0x7e, 0x7c, 0x7c, 0x7b, 0x7b,\n    0x7d, 0x7c, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x77, 0x77, 0x77, 0x77, 0x79, 0x7a, 0x7c, 0x7d,\n    0x7f, 0x7e, 0x8a, 0x9d, 0x9b, 0x86, 0x77, 0x77, 0x77, 0x77, 0x76, 0x75, 0x76, 0x78, 0x7a, 0x7b,\n    0x7c, 0x7f, 0x80, 0x7c, 0x76, 0x77, 0x7e, 0x86, 0x86, 0x86, 0x87, 0x88, 0x87, 0x86, 0x84, 0x82,\n    0x81, 0x82, 0x84, 0x86, 0x87, 0x88, 0x87, 0x87, 0x84, 0x83, 0x83, 0x84, 0x85, 0x86, 0x88, 0x89,\n    0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x87, 0x85, 0x82, 0x80, 0x80, 0x82, 0x84, 0x86,\n    0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x87, 0x87,\n    0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x87, 0x87, 0x88, 0x88,\n    0x87, 0x86, 0x85, 0x84, 0x82, 0x81, 0x80, 0x7f, 0x7f, 0x8a, 0x97, 0x9c, 0x97, 0x8c, 0x84, 0x80,\n    0x82, 0x7e, 0x7a, 0x7a, 0x7d, 0x80, 0x81, 0x80, 0x78, 0x7a, 0x7c, 0x7d, 0x7e, 0x7e, 0x7e, 0x7d,\n    0x79, 0x7a, 0x7a, 0x79, 0x78, 0x7a, 0x7e, 0x81, 0x8f, 0x8b, 0x85, 0x7f, 0x7a, 0x77, 0x76, 0x76,\n    0x7e, 0x7d, 0x7d, 0x7c, 0x7d, 0x7e, 0x7f, 0x80, 0x7f, 0x82, 0x85, 0x85, 0x83, 0x82, 0x84, 0x86,\n    0x7d, 0x7a, 0x77, 0x78, 0x7a, 0x7c, 0x7c, 0x7b, 0x74, 0x76, 0x79, 0x7c, 0x7e, 0x7f, 0x7f, 0x7f,\n    0x97, 0xa7, 0xb7, 0xba, 0xaf, 0x9e, 0x92, 0x8d, 0x87, 0x80, 0x76, 0x6f, 0x6c, 0x69, 0x66, 0x63,\n    0x5a, 0x5f, 0x68, 0x73, 0x7a, 0x7a, 0x73, 0x6c, 0x6d, 0x73, 0x7b, 0x7f, 0x80, 0x80, 0x82, 0x84,\n    0x83, 0x84, 0x84, 0x83, 0x7f, 0x79, 0x74, 0x70, 0x6e, 0x6d, 0x75, 0x7f, 0x7c, 0x6e, 0x6a, 0x6f,\n    0x6f, 0x72, 0x78, 0x7f, 0x84, 0x88, 0x8b, 0x8b, 0x8d, 0x8d, 0x8e, 0x8e, 0x8e, 0x8f, 0x8f, 0x8f,\n    0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8e, 0x8e, 0x8e, 0x8e, 0x8e, 0x8e, 0x8e, 0x8e,\n    0x8e, 0x8e, 0x8e, 0x8e, 0x8e, 0x8e, 0x8e, 0x8e, 0x8e, 0x8e, 0x8d, 0x8c, 0x8c, 0x8b, 0x8b, 0x8a,\n    0x8e, 0x8e, 0x8d, 0x8d, 0x8d, 0x8d, 0x8d, 0x8d, 0x8d, 0x8d, 0x8c, 0x8c, 0x8c, 0x8b, 0x8b, 0x8b,\n    0x8b, 0x8b, 0x8a, 0x8a, 0x89, 0x88, 0x88, 0x87, 0x84, 0x82, 0x80, 0x7e, 0x7c, 0x7b, 0x7b, 0x7b,\n    0x7b, 0x7a, 0x79, 0x78, 0x77, 0x78, 0x78, 0x79, 0x77, 0x77, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x7b,\n    0x7e, 0x7f, 0x8d, 0x9e, 0x9c, 0x88, 0x7a, 0x7a, 0x77, 0x76, 0x75, 0x74, 0x73, 0x74, 0x75, 0x76,\n    0x7a, 0x7d, 0x80, 0x7d, 0x79, 0x7a, 0x80, 0x85, 0x87, 0x87, 0x86, 0x85, 0x84, 0x83, 0x82, 0x82,\n    0x81, 0x82, 0x84, 0x85, 0x86, 0x87, 0x87, 0x87, 0x85, 0x84, 0x84, 0x84, 0x84, 0x86, 0x87, 0x88,\n    0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x87, 0x85, 0x83, 0x81, 0x81, 0x82, 0x84, 0x86,\n    0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x84, 0x85, 0x85, 0x85, 0x86, 0x86, 0x87, 0x87,\n    0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x81, 0x81, 0x81, 0x82, 0x82, 0x82, 0x82, 0x83,\n    0x85, 0x84, 0x84, 0x83, 0x82, 0x81, 0x80, 0x80, 0x7e, 0x86, 0x90, 0x94, 0x91, 0x8b, 0x86, 0x84,\n    0x88, 0x84, 0x80, 0x80, 0x82, 0x84, 0x84, 0x83, 0x7d, 0x7e, 0x7f, 0x80, 0x80, 0x80, 0x7f, 0x7f,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x86, 0x84, 0x81, 0x7d, 0x7b, 0x7a, 0x7a, 0x7a,\n    0x82, 0x82, 0x81, 0x80, 0x80, 0x81, 0x82, 0x83, 0x7f, 0x81, 0x82, 0x81, 0x81, 0x83, 0x89, 0x8e,\n    0x8b, 0x7f, 0x74, 0x74, 0x7b, 0x81, 0x7e, 0x78, 0x78, 0x76, 0x74, 0x74, 0x75, 0x7a, 0x7e, 0x81,\n    0x9d, 0xa6, 0xaf, 0xae, 0xa4, 0x98, 0x92, 0x90, 0x85, 0x7e, 0x76, 0x71, 0x6f, 0x6e, 0x6c, 0x69,\n    0x59, 0x5e, 0x67, 0x72, 0x78, 0x77, 0x70, 0x6a, 0x6f, 0x73, 0x76, 0x78, 0x78, 0x7b, 0x7f, 0x83,\n    0x84, 0x85, 0x84, 0x82, 0x7e, 0x78, 0x72, 0x6e, 0x6d, 0x6c, 0x73, 0x7d, 0x7a, 0x6d, 0x69, 0x6f,\n    0x73, 0x76, 0x7c, 0x82, 0x87, 0x8a, 0x8c, 0x8d, 0x8e, 0x8e, 0x8e, 0x8e, 0x8f, 0x8f, 0x8f, 0x8f,\n    0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f,\n    0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8e, 0x8e, 0x8d, 0x8d, 0x8c, 0x8c, 0x8b,\n    0x8d, 0x8d, 0x8d, 0x8d, 0x8d, 0x8d, 0x8d, 0x8d, 0x8d, 0x8d, 0x8c, 0x8c, 0x8c, 0x8b, 0x8b, 0x8b,\n    0x8d, 0x8c, 0x8c, 0x8b, 0x8b, 0x8a, 0x89, 0x89, 0x85, 0x83, 0x81, 0x7e, 0x7c, 0x7b, 0x7a, 0x7a,\n    0x79, 0x78, 0x77, 0x76, 0x76, 0x76, 0x77, 0x77, 0x78, 0x78, 0x77, 0x76, 0x76, 0x77, 0x78, 0x79,\n    0x7d, 0x82, 0x91, 0x9f, 0x9d, 0x8d, 0x81, 0x80, 0x7a, 0x78, 0x76, 0x74, 0x72, 0x71, 0x71, 0x71,\n    0x78, 0x7c, 0x7f, 0x80, 0x7e, 0x7e, 0x82, 0x85, 0x89, 0x87, 0x83, 0x80, 0x7f, 0x7f, 0x80, 0x80,\n    0x80, 0x81, 0x83, 0x85, 0x86, 0x86, 0x86, 0x85, 0x86, 0x85, 0x84, 0x84, 0x84, 0x84, 0x85, 0x86,\n    0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x85, 0x83, 0x82, 0x82, 0x83, 0x85, 0x86,\n    0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86,\n    0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x83, 0x83, 0x82, 0x82, 0x82, 0x81, 0x81, 0x81, 0x80, 0x7f, 0x7d, 0x7c, 0x7c, 0x7f, 0x85, 0x89,\n    0x8a, 0x86, 0x82, 0x82, 0x83, 0x84, 0x83, 0x81, 0x7e, 0x7e, 0x7e, 0x7f, 0x7f, 0x7e, 0x7e, 0x7e,\n    0x79, 0x78, 0x79, 0x7a, 0x7c, 0x7d, 0x7b, 0x79, 0x7e, 0x7e, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x82, 0x82, 0x81, 0x80, 0x80, 0x81, 0x82, 0x83, 0x83, 0x83, 0x83, 0x81, 0x81, 0x86, 0x8f, 0x96,\n    0x9d, 0x8b, 0x78, 0x75, 0x7e, 0x84, 0x7e, 0x75, 0x7f, 0x7a, 0x73, 0x6e, 0x6f, 0x76, 0x7f, 0x85,\n    0x96, 0x99, 0x9c, 0x98, 0x91, 0x8b, 0x8a, 0x8b, 0x85, 0x7f, 0x77, 0x71, 0x6f, 0x6d, 0x69, 0x66,\n    0x5f, 0x5f, 0x61, 0x66, 0x6c, 0x70, 0x6f, 0x6c, 0x70, 0x72, 0x72, 0x72, 0x72, 0x76, 0x7d, 0x83,\n    0x85, 0x85, 0x85, 0x82, 0x7d, 0x77, 0x70, 0x6d, 0x6c, 0x6a, 0x71, 0x7b, 0x79, 0x6d, 0x6a, 0x70,\n    0x78, 0x7b, 0x80, 0x86, 0x8a, 0x8c, 0x8d, 0x8e, 0x8e, 0x8f, 0x8f, 0x8f, 0x8f, 0x90, 0x90, 0x90,\n    0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90,\n    0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x8f, 0x8f, 0x8e, 0x8d, 0x8d, 0x8d,\n    0x8d, 0x8d, 0x8d, 0x8d, 0x8d, 0x8e, 0x8e, 0x8e, 0x8d, 0x8d, 0x8d, 0x8d, 0x8c, 0x8c, 0x8c, 0x8c,\n    0x8e, 0x8e, 0x8d, 0x8d, 0x8c, 0x8c, 0x8b, 0x8b, 0x86, 0x85, 0x82, 0x7f, 0x7c, 0x7b, 0x7a, 0x7a,\n    0x77, 0x76, 0x75, 0x74, 0x74, 0x75, 0x76, 0x76, 0x79, 0x78, 0x77, 0x76, 0x75, 0x75, 0x76, 0x76,\n    0x7c, 0x87, 0x98, 0xa3, 0xa0, 0x95, 0x8c, 0x8a, 0x82, 0x80, 0x7e, 0x7a, 0x77, 0x74, 0x71, 0x70,\n    0x7a, 0x7d, 0x80, 0x82, 0x83, 0x83, 0x84, 0x85, 0x8a, 0x87, 0x82, 0x7e, 0x7c, 0x7c, 0x7e, 0x80,\n    0x80, 0x81, 0x83, 0x84, 0x85, 0x85, 0x85, 0x85, 0x87, 0x86, 0x85, 0x84, 0x83, 0x84, 0x84, 0x85,\n    0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x85, 0x84, 0x83, 0x83, 0x84, 0x86, 0x87,\n    0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x86,\n    0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x81, 0x81, 0x81, 0x81,\n    0x81, 0x81, 0x82, 0x82, 0x82, 0x83, 0x83, 0x83, 0x82, 0x7e, 0x79, 0x78, 0x7b, 0x80, 0x85, 0x88,\n    0x86, 0x83, 0x7f, 0x7f, 0x80, 0x81, 0x7e, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x77, 0x76, 0x78, 0x7c, 0x82, 0x82, 0x7e, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d,\n    0x7e, 0x7d, 0x7d, 0x7c, 0x7d, 0x7e, 0x7f, 0x80, 0x86, 0x86, 0x85, 0x84, 0x84, 0x8a, 0x93, 0x9b,\n    0xaa, 0x96, 0x81, 0x7a, 0x80, 0x84, 0x7c, 0x73, 0x7c, 0x7c, 0x7e, 0x7e, 0x7e, 0x7d, 0x7b, 0x7a,\n    0x86, 0x86, 0x86, 0x83, 0x80, 0x7e, 0x7f, 0x80, 0x86, 0x80, 0x77, 0x71, 0x6c, 0x68, 0x62, 0x5e,\n    0x65, 0x67, 0x6c, 0x74, 0x79, 0x79, 0x74, 0x6f, 0x70, 0x70, 0x70, 0x6e, 0x6f, 0x74, 0x7d, 0x84,\n    0x85, 0x85, 0x85, 0x82, 0x7e, 0x77, 0x71, 0x6d, 0x6c, 0x6a, 0x71, 0x7b, 0x79, 0x6e, 0x6c, 0x73,\n    0x7d, 0x80, 0x84, 0x89, 0x8c, 0x8e, 0x8e, 0x8e, 0x8f, 0x8f, 0x8f, 0x90, 0x90, 0x90, 0x91, 0x91,\n    0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91,\n    0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x91, 0x91, 0x91, 0x90, 0x8f, 0x8f, 0x8e, 0x8e,\n    0x8d, 0x8d, 0x8e, 0x8e, 0x8f, 0x8f, 0x8f, 0x90, 0x8f, 0x8f, 0x8e, 0x8e, 0x8e, 0x8d, 0x8d, 0x8d,\n    0x8f, 0x8f, 0x8e, 0x8e, 0x8d, 0x8d, 0x8c, 0x8c, 0x89, 0x87, 0x84, 0x81, 0x7e, 0x7b, 0x7a, 0x7a,\n    0x76, 0x76, 0x75, 0x74, 0x74, 0x75, 0x76, 0x77, 0x7a, 0x79, 0x77, 0x76, 0x75, 0x75, 0x75, 0x76,\n    0x7a, 0x8d, 0xa0, 0xa7, 0xa5, 0x9f, 0x9b, 0x98, 0x92, 0x90, 0x8d, 0x89, 0x84, 0x7f, 0x7b, 0x79,\n    0x81, 0x81, 0x82, 0x84, 0x86, 0x87, 0x86, 0x85, 0x8b, 0x88, 0x84, 0x80, 0x7e, 0x7e, 0x7f, 0x80,\n    0x81, 0x82, 0x84, 0x85, 0x85, 0x85, 0x85, 0x84, 0x86, 0x85, 0x84, 0x83, 0x83, 0x83, 0x84, 0x84,\n    0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x85, 0x85, 0x84, 0x84, 0x85, 0x86, 0x87, 0x87,\n    0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x86, 0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85,\n    0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x82, 0x82, 0x82, 0x82,\n    0x81, 0x81, 0x82, 0x83, 0x84, 0x85, 0x85, 0x86, 0x82, 0x82, 0x85, 0x8a, 0x8e, 0x8d, 0x87, 0x82,\n    0x80, 0x7d, 0x7a, 0x7a, 0x7c, 0x7c, 0x7a, 0x77, 0x79, 0x79, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x7b,\n    0x79, 0x78, 0x7a, 0x83, 0x8c, 0x8e, 0x87, 0x80, 0x7a, 0x7b, 0x7d, 0x7e, 0x7e, 0x7d, 0x7b, 0x7a,\n    0x77, 0x77, 0x77, 0x78, 0x79, 0x7b, 0x7d, 0x7e, 0x87, 0x87, 0x87, 0x86, 0x86, 0x8a, 0x92, 0x98,\n    0xa5, 0x96, 0x85, 0x7e, 0x80, 0x81, 0x7c, 0x76, 0x75, 0x80, 0x8f, 0x99, 0x97, 0x8a, 0x78, 0x6b,\n    0x77, 0x78, 0x79, 0x7b, 0x7c, 0x7d, 0x7c, 0x7c, 0x87, 0x80, 0x78, 0x71, 0x6c, 0x66, 0x60, 0x5b,\n    0x67, 0x73, 0x84, 0x94, 0x99, 0x8f, 0x7d, 0x6e, 0x6d, 0x6e, 0x6f, 0x6f, 0x70, 0x75, 0x7d, 0x84,\n    0x85, 0x86, 0x85, 0x83, 0x7f, 0x79, 0x73, 0x6f, 0x6d, 0x6c, 0x72, 0x7c, 0x7a, 0x70, 0x6f, 0x77,\n    0x81, 0x84, 0x87, 0x8b, 0x8e, 0x8f, 0x8e, 0x8e, 0x90, 0x90, 0x90, 0x90, 0x91, 0x91, 0x91, 0x91,\n    0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92,\n    0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x92, 0x92, 0x91, 0x91, 0x90, 0x8f, 0x8f,\n    0x8e, 0x8f, 0x8f, 0x90, 0x90, 0x91, 0x91, 0x92, 0x91, 0x91, 0x90, 0x90, 0x90, 0x8f, 0x8f, 0x8f,\n    0x90, 0x8f, 0x8f, 0x8e, 0x8d, 0x8d, 0x8c, 0x8c, 0x8c, 0x8a, 0x86, 0x83, 0x7f, 0x7d, 0x7b, 0x7b,\n    0x77, 0x77, 0x76, 0x76, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x76, 0x77, 0x77,\n    0x7a, 0x92, 0xa8, 0xad, 0xab, 0xab, 0xaa, 0xa7, 0xa7, 0xa5, 0xa2, 0x9d, 0x97, 0x92, 0x8d, 0x8a,\n    0x8d, 0x89, 0x85, 0x85, 0x87, 0x89, 0x88, 0x86, 0x8a, 0x89, 0x87, 0x85, 0x84, 0x82, 0x82, 0x81,\n    0x83, 0x84, 0x85, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x84, 0x83, 0x83, 0x83, 0x83, 0x84, 0x85,\n    0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x84, 0x85, 0x85, 0x86, 0x86, 0x87, 0x87, 0x88,\n    0x89, 0x89, 0x89, 0x89, 0x89, 0x89, 0x89, 0x89, 0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85,\n    0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x82, 0x82, 0x81, 0x81, 0x81, 0x80,\n    0x81, 0x81, 0x82, 0x84, 0x85, 0x86, 0x87, 0x88, 0x85, 0x85, 0x87, 0x8d, 0x91, 0x8f, 0x86, 0x7e,\n    0x7c, 0x79, 0x77, 0x78, 0x7a, 0x7b, 0x78, 0x75, 0x79, 0x78, 0x78, 0x78, 0x79, 0x7b, 0x7d, 0x7e,\n    0x7d, 0x7d, 0x81, 0x8c, 0x98, 0x9c, 0x94, 0x8b, 0x7c, 0x7d, 0x7f, 0x80, 0x7f, 0x7c, 0x79, 0x77,\n    0x73, 0x74, 0x74, 0x76, 0x78, 0x7b, 0x7e, 0x7f, 0x83, 0x85, 0x86, 0x85, 0x84, 0x86, 0x8b, 0x90,\n    0x92, 0x8b, 0x84, 0x7f, 0x7e, 0x7e, 0x7e, 0x7d, 0x82, 0x8c, 0x9a, 0xa3, 0x9f, 0x90, 0x7d, 0x70,\n    0x72, 0x75, 0x7a, 0x81, 0x86, 0x87, 0x84, 0x81, 0x84, 0x7f, 0x78, 0x73, 0x6f, 0x6b, 0x66, 0x61,\n    0x68, 0x77, 0x8e, 0xa1, 0xa5, 0x97, 0x7f, 0x6d, 0x6a, 0x6c, 0x6f, 0x71, 0x73, 0x77, 0x7f, 0x85,\n    0x85, 0x85, 0x86, 0x84, 0x80, 0x7b, 0x75, 0x72, 0x6f, 0x6d, 0x74, 0x7e, 0x7c, 0x73, 0x72, 0x7a,\n    0x84, 0x86, 0x89, 0x8c, 0x8e, 0x8f, 0x8e, 0x8d, 0x90, 0x90, 0x91, 0x91, 0x91, 0x92, 0x92, 0x92,\n    0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92,\n    0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x93, 0x93, 0x92, 0x92, 0x91, 0x90, 0x90,\n    0x90, 0x90, 0x90, 0x91, 0x92, 0x93, 0x93, 0x94, 0x93, 0x92, 0x92, 0x92, 0x92, 0x91, 0x91, 0x91,\n    0x8f, 0x8f, 0x8f, 0x8e, 0x8d, 0x8d, 0x8c, 0x8c, 0x8f, 0x8c, 0x89, 0x85, 0x81, 0x7e, 0x7d, 0x7c,\n    0x79, 0x78, 0x78, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x78, 0x78, 0x79,\n    0x79, 0x97, 0xaf, 0xb2, 0xb0, 0xb5, 0xb8, 0xb4, 0xbb, 0xb9, 0xb6, 0xb2, 0xab, 0xa5, 0x9f, 0x9c,\n    0x99, 0x91, 0x87, 0x84, 0x87, 0x8a, 0x89, 0x88, 0x88, 0x8a, 0x8b, 0x8c, 0x8b, 0x88, 0x85, 0x83,\n    0x85, 0x85, 0x86, 0x87, 0x87, 0x87, 0x86, 0x86, 0x83, 0x83, 0x82, 0x82, 0x83, 0x84, 0x85, 0x86,\n    0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x86, 0x87, 0x88, 0x88, 0x88,\n    0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x86, 0x86, 0x85, 0x85, 0x85, 0x84,\n    0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x81, 0x81, 0x81, 0x80, 0x80, 0x7f, 0x7f, 0x7e,\n    0x81, 0x81, 0x83, 0x84, 0x86, 0x88, 0x89, 0x89, 0x89, 0x83, 0x7d, 0x7e, 0x82, 0x84, 0x81, 0x7d,\n    0x7a, 0x78, 0x76, 0x78, 0x7a, 0x7b, 0x78, 0x75, 0x7a, 0x79, 0x79, 0x79, 0x7b, 0x7d, 0x7f, 0x81,\n    0x82, 0x81, 0x86, 0x93, 0xa2, 0xa6, 0x9e, 0x94, 0x7e, 0x80, 0x81, 0x81, 0x80, 0x7c, 0x77, 0x74,\n    0x72, 0x73, 0x74, 0x76, 0x79, 0x7c, 0x7f, 0x81, 0x80, 0x82, 0x85, 0x84, 0x82, 0x82, 0x85, 0x88,\n    0x80, 0x80, 0x80, 0x7d, 0x7b, 0x7c, 0x80, 0x83, 0x97, 0x99, 0x9c, 0x9b, 0x97, 0x8f, 0x86, 0x81,\n    0x73, 0x77, 0x80, 0x8a, 0x92, 0x93, 0x8e, 0x88, 0x81, 0x7d, 0x78, 0x75, 0x73, 0x71, 0x6d, 0x69,\n    0x6a, 0x75, 0x86, 0x96, 0x9a, 0x8f, 0x7c, 0x6d, 0x68, 0x6b, 0x70, 0x73, 0x75, 0x7a, 0x80, 0x85,\n    0x85, 0x85, 0x86, 0x85, 0x81, 0x7c, 0x77, 0x73, 0x71, 0x6f, 0x75, 0x7f, 0x7e, 0x74, 0x74, 0x7d,\n    0x85, 0x87, 0x8a, 0x8d, 0x8e, 0x8e, 0x8e, 0x8d, 0x90, 0x91, 0x91, 0x91, 0x92, 0x92, 0x92, 0x92,\n    0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93,\n    0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x93, 0x93, 0x92, 0x91, 0x91, 0x91,\n    0x90, 0x91, 0x91, 0x92, 0x93, 0x94, 0x95, 0x95, 0x94, 0x94, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92,\n    0x8f, 0x8f, 0x8e, 0x8e, 0x8d, 0x8c, 0x8c, 0x8c, 0x90, 0x8e, 0x8a, 0x86, 0x82, 0x7f, 0x7d, 0x7d,\n    0x7a, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7c, 0x7d, 0x7a, 0x79, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x7b,\n    0x79, 0x99, 0xb3, 0xb5, 0xb4, 0xbc, 0xbf, 0xbb, 0xc7, 0xc6, 0xc3, 0xbe, 0xb8, 0xb1, 0xab, 0xa8,\n    0xa0, 0x96, 0x89, 0x84, 0x86, 0x8a, 0x8a, 0x88, 0x87, 0x8a, 0x8e, 0x91, 0x90, 0x8c, 0x87, 0x84,\n    0x86, 0x86, 0x87, 0x88, 0x88, 0x88, 0x87, 0x86, 0x82, 0x82, 0x82, 0x82, 0x83, 0x85, 0x86, 0x87,\n    0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x84, 0x84, 0x86, 0x87, 0x88, 0x88, 0x88, 0x88,\n    0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x87, 0x87, 0x86, 0x86, 0x85, 0x85, 0x84, 0x84,\n    0x83, 0x83, 0x83, 0x83, 0x82, 0x82, 0x82, 0x82, 0x81, 0x81, 0x82, 0x83, 0x83, 0x82, 0x81, 0x81,\n    0x82, 0x83, 0x84, 0x85, 0x86, 0x87, 0x87, 0x88, 0x85, 0x87, 0x86, 0x83, 0x7d, 0x7a, 0x7a, 0x7c,\n    0x7b, 0x7a, 0x79, 0x78, 0x79, 0x7b, 0x7d, 0x7f, 0x81, 0x7c, 0x76, 0x75, 0x7b, 0x89, 0x99, 0xa3,\n    0xa8, 0x9c, 0x8e, 0x89, 0x8b, 0x8b, 0x84, 0x7c, 0x80, 0x7c, 0x7b, 0x84, 0x90, 0x95, 0x90, 0x88,\n    0x79, 0x78, 0x76, 0x76, 0x77, 0x7b, 0x7e, 0x80, 0x83, 0x84, 0x85, 0x86, 0x86, 0x85, 0x84, 0x83,\n    0x7a, 0x7c, 0x7c, 0x7a, 0x79, 0x7f, 0x8d, 0x98, 0xb7, 0xb9, 0xb5, 0xa5, 0x8d, 0x7a, 0x73, 0x73,\n    0x79, 0x73, 0x76, 0x88, 0x9f, 0xa5, 0x95, 0x83, 0x7d, 0x74, 0x6c, 0x6e, 0x78, 0x7f, 0x7d, 0x79,\n    0x7d, 0x7f, 0x82, 0x84, 0x82, 0x7c, 0x75, 0x70, 0x6f, 0x74, 0x7a, 0x7c, 0x7c, 0x7c, 0x7e, 0x80,\n    0x83, 0x84, 0x88, 0x8e, 0x95, 0x9d, 0xa4, 0xa8, 0x87, 0x82, 0x7a, 0x74, 0x72, 0x75, 0x79, 0x7d,\n    0x8b, 0x8b, 0x8c, 0x8c, 0x8c, 0x8d, 0x8d, 0x8d, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92,\n    0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93,\n    0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x93, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x92,\n    0x92, 0x92, 0x93, 0x94, 0x95, 0x96, 0x96, 0x97, 0x96, 0x96, 0x96, 0x95, 0x94, 0x94, 0x94, 0x93,\n    0x92, 0x92, 0x91, 0x91, 0x90, 0x90, 0x8f, 0x8f, 0x89, 0x8a, 0x8b, 0x8a, 0x88, 0x84, 0x80, 0x7d,\n    0x79, 0x79, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x7a, 0x7b, 0x7d, 0x7e,\n    0x84, 0x9d, 0xb1, 0xb5, 0xb7, 0xbe, 0xc3, 0xc1, 0xc0, 0xc1, 0xc3, 0xc3, 0xc0, 0xba, 0xb4, 0xb0,\n    0xae, 0x9e, 0x8c, 0x84, 0x86, 0x89, 0x87, 0x83, 0x89, 0x8b, 0x8e, 0x8f, 0x90, 0x8e, 0x8c, 0x8b,\n    0x87, 0x84, 0x82, 0x83, 0x86, 0x88, 0x86, 0x84, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86,\n    0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x88, 0x88, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86,\n    0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x86, 0x86, 0x85, 0x85, 0x84, 0x84,\n    0x83, 0x83, 0x83, 0x83, 0x82, 0x82, 0x82, 0x82, 0x81, 0x82, 0x83, 0x84, 0x84, 0x83, 0x82, 0x81,\n    0x81, 0x81, 0x81, 0x81, 0x82, 0x82, 0x82, 0x83, 0x86, 0x87, 0x86, 0x82, 0x7c, 0x79, 0x79, 0x7b,\n    0x7b, 0x7a, 0x78, 0x77, 0x76, 0x78, 0x7a, 0x7b, 0x81, 0x7e, 0x7a, 0x7a, 0x80, 0x8c, 0x98, 0xa0,\n    0x9d, 0x92, 0x86, 0x82, 0x84, 0x84, 0x7e, 0x78, 0x78, 0x75, 0x77, 0x82, 0x90, 0x98, 0x95, 0x8f,\n    0x79, 0x78, 0x77, 0x77, 0x79, 0x7c, 0x7f, 0x81, 0x83, 0x84, 0x85, 0x86, 0x86, 0x85, 0x84, 0x83,\n    0x79, 0x7b, 0x7b, 0x78, 0x76, 0x7c, 0x87, 0x91, 0xa4, 0xa8, 0xa6, 0x9a, 0x88, 0x7a, 0x77, 0x78,\n    0x7e, 0x77, 0x74, 0x7e, 0x8f, 0x98, 0x94, 0x8c, 0x8a, 0x82, 0x7d, 0x81, 0x8c, 0x95, 0x95, 0x92,\n    0x8a, 0x89, 0x8a, 0x8f, 0x93, 0x91, 0x8a, 0x84, 0x7d, 0x7f, 0x7f, 0x7c, 0x7a, 0x7a, 0x7e, 0x82,\n    0x84, 0x85, 0x88, 0x8b, 0x90, 0x96, 0x9b, 0x9e, 0x8a, 0x87, 0x82, 0x7f, 0x7e, 0x80, 0x83, 0x85,\n    0x8a, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8e, 0x8f, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93,\n    0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93,\n    0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x94, 0x93, 0x93, 0x93, 0x93,\n    0x92, 0x93, 0x93, 0x94, 0x95, 0x96, 0x96, 0x97, 0x96, 0x96, 0x96, 0x95, 0x95, 0x94, 0x94, 0x94,\n    0x93, 0x93, 0x92, 0x91, 0x91, 0x90, 0x90, 0x8f, 0x8a, 0x8b, 0x8b, 0x8b, 0x88, 0x85, 0x81, 0x7e,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7e, 0x7f, 0x80,\n    0x86, 0x9e, 0xb3, 0xb7, 0xb7, 0xbd, 0xbf, 0xbc, 0xb9, 0xba, 0xbc, 0xbd, 0xbc, 0xba, 0xb7, 0xb5,\n    0xaa, 0x9c, 0x8b, 0x84, 0x86, 0x8a, 0x88, 0x85, 0x88, 0x8b, 0x8e, 0x8f, 0x8e, 0x8b, 0x89, 0x88,\n    0x89, 0x86, 0x83, 0x84, 0x86, 0x88, 0x86, 0x84, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86,\n    0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x86,\n    0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x84, 0x84, 0x83, 0x83,\n    0x83, 0x83, 0x83, 0x83, 0x82, 0x82, 0x82, 0x82, 0x82, 0x83, 0x84, 0x85, 0x85, 0x84, 0x83, 0x82,\n    0x80, 0x7f, 0x7f, 0x7e, 0x7e, 0x7d, 0x7c, 0x7c, 0x84, 0x85, 0x84, 0x80, 0x7b, 0x79, 0x7a, 0x7c,\n    0x7d, 0x7b, 0x79, 0x76, 0x75, 0x75, 0x76, 0x77, 0x7f, 0x7e, 0x7e, 0x80, 0x85, 0x8c, 0x94, 0x99,\n    0x8e, 0x86, 0x7c, 0x79, 0x7b, 0x7c, 0x78, 0x73, 0x79, 0x76, 0x78, 0x7f, 0x8a, 0x90, 0x8d, 0x88,\n    0x79, 0x79, 0x78, 0x79, 0x7a, 0x7d, 0x80, 0x82, 0x83, 0x84, 0x85, 0x86, 0x86, 0x85, 0x84, 0x83,\n    0x7b, 0x7b, 0x7a, 0x77, 0x75, 0x78, 0x80, 0x86, 0x8b, 0x8f, 0x91, 0x8b, 0x81, 0x7a, 0x7a, 0x7d,\n    0x7f, 0x7a, 0x74, 0x74, 0x7c, 0x86, 0x8e, 0x93, 0x8e, 0x88, 0x85, 0x8b, 0x96, 0xa0, 0xa2, 0xa1,\n    0x94, 0x8f, 0x8e, 0x98, 0xa6, 0xac, 0xa7, 0x9f, 0x97, 0x93, 0x8a, 0x80, 0x78, 0x78, 0x7e, 0x84,\n    0x87, 0x87, 0x87, 0x88, 0x89, 0x8b, 0x8d, 0x8e, 0x83, 0x83, 0x83, 0x84, 0x85, 0x86, 0x87, 0x88,\n    0x88, 0x89, 0x8a, 0x8c, 0x8d, 0x8f, 0x90, 0x91, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93,\n    0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93,\n    0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x94,\n    0x93, 0x93, 0x94, 0x94, 0x95, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x95,\n    0x94, 0x93, 0x93, 0x92, 0x92, 0x91, 0x91, 0x90, 0x8c, 0x8d, 0x8d, 0x8c, 0x89, 0x86, 0x82, 0x80,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7f, 0x80, 0x81,\n    0x88, 0xa1, 0xb6, 0xb9, 0xb7, 0xba, 0xba, 0xb5, 0xb6, 0xb7, 0xb7, 0xb7, 0xb8, 0xb9, 0xba, 0xba,\n    0xa3, 0x97, 0x8a, 0x84, 0x87, 0x8a, 0x89, 0x87, 0x88, 0x8c, 0x90, 0x90, 0x8d, 0x89, 0x87, 0x87,\n    0x8d, 0x89, 0x85, 0x85, 0x86, 0x87, 0x86, 0x83, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85,\n    0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x87, 0x87, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85,\n    0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x85, 0x84, 0x84, 0x83, 0x83, 0x83, 0x83, 0x82, 0x82,\n    0x83, 0x83, 0x83, 0x83, 0x82, 0x82, 0x82, 0x82, 0x83, 0x84, 0x85, 0x85, 0x85, 0x85, 0x84, 0x83,\n    0x82, 0x81, 0x80, 0x7e, 0x7c, 0x7b, 0x7a, 0x79, 0x7c, 0x7e, 0x7f, 0x7d, 0x7a, 0x7b, 0x7f, 0x83,\n    0x81, 0x7f, 0x7c, 0x78, 0x76, 0x76, 0x76, 0x76, 0x7b, 0x7c, 0x7f, 0x82, 0x85, 0x89, 0x8b, 0x8d,\n    0x82, 0x7c, 0x76, 0x74, 0x76, 0x77, 0x75, 0x72, 0x81, 0x7d, 0x7b, 0x7c, 0x7f, 0x7e, 0x7a, 0x75,\n    0x79, 0x79, 0x79, 0x7a, 0x7c, 0x7f, 0x81, 0x83, 0x83, 0x84, 0x85, 0x86, 0x86, 0x85, 0x84, 0x83,\n    0x7e, 0x7d, 0x7b, 0x78, 0x77, 0x78, 0x7b, 0x7e, 0x7a, 0x7d, 0x80, 0x7e, 0x7a, 0x78, 0x7a, 0x7d,\n    0x7a, 0x7a, 0x77, 0x73, 0x72, 0x79, 0x85, 0x8f, 0x82, 0x7f, 0x7d, 0x82, 0x8a, 0x92, 0x95, 0x95,\n    0x8e, 0x88, 0x88, 0x96, 0xac, 0xba, 0xb9, 0xb3, 0xb4, 0xab, 0x9a, 0x87, 0x7a, 0x77, 0x7d, 0x83,\n    0x89, 0x88, 0x86, 0x84, 0x82, 0x80, 0x7f, 0x7f, 0x75, 0x78, 0x7c, 0x80, 0x83, 0x84, 0x83, 0x83,\n    0x87, 0x88, 0x8a, 0x8c, 0x8e, 0x90, 0x92, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93,\n    0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94,\n    0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x95,\n    0x94, 0x94, 0x94, 0x95, 0x95, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96,\n    0x95, 0x95, 0x94, 0x94, 0x93, 0x92, 0x92, 0x92, 0x8f, 0x8f, 0x8e, 0x8d, 0x8a, 0x87, 0x84, 0x83,\n    0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7b, 0x7b, 0x7a, 0x7b, 0x7b, 0x7d, 0x7e, 0x7f,\n    0x8a, 0xa2, 0xb6, 0xb7, 0xb4, 0xb5, 0xb4, 0xaf, 0xaa, 0xa9, 0xa6, 0xa5, 0xa4, 0xa6, 0xa8, 0xa9,\n    0x9a, 0x92, 0x89, 0x85, 0x87, 0x8a, 0x8a, 0x89, 0x8b, 0x91, 0x96, 0x96, 0x8f, 0x8a, 0x88, 0x89,\n    0x8f, 0x8b, 0x86, 0x85, 0x86, 0x87, 0x85, 0x83, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85,\n    0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x86, 0x86, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84,\n    0x82, 0x82, 0x82, 0x83, 0x83, 0x83, 0x84, 0x84, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x81, 0x81,\n    0x83, 0x83, 0x83, 0x83, 0x82, 0x82, 0x82, 0x82, 0x83, 0x84, 0x85, 0x85, 0x85, 0x85, 0x84, 0x83,\n    0x85, 0x84, 0x83, 0x80, 0x7e, 0x7c, 0x7a, 0x79, 0x75, 0x77, 0x79, 0x79, 0x7a, 0x7d, 0x84, 0x89,\n    0x84, 0x82, 0x7e, 0x7b, 0x79, 0x78, 0x79, 0x79, 0x77, 0x79, 0x7d, 0x80, 0x82, 0x83, 0x82, 0x81,\n    0x7b, 0x79, 0x75, 0x74, 0x75, 0x76, 0x76, 0x76, 0x7c, 0x7a, 0x78, 0x77, 0x76, 0x74, 0x70, 0x6e,\n    0x78, 0x79, 0x79, 0x7b, 0x7d, 0x80, 0x82, 0x83, 0x83, 0x84, 0x85, 0x86, 0x86, 0x85, 0x84, 0x83,\n    0x81, 0x7f, 0x7d, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x74, 0x76, 0x77, 0x77, 0x76, 0x77, 0x79, 0x7b,\n    0x74, 0x78, 0x7b, 0x78, 0x73, 0x74, 0x7b, 0x83, 0x79, 0x77, 0x76, 0x78, 0x7b, 0x7f, 0x81, 0x81,\n    0x81, 0x7c, 0x7c, 0x8b, 0xa2, 0xb3, 0xb8, 0xb6, 0xc5, 0xb9, 0xa5, 0x8f, 0x7e, 0x78, 0x7c, 0x82,\n    0x89, 0x88, 0x85, 0x82, 0x7e, 0x7b, 0x78, 0x76, 0x72, 0x76, 0x7c, 0x82, 0x86, 0x87, 0x86, 0x85,\n    0x87, 0x88, 0x8a, 0x8c, 0x8f, 0x91, 0x93, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94,\n    0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94,\n    0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x97, 0x97, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95,\n    0x95, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x96, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97,\n    0x96, 0x96, 0x96, 0x95, 0x94, 0x94, 0x93, 0x93, 0x92, 0x91, 0x90, 0x8e, 0x8c, 0x89, 0x87, 0x85,\n    0x7b, 0x7a, 0x79, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x78, 0x78, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x7b,\n    0x8b, 0xa1, 0xb3, 0xb2, 0xae, 0xaf, 0xaf, 0xab, 0x9d, 0x9b, 0x96, 0x92, 0x8f, 0x8d, 0x8d, 0x8e,\n    0x92, 0x8e, 0x89, 0x87, 0x87, 0x89, 0x8a, 0x8a, 0x8e, 0x97, 0x9e, 0x9d, 0x94, 0x8d, 0x8c, 0x8f,\n    0x91, 0x8c, 0x87, 0x84, 0x85, 0x86, 0x85, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84,\n    0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x85, 0x85, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83,\n    0x82, 0x82, 0x82, 0x82, 0x83, 0x83, 0x83, 0x83, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81,\n    0x83, 0x83, 0x83, 0x83, 0x82, 0x82, 0x82, 0x82, 0x82, 0x83, 0x84, 0x85, 0x85, 0x84, 0x83, 0x82,\n    0x87, 0x85, 0x84, 0x81, 0x7f, 0x7c, 0x7a, 0x79, 0x74, 0x75, 0x77, 0x77, 0x78, 0x7c, 0x83, 0x89,\n    0x82, 0x80, 0x7e, 0x7b, 0x7a, 0x7a, 0x7b, 0x7c, 0x77, 0x79, 0x7c, 0x7e, 0x7f, 0x7d, 0x7b, 0x79,\n    0x78, 0x78, 0x77, 0x76, 0x76, 0x77, 0x78, 0x79, 0x6f, 0x70, 0x71, 0x72, 0x74, 0x75, 0x76, 0x77,\n    0x77, 0x78, 0x79, 0x7b, 0x7e, 0x80, 0x82, 0x83, 0x83, 0x84, 0x85, 0x86, 0x86, 0x85, 0x84, 0x83,\n    0x81, 0x7e, 0x7b, 0x7c, 0x7e, 0x7d, 0x7a, 0x76, 0x76, 0x76, 0x76, 0x76, 0x78, 0x7a, 0x7c, 0x7d,\n    0x75, 0x79, 0x7c, 0x7b, 0x77, 0x74, 0x75, 0x78, 0x79, 0x79, 0x79, 0x78, 0x79, 0x7a, 0x7b, 0x7c,\n    0x7b, 0x7a, 0x7b, 0x83, 0x90, 0x9e, 0xa8, 0xad, 0xbd, 0xb4, 0xa4, 0x91, 0x82, 0x7c, 0x7e, 0x82,\n    0x88, 0x87, 0x85, 0x82, 0x7f, 0x7a, 0x77, 0x75, 0x7b, 0x7e, 0x84, 0x89, 0x8d, 0x8e, 0x8e, 0x8d,\n    0x88, 0x89, 0x8a, 0x8c, 0x8f, 0x91, 0x93, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94,\n    0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94,\n    0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x95,\n    0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x97, 0x97, 0x97, 0x97, 0x98, 0x98, 0x98, 0x98,\n    0x98, 0x97, 0x97, 0x96, 0x96, 0x95, 0x94, 0x94, 0x94, 0x93, 0x92, 0x90, 0x8d, 0x8b, 0x89, 0x88,\n    0x7e, 0x7d, 0x7a, 0x78, 0x77, 0x77, 0x78, 0x79, 0x77, 0x77, 0x76, 0x76, 0x76, 0x77, 0x78, 0x79,\n    0x8a, 0x9e, 0xac, 0xa9, 0xa5, 0xa9, 0xac, 0xaa, 0xa9, 0xa6, 0xa3, 0x9e, 0x99, 0x94, 0x91, 0x8f,\n    0x8c, 0x8b, 0x8a, 0x88, 0x87, 0x88, 0x89, 0x8a, 0x8f, 0x99, 0xa3, 0xa1, 0x97, 0x8f, 0x8f, 0x93,\n    0x90, 0x8b, 0x85, 0x83, 0x84, 0x85, 0x85, 0x84, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83,\n    0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x84, 0x84, 0x83, 0x83, 0x83, 0x82, 0x82, 0x82,\n    0x82, 0x82, 0x82, 0x83, 0x83, 0x83, 0x84, 0x84, 0x80, 0x80, 0x81, 0x81, 0x81, 0x82, 0x82, 0x82,\n    0x83, 0x83, 0x83, 0x83, 0x82, 0x82, 0x82, 0x82, 0x81, 0x82, 0x83, 0x84, 0x84, 0x83, 0x82, 0x81,\n    0x84, 0x84, 0x82, 0x7f, 0x7d, 0x7a, 0x79, 0x78, 0x7a, 0x7b, 0x7a, 0x77, 0x75, 0x77, 0x7c, 0x81,\n    0x7c, 0x7b, 0x79, 0x78, 0x77, 0x79, 0x7a, 0x7c, 0x7b, 0x7c, 0x7e, 0x7e, 0x7e, 0x7c, 0x79, 0x78,\n    0x76, 0x77, 0x78, 0x78, 0x76, 0x76, 0x79, 0x7b, 0x6f, 0x71, 0x74, 0x75, 0x75, 0x76, 0x79, 0x7c,\n    0x75, 0x76, 0x78, 0x7b, 0x7e, 0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x86, 0x85, 0x84, 0x83,\n    0x7c, 0x79, 0x77, 0x79, 0x7d, 0x7d, 0x78, 0x72, 0x78, 0x77, 0x76, 0x79, 0x7e, 0x82, 0x84, 0x84,\n    0x80, 0x7d, 0x79, 0x76, 0x76, 0x76, 0x76, 0x75, 0x79, 0x7a, 0x7c, 0x7c, 0x7b, 0x7c, 0x7e, 0x81,\n    0x85, 0x86, 0x87, 0x84, 0x82, 0x88, 0x94, 0x9f, 0xa2, 0x9f, 0x98, 0x8e, 0x85, 0x81, 0x83, 0x86,\n    0x86, 0x86, 0x85, 0x84, 0x81, 0x7e, 0x7a, 0x78, 0x7e, 0x80, 0x84, 0x87, 0x8a, 0x8c, 0x8d, 0x8d,\n    0x89, 0x8a, 0x8b, 0x8d, 0x8f, 0x91, 0x92, 0x93, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94,\n    0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95,\n    0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x96, 0x96, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94,\n    0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x97, 0x97, 0x97, 0x98, 0x98, 0x99, 0x99, 0x99,\n    0x99, 0x98, 0x98, 0x97, 0x97, 0x96, 0x95, 0x95, 0x96, 0x95, 0x93, 0x90, 0x8e, 0x8c, 0x8b, 0x8a,\n    0x85, 0x82, 0x7f, 0x7b, 0x79, 0x79, 0x7a, 0x7b, 0x79, 0x78, 0x78, 0x77, 0x77, 0x78, 0x79, 0x7a,\n    0x88, 0x9a, 0xa5, 0xa0, 0x9c, 0xa3, 0xab, 0xab, 0xb2, 0xb2, 0xb1, 0xae, 0xa9, 0xa4, 0x9e, 0x9b,\n    0x88, 0x89, 0x8a, 0x89, 0x87, 0x86, 0x87, 0x89, 0x8c, 0x98, 0xa4, 0xa2, 0x97, 0x8e, 0x90, 0x95,\n    0x8f, 0x89, 0x83, 0x81, 0x83, 0x85, 0x85, 0x84, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83,\n    0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x82, 0x82, 0x82, 0x81, 0x81,\n    0x83, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x80, 0x80, 0x81, 0x81, 0x82, 0x82, 0x83, 0x83,\n    0x83, 0x83, 0x83, 0x83, 0x82, 0x82, 0x82, 0x82, 0x81, 0x81, 0x82, 0x83, 0x83, 0x82, 0x81, 0x81,\n    0x82, 0x81, 0x7f, 0x7d, 0x7b, 0x78, 0x77, 0x76, 0x81, 0x81, 0x7e, 0x78, 0x73, 0x72, 0x75, 0x79,\n    0x77, 0x76, 0x75, 0x74, 0x75, 0x77, 0x79, 0x7b, 0x7f, 0x7f, 0x80, 0x7f, 0x7e, 0x7c, 0x7a, 0x79,\n    0x74, 0x76, 0x78, 0x78, 0x75, 0x75, 0x78, 0x7b, 0x7b, 0x7d, 0x7d, 0x7a, 0x75, 0x73, 0x74, 0x76,\n    0x74, 0x75, 0x78, 0x7b, 0x7d, 0x7f, 0x81, 0x81, 0x83, 0x84, 0x85, 0x86, 0x86, 0x85, 0x84, 0x83,\n    0x77, 0x74, 0x73, 0x77, 0x7c, 0x7c, 0x75, 0x6e, 0x79, 0x77, 0x77, 0x7b, 0x82, 0x89, 0x8b, 0x8c,\n    0x8b, 0x81, 0x75, 0x70, 0x72, 0x77, 0x78, 0x77, 0x73, 0x76, 0x7a, 0x7b, 0x7a, 0x7c, 0x80, 0x84,\n    0x91, 0x95, 0x94, 0x89, 0x7c, 0x7b, 0x87, 0x95, 0x8b, 0x8c, 0x8c, 0x89, 0x85, 0x84, 0x86, 0x89,\n    0x85, 0x85, 0x85, 0x85, 0x83, 0x80, 0x7e, 0x7c, 0x79, 0x7a, 0x7c, 0x7e, 0x81, 0x83, 0x85, 0x86,\n    0x8a, 0x8b, 0x8c, 0x8d, 0x8f, 0x90, 0x91, 0x92, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94,\n    0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95,\n    0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x94, 0x93,\n    0x97, 0x97, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x97, 0x97, 0x97, 0x98, 0x99, 0x99, 0x99, 0x9a,\n    0x99, 0x99, 0x98, 0x98, 0x97, 0x96, 0x96, 0x96, 0x97, 0x96, 0x94, 0x91, 0x8f, 0x8d, 0x8c, 0x8b,\n    0x8a, 0x87, 0x83, 0x7f, 0x7c, 0x7c, 0x7c, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x7a, 0x7a, 0x7b, 0x7c,\n    0x87, 0x98, 0xa0, 0x9a, 0x96, 0xa0, 0xaa, 0xad, 0xa5, 0xa7, 0xa8, 0xa8, 0xa5, 0x9f, 0x99, 0x95,\n    0x86, 0x88, 0x8b, 0x8a, 0x87, 0x85, 0x86, 0x88, 0x89, 0x96, 0xa2, 0xa1, 0x95, 0x8d, 0x8e, 0x94,\n    0x8d, 0x88, 0x82, 0x80, 0x82, 0x85, 0x85, 0x85, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83,\n    0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x82, 0x82, 0x82, 0x81, 0x81, 0x81,\n    0x83, 0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x80, 0x81, 0x81, 0x82, 0x82, 0x83, 0x83, 0x83,\n    0x86, 0x85, 0x85, 0x84, 0x83, 0x82, 0x81, 0x81, 0x81, 0x82, 0x83, 0x85, 0x85, 0x85, 0x85, 0x84,\n    0x84, 0x83, 0x81, 0x7e, 0x7c, 0x79, 0x77, 0x76, 0x84, 0x83, 0x81, 0x7f, 0x7c, 0x7a, 0x78, 0x77,\n    0x77, 0x77, 0x78, 0x79, 0x79, 0x78, 0x77, 0x76, 0x7d, 0x7d, 0x7e, 0x7d, 0x7c, 0x7a, 0x79, 0x77,\n    0x81, 0x7e, 0x7a, 0x7a, 0x7b, 0x7b, 0x78, 0x75, 0x78, 0x77, 0x77, 0x7a, 0x7d, 0x7c, 0x77, 0x73,\n    0x76, 0x77, 0x78, 0x7b, 0x7d, 0x7f, 0x81, 0x82, 0x86, 0x84, 0x84, 0x86, 0x88, 0x87, 0x82, 0x7e,\n    0x79, 0x79, 0x77, 0x76, 0x75, 0x75, 0x76, 0x76, 0x75, 0x75, 0x78, 0x7f, 0x8b, 0x9b, 0xa9, 0xb2,\n    0xab, 0x98, 0x81, 0x75, 0x75, 0x78, 0x78, 0x75, 0x77, 0x76, 0x75, 0x74, 0x75, 0x79, 0x7c, 0x7e,\n    0x92, 0x91, 0x8e, 0x8b, 0x88, 0x85, 0x83, 0x81, 0x82, 0x82, 0x82, 0x82, 0x82, 0x83, 0x83, 0x83,\n    0x87, 0x87, 0x86, 0x85, 0x83, 0x80, 0x7e, 0x7c, 0x7e, 0x7b, 0x79, 0x7b, 0x81, 0x87, 0x8a, 0x8a,\n    0x8e, 0x8e, 0x8f, 0x90, 0x90, 0x91, 0x92, 0x92, 0x94, 0x94, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96,\n    0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94,\n    0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x94, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95,\n    0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x98, 0x98, 0x98, 0x99, 0x99,\n    0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x96, 0x96, 0x95, 0x94, 0x92, 0x90, 0x8d, 0x8c,\n    0x88, 0x86, 0x82, 0x7e, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x8e, 0x94, 0x9a, 0x9e, 0x9e, 0x9f, 0xa0, 0xa2, 0x9d, 0x99, 0x95, 0x93, 0x93, 0x91, 0x8d, 0x89,\n    0x88, 0x87, 0x85, 0x84, 0x84, 0x85, 0x86, 0x87, 0x87, 0x8e, 0x96, 0x96, 0x90, 0x8a, 0x8a, 0x8b,\n    0x8c, 0x8a, 0x88, 0x85, 0x83, 0x82, 0x81, 0x81, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x7f, 0x7f, 0x80, 0x81, 0x82, 0x83, 0x83, 0x84, 0x83, 0x82, 0x81, 0x80, 0x80, 0x81, 0x82, 0x83,\n    0x80, 0x80, 0x81, 0x82, 0x83, 0x84, 0x84, 0x85, 0x83, 0x82, 0x82, 0x81, 0x81, 0x82, 0x83, 0x84,\n    0x86, 0x85, 0x85, 0x84, 0x83, 0x82, 0x81, 0x81, 0x81, 0x82, 0x84, 0x85, 0x86, 0x86, 0x85, 0x85,\n    0x85, 0x84, 0x81, 0x7e, 0x7b, 0x78, 0x76, 0x75, 0x81, 0x80, 0x7f, 0x7d, 0x7b, 0x79, 0x78, 0x77,\n    0x78, 0x79, 0x7a, 0x7c, 0x7d, 0x7d, 0x7c, 0x7c, 0x7e, 0x7e, 0x7f, 0x7e, 0x7d, 0x7c, 0x7a, 0x79,\n    0x77, 0x7b, 0x82, 0x8b, 0x90, 0x8d, 0x85, 0x7e, 0x7f, 0x7c, 0x7a, 0x7a, 0x7c, 0x7b, 0x78, 0x74,\n    0x76, 0x77, 0x79, 0x7b, 0x7d, 0x7f, 0x81, 0x82, 0x86, 0x84, 0x84, 0x86, 0x88, 0x87, 0x82, 0x7e,\n    0x79, 0x79, 0x77, 0x76, 0x75, 0x75, 0x76, 0x76, 0x76, 0x75, 0x77, 0x7c, 0x86, 0x93, 0x9f, 0xa6,\n    0xa1, 0x91, 0x7e, 0x75, 0x75, 0x78, 0x77, 0x74, 0x77, 0x76, 0x75, 0x74, 0x75, 0x77, 0x7a, 0x7c,\n    0x89, 0x88, 0x86, 0x84, 0x82, 0x80, 0x7e, 0x7d, 0x7f, 0x7f, 0x7f, 0x7f, 0x80, 0x81, 0x82, 0x83,\n    0x87, 0x87, 0x86, 0x85, 0x83, 0x80, 0x7e, 0x7c, 0x7e, 0x7b, 0x79, 0x7b, 0x81, 0x87, 0x8a, 0x8a,\n    0x8e, 0x8e, 0x8f, 0x90, 0x91, 0x91, 0x92, 0x92, 0x94, 0x94, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96,\n    0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x94, 0x94,\n    0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x94, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95,\n    0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x98, 0x98, 0x98, 0x99, 0x99,\n    0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x96, 0x95, 0x95, 0x94, 0x92, 0x90, 0x8e, 0x8c,\n    0x89, 0x87, 0x83, 0x7f, 0x7c, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c,\n    0x8c, 0x91, 0x97, 0x9a, 0x9b, 0x9b, 0x9d, 0x9f, 0x99, 0x91, 0x86, 0x7f, 0x7f, 0x83, 0x86, 0x88,\n    0x87, 0x87, 0x85, 0x85, 0x85, 0x86, 0x87, 0x88, 0x8b, 0x91, 0x95, 0x94, 0x8e, 0x8b, 0x8b, 0x8e,\n    0x8a, 0x88, 0x86, 0x84, 0x82, 0x82, 0x81, 0x81, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x80, 0x80, 0x80, 0x81, 0x82, 0x83, 0x83, 0x84, 0x83, 0x82, 0x81, 0x81, 0x81, 0x81, 0x82, 0x83,\n    0x80, 0x81, 0x81, 0x82, 0x83, 0x84, 0x84, 0x84, 0x83, 0x82, 0x82, 0x81, 0x81, 0x82, 0x83, 0x84,\n    0x86, 0x85, 0x85, 0x84, 0x83, 0x82, 0x81, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x86, 0x86, 0x85,\n    0x86, 0x85, 0x82, 0x7f, 0x7b, 0x78, 0x75, 0x73, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x77,\n    0x78, 0x79, 0x7b, 0x7e, 0x80, 0x81, 0x82, 0x82, 0x7f, 0x7f, 0x80, 0x80, 0x7f, 0x7e, 0x7c, 0x7c,\n    0x75, 0x7a, 0x84, 0x90, 0x99, 0x9a, 0x94, 0x8e, 0x89, 0x84, 0x7e, 0x7a, 0x7a, 0x7a, 0x78, 0x76,\n    0x77, 0x78, 0x7a, 0x7b, 0x7e, 0x7f, 0x81, 0x82, 0x86, 0x84, 0x84, 0x86, 0x88, 0x87, 0x82, 0x7e,\n    0x79, 0x79, 0x77, 0x76, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x75, 0x77, 0x7d, 0x86, 0x8f, 0x94,\n    0x91, 0x86, 0x7a, 0x74, 0x76, 0x77, 0x75, 0x72, 0x77, 0x76, 0x75, 0x74, 0x74, 0x76, 0x78, 0x79,\n    0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7d, 0x7f, 0x81, 0x83,\n    0x86, 0x86, 0x86, 0x85, 0x82, 0x80, 0x7d, 0x7c, 0x7d, 0x7a, 0x79, 0x7c, 0x82, 0x88, 0x8a, 0x8a,\n    0x8e, 0x8e, 0x8f, 0x90, 0x91, 0x92, 0x93, 0x93, 0x94, 0x94, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96,\n    0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x94,\n    0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x94, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95,\n    0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x97, 0x97, 0x97, 0x97, 0x98, 0x98, 0x98, 0x98,\n    0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x95, 0x95, 0x95, 0x94, 0x93, 0x90, 0x8e, 0x8d,\n    0x8b, 0x88, 0x84, 0x80, 0x7d, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c,\n    0x87, 0x8c, 0x92, 0x94, 0x94, 0x94, 0x96, 0x99, 0x94, 0x87, 0x77, 0x6c, 0x6d, 0x76, 0x80, 0x86,\n    0x87, 0x86, 0x86, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x90, 0x91, 0x91, 0x8e, 0x8a, 0x89, 0x8c, 0x90,\n    0x86, 0x85, 0x84, 0x82, 0x82, 0x82, 0x82, 0x83, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81,\n    0x80, 0x81, 0x81, 0x82, 0x82, 0x83, 0x84, 0x84, 0x83, 0x82, 0x82, 0x81, 0x81, 0x82, 0x82, 0x83,\n    0x81, 0x81, 0x82, 0x82, 0x83, 0x84, 0x84, 0x84, 0x83, 0x82, 0x82, 0x81, 0x82, 0x83, 0x84, 0x85,\n    0x86, 0x85, 0x85, 0x84, 0x83, 0x82, 0x81, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x86, 0x86, 0x85,\n    0x87, 0x86, 0x83, 0x7f, 0x7b, 0x77, 0x74, 0x72, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77,\n    0x75, 0x76, 0x79, 0x7d, 0x7f, 0x81, 0x82, 0x83, 0x7f, 0x7f, 0x80, 0x81, 0x80, 0x7f, 0x7e, 0x7e,\n    0x83, 0x83, 0x85, 0x8c, 0x95, 0x9c, 0x9f, 0xa0, 0x90, 0x89, 0x80, 0x7a, 0x78, 0x79, 0x79, 0x78,\n    0x79, 0x79, 0x7b, 0x7c, 0x7e, 0x80, 0x81, 0x82, 0x86, 0x84, 0x84, 0x86, 0x88, 0x87, 0x82, 0x7e,\n    0x79, 0x79, 0x77, 0x76, 0x75, 0x75, 0x76, 0x76, 0x77, 0x75, 0x74, 0x73, 0x76, 0x7a, 0x7f, 0x82,\n    0x81, 0x7c, 0x76, 0x74, 0x76, 0x76, 0x74, 0x71, 0x77, 0x76, 0x75, 0x74, 0x74, 0x75, 0x76, 0x77,\n    0x75, 0x75, 0x75, 0x76, 0x76, 0x77, 0x77, 0x77, 0x75, 0x75, 0x75, 0x77, 0x79, 0x7d, 0x80, 0x82,\n    0x86, 0x86, 0x85, 0x84, 0x82, 0x80, 0x7d, 0x7c, 0x7c, 0x7a, 0x79, 0x7d, 0x83, 0x89, 0x8b, 0x8a,\n    0x8e, 0x8e, 0x8f, 0x90, 0x91, 0x92, 0x93, 0x94, 0x94, 0x94, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96,\n    0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x97, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95,\n    0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x94, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95,\n    0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x97, 0x97, 0x97, 0x97, 0x98, 0x98, 0x98,\n    0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x95, 0x95, 0x95, 0x94, 0x93, 0x91, 0x8f, 0x8e,\n    0x8c, 0x89, 0x85, 0x81, 0x7d, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e,\n    0x82, 0x86, 0x8b, 0x8d, 0x8c, 0x8d, 0x8f, 0x91, 0x8e, 0x83, 0x75, 0x6d, 0x6e, 0x76, 0x7f, 0x84,\n    0x86, 0x86, 0x87, 0x87, 0x88, 0x89, 0x8a, 0x8a, 0x8f, 0x8d, 0x89, 0x85, 0x83, 0x85, 0x89, 0x8d,\n    0x83, 0x82, 0x81, 0x81, 0x81, 0x82, 0x83, 0x84, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82,\n    0x82, 0x82, 0x82, 0x83, 0x83, 0x83, 0x84, 0x84, 0x83, 0x83, 0x82, 0x81, 0x81, 0x82, 0x83, 0x83,\n    0x82, 0x82, 0x82, 0x83, 0x83, 0x84, 0x84, 0x84, 0x83, 0x82, 0x82, 0x82, 0x82, 0x83, 0x85, 0x86,\n    0x86, 0x85, 0x85, 0x84, 0x83, 0x82, 0x81, 0x81, 0x81, 0x82, 0x83, 0x85, 0x85, 0x85, 0x85, 0x84,\n    0x87, 0x86, 0x83, 0x7f, 0x7b, 0x77, 0x74, 0x72, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x77,\n    0x70, 0x72, 0x75, 0x78, 0x7b, 0x7d, 0x7e, 0x7f, 0x7d, 0x7e, 0x7f, 0x80, 0x80, 0x80, 0x7f, 0x7e,\n    0x93, 0x91, 0x92, 0x97, 0x9e, 0xa3, 0xa4, 0xa3, 0x90, 0x88, 0x7f, 0x78, 0x77, 0x79, 0x79, 0x79,\n    0x7a, 0x7a, 0x7c, 0x7d, 0x7f, 0x80, 0x81, 0x82, 0x86, 0x84, 0x84, 0x86, 0x88, 0x87, 0x82, 0x7e,\n    0x79, 0x79, 0x77, 0x76, 0x75, 0x75, 0x76, 0x76, 0x77, 0x75, 0x73, 0x72, 0x72, 0x74, 0x76, 0x78,\n    0x77, 0x75, 0x74, 0x74, 0x75, 0x75, 0x74, 0x72, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x76, 0x76,\n    0x73, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x78, 0x73, 0x72, 0x72, 0x74, 0x77, 0x7b, 0x7f, 0x82,\n    0x86, 0x86, 0x85, 0x84, 0x82, 0x7f, 0x7d, 0x7b, 0x7b, 0x7a, 0x7a, 0x7e, 0x85, 0x8a, 0x8b, 0x8b,\n    0x8d, 0x8e, 0x8f, 0x90, 0x92, 0x93, 0x94, 0x95, 0x94, 0x94, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96,\n    0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x96, 0x96, 0x96, 0x95, 0x95,\n    0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x94, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95,\n    0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x97, 0x97, 0x97, 0x98, 0x98,\n    0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x95, 0x95, 0x95, 0x95, 0x93, 0x92, 0x90, 0x8f,\n    0x8c, 0x8a, 0x85, 0x81, 0x7d, 0x7b, 0x7a, 0x7a, 0x7e, 0x7e, 0x7e, 0x7e, 0x7f, 0x7f, 0x7f, 0x80,\n    0x7d, 0x80, 0x84, 0x85, 0x84, 0x85, 0x87, 0x8a, 0x89, 0x84, 0x7e, 0x7c, 0x7e, 0x82, 0x84, 0x84,\n    0x86, 0x87, 0x87, 0x88, 0x89, 0x89, 0x89, 0x89, 0x8a, 0x85, 0x7f, 0x7b, 0x7c, 0x80, 0x85, 0x88,\n    0x81, 0x81, 0x80, 0x80, 0x81, 0x82, 0x84, 0x84, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82,\n    0x83, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x82, 0x82, 0x82, 0x82, 0x83, 0x84,\n    0x83, 0x83, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x82, 0x82, 0x82, 0x82, 0x83, 0x84, 0x85, 0x86,\n    0x86, 0x85, 0x85, 0x84, 0x83, 0x82, 0x81, 0x81, 0x80, 0x81, 0x82, 0x83, 0x84, 0x84, 0x84, 0x83,\n    0x86, 0x85, 0x82, 0x7f, 0x7b, 0x78, 0x75, 0x73, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x76,\n    0x6f, 0x70, 0x73, 0x75, 0x77, 0x78, 0x79, 0x79, 0x7b, 0x7b, 0x7d, 0x7e, 0x7f, 0x7f, 0x7e, 0x7e,\n    0x93, 0x96, 0x9d, 0xa5, 0xa9, 0xa6, 0x9d, 0x96, 0x89, 0x82, 0x7b, 0x77, 0x77, 0x79, 0x7a, 0x79,\n    0x7b, 0x7b, 0x7c, 0x7e, 0x7f, 0x80, 0x81, 0x82, 0x86, 0x84, 0x84, 0x86, 0x88, 0x87, 0x82, 0x7e,\n    0x79, 0x79, 0x77, 0x76, 0x75, 0x75, 0x76, 0x76, 0x75, 0x75, 0x73, 0x73, 0x73, 0x73, 0x75, 0x75,\n    0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77,\n    0x75, 0x75, 0x75, 0x76, 0x76, 0x77, 0x77, 0x77, 0x73, 0x72, 0x71, 0x72, 0x75, 0x7a, 0x7f, 0x82,\n    0x85, 0x85, 0x85, 0x84, 0x81, 0x7f, 0x7c, 0x7b, 0x7a, 0x79, 0x7a, 0x7f, 0x86, 0x8b, 0x8c, 0x8b,\n    0x8d, 0x8e, 0x8f, 0x90, 0x92, 0x94, 0x95, 0x96, 0x94, 0x94, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96,\n    0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x96, 0x96, 0x96, 0x95,\n    0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x94, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95,\n    0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x96, 0x97, 0x97, 0x97, 0x97,\n    0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x95, 0x95, 0x95, 0x95, 0x94, 0x92, 0x90, 0x8f,\n    0x8c, 0x89, 0x85, 0x80, 0x7c, 0x7a, 0x79, 0x79, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e,\n    0x79, 0x7c, 0x7f, 0x7f, 0x7e, 0x7e, 0x81, 0x84, 0x84, 0x83, 0x83, 0x86, 0x89, 0x8a, 0x87, 0x83,\n    0x86, 0x87, 0x88, 0x88, 0x88, 0x88, 0x87, 0x86, 0x83, 0x7d, 0x77, 0x75, 0x79, 0x7f, 0x82, 0x83,\n    0x82, 0x81, 0x81, 0x81, 0x81, 0x83, 0x84, 0x85, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83,\n    0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x82, 0x82, 0x82, 0x82, 0x83, 0x84,\n    0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x82, 0x82, 0x82, 0x82, 0x83, 0x85, 0x86, 0x87,\n    0x86, 0x85, 0x85, 0x84, 0x83, 0x82, 0x81, 0x81, 0x7e, 0x7f, 0x81, 0x82, 0x83, 0x83, 0x82, 0x82,\n    0x85, 0x84, 0x81, 0x7e, 0x7b, 0x78, 0x76, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75,\n    0x71, 0x72, 0x73, 0x75, 0x76, 0x76, 0x75, 0x75, 0x78, 0x79, 0x7a, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c,\n    0x84, 0x87, 0x8e, 0x95, 0x98, 0x93, 0x8a, 0x82, 0x7e, 0x7a, 0x76, 0x75, 0x78, 0x7a, 0x7a, 0x78,\n    0x7c, 0x7c, 0x7d, 0x7e, 0x80, 0x81, 0x82, 0x82, 0x86, 0x84, 0x84, 0x86, 0x88, 0x87, 0x82, 0x7e,\n    0x79, 0x79, 0x77, 0x76, 0x75, 0x75, 0x76, 0x76, 0x74, 0x74, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79,\n    0x75, 0x76, 0x76, 0x75, 0x73, 0x73, 0x76, 0x78, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x79, 0x79,\n    0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x74, 0x73, 0x72, 0x72, 0x75, 0x7a, 0x7f, 0x82,\n    0x85, 0x85, 0x85, 0x83, 0x81, 0x7f, 0x7c, 0x7b, 0x7a, 0x79, 0x7a, 0x7f, 0x87, 0x8b, 0x8c, 0x8b,\n    0x8d, 0x8e, 0x8f, 0x91, 0x93, 0x94, 0x96, 0x96, 0x94, 0x94, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96,\n    0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x96, 0x96, 0x96, 0x96,\n    0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x94, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95,\n    0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x96, 0x97, 0x97, 0x97, 0x97,\n    0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x95, 0x95, 0x95, 0x95, 0x94, 0x93, 0x91, 0x90,\n    0x8c, 0x89, 0x84, 0x7f, 0x7b, 0x79, 0x78, 0x78, 0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78,\n    0x76, 0x79, 0x7b, 0x7b, 0x79, 0x79, 0x7d, 0x80, 0x81, 0x7f, 0x7e, 0x80, 0x84, 0x86, 0x85, 0x83,\n    0x87, 0x87, 0x88, 0x88, 0x88, 0x86, 0x84, 0x83, 0x7e, 0x79, 0x74, 0x75, 0x7c, 0x82, 0x83, 0x82,\n    0x83, 0x83, 0x82, 0x82, 0x82, 0x83, 0x84, 0x85, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83,\n    0x85, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x82, 0x82, 0x83, 0x84, 0x84,\n    0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x82, 0x82, 0x82, 0x82, 0x83, 0x85, 0x87, 0x88,\n    0x86, 0x85, 0x85, 0x84, 0x83, 0x82, 0x81, 0x81, 0x7d, 0x7e, 0x80, 0x81, 0x82, 0x82, 0x81, 0x81,\n    0x84, 0x83, 0x81, 0x7e, 0x7c, 0x79, 0x77, 0x76, 0x75, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74,\n    0x74, 0x74, 0x75, 0x76, 0x76, 0x75, 0x74, 0x73, 0x76, 0x77, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b,\n    0x76, 0x74, 0x72, 0x73, 0x77, 0x78, 0x77, 0x75, 0x77, 0x74, 0x73, 0x74, 0x78, 0x7a, 0x7a, 0x78,\n    0x7c, 0x7d, 0x7e, 0x7f, 0x80, 0x81, 0x82, 0x82, 0x86, 0x84, 0x84, 0x86, 0x88, 0x87, 0x82, 0x7e,\n    0x79, 0x79, 0x77, 0x76, 0x75, 0x75, 0x76, 0x76, 0x73, 0x74, 0x75, 0x77, 0x79, 0x7a, 0x7b, 0x7c,\n    0x78, 0x78, 0x78, 0x75, 0x72, 0x73, 0x77, 0x7b, 0x74, 0x74, 0x76, 0x78, 0x79, 0x7a, 0x7a, 0x7b,\n    0x77, 0x76, 0x76, 0x75, 0x74, 0x73, 0x72, 0x72, 0x76, 0x74, 0x73, 0x73, 0x75, 0x7a, 0x7f, 0x82,\n    0x85, 0x85, 0x84, 0x83, 0x81, 0x7f, 0x7c, 0x7b, 0x79, 0x79, 0x7a, 0x80, 0x87, 0x8c, 0x8c, 0x8b,\n    0x8d, 0x8e, 0x8f, 0x91, 0x93, 0x95, 0x96, 0x97, 0x94, 0x94, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96,\n    0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x98, 0x97, 0x97, 0x97, 0x97, 0x96, 0x96, 0x96,\n    0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x94, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95,\n    0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x97, 0x97, 0x97,\n    0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x94, 0x95, 0x95, 0x95, 0x94, 0x93, 0x91, 0x90,\n    0x8b, 0x88, 0x84, 0x7f, 0x7b, 0x78, 0x77, 0x77, 0x71, 0x72, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73,\n    0x75, 0x77, 0x79, 0x79, 0x77, 0x77, 0x7a, 0x7e, 0x7f, 0x7a, 0x76, 0x76, 0x7a, 0x7f, 0x82, 0x83,\n    0x87, 0x88, 0x88, 0x88, 0x87, 0x85, 0x82, 0x81, 0x7d, 0x77, 0x74, 0x77, 0x7f, 0x85, 0x85, 0x82,\n    0x84, 0x84, 0x83, 0x82, 0x82, 0x83, 0x84, 0x85, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84,\n    0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x83, 0x82, 0x82, 0x83, 0x84, 0x84,\n    0x85, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x82, 0x82, 0x82, 0x82, 0x83, 0x85, 0x87, 0x88,\n    0x85, 0x85, 0x83, 0x82, 0x80, 0x7f, 0x7f, 0x7e, 0x79, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c,\n    0x7e, 0x7d, 0x7c, 0x7a, 0x79, 0x77, 0x76, 0x75, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x78,\n    0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x73, 0x74, 0x77, 0x7c, 0x80, 0x80, 0x7c, 0x78,\n    0x77, 0x76, 0x75, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x74, 0x75, 0x76,\n    0x78, 0x7b, 0x7e, 0x7d, 0x7b, 0x7a, 0x7c, 0x7e, 0x81, 0x82, 0x84, 0x86, 0x86, 0x85, 0x83, 0x82,\n    0x7d, 0x7b, 0x79, 0x78, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78,\n    0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7b, 0x7b,\n    0x74, 0x76, 0x76, 0x74, 0x72, 0x72, 0x75, 0x79, 0x74, 0x79, 0x75, 0x6d, 0x70, 0x7e, 0x86, 0x84,\n    0x81, 0x84, 0x85, 0x82, 0x7d, 0x78, 0x76, 0x76, 0x75, 0x7b, 0x83, 0x88, 0x8a, 0x8a, 0x8b, 0x8c,\n    0x8d, 0x8e, 0x8f, 0x91, 0x92, 0x94, 0x95, 0x96, 0x94, 0x95, 0x95, 0x96, 0x96, 0x97, 0x98, 0x98,\n    0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97,\n    0x97, 0x97, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95,\n    0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96,\n    0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x95, 0x95, 0x95, 0x95, 0x93, 0x91, 0x8f, 0x8e,\n    0x8d, 0x8a, 0x85, 0x7f, 0x79, 0x74, 0x71, 0x6f, 0x71, 0x70, 0x70, 0x6f, 0x6e, 0x6d, 0x6c, 0x6c,\n    0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x77, 0x7a, 0x7e, 0x82, 0x84,\n    0x85, 0x85, 0x86, 0x85, 0x84, 0x82, 0x7f, 0x7e, 0x7b, 0x7c, 0x7f, 0x81, 0x83, 0x84, 0x85, 0x85,\n    0x84, 0x82, 0x7f, 0x7d, 0x7d, 0x7f, 0x82, 0x84, 0x80, 0x81, 0x82, 0x83, 0x83, 0x82, 0x81, 0x80,\n    0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x82, 0x82, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83,\n    0x85, 0x84, 0x83, 0x83, 0x83, 0x83, 0x84, 0x85, 0x82, 0x81, 0x80, 0x80, 0x81, 0x84, 0x88, 0x8a,\n    0x85, 0x84, 0x82, 0x81, 0x7f, 0x7e, 0x7e, 0x7e, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x7c, 0x7b, 0x7b, 0x7a, 0x78, 0x77, 0x77, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78,\n    0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x74, 0x74, 0x77, 0x7c, 0x80, 0x81, 0x7d, 0x79,\n    0x77, 0x76, 0x75, 0x74, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x74, 0x75, 0x76, 0x77,\n    0x79, 0x7c, 0x7e, 0x7d, 0x7b, 0x79, 0x7b, 0x7d, 0x81, 0x82, 0x84, 0x86, 0x86, 0x85, 0x83, 0x82,\n    0x7c, 0x7b, 0x79, 0x77, 0x75, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78,\n    0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x75, 0x75, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77,\n    0x73, 0x75, 0x77, 0x76, 0x74, 0x73, 0x75, 0x78, 0x70, 0x7c, 0x82, 0x7f, 0x81, 0x88, 0x86, 0x7e,\n    0x89, 0x8a, 0x8a, 0x86, 0x80, 0x7b, 0x78, 0x77, 0x73, 0x78, 0x80, 0x86, 0x89, 0x8b, 0x8d, 0x8e,\n    0x8e, 0x8e, 0x8f, 0x91, 0x92, 0x94, 0x95, 0x95, 0x94, 0x94, 0x95, 0x96, 0x96, 0x97, 0x97, 0x98,\n    0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97,\n    0x97, 0x97, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95,\n    0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96,\n    0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x95, 0x95, 0x95, 0x95, 0x93, 0x91, 0x8f, 0x8e,\n    0x8d, 0x8a, 0x85, 0x7f, 0x79, 0x75, 0x71, 0x70, 0x71, 0x71, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f,\n    0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x75, 0x78, 0x7c, 0x80, 0x83,\n    0x86, 0x86, 0x87, 0x86, 0x85, 0x83, 0x80, 0x7f, 0x7d, 0x7e, 0x80, 0x83, 0x84, 0x85, 0x85, 0x85,\n    0x84, 0x82, 0x7f, 0x7d, 0x7d, 0x7f, 0x82, 0x84, 0x81, 0x81, 0x82, 0x83, 0x83, 0x82, 0x81, 0x81,\n    0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x82, 0x82, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83,\n    0x85, 0x84, 0x83, 0x83, 0x83, 0x83, 0x84, 0x85, 0x82, 0x81, 0x80, 0x80, 0x81, 0x84, 0x88, 0x8a,\n    0x84, 0x83, 0x81, 0x7f, 0x7d, 0x7d, 0x7d, 0x7d, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78,\n    0x79, 0x79, 0x79, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78,\n    0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x77, 0x7c, 0x80, 0x81, 0x7d, 0x7a,\n    0x78, 0x77, 0x76, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x76, 0x77, 0x78,\n    0x7b, 0x7e, 0x7f, 0x7d, 0x7a, 0x78, 0x7a, 0x7c, 0x82, 0x83, 0x85, 0x86, 0x86, 0x85, 0x83, 0x82,\n    0x7b, 0x79, 0x77, 0x76, 0x74, 0x74, 0x74, 0x74, 0x75, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77,\n    0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x72, 0x72,\n    0x70, 0x74, 0x79, 0x79, 0x77, 0x75, 0x75, 0x76, 0x7e, 0x91, 0xa0, 0xa2, 0xa1, 0x9f, 0x95, 0x87,\n    0x8a, 0x8a, 0x88, 0x85, 0x80, 0x7c, 0x79, 0x77, 0x76, 0x79, 0x7f, 0x84, 0x89, 0x8c, 0x8e, 0x8f,\n    0x8e, 0x8f, 0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x94, 0x94, 0x95, 0x95, 0x96, 0x97, 0x97, 0x97,\n    0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97,\n    0x97, 0x97, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95,\n    0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96,\n    0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x95, 0x95, 0x95, 0x95, 0x93, 0x91, 0x8f, 0x8e,\n    0x8d, 0x8a, 0x85, 0x7f, 0x7a, 0x75, 0x73, 0x71, 0x72, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73,\n    0x70, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x72, 0x73, 0x74, 0x77, 0x7b, 0x7f, 0x82,\n    0x86, 0x86, 0x86, 0x86, 0x84, 0x82, 0x80, 0x7f, 0x80, 0x81, 0x83, 0x85, 0x86, 0x86, 0x85, 0x85,\n    0x85, 0x83, 0x80, 0x7d, 0x7d, 0x7f, 0x82, 0x83, 0x81, 0x82, 0x82, 0x83, 0x83, 0x82, 0x82, 0x81,\n    0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x82, 0x82, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83,\n    0x85, 0x84, 0x83, 0x82, 0x82, 0x83, 0x84, 0x85, 0x82, 0x81, 0x80, 0x80, 0x81, 0x84, 0x87, 0x89,\n    0x83, 0x81, 0x7e, 0x7c, 0x7b, 0x7b, 0x7b, 0x7c, 0x79, 0x79, 0x79, 0x78, 0x77, 0x77, 0x76, 0x76,\n    0x77, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x77, 0x77, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79,\n    0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x77, 0x7c, 0x80, 0x81, 0x7e, 0x7b,\n    0x79, 0x78, 0x76, 0x75, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x75, 0x77, 0x79, 0x7a,\n    0x7d, 0x7f, 0x7f, 0x7d, 0x79, 0x77, 0x79, 0x7c, 0x82, 0x84, 0x85, 0x87, 0x86, 0x85, 0x83, 0x81,\n    0x7a, 0x78, 0x77, 0x75, 0x73, 0x73, 0x73, 0x73, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x77,\n    0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x74, 0x73, 0x73, 0x72, 0x71, 0x71,\n    0x6f, 0x74, 0x7a, 0x7b, 0x79, 0x76, 0x75, 0x76, 0x88, 0x9d, 0xad, 0xad, 0xa8, 0xa4, 0x99, 0x8c,\n    0x84, 0x82, 0x81, 0x81, 0x82, 0x82, 0x80, 0x7e, 0x84, 0x83, 0x84, 0x86, 0x8b, 0x8d, 0x8e, 0x8d,\n    0x8f, 0x8f, 0x90, 0x91, 0x92, 0x93, 0x94, 0x94, 0x94, 0x94, 0x94, 0x95, 0x96, 0x96, 0x97, 0x97,\n    0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97,\n    0x97, 0x97, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95,\n    0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96,\n    0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x95, 0x95, 0x95, 0x95, 0x93, 0x91, 0x8f, 0x8e,\n    0x8c, 0x8a, 0x85, 0x80, 0x7b, 0x77, 0x74, 0x73, 0x73, 0x73, 0x74, 0x75, 0x76, 0x77, 0x77, 0x78,\n    0x73, 0x73, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x74, 0x74, 0x75, 0x76, 0x79, 0x7d, 0x82, 0x84,\n    0x84, 0x84, 0x83, 0x82, 0x81, 0x7f, 0x7e, 0x7d, 0x84, 0x84, 0x85, 0x86, 0x86, 0x86, 0x85, 0x84,\n    0x84, 0x82, 0x7f, 0x7d, 0x7d, 0x7f, 0x82, 0x84, 0x81, 0x82, 0x83, 0x83, 0x83, 0x83, 0x82, 0x81,\n    0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x82, 0x82, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83,\n    0x84, 0x84, 0x83, 0x82, 0x82, 0x83, 0x84, 0x84, 0x81, 0x81, 0x80, 0x81, 0x82, 0x84, 0x86, 0x87,\n    0x81, 0x7f, 0x7c, 0x79, 0x78, 0x78, 0x79, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x77, 0x76, 0x76, 0x75,\n    0x76, 0x76, 0x77, 0x77, 0x78, 0x78, 0x78, 0x79, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x7a, 0x7a,\n    0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x77, 0x78, 0x7c, 0x80, 0x82, 0x7f, 0x7c,\n    0x79, 0x78, 0x77, 0x76, 0x75, 0x75, 0x75, 0x76, 0x75, 0x75, 0x75, 0x75, 0x77, 0x78, 0x7a, 0x7b,\n    0x7e, 0x7f, 0x7f, 0x7c, 0x78, 0x77, 0x79, 0x7c, 0x83, 0x85, 0x86, 0x87, 0x87, 0x85, 0x83, 0x81,\n    0x79, 0x78, 0x76, 0x74, 0x73, 0x72, 0x72, 0x72, 0x74, 0x74, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76,\n    0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x77, 0x77, 0x76, 0x76, 0x75, 0x74, 0x74, 0x74,\n    0x70, 0x74, 0x7a, 0x7b, 0x79, 0x77, 0x77, 0x78, 0x85, 0x96, 0x9f, 0x98, 0x8f, 0x8d, 0x8a, 0x83,\n    0x85, 0x83, 0x83, 0x89, 0x92, 0x98, 0x99, 0x97, 0x96, 0x90, 0x8b, 0x8a, 0x8d, 0x8f, 0x8d, 0x8a,\n    0x8f, 0x90, 0x90, 0x91, 0x92, 0x93, 0x93, 0x94, 0x93, 0x94, 0x94, 0x95, 0x95, 0x96, 0x97, 0x97,\n    0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97,\n    0x97, 0x97, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95,\n    0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96,\n    0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x95, 0x95, 0x95, 0x95, 0x93, 0x91, 0x8f, 0x8e,\n    0x8c, 0x89, 0x85, 0x80, 0x7c, 0x78, 0x76, 0x75, 0x75, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7b,\n    0x78, 0x78, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x78, 0x77, 0x78, 0x79, 0x7c, 0x81, 0x85, 0x87,\n    0x82, 0x81, 0x80, 0x7e, 0x7d, 0x7c, 0x7b, 0x7b, 0x85, 0x86, 0x86, 0x86, 0x85, 0x84, 0x82, 0x81,\n    0x81, 0x7f, 0x7d, 0x7c, 0x7c, 0x7f, 0x82, 0x84, 0x82, 0x82, 0x83, 0x84, 0x84, 0x83, 0x82, 0x82,\n    0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x82, 0x82, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83,\n    0x84, 0x83, 0x82, 0x82, 0x82, 0x82, 0x83, 0x84, 0x81, 0x81, 0x81, 0x81, 0x82, 0x83, 0x85, 0x85,\n    0x80, 0x7e, 0x7a, 0x77, 0x75, 0x76, 0x78, 0x79, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77,\n    0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x7c, 0x80, 0x82, 0x80, 0x7e,\n    0x7a, 0x79, 0x77, 0x76, 0x75, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x78, 0x7a, 0x7b, 0x7d,\n    0x7d, 0x7e, 0x7e, 0x7b, 0x78, 0x77, 0x7b, 0x7e, 0x84, 0x85, 0x87, 0x87, 0x87, 0x85, 0x82, 0x81,\n    0x7a, 0x78, 0x77, 0x75, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75,\n    0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x78, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76,\n    0x73, 0x76, 0x79, 0x79, 0x77, 0x77, 0x79, 0x7c, 0x8c, 0x9a, 0x9d, 0x8e, 0x82, 0x82, 0x86, 0x85,\n    0x8d, 0x8a, 0x8c, 0x96, 0xa4, 0xaf, 0xb2, 0xb1, 0xa0, 0x97, 0x8d, 0x8b, 0x8e, 0x90, 0x8d, 0x89,\n    0x90, 0x90, 0x90, 0x91, 0x92, 0x92, 0x93, 0x93, 0x93, 0x93, 0x94, 0x94, 0x95, 0x96, 0x96, 0x96,\n    0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97,\n    0x97, 0x97, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95,\n    0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96,\n    0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x95, 0x95, 0x95, 0x95, 0x93, 0x91, 0x8f, 0x8e,\n    0x8b, 0x89, 0x85, 0x81, 0x7c, 0x79, 0x77, 0x76, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7c,\n    0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x78, 0x78, 0x78, 0x7a, 0x7d, 0x81, 0x85, 0x88,\n    0x82, 0x81, 0x80, 0x7e, 0x7c, 0x7c, 0x7b, 0x7c, 0x86, 0x86, 0x86, 0x85, 0x83, 0x81, 0x7f, 0x7e,\n    0x7d, 0x7c, 0x7a, 0x79, 0x7b, 0x7f, 0x83, 0x85, 0x82, 0x82, 0x83, 0x84, 0x84, 0x83, 0x82, 0x82,\n    0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x82, 0x82, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83,\n    0x84, 0x83, 0x82, 0x81, 0x81, 0x82, 0x83, 0x84, 0x80, 0x81, 0x81, 0x82, 0x82, 0x83, 0x84, 0x84,\n    0x7f, 0x7c, 0x78, 0x75, 0x73, 0x74, 0x76, 0x78, 0x77, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79,\n    0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x7c, 0x80, 0x82, 0x81, 0x7f,\n    0x7a, 0x79, 0x78, 0x77, 0x76, 0x76, 0x76, 0x77, 0x76, 0x76, 0x76, 0x77, 0x78, 0x7b, 0x7d, 0x7e,\n    0x7c, 0x7d, 0x7d, 0x7a, 0x78, 0x78, 0x7c, 0x80, 0x85, 0x86, 0x87, 0x88, 0x87, 0x85, 0x82, 0x81,\n    0x7a, 0x79, 0x77, 0x75, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x75, 0x75,\n    0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76,\n    0x76, 0x77, 0x78, 0x76, 0x74, 0x76, 0x7b, 0x80, 0x94, 0xa2, 0xa5, 0x94, 0x84, 0x84, 0x88, 0x89,\n    0x8d, 0x89, 0x8a, 0x95, 0xa7, 0xb4, 0xb7, 0xb5, 0x9e, 0x94, 0x89, 0x87, 0x8c, 0x91, 0x8f, 0x8b,\n    0x90, 0x90, 0x91, 0x91, 0x92, 0x92, 0x93, 0x93, 0x93, 0x93, 0x94, 0x94, 0x95, 0x95, 0x96, 0x96,\n    0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97,\n    0x97, 0x97, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95,\n    0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96,\n    0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x95, 0x93, 0x91, 0x8f, 0x8e,\n    0x8b, 0x89, 0x85, 0x81, 0x7d, 0x7a, 0x78, 0x78, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x76, 0x75, 0x76, 0x77, 0x7a, 0x7f, 0x83, 0x85,\n    0x87, 0x85, 0x83, 0x81, 0x7f, 0x7f, 0x7f, 0x80, 0x85, 0x85, 0x85, 0x83, 0x81, 0x7e, 0x7b, 0x7a,\n    0x78, 0x78, 0x77, 0x77, 0x7a, 0x7f, 0x83, 0x87, 0x82, 0x83, 0x84, 0x84, 0x84, 0x84, 0x83, 0x82,\n    0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x82, 0x82, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83,\n    0x84, 0x83, 0x82, 0x81, 0x81, 0x82, 0x83, 0x84, 0x80, 0x80, 0x81, 0x82, 0x82, 0x83, 0x83, 0x83,\n    0x7f, 0x7c, 0x77, 0x74, 0x72, 0x73, 0x76, 0x78, 0x77, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7b,\n    0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x79, 0x79, 0x7c, 0x80, 0x82, 0x81, 0x7f,\n    0x7b, 0x7a, 0x78, 0x77, 0x76, 0x76, 0x77, 0x77, 0x76, 0x76, 0x76, 0x77, 0x79, 0x7b, 0x7d, 0x7e,\n    0x7c, 0x7d, 0x7c, 0x7a, 0x77, 0x78, 0x7d, 0x82, 0x85, 0x86, 0x87, 0x88, 0x87, 0x85, 0x82, 0x81,\n    0x7b, 0x7a, 0x78, 0x76, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74,\n    0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x72, 0x72, 0x73, 0x73, 0x74, 0x75, 0x75, 0x75,\n    0x79, 0x78, 0x77, 0x74, 0x72, 0x75, 0x7d, 0x83, 0x8d, 0x9d, 0xa2, 0x91, 0x81, 0x7e, 0x80, 0x80,\n    0x85, 0x80, 0x80, 0x8b, 0x9d, 0xab, 0xae, 0xab, 0x99, 0x8e, 0x82, 0x82, 0x8a, 0x92, 0x92, 0x8e,\n    0x90, 0x90, 0x91, 0x91, 0x92, 0x92, 0x92, 0x93, 0x93, 0x93, 0x93, 0x94, 0x95, 0x95, 0x96, 0x96,\n    0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97,\n    0x97, 0x97, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95,\n    0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96,\n    0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x95, 0x93, 0x91, 0x8f, 0x8e,\n    0x8b, 0x89, 0x85, 0x81, 0x7d, 0x7b, 0x79, 0x78, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b,\n    0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x73, 0x72, 0x73, 0x74, 0x77, 0x7c, 0x80, 0x82,\n    0x8b, 0x89, 0x87, 0x84, 0x83, 0x83, 0x83, 0x84, 0x85, 0x84, 0x84, 0x82, 0x7f, 0x7c, 0x79, 0x78,\n    0x76, 0x75, 0x75, 0x76, 0x79, 0x7f, 0x84, 0x87, 0x82, 0x83, 0x84, 0x84, 0x84, 0x84, 0x83, 0x82,\n    0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x82, 0x82, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83,\n    0x83, 0x83, 0x82, 0x81, 0x81, 0x82, 0x83, 0x83, 0x80, 0x80, 0x81, 0x82, 0x83, 0x83, 0x82, 0x82,\n    0x80, 0x7b, 0x77, 0x75, 0x76, 0x77, 0x76, 0x74, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78,\n    0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7b,\n    0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7e, 0x7f, 0x80, 0x81, 0x82, 0x82,\n    0x7f, 0x7e, 0x7c, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x78, 0x78, 0x79, 0x7b, 0x7d, 0x7e, 0x7f, 0x80,\n    0x80, 0x7e, 0x7c, 0x7b, 0x7a, 0x7b, 0x7d, 0x7e, 0x83, 0x84, 0x86, 0x87, 0x87, 0x86, 0x84, 0x83,\n    0x7f, 0x7d, 0x7b, 0x78, 0x76, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74,\n    0x73, 0x73, 0x74, 0x74, 0x75, 0x76, 0x76, 0x76, 0x73, 0x73, 0x74, 0x75, 0x76, 0x76, 0x77, 0x77,\n    0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x77, 0x7f, 0x81, 0x81, 0x7d, 0x7a, 0x7c, 0x84, 0x8c,\n    0x82, 0x84, 0x86, 0x87, 0x88, 0x8c, 0x93, 0x98, 0x8f, 0x8e, 0x8d, 0x8c, 0x8c, 0x8d, 0x8d, 0x8e,\n    0x91, 0x91, 0x91, 0x91, 0x92, 0x92, 0x92, 0x92, 0x94, 0x94, 0x94, 0x95, 0x96, 0x96, 0x96, 0x97,\n    0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x98, 0x98, 0x98, 0x97, 0x96, 0x96, 0x96, 0x95,\n    0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x97, 0x97,\n    0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97,\n    0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x94, 0x92, 0x91, 0x90, 0x8f, 0x8e,\n    0x89, 0x87, 0x83, 0x7f, 0x7b, 0x78, 0x75, 0x74, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7d, 0x79, 0x79, 0x78, 0x7a, 0x7d, 0x82, 0x87, 0x8a,\n    0x86, 0x87, 0x88, 0x88, 0x88, 0x87, 0x86, 0x85, 0x81, 0x81, 0x81, 0x81, 0x7f, 0x7d, 0x7b, 0x7a,\n    0x78, 0x76, 0x75, 0x78, 0x7e, 0x83, 0x84, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84,\n    0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x81, 0x82, 0x82, 0x83, 0x83, 0x84, 0x85, 0x85,\n    0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x80, 0x81, 0x82, 0x83, 0x83, 0x83, 0x82, 0x82,\n    0x80, 0x7b, 0x77, 0x75, 0x76, 0x77, 0x76, 0x74, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78,\n    0x77, 0x77, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7b,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7e, 0x7f, 0x80, 0x81, 0x82, 0x82,\n    0x7f, 0x7e, 0x7c, 0x7b, 0x7a, 0x79, 0x7a, 0x7a, 0x78, 0x79, 0x7a, 0x7b, 0x7d, 0x7e, 0x7f, 0x80,\n    0x7f, 0x7e, 0x7c, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x83, 0x84, 0x86, 0x87, 0x87, 0x86, 0x84, 0x83,\n    0x7d, 0x7c, 0x7a, 0x78, 0x76, 0x76, 0x75, 0x75, 0x77, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75,\n    0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x76, 0x76, 0x73, 0x74, 0x74, 0x75, 0x75, 0x76, 0x76, 0x76,\n    0x75, 0x77, 0x7a, 0x7f, 0x86, 0x8d, 0x94, 0x97, 0x8d, 0x87, 0x80, 0x79, 0x77, 0x7b, 0x82, 0x87,\n    0x8a, 0x8b, 0x8c, 0x8b, 0x8a, 0x8b, 0x8e, 0x91, 0x8d, 0x8d, 0x8c, 0x8c, 0x8c, 0x8d, 0x8e, 0x8f,\n    0x91, 0x91, 0x91, 0x92, 0x92, 0x92, 0x93, 0x93, 0x94, 0x94, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96,\n    0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x98, 0x98, 0x97, 0x97, 0x96, 0x96, 0x96, 0x95,\n    0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x97, 0x97,\n    0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97,\n    0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x94, 0x92, 0x91, 0x90, 0x8f, 0x8e,\n    0x8a, 0x88, 0x84, 0x7f, 0x7b, 0x77, 0x74, 0x73, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76,\n    0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x78, 0x7a, 0x7d, 0x80, 0x84, 0x87, 0x88,\n    0x87, 0x87, 0x87, 0x87, 0x87, 0x85, 0x84, 0x83, 0x7f, 0x7f, 0x7f, 0x7f, 0x7d, 0x7b, 0x7a, 0x78,\n    0x78, 0x76, 0x75, 0x78, 0x7e, 0x83, 0x84, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84,\n    0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x81, 0x82, 0x82, 0x83, 0x83, 0x84, 0x85, 0x85,\n    0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x81, 0x81, 0x83, 0x84, 0x84, 0x84, 0x83, 0x82,\n    0x80, 0x7b, 0x77, 0x75, 0x76, 0x78, 0x77, 0x75, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78,\n    0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7b,\n    0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7d, 0x7d, 0x7e, 0x7f, 0x80, 0x81, 0x82, 0x82,\n    0x80, 0x7f, 0x7d, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7f, 0x80,\n    0x7e, 0x7d, 0x7b, 0x79, 0x79, 0x7a, 0x7b, 0x7d, 0x83, 0x84, 0x86, 0x87, 0x87, 0x86, 0x84, 0x83,\n    0x7c, 0x7b, 0x79, 0x78, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77,\n    0x77, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75,\n    0x73, 0x76, 0x7b, 0x85, 0x93, 0xa2, 0xb0, 0xb8, 0xa2, 0x92, 0x7f, 0x75, 0x76, 0x7c, 0x81, 0x82,\n    0x8c, 0x8b, 0x8a, 0x88, 0x86, 0x84, 0x84, 0x84, 0x8b, 0x8a, 0x8a, 0x8a, 0x8c, 0x8d, 0x8f, 0x90,\n    0x92, 0x92, 0x92, 0x92, 0x93, 0x93, 0x93, 0x93, 0x94, 0x95, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96,\n    0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x96, 0x96, 0x96, 0x96,\n    0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x97, 0x97,\n    0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96,\n    0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x95, 0x94, 0x93, 0x92, 0x91, 0x8f, 0x8e, 0x8e,\n    0x8c, 0x89, 0x84, 0x7f, 0x7a, 0x76, 0x73, 0x72, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73,\n    0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72, 0x74, 0x77, 0x7c, 0x81, 0x84, 0x86, 0x86, 0x86,\n    0x87, 0x87, 0x87, 0x86, 0x84, 0x82, 0x80, 0x7f, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x79, 0x78, 0x77,\n    0x77, 0x75, 0x75, 0x78, 0x7e, 0x82, 0x84, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84,\n    0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x81, 0x82, 0x82, 0x83, 0x83, 0x84, 0x85, 0x85,\n    0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x82, 0x82, 0x84, 0x85, 0x85, 0x85, 0x84, 0x83,\n    0x80, 0x7b, 0x77, 0x75, 0x77, 0x78, 0x77, 0x76, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78,\n    0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7b,\n    0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7f, 0x7f, 0x7d, 0x7d, 0x7e, 0x7f, 0x80, 0x81, 0x82, 0x82,\n    0x80, 0x7f, 0x7e, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7b, 0x7b, 0x7d, 0x7e, 0x7f, 0x80, 0x80,\n    0x7e, 0x7c, 0x7a, 0x78, 0x78, 0x79, 0x7b, 0x7c, 0x83, 0x84, 0x86, 0x87, 0x87, 0x86, 0x84, 0x83,\n    0x7a, 0x7a, 0x79, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79,\n    0x79, 0x78, 0x78, 0x77, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75,\n    0x75, 0x76, 0x7a, 0x83, 0x91, 0xa2, 0xb2, 0xbc, 0xb2, 0x9b, 0x80, 0x74, 0x78, 0x80, 0x83, 0x81,\n    0x86, 0x85, 0x83, 0x83, 0x84, 0x83, 0x81, 0x7f, 0x89, 0x89, 0x89, 0x8a, 0x8b, 0x8e, 0x90, 0x91,\n    0x92, 0x92, 0x93, 0x93, 0x93, 0x94, 0x94, 0x94, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x96,\n    0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96,\n    0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x97, 0x97,\n    0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96,\n    0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x93, 0x92, 0x90, 0x8f, 0x8e, 0x8e,\n    0x8d, 0x8a, 0x84, 0x7e, 0x78, 0x74, 0x72, 0x71, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72,\n    0x73, 0x73, 0x72, 0x72, 0x71, 0x70, 0x70, 0x70, 0x72, 0x77, 0x7e, 0x85, 0x88, 0x88, 0x86, 0x84,\n    0x88, 0x87, 0x87, 0x85, 0x82, 0x7f, 0x7d, 0x7b, 0x78, 0x79, 0x79, 0x79, 0x79, 0x78, 0x76, 0x75,\n    0x77, 0x75, 0x74, 0x78, 0x7e, 0x82, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84,\n    0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x81, 0x82, 0x82, 0x83, 0x83, 0x84, 0x85, 0x85,\n    0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x82, 0x83, 0x84, 0x85, 0x86, 0x85, 0x85, 0x84,\n    0x7f, 0x7b, 0x77, 0x75, 0x77, 0x79, 0x78, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78,\n    0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7b,\n    0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7f, 0x7f, 0x7f, 0x7d, 0x7d, 0x7e, 0x7f, 0x80, 0x81, 0x82, 0x82,\n    0x81, 0x80, 0x7e, 0x7d, 0x7c, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7e, 0x7f, 0x80, 0x80,\n    0x7e, 0x7c, 0x7a, 0x78, 0x78, 0x79, 0x7b, 0x7c, 0x83, 0x84, 0x86, 0x87, 0x87, 0x86, 0x84, 0x83,\n    0x7a, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7c, 0x7d, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a,\n    0x7a, 0x79, 0x79, 0x78, 0x77, 0x77, 0x76, 0x76, 0x77, 0x77, 0x77, 0x76, 0x76, 0x75, 0x75, 0x75,\n    0x78, 0x77, 0x77, 0x7b, 0x83, 0x8f, 0x9b, 0xa2, 0xb3, 0x9c, 0x82, 0x77, 0x7b, 0x83, 0x86, 0x84,\n    0x87, 0x85, 0x86, 0x8a, 0x90, 0x93, 0x90, 0x8c, 0x89, 0x89, 0x89, 0x8a, 0x8c, 0x8e, 0x91, 0x92,\n    0x93, 0x93, 0x93, 0x94, 0x94, 0x94, 0x94, 0x95, 0x96, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95,\n    0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x95, 0x95, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96,\n    0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x97, 0x97,\n    0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96,\n    0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x93, 0x91, 0x90, 0x8f, 0x8e, 0x8d,\n    0x8d, 0x8a, 0x83, 0x7d, 0x77, 0x74, 0x72, 0x71, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74,\n    0x75, 0x75, 0x75, 0x74, 0x73, 0x72, 0x72, 0x72, 0x73, 0x78, 0x7f, 0x86, 0x8a, 0x89, 0x86, 0x84,\n    0x88, 0x87, 0x86, 0x84, 0x81, 0x7e, 0x7b, 0x79, 0x76, 0x77, 0x78, 0x78, 0x78, 0x77, 0x76, 0x75,\n    0x77, 0x75, 0x74, 0x77, 0x7d, 0x82, 0x83, 0x82, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84,\n    0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x81, 0x82, 0x82, 0x83, 0x83, 0x84, 0x85, 0x85,\n    0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x82, 0x83, 0x84, 0x85, 0x86, 0x85, 0x85, 0x84,\n    0x7f, 0x7b, 0x77, 0x76, 0x78, 0x79, 0x79, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78,\n    0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7b,\n    0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7f, 0x7f, 0x7d, 0x7d, 0x7e, 0x7f, 0x80, 0x81, 0x82, 0x82,\n    0x82, 0x81, 0x7f, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7e, 0x7f, 0x7f, 0x80, 0x80,\n    0x7e, 0x7d, 0x7b, 0x79, 0x79, 0x7a, 0x7b, 0x7d, 0x83, 0x84, 0x86, 0x87, 0x87, 0x86, 0x84, 0x83,\n    0x7a, 0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x7a, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x75, 0x75,\n    0x7a, 0x78, 0x75, 0x74, 0x76, 0x7b, 0x81, 0x85, 0xa0, 0x92, 0x82, 0x7a, 0x7d, 0x83, 0x87, 0x87,\n    0x8e, 0x8c, 0x8e, 0x98, 0xa3, 0xa8, 0xa5, 0xa0, 0x8a, 0x8a, 0x8a, 0x8b, 0x8d, 0x8f, 0x91, 0x92,\n    0x93, 0x94, 0x94, 0x94, 0x95, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x95, 0x94,\n    0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x96,\n    0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x97, 0x97,\n    0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95,\n    0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x94, 0x93, 0x92, 0x91, 0x90, 0x8e, 0x8d, 0x8d,\n    0x8d, 0x89, 0x82, 0x7c, 0x76, 0x74, 0x73, 0x73, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75,\n    0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x74, 0x75, 0x79, 0x80, 0x86, 0x89, 0x8a, 0x88, 0x87,\n    0x88, 0x87, 0x86, 0x84, 0x81, 0x7d, 0x7a, 0x78, 0x75, 0x76, 0x77, 0x78, 0x79, 0x78, 0x77, 0x77,\n    0x77, 0x75, 0x74, 0x77, 0x7d, 0x81, 0x83, 0x82, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84,\n    0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x81, 0x82, 0x82, 0x83, 0x83, 0x84, 0x85, 0x85,\n    0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x82, 0x82, 0x84, 0x85, 0x85, 0x85, 0x84, 0x83,\n    0x7f, 0x7b, 0x77, 0x76, 0x78, 0x7a, 0x79, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78,\n    0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7b,\n    0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7e, 0x7f, 0x80, 0x81, 0x82, 0x82,\n    0x82, 0x81, 0x7f, 0x7e, 0x7d, 0x7c, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7f, 0x7f, 0x80, 0x80, 0x80,\n    0x7f, 0x7e, 0x7c, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x83, 0x84, 0x86, 0x87, 0x87, 0x86, 0x84, 0x83,\n    0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x77, 0x76, 0x76,\n    0x79, 0x78, 0x76, 0x74, 0x73, 0x74, 0x75, 0x76, 0x84, 0x81, 0x7d, 0x7b, 0x7b, 0x7f, 0x84, 0x88,\n    0x8c, 0x8a, 0x8d, 0x98, 0xa6, 0xad, 0xa8, 0xa2, 0x8c, 0x8c, 0x8c, 0x8d, 0x8e, 0x90, 0x91, 0x93,\n    0x94, 0x94, 0x94, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x94, 0x94,\n    0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x95, 0x95, 0x96, 0x96, 0x96,\n    0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x97, 0x97,\n    0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95,\n    0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x94, 0x93, 0x92, 0x91, 0x8f, 0x8e, 0x8d, 0x8d,\n    0x8b, 0x87, 0x81, 0x7b, 0x76, 0x74, 0x74, 0x75, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73,\n    0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x78, 0x7b, 0x7f, 0x84, 0x87, 0x89, 0x8a, 0x8a,\n    0x87, 0x87, 0x86, 0x84, 0x81, 0x7e, 0x7b, 0x79, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7a, 0x79, 0x79,\n    0x76, 0x74, 0x74, 0x77, 0x7d, 0x81, 0x82, 0x82, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84,\n    0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x81, 0x82, 0x82, 0x83, 0x83, 0x84, 0x85, 0x85,\n    0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x81, 0x81, 0x83, 0x84, 0x84, 0x84, 0x83, 0x82,\n    0x7f, 0x7b, 0x77, 0x76, 0x78, 0x7a, 0x7a, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7b,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7f, 0x80, 0x81, 0x82, 0x82,\n    0x82, 0x81, 0x80, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7f, 0x7f, 0x7f, 0x80, 0x80, 0x80,\n    0x80, 0x7e, 0x7c, 0x7b, 0x7a, 0x7b, 0x7d, 0x7e, 0x83, 0x84, 0x86, 0x87, 0x87, 0x86, 0x84, 0x83,\n    0x7c, 0x7c, 0x7b, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x78, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7c, 0x7e, 0x7e, 0x7c, 0x7b, 0x7a, 0x78, 0x77, 0x77,\n    0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x75, 0x75, 0x6f, 0x75, 0x79, 0x7a, 0x78, 0x7a, 0x81, 0x88,\n    0x84, 0x81, 0x84, 0x8f, 0x9e, 0xa4, 0x9e, 0x96, 0x8e, 0x8e, 0x8d, 0x8e, 0x8e, 0x90, 0x91, 0x92,\n    0x94, 0x94, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x97, 0x96, 0x96, 0x96, 0x95, 0x94, 0x94, 0x94,\n    0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x95, 0x95, 0x96, 0x96, 0x96,\n    0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x97, 0x97,\n    0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95,\n    0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x93, 0x93, 0x92, 0x91, 0x8f, 0x8e, 0x8d, 0x8d,\n    0x8a, 0x86, 0x80, 0x7a, 0x76, 0x74, 0x75, 0x76, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71,\n    0x71, 0x72, 0x72, 0x73, 0x74, 0x74, 0x75, 0x75, 0x7b, 0x7c, 0x7f, 0x83, 0x86, 0x89, 0x8b, 0x8c,\n    0x87, 0x86, 0x86, 0x84, 0x82, 0x7f, 0x7c, 0x7a, 0x76, 0x77, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7a,\n    0x76, 0x74, 0x73, 0x77, 0x7d, 0x81, 0x82, 0x82, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84,\n    0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x81, 0x82, 0x82, 0x83, 0x83, 0x84, 0x85, 0x85,\n    0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x80, 0x81, 0x82, 0x83, 0x83, 0x83, 0x82, 0x82,\n    0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a,\n    0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7c, 0x7c, 0x7d, 0x7d, 0x7e, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x7e, 0x7e, 0x7e, 0x80, 0x81, 0x82,\n    0x83, 0x82, 0x80, 0x7f, 0x7e, 0x7d, 0x7e, 0x7e, 0x7c, 0x7e, 0x80, 0x82, 0x83, 0x83, 0x82, 0x81,\n    0x7f, 0x7e, 0x7d, 0x7d, 0x7d, 0x7e, 0x80, 0x80, 0x86, 0x86, 0x87, 0x88, 0x87, 0x86, 0x85, 0x84,\n    0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7c,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d,\n    0x78, 0x78, 0x77, 0x77, 0x76, 0x75, 0x74, 0x74, 0x74, 0x75, 0x76, 0x78, 0x7c, 0x7f, 0x82, 0x84,\n    0x86, 0x87, 0x88, 0x88, 0x87, 0x85, 0x83, 0x81, 0x86, 0x89, 0x8c, 0x90, 0x93, 0x93, 0x93, 0x92,\n    0x94, 0x95, 0x95, 0x96, 0x96, 0x97, 0x97, 0x97, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x93, 0x93,\n    0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x93, 0x93, 0x93, 0x94, 0x94, 0x94, 0x94,\n    0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x96,\n    0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95,\n    0x95, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x96, 0x94, 0x94, 0x93, 0x92, 0x90, 0x8e, 0x8c, 0x8a,\n    0x8a, 0x87, 0x81, 0x7b, 0x76, 0x74, 0x74, 0x74, 0x74, 0x73, 0x72, 0x71, 0x71, 0x71, 0x72, 0x73,\n    0x72, 0x72, 0x73, 0x74, 0x76, 0x77, 0x79, 0x7a, 0x83, 0x84, 0x86, 0x87, 0x89, 0x89, 0x89, 0x89,\n    0x89, 0x87, 0x84, 0x80, 0x7e, 0x7d, 0x7d, 0x7e, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c,\n    0x78, 0x79, 0x7a, 0x7b, 0x7e, 0x81, 0x83, 0x85, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84,\n    0x82, 0x82, 0x82, 0x83, 0x83, 0x83, 0x84, 0x84, 0x82, 0x83, 0x83, 0x84, 0x84, 0x83, 0x83, 0x82,\n    0x85, 0x84, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x83, 0x83, 0x84, 0x85, 0x85, 0x84, 0x83, 0x83,\n    0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a,\n    0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7b, 0x7b, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7c, 0x7c, 0x7d, 0x7d, 0x7e, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x7e, 0x7e, 0x7e, 0x80, 0x81, 0x82,\n    0x83, 0x82, 0x80, 0x7f, 0x7e, 0x7d, 0x7e, 0x7e, 0x7c, 0x7e, 0x80, 0x82, 0x83, 0x83, 0x81, 0x80,\n    0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7e, 0x7f, 0x80, 0x86, 0x86, 0x87, 0x88, 0x87, 0x86, 0x85, 0x84,\n    0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7d, 0x7e, 0x7e, 0x7d, 0x7c, 0x7c,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d,\n    0x7b, 0x7a, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x76, 0x75, 0x75, 0x76, 0x79, 0x7c, 0x7f, 0x82, 0x84,\n    0x86, 0x88, 0x8a, 0x8b, 0x8b, 0x89, 0x87, 0x85, 0x88, 0x8a, 0x8d, 0x90, 0x92, 0x93, 0x93, 0x93,\n    0x95, 0x95, 0x95, 0x96, 0x96, 0x97, 0x97, 0x97, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x93, 0x93,\n    0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x93, 0x93, 0x93, 0x94, 0x94, 0x94, 0x94,\n    0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x94, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x96,\n    0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95,\n    0x95, 0x95, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x94, 0x94, 0x93, 0x92, 0x90, 0x8e, 0x8c, 0x8a,\n    0x8a, 0x87, 0x81, 0x7b, 0x77, 0x75, 0x74, 0x75, 0x74, 0x73, 0x72, 0x71, 0x71, 0x71, 0x72, 0x73,\n    0x73, 0x73, 0x73, 0x75, 0x76, 0x78, 0x7a, 0x7b, 0x83, 0x84, 0x86, 0x88, 0x88, 0x89, 0x88, 0x88,\n    0x88, 0x86, 0x83, 0x7f, 0x7d, 0x7c, 0x7d, 0x7d, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c,\n    0x79, 0x79, 0x7a, 0x7c, 0x7e, 0x81, 0x83, 0x85, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84,\n    0x83, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x84, 0x84, 0x83, 0x83, 0x83,\n    0x85, 0x84, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x83, 0x83, 0x84, 0x85, 0x85, 0x84, 0x83, 0x83,\n    0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a,\n    0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7b, 0x7b, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7f, 0x7e, 0x7e, 0x7e, 0x7f, 0x80, 0x81, 0x82,\n    0x83, 0x82, 0x80, 0x7f, 0x7e, 0x7d, 0x7e, 0x7e, 0x7d, 0x7e, 0x81, 0x83, 0x83, 0x83, 0x81, 0x80,\n    0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7e, 0x7f, 0x80, 0x86, 0x86, 0x87, 0x88, 0x87, 0x86, 0x85, 0x84,\n    0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7d, 0x7e, 0x7e, 0x7d, 0x7c, 0x7c,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7d, 0x7e, 0x7e,\n    0x7c, 0x7c, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x75, 0x76, 0x77, 0x79, 0x7c, 0x80, 0x83, 0x85,\n    0x87, 0x89, 0x8d, 0x90, 0x91, 0x90, 0x8e, 0x8c, 0x8b, 0x8c, 0x8e, 0x90, 0x92, 0x93, 0x93, 0x93,\n    0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x97, 0x97, 0x95, 0x95, 0x94, 0x94, 0x94, 0x93, 0x93, 0x93,\n    0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x92, 0x93, 0x93, 0x93, 0x94, 0x94, 0x94, 0x94,\n    0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96,\n    0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95,\n    0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x93, 0x93, 0x93, 0x92, 0x91, 0x8e, 0x8c, 0x8b,\n    0x8a, 0x87, 0x81, 0x7b, 0x77, 0x75, 0x75, 0x75, 0x74, 0x73, 0x72, 0x71, 0x71, 0x72, 0x73, 0x74,\n    0x74, 0x74, 0x74, 0x75, 0x77, 0x79, 0x7c, 0x7d, 0x84, 0x85, 0x86, 0x88, 0x88, 0x88, 0x88, 0x87,\n    0x87, 0x85, 0x81, 0x7e, 0x7c, 0x7c, 0x7c, 0x7c, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c,\n    0x7a, 0x7b, 0x7b, 0x7c, 0x7e, 0x81, 0x83, 0x85, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84,\n    0x83, 0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83,\n    0x85, 0x84, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x83, 0x83, 0x84, 0x85, 0x85, 0x84, 0x83, 0x83,\n    0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7d, 0x7d, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a,\n    0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7f, 0x80, 0x82, 0x83,\n    0x83, 0x82, 0x80, 0x7f, 0x7e, 0x7d, 0x7e, 0x7e, 0x7d, 0x7f, 0x81, 0x83, 0x83, 0x82, 0x81, 0x7f,\n    0x7e, 0x7d, 0x7d, 0x7c, 0x7d, 0x7e, 0x7f, 0x80, 0x86, 0x86, 0x87, 0x88, 0x87, 0x86, 0x85, 0x84,\n    0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7b, 0x7c, 0x7d, 0x7e, 0x7e, 0x7d, 0x7c, 0x7b,\n    0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x76, 0x77, 0x78, 0x79, 0x7b, 0x7c, 0x7d, 0x7e,\n    0x7a, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x76, 0x76, 0x78, 0x7a, 0x7d, 0x80, 0x84, 0x85,\n    0x87, 0x8b, 0x91, 0x96, 0x98, 0x97, 0x95, 0x93, 0x8f, 0x8f, 0x8f, 0x90, 0x91, 0x92, 0x93, 0x94,\n    0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x94, 0x94, 0x94, 0x94, 0x93, 0x93, 0x93, 0x93,\n    0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x92, 0x93, 0x93, 0x93, 0x94, 0x94, 0x94, 0x94,\n    0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x95, 0x95, 0x95, 0x96, 0x96,\n    0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95,\n    0x95, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x93, 0x93, 0x93, 0x92, 0x91, 0x8f, 0x8d, 0x8b,\n    0x8a, 0x86, 0x81, 0x7b, 0x77, 0x76, 0x76, 0x76, 0x74, 0x73, 0x73, 0x72, 0x72, 0x73, 0x74, 0x75,\n    0x76, 0x76, 0x75, 0x76, 0x78, 0x7b, 0x7e, 0x80, 0x85, 0x86, 0x87, 0x88, 0x88, 0x88, 0x87, 0x86,\n    0x85, 0x83, 0x80, 0x7d, 0x7b, 0x7b, 0x7b, 0x7c, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d,\n    0x7c, 0x7c, 0x7c, 0x7d, 0x7f, 0x81, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84,\n    0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x84, 0x83, 0x83, 0x82, 0x82, 0x83, 0x83, 0x84,\n    0x85, 0x84, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x83, 0x83, 0x84, 0x85, 0x85, 0x84, 0x83, 0x83,\n    0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7e, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a,\n    0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7d, 0x7d, 0x7e, 0x7f, 0x81, 0x82, 0x83,\n    0x83, 0x82, 0x80, 0x7f, 0x7e, 0x7d, 0x7e, 0x7e, 0x7e, 0x7f, 0x81, 0x83, 0x83, 0x82, 0x80, 0x7f,\n    0x7e, 0x7d, 0x7c, 0x7c, 0x7c, 0x7d, 0x7f, 0x7f, 0x86, 0x86, 0x87, 0x88, 0x87, 0x86, 0x85, 0x84,\n    0x7f, 0x7f, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b,\n    0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7d,\n    0x76, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x77, 0x77, 0x78, 0x7b, 0x7e, 0x81, 0x84, 0x86,\n    0x87, 0x8c, 0x94, 0x9a, 0x9e, 0x9d, 0x9a, 0x97, 0x93, 0x92, 0x91, 0x90, 0x90, 0x92, 0x94, 0x95,\n    0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x94, 0x94, 0x94, 0x93, 0x93, 0x93, 0x92, 0x92,\n    0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x92, 0x93, 0x93, 0x93, 0x94, 0x94, 0x94, 0x94,\n    0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x95, 0x95, 0x95, 0x95,\n    0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94,\n    0x96, 0x95, 0x95, 0x95, 0x94, 0x94, 0x93, 0x93, 0x92, 0x92, 0x92, 0x92, 0x91, 0x8f, 0x8d, 0x8c,\n    0x8a, 0x86, 0x81, 0x7b, 0x78, 0x76, 0x77, 0x77, 0x75, 0x75, 0x74, 0x74, 0x74, 0x75, 0x77, 0x77,\n    0x78, 0x77, 0x76, 0x77, 0x79, 0x7d, 0x80, 0x83, 0x86, 0x87, 0x88, 0x88, 0x88, 0x87, 0x86, 0x85,\n    0x84, 0x82, 0x7f, 0x7d, 0x7b, 0x7b, 0x7c, 0x7c, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7e,\n    0x7e, 0x7e, 0x7e, 0x7e, 0x7f, 0x81, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84,\n    0x83, 0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x84, 0x82, 0x82, 0x82, 0x82, 0x84, 0x85,\n    0x85, 0x84, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x83, 0x83, 0x84, 0x85, 0x85, 0x84, 0x83, 0x83,\n    0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7f, 0x7e, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a,\n    0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7c, 0x7c, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7f, 0x81, 0x83, 0x84,\n    0x83, 0x82, 0x80, 0x7f, 0x7e, 0x7d, 0x7e, 0x7e, 0x7e, 0x80, 0x82, 0x83, 0x83, 0x82, 0x80, 0x7e,\n    0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7d, 0x7e, 0x7f, 0x86, 0x86, 0x87, 0x88, 0x87, 0x86, 0x85, 0x84,\n    0x80, 0x7f, 0x7f, 0x7e, 0x7e, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b,\n    0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x77, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7a,\n    0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x77, 0x78, 0x79, 0x7b, 0x7e, 0x82, 0x85, 0x87,\n    0x87, 0x8d, 0x96, 0x9e, 0xa1, 0xa0, 0x9c, 0x99, 0x97, 0x95, 0x92, 0x90, 0x90, 0x91, 0x94, 0x95,\n    0x97, 0x97, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x94, 0x94, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92,\n    0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x92, 0x93, 0x93, 0x93, 0x94, 0x94, 0x94, 0x94,\n    0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x94, 0x94, 0x94, 0x95, 0x95, 0x95,\n    0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94,\n    0x96, 0x96, 0x95, 0x94, 0x94, 0x93, 0x93, 0x92, 0x92, 0x92, 0x92, 0x92, 0x91, 0x8f, 0x8e, 0x8c,\n    0x89, 0x86, 0x81, 0x7c, 0x78, 0x77, 0x77, 0x78, 0x77, 0x76, 0x76, 0x76, 0x77, 0x78, 0x79, 0x7a,\n    0x79, 0x78, 0x77, 0x78, 0x7a, 0x7e, 0x83, 0x86, 0x87, 0x88, 0x88, 0x88, 0x88, 0x86, 0x85, 0x84,\n    0x84, 0x82, 0x7f, 0x7d, 0x7b, 0x7b, 0x7c, 0x7d, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7e, 0x7e, 0x7e,\n    0x80, 0x7f, 0x7f, 0x7f, 0x80, 0x81, 0x82, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84,\n    0x82, 0x82, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x85, 0x84, 0x82, 0x81, 0x81, 0x82, 0x84, 0x85,\n    0x85, 0x84, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x83, 0x83, 0x84, 0x85, 0x85, 0x84, 0x83, 0x83,\n    0x7f, 0x7e, 0x7d, 0x7c, 0x7c, 0x7d, 0x7e, 0x7f, 0x7f, 0x7f, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x79,\n    0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7f, 0x7f, 0x7e, 0x7e, 0x7d, 0x7d, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7f, 0x81, 0x83, 0x84,\n    0x83, 0x82, 0x80, 0x7f, 0x7e, 0x7d, 0x7e, 0x7e, 0x7f, 0x80, 0x82, 0x83, 0x83, 0x81, 0x7f, 0x7e,\n    0x7d, 0x7c, 0x7c, 0x7b, 0x7c, 0x7d, 0x7e, 0x7f, 0x86, 0x86, 0x87, 0x88, 0x87, 0x86, 0x85, 0x84,\n    0x80, 0x80, 0x7f, 0x7f, 0x7e, 0x7d, 0x7c, 0x7c, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a,\n    0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x78, 0x79, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78,\n    0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x78, 0x78, 0x79, 0x7c, 0x7f, 0x82, 0x85, 0x87,\n    0x86, 0x8d, 0x97, 0xa0, 0xa3, 0xa2, 0x9d, 0x99, 0x9a, 0x97, 0x93, 0x90, 0x8f, 0x91, 0x94, 0x96,\n    0x97, 0x97, 0x97, 0x96, 0x96, 0x95, 0x95, 0x95, 0x93, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x92,\n    0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x93, 0x93, 0x93, 0x94, 0x94, 0x94, 0x94,\n    0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x94, 0x94, 0x94, 0x95, 0x95,\n    0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94,\n    0x96, 0x96, 0x95, 0x94, 0x93, 0x93, 0x92, 0x92, 0x91, 0x92, 0x92, 0x92, 0x91, 0x8f, 0x8e, 0x8d,\n    0x89, 0x86, 0x81, 0x7c, 0x79, 0x77, 0x78, 0x79, 0x79, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x7c, 0x7d,\n    0x7b, 0x7a, 0x78, 0x78, 0x7b, 0x7f, 0x84, 0x88, 0x88, 0x88, 0x89, 0x88, 0x88, 0x86, 0x84, 0x83,\n    0x84, 0x83, 0x80, 0x7d, 0x7c, 0x7c, 0x7d, 0x7e, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7e, 0x7f, 0x7f,\n    0x81, 0x80, 0x80, 0x7f, 0x80, 0x81, 0x82, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84,\n    0x81, 0x81, 0x81, 0x82, 0x82, 0x82, 0x83, 0x83, 0x86, 0x84, 0x82, 0x80, 0x80, 0x82, 0x84, 0x86,\n    0x85, 0x84, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x83, 0x83, 0x84, 0x85, 0x85, 0x84, 0x83, 0x83,\n    0x80, 0x7f, 0x7e, 0x7d, 0x7d, 0x7e, 0x7f, 0x80, 0x80, 0x7f, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x79,\n    0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7f, 0x7f, 0x7e, 0x7e, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7f, 0x81, 0x83, 0x85,\n    0x83, 0x82, 0x80, 0x7f, 0x7e, 0x7d, 0x7e, 0x7e, 0x7f, 0x80, 0x82, 0x83, 0x83, 0x81, 0x7f, 0x7e,\n    0x7d, 0x7c, 0x7c, 0x7b, 0x7c, 0x7d, 0x7e, 0x7f, 0x86, 0x86, 0x87, 0x88, 0x87, 0x86, 0x85, 0x84,\n    0x81, 0x80, 0x80, 0x7f, 0x7e, 0x7d, 0x7c, 0x7c, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a,\n    0x7d, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x77, 0x77, 0x76,\n    0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x7a, 0x7c, 0x7f, 0x83, 0x86, 0x88,\n    0x86, 0x8d, 0x97, 0xa0, 0xa4, 0xa2, 0x9d, 0x99, 0x9b, 0x98, 0x94, 0x90, 0x8f, 0x91, 0x94, 0x96,\n    0x97, 0x97, 0x97, 0x96, 0x96, 0x95, 0x95, 0x94, 0x93, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x92,\n    0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x93, 0x93, 0x93, 0x94, 0x94, 0x94, 0x94,\n    0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x94, 0x94, 0x94, 0x94, 0x95,\n    0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94,\n    0x96, 0x96, 0x95, 0x94, 0x93, 0x92, 0x92, 0x91, 0x91, 0x91, 0x92, 0x92, 0x91, 0x90, 0x8e, 0x8d,\n    0x89, 0x86, 0x81, 0x7c, 0x79, 0x78, 0x78, 0x79, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7c, 0x7d, 0x7e,\n    0x7c, 0x7a, 0x79, 0x79, 0x7b, 0x80, 0x85, 0x89, 0x89, 0x89, 0x89, 0x89, 0x87, 0x86, 0x84, 0x83,\n    0x85, 0x83, 0x80, 0x7e, 0x7d, 0x7d, 0x7e, 0x7f, 0x7c, 0x7c, 0x7c, 0x7d, 0x7e, 0x7e, 0x7f, 0x7f,\n    0x82, 0x81, 0x80, 0x80, 0x80, 0x81, 0x82, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84,\n    0x80, 0x80, 0x81, 0x81, 0x81, 0x82, 0x82, 0x82, 0x86, 0x84, 0x82, 0x80, 0x80, 0x82, 0x84, 0x86,\n    0x85, 0x84, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x83, 0x83, 0x84, 0x85, 0x85, 0x84, 0x83, 0x83,\n    0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d,\n    0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7f, 0x80, 0x81, 0x82, 0x82,\n    0x82, 0x81, 0x80, 0x7f, 0x7e, 0x7e, 0x7e, 0x7f, 0x81, 0x81, 0x82, 0x82, 0x82, 0x81, 0x7f, 0x7f,\n    0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7f, 0x80, 0x81, 0x86, 0x86, 0x87, 0x88, 0x87, 0x86, 0x85, 0x84,\n    0x81, 0x80, 0x7e, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7e,\n    0x7c, 0x7c, 0x7d, 0x7d, 0x7c, 0x79, 0x77, 0x75, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79,\n    0x7a, 0x7a, 0x7b, 0x7b, 0x7a, 0x79, 0x76, 0x75, 0x75, 0x77, 0x79, 0x7d, 0x80, 0x84, 0x86, 0x88,\n    0x8a, 0x8e, 0x97, 0xa1, 0xa8, 0xa6, 0x9e, 0x97, 0x9a, 0x97, 0x94, 0x90, 0x90, 0x91, 0x94, 0x96,\n    0x97, 0x97, 0x96, 0x96, 0x95, 0x94, 0x94, 0x93, 0x94, 0x94, 0x93, 0x92, 0x93, 0x94, 0x96, 0x97,\n    0x93, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x92, 0x93, 0x93, 0x93, 0x93, 0x94, 0x94, 0x94, 0x94,\n    0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x93, 0x93,\n    0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x90, 0x90, 0x90, 0x90, 0x8f, 0x8f, 0x8f, 0x8f,\n    0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x92, 0x92, 0x92, 0x92, 0x90, 0x8f, 0x8e,\n    0x86, 0x83, 0x7f, 0x7b, 0x79, 0x7a, 0x7c, 0x7e, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c,\n    0x78, 0x78, 0x78, 0x7a, 0x7d, 0x81, 0x86, 0x88, 0x88, 0x89, 0x8a, 0x8a, 0x89, 0x87, 0x84, 0x83,\n    0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x7e, 0x7e, 0x7e, 0x7d, 0x7b, 0x79, 0x78, 0x78, 0x7b, 0x7d, 0x7f,\n    0x83, 0x80, 0x7d, 0x7e, 0x81, 0x83, 0x83, 0x81, 0x84, 0x84, 0x83, 0x82, 0x82, 0x83, 0x84, 0x84,\n    0x7f, 0x82, 0x84, 0x83, 0x80, 0x80, 0x82, 0x84, 0x84, 0x84, 0x83, 0x82, 0x82, 0x83, 0x84, 0x84,\n    0x85, 0x85, 0x85, 0x84, 0x83, 0x83, 0x82, 0x82, 0x81, 0x82, 0x84, 0x86, 0x86, 0x85, 0x84, 0x83,\n    0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7e, 0x7f, 0x80, 0x81, 0x82, 0x82,\n    0x82, 0x81, 0x80, 0x7f, 0x7e, 0x7e, 0x7e, 0x7f, 0x81, 0x81, 0x82, 0x82, 0x82, 0x80, 0x7f, 0x7e,\n    0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7f, 0x80, 0x81, 0x86, 0x86, 0x87, 0x88, 0x87, 0x86, 0x85, 0x84,\n    0x80, 0x7f, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7c, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d,\n    0x7c, 0x7c, 0x7d, 0x7c, 0x7b, 0x79, 0x77, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77,\n    0x7a, 0x7a, 0x7b, 0x7b, 0x7a, 0x79, 0x77, 0x75, 0x76, 0x77, 0x7a, 0x7d, 0x80, 0x84, 0x86, 0x88,\n    0x89, 0x8e, 0x96, 0xa0, 0xa6, 0xa5, 0x9e, 0x98, 0x99, 0x96, 0x93, 0x90, 0x90, 0x91, 0x94, 0x96,\n    0x97, 0x97, 0x96, 0x96, 0x95, 0x94, 0x94, 0x93, 0x92, 0x92, 0x91, 0x90, 0x91, 0x92, 0x94, 0x95,\n    0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92,\n    0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x93, 0x93,\n    0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x91, 0x91, 0x91, 0x90, 0x90, 0x90, 0x90, 0x8f,\n    0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x92, 0x92, 0x92, 0x92, 0x90, 0x8f, 0x8e,\n    0x89, 0x86, 0x81, 0x7d, 0x7b, 0x7b, 0x7d, 0x7e, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x78, 0x79, 0x79, 0x7b, 0x7f, 0x83, 0x87, 0x8a, 0x89, 0x8a, 0x8a, 0x8a, 0x88, 0x86, 0x84, 0x82,\n    0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x7e, 0x7e, 0x7e, 0x7b, 0x7a, 0x78, 0x77, 0x78, 0x7b, 0x7e, 0x7f,\n    0x81, 0x7e, 0x7c, 0x7d, 0x81, 0x83, 0x83, 0x81, 0x84, 0x84, 0x83, 0x82, 0x82, 0x83, 0x84, 0x84,\n    0x7f, 0x82, 0x84, 0x83, 0x80, 0x80, 0x82, 0x84, 0x84, 0x84, 0x83, 0x82, 0x82, 0x83, 0x84, 0x84,\n    0x85, 0x85, 0x85, 0x84, 0x83, 0x83, 0x82, 0x82, 0x81, 0x82, 0x84, 0x85, 0x86, 0x85, 0x84, 0x83,\n    0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7d, 0x7d, 0x7e, 0x7f, 0x80, 0x81, 0x82, 0x82,\n    0x82, 0x81, 0x80, 0x7f, 0x7e, 0x7e, 0x7e, 0x7f, 0x81, 0x82, 0x82, 0x82, 0x81, 0x80, 0x7e, 0x7e,\n    0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7f, 0x80, 0x81, 0x86, 0x86, 0x87, 0x88, 0x87, 0x86, 0x85, 0x84,\n    0x7f, 0x7e, 0x7c, 0x7b, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x79, 0x78, 0x77, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x77, 0x76, 0x76, 0x78, 0x7a, 0x7d, 0x81, 0x84, 0x86, 0x87,\n    0x89, 0x8c, 0x93, 0x9d, 0xa3, 0xa3, 0x9e, 0x98, 0x97, 0x95, 0x92, 0x90, 0x90, 0x92, 0x94, 0x96,\n    0x97, 0x97, 0x96, 0x96, 0x95, 0x94, 0x94, 0x93, 0x91, 0x90, 0x90, 0x90, 0x90, 0x91, 0x92, 0x93,\n    0x93, 0x93, 0x93, 0x93, 0x94, 0x94, 0x94, 0x94, 0x91, 0x91, 0x91, 0x91, 0x91, 0x90, 0x90, 0x90,\n    0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x95, 0x95, 0x94, 0x94, 0x94, 0x93, 0x93, 0x93,\n    0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x92, 0x92, 0x92, 0x92, 0x91, 0x91, 0x91, 0x91,\n    0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x92, 0x92, 0x92, 0x92, 0x90, 0x8f, 0x8e,\n    0x8b, 0x88, 0x83, 0x7f, 0x7c, 0x7b, 0x7c, 0x7d, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x79, 0x79,\n    0x79, 0x79, 0x7b, 0x7e, 0x82, 0x86, 0x89, 0x8b, 0x8b, 0x8b, 0x8b, 0x89, 0x87, 0x85, 0x83, 0x81,\n    0x7f, 0x7f, 0x7f, 0x7f, 0x7e, 0x7e, 0x7e, 0x7e, 0x79, 0x78, 0x77, 0x77, 0x79, 0x7b, 0x7e, 0x80,\n    0x7e, 0x7b, 0x79, 0x7b, 0x80, 0x83, 0x83, 0x82, 0x84, 0x84, 0x83, 0x82, 0x82, 0x83, 0x84, 0x84,\n    0x80, 0x83, 0x84, 0x83, 0x81, 0x80, 0x81, 0x84, 0x84, 0x84, 0x83, 0x82, 0x82, 0x83, 0x84, 0x84,\n    0x85, 0x85, 0x85, 0x84, 0x83, 0x83, 0x82, 0x82, 0x82, 0x82, 0x84, 0x84, 0x85, 0x85, 0x84, 0x83,\n    0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7c, 0x7c, 0x7b, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7d, 0x7d, 0x7e, 0x7f, 0x80, 0x81, 0x82, 0x82,\n    0x82, 0x81, 0x80, 0x7f, 0x7e, 0x7e, 0x7e, 0x7f, 0x81, 0x82, 0x82, 0x82, 0x81, 0x7f, 0x7e, 0x7d,\n    0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7f, 0x80, 0x81, 0x86, 0x86, 0x87, 0x88, 0x87, 0x86, 0x85, 0x84,\n    0x7d, 0x7d, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d,\n    0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x77, 0x78, 0x7b, 0x7e, 0x81, 0x84, 0x86, 0x87,\n    0x89, 0x8b, 0x90, 0x99, 0x9f, 0xa1, 0x9d, 0x99, 0x95, 0x94, 0x92, 0x90, 0x91, 0x92, 0x95, 0x96,\n    0x97, 0x97, 0x96, 0x96, 0x95, 0x94, 0x94, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x93, 0x93, 0x93,\n    0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x92, 0x92, 0x91, 0x91, 0x91,\n    0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x93, 0x93, 0x93, 0x93,\n    0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x93, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x92,\n    0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x92, 0x92, 0x92, 0x92, 0x90, 0x8f, 0x8e,\n    0x89, 0x87, 0x82, 0x7e, 0x7b, 0x79, 0x79, 0x7a, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x78,\n    0x79, 0x7b, 0x7e, 0x81, 0x85, 0x88, 0x8b, 0x8c, 0x8d, 0x8c, 0x8a, 0x88, 0x86, 0x83, 0x81, 0x80,\n    0x7f, 0x7f, 0x7f, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x78, 0x78, 0x77, 0x78, 0x79, 0x7c, 0x7e, 0x7f,\n    0x7b, 0x79, 0x78, 0x7a, 0x7f, 0x83, 0x84, 0x83, 0x84, 0x84, 0x83, 0x82, 0x82, 0x83, 0x84, 0x84,\n    0x81, 0x83, 0x85, 0x84, 0x81, 0x80, 0x81, 0x84, 0x84, 0x84, 0x83, 0x82, 0x82, 0x83, 0x84, 0x84,\n    0x85, 0x85, 0x85, 0x84, 0x83, 0x83, 0x82, 0x82, 0x82, 0x82, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84,\n    0x7f, 0x7f, 0x7e, 0x7d, 0x7c, 0x7c, 0x7b, 0x7b, 0x7e, 0x7e, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7d, 0x7d, 0x7e, 0x7f, 0x80, 0x81, 0x82, 0x82,\n    0x82, 0x81, 0x80, 0x7f, 0x7e, 0x7e, 0x7e, 0x7f, 0x82, 0x82, 0x82, 0x82, 0x80, 0x7f, 0x7d, 0x7c,\n    0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7f, 0x80, 0x81, 0x86, 0x86, 0x87, 0x88, 0x87, 0x86, 0x85, 0x84,\n    0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7c, 0x7c, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x79, 0x7b, 0x7e, 0x81, 0x84, 0x86, 0x87,\n    0x88, 0x89, 0x8d, 0x94, 0x9b, 0x9e, 0x9c, 0x99, 0x96, 0x95, 0x93, 0x92, 0x92, 0x93, 0x94, 0x96,\n    0x97, 0x97, 0x96, 0x96, 0x95, 0x94, 0x94, 0x93, 0x96, 0x97, 0x97, 0x97, 0x97, 0x96, 0x96, 0x96,\n    0x93, 0x92, 0x92, 0x91, 0x91, 0x90, 0x8f, 0x8f, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x94, 0x94,\n    0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x94, 0x94, 0x94, 0x93, 0x93, 0x93, 0x92, 0x92,\n    0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92,\n    0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x92, 0x92, 0x92, 0x92, 0x90, 0x8f, 0x8e,\n    0x86, 0x84, 0x80, 0x7c, 0x79, 0x77, 0x76, 0x76, 0x7d, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x78,\n    0x7a, 0x7d, 0x80, 0x85, 0x88, 0x8a, 0x8a, 0x8b, 0x8c, 0x8b, 0x89, 0x86, 0x84, 0x82, 0x80, 0x80,\n    0x7f, 0x7f, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x78, 0x78, 0x79, 0x79, 0x7b, 0x7c, 0x7e, 0x7f,\n    0x7a, 0x78, 0x77, 0x7a, 0x7f, 0x83, 0x84, 0x83, 0x84, 0x84, 0x83, 0x82, 0x82, 0x83, 0x84, 0x84,\n    0x82, 0x84, 0x86, 0x84, 0x81, 0x80, 0x81, 0x84, 0x84, 0x84, 0x83, 0x82, 0x82, 0x83, 0x84, 0x84,\n    0x85, 0x85, 0x85, 0x84, 0x83, 0x83, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x83, 0x83, 0x84, 0x84,\n    0x7f, 0x7f, 0x7e, 0x7d, 0x7c, 0x7b, 0x7b, 0x7a, 0x7e, 0x7e, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7d, 0x7d, 0x7e, 0x7f, 0x80, 0x81, 0x82, 0x82,\n    0x82, 0x81, 0x80, 0x7f, 0x7e, 0x7e, 0x7e, 0x7f, 0x82, 0x82, 0x82, 0x81, 0x80, 0x7e, 0x7c, 0x7b,\n    0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7f, 0x80, 0x81, 0x86, 0x86, 0x87, 0x88, 0x87, 0x86, 0x85, 0x84,\n    0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b,\n    0x7c, 0x7c, 0x7a, 0x7a, 0x79, 0x79, 0x7a, 0x7a, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7a, 0x7a, 0x79, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x79, 0x7a, 0x7c, 0x7e, 0x81, 0x84, 0x86, 0x87,\n    0x88, 0x88, 0x8a, 0x90, 0x97, 0x9c, 0x9c, 0x9a, 0x98, 0x97, 0x96, 0x94, 0x93, 0x94, 0x94, 0x95,\n    0x97, 0x97, 0x96, 0x96, 0x95, 0x94, 0x94, 0x93, 0x98, 0x99, 0x99, 0x9a, 0x99, 0x98, 0x97, 0x97,\n    0x92, 0x91, 0x90, 0x8e, 0x8d, 0x8b, 0x8a, 0x89, 0x8f, 0x8f, 0x90, 0x91, 0x92, 0x93, 0x94, 0x94,\n    0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x94, 0x94, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92,\n    0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x92,\n    0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x92, 0x92, 0x92, 0x92, 0x90, 0x8f, 0x8e,\n    0x84, 0x82, 0x7f, 0x7c, 0x79, 0x77, 0x77, 0x76, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x78, 0x78,\n    0x7c, 0x7e, 0x83, 0x87, 0x89, 0x8a, 0x89, 0x88, 0x8a, 0x88, 0x86, 0x83, 0x81, 0x80, 0x80, 0x7f,\n    0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7e, 0x7e,\n    0x7b, 0x79, 0x78, 0x7a, 0x7f, 0x83, 0x84, 0x83, 0x84, 0x84, 0x83, 0x82, 0x82, 0x83, 0x84, 0x84,\n    0x83, 0x85, 0x86, 0x85, 0x81, 0x80, 0x81, 0x83, 0x84, 0x84, 0x83, 0x82, 0x82, 0x83, 0x84, 0x84,\n    0x85, 0x85, 0x85, 0x84, 0x83, 0x83, 0x82, 0x82, 0x83, 0x82, 0x82, 0x81, 0x82, 0x83, 0x84, 0x85,\n    0x80, 0x7f, 0x7f, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7e, 0x7e, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7e, 0x7f, 0x80, 0x81, 0x82, 0x82,\n    0x82, 0x81, 0x80, 0x7f, 0x7e, 0x7e, 0x7e, 0x7f, 0x82, 0x82, 0x82, 0x81, 0x80, 0x7e, 0x7c, 0x7a,\n    0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7f, 0x80, 0x81, 0x86, 0x86, 0x87, 0x88, 0x87, 0x86, 0x85, 0x84,\n    0x7d, 0x7d, 0x7c, 0x7b, 0x7c, 0x7c, 0x7d, 0x7e, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b,\n    0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x7a, 0x79, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7a, 0x7b, 0x7c, 0x7f, 0x81, 0x84, 0x86, 0x87,\n    0x87, 0x86, 0x88, 0x8d, 0x94, 0x9a, 0x9b, 0x9a, 0x9b, 0x9a, 0x98, 0x97, 0x95, 0x94, 0x94, 0x94,\n    0x97, 0x97, 0x96, 0x96, 0x95, 0x94, 0x94, 0x93, 0x97, 0x98, 0x99, 0x99, 0x99, 0x97, 0x96, 0x95,\n    0x91, 0x90, 0x8e, 0x8c, 0x89, 0x86, 0x84, 0x83, 0x88, 0x89, 0x8a, 0x8c, 0x8e, 0x90, 0x91, 0x92,\n    0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x92,\n    0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x93, 0x92, 0x92, 0x92, 0x92, 0x91, 0x91, 0x91,\n    0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x92, 0x92, 0x92, 0x92, 0x90, 0x8f, 0x8e,\n    0x85, 0x84, 0x81, 0x7f, 0x7d, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x7d, 0x80, 0x85, 0x88, 0x8a, 0x89, 0x86, 0x84, 0x87, 0x85, 0x83, 0x81, 0x7f, 0x7f, 0x7f, 0x80,\n    0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d,\n    0x7d, 0x7a, 0x79, 0x7b, 0x80, 0x83, 0x84, 0x82, 0x84, 0x84, 0x83, 0x82, 0x82, 0x83, 0x84, 0x84,\n    0x83, 0x85, 0x87, 0x85, 0x81, 0x80, 0x81, 0x83, 0x84, 0x84, 0x83, 0x82, 0x82, 0x83, 0x84, 0x84,\n    0x85, 0x85, 0x85, 0x84, 0x83, 0x83, 0x82, 0x82, 0x83, 0x82, 0x81, 0x81, 0x81, 0x82, 0x84, 0x85,\n    0x80, 0x80, 0x7f, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7e, 0x7e, 0x7d, 0x7c, 0x7c, 0x7b, 0x7a, 0x7a,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c,\n    0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7f, 0x80, 0x81, 0x82, 0x82,\n    0x82, 0x81, 0x80, 0x7f, 0x7e, 0x7e, 0x7e, 0x7f, 0x82, 0x82, 0x82, 0x81, 0x7f, 0x7d, 0x7b, 0x7a,\n    0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7f, 0x80, 0x81, 0x86, 0x86, 0x87, 0x88, 0x87, 0x86, 0x85, 0x84,\n    0x7e, 0x7d, 0x7d, 0x7c, 0x7c, 0x7d, 0x7e, 0x7f, 0x7e, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b,\n    0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x79, 0x7b, 0x7c, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78,\n    0x7a, 0x79, 0x78, 0x77, 0x77, 0x79, 0x7a, 0x7b, 0x7a, 0x7b, 0x7d, 0x7f, 0x81, 0x84, 0x86, 0x87,\n    0x87, 0x86, 0x87, 0x8b, 0x93, 0x99, 0x9b, 0x9b, 0x9d, 0x9c, 0x9a, 0x98, 0x96, 0x94, 0x93, 0x93,\n    0x97, 0x97, 0x96, 0x96, 0x95, 0x94, 0x94, 0x93, 0x95, 0x96, 0x97, 0x97, 0x97, 0x95, 0x93, 0x92,\n    0x91, 0x90, 0x8d, 0x8a, 0x86, 0x83, 0x81, 0x7f, 0x82, 0x83, 0x85, 0x87, 0x8a, 0x8c, 0x8e, 0x8f,\n    0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x93, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x92,\n    0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x92, 0x92, 0x92, 0x91, 0x91, 0x91, 0x90, 0x90,\n    0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x92, 0x92, 0x92, 0x92, 0x90, 0x8f, 0x8e,\n    0x87, 0x86, 0x84, 0x82, 0x81, 0x7f, 0x7f, 0x7e, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x7e, 0x81, 0x86, 0x89, 0x8a, 0x88, 0x85, 0x82, 0x85, 0x83, 0x81, 0x7f, 0x7e, 0x7e, 0x7f, 0x80,\n    0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7f, 0x80, 0x80, 0x7f, 0x7f, 0x7e, 0x7d, 0x7c,\n    0x7e, 0x7c, 0x7a, 0x7c, 0x80, 0x83, 0x83, 0x82, 0x84, 0x84, 0x83, 0x82, 0x82, 0x83, 0x84, 0x84,\n    0x84, 0x86, 0x87, 0x85, 0x82, 0x80, 0x81, 0x83, 0x84, 0x84, 0x83, 0x82, 0x82, 0x83, 0x84, 0x84,\n    0x85, 0x85, 0x85, 0x84, 0x83, 0x83, 0x82, 0x82, 0x83, 0x82, 0x81, 0x80, 0x81, 0x82, 0x84, 0x85,\n    0x80, 0x80, 0x7f, 0x7e, 0x7d, 0x7c, 0x7c, 0x7b, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c,\n    0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7f, 0x80, 0x80, 0x81, 0x81, 0x82,\n    0x80, 0x80, 0x7f, 0x7e, 0x7e, 0x7f, 0x80, 0x80, 0x82, 0x81, 0x80, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d,\n    0x7d, 0x7d, 0x7c, 0x7d, 0x7e, 0x7f, 0x81, 0x82, 0x87, 0x88, 0x88, 0x88, 0x88, 0x86, 0x85, 0x84,\n    0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d,\n    0x7d, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77,\n    0x74, 0x76, 0x79, 0x7b, 0x7d, 0x7e, 0x7e, 0x7d, 0x79, 0x7b, 0x7e, 0x81, 0x84, 0x86, 0x87, 0x87,\n    0x87, 0x85, 0x84, 0x87, 0x8f, 0x95, 0x99, 0x9a, 0x9f, 0x9d, 0x9b, 0x98, 0x96, 0x94, 0x93, 0x93,\n    0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x95, 0x97, 0x96, 0x96, 0x95, 0x93, 0x92, 0x92, 0x91,\n    0x93, 0x92, 0x91, 0x90, 0x8f, 0x8d, 0x8c, 0x8c, 0x83, 0x83, 0x82, 0x82, 0x85, 0x89, 0x8d, 0x90,\n    0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91,\n    0x8d, 0x8e, 0x90, 0x92, 0x94, 0x95, 0x95, 0x95, 0x93, 0x92, 0x91, 0x90, 0x90, 0x91, 0x91, 0x92,\n    0x8f, 0x90, 0x91, 0x91, 0x91, 0x90, 0x8f, 0x8e, 0x90, 0x90, 0x90, 0x90, 0x91, 0x91, 0x91, 0x91,\n    0x8e, 0x8d, 0x8f, 0x93, 0x96, 0x90, 0x83, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7e, 0x7f,\n    0x83, 0x85, 0x88, 0x8a, 0x8b, 0x8b, 0x8a, 0x89, 0x86, 0x85, 0x82, 0x80, 0x7e, 0x7d, 0x7d, 0x7d,\n    0x7c, 0x7c, 0x7d, 0x7d, 0x7e, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f,\n    0x7f, 0x7f, 0x80, 0x81, 0x82, 0x83, 0x83, 0x84, 0x84, 0x83, 0x82, 0x81, 0x81, 0x82, 0x83, 0x84,\n    0x84, 0x84, 0x84, 0x83, 0x83, 0x82, 0x82, 0x81, 0x84, 0x83, 0x83, 0x82, 0x83, 0x84, 0x85, 0x86,\n    0x86, 0x85, 0x84, 0x83, 0x83, 0x83, 0x84, 0x85, 0x83, 0x82, 0x81, 0x81, 0x81, 0x82, 0x83, 0x84,\n    0x80, 0x80, 0x7f, 0x7e, 0x7d, 0x7c, 0x7b, 0x7b, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c,\n    0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7f, 0x80, 0x80, 0x81, 0x81,\n    0x80, 0x80, 0x7f, 0x7e, 0x7e, 0x7f, 0x80, 0x80, 0x82, 0x81, 0x7f, 0x7e, 0x7d, 0x7c, 0x7d, 0x7d,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7f, 0x81, 0x82, 0x87, 0x88, 0x88, 0x88, 0x88, 0x86, 0x85, 0x84,\n    0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d,\n    0x7d, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x76,\n    0x76, 0x77, 0x7a, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7a, 0x7c, 0x7f, 0x82, 0x85, 0x86, 0x87, 0x88,\n    0x86, 0x84, 0x83, 0x86, 0x8d, 0x94, 0x98, 0x99, 0x9d, 0x9b, 0x99, 0x97, 0x95, 0x94, 0x94, 0x94,\n    0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x97, 0x96, 0x96, 0x95, 0x95, 0x94, 0x94, 0x93,\n    0x92, 0x92, 0x91, 0x90, 0x8f, 0x8d, 0x8c, 0x8c, 0x87, 0x87, 0x86, 0x86, 0x87, 0x8b, 0x8e, 0x90,\n    0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91,\n    0x8f, 0x90, 0x91, 0x92, 0x93, 0x93, 0x92, 0x92, 0x92, 0x91, 0x90, 0x8f, 0x8f, 0x90, 0x90, 0x91,\n    0x90, 0x91, 0x92, 0x93, 0x93, 0x93, 0x92, 0x91, 0x90, 0x90, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91,\n    0x8f, 0x8f, 0x91, 0x95, 0x97, 0x91, 0x85, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7d, 0x7e, 0x7f,\n    0x83, 0x85, 0x88, 0x8a, 0x8b, 0x8b, 0x89, 0x88, 0x85, 0x83, 0x81, 0x7f, 0x7d, 0x7c, 0x7c, 0x7c,\n    0x7c, 0x7c, 0x7d, 0x7d, 0x7e, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f,\n    0x7f, 0x7f, 0x80, 0x81, 0x82, 0x83, 0x83, 0x84, 0x84, 0x83, 0x82, 0x81, 0x81, 0x82, 0x83, 0x84,\n    0x84, 0x84, 0x84, 0x83, 0x83, 0x82, 0x82, 0x82, 0x84, 0x83, 0x83, 0x82, 0x83, 0x84, 0x85, 0x86,\n    0x86, 0x85, 0x84, 0x83, 0x82, 0x83, 0x83, 0x84, 0x83, 0x82, 0x81, 0x81, 0x81, 0x82, 0x84, 0x84,\n    0x80, 0x80, 0x7f, 0x7e, 0x7d, 0x7c, 0x7b, 0x7b, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d,\n    0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7f, 0x7f, 0x80, 0x80,\n    0x81, 0x80, 0x7f, 0x7e, 0x7e, 0x7f, 0x80, 0x81, 0x82, 0x81, 0x7f, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7c, 0x7b, 0x7b, 0x7b, 0x7d, 0x7e, 0x80, 0x81, 0x87, 0x88, 0x88, 0x88, 0x88, 0x86, 0x85, 0x84,\n    0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d,\n    0x7d, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x76, 0x76,\n    0x78, 0x79, 0x7a, 0x7c, 0x7c, 0x7d, 0x7c, 0x7c, 0x7b, 0x7d, 0x7f, 0x83, 0x85, 0x87, 0x88, 0x89,\n    0x85, 0x82, 0x81, 0x84, 0x8b, 0x92, 0x96, 0x98, 0x9a, 0x99, 0x97, 0x95, 0x94, 0x94, 0x94, 0x94,\n    0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97,\n    0x94, 0x93, 0x92, 0x92, 0x91, 0x90, 0x8f, 0x8f, 0x8e, 0x8d, 0x8c, 0x8b, 0x8c, 0x8e, 0x90, 0x91,\n    0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92,\n    0x92, 0x92, 0x92, 0x92, 0x91, 0x8f, 0x8e, 0x8d, 0x8e, 0x8d, 0x8c, 0x8c, 0x8c, 0x8c, 0x8d, 0x8e,\n    0x8f, 0x90, 0x92, 0x94, 0x95, 0x95, 0x95, 0x94, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91,\n    0x91, 0x92, 0x94, 0x97, 0x97, 0x91, 0x86, 0x7e, 0x7c, 0x7c, 0x7b, 0x7b, 0x7c, 0x7d, 0x7f, 0x80,\n    0x84, 0x86, 0x88, 0x8a, 0x8b, 0x8a, 0x88, 0x87, 0x83, 0x81, 0x80, 0x7e, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7c, 0x7c, 0x7d, 0x7d, 0x7e, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f,\n    0x7f, 0x7f, 0x80, 0x81, 0x82, 0x83, 0x83, 0x84, 0x84, 0x83, 0x82, 0x81, 0x81, 0x82, 0x83, 0x84,\n    0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x83, 0x82, 0x84, 0x83, 0x83, 0x82, 0x83, 0x84, 0x85, 0x86,\n    0x85, 0x84, 0x83, 0x82, 0x81, 0x82, 0x82, 0x83, 0x83, 0x82, 0x82, 0x81, 0x82, 0x83, 0x84, 0x85,\n    0x80, 0x7f, 0x7f, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d,\n    0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d,\n    0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7d, 0x7d, 0x7e, 0x7f, 0x7f, 0x7f,\n    0x81, 0x80, 0x7f, 0x7f, 0x7f, 0x7f, 0x80, 0x81, 0x81, 0x80, 0x7e, 0x7d, 0x7c, 0x7b, 0x7b, 0x7c,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7e, 0x7f, 0x81, 0x87, 0x88, 0x88, 0x88, 0x88, 0x86, 0x85, 0x84,\n    0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d,\n    0x7d, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76,\n    0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7d, 0x80, 0x83, 0x86, 0x88, 0x89, 0x89,\n    0x84, 0x81, 0x7f, 0x82, 0x89, 0x90, 0x95, 0x97, 0x97, 0x96, 0x95, 0x94, 0x94, 0x94, 0x94, 0x95,\n    0x96, 0x96, 0x96, 0x96, 0x96, 0x97, 0x97, 0x97, 0x97, 0x98, 0x98, 0x98, 0x99, 0x99, 0x99, 0x99,\n    0x97, 0x97, 0x97, 0x96, 0x96, 0x95, 0x95, 0x95, 0x95, 0x93, 0x92, 0x91, 0x90, 0x91, 0x92, 0x93,\n    0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92,\n    0x94, 0x94, 0x93, 0x92, 0x90, 0x8d, 0x8a, 0x89, 0x88, 0x87, 0x87, 0x86, 0x86, 0x87, 0x88, 0x89,\n    0x8c, 0x8e, 0x90, 0x92, 0x94, 0x94, 0x95, 0x95, 0x92, 0x92, 0x92, 0x91, 0x91, 0x91, 0x91, 0x91,\n    0x92, 0x94, 0x97, 0x99, 0x97, 0x90, 0x87, 0x80, 0x7e, 0x7d, 0x7c, 0x7c, 0x7c, 0x7e, 0x80, 0x82,\n    0x85, 0x86, 0x88, 0x8a, 0x8a, 0x89, 0x87, 0x86, 0x81, 0x80, 0x7e, 0x7c, 0x7c, 0x7b, 0x7c, 0x7c,\n    0x7c, 0x7c, 0x7d, 0x7d, 0x7e, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f,\n    0x7f, 0x7f, 0x80, 0x81, 0x82, 0x83, 0x83, 0x84, 0x83, 0x83, 0x82, 0x82, 0x82, 0x82, 0x83, 0x83,\n    0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x84, 0x83, 0x83, 0x82, 0x83, 0x84, 0x85, 0x86,\n    0x84, 0x83, 0x82, 0x81, 0x81, 0x81, 0x82, 0x82, 0x83, 0x83, 0x82, 0x82, 0x82, 0x83, 0x84, 0x85,\n    0x7f, 0x7f, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e,\n    0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e,\n    0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7d, 0x7d, 0x7e, 0x7f, 0x7f, 0x7f,\n    0x81, 0x81, 0x80, 0x7f, 0x7f, 0x80, 0x81, 0x81, 0x80, 0x7f, 0x7e, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7c, 0x7b, 0x7b, 0x7b, 0x7d, 0x7e, 0x80, 0x81, 0x87, 0x88, 0x88, 0x88, 0x88, 0x86, 0x85, 0x84,\n    0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d,\n    0x7d, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76,\n    0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7d, 0x80, 0x83, 0x86, 0x88, 0x89, 0x89,\n    0x84, 0x80, 0x7d, 0x80, 0x87, 0x8f, 0x94, 0x96, 0x96, 0x95, 0x94, 0x93, 0x93, 0x94, 0x95, 0x95,\n    0x95, 0x96, 0x96, 0x96, 0x97, 0x97, 0x98, 0x98, 0x98, 0x99, 0x99, 0x99, 0x9a, 0x9a, 0x9a, 0x9a,\n    0x9c, 0x9c, 0x9c, 0x9c, 0x9b, 0x9b, 0x9b, 0x9b, 0x99, 0x98, 0x97, 0x95, 0x94, 0x94, 0x94, 0x94,\n    0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93,\n    0x95, 0x95, 0x94, 0x92, 0x90, 0x8c, 0x89, 0x88, 0x84, 0x83, 0x83, 0x82, 0x83, 0x84, 0x85, 0x86,\n    0x89, 0x8b, 0x8d, 0x8f, 0x91, 0x92, 0x93, 0x93, 0x93, 0x93, 0x92, 0x92, 0x91, 0x91, 0x91, 0x90,\n    0x93, 0x96, 0x99, 0x99, 0x93, 0x8b, 0x84, 0x7f, 0x7e, 0x7d, 0x7b, 0x7b, 0x7c, 0x7f, 0x82, 0x84,\n    0x86, 0x87, 0x89, 0x8a, 0x89, 0x88, 0x86, 0x84, 0x7f, 0x7e, 0x7d, 0x7c, 0x7b, 0x7c, 0x7c, 0x7d,\n    0x7c, 0x7c, 0x7d, 0x7d, 0x7e, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f,\n    0x7f, 0x7f, 0x80, 0x81, 0x82, 0x83, 0x83, 0x84, 0x82, 0x82, 0x83, 0x83, 0x83, 0x83, 0x82, 0x82,\n    0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x83, 0x82, 0x83, 0x84, 0x85, 0x86,\n    0x84, 0x83, 0x82, 0x81, 0x81, 0x81, 0x82, 0x82, 0x84, 0x83, 0x82, 0x82, 0x82, 0x83, 0x84, 0x85,\n    0x7f, 0x7f, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7e, 0x7e, 0x7f,\n    0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d,\n    0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7f, 0x7f, 0x80, 0x80,\n    0x82, 0x81, 0x80, 0x7f, 0x7f, 0x80, 0x81, 0x82, 0x80, 0x7f, 0x7d, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x7d, 0x7c, 0x7c, 0x7c, 0x7d, 0x7f, 0x81, 0x82, 0x87, 0x88, 0x88, 0x88, 0x88, 0x86, 0x85, 0x84,\n    0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d,\n    0x7d, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75,\n    0x77, 0x77, 0x77, 0x77, 0x77, 0x79, 0x7a, 0x7b, 0x7b, 0x7d, 0x7f, 0x83, 0x85, 0x87, 0x88, 0x89,\n    0x84, 0x80, 0x7d, 0x7f, 0x86, 0x8f, 0x94, 0x97, 0x97, 0x96, 0x95, 0x94, 0x94, 0x94, 0x94, 0x95,\n    0x95, 0x96, 0x96, 0x97, 0x97, 0x98, 0x98, 0x99, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a,\n    0x9d, 0x9d, 0x9d, 0x9e, 0x9e, 0x9e, 0x9e, 0x9f, 0x9b, 0x9a, 0x99, 0x98, 0x97, 0x95, 0x95, 0x94,\n    0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94,\n    0x95, 0x95, 0x94, 0x93, 0x90, 0x8e, 0x8b, 0x8a, 0x84, 0x84, 0x84, 0x83, 0x84, 0x85, 0x87, 0x88,\n    0x8a, 0x8b, 0x8d, 0x8f, 0x91, 0x92, 0x92, 0x92, 0x94, 0x93, 0x93, 0x92, 0x92, 0x91, 0x91, 0x90,\n    0x92, 0x96, 0x99, 0x97, 0x8e, 0x84, 0x7e, 0x7b, 0x7c, 0x7b, 0x79, 0x79, 0x7c, 0x7f, 0x84, 0x86,\n    0x86, 0x87, 0x89, 0x8a, 0x89, 0x87, 0x85, 0x83, 0x7e, 0x7e, 0x7d, 0x7c, 0x7c, 0x7d, 0x7e, 0x7e,\n    0x7c, 0x7c, 0x7d, 0x7d, 0x7e, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f,\n    0x7f, 0x7f, 0x80, 0x81, 0x82, 0x83, 0x83, 0x84, 0x81, 0x82, 0x83, 0x84, 0x84, 0x83, 0x82, 0x81,\n    0x83, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x84, 0x83, 0x83, 0x82, 0x83, 0x84, 0x85, 0x86,\n    0x85, 0x84, 0x83, 0x82, 0x81, 0x82, 0x82, 0x83, 0x84, 0x83, 0x83, 0x82, 0x83, 0x84, 0x85, 0x86,\n    0x7f, 0x7e, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7e, 0x7f, 0x7f,\n    0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d,\n    0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7f, 0x80, 0x80, 0x81, 0x81,\n    0x82, 0x81, 0x80, 0x80, 0x80, 0x80, 0x81, 0x82, 0x7f, 0x7e, 0x7c, 0x7b, 0x7a, 0x79, 0x7a, 0x7a,\n    0x7e, 0x7e, 0x7d, 0x7e, 0x7f, 0x80, 0x82, 0x83, 0x87, 0x88, 0x88, 0x88, 0x88, 0x86, 0x85, 0x84,\n    0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d,\n    0x7d, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75,\n    0x75, 0x74, 0x74, 0x74, 0x76, 0x78, 0x7a, 0x7b, 0x7a, 0x7c, 0x7f, 0x82, 0x85, 0x86, 0x87, 0x88,\n    0x85, 0x81, 0x7d, 0x7f, 0x86, 0x8f, 0x95, 0x98, 0x99, 0x98, 0x96, 0x95, 0x94, 0x94, 0x94, 0x95,\n    0x95, 0x95, 0x96, 0x97, 0x98, 0x98, 0x99, 0x99, 0x9b, 0x9b, 0x9a, 0x9a, 0x99, 0x99, 0x98, 0x98,\n    0x9a, 0x9b, 0x9b, 0x9c, 0x9c, 0x9d, 0x9d, 0x9d, 0x9a, 0x9a, 0x9a, 0x99, 0x98, 0x96, 0x95, 0x95,\n    0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94,\n    0x94, 0x94, 0x94, 0x93, 0x92, 0x90, 0x8e, 0x8d, 0x8a, 0x8a, 0x89, 0x89, 0x8a, 0x8c, 0x8d, 0x8e,\n    0x8e, 0x8f, 0x91, 0x93, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x93, 0x93, 0x92, 0x91, 0x90, 0x90,\n    0x91, 0x96, 0x99, 0x94, 0x89, 0x7d, 0x78, 0x76, 0x79, 0x78, 0x77, 0x78, 0x7b, 0x80, 0x85, 0x88,\n    0x87, 0x88, 0x89, 0x8a, 0x89, 0x86, 0x84, 0x82, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7e, 0x7f, 0x80,\n    0x7c, 0x7c, 0x7d, 0x7d, 0x7e, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f,\n    0x7f, 0x7f, 0x80, 0x81, 0x82, 0x83, 0x83, 0x84, 0x81, 0x82, 0x83, 0x84, 0x84, 0x83, 0x82, 0x81,\n    0x83, 0x83, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x84, 0x83, 0x83, 0x82, 0x83, 0x84, 0x85, 0x86,\n    0x86, 0x85, 0x84, 0x83, 0x82, 0x83, 0x83, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x84, 0x85, 0x86,\n    0x7f, 0x7e, 0x7d, 0x7d, 0x7b, 0x7b, 0x7a, 0x79, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7e, 0x7f, 0x7f,\n    0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7f, 0x80, 0x80, 0x81, 0x81, 0x82,\n    0x82, 0x81, 0x80, 0x80, 0x80, 0x80, 0x81, 0x82, 0x7f, 0x7e, 0x7c, 0x7a, 0x79, 0x79, 0x79, 0x7a,\n    0x7f, 0x7e, 0x7e, 0x7e, 0x7f, 0x81, 0x83, 0x84, 0x87, 0x88, 0x88, 0x88, 0x88, 0x86, 0x85, 0x84,\n    0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d,\n    0x7d, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x77, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75,\n    0x73, 0x72, 0x72, 0x73, 0x74, 0x77, 0x7a, 0x7c, 0x79, 0x7b, 0x7e, 0x81, 0x84, 0x86, 0x87, 0x87,\n    0x86, 0x81, 0x7d, 0x7f, 0x86, 0x8f, 0x95, 0x98, 0x9a, 0x99, 0x97, 0x96, 0x94, 0x94, 0x94, 0x94,\n    0x95, 0x95, 0x96, 0x97, 0x98, 0x99, 0x99, 0x9a, 0x9c, 0x9b, 0x9b, 0x9a, 0x99, 0x98, 0x97, 0x97,\n    0x97, 0x97, 0x98, 0x99, 0x99, 0x9a, 0x9b, 0x9b, 0x9a, 0x9a, 0x9a, 0x99, 0x98, 0x97, 0x95, 0x95,\n    0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94,\n    0x93, 0x93, 0x94, 0x94, 0x93, 0x91, 0x90, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x90, 0x91, 0x93, 0x94,\n    0x92, 0x93, 0x95, 0x96, 0x97, 0x97, 0x97, 0x97, 0x95, 0x94, 0x94, 0x93, 0x92, 0x91, 0x90, 0x90,\n    0x90, 0x95, 0x98, 0x92, 0x85, 0x79, 0x73, 0x73, 0x78, 0x77, 0x76, 0x77, 0x7a, 0x80, 0x86, 0x8a,\n    0x87, 0x88, 0x89, 0x89, 0x88, 0x86, 0x83, 0x81, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7f, 0x80, 0x81,\n    0x7c, 0x7c, 0x7d, 0x7d, 0x7e, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f,\n    0x7f, 0x7f, 0x80, 0x81, 0x82, 0x83, 0x83, 0x84, 0x81, 0x82, 0x83, 0x84, 0x84, 0x83, 0x82, 0x81,\n    0x83, 0x83, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x84, 0x83, 0x83, 0x82, 0x83, 0x84, 0x85, 0x86,\n    0x86, 0x85, 0x84, 0x83, 0x83, 0x83, 0x84, 0x85, 0x84, 0x84, 0x83, 0x83, 0x83, 0x84, 0x85, 0x86,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d,\n    0x7e, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d,\n    0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7f, 0x7f, 0x80, 0x81, 0x81, 0x81,\n    0x83, 0x83, 0x83, 0x83, 0x82, 0x82, 0x82, 0x81, 0x7f, 0x7e, 0x7d, 0x7c, 0x7b, 0x7c, 0x7c, 0x7d,\n    0x7e, 0x7d, 0x7d, 0x7d, 0x7e, 0x81, 0x84, 0x86, 0x86, 0x87, 0x89, 0x8a, 0x89, 0x87, 0x85, 0x84,\n    0x7f, 0x7f, 0x7d, 0x7c, 0x7c, 0x7c, 0x7d, 0x7e, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7d, 0x7e, 0x7f,\n    0x7d, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74,\n    0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x77, 0x77, 0x79, 0x7c, 0x80, 0x83, 0x86, 0x87, 0x87, 0x87,\n    0x84, 0x7f, 0x7a, 0x78, 0x7c, 0x86, 0x91, 0x98, 0x96, 0x95, 0x93, 0x92, 0x92, 0x94, 0x95, 0x96,\n    0x96, 0x97, 0x97, 0x98, 0x98, 0x99, 0x9a, 0x9a, 0x99, 0x9a, 0x9b, 0x9b, 0x9b, 0x9a, 0x99, 0x98,\n    0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x98, 0x97, 0x97, 0x97, 0x97, 0x96, 0x96, 0x96,\n    0x97, 0x97, 0x97, 0x96, 0x96, 0x96, 0x95, 0x95, 0x93, 0x93, 0x94, 0x95, 0x95, 0x96, 0x96, 0x97,\n    0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x94, 0x93, 0x91, 0x90, 0x8e, 0x8d, 0x8c,\n    0x8f, 0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x96, 0x95, 0x93, 0x91, 0x90, 0x90, 0x91, 0x91,\n    0x99, 0x92, 0x87, 0x7d, 0x76, 0x73, 0x74, 0x76, 0x76, 0x74, 0x73, 0x77, 0x7d, 0x83, 0x85, 0x85,\n    0x86, 0x88, 0x8a, 0x8b, 0x89, 0x84, 0x7f, 0x7b, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77,\n    0x7c, 0x7c, 0x7d, 0x7e, 0x7e, 0x7d, 0x7c, 0x7b, 0x7f, 0x7f, 0x80, 0x81, 0x81, 0x80, 0x7f, 0x7f,\n    0x7f, 0x7f, 0x7f, 0x7f, 0x80, 0x81, 0x83, 0x83, 0x82, 0x82, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84,\n    0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x81, 0x82, 0x83, 0x84, 0x85, 0x85, 0x84, 0x84,\n    0x82, 0x82, 0x82, 0x82, 0x83, 0x83, 0x83, 0x83, 0x82, 0x82, 0x81, 0x82, 0x83, 0x85, 0x87, 0x88,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d,\n    0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d,\n    0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7f, 0x80, 0x80, 0x81, 0x81,\n    0x83, 0x83, 0x83, 0x82, 0x82, 0x82, 0x81, 0x81, 0x7e, 0x7e, 0x7c, 0x7b, 0x7b, 0x7b, 0x7c, 0x7d,\n    0x7e, 0x7d, 0x7c, 0x7c, 0x7e, 0x81, 0x84, 0x86, 0x86, 0x87, 0x89, 0x8a, 0x89, 0x87, 0x85, 0x83,\n    0x7f, 0x7e, 0x7d, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7d, 0x7e,\n    0x7c, 0x7c, 0x7b, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74,\n    0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x77, 0x77, 0x79, 0x7c, 0x80, 0x83, 0x86, 0x87, 0x87, 0x87,\n    0x83, 0x7f, 0x7a, 0x78, 0x7b, 0x84, 0x8f, 0x96, 0x95, 0x94, 0x93, 0x92, 0x93, 0x94, 0x95, 0x96,\n    0x97, 0x97, 0x97, 0x98, 0x99, 0x99, 0x9a, 0x9a, 0x9a, 0x9a, 0x9b, 0x9b, 0x9b, 0x9a, 0x99, 0x98,\n    0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x97, 0x97, 0x97, 0x96, 0x96, 0x96, 0x95, 0x95,\n    0x97, 0x97, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x94, 0x94, 0x95, 0x95, 0x96, 0x96, 0x97, 0x97,\n    0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x98, 0x98, 0x97, 0x96, 0x95, 0x94, 0x93, 0x92,\n    0x92, 0x92, 0x93, 0x94, 0x94, 0x95, 0x96, 0x96, 0x96, 0x95, 0x94, 0x92, 0x91, 0x91, 0x91, 0x91,\n    0x93, 0x8d, 0x84, 0x7a, 0x74, 0x73, 0x74, 0x75, 0x76, 0x74, 0x73, 0x77, 0x7e, 0x83, 0x86, 0x86,\n    0x86, 0x88, 0x8a, 0x8a, 0x88, 0x83, 0x7e, 0x7b, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77,\n    0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x7c, 0x7d, 0x7e, 0x7f, 0x7f, 0x7e, 0x7d, 0x7c,\n    0x7e, 0x7e, 0x7e, 0x7f, 0x80, 0x82, 0x83, 0x83, 0x82, 0x82, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84,\n    0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x81, 0x82, 0x83, 0x85, 0x85, 0x85, 0x84, 0x84,\n    0x82, 0x83, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x82, 0x82, 0x82, 0x82, 0x83, 0x85, 0x87, 0x88,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d,\n    0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d,\n    0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7f, 0x80, 0x80, 0x81, 0x81,\n    0x82, 0x82, 0x82, 0x82, 0x81, 0x81, 0x81, 0x81, 0x7e, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c,\n    0x7d, 0x7c, 0x7c, 0x7c, 0x7e, 0x81, 0x84, 0x86, 0x86, 0x87, 0x89, 0x89, 0x89, 0x87, 0x84, 0x83,\n    0x7f, 0x7e, 0x7d, 0x7c, 0x7b, 0x7c, 0x7c, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d,\n    0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74,\n    0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x77, 0x77, 0x79, 0x7c, 0x80, 0x83, 0x86, 0x87, 0x87, 0x87,\n    0x83, 0x7f, 0x7a, 0x77, 0x7a, 0x82, 0x8c, 0x92, 0x94, 0x93, 0x93, 0x93, 0x93, 0x94, 0x95, 0x96,\n    0x97, 0x97, 0x98, 0x98, 0x99, 0x99, 0x9a, 0x9a, 0x9a, 0x9b, 0x9b, 0x9c, 0x9b, 0x9a, 0x99, 0x98,\n    0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x95,\n    0x97, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x94, 0x95, 0x95, 0x96, 0x97, 0x97, 0x98, 0x98,\n    0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x9c, 0x9b, 0x9b, 0x9b, 0x9a, 0x9a, 0x9a, 0x9a,\n    0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x97, 0x97, 0x96, 0x95, 0x95, 0x94, 0x92, 0x91, 0x90, 0x90,\n    0x8b, 0x86, 0x7e, 0x77, 0x73, 0x72, 0x73, 0x75, 0x75, 0x74, 0x74, 0x78, 0x7f, 0x84, 0x86, 0x86,\n    0x87, 0x88, 0x89, 0x88, 0x86, 0x82, 0x7d, 0x7a, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75,\n    0x78, 0x79, 0x7a, 0x7a, 0x7b, 0x7a, 0x79, 0x78, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b,\n    0x7c, 0x7d, 0x7e, 0x7f, 0x81, 0x82, 0x83, 0x83, 0x82, 0x82, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84,\n    0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x82, 0x83, 0x84, 0x85, 0x85, 0x85, 0x84, 0x84,\n    0x83, 0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x82, 0x82, 0x82, 0x82, 0x83, 0x85, 0x86, 0x87,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d,\n    0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7e, 0x7f, 0x7f, 0x80, 0x80, 0x81,\n    0x82, 0x82, 0x81, 0x81, 0x81, 0x80, 0x80, 0x80, 0x7d, 0x7d, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c,\n    0x7c, 0x7c, 0x7b, 0x7c, 0x7e, 0x81, 0x84, 0x86, 0x86, 0x87, 0x89, 0x89, 0x88, 0x86, 0x83, 0x82,\n    0x7e, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x7c,\n    0x7a, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74, 0x74,\n    0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x77, 0x77, 0x79, 0x7c, 0x80, 0x83, 0x86, 0x87, 0x87, 0x87,\n    0x83, 0x7f, 0x79, 0x76, 0x79, 0x7f, 0x88, 0x8e, 0x92, 0x92, 0x93, 0x93, 0x93, 0x94, 0x95, 0x95,\n    0x97, 0x97, 0x98, 0x98, 0x99, 0x9a, 0x9a, 0x9b, 0x9b, 0x9b, 0x9c, 0x9c, 0x9c, 0x9b, 0x9a, 0x99,\n    0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x94, 0x94,\n    0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x96, 0x96, 0x97, 0x98, 0x98, 0x98,\n    0x97, 0x97, 0x97, 0x98, 0x98, 0x98, 0x98, 0x98, 0x9c, 0x9c, 0x9c, 0x9c, 0x9c, 0x9d, 0x9d, 0x9d,\n    0x9a, 0x9a, 0x99, 0x99, 0x98, 0x98, 0x97, 0x97, 0x95, 0x96, 0x96, 0x95, 0x93, 0x91, 0x8e, 0x8c,\n    0x82, 0x7e, 0x79, 0x74, 0x71, 0x71, 0x73, 0x74, 0x75, 0x73, 0x74, 0x79, 0x80, 0x86, 0x87, 0x86,\n    0x87, 0x87, 0x87, 0x86, 0x83, 0x80, 0x7c, 0x7a, 0x77, 0x77, 0x76, 0x76, 0x75, 0x75, 0x74, 0x74,\n    0x76, 0x76, 0x78, 0x78, 0x79, 0x78, 0x77, 0x77, 0x7b, 0x7c, 0x7d, 0x7e, 0x7e, 0x7d, 0x7c, 0x7b,\n    0x7a, 0x7b, 0x7d, 0x7f, 0x81, 0x82, 0x83, 0x83, 0x82, 0x82, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84,\n    0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x83, 0x84, 0x85, 0x85, 0x85, 0x84, 0x83,\n    0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x86, 0x86, 0x83, 0x83, 0x82, 0x82, 0x83, 0x84, 0x86, 0x87,\n    0x7d, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7e, 0x7e, 0x7f, 0x80, 0x80, 0x80,\n    0x81, 0x81, 0x81, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x7a, 0x7a, 0x7b,\n    0x7b, 0x7b, 0x7a, 0x7b, 0x7d, 0x81, 0x84, 0x86, 0x87, 0x88, 0x89, 0x89, 0x88, 0x85, 0x83, 0x81,\n    0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x79, 0x79, 0x7a,\n    0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75,\n    0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x77, 0x77, 0x79, 0x7c, 0x80, 0x83, 0x86, 0x87, 0x87, 0x87,\n    0x82, 0x7e, 0x79, 0x75, 0x77, 0x7c, 0x84, 0x89, 0x91, 0x91, 0x92, 0x93, 0x94, 0x94, 0x95, 0x95,\n    0x97, 0x98, 0x98, 0x99, 0x99, 0x9a, 0x9b, 0x9b, 0x9c, 0x9c, 0x9d, 0x9d, 0x9d, 0x9c, 0x9b, 0x9a,\n    0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x95,\n    0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x95, 0x95, 0x96, 0x97, 0x97, 0x98, 0x98,\n    0x96, 0x97, 0x97, 0x97, 0x98, 0x98, 0x99, 0x99, 0x99, 0x99, 0x99, 0x9a, 0x9a, 0x9b, 0x9b, 0x9b,\n    0x9b, 0x9b, 0x9a, 0x9a, 0x99, 0x98, 0x97, 0x97, 0x96, 0x97, 0x97, 0x96, 0x93, 0x8f, 0x8a, 0x87,\n    0x7a, 0x78, 0x75, 0x72, 0x71, 0x71, 0x73, 0x74, 0x74, 0x73, 0x75, 0x7b, 0x82, 0x87, 0x88, 0x87,\n    0x88, 0x87, 0x85, 0x83, 0x80, 0x7d, 0x7b, 0x7a, 0x77, 0x77, 0x77, 0x76, 0x75, 0x74, 0x74, 0x73,\n    0x74, 0x75, 0x76, 0x77, 0x77, 0x77, 0x77, 0x76, 0x7d, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x7e, 0x7d,\n    0x77, 0x79, 0x7c, 0x7f, 0x81, 0x82, 0x83, 0x83, 0x82, 0x82, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84,\n    0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x85, 0x86, 0x86, 0x85, 0x84, 0x83,\n    0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x86, 0x86, 0x83, 0x83, 0x82, 0x82, 0x83, 0x84, 0x85, 0x86,\n    0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c,\n    0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7e, 0x7f, 0x7f, 0x80, 0x80,\n    0x80, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x7f, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7a,\n    0x7b, 0x7a, 0x7a, 0x7b, 0x7d, 0x81, 0x84, 0x87, 0x87, 0x88, 0x89, 0x89, 0x87, 0x85, 0x82, 0x80,\n    0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x7a, 0x7a, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x77, 0x78, 0x79,\n    0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75,\n    0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x77, 0x77, 0x79, 0x7c, 0x80, 0x83, 0x86, 0x87, 0x87, 0x87,\n    0x82, 0x7e, 0x78, 0x75, 0x75, 0x79, 0x80, 0x84, 0x8f, 0x90, 0x92, 0x93, 0x94, 0x95, 0x95, 0x94,\n    0x98, 0x98, 0x98, 0x99, 0x9a, 0x9a, 0x9b, 0x9b, 0x9c, 0x9d, 0x9d, 0x9e, 0x9d, 0x9c, 0x9b, 0x9a,\n    0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x97, 0x97, 0x97, 0x97, 0x96, 0x96, 0x96, 0x96,\n    0x96, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x93, 0x94, 0x94, 0x95, 0x96, 0x96, 0x97, 0x97,\n    0x95, 0x96, 0x96, 0x97, 0x97, 0x98, 0x98, 0x99, 0x97, 0x97, 0x97, 0x98, 0x98, 0x98, 0x98, 0x98,\n    0x9a, 0x9a, 0x99, 0x99, 0x98, 0x98, 0x97, 0x97, 0x97, 0x98, 0x98, 0x96, 0x92, 0x8b, 0x85, 0x80,\n    0x76, 0x75, 0x74, 0x72, 0x72, 0x72, 0x73, 0x74, 0x73, 0x73, 0x76, 0x7c, 0x83, 0x88, 0x89, 0x87,\n    0x89, 0x87, 0x84, 0x81, 0x7d, 0x7b, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x77, 0x76, 0x75, 0x74, 0x74,\n    0x73, 0x74, 0x75, 0x76, 0x77, 0x77, 0x76, 0x76, 0x7d, 0x7d, 0x7e, 0x7f, 0x7f, 0x7e, 0x7d, 0x7d,\n    0x75, 0x77, 0x7b, 0x7f, 0x81, 0x83, 0x83, 0x82, 0x82, 0x82, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84,\n    0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x86, 0x85, 0x84, 0x83,\n    0x83, 0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x84, 0x83, 0x83, 0x82, 0x83, 0x84, 0x85, 0x86,\n    0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c,\n    0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7e, 0x7e, 0x7f, 0x7f, 0x80,\n    0x80, 0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x7e, 0x7e, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x79, 0x79, 0x7a,\n    0x7a, 0x7a, 0x79, 0x7a, 0x7d, 0x81, 0x84, 0x87, 0x87, 0x88, 0x89, 0x89, 0x87, 0x84, 0x81, 0x7f,\n    0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x76, 0x77, 0x77,\n    0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75,\n    0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x77, 0x77, 0x79, 0x7c, 0x80, 0x83, 0x86, 0x87, 0x87, 0x87,\n    0x81, 0x7d, 0x78, 0x74, 0x74, 0x77, 0x7d, 0x80, 0x8e, 0x8f, 0x92, 0x94, 0x95, 0x95, 0x94, 0x94,\n    0x98, 0x98, 0x99, 0x99, 0x9a, 0x9b, 0x9b, 0x9b, 0x9d, 0x9d, 0x9e, 0x9e, 0x9e, 0x9d, 0x9c, 0x9b,\n    0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x99, 0x98, 0x98, 0x98, 0x98, 0x97, 0x97, 0x97,\n    0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x94, 0x92, 0x93, 0x93, 0x94, 0x94, 0x95, 0x95, 0x96,\n    0x94, 0x94, 0x95, 0x96, 0x96, 0x97, 0x98, 0x98, 0x98, 0x98, 0x98, 0x97, 0x97, 0x97, 0x97, 0x97,\n    0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x98, 0x99, 0x96, 0x91, 0x88, 0x80, 0x7a,\n    0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x74, 0x74, 0x73, 0x73, 0x76, 0x7d, 0x84, 0x89, 0x89, 0x88,\n    0x89, 0x87, 0x83, 0x7f, 0x7b, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x79, 0x78, 0x76, 0x75, 0x75, 0x74,\n    0x72, 0x73, 0x75, 0x76, 0x77, 0x77, 0x77, 0x76, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x79,\n    0x73, 0x76, 0x7a, 0x7e, 0x81, 0x83, 0x83, 0x82, 0x82, 0x82, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84,\n    0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x85, 0x86, 0x86, 0x86, 0x86, 0x85, 0x84, 0x83,\n    0x82, 0x83, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x82, 0x83, 0x84, 0x85, 0x85,\n    0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x78, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c,\n    0x7b, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7e, 0x7e, 0x7f, 0x7f, 0x80,\n    0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x7e, 0x7e, 0x7e, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x78, 0x79, 0x7a,\n    0x7a, 0x79, 0x79, 0x7a, 0x7d, 0x81, 0x84, 0x87, 0x87, 0x88, 0x89, 0x88, 0x87, 0x84, 0x81, 0x7f,\n    0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x79, 0x77, 0x76, 0x76, 0x76, 0x76, 0x77,\n    0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x75,\n    0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x77, 0x77, 0x79, 0x7c, 0x80, 0x83, 0x86, 0x87, 0x87, 0x87,\n    0x81, 0x7d, 0x78, 0x74, 0x73, 0x76, 0x7b, 0x7e, 0x8d, 0x8f, 0x91, 0x94, 0x95, 0x95, 0x94, 0x94,\n    0x98, 0x98, 0x99, 0x99, 0x9a, 0x9b, 0x9b, 0x9c, 0x9d, 0x9d, 0x9e, 0x9f, 0x9e, 0x9d, 0x9c, 0x9b,\n    0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x99, 0x99, 0x99, 0x99, 0x98, 0x98, 0x98, 0x98,\n    0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x93, 0x91, 0x92, 0x92, 0x93, 0x94, 0x94, 0x95, 0x95,\n    0x93, 0x93, 0x94, 0x95, 0x96, 0x97, 0x97, 0x98, 0x99, 0x99, 0x99, 0x98, 0x98, 0x97, 0x97, 0x97,\n    0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x98, 0x99, 0x99, 0x96, 0x90, 0x86, 0x7c, 0x76,\n    0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x76, 0x7d, 0x85, 0x8a, 0x8a, 0x88,\n    0x89, 0x87, 0x82, 0x7e, 0x7a, 0x79, 0x78, 0x78, 0x7b, 0x7a, 0x7a, 0x78, 0x77, 0x76, 0x75, 0x75,\n    0x72, 0x73, 0x75, 0x76, 0x77, 0x77, 0x77, 0x77, 0x75, 0x76, 0x77, 0x78, 0x78, 0x77, 0x76, 0x75,\n    0x72, 0x75, 0x7a, 0x7e, 0x82, 0x83, 0x83, 0x82, 0x82, 0x82, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84,\n    0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x86, 0x86, 0x87, 0x87, 0x86, 0x85, 0x84, 0x83,\n    0x82, 0x82, 0x82, 0x82, 0x83, 0x83, 0x83, 0x83, 0x85, 0x84, 0x83, 0x83, 0x83, 0x83, 0x84, 0x85,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7e, 0x7e, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b,\n    0x7a, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d,\n    0x7b, 0x7b, 0x7c, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x77, 0x77,\n    0x77, 0x77, 0x77, 0x79, 0x7c, 0x80, 0x84, 0x87, 0x89, 0x8a, 0x8a, 0x89, 0x87, 0x84, 0x81, 0x7f,\n    0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x77, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77,\n    0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x75, 0x74, 0x73,\n    0x76, 0x76, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7d, 0x7e, 0x81, 0x83, 0x85, 0x86, 0x87, 0x87,\n    0x7f, 0x7c, 0x79, 0x76, 0x75, 0x77, 0x7a, 0x7c, 0x8f, 0x90, 0x92, 0x94, 0x95, 0x95, 0x94, 0x94,\n    0x96, 0x96, 0x97, 0x98, 0x99, 0x9a, 0x9b, 0x9b, 0x9d, 0x9d, 0x9d, 0x9c, 0x9c, 0x9c, 0x9b, 0x9b,\n    0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9a, 0x99, 0x97, 0x95, 0x94, 0x92, 0x92,\n    0x93, 0x93, 0x94, 0x94, 0x95, 0x96, 0x97, 0x97, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94,\n    0x95, 0x95, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98,\n    0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x9c, 0x98, 0x94, 0x92, 0x90, 0x87, 0x78, 0x6d,\n    0x73, 0x73, 0x72, 0x72, 0x72, 0x73, 0x74, 0x75, 0x72, 0x75, 0x7b, 0x80, 0x86, 0x8a, 0x8c, 0x8d,\n    0x8b, 0x87, 0x81, 0x7b, 0x78, 0x78, 0x7a, 0x7b, 0x76, 0x77, 0x78, 0x78, 0x76, 0x73, 0x70, 0x6e,\n    0x6e, 0x70, 0x73, 0x76, 0x77, 0x76, 0x75, 0x73, 0x76, 0x76, 0x76, 0x76, 0x75, 0x73, 0x72, 0x70,\n    0x71, 0x74, 0x7a, 0x7f, 0x83, 0x85, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84,\n    0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x84, 0x85, 0x86, 0x86, 0x85, 0x84, 0x83,\n    0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x82, 0x82, 0x83, 0x84, 0x84,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7d, 0x7e, 0x7e, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a,\n    0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x77, 0x77,\n    0x77, 0x77, 0x77, 0x79, 0x7c, 0x80, 0x84, 0x87, 0x89, 0x89, 0x8a, 0x89, 0x87, 0x84, 0x80, 0x7e,\n    0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77,\n    0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x75, 0x74, 0x74,\n    0x75, 0x75, 0x76, 0x77, 0x78, 0x78, 0x79, 0x79, 0x7c, 0x7e, 0x80, 0x82, 0x84, 0x85, 0x85, 0x86,\n    0x7f, 0x7d, 0x79, 0x76, 0x76, 0x78, 0x7b, 0x7d, 0x8d, 0x8f, 0x92, 0x94, 0x95, 0x96, 0x95, 0x94,\n    0x97, 0x97, 0x98, 0x99, 0x9a, 0x9b, 0x9b, 0x9c, 0x9d, 0x9d, 0x9d, 0x9d, 0x9c, 0x9c, 0x9c, 0x9c,\n    0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9a, 0x9a, 0x9a, 0x99, 0x99, 0x98, 0x97, 0x95, 0x94, 0x93, 0x93,\n    0x93, 0x94, 0x94, 0x95, 0x96, 0x97, 0x97, 0x98, 0x95, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94,\n    0x95, 0x95, 0x96, 0x96, 0x97, 0x97, 0x97, 0x97, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98,\n    0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x9c, 0x98, 0x94, 0x92, 0x8f, 0x86, 0x78, 0x6d,\n    0x73, 0x73, 0x72, 0x72, 0x72, 0x73, 0x74, 0x75, 0x75, 0x78, 0x7c, 0x82, 0x87, 0x8a, 0x8c, 0x8c,\n    0x8b, 0x87, 0x81, 0x7b, 0x78, 0x77, 0x78, 0x7a, 0x76, 0x77, 0x77, 0x77, 0x76, 0x73, 0x70, 0x6e,\n    0x6e, 0x70, 0x73, 0x75, 0x76, 0x76, 0x74, 0x73, 0x75, 0x76, 0x76, 0x75, 0x74, 0x73, 0x71, 0x70,\n    0x71, 0x74, 0x7a, 0x7f, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84,\n    0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x84, 0x85, 0x86, 0x86, 0x85, 0x84, 0x83,\n    0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x82, 0x82, 0x83, 0x84, 0x84,\n    0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79,\n    0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78,\n    0x77, 0x77, 0x77, 0x79, 0x7c, 0x80, 0x84, 0x87, 0x88, 0x89, 0x89, 0x89, 0x87, 0x83, 0x80, 0x7e,\n    0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77,\n    0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x79, 0x79, 0x78, 0x77, 0x76, 0x75, 0x74, 0x74,\n    0x74, 0x75, 0x75, 0x76, 0x76, 0x77, 0x77, 0x78, 0x7b, 0x7c, 0x7e, 0x81, 0x82, 0x83, 0x83, 0x83,\n    0x7f, 0x7d, 0x7a, 0x78, 0x77, 0x79, 0x7b, 0x7d, 0x8b, 0x8d, 0x90, 0x94, 0x96, 0x97, 0x96, 0x96,\n    0x97, 0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9c, 0x9d, 0x9e, 0x9e, 0x9d, 0x9d, 0x9d, 0x9c, 0x9c, 0x9c,\n    0x9b, 0x9a, 0x9a, 0x9a, 0x9a, 0x99, 0x99, 0x99, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x95,\n    0x95, 0x95, 0x95, 0x96, 0x97, 0x97, 0x98, 0x98, 0x97, 0x97, 0x97, 0x96, 0x95, 0x95, 0x94, 0x94,\n    0x94, 0x95, 0x95, 0x96, 0x97, 0x98, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99,\n    0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x9b, 0x98, 0x95, 0x92, 0x8d, 0x83, 0x76, 0x6d,\n    0x73, 0x72, 0x72, 0x71, 0x72, 0x73, 0x74, 0x75, 0x78, 0x7b, 0x7f, 0x84, 0x88, 0x8a, 0x8b, 0x8b,\n    0x8c, 0x88, 0x81, 0x7a, 0x76, 0x75, 0x76, 0x77, 0x75, 0x76, 0x77, 0x77, 0x75, 0x73, 0x70, 0x6e,\n    0x6e, 0x6f, 0x72, 0x74, 0x75, 0x75, 0x74, 0x73, 0x75, 0x75, 0x75, 0x75, 0x74, 0x72, 0x70, 0x6f,\n    0x70, 0x74, 0x79, 0x7f, 0x83, 0x84, 0x84, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84,\n    0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x84, 0x85, 0x86, 0x86, 0x85, 0x84, 0x83,\n    0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x83, 0x82, 0x82, 0x83, 0x84, 0x84,\n    0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79,\n    0x7a, 0x79, 0x79, 0x78, 0x77, 0x77, 0x76, 0x76, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78,\n    0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7b, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78,\n    0x77, 0x77, 0x77, 0x79, 0x7c, 0x80, 0x84, 0x87, 0x88, 0x88, 0x89, 0x88, 0x86, 0x83, 0x7f, 0x7d,\n    0x78, 0x78, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77,\n    0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x79, 0x78, 0x78, 0x77, 0x76, 0x75, 0x75, 0x75,\n    0x74, 0x74, 0x74, 0x75, 0x75, 0x76, 0x76, 0x76, 0x79, 0x7a, 0x7c, 0x7e, 0x80, 0x81, 0x81, 0x81,\n    0x7e, 0x7c, 0x7a, 0x78, 0x78, 0x7a, 0x7c, 0x7d, 0x86, 0x89, 0x8e, 0x93, 0x96, 0x97, 0x97, 0x97,\n    0x98, 0x99, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9d, 0x9e, 0x9e, 0x9d, 0x9d, 0x9d, 0x9c, 0x9c, 0x9c,\n    0x9a, 0x9a, 0x99, 0x99, 0x98, 0x98, 0x97, 0x97, 0x94, 0x94, 0x94, 0x95, 0x95, 0x96, 0x96, 0x96,\n    0x95, 0x96, 0x96, 0x96, 0x97, 0x97, 0x98, 0x98, 0x98, 0x98, 0x98, 0x97, 0x96, 0x95, 0x95, 0x94,\n    0x94, 0x94, 0x95, 0x96, 0x97, 0x99, 0x9a, 0x9c, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99,\n    0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x9a, 0x99, 0x96, 0x91, 0x8a, 0x7f, 0x74, 0x6d,\n    0x73, 0x72, 0x71, 0x71, 0x71, 0x72, 0x74, 0x74, 0x7b, 0x7e, 0x82, 0x87, 0x8a, 0x8b, 0x8a, 0x8a,\n    0x8c, 0x87, 0x80, 0x79, 0x75, 0x73, 0x74, 0x75, 0x74, 0x75, 0x76, 0x76, 0x75, 0x73, 0x70, 0x6e,\n    0x6d, 0x6f, 0x71, 0x72, 0x74, 0x74, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x73, 0x71, 0x6f, 0x6e,\n    0x70, 0x74, 0x79, 0x7f, 0x82, 0x84, 0x84, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84,\n    0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x84, 0x85, 0x86, 0x86, 0x85, 0x84, 0x83,\n    0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x83, 0x82, 0x82, 0x83, 0x84, 0x84,\n    0x7c, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78,\n    0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78,\n    0x79, 0x78, 0x78, 0x77, 0x76, 0x76, 0x75, 0x75, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77,\n    0x7a, 0x7a, 0x7b, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79,\n    0x77, 0x77, 0x77, 0x79, 0x7c, 0x80, 0x84, 0x87, 0x87, 0x87, 0x88, 0x87, 0x85, 0x82, 0x7f, 0x7d,\n    0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x75, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77,\n    0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x76, 0x76, 0x75, 0x75,\n    0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x77, 0x78, 0x7a, 0x7c, 0x7d, 0x7e, 0x7e, 0x7e,\n    0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x7a, 0x7c, 0x7d, 0x81, 0x85, 0x8b, 0x92, 0x96, 0x98, 0x98, 0x97,\n    0x98, 0x99, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9c, 0x9c, 0x9c, 0x9c, 0x9b,\n    0x99, 0x99, 0x98, 0x97, 0x97, 0x96, 0x95, 0x95, 0x92, 0x92, 0x93, 0x94, 0x95, 0x96, 0x96, 0x97,\n    0x96, 0x96, 0x96, 0x96, 0x96, 0x97, 0x97, 0x97, 0x98, 0x98, 0x97, 0x97, 0x96, 0x96, 0x95, 0x95,\n    0x95, 0x94, 0x94, 0x95, 0x96, 0x98, 0x9a, 0x9c, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a,\n    0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x97, 0x91, 0x87, 0x7b, 0x72, 0x6d,\n    0x72, 0x72, 0x71, 0x71, 0x71, 0x72, 0x73, 0x74, 0x7c, 0x7f, 0x84, 0x88, 0x8b, 0x8b, 0x8a, 0x88,\n    0x8a, 0x86, 0x7f, 0x78, 0x73, 0x72, 0x73, 0x74, 0x73, 0x74, 0x75, 0x75, 0x74, 0x72, 0x70, 0x6e,\n    0x6d, 0x6e, 0x6f, 0x71, 0x72, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x72, 0x70, 0x6e, 0x6d,\n    0x70, 0x73, 0x79, 0x7e, 0x82, 0x84, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84,\n    0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x84, 0x85, 0x86, 0x86, 0x85, 0x84, 0x83,\n    0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x83, 0x82, 0x82, 0x83, 0x84, 0x84,\n    0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x77, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79,\n    0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77,\n    0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77,\n    0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79,\n    0x77, 0x77, 0x77, 0x79, 0x7c, 0x80, 0x84, 0x87, 0x86, 0x87, 0x87, 0x87, 0x85, 0x81, 0x7e, 0x7c,\n    0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77,\n    0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76,\n    0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x76, 0x77, 0x78, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7a, 0x7a, 0x79, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x80, 0x88, 0x8f, 0x95, 0x97, 0x97, 0x97,\n    0x97, 0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9c, 0x9d, 0x9c, 0x9c, 0x9b, 0x9b, 0x9b, 0x9a, 0x9a, 0x9a,\n    0x98, 0x98, 0x97, 0x96, 0x95, 0x94, 0x94, 0x93, 0x91, 0x92, 0x92, 0x93, 0x94, 0x95, 0x96, 0x96,\n    0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96,\n    0x96, 0x95, 0x94, 0x93, 0x94, 0x96, 0x99, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b,\n    0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x99, 0x9a, 0x99, 0x91, 0x84, 0x78, 0x70, 0x6d,\n    0x72, 0x71, 0x71, 0x70, 0x71, 0x72, 0x73, 0x74, 0x7b, 0x7f, 0x84, 0x89, 0x8c, 0x8b, 0x89, 0x88,\n    0x88, 0x84, 0x7d, 0x76, 0x72, 0x71, 0x72, 0x73, 0x71, 0x72, 0x74, 0x75, 0x74, 0x72, 0x6f, 0x6e,\n    0x6d, 0x6d, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x71, 0x6f, 0x6d, 0x6c,\n    0x6f, 0x73, 0x78, 0x7e, 0x82, 0x83, 0x83, 0x82, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84,\n    0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x84, 0x85, 0x86, 0x86, 0x85, 0x84, 0x83,\n    0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x83, 0x82, 0x82, 0x83, 0x84, 0x84,\n    0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76,\n    0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x78, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77,\n    0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7a, 0x78, 0x78, 0x77, 0x77, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7a,\n    0x77, 0x77, 0x77, 0x79, 0x7c, 0x80, 0x84, 0x87, 0x86, 0x86, 0x87, 0x86, 0x84, 0x81, 0x7e, 0x7b,\n    0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74, 0x74, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77,\n    0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76,\n    0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x74, 0x75, 0x77, 0x78, 0x79, 0x79, 0x79, 0x79,\n    0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x77, 0x7c, 0x85, 0x8d, 0x94, 0x96, 0x97, 0x96,\n    0x97, 0x97, 0x98, 0x99, 0x9a, 0x9b, 0x9b, 0x9c, 0x9a, 0x9a, 0x9a, 0x9a, 0x99, 0x99, 0x99, 0x99,\n    0x98, 0x97, 0x96, 0x95, 0x94, 0x93, 0x92, 0x92, 0x91, 0x92, 0x92, 0x93, 0x93, 0x94, 0x95, 0x95,\n    0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x93, 0x93, 0x94, 0x94, 0x95, 0x96, 0x96, 0x97,\n    0x96, 0x95, 0x93, 0x92, 0x92, 0x94, 0x97, 0x98, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b,\n    0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x98, 0x9b, 0x99, 0x90, 0x82, 0x75, 0x6f, 0x6d,\n    0x72, 0x71, 0x71, 0x70, 0x71, 0x72, 0x73, 0x74, 0x79, 0x7d, 0x83, 0x89, 0x8c, 0x8b, 0x89, 0x87,\n    0x85, 0x81, 0x7b, 0x75, 0x72, 0x71, 0x72, 0x74, 0x70, 0x72, 0x73, 0x74, 0x73, 0x72, 0x6f, 0x6e,\n    0x6d, 0x6d, 0x6d, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x71, 0x71, 0x71, 0x71, 0x70, 0x6e, 0x6d, 0x6c,\n    0x6f, 0x73, 0x78, 0x7e, 0x81, 0x83, 0x83, 0x82, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84,\n    0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x84, 0x85, 0x86, 0x86, 0x85, 0x84, 0x83,\n    0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x84, 0x84, 0x83, 0x82, 0x82, 0x83, 0x84, 0x84,\n    0x7d, 0x7c, 0x7c, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76,\n    0x75, 0x76, 0x76, 0x77, 0x77, 0x78, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78,\n    0x79, 0x7a, 0x7a, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x77, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7a,\n    0x77, 0x77, 0x77, 0x79, 0x7c, 0x80, 0x84, 0x87, 0x86, 0x86, 0x87, 0x86, 0x84, 0x81, 0x7d, 0x7b,\n    0x76, 0x76, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77,\n    0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76,\n    0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x76, 0x74, 0x75, 0x76, 0x78, 0x78, 0x78, 0x78, 0x78,\n    0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x74, 0x7a, 0x83, 0x8c, 0x93, 0x96, 0x96, 0x96,\n    0x96, 0x96, 0x97, 0x98, 0x99, 0x9a, 0x9b, 0x9b, 0x99, 0x99, 0x99, 0x99, 0x98, 0x98, 0x98, 0x98,\n    0x97, 0x97, 0x96, 0x95, 0x94, 0x92, 0x92, 0x91, 0x92, 0x92, 0x92, 0x93, 0x93, 0x93, 0x94, 0x94,\n    0x94, 0x94, 0x94, 0x93, 0x93, 0x93, 0x93, 0x93, 0x91, 0x91, 0x92, 0x93, 0x95, 0x96, 0x97, 0x97,\n    0x97, 0x95, 0x93, 0x91, 0x91, 0x93, 0x95, 0x97, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b,\n    0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x98, 0x9b, 0x9a, 0x90, 0x80, 0x73, 0x6e, 0x6d,\n    0x72, 0x71, 0x70, 0x70, 0x70, 0x71, 0x73, 0x73, 0x78, 0x7c, 0x83, 0x89, 0x8c, 0x8b, 0x89, 0x87,\n    0x84, 0x80, 0x7a, 0x74, 0x71, 0x71, 0x73, 0x74, 0x70, 0x71, 0x73, 0x74, 0x73, 0x71, 0x6f, 0x6e,\n    0x6c, 0x6c, 0x6d, 0x6d, 0x6e, 0x70, 0x71, 0x72, 0x70, 0x71, 0x71, 0x71, 0x70, 0x6e, 0x6c, 0x6b,\n    0x6f, 0x72, 0x78, 0x7e, 0x81, 0x83, 0x83, 0x82, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84,\n    0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x84, 0x85, 0x86, 0x86, 0x85, 0x84, 0x83,\n    0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x84, 0x84, 0x83, 0x82, 0x82, 0x83, 0x84, 0x84,\n    0x78, 0x79, 0x79, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x77, 0x77,\n    0x78, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x76, 0x77, 0x77,\n    0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7a,\n    0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x77, 0x77, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79,\n    0x76, 0x77, 0x78, 0x7a, 0x7d, 0x81, 0x85, 0x88, 0x85, 0x86, 0x86, 0x86, 0x83, 0x80, 0x7d, 0x7b,\n    0x75, 0x76, 0x76, 0x76, 0x76, 0x75, 0x74, 0x74, 0x76, 0x76, 0x76, 0x77, 0x78, 0x78, 0x79, 0x79,\n    0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x77, 0x77,\n    0x76, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75,\n    0x75, 0x75, 0x76, 0x77, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x80, 0x88, 0x91, 0x96, 0x96, 0x94,\n    0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x9b, 0x9b, 0x9a, 0x99, 0x98, 0x98, 0x97, 0x97,\n    0x98, 0x97, 0x96, 0x94, 0x93, 0x93, 0x94, 0x94, 0x93, 0x93, 0x93, 0x94, 0x94, 0x95, 0x95, 0x95,\n    0x94, 0x95, 0x96, 0x96, 0x96, 0x95, 0x94, 0x93, 0x90, 0x90, 0x90, 0x91, 0x92, 0x92, 0x93, 0x93,\n    0x92, 0x91, 0x91, 0x90, 0x91, 0x92, 0x94, 0x94, 0x99, 0x99, 0x99, 0x99, 0x9a, 0x9a, 0x9a, 0x9a,\n    0x9d, 0x9e, 0x9e, 0x9e, 0x9d, 0x9c, 0x9b, 0x9a, 0x9a, 0x98, 0x93, 0x89, 0x7d, 0x74, 0x71, 0x70,\n    0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x71, 0x71, 0x72, 0x7a, 0x7d, 0x82, 0x88, 0x8b, 0x8c, 0x8c, 0x8b,\n    0x80, 0x7a, 0x73, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x71,\n    0x70, 0x6f, 0x6d, 0x6c, 0x6b, 0x6c, 0x6e, 0x6f, 0x6e, 0x70, 0x72, 0x73, 0x72, 0x70, 0x6d, 0x6b,\n    0x6c, 0x73, 0x7b, 0x81, 0x82, 0x82, 0x83, 0x84, 0x82, 0x82, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84,\n    0x83, 0x83, 0x83, 0x82, 0x82, 0x82, 0x82, 0x81, 0x83, 0x84, 0x85, 0x86, 0x86, 0x85, 0x84, 0x83,\n    0x84, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x81, 0x81, 0x82, 0x83, 0x84, 0x84, 0x85, 0x85,\n    0x78, 0x79, 0x79, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x77, 0x77,\n    0x77, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x79, 0x78, 0x77, 0x76, 0x76, 0x76, 0x76, 0x77,\n    0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7a,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x79, 0x79,\n    0x76, 0x77, 0x78, 0x7a, 0x7e, 0x82, 0x85, 0x88, 0x86, 0x86, 0x87, 0x86, 0x84, 0x81, 0x7d, 0x7b,\n    0x76, 0x77, 0x77, 0x77, 0x76, 0x76, 0x75, 0x75, 0x76, 0x76, 0x76, 0x77, 0x78, 0x78, 0x79, 0x79,\n    0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x77, 0x77,\n    0x76, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75,\n    0x74, 0x75, 0x75, 0x76, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x80, 0x88, 0x91, 0x96, 0x96, 0x94,\n    0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x9b, 0x9a, 0x9a, 0x99, 0x98, 0x97, 0x97, 0x96,\n    0x97, 0x97, 0x95, 0x94, 0x94, 0x94, 0x94, 0x95, 0x92, 0x92, 0x92, 0x92, 0x92, 0x93, 0x93, 0x93,\n    0x93, 0x94, 0x94, 0x95, 0x95, 0x94, 0x93, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92,\n    0x92, 0x91, 0x91, 0x91, 0x91, 0x92, 0x94, 0x94, 0x97, 0x98, 0x98, 0x99, 0x9a, 0x9a, 0x9b, 0x9b,\n    0x9d, 0x9d, 0x9e, 0x9e, 0x9d, 0x9c, 0x9a, 0x99, 0x99, 0x98, 0x92, 0x88, 0x7c, 0x74, 0x71, 0x71,\n    0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x71, 0x72, 0x7c, 0x7f, 0x84, 0x88, 0x8b, 0x8c, 0x8b, 0x8a,\n    0x80, 0x7a, 0x72, 0x6e, 0x6f, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70,\n    0x70, 0x6f, 0x6d, 0x6c, 0x6c, 0x6d, 0x6e, 0x6f, 0x6f, 0x70, 0x72, 0x73, 0x72, 0x70, 0x6d, 0x6b,\n    0x6c, 0x73, 0x7b, 0x81, 0x82, 0x82, 0x83, 0x84, 0x82, 0x82, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84,\n    0x83, 0x83, 0x83, 0x83, 0x82, 0x82, 0x82, 0x82, 0x83, 0x84, 0x85, 0x86, 0x86, 0x85, 0x84, 0x83,\n    0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x81, 0x81, 0x82, 0x83, 0x84, 0x84, 0x85, 0x85,\n    0x78, 0x79, 0x79, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78,\n    0x77, 0x77, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x78, 0x77, 0x76, 0x75, 0x75, 0x75, 0x76, 0x77,\n    0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x77, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x79,\n    0x76, 0x77, 0x78, 0x7b, 0x7e, 0x82, 0x85, 0x87, 0x86, 0x87, 0x87, 0x87, 0x85, 0x81, 0x7e, 0x7c,\n    0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x77, 0x78, 0x78, 0x79, 0x79,\n    0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x77, 0x77,\n    0x76, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75,\n    0x74, 0x74, 0x74, 0x75, 0x76, 0x76, 0x77, 0x77, 0x7a, 0x7b, 0x80, 0x88, 0x91, 0x96, 0x97, 0x95,\n    0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x9a, 0x9a, 0x99, 0x98, 0x98, 0x97, 0x97, 0x96,\n    0x97, 0x96, 0x95, 0x94, 0x94, 0x95, 0x96, 0x96, 0x92, 0x92, 0x92, 0x92, 0x91, 0x91, 0x91, 0x91,\n    0x93, 0x93, 0x94, 0x95, 0x95, 0x94, 0x94, 0x93, 0x95, 0x95, 0x94, 0x94, 0x93, 0x93, 0x92, 0x92,\n    0x93, 0x92, 0x91, 0x91, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97, 0x98, 0x99, 0x9b, 0x9c, 0x9c,\n    0x9c, 0x9d, 0x9d, 0x9d, 0x9d, 0x9b, 0x9a, 0x99, 0x99, 0x96, 0x90, 0x86, 0x7a, 0x73, 0x71, 0x72,\n    0x6f, 0x6f, 0x6e, 0x6e, 0x6f, 0x70, 0x72, 0x73, 0x7f, 0x81, 0x85, 0x89, 0x8b, 0x8a, 0x89, 0x87,\n    0x7e, 0x78, 0x71, 0x6e, 0x6e, 0x70, 0x71, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f,\n    0x6f, 0x6f, 0x6e, 0x6d, 0x6d, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x72, 0x72, 0x72, 0x70, 0x6d, 0x6c,\n    0x6d, 0x74, 0x7c, 0x81, 0x82, 0x82, 0x83, 0x84, 0x82, 0x82, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84,\n    0x83, 0x83, 0x83, 0x83, 0x82, 0x82, 0x82, 0x82, 0x83, 0x84, 0x85, 0x85, 0x85, 0x85, 0x84, 0x83,\n    0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x81, 0x82, 0x82, 0x83, 0x83, 0x84, 0x85, 0x85,\n    0x78, 0x79, 0x79, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78,\n    0x77, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7a, 0x77, 0x77, 0x76, 0x75, 0x75, 0x75, 0x76, 0x77,\n    0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78,\n    0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78,\n    0x76, 0x77, 0x79, 0x7c, 0x7f, 0x83, 0x85, 0x87, 0x87, 0x87, 0x88, 0x87, 0x85, 0x82, 0x7e, 0x7c,\n    0x7a, 0x79, 0x78, 0x78, 0x77, 0x77, 0x78, 0x78, 0x76, 0x76, 0x76, 0x77, 0x78, 0x78, 0x79, 0x79,\n    0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x77, 0x77,\n    0x76, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75,\n    0x73, 0x73, 0x74, 0x74, 0x75, 0x75, 0x75, 0x76, 0x7a, 0x7a, 0x7e, 0x86, 0x8f, 0x96, 0x97, 0x96,\n    0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x99, 0x98, 0x98, 0x98, 0x97, 0x97, 0x96, 0x96,\n    0x96, 0x95, 0x94, 0x94, 0x94, 0x95, 0x96, 0x97, 0x95, 0x95, 0x94, 0x94, 0x93, 0x93, 0x93, 0x92,\n    0x96, 0x96, 0x97, 0x98, 0x99, 0x98, 0x97, 0x97, 0x99, 0x98, 0x97, 0x96, 0x95, 0x94, 0x93, 0x92,\n    0x93, 0x93, 0x92, 0x91, 0x91, 0x92, 0x93, 0x94, 0x94, 0x94, 0x96, 0x97, 0x99, 0x9b, 0x9c, 0x9c,\n    0x9c, 0x9c, 0x9d, 0x9d, 0x9c, 0x9b, 0x99, 0x98, 0x98, 0x95, 0x8e, 0x83, 0x78, 0x72, 0x71, 0x73,\n    0x70, 0x6f, 0x6e, 0x6e, 0x6e, 0x70, 0x73, 0x74, 0x82, 0x84, 0x87, 0x8a, 0x8a, 0x89, 0x87, 0x85,\n    0x7d, 0x77, 0x70, 0x6d, 0x6e, 0x70, 0x71, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e,\n    0x6f, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x71, 0x72, 0x72, 0x71, 0x70, 0x6e, 0x6d,\n    0x6e, 0x74, 0x7d, 0x81, 0x82, 0x82, 0x83, 0x84, 0x82, 0x82, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84,\n    0x84, 0x84, 0x83, 0x83, 0x83, 0x82, 0x82, 0x82, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84,\n    0x86, 0x85, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x82, 0x82, 0x82, 0x83, 0x83, 0x84, 0x84, 0x84,\n    0x78, 0x79, 0x79, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79,\n    0x77, 0x77, 0x77, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x77, 0x76, 0x76, 0x75, 0x75, 0x76, 0x77, 0x78,\n    0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77,\n    0x78, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78,\n    0x75, 0x77, 0x7a, 0x7d, 0x80, 0x83, 0x85, 0x87, 0x86, 0x87, 0x87, 0x87, 0x85, 0x81, 0x7e, 0x7c,\n    0x7b, 0x7a, 0x78, 0x77, 0x77, 0x77, 0x78, 0x79, 0x76, 0x76, 0x76, 0x77, 0x78, 0x78, 0x79, 0x79,\n    0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x77, 0x77,\n    0x76, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75,\n    0x73, 0x74, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x78, 0x79, 0x7c, 0x84, 0x8d, 0x94, 0x96, 0x96,\n    0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x97, 0x97, 0x97, 0x97, 0x97, 0x96, 0x96, 0x96,\n    0x95, 0x95, 0x94, 0x93, 0x93, 0x93, 0x94, 0x95, 0x97, 0x97, 0x97, 0x97, 0x97, 0x96, 0x96, 0x96,\n    0x99, 0x9a, 0x9c, 0x9d, 0x9d, 0x9d, 0x9c, 0x9c, 0x9b, 0x9b, 0x9a, 0x98, 0x97, 0x95, 0x94, 0x94,\n    0x94, 0x94, 0x93, 0x92, 0x92, 0x92, 0x93, 0x94, 0x93, 0x94, 0x95, 0x96, 0x98, 0x9a, 0x9b, 0x9c,\n    0x9b, 0x9c, 0x9c, 0x9c, 0x9b, 0x9a, 0x99, 0x98, 0x97, 0x93, 0x8b, 0x80, 0x75, 0x70, 0x71, 0x74,\n    0x71, 0x70, 0x6e, 0x6e, 0x6f, 0x72, 0x75, 0x77, 0x84, 0x86, 0x88, 0x8a, 0x8a, 0x88, 0x86, 0x84,\n    0x7b, 0x75, 0x6f, 0x6c, 0x6d, 0x70, 0x71, 0x71, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e,\n    0x6e, 0x6e, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x70, 0x71, 0x72, 0x72, 0x72, 0x71, 0x70, 0x6f, 0x6e,\n    0x6f, 0x75, 0x7d, 0x82, 0x83, 0x82, 0x82, 0x84, 0x82, 0x82, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84,\n    0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x83, 0x82, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85,\n    0x86, 0x86, 0x86, 0x85, 0x85, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x84, 0x84,\n    0x78, 0x79, 0x79, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79,\n    0x76, 0x77, 0x77, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x78, 0x77, 0x76, 0x76, 0x76, 0x77, 0x78, 0x79,\n    0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x75,\n    0x76, 0x77, 0x77, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x78,\n    0x75, 0x77, 0x7a, 0x7e, 0x81, 0x84, 0x86, 0x86, 0x85, 0x86, 0x86, 0x86, 0x84, 0x80, 0x7d, 0x7b,\n    0x7b, 0x7a, 0x78, 0x76, 0x76, 0x77, 0x78, 0x7a, 0x76, 0x76, 0x76, 0x77, 0x78, 0x78, 0x79, 0x79,\n    0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x77, 0x77,\n    0x76, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75,\n    0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x77, 0x77, 0x7a, 0x81, 0x8b, 0x92, 0x95, 0x95,\n    0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96,\n    0x95, 0x94, 0x93, 0x92, 0x91, 0x91, 0x91, 0x92, 0x96, 0x97, 0x97, 0x97, 0x98, 0x98, 0x98, 0x98,\n    0x9b, 0x9c, 0x9d, 0x9f, 0x9f, 0x9f, 0x9f, 0x9e, 0x9d, 0x9c, 0x9b, 0x9a, 0x99, 0x98, 0x97, 0x96,\n    0x95, 0x94, 0x93, 0x92, 0x92, 0x92, 0x93, 0x94, 0x93, 0x94, 0x95, 0x96, 0x97, 0x99, 0x9a, 0x9a,\n    0x9a, 0x9b, 0x9b, 0x9b, 0x9b, 0x99, 0x98, 0x97, 0x96, 0x91, 0x89, 0x7d, 0x73, 0x6f, 0x71, 0x75,\n    0x72, 0x71, 0x6f, 0x6f, 0x70, 0x73, 0x77, 0x79, 0x85, 0x86, 0x89, 0x8b, 0x8b, 0x88, 0x85, 0x83,\n    0x79, 0x74, 0x6d, 0x6b, 0x6d, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x6e, 0x6e,\n    0x6d, 0x6e, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x71, 0x71, 0x70, 0x6f, 0x6f,\n    0x6f, 0x76, 0x7e, 0x82, 0x83, 0x82, 0x82, 0x83, 0x82, 0x82, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84,\n    0x84, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x83, 0x85, 0x85, 0x84, 0x83, 0x83, 0x84, 0x85, 0x85,\n    0x87, 0x86, 0x86, 0x85, 0x85, 0x84, 0x84, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83,\n    0x78, 0x79, 0x79, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x77, 0x77, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7a,\n    0x76, 0x76, 0x77, 0x77, 0x78, 0x79, 0x79, 0x79, 0x78, 0x78, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x7b,\n    0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75,\n    0x74, 0x75, 0x75, 0x76, 0x77, 0x78, 0x78, 0x79, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77,\n    0x75, 0x77, 0x7b, 0x7f, 0x82, 0x84, 0x86, 0x86, 0x84, 0x85, 0x85, 0x85, 0x83, 0x7f, 0x7c, 0x7a,\n    0x7b, 0x79, 0x77, 0x75, 0x75, 0x76, 0x78, 0x79, 0x76, 0x76, 0x76, 0x77, 0x78, 0x78, 0x79, 0x79,\n    0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x77, 0x77,\n    0x76, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75,\n    0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x77, 0x7f, 0x89, 0x90, 0x94, 0x94,\n    0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x96, 0x96,\n    0x96, 0x94, 0x92, 0x90, 0x8f, 0x8e, 0x8e, 0x8e, 0x92, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97, 0x98,\n    0x99, 0x9a, 0x9b, 0x9d, 0x9e, 0x9e, 0x9d, 0x9d, 0x9d, 0x9d, 0x9c, 0x9b, 0x9a, 0x9a, 0x99, 0x99,\n    0x96, 0x95, 0x94, 0x93, 0x92, 0x92, 0x93, 0x93, 0x94, 0x95, 0x95, 0x96, 0x97, 0x97, 0x98, 0x98,\n    0x9a, 0x9a, 0x9b, 0x9b, 0x9a, 0x99, 0x97, 0x97, 0x95, 0x90, 0x87, 0x7b, 0x71, 0x6e, 0x72, 0x76,\n    0x74, 0x73, 0x71, 0x70, 0x71, 0x75, 0x79, 0x7c, 0x84, 0x86, 0x89, 0x8b, 0x8b, 0x89, 0x86, 0x84,\n    0x78, 0x72, 0x6c, 0x6a, 0x6d, 0x70, 0x72, 0x72, 0x73, 0x73, 0x72, 0x71, 0x71, 0x70, 0x6f, 0x6f,\n    0x6d, 0x6e, 0x70, 0x72, 0x73, 0x72, 0x72, 0x71, 0x73, 0x73, 0x72, 0x71, 0x70, 0x70, 0x70, 0x70,\n    0x70, 0x76, 0x7e, 0x83, 0x83, 0x82, 0x82, 0x83, 0x82, 0x82, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84,\n    0x85, 0x85, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x86, 0x85, 0x84, 0x83, 0x83, 0x84, 0x85, 0x86,\n    0x87, 0x87, 0x86, 0x85, 0x85, 0x84, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83,\n    0x78, 0x79, 0x79, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x77, 0x77, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7a,\n    0x76, 0x76, 0x77, 0x77, 0x78, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x7a, 0x7b, 0x7c,\n    0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x77, 0x77, 0x76, 0x76, 0x75, 0x75, 0x74, 0x74,\n    0x73, 0x74, 0x74, 0x75, 0x76, 0x77, 0x78, 0x78, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77,\n    0x74, 0x77, 0x7b, 0x7f, 0x83, 0x85, 0x86, 0x86, 0x83, 0x84, 0x84, 0x84, 0x82, 0x7e, 0x7b, 0x79,\n    0x7b, 0x79, 0x76, 0x74, 0x74, 0x75, 0x77, 0x79, 0x76, 0x76, 0x76, 0x77, 0x78, 0x78, 0x79, 0x79,\n    0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x77, 0x77,\n    0x76, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75,\n    0x76, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74, 0x73, 0x76, 0x7d, 0x87, 0x8f, 0x93, 0x93,\n    0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96,\n    0x96, 0x94, 0x92, 0x8f, 0x8d, 0x8c, 0x8c, 0x8c, 0x8e, 0x8e, 0x8f, 0x91, 0x92, 0x94, 0x95, 0x96,\n    0x96, 0x97, 0x99, 0x9a, 0x9b, 0x9b, 0x9b, 0x9b, 0x9d, 0x9d, 0x9c, 0x9c, 0x9b, 0x9b, 0x9b, 0x9a,\n    0x96, 0x95, 0x94, 0x93, 0x92, 0x92, 0x93, 0x93, 0x95, 0x95, 0x96, 0x96, 0x96, 0x96, 0x97, 0x97,\n    0x9a, 0x9a, 0x9b, 0x9b, 0x9a, 0x99, 0x97, 0x96, 0x94, 0x8f, 0x86, 0x7a, 0x70, 0x6e, 0x72, 0x76,\n    0x75, 0x74, 0x71, 0x70, 0x72, 0x76, 0x7a, 0x7d, 0x84, 0x86, 0x89, 0x8b, 0x8b, 0x89, 0x86, 0x84,\n    0x77, 0x72, 0x6c, 0x6a, 0x6d, 0x70, 0x72, 0x72, 0x74, 0x74, 0x73, 0x72, 0x71, 0x70, 0x70, 0x6f,\n    0x6d, 0x6e, 0x70, 0x72, 0x73, 0x73, 0x72, 0x71, 0x74, 0x73, 0x72, 0x71, 0x70, 0x70, 0x70, 0x70,\n    0x70, 0x77, 0x7f, 0x83, 0x83, 0x82, 0x82, 0x83, 0x82, 0x82, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84,\n    0x85, 0x85, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x86, 0x85, 0x84, 0x83, 0x83, 0x84, 0x85, 0x86,\n    0x87, 0x87, 0x86, 0x85, 0x85, 0x84, 0x83, 0x83, 0x84, 0x84, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83,\n    0x75, 0x76, 0x78, 0x79, 0x79, 0x77, 0x76, 0x75, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76,\n    0x75, 0x76, 0x77, 0x79, 0x79, 0x78, 0x76, 0x75, 0x74, 0x75, 0x77, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d,\n    0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7d, 0x78, 0x78, 0x77, 0x76, 0x74, 0x73, 0x72, 0x72,\n    0x77, 0x76, 0x75, 0x74, 0x75, 0x76, 0x78, 0x79, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77,\n    0x74, 0x76, 0x7a, 0x7d, 0x81, 0x83, 0x85, 0x85, 0x85, 0x87, 0x88, 0x85, 0x7f, 0x7a, 0x78, 0x78,\n    0x77, 0x76, 0x76, 0x75, 0x75, 0x76, 0x76, 0x77, 0x76, 0x76, 0x77, 0x77, 0x78, 0x78, 0x79, 0x79,\n    0x79, 0x78, 0x78, 0x78, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x76, 0x77, 0x77, 0x77, 0x76, 0x75,\n    0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x77, 0x78, 0x79, 0x79, 0x78, 0x77, 0x76,\n    0x75, 0x75, 0x76, 0x77, 0x77, 0x76, 0x75, 0x75, 0x74, 0x76, 0x78, 0x7a, 0x7d, 0x85, 0x90, 0x98,\n    0x95, 0x95, 0x94, 0x94, 0x95, 0x95, 0x96, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x94, 0x94,\n    0x94, 0x93, 0x93, 0x91, 0x8f, 0x8d, 0x8b, 0x8a, 0x8a, 0x8c, 0x8e, 0x91, 0x93, 0x94, 0x95, 0x95,\n    0x8f, 0x90, 0x91, 0x92, 0x94, 0x96, 0x97, 0x97, 0x9b, 0x9b, 0x9a, 0x99, 0x98, 0x97, 0x97, 0x96,\n    0x97, 0x96, 0x95, 0x95, 0x94, 0x93, 0x92, 0x92, 0x94, 0x95, 0x95, 0x96, 0x97, 0x98, 0x99, 0x99,\n    0x9d, 0x99, 0x96, 0x96, 0x98, 0x99, 0x97, 0x94, 0x93, 0x89, 0x7d, 0x75, 0x72, 0x74, 0x75, 0x75,\n    0x72, 0x74, 0x75, 0x75, 0x76, 0x7a, 0x81, 0x87, 0x89, 0x88, 0x87, 0x89, 0x8b, 0x8b, 0x86, 0x82,\n    0x74, 0x73, 0x71, 0x6f, 0x6e, 0x6f, 0x70, 0x71, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71,\n    0x70, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6e, 0x6e, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70,\n    0x74, 0x7a, 0x80, 0x83, 0x82, 0x81, 0x82, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84,\n    0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x83, 0x84, 0x85, 0x85, 0x85, 0x85, 0x84, 0x83,\n    0x84, 0x85, 0x85, 0x85, 0x85, 0x83, 0x82, 0x81, 0x84, 0x84, 0x84, 0x85, 0x86, 0x86, 0x86, 0x87,\n    0x75, 0x76, 0x77, 0x78, 0x78, 0x77, 0x75, 0x74, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76,\n    0x74, 0x75, 0x77, 0x78, 0x78, 0x77, 0x76, 0x75, 0x75, 0x77, 0x79, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d,\n    0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x75, 0x75,\n    0x77, 0x76, 0x75, 0x74, 0x75, 0x76, 0x78, 0x79, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77,\n    0x75, 0x77, 0x7a, 0x7e, 0x81, 0x84, 0x85, 0x85, 0x85, 0x87, 0x88, 0x85, 0x7f, 0x79, 0x78, 0x78,\n    0x77, 0x76, 0x76, 0x75, 0x75, 0x76, 0x76, 0x77, 0x76, 0x76, 0x76, 0x77, 0x77, 0x78, 0x78, 0x78,\n    0x78, 0x78, 0x78, 0x77, 0x77, 0x76, 0x76, 0x76, 0x74, 0x75, 0x76, 0x77, 0x77, 0x77, 0x76, 0x75,\n    0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x77, 0x78, 0x78, 0x78, 0x78, 0x77, 0x76,\n    0x75, 0x76, 0x77, 0x77, 0x77, 0x77, 0x76, 0x75, 0x74, 0x76, 0x78, 0x79, 0x7c, 0x84, 0x8e, 0x95,\n    0x95, 0x95, 0x95, 0x94, 0x94, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x94,\n    0x93, 0x93, 0x92, 0x92, 0x91, 0x90, 0x8f, 0x8e, 0x8d, 0x8e, 0x90, 0x92, 0x93, 0x94, 0x94, 0x93,\n    0x8f, 0x8f, 0x90, 0x90, 0x91, 0x92, 0x92, 0x93, 0x93, 0x93, 0x92, 0x92, 0x91, 0x90, 0x90, 0x90,\n    0x94, 0x94, 0x94, 0x94, 0x93, 0x93, 0x92, 0x92, 0x94, 0x94, 0x95, 0x96, 0x97, 0x98, 0x99, 0x99,\n    0x9c, 0x99, 0x96, 0x96, 0x98, 0x98, 0x96, 0x94, 0x91, 0x88, 0x7c, 0x75, 0x73, 0x74, 0x75, 0x75,\n    0x73, 0x75, 0x76, 0x76, 0x76, 0x7a, 0x81, 0x87, 0x89, 0x87, 0x87, 0x89, 0x8c, 0x8b, 0x87, 0x83,\n    0x76, 0x74, 0x71, 0x6f, 0x6e, 0x6e, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x72,\n    0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70,\n    0x75, 0x7a, 0x80, 0x83, 0x82, 0x81, 0x82, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84,\n    0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x83, 0x84, 0x85, 0x85, 0x85, 0x85, 0x84, 0x83,\n    0x84, 0x85, 0x85, 0x85, 0x85, 0x83, 0x82, 0x81, 0x84, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x86,\n    0x76, 0x76, 0x77, 0x77, 0x76, 0x76, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75,\n    0x74, 0x74, 0x76, 0x76, 0x77, 0x77, 0x76, 0x76, 0x78, 0x79, 0x7b, 0x7c, 0x7d, 0x7e, 0x7d, 0x7d,\n    0x79, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x77,\n    0x76, 0x76, 0x75, 0x75, 0x75, 0x76, 0x77, 0x78, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77,\n    0x76, 0x78, 0x7b, 0x7f, 0x82, 0x84, 0x85, 0x86, 0x85, 0x87, 0x88, 0x84, 0x7e, 0x79, 0x78, 0x78,\n    0x77, 0x76, 0x76, 0x75, 0x75, 0x76, 0x76, 0x77, 0x75, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77,\n    0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x74, 0x75, 0x76, 0x77, 0x77, 0x77, 0x76, 0x76,\n    0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x77, 0x78, 0x78, 0x78, 0x78, 0x77, 0x76,\n    0x76, 0x77, 0x77, 0x78, 0x78, 0x77, 0x77, 0x76, 0x73, 0x75, 0x77, 0x78, 0x7a, 0x81, 0x8a, 0x91,\n    0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x93, 0x93, 0x93, 0x93,\n    0x92, 0x92, 0x92, 0x93, 0x93, 0x94, 0x95, 0x95, 0x93, 0x93, 0x94, 0x95, 0x95, 0x95, 0x94, 0x93,\n    0x91, 0x91, 0x90, 0x90, 0x8f, 0x8f, 0x8e, 0x8e, 0x8c, 0x8c, 0x8b, 0x8b, 0x8a, 0x8a, 0x8a, 0x8a,\n    0x91, 0x91, 0x92, 0x92, 0x92, 0x93, 0x93, 0x93, 0x94, 0x94, 0x95, 0x96, 0x97, 0x98, 0x99, 0x99,\n    0x9b, 0x98, 0x96, 0x96, 0x98, 0x98, 0x95, 0x92, 0x8d, 0x85, 0x7b, 0x75, 0x73, 0x74, 0x75, 0x75,\n    0x75, 0x77, 0x78, 0x77, 0x77, 0x7a, 0x80, 0x86, 0x88, 0x87, 0x87, 0x89, 0x8c, 0x8b, 0x87, 0x84,\n    0x78, 0x76, 0x73, 0x70, 0x6e, 0x6e, 0x6f, 0x6f, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72,\n    0x71, 0x71, 0x72, 0x72, 0x73, 0x73, 0x74, 0x74, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x70,\n    0x75, 0x7a, 0x80, 0x83, 0x83, 0x81, 0x82, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84,\n    0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x83, 0x84, 0x85, 0x86, 0x86, 0x85, 0x84, 0x83,\n    0x84, 0x85, 0x85, 0x85, 0x85, 0x83, 0x82, 0x81, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x86, 0x86,\n    0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x74, 0x73, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75,\n    0x73, 0x74, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x7b, 0x7c, 0x7d, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d,\n    0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x78, 0x77, 0x77,\n    0x76, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78,\n    0x78, 0x79, 0x7c, 0x80, 0x83, 0x85, 0x86, 0x86, 0x86, 0x87, 0x87, 0x83, 0x7d, 0x78, 0x78, 0x79,\n    0x77, 0x76, 0x76, 0x75, 0x75, 0x76, 0x76, 0x77, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76,\n    0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x76, 0x74, 0x75, 0x76, 0x78, 0x78, 0x78, 0x77, 0x77,\n    0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x78, 0x79, 0x79, 0x78, 0x77, 0x77,\n    0x77, 0x77, 0x78, 0x79, 0x79, 0x78, 0x77, 0x77, 0x73, 0x75, 0x77, 0x77, 0x79, 0x7e, 0x85, 0x8c,\n    0x94, 0x94, 0x94, 0x95, 0x94, 0x94, 0x93, 0x92, 0x94, 0x94, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92,\n    0x91, 0x91, 0x92, 0x93, 0x95, 0x97, 0x99, 0x9a, 0x9b, 0x9b, 0x9c, 0x9c, 0x9b, 0x9a, 0x98, 0x97,\n    0x97, 0x96, 0x95, 0x94, 0x92, 0x90, 0x8f, 0x8f, 0x8c, 0x8c, 0x8c, 0x8c, 0x8b, 0x8b, 0x8a, 0x8a,\n    0x8f, 0x8f, 0x90, 0x91, 0x92, 0x92, 0x93, 0x94, 0x93, 0x94, 0x95, 0x96, 0x97, 0x98, 0x98, 0x99,\n    0x9a, 0x98, 0x95, 0x96, 0x97, 0x97, 0x93, 0x90, 0x89, 0x82, 0x7a, 0x75, 0x74, 0x75, 0x75, 0x75,\n    0x77, 0x79, 0x79, 0x78, 0x77, 0x7a, 0x80, 0x86, 0x88, 0x87, 0x87, 0x89, 0x8c, 0x8b, 0x87, 0x84,\n    0x79, 0x77, 0x74, 0x71, 0x6f, 0x6e, 0x6e, 0x6f, 0x71, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73,\n    0x73, 0x73, 0x73, 0x73, 0x74, 0x76, 0x77, 0x78, 0x74, 0x73, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71,\n    0x75, 0x7a, 0x81, 0x84, 0x83, 0x82, 0x82, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84,\n    0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x85, 0x86, 0x86, 0x85, 0x84, 0x84,\n    0x84, 0x85, 0x85, 0x85, 0x85, 0x83, 0x82, 0x81, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85,\n    0x78, 0x78, 0x77, 0x76, 0x75, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75,\n    0x74, 0x74, 0x74, 0x75, 0x76, 0x77, 0x78, 0x78, 0x7d, 0x7e, 0x7f, 0x7f, 0x7f, 0x7e, 0x7d, 0x7c,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x78, 0x78, 0x77, 0x77, 0x76, 0x76, 0x75, 0x75,\n    0x76, 0x76, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78,\n    0x79, 0x7b, 0x7e, 0x81, 0x84, 0x85, 0x86, 0x87, 0x86, 0x87, 0x86, 0x82, 0x7c, 0x78, 0x78, 0x79,\n    0x77, 0x76, 0x76, 0x75, 0x75, 0x76, 0x76, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76,\n    0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x75, 0x76, 0x77, 0x79, 0x7a, 0x7a, 0x79, 0x79,\n    0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x78,\n    0x78, 0x79, 0x79, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x74, 0x76, 0x77, 0x77, 0x77, 0x7b, 0x81, 0x87,\n    0x91, 0x92, 0x93, 0x94, 0x95, 0x94, 0x93, 0x92, 0x94, 0x94, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92,\n    0x91, 0x91, 0x91, 0x93, 0x95, 0x98, 0x9b, 0x9d, 0xa2, 0xa2, 0xa3, 0xa3, 0xa2, 0xa1, 0x9f, 0x9e,\n    0x9e, 0x9d, 0x9c, 0x9a, 0x98, 0x97, 0x95, 0x95, 0x94, 0x94, 0x93, 0x93, 0x92, 0x91, 0x90, 0x90,\n    0x8e, 0x8e, 0x8f, 0x90, 0x91, 0x92, 0x93, 0x94, 0x93, 0x93, 0x94, 0x95, 0x96, 0x97, 0x98, 0x98,\n    0x99, 0x97, 0x95, 0x96, 0x97, 0x96, 0x91, 0x8d, 0x84, 0x7f, 0x78, 0x75, 0x75, 0x76, 0x76, 0x75,\n    0x78, 0x7a, 0x7a, 0x79, 0x78, 0x7b, 0x81, 0x87, 0x89, 0x88, 0x87, 0x89, 0x8c, 0x8b, 0x86, 0x82,\n    0x7a, 0x78, 0x75, 0x71, 0x6f, 0x6f, 0x6f, 0x70, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74,\n    0x75, 0x74, 0x74, 0x74, 0x75, 0x77, 0x79, 0x7a, 0x76, 0x75, 0x73, 0x71, 0x71, 0x71, 0x71, 0x72,\n    0x75, 0x7b, 0x81, 0x84, 0x83, 0x82, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84,\n    0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x84, 0x85, 0x86, 0x86, 0x86, 0x86, 0x85, 0x84,\n    0x84, 0x85, 0x85, 0x85, 0x85, 0x83, 0x82, 0x81, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84,\n    0x7a, 0x79, 0x78, 0x76, 0x75, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76,\n    0x75, 0x75, 0x75, 0x75, 0x76, 0x78, 0x79, 0x7a, 0x7f, 0x7f, 0x80, 0x7f, 0x7e, 0x7d, 0x7b, 0x7a,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75,\n    0x77, 0x78, 0x79, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78,\n    0x7b, 0x7c, 0x7f, 0x82, 0x84, 0x86, 0x87, 0x87, 0x87, 0x87, 0x86, 0x81, 0x7b, 0x77, 0x77, 0x79,\n    0x77, 0x76, 0x76, 0x75, 0x75, 0x76, 0x76, 0x77, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x76,\n    0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x76, 0x77, 0x79, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a,\n    0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x76, 0x77, 0x79, 0x78, 0x77, 0x79, 0x7e, 0x83,\n    0x8e, 0x8f, 0x92, 0x94, 0x95, 0x95, 0x94, 0x93, 0x94, 0x94, 0x94, 0x94, 0x93, 0x93, 0x93, 0x93,\n    0x91, 0x91, 0x91, 0x91, 0x93, 0x96, 0x99, 0x9b, 0xa3, 0xa4, 0xa5, 0xa6, 0xa6, 0xa5, 0xa4, 0xa4,\n    0xa2, 0xa2, 0xa1, 0xa0, 0x9f, 0x9d, 0x9d, 0x9c, 0x9d, 0x9c, 0x9b, 0x99, 0x97, 0x96, 0x95, 0x94,\n    0x8f, 0x8f, 0x90, 0x91, 0x92, 0x93, 0x93, 0x94, 0x93, 0x93, 0x94, 0x95, 0x96, 0x97, 0x98, 0x98,\n    0x98, 0x96, 0x95, 0x95, 0x96, 0x95, 0x90, 0x8b, 0x80, 0x7b, 0x76, 0x74, 0x76, 0x77, 0x76, 0x74,\n    0x78, 0x7a, 0x7b, 0x7a, 0x7a, 0x7d, 0x83, 0x89, 0x8b, 0x8a, 0x89, 0x8a, 0x8b, 0x8a, 0x85, 0x80,\n    0x7a, 0x78, 0x75, 0x72, 0x70, 0x70, 0x71, 0x71, 0x73, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75,\n    0x77, 0x76, 0x75, 0x74, 0x75, 0x77, 0x79, 0x7a, 0x78, 0x76, 0x74, 0x72, 0x71, 0x71, 0x72, 0x73,\n    0x76, 0x7b, 0x81, 0x84, 0x84, 0x82, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84,\n    0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x84, 0x85, 0x86, 0x87, 0x87, 0x86, 0x85, 0x84,\n    0x84, 0x85, 0x85, 0x85, 0x85, 0x83, 0x82, 0x81, 0x85, 0x85, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83,\n    0x7c, 0x7b, 0x79, 0x77, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77,\n    0x76, 0x76, 0x76, 0x76, 0x77, 0x79, 0x7b, 0x7c, 0x80, 0x80, 0x80, 0x7f, 0x7e, 0x7c, 0x7a, 0x78,\n    0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78,\n    0x78, 0x79, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79,\n    0x7c, 0x7d, 0x80, 0x83, 0x85, 0x87, 0x87, 0x87, 0x87, 0x87, 0x85, 0x80, 0x7a, 0x77, 0x77, 0x7a,\n    0x77, 0x76, 0x76, 0x75, 0x75, 0x76, 0x76, 0x77, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x78, 0x77, 0x77,\n    0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x78, 0x79, 0x7b, 0x7c, 0x7e, 0x7e, 0x7e, 0x7e,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7c,\n    0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b, 0x7a, 0x7a, 0x77, 0x79, 0x7a, 0x79, 0x77, 0x78, 0x7c, 0x80,\n    0x8a, 0x8d, 0x90, 0x94, 0x96, 0x96, 0x95, 0x94, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x94,\n    0x93, 0x91, 0x90, 0x8f, 0x90, 0x93, 0x96, 0x98, 0x9f, 0xa1, 0xa2, 0xa4, 0xa6, 0xa6, 0xa6, 0xa6,\n    0xa2, 0xa2, 0xa2, 0xa2, 0xa2, 0xa2, 0xa1, 0xa1, 0xa0, 0x9f, 0x9d, 0x9a, 0x98, 0x95, 0x94, 0x93,\n    0x91, 0x91, 0x91, 0x92, 0x92, 0x93, 0x93, 0x93, 0x93, 0x93, 0x94, 0x95, 0x96, 0x97, 0x97, 0x98,\n    0x97, 0x95, 0x94, 0x95, 0x96, 0x94, 0x8e, 0x8a, 0x7d, 0x79, 0x75, 0x74, 0x76, 0x78, 0x76, 0x74,\n    0x77, 0x79, 0x7a, 0x7a, 0x7b, 0x7e, 0x85, 0x8b, 0x8e, 0x8c, 0x8a, 0x8a, 0x8b, 0x88, 0x83, 0x7e,\n    0x79, 0x77, 0x74, 0x72, 0x71, 0x71, 0x72, 0x73, 0x74, 0x74, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76,\n    0x79, 0x78, 0x75, 0x74, 0x74, 0x76, 0x78, 0x79, 0x79, 0x77, 0x74, 0x72, 0x70, 0x71, 0x72, 0x73,\n    0x76, 0x7b, 0x82, 0x84, 0x84, 0x83, 0x83, 0x85, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84,\n    0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x87, 0x87, 0x86, 0x85, 0x85,\n    0x84, 0x85, 0x85, 0x85, 0x85, 0x83, 0x82, 0x81, 0x85, 0x85, 0x84, 0x84, 0x83, 0x83, 0x83, 0x82,\n    0x7e, 0x7c, 0x7a, 0x77, 0x76, 0x76, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78,\n    0x77, 0x77, 0x76, 0x76, 0x77, 0x7a, 0x7c, 0x7e, 0x80, 0x80, 0x80, 0x7f, 0x7d, 0x7b, 0x79, 0x77,\n    0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x79, 0x7a, 0x7c, 0x7d, 0x7e, 0x7d, 0x7c, 0x7b, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79,\n    0x7d, 0x7e, 0x81, 0x83, 0x85, 0x87, 0x87, 0x88, 0x87, 0x87, 0x85, 0x80, 0x7a, 0x76, 0x77, 0x7a,\n    0x77, 0x76, 0x76, 0x75, 0x75, 0x76, 0x76, 0x77, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x78,\n    0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x79, 0x7a, 0x7c, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f,\n    0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x7e, 0x7d,\n    0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x78, 0x7a, 0x7b, 0x79, 0x77, 0x78, 0x7b, 0x7f,\n    0x88, 0x8b, 0x8f, 0x93, 0x96, 0x96, 0x96, 0x95, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x94, 0x94,\n    0x93, 0x92, 0x90, 0x8e, 0x8f, 0x91, 0x93, 0x95, 0x9b, 0x9d, 0x9f, 0xa2, 0xa4, 0xa5, 0xa6, 0xa6,\n    0xa1, 0xa1, 0xa1, 0xa2, 0xa2, 0xa3, 0xa3, 0xa3, 0x9f, 0x9e, 0x9c, 0x99, 0x96, 0x93, 0x90, 0x8f,\n    0x92, 0x92, 0x92, 0x92, 0x92, 0x93, 0x93, 0x93, 0x92, 0x93, 0x94, 0x94, 0x96, 0x96, 0x97, 0x98,\n    0x97, 0x95, 0x94, 0x95, 0x96, 0x93, 0x8e, 0x89, 0x7b, 0x77, 0x74, 0x74, 0x77, 0x78, 0x76, 0x74,\n    0x77, 0x79, 0x7a, 0x7a, 0x7b, 0x7f, 0x87, 0x8c, 0x8f, 0x8d, 0x8b, 0x8a, 0x8a, 0x87, 0x81, 0x7c,\n    0x78, 0x76, 0x74, 0x72, 0x71, 0x72, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76,\n    0x7a, 0x78, 0x76, 0x74, 0x73, 0x75, 0x77, 0x78, 0x7a, 0x78, 0x75, 0x72, 0x70, 0x71, 0x73, 0x74,\n    0x76, 0x7b, 0x82, 0x85, 0x84, 0x83, 0x83, 0x85, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84,\n    0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x87, 0x87, 0x86, 0x85, 0x85,\n    0x84, 0x85, 0x85, 0x85, 0x85, 0x83, 0x82, 0x81, 0x85, 0x85, 0x84, 0x84, 0x83, 0x83, 0x82, 0x82,\n    0x7d, 0x7e, 0x7f, 0x7f, 0x7d, 0x7a, 0x77, 0x75, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78,\n    0x78, 0x77, 0x77, 0x77, 0x78, 0x7a, 0x7c, 0x7d, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7d, 0x7e, 0x7e,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x78,\n    0x7a, 0x7b, 0x7d, 0x7f, 0x80, 0x7f, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79,\n    0x7e, 0x7f, 0x81, 0x82, 0x84, 0x85, 0x86, 0x87, 0x88, 0x85, 0x81, 0x7c, 0x79, 0x77, 0x76, 0x76,\n    0x7a, 0x79, 0x78, 0x77, 0x77, 0x77, 0x78, 0x78, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7a,\n    0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x7a, 0x7b, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d,\n    0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b,\n    0x79, 0x7b, 0x7e, 0x80, 0x80, 0x7e, 0x7b, 0x79, 0x7b, 0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x7e, 0x7f,\n    0x7b, 0x80, 0x88, 0x90, 0x95, 0x96, 0x95, 0x93, 0x94, 0x94, 0x95, 0x96, 0x95, 0x95, 0x94, 0x93,\n    0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x95, 0x97, 0x9b, 0x9e, 0xa1, 0xa3, 0xa3, 0xa3,\n    0xa2, 0xa3, 0xa3, 0xa4, 0xa3, 0xa1, 0x9f, 0x9d, 0x9c, 0x9b, 0x98, 0x94, 0x91, 0x8f, 0x8e, 0x8e,\n    0x8f, 0x8f, 0x90, 0x90, 0x91, 0x92, 0x92, 0x92, 0x95, 0x95, 0x94, 0x94, 0x94, 0x94, 0x95, 0x95,\n    0x90, 0x94, 0x98, 0x99, 0x95, 0x8b, 0x80, 0x79, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76,\n    0x77, 0x76, 0x76, 0x77, 0x7b, 0x80, 0x86, 0x89, 0x87, 0x89, 0x8a, 0x8a, 0x88, 0x84, 0x80, 0x7e,\n    0x75, 0x77, 0x7a, 0x79, 0x75, 0x73, 0x74, 0x75, 0x76, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75,\n    0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x77, 0x76, 0x75, 0x74, 0x73, 0x73, 0x74, 0x74,\n    0x76, 0x7b, 0x82, 0x84, 0x84, 0x83, 0x83, 0x84, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x83,\n    0x83, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x85, 0x86, 0x87, 0x87, 0x86, 0x86, 0x85,\n    0x88, 0x87, 0x87, 0x86, 0x85, 0x84, 0x83, 0x83, 0x86, 0x88, 0x88, 0x85, 0x82, 0x80, 0x83, 0x85,\n    0x7c, 0x7d, 0x7e, 0x7e, 0x7d, 0x7b, 0x78, 0x76, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78,\n    0x78, 0x77, 0x77, 0x77, 0x78, 0x7a, 0x7c, 0x7d, 0x79, 0x7a, 0x7a, 0x7c, 0x7d, 0x7e, 0x7f, 0x7f,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7d, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x78,\n    0x79, 0x7a, 0x7c, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x79, 0x79,\n    0x7e, 0x7f, 0x81, 0x83, 0x85, 0x86, 0x87, 0x87, 0x88, 0x85, 0x81, 0x7d, 0x79, 0x77, 0x77, 0x77,\n    0x79, 0x79, 0x78, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7b,\n    0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b,\n    0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a,\n    0x77, 0x79, 0x7b, 0x7d, 0x7d, 0x7c, 0x79, 0x77, 0x79, 0x78, 0x77, 0x76, 0x76, 0x77, 0x78, 0x79,\n    0x78, 0x7c, 0x84, 0x8c, 0x92, 0x94, 0x94, 0x94, 0x94, 0x94, 0x95, 0x96, 0x96, 0x95, 0x94, 0x93,\n    0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x94, 0x95, 0x99, 0x9c, 0x9e, 0xa0, 0xa0, 0xa0,\n    0x9f, 0xa0, 0xa1, 0xa1, 0xa0, 0x9e, 0x9c, 0x9b, 0x99, 0x98, 0x95, 0x93, 0x90, 0x8f, 0x8e, 0x8e,\n    0x8f, 0x8f, 0x90, 0x90, 0x91, 0x92, 0x92, 0x92, 0x95, 0x94, 0x94, 0x94, 0x95, 0x95, 0x96, 0x96,\n    0x94, 0x95, 0x97, 0x95, 0x90, 0x88, 0x7f, 0x7a, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76,\n    0x77, 0x76, 0x76, 0x77, 0x7b, 0x81, 0x86, 0x89, 0x88, 0x89, 0x8a, 0x8a, 0x88, 0x84, 0x80, 0x7d,\n    0x75, 0x77, 0x7a, 0x79, 0x75, 0x73, 0x74, 0x75, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76,\n    0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x78, 0x77, 0x76, 0x74, 0x73, 0x73, 0x73, 0x73,\n    0x76, 0x7b, 0x82, 0x84, 0x84, 0x83, 0x83, 0x84, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x83,\n    0x83, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x85, 0x86, 0x87, 0x87, 0x86, 0x85, 0x85,\n    0x88, 0x87, 0x87, 0x86, 0x85, 0x84, 0x83, 0x82, 0x86, 0x87, 0x88, 0x85, 0x82, 0x80, 0x83, 0x86,\n    0x7a, 0x7b, 0x7d, 0x7e, 0x7e, 0x7c, 0x7a, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78,\n    0x78, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x7c, 0x7d, 0x78, 0x79, 0x7a, 0x7c, 0x7d, 0x7f, 0x80, 0x81,\n    0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x78,\n    0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x80, 0x7f, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x79,\n    0x7e, 0x80, 0x82, 0x84, 0x86, 0x87, 0x87, 0x87, 0x88, 0x85, 0x81, 0x7d, 0x7a, 0x79, 0x78, 0x78,\n    0x78, 0x78, 0x77, 0x77, 0x78, 0x79, 0x7b, 0x7c, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x7a, 0x7a, 0x7b,\n    0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7a, 0x79, 0x79,\n    0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79,\n    0x76, 0x78, 0x79, 0x7b, 0x7b, 0x7a, 0x78, 0x77, 0x78, 0x77, 0x77, 0x76, 0x76, 0x77, 0x78, 0x78,\n    0x7a, 0x7e, 0x84, 0x8b, 0x90, 0x93, 0x94, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x95, 0x93, 0x93,\n    0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x92, 0x93, 0x95, 0x98, 0x9a, 0x9b, 0x9b, 0x9c,\n    0x9b, 0x9b, 0x9c, 0x9c, 0x9b, 0x9a, 0x99, 0x98, 0x95, 0x94, 0x92, 0x90, 0x8f, 0x8e, 0x8e, 0x8e,\n    0x8f, 0x90, 0x90, 0x91, 0x91, 0x92, 0x92, 0x93, 0x94, 0x94, 0x95, 0x95, 0x96, 0x96, 0x97, 0x97,\n    0x97, 0x96, 0x93, 0x8f, 0x89, 0x83, 0x7e, 0x7b, 0x77, 0x77, 0x77, 0x76, 0x76, 0x77, 0x77, 0x77,\n    0x77, 0x76, 0x76, 0x78, 0x7b, 0x81, 0x87, 0x8a, 0x88, 0x89, 0x8a, 0x8a, 0x88, 0x83, 0x7f, 0x7c,\n    0x75, 0x77, 0x7a, 0x79, 0x75, 0x73, 0x74, 0x75, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77,\n    0x75, 0x76, 0x76, 0x77, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x79, 0x77, 0x75, 0x73, 0x72, 0x72, 0x72,\n    0x76, 0x7b, 0x82, 0x84, 0x84, 0x83, 0x83, 0x84, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x83,\n    0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x86, 0x87, 0x87, 0x86, 0x85, 0x84,\n    0x87, 0x87, 0x86, 0x85, 0x84, 0x83, 0x83, 0x82, 0x85, 0x87, 0x87, 0x85, 0x81, 0x80, 0x83, 0x86,\n    0x79, 0x7a, 0x7c, 0x7e, 0x7e, 0x7d, 0x7b, 0x7a, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77,\n    0x77, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x78, 0x79, 0x7a, 0x7c, 0x7e, 0x7f, 0x81, 0x81,\n    0x7f, 0x7f, 0x7f, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x77,\n    0x77, 0x77, 0x78, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x81, 0x81, 0x80, 0x7f, 0x7e, 0x7c, 0x7a, 0x79,\n    0x7e, 0x80, 0x83, 0x85, 0x87, 0x88, 0x87, 0x87, 0x87, 0x85, 0x81, 0x7d, 0x7b, 0x79, 0x79, 0x7a,\n    0x78, 0x78, 0x77, 0x78, 0x79, 0x7a, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x7a, 0x7b, 0x7b,\n    0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b, 0x7a, 0x7a, 0x76, 0x77, 0x78, 0x79, 0x79, 0x78, 0x77, 0x77,\n    0x77, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78,\n    0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7d, 0x7f, 0x81, 0x84, 0x86, 0x87,\n    0x8a, 0x8b, 0x8e, 0x91, 0x93, 0x94, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x96, 0x95, 0x93, 0x92,\n    0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x90, 0x91, 0x92, 0x93, 0x95, 0x96, 0x96, 0x97,\n    0x97, 0x97, 0x97, 0x97, 0x96, 0x95, 0x95, 0x94, 0x91, 0x90, 0x8f, 0x8e, 0x8d, 0x8d, 0x8e, 0x8f,\n    0x90, 0x90, 0x90, 0x91, 0x92, 0x92, 0x93, 0x93, 0x93, 0x94, 0x95, 0x96, 0x97, 0x97, 0x96, 0x96,\n    0x98, 0x94, 0x8e, 0x87, 0x82, 0x7e, 0x7c, 0x7b, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77,\n    0x77, 0x76, 0x76, 0x78, 0x7c, 0x82, 0x87, 0x8b, 0x89, 0x8a, 0x8b, 0x8a, 0x87, 0x82, 0x7e, 0x7b,\n    0x75, 0x77, 0x7a, 0x79, 0x75, 0x73, 0x74, 0x75, 0x77, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78,\n    0x75, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7a, 0x7c, 0x7a, 0x78, 0x75, 0x73, 0x72, 0x71, 0x71,\n    0x76, 0x7b, 0x82, 0x84, 0x84, 0x83, 0x83, 0x84, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x83,\n    0x83, 0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x87, 0x87, 0x86, 0x85, 0x84,\n    0x87, 0x87, 0x86, 0x85, 0x84, 0x83, 0x82, 0x82, 0x84, 0x86, 0x87, 0x84, 0x81, 0x80, 0x83, 0x86,\n    0x78, 0x7a, 0x7c, 0x7e, 0x7e, 0x7d, 0x7c, 0x7b, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76,\n    0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x79, 0x7a, 0x7b, 0x7c, 0x7e, 0x7f, 0x81, 0x81,\n    0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7c, 0x7b, 0x7a, 0x78, 0x77, 0x77,\n    0x77, 0x77, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x7a, 0x80, 0x80, 0x81, 0x81, 0x7f, 0x7d, 0x7b, 0x7a,\n    0x7d, 0x7f, 0x83, 0x86, 0x88, 0x88, 0x87, 0x86, 0x86, 0x83, 0x80, 0x7d, 0x7a, 0x7a, 0x7a, 0x7b,\n    0x79, 0x78, 0x78, 0x78, 0x79, 0x7b, 0x7d, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b,\n    0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x76, 0x77, 0x78, 0x78, 0x78, 0x78, 0x77, 0x76,\n    0x76, 0x77, 0x77, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x79, 0x78, 0x76, 0x75, 0x75, 0x76, 0x78, 0x79,\n    0x7b, 0x7b, 0x7c, 0x7d, 0x7e, 0x80, 0x81, 0x82, 0x83, 0x85, 0x89, 0x8e, 0x94, 0x98, 0x9c, 0x9e,\n    0x9f, 0x9d, 0x9b, 0x99, 0x97, 0x96, 0x96, 0x96, 0x96, 0x97, 0x97, 0x97, 0x96, 0x95, 0x93, 0x92,\n    0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x90, 0x90, 0x90, 0x90, 0x91, 0x92, 0x93, 0x93,\n    0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x92, 0x92, 0x90, 0x8f, 0x8e, 0x8d, 0x8d, 0x8e, 0x8f, 0x8f,\n    0x90, 0x90, 0x91, 0x91, 0x92, 0x93, 0x93, 0x93, 0x93, 0x94, 0x95, 0x96, 0x96, 0x96, 0x94, 0x94,\n    0x93, 0x8f, 0x87, 0x80, 0x7c, 0x7a, 0x7a, 0x7b, 0x78, 0x77, 0x76, 0x75, 0x75, 0x76, 0x77, 0x78,\n    0x76, 0x76, 0x76, 0x78, 0x7c, 0x82, 0x88, 0x8c, 0x8a, 0x8a, 0x8b, 0x8a, 0x87, 0x81, 0x7c, 0x79,\n    0x75, 0x77, 0x7a, 0x79, 0x75, 0x73, 0x74, 0x75, 0x76, 0x76, 0x76, 0x77, 0x77, 0x78, 0x78, 0x78,\n    0x75, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7a, 0x7c, 0x7a, 0x78, 0x75, 0x73, 0x72, 0x72, 0x71,\n    0x76, 0x7b, 0x82, 0x84, 0x84, 0x83, 0x83, 0x84, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x83,\n    0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x87, 0x87, 0x87, 0x85, 0x84, 0x83,\n    0x87, 0x86, 0x86, 0x85, 0x84, 0x83, 0x82, 0x82, 0x83, 0x85, 0x86, 0x84, 0x81, 0x80, 0x83, 0x86,\n    0x79, 0x7a, 0x7c, 0x7e, 0x7e, 0x7d, 0x7b, 0x7a, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76,\n    0x77, 0x78, 0x79, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7c, 0x7d, 0x7e, 0x7f, 0x80, 0x80,\n    0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x7e, 0x7e, 0x7e, 0x7f, 0x7e, 0x7d, 0x7b, 0x7a, 0x78, 0x77, 0x76,\n    0x77, 0x77, 0x76, 0x76, 0x77, 0x78, 0x7a, 0x7b, 0x7e, 0x7f, 0x80, 0x81, 0x80, 0x7e, 0x7c, 0x7a,\n    0x7b, 0x7e, 0x82, 0x86, 0x87, 0x87, 0x85, 0x84, 0x84, 0x82, 0x7e, 0x7b, 0x7a, 0x79, 0x7a, 0x7b,\n    0x7a, 0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x7d, 0x7d, 0x7d, 0x7d, 0x7b, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c,\n    0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x78, 0x79, 0x79, 0x7a, 0x79, 0x78, 0x77, 0x76,\n    0x76, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7a, 0x7b, 0x79, 0x78, 0x76, 0x75, 0x75, 0x76, 0x78, 0x79,\n    0x7b, 0x7b, 0x7b, 0x7c, 0x7f, 0x83, 0x86, 0x89, 0x8f, 0x92, 0x97, 0x9d, 0xa3, 0xa8, 0xab, 0xad,\n    0xaa, 0xa6, 0xa1, 0x9c, 0x98, 0x96, 0x96, 0x97, 0x97, 0x97, 0x98, 0x97, 0x96, 0x95, 0x93, 0x92,\n    0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x91, 0x90, 0x8f, 0x8f, 0x8f, 0x8f, 0x90, 0x91,\n    0x92, 0x91, 0x90, 0x90, 0x90, 0x90, 0x91, 0x92, 0x91, 0x90, 0x8f, 0x8e, 0x8e, 0x8f, 0x90, 0x90,\n    0x90, 0x90, 0x91, 0x92, 0x92, 0x93, 0x93, 0x94, 0x93, 0x94, 0x95, 0x96, 0x95, 0x93, 0x91, 0x90,\n    0x8a, 0x86, 0x80, 0x7b, 0x78, 0x78, 0x79, 0x7b, 0x79, 0x78, 0x76, 0x74, 0x74, 0x76, 0x78, 0x79,\n    0x76, 0x76, 0x76, 0x78, 0x7d, 0x83, 0x89, 0x8d, 0x8a, 0x8b, 0x8b, 0x8a, 0x86, 0x81, 0x7b, 0x78,\n    0x75, 0x77, 0x7a, 0x79, 0x75, 0x73, 0x74, 0x75, 0x74, 0x75, 0x75, 0x76, 0x76, 0x77, 0x77, 0x78,\n    0x75, 0x76, 0x76, 0x77, 0x77, 0x78, 0x78, 0x79, 0x7b, 0x7a, 0x78, 0x76, 0x74, 0x73, 0x73, 0x73,\n    0x76, 0x7b, 0x82, 0x84, 0x84, 0x83, 0x83, 0x84, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x83,\n    0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x86, 0x85, 0x84, 0x83,\n    0x86, 0x86, 0x85, 0x84, 0x83, 0x82, 0x82, 0x81, 0x82, 0x84, 0x85, 0x83, 0x81, 0x80, 0x83, 0x86,\n    0x7a, 0x7b, 0x7d, 0x7e, 0x7e, 0x7c, 0x7a, 0x79, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75,\n    0x76, 0x78, 0x7a, 0x7b, 0x7d, 0x7d, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e,\n    0x7f, 0x7f, 0x7f, 0x7f, 0x7e, 0x7e, 0x7e, 0x7e, 0x7f, 0x7e, 0x7d, 0x7b, 0x79, 0x78, 0x76, 0x76,\n    0x78, 0x77, 0x76, 0x76, 0x77, 0x78, 0x7a, 0x7b, 0x7b, 0x7d, 0x7f, 0x80, 0x81, 0x7f, 0x7d, 0x7b,\n    0x7a, 0x7d, 0x81, 0x85, 0x87, 0x86, 0x84, 0x82, 0x82, 0x80, 0x7d, 0x7a, 0x79, 0x79, 0x7a, 0x7a,\n    0x7c, 0x7c, 0x7b, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x7b, 0x7b, 0x7c,\n    0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7a, 0x78, 0x78,\n    0x76, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7a, 0x79, 0x76, 0x75, 0x75, 0x76, 0x79, 0x7a,\n    0x77, 0x77, 0x77, 0x79, 0x7d, 0x83, 0x88, 0x8b, 0x9c, 0x9e, 0xa2, 0xa6, 0xaa, 0xad, 0xae, 0xae,\n    0xa5, 0xa2, 0x9c, 0x96, 0x93, 0x93, 0x95, 0x97, 0x98, 0x98, 0x98, 0x98, 0x97, 0x95, 0x93, 0x92,\n    0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x91, 0x90, 0x8e, 0x8e, 0x8e, 0x8f, 0x90,\n    0x91, 0x90, 0x8f, 0x8e, 0x8f, 0x90, 0x91, 0x92, 0x93, 0x92, 0x91, 0x90, 0x90, 0x90, 0x91, 0x91,\n    0x90, 0x91, 0x91, 0x92, 0x93, 0x93, 0x94, 0x94, 0x93, 0x94, 0x95, 0x96, 0x94, 0x91, 0x8d, 0x8b,\n    0x80, 0x7e, 0x7a, 0x77, 0x76, 0x77, 0x78, 0x7a, 0x79, 0x78, 0x75, 0x74, 0x74, 0x75, 0x78, 0x79,\n    0x76, 0x76, 0x76, 0x78, 0x7d, 0x83, 0x89, 0x8d, 0x8b, 0x8c, 0x8b, 0x8a, 0x86, 0x80, 0x7a, 0x77,\n    0x75, 0x77, 0x7a, 0x79, 0x75, 0x73, 0x74, 0x75, 0x73, 0x73, 0x74, 0x74, 0x75, 0x76, 0x77, 0x77,\n    0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x7a, 0x79, 0x77, 0x75, 0x74, 0x74, 0x74, 0x75,\n    0x76, 0x7b, 0x82, 0x84, 0x84, 0x83, 0x83, 0x84, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x83,\n    0x84, 0x84, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x87, 0x86, 0x85, 0x83, 0x82,\n    0x86, 0x86, 0x85, 0x84, 0x83, 0x82, 0x81, 0x81, 0x82, 0x84, 0x85, 0x83, 0x81, 0x80, 0x83, 0x87,\n    0x7b, 0x7c, 0x7d, 0x7e, 0x7e, 0x7c, 0x7a, 0x78, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75,\n    0x76, 0x78, 0x7a, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d,\n    0x7f, 0x7f, 0x7f, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7f, 0x7f, 0x7d, 0x7b, 0x79, 0x78, 0x76, 0x75,\n    0x78, 0x78, 0x77, 0x76, 0x77, 0x78, 0x7b, 0x7c, 0x79, 0x7b, 0x7e, 0x80, 0x81, 0x80, 0x7e, 0x7c,\n    0x79, 0x7c, 0x80, 0x84, 0x86, 0x85, 0x83, 0x81, 0x80, 0x7e, 0x7c, 0x79, 0x78, 0x78, 0x79, 0x7a,\n    0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7b, 0x7c, 0x7e, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c,\n    0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7c, 0x7b, 0x79, 0x79,\n    0x76, 0x76, 0x77, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b, 0x79, 0x77, 0x75, 0x75, 0x77, 0x79, 0x7b,\n    0x74, 0x73, 0x74, 0x76, 0x7b, 0x81, 0x88, 0x8b, 0xa4, 0xa5, 0xa8, 0xaa, 0xab, 0xab, 0xaa, 0xa9,\n    0x9d, 0x99, 0x94, 0x8f, 0x8e, 0x90, 0x94, 0x97, 0x98, 0x98, 0x98, 0x98, 0x97, 0x95, 0x93, 0x92,\n    0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x93, 0x92, 0x90, 0x8e, 0x8e, 0x8e, 0x8f, 0x90,\n    0x91, 0x90, 0x8f, 0x8e, 0x8e, 0x90, 0x91, 0x92, 0x95, 0x94, 0x93, 0x91, 0x91, 0x91, 0x91, 0x92,\n    0x91, 0x91, 0x91, 0x92, 0x93, 0x93, 0x94, 0x94, 0x94, 0x95, 0x95, 0x95, 0x93, 0x8f, 0x8b, 0x89,\n    0x79, 0x78, 0x77, 0x76, 0x75, 0x76, 0x78, 0x79, 0x7a, 0x78, 0x75, 0x74, 0x74, 0x75, 0x78, 0x7a,\n    0x76, 0x76, 0x76, 0x79, 0x7d, 0x84, 0x8a, 0x8e, 0x8b, 0x8c, 0x8c, 0x8a, 0x85, 0x7f, 0x7a, 0x76,\n    0x75, 0x77, 0x7a, 0x79, 0x75, 0x73, 0x74, 0x75, 0x72, 0x72, 0x73, 0x74, 0x74, 0x75, 0x76, 0x76,\n    0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x79, 0x78, 0x77, 0x75, 0x75, 0x75, 0x75, 0x76,\n    0x76, 0x7b, 0x82, 0x84, 0x84, 0x83, 0x83, 0x84, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x83,\n    0x84, 0x84, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x87, 0x86, 0x85, 0x83, 0x82,\n    0x86, 0x86, 0x85, 0x84, 0x83, 0x82, 0x81, 0x81, 0x81, 0x83, 0x84, 0x83, 0x80, 0x80, 0x83, 0x87,\n    0x7d, 0x7c, 0x7a, 0x79, 0x78, 0x79, 0x7a, 0x7b, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78,\n    0x76, 0x76, 0x77, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x77, 0x78, 0x7a, 0x7c, 0x7d, 0x7d, 0x7c, 0x7c,\n    0x7d, 0x7d, 0x7e, 0x7e, 0x7f, 0x7f, 0x80, 0x80, 0x7e, 0x7c, 0x7b, 0x79, 0x78, 0x77, 0x78, 0x78,\n    0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7e, 0x7d, 0x7c, 0x7b, 0x7b, 0x7c, 0x7d, 0x7e,\n    0x79, 0x7b, 0x7f, 0x83, 0x85, 0x84, 0x83, 0x82, 0x7e, 0x7d, 0x7b, 0x79, 0x78, 0x78, 0x79, 0x7a,\n    0x7e, 0x7d, 0x7b, 0x79, 0x78, 0x77, 0x77, 0x78, 0x7a, 0x7b, 0x7c, 0x7c, 0x7d, 0x7c, 0x7c, 0x7c,\n    0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x7f, 0x7f, 0x7f, 0x7f, 0x7e, 0x7e, 0x7e, 0x7e,\n    0x7d, 0x7c, 0x7b, 0x7a, 0x78, 0x76, 0x75, 0x75, 0x78, 0x77, 0x77, 0x77, 0x76, 0x76, 0x75, 0x75,\n    0x6e, 0x71, 0x75, 0x78, 0x7d, 0x85, 0x90, 0x97, 0xa4, 0xa6, 0xaa, 0xad, 0xac, 0xa9, 0xa4, 0xa1,\n    0x93, 0x93, 0x94, 0x94, 0x95, 0x96, 0x97, 0x97, 0x96, 0x97, 0x97, 0x97, 0x98, 0x98, 0x98, 0x98,\n    0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x91, 0x90, 0x90, 0x90, 0x90, 0x8f, 0x8f, 0x8f,\n    0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x92, 0x92, 0x92, 0x91, 0x90, 0x90, 0x8f, 0x8f,\n    0x94, 0x92, 0x90, 0x91, 0x94, 0x96, 0x94, 0x91, 0x93, 0x91, 0x8e, 0x8c, 0x8a, 0x85, 0x7c, 0x76,\n    0x77, 0x77, 0x77, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x75,\n    0x74, 0x75, 0x77, 0x7b, 0x7f, 0x84, 0x87, 0x89, 0x8c, 0x8b, 0x88, 0x84, 0x7f, 0x7a, 0x75, 0x73,\n    0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x73, 0x73, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75,\n    0x78, 0x76, 0x74, 0x72, 0x72, 0x73, 0x75, 0x76, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x77,\n    0x7d, 0x7e, 0x80, 0x82, 0x83, 0x83, 0x82, 0x81, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83,\n    0x86, 0x86, 0x86, 0x85, 0x85, 0x84, 0x84, 0x84, 0x86, 0x87, 0x87, 0x87, 0x86, 0x85, 0x84, 0x83,\n    0x84, 0x84, 0x83, 0x82, 0x82, 0x83, 0x84, 0x85, 0x87, 0x86, 0x84, 0x83, 0x82, 0x82, 0x83, 0x83,\n    0x7d, 0x7c, 0x7a, 0x79, 0x78, 0x79, 0x7a, 0x7a, 0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78,\n    0x76, 0x76, 0x77, 0x77, 0x78, 0x78, 0x79, 0x79, 0x76, 0x78, 0x7a, 0x7c, 0x7d, 0x7d, 0x7c, 0x7c,\n    0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7d, 0x7c, 0x7a, 0x79, 0x78, 0x77, 0x78, 0x78,\n    0x79, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7e, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d,\n    0x7a, 0x7c, 0x7f, 0x82, 0x83, 0x82, 0x81, 0x80, 0x7d, 0x7c, 0x7a, 0x78, 0x78, 0x78, 0x78, 0x79,\n    0x7d, 0x7c, 0x7a, 0x79, 0x78, 0x78, 0x79, 0x79, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d,\n    0x7e, 0x7e, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d,\n    0x7c, 0x7c, 0x7b, 0x79, 0x78, 0x76, 0x75, 0x75, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x75,\n    0x74, 0x76, 0x79, 0x7b, 0x80, 0x8a, 0x96, 0x9f, 0xa5, 0xa8, 0xac, 0xaf, 0xae, 0xab, 0xa7, 0xa4,\n    0x99, 0x98, 0x96, 0x95, 0x94, 0x95, 0x96, 0x97, 0x96, 0x96, 0x97, 0x97, 0x97, 0x98, 0x98, 0x98,\n    0x93, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x92, 0x91, 0x91, 0x91, 0x90, 0x90, 0x90, 0x8f, 0x8f,\n    0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x92, 0x91, 0x91, 0x91, 0x91, 0x90, 0x90, 0x90,\n    0x94, 0x92, 0x90, 0x92, 0x96, 0x97, 0x96, 0x93, 0x91, 0x8d, 0x88, 0x85, 0x82, 0x7f, 0x79, 0x74,\n    0x76, 0x77, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x76, 0x76, 0x75, 0x75, 0x74, 0x74, 0x73, 0x73,\n    0x73, 0x75, 0x77, 0x7c, 0x80, 0x85, 0x88, 0x8a, 0x8c, 0x8b, 0x88, 0x85, 0x80, 0x7b, 0x77, 0x75,\n    0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73,\n    0x74, 0x73, 0x72, 0x71, 0x72, 0x74, 0x76, 0x77, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79,\n    0x7f, 0x80, 0x82, 0x83, 0x84, 0x83, 0x82, 0x81, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83,\n    0x86, 0x86, 0x86, 0x85, 0x85, 0x84, 0x84, 0x84, 0x85, 0x86, 0x87, 0x87, 0x87, 0x86, 0x84, 0x84,\n    0x84, 0x84, 0x83, 0x82, 0x83, 0x83, 0x85, 0x85, 0x87, 0x86, 0x84, 0x83, 0x82, 0x82, 0x83, 0x83,\n    0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x79, 0x79, 0x7a, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78,\n    0x75, 0x76, 0x76, 0x77, 0x77, 0x78, 0x79, 0x79, 0x77, 0x78, 0x79, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x79, 0x78, 0x78, 0x78, 0x78, 0x79,\n    0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7e, 0x7e, 0x7f, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d,\n    0x7b, 0x7c, 0x7e, 0x80, 0x80, 0x7f, 0x7e, 0x7d, 0x7b, 0x7b, 0x79, 0x78, 0x77, 0x77, 0x78, 0x78,\n    0x7b, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7b, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e,\n    0x7f, 0x7f, 0x7e, 0x7e, 0x7d, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b,\n    0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x76, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76,\n    0x7b, 0x7c, 0x7d, 0x7e, 0x84, 0x8f, 0x9d, 0xa8, 0xa7, 0xaa, 0xae, 0xb1, 0xb1, 0xaf, 0xac, 0xa9,\n    0xa2, 0x9f, 0x9a, 0x96, 0x94, 0x94, 0x95, 0x96, 0x96, 0x96, 0x96, 0x97, 0x97, 0x97, 0x98, 0x98,\n    0x95, 0x95, 0x94, 0x93, 0x92, 0x92, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x90, 0x90, 0x90, 0x90,\n    0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x90, 0x90, 0x91, 0x91, 0x91, 0x91, 0x92, 0x92,\n    0x94, 0x92, 0x91, 0x93, 0x98, 0x9a, 0x99, 0x97, 0x90, 0x8a, 0x81, 0x7b, 0x79, 0x77, 0x75, 0x73,\n    0x76, 0x76, 0x77, 0x77, 0x78, 0x79, 0x79, 0x79, 0x76, 0x76, 0x75, 0x74, 0x73, 0x72, 0x72, 0x71,\n    0x72, 0x74, 0x78, 0x7d, 0x82, 0x87, 0x8a, 0x8c, 0x8b, 0x8a, 0x88, 0x86, 0x82, 0x7d, 0x7a, 0x78,\n    0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x76, 0x75, 0x75, 0x74, 0x73, 0x72, 0x72, 0x71,\n    0x71, 0x71, 0x72, 0x73, 0x75, 0x77, 0x7a, 0x7b, 0x7b, 0x7c, 0x7e, 0x7f, 0x80, 0x80, 0x80, 0x80,\n    0x83, 0x83, 0x84, 0x84, 0x84, 0x83, 0x82, 0x81, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83,\n    0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x86, 0x87, 0x87, 0x87, 0x86, 0x85,\n    0x84, 0x84, 0x83, 0x83, 0x83, 0x84, 0x85, 0x86, 0x87, 0x86, 0x84, 0x83, 0x82, 0x82, 0x83, 0x83,\n    0x79, 0x79, 0x79, 0x79, 0x78, 0x79, 0x79, 0x79, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x79,\n    0x75, 0x76, 0x76, 0x77, 0x77, 0x78, 0x78, 0x79, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x79, 0x79, 0x7a,\n    0x7d, 0x7d, 0x7e, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7d,\n    0x7c, 0x7d, 0x7e, 0x7e, 0x7d, 0x7c, 0x7b, 0x79, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x78, 0x78, 0x78,\n    0x79, 0x79, 0x78, 0x78, 0x79, 0x7a, 0x7c, 0x7c, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7e, 0x7f, 0x80,\n    0x80, 0x7f, 0x7f, 0x7e, 0x7e, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a,\n    0x7b, 0x7a, 0x7a, 0x79, 0x77, 0x76, 0x76, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77,\n    0x7f, 0x7f, 0x7e, 0x7e, 0x83, 0x8f, 0x9e, 0xa9, 0xa8, 0xab, 0xaf, 0xb2, 0xb3, 0xb2, 0xb0, 0xae,\n    0xab, 0xa7, 0xa1, 0x9a, 0x96, 0x94, 0x95, 0x96, 0x96, 0x96, 0x96, 0x96, 0x97, 0x97, 0x97, 0x98,\n    0x97, 0x97, 0x96, 0x94, 0x93, 0x92, 0x91, 0x90, 0x92, 0x92, 0x92, 0x91, 0x91, 0x91, 0x90, 0x90,\n    0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x90, 0x90, 0x90, 0x91, 0x92, 0x92, 0x93, 0x93,\n    0x93, 0x92, 0x92, 0x95, 0x9a, 0x9e, 0x9e, 0x9c, 0x95, 0x8b, 0x7f, 0x76, 0x73, 0x74, 0x75, 0x75,\n    0x75, 0x75, 0x76, 0x77, 0x77, 0x78, 0x78, 0x79, 0x76, 0x75, 0x75, 0x74, 0x72, 0x71, 0x70, 0x70,\n    0x72, 0x75, 0x79, 0x7f, 0x84, 0x88, 0x8c, 0x8d, 0x8a, 0x8a, 0x88, 0x86, 0x83, 0x7f, 0x7c, 0x7a,\n    0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x77, 0x77, 0x75, 0x74, 0x73, 0x72, 0x72, 0x72,\n    0x74, 0x75, 0x77, 0x7b, 0x7e, 0x80, 0x82, 0x83, 0x84, 0x85, 0x88, 0x8b, 0x8c, 0x8d, 0x8c, 0x8c,\n    0x87, 0x86, 0x86, 0x85, 0x84, 0x83, 0x82, 0x82, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83,\n    0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x83, 0x84, 0x85, 0x86, 0x87, 0x87, 0x87, 0x86,\n    0x84, 0x83, 0x83, 0x83, 0x83, 0x85, 0x86, 0x87, 0x87, 0x86, 0x84, 0x83, 0x82, 0x82, 0x83, 0x83,\n    0x78, 0x78, 0x78, 0x78, 0x79, 0x78, 0x78, 0x78, 0x77, 0x77, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79,\n    0x76, 0x76, 0x77, 0x77, 0x78, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x7c,\n    0x7e, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x80, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d,\n    0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7a, 0x79, 0x78, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78,\n    0x79, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x7c, 0x7d, 0x7f, 0x7e, 0x7d, 0x7c, 0x7d, 0x7e, 0x7f, 0x80,\n    0x80, 0x7f, 0x7f, 0x7e, 0x7e, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79,\n    0x7a, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x76, 0x75, 0x75, 0x75, 0x76, 0x77, 0x78, 0x79, 0x79, 0x7a,\n    0x7f, 0x7e, 0x7d, 0x7d, 0x80, 0x8a, 0x98, 0xa2, 0xa7, 0xa9, 0xad, 0xb1, 0xb3, 0xb4, 0xb3, 0xb2,\n    0xb2, 0xae, 0xa8, 0xa1, 0x9b, 0x98, 0x97, 0x96, 0x95, 0x96, 0x96, 0x96, 0x96, 0x97, 0x97, 0x97,\n    0x98, 0x97, 0x96, 0x95, 0x94, 0x92, 0x91, 0x91, 0x93, 0x93, 0x92, 0x92, 0x92, 0x91, 0x91, 0x91,\n    0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x90, 0x90, 0x91, 0x91, 0x92, 0x93, 0x93, 0x93,\n    0x93, 0x92, 0x93, 0x97, 0x9d, 0xa2, 0xa3, 0xa1, 0x9d, 0x91, 0x82, 0x78, 0x74, 0x75, 0x78, 0x79,\n    0x75, 0x75, 0x75, 0x76, 0x77, 0x77, 0x78, 0x78, 0x75, 0x75, 0x74, 0x73, 0x72, 0x72, 0x71, 0x71,\n    0x74, 0x76, 0x7b, 0x81, 0x86, 0x8a, 0x8c, 0x8d, 0x8a, 0x8a, 0x88, 0x86, 0x83, 0x80, 0x7d, 0x7b,\n    0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x79, 0x77, 0x76, 0x75, 0x74, 0x75, 0x76, 0x76,\n    0x7c, 0x7e, 0x82, 0x86, 0x89, 0x8b, 0x8c, 0x8c, 0x90, 0x92, 0x95, 0x98, 0x99, 0x99, 0x98, 0x97,\n    0x89, 0x88, 0x87, 0x85, 0x84, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83,\n    0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x83, 0x84, 0x85, 0x86, 0x87, 0x87, 0x87, 0x86,\n    0x84, 0x83, 0x83, 0x83, 0x84, 0x85, 0x87, 0x88, 0x87, 0x86, 0x84, 0x83, 0x82, 0x82, 0x83, 0x83,\n    0x76, 0x76, 0x77, 0x78, 0x79, 0x78, 0x78, 0x77, 0x77, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79,\n    0x77, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7f, 0x80,\n    0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7e, 0x7f,\n    0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7c, 0x7c, 0x7b, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c,\n    0x7d, 0x7d, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7a, 0x79, 0x79,\n    0x79, 0x79, 0x78, 0x78, 0x79, 0x7a, 0x7c, 0x7c, 0x7f, 0x7e, 0x7c, 0x7b, 0x7b, 0x7d, 0x7f, 0x80,\n    0x7f, 0x7f, 0x7e, 0x7e, 0x7d, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79,\n    0x79, 0x79, 0x78, 0x78, 0x77, 0x76, 0x76, 0x76, 0x76, 0x76, 0x77, 0x78, 0x7a, 0x7b, 0x7c, 0x7c,\n    0x7d, 0x7e, 0x7d, 0x7c, 0x7e, 0x84, 0x8e, 0x96, 0xa4, 0xa6, 0xaa, 0xaf, 0xb2, 0xb3, 0xb3, 0xb3,\n    0xb4, 0xb2, 0xaf, 0xaa, 0xa4, 0x9e, 0x9a, 0x97, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x97, 0x97,\n    0x97, 0x97, 0x96, 0x95, 0x94, 0x94, 0x93, 0x92, 0x93, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x92,\n    0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x91, 0x91, 0x92, 0x92, 0x92, 0x92, 0x93, 0x93,\n    0x93, 0x92, 0x93, 0x99, 0xa0, 0xa6, 0xa7, 0xa6, 0xa4, 0x99, 0x89, 0x7d, 0x78, 0x78, 0x79, 0x7a,\n    0x74, 0x74, 0x75, 0x75, 0x76, 0x77, 0x77, 0x77, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73,\n    0x76, 0x79, 0x7e, 0x83, 0x88, 0x8a, 0x8c, 0x8c, 0x8a, 0x8a, 0x88, 0x86, 0x83, 0x7f, 0x7c, 0x7a,\n    0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x79, 0x78, 0x77, 0x77, 0x78, 0x7a, 0x7c, 0x7e,\n    0x86, 0x88, 0x8d, 0x91, 0x94, 0x94, 0x94, 0x93, 0x98, 0x9a, 0x9d, 0x9f, 0x9f, 0x9e, 0x9b, 0x99,\n    0x89, 0x88, 0x86, 0x85, 0x84, 0x83, 0x84, 0x84, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83,\n    0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x84, 0x84, 0x86, 0x87, 0x87, 0x87, 0x86, 0x85,\n    0x83, 0x83, 0x83, 0x83, 0x84, 0x86, 0x87, 0x89, 0x87, 0x86, 0x84, 0x83, 0x82, 0x82, 0x83, 0x83,\n    0x74, 0x75, 0x77, 0x78, 0x79, 0x78, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79,\n    0x79, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7d, 0x7e, 0x80, 0x82,\n    0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7f, 0x80, 0x81,\n    0x7f, 0x7f, 0x7f, 0x7f, 0x7e, 0x7e, 0x7e, 0x7e, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c,\n    0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7c, 0x7b, 0x7a,\n    0x7a, 0x7a, 0x79, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7e, 0x7d, 0x7b, 0x7a, 0x7a, 0x7c, 0x7e, 0x80,\n    0x7e, 0x7e, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x78, 0x78, 0x78, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x77, 0x78, 0x7a, 0x7b, 0x7d, 0x7e, 0x7f,\n    0x7d, 0x7f, 0x80, 0x7f, 0x7e, 0x81, 0x86, 0x8b, 0xa0, 0xa2, 0xa7, 0xab, 0xaf, 0xb1, 0xb2, 0xb2,\n    0xb3, 0xb4, 0xb4, 0xb2, 0xad, 0xa5, 0x9d, 0x99, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x96, 0x97,\n    0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92,\n    0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x92, 0x91,\n    0x92, 0x92, 0x94, 0x9a, 0xa2, 0xa8, 0xaa, 0xaa, 0xa8, 0x9d, 0x8d, 0x81, 0x7b, 0x79, 0x78, 0x78,\n    0x73, 0x74, 0x74, 0x75, 0x75, 0x76, 0x77, 0x77, 0x73, 0x74, 0x74, 0x74, 0x75, 0x75, 0x76, 0x76,\n    0x78, 0x7b, 0x80, 0x85, 0x89, 0x8b, 0x8b, 0x8b, 0x8b, 0x8a, 0x88, 0x86, 0x82, 0x7e, 0x7b, 0x79,\n    0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x79, 0x7b, 0x7f, 0x84, 0x86,\n    0x8c, 0x90, 0x94, 0x98, 0x9a, 0x99, 0x96, 0x95, 0x98, 0x9a, 0x9c, 0x9d, 0x9c, 0x99, 0x95, 0x92,\n    0x88, 0x87, 0x85, 0x83, 0x83, 0x83, 0x84, 0x85, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83,\n    0x84, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x86, 0x85, 0x86, 0x87, 0x87, 0x87, 0x86, 0x84, 0x84,\n    0x83, 0x83, 0x83, 0x83, 0x85, 0x86, 0x88, 0x89, 0x87, 0x86, 0x84, 0x83, 0x82, 0x82, 0x83, 0x83,\n    0x74, 0x75, 0x77, 0x78, 0x79, 0x78, 0x77, 0x76, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x7a,\n    0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7e, 0x7d, 0x7c, 0x7c, 0x7d, 0x7f, 0x81, 0x83,\n    0x80, 0x80, 0x7f, 0x7f, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x80, 0x82, 0x83,\n    0x7f, 0x7f, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c,\n    0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x79, 0x7b, 0x7c, 0x7d, 0x7e, 0x7d, 0x7b, 0x7b,\n    0x7b, 0x7b, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7b, 0x7e, 0x7c, 0x7a, 0x79, 0x79, 0x7b, 0x7e, 0x80,\n    0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a,\n    0x78, 0x78, 0x78, 0x77, 0x77, 0x76, 0x76, 0x76, 0x77, 0x78, 0x79, 0x7b, 0x7d, 0x7e, 0x80, 0x80,\n    0x7e, 0x80, 0x82, 0x82, 0x80, 0x7f, 0x82, 0x85, 0x9d, 0xa0, 0xa4, 0xa9, 0xad, 0xb0, 0xb1, 0xb2,\n    0xb2, 0xb5, 0xb7, 0xb7, 0xb2, 0xa9, 0xa0, 0x9a, 0x95, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x96,\n    0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x94, 0x94, 0x94, 0x93, 0x93, 0x93, 0x92, 0x92,\n    0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x94, 0x94, 0x93, 0x93, 0x92, 0x91, 0x91, 0x91,\n    0x92, 0x92, 0x94, 0x9b, 0xa3, 0xaa, 0xac, 0xac, 0xa9, 0x9e, 0x8f, 0x83, 0x7c, 0x79, 0x77, 0x75,\n    0x73, 0x73, 0x74, 0x75, 0x75, 0x76, 0x76, 0x77, 0x73, 0x73, 0x74, 0x75, 0x76, 0x77, 0x77, 0x78,\n    0x7a, 0x7d, 0x81, 0x86, 0x89, 0x8a, 0x8a, 0x8a, 0x8b, 0x8a, 0x88, 0x85, 0x81, 0x7d, 0x79, 0x77,\n    0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x7a, 0x7e, 0x83, 0x88, 0x8b,\n    0x8f, 0x93, 0x97, 0x9b, 0x9c, 0x9a, 0x96, 0x94, 0x95, 0x96, 0x98, 0x99, 0x97, 0x93, 0x8e, 0x8b,\n    0x87, 0x86, 0x84, 0x83, 0x82, 0x83, 0x85, 0x86, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83,\n    0x84, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x86, 0x85, 0x84, 0x83,\n    0x83, 0x83, 0x83, 0x83, 0x85, 0x87, 0x88, 0x8a, 0x87, 0x86, 0x84, 0x83, 0x82, 0x82, 0x83, 0x83,\n    0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x7a, 0x7a, 0x7a, 0x7b, 0x7a, 0x7a, 0x79, 0x79,\n    0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7c, 0x7a, 0x7c, 0x7e, 0x80, 0x81, 0x80, 0x7f, 0x7f,\n    0x81, 0x81, 0x81, 0x81, 0x81, 0x82, 0x82, 0x82, 0x82, 0x81, 0x80, 0x7f, 0x7f, 0x80, 0x81, 0x82,\n    0x82, 0x82, 0x82, 0x82, 0x81, 0x81, 0x81, 0x81, 0x7f, 0x7f, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d,\n    0x7e, 0x7c, 0x7a, 0x78, 0x77, 0x79, 0x7b, 0x7d, 0x7c, 0x80, 0x83, 0x82, 0x7f, 0x7c, 0x7c, 0x7d,\n    0x7e, 0x7d, 0x7a, 0x79, 0x78, 0x78, 0x79, 0x79, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x77, 0x79, 0x7c, 0x7e, 0x7f, 0x7d, 0x7b, 0x7a, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79,\n    0x7c, 0x7b, 0x78, 0x76, 0x76, 0x76, 0x77, 0x77, 0x7c, 0x7d, 0x7d, 0x7e, 0x7f, 0x80, 0x80, 0x81,\n    0x80, 0x80, 0x80, 0x80, 0x81, 0x81, 0x81, 0x81, 0x81, 0x89, 0x97, 0xa4, 0xad, 0xb1, 0xb1, 0xb0,\n    0xb0, 0xb2, 0xb5, 0xb6, 0xb3, 0xae, 0xa7, 0xa3, 0x97, 0x96, 0x95, 0x95, 0x95, 0x96, 0x97, 0x98,\n    0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x94, 0x94, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95,\n    0x96, 0x95, 0x95, 0x94, 0x94, 0x93, 0x93, 0x93, 0x91, 0x91, 0x90, 0x90, 0x90, 0x8f, 0x8f, 0x8f,\n    0x92, 0x90, 0x92, 0x9a, 0xa5, 0xac, 0xab, 0xa8, 0xa7, 0xa8, 0xa3, 0x94, 0x80, 0x75, 0x77, 0x7c,\n    0x78, 0x77, 0x76, 0x76, 0x76, 0x77, 0x78, 0x79, 0x72, 0x73, 0x73, 0x74, 0x75, 0x76, 0x77, 0x77,\n    0x7a, 0x7e, 0x84, 0x87, 0x86, 0x86, 0x88, 0x8a, 0x8c, 0x8b, 0x89, 0x85, 0x82, 0x80, 0x7e, 0x7d,\n    0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x79, 0x79, 0x7a, 0x7d, 0x83, 0x8b, 0x93, 0x98,\n    0x95, 0x96, 0x97, 0x98, 0x98, 0x98, 0x97, 0x97, 0x94, 0x94, 0x94, 0x93, 0x91, 0x8e, 0x8b, 0x89,\n    0x82, 0x83, 0x84, 0x85, 0x85, 0x84, 0x83, 0x82, 0x84, 0x84, 0x86, 0x86, 0x86, 0x85, 0x83, 0x82,\n    0x84, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x86, 0x85, 0x85, 0x86, 0x86, 0x86, 0x85, 0x84, 0x83,\n    0x80, 0x81, 0x82, 0x84, 0x86, 0x87, 0x89, 0x8a, 0x86, 0x85, 0x84, 0x82, 0x81, 0x81, 0x81, 0x82,\n    0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79,\n    0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7c, 0x7b, 0x7c, 0x7e, 0x80, 0x80, 0x80, 0x80, 0x7f,\n    0x7f, 0x7f, 0x7f, 0x80, 0x80, 0x81, 0x81, 0x81, 0x84, 0x83, 0x81, 0x80, 0x80, 0x81, 0x83, 0x84,\n    0x83, 0x83, 0x83, 0x83, 0x82, 0x82, 0x82, 0x82, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x7e, 0x7c, 0x7a, 0x78, 0x78, 0x79, 0x7b, 0x7c, 0x7d, 0x80, 0x83, 0x82, 0x7f, 0x7c, 0x7c, 0x7e,\n    0x7d, 0x7c, 0x7a, 0x79, 0x78, 0x78, 0x79, 0x79, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7e, 0x7f, 0x80, 0x81, 0x7f, 0x7c, 0x79, 0x77, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79,\n    0x7a, 0x79, 0x78, 0x76, 0x76, 0x77, 0x77, 0x78, 0x7d, 0x7d, 0x7d, 0x7e, 0x7f, 0x80, 0x80, 0x81,\n    0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x81, 0x82, 0x85, 0x8c, 0x95, 0x9f, 0xaa, 0xb2, 0xb6,\n    0xb5, 0xb4, 0xb3, 0xb1, 0xaf, 0xad, 0xab, 0xa9, 0x9c, 0x9a, 0x97, 0x94, 0x93, 0x94, 0x96, 0x97,\n    0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94,\n    0x95, 0x94, 0x94, 0x94, 0x93, 0x93, 0x92, 0x92, 0x91, 0x91, 0x91, 0x90, 0x90, 0x90, 0x8f, 0x8f,\n    0x92, 0x90, 0x92, 0x99, 0xa3, 0xaa, 0xaa, 0xa7, 0xa7, 0xa8, 0xa3, 0x95, 0x82, 0x77, 0x76, 0x7a,\n    0x7d, 0x7d, 0x7d, 0x7c, 0x7a, 0x78, 0x76, 0x75, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x76, 0x76,\n    0x7a, 0x7f, 0x85, 0x87, 0x87, 0x87, 0x88, 0x8a, 0x8c, 0x8b, 0x88, 0x85, 0x82, 0x80, 0x7e, 0x7e,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x7a, 0x7d, 0x81, 0x88, 0x8f, 0x95, 0x98,\n    0x95, 0x96, 0x97, 0x98, 0x98, 0x98, 0x97, 0x96, 0x93, 0x93, 0x93, 0x92, 0x90, 0x8d, 0x8a, 0x89,\n    0x82, 0x83, 0x84, 0x85, 0x85, 0x84, 0x83, 0x82, 0x83, 0x84, 0x85, 0x85, 0x85, 0x84, 0x82, 0x81,\n    0x84, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x86, 0x85, 0x85, 0x86, 0x86, 0x86, 0x85, 0x84, 0x83,\n    0x81, 0x81, 0x83, 0x84, 0x86, 0x88, 0x89, 0x8a, 0x86, 0x85, 0x84, 0x82, 0x81, 0x81, 0x82, 0x82,\n    0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79,\n    0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7d, 0x7e, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x7d, 0x7e, 0x7e, 0x7f, 0x80, 0x81, 0x82, 0x82, 0x85, 0x85, 0x84, 0x83, 0x83, 0x84, 0x85, 0x85,\n    0x85, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x83, 0x82, 0x82, 0x82, 0x83, 0x83, 0x83, 0x83, 0x83,\n    0x7f, 0x7e, 0x7c, 0x7a, 0x7a, 0x7b, 0x7d, 0x7e, 0x7e, 0x81, 0x84, 0x82, 0x7f, 0x7d, 0x7d, 0x7f,\n    0x7d, 0x7c, 0x7a, 0x79, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x83, 0x84, 0x83, 0x82, 0x7f, 0x7b, 0x77, 0x75, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78,\n    0x78, 0x78, 0x77, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x7d, 0x7d, 0x7e, 0x7f, 0x7f, 0x80, 0x80, 0x81,\n    0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x82, 0x80, 0x80, 0x84, 0x8e, 0x9d, 0xac, 0xb6,\n    0xb6, 0xb5, 0xb2, 0xb0, 0xaf, 0xae, 0xaf, 0xb0, 0xa3, 0xa0, 0x9a, 0x95, 0x92, 0x92, 0x94, 0x96,\n    0x94, 0x94, 0x94, 0x94, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93,\n    0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x90, 0x90, 0x90, 0x90,\n    0x91, 0x90, 0x92, 0x97, 0xa0, 0xa6, 0xa7, 0xa7, 0xa7, 0xa8, 0xa4, 0x97, 0x86, 0x79, 0x76, 0x78,\n    0x80, 0x81, 0x82, 0x82, 0x7f, 0x7a, 0x75, 0x71, 0x76, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74,\n    0x7b, 0x80, 0x85, 0x88, 0x87, 0x87, 0x89, 0x8b, 0x8b, 0x8a, 0x87, 0x83, 0x81, 0x7f, 0x7e, 0x7e,\n    0x7f, 0x7f, 0x7e, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x79, 0x7c, 0x82, 0x89, 0x8f, 0x93, 0x96, 0x98,\n    0x95, 0x96, 0x97, 0x97, 0x97, 0x97, 0x96, 0x95, 0x91, 0x91, 0x90, 0x8f, 0x8e, 0x8b, 0x89, 0x88,\n    0x83, 0x83, 0x84, 0x85, 0x85, 0x84, 0x83, 0x83, 0x82, 0x83, 0x83, 0x84, 0x83, 0x82, 0x81, 0x81,\n    0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x85, 0x85, 0x86, 0x86, 0x86, 0x85, 0x84, 0x83,\n    0x82, 0x82, 0x84, 0x85, 0x87, 0x88, 0x8a, 0x8a, 0x86, 0x85, 0x84, 0x82, 0x82, 0x82, 0x82, 0x83,\n    0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x7a,\n    0x7c, 0x7d, 0x7e, 0x7f, 0x7f, 0x7e, 0x7e, 0x7d, 0x7e, 0x7f, 0x7f, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x7f, 0x7f, 0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86,\n    0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85,\n    0x83, 0x82, 0x81, 0x7f, 0x7f, 0x80, 0x81, 0x81, 0x7f, 0x82, 0x84, 0x82, 0x7f, 0x7d, 0x7e, 0x80,\n    0x7c, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x80, 0x80, 0x80, 0x7f, 0x7d, 0x7a, 0x77, 0x76, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78,\n    0x77, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7e, 0x7e, 0x7f, 0x7f, 0x7f, 0x80, 0x80, 0x80,\n    0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x80, 0x7d, 0x7b, 0x7d, 0x85, 0x90, 0x9d, 0xa5,\n    0xae, 0xb0, 0xb3, 0xb6, 0xb6, 0xb5, 0xb3, 0xb1, 0xab, 0xa6, 0x9f, 0x97, 0x93, 0x92, 0x94, 0x95,\n    0x94, 0x94, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92,\n    0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x92, 0x91, 0x91, 0x91, 0x91, 0x90, 0x90, 0x90,\n    0x91, 0x90, 0x92, 0x95, 0x9b, 0xa0, 0xa4, 0xa6, 0xa7, 0xa8, 0xa4, 0x9a, 0x8b, 0x7e, 0x77, 0x75,\n    0x7a, 0x7c, 0x80, 0x82, 0x80, 0x7b, 0x75, 0x71, 0x77, 0x77, 0x76, 0x75, 0x74, 0x73, 0x73, 0x72,\n    0x7b, 0x80, 0x86, 0x88, 0x88, 0x88, 0x89, 0x8c, 0x8b, 0x89, 0x85, 0x82, 0x7f, 0x7e, 0x7e, 0x7e,\n    0x7f, 0x7f, 0x7e, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x81, 0x88, 0x90, 0x95, 0x98, 0x98, 0x97,\n    0x96, 0x96, 0x97, 0x97, 0x96, 0x95, 0x94, 0x93, 0x8e, 0x8e, 0x8d, 0x8c, 0x8b, 0x8a, 0x88, 0x88,\n    0x83, 0x84, 0x85, 0x85, 0x85, 0x85, 0x84, 0x83, 0x82, 0x82, 0x82, 0x82, 0x82, 0x81, 0x81, 0x80,\n    0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x85, 0x84, 0x83,\n    0x83, 0x83, 0x84, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x86, 0x85, 0x84, 0x83, 0x82, 0x82, 0x83, 0x84,\n    0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x78, 0x7a, 0x7b, 0x7c,\n    0x80, 0x81, 0x82, 0x83, 0x82, 0x82, 0x81, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x81, 0x81, 0x81,\n    0x82, 0x82, 0x83, 0x84, 0x85, 0x85, 0x86, 0x86, 0x84, 0x84, 0x84, 0x85, 0x85, 0x84, 0x84, 0x84,\n    0x84, 0x84, 0x83, 0x83, 0x83, 0x83, 0x82, 0x82, 0x83, 0x83, 0x83, 0x84, 0x84, 0x85, 0x85, 0x85,\n    0x86, 0x86, 0x85, 0x84, 0x84, 0x84, 0x84, 0x85, 0x80, 0x82, 0x83, 0x81, 0x7e, 0x7c, 0x7e, 0x80,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7a, 0x79, 0x79, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78,\n    0x77, 0x78, 0x79, 0x7a, 0x7c, 0x7d, 0x7d, 0x7d, 0x7f, 0x7f, 0x7f, 0x7f, 0x80, 0x80, 0x80, 0x80,\n    0x80, 0x7f, 0x7f, 0x7f, 0x7e, 0x7e, 0x7d, 0x7d, 0x7c, 0x7d, 0x7e, 0x80, 0x83, 0x86, 0x89, 0x8b,\n    0x9d, 0xa5, 0xb1, 0xba, 0xbe, 0xba, 0xb4, 0xaf, 0xb1, 0xac, 0xa5, 0x9e, 0x98, 0x96, 0x95, 0x96,\n    0x94, 0x94, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91,\n    0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x92, 0x92, 0x92, 0x91, 0x91, 0x91, 0x90, 0x90,\n    0x90, 0x91, 0x91, 0x93, 0x95, 0x9a, 0xa0, 0xa5, 0xa7, 0xa7, 0xa5, 0x9e, 0x92, 0x85, 0x7a, 0x75,\n    0x70, 0x73, 0x79, 0x7d, 0x7e, 0x7c, 0x78, 0x74, 0x78, 0x77, 0x76, 0x75, 0x74, 0x73, 0x72, 0x72,\n    0x7b, 0x80, 0x85, 0x88, 0x87, 0x87, 0x89, 0x8b, 0x8a, 0x87, 0x84, 0x80, 0x7e, 0x7d, 0x7e, 0x7e,\n    0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x82, 0x87, 0x8e, 0x95, 0x99, 0x9a, 0x99, 0x98,\n    0x96, 0x96, 0x97, 0x96, 0x96, 0x94, 0x92, 0x91, 0x8b, 0x8b, 0x8a, 0x89, 0x88, 0x87, 0x87, 0x87,\n    0x83, 0x84, 0x85, 0x86, 0x86, 0x85, 0x84, 0x83, 0x82, 0x82, 0x82, 0x81, 0x81, 0x81, 0x81, 0x81,\n    0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x85, 0x84, 0x83,\n    0x83, 0x83, 0x84, 0x85, 0x87, 0x88, 0x89, 0x89, 0x86, 0x85, 0x84, 0x83, 0x83, 0x83, 0x84, 0x84,\n    0x79, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x79, 0x7b, 0x7d, 0x7f,\n    0x85, 0x86, 0x87, 0x87, 0x87, 0x86, 0x85, 0x84, 0x82, 0x81, 0x81, 0x80, 0x80, 0x81, 0x81, 0x82,\n    0x83, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x80, 0x81, 0x82, 0x82, 0x82, 0x82, 0x81, 0x80,\n    0x82, 0x81, 0x81, 0x81, 0x81, 0x80, 0x80, 0x80, 0x80, 0x80, 0x81, 0x81, 0x82, 0x82, 0x83, 0x83,\n    0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x84, 0x84, 0x7f, 0x81, 0x82, 0x7f, 0x7c, 0x7b, 0x7d, 0x80,\n    0x7d, 0x7d, 0x7e, 0x7f, 0x7f, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d,\n    0x77, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79,\n    0x7a, 0x7a, 0x7c, 0x7d, 0x7e, 0x7f, 0x7f, 0x7e, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x7f, 0x7f, 0x7f, 0x7e, 0x7d, 0x7d, 0x7c, 0x7c, 0x7b, 0x7d, 0x81, 0x83, 0x83, 0x81, 0x7d, 0x7b,\n    0x8c, 0x95, 0xa4, 0xb1, 0xb8, 0xb8, 0xb3, 0xaf, 0xb3, 0xb0, 0xac, 0xa7, 0xa1, 0x9d, 0x9a, 0x98,\n    0x94, 0x94, 0x94, 0x94, 0x93, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92,\n    0x90, 0x90, 0x91, 0x91, 0x91, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x91, 0x91, 0x91, 0x90,\n    0x8f, 0x91, 0x91, 0x91, 0x91, 0x95, 0x9d, 0xa4, 0xa6, 0xa6, 0xa6, 0xa2, 0x99, 0x8c, 0x7f, 0x76,\n    0x6c, 0x6f, 0x74, 0x78, 0x7a, 0x7a, 0x79, 0x77, 0x77, 0x77, 0x76, 0x75, 0x74, 0x73, 0x73, 0x72,\n    0x7a, 0x7f, 0x84, 0x87, 0x86, 0x86, 0x88, 0x8a, 0x89, 0x86, 0x82, 0x7e, 0x7c, 0x7c, 0x7d, 0x7e,\n    0x7c, 0x7b, 0x79, 0x79, 0x79, 0x7b, 0x7e, 0x7f, 0x8a, 0x8d, 0x92, 0x97, 0x9a, 0x9a, 0x99, 0x98,\n    0x96, 0x97, 0x97, 0x96, 0x95, 0x93, 0x91, 0x90, 0x89, 0x88, 0x87, 0x86, 0x85, 0x86, 0x86, 0x87,\n    0x84, 0x84, 0x85, 0x86, 0x86, 0x85, 0x84, 0x84, 0x83, 0x83, 0x82, 0x81, 0x80, 0x81, 0x81, 0x82,\n    0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x86, 0x85, 0x84, 0x83,\n    0x82, 0x83, 0x83, 0x84, 0x86, 0x86, 0x87, 0x88, 0x85, 0x85, 0x84, 0x83, 0x83, 0x84, 0x85, 0x85,\n    0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7c, 0x7a, 0x79, 0x7a, 0x7c, 0x7f, 0x81,\n    0x8a, 0x8b, 0x8b, 0x8c, 0x8b, 0x8a, 0x89, 0x88, 0x83, 0x82, 0x81, 0x80, 0x80, 0x81, 0x82, 0x83,\n    0x81, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x7e, 0x7e, 0x7c, 0x7d, 0x7e, 0x7f, 0x7f, 0x7e, 0x7d, 0x7c,\n    0x7f, 0x7f, 0x7f, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7c, 0x7d, 0x7d, 0x7e, 0x7f, 0x80, 0x80, 0x81,\n    0x82, 0x82, 0x82, 0x82, 0x82, 0x81, 0x80, 0x80, 0x7f, 0x80, 0x80, 0x7e, 0x7a, 0x79, 0x7c, 0x7f,\n    0x7e, 0x7f, 0x80, 0x81, 0x81, 0x80, 0x7f, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f,\n    0x7e, 0x7e, 0x7d, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a,\n    0x7c, 0x7d, 0x7f, 0x80, 0x81, 0x81, 0x80, 0x7f, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x7f, 0x7f, 0x7e, 0x7e, 0x7d, 0x7c, 0x7b, 0x7b, 0x7c, 0x7d, 0x7f, 0x80, 0x7f, 0x7e, 0x7d, 0x7c,\n    0x80, 0x86, 0x90, 0x9c, 0xa6, 0xae, 0xb2, 0xb4, 0xb2, 0xb3, 0xb2, 0xb0, 0xab, 0xa4, 0x9e, 0x9a,\n    0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x94, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92,\n    0x91, 0x91, 0x91, 0x92, 0x92, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x92, 0x91, 0x91, 0x91, 0x91,\n    0x8e, 0x91, 0x91, 0x8f, 0x8d, 0x91, 0x9a, 0xa3, 0xa5, 0xa6, 0xa6, 0xa5, 0x9f, 0x92, 0x83, 0x79,\n    0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x78, 0x78, 0x76, 0x76, 0x76, 0x75, 0x74, 0x74, 0x74, 0x73,\n    0x79, 0x7e, 0x83, 0x86, 0x85, 0x85, 0x87, 0x89, 0x88, 0x85, 0x81, 0x7d, 0x7b, 0x7b, 0x7d, 0x7f,\n    0x7d, 0x7c, 0x7b, 0x7a, 0x7c, 0x7f, 0x83, 0x85, 0x92, 0x93, 0x95, 0x97, 0x98, 0x99, 0x99, 0x99,\n    0x97, 0x97, 0x97, 0x96, 0x94, 0x92, 0x90, 0x8e, 0x87, 0x86, 0x84, 0x83, 0x83, 0x84, 0x85, 0x86,\n    0x84, 0x85, 0x86, 0x86, 0x86, 0x86, 0x85, 0x84, 0x85, 0x84, 0x82, 0x81, 0x80, 0x81, 0x82, 0x83,\n    0x86, 0x86, 0x86, 0x85, 0x85, 0x84, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x86, 0x85, 0x84, 0x83,\n    0x82, 0x82, 0x83, 0x83, 0x84, 0x85, 0x86, 0x86, 0x85, 0x85, 0x84, 0x83, 0x83, 0x84, 0x85, 0x86,\n    0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7e, 0x7d, 0x7b, 0x7a, 0x7b, 0x7d, 0x80, 0x82,\n    0x8d, 0x8e, 0x8e, 0x8e, 0x8e, 0x8c, 0x8b, 0x8a, 0x84, 0x83, 0x81, 0x80, 0x80, 0x81, 0x82, 0x83,\n    0x7e, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7c, 0x7d, 0x7d, 0x7c, 0x7a, 0x79,\n    0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7e, 0x7f,\n    0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7c, 0x7c, 0x7e, 0x7f, 0x7f, 0x7d, 0x79, 0x79, 0x7c, 0x7f,\n    0x7e, 0x80, 0x81, 0x83, 0x83, 0x82, 0x81, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x87, 0x85, 0x83, 0x80, 0x7d, 0x7b, 0x7a, 0x79, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b,\n    0x7e, 0x7f, 0x81, 0x82, 0x82, 0x81, 0x80, 0x7f, 0x81, 0x81, 0x81, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x7f, 0x7f, 0x7e, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7e, 0x7d, 0x7b, 0x7a, 0x7b, 0x7e, 0x81, 0x84,\n    0x7b, 0x7d, 0x80, 0x88, 0x95, 0xa4, 0xb1, 0xba, 0xb1, 0xb3, 0xb5, 0xb5, 0xb1, 0xa9, 0xa1, 0x9c,\n    0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x94, 0x94, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93,\n    0x91, 0x91, 0x92, 0x92, 0x93, 0x93, 0x94, 0x94, 0x93, 0x92, 0x92, 0x92, 0x92, 0x91, 0x91, 0x91,\n    0x8e, 0x91, 0x91, 0x8e, 0x8b, 0x8e, 0x99, 0xa2, 0xa4, 0xa5, 0xa7, 0xa7, 0xa2, 0x96, 0x86, 0x7a,\n    0x7b, 0x7a, 0x78, 0x77, 0x76, 0x76, 0x76, 0x77, 0x75, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74,\n    0x78, 0x7d, 0x82, 0x85, 0x84, 0x84, 0x86, 0x88, 0x88, 0x85, 0x80, 0x7c, 0x7a, 0x7b, 0x7d, 0x7f,\n    0x7e, 0x7d, 0x7d, 0x7d, 0x7f, 0x83, 0x87, 0x89, 0x97, 0x97, 0x96, 0x96, 0x97, 0x98, 0x99, 0x99,\n    0x97, 0x97, 0x97, 0x96, 0x94, 0x91, 0x8f, 0x8e, 0x85, 0x84, 0x83, 0x82, 0x82, 0x83, 0x85, 0x86,\n    0x84, 0x85, 0x86, 0x86, 0x86, 0x86, 0x85, 0x84, 0x85, 0x84, 0x82, 0x81, 0x81, 0x82, 0x83, 0x84,\n    0x86, 0x86, 0x86, 0x85, 0x85, 0x84, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x86, 0x85, 0x84, 0x83,\n    0x81, 0x81, 0x82, 0x83, 0x83, 0x84, 0x85, 0x85, 0x85, 0x85, 0x84, 0x83, 0x84, 0x84, 0x86, 0x86,\n    0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7c, 0x7d, 0x7e, 0x80, 0x81, 0x81, 0x80, 0x80,\n    0x87, 0x86, 0x85, 0x84, 0x82, 0x82, 0x82, 0x82, 0x7e, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x79,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x77, 0x79, 0x7c, 0x7e, 0x7f, 0x7d, 0x7b, 0x7a,\n    0x77, 0x78, 0x79, 0x79, 0x79, 0x79, 0x78, 0x77, 0x7a, 0x7b, 0x7c, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d,\n    0x7e, 0x7d, 0x7c, 0x7b, 0x7b, 0x7d, 0x7e, 0x80, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x79, 0x79,\n    0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7d, 0x7e, 0x7e, 0x7e, 0x7f,\n    0x81, 0x81, 0x81, 0x82, 0x83, 0x83, 0x84, 0x84, 0x81, 0x81, 0x82, 0x82, 0x82, 0x81, 0x81, 0x80,\n    0x7e, 0x7f, 0x81, 0x82, 0x82, 0x81, 0x7f, 0x7e, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x78, 0x78, 0x77, 0x76, 0x77, 0x78, 0x7a, 0x7b,\n    0x80, 0x7e, 0x7d, 0x7f, 0x86, 0x8f, 0x99, 0xa0, 0xb5, 0xb2, 0xb0, 0xb0, 0xb2, 0xb1, 0xad, 0xa9,\n    0xa5, 0xa2, 0x9e, 0x98, 0x95, 0x92, 0x92, 0x92, 0x93, 0x94, 0x96, 0x96, 0x96, 0x93, 0x91, 0x8f,\n    0x94, 0x94, 0x94, 0x93, 0x92, 0x91, 0x91, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90,\n    0x90, 0x8f, 0x8d, 0x8d, 0x8f, 0x93, 0x98, 0x9b, 0xa4, 0xaa, 0xaa, 0xa4, 0xa3, 0xa0, 0x8f, 0x7a,\n    0x76, 0x75, 0x73, 0x72, 0x73, 0x74, 0x76, 0x78, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74,\n    0x76, 0x79, 0x7e, 0x83, 0x86, 0x87, 0x87, 0x86, 0x87, 0x84, 0x81, 0x7e, 0x7c, 0x7c, 0x7e, 0x7f,\n    0x7d, 0x7b, 0x79, 0x79, 0x7e, 0x86, 0x8e, 0x93, 0x97, 0x97, 0x97, 0x97, 0x98, 0x98, 0x98, 0x98,\n    0x99, 0x97, 0x95, 0x95, 0x95, 0x92, 0x8d, 0x88, 0x84, 0x84, 0x85, 0x86, 0x87, 0x87, 0x87, 0x87,\n    0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x83, 0x83, 0x82, 0x82, 0x81, 0x81, 0x80, 0x80,\n    0x83, 0x83, 0x84, 0x85, 0x86, 0x87, 0x87, 0x88, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86,\n    0x84, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x87, 0x84, 0x84, 0x83, 0x83, 0x82, 0x81, 0x80, 0x80,\n    0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7c, 0x7d, 0x7e, 0x80, 0x80, 0x80, 0x80, 0x7f,\n    0x81, 0x80, 0x7f, 0x7f, 0x7e, 0x7e, 0x7e, 0x7e, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x79,\n    0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x79, 0x7b, 0x7d, 0x7f, 0x7f, 0x7d, 0x7b, 0x7a,\n    0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x7a, 0x7b, 0x7d, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d,\n    0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7c, 0x7e, 0x7f, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x79,\n    0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7e,\n    0x7f, 0x7f, 0x7f, 0x80, 0x81, 0x81, 0x82, 0x82, 0x83, 0x83, 0x84, 0x84, 0x84, 0x83, 0x82, 0x82,\n    0x7e, 0x7f, 0x81, 0x82, 0x82, 0x81, 0x7f, 0x7e, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x78, 0x79, 0x7a,\n    0x7f, 0x7e, 0x7d, 0x7e, 0x81, 0x87, 0x8d, 0x91, 0x9d, 0xaa, 0xb7, 0xb9, 0xb2, 0xac, 0xad, 0xb2,\n    0xaa, 0xa7, 0xa2, 0x9d, 0x98, 0x95, 0x93, 0x92, 0x92, 0x92, 0x93, 0x94, 0x95, 0x95, 0x95, 0x95,\n    0x93, 0x93, 0x93, 0x92, 0x92, 0x91, 0x91, 0x91, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90,\n    0x90, 0x8f, 0x8d, 0x8d, 0x8f, 0x93, 0x97, 0x9a, 0xa3, 0xa9, 0xa9, 0xa4, 0xa3, 0xa0, 0x8f, 0x7a,\n    0x77, 0x75, 0x74, 0x72, 0x73, 0x74, 0x76, 0x77, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74,\n    0x76, 0x79, 0x7d, 0x82, 0x85, 0x86, 0x86, 0x86, 0x86, 0x84, 0x81, 0x7e, 0x7d, 0x7d, 0x7e, 0x7f,\n    0x7d, 0x7b, 0x79, 0x7a, 0x7e, 0x86, 0x8e, 0x94, 0x96, 0x96, 0x96, 0x97, 0x97, 0x97, 0x98, 0x98,\n    0x99, 0x97, 0x95, 0x95, 0x95, 0x92, 0x8d, 0x88, 0x84, 0x85, 0x85, 0x86, 0x86, 0x87, 0x87, 0x87,\n    0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x84, 0x83, 0x83, 0x83, 0x82, 0x82, 0x81, 0x81,\n    0x83, 0x84, 0x84, 0x85, 0x86, 0x87, 0x87, 0x88, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86,\n    0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x87, 0x87, 0x85, 0x85, 0x84, 0x83, 0x83, 0x82, 0x81, 0x81,\n    0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7f, 0x80, 0x80, 0x7f, 0x7f, 0x7e,\n    0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79,\n    0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7c, 0x7e, 0x7f, 0x7e, 0x7d, 0x7b, 0x7a,\n    0x7d, 0x7d, 0x7e, 0x7f, 0x7f, 0x7e, 0x7d, 0x7d, 0x7b, 0x7c, 0x7d, 0x7e, 0x7e, 0x7e, 0x7d, 0x7c,\n    0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7c, 0x7d, 0x7e, 0x7e, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c,\n    0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7e, 0x7f, 0x7f, 0x82, 0x83, 0x84, 0x84, 0x84, 0x83, 0x82, 0x81,\n    0x7f, 0x80, 0x80, 0x81, 0x81, 0x80, 0x80, 0x7f, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x79, 0x79,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7e, 0x7f, 0x80, 0x88, 0x99, 0xad, 0xb5, 0xb2, 0xae, 0xaf, 0xb3,\n    0xb2, 0xaf, 0xab, 0xa5, 0xa0, 0x9b, 0x98, 0x96, 0x93, 0x92, 0x90, 0x90, 0x92, 0x95, 0x98, 0x9a,\n    0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90,\n    0x90, 0x8f, 0x8e, 0x8d, 0x8f, 0x92, 0x96, 0x99, 0xa0, 0xa6, 0xa7, 0xa2, 0xa2, 0xa0, 0x90, 0x7b,\n    0x77, 0x76, 0x74, 0x72, 0x72, 0x74, 0x76, 0x77, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74,\n    0x76, 0x79, 0x7c, 0x80, 0x83, 0x84, 0x84, 0x84, 0x86, 0x84, 0x81, 0x7e, 0x7d, 0x7d, 0x7e, 0x7f,\n    0x7c, 0x7b, 0x79, 0x7b, 0x80, 0x87, 0x8f, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x97, 0x97, 0x97,\n    0x99, 0x96, 0x95, 0x95, 0x95, 0x93, 0x8d, 0x88, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86,\n    0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83,\n    0x84, 0x84, 0x85, 0x85, 0x86, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86,\n    0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x87, 0x88, 0x86, 0x86, 0x85, 0x85, 0x84, 0x84, 0x83, 0x83,\n    0x79, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7e, 0x7d, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x7e, 0x7d,\n    0x76, 0x76, 0x77, 0x78, 0x78, 0x78, 0x78, 0x77, 0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78,\n    0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7e, 0x7e, 0x7e, 0x7c, 0x7b, 0x7a,\n    0x7c, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7c, 0x7b, 0x7b, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7f, 0x80, 0x81, 0x80, 0x7e, 0x7d,\n    0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7e, 0x7d, 0x7b, 0x7a, 0x79, 0x78, 0x78,\n    0x77, 0x78, 0x7a, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x83, 0x87, 0x91, 0x9e, 0xaa, 0xb0, 0xaf, 0xac,\n    0xb8, 0xb6, 0xb3, 0xaf, 0xaa, 0xa5, 0xa1, 0x9f, 0x99, 0x96, 0x92, 0x8e, 0x8e, 0x90, 0x94, 0x97,\n    0x90, 0x90, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90,\n    0x90, 0x8f, 0x8e, 0x8e, 0x8f, 0x92, 0x95, 0x97, 0x9d, 0xa4, 0xa5, 0xa1, 0xa2, 0xa1, 0x91, 0x7c,\n    0x78, 0x76, 0x74, 0x73, 0x72, 0x73, 0x75, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74, 0x74,\n    0x76, 0x78, 0x7b, 0x7e, 0x80, 0x82, 0x82, 0x82, 0x84, 0x82, 0x80, 0x7e, 0x7d, 0x7d, 0x7d, 0x7e,\n    0x7b, 0x7a, 0x7a, 0x7c, 0x81, 0x89, 0x91, 0x96, 0x94, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x96,\n    0x98, 0x96, 0x94, 0x95, 0x95, 0x93, 0x8e, 0x89, 0x86, 0x85, 0x85, 0x84, 0x84, 0x85, 0x86, 0x86,\n    0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85,\n    0x85, 0x85, 0x85, 0x86, 0x86, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86,\n    0x87, 0x87, 0x87, 0x87, 0x87, 0x88, 0x88, 0x88, 0x87, 0x87, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85,\n    0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7e, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x7e, 0x7c, 0x7b,\n    0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7a, 0x79, 0x78, 0x75, 0x75, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77,\n    0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7c, 0x7c, 0x7b, 0x7a,\n    0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7b, 0x7a, 0x79,\n    0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79,\n    0x77, 0x77, 0x77, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x76, 0x78, 0x7b, 0x7d, 0x7e, 0x7e, 0x7c, 0x7b,\n    0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x7d, 0x7c, 0x7a, 0x79, 0x78,\n    0x73, 0x76, 0x79, 0x7c, 0x7e, 0x7e, 0x7d, 0x7b, 0x7f, 0x7e, 0x7f, 0x86, 0x93, 0x9f, 0xa6, 0xa9,\n    0xb7, 0xb7, 0xb6, 0xb5, 0xb2, 0xae, 0xab, 0xa9, 0xa3, 0x9f, 0x98, 0x92, 0x8e, 0x8e, 0x8f, 0x90,\n    0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f,\n    0x91, 0x90, 0x8f, 0x8e, 0x8f, 0x91, 0x93, 0x95, 0x9b, 0xa2, 0xa4, 0xa1, 0xa2, 0xa2, 0x93, 0x7f,\n    0x78, 0x77, 0x74, 0x73, 0x72, 0x73, 0x75, 0x76, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75,\n    0x77, 0x78, 0x7a, 0x7c, 0x7e, 0x7f, 0x80, 0x80, 0x81, 0x80, 0x7f, 0x7e, 0x7d, 0x7c, 0x7c, 0x7c,\n    0x7a, 0x7a, 0x7a, 0x7d, 0x83, 0x8b, 0x92, 0x97, 0x94, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x96,\n    0x97, 0x95, 0x94, 0x95, 0x95, 0x93, 0x8e, 0x89, 0x87, 0x86, 0x84, 0x83, 0x83, 0x84, 0x85, 0x86,\n    0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86,\n    0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86,\n    0x88, 0x88, 0x88, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x86,\n    0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x80, 0x7f, 0x7e, 0x7d, 0x7b, 0x7a,\n    0x79, 0x7a, 0x7c, 0x7d, 0x7d, 0x7c, 0x7a, 0x79, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76,\n    0x77, 0x77, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x77, 0x77, 0x78, 0x79, 0x79, 0x78, 0x77, 0x77, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x79, 0x78, 0x77,\n    0x77, 0x78, 0x79, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78,\n    0x76, 0x77, 0x77, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x76, 0x79, 0x7d, 0x81, 0x83, 0x84, 0x83, 0x82,\n    0x81, 0x80, 0x80, 0x7f, 0x7f, 0x80, 0x80, 0x81, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7e, 0x7c, 0x7a, 0x79,\n    0x75, 0x76, 0x79, 0x7b, 0x7d, 0x7f, 0x7f, 0x7f, 0x77, 0x7d, 0x80, 0x7e, 0x7c, 0x84, 0x96, 0xa5,\n    0xab, 0xad, 0xb1, 0xb4, 0xb5, 0xb4, 0xb2, 0xb0, 0xad, 0xaa, 0xa3, 0x9d, 0x97, 0x93, 0x92, 0x91,\n    0x94, 0x94, 0x93, 0x92, 0x92, 0x91, 0x91, 0x90, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f,\n    0x91, 0x90, 0x8f, 0x8f, 0x8f, 0x90, 0x92, 0x93, 0x9a, 0xa1, 0xa3, 0xa1, 0xa3, 0xa4, 0x95, 0x81,\n    0x79, 0x77, 0x75, 0x73, 0x72, 0x73, 0x74, 0x75, 0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75,\n    0x77, 0x77, 0x78, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7e, 0x7e, 0x7d, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a,\n    0x79, 0x79, 0x7a, 0x7e, 0x84, 0x8c, 0x93, 0x98, 0x95, 0x95, 0x96, 0x96, 0x96, 0x97, 0x97, 0x97,\n    0x97, 0x95, 0x94, 0x95, 0x96, 0x94, 0x8f, 0x8a, 0x87, 0x86, 0x84, 0x82, 0x82, 0x83, 0x85, 0x86,\n    0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x87, 0x87,\n    0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86,\n    0x88, 0x87, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86,\n    0x78, 0x78, 0x79, 0x7b, 0x7c, 0x7e, 0x7f, 0x7f, 0x80, 0x80, 0x80, 0x7f, 0x7e, 0x7c, 0x7a, 0x79,\n    0x7a, 0x7c, 0x7d, 0x7e, 0x7e, 0x7c, 0x79, 0x77, 0x78, 0x78, 0x77, 0x76, 0x76, 0x75, 0x75, 0x75,\n    0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x7c, 0x7c,\n    0x78, 0x78, 0x79, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x77, 0x77, 0x78, 0x78, 0x78, 0x77, 0x75, 0x75,\n    0x76, 0x77, 0x78, 0x7a, 0x7a, 0x79, 0x78, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79,\n    0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x78,\n    0x77, 0x77, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7d, 0x81, 0x86, 0x8c, 0x90, 0x91, 0x90, 0x8f,\n    0x82, 0x81, 0x7f, 0x7e, 0x7e, 0x7f, 0x81, 0x82, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x80, 0x80, 0x81, 0x80, 0x7e, 0x7c, 0x7b,\n    0x7a, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7c, 0x7c, 0x78, 0x7e, 0x82, 0x7e, 0x78, 0x7a, 0x86, 0x92,\n    0x9a, 0x9e, 0xa5, 0xac, 0xb1, 0xb3, 0xb3, 0xb3, 0xb3, 0xb2, 0xaf, 0xaa, 0xa5, 0xa1, 0x9d, 0x9b,\n    0x97, 0x96, 0x95, 0x94, 0x93, 0x91, 0x90, 0x90, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f,\n    0x91, 0x90, 0x90, 0x8f, 0x8f, 0x90, 0x91, 0x91, 0x99, 0xa0, 0xa3, 0xa2, 0xa5, 0xa6, 0x98, 0x84,\n    0x79, 0x77, 0x75, 0x73, 0x72, 0x73, 0x74, 0x75, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75,\n    0x77, 0x77, 0x77, 0x78, 0x79, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x78,\n    0x78, 0x79, 0x7b, 0x7f, 0x85, 0x8d, 0x94, 0x99, 0x96, 0x96, 0x96, 0x97, 0x97, 0x97, 0x98, 0x98,\n    0x96, 0x95, 0x93, 0x94, 0x96, 0x94, 0x8f, 0x8a, 0x88, 0x86, 0x84, 0x82, 0x81, 0x82, 0x84, 0x86,\n    0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x86, 0x87,\n    0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86,\n    0x87, 0x87, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86,\n    0x78, 0x78, 0x79, 0x7b, 0x7c, 0x7e, 0x7f, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7e, 0x7c, 0x7a, 0x78,\n    0x7a, 0x7b, 0x7d, 0x7e, 0x7d, 0x7a, 0x77, 0x75, 0x79, 0x79, 0x78, 0x77, 0x76, 0x75, 0x74, 0x74,\n    0x74, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x76, 0x77, 0x78, 0x7a, 0x7c, 0x7d,\n    0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x76, 0x76, 0x77, 0x77, 0x77, 0x75, 0x74, 0x73,\n    0x75, 0x76, 0x78, 0x79, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78,\n    0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x78,\n    0x78, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x85, 0x89, 0x8f, 0x96, 0x9a, 0x9c, 0x9c, 0x9b,\n    0x82, 0x81, 0x7f, 0x7e, 0x7e, 0x7f, 0x81, 0x82, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x81, 0x81, 0x81, 0x7f, 0x7d, 0x7c,\n    0x7f, 0x7d, 0x7a, 0x77, 0x75, 0x75, 0x77, 0x78, 0x80, 0x7e, 0x7d, 0x7e, 0x81, 0x81, 0x7e, 0x7a,\n    0x8d, 0x92, 0x9c, 0xa5, 0xad, 0xb1, 0xb3, 0xb3, 0xb6, 0xb6, 0xb6, 0xb4, 0xb1, 0xac, 0xa8, 0xa5,\n    0x99, 0x98, 0x97, 0x95, 0x93, 0x91, 0x90, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f,\n    0x91, 0x90, 0x90, 0x90, 0x8f, 0x90, 0x90, 0x90, 0x99, 0xa0, 0xa4, 0xa2, 0xa5, 0xa7, 0x99, 0x86,\n    0x79, 0x78, 0x75, 0x73, 0x72, 0x72, 0x74, 0x75, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x75,\n    0x77, 0x77, 0x77, 0x77, 0x78, 0x7a, 0x7b, 0x7b, 0x79, 0x7a, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x77,\n    0x77, 0x78, 0x7b, 0x7f, 0x86, 0x8e, 0x95, 0x99, 0x97, 0x97, 0x97, 0x97, 0x98, 0x98, 0x98, 0x98,\n    0x96, 0x94, 0x93, 0x94, 0x96, 0x94, 0x8f, 0x8b, 0x89, 0x87, 0x84, 0x81, 0x81, 0x82, 0x84, 0x86,\n    0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x84, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x86,\n    0x88, 0x88, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86,\n    0x87, 0x86, 0x86, 0x85, 0x85, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86,\n    0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x7e, 0x7c, 0x79, 0x77, 0x76,\n    0x7c, 0x7a, 0x78, 0x75, 0x73, 0x72, 0x72, 0x72, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73,\n    0x73, 0x73, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x77, 0x76, 0x75, 0x75, 0x75, 0x77, 0x79, 0x7a,\n    0x72, 0x73, 0x74, 0x76, 0x78, 0x7a, 0x7b, 0x7c, 0x78, 0x78, 0x78, 0x77, 0x77, 0x76, 0x76, 0x76,\n    0x73, 0x75, 0x77, 0x7a, 0x7a, 0x7a, 0x78, 0x77, 0x73, 0x75, 0x78, 0x7a, 0x7b, 0x7a, 0x79, 0x77,\n    0x76, 0x77, 0x79, 0x7a, 0x7a, 0x79, 0x78, 0x77, 0x79, 0x79, 0x7a, 0x7a, 0x79, 0x77, 0x75, 0x74,\n    0x78, 0x78, 0x78, 0x78, 0x7a, 0x7c, 0x7e, 0x80, 0x96, 0x9a, 0xa1, 0xa6, 0xa9, 0xa8, 0xa6, 0xa3,\n    0x9e, 0x96, 0x8c, 0x84, 0x82, 0x81, 0x80, 0x7e, 0x82, 0x80, 0x7f, 0x81, 0x83, 0x83, 0x7f, 0x7b,\n    0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x7f, 0x7e, 0x7d, 0x7b, 0x79, 0x78, 0x76, 0x76, 0x77, 0x77, 0x79, 0x7a, 0x7c, 0x7e, 0x7f, 0x80,\n    0x79, 0x7c, 0x82, 0x8b, 0x98, 0xa5, 0xb0, 0xb6, 0xad, 0xb1, 0xb6, 0xb9, 0xba, 0xb6, 0xb1, 0xae,\n    0xaa, 0xa8, 0xa5, 0xa1, 0x9d, 0x9a, 0x97, 0x96, 0x98, 0x96, 0x93, 0x8f, 0x8d, 0x8c, 0x8b, 0x8b,\n    0x8c, 0x8d, 0x8e, 0x8f, 0x90, 0x92, 0x92, 0x93, 0x9a, 0xa0, 0xa2, 0xa0, 0xa5, 0xa9, 0x9d, 0x8c,\n    0x7b, 0x79, 0x76, 0x73, 0x72, 0x73, 0x75, 0x76, 0x78, 0x78, 0x77, 0x76, 0x75, 0x76, 0x77, 0x77,\n    0x75, 0x75, 0x75, 0x76, 0x76, 0x77, 0x77, 0x78, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x79,\n    0x7b, 0x7a, 0x7b, 0x81, 0x8a, 0x92, 0x95, 0x96, 0x97, 0x97, 0x97, 0x96, 0x96, 0x96, 0x95, 0x95,\n    0x92, 0x94, 0x95, 0x95, 0x94, 0x91, 0x8d, 0x8b, 0x89, 0x88, 0x86, 0x85, 0x84, 0x83, 0x83, 0x84,\n    0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x84, 0x85, 0x86, 0x86, 0x86, 0x86, 0x85, 0x84,\n    0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x86, 0x86, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88,\n    0x85, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85,\n    0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7e, 0x7e, 0x7f, 0x80, 0x80, 0x80, 0x7f, 0x7d, 0x7b, 0x79, 0x77,\n    0x7a, 0x79, 0x76, 0x74, 0x72, 0x71, 0x71, 0x71, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x72, 0x72,\n    0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x75, 0x77, 0x76, 0x75, 0x75, 0x75, 0x76, 0x78, 0x79,\n    0x73, 0x73, 0x74, 0x76, 0x77, 0x79, 0x7a, 0x7a, 0x78, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77,\n    0x75, 0x76, 0x78, 0x79, 0x79, 0x79, 0x77, 0x76, 0x73, 0x75, 0x77, 0x7a, 0x7b, 0x7a, 0x78, 0x77,\n    0x77, 0x78, 0x79, 0x7a, 0x7a, 0x79, 0x77, 0x76, 0x77, 0x78, 0x79, 0x79, 0x78, 0x76, 0x74, 0x73,\n    0x7e, 0x7b, 0x78, 0x77, 0x7b, 0x83, 0x8c, 0x92, 0x9d, 0xa0, 0xa4, 0xa8, 0xaa, 0xaa, 0xa9, 0xa8,\n    0xa7, 0xa0, 0x96, 0x8e, 0x89, 0x85, 0x80, 0x7c, 0x80, 0x7e, 0x7d, 0x7f, 0x82, 0x82, 0x7f, 0x7c,\n    0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x80, 0x7f, 0x7e, 0x7c, 0x7b, 0x79, 0x78, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e,\n    0x7b, 0x7d, 0x80, 0x86, 0x8e, 0x96, 0x9e, 0xa3, 0xb4, 0xb3, 0xb1, 0xb1, 0xb2, 0xb4, 0xb6, 0xb8,\n    0xb1, 0xb0, 0xae, 0xac, 0xaa, 0xa8, 0xa7, 0xa7, 0xa0, 0x9e, 0x9b, 0x98, 0x96, 0x95, 0x94, 0x94,\n    0x94, 0x94, 0x95, 0x95, 0x96, 0x97, 0x97, 0x98, 0x9c, 0xa2, 0xa4, 0xa2, 0xa5, 0xa9, 0x9d, 0x8b,\n    0x7a, 0x78, 0x76, 0x73, 0x72, 0x73, 0x75, 0x76, 0x77, 0x77, 0x76, 0x75, 0x76, 0x76, 0x78, 0x78,\n    0x76, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78,\n    0x7b, 0x7a, 0x7b, 0x81, 0x8a, 0x92, 0x95, 0x96, 0x97, 0x97, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95,\n    0x92, 0x93, 0x95, 0x95, 0x93, 0x90, 0x8d, 0x8b, 0x88, 0x87, 0x86, 0x84, 0x84, 0x84, 0x84, 0x85,\n    0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x85, 0x85, 0x86, 0x87, 0x87, 0x86, 0x85, 0x85,\n    0x87, 0x87, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87,\n    0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x87, 0x87, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x86, 0x86,\n    0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7f, 0x7f, 0x81, 0x81, 0x81, 0x80, 0x7f, 0x7d, 0x7b, 0x7a,\n    0x79, 0x78, 0x76, 0x74, 0x72, 0x71, 0x71, 0x71, 0x74, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72,\n    0x72, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x76, 0x75, 0x75, 0x74, 0x75, 0x76, 0x77, 0x77,\n    0x74, 0x74, 0x74, 0x75, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78,\n    0x77, 0x77, 0x78, 0x78, 0x78, 0x77, 0x76, 0x75, 0x73, 0x75, 0x77, 0x79, 0x7a, 0x79, 0x78, 0x77,\n    0x79, 0x79, 0x7a, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x76, 0x76, 0x77, 0x77, 0x76, 0x75, 0x73, 0x72,\n    0x80, 0x7d, 0x79, 0x79, 0x81, 0x8e, 0x9c, 0xa6, 0xa6, 0xa7, 0xa7, 0xa8, 0xaa, 0xab, 0xad, 0xad,\n    0xb1, 0xac, 0xa4, 0x9c, 0x96, 0x8e, 0x85, 0x7f, 0x7f, 0x7c, 0x7b, 0x7c, 0x80, 0x82, 0x81, 0x7f,\n    0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x80, 0x80, 0x7f, 0x7e, 0x7c, 0x7b, 0x7a, 0x7a, 0x78, 0x78, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a,\n    0x7d, 0x7d, 0x7d, 0x7e, 0x81, 0x85, 0x88, 0x8b, 0xa8, 0xa9, 0xab, 0xae, 0xb2, 0xb5, 0xb7, 0xb9,\n    0xb4, 0xb3, 0xb3, 0xb3, 0xb2, 0xb1, 0xb1, 0xb1, 0xaa, 0xa9, 0xa7, 0xa4, 0xa2, 0xa1, 0xa0, 0xa0,\n    0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0xa0, 0xa6, 0xa7, 0xa3, 0xa6, 0xa8, 0x9c, 0x89,\n    0x79, 0x78, 0x75, 0x73, 0x73, 0x73, 0x75, 0x76, 0x75, 0x75, 0x75, 0x75, 0x76, 0x78, 0x79, 0x7a,\n    0x79, 0x78, 0x78, 0x77, 0x77, 0x76, 0x75, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77,\n    0x7a, 0x79, 0x7b, 0x81, 0x8a, 0x92, 0x95, 0x95, 0x97, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95,\n    0x93, 0x93, 0x94, 0x93, 0x92, 0x8f, 0x8c, 0x8a, 0x86, 0x85, 0x84, 0x84, 0x84, 0x84, 0x85, 0x86,\n    0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x85, 0x86, 0x87, 0x88, 0x88, 0x87, 0x86, 0x85,\n    0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86,\n    0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x84, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86,\n    0x7c, 0x7c, 0x7c, 0x7d, 0x7e, 0x7f, 0x7f, 0x80, 0x81, 0x81, 0x82, 0x82, 0x81, 0x7f, 0x7e, 0x7d,\n    0x7b, 0x7a, 0x78, 0x76, 0x75, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72,\n    0x72, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x76, 0x76,\n    0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x79, 0x79,\n    0x79, 0x78, 0x78, 0x77, 0x76, 0x76, 0x75, 0x75, 0x74, 0x75, 0x77, 0x78, 0x79, 0x78, 0x77, 0x77,\n    0x7a, 0x7a, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x76, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x73, 0x73,\n    0x7a, 0x7b, 0x7d, 0x84, 0x8e, 0x9a, 0xa6, 0xad, 0xab, 0xaa, 0xa8, 0xa6, 0xa7, 0xaa, 0xad, 0xaf,\n    0xb5, 0xb1, 0xad, 0xa8, 0xa3, 0x9b, 0x91, 0x8a, 0x82, 0x7e, 0x7b, 0x7b, 0x7e, 0x81, 0x82, 0x81,\n    0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x81, 0x81, 0x80, 0x7f, 0x7e, 0x7d, 0x7d, 0x7c, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x78,\n    0x7c, 0x7c, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x89, 0x92, 0xa0, 0xad, 0xb4, 0xb5, 0xb2, 0xae,\n    0xb1, 0xb1, 0xb1, 0xb1, 0xb0, 0xaf, 0xad, 0xad, 0xb1, 0xb0, 0xae, 0xad, 0xab, 0xaa, 0xa9, 0xa9,\n    0xa9, 0xa9, 0xa9, 0xa8, 0xa8, 0xa7, 0xa7, 0xa6, 0xa4, 0xaa, 0xa9, 0xa4, 0xa6, 0xa6, 0x99, 0x86,\n    0x78, 0x77, 0x75, 0x74, 0x73, 0x74, 0x75, 0x75, 0x74, 0x74, 0x74, 0x75, 0x76, 0x78, 0x7b, 0x7c,\n    0x7b, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x75, 0x74, 0x75, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76,\n    0x7a, 0x79, 0x7b, 0x81, 0x8a, 0x91, 0x95, 0x95, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x95,\n    0x93, 0x93, 0x93, 0x92, 0x90, 0x8d, 0x8b, 0x89, 0x85, 0x84, 0x84, 0x83, 0x84, 0x85, 0x86, 0x87,\n    0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x86, 0x86, 0x87, 0x88, 0x88, 0x87, 0x86, 0x86,\n    0x86, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85,\n    0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x87, 0x87,\n    0x7d, 0x7d, 0x7e, 0x7e, 0x7f, 0x7f, 0x80, 0x80, 0x81, 0x82, 0x82, 0x82, 0x82, 0x81, 0x80, 0x7f,\n    0x7f, 0x7d, 0x7c, 0x7a, 0x78, 0x78, 0x78, 0x78, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x72,\n    0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75,\n    0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x74, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79,\n    0x7a, 0x79, 0x77, 0x75, 0x74, 0x75, 0x76, 0x76, 0x76, 0x77, 0x78, 0x78, 0x79, 0x78, 0x78, 0x77,\n    0x7a, 0x7a, 0x79, 0x78, 0x78, 0x77, 0x77, 0x77, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x74,\n    0x72, 0x79, 0x85, 0x92, 0x9d, 0xa4, 0xa7, 0xa8, 0xab, 0xa9, 0xa6, 0xa4, 0xa5, 0xa7, 0xab, 0xae,\n    0xb2, 0xb0, 0xaf, 0xae, 0xad, 0xa8, 0xa0, 0x9a, 0x8b, 0x85, 0x7f, 0x7c, 0x7e, 0x81, 0x82, 0x81,\n    0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x81, 0x81, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x78, 0x77,\n    0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x75, 0x7e, 0x8d, 0x9c, 0xa6, 0xaa, 0xaa, 0xa8,\n    0xb1, 0xb2, 0xb2, 0xb2, 0xb0, 0xae, 0xac, 0xaa, 0xb2, 0xb1, 0xb1, 0xb0, 0xaf, 0xad, 0xac, 0xac,\n    0xaf, 0xaf, 0xae, 0xad, 0xad, 0xac, 0xab, 0xab, 0xa7, 0xac, 0xaa, 0xa4, 0xa4, 0xa3, 0x94, 0x81,\n    0x76, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x75, 0x73, 0x73, 0x73, 0x75, 0x76, 0x79, 0x7b, 0x7c,\n    0x7c, 0x7b, 0x7a, 0x79, 0x77, 0x76, 0x75, 0x74, 0x75, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76,\n    0x7a, 0x79, 0x7a, 0x80, 0x89, 0x91, 0x94, 0x95, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x94, 0x94,\n    0x93, 0x93, 0x92, 0x90, 0x8e, 0x8c, 0x89, 0x88, 0x84, 0x84, 0x83, 0x83, 0x83, 0x84, 0x85, 0x86,\n    0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x85, 0x86, 0x87, 0x88, 0x88, 0x87, 0x86, 0x85,\n    0x85, 0x85, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84,\n    0x85, 0x85, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x87,\n    0x7f, 0x7f, 0x7f, 0x7f, 0x80, 0x80, 0x80, 0x80, 0x80, 0x81, 0x82, 0x82, 0x82, 0x82, 0x81, 0x80,\n    0x7f, 0x7e, 0x7d, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74,\n    0x74, 0x75, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x77, 0x78, 0x78, 0x77, 0x77, 0x76, 0x75,\n    0x75, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x77,\n    0x7a, 0x78, 0x75, 0x73, 0x73, 0x74, 0x77, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79,\n    0x79, 0x79, 0x78, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x77, 0x77, 0x76, 0x75, 0x75, 0x76, 0x77, 0x77,\n    0x74, 0x7e, 0x8e, 0x9d, 0xa6, 0xa9, 0xa6, 0xa3, 0xa8, 0xa7, 0xa5, 0xa5, 0xa5, 0xa8, 0xaa, 0xac,\n    0xaf, 0xae, 0xad, 0xaf, 0xb1, 0xaf, 0xab, 0xa6, 0x98, 0x91, 0x87, 0x80, 0x7f, 0x81, 0x81, 0x81,\n    0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7e, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a,\n    0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7d, 0x7e, 0x7e, 0x77, 0x78, 0x7b, 0x81, 0x8a, 0x95, 0x9f, 0xa5,\n    0xb0, 0xb1, 0xb3, 0xb4, 0xb4, 0xb3, 0xb1, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xae, 0xad, 0xac,\n    0xaf, 0xaf, 0xaf, 0xae, 0xae, 0xad, 0xad, 0xac, 0xa9, 0xad, 0xaa, 0xa3, 0xa1, 0x9f, 0x8f, 0x7b,\n    0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x75, 0x76, 0x79, 0x7b, 0x7c,\n    0x7c, 0x7c, 0x7b, 0x7a, 0x78, 0x77, 0x76, 0x76, 0x75, 0x75, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77,\n    0x79, 0x79, 0x7a, 0x80, 0x89, 0x91, 0x94, 0x94, 0x96, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94,\n    0x93, 0x93, 0x91, 0x8f, 0x8c, 0x8a, 0x88, 0x87, 0x85, 0x84, 0x83, 0x83, 0x83, 0x83, 0x84, 0x85,\n    0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x85, 0x86, 0x87, 0x87, 0x86, 0x85, 0x84,\n    0x85, 0x85, 0x85, 0x86, 0x87, 0x87, 0x88, 0x88, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85,\n    0x87, 0x87, 0x87, 0x87, 0x88, 0x88, 0x88, 0x88, 0x86, 0x86, 0x87, 0x87, 0x87, 0x88, 0x88, 0x88,\n    0x80, 0x80, 0x80, 0x80, 0x80, 0x81, 0x81, 0x81, 0x7f, 0x80, 0x81, 0x82, 0x82, 0x82, 0x81, 0x81,\n    0x7d, 0x7c, 0x7a, 0x79, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75,\n    0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x79, 0x78, 0x76, 0x75,\n    0x75, 0x75, 0x76, 0x76, 0x77, 0x77, 0x78, 0x78, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x76,\n    0x79, 0x77, 0x74, 0x72, 0x72, 0x75, 0x78, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x78, 0x77, 0x77, 0x77, 0x77, 0x79, 0x7b, 0x7c, 0x79, 0x79, 0x77, 0x77, 0x77, 0x78, 0x79, 0x7a,\n    0x84, 0x8b, 0x96, 0xa1, 0xa8, 0xaa, 0xa8, 0xa6, 0xa6, 0xa7, 0xa8, 0xa9, 0xaa, 0xab, 0xac, 0xac,\n    0xb0, 0xad, 0xab, 0xac, 0xaf, 0xb0, 0xae, 0xab, 0xa6, 0x9c, 0x8f, 0x85, 0x81, 0x81, 0x81, 0x80,\n    0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x7f, 0x7f, 0x7f, 0x80, 0x80, 0x80, 0x80, 0x81, 0x80, 0x80, 0x80, 0x7f, 0x7e, 0x7e, 0x7d, 0x7d,\n    0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7a, 0x77, 0x76, 0x7b, 0x84, 0x8e, 0x94,\n    0x9f, 0xa2, 0xa7, 0xac, 0xb0, 0xb2, 0xb3, 0xb3, 0xaf, 0xaf, 0xb0, 0xb1, 0xb0, 0xaf, 0xae, 0xad,\n    0xac, 0xac, 0xac, 0xac, 0xac, 0xac, 0xab, 0xab, 0xa9, 0xad, 0xa9, 0xa1, 0x9e, 0x9b, 0x8a, 0x75,\n    0x73, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x75, 0x74, 0x74, 0x75, 0x76, 0x78, 0x7a, 0x7b,\n    0x7c, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78,\n    0x79, 0x78, 0x7a, 0x80, 0x89, 0x90, 0x94, 0x94, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x94,\n    0x94, 0x92, 0x90, 0x8e, 0x8b, 0x89, 0x87, 0x87, 0x86, 0x85, 0x84, 0x83, 0x82, 0x82, 0x83, 0x83,\n    0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x83, 0x84, 0x85, 0x86, 0x86, 0x85, 0x84, 0x83,\n    0x84, 0x84, 0x85, 0x86, 0x87, 0x87, 0x88, 0x88, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85,\n    0x88, 0x88, 0x88, 0x89, 0x89, 0x89, 0x8a, 0x8a, 0x87, 0x87, 0x87, 0x88, 0x88, 0x88, 0x88, 0x89,\n    0x80, 0x80, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x7f, 0x7f, 0x81, 0x82, 0x82, 0x82, 0x81, 0x81,\n    0x7a, 0x79, 0x77, 0x76, 0x75, 0x75, 0x75, 0x76, 0x78, 0x78, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76,\n    0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7a, 0x79, 0x77, 0x75,\n    0x75, 0x75, 0x76, 0x77, 0x78, 0x78, 0x79, 0x79, 0x7d, 0x7c, 0x7b, 0x7a, 0x78, 0x76, 0x75, 0x75,\n    0x79, 0x76, 0x73, 0x71, 0x71, 0x75, 0x79, 0x7c, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x77, 0x76, 0x76, 0x76, 0x77, 0x7a, 0x7c, 0x7e, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x79, 0x7b, 0x7c,\n    0x93, 0x96, 0x9b, 0xa0, 0xa5, 0xa9, 0xab, 0xac, 0xa6, 0xa7, 0xaa, 0xad, 0xae, 0xae, 0xae, 0xae,\n    0xb2, 0xaf, 0xab, 0xaa, 0xac, 0xae, 0xad, 0xab, 0xaf, 0xa4, 0x94, 0x88, 0x82, 0x81, 0x80, 0x7f,\n    0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x7e, 0x7f, 0x7f, 0x7f, 0x80, 0x80, 0x81, 0x81, 0x82, 0x81, 0x81, 0x81, 0x80, 0x80, 0x80, 0x7f,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x7d, 0x7d, 0x7c, 0x7b, 0x7c, 0x7d, 0x7e, 0x7e,\n    0x8a, 0x8e, 0x96, 0x9f, 0xa6, 0xab, 0xae, 0xaf, 0xaf, 0xb0, 0xb1, 0xb2, 0xb1, 0xb0, 0xaf, 0xad,\n    0xa9, 0xa9, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xa9, 0xac, 0xa8, 0x9f, 0x9b, 0x98, 0x87, 0x72,\n    0x73, 0x73, 0x74, 0x74, 0x75, 0x74, 0x74, 0x74, 0x76, 0x75, 0x75, 0x75, 0x76, 0x77, 0x79, 0x7a,\n    0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x79,\n    0x79, 0x78, 0x7a, 0x80, 0x89, 0x90, 0x94, 0x94, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x93,\n    0x94, 0x92, 0x90, 0x8d, 0x8a, 0x88, 0x87, 0x86, 0x87, 0x86, 0x85, 0x83, 0x82, 0x82, 0x82, 0x82,\n    0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x82, 0x83, 0x84, 0x85, 0x85, 0x84, 0x83, 0x82,\n    0x84, 0x84, 0x85, 0x86, 0x87, 0x88, 0x88, 0x89, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86,\n    0x89, 0x89, 0x89, 0x8a, 0x8a, 0x8a, 0x8a, 0x8b, 0x87, 0x87, 0x87, 0x88, 0x88, 0x88, 0x89, 0x89,\n    0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7f, 0x7e, 0x7f, 0x80, 0x81, 0x81, 0x7f, 0x7d, 0x7c,\n    0x7f, 0x7e, 0x7b, 0x79, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x79, 0x77, 0x76, 0x76, 0x77, 0x7a, 0x7b,\n    0x7a, 0x79, 0x76, 0x75, 0x74, 0x75, 0x77, 0x78, 0x78, 0x78, 0x77, 0x76, 0x76, 0x75, 0x74, 0x74,\n    0x73, 0x74, 0x76, 0x77, 0x78, 0x79, 0x78, 0x78, 0x77, 0x78, 0x79, 0x79, 0x78, 0x77, 0x76, 0x75,\n    0x73, 0x72, 0x71, 0x70, 0x71, 0x72, 0x74, 0x75, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78,\n    0x75, 0x75, 0x75, 0x75, 0x76, 0x77, 0x79, 0x79, 0x7a, 0x77, 0x74, 0x72, 0x75, 0x7c, 0x84, 0x8a,\n    0xa1, 0xa3, 0xa5, 0xa8, 0xa9, 0xaa, 0xa9, 0xa9, 0xa6, 0xa6, 0xa7, 0xa9, 0xaa, 0xab, 0xac, 0xad,\n    0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xa8, 0xb0, 0xb3, 0xa4, 0x8b, 0x7a, 0x7a, 0x81,\n    0x80, 0x82, 0x82, 0x80, 0x7e, 0x7e, 0x81, 0x84, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x7e, 0x7e, 0x7d, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b,\n    0x7d, 0x7f, 0x82, 0x87, 0x8f, 0x97, 0x9f, 0xa4, 0xaa, 0xac, 0xaf, 0xb1, 0xb2, 0xb1, 0xaf, 0xad,\n    0xad, 0xad, 0xad, 0xac, 0xab, 0xab, 0xaa, 0xaa, 0xb0, 0xab, 0xa2, 0x97, 0x8b, 0x81, 0x7a, 0x76,\n    0x72, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x76, 0x76,\n    0x79, 0x7a, 0x7c, 0x7c, 0x7c, 0x7a, 0x78, 0x76, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7b,\n    0x74, 0x77, 0x7d, 0x83, 0x8a, 0x8f, 0x93, 0x95, 0x93, 0x93, 0x94, 0x94, 0x93, 0x92, 0x90, 0x8f,\n    0x91, 0x90, 0x8f, 0x8d, 0x8b, 0x89, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85,\n    0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x82, 0x82, 0x82, 0x82, 0x81, 0x81, 0x81, 0x81,\n    0x85, 0x85, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x84, 0x83, 0x81, 0x7f, 0x80, 0x82, 0x84, 0x86,\n    0x87, 0x87, 0x87, 0x87, 0x87, 0x88, 0x88, 0x88, 0x89, 0x88, 0x88, 0x87, 0x87, 0x86, 0x86, 0x86,\n    0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7f, 0x7f, 0x80, 0x81, 0x81, 0x7f, 0x7e, 0x7d,\n    0x7e, 0x7d, 0x7b, 0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7a, 0x78, 0x76, 0x76, 0x77, 0x79, 0x7a,\n    0x7a, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x79, 0x78, 0x78, 0x77, 0x76, 0x75, 0x75, 0x75,\n    0x74, 0x75, 0x77, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x7a, 0x7a, 0x79, 0x77, 0x76, 0x75,\n    0x71, 0x70, 0x6f, 0x6f, 0x70, 0x71, 0x73, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75,\n    0x75, 0x75, 0x75, 0x76, 0x76, 0x77, 0x78, 0x79, 0x7d, 0x7a, 0x76, 0x75, 0x7a, 0x83, 0x8c, 0x93,\n    0xa4, 0xa5, 0xa7, 0xa8, 0xa9, 0xa9, 0xa9, 0xa8, 0xa6, 0xa7, 0xa8, 0xa9, 0xaa, 0xac, 0xad, 0xad,\n    0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xaa, 0xaf, 0xb0, 0xa6, 0x93, 0x85, 0x80, 0x81,\n    0x7e, 0x7f, 0x81, 0x80, 0x7f, 0x7f, 0x81, 0x83, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x7f, 0x7f, 0x7e, 0x7d, 0x7c, 0x7c, 0x7b, 0x7b, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b,\n    0x79, 0x79, 0x79, 0x7c, 0x7f, 0x85, 0x8a, 0x8d, 0x90, 0x93, 0x99, 0x9f, 0xa3, 0xa6, 0xa7, 0xa7,\n    0xa7, 0xa7, 0xa6, 0xa6, 0xa5, 0xa4, 0xa4, 0xa4, 0x9f, 0x9b, 0x94, 0x8b, 0x81, 0x7a, 0x74, 0x72,\n    0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x76, 0x76,\n    0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7a, 0x78, 0x76, 0x76, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x7a, 0x7a,\n    0x78, 0x7b, 0x80, 0x86, 0x8b, 0x90, 0x93, 0x94, 0x93, 0x93, 0x94, 0x94, 0x93, 0x92, 0x90, 0x8f,\n    0x91, 0x90, 0x8e, 0x8c, 0x8a, 0x89, 0x87, 0x86, 0x85, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86,\n    0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x83, 0x82, 0x82, 0x82, 0x82,\n    0x85, 0x85, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x85, 0x83, 0x81, 0x80, 0x80, 0x82, 0x85, 0x86,\n    0x86, 0x86, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x86, 0x86, 0x85, 0x85, 0x84, 0x84, 0x83, 0x83,\n    0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7f, 0x80, 0x80, 0x81, 0x80, 0x7f, 0x7e, 0x7e,\n    0x7c, 0x7c, 0x7b, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7b, 0x79, 0x77, 0x76, 0x77, 0x78, 0x79,\n    0x7a, 0x7c, 0x7e, 0x7f, 0x7e, 0x7d, 0x7a, 0x78, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x77, 0x76, 0x76,\n    0x77, 0x78, 0x79, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7c, 0x7b, 0x7a, 0x78, 0x76, 0x75,\n    0x6f, 0x6e, 0x6f, 0x6f, 0x71, 0x72, 0x74, 0x75, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72,\n    0x75, 0x75, 0x76, 0x77, 0x77, 0x78, 0x78, 0x79, 0x7f, 0x7c, 0x79, 0x7a, 0x80, 0x8c, 0x98, 0xa0,\n    0xa8, 0xa8, 0xa9, 0xaa, 0xaa, 0xa9, 0xa8, 0xa8, 0xa7, 0xa7, 0xa8, 0xa9, 0xab, 0xac, 0xad, 0xae,\n    0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xad, 0xad, 0xac, 0xa8, 0xa0, 0x95, 0x8b, 0x84,\n    0x7b, 0x7d, 0x7f, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x80, 0x80, 0x7f, 0x7f, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7c, 0x7a, 0x78, 0x77, 0x77, 0x78, 0x7a, 0x7b, 0x7d, 0x80, 0x84, 0x8a, 0x8e, 0x90, 0x91, 0x92,\n    0x93, 0x93, 0x93, 0x92, 0x91, 0x91, 0x90, 0x90, 0x88, 0x86, 0x81, 0x7c, 0x76, 0x72, 0x70, 0x6e,\n    0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75,\n    0x78, 0x79, 0x7b, 0x7c, 0x7c, 0x7a, 0x78, 0x77, 0x76, 0x76, 0x76, 0x77, 0x78, 0x79, 0x79, 0x7a,\n    0x7f, 0x81, 0x85, 0x8a, 0x8e, 0x91, 0x93, 0x93, 0x93, 0x93, 0x94, 0x94, 0x93, 0x92, 0x90, 0x8f,\n    0x90, 0x8f, 0x8e, 0x8c, 0x8a, 0x88, 0x87, 0x86, 0x84, 0x84, 0x85, 0x85, 0x86, 0x87, 0x87, 0x87,\n    0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83,\n    0x85, 0x85, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x85, 0x84, 0x82, 0x81, 0x82, 0x83, 0x85, 0x87,\n    0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x83, 0x83, 0x83, 0x83, 0x82, 0x82, 0x82, 0x82,\n    0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x7e, 0x7e,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7c, 0x79, 0x77, 0x76, 0x77, 0x78, 0x79,\n    0x7b, 0x7e, 0x81, 0x84, 0x84, 0x80, 0x7c, 0x79, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x78,\n    0x79, 0x7a, 0x7c, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7e, 0x7d, 0x7d, 0x7b, 0x79, 0x77, 0x76,\n    0x70, 0x71, 0x72, 0x73, 0x75, 0x77, 0x78, 0x79, 0x75, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74,\n    0x76, 0x77, 0x78, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7d, 0x7c, 0x7b, 0x7e, 0x87, 0x94, 0xa1, 0xa9,\n    0xab, 0xab, 0xab, 0xaa, 0xaa, 0xa9, 0xa8, 0xa7, 0xa7, 0xa8, 0xa9, 0xaa, 0xab, 0xad, 0xae, 0xae,\n    0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xb0, 0xac, 0xa9, 0xab, 0xac, 0xa5, 0x96, 0x8a,\n    0x7d, 0x7d, 0x7d, 0x7f, 0x81, 0x82, 0x80, 0x7e, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x81, 0x81, 0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c,\n    0x83, 0x81, 0x7f, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7b, 0x79, 0x78,\n    0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x78, 0x76, 0x73, 0x72, 0x71, 0x71, 0x71,\n    0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x75, 0x75, 0x73, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75,\n    0x78, 0x79, 0x7b, 0x7c, 0x7c, 0x7b, 0x79, 0x77, 0x76, 0x76, 0x76, 0x77, 0x78, 0x7a, 0x7b, 0x7c,\n    0x87, 0x88, 0x8b, 0x8e, 0x90, 0x92, 0x93, 0x93, 0x93, 0x93, 0x94, 0x94, 0x93, 0x92, 0x90, 0x8f,\n    0x90, 0x8f, 0x8d, 0x8b, 0x89, 0x87, 0x86, 0x85, 0x83, 0x83, 0x84, 0x85, 0x86, 0x87, 0x88, 0x88,\n    0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x84, 0x84,\n    0x85, 0x85, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x85, 0x84, 0x83, 0x83, 0x83, 0x84, 0x86, 0x87,\n    0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83,\n    0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7f, 0x7f, 0x7e, 0x7e, 0x7e, 0x7d, 0x7e, 0x7e,\n    0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7c, 0x79, 0x77, 0x77, 0x77, 0x79, 0x7a,\n    0x7d, 0x7f, 0x83, 0x86, 0x85, 0x82, 0x7e, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7a, 0x7c, 0x7d, 0x7f, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x7e, 0x7d, 0x7b, 0x79, 0x78,\n    0x75, 0x76, 0x78, 0x79, 0x7b, 0x7d, 0x7e, 0x7e, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79,\n    0x78, 0x79, 0x7b, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x7b, 0x7b, 0x7e, 0x84, 0x8e, 0x9a, 0xa6, 0xad,\n    0xae, 0xad, 0xac, 0xaa, 0xa9, 0xa8, 0xa7, 0xa7, 0xa8, 0xa9, 0xa9, 0xab, 0xac, 0xad, 0xae, 0xaf,\n    0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xb1, 0xac, 0xa9, 0xad, 0xb2, 0xaf, 0xa1, 0x93,\n    0x85, 0x81, 0x7d, 0x7e, 0x81, 0x83, 0x80, 0x7d, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x81, 0x81, 0x81, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c,\n    0x80, 0x7f, 0x7e, 0x7d, 0x7d, 0x7c, 0x7d, 0x7d, 0x7a, 0x7a, 0x7a, 0x79, 0x78, 0x76, 0x74, 0x74,\n    0x74, 0x74, 0x74, 0x73, 0x72, 0x72, 0x71, 0x71, 0x74, 0x74, 0x73, 0x73, 0x74, 0x75, 0x76, 0x77,\n    0x73, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x75, 0x75,\n    0x77, 0x79, 0x7b, 0x7c, 0x7c, 0x7b, 0x79, 0x78, 0x78, 0x78, 0x78, 0x79, 0x7b, 0x7e, 0x81, 0x83,\n    0x8d, 0x8e, 0x90, 0x92, 0x93, 0x93, 0x93, 0x92, 0x93, 0x93, 0x94, 0x94, 0x93, 0x92, 0x90, 0x8f,\n    0x8f, 0x8e, 0x8d, 0x8b, 0x89, 0x87, 0x85, 0x84, 0x83, 0x83, 0x84, 0x85, 0x86, 0x87, 0x88, 0x88,\n    0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85,\n    0x85, 0x85, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x87, 0x87,\n    0x86, 0x86, 0x86, 0x85, 0x85, 0x84, 0x84, 0x84, 0x86, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87,\n    0x7d, 0x7d, 0x7c, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7e, 0x7e, 0x7d, 0x7c, 0x7b, 0x7c, 0x7c, 0x7d,\n    0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7b, 0x7c, 0x7a, 0x79, 0x77, 0x77, 0x79, 0x7b, 0x7c,\n    0x7f, 0x81, 0x82, 0x84, 0x83, 0x81, 0x7f, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d,\n    0x7b, 0x7c, 0x7e, 0x80, 0x81, 0x81, 0x81, 0x81, 0x7f, 0x7f, 0x7f, 0x80, 0x7f, 0x7e, 0x7c, 0x7b,\n    0x79, 0x7a, 0x7c, 0x7e, 0x7f, 0x80, 0x80, 0x80, 0x81, 0x81, 0x80, 0x7f, 0x7f, 0x7e, 0x7e, 0x7d,\n    0x7b, 0x7c, 0x7e, 0x7f, 0x7f, 0x7e, 0x7c, 0x7b, 0x79, 0x7d, 0x84, 0x8d, 0x97, 0xa1, 0xaa, 0xae,\n    0xae, 0xad, 0xab, 0xa9, 0xa8, 0xa7, 0xa7, 0xa7, 0xa9, 0xa9, 0xaa, 0xab, 0xad, 0xae, 0xaf, 0xb0,\n    0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xb1, 0xad, 0xaa, 0xae, 0xb2, 0xb1, 0xa8, 0x9f,\n    0x92, 0x89, 0x7f, 0x7c, 0x80, 0x83, 0x81, 0x7d, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7c,\n    0x77, 0x77, 0x77, 0x78, 0x78, 0x79, 0x79, 0x79, 0x73, 0x74, 0x76, 0x78, 0x7a, 0x7c, 0x7d, 0x7e,\n    0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x77, 0x76, 0x75, 0x75, 0x75, 0x75, 0x77, 0x78, 0x79,\n    0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74,\n    0x77, 0x78, 0x7a, 0x7c, 0x7c, 0x7b, 0x79, 0x78, 0x7a, 0x7a, 0x7b, 0x7d, 0x80, 0x84, 0x89, 0x8b,\n    0x92, 0x92, 0x93, 0x94, 0x94, 0x94, 0x93, 0x93, 0x93, 0x93, 0x94, 0x94, 0x93, 0x92, 0x90, 0x8f,\n    0x8e, 0x8d, 0x8c, 0x8a, 0x88, 0x86, 0x85, 0x84, 0x84, 0x84, 0x85, 0x85, 0x86, 0x87, 0x87, 0x87,\n    0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85,\n    0x85, 0x85, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x87,\n    0x87, 0x87, 0x87, 0x86, 0x85, 0x85, 0x84, 0x84, 0x87, 0x87, 0x87, 0x87, 0x88, 0x88, 0x88, 0x88,\n    0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x7d, 0x7c, 0x7b, 0x79, 0x79, 0x7a, 0x7b, 0x7b,\n    0x7c, 0x7d, 0x7e, 0x7e, 0x7e, 0x7c, 0x7a, 0x79, 0x7a, 0x79, 0x78, 0x77, 0x78, 0x7a, 0x7c, 0x7e,\n    0x81, 0x81, 0x81, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e,\n    0x7c, 0x7d, 0x7e, 0x80, 0x81, 0x81, 0x81, 0x81, 0x7e, 0x7f, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7e,\n    0x7a, 0x7b, 0x7d, 0x7f, 0x80, 0x7f, 0x7f, 0x7e, 0x83, 0x83, 0x82, 0x81, 0x81, 0x80, 0x7f, 0x7f,\n    0x7d, 0x7e, 0x81, 0x82, 0x82, 0x80, 0x7e, 0x7c, 0x7b, 0x82, 0x8c, 0x98, 0xa3, 0xaa, 0xad, 0xaf,\n    0xad, 0xac, 0xaa, 0xa8, 0xa7, 0xa7, 0xa7, 0xa8, 0xa9, 0xaa, 0xab, 0xac, 0xad, 0xaf, 0xb0, 0xb0,\n    0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xb0, 0xae, 0xad, 0xae, 0xae, 0xae, 0xac, 0xab,\n    0xa0, 0x92, 0x82, 0x7b, 0x7e, 0x82, 0x82, 0x7f, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x7f, 0x7f, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d,\n    0x78, 0x78, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x75, 0x75, 0x76, 0x77, 0x79, 0x7b, 0x7c, 0x7d,\n    0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x76, 0x76, 0x74, 0x74, 0x73, 0x74, 0x74, 0x75,\n    0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x76, 0x76, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74,\n    0x76, 0x78, 0x7a, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x7c, 0x7d, 0x7e, 0x80, 0x85, 0x8b, 0x91, 0x94,\n    0x94, 0x94, 0x95, 0x96, 0x96, 0x95, 0x94, 0x93, 0x93, 0x93, 0x94, 0x94, 0x93, 0x92, 0x90, 0x8f,\n    0x8e, 0x8d, 0x8b, 0x8a, 0x87, 0x86, 0x84, 0x83, 0x85, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86,\n    0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x84,\n    0x85, 0x85, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x86, 0x86, 0x87, 0x87, 0x88, 0x88, 0x88, 0x88,\n    0x89, 0x88, 0x88, 0x87, 0x86, 0x86, 0x85, 0x85, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x87, 0x87,\n    0x7d, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x78, 0x7c, 0x7b, 0x79, 0x78, 0x78, 0x78, 0x7a, 0x7b,\n    0x7d, 0x7e, 0x7f, 0x7f, 0x7e, 0x7c, 0x79, 0x78, 0x79, 0x78, 0x77, 0x77, 0x78, 0x7b, 0x7e, 0x80,\n    0x83, 0x81, 0x7f, 0x7d, 0x7d, 0x7e, 0x80, 0x81, 0x7e, 0x7e, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f,\n    0x7c, 0x7d, 0x7e, 0x80, 0x81, 0x81, 0x81, 0x81, 0x7d, 0x7e, 0x80, 0x81, 0x81, 0x81, 0x81, 0x80,\n    0x7a, 0x7b, 0x7c, 0x7e, 0x7e, 0x7d, 0x7c, 0x7b, 0x83, 0x83, 0x82, 0x81, 0x80, 0x80, 0x7f, 0x7f,\n    0x7e, 0x80, 0x82, 0x84, 0x84, 0x82, 0x7f, 0x7d, 0x7e, 0x86, 0x93, 0xa1, 0xab, 0xaf, 0xb0, 0xb0,\n    0xac, 0xab, 0xa9, 0xa7, 0xa6, 0xa6, 0xa7, 0xa8, 0xa9, 0xaa, 0xab, 0xac, 0xae, 0xaf, 0xb0, 0xb0,\n    0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xb0, 0xaf, 0xad, 0xab, 0xab, 0xae, 0xb1,\n    0xa9, 0x97, 0x83, 0x7a, 0x7c, 0x82, 0x82, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x80, 0x80, 0x80, 0x7f, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d,\n    0x82, 0x82, 0x81, 0x80, 0x7f, 0x7e, 0x7c, 0x7b, 0x7f, 0x7d, 0x7b, 0x78, 0x75, 0x73, 0x72, 0x71,\n    0x75, 0x75, 0x75, 0x74, 0x73, 0x73, 0x72, 0x72, 0x76, 0x75, 0x73, 0x71, 0x70, 0x6f, 0x70, 0x70,\n    0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x76, 0x76, 0x72, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74,\n    0x76, 0x78, 0x7a, 0x7c, 0x7c, 0x7c, 0x7a, 0x79, 0x7e, 0x7e, 0x80, 0x83, 0x88, 0x8f, 0x95, 0x99,\n    0x95, 0x95, 0x96, 0x96, 0x96, 0x95, 0x94, 0x93, 0x93, 0x93, 0x94, 0x94, 0x93, 0x92, 0x90, 0x8f,\n    0x8d, 0x8d, 0x8b, 0x89, 0x87, 0x85, 0x84, 0x83, 0x87, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85,\n    0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x86, 0x86, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84,\n    0x85, 0x85, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x86, 0x87, 0x87, 0x88, 0x88, 0x88, 0x88, 0x88,\n    0x8a, 0x89, 0x89, 0x88, 0x87, 0x86, 0x85, 0x85, 0x81, 0x82, 0x82, 0x83, 0x83, 0x84, 0x84, 0x84,\n    0x7c, 0x7b, 0x79, 0x77, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x79, 0x77, 0x76, 0x76, 0x76, 0x78, 0x78,\n    0x7a, 0x7c, 0x7f, 0x82, 0x83, 0x82, 0x80, 0x7f, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x78,\n    0x7a, 0x7b, 0x7b, 0x7d, 0x7e, 0x7f, 0x80, 0x80, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c,\n    0x7a, 0x7b, 0x7d, 0x7e, 0x7f, 0x7f, 0x7e, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f,\n    0x7b, 0x7b, 0x7b, 0x7c, 0x7d, 0x7f, 0x82, 0x83, 0x83, 0x83, 0x84, 0x83, 0x82, 0x81, 0x7f, 0x7e,\n    0x7c, 0x7f, 0x82, 0x82, 0x80, 0x7e, 0x7f, 0x81, 0x84, 0x8c, 0x99, 0xa6, 0xaf, 0xb1, 0xb0, 0xae,\n    0xab, 0xaa, 0xa9, 0xa8, 0xa8, 0xa8, 0xa9, 0xa9, 0xaa, 0xab, 0xac, 0xac, 0xad, 0xae, 0xaf, 0xb0,\n    0xaf, 0xaf, 0xaf, 0xae, 0xae, 0xae, 0xad, 0xad, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae,\n    0xb2, 0xa4, 0x92, 0x86, 0x82, 0x81, 0x7f, 0x7d, 0x82, 0x81, 0x81, 0x81, 0x80, 0x7f, 0x7f, 0x7f,\n    0x7e, 0x7f, 0x7f, 0x7f, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f,\n    0x7f, 0x7e, 0x7e, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x78, 0x77, 0x77, 0x76, 0x75, 0x75, 0x74, 0x74,\n    0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74,\n    0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73,\n    0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7a, 0x7a, 0x78, 0x7c, 0x84, 0x8b, 0x91, 0x93, 0x94, 0x93,\n    0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x93, 0x92, 0x91, 0x90, 0x8f, 0x8f,\n    0x8d, 0x8c, 0x8a, 0x88, 0x86, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86,\n    0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x84, 0x83, 0x83, 0x82, 0x82,\n    0x85, 0x86, 0x86, 0x87, 0x86, 0x85, 0x83, 0x83, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x87, 0x87,\n    0x88, 0x88, 0x88, 0x87, 0x86, 0x83, 0x81, 0x80, 0x82, 0x82, 0x84, 0x85, 0x85, 0x85, 0x84, 0x83,\n    0x7b, 0x79, 0x78, 0x77, 0x76, 0x77, 0x77, 0x78, 0x79, 0x78, 0x77, 0x76, 0x75, 0x76, 0x77, 0x78,\n    0x7a, 0x7c, 0x7f, 0x81, 0x82, 0x81, 0x7f, 0x7e, 0x7f, 0x7f, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a,\n    0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7f, 0x80, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a,\n    0x79, 0x7a, 0x7c, 0x7d, 0x7e, 0x7e, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7e, 0x80, 0x81, 0x82, 0x83, 0x83, 0x83, 0x82, 0x81, 0x7f, 0x7e,\n    0x7c, 0x7f, 0x82, 0x82, 0x7f, 0x7e, 0x7f, 0x81, 0x83, 0x8c, 0x99, 0xa6, 0xae, 0xb1, 0xb0, 0xae,\n    0xaa, 0xa9, 0xa8, 0xa8, 0xa8, 0xa8, 0xa9, 0xa9, 0xaa, 0xab, 0xac, 0xac, 0xad, 0xae, 0xaf, 0xb0,\n    0xaf, 0xaf, 0xaf, 0xae, 0xae, 0xae, 0xad, 0xad, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae,\n    0xb0, 0xa7, 0x9a, 0x8c, 0x83, 0x7f, 0x7f, 0x80, 0x81, 0x81, 0x81, 0x80, 0x80, 0x7f, 0x7f, 0x7f,\n    0x7e, 0x7f, 0x7f, 0x7f, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f,\n    0x7f, 0x7e, 0x7e, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x78, 0x78, 0x78, 0x77, 0x76, 0x76, 0x75, 0x75,\n    0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74,\n    0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73,\n    0x76, 0x77, 0x79, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x80, 0x83, 0x8a, 0x90, 0x94, 0x96, 0x96, 0x95,\n    0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x94, 0x94, 0x93, 0x93, 0x92, 0x91, 0x90, 0x8f, 0x8e,\n    0x8c, 0x8b, 0x89, 0x87, 0x86, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86,\n    0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84,\n    0x85, 0x86, 0x87, 0x87, 0x86, 0x85, 0x84, 0x83, 0x86, 0x86, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87,\n    0x87, 0x87, 0x88, 0x87, 0x86, 0x84, 0x83, 0x82, 0x82, 0x83, 0x84, 0x85, 0x85, 0x85, 0x84, 0x84,\n    0x78, 0x78, 0x77, 0x76, 0x75, 0x76, 0x76, 0x77, 0x78, 0x77, 0x76, 0x75, 0x75, 0x75, 0x76, 0x76,\n    0x7a, 0x7b, 0x7d, 0x7f, 0x80, 0x7f, 0x7e, 0x7d, 0x83, 0x82, 0x81, 0x7f, 0x7e, 0x7c, 0x7b, 0x7a,\n    0x79, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7e, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x78,\n    0x78, 0x79, 0x7a, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7e, 0x7e, 0x7f, 0x7f,\n    0x7c, 0x7b, 0x7b, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x82, 0x82, 0x82, 0x82, 0x82, 0x80, 0x7f, 0x7e,\n    0x7c, 0x7f, 0x82, 0x82, 0x7f, 0x7d, 0x7e, 0x80, 0x82, 0x8a, 0x98, 0xa6, 0xae, 0xb1, 0xaf, 0xad,\n    0xaa, 0xa9, 0xa8, 0xa7, 0xa7, 0xa8, 0xa9, 0xaa, 0xaa, 0xab, 0xac, 0xac, 0xad, 0xae, 0xaf, 0xb0,\n    0xaf, 0xaf, 0xaf, 0xae, 0xae, 0xae, 0xad, 0xad, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae,\n    0xae, 0xad, 0xa5, 0x97, 0x86, 0x7d, 0x7e, 0x83, 0x81, 0x81, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x7f,\n    0x7e, 0x7f, 0x7f, 0x7f, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f,\n    0x7f, 0x7e, 0x7e, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x78, 0x77, 0x77, 0x76, 0x76,\n    0x76, 0x76, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74,\n    0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73,\n    0x75, 0x77, 0x79, 0x7b, 0x7d, 0x7e, 0x7e, 0x7e, 0x89, 0x8c, 0x91, 0x95, 0x97, 0x98, 0x97, 0x96,\n    0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x94, 0x94, 0x93, 0x93, 0x92, 0x91, 0x90, 0x8f, 0x8e, 0x8e,\n    0x8b, 0x8a, 0x88, 0x86, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86,\n    0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86,\n    0x86, 0x86, 0x87, 0x87, 0x87, 0x86, 0x85, 0x84, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87,\n    0x86, 0x86, 0x87, 0x87, 0x87, 0x86, 0x84, 0x84, 0x83, 0x84, 0x85, 0x86, 0x86, 0x86, 0x85, 0x84,\n    0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x76, 0x76, 0x77, 0x77, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75,\n    0x79, 0x7a, 0x7c, 0x7d, 0x7e, 0x7d, 0x7c, 0x7c, 0x82, 0x81, 0x80, 0x7e, 0x7c, 0x7a, 0x78, 0x78,\n    0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x79, 0x79, 0x77, 0x76, 0x76, 0x76, 0x76, 0x76,\n    0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7e, 0x7e,\n    0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x7a, 0x7b, 0x7b, 0x80, 0x81, 0x81, 0x82, 0x81, 0x80, 0x7f, 0x7e,\n    0x7c, 0x7f, 0x82, 0x81, 0x7e, 0x7c, 0x7d, 0x7f, 0x80, 0x89, 0x97, 0xa5, 0xae, 0xb0, 0xaf, 0xac,\n    0xa9, 0xa8, 0xa7, 0xa7, 0xa7, 0xa8, 0xa9, 0xaa, 0xaa, 0xab, 0xac, 0xac, 0xad, 0xae, 0xaf, 0xb0,\n    0xaf, 0xaf, 0xaf, 0xae, 0xae, 0xae, 0xad, 0xad, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf,\n    0xac, 0xb1, 0xb0, 0xa1, 0x8c, 0x7e, 0x7f, 0x85, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x7f,\n    0x7e, 0x7f, 0x7f, 0x7f, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f,\n    0x7f, 0x7e, 0x7e, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x77, 0x77,\n    0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74, 0x74, 0x75, 0x74, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73,\n    0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73,\n    0x74, 0x76, 0x79, 0x7d, 0x7f, 0x81, 0x83, 0x83, 0x90, 0x92, 0x95, 0x97, 0x97, 0x97, 0x95, 0x94,\n    0x96, 0x96, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x93, 0x92, 0x91, 0x90, 0x8f, 0x8e, 0x8e, 0x8d,\n    0x89, 0x88, 0x86, 0x85, 0x84, 0x83, 0x83, 0x84, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86,\n    0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x87, 0x88, 0x88, 0x88,\n    0x86, 0x86, 0x87, 0x88, 0x88, 0x87, 0x86, 0x85, 0x88, 0x88, 0x88, 0x87, 0x87, 0x87, 0x87, 0x87,\n    0x84, 0x85, 0x86, 0x87, 0x87, 0x87, 0x86, 0x86, 0x84, 0x85, 0x86, 0x87, 0x87, 0x87, 0x86, 0x85,\n    0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x75, 0x75, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x75, 0x75,\n    0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7e, 0x7d, 0x7c, 0x7a, 0x78, 0x76, 0x74, 0x74,\n    0x78, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x79, 0x78, 0x76, 0x74, 0x73, 0x73, 0x74, 0x75,\n    0x76, 0x77, 0x78, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c,\n    0x7d, 0x7c, 0x7b, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7f, 0x80, 0x80, 0x81, 0x81, 0x80, 0x7f, 0x7e,\n    0x7c, 0x7f, 0x81, 0x81, 0x7d, 0x7b, 0x7c, 0x7e, 0x7d, 0x87, 0x96, 0xa5, 0xae, 0xb0, 0xae, 0xab,\n    0xa8, 0xa7, 0xa7, 0xa6, 0xa7, 0xa8, 0xa9, 0xaa, 0xaa, 0xab, 0xac, 0xac, 0xad, 0xae, 0xaf, 0xb0,\n    0xaf, 0xaf, 0xaf, 0xae, 0xae, 0xae, 0xad, 0xad, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf,\n    0xac, 0xb4, 0xb6, 0xaa, 0x94, 0x84, 0x80, 0x84, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f,\n    0x7e, 0x7f, 0x7f, 0x7f, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x7f, 0x7e, 0x7e, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x77,\n    0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x73, 0x73,\n    0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73,\n    0x74, 0x77, 0x7a, 0x7f, 0x83, 0x86, 0x88, 0x89, 0x92, 0x93, 0x94, 0x95, 0x95, 0x94, 0x92, 0x91,\n    0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x94, 0x92, 0x91, 0x91, 0x90, 0x8f, 0x8e, 0x8d, 0x8d,\n    0x88, 0x87, 0x86, 0x84, 0x83, 0x83, 0x83, 0x84, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86,\n    0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x86, 0x87, 0x87, 0x88, 0x88, 0x89,\n    0x86, 0x86, 0x88, 0x88, 0x88, 0x88, 0x87, 0x86, 0x89, 0x89, 0x88, 0x88, 0x87, 0x87, 0x87, 0x87,\n    0x84, 0x85, 0x86, 0x87, 0x88, 0x88, 0x87, 0x87, 0x85, 0x86, 0x87, 0x88, 0x88, 0x88, 0x87, 0x86,\n    0x74, 0x75, 0x76, 0x77, 0x77, 0x77, 0x76, 0x75, 0x77, 0x78, 0x78, 0x78, 0x78, 0x77, 0x76, 0x75,\n    0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x7a, 0x79, 0x78, 0x77, 0x75, 0x73, 0x72, 0x72,\n    0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x77, 0x75, 0x73, 0x72, 0x72, 0x73, 0x74,\n    0x76, 0x77, 0x78, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x7a, 0x7b, 0x7b, 0x7e, 0x7f, 0x7f, 0x80, 0x80, 0x7f, 0x7e, 0x7e,\n    0x7c, 0x7f, 0x81, 0x80, 0x7d, 0x7a, 0x7b, 0x7c, 0x7b, 0x85, 0x95, 0xa4, 0xae, 0xb0, 0xad, 0xaa,\n    0xa7, 0xa7, 0xa6, 0xa6, 0xa7, 0xa8, 0xa9, 0xaa, 0xaa, 0xab, 0xac, 0xac, 0xad, 0xae, 0xaf, 0xb0,\n    0xaf, 0xaf, 0xaf, 0xae, 0xae, 0xae, 0xad, 0xad, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf,\n    0xae, 0xb4, 0xb6, 0xae, 0x9d, 0x8c, 0x83, 0x80, 0x7e, 0x7e, 0x7e, 0x7f, 0x7f, 0x7f, 0x80, 0x80,\n    0x7e, 0x7f, 0x7f, 0x7f, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x7f, 0x7e, 0x7e, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x77, 0x77,\n    0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x75, 0x74, 0x74, 0x73, 0x73,\n    0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73,\n    0x75, 0x78, 0x7c, 0x81, 0x86, 0x8b, 0x8d, 0x8e, 0x91, 0x92, 0x93, 0x93, 0x93, 0x92, 0x91, 0x90,\n    0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x93, 0x93, 0x91, 0x91, 0x90, 0x8f, 0x8e, 0x8d, 0x8c, 0x8c,\n    0x88, 0x87, 0x86, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86,\n    0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x87,\n    0x86, 0x87, 0x88, 0x89, 0x89, 0x89, 0x88, 0x88, 0x8a, 0x89, 0x89, 0x88, 0x88, 0x87, 0x87, 0x86,\n    0x85, 0x86, 0x87, 0x88, 0x88, 0x88, 0x87, 0x86, 0x86, 0x86, 0x88, 0x89, 0x89, 0x89, 0x88, 0x87,\n    0x74, 0x75, 0x76, 0x78, 0x78, 0x78, 0x77, 0x76, 0x78, 0x79, 0x7a, 0x7a, 0x7a, 0x79, 0x77, 0x76,\n    0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x79, 0x78, 0x77, 0x76, 0x75, 0x74, 0x74, 0x73,\n    0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7a, 0x78, 0x75, 0x72, 0x71, 0x71, 0x73, 0x74,\n    0x76, 0x77, 0x79, 0x7a, 0x7b, 0x7b, 0x7a, 0x7a, 0x7b, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x77, 0x77,\n    0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7e, 0x7f, 0x80, 0x80, 0x7f, 0x7e, 0x7e,\n    0x7c, 0x7e, 0x81, 0x80, 0x7c, 0x79, 0x7a, 0x7b, 0x79, 0x84, 0x94, 0xa4, 0xae, 0xaf, 0xac, 0xa9,\n    0xa6, 0xa6, 0xa6, 0xa6, 0xa7, 0xa8, 0xa9, 0xaa, 0xaa, 0xab, 0xac, 0xac, 0xad, 0xae, 0xaf, 0xb0,\n    0xaf, 0xaf, 0xaf, 0xae, 0xae, 0xae, 0xad, 0xad, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0,\n    0xb0, 0xb2, 0xb3, 0xaf, 0xa5, 0x96, 0x85, 0x7b, 0x7d, 0x7e, 0x7e, 0x7e, 0x7f, 0x7f, 0x80, 0x80,\n    0x7e, 0x7f, 0x7f, 0x7f, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x7f, 0x7e, 0x7e, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x77, 0x77, 0x76,\n    0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x77, 0x77, 0x76, 0x75, 0x74, 0x74, 0x73, 0x73,\n    0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73,\n    0x76, 0x79, 0x7e, 0x84, 0x8a, 0x8f, 0x92, 0x93, 0x91, 0x92, 0x93, 0x94, 0x94, 0x94, 0x93, 0x93,\n    0x95, 0x95, 0x94, 0x94, 0x94, 0x93, 0x93, 0x93, 0x91, 0x90, 0x90, 0x8f, 0x8e, 0x8d, 0x8c, 0x8c,\n    0x88, 0x88, 0x86, 0x85, 0x85, 0x85, 0x85, 0x86, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86,\n    0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x87, 0x87, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85,\n    0x86, 0x87, 0x88, 0x89, 0x8a, 0x8a, 0x89, 0x88, 0x8a, 0x8a, 0x89, 0x89, 0x88, 0x87, 0x86, 0x86,\n    0x86, 0x87, 0x88, 0x88, 0x88, 0x87, 0x86, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x89, 0x89, 0x88,\n    0x74, 0x75, 0x77, 0x78, 0x79, 0x78, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7a, 0x78, 0x77,\n    0x78, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x77, 0x79, 0x79, 0x78, 0x78, 0x77, 0x76, 0x76, 0x76,\n    0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x7a, 0x78, 0x75, 0x72, 0x70, 0x71, 0x73, 0x74,\n    0x77, 0x78, 0x79, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x76, 0x75, 0x75,\n    0x7c, 0x7b, 0x7b, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7d, 0x7d, 0x7e, 0x7f, 0x80, 0x7f, 0x7e, 0x7e,\n    0x7b, 0x7e, 0x81, 0x7f, 0x7c, 0x79, 0x79, 0x7b, 0x79, 0x83, 0x94, 0xa4, 0xae, 0xaf, 0xac, 0xa9,\n    0xa6, 0xa6, 0xa5, 0xa6, 0xa6, 0xa8, 0xaa, 0xab, 0xaa, 0xab, 0xac, 0xac, 0xad, 0xae, 0xaf, 0xb0,\n    0xaf, 0xaf, 0xaf, 0xae, 0xae, 0xae, 0xad, 0xad, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0,\n    0xb2, 0xb1, 0xb0, 0xaf, 0xaa, 0x9c, 0x87, 0x77, 0x7d, 0x7d, 0x7e, 0x7e, 0x7f, 0x7f, 0x80, 0x80,\n    0x7e, 0x7f, 0x7f, 0x7f, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x7f, 0x7e, 0x7e, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x79, 0x79, 0x79, 0x78, 0x77, 0x77, 0x76, 0x76,\n    0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x75, 0x77, 0x77, 0x76, 0x75, 0x75, 0x74, 0x73, 0x73,\n    0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73,\n    0x76, 0x7a, 0x7f, 0x85, 0x8c, 0x91, 0x94, 0x96, 0x92, 0x93, 0x94, 0x95, 0x96, 0x96, 0x96, 0x96,\n    0x95, 0x94, 0x94, 0x94, 0x94, 0x93, 0x93, 0x93, 0x90, 0x90, 0x8f, 0x8e, 0x8d, 0x8c, 0x8c, 0x8b,\n    0x89, 0x88, 0x87, 0x86, 0x85, 0x85, 0x86, 0x87, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86,\n    0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x86, 0x86, 0x85, 0x84, 0x84, 0x84,\n    0x86, 0x87, 0x88, 0x89, 0x8a, 0x8a, 0x89, 0x89, 0x8b, 0x8a, 0x8a, 0x89, 0x88, 0x87, 0x86, 0x86,\n    0x87, 0x88, 0x88, 0x89, 0x88, 0x87, 0x86, 0x85, 0x87, 0x88, 0x89, 0x8a, 0x8a, 0x8a, 0x89, 0x89,\n    0x78, 0x79, 0x7b, 0x7c, 0x7b, 0x78, 0x75, 0x73, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x79, 0x77, 0x75,\n    0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x78,\n    0x75, 0x76, 0x78, 0x7a, 0x7a, 0x79, 0x78, 0x77, 0x78, 0x78, 0x78, 0x78, 0x77, 0x76, 0x75, 0x74,\n    0x76, 0x77, 0x78, 0x79, 0x79, 0x78, 0x78, 0x77, 0x79, 0x7b, 0x7d, 0x7e, 0x7d, 0x7a, 0x77, 0x75,\n    0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7a, 0x7b, 0x7d, 0x7f, 0x80, 0x81, 0x81, 0x80,\n    0x7a, 0x7b, 0x7d, 0x7f, 0x7f, 0x7e, 0x7d, 0x7c, 0x79, 0x7b, 0x8d, 0xa7, 0xb3, 0xac, 0xa4, 0xa4,\n    0xa7, 0xa7, 0xa8, 0xa8, 0xa9, 0xa9, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xab, 0xac, 0xac, 0xad, 0xad,\n    0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xaf, 0xb0, 0xb1, 0xb2, 0xb2, 0xb3,\n    0xae, 0xb4, 0xb4, 0xae, 0xab, 0xa6, 0x93, 0x7c, 0x7b, 0x7b, 0x7c, 0x7c, 0x7e, 0x7f, 0x80, 0x81,\n    0x7e, 0x7e, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x7d, 0x7e, 0x7f, 0x80, 0x80, 0x80, 0x7f, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f,\n    0x7e, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x79, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x77, 0x76, 0x76,\n    0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74,\n    0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73,\n    0x74, 0x7c, 0x87, 0x8f, 0x91, 0x92, 0x92, 0x93, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94,\n    0x93, 0x93, 0x93, 0x92, 0x91, 0x91, 0x90, 0x90, 0x91, 0x90, 0x8f, 0x8d, 0x8c, 0x8b, 0x8b, 0x8b,\n    0x89, 0x85, 0x83, 0x83, 0x86, 0x88, 0x87, 0x86, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85,\n    0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x87, 0x87, 0x87, 0x85, 0x83, 0x82,\n    0x87, 0x87, 0x87, 0x88, 0x88, 0x88, 0x89, 0x89, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87,\n    0x85, 0x86, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x8a, 0x89, 0x89, 0x88, 0x88, 0x87, 0x87, 0x86, 0x86,\n    0x77, 0x78, 0x7a, 0x7a, 0x7a, 0x77, 0x74, 0x73, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x79, 0x77, 0x75,\n    0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x78, 0x77, 0x77,\n    0x75, 0x76, 0x78, 0x79, 0x7a, 0x79, 0x78, 0x77, 0x79, 0x79, 0x78, 0x78, 0x77, 0x76, 0x75, 0x75,\n    0x76, 0x77, 0x78, 0x79, 0x79, 0x78, 0x78, 0x77, 0x7a, 0x7b, 0x7d, 0x7e, 0x7d, 0x7b, 0x78, 0x76,\n    0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7a, 0x7b, 0x7d, 0x7e, 0x80, 0x80, 0x80, 0x80,\n    0x7a, 0x7b, 0x7d, 0x7e, 0x7e, 0x7e, 0x7d, 0x7c, 0x7b, 0x7c, 0x8b, 0xa3, 0xaf, 0xaa, 0xa4, 0xa5,\n    0xa7, 0xa7, 0xa8, 0xa8, 0xa9, 0xa9, 0xaa, 0xaa, 0xaa, 0xaa, 0xab, 0xab, 0xac, 0xad, 0xad, 0xad,\n    0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xaf, 0xb0, 0xb1, 0xb1, 0xb2, 0xb2,\n    0xae, 0xb4, 0xb4, 0xae, 0xac, 0xa8, 0x95, 0x7f, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7f, 0x80, 0x81,\n    0x7e, 0x7e, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x7e, 0x7e, 0x7f, 0x80, 0x80, 0x80, 0x7f, 0x7e, 0x7f, 0x7f, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d,\n    0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x79, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x77, 0x76, 0x76,\n    0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74,\n    0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74,\n    0x76, 0x7e, 0x89, 0x90, 0x92, 0x92, 0x93, 0x94, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93,\n    0x93, 0x93, 0x93, 0x92, 0x91, 0x91, 0x90, 0x90, 0x90, 0x90, 0x8e, 0x8d, 0x8c, 0x8b, 0x8a, 0x8a,\n    0x88, 0x85, 0x82, 0x83, 0x86, 0x88, 0x87, 0x86, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85,\n    0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x87, 0x87, 0x87, 0x85, 0x84, 0x83,\n    0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87,\n    0x85, 0x86, 0x86, 0x87, 0x88, 0x89, 0x89, 0x8a, 0x88, 0x88, 0x88, 0x87, 0x87, 0x86, 0x86, 0x86,\n    0x75, 0x76, 0x78, 0x78, 0x78, 0x76, 0x74, 0x72, 0x77, 0x78, 0x7a, 0x7b, 0x7a, 0x79, 0x77, 0x75,\n    0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75,\n    0x76, 0x77, 0x78, 0x79, 0x79, 0x79, 0x78, 0x78, 0x79, 0x79, 0x78, 0x78, 0x77, 0x77, 0x76, 0x76,\n    0x77, 0x78, 0x78, 0x79, 0x79, 0x78, 0x77, 0x77, 0x7b, 0x7c, 0x7d, 0x7e, 0x7d, 0x7b, 0x79, 0x77,\n    0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x79, 0x7a, 0x7c, 0x7e, 0x7f, 0x7f, 0x7f, 0x7e,\n    0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7e, 0x7c, 0x88, 0x9e, 0xaa, 0xa7, 0xa5, 0xa8,\n    0xa8, 0xa8, 0xa8, 0xa9, 0xa9, 0xa9, 0xa9, 0xaa, 0xaa, 0xaa, 0xab, 0xac, 0xac, 0xad, 0xad, 0xae,\n    0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xaf, 0xaf, 0xb0, 0xb0, 0xb1, 0xb1, 0xb2,\n    0xaf, 0xb5, 0xb5, 0xaf, 0xae, 0xab, 0x9a, 0x85, 0x7d, 0x7d, 0x7c, 0x7c, 0x7d, 0x7e, 0x7f, 0x80,\n    0x7e, 0x7e, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x80, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f,\n    0x7e, 0x7f, 0x80, 0x81, 0x81, 0x80, 0x7f, 0x7e, 0x7e, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x79,\n    0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x77, 0x77, 0x76, 0x76,\n    0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74,\n    0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75,\n    0x7a, 0x82, 0x8b, 0x92, 0x93, 0x93, 0x93, 0x94, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93,\n    0x93, 0x93, 0x92, 0x92, 0x91, 0x90, 0x90, 0x90, 0x8f, 0x8f, 0x8e, 0x8d, 0x8b, 0x8a, 0x89, 0x88,\n    0x86, 0x83, 0x81, 0x82, 0x85, 0x87, 0x87, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85,\n    0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x87, 0x87, 0x87, 0x86, 0x85, 0x84,\n    0x89, 0x89, 0x88, 0x88, 0x87, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87,\n    0x86, 0x86, 0x86, 0x87, 0x88, 0x88, 0x89, 0x89, 0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85,\n    0x74, 0x75, 0x76, 0x76, 0x76, 0x75, 0x73, 0x72, 0x76, 0x77, 0x79, 0x7a, 0x7a, 0x79, 0x77, 0x75,\n    0x74, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74,\n    0x77, 0x77, 0x78, 0x78, 0x78, 0x79, 0x78, 0x78, 0x7a, 0x79, 0x78, 0x78, 0x77, 0x77, 0x77, 0x78,\n    0x78, 0x78, 0x79, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7a, 0x79,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d,\n    0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7b, 0x7b, 0x80, 0x7d, 0x85, 0x9a, 0xa6, 0xa5, 0xa5, 0xab,\n    0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xaa, 0xab, 0xab, 0xac, 0xad, 0xad, 0xae, 0xae,\n    0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xae, 0xaf, 0xaf, 0xaf, 0xb0, 0xb0, 0xb1, 0xb1,\n    0xb0, 0xb5, 0xb4, 0xaf, 0xaf, 0xae, 0x9f, 0x8c, 0x7f, 0x7e, 0x7c, 0x7b, 0x7c, 0x7d, 0x7f, 0x80,\n    0x7e, 0x7e, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x80, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e,\n    0x7f, 0x80, 0x80, 0x81, 0x81, 0x80, 0x7f, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x77, 0x76, 0x76,\n    0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x79, 0x78, 0x78, 0x78, 0x77, 0x77, 0x76, 0x76,\n    0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74,\n    0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x75, 0x76, 0x77, 0x78,\n    0x7f, 0x86, 0x8e, 0x93, 0x94, 0x93, 0x94, 0x95, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93,\n    0x93, 0x93, 0x92, 0x91, 0x91, 0x90, 0x90, 0x8f, 0x8e, 0x8e, 0x8e, 0x8d, 0x8b, 0x89, 0x87, 0x86,\n    0x83, 0x81, 0x7f, 0x80, 0x84, 0x87, 0x87, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85,\n    0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x85,\n    0x8a, 0x89, 0x89, 0x88, 0x86, 0x86, 0x85, 0x84, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87,\n    0x86, 0x86, 0x86, 0x87, 0x87, 0x88, 0x88, 0x88, 0x85, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84,\n    0x74, 0x74, 0x75, 0x75, 0x75, 0x74, 0x73, 0x73, 0x75, 0x77, 0x78, 0x7a, 0x7a, 0x79, 0x77, 0x76,\n    0x75, 0x74, 0x74, 0x74, 0x73, 0x73, 0x72, 0x72, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74,\n    0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x79, 0x79, 0x7b, 0x7a, 0x79, 0x77, 0x77, 0x78, 0x79, 0x7a,\n    0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x78, 0x77, 0x76, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a,\n    0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b,\n    0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x81, 0x7d, 0x84, 0x98, 0xa4, 0xa4, 0xa5, 0xac,\n    0xaa, 0xaa, 0xaa, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xab, 0xab, 0xac, 0xac, 0xad, 0xae, 0xae, 0xae,\n    0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xb0, 0xb0, 0xb0,\n    0xaf, 0xb4, 0xb4, 0xaf, 0xb0, 0xb2, 0xa5, 0x92, 0x81, 0x7f, 0x7d, 0x7b, 0x7b, 0x7c, 0x7e, 0x80,\n    0x7e, 0x7e, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x80, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e,\n    0x7f, 0x7f, 0x80, 0x80, 0x80, 0x7f, 0x7d, 0x7d, 0x7b, 0x7b, 0x7a, 0x78, 0x77, 0x76, 0x75, 0x74,\n    0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x77, 0x76,\n    0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74,\n    0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x73, 0x74, 0x75, 0x77, 0x79, 0x7a,\n    0x83, 0x89, 0x91, 0x94, 0x94, 0x93, 0x94, 0x95, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93,\n    0x92, 0x92, 0x92, 0x91, 0x90, 0x90, 0x8f, 0x8f, 0x8d, 0x8d, 0x8d, 0x8d, 0x8b, 0x88, 0x86, 0x84,\n    0x81, 0x7e, 0x7d, 0x7e, 0x83, 0x86, 0x86, 0x85, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86,\n    0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87,\n    0x89, 0x89, 0x88, 0x87, 0x86, 0x85, 0x84, 0x84, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87,\n    0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x87, 0x87, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85,\n    0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x76, 0x78, 0x79, 0x7a, 0x79, 0x77, 0x76,\n    0x75, 0x75, 0x75, 0x74, 0x73, 0x73, 0x72, 0x72, 0x74, 0x74, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76,\n    0x78, 0x78, 0x77, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x7c, 0x7a, 0x79, 0x77, 0x77, 0x79, 0x7a, 0x7c,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x78, 0x77, 0x76, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x7a, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x77, 0x78, 0x79, 0x7a, 0x7a, 0x7a, 0x79, 0x79,\n    0x79, 0x79, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x81, 0x7d, 0x85, 0x99, 0xa5, 0xa5, 0xa5, 0xab,\n    0xab, 0xaa, 0xaa, 0xaa, 0xaa, 0xa9, 0xa9, 0xa9, 0xab, 0xab, 0xac, 0xac, 0xad, 0xae, 0xae, 0xaf,\n    0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf,\n    0xae, 0xb3, 0xb2, 0xae, 0xb0, 0xb4, 0xa9, 0x98, 0x82, 0x80, 0x7d, 0x7a, 0x7a, 0x7b, 0x7d, 0x7f,\n    0x7e, 0x7e, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x80, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d,\n    0x7e, 0x7f, 0x7f, 0x7f, 0x7e, 0x7d, 0x7c, 0x7b, 0x79, 0x79, 0x78, 0x77, 0x76, 0x75, 0x75, 0x74,\n    0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77,\n    0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74,\n    0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x73, 0x73, 0x75, 0x78, 0x7b, 0x7d,\n    0x87, 0x8c, 0x92, 0x95, 0x94, 0x92, 0x93, 0x94, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92,\n    0x92, 0x92, 0x91, 0x91, 0x90, 0x8f, 0x8f, 0x8f, 0x8c, 0x8d, 0x8d, 0x8c, 0x8a, 0x87, 0x84, 0x82,\n    0x7f, 0x7c, 0x7b, 0x7d, 0x82, 0x85, 0x86, 0x85, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86,\n    0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x87, 0x86, 0x86, 0x86, 0x86, 0x87, 0x88, 0x89,\n    0x88, 0x88, 0x87, 0x87, 0x86, 0x85, 0x85, 0x85, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87,\n    0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85,\n    0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x74, 0x75, 0x77, 0x79, 0x7a, 0x79, 0x77, 0x76,\n    0x77, 0x76, 0x76, 0x75, 0x74, 0x73, 0x73, 0x72, 0x76, 0x76, 0x76, 0x77, 0x77, 0x78, 0x78, 0x78,\n    0x79, 0x78, 0x77, 0x76, 0x76, 0x78, 0x79, 0x7a, 0x7c, 0x7b, 0x79, 0x77, 0x77, 0x79, 0x7b, 0x7d,\n    0x7a, 0x7b, 0x7b, 0x7b, 0x7a, 0x78, 0x77, 0x76, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a,\n    0x7a, 0x79, 0x79, 0x79, 0x78, 0x78, 0x77, 0x77, 0x76, 0x77, 0x78, 0x79, 0x79, 0x79, 0x78, 0x77,\n    0x79, 0x78, 0x77, 0x76, 0x77, 0x78, 0x7a, 0x7b, 0x7f, 0x7d, 0x87, 0x9c, 0xa8, 0xa6, 0xa5, 0xaa,\n    0xab, 0xab, 0xab, 0xaa, 0xaa, 0xa9, 0xa9, 0xa9, 0xab, 0xac, 0xac, 0xad, 0xad, 0xae, 0xaf, 0xaf,\n    0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xae, 0xae,\n    0xad, 0xb2, 0xb1, 0xac, 0xb0, 0xb5, 0xac, 0x9b, 0x84, 0x81, 0x7d, 0x7a, 0x79, 0x7b, 0x7d, 0x7f,\n    0x7e, 0x7e, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x80, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d,\n    0x7d, 0x7d, 0x7e, 0x7e, 0x7d, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76,\n    0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77,\n    0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74,\n    0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x73, 0x73, 0x75, 0x79, 0x7c, 0x7f,\n    0x89, 0x8e, 0x93, 0x95, 0x93, 0x91, 0x92, 0x93, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92,\n    0x92, 0x92, 0x91, 0x90, 0x90, 0x8f, 0x8f, 0x8e, 0x8b, 0x8c, 0x8d, 0x8c, 0x8a, 0x86, 0x83, 0x80,\n    0x7d, 0x7b, 0x79, 0x7c, 0x81, 0x85, 0x86, 0x85, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86,\n    0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x87, 0x87, 0x86, 0x85, 0x86, 0x87, 0x89, 0x8a,\n    0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87,\n    0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x86, 0x87,\n    0x75, 0x75, 0x74, 0x74, 0x74, 0x75, 0x76, 0x76, 0x73, 0x75, 0x77, 0x79, 0x7a, 0x79, 0x77, 0x76,\n    0x77, 0x77, 0x76, 0x75, 0x75, 0x74, 0x73, 0x73, 0x77, 0x77, 0x77, 0x78, 0x78, 0x79, 0x79, 0x79,\n    0x79, 0x78, 0x77, 0x76, 0x76, 0x78, 0x79, 0x7b, 0x7d, 0x7b, 0x79, 0x77, 0x77, 0x79, 0x7c, 0x7e,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x77, 0x76, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x7a,\n    0x79, 0x79, 0x79, 0x78, 0x78, 0x77, 0x77, 0x77, 0x76, 0x77, 0x78, 0x79, 0x79, 0x78, 0x77, 0x77,\n    0x79, 0x78, 0x77, 0x76, 0x76, 0x77, 0x79, 0x7a, 0x7e, 0x7d, 0x88, 0x9e, 0xaa, 0xa7, 0xa5, 0xa9,\n    0xac, 0xab, 0xab, 0xaa, 0xaa, 0xa9, 0xa9, 0xa9, 0xab, 0xac, 0xac, 0xad, 0xae, 0xae, 0xaf, 0xaf,\n    0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xaf, 0xaf, 0xaf, 0xaf, 0xae, 0xae, 0xae, 0xae,\n    0xad, 0xb1, 0xb0, 0xac, 0xb0, 0xb5, 0xad, 0x9d, 0x84, 0x82, 0x7d, 0x7a, 0x79, 0x7a, 0x7d, 0x7f,\n    0x7e, 0x7e, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x80, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7a, 0x79, 0x78, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77,\n    0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77,\n    0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74,\n    0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x75, 0x74, 0x73, 0x73, 0x75, 0x79, 0x7d, 0x80,\n    0x8a, 0x8e, 0x93, 0x94, 0x92, 0x91, 0x91, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92,\n    0x92, 0x91, 0x91, 0x90, 0x90, 0x8f, 0x8f, 0x8e, 0x8b, 0x8c, 0x8c, 0x8c, 0x8a, 0x86, 0x82, 0x7f,\n    0x7c, 0x7a, 0x79, 0x7b, 0x80, 0x85, 0x85, 0x84, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86,\n    0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x87, 0x87, 0x86, 0x85, 0x86, 0x87, 0x89, 0x8a,\n    0x85, 0x85, 0x85, 0x86, 0x86, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87,\n    0x87, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x85, 0x84, 0x85, 0x85, 0x86, 0x86, 0x87, 0x87, 0x87,\n    0x74, 0x75, 0x76, 0x77, 0x78, 0x77, 0x75, 0x74, 0x76, 0x77, 0x77, 0x78, 0x79, 0x79, 0x7a, 0x7a,\n    0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x7b, 0x7c, 0x7c, 0x7b, 0x7a, 0x79,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b,\n    0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x78, 0x77, 0x76, 0x76, 0x76, 0x77, 0x78, 0x78, 0x73, 0x75, 0x78, 0x7b, 0x7c, 0x7c, 0x7a, 0x79,\n    0x76, 0x77, 0x79, 0x7b, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x88, 0x99, 0xa4, 0xa7, 0xa8, 0xab, 0xae,\n    0xab, 0xab, 0xaa, 0xaa, 0xa9, 0xa9, 0xa8, 0xa8, 0xaa, 0xab, 0xab, 0xac, 0xad, 0xae, 0xaf, 0xaf,\n    0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xaf, 0xaf, 0xaf, 0xae, 0xae, 0xae,\n    0xad, 0xaf, 0xb2, 0xb3, 0xb2, 0xaf, 0xab, 0xa8, 0x94, 0x82, 0x76, 0x7a, 0x7d, 0x79, 0x7a, 0x80,\n    0x7c, 0x7d, 0x7f, 0x81, 0x81, 0x80, 0x7f, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c,\n    0x7d, 0x7d, 0x7c, 0x7b, 0x79, 0x78, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77,\n    0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x76, 0x77, 0x77, 0x77, 0x78,\n    0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74,\n    0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x72, 0x73, 0x74, 0x73, 0x74, 0x79, 0x81, 0x87,\n    0x8e, 0x8f, 0x91, 0x92, 0x93, 0x93, 0x92, 0x92, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91,\n    0x91, 0x91, 0x90, 0x8f, 0x8e, 0x8d, 0x8c, 0x8c, 0x8e, 0x8d, 0x8b, 0x88, 0x85, 0x81, 0x7e, 0x7c,\n    0x77, 0x79, 0x7c, 0x80, 0x83, 0x85, 0x87, 0x87, 0x86, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84,\n    0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x88, 0x88, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86,\n    0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x89, 0x89, 0x88, 0x88, 0x87, 0x86, 0x85, 0x85,\n    0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x87,\n    0x74, 0x75, 0x76, 0x77, 0x78, 0x77, 0x76, 0x75, 0x76, 0x77, 0x77, 0x78, 0x78, 0x79, 0x79, 0x7a,\n    0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x79, 0x77, 0x78, 0x7a, 0x7b, 0x7c, 0x7b, 0x7a, 0x7a,\n    0x7a, 0x7a, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b,\n    0x7b, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78,\n    0x79, 0x78, 0x77, 0x76, 0x76, 0x77, 0x78, 0x78, 0x74, 0x76, 0x79, 0x7b, 0x7c, 0x7b, 0x7a, 0x79,\n    0x77, 0x78, 0x7a, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x7d, 0x8a, 0x9a, 0xa5, 0xa7, 0xa8, 0xaa, 0xad,\n    0xaa, 0xaa, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xab, 0xab, 0xac, 0xac, 0xad, 0xae, 0xaf, 0xaf,\n    0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xaf, 0xaf, 0xaf, 0xae, 0xae, 0xae,\n    0xad, 0xaf, 0xb2, 0xb3, 0xb2, 0xaf, 0xac, 0xa9, 0x95, 0x83, 0x77, 0x79, 0x7c, 0x79, 0x79, 0x7f,\n    0x7e, 0x7f, 0x80, 0x81, 0x81, 0x80, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77,\n    0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x76, 0x76, 0x77, 0x77, 0x77,\n    0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74,\n    0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x72, 0x73, 0x74, 0x73, 0x74, 0x79, 0x81, 0x88,\n    0x8e, 0x8f, 0x91, 0x92, 0x93, 0x93, 0x92, 0x92, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91,\n    0x91, 0x91, 0x90, 0x8f, 0x8e, 0x8d, 0x8d, 0x8c, 0x8d, 0x8c, 0x89, 0x86, 0x83, 0x7f, 0x7c, 0x7b,\n    0x78, 0x79, 0x7d, 0x80, 0x83, 0x85, 0x86, 0x87, 0x86, 0x86, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84,\n    0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x88, 0x88, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86,\n    0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x89, 0x89, 0x88, 0x87, 0x87, 0x86, 0x85, 0x85,\n    0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x87, 0x87,\n    0x74, 0x75, 0x76, 0x77, 0x77, 0x77, 0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x79,\n    0x77, 0x77, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x76, 0x77, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x78, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7b, 0x7a, 0x7a,\n    0x78, 0x78, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78,\n    0x7b, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x78, 0x78, 0x75, 0x77, 0x79, 0x7b, 0x7c, 0x7b, 0x7a, 0x79,\n    0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x81, 0x8d, 0x9d, 0xa6, 0xa7, 0xa7, 0xaa, 0xad,\n    0xa7, 0xa8, 0xa8, 0xa9, 0xa9, 0xaa, 0xab, 0xab, 0xab, 0xac, 0xac, 0xad, 0xad, 0xae, 0xaf, 0xaf,\n    0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xaf, 0xaf, 0xaf, 0xae, 0xae, 0xae,\n    0xad, 0xaf, 0xb1, 0xb3, 0xb2, 0xaf, 0xac, 0xaa, 0x97, 0x84, 0x77, 0x79, 0x7c, 0x78, 0x79, 0x7f,\n    0x80, 0x80, 0x81, 0x81, 0x80, 0x7f, 0x7e, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b,\n    0x7a, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x76, 0x75, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x78,\n    0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x77, 0x77,\n    0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74,\n    0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x73, 0x74, 0x74, 0x74, 0x75, 0x79, 0x82, 0x88,\n    0x8e, 0x8f, 0x90, 0x91, 0x92, 0x92, 0x92, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91,\n    0x92, 0x91, 0x91, 0x90, 0x8f, 0x8e, 0x8d, 0x8c, 0x8b, 0x8a, 0x87, 0x84, 0x80, 0x7d, 0x7a, 0x79,\n    0x79, 0x7b, 0x7d, 0x81, 0x83, 0x85, 0x86, 0x87, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x84, 0x84,\n    0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x88, 0x88, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86,\n    0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x88, 0x88, 0x88, 0x87, 0x86, 0x86, 0x85, 0x85,\n    0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x84, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86,\n    0x75, 0x75, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78,\n    0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x75, 0x76, 0x77, 0x79, 0x7a, 0x7b, 0x7b, 0x7b,\n    0x77, 0x78, 0x79, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7a, 0x79,\n    0x76, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b,\n    0x7d, 0x7c, 0x7a, 0x79, 0x78, 0x78, 0x78, 0x79, 0x77, 0x78, 0x7a, 0x7b, 0x7b, 0x7b, 0x79, 0x79,\n    0x7a, 0x7a, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x86, 0x92, 0xa0, 0xa7, 0xa8, 0xa7, 0xa9, 0xac,\n    0xa6, 0xa6, 0xa7, 0xa8, 0xa9, 0xab, 0xac, 0xac, 0xac, 0xac, 0xad, 0xad, 0xae, 0xae, 0xae, 0xaf,\n    0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xaf, 0xaf, 0xaf, 0xae, 0xae, 0xae,\n    0xad, 0xaf, 0xb1, 0xb2, 0xb1, 0xaf, 0xad, 0xab, 0x9a, 0x87, 0x79, 0x7a, 0x7c, 0x78, 0x79, 0x7f,\n    0x81, 0x81, 0x81, 0x80, 0x7f, 0x7e, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x78, 0x78, 0x78, 0x77, 0x76, 0x75, 0x75, 0x74, 0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78,\n    0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76,\n    0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74,\n    0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x73, 0x74, 0x75, 0x74, 0x75, 0x7a, 0x82, 0x89,\n    0x8d, 0x8e, 0x8f, 0x91, 0x91, 0x91, 0x91, 0x91, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90,\n    0x91, 0x91, 0x90, 0x8f, 0x8e, 0x8d, 0x8d, 0x8c, 0x89, 0x87, 0x84, 0x80, 0x7d, 0x7a, 0x78, 0x77,\n    0x7b, 0x7c, 0x7f, 0x82, 0x84, 0x85, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85,\n    0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x88, 0x88, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86,\n    0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x88, 0x87, 0x87, 0x87, 0x86, 0x86, 0x85, 0x85,\n    0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x86, 0x86,\n    0x75, 0x75, 0x75, 0x76, 0x77, 0x78, 0x79, 0x79, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x78,\n    0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x76, 0x76, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x7b,\n    0x77, 0x78, 0x7a, 0x7b, 0x7b, 0x7b, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7a, 0x79, 0x78,\n    0x75, 0x76, 0x78, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e,\n    0x7e, 0x7d, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x79,\n    0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x8c, 0x97, 0xa3, 0xa9, 0xa8, 0xa6, 0xa8, 0xab,\n    0xa5, 0xa5, 0xa6, 0xa8, 0xa9, 0xab, 0xac, 0xac, 0xad, 0xad, 0xad, 0xae, 0xae, 0xae, 0xae, 0xae,\n    0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xaf, 0xaf, 0xaf, 0xae, 0xae, 0xae,\n    0xae, 0xaf, 0xb0, 0xb1, 0xb1, 0xaf, 0xae, 0xac, 0x9e, 0x8a, 0x7b, 0x7b, 0x7c, 0x78, 0x79, 0x7f,\n    0x81, 0x81, 0x7f, 0x7e, 0x7d, 0x7c, 0x7c, 0x7c, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x78,\n    0x77, 0x77, 0x77, 0x76, 0x75, 0x75, 0x75, 0x74, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78,\n    0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75,\n    0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74,\n    0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x75, 0x76, 0x75, 0x76, 0x7b, 0x83, 0x89,\n    0x8c, 0x8d, 0x8f, 0x90, 0x91, 0x91, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90,\n    0x90, 0x90, 0x8f, 0x8e, 0x8d, 0x8c, 0x8c, 0x8b, 0x86, 0x84, 0x81, 0x7d, 0x7a, 0x79, 0x78, 0x78,\n    0x7c, 0x7e, 0x80, 0x82, 0x84, 0x85, 0x86, 0x86, 0x87, 0x87, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85,\n    0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x88, 0x88, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86,\n    0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x87, 0x87, 0x86, 0x86, 0x86, 0x86, 0x86, 0x85,\n    0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x84, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86,\n    0x76, 0x75, 0x75, 0x76, 0x77, 0x78, 0x7a, 0x7b, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x78,\n    0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x78, 0x77, 0x77, 0x76, 0x77, 0x78, 0x79, 0x79,\n    0x77, 0x79, 0x7b, 0x7c, 0x7d, 0x7c, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7b, 0x7a, 0x79, 0x78, 0x77,\n    0x75, 0x76, 0x79, 0x7b, 0x7c, 0x7b, 0x7a, 0x79, 0x7c, 0x7c, 0x7d, 0x7d, 0x7e, 0x7f, 0x7f, 0x7f,\n    0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7c, 0x7d, 0x7e, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x78,\n    0x7a, 0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x7d, 0x7e, 0x92, 0x9b, 0xa6, 0xab, 0xa8, 0xa6, 0xa7, 0xaa,\n    0xa5, 0xa5, 0xa6, 0xa7, 0xa9, 0xaa, 0xab, 0xab, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae,\n    0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xaf, 0xaf, 0xaf, 0xae, 0xae, 0xae,\n    0xae, 0xae, 0xaf, 0xb0, 0xb0, 0xaf, 0xae, 0xae, 0xa3, 0x8e, 0x7e, 0x7d, 0x7e, 0x79, 0x7a, 0x81,\n    0x7f, 0x7e, 0x7d, 0x7c, 0x7b, 0x7b, 0x7c, 0x7c, 0x79, 0x79, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77,\n    0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x79,\n    0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74,\n    0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74,\n    0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x75, 0x76, 0x76, 0x76, 0x76, 0x7b, 0x83, 0x8a,\n    0x8c, 0x8d, 0x8e, 0x8f, 0x90, 0x90, 0x90, 0x8f, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90,\n    0x8f, 0x8e, 0x8e, 0x8d, 0x8c, 0x8b, 0x8a, 0x8a, 0x82, 0x81, 0x7e, 0x7b, 0x79, 0x79, 0x79, 0x7a,\n    0x7e, 0x7f, 0x81, 0x83, 0x85, 0x85, 0x85, 0x85, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x85, 0x85,\n    0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x88, 0x88, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86,\n    0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86,\n    0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87,\n    0x76, 0x75, 0x75, 0x75, 0x76, 0x78, 0x7a, 0x7c, 0x80, 0x7f, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x79,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x77, 0x76, 0x75, 0x76, 0x77, 0x77,\n    0x78, 0x7a, 0x7c, 0x7e, 0x7e, 0x7d, 0x7b, 0x7a, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x77, 0x77,\n    0x75, 0x77, 0x79, 0x7c, 0x7c, 0x7b, 0x79, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7e, 0x7f, 0x80, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x78,\n    0x79, 0x79, 0x78, 0x79, 0x7a, 0x7d, 0x7f, 0x80, 0x96, 0x9f, 0xa9, 0xac, 0xa8, 0xa5, 0xa6, 0xa9,\n    0xa6, 0xa6, 0xa7, 0xa7, 0xa8, 0xa9, 0xaa, 0xaa, 0xaf, 0xaf, 0xaf, 0xae, 0xae, 0xae, 0xae, 0xae,\n    0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xaf, 0xaf, 0xaf, 0xae, 0xae, 0xae,\n    0xae, 0xae, 0xaf, 0xb0, 0xb0, 0xaf, 0xaf, 0xae, 0xa7, 0x92, 0x81, 0x7f, 0x7f, 0x7b, 0x7c, 0x82,\n    0x7c, 0x7c, 0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x78, 0x78, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76,\n    0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x79, 0x79,\n    0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x74, 0x74, 0x74, 0x73,\n    0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74,\n    0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x75, 0x76, 0x77, 0x76, 0x77, 0x7c, 0x84, 0x8b,\n    0x8b, 0x8c, 0x8e, 0x8f, 0x90, 0x90, 0x8f, 0x8f, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90,\n    0x8d, 0x8d, 0x8c, 0x8b, 0x8a, 0x89, 0x88, 0x88, 0x80, 0x7e, 0x7b, 0x79, 0x78, 0x79, 0x7b, 0x7c,\n    0x7f, 0x81, 0x82, 0x84, 0x85, 0x85, 0x85, 0x85, 0x87, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x85,\n    0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x88, 0x88, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86,\n    0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86,\n    0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x87, 0x87, 0x87, 0x87, 0x88, 0x88, 0x88, 0x88,\n    0x76, 0x76, 0x75, 0x75, 0x76, 0x79, 0x7b, 0x7c, 0x81, 0x81, 0x80, 0x7e, 0x7d, 0x7b, 0x7a, 0x7a,\n    0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7b, 0x7a, 0x77, 0x75, 0x74, 0x75, 0x75, 0x76,\n    0x79, 0x7a, 0x7d, 0x7f, 0x80, 0x7e, 0x7c, 0x7a, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x77, 0x76,\n    0x76, 0x77, 0x7a, 0x7c, 0x7c, 0x7b, 0x78, 0x77, 0x76, 0x76, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x7a,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7f, 0x81, 0x82, 0x7e, 0x7d, 0x7c, 0x7b, 0x79, 0x79, 0x78, 0x78,\n    0x78, 0x78, 0x78, 0x78, 0x7a, 0x7d, 0x80, 0x82, 0x98, 0xa1, 0xaa, 0xac, 0xa9, 0xa5, 0xa6, 0xa9,\n    0xa6, 0xa7, 0xa7, 0xa7, 0xa8, 0xa9, 0xa9, 0xa9, 0xaf, 0xaf, 0xaf, 0xaf, 0xae, 0xae, 0xae, 0xae,\n    0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xaf, 0xaf, 0xaf, 0xae, 0xae, 0xae,\n    0xae, 0xae, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xa9, 0x94, 0x83, 0x80, 0x80, 0x7c, 0x7d, 0x83,\n    0x7b, 0x7a, 0x78, 0x78, 0x78, 0x7a, 0x7b, 0x7d, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x75,\n    0x77, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x77, 0x77, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79,\n    0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x74, 0x74, 0x73, 0x73,\n    0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74,\n    0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x75, 0x76, 0x77, 0x77, 0x77, 0x7c, 0x84, 0x8b,\n    0x8b, 0x8c, 0x8d, 0x8f, 0x8f, 0x8f, 0x8f, 0x8e, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f,\n    0x8c, 0x8c, 0x8b, 0x8a, 0x89, 0x88, 0x87, 0x87, 0x7e, 0x7c, 0x7a, 0x78, 0x78, 0x7a, 0x7d, 0x7e,\n    0x80, 0x81, 0x83, 0x84, 0x85, 0x85, 0x85, 0x85, 0x87, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x86,\n    0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x88, 0x88, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86,\n    0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86,\n    0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x87, 0x88, 0x88, 0x88, 0x88, 0x89, 0x89, 0x89,\n    0x76, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7f, 0x7e, 0x7e, 0x7d, 0x7c, 0x7b, 0x7b, 0x7a,\n    0x75, 0x76, 0x76, 0x77, 0x78, 0x79, 0x79, 0x7a, 0x76, 0x76, 0x77, 0x77, 0x76, 0x75, 0x74, 0x73,\n    0x72, 0x73, 0x75, 0x77, 0x78, 0x79, 0x79, 0x79, 0x76, 0x77, 0x77, 0x78, 0x78, 0x77, 0x77, 0x76,\n    0x72, 0x74, 0x77, 0x79, 0x7a, 0x79, 0x77, 0x75, 0x74, 0x75, 0x76, 0x78, 0x79, 0x7a, 0x7a, 0x7b,\n    0x77, 0x78, 0x7a, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x79, 0x7a, 0x7c, 0x7d, 0x7c, 0x79, 0x76, 0x74,\n    0x71, 0x78, 0x7e, 0x7c, 0x78, 0x7b, 0x86, 0x91, 0xa6, 0xa6, 0xa8, 0xa8, 0xa8, 0xa7, 0xa5, 0xa4,\n    0xa5, 0xa6, 0xa7, 0xa8, 0xaa, 0xac, 0xad, 0xae, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad,\n    0xb0, 0xb0, 0xb1, 0xb1, 0xb1, 0xb0, 0xaf, 0xae, 0xb1, 0xb1, 0xb0, 0xb0, 0xaf, 0xae, 0xae, 0xae,\n    0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xaf, 0xa6, 0x98, 0x88, 0x7f, 0x7d, 0x7e, 0x7d, 0x7b,\n    0x78, 0x79, 0x7a, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x77, 0x77, 0x77, 0x76, 0x75, 0x75, 0x74, 0x74,\n    0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77,\n    0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x78, 0x75, 0x72, 0x71, 0x72, 0x72, 0x6f, 0x6c,\n    0x77, 0x74, 0x70, 0x70, 0x74, 0x77, 0x77, 0x76, 0x71, 0x72, 0x72, 0x73, 0x74, 0x74, 0x74, 0x74,\n    0x78, 0x70, 0x6e, 0x75, 0x76, 0x71, 0x73, 0x7c, 0x79, 0x78, 0x77, 0x78, 0x7b, 0x80, 0x85, 0x88,\n    0x8c, 0x8d, 0x8e, 0x8f, 0x8f, 0x8f, 0x8e, 0x8d, 0x91, 0x90, 0x90, 0x8f, 0x8e, 0x8e, 0x8d, 0x8d,\n    0x8b, 0x8c, 0x8b, 0x8a, 0x88, 0x85, 0x81, 0x7f, 0x75, 0x76, 0x77, 0x79, 0x7a, 0x7b, 0x7c, 0x7c,\n    0x7a, 0x7c, 0x80, 0x84, 0x86, 0x86, 0x85, 0x84, 0x84, 0x83, 0x82, 0x82, 0x83, 0x84, 0x86, 0x88,\n    0x85, 0x85, 0x85, 0x86, 0x87, 0x87, 0x88, 0x88, 0x8a, 0x89, 0x89, 0x88, 0x87, 0x86, 0x85, 0x85,\n    0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x87, 0x87,\n    0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x87, 0x88, 0x89, 0x89, 0x8a,\n    0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7d, 0x7d, 0x7c, 0x7c, 0x7b, 0x7a, 0x7a, 0x79,\n    0x75, 0x76, 0x76, 0x77, 0x78, 0x79, 0x79, 0x79, 0x75, 0x76, 0x76, 0x76, 0x76, 0x75, 0x73, 0x73,\n    0x72, 0x73, 0x75, 0x77, 0x78, 0x78, 0x78, 0x78, 0x75, 0x76, 0x77, 0x77, 0x77, 0x77, 0x76, 0x75,\n    0x72, 0x74, 0x77, 0x79, 0x7a, 0x79, 0x77, 0x76, 0x73, 0x74, 0x75, 0x77, 0x78, 0x79, 0x7a, 0x7a,\n    0x76, 0x78, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b, 0x79, 0x7a, 0x7c, 0x7d, 0x7c, 0x7a, 0x77, 0x76,\n    0x74, 0x79, 0x7d, 0x7b, 0x78, 0x7d, 0x89, 0x95, 0xa6, 0xa7, 0xa8, 0xa9, 0xa8, 0xa7, 0xa6, 0xa5,\n    0xa6, 0xa6, 0xa8, 0xa9, 0xab, 0xac, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae,\n    0xaf, 0xb0, 0xb1, 0xb1, 0xb1, 0xb0, 0xaf, 0xaf, 0xb1, 0xb1, 0xb0, 0xb0, 0xaf, 0xae, 0xae, 0xae,\n    0xae, 0xae, 0xae, 0xae, 0xae, 0xaf, 0xaf, 0xaf, 0xa6, 0x99, 0x89, 0x7f, 0x7e, 0x7f, 0x7e, 0x7b,\n    0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76,\n    0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77,\n    0x76, 0x76, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x77, 0x74, 0x72, 0x73, 0x76, 0x79, 0x78, 0x76,\n    0x75, 0x75, 0x76, 0x79, 0x7c, 0x7c, 0x7a, 0x78, 0x7f, 0x80, 0x81, 0x81, 0x81, 0x81, 0x80, 0x80,\n    0x7d, 0x73, 0x71, 0x77, 0x78, 0x72, 0x74, 0x7c, 0x7a, 0x79, 0x78, 0x78, 0x7b, 0x80, 0x84, 0x88,\n    0x8c, 0x8d, 0x8e, 0x8f, 0x8f, 0x8f, 0x8e, 0x8d, 0x90, 0x90, 0x90, 0x8f, 0x8e, 0x8e, 0x8d, 0x8d,\n    0x8c, 0x8c, 0x8b, 0x89, 0x87, 0x83, 0x80, 0x7e, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7b,\n    0x7a, 0x7d, 0x80, 0x83, 0x85, 0x86, 0x85, 0x84, 0x85, 0x84, 0x83, 0x83, 0x83, 0x84, 0x86, 0x87,\n    0x85, 0x85, 0x85, 0x86, 0x87, 0x87, 0x88, 0x88, 0x89, 0x88, 0x88, 0x87, 0x86, 0x86, 0x85, 0x85,\n    0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x87,\n    0x86, 0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x87, 0x88, 0x88, 0x89,\n    0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7f, 0x7f, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x78,\n    0x75, 0x76, 0x76, 0x77, 0x77, 0x78, 0x79, 0x79, 0x74, 0x75, 0x75, 0x76, 0x76, 0x75, 0x73, 0x73,\n    0x72, 0x73, 0x75, 0x76, 0x77, 0x78, 0x77, 0x77, 0x73, 0x74, 0x75, 0x76, 0x76, 0x75, 0x74, 0x73,\n    0x73, 0x74, 0x77, 0x78, 0x79, 0x79, 0x77, 0x76, 0x73, 0x73, 0x74, 0x75, 0x77, 0x78, 0x79, 0x7a,\n    0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x7a, 0x7c, 0x7d, 0x7d, 0x7c, 0x7a, 0x79,\n    0x78, 0x7b, 0x7c, 0x79, 0x79, 0x80, 0x8f, 0x9b, 0xa8, 0xa8, 0xa9, 0xa9, 0xa9, 0xa8, 0xa7, 0xa6,\n    0xa7, 0xa7, 0xa8, 0xaa, 0xac, 0xad, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf,\n    0xaf, 0xb0, 0xb1, 0xb1, 0xb1, 0xb1, 0xb0, 0xaf, 0xb1, 0xb1, 0xb0, 0xb0, 0xaf, 0xae, 0xae, 0xae,\n    0xad, 0xad, 0xae, 0xae, 0xae, 0xaf, 0xaf, 0xaf, 0xa7, 0x9a, 0x8a, 0x80, 0x7f, 0x80, 0x7f, 0x7c,\n    0x7e, 0x7f, 0x7f, 0x7f, 0x7e, 0x7d, 0x7c, 0x7b, 0x74, 0x75, 0x75, 0x76, 0x76, 0x77, 0x78, 0x78,\n    0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77,\n    0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x76, 0x73, 0x72, 0x76, 0x7c, 0x83, 0x86, 0x87,\n    0x82, 0x84, 0x87, 0x8a, 0x8c, 0x8c, 0x8a, 0x89, 0x93, 0x93, 0x94, 0x95, 0x94, 0x93, 0x92, 0x91,\n    0x85, 0x79, 0x74, 0x79, 0x7a, 0x75, 0x76, 0x7d, 0x7c, 0x7b, 0x79, 0x79, 0x7b, 0x7f, 0x84, 0x86,\n    0x8c, 0x8d, 0x8e, 0x8f, 0x8f, 0x8f, 0x8e, 0x8d, 0x90, 0x90, 0x8f, 0x8e, 0x8e, 0x8d, 0x8d, 0x8c,\n    0x8c, 0x8b, 0x8a, 0x87, 0x84, 0x80, 0x7d, 0x7b, 0x78, 0x78, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a,\n    0x7c, 0x7d, 0x80, 0x83, 0x85, 0x85, 0x85, 0x84, 0x86, 0x86, 0x84, 0x84, 0x83, 0x84, 0x84, 0x85,\n    0x85, 0x85, 0x85, 0x86, 0x87, 0x87, 0x88, 0x88, 0x87, 0x87, 0x87, 0x86, 0x85, 0x85, 0x84, 0x84,\n    0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x88, 0x88, 0x88,\n    0x88, 0x88, 0x88, 0x87, 0x86, 0x86, 0x85, 0x85, 0x84, 0x84, 0x85, 0x85, 0x86, 0x87, 0x87, 0x87,\n    0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x79, 0x78, 0x78, 0x78, 0x77, 0x77, 0x76, 0x76,\n    0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x74, 0x74, 0x75, 0x76, 0x76, 0x75, 0x74, 0x73,\n    0x73, 0x74, 0x75, 0x76, 0x77, 0x77, 0x77, 0x77, 0x72, 0x73, 0x74, 0x74, 0x74, 0x74, 0x73, 0x72,\n    0x73, 0x75, 0x76, 0x78, 0x78, 0x78, 0x77, 0x77, 0x73, 0x73, 0x73, 0x74, 0x75, 0x77, 0x79, 0x7a,\n    0x78, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x7a, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b,\n    0x7c, 0x7c, 0x7b, 0x79, 0x7b, 0x86, 0x96, 0xa2, 0xa9, 0xa9, 0xa9, 0xa9, 0xa8, 0xa8, 0xa7, 0xa7,\n    0xa7, 0xa8, 0xa9, 0xab, 0xac, 0xae, 0xaf, 0xb0, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf,\n    0xae, 0xaf, 0xb0, 0xb1, 0xb1, 0xb1, 0xb0, 0xb0, 0xb1, 0xb1, 0xb0, 0xb0, 0xaf, 0xae, 0xae, 0xae,\n    0xad, 0xad, 0xad, 0xae, 0xaf, 0xaf, 0xaf, 0xb0, 0xa8, 0x9b, 0x8a, 0x81, 0x7f, 0x80, 0x7f, 0x7d,\n    0x81, 0x81, 0x81, 0x81, 0x7f, 0x7d, 0x7b, 0x7a, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7a,\n    0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77,\n    0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x76, 0x76, 0x75, 0x73, 0x72, 0x78, 0x82, 0x8d, 0x95, 0x98,\n    0x9c, 0x9c, 0x9a, 0x97, 0x96, 0x99, 0x9e, 0xa3, 0xa2, 0xa3, 0xa4, 0xa4, 0xa4, 0xa2, 0xa0, 0x9f,\n    0x8e, 0x7f, 0x76, 0x7a, 0x7d, 0x78, 0x77, 0x7d, 0x7e, 0x7c, 0x7b, 0x7a, 0x7c, 0x7f, 0x83, 0x86,\n    0x8c, 0x8d, 0x8e, 0x8f, 0x8f, 0x8f, 0x8e, 0x8d, 0x8f, 0x8f, 0x8e, 0x8e, 0x8d, 0x8c, 0x8c, 0x8c,\n    0x8c, 0x8a, 0x88, 0x85, 0x81, 0x7d, 0x7a, 0x78, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x79, 0x79, 0x7a,\n    0x7d, 0x7f, 0x81, 0x83, 0x85, 0x85, 0x85, 0x85, 0x87, 0x87, 0x86, 0x85, 0x84, 0x84, 0x83, 0x83,\n    0x85, 0x85, 0x85, 0x86, 0x87, 0x87, 0x88, 0x88, 0x86, 0x86, 0x86, 0x85, 0x85, 0x84, 0x84, 0x84,\n    0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x87, 0x88, 0x88, 0x88, 0x88,\n    0x89, 0x89, 0x89, 0x88, 0x87, 0x86, 0x86, 0x85, 0x84, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x86,\n    0x74, 0x74, 0x75, 0x76, 0x77, 0x78, 0x78, 0x79, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x76, 0x75,\n    0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x74, 0x74, 0x75, 0x76, 0x76, 0x76, 0x75, 0x74,\n    0x74, 0x75, 0x76, 0x77, 0x78, 0x78, 0x77, 0x77, 0x71, 0x72, 0x73, 0x74, 0x74, 0x73, 0x72, 0x71,\n    0x74, 0x75, 0x76, 0x77, 0x78, 0x78, 0x78, 0x78, 0x74, 0x73, 0x73, 0x73, 0x75, 0x77, 0x79, 0x7a,\n    0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7e, 0x7d, 0x7a, 0x7b, 0x80, 0x8d, 0x9c, 0xa6, 0xa9, 0xa9, 0xa8, 0xa8, 0xa7, 0xa7, 0xa7, 0xa7,\n    0xa7, 0xa8, 0xa9, 0xab, 0xac, 0xae, 0xaf, 0xb0, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf,\n    0xae, 0xaf, 0xb0, 0xb1, 0xb1, 0xb1, 0xb1, 0xb0, 0xb1, 0xb1, 0xb0, 0xb0, 0xaf, 0xae, 0xae, 0xae,\n    0xac, 0xad, 0xad, 0xae, 0xaf, 0xaf, 0xb0, 0xb0, 0xa8, 0x9b, 0x8a, 0x81, 0x7f, 0x80, 0x7f, 0x7d,\n    0x82, 0x82, 0x82, 0x80, 0x7f, 0x7c, 0x7a, 0x78, 0x73, 0x74, 0x75, 0x76, 0x78, 0x79, 0x7a, 0x7b,\n    0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78,\n    0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x75, 0x73, 0x72, 0x79, 0x86, 0x95, 0xa0, 0xa5,\n    0xad, 0xa8, 0x9e, 0x93, 0x8e, 0x94, 0xa1, 0xad, 0xa7, 0xa8, 0xaa, 0xac, 0xab, 0xaa, 0xa7, 0xa6,\n    0x95, 0x83, 0x77, 0x7a, 0x7e, 0x7a, 0x79, 0x7d, 0x7e, 0x7d, 0x7b, 0x7b, 0x7c, 0x80, 0x84, 0x87,\n    0x8c, 0x8d, 0x8e, 0x8f, 0x8f, 0x8f, 0x8e, 0x8d, 0x8e, 0x8e, 0x8e, 0x8d, 0x8c, 0x8c, 0x8b, 0x8b,\n    0x8a, 0x88, 0x85, 0x82, 0x7e, 0x7a, 0x78, 0x77, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x78, 0x7a, 0x7b,\n    0x7f, 0x80, 0x81, 0x83, 0x84, 0x85, 0x85, 0x85, 0x87, 0x87, 0x86, 0x86, 0x85, 0x84, 0x83, 0x83,\n    0x85, 0x85, 0x85, 0x86, 0x87, 0x87, 0x88, 0x88, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85,\n    0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x88, 0x88, 0x88,\n    0x89, 0x89, 0x88, 0x88, 0x87, 0x87, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86,\n    0x70, 0x71, 0x71, 0x72, 0x73, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75,\n    0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x77, 0x77, 0x78, 0x77, 0x77, 0x76,\n    0x76, 0x76, 0x78, 0x79, 0x79, 0x79, 0x78, 0x78, 0x72, 0x72, 0x73, 0x74, 0x74, 0x73, 0x72, 0x72,\n    0x75, 0x75, 0x76, 0x76, 0x77, 0x78, 0x78, 0x78, 0x75, 0x74, 0x73, 0x73, 0x75, 0x77, 0x7a, 0x7c,\n    0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7e, 0x7c, 0x7b, 0x7e, 0x87, 0x94, 0xa1, 0xa9, 0xa9, 0xa8, 0xa7, 0xa6, 0xa6, 0xa6, 0xa6, 0xa7,\n    0xa7, 0xa7, 0xa8, 0xaa, 0xac, 0xad, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf,\n    0xad, 0xae, 0xb0, 0xb1, 0xb2, 0xb2, 0xb1, 0xb1, 0xb1, 0xb1, 0xb0, 0xb0, 0xaf, 0xae, 0xae, 0xae,\n    0xac, 0xac, 0xad, 0xae, 0xaf, 0xb0, 0xb0, 0xb1, 0xa7, 0x9a, 0x8a, 0x80, 0x7f, 0x80, 0x7f, 0x7c,\n    0x81, 0x80, 0x80, 0x7f, 0x7d, 0x7a, 0x78, 0x77, 0x74, 0x74, 0x75, 0x76, 0x78, 0x79, 0x7a, 0x7a,\n    0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79,\n    0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x77, 0x73, 0x72, 0x79, 0x87, 0x97, 0xa5, 0xac,\n    0xad, 0xa7, 0x9a, 0x89, 0x7f, 0x83, 0x92, 0x9f, 0xa5, 0xa7, 0xaa, 0xac, 0xad, 0xab, 0xa8, 0xa7,\n    0x99, 0x84, 0x75, 0x79, 0x7e, 0x7c, 0x7a, 0x7d, 0x7e, 0x7d, 0x7b, 0x7b, 0x7d, 0x81, 0x86, 0x88,\n    0x8c, 0x8d, 0x8e, 0x8f, 0x8f, 0x8f, 0x8e, 0x8d, 0x8e, 0x8e, 0x8d, 0x8c, 0x8c, 0x8b, 0x8b, 0x8a,\n    0x87, 0x85, 0x82, 0x7e, 0x7b, 0x79, 0x77, 0x76, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x79, 0x7b, 0x7c,\n    0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x85, 0x86, 0x85, 0x86, 0x86, 0x87, 0x86, 0x85, 0x84, 0x84,\n    0x85, 0x85, 0x85, 0x86, 0x87, 0x87, 0x88, 0x88, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86,\n    0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87,\n    0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86,\n    0x70, 0x70, 0x71, 0x72, 0x73, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76,\n    0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x78, 0x79, 0x79, 0x79, 0x78, 0x78,\n    0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x72, 0x73, 0x74, 0x74, 0x74, 0x74, 0x73, 0x72,\n    0x75, 0x75, 0x75, 0x76, 0x77, 0x77, 0x78, 0x79, 0x76, 0x75, 0x74, 0x74, 0x75, 0x78, 0x7b, 0x7d,\n    0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7c, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x79,\n    0x7d, 0x7c, 0x7c, 0x83, 0x8e, 0x9a, 0xa4, 0xa9, 0xa8, 0xa7, 0xa5, 0xa4, 0xa4, 0xa4, 0xa5, 0xa6,\n    0xa6, 0xa6, 0xa8, 0xa9, 0xab, 0xac, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae,\n    0xad, 0xae, 0xaf, 0xb1, 0xb2, 0xb2, 0xb1, 0xb1, 0xb1, 0xb1, 0xb0, 0xb0, 0xaf, 0xae, 0xae, 0xae,\n    0xab, 0xac, 0xad, 0xae, 0xaf, 0xb0, 0xb1, 0xb1, 0xa6, 0x99, 0x89, 0x7f, 0x7e, 0x7f, 0x7e, 0x7b,\n    0x7e, 0x7e, 0x7d, 0x7d, 0x7b, 0x79, 0x76, 0x75, 0x75, 0x75, 0x76, 0x77, 0x78, 0x79, 0x79, 0x7a,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x74, 0x72, 0x77, 0x85, 0x97, 0xa6, 0xae,\n    0xaa, 0xa8, 0x9f, 0x8f, 0x80, 0x7c, 0x85, 0x8e, 0xa0, 0xa3, 0xa7, 0xaa, 0xac, 0xaa, 0xa8, 0xa6,\n    0x9a, 0x83, 0x73, 0x76, 0x7e, 0x7d, 0x7b, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7e, 0x83, 0x87, 0x8a,\n    0x8c, 0x8d, 0x8e, 0x8f, 0x8f, 0x8f, 0x8e, 0x8d, 0x8d, 0x8d, 0x8d, 0x8c, 0x8b, 0x8b, 0x8a, 0x8a,\n    0x85, 0x83, 0x7f, 0x7c, 0x79, 0x77, 0x77, 0x77, 0x79, 0x78, 0x77, 0x76, 0x77, 0x79, 0x7c, 0x7e,\n    0x81, 0x81, 0x82, 0x82, 0x83, 0x84, 0x85, 0x86, 0x83, 0x84, 0x86, 0x87, 0x87, 0x87, 0x86, 0x85,\n    0x85, 0x85, 0x85, 0x86, 0x87, 0x87, 0x88, 0x88, 0x86, 0x86, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87,\n    0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x84, 0x84, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86,\n    0x84, 0x84, 0x85, 0x85, 0x86, 0x87, 0x87, 0x88, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x86, 0x86,\n    0x71, 0x72, 0x72, 0x73, 0x74, 0x75, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76,\n    0x76, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x76, 0x77, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x79,\n    0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x72, 0x73, 0x74, 0x75, 0x75, 0x74, 0x73, 0x72,\n    0x76, 0x75, 0x75, 0x76, 0x76, 0x77, 0x78, 0x79, 0x77, 0x76, 0x75, 0x74, 0x75, 0x78, 0x7c, 0x7e,\n    0x7f, 0x7e, 0x7c, 0x7b, 0x7a, 0x7b, 0x7d, 0x7e, 0x7d, 0x7c, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x77,\n    0x7c, 0x7b, 0x7d, 0x85, 0x92, 0x9e, 0xa6, 0xa9, 0xa7, 0xa6, 0xa4, 0xa3, 0xa3, 0xa3, 0xa5, 0xa6,\n    0xa5, 0xa6, 0xa7, 0xa8, 0xaa, 0xac, 0xad, 0xae, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad,\n    0xad, 0xae, 0xaf, 0xb1, 0xb2, 0xb2, 0xb2, 0xb1, 0xb1, 0xb1, 0xb0, 0xb0, 0xaf, 0xae, 0xae, 0xae,\n    0xab, 0xac, 0xac, 0xae, 0xaf, 0xb0, 0xb1, 0xb1, 0xa6, 0x98, 0x88, 0x7f, 0x7d, 0x7e, 0x7d, 0x7b,\n    0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x77, 0x75, 0x74, 0x76, 0x76, 0x77, 0x77, 0x78, 0x78, 0x79, 0x79,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x75, 0x72, 0x76, 0x84, 0x96, 0xa5, 0xad,\n    0xac, 0xaf, 0xac, 0x9f, 0x8d, 0x82, 0x82, 0x87, 0x9e, 0xa1, 0xa5, 0xa9, 0xab, 0xaa, 0xa8, 0xa6,\n    0x9b, 0x83, 0x71, 0x75, 0x7d, 0x7d, 0x7b, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7f, 0x84, 0x89, 0x8c,\n    0x8c, 0x8d, 0x8e, 0x8f, 0x8f, 0x8f, 0x8e, 0x8d, 0x8d, 0x8d, 0x8c, 0x8c, 0x8b, 0x8a, 0x8a, 0x8a,\n    0x83, 0x81, 0x7e, 0x7b, 0x78, 0x77, 0x77, 0x77, 0x79, 0x77, 0x76, 0x75, 0x77, 0x7a, 0x7d, 0x80,\n    0x82, 0x82, 0x82, 0x82, 0x83, 0x84, 0x85, 0x86, 0x82, 0x84, 0x86, 0x87, 0x88, 0x88, 0x87, 0x86,\n    0x85, 0x85, 0x85, 0x86, 0x87, 0x87, 0x88, 0x88, 0x87, 0x87, 0x87, 0x87, 0x87, 0x88, 0x88, 0x88,\n    0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x83, 0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85,\n    0x82, 0x82, 0x83, 0x84, 0x86, 0x87, 0x88, 0x88, 0x88, 0x88, 0x88, 0x87, 0x87, 0x87, 0x87, 0x87,\n    0x72, 0x73, 0x75, 0x77, 0x78, 0x78, 0x78, 0x78, 0x7c, 0x7a, 0x78, 0x76, 0x76, 0x78, 0x7a, 0x7c,\n    0x7d, 0x7b, 0x79, 0x77, 0x76, 0x77, 0x78, 0x79, 0x75, 0x75, 0x75, 0x75, 0x76, 0x78, 0x7a, 0x7b,\n    0x77, 0x77, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x76,\n    0x77, 0x77, 0x76, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x79, 0x77, 0x75, 0x73, 0x74, 0x78, 0x7c, 0x7f,\n    0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7b, 0x7c, 0x82, 0x8f, 0xa0, 0xaa, 0xac, 0xaa, 0xab, 0xaa, 0xa9, 0xa8, 0xa8, 0xaa, 0xac, 0xad,\n    0xa8, 0xa8, 0xa8, 0xa7, 0xa8, 0xa8, 0xa9, 0xaa, 0xab, 0xac, 0xac, 0xad, 0xad, 0xae, 0xaf, 0xaf,\n    0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb3, 0xb2, 0xb2, 0xb1, 0xb1, 0xb0, 0xaf, 0xaf,\n    0xaf, 0xad, 0xab, 0xac, 0xb0, 0xb2, 0xb1, 0xaf, 0xa7, 0x99, 0x87, 0x7d, 0x7c, 0x7e, 0x7f, 0x7e,\n    0x80, 0x7e, 0x7c, 0x79, 0x77, 0x76, 0x75, 0x75, 0x79, 0x78, 0x76, 0x75, 0x75, 0x75, 0x75, 0x76,\n    0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7b, 0x7b, 0x7a, 0x7d, 0x7c, 0x7a, 0x79, 0x79, 0x7a, 0x7c, 0x7d,\n    0x7b, 0x7b, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x75, 0x78, 0x76, 0x74, 0x82, 0x9b, 0xa9, 0xaa,\n    0xac, 0xa8, 0x9f, 0x92, 0x85, 0x7c, 0x7a, 0x7b, 0x8a, 0x95, 0xa3, 0xad, 0xaf, 0xac, 0xa8, 0xa6,\n    0x99, 0x84, 0x74, 0x77, 0x7d, 0x7b, 0x7b, 0x7f, 0x7b, 0x7c, 0x7e, 0x81, 0x84, 0x88, 0x8b, 0x8c,\n    0x90, 0x90, 0x8f, 0x8f, 0x8e, 0x8d, 0x8d, 0x8d, 0x8a, 0x8a, 0x8a, 0x89, 0x88, 0x88, 0x87, 0x87,\n    0x80, 0x7e, 0x7c, 0x7a, 0x78, 0x78, 0x77, 0x77, 0x75, 0x75, 0x74, 0x74, 0x76, 0x79, 0x7c, 0x7e,\n    0x80, 0x81, 0x82, 0x84, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x84, 0x85, 0x86, 0x86, 0x86, 0x87,\n    0x87, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x86, 0x84, 0x84, 0x85, 0x86, 0x86, 0x87, 0x87, 0x88,\n    0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87,\n    0x85, 0x85, 0x86, 0x86, 0x87, 0x87, 0x88, 0x88, 0x85, 0x85, 0x85, 0x86, 0x87, 0x87, 0x88, 0x88,\n    0x72, 0x73, 0x75, 0x77, 0x79, 0x79, 0x7a, 0x7a, 0x7c, 0x7b, 0x78, 0x77, 0x77, 0x78, 0x7b, 0x7c,\n    0x7d, 0x7b, 0x79, 0x77, 0x76, 0x77, 0x78, 0x79, 0x75, 0x75, 0x74, 0x75, 0x76, 0x77, 0x79, 0x7a,\n    0x77, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7b, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77,\n    0x78, 0x77, 0x77, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7a, 0x78, 0x75, 0x74, 0x74, 0x77, 0x7b, 0x7d,\n    0x7c, 0x7c, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b,\n    0x79, 0x7c, 0x84, 0x92, 0xa2, 0xaa, 0xaa, 0xa7, 0xaa, 0xa9, 0xa8, 0xa7, 0xa7, 0xa8, 0xaa, 0xab,\n    0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xab, 0xaa, 0xab, 0xab, 0xac, 0xad, 0xad, 0xae, 0xae,\n    0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xb3, 0xb2, 0xb2, 0xb1, 0xb0, 0xb0, 0xaf, 0xaf,\n    0xaf, 0xac, 0xab, 0xad, 0xb0, 0xb3, 0xb2, 0xb0, 0xa4, 0x97, 0x86, 0x7c, 0x7b, 0x7e, 0x7e, 0x7c,\n    0x7f, 0x7e, 0x7c, 0x79, 0x77, 0x76, 0x75, 0x75, 0x78, 0x77, 0x76, 0x75, 0x75, 0x75, 0x75, 0x76,\n    0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7b, 0x7b, 0x7a, 0x7d, 0x7c, 0x7a, 0x7a, 0x7a, 0x7a, 0x7c, 0x7d,\n    0x7b, 0x7b, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x75, 0x78, 0x76, 0x74, 0x82, 0x9b, 0xa9, 0xaa,\n    0xab, 0xa5, 0x9a, 0x8c, 0x80, 0x7b, 0x7e, 0x82, 0x90, 0x99, 0xa5, 0xac, 0xad, 0xaa, 0xa7, 0xa6,\n    0x9a, 0x84, 0x75, 0x77, 0x7d, 0x7b, 0x7b, 0x7f, 0x7c, 0x7d, 0x7f, 0x82, 0x85, 0x89, 0x8b, 0x8d,\n    0x90, 0x90, 0x8f, 0x8e, 0x8e, 0x8d, 0x8d, 0x8c, 0x8b, 0x8b, 0x8a, 0x89, 0x88, 0x87, 0x86, 0x86,\n    0x80, 0x7e, 0x7c, 0x7a, 0x79, 0x78, 0x78, 0x78, 0x77, 0x77, 0x75, 0x75, 0x76, 0x79, 0x7b, 0x7d,\n    0x80, 0x81, 0x82, 0x84, 0x85, 0x85, 0x85, 0x84, 0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86,\n    0x87, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86,\n    0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86,\n    0x85, 0x86, 0x86, 0x86, 0x87, 0x87, 0x88, 0x88, 0x85, 0x85, 0x85, 0x86, 0x87, 0x87, 0x88, 0x88,\n    0x72, 0x73, 0x75, 0x78, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7b, 0x79, 0x78, 0x78, 0x79, 0x7b, 0x7c,\n    0x7d, 0x7b, 0x79, 0x77, 0x76, 0x77, 0x78, 0x79, 0x75, 0x75, 0x74, 0x74, 0x75, 0x76, 0x78, 0x79,\n    0x77, 0x77, 0x77, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x79, 0x79,\n    0x78, 0x78, 0x77, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x79, 0x76, 0x75, 0x75, 0x77, 0x79, 0x7b,\n    0x7e, 0x7d, 0x7b, 0x7a, 0x79, 0x78, 0x79, 0x79, 0x78, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x76, 0x7c, 0x88, 0x98, 0xa5, 0xaa, 0xa8, 0xa4, 0xa9, 0xa8, 0xa7, 0xa6, 0xa6, 0xa6, 0xa7, 0xa7,\n    0xac, 0xac, 0xac, 0xac, 0xab, 0xab, 0xab, 0xab, 0xaa, 0xaa, 0xaa, 0xab, 0xac, 0xac, 0xad, 0xad,\n    0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xb2, 0xb2, 0xb2, 0xb1, 0xb0, 0xb0, 0xaf, 0xaf,\n    0xad, 0xac, 0xab, 0xad, 0xb1, 0xb3, 0xb2, 0xb0, 0xa2, 0x95, 0x86, 0x7d, 0x7d, 0x7f, 0x7e, 0x7c,\n    0x7e, 0x7d, 0x7b, 0x79, 0x77, 0x76, 0x76, 0x76, 0x78, 0x77, 0x76, 0x75, 0x75, 0x75, 0x76, 0x76,\n    0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7b, 0x7b, 0x7a, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c,\n    0x7a, 0x7a, 0x7b, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x75, 0x78, 0x76, 0x74, 0x82, 0x9b, 0xa9, 0xaa,\n    0xaa, 0xa1, 0x92, 0x82, 0x79, 0x7a, 0x83, 0x8c, 0x9b, 0xa1, 0xa9, 0xac, 0xab, 0xa9, 0xa8, 0xa8,\n    0x9a, 0x85, 0x75, 0x77, 0x7d, 0x7b, 0x7a, 0x7e, 0x7c, 0x7e, 0x80, 0x83, 0x87, 0x8a, 0x8c, 0x8e,\n    0x8f, 0x8f, 0x8e, 0x8e, 0x8d, 0x8c, 0x8c, 0x8c, 0x8c, 0x8b, 0x8a, 0x88, 0x87, 0x85, 0x84, 0x83,\n    0x80, 0x7f, 0x7d, 0x7b, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x79, 0x77, 0x76, 0x77, 0x79, 0x7b, 0x7c,\n    0x7f, 0x80, 0x82, 0x84, 0x85, 0x85, 0x85, 0x85, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85,\n    0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84,\n    0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86,\n    0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x88, 0x88, 0x84, 0x85, 0x85, 0x86, 0x86, 0x87, 0x88, 0x88,\n    0x72, 0x73, 0x76, 0x78, 0x7b, 0x7c, 0x7d, 0x7d, 0x7b, 0x7b, 0x79, 0x78, 0x78, 0x79, 0x7b, 0x7b,\n    0x7d, 0x7b, 0x79, 0x77, 0x76, 0x77, 0x78, 0x79, 0x76, 0x76, 0x75, 0x74, 0x75, 0x76, 0x77, 0x77,\n    0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x79, 0x79, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7b, 0x7b,\n    0x79, 0x79, 0x78, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7a, 0x77, 0x75, 0x75, 0x76, 0x78, 0x7a,\n    0x7f, 0x7e, 0x7c, 0x7a, 0x79, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7a,\n    0x76, 0x7f, 0x8e, 0x9d, 0xa7, 0xa9, 0xa6, 0xa2, 0xa8, 0xa7, 0xa7, 0xa6, 0xa6, 0xa5, 0xa5, 0xa5,\n    0xaa, 0xab, 0xab, 0xab, 0xab, 0xab, 0xaa, 0xa9, 0xaa, 0xaa, 0xaa, 0xab, 0xac, 0xac, 0xad, 0xad,\n    0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xb2, 0xb2, 0xb1, 0xb1, 0xb0, 0xaf, 0xaf, 0xaf,\n    0xac, 0xab, 0xaa, 0xad, 0xb1, 0xb3, 0xb1, 0xaf, 0xa0, 0x95, 0x88, 0x81, 0x82, 0x83, 0x81, 0x7e,\n    0x7d, 0x7c, 0x7a, 0x78, 0x77, 0x76, 0x76, 0x77, 0x77, 0x77, 0x76, 0x75, 0x75, 0x75, 0x76, 0x77,\n    0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7b, 0x7b, 0x7a, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b,\n    0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x75, 0x78, 0x76, 0x74, 0x82, 0x9b, 0xa9, 0xaa,\n    0xa9, 0x9e, 0x8d, 0x7c, 0x74, 0x79, 0x87, 0x92, 0xa6, 0xaa, 0xae, 0xae, 0xab, 0xa9, 0xa9, 0xaa,\n    0x9b, 0x86, 0x76, 0x78, 0x7c, 0x7a, 0x79, 0x7d, 0x7d, 0x7e, 0x81, 0x85, 0x88, 0x8b, 0x8d, 0x8e,\n    0x8e, 0x8e, 0x8d, 0x8d, 0x8c, 0x8b, 0x8b, 0x8b, 0x8b, 0x8b, 0x89, 0x87, 0x85, 0x83, 0x82, 0x81,\n    0x7f, 0x7e, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x7d, 0x7b, 0x79, 0x77, 0x77, 0x78, 0x7a, 0x7b,\n    0x7f, 0x80, 0x82, 0x84, 0x85, 0x85, 0x85, 0x85, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84,\n    0x87, 0x87, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x86, 0x86, 0x85, 0x85, 0x84, 0x83, 0x83, 0x82,\n    0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85,\n    0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x87, 0x87, 0x84, 0x84, 0x85, 0x85, 0x86, 0x87, 0x87, 0x88,\n    0x72, 0x74, 0x76, 0x79, 0x7b, 0x7c, 0x7c, 0x7c, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x79, 0x7a, 0x7a,\n    0x7d, 0x7b, 0x79, 0x77, 0x76, 0x77, 0x78, 0x79, 0x78, 0x77, 0x76, 0x75, 0x75, 0x76, 0x76, 0x77,\n    0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c,\n    0x7a, 0x79, 0x78, 0x78, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x79, 0x78, 0x76, 0x76, 0x77, 0x78, 0x79,\n    0x7f, 0x7e, 0x7c, 0x7a, 0x79, 0x78, 0x78, 0x78, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7b,\n    0x78, 0x83, 0x93, 0xa1, 0xa8, 0xa9, 0xa5, 0xa2, 0xa7, 0xa7, 0xa7, 0xa7, 0xa7, 0xa6, 0xa6, 0xa5,\n    0xa8, 0xa9, 0xaa, 0xab, 0xab, 0xaa, 0xa9, 0xa9, 0xab, 0xab, 0xac, 0xac, 0xad, 0xae, 0xae, 0xae,\n    0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xb2, 0xb1, 0xb1, 0xb0, 0xb0, 0xaf, 0xae, 0xae,\n    0xab, 0xaa, 0xaa, 0xad, 0xb0, 0xb1, 0xae, 0xab, 0x9f, 0x96, 0x8b, 0x86, 0x87, 0x88, 0x84, 0x80,\n    0x7b, 0x7b, 0x79, 0x78, 0x77, 0x77, 0x77, 0x77, 0x77, 0x76, 0x75, 0x75, 0x75, 0x76, 0x77, 0x77,\n    0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a,\n    0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x75, 0x78, 0x76, 0x74, 0x82, 0x9b, 0xa9, 0xaa,\n    0xa9, 0x9f, 0x8d, 0x7c, 0x74, 0x79, 0x86, 0x92, 0xaa, 0xad, 0xb0, 0xaf, 0xac, 0xa9, 0xa9, 0xaa,\n    0x9d, 0x87, 0x76, 0x78, 0x7c, 0x79, 0x78, 0x7c, 0x7c, 0x7e, 0x82, 0x86, 0x8a, 0x8c, 0x8d, 0x8d,\n    0x8d, 0x8d, 0x8c, 0x8c, 0x8b, 0x8a, 0x8a, 0x8a, 0x89, 0x88, 0x87, 0x85, 0x83, 0x81, 0x7f, 0x7e,\n    0x7e, 0x7d, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x7d, 0x7c, 0x79, 0x78, 0x77, 0x78, 0x7a, 0x7b,\n    0x7e, 0x7f, 0x81, 0x84, 0x85, 0x86, 0x86, 0x86, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84,\n    0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x85, 0x84, 0x84, 0x83, 0x83,\n    0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85,\n    0x86, 0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x85, 0x86, 0x86, 0x87, 0x87,\n    0x73, 0x74, 0x76, 0x78, 0x7a, 0x7a, 0x7a, 0x7a, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78,\n    0x7d, 0x7b, 0x79, 0x77, 0x76, 0x77, 0x78, 0x79, 0x7b, 0x7a, 0x78, 0x77, 0x76, 0x76, 0x77, 0x77,\n    0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7c,\n    0x7b, 0x7a, 0x79, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x78, 0x77, 0x77, 0x77, 0x77, 0x78, 0x79,\n    0x7e, 0x7d, 0x7b, 0x7a, 0x79, 0x78, 0x79, 0x79, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d,\n    0x7c, 0x88, 0x98, 0xa4, 0xa8, 0xa8, 0xa6, 0xa6, 0xa6, 0xa7, 0xa8, 0xa9, 0xa9, 0xa9, 0xa9, 0xa8,\n    0xa7, 0xa8, 0xab, 0xad, 0xae, 0xae, 0xad, 0xac, 0xae, 0xae, 0xae, 0xaf, 0xb0, 0xb0, 0xb1, 0xb1,\n    0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb1, 0xb1, 0xb1, 0xb0, 0xaf, 0xaf, 0xae, 0xae,\n    0xab, 0xa9, 0xa9, 0xac, 0xae, 0xae, 0xaa, 0xa7, 0x9b, 0x93, 0x8a, 0x87, 0x89, 0x89, 0x85, 0x80,\n    0x7a, 0x79, 0x78, 0x77, 0x77, 0x77, 0x78, 0x78, 0x76, 0x76, 0x75, 0x75, 0x75, 0x76, 0x77, 0x78,\n    0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7a, 0x79, 0x79,\n    0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7a, 0x79, 0x79, 0x75, 0x78, 0x76, 0x74, 0x82, 0x9b, 0xa9, 0xaa,\n    0xab, 0xa2, 0x93, 0x83, 0x79, 0x79, 0x82, 0x8a, 0xa4, 0xa9, 0xad, 0xad, 0xa9, 0xa5, 0xa4, 0xa4,\n    0x9e, 0x87, 0x77, 0x78, 0x7c, 0x79, 0x77, 0x7b, 0x7b, 0x7e, 0x82, 0x86, 0x8a, 0x8c, 0x8c, 0x8c,\n    0x8c, 0x8c, 0x8b, 0x8b, 0x8a, 0x89, 0x89, 0x89, 0x85, 0x84, 0x83, 0x82, 0x80, 0x7e, 0x7d, 0x7d,\n    0x7c, 0x7b, 0x7a, 0x78, 0x78, 0x78, 0x78, 0x79, 0x7c, 0x7a, 0x78, 0x77, 0x77, 0x78, 0x79, 0x7b,\n    0x7e, 0x7f, 0x81, 0x83, 0x85, 0x86, 0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84,\n    0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x84, 0x84, 0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85,\n    0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84,\n    0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x84, 0x84, 0x85, 0x85, 0x86, 0x87, 0x87,\n    0x74, 0x75, 0x76, 0x78, 0x78, 0x78, 0x78, 0x77, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76,\n    0x7d, 0x7b, 0x79, 0x77, 0x76, 0x77, 0x78, 0x79, 0x7d, 0x7c, 0x7a, 0x79, 0x78, 0x77, 0x78, 0x78,\n    0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7c,\n    0x7c, 0x7b, 0x79, 0x78, 0x78, 0x78, 0x79, 0x79, 0x77, 0x77, 0x77, 0x77, 0x77, 0x78, 0x7a, 0x7a,\n    0x7c, 0x7c, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7b, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7f,\n    0x82, 0x8d, 0x9c, 0xa5, 0xa7, 0xa7, 0xa8, 0xaa, 0xa6, 0xa7, 0xa9, 0xab, 0xac, 0xad, 0xac, 0xac,\n    0xa9, 0xab, 0xaf, 0xb2, 0xb4, 0xb4, 0xb4, 0xb3, 0xb0, 0xb1, 0xb1, 0xb2, 0xb2, 0xb3, 0xb4, 0xb4,\n    0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb0, 0xb0, 0xaf, 0xae, 0xae, 0xae,\n    0xab, 0xa9, 0xa9, 0xab, 0xad, 0xab, 0xa6, 0xa2, 0x95, 0x8e, 0x87, 0x85, 0x87, 0x87, 0x81, 0x7c,\n    0x79, 0x78, 0x77, 0x77, 0x77, 0x77, 0x78, 0x79, 0x76, 0x75, 0x75, 0x75, 0x75, 0x76, 0x77, 0x78,\n    0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7b, 0x7b, 0x7a, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7a, 0x79, 0x78,\n    0x77, 0x77, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x75, 0x78, 0x76, 0x74, 0x82, 0x9b, 0xa9, 0xaa,\n    0xad, 0xa7, 0x9b, 0x8c, 0x7f, 0x7a, 0x7c, 0x80, 0x98, 0x9e, 0xa4, 0xa6, 0xa3, 0x9e, 0x9b, 0x9b,\n    0x9e, 0x88, 0x77, 0x78, 0x7c, 0x78, 0x77, 0x7a, 0x7a, 0x7d, 0x81, 0x86, 0x8a, 0x8b, 0x8b, 0x8b,\n    0x8b, 0x8b, 0x8b, 0x8a, 0x89, 0x89, 0x88, 0x88, 0x81, 0x80, 0x80, 0x7f, 0x7e, 0x7d, 0x7c, 0x7b,\n    0x7a, 0x79, 0x78, 0x77, 0x76, 0x77, 0x77, 0x78, 0x7a, 0x79, 0x77, 0x76, 0x76, 0x77, 0x79, 0x7b,\n    0x7d, 0x7f, 0x81, 0x83, 0x85, 0x86, 0x87, 0x87, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x85, 0x85,\n    0x86, 0x86, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x87, 0x88,\n    0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84,\n    0x84, 0x83, 0x83, 0x83, 0x82, 0x82, 0x81, 0x81, 0x83, 0x83, 0x84, 0x85, 0x85, 0x86, 0x86, 0x87,\n    0x75, 0x75, 0x76, 0x77, 0x77, 0x77, 0x76, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75,\n    0x7d, 0x7b, 0x79, 0x77, 0x76, 0x77, 0x78, 0x79, 0x7e, 0x7d, 0x7b, 0x7a, 0x78, 0x78, 0x78, 0x78,\n    0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x76, 0x76, 0x77, 0x78, 0x7a, 0x7b, 0x7c, 0x7c,\n    0x7c, 0x7b, 0x7a, 0x78, 0x78, 0x78, 0x79, 0x79, 0x76, 0x76, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7b,\n    0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7f, 0x80,\n    0x85, 0x90, 0x9e, 0xa5, 0xa6, 0xa6, 0xa9, 0xad, 0xa6, 0xa8, 0xaa, 0xad, 0xae, 0xaf, 0xae, 0xae,\n    0xac, 0xae, 0xb3, 0xb7, 0xb9, 0xba, 0xb9, 0xb9, 0xb2, 0xb3, 0xb3, 0xb4, 0xb4, 0xb5, 0xb5, 0xb6,\n    0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb0, 0xb0, 0xaf, 0xae, 0xae, 0xad,\n    0xab, 0xa9, 0xa9, 0xaa, 0xab, 0xa9, 0xa4, 0x9f, 0x8f, 0x89, 0x83, 0x82, 0x84, 0x83, 0x7e, 0x77,\n    0x78, 0x78, 0x77, 0x76, 0x77, 0x77, 0x78, 0x79, 0x76, 0x75, 0x75, 0x75, 0x75, 0x76, 0x78, 0x79,\n    0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7b, 0x7b, 0x7a, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7a, 0x79, 0x78,\n    0x76, 0x77, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x75, 0x78, 0x76, 0x74, 0x82, 0x9b, 0xa9, 0xaa,\n    0xaf, 0xab, 0xa1, 0x92, 0x84, 0x7b, 0x78, 0x78, 0x8e, 0x95, 0x9d, 0xa1, 0x9e, 0x99, 0x95, 0x93,\n    0x9f, 0x88, 0x78, 0x78, 0x7c, 0x78, 0x76, 0x7a, 0x79, 0x7c, 0x81, 0x86, 0x89, 0x8b, 0x8b, 0x8a,\n    0x8b, 0x8b, 0x8a, 0x8a, 0x89, 0x88, 0x88, 0x88, 0x7e, 0x7e, 0x7d, 0x7d, 0x7c, 0x7c, 0x7b, 0x7b,\n    0x79, 0x78, 0x77, 0x76, 0x75, 0x76, 0x76, 0x77, 0x78, 0x77, 0x76, 0x75, 0x75, 0x77, 0x79, 0x7b,\n    0x7d, 0x7e, 0x81, 0x83, 0x85, 0x86, 0x87, 0x87, 0x88, 0x88, 0x88, 0x87, 0x87, 0x86, 0x86, 0x86,\n    0x86, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x86, 0x86, 0x87, 0x87, 0x88, 0x89, 0x89, 0x89,\n    0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83,\n    0x83, 0x82, 0x82, 0x82, 0x81, 0x80, 0x80, 0x80, 0x83, 0x83, 0x84, 0x84, 0x85, 0x86, 0x86, 0x86,\n    0x74, 0x75, 0x75, 0x75, 0x75, 0x73, 0x72, 0x71, 0x74, 0x75, 0x77, 0x78, 0x78, 0x78, 0x76, 0x76,\n    0x7b, 0x7c, 0x7d, 0x7a, 0x76, 0x75, 0x77, 0x7a, 0x7a, 0x77, 0x75, 0x76, 0x79, 0x7a, 0x77, 0x75,\n    0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x76, 0x76, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x7a, 0x7a,\n    0x7b, 0x7a, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x76, 0x75, 0x76, 0x77, 0x79, 0x79, 0x79, 0x79, 0x78,\n    0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x79, 0x7a, 0x7b,\n    0x8d, 0x95, 0xa0, 0xa7, 0xa9, 0xa9, 0xa9, 0xaa, 0xa4, 0xa4, 0xa5, 0xa7, 0xa9, 0xac, 0xaf, 0xb1,\n    0xaa, 0xab, 0xad, 0xaf, 0xb1, 0xb3, 0xb4, 0xb5, 0xbb, 0xbb, 0xbb, 0xba, 0xb9, 0xb6, 0xb4, 0xb3,\n    0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb1, 0xb1, 0xb1, 0xb0, 0xaf, 0xaf, 0xae, 0xae,\n    0xad, 0xac, 0xab, 0xac, 0xac, 0xa8, 0xa0, 0x9a, 0x91, 0x8e, 0x8a, 0x84, 0x7f, 0x7b, 0x78, 0x77,\n    0x76, 0x77, 0x78, 0x79, 0x79, 0x78, 0x77, 0x76, 0x74, 0x74, 0x73, 0x73, 0x74, 0x75, 0x76, 0x77,\n    0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x79, 0x7c, 0x7e, 0x7d, 0x7a, 0x78, 0x7a, 0x7c,\n    0x77, 0x73, 0x6f, 0x6f, 0x74, 0x79, 0x7c, 0x7c, 0x73, 0x77, 0x76, 0x75, 0x84, 0x9c, 0xaa, 0xaa,\n    0xa6, 0xaa, 0xa9, 0x9e, 0x8c, 0x7b, 0x71, 0x6e, 0x71, 0x7a, 0x7e, 0x7e, 0x88, 0x9c, 0xa6, 0xa5,\n    0x9c, 0x8d, 0x7c, 0x74, 0x77, 0x7b, 0x7a, 0x76, 0x7b, 0x80, 0x87, 0x8a, 0x8a, 0x89, 0x8a, 0x8c,\n    0x89, 0x8a, 0x8c, 0x8c, 0x8a, 0x85, 0x7f, 0x7c, 0x7d, 0x7c, 0x7c, 0x7b, 0x7a, 0x7a, 0x79, 0x79,\n    0x79, 0x78, 0x77, 0x76, 0x75, 0x75, 0x75, 0x76, 0x77, 0x77, 0x76, 0x76, 0x76, 0x77, 0x78, 0x79,\n    0x7e, 0x80, 0x83, 0x86, 0x88, 0x87, 0x85, 0x84, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86,\n    0x86, 0x86, 0x86, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x84, 0x85, 0x86, 0x87, 0x88, 0x88, 0x89,\n    0x88, 0x88, 0x87, 0x87, 0x86, 0x86, 0x85, 0x85, 0x82, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84,\n    0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x85, 0x85,\n    0x75, 0x75, 0x75, 0x75, 0x75, 0x73, 0x72, 0x71, 0x74, 0x75, 0x76, 0x78, 0x78, 0x77, 0x76, 0x76,\n    0x7b, 0x7c, 0x7d, 0x7a, 0x77, 0x75, 0x78, 0x7b, 0x7b, 0x78, 0x76, 0x77, 0x7a, 0x7b, 0x79, 0x76,\n    0x79, 0x79, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78,\n    0x7a, 0x7a, 0x79, 0x78, 0x78, 0x77, 0x76, 0x76, 0x75, 0x76, 0x77, 0x78, 0x79, 0x79, 0x78, 0x78,\n    0x75, 0x76, 0x76, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7e, 0x7d, 0x7c, 0x7b, 0x7b, 0x7c, 0x7d, 0x7e,\n    0x92, 0x9b, 0xa5, 0xac, 0xac, 0xaa, 0xa8, 0xa7, 0xa5, 0xa5, 0xa6, 0xa7, 0xa8, 0xaa, 0xad, 0xae,\n    0xaf, 0xaf, 0xaf, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb6, 0xb5, 0xb4,\n    0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb1, 0xb1, 0xb1, 0xb0, 0xaf, 0xaf, 0xae, 0xae,\n    0xac, 0xab, 0xab, 0xac, 0xab, 0xa7, 0x9f, 0x98, 0x8e, 0x8c, 0x87, 0x83, 0x7e, 0x7b, 0x78, 0x77,\n    0x77, 0x77, 0x78, 0x79, 0x79, 0x78, 0x77, 0x77, 0x74, 0x74, 0x73, 0x73, 0x74, 0x75, 0x77, 0x78,\n    0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7f, 0x81, 0x7f, 0x7b, 0x79, 0x7a, 0x7c,\n    0x76, 0x71, 0x6d, 0x6e, 0x72, 0x77, 0x79, 0x7a, 0x73, 0x77, 0x76, 0x75, 0x84, 0x9c, 0xaa, 0xaa,\n    0xab, 0xad, 0xab, 0x9f, 0x8e, 0x7e, 0x76, 0x75, 0x72, 0x79, 0x7c, 0x7b, 0x87, 0x9c, 0xa8, 0xa7,\n    0x9d, 0x8d, 0x7c, 0x74, 0x77, 0x7c, 0x7a, 0x76, 0x7b, 0x80, 0x87, 0x8b, 0x8b, 0x8a, 0x8b, 0x8c,\n    0x8a, 0x8a, 0x89, 0x88, 0x85, 0x81, 0x7d, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x78, 0x78,\n    0x79, 0x78, 0x77, 0x76, 0x75, 0x75, 0x76, 0x76, 0x77, 0x76, 0x76, 0x75, 0x76, 0x77, 0x78, 0x79,\n    0x7e, 0x80, 0x83, 0x86, 0x87, 0x86, 0x85, 0x84, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85,\n    0x86, 0x86, 0x86, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x84, 0x85, 0x86, 0x87, 0x87, 0x88, 0x88,\n    0x88, 0x87, 0x87, 0x87, 0x86, 0x86, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x86,\n    0x86, 0x86, 0x85, 0x85, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85,\n    0x75, 0x75, 0x76, 0x76, 0x75, 0x74, 0x72, 0x71, 0x74, 0x75, 0x76, 0x77, 0x77, 0x77, 0x76, 0x76,\n    0x7b, 0x7c, 0x7d, 0x7a, 0x77, 0x76, 0x78, 0x7b, 0x7c, 0x79, 0x77, 0x78, 0x7b, 0x7c, 0x7a, 0x78,\n    0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x78, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x77, 0x77, 0x77,\n    0x79, 0x79, 0x79, 0x78, 0x77, 0x77, 0x76, 0x76, 0x74, 0x75, 0x76, 0x78, 0x78, 0x78, 0x78, 0x78,\n    0x76, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x80, 0x7f, 0x7e, 0x7e, 0x7e, 0x7e, 0x7f, 0x80,\n    0x95, 0x9e, 0xaa, 0xb1, 0xb1, 0xad, 0xa9, 0xa7, 0xa8, 0xa7, 0xa6, 0xa6, 0xa6, 0xa7, 0xa8, 0xa9,\n    0xb2, 0xb2, 0xb1, 0xb0, 0xae, 0xad, 0xad, 0xac, 0xa9, 0xab, 0xad, 0xb0, 0xb3, 0xb4, 0xb5, 0xb5,\n    0xb2, 0xb2, 0xb2, 0xb2, 0xb2, 0xb2, 0xb2, 0xb2, 0xb1, 0xb1, 0xb0, 0xb0, 0xaf, 0xae, 0xae, 0xae,\n    0xac, 0xab, 0xaa, 0xaa, 0xa9, 0xa4, 0x9b, 0x95, 0x89, 0x87, 0x84, 0x80, 0x7d, 0x7a, 0x79, 0x78,\n    0x77, 0x78, 0x78, 0x79, 0x79, 0x78, 0x78, 0x77, 0x74, 0x74, 0x73, 0x73, 0x74, 0x75, 0x77, 0x78,\n    0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x81, 0x82, 0x83, 0x80, 0x7b, 0x78, 0x79, 0x7a,\n    0x75, 0x71, 0x6d, 0x6d, 0x72, 0x76, 0x78, 0x77, 0x73, 0x77, 0x76, 0x75, 0x84, 0x9c, 0xaa, 0xaa,\n    0xaf, 0xb0, 0xad, 0xa0, 0x8f, 0x81, 0x7c, 0x7c, 0x74, 0x78, 0x78, 0x78, 0x86, 0x9e, 0xab, 0xab,\n    0x9e, 0x8e, 0x7c, 0x74, 0x77, 0x7c, 0x7b, 0x77, 0x7c, 0x81, 0x88, 0x8b, 0x8b, 0x8b, 0x8c, 0x8d,\n    0x8b, 0x89, 0x85, 0x81, 0x7d, 0x7b, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78,\n    0x7a, 0x79, 0x77, 0x76, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x76, 0x77, 0x79, 0x7a,\n    0x7e, 0x80, 0x82, 0x84, 0x85, 0x85, 0x84, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84,\n    0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x85, 0x85, 0x85, 0x86, 0x87, 0x87, 0x88, 0x88,\n    0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x87,\n    0x89, 0x89, 0x88, 0x87, 0x86, 0x85, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85,\n    0x75, 0x76, 0x76, 0x76, 0x75, 0x74, 0x73, 0x72, 0x74, 0x74, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76,\n    0x7a, 0x7b, 0x7c, 0x7a, 0x77, 0x76, 0x79, 0x7c, 0x7d, 0x7a, 0x78, 0x7a, 0x7d, 0x7e, 0x7c, 0x7a,\n    0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x7b, 0x7a, 0x7a, 0x79, 0x77, 0x77, 0x76, 0x75,\n    0x78, 0x78, 0x78, 0x77, 0x77, 0x76, 0x76, 0x76, 0x73, 0x74, 0x76, 0x77, 0x78, 0x78, 0x77, 0x77,\n    0x77, 0x77, 0x78, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e,\n    0x91, 0x9a, 0xa7, 0xb0, 0xb2, 0xaf, 0xad, 0xac, 0xaa, 0xa9, 0xa7, 0xa5, 0xa4, 0xa4, 0xa4, 0xa4,\n    0xae, 0xae, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xa9, 0xab, 0xad, 0xaf, 0xb1, 0xb2, 0xb3, 0xb3,\n    0xb2, 0xb2, 0xb2, 0xb2, 0xb2, 0xb2, 0xb2, 0xb2, 0xb1, 0xb0, 0xb0, 0xaf, 0xaf, 0xae, 0xae, 0xad,\n    0xac, 0xab, 0xa9, 0xa8, 0xa7, 0xa1, 0x97, 0x90, 0x85, 0x83, 0x81, 0x7e, 0x7b, 0x7a, 0x79, 0x79,\n    0x77, 0x78, 0x79, 0x79, 0x79, 0x79, 0x78, 0x77, 0x75, 0x74, 0x74, 0x74, 0x74, 0x76, 0x77, 0x78,\n    0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x82, 0x83, 0x82, 0x7e, 0x78, 0x74, 0x75, 0x76,\n    0x78, 0x74, 0x70, 0x71, 0x74, 0x78, 0x79, 0x78, 0x73, 0x77, 0x76, 0x75, 0x84, 0x9c, 0xaa, 0xaa,\n    0xb0, 0xb0, 0xac, 0x9f, 0x8e, 0x82, 0x7e, 0x7f, 0x76, 0x78, 0x76, 0x75, 0x86, 0xa0, 0xae, 0xad,\n    0x9f, 0x8f, 0x7c, 0x74, 0x77, 0x7c, 0x7c, 0x79, 0x7d, 0x83, 0x89, 0x8c, 0x8b, 0x8a, 0x8b, 0x8c,\n    0x8a, 0x86, 0x80, 0x7a, 0x76, 0x76, 0x77, 0x78, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77,\n    0x7a, 0x79, 0x78, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x76, 0x77, 0x78, 0x7a, 0x7b,\n    0x7f, 0x80, 0x82, 0x84, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83,\n    0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87,\n    0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x88, 0x88, 0x88, 0x89, 0x89,\n    0x8b, 0x8a, 0x8a, 0x88, 0x87, 0x86, 0x85, 0x85, 0x84, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86,\n    0x75, 0x76, 0x76, 0x76, 0x76, 0x74, 0x73, 0x72, 0x74, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x76,\n    0x78, 0x7a, 0x7b, 0x79, 0x76, 0x75, 0x78, 0x7b, 0x7d, 0x7a, 0x79, 0x7a, 0x7d, 0x7f, 0x7d, 0x7b,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x75, 0x75,\n    0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x76, 0x73, 0x74, 0x75, 0x76, 0x77, 0x77, 0x77, 0x76,\n    0x77, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a,\n    0x85, 0x8f, 0x9c, 0xa7, 0xac, 0xae, 0xaf, 0xb1, 0xab, 0xa9, 0xa7, 0xa4, 0xa2, 0xa0, 0xa0, 0x9f,\n    0xa4, 0xa5, 0xa7, 0xa9, 0xab, 0xad, 0xaf, 0xaf, 0xaf, 0xaf, 0xb0, 0xb1, 0xb1, 0xb1, 0xb0, 0xaf,\n    0xb2, 0xb2, 0xb2, 0xb2, 0xb2, 0xb2, 0xb2, 0xb2, 0xb0, 0xb0, 0xb0, 0xaf, 0xae, 0xae, 0xad, 0xad,\n    0xac, 0xaa, 0xa8, 0xa7, 0xa4, 0x9d, 0x93, 0x8c, 0x82, 0x80, 0x7e, 0x7c, 0x7a, 0x79, 0x79, 0x79,\n    0x78, 0x78, 0x79, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x75, 0x75, 0x74, 0x74, 0x75, 0x76, 0x77, 0x78,\n    0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x81, 0x82, 0x80, 0x7a, 0x73, 0x70, 0x70, 0x72,\n    0x7c, 0x79, 0x75, 0x76, 0x79, 0x7c, 0x7c, 0x7a, 0x73, 0x77, 0x76, 0x75, 0x84, 0x9c, 0xaa, 0xaa,\n    0xad, 0xae, 0xaa, 0x9d, 0x8c, 0x80, 0x7b, 0x7c, 0x77, 0x78, 0x75, 0x76, 0x89, 0xa4, 0xb0, 0xad,\n    0xa1, 0x90, 0x7d, 0x74, 0x77, 0x7d, 0x7d, 0x7a, 0x7f, 0x84, 0x8a, 0x8c, 0x8b, 0x89, 0x89, 0x8a,\n    0x86, 0x82, 0x7c, 0x76, 0x73, 0x74, 0x76, 0x78, 0x75, 0x75, 0x76, 0x76, 0x77, 0x77, 0x78, 0x78,\n    0x7a, 0x79, 0x78, 0x77, 0x76, 0x76, 0x76, 0x77, 0x76, 0x76, 0x76, 0x77, 0x78, 0x7a, 0x7d, 0x7e,\n    0x81, 0x81, 0x82, 0x83, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83,\n    0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87,\n    0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x88, 0x88, 0x88, 0x89, 0x89,\n    0x8a, 0x8a, 0x89, 0x88, 0x87, 0x87, 0x86, 0x86, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x87, 0x87,\n    0x76, 0x76, 0x77, 0x77, 0x76, 0x75, 0x73, 0x72, 0x74, 0x73, 0x73, 0x73, 0x73, 0x74, 0x75, 0x76,\n    0x76, 0x78, 0x79, 0x77, 0x74, 0x74, 0x77, 0x7a, 0x7c, 0x7a, 0x78, 0x7a, 0x7e, 0x7f, 0x7e, 0x7b,\n    0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x77, 0x76, 0x76, 0x76,\n    0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x72, 0x73, 0x74, 0x76, 0x76, 0x76, 0x76, 0x76,\n    0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x79, 0x79, 0x77, 0x78, 0x78, 0x79, 0x79, 0x78, 0x78, 0x77,\n    0x7b, 0x83, 0x8e, 0x98, 0x9f, 0xa5, 0xac, 0xb0, 0xab, 0xa9, 0xa6, 0xa3, 0xa0, 0x9e, 0x9d, 0x9c,\n    0x9d, 0x9e, 0xa1, 0xa4, 0xa7, 0xaa, 0xac, 0xae, 0xb0, 0xb0, 0xb1, 0xb1, 0xb1, 0xb0, 0xaf, 0xaf,\n    0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb0, 0xb0, 0xaf, 0xaf, 0xae, 0xad, 0xad, 0xad,\n    0xac, 0xaa, 0xa7, 0xa5, 0xa1, 0x99, 0x8f, 0x87, 0x81, 0x7f, 0x7d, 0x7b, 0x7a, 0x79, 0x79, 0x79,\n    0x78, 0x78, 0x79, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x75, 0x75, 0x74, 0x74, 0x75, 0x76, 0x78, 0x79,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x82, 0x82, 0x7f, 0x79, 0x72, 0x6f, 0x6f, 0x72,\n    0x7f, 0x7c, 0x79, 0x79, 0x7c, 0x7e, 0x7d, 0x7b, 0x73, 0x77, 0x76, 0x75, 0x84, 0x9c, 0xaa, 0xaa,\n    0xaa, 0xac, 0xaa, 0x9f, 0x8e, 0x7f, 0x78, 0x77, 0x78, 0x79, 0x77, 0x7a, 0x8f, 0xa9, 0xb1, 0xaa,\n    0xa2, 0x91, 0x7d, 0x74, 0x77, 0x7d, 0x7e, 0x7c, 0x81, 0x86, 0x8b, 0x8c, 0x89, 0x86, 0x85, 0x86,\n    0x7f, 0x7c, 0x79, 0x75, 0x74, 0x76, 0x78, 0x7a, 0x74, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x79,\n    0x7b, 0x7a, 0x78, 0x77, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x78, 0x7a, 0x7d, 0x7f, 0x81,\n    0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x85, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84,\n    0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86,\n    0x84, 0x84, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x87,\n    0x87, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x87,\n    0x76, 0x76, 0x77, 0x77, 0x76, 0x75, 0x74, 0x73, 0x74, 0x73, 0x72, 0x72, 0x72, 0x73, 0x75, 0x76,\n    0x74, 0x76, 0x77, 0x75, 0x73, 0x72, 0x75, 0x79, 0x7b, 0x79, 0x78, 0x7a, 0x7d, 0x7f, 0x7e, 0x7b,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77,\n    0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x76, 0x72, 0x73, 0x74, 0x75, 0x76, 0x76, 0x76, 0x75,\n    0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x7a, 0x79, 0x78, 0x77,\n    0x77, 0x7c, 0x83, 0x8a, 0x90, 0x98, 0xa2, 0xa9, 0xaa, 0xa8, 0xa5, 0xa2, 0x9e, 0x9c, 0x9b, 0x9a,\n    0x9c, 0x9d, 0x9e, 0xa0, 0xa2, 0xa4, 0xa5, 0xa6, 0xa9, 0xaa, 0xac, 0xae, 0xb0, 0xb1, 0xb1, 0xb1,\n    0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb0, 0xb0, 0xaf, 0xae, 0xae, 0xad, 0xad, 0xac,\n    0xac, 0xa9, 0xa6, 0xa3, 0x9f, 0x97, 0x8c, 0x84, 0x81, 0x80, 0x7d, 0x7b, 0x7a, 0x79, 0x79, 0x79,\n    0x78, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x78, 0x76, 0x75, 0x75, 0x75, 0x75, 0x77, 0x78, 0x79,\n    0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x85, 0x84, 0x81, 0x7b, 0x74, 0x71, 0x73, 0x75,\n    0x7e, 0x7b, 0x78, 0x79, 0x7b, 0x7c, 0x7b, 0x79, 0x73, 0x77, 0x76, 0x75, 0x84, 0x9c, 0xaa, 0xaa,\n    0xaa, 0xae, 0xae, 0xa5, 0x93, 0x81, 0x77, 0x74, 0x79, 0x7a, 0x79, 0x7f, 0x95, 0xad, 0xb1, 0xa6,\n    0xa3, 0x92, 0x7d, 0x74, 0x77, 0x7d, 0x7f, 0x7d, 0x83, 0x87, 0x8b, 0x8b, 0x87, 0x83, 0x81, 0x81,\n    0x78, 0x77, 0x77, 0x77, 0x78, 0x79, 0x7b, 0x7c, 0x74, 0x74, 0x75, 0x76, 0x78, 0x79, 0x7a, 0x7a,\n    0x7b, 0x7a, 0x78, 0x77, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x7d, 0x7f, 0x82, 0x84,\n    0x85, 0x85, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85,\n    0x84, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x86, 0x87, 0x87, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86,\n    0x84, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x86, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x86,\n    0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x88, 0x88, 0x88,\n    0x76, 0x77, 0x77, 0x77, 0x76, 0x75, 0x74, 0x73, 0x74, 0x73, 0x72, 0x71, 0x71, 0x73, 0x75, 0x76,\n    0x73, 0x75, 0x76, 0x74, 0x72, 0x72, 0x75, 0x78, 0x7b, 0x79, 0x77, 0x79, 0x7d, 0x7f, 0x7d, 0x7b,\n    0x7a, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x76, 0x76, 0x76, 0x77, 0x77, 0x78, 0x78, 0x78,\n    0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x71, 0x72, 0x74, 0x75, 0x76, 0x76, 0x75, 0x75,\n    0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x78, 0x79, 0x7b, 0x7c, 0x7c, 0x7b, 0x79, 0x78,\n    0x77, 0x7a, 0x7e, 0x81, 0x86, 0x8e, 0x99, 0xa1, 0xaa, 0xa8, 0xa5, 0xa1, 0x9e, 0x9c, 0x9a, 0x9a,\n    0x9e, 0x9e, 0x9e, 0x9e, 0x9e, 0x9e, 0x9e, 0x9e, 0xa1, 0xa3, 0xa7, 0xab, 0xaf, 0xb1, 0xb3, 0xb4,\n    0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb0, 0xaf, 0xaf, 0xae, 0xae, 0xad, 0xad, 0xac,\n    0xac, 0xa9, 0xa6, 0xa3, 0x9e, 0x95, 0x8a, 0x82, 0x81, 0x80, 0x7e, 0x7c, 0x7a, 0x79, 0x79, 0x79,\n    0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x76, 0x75, 0x75, 0x75, 0x75, 0x77, 0x78, 0x79,\n    0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x88, 0x87, 0x84, 0x7e, 0x77, 0x74, 0x76, 0x79,\n    0x7c, 0x79, 0x77, 0x77, 0x79, 0x7a, 0x78, 0x76, 0x73, 0x77, 0x76, 0x75, 0x84, 0x9c, 0xaa, 0xaa,\n    0xaa, 0xb0, 0xb2, 0xa9, 0x97, 0x84, 0x77, 0x72, 0x79, 0x7b, 0x7b, 0x82, 0x99, 0xaf, 0xb0, 0xa3,\n    0xa3, 0x92, 0x7e, 0x74, 0x77, 0x7d, 0x7f, 0x7d, 0x84, 0x88, 0x8c, 0x8b, 0x86, 0x81, 0x7f, 0x7e,\n    0x73, 0x74, 0x76, 0x78, 0x7b, 0x7c, 0x7d, 0x7d, 0x74, 0x74, 0x75, 0x77, 0x78, 0x79, 0x7a, 0x7b,\n    0x7b, 0x7a, 0x79, 0x77, 0x77, 0x77, 0x77, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7e, 0x81, 0x84, 0x85,\n    0x86, 0x86, 0x85, 0x85, 0x85, 0x86, 0x86, 0x87, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86,\n    0x84, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x86, 0x86,\n    0x83, 0x84, 0x84, 0x84, 0x85, 0x86, 0x86, 0x86, 0x82, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84,\n    0x81, 0x81, 0x82, 0x83, 0x84, 0x85, 0x85, 0x86, 0x86, 0x87, 0x87, 0x87, 0x88, 0x88, 0x88, 0x88,\n    0x77, 0x78, 0x78, 0x78, 0x77, 0x75, 0x74, 0x72, 0x71, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77, 0x77,\n    0x74, 0x74, 0x75, 0x76, 0x78, 0x79, 0x7a, 0x7a, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7d,\n    0x7b, 0x7a, 0x79, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x79, 0x77, 0x75, 0x74, 0x74, 0x75, 0x75,\n    0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x72, 0x73, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78,\n    0x77, 0x77, 0x77, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x72, 0x74, 0x78, 0x7b, 0x7c, 0x7c, 0x7b, 0x7a,\n    0x76, 0x79, 0x7c, 0x7b, 0x79, 0x78, 0x7b, 0x7d, 0x98, 0x97, 0x96, 0x98, 0x9b, 0x9b, 0x97, 0x94,\n    0x99, 0x99, 0x9a, 0x9b, 0x9c, 0x9e, 0x9e, 0x9f, 0xa2, 0xa3, 0xa4, 0xa5, 0xa7, 0xa8, 0xa9, 0xaa,\n    0xad, 0xaf, 0xb0, 0xb1, 0xb2, 0xb1, 0xaf, 0xae, 0xaf, 0xb0, 0xb0, 0xaf, 0xae, 0xad, 0xab, 0xaa,\n    0xa9, 0xa7, 0xa4, 0x9f, 0x99, 0x92, 0x8b, 0x88, 0x85, 0x82, 0x7d, 0x79, 0x77, 0x77, 0x79, 0x7a,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x77, 0x76, 0x75, 0x74, 0x74, 0x74, 0x75, 0x75,\n    0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x81, 0x81, 0x80, 0x7f, 0x7c, 0x7a, 0x78, 0x77,\n    0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x75, 0x78, 0x76, 0x74, 0x82, 0x9b, 0xa9, 0xaa,\n    0xaa, 0xad, 0xaf, 0xaa, 0x9e, 0x91, 0x87, 0x82, 0x8d, 0x8b, 0x8c, 0x91, 0x9c, 0xa6, 0xad, 0xb0,\n    0xa4, 0x92, 0x7c, 0x72, 0x76, 0x7d, 0x7f, 0x7e, 0x84, 0x82, 0x80, 0x7e, 0x7c, 0x7c, 0x7b, 0x7b,\n    0x75, 0x76, 0x78, 0x7a, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x77, 0x77, 0x77, 0x77, 0x78,\n    0x74, 0x75, 0x77, 0x79, 0x7a, 0x7c, 0x7c, 0x7d, 0x7f, 0x80, 0x81, 0x82, 0x84, 0x86, 0x87, 0x87,\n    0x86, 0x85, 0x85, 0x84, 0x84, 0x83, 0x83, 0x83, 0x84, 0x85, 0x87, 0x88, 0x88, 0x88, 0x87, 0x86,\n    0x87, 0x87, 0x87, 0x86, 0x86, 0x85, 0x85, 0x84, 0x85, 0x85, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87,\n    0x88, 0x87, 0x87, 0x86, 0x86, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84,\n    0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85,\n    0x74, 0x75, 0x75, 0x76, 0x75, 0x74, 0x73, 0x72, 0x72, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77, 0x77,\n    0x75, 0x75, 0x76, 0x76, 0x77, 0x78, 0x78, 0x79, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c,\n    0x7c, 0x7b, 0x79, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7a, 0x78, 0x76, 0x75, 0x75, 0x76, 0x76,\n    0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x75, 0x75, 0x76, 0x77, 0x77,\n    0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x79, 0x79, 0x73, 0x75, 0x78, 0x7b, 0x7c, 0x7c, 0x7a, 0x79,\n    0x75, 0x78, 0x7a, 0x7a, 0x78, 0x77, 0x79, 0x7c, 0x89, 0x89, 0x8a, 0x90, 0x96, 0x99, 0x98, 0x96,\n    0x98, 0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9d, 0xa0, 0xa0, 0xa1, 0xa2, 0xa4, 0xa5, 0xa6, 0xa6,\n    0xab, 0xac, 0xae, 0xb0, 0xb1, 0xb1, 0xb0, 0xb0, 0xae, 0xaf, 0xaf, 0xae, 0xad, 0xac, 0xaa, 0xa9,\n    0xa9, 0xa7, 0xa4, 0x9f, 0x98, 0x91, 0x8b, 0x88, 0x85, 0x82, 0x7d, 0x79, 0x77, 0x77, 0x79, 0x7a,\n    0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x77, 0x76, 0x75, 0x74, 0x74, 0x75, 0x76, 0x76,\n    0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7d, 0x87, 0x85, 0x81, 0x7e, 0x7c, 0x7b, 0x7c, 0x7d,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x75, 0x78, 0x76, 0x74, 0x82, 0x9b, 0xa9, 0xaa,\n    0xab, 0xae, 0xaf, 0xa9, 0x9e, 0x90, 0x87, 0x82, 0x8b, 0x89, 0x89, 0x8f, 0x9a, 0xa4, 0xab, 0xae,\n    0xa5, 0x93, 0x7e, 0x74, 0x77, 0x7d, 0x7f, 0x7e, 0x82, 0x81, 0x7f, 0x7d, 0x7b, 0x7b, 0x7a, 0x7a,\n    0x75, 0x76, 0x78, 0x7a, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77,\n    0x76, 0x78, 0x7a, 0x7c, 0x7e, 0x80, 0x81, 0x81, 0x81, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x86,\n    0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x83, 0x83, 0x85, 0x86, 0x87, 0x88, 0x88, 0x87, 0x86, 0x85,\n    0x87, 0x86, 0x86, 0x86, 0x85, 0x85, 0x84, 0x84, 0x85, 0x85, 0x85, 0x86, 0x87, 0x87, 0x88, 0x88,\n    0x88, 0x88, 0x87, 0x87, 0x86, 0x86, 0x86, 0x85, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84,\n    0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85,\n    0x72, 0x72, 0x74, 0x75, 0x75, 0x74, 0x74, 0x73, 0x73, 0x74, 0x74, 0x75, 0x75, 0x76, 0x76, 0x77,\n    0x76, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b,\n    0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7b, 0x7a, 0x78, 0x77, 0x77, 0x77, 0x77,\n    0x73, 0x74, 0x74, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76,\n    0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x74, 0x75, 0x78, 0x7a, 0x7b, 0x7b, 0x7a, 0x79,\n    0x74, 0x77, 0x79, 0x78, 0x76, 0x75, 0x77, 0x7a, 0x78, 0x79, 0x7d, 0x85, 0x8f, 0x95, 0x98, 0x97,\n    0x96, 0x96, 0x97, 0x98, 0x99, 0x9a, 0x9b, 0x9b, 0x9c, 0x9d, 0x9d, 0x9e, 0x9f, 0xa0, 0xa1, 0xa1,\n    0xa5, 0xa6, 0xa9, 0xab, 0xad, 0xae, 0xaf, 0xaf, 0xae, 0xae, 0xae, 0xae, 0xad, 0xac, 0xaa, 0xa9,\n    0xa9, 0xa7, 0xa3, 0x9d, 0x97, 0x90, 0x8b, 0x88, 0x83, 0x80, 0x7d, 0x79, 0x77, 0x78, 0x79, 0x7b,\n    0x7a, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x77, 0x76, 0x75, 0x75, 0x76, 0x77, 0x78,\n    0x79, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x8b, 0x86, 0x7e, 0x78, 0x76, 0x78, 0x7d, 0x81,\n    0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x75, 0x78, 0x76, 0x74, 0x82, 0x9b, 0xa9, 0xaa,\n    0xad, 0xaf, 0xaf, 0xa9, 0x9d, 0x91, 0x88, 0x84, 0x89, 0x88, 0x88, 0x8e, 0x99, 0xa3, 0xa9, 0xac,\n    0xa6, 0x95, 0x7f, 0x75, 0x78, 0x7e, 0x7f, 0x7d, 0x80, 0x7f, 0x7d, 0x7b, 0x79, 0x79, 0x79, 0x79,\n    0x76, 0x76, 0x78, 0x79, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77,\n    0x78, 0x7a, 0x7d, 0x80, 0x83, 0x85, 0x85, 0x86, 0x83, 0x83, 0x83, 0x84, 0x84, 0x85, 0x85, 0x85,\n    0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x87, 0x87, 0x87, 0x87, 0x87, 0x86, 0x84, 0x83,\n    0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x85, 0x86, 0x87, 0x88, 0x88, 0x89,\n    0x88, 0x88, 0x88, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86,\n    0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85,\n    0x72, 0x73, 0x75, 0x76, 0x77, 0x77, 0x77, 0x77, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x76,\n    0x78, 0x77, 0x77, 0x76, 0x76, 0x75, 0x75, 0x75, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x7a, 0x7a,\n    0x7c, 0x7c, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x78,\n    0x73, 0x73, 0x74, 0x75, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75,\n    0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x75, 0x76, 0x78, 0x79, 0x7a, 0x79, 0x79, 0x78,\n    0x74, 0x76, 0x78, 0x77, 0x75, 0x74, 0x76, 0x78, 0x72, 0x73, 0x77, 0x7f, 0x8a, 0x92, 0x95, 0x95,\n    0x95, 0x95, 0x96, 0x96, 0x97, 0x98, 0x98, 0x99, 0x99, 0x99, 0x99, 0x9a, 0x9b, 0x9b, 0x9c, 0x9c,\n    0x9c, 0x9d, 0x9f, 0xa2, 0xa5, 0xa7, 0xa8, 0xa9, 0xac, 0xad, 0xae, 0xae, 0xae, 0xad, 0xac, 0xab,\n    0xa8, 0xa5, 0xa1, 0x9b, 0x95, 0x8e, 0x89, 0x87, 0x81, 0x7f, 0x7c, 0x79, 0x78, 0x78, 0x7a, 0x7b,\n    0x7a, 0x79, 0x79, 0x79, 0x78, 0x77, 0x77, 0x77, 0x78, 0x77, 0x76, 0x76, 0x76, 0x77, 0x78, 0x79,\n    0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x89, 0x81, 0x75, 0x6c, 0x6a, 0x6f, 0x78, 0x7e,\n    0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x75, 0x78, 0x76, 0x74, 0x82, 0x9b, 0xa9, 0xaa,\n    0xae, 0xb0, 0xb0, 0xa9, 0x9e, 0x93, 0x8b, 0x88, 0x8d, 0x8c, 0x8c, 0x92, 0x9c, 0xa5, 0xaa, 0xab,\n    0xa6, 0x95, 0x80, 0x76, 0x78, 0x7e, 0x7e, 0x7c, 0x7d, 0x7c, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x78,\n    0x77, 0x77, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x79, 0x79, 0x78, 0x78, 0x77, 0x76,\n    0x77, 0x79, 0x7d, 0x81, 0x84, 0x86, 0x87, 0x87, 0x85, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84,\n    0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x88, 0x88, 0x87, 0x87, 0x86, 0x84, 0x83, 0x83,\n    0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x85, 0x86, 0x87, 0x88, 0x88, 0x89,\n    0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87,\n    0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85,\n    0x75, 0x76, 0x77, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x76,\n    0x78, 0x78, 0x77, 0x76, 0x75, 0x75, 0x74, 0x74, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79,\n    0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x78,\n    0x74, 0x74, 0x75, 0x75, 0x76, 0x76, 0x77, 0x77, 0x78, 0x78, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76,\n    0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x79, 0x78, 0x78, 0x77,\n    0x75, 0x77, 0x79, 0x78, 0x75, 0x74, 0x76, 0x78, 0x77, 0x77, 0x79, 0x80, 0x89, 0x8f, 0x92, 0x92,\n    0x94, 0x94, 0x94, 0x95, 0x96, 0x96, 0x96, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97,\n    0x94, 0x94, 0x96, 0x98, 0x9a, 0x9c, 0x9e, 0xa0, 0xa8, 0xa9, 0xaa, 0xac, 0xad, 0xad, 0xac, 0xac,\n    0xa6, 0xa3, 0x9e, 0x98, 0x92, 0x8c, 0x87, 0x85, 0x7f, 0x7d, 0x7b, 0x79, 0x78, 0x79, 0x7a, 0x7b,\n    0x7a, 0x79, 0x79, 0x78, 0x77, 0x76, 0x76, 0x75, 0x77, 0x77, 0x76, 0x76, 0x76, 0x77, 0x79, 0x79,\n    0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x81, 0x77, 0x69, 0x5e, 0x5c, 0x63, 0x6e, 0x77,\n    0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x75, 0x78, 0x76, 0x74, 0x82, 0x9b, 0xa9, 0xaa,\n    0xae, 0xb0, 0xaf, 0xa9, 0xa0, 0x97, 0x92, 0x90, 0x96, 0x94, 0x94, 0x99, 0xa1, 0xa8, 0xab, 0xab,\n    0xa4, 0x93, 0x7f, 0x75, 0x78, 0x7d, 0x7d, 0x7a, 0x7b, 0x7a, 0x79, 0x77, 0x76, 0x76, 0x76, 0x77,\n    0x77, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x79, 0x77, 0x78, 0x79, 0x7a, 0x79, 0x78, 0x76, 0x75,\n    0x74, 0x77, 0x7c, 0x80, 0x83, 0x85, 0x85, 0x84, 0x87, 0x86, 0x86, 0x86, 0x85, 0x85, 0x84, 0x84,\n    0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x88, 0x88, 0x87, 0x86, 0x85, 0x84, 0x83, 0x83,\n    0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87,\n    0x86, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87,\n    0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85,\n    0x76, 0x77, 0x78, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x79, 0x78, 0x78, 0x77, 0x77, 0x76, 0x76, 0x75,\n    0x77, 0x77, 0x76, 0x76, 0x75, 0x75, 0x74, 0x74, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78,\n    0x79, 0x7a, 0x7b, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x78, 0x77,\n    0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78,\n    0x79, 0x79, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x76,\n    0x77, 0x79, 0x7b, 0x7a, 0x77, 0x75, 0x77, 0x79, 0x7e, 0x7d, 0x7d, 0x82, 0x89, 0x8f, 0x91, 0x91,\n    0x94, 0x94, 0x94, 0x94, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94,\n    0x90, 0x90, 0x90, 0x91, 0x92, 0x94, 0x96, 0x97, 0x9d, 0x9f, 0xa2, 0xa4, 0xa7, 0xa8, 0xa9, 0xa9,\n    0xa4, 0xa1, 0x9b, 0x95, 0x8e, 0x89, 0x85, 0x83, 0x7d, 0x7c, 0x7b, 0x79, 0x79, 0x79, 0x7a, 0x7b,\n    0x79, 0x79, 0x78, 0x77, 0x76, 0x75, 0x75, 0x74, 0x76, 0x76, 0x75, 0x75, 0x76, 0x77, 0x78, 0x79,\n    0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7b, 0x71, 0x63, 0x57, 0x55, 0x5d, 0x68, 0x71,\n    0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x75, 0x78, 0x76, 0x74, 0x82, 0x9b, 0xa9, 0xaa,\n    0xad, 0xae, 0xae, 0xaa, 0xa2, 0x9c, 0x9a, 0x9a, 0xa0, 0x9e, 0x9c, 0x9f, 0xa4, 0xa8, 0xa9, 0xa8,\n    0x9f, 0x8f, 0x7b, 0x73, 0x76, 0x7b, 0x7b, 0x79, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x76, 0x76, 0x77,\n    0x78, 0x78, 0x77, 0x76, 0x76, 0x77, 0x78, 0x78, 0x77, 0x78, 0x79, 0x7a, 0x7a, 0x78, 0x76, 0x75,\n    0x74, 0x77, 0x7c, 0x80, 0x83, 0x83, 0x83, 0x82, 0x87, 0x87, 0x86, 0x86, 0x86, 0x86, 0x85, 0x85,\n    0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x88, 0x87, 0x86, 0x84, 0x84, 0x84, 0x84, 0x85,\n    0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x85, 0x85,\n    0x84, 0x84, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87,\n    0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85,\n    0x74, 0x75, 0x76, 0x78, 0x78, 0x78, 0x77, 0x77, 0x7a, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x75, 0x75,\n    0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x75, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77,\n    0x78, 0x79, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7c, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x79, 0x77, 0x76,\n    0x78, 0x78, 0x77, 0x76, 0x76, 0x75, 0x74, 0x74, 0x76, 0x77, 0x77, 0x78, 0x78, 0x79, 0x79, 0x7a,\n    0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x78, 0x79, 0x79, 0x78, 0x77, 0x76, 0x76, 0x76, 0x76,\n    0x79, 0x7c, 0x7d, 0x7c, 0x79, 0x77, 0x79, 0x7b, 0x80, 0x7e, 0x7e, 0x83, 0x8a, 0x90, 0x92, 0x93,\n    0x94, 0x94, 0x94, 0x95, 0x95, 0x95, 0x95, 0x95, 0x96, 0x96, 0x95, 0x95, 0x94, 0x94, 0x93, 0x93,\n    0x92, 0x91, 0x90, 0x8f, 0x8f, 0x90, 0x91, 0x92, 0x90, 0x92, 0x96, 0x9a, 0x9e, 0xa1, 0xa2, 0xa3,\n    0xa2, 0x9e, 0x98, 0x91, 0x8b, 0x86, 0x82, 0x81, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x7a, 0x7a, 0x7b,\n    0x79, 0x79, 0x78, 0x77, 0x76, 0x75, 0x74, 0x73, 0x75, 0x74, 0x74, 0x74, 0x75, 0x76, 0x78, 0x79,\n    0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7b, 0x72, 0x64, 0x59, 0x57, 0x5e, 0x69, 0x71,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x75, 0x78, 0x76, 0x74, 0x82, 0x9b, 0xa9, 0xaa,\n    0xaa, 0xac, 0xad, 0xaa, 0xa5, 0xa2, 0xa2, 0xa4, 0xa6, 0xa3, 0xa1, 0xa1, 0xa4, 0xa6, 0xa4, 0xa2,\n    0x9a, 0x8a, 0x78, 0x70, 0x74, 0x7a, 0x7a, 0x77, 0x7a, 0x79, 0x78, 0x76, 0x76, 0x76, 0x77, 0x77,\n    0x79, 0x78, 0x77, 0x76, 0x76, 0x76, 0x77, 0x78, 0x76, 0x77, 0x79, 0x7b, 0x7a, 0x78, 0x76, 0x74,\n    0x77, 0x7a, 0x7f, 0x83, 0x85, 0x85, 0x83, 0x81, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x87,\n    0x84, 0x85, 0x85, 0x85, 0x86, 0x86, 0x87, 0x87, 0x87, 0x86, 0x84, 0x83, 0x83, 0x84, 0x85, 0x86,\n    0x86, 0x86, 0x86, 0x87, 0x87, 0x88, 0x88, 0x88, 0x89, 0x89, 0x88, 0x87, 0x86, 0x84, 0x84, 0x83,\n    0x82, 0x83, 0x83, 0x83, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86,\n    0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85,\n    0x72, 0x73, 0x74, 0x75, 0x75, 0x74, 0x74, 0x73, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x75, 0x75,\n    0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x77, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76,\n    0x77, 0x78, 0x7a, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b, 0x79, 0x77, 0x75,\n    0x7a, 0x79, 0x78, 0x77, 0x76, 0x74, 0x73, 0x73, 0x76, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7b,\n    0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x76, 0x76, 0x76,\n    0x7b, 0x7d, 0x7f, 0x7d, 0x7a, 0x78, 0x7a, 0x7c, 0x7e, 0x7c, 0x7d, 0x82, 0x8a, 0x91, 0x94, 0x95,\n    0x94, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x95, 0x94, 0x93, 0x93, 0x92,\n    0x95, 0x94, 0x92, 0x90, 0x8f, 0x8f, 0x90, 0x90, 0x86, 0x89, 0x8d, 0x92, 0x97, 0x9a, 0x9c, 0x9e,\n    0xa0, 0x9d, 0x97, 0x8f, 0x89, 0x84, 0x81, 0x7f, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b,\n    0x79, 0x79, 0x78, 0x77, 0x75, 0x74, 0x73, 0x73, 0x74, 0x73, 0x73, 0x73, 0x74, 0x76, 0x77, 0x78,\n    0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x7e, 0x75, 0x68, 0x5e, 0x5c, 0x62, 0x6c, 0x74,\n    0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x75, 0x78, 0x76, 0x74, 0x82, 0x9b, 0xa9, 0xaa,\n    0xa9, 0xab, 0xac, 0xab, 0xa7, 0xa5, 0xa7, 0xa9, 0xa9, 0xa6, 0xa2, 0xa1, 0xa3, 0xa3, 0xa0, 0x9d,\n    0x96, 0x87, 0x75, 0x6f, 0x73, 0x79, 0x79, 0x76, 0x7a, 0x79, 0x78, 0x76, 0x76, 0x76, 0x77, 0x77,\n    0x79, 0x78, 0x77, 0x75, 0x75, 0x76, 0x77, 0x78, 0x76, 0x77, 0x7a, 0x7b, 0x7b, 0x79, 0x76, 0x74,\n    0x7a, 0x7d, 0x82, 0x86, 0x87, 0x86, 0x84, 0x82, 0x85, 0x86, 0x86, 0x86, 0x87, 0x87, 0x88, 0x88,\n    0x84, 0x85, 0x85, 0x86, 0x86, 0x87, 0x87, 0x87, 0x86, 0x85, 0x83, 0x83, 0x83, 0x85, 0x86, 0x88,\n    0x86, 0x86, 0x87, 0x87, 0x88, 0x88, 0x89, 0x89, 0x8b, 0x8a, 0x89, 0x87, 0x85, 0x84, 0x82, 0x82,\n    0x81, 0x82, 0x82, 0x82, 0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85,\n    0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85,\n    0x79, 0x78, 0x77, 0x77, 0x75, 0x74, 0x74, 0x73, 0x7c, 0x7c, 0x7d, 0x7d, 0x7c, 0x79, 0x76, 0x74,\n    0x75, 0x74, 0x73, 0x73, 0x74, 0x76, 0x78, 0x7a, 0x79, 0x78, 0x78, 0x77, 0x78, 0x79, 0x7a, 0x7a,\n    0x76, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x79, 0x77, 0x77, 0x77, 0x78, 0x79,\n    0x7c, 0x7b, 0x79, 0x78, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7c,\n    0x7d, 0x7c, 0x7b, 0x7a, 0x78, 0x76, 0x75, 0x75, 0x7c, 0x7b, 0x78, 0x76, 0x76, 0x77, 0x79, 0x7b,\n    0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7b, 0x7c, 0x7d, 0x80, 0x85, 0x8b, 0x91, 0x94,\n    0x94, 0x94, 0x94, 0x94, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x93, 0x93, 0x93, 0x92, 0x92,\n    0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x91, 0x91, 0x91, 0x91, 0x90, 0x90, 0x90, 0x8f, 0x8f, 0x8f,\n    0x93, 0x91, 0x8d, 0x89, 0x85, 0x81, 0x7e, 0x7d, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79,\n    0x78, 0x78, 0x78, 0x78, 0x77, 0x75, 0x73, 0x72, 0x72, 0x73, 0x74, 0x76, 0x76, 0x76, 0x75, 0x75,\n    0x78, 0x75, 0x70, 0x6c, 0x6c, 0x70, 0x74, 0x78, 0x75, 0x72, 0x6e, 0x6b, 0x6c, 0x71, 0x78, 0x7c,\n    0x77, 0x77, 0x79, 0x7a, 0x7a, 0x7a, 0x79, 0x78, 0x76, 0x74, 0x74, 0x78, 0x83, 0x93, 0xa2, 0xac,\n    0xaa, 0xa8, 0xa6, 0xa3, 0x9f, 0x9c, 0x9a, 0x98, 0x97, 0x96, 0x94, 0x8d, 0x86, 0x82, 0x82, 0x84,\n    0x78, 0x77, 0x75, 0x73, 0x74, 0x76, 0x79, 0x7b, 0x7c, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c,\n    0x81, 0x7e, 0x7b, 0x78, 0x77, 0x78, 0x7b, 0x7c, 0x78, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x7c, 0x7d,\n    0x7f, 0x80, 0x83, 0x85, 0x87, 0x88, 0x89, 0x89, 0x88, 0x88, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86,\n    0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x87, 0x87, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85,\n    0x84, 0x84, 0x83, 0x84, 0x85, 0x86, 0x88, 0x89, 0x88, 0x88, 0x87, 0x86, 0x85, 0x85, 0x84, 0x84,\n    0x83, 0x83, 0x82, 0x82, 0x81, 0x81, 0x80, 0x80, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82,\n    0x86, 0x86, 0x85, 0x85, 0x84, 0x84, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85,\n    0x78, 0x77, 0x77, 0x76, 0x76, 0x75, 0x75, 0x74, 0x7a, 0x7b, 0x7c, 0x7d, 0x7c, 0x79, 0x77, 0x75,\n    0x75, 0x75, 0x74, 0x74, 0x75, 0x76, 0x78, 0x79, 0x79, 0x78, 0x78, 0x77, 0x78, 0x79, 0x7a, 0x7a,\n    0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x77, 0x79, 0x7a,\n    0x7b, 0x7a, 0x78, 0x77, 0x76, 0x76, 0x76, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c,\n    0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x7d, 0x7b, 0x79, 0x77, 0x77, 0x78, 0x7a, 0x7b,\n    0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7f, 0x7f, 0x7c, 0x7d, 0x7e, 0x82, 0x86, 0x8c, 0x91, 0x94,\n    0x94, 0x94, 0x94, 0x94, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x93, 0x93, 0x93, 0x93, 0x92,\n    0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x91, 0x91, 0x91, 0x91, 0x91, 0x90, 0x90, 0x90, 0x8f, 0x8f,\n    0x92, 0x8f, 0x8c, 0x87, 0x83, 0x80, 0x7d, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79,\n    0x78, 0x78, 0x78, 0x78, 0x77, 0x75, 0x73, 0x72, 0x72, 0x73, 0x74, 0x75, 0x76, 0x76, 0x75, 0x75,\n    0x77, 0x74, 0x70, 0x6d, 0x6e, 0x71, 0x76, 0x79, 0x78, 0x75, 0x73, 0x71, 0x72, 0x75, 0x79, 0x7c,\n    0x76, 0x77, 0x78, 0x79, 0x79, 0x79, 0x78, 0x78, 0x77, 0x75, 0x74, 0x77, 0x7e, 0x88, 0x92, 0x99,\n    0x91, 0x90, 0x8e, 0x8b, 0x88, 0x86, 0x84, 0x83, 0x7c, 0x7c, 0x7a, 0x76, 0x72, 0x70, 0x71, 0x72,\n    0x76, 0x74, 0x72, 0x70, 0x71, 0x75, 0x7a, 0x7e, 0x80, 0x7f, 0x7e, 0x7d, 0x7d, 0x7e, 0x7f, 0x7f,\n    0x81, 0x7f, 0x7c, 0x79, 0x78, 0x79, 0x7b, 0x7d, 0x7b, 0x7a, 0x7a, 0x79, 0x7a, 0x7b, 0x7c, 0x7d,\n    0x7e, 0x80, 0x82, 0x84, 0x86, 0x87, 0x88, 0x88, 0x87, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x86,\n    0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x84,\n    0x84, 0x83, 0x83, 0x83, 0x84, 0x85, 0x87, 0x88, 0x88, 0x87, 0x87, 0x86, 0x85, 0x85, 0x84, 0x84,\n    0x84, 0x83, 0x83, 0x83, 0x82, 0x82, 0x81, 0x81, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83,\n    0x86, 0x85, 0x85, 0x85, 0x84, 0x84, 0x83, 0x83, 0x85, 0x85, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87,\n    0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x77, 0x79, 0x7b, 0x7c, 0x7c, 0x7b, 0x79, 0x77,\n    0x76, 0x75, 0x75, 0x75, 0x76, 0x77, 0x78, 0x79, 0x79, 0x78, 0x78, 0x77, 0x78, 0x79, 0x7a, 0x7a,\n    0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x77, 0x77, 0x76, 0x76, 0x77, 0x78, 0x79, 0x7a,\n    0x78, 0x78, 0x77, 0x76, 0x76, 0x77, 0x78, 0x78, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7e,\n    0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7e, 0x7d, 0x7b, 0x79, 0x79, 0x7a, 0x7b, 0x7d,\n    0x7d, 0x7d, 0x7e, 0x7f, 0x80, 0x81, 0x82, 0x82, 0x7f, 0x7f, 0x80, 0x83, 0x88, 0x8d, 0x92, 0x95,\n    0x94, 0x94, 0x94, 0x94, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x94, 0x93, 0x93, 0x93, 0x93,\n    0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x90, 0x90, 0x90, 0x90,\n    0x8f, 0x8d, 0x89, 0x85, 0x81, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79,\n    0x77, 0x78, 0x78, 0x78, 0x77, 0x75, 0x73, 0x72, 0x71, 0x72, 0x73, 0x75, 0x75, 0x75, 0x75, 0x74,\n    0x76, 0x74, 0x71, 0x6f, 0x70, 0x74, 0x78, 0x7b, 0x79, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79,\n    0x75, 0x75, 0x77, 0x78, 0x78, 0x78, 0x77, 0x76, 0x77, 0x76, 0x75, 0x75, 0x78, 0x7b, 0x7f, 0x82,\n    0x7b, 0x7b, 0x7a, 0x78, 0x76, 0x75, 0x74, 0x73, 0x76, 0x75, 0x74, 0x73, 0x72, 0x72, 0x73, 0x73,\n    0x71, 0x73, 0x75, 0x75, 0x75, 0x78, 0x7d, 0x82, 0x84, 0x83, 0x82, 0x81, 0x81, 0x81, 0x82, 0x82,\n    0x82, 0x80, 0x7c, 0x7a, 0x79, 0x7a, 0x7d, 0x7e, 0x7f, 0x7e, 0x7d, 0x7c, 0x7b, 0x7c, 0x7c, 0x7d,\n    0x7e, 0x7f, 0x81, 0x84, 0x85, 0x86, 0x86, 0x86, 0x87, 0x87, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85,\n    0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x86, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84,\n    0x83, 0x83, 0x83, 0x83, 0x83, 0x85, 0x86, 0x87, 0x87, 0x87, 0x86, 0x86, 0x85, 0x85, 0x84, 0x84,\n    0x85, 0x85, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84,\n    0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x88,\n    0x75, 0x75, 0x75, 0x76, 0x76, 0x77, 0x77, 0x77, 0x75, 0x77, 0x79, 0x7b, 0x7c, 0x7b, 0x7a, 0x79,\n    0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x78, 0x78, 0x79, 0x78, 0x78, 0x77, 0x78, 0x79, 0x7a, 0x7a,\n    0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x75, 0x75, 0x76, 0x77, 0x78, 0x7a, 0x7b, 0x7b,\n    0x77, 0x77, 0x76, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7f, 0x7f, 0x7f,\n    0x7f, 0x7f, 0x80, 0x80, 0x80, 0x80, 0x80, 0x81, 0x80, 0x7f, 0x7d, 0x7c, 0x7c, 0x7c, 0x7d, 0x7e,\n    0x7e, 0x7e, 0x7f, 0x81, 0x82, 0x83, 0x84, 0x85, 0x81, 0x81, 0x82, 0x85, 0x89, 0x8e, 0x92, 0x95,\n    0x94, 0x94, 0x94, 0x94, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x93, 0x93, 0x93,\n    0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x91, 0x91, 0x92, 0x91, 0x91, 0x91, 0x91, 0x90, 0x90, 0x90,\n    0x8d, 0x8b, 0x86, 0x82, 0x7e, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78,\n    0x77, 0x77, 0x78, 0x78, 0x77, 0x75, 0x74, 0x73, 0x70, 0x71, 0x72, 0x74, 0x75, 0x75, 0x75, 0x74,\n    0x75, 0x73, 0x72, 0x71, 0x73, 0x76, 0x79, 0x7c, 0x77, 0x78, 0x7a, 0x7a, 0x7a, 0x78, 0x76, 0x74,\n    0x74, 0x74, 0x76, 0x77, 0x77, 0x77, 0x76, 0x75, 0x74, 0x75, 0x75, 0x76, 0x76, 0x76, 0x75, 0x75,\n    0x78, 0x78, 0x77, 0x77, 0x76, 0x75, 0x75, 0x75, 0x7b, 0x79, 0x77, 0x78, 0x79, 0x7a, 0x79, 0x78,\n    0x6d, 0x77, 0x83, 0x88, 0x87, 0x83, 0x82, 0x83, 0x85, 0x84, 0x83, 0x81, 0x81, 0x81, 0x81, 0x82,\n    0x82, 0x80, 0x7d, 0x7a, 0x7a, 0x7b, 0x7e, 0x80, 0x82, 0x81, 0x7f, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d,\n    0x7e, 0x7f, 0x81, 0x83, 0x84, 0x85, 0x85, 0x85, 0x86, 0x86, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84,\n    0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x83,\n    0x84, 0x83, 0x83, 0x82, 0x83, 0x84, 0x85, 0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x84, 0x84,\n    0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84,\n    0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85,\n    0x75, 0x75, 0x75, 0x76, 0x76, 0x77, 0x77, 0x77, 0x73, 0x75, 0x78, 0x7b, 0x7c, 0x7c, 0x7b, 0x7a,\n    0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x78, 0x78, 0x77, 0x78, 0x79, 0x7a, 0x7a,\n    0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x75, 0x76, 0x78, 0x79, 0x7b, 0x7c, 0x7d, 0x7d,\n    0x79, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x7c, 0x7d, 0x80, 0x80, 0x80, 0x80, 0x81, 0x81, 0x81, 0x81,\n    0x81, 0x81, 0x82, 0x82, 0x83, 0x83, 0x83, 0x84, 0x82, 0x81, 0x80, 0x7f, 0x7f, 0x7f, 0x80, 0x80,\n    0x7f, 0x7f, 0x80, 0x82, 0x83, 0x84, 0x85, 0x86, 0x83, 0x83, 0x84, 0x86, 0x89, 0x8e, 0x92, 0x95,\n    0x94, 0x94, 0x94, 0x94, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x93, 0x93,\n    0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x91, 0x91, 0x92, 0x92, 0x92, 0x91, 0x91, 0x91, 0x90, 0x90,\n    0x8c, 0x89, 0x84, 0x7f, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x77, 0x77,\n    0x76, 0x77, 0x77, 0x77, 0x77, 0x76, 0x74, 0x73, 0x6e, 0x70, 0x71, 0x73, 0x74, 0x75, 0x74, 0x74,\n    0x73, 0x73, 0x73, 0x73, 0x75, 0x77, 0x79, 0x7b, 0x74, 0x76, 0x77, 0x78, 0x78, 0x75, 0x72, 0x70,\n    0x73, 0x74, 0x75, 0x76, 0x77, 0x76, 0x76, 0x75, 0x72, 0x73, 0x75, 0x77, 0x77, 0x77, 0x75, 0x74,\n    0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x74, 0x71, 0x6e, 0x70, 0x74, 0x75, 0x72, 0x6e,\n    0x6d, 0x7f, 0x94, 0x9e, 0x9a, 0x8e, 0x85, 0x81, 0x83, 0x82, 0x81, 0x7f, 0x7f, 0x7e, 0x7f, 0x7f,\n    0x81, 0x7f, 0x7c, 0x7a, 0x7a, 0x7c, 0x7e, 0x80, 0x84, 0x83, 0x81, 0x7f, 0x7e, 0x7e, 0x7e, 0x7e,\n    0x7e, 0x7f, 0x81, 0x83, 0x84, 0x85, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83,\n    0x84, 0x84, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84,\n    0x85, 0x84, 0x83, 0x83, 0x83, 0x84, 0x85, 0x86, 0x85, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84,\n    0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86,\n    0x84, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x80, 0x80, 0x80, 0x81, 0x81, 0x81, 0x82, 0x82,\n    0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x73, 0x75, 0x78, 0x7a, 0x7c, 0x7b, 0x7a, 0x7a,\n    0x77, 0x78, 0x79, 0x79, 0x79, 0x79, 0x78, 0x77, 0x79, 0x78, 0x78, 0x77, 0x78, 0x79, 0x7a, 0x7a,\n    0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x78, 0x79, 0x7b, 0x7d, 0x7e, 0x7f, 0x7f, 0x7f,\n    0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7f, 0x80, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83,\n    0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x85, 0x83, 0x83, 0x83, 0x82, 0x82, 0x82, 0x81, 0x81,\n    0x80, 0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x85, 0x84, 0x84, 0x84, 0x86, 0x89, 0x8d, 0x91, 0x94,\n    0x94, 0x94, 0x94, 0x94, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x94,\n    0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x91, 0x91, 0x92, 0x92, 0x92, 0x92, 0x91, 0x91, 0x91, 0x90,\n    0x8b, 0x88, 0x83, 0x7d, 0x7a, 0x79, 0x79, 0x7a, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77,\n    0x76, 0x76, 0x77, 0x77, 0x77, 0x76, 0x75, 0x74, 0x6d, 0x6f, 0x70, 0x72, 0x74, 0x74, 0x74, 0x74,\n    0x73, 0x73, 0x74, 0x74, 0x75, 0x76, 0x77, 0x78, 0x74, 0x74, 0x75, 0x75, 0x74, 0x73, 0x72, 0x70,\n    0x74, 0x74, 0x76, 0x77, 0x77, 0x77, 0x76, 0x75, 0x73, 0x74, 0x76, 0x77, 0x78, 0x78, 0x78, 0x77,\n    0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x76, 0x76, 0x73, 0x6f, 0x6e, 0x72, 0x7a, 0x7e, 0x7a, 0x75,\n    0x74, 0x87, 0x9e, 0xa6, 0x9d, 0x8e, 0x84, 0x81, 0x83, 0x82, 0x80, 0x7e, 0x7d, 0x7d, 0x7d, 0x7e,\n    0x80, 0x7e, 0x7b, 0x79, 0x79, 0x7b, 0x7e, 0x80, 0x84, 0x83, 0x81, 0x80, 0x7f, 0x7f, 0x7f, 0x7f,\n    0x7f, 0x81, 0x82, 0x84, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x83, 0x83, 0x83, 0x82, 0x82, 0x82,\n    0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x87, 0x87, 0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85,\n    0x86, 0x85, 0x85, 0x84, 0x84, 0x85, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84,\n    0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x87, 0x87, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86,\n    0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x7f, 0x7f, 0x7f, 0x80, 0x80, 0x80, 0x81, 0x81,\n    0x78, 0x77, 0x77, 0x76, 0x76, 0x75, 0x75, 0x74, 0x74, 0x75, 0x78, 0x7a, 0x7b, 0x7b, 0x7a, 0x79,\n    0x78, 0x78, 0x7a, 0x7a, 0x7a, 0x79, 0x78, 0x77, 0x79, 0x78, 0x78, 0x77, 0x78, 0x79, 0x7a, 0x7a,\n    0x81, 0x80, 0x80, 0x7f, 0x7e, 0x7d, 0x7c, 0x7c, 0x7c, 0x7d, 0x7f, 0x81, 0x82, 0x81, 0x81, 0x80,\n    0x81, 0x80, 0x80, 0x7f, 0x7f, 0x80, 0x81, 0x82, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84,\n    0x85, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x84, 0x85, 0x84, 0x84, 0x84, 0x83, 0x83,\n    0x81, 0x81, 0x82, 0x82, 0x83, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x85, 0x88, 0x8c, 0x90, 0x92,\n    0x94, 0x94, 0x94, 0x94, 0x95, 0x95, 0x95, 0x95, 0x96, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94,\n    0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x91, 0x91, 0x92, 0x92, 0x92, 0x92, 0x91, 0x91, 0x91, 0x91,\n    0x8b, 0x87, 0x82, 0x7c, 0x79, 0x78, 0x79, 0x7a, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x76, 0x76,\n    0x75, 0x76, 0x77, 0x77, 0x77, 0x76, 0x75, 0x74, 0x6c, 0x6e, 0x70, 0x72, 0x73, 0x74, 0x74, 0x74,\n    0x73, 0x73, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x76, 0x75, 0x74, 0x73, 0x73, 0x74, 0x74, 0x75,\n    0x74, 0x75, 0x76, 0x77, 0x78, 0x77, 0x77, 0x76, 0x77, 0x77, 0x76, 0x76, 0x75, 0x76, 0x76, 0x76,\n    0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x74, 0x7a, 0x76, 0x77, 0x81, 0x8e, 0x96, 0x94, 0x8f,\n    0x7f, 0x8d, 0x9b, 0x9b, 0x8e, 0x82, 0x7f, 0x81, 0x85, 0x83, 0x82, 0x80, 0x7f, 0x7e, 0x7e, 0x7f,\n    0x7f, 0x7d, 0x7a, 0x78, 0x78, 0x7b, 0x7d, 0x80, 0x83, 0x82, 0x81, 0x80, 0x7f, 0x7f, 0x80, 0x80,\n    0x81, 0x82, 0x83, 0x85, 0x86, 0x86, 0x86, 0x85, 0x83, 0x83, 0x83, 0x82, 0x82, 0x82, 0x81, 0x81,\n    0x84, 0x84, 0x85, 0x85, 0x86, 0x87, 0x87, 0x88, 0x88, 0x88, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86,\n    0x88, 0x87, 0x86, 0x85, 0x85, 0x86, 0x86, 0x87, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85,\n    0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87,\n    0x83, 0x83, 0x84, 0x84, 0x85, 0x85, 0x85, 0x86, 0x81, 0x82, 0x82, 0x82, 0x82, 0x83, 0x83, 0x83,\n    0x79, 0x78, 0x77, 0x77, 0x75, 0x74, 0x74, 0x73, 0x74, 0x76, 0x78, 0x7a, 0x7b, 0x7a, 0x79, 0x78,\n    0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x79, 0x78, 0x77, 0x79, 0x78, 0x78, 0x77, 0x78, 0x79, 0x7a, 0x7a,\n    0x85, 0x85, 0x84, 0x83, 0x82, 0x81, 0x80, 0x80, 0x7e, 0x80, 0x82, 0x83, 0x84, 0x83, 0x82, 0x81,\n    0x84, 0x83, 0x82, 0x81, 0x81, 0x82, 0x83, 0x83, 0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85,\n    0x86, 0x86, 0x86, 0x85, 0x85, 0x84, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x85, 0x85, 0x84, 0x83,\n    0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x84, 0x84, 0x84, 0x85, 0x88, 0x8c, 0x8f, 0x92,\n    0x94, 0x94, 0x94, 0x94, 0x95, 0x95, 0x95, 0x95, 0x96, 0x96, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94,\n    0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x91, 0x91, 0x93, 0x92, 0x92, 0x92, 0x92, 0x91, 0x91, 0x91,\n    0x8b, 0x87, 0x82, 0x7c, 0x79, 0x78, 0x7a, 0x7b, 0x78, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76,\n    0x75, 0x76, 0x77, 0x77, 0x77, 0x76, 0x75, 0x75, 0x6c, 0x6d, 0x6f, 0x71, 0x73, 0x74, 0x74, 0x74,\n    0x73, 0x73, 0x74, 0x75, 0x75, 0x74, 0x73, 0x72, 0x79, 0x77, 0x75, 0x73, 0x73, 0x75, 0x78, 0x7a,\n    0x75, 0x76, 0x77, 0x78, 0x78, 0x78, 0x77, 0x77, 0x7c, 0x7a, 0x77, 0x74, 0x72, 0x72, 0x73, 0x73,\n    0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x75, 0x78, 0x85, 0x98, 0xa3, 0xa3, 0x9e,\n    0x87, 0x90, 0x94, 0x8c, 0x7d, 0x75, 0x7a, 0x83, 0x87, 0x86, 0x84, 0x82, 0x81, 0x80, 0x80, 0x81,\n    0x7e, 0x7c, 0x79, 0x78, 0x78, 0x7a, 0x7d, 0x7f, 0x82, 0x81, 0x80, 0x7f, 0x7f, 0x80, 0x80, 0x81,\n    0x82, 0x83, 0x84, 0x86, 0x86, 0x86, 0x86, 0x86, 0x83, 0x83, 0x82, 0x82, 0x82, 0x81, 0x81, 0x81,\n    0x84, 0x84, 0x85, 0x85, 0x86, 0x87, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x87, 0x87, 0x87, 0x87,\n    0x89, 0x88, 0x87, 0x86, 0x86, 0x86, 0x87, 0x88, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85,\n    0x84, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x86, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88,\n    0x83, 0x83, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x84, 0x84, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86,\n    0x78, 0x78, 0x79, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x79, 0x7b, 0x7d, 0x7e, 0x7f, 0x7f, 0x7e, 0x7d,\n    0x79, 0x79, 0x79, 0x78, 0x78, 0x77, 0x77, 0x76, 0x76, 0x77, 0x79, 0x7b, 0x7d, 0x7f, 0x80, 0x81,\n    0x85, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x81, 0x81, 0x82, 0x82, 0x83, 0x84, 0x84, 0x84,\n    0x84, 0x84, 0x83, 0x82, 0x81, 0x82, 0x83, 0x83, 0x80, 0x81, 0x83, 0x84, 0x83, 0x82, 0x80, 0x7f,\n    0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x84, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x83,\n    0x81, 0x81, 0x81, 0x82, 0x83, 0x83, 0x84, 0x84, 0x82, 0x80, 0x7e, 0x7e, 0x82, 0x89, 0x90, 0x95,\n    0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x93, 0x93, 0x93,\n    0x92, 0x92, 0x92, 0x91, 0x91, 0x91, 0x90, 0x90, 0x93, 0x91, 0x8f, 0x90, 0x92, 0x92, 0x90, 0x8d,\n    0x86, 0x84, 0x80, 0x7d, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x77, 0x76, 0x75, 0x75,\n    0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x72, 0x72, 0x71, 0x70, 0x6f, 0x6f, 0x6e, 0x6e,\n    0x6c, 0x6d, 0x70, 0x72, 0x74, 0x75, 0x75, 0x75, 0x71, 0x7a, 0x71, 0x6e, 0x7d, 0x78, 0x6d, 0x77,\n    0x75, 0x74, 0x72, 0x71, 0x75, 0x7a, 0x78, 0x71, 0x6d, 0x7b, 0x7f, 0x75, 0x6f, 0x75, 0x7c, 0x7c,\n    0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74, 0x78, 0x82, 0x93, 0xa2, 0xa4, 0x92, 0x7e,\n    0x7b, 0x98, 0x9a, 0x89, 0x81, 0x7c, 0x7c, 0x88, 0x81, 0x81, 0x81, 0x80, 0x81, 0x81, 0x82, 0x82,\n    0x7e, 0x7c, 0x79, 0x77, 0x77, 0x7a, 0x7d, 0x80, 0x81, 0x80, 0x80, 0x7f, 0x7f, 0x7e, 0x7e, 0x7e,\n    0x80, 0x82, 0x85, 0x87, 0x88, 0x87, 0x85, 0x84, 0x84, 0x83, 0x83, 0x81, 0x80, 0x7f, 0x7e, 0x7e,\n    0x82, 0x83, 0x85, 0x86, 0x87, 0x87, 0x86, 0x86, 0x88, 0x88, 0x88, 0x87, 0x87, 0x86, 0x86, 0x86,\n    0x83, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x83,\n    0x86, 0x86, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x87, 0x87, 0x88, 0x87, 0x86, 0x85, 0x83, 0x82,\n    0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x89, 0x89, 0x89, 0x88, 0x87, 0x86, 0x86, 0x86,\n    0x78, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x78, 0x79, 0x7a, 0x7c, 0x7d, 0x7e, 0x7e, 0x7d, 0x7c,\n    0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x78, 0x79, 0x7a, 0x7c, 0x7e, 0x80, 0x81, 0x82,\n    0x85, 0x85, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x80, 0x81, 0x81, 0x82, 0x83, 0x83, 0x84, 0x84,\n    0x84, 0x84, 0x83, 0x82, 0x82, 0x82, 0x83, 0x84, 0x81, 0x82, 0x83, 0x84, 0x84, 0x83, 0x81, 0x80,\n    0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x82, 0x82, 0x82, 0x82,\n    0x80, 0x81, 0x81, 0x82, 0x82, 0x83, 0x84, 0x84, 0x82, 0x80, 0x7e, 0x7e, 0x82, 0x89, 0x90, 0x95,\n    0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x93,\n    0x93, 0x92, 0x92, 0x92, 0x92, 0x91, 0x91, 0x91, 0x93, 0x91, 0x8f, 0x90, 0x93, 0x93, 0x90, 0x8d,\n    0x85, 0x83, 0x80, 0x7c, 0x7a, 0x79, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x77, 0x76, 0x75, 0x75,\n    0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x73, 0x73, 0x72, 0x71, 0x70, 0x6e, 0x6e, 0x6d,\n    0x6b, 0x6c, 0x6f, 0x71, 0x73, 0x75, 0x75, 0x75, 0x75, 0x7a, 0x72, 0x70, 0x79, 0x71, 0x6c, 0x7c,\n    0x75, 0x7b, 0x7f, 0x7c, 0x77, 0x75, 0x76, 0x78, 0x74, 0x7a, 0x78, 0x70, 0x70, 0x77, 0x77, 0x6f,\n    0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x71, 0x72, 0x7d, 0x8e, 0x98, 0x92, 0x84, 0x7b,\n    0x92, 0xaa, 0xa9, 0x93, 0x88, 0x7f, 0x7a, 0x81, 0x81, 0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x80, 0x80,\n    0x7f, 0x7c, 0x79, 0x77, 0x77, 0x79, 0x7c, 0x7e, 0x7f, 0x7f, 0x7f, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d,\n    0x80, 0x82, 0x84, 0x87, 0x88, 0x87, 0x85, 0x84, 0x84, 0x84, 0x83, 0x82, 0x80, 0x7f, 0x7f, 0x7e,\n    0x82, 0x83, 0x85, 0x86, 0x87, 0x87, 0x86, 0x86, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x85, 0x85,\n    0x83, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x83,\n    0x83, 0x83, 0x83, 0x83, 0x82, 0x82, 0x82, 0x82, 0x84, 0x85, 0x85, 0x85, 0x84, 0x83, 0x81, 0x80,\n    0x82, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x87, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x86,\n    0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x79, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7c,\n    0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7c, 0x7d, 0x7e, 0x80, 0x82, 0x83, 0x83,\n    0x84, 0x84, 0x83, 0x83, 0x82, 0x81, 0x81, 0x81, 0x80, 0x80, 0x80, 0x81, 0x82, 0x82, 0x83, 0x83,\n    0x84, 0x84, 0x83, 0x82, 0x82, 0x83, 0x84, 0x84, 0x82, 0x82, 0x83, 0x84, 0x84, 0x83, 0x82, 0x82,\n    0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x82, 0x82, 0x82, 0x81, 0x81, 0x81, 0x80, 0x80,\n    0x80, 0x80, 0x81, 0x81, 0x82, 0x83, 0x83, 0x83, 0x82, 0x80, 0x7e, 0x7e, 0x82, 0x89, 0x90, 0x95,\n    0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x96, 0x96, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94,\n    0x93, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x92, 0x94, 0x91, 0x90, 0x91, 0x93, 0x93, 0x8f, 0x8c,\n    0x84, 0x82, 0x7e, 0x7b, 0x79, 0x78, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x77, 0x76, 0x76, 0x76,\n    0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x74, 0x73, 0x71, 0x70, 0x6e, 0x6d, 0x6c,\n    0x6a, 0x6b, 0x6e, 0x71, 0x73, 0x75, 0x75, 0x75, 0x79, 0x78, 0x73, 0x74, 0x76, 0x6b, 0x70, 0x8b,\n    0x8e, 0x96, 0x9c, 0x96, 0x84, 0x75, 0x74, 0x7b, 0x75, 0x77, 0x73, 0x6e, 0x74, 0x7d, 0x79, 0x6c,\n    0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x71, 0x7d, 0x92, 0x93, 0x82, 0x79, 0x7f,\n    0xa7, 0xbb, 0xb5, 0x9c, 0x90, 0x83, 0x79, 0x7b, 0x7f, 0x7f, 0x7f, 0x7e, 0x7d, 0x7d, 0x7c, 0x7c,\n    0x7f, 0x7d, 0x7a, 0x77, 0x76, 0x78, 0x7a, 0x7c, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c,\n    0x7f, 0x81, 0x83, 0x86, 0x87, 0x86, 0x85, 0x85, 0x84, 0x84, 0x83, 0x82, 0x81, 0x80, 0x7f, 0x7f,\n    0x82, 0x83, 0x84, 0x86, 0x86, 0x86, 0x86, 0x85, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84,\n    0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x83,\n    0x82, 0x82, 0x81, 0x81, 0x81, 0x80, 0x80, 0x80, 0x82, 0x82, 0x83, 0x83, 0x82, 0x81, 0x7f, 0x7e,\n    0x81, 0x81, 0x81, 0x81, 0x82, 0x82, 0x82, 0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x85,\n    0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x79, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7e, 0x7f, 0x80, 0x81, 0x82, 0x83, 0x84, 0x85,\n    0x84, 0x84, 0x83, 0x82, 0x80, 0x7f, 0x7f, 0x7e, 0x7f, 0x7f, 0x80, 0x80, 0x81, 0x81, 0x82, 0x82,\n    0x83, 0x83, 0x82, 0x82, 0x82, 0x83, 0x84, 0x85, 0x82, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x83,\n    0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x81, 0x81, 0x81, 0x80, 0x80, 0x7f, 0x7f, 0x7e,\n    0x7f, 0x7f, 0x80, 0x81, 0x81, 0x82, 0x82, 0x83, 0x81, 0x7f, 0x7d, 0x7e, 0x81, 0x88, 0x90, 0x94,\n    0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x96, 0x96, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94,\n    0x94, 0x94, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x93, 0x91, 0x90, 0x92, 0x93, 0x93, 0x8e, 0x8a,\n    0x82, 0x80, 0x7d, 0x7a, 0x78, 0x77, 0x78, 0x79, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x76, 0x76,\n    0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x76, 0x75, 0x74, 0x72, 0x70, 0x6f, 0x6d, 0x6d,\n    0x6a, 0x6b, 0x6e, 0x71, 0x73, 0x75, 0x75, 0x75, 0x7a, 0x74, 0x73, 0x79, 0x77, 0x71, 0x81, 0x9f,\n    0xb1, 0xb2, 0xb3, 0xae, 0x98, 0x7f, 0x75, 0x77, 0x76, 0x7e, 0x80, 0x79, 0x7a, 0x80, 0x7f, 0x76,\n    0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x7d, 0x77, 0x83, 0x99, 0x95, 0x7c, 0x76, 0x86,\n    0xa7, 0xb8, 0xb0, 0x9b, 0x93, 0x89, 0x7c, 0x7b, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7a, 0x79, 0x78,\n    0x7f, 0x7d, 0x7a, 0x77, 0x76, 0x77, 0x78, 0x79, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7f, 0x80, 0x82, 0x84, 0x86, 0x86, 0x86, 0x85, 0x84, 0x84, 0x83, 0x83, 0x82, 0x81, 0x80, 0x80,\n    0x82, 0x83, 0x84, 0x85, 0x86, 0x86, 0x86, 0x85, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84,\n    0x83, 0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x83,\n    0x83, 0x83, 0x83, 0x82, 0x82, 0x82, 0x81, 0x81, 0x82, 0x83, 0x83, 0x84, 0x83, 0x82, 0x81, 0x80,\n    0x80, 0x80, 0x80, 0x80, 0x81, 0x81, 0x81, 0x82, 0x81, 0x82, 0x82, 0x83, 0x83, 0x84, 0x85, 0x85,\n    0x7e, 0x7e, 0x7f, 0x80, 0x80, 0x7f, 0x7e, 0x7e, 0x7b, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7e, 0x7f,\n    0x82, 0x82, 0x82, 0x82, 0x83, 0x83, 0x83, 0x83, 0x81, 0x82, 0x82, 0x83, 0x84, 0x84, 0x85, 0x85,\n    0x84, 0x84, 0x83, 0x81, 0x80, 0x7e, 0x7d, 0x7c, 0x7e, 0x7e, 0x7e, 0x7f, 0x80, 0x80, 0x81, 0x81,\n    0x82, 0x81, 0x81, 0x80, 0x81, 0x82, 0x83, 0x84, 0x82, 0x82, 0x82, 0x82, 0x83, 0x83, 0x84, 0x84,\n    0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x81, 0x81, 0x80, 0x80, 0x7f, 0x7e, 0x7d, 0x7d,\n    0x7f, 0x7f, 0x7f, 0x80, 0x81, 0x81, 0x82, 0x82, 0x81, 0x7f, 0x7d, 0x7d, 0x81, 0x88, 0x8f, 0x94,\n    0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x93, 0x93,\n    0x93, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x92, 0x92, 0x90, 0x90, 0x91, 0x93, 0x91, 0x8d, 0x88,\n    0x80, 0x7e, 0x7b, 0x78, 0x77, 0x76, 0x77, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x77,\n    0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x76, 0x75, 0x74, 0x73, 0x71, 0x70, 0x6e, 0x6e,\n    0x6c, 0x6d, 0x6f, 0x72, 0x74, 0x75, 0x75, 0x75, 0x78, 0x71, 0x73, 0x7a, 0x7b, 0x82, 0x99, 0xb0,\n    0xb1, 0xa8, 0xa8, 0xae, 0xa4, 0x8a, 0x77, 0x74, 0x85, 0x96, 0x9d, 0x8d, 0x7c, 0x78, 0x7a, 0x79,\n    0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x7a, 0x74, 0x82, 0x98, 0x93, 0x79, 0x73, 0x82,\n    0x95, 0xa5, 0x9e, 0x90, 0x93, 0x90, 0x83, 0x80, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x79, 0x78, 0x77,\n    0x7d, 0x7c, 0x79, 0x77, 0x76, 0x76, 0x77, 0x78, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b,\n    0x7e, 0x7f, 0x81, 0x83, 0x84, 0x85, 0x86, 0x86, 0x84, 0x84, 0x84, 0x83, 0x83, 0x82, 0x82, 0x81,\n    0x81, 0x82, 0x84, 0x85, 0x86, 0x86, 0x85, 0x85, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84,\n    0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x83,\n    0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x84, 0x85, 0x85, 0x86, 0x86, 0x86, 0x85, 0x84, 0x83,\n    0x80, 0x80, 0x81, 0x81, 0x81, 0x81, 0x82, 0x82, 0x80, 0x81, 0x81, 0x82, 0x82, 0x83, 0x84, 0x84,\n    0x81, 0x82, 0x83, 0x83, 0x83, 0x83, 0x82, 0x81, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x80, 0x81, 0x82,\n    0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x83, 0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85,\n    0x85, 0x85, 0x83, 0x81, 0x7f, 0x7e, 0x7c, 0x7b, 0x7d, 0x7d, 0x7e, 0x7e, 0x7f, 0x7f, 0x80, 0x80,\n    0x80, 0x7f, 0x7f, 0x7f, 0x7f, 0x81, 0x82, 0x83, 0x81, 0x81, 0x80, 0x80, 0x81, 0x82, 0x84, 0x85,\n    0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x82, 0x81, 0x81, 0x80, 0x7f, 0x7e, 0x7d, 0x7d,\n    0x7e, 0x7e, 0x7f, 0x7f, 0x80, 0x81, 0x81, 0x81, 0x81, 0x7f, 0x7d, 0x7d, 0x81, 0x88, 0x8f, 0x94,\n    0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92,\n    0x92, 0x92, 0x92, 0x92, 0x91, 0x91, 0x91, 0x91, 0x90, 0x8f, 0x8f, 0x91, 0x92, 0x90, 0x8a, 0x85,\n    0x7e, 0x7c, 0x79, 0x77, 0x75, 0x75, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77,\n    0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x75, 0x74, 0x73, 0x72, 0x71, 0x70, 0x70,\n    0x6f, 0x70, 0x72, 0x73, 0x74, 0x75, 0x74, 0x74, 0x77, 0x70, 0x73, 0x78, 0x7d, 0x94, 0xac, 0xb0,\n    0x90, 0x84, 0x8a, 0x9f, 0xa1, 0x8a, 0x78, 0x77, 0x95, 0xaa, 0xb1, 0x9a, 0x7d, 0x70, 0x70, 0x71,\n    0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x70, 0x6e, 0x7b, 0x90, 0x91, 0x7e, 0x73, 0x77,\n    0x85, 0x94, 0x8e, 0x87, 0x92, 0x94, 0x87, 0x81, 0x76, 0x78, 0x7a, 0x7b, 0x7b, 0x7a, 0x78, 0x77,\n    0x7b, 0x7a, 0x79, 0x77, 0x77, 0x77, 0x77, 0x78, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c,\n    0x7e, 0x7e, 0x80, 0x81, 0x83, 0x85, 0x86, 0x86, 0x84, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x83,\n    0x81, 0x82, 0x83, 0x85, 0x85, 0x85, 0x85, 0x84, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85,\n    0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x83,\n    0x88, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x86, 0x85, 0x86, 0x87, 0x87, 0x87, 0x87, 0x86, 0x85,\n    0x82, 0x82, 0x82, 0x82, 0x83, 0x83, 0x83, 0x84, 0x81, 0x81, 0x81, 0x82, 0x82, 0x82, 0x82, 0x83,\n    0x84, 0x85, 0x86, 0x86, 0x86, 0x86, 0x85, 0x84, 0x82, 0x81, 0x80, 0x80, 0x81, 0x82, 0x84, 0x85,\n    0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x86, 0x87, 0x84, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85,\n    0x87, 0x86, 0x84, 0x82, 0x80, 0x7e, 0x7c, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7e, 0x7f, 0x7f, 0x80,\n    0x7e, 0x7d, 0x7d, 0x7d, 0x7e, 0x7f, 0x81, 0x82, 0x80, 0x80, 0x7f, 0x7f, 0x80, 0x81, 0x83, 0x84,\n    0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x82, 0x81, 0x80, 0x7f, 0x7e, 0x7d, 0x7d,\n    0x7d, 0x7e, 0x7e, 0x7f, 0x7f, 0x80, 0x81, 0x81, 0x80, 0x7f, 0x7c, 0x7d, 0x80, 0x87, 0x8f, 0x94,\n    0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x92, 0x92, 0x92, 0x92, 0x91, 0x91, 0x91, 0x91,\n    0x91, 0x91, 0x91, 0x90, 0x90, 0x90, 0x90, 0x8f, 0x8e, 0x8d, 0x8e, 0x90, 0x91, 0x8e, 0x88, 0x83,\n    0x7d, 0x7b, 0x78, 0x76, 0x75, 0x75, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78,\n    0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x72,\n    0x73, 0x73, 0x74, 0x75, 0x75, 0x75, 0x74, 0x73, 0x78, 0x72, 0x73, 0x72, 0x7c, 0xa1, 0xb5, 0xa2,\n    0x7a, 0x74, 0x83, 0x9d, 0x9c, 0x81, 0x74, 0x7c, 0x8e, 0xa0, 0xa7, 0x95, 0x81, 0x78, 0x76, 0x72,\n    0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x70, 0x73, 0x80, 0x92, 0x9b, 0x92, 0x81, 0x76,\n    0x85, 0x91, 0x8a, 0x84, 0x93, 0x96, 0x86, 0x7e, 0x74, 0x76, 0x78, 0x7b, 0x7b, 0x7b, 0x79, 0x78,\n    0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c,\n    0x7d, 0x7e, 0x7f, 0x80, 0x82, 0x84, 0x86, 0x87, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83,\n    0x81, 0x82, 0x83, 0x84, 0x85, 0x85, 0x85, 0x84, 0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86,\n    0x84, 0x84, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x83,\n    0x86, 0x86, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x83, 0x83, 0x84, 0x85, 0x85, 0x85, 0x84, 0x83,\n    0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x86, 0x86, 0x83, 0x83, 0x82, 0x82, 0x82, 0x82, 0x81, 0x81,\n    0x86, 0x86, 0x87, 0x88, 0x88, 0x87, 0x86, 0x86, 0x84, 0x83, 0x82, 0x82, 0x82, 0x84, 0x86, 0x87,\n    0x84, 0x85, 0x85, 0x86, 0x86, 0x87, 0x87, 0x87, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x84,\n    0x88, 0x87, 0x85, 0x83, 0x80, 0x7e, 0x7c, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7e, 0x7e, 0x7f, 0x7f,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7e, 0x80, 0x81, 0x7f, 0x7f, 0x7e, 0x7e, 0x7f, 0x80, 0x83, 0x84,\n    0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x83, 0x83, 0x82, 0x81, 0x7f, 0x7e, 0x7d, 0x7d,\n    0x7d, 0x7d, 0x7e, 0x7f, 0x7f, 0x80, 0x80, 0x81, 0x80, 0x7e, 0x7c, 0x7d, 0x80, 0x87, 0x8f, 0x93,\n    0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x91, 0x91, 0x91, 0x91, 0x90, 0x90, 0x90, 0x90,\n    0x90, 0x90, 0x90, 0x90, 0x8f, 0x8f, 0x8f, 0x8f, 0x8d, 0x8c, 0x8d, 0x8f, 0x90, 0x8d, 0x87, 0x81,\n    0x7c, 0x7a, 0x78, 0x75, 0x74, 0x74, 0x75, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78,\n    0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x73, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74,\n    0x75, 0x76, 0x76, 0x77, 0x76, 0x75, 0x74, 0x73, 0x79, 0x75, 0x73, 0x6d, 0x79, 0xa6, 0xb5, 0x94,\n    0x7d, 0x7e, 0x92, 0xa8, 0x9b, 0x79, 0x6e, 0x7e, 0x7a, 0x89, 0x90, 0x8a, 0x85, 0x87, 0x84, 0x7d,\n    0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x79, 0x7f, 0x8b, 0x9d, 0xab, 0xa9, 0x94, 0x7e,\n    0x8c, 0x96, 0x8d, 0x86, 0x94, 0x96, 0x84, 0x79, 0x72, 0x74, 0x78, 0x7b, 0x7c, 0x7b, 0x7a, 0x79,\n    0x77, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d,\n    0x7d, 0x7d, 0x7e, 0x80, 0x82, 0x84, 0x86, 0x87, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84,\n    0x81, 0x82, 0x83, 0x84, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x84, 0x85, 0x86, 0x86, 0x86, 0x87,\n    0x84, 0x84, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x83,\n    0x83, 0x83, 0x83, 0x83, 0x82, 0x82, 0x82, 0x82, 0x80, 0x81, 0x82, 0x83, 0x83, 0x82, 0x82, 0x81,\n    0x85, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x84, 0x84, 0x83, 0x83, 0x82, 0x81, 0x81, 0x80,\n    0x88, 0x88, 0x89, 0x8a, 0x8a, 0x89, 0x88, 0x88, 0x83, 0x84, 0x85, 0x87, 0x87, 0x88, 0x87, 0x87,\n    0x83, 0x84, 0x85, 0x86, 0x86, 0x86, 0x85, 0x85, 0x84, 0x84, 0x82, 0x81, 0x81, 0x81, 0x82, 0x83,\n    0x83, 0x82, 0x81, 0x80, 0x7f, 0x7e, 0x7d, 0x7c, 0x7b, 0x7b, 0x79, 0x78, 0x79, 0x7a, 0x7c, 0x7d,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7e, 0x7f, 0x80, 0x7f, 0x7e, 0x7c, 0x7c, 0x7c, 0x7d, 0x7f, 0x80,\n    0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e,\n    0x7b, 0x7c, 0x7d, 0x7f, 0x80, 0x81, 0x81, 0x81, 0x80, 0x7e, 0x7c, 0x7d, 0x81, 0x89, 0x90, 0x95,\n    0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x94, 0x94, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x92, 0x91,\n    0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x90, 0x8e, 0x8d, 0x8e, 0x8f, 0x8b, 0x85, 0x80,\n    0x7b, 0x7a, 0x78, 0x77, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77,\n    0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76,\n    0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x75, 0x74, 0x74, 0x77, 0x81, 0x94, 0xaa, 0xb9,\n    0x92, 0x92, 0xa8, 0xb3, 0x99, 0x7f, 0x76, 0x6f, 0x78, 0x7b, 0x74, 0x93, 0xa6, 0x8e, 0x8d, 0x99,\n    0xa6, 0x8d, 0x79, 0x76, 0x75, 0x71, 0x74, 0x7e, 0x74, 0x8a, 0xa5, 0xb6, 0xbb, 0xb1, 0x96, 0x7c,\n    0x89, 0x96, 0x8c, 0x81, 0x89, 0x8a, 0x7e, 0x7a, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75,\n    0x73, 0x74, 0x75, 0x76, 0x77, 0x77, 0x76, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7c, 0x7d, 0x7f, 0x7f,\n    0x78, 0x79, 0x7c, 0x7f, 0x82, 0x84, 0x86, 0x87, 0x88, 0x87, 0x86, 0x85, 0x84, 0x83, 0x82, 0x81,\n    0x7f, 0x81, 0x84, 0x86, 0x86, 0x85, 0x83, 0x82, 0x81, 0x82, 0x82, 0x82, 0x83, 0x83, 0x83, 0x83,\n    0x83, 0x83, 0x84, 0x85, 0x85, 0x86, 0x87, 0x87, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83,\n    0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82,\n    0x84, 0x85, 0x85, 0x86, 0x86, 0x87, 0x87, 0x87, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82,\n    0x88, 0x88, 0x89, 0x8a, 0x8a, 0x89, 0x88, 0x88, 0x84, 0x85, 0x86, 0x87, 0x87, 0x87, 0x86, 0x85,\n    0x83, 0x84, 0x85, 0x86, 0x87, 0x86, 0x86, 0x85, 0x85, 0x84, 0x83, 0x82, 0x82, 0x82, 0x83, 0x83,\n    0x82, 0x82, 0x81, 0x80, 0x7f, 0x7e, 0x7d, 0x7c, 0x7a, 0x79, 0x77, 0x76, 0x76, 0x77, 0x78, 0x78,\n    0x7a, 0x7b, 0x7b, 0x7c, 0x7d, 0x7e, 0x7f, 0x80, 0x7f, 0x7e, 0x7d, 0x7c, 0x7d, 0x7e, 0x7f, 0x80,\n    0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d,\n    0x7b, 0x7c, 0x7d, 0x7e, 0x7f, 0x80, 0x80, 0x80, 0x81, 0x7f, 0x7d, 0x7e, 0x82, 0x89, 0x90, 0x95,\n    0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x94, 0x93, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x92,\n    0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x91, 0x8f, 0x8e, 0x8f, 0x8f, 0x8b, 0x84, 0x7f,\n    0x7b, 0x7a, 0x78, 0x77, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77,\n    0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76,\n    0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x76, 0x77, 0x7d, 0x8a, 0x9b, 0xa7,\n    0xb6, 0xb0, 0xbb, 0xbb, 0x9a, 0x7e, 0x77, 0x73, 0x83, 0x9f, 0x9e, 0xaa, 0xb2, 0xa5, 0xab, 0xb1,\n    0xb7, 0xa5, 0x8c, 0x7b, 0x79, 0x7e, 0x7e, 0x7a, 0x7c, 0x87, 0x9c, 0xb0, 0xb4, 0xa2, 0x88, 0x76,\n    0x87, 0x95, 0x8d, 0x82, 0x8b, 0x8b, 0x7e, 0x79, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75,\n    0x73, 0x74, 0x75, 0x77, 0x78, 0x78, 0x78, 0x77, 0x76, 0x77, 0x77, 0x78, 0x7a, 0x7b, 0x7b, 0x7c,\n    0x78, 0x7a, 0x7c, 0x80, 0x82, 0x85, 0x86, 0x87, 0x87, 0x87, 0x86, 0x85, 0x84, 0x83, 0x82, 0x81,\n    0x80, 0x82, 0x84, 0x86, 0x87, 0x86, 0x84, 0x82, 0x82, 0x82, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84,\n    0x84, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x86, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83,\n    0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85,\n    0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x86, 0x87, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83,\n    0x88, 0x88, 0x89, 0x8a, 0x8a, 0x89, 0x88, 0x88, 0x86, 0x86, 0x87, 0x87, 0x86, 0x85, 0x84, 0x83,\n    0x84, 0x85, 0x86, 0x87, 0x87, 0x87, 0x86, 0x86, 0x85, 0x85, 0x83, 0x82, 0x82, 0x82, 0x83, 0x84,\n    0x82, 0x82, 0x81, 0x80, 0x7f, 0x7e, 0x7d, 0x7d, 0x79, 0x78, 0x76, 0x75, 0x74, 0x73, 0x74, 0x74,\n    0x77, 0x78, 0x79, 0x7b, 0x7d, 0x7e, 0x7f, 0x80, 0x7f, 0x7e, 0x7d, 0x7d, 0x7e, 0x7e, 0x80, 0x80,\n    0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d,\n    0x7c, 0x7d, 0x7d, 0x7d, 0x7e, 0x7f, 0x7f, 0x80, 0x83, 0x81, 0x7e, 0x7e, 0x82, 0x88, 0x90, 0x94,\n    0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x93, 0x93, 0x93, 0x93, 0x92, 0x92,\n    0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x93, 0x91, 0x8f, 0x8f, 0x8e, 0x8a, 0x83, 0x7d,\n    0x7b, 0x7a, 0x79, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77,\n    0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76,\n    0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x78, 0x78, 0x78, 0x76, 0x77, 0x7d, 0x86, 0x8e,\n    0x9f, 0x99, 0xa4, 0xa6, 0x8b, 0x78, 0x7c, 0x80, 0x95, 0xbb, 0xb6, 0xb3, 0xbb, 0xba, 0xbc, 0xb1,\n    0xa0, 0x9b, 0x8c, 0x80, 0x8b, 0xa1, 0xa4, 0x98, 0x88, 0x82, 0x8e, 0xa8, 0xaa, 0x90, 0x78, 0x73,\n    0x86, 0x94, 0x8e, 0x84, 0x8d, 0x8d, 0x7f, 0x79, 0x74, 0x75, 0x76, 0x77, 0x77, 0x76, 0x75, 0x74,\n    0x73, 0x74, 0x76, 0x78, 0x79, 0x79, 0x79, 0x79, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78,\n    0x79, 0x7b, 0x7e, 0x81, 0x84, 0x85, 0x86, 0x87, 0x87, 0x87, 0x86, 0x85, 0x84, 0x83, 0x82, 0x82,\n    0x82, 0x83, 0x85, 0x87, 0x87, 0x86, 0x85, 0x83, 0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85,\n    0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84,\n    0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87,\n    0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84,\n    0x88, 0x88, 0x89, 0x8a, 0x8a, 0x89, 0x88, 0x88, 0x88, 0x88, 0x88, 0x87, 0x86, 0x83, 0x81, 0x80,\n    0x84, 0x85, 0x86, 0x87, 0x87, 0x87, 0x86, 0x86, 0x85, 0x85, 0x83, 0x82, 0x82, 0x82, 0x83, 0x84,\n    0x81, 0x81, 0x80, 0x80, 0x7f, 0x7e, 0x7e, 0x7d, 0x7b, 0x7a, 0x79, 0x77, 0x76, 0x74, 0x73, 0x73,\n    0x75, 0x76, 0x78, 0x7b, 0x7d, 0x7e, 0x7f, 0x80, 0x7f, 0x7e, 0x7e, 0x7e, 0x7f, 0x7f, 0x80, 0x80,\n    0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c,\n    0x7d, 0x7d, 0x7d, 0x7c, 0x7d, 0x7d, 0x7e, 0x7f, 0x83, 0x81, 0x7f, 0x7e, 0x82, 0x88, 0x8f, 0x94,\n    0x94, 0x95, 0x95, 0x95, 0x95, 0x95, 0x96, 0x96, 0x95, 0x94, 0x94, 0x94, 0x93, 0x93, 0x93, 0x93,\n    0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x94, 0x92, 0x90, 0x90, 0x8f, 0x8a, 0x83, 0x7d,\n    0x7b, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x77, 0x78, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77,\n    0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76,\n    0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x76, 0x77, 0x75, 0x73, 0x74, 0x78, 0x7c,\n    0x75, 0x75, 0x8a, 0x95, 0x80, 0x75, 0x80, 0x88, 0xa6, 0xb8, 0xa5, 0xa6, 0xb8, 0xb6, 0xa9, 0x90,\n    0x7b, 0x7f, 0x83, 0x8d, 0xa2, 0xb7, 0xba, 0xb1, 0x90, 0x7b, 0x80, 0xa0, 0xa5, 0x86, 0x72, 0x79,\n    0x85, 0x94, 0x8d, 0x84, 0x8c, 0x8c, 0x7e, 0x78, 0x73, 0x75, 0x76, 0x77, 0x77, 0x76, 0x75, 0x73,\n    0x73, 0x74, 0x76, 0x78, 0x7a, 0x7a, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78,\n    0x79, 0x7b, 0x7e, 0x82, 0x84, 0x86, 0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x84, 0x83, 0x83, 0x82,\n    0x84, 0x85, 0x86, 0x87, 0x87, 0x86, 0x85, 0x84, 0x84, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86,\n    0x87, 0x87, 0x86, 0x85, 0x84, 0x84, 0x83, 0x83, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85,\n    0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86,\n    0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85,\n    0x88, 0x88, 0x89, 0x8a, 0x8a, 0x89, 0x88, 0x88, 0x89, 0x89, 0x88, 0x87, 0x85, 0x82, 0x80, 0x7f,\n    0x83, 0x84, 0x85, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x84, 0x83, 0x82, 0x81, 0x82, 0x82, 0x83,\n    0x81, 0x81, 0x80, 0x80, 0x7f, 0x7f, 0x7e, 0x7e, 0x7f, 0x7e, 0x7d, 0x7c, 0x7a, 0x78, 0x76, 0x75,\n    0x74, 0x76, 0x79, 0x7c, 0x7e, 0x7f, 0x7f, 0x7f, 0x7e, 0x7f, 0x7f, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d,\n    0x7f, 0x7e, 0x7c, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x82, 0x80, 0x7e, 0x7e, 0x81, 0x88, 0x8f, 0x94,\n    0x94, 0x94, 0x95, 0x95, 0x96, 0x96, 0x96, 0x97, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x94, 0x93,\n    0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x92, 0x90, 0x90, 0x8f, 0x8a, 0x83, 0x7d,\n    0x7c, 0x7b, 0x79, 0x78, 0x77, 0x77, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77,\n    0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76,\n    0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x70, 0x73, 0x75, 0x75, 0x72, 0x72, 0x74, 0x76,\n    0x78, 0x7d, 0x98, 0xa4, 0x8b, 0x7a, 0x80, 0x86, 0xb0, 0xac, 0x91, 0x9e, 0xb0, 0x9a, 0x86, 0x76,\n    0x73, 0x78, 0x89, 0xa0, 0xab, 0xa7, 0xa1, 0xa1, 0x95, 0x77, 0x77, 0x9b, 0xa3, 0x85, 0x76, 0x82,\n    0x86, 0x93, 0x8b, 0x80, 0x88, 0x89, 0x7c, 0x77, 0x73, 0x74, 0x76, 0x78, 0x78, 0x76, 0x74, 0x73,\n    0x73, 0x75, 0x76, 0x78, 0x7a, 0x7a, 0x7a, 0x7a, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79,\n    0x79, 0x7b, 0x7f, 0x82, 0x85, 0x85, 0x85, 0x84, 0x86, 0x86, 0x85, 0x85, 0x84, 0x84, 0x83, 0x83,\n    0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x85, 0x84, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x87,\n    0x88, 0x87, 0x87, 0x86, 0x84, 0x83, 0x82, 0x82, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85,\n    0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83,\n    0x85, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86,\n    0x88, 0x88, 0x89, 0x8a, 0x8a, 0x89, 0x88, 0x88, 0x88, 0x88, 0x88, 0x87, 0x85, 0x82, 0x80, 0x7e,\n    0x82, 0x83, 0x84, 0x85, 0x85, 0x85, 0x84, 0x84, 0x83, 0x83, 0x81, 0x80, 0x80, 0x80, 0x81, 0x82,\n    0x80, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x7e, 0x80, 0x80, 0x80, 0x7f, 0x7d, 0x7b, 0x79, 0x78,\n    0x75, 0x77, 0x7a, 0x7d, 0x7f, 0x7f, 0x7e, 0x7e, 0x7e, 0x7f, 0x80, 0x81, 0x82, 0x81, 0x81, 0x80,\n    0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e,\n    0x80, 0x7e, 0x7c, 0x7a, 0x79, 0x7a, 0x7b, 0x7c, 0x7f, 0x7d, 0x7c, 0x7c, 0x80, 0x87, 0x8f, 0x94,\n    0x94, 0x94, 0x95, 0x95, 0x96, 0x97, 0x97, 0x97, 0x96, 0x96, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94,\n    0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x92, 0x90, 0x90, 0x8f, 0x8b, 0x84, 0x7e,\n    0x7c, 0x7b, 0x79, 0x78, 0x77, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77,\n    0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76,\n    0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x72, 0x75, 0x77, 0x76, 0x74, 0x73, 0x75, 0x77,\n    0x7b, 0x83, 0xa0, 0xab, 0x91, 0x7d, 0x83, 0x8a, 0xb3, 0xa7, 0x90, 0xa6, 0xad, 0x83, 0x73, 0x77,\n    0x72, 0x7b, 0x92, 0xa7, 0xa2, 0x8e, 0x89, 0x93, 0x96, 0x77, 0x75, 0x97, 0xa2, 0x89, 0x7b, 0x85,\n    0x89, 0x94, 0x87, 0x79, 0x80, 0x82, 0x79, 0x76, 0x72, 0x74, 0x77, 0x79, 0x79, 0x77, 0x74, 0x72,\n    0x74, 0x75, 0x77, 0x78, 0x79, 0x79, 0x78, 0x78, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a,\n    0x77, 0x7a, 0x7e, 0x82, 0x84, 0x84, 0x83, 0x82, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x83,\n    0x86, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86,\n    0x87, 0x87, 0x86, 0x85, 0x84, 0x84, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84,\n    0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82,\n    0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85,\n    0x88, 0x88, 0x89, 0x8a, 0x8a, 0x89, 0x88, 0x88, 0x87, 0x87, 0x87, 0x86, 0x85, 0x82, 0x80, 0x7f,\n    0x80, 0x81, 0x82, 0x83, 0x84, 0x83, 0x83, 0x82, 0x82, 0x81, 0x80, 0x7f, 0x7f, 0x7f, 0x80, 0x80,\n    0x80, 0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7e, 0x7f, 0x7f, 0x7f, 0x7e, 0x7c, 0x7a, 0x78,\n    0x77, 0x79, 0x7c, 0x7f, 0x80, 0x7f, 0x7e, 0x7d, 0x7e, 0x7f, 0x81, 0x82, 0x83, 0x82, 0x81, 0x80,\n    0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f,\n    0x81, 0x7f, 0x7c, 0x79, 0x78, 0x79, 0x7a, 0x7c, 0x7c, 0x7a, 0x79, 0x7a, 0x7f, 0x87, 0x8f, 0x95,\n    0x94, 0x94, 0x95, 0x96, 0x96, 0x97, 0x98, 0x98, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x95,\n    0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x92, 0x91, 0x90, 0x90, 0x90, 0x8c, 0x86, 0x80,\n    0x7c, 0x7b, 0x7a, 0x78, 0x78, 0x78, 0x78, 0x79, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77,\n    0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76,\n    0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x7b, 0x7c, 0x7c, 0x79, 0x75, 0x74, 0x76, 0x79,\n    0x71, 0x78, 0x94, 0xa0, 0x88, 0x7b, 0x8b, 0x98, 0xb5, 0xa4, 0x8b, 0xa6, 0xb1, 0x87, 0x75, 0x79,\n    0x70, 0x86, 0x9d, 0x9e, 0x8c, 0x7f, 0x87, 0x96, 0x98, 0x7c, 0x78, 0x93, 0x9f, 0x8b, 0x7b, 0x7e,\n    0x8d, 0x94, 0x83, 0x71, 0x78, 0x7c, 0x75, 0x75, 0x72, 0x74, 0x77, 0x79, 0x79, 0x77, 0x74, 0x72,\n    0x75, 0x76, 0x77, 0x77, 0x77, 0x76, 0x75, 0x75, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77,\n    0x76, 0x79, 0x7e, 0x82, 0x84, 0x83, 0x81, 0x80, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x84,\n    0x85, 0x85, 0x84, 0x84, 0x83, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85,\n    0x86, 0x86, 0x86, 0x85, 0x85, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83,\n    0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84,\n    0x88, 0x88, 0x88, 0x87, 0x87, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85,\n    0x88, 0x88, 0x89, 0x8a, 0x8a, 0x89, 0x88, 0x88, 0x87, 0x87, 0x87, 0x86, 0x85, 0x83, 0x81, 0x7f,\n    0x7f, 0x80, 0x81, 0x82, 0x83, 0x82, 0x82, 0x81, 0x81, 0x80, 0x7f, 0x7e, 0x7e, 0x7e, 0x7f, 0x7f,\n    0x80, 0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7c, 0x7d, 0x7d, 0x7e, 0x7d, 0x7b, 0x79, 0x77,\n    0x79, 0x7b, 0x7e, 0x80, 0x81, 0x80, 0x7e, 0x7c, 0x7e, 0x80, 0x81, 0x83, 0x83, 0x82, 0x81, 0x80,\n    0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,\n    0x81, 0x7f, 0x7c, 0x79, 0x78, 0x78, 0x7a, 0x7b, 0x7a, 0x78, 0x77, 0x79, 0x7e, 0x87, 0x8f, 0x95,\n    0x94, 0x94, 0x95, 0x96, 0x97, 0x97, 0x98, 0x98, 0x97, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95,\n    0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x91, 0x90, 0x8f, 0x90, 0x90, 0x8d, 0x87, 0x81,\n    0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x78, 0x79, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77,\n    0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76,\n    0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x84, 0x84, 0x81, 0x7c, 0x76, 0x74, 0x76, 0x79,\n    0x7b, 0x7e, 0x94, 0x9b, 0x82, 0x7a, 0x90, 0xa3, 0xb7, 0x9e, 0x7e, 0x9b, 0xb6, 0x96, 0x7c, 0x71,\n    0x7a, 0x9a, 0xab, 0x95, 0x78, 0x74, 0x85, 0x94, 0x9a, 0x81, 0x7b, 0x91, 0x9b, 0x8a, 0x78, 0x76,\n    0x8f, 0x95, 0x81, 0x6c, 0x72, 0x78, 0x73, 0x74, 0x71, 0x74, 0x77, 0x79, 0x79, 0x77, 0x74, 0x71,\n    0x76, 0x76, 0x77, 0x77, 0x76, 0x75, 0x74, 0x73, 0x72, 0x72, 0x73, 0x73, 0x74, 0x74, 0x75, 0x75,\n    0x75, 0x78, 0x7d, 0x81, 0x83, 0x82, 0x80, 0x7f, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x84,\n    0x85, 0x85, 0x84, 0x83, 0x82, 0x82, 0x82, 0x82, 0x83, 0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85,\n    0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x84, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83,\n    0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86,\n    0x89, 0x89, 0x88, 0x88, 0x87, 0x87, 0x86, 0x86, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84\n};\n\n#endif\n\n\n\n\n\n"
  },
  {
    "path": "common/meson.build",
    "content": "libva_display_src = [ 'va_display.c' ]\nlibva_display_deps = [ libva_dep ]\n\nif use_x11\n  libva_display_src += [ 'va_display_x11.c' ]\n  libva_display_deps += x11_deps\nendif\n\nif use_drm\n  libva_display_src += [ 'va_display_drm.c' ]\n  libva_display_deps += drm_deps\nendif\n\nif use_wayland\n  libva_display_src += [ 'va_display_wayland.c' ]\n  libva_display_deps += wayland_deps\nendif\n\nif use_win32\n  libva_display_src += [ 'va_display_win32.cpp' ]\n  libva_display_deps += win32_deps\nendif\n\nlibva_display_lib = static_library('common', libva_display_src,\n                                   dependencies: libva_display_deps,\n                                   include_directories: include_directories('.'))\nlibva_display_dep = declare_dependency(link_with: libva_display_lib,\n                                       dependencies: libva_display_deps,\n                                       include_directories: include_directories('.'))\n"
  },
  {
    "path": "common/va_display.c",
    "content": "/*\n * Copyright (c) 2012 Intel Corporation. All Rights Reserved.\n *\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the\n * \"Software\"), to deal in the Software without restriction, including\n * without limitation the rights to use, copy, modify, merge, publish,\n * distribute, sub license, and/or sell copies of the Software, and to\n * permit persons to whom the Software is furnished to do so, subject to\n * the following conditions:\n *\n * The above copyright notice and this permission notice (including the\n * next paragraph) shall be included in all copies or substantial portions\n * of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR\n * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n#ifdef HAVE_CONFIG_H\n#include \"config.h\"\n#endif\n#include <stdio.h>\n#include <stdlib.h>\n#include <stddef.h>\n#include <string.h>\n#include <va/va.h>\n#include \"va_display.h\"\n\nextern const VADisplayHooks va_display_hooks_android;\nextern const VADisplayHooks va_display_hooks_wayland;\nextern const VADisplayHooks va_display_hooks_x11;\nextern const VADisplayHooks va_display_hooks_drm;\nextern const VADisplayHooks va_display_hooks_win32;\n\nstatic const VADisplayHooks *g_display_hooks;\nstatic const VADisplayHooks *g_display_hooks_available[] = {\n#ifdef HAVE_VA_WIN32\n    &va_display_hooks_win32,\n#endif\n#ifdef HAVE_VA_WAYLAND\n    &va_display_hooks_wayland,\n#endif\n#ifdef HAVE_VA_X11\n    &va_display_hooks_x11,\n#endif\n#ifdef HAVE_VA_DRM\n    &va_display_hooks_drm,\n#endif\n    NULL};\n\nstatic const char *g_display_name;\nconst char *g_device_name;\n\nstatic const char *\nget_display_name(int argc, char *argv[])\n{\n    const char *display_name = NULL;\n    int i;\n\n    for (i = 1; i < argc; i++) {\n        if (strcmp(argv[i], \"--display\") != 0)\n            continue;\n        argv[i] = NULL;\n\n        if (++i < argc) {\n            display_name = argv[i];\n            argv[i] = NULL;\n        }\n    }\n    return display_name;\n}\n\nstatic const char *\nget_device_name(int argc, char *argv[])\n{\n    const char *device_name = NULL;\n    int i;\n\n    for (i = 1; i < argc; i++) {\n        if (argv[i] && (strcmp(argv[i], \"--device\") != 0))\n            continue;\n        argv[i] = NULL;\n\n        if (++i < argc) {\n            device_name = argv[i];\n            argv[i] = NULL;\n        }\n    }\n    return device_name;\n}\n\nstatic void\nprint_display_names(void)\n{\n    const VADisplayHooks **h;\n\n    printf(\"Available displays:\\n\");\n    for (h = g_display_hooks_available; *h != NULL; h++)\n        printf(\"  %s\\n\", (*h)->name);\n}\n\nstatic void\nsanitize_args(int *argc, char *argv[])\n{\n    char **out_args = argv;\n    int i, n = *argc;\n\n    for (i = 0; i < n; i++) {\n        if (argv[i])\n            *out_args++ = argv[i];\n    }\n    *out_args = NULL;\n    *argc = out_args - argv;\n}\n\nvoid\nva_init_display_args(int *argc, char *argv[])\n{\n    const char *display_name;\n\n    display_name = get_display_name(*argc, argv);\n    if (display_name && strcmp(display_name, \"help\") == 0) {\n        print_display_names();\n        exit(0);\n    }\n    g_display_name = display_name;\n\n    if (g_display_name &&\n        ((strcmp(g_display_name, \"drm\") == 0)\n        || (strcmp(g_display_name, \"win32\") == 0)))\n        g_device_name = get_device_name(*argc, argv);\n\n    sanitize_args(argc, argv);\n}\n\nVADisplay\nva_open_display(void)\n{\n    VADisplay va_dpy = NULL;\n    unsigned int i;\n\n    for (i = 0; !va_dpy && g_display_hooks_available[i]; i++) {\n        g_display_hooks = g_display_hooks_available[i];\n        if (g_display_name &&\n            strcmp(g_display_name, g_display_hooks->name) != 0)\n            continue;\n        if (!g_display_hooks->open_display)\n            continue;\n        printf(\"Trying display: %s\\n\", g_display_hooks->name);\n        va_dpy = g_display_hooks->open_display();\n    }\n\n    if (!va_dpy)  {\n        fprintf(stderr, \"error: failed to initialize display\");\n        if (g_display_name)\n            fprintf(stderr, \" '%s'\", g_display_name);\n        fprintf(stderr, \"\\n\");\n        exit(1);\n    }\n    return va_dpy;\n}\n\nvoid\nva_close_display(VADisplay va_dpy)\n{\n    if (!va_dpy)\n        return;\n\n    if (g_display_hooks && g_display_hooks->close_display)\n        g_display_hooks->close_display(va_dpy);\n}\n\nVAStatus\nva_put_surface(\n    VADisplay          va_dpy,\n    VASurfaceID        surface,\n    const VARectangle *src_rect,\n    const VARectangle *dst_rect\n)\n{\n    if (!va_dpy)\n        return VA_STATUS_ERROR_INVALID_DISPLAY;\n\n    if (g_display_hooks && g_display_hooks->put_surface)\n        return g_display_hooks->put_surface(va_dpy, surface, src_rect, dst_rect);\n    return VA_STATUS_ERROR_UNIMPLEMENTED;\n}\n\nvoid\nva_print_display_options(FILE *stream)\n{\n    fprintf(stream, \"Display options:\\n\");\n    fprintf(stream, \"\\t--display display | help         Show information for the specified display, or the available display list \\n\");\n    fprintf(stream, \"\\t--device device                  Set device name, only available under drm and win32 displays\\n\");\n}\n"
  },
  {
    "path": "common/va_display.h",
    "content": "/*\n * Copyright (c) 2012 Intel Corporation. All Rights Reserved.\n *\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the\n * \"Software\"), to deal in the Software without restriction, including\n * without limitation the rights to use, copy, modify, merge, publish,\n * distribute, sub license, and/or sell copies of the Software, and to\n * permit persons to whom the Software is furnished to do so, subject to\n * the following conditions:\n *\n * The above copyright notice and this permission notice (including the\n * next paragraph) shall be included in all copies or substantial portions\n * of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR\n * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n#ifndef VA_DISPLAY_H\n#define VA_DISPLAY_H\n\n#include <va/va.h>\n#include <stdio.h>\n\n#ifdef __cplusplus\nextern \"C\" {\n#endif\n\ntypedef struct {\n    const char *name;\n    VADisplay(*open_display)(void);\n    void (*close_display)(VADisplay va_dpy);\n    VAStatus(*put_surface)(VADisplay va_dpy, VASurfaceID surface,\n                           const VARectangle *src_rect,\n                           const VARectangle *dst_rect);\n} VADisplayHooks;\n\nvoid\nva_init_display_args(int *argc, char *argv[]);\n\nVADisplay\nva_open_display(void);\n\nvoid\nva_close_display(VADisplay va_dpy);\n\nVAStatus\nva_put_surface(\n    VADisplay          va_dpy,\n    VASurfaceID        surface,\n    const VARectangle *src_rect,\n    const VARectangle *dst_rect\n);\n\nvoid\nva_print_display_options(FILE *stream);\n\n#ifdef __cplusplus\n}\n#endif\n\n#endif /* VA_DISPLAY_H */\n"
  },
  {
    "path": "common/va_display_drm.c",
    "content": "/*\n * Copyright (c) 2012 Intel Corporation. All Rights Reserved.\n *\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the\n * \"Software\"), to deal in the Software without restriction, including\n * without limitation the rights to use, copy, modify, merge, publish,\n * distribute, sub license, and/or sell copies of the Software, and to\n * permit persons to whom the Software is furnished to do so, subject to\n * the following conditions:\n *\n * The above copyright notice and this permission notice (including the\n * next paragraph) shall be included in all copies or substantial portions\n * of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR\n * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n#include <stdio.h>\n#include <stdlib.h>\n#include <string.h>\n#include <unistd.h>\n#include <fcntl.h>\n#ifdef IN_LIBVA\n# include \"va/drm/va_drm.h\"\n#else\n# include <va/va_drm.h>\n#endif\n#include <xf86drm.h>\n#include \"va_display.h\"\n#include <sys/utsname.h>\n\nstatic int drm_fd = -1;\nextern const char *g_device_name;\n\nstatic VADisplay\nva_open_display_drm(void)\n{\n    VADisplay va_dpy;\n    int i;\n    drmVersionPtr version;\n    static const char *drm_device_paths[] = {\n        \"/dev/dri/renderD128\",\n        \"/dev/dri/card0\",\n        \"/dev/dri/renderD129\",\n        \"/dev/dri/card1\",\n        NULL\n    };\n\n    if (g_device_name) {\n        drm_fd = open(g_device_name, O_RDWR);\n        if (drm_fd < 0) {\n            printf(\"Failed to open the given device!\\n\");\n            exit(1);\n            return NULL;\n        }\n\n        va_dpy = vaGetDisplayDRM(drm_fd);\n        if (va_dpy)\n            return va_dpy;\n\n        printf(\"Failed to a DRM display for the given device\\n\");\n        close(drm_fd);\n        drm_fd = -1;\n        exit(1);\n        return NULL;\n    }\n\n    for (i = 0; drm_device_paths[i]; i++) {\n        drm_fd = open(drm_device_paths[i], O_RDWR);\n        if (drm_fd < 0)\n            continue;\n\n        version = drmGetVersion(drm_fd);\n        if (!version) {\n            close(drm_fd);\n            continue;\n        }\n        /* On normal Linux platforms we do not want vgem.\n        *  Yet Windows subsystem for linux uses vgem,\n        *  while also providing a fallback VA driver.\n        *  See https://github.com/intel/libva/pull/688\n        */\n        struct utsname sysinfo = {};\n        if (!strncmp(version->name, \"vgem\", 4) && (uname(&sysinfo) >= 0) &&\n            !strstr(sysinfo.release, \"WSL\")) {\n            drmFreeVersion(version);\n            close(drm_fd);\n            continue;\n        }\n        drmFreeVersion(version);\n\n        va_dpy = vaGetDisplayDRM(drm_fd);\n        if (va_dpy)\n            return va_dpy;\n\n        close(drm_fd);\n        drm_fd = -1;\n    }\n    return NULL;\n}\n\nstatic void\nva_close_display_drm(VADisplay va_dpy)\n{\n    if (drm_fd < 0)\n        return;\n\n    close(drm_fd);\n    drm_fd = -1;\n}\n\n\nstatic VAStatus\nva_put_surface_drm(\n    VADisplay          va_dpy,\n    VASurfaceID        surface,\n    const VARectangle *src_rect,\n    const VARectangle *dst_rect\n)\n{\n    return VA_STATUS_ERROR_OPERATION_FAILED;\n}\n\nconst VADisplayHooks va_display_hooks_drm = {\n    \"drm\",\n    va_open_display_drm,\n    va_close_display_drm,\n    va_put_surface_drm,\n};\n"
  },
  {
    "path": "common/va_display_wayland.c",
    "content": "/*\n * Copyright (c) 2012 Intel Corporation. All Rights Reserved.\n *\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the\n * \"Software\"), to deal in the Software without restriction, including\n * without limitation the rights to use, copy, modify, merge, publish,\n * distribute, sub license, and/or sell copies of the Software, and to\n * permit persons to whom the Software is furnished to do so, subject to\n * the following conditions:\n *\n * The above copyright notice and this permission notice (including the\n * next paragraph) shall be included in all copies or substantial portions\n * of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR\n * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n#include <stdlib.h>\n#include <string.h>\n#ifdef IN_LIBVA\n# include \"va/wayland/va_wayland.h\"\n#else\n# include <va/va_wayland.h>\n#endif\n#include \"va_display.h\"\n\nstruct display {\n    struct wl_display          *display;\n    struct wl_registry         *registry;\n    struct wl_compositor       *compositor;\n    struct wl_shell            *shell;\n    struct wl_shell_surface    *shell_surface;\n    struct wl_surface          *surface;\n    unsigned int                ref_count;\n    int                         event_fd;\n};\n\nstatic struct display *g_display;\n\nstatic void\nregistry_handle_global(\n    void               *data,\n    struct wl_registry *registry,\n    uint32_t            id,\n    const char         *interface,\n    uint32_t            version\n)\n{\n    struct display * const d = data;\n\n    if (strcmp(interface, \"wl_compositor\") == 0)\n        d->compositor =\n            wl_registry_bind(registry, id, &wl_compositor_interface, 1);\n    else if (strcmp(interface, \"wl_shell\") == 0)\n        d->shell = wl_registry_bind(registry, id, &wl_shell_interface, 1);\n}\n\nstatic const struct wl_registry_listener registry_listener = {\n    registry_handle_global,\n    NULL,\n};\n\nstatic VADisplay\nva_open_display_wayland(void)\n{\n    struct display *d;\n\n    if (g_display) {\n        d = g_display;\n        d->ref_count++;\n    } else {\n        d = calloc(1, sizeof(*d));\n        if (!d)\n            return NULL;\n        d->event_fd = -1;\n\n        d->display = wl_display_connect(NULL);\n        if (!d->display) {\n            free(d);\n            return NULL;\n        }\n        wl_display_set_user_data(d->display, d);\n        d->registry = wl_display_get_registry(d->display);\n        wl_registry_add_listener(d->registry, &registry_listener, d);\n        d->event_fd = wl_display_get_fd(d->display);\n        wl_display_dispatch(d->display);\n\n        d->ref_count = 1;\n        g_display = d;\n    }\n    return vaGetDisplayWl(d->display);\n}\n\nstatic void\nva_close_display_wayland(VADisplay va_dpy)\n{\n    struct display * const d = g_display;\n\n    if (!d || --d->ref_count > 0)\n        return;\n\n    if (d->surface) {\n        wl_surface_destroy(d->surface);\n        d->surface = NULL;\n    }\n\n    if (d->shell_surface) {\n        wl_shell_surface_destroy(d->shell_surface);\n        d->shell_surface = NULL;\n    }\n\n    if (d->shell) {\n        wl_shell_destroy(d->shell);\n        d->shell = NULL;\n    }\n\n    if (d->compositor) {\n        wl_compositor_destroy(d->compositor);\n        d->compositor = NULL;\n    }\n\n    if (d->registry) {\n        wl_registry_destroy(d->registry);\n        d->registry = NULL;\n    }\n\n    if (d->display) {\n        wl_display_disconnect(d->display);\n        d->display = NULL;\n    }\n    free(g_display);\n    g_display = NULL;\n}\n\nstatic int\nensure_window(VADisplay va_dpy, unsigned int width, unsigned int height)\n{\n    struct display * const d = g_display;\n\n    if (!d->surface) {\n        d->surface = wl_compositor_create_surface(d->compositor);\n        if (!d->surface)\n            return 0;\n    }\n\n    if (!d->shell_surface) {\n        d->shell_surface = wl_shell_get_shell_surface(d->shell, d->surface);\n        if (!d->shell_surface)\n            return 0;\n        wl_shell_surface_set_toplevel(d->shell_surface);\n    }\n    return 1;\n}\n\nstatic VAStatus\nva_put_surface_wayland(\n    VADisplay          va_dpy,\n    VASurfaceID        surface,\n    const VARectangle *src_rect,\n    const VARectangle *dst_rect\n)\n{\n    struct display * const d = g_display;\n    VAStatus va_status;\n    struct wl_buffer *buffer;\n\n    if (!ensure_window(va_dpy, dst_rect->width, dst_rect->height))\n        return VA_STATUS_ERROR_ALLOCATION_FAILED;\n\n    va_status = vaGetSurfaceBufferWl(va_dpy, surface, VA_FRAME_PICTURE, &buffer);\n    if (va_status != VA_STATUS_SUCCESS)\n        return va_status;\n\n    wl_surface_attach(d->surface, buffer, 0, 0);\n    wl_surface_damage(\n        d->surface,\n        dst_rect->x, dst_rect->y, dst_rect->width, dst_rect->height\n    );\n\n    wl_surface_commit(d->surface);\n    wl_display_flush(d->display);\n    return VA_STATUS_SUCCESS;\n}\n\nconst VADisplayHooks va_display_hooks_wayland = {\n    \"wayland\",\n    va_open_display_wayland,\n    va_close_display_wayland,\n    va_put_surface_wayland,\n};\n"
  },
  {
    "path": "common/va_display_win32.cpp",
    "content": "/*\n * Copyright © Microsoft Corporation\n *\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the \"Software\"),\n * to deal in the Software without restriction, including without limitation\n * the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the\n * Software is furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice (including the next\n * paragraph) shall be included in all copies or substantial portions of the\n * Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\n#include <stdio.h>\n#include <stdbool.h>\n#include <va/va_win32.h>\n#include \"va_display.h\"\n#include <directx/dxcore_interface.h>\n\nextern \"C\" const char *g_device_name;\n\nvoid dxcore_resolve_adapter(const char *adapter_string, /*out*/ bool* ptr_device_found, /*out*/ LUID* ptr_adapter_luid)\n{\n    int selected_adapter_index = -1;\n    IDXCoreAdapterFactory *factory = nullptr;\n    IDXCoreAdapterList *adapter_list = nullptr;\n    IDXCoreAdapter *adapter = nullptr;\n    typedef HRESULT(WINAPI * PFN_CREATE_DXCORE_ADAPTER_FACTORY)(REFIID riid, void **ppFactory);\n    PFN_CREATE_DXCORE_ADAPTER_FACTORY DXCoreCreateAdapterFactory;\n    HRESULT hr = S_OK;\n\n    memset(ptr_adapter_luid, 0, sizeof(LUID));\n    *ptr_device_found = false;\n\n    HMODULE dxcore_mod = LoadLibrary(\"DXCore.DLL\");\n    if (!dxcore_mod) {\n        fprintf(stderr, \"Failed to load DXCore.DLL to enumerate adapters.\\n\");\n        goto fail;\n    }\n\n    DXCoreCreateAdapterFactory = (PFN_CREATE_DXCORE_ADAPTER_FACTORY)GetProcAddress(dxcore_mod, \"DXCoreCreateAdapterFactory\");\n    if (!DXCoreCreateAdapterFactory) {\n        fprintf(stderr, \"Failed to load DXCoreCreateAdapterFactory from DXCore.DLL.\\n\");\n        goto fail;\n    }\n\n    hr = DXCoreCreateAdapterFactory(IID_IDXCoreAdapterFactory, (void **)&factory);\n    if (FAILED(hr)) {\n        fprintf(stderr, \"DXCoreCreateAdapterFactory failed: %lx\\n\", hr);\n        goto fail;\n    }\n\n    hr = factory->CreateAdapterList(1, &DXCORE_ADAPTER_ATTRIBUTE_D3D12_GRAPHICS, IID_IDXCoreAdapterList, (void **)&adapter_list);\n    if (FAILED(hr)) {\n        fprintf(stderr, \"CreateAdapterList failed: %lx\\n\", hr);\n        goto fail;\n    }\n\n    if (adapter_string && (sscanf_s(adapter_string, \"%d\", &selected_adapter_index) != 1)) {\n        fprintf(stderr, \"Invalid device index received for -hwaccel_device %s\\n\", adapter_string ? adapter_string : \"\");\n    }\n\n    if (!adapter_string) fprintf(stdout, \"Available devices for --display win32:\\n\");\n    for (int i = 0; i < adapter_list->GetAdapterCount(); i++) {\n        if (SUCCEEDED(adapter_list->GetAdapter(i, IID_IDXCoreAdapter, (void **)&adapter))) {\n            size_t desc_size = 0;\n            if (FAILED(adapter->GetPropertySize(DXCoreAdapterProperty::DriverDescription, &desc_size))) {\n                adapter->Release();\n                continue;\n            }\n\n            char *adapter_name = (char*)malloc(desc_size);\n            if (!adapter_name) {\n                adapter->Release();\n                continue;\n            }\n\n            if (FAILED(adapter->GetProperty(DXCoreAdapterProperty::DriverDescription, desc_size, adapter_name))) {\n                free(adapter_name);\n                adapter->Release();\n                continue;\n            }\n\n            LUID cur_adapter_luid = { 0, 0 };\n            if (FAILED(adapter->GetProperty(DXCoreAdapterProperty::InstanceLuid, &cur_adapter_luid))) {\n                free(adapter_name);\n                adapter->Release();\n                continue;\n            }\n\n            if (selected_adapter_index == i) {\n                *ptr_adapter_luid = cur_adapter_luid;\n                *ptr_device_found = true;\n            }\n\n            if (!adapter_string) fprintf(stdout, \"\\tDevice Index: %d Device LUID: %lu %ld - Device Name: %s\\n\", i, cur_adapter_luid.LowPart, cur_adapter_luid.HighPart, adapter_name);\n            free(adapter_name);\n            adapter->Release();\n        }\n    }\n\nfail:\n    if (adapter_list)\n        adapter_list->Release();\n    if (factory)\n        factory->Release();\n    if (dxcore_mod)\n        FreeLibrary(dxcore_mod);\n}\n\nstatic VADisplay\nva_open_display_win32(void)\n{\n    LUID adapter_luid = {0, 0};\n    bool device_found = false;\n    if (g_device_name) {\n        bool print_devices = (0 == strcmp(g_device_name, \"help\"));\n        dxcore_resolve_adapter(print_devices ? NULL : g_device_name, &device_found, &adapter_luid);\n        if (print_devices) {\n            exit(0);\n        } else if (g_device_name && !device_found) {\n            fprintf(stderr, \"Could not find device %s for --display win32. Please try --device help for a list of available devices.\\n\", g_device_name);\n            exit(0);\n        }\n    }\n\n    // Adapter automatic selection supported by sending NULL adapter to vaGetDisplayWin32\n    return vaGetDisplayWin32(device_found ? &adapter_luid : NULL);\n}\n\nstatic void\nva_close_display_win32(VADisplay va_dpy)\n{\n}\n\nstatic VAStatus\nva_put_surface_win32(\n    VADisplay          va_dpy,\n    VASurfaceID        surface,\n    const VARectangle *src_rect,\n    const VARectangle *dst_rect\n)\n{\n    return VA_STATUS_ERROR_OPERATION_FAILED;\n}\n\n#ifdef __cplusplus\nextern \"C\" {\n#endif\n\nextern const VADisplayHooks va_display_hooks_win32 = {\n    \"win32\",\n    va_open_display_win32,\n    va_close_display_win32,\n    va_put_surface_win32,\n};\n\n#ifdef __cplusplus\n}\n#endif\n"
  },
  {
    "path": "common/va_display_x11.c",
    "content": "/*\n * Copyright (c) 2012 Intel Corporation. All Rights Reserved.\n *\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the\n * \"Software\"), to deal in the Software without restriction, including\n * without limitation the rights to use, copy, modify, merge, publish,\n * distribute, sub license, and/or sell copies of the Software, and to\n * permit persons to whom the Software is furnished to do so, subject to\n * the following conditions:\n *\n * The above copyright notice and this permission notice (including the\n * next paragraph) shall be included in all copies or substantial portions\n * of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR\n * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n#include <stdio.h>\n#include <stdbool.h>\n#include <va/va_x11.h>\n#include \"va_display.h\"\n\nstatic Display *x11_display;\nstatic Window   x11_window;\n\nstatic VADisplay\nva_open_display_x11(void)\n{\n    x11_display = XOpenDisplay(NULL);\n    if (!x11_display) {\n        fprintf(stderr, \"error: can't connect to X server!\\n\");\n        return NULL;\n    }\n    return vaGetDisplay(x11_display);\n}\n\nstatic void\nva_close_display_x11(VADisplay va_dpy)\n{\n    if (!x11_display)\n        return;\n\n    if (x11_window) {\n        XUnmapWindow(x11_display, x11_window);\n        XDestroyWindow(x11_display, x11_window);\n        x11_window = None;\n    }\n    XCloseDisplay(x11_display);\n    x11_display = NULL;\n}\n\nstatic int\nensure_window(unsigned int width, unsigned int height)\n{\n    Window win, rootwin;\n    unsigned int black_pixel, white_pixel;\n    int screen;\n\n    if (!x11_display)\n        return 0;\n\n    if (x11_window) {\n        XResizeWindow(x11_display, x11_window, width, height);\n        return 1;\n    }\n\n    screen      = DefaultScreen(x11_display);\n    rootwin     = RootWindow(x11_display, screen);\n    black_pixel = BlackPixel(x11_display, screen);\n    white_pixel = WhitePixel(x11_display, screen);\n\n    win = XCreateSimpleWindow(\n              x11_display,\n              rootwin,\n              0, 0, width, height,\n              1, black_pixel, white_pixel\n          );\n    if (!win)\n        return 0;\n    x11_window = win;\n\n    XMapWindow(x11_display, x11_window);\n    XSync(x11_display, False);\n    return 1;\n}\n\nstatic inline bool\nvalidate_rect(const VARectangle *rect)\n{\n    return (rect            &&\n            rect->x >= 0    &&\n            rect->y >= 0    &&\n            rect->width > 0 &&\n            rect->height > 0);\n}\n\nstatic VAStatus\nva_put_surface_x11(\n    VADisplay          va_dpy,\n    VASurfaceID        surface,\n    const VARectangle *src_rect,\n    const VARectangle *dst_rect\n)\n{\n    unsigned int win_width, win_height;\n\n    if (!va_dpy)\n        return VA_STATUS_ERROR_INVALID_DISPLAY;\n    if (surface == VA_INVALID_SURFACE)\n        return VA_STATUS_ERROR_INVALID_SURFACE;\n    if (!validate_rect(src_rect) || !validate_rect(dst_rect))\n        return VA_STATUS_ERROR_INVALID_PARAMETER;\n\n    win_width  = dst_rect->x + dst_rect->width;\n    win_height = dst_rect->y + dst_rect->height;\n    if (!ensure_window(win_width, win_height))\n        return VA_STATUS_ERROR_ALLOCATION_FAILED;\n    return vaPutSurface(va_dpy, surface, x11_window,\n                        src_rect->x, src_rect->y,\n                        src_rect->width, src_rect->height,\n                        dst_rect->x, dst_rect->y,\n                        dst_rect->width, dst_rect->height,\n                        NULL, 0,\n                        VA_FRAME_PICTURE);\n}\n\nconst VADisplayHooks va_display_hooks_x11 = {\n    \"x11\",\n    va_open_display_x11,\n    va_close_display_x11,\n    va_put_surface_x11,\n};\n"
  },
  {
    "path": "configure.ac",
    "content": "# Copyright (c) 2007 Intel Corporation. All Rights Reserved.\n#\n# Permission is hereby granted, free of charge, to any person obtaining a\n# copy of this software and associated documentation files (the\n# \"Software\"), to deal in the Software without restriction, including\n# without limitation the rights to use, copy, modify, merge, publish,\n# distribute, sub license, and/or sell copies of the Software, and to\n# permit persons to whom the Software is furnished to do so, subject to\n# the following conditions:\n#\n# The above copyright notice and this permission notice (including the\n# next paragraph) shall be included in all copies or substantial portions\n# of the Software.\n#\n# THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n# IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR\n# ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n# libva-utils package version number\n# package version number follows libva package version number to\n# comply with the same version used for released\n#\n# - major version is libva_major_version\n# - minor version is libva_minor_version\n# - micro version is libva_micro_version\n# - pre version is libva_pre_version, usually development version\nm4_define([libva_utils_major_version], [2])\nm4_define([libva_utils_minor_version], [24])\nm4_define([libva_utils_micro_version], [0])\nm4_define([libva_utils_pre_version],   [1])\n\nm4_define([libva_utils_version],\n          [libva_utils_major_version.libva_utils_minor_version.libva_utils_micro_version])\nm4_if(libva_utils_pre_version, [0], [], [\nm4_append([libva_utils_version], libva_utils_pre_version, [.pre])\n])\n\n# libva minimum version requirement, at this released version\n# libva-utils was created\nm4_define([libva_api_min_version], [1.1.0])\n\n# Wayland minimum version number\nm4_define([wayland_api_version], [1.0.0])\n\nAC_PREREQ(2.57)\nAC_INIT([libva_utils],\n        [libva_utils_version],\n        [https://github.com/intel/libva-utils/issues/new],\n        [libva-utils],\n        [https://github.com/intel/libva-utils])\nAC_CONFIG_SRCDIR([Makefile.am])\nAC_CONFIG_MACRO_DIR([m4])\nAM_INIT_AUTOMAKE([dist-bzip2])\n\nAC_CONFIG_HEADERS([config.h])\nm4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])\n\nTODAY=\"`LC_ALL=C date +'%a, %d %b %Y %X %z'`\"\nAC_SUBST(TODAY)\n\nLIBVA_UTILS_MAJOR_VERSION=libva_utils_major_version\nLIBVA_UTILS_MINOR_VERSION=libva_utils_minor_version\nLIBVA_UTILS_MICRO_VERSION=libva_utils_micro_version\nLIBVA_UTILS_VERSION=libva_utils_version\nAC_SUBST(LIBVA_UTILS_MAJOR_VERSION)\nAC_SUBST(LIBVA_UTILS_MINOR_VERSION)\nAC_SUBST(LIBVA_UTILS_MICRO_VERSION)\nAC_SUBST(LIBVA_UTILS_VERSION)\n\nAC_ARG_ENABLE(drm,\n    [AC_HELP_STRING([--enable-drm],\n                    [build with VA/DRM API support @<:@default=yes@:>@])],\n    [], [enable_drm=\"yes\"])\n\nAC_ARG_ENABLE(x11,\n    [AC_HELP_STRING([--enable-x11],\n                    [build with VA/X11 API support @<:@default=auto@:>@])],\n    [enable_x11=\"$enableval\"],\n    [enable_x11=\"auto\"])\n\nAC_ARG_ENABLE([wayland],\n    [AC_HELP_STRING([--enable-wayland],\n                    [build with VA/Wayland API support @<:@default=auto@:>@])],\n    [enable_wayland=\"$enableval\"],\n    [enable_wayland=\"auto\"])\n\nAC_ARG_ENABLE([tests],\n    [AC_HELP_STRING([--enable-tests],\n                    [build unit tests @<:@default=no@:>@])],\n    [], [enable_tests=\"no\"])\n\n\nLT_INIT\nAC_DISABLE_STATIC\nAC_PROG_CC\nAC_PROG_CXX\nAM_PROG_CC_C_O\nPKG_PROG_PKG_CONFIG\n\nAC_HEADER_STDC\nAC_SYS_LARGEFILE\n\n# Check for __attribute__((visibility()))\nAC_CACHE_CHECK([whether __attribute__((visibility())) is supported],\n    ac_cv_have_gnuc_visibility_attribute,\n    [cat > conftest.c <<EOF\nint foo __attribute__ ((visibility (\"hidden\"))) = 1;\nint bar __attribute__ ((visibility (\"protected\"))) = 1;\nEOF\n    ac_cv_have_gnuc_visibility_attribute=\"no\"\n    if ${CC-cc} -Werror -S conftest.c -o conftest.s >/dev/null 2>&1; then\n        if grep '\\.hidden.*foo' conftest.s >/dev/null; then\n            if grep '\\.protected.*bar' conftest.s >/dev/null; then\n                ac_cv_have_gnuc_visibility_attribute=\"yes\"\n            fi\n        fi\n    fi\n    rm -f conftest.[cs]\n])\nif test \"$ac_cv_have_gnuc_visibility_attribute\" = \"yes\"; then\n    AC_DEFINE([HAVE_GNUC_VISIBILITY_ATTRIBUTE], [1],\n              [Defined to 1 if GCC visibility attribute is supported])\nfi\n\n# Check for -fstack-protector\nssp_cc=yes\nif test \"X$CC-cc\" != \"X\"; then\n    AC_MSG_CHECKING([whether ${CC-cc} accepts -fstack-protector])\n    ssp_old_cflags=\"$CFLAGS\"\n    CFLAGS=\"$CFLAGS -fstack-protector\"\n    AC_LINK_IFELSE([AC_LANG_PROGRAM([[]], [[alloca(100);]])], [], [ssp_cc=no])\n    AC_MSG_RESULT([$ssp_cc])\n    if test \"X$ssp_cc\" = \"Xno\"; then\n        CFLAGS=\"$ssp_old_cflags\"\n    else\n        AC_DEFINE([ENABLE_SSP_CC], 1, [Define if SSP C support is enabled.])\n    fi\nfi\nAM_CONDITIONAL(USE_SSP, test \"$ssp_cc\" = \"yes\")\n\n# Check for libva (for dynamic linking)\nLIBVA_API_MIN_VERSION=libva_api_min_version\nPKG_CHECK_MODULES([LIBVA], [libva >= $LIBVA_API_MIN_VERSION])\nLIBVA_VERSION=`$PKG_CONFIG --variable=libva_version libva`\nAC_SUBST(LIBVA_VERSION)\nLIBVA_API_VERSION=`$PKG_CONFIG --modversion libva`\nVA_MAJOR_VERSION=`echo \"$LIBVA_API_VERSION\" | cut -d'.' -f1`\nVA_MINOR_VERSION=`echo \"$LIBVA_API_VERSION\" | cut -d'.' -f2`\nVA_MICRO_VERSION=`echo \"$LIBVA_API_VERSION\" | cut -d'.' -f3`\n\n# Check for DRM (mandatory)\nPKG_CHECK_MODULES([LIBVA_DRM], [libdrm libva-drm = $LIBVA_API_VERSION])\n\nUSE_DRM=\"no\"\nif test \"$enable_drm\" = \"yes\"; then\n    USE_DRM=\"yes\"\n    AC_DEFINE([HAVE_VA_DRM], [1], [Defined to 1 if VA/DRM API is supported])\nfi\nAM_CONDITIONAL(USE_DRM, test \"$USE_DRM\" = \"yes\")\n\n# Check for X11\nUSE_X11=\"no\"\nif test \"x$enable_x11\" != \"xno\"; then\n    PKG_CHECK_MODULES([X11],    [x11 libva-x11 = $LIBVA_API_VERSION],\n        [USE_X11=\"yes\"], [:])\n\n    if test \"x$USE_X11\" = \"xno\" -a \"x$enable_x11\" = \"xyes\"; then\n       AC_MSG_ERROR([X11 explicitly enabled, but $X11_PKG_ERRORS])\n    fi\n\n    if test \"$USE_X11\" = \"yes\"; then\n       AC_DEFINE([HAVE_VA_X11], [1], [Defined to 1 if VA/X11 API is supported])\n    fi\nfi\nAM_CONDITIONAL(USE_X11, test \"$USE_X11\" = \"yes\")\n\ndnl Check for Wayland\nWAYLAND_API_VERSION=wayland_api_version\nAC_SUBST(WAYLAND_API_VERSION)\n\nUSE_WAYLAND=\"no\"\nif test \"x$enable_wayland\" != \"xno\"; then\n    PKG_CHECK_MODULES([WAYLAND], [wayland-client >= wayland_api_version libva-wayland = $LIBVA_API_VERSION],\n        [USE_WAYLAND=\"yes\"], [:])\n\n    if test \"x$USE_WAYLAND\" = \"xno\" -a \"x$enable_wayland\" = \"xyes\"; then\n        AC_MSG_ERROR([wayland explicitly enabled, but $WAYLAND_PKG_ERRORS])\n    fi\n\n    if test \"$USE_WAYLAND\" = \"yes\"; then\n\n        WAYLAND_PREFIX=`$PKG_CONFIG --variable=prefix wayland-client`\n        AC_PATH_PROG([WAYLAND_SCANNER], [wayland-scanner],,\n                     [${WAYLAND_PREFIX}/bin$PATH_SEPARATOR$PATH])\n\n        AC_DEFINE([HAVE_VA_WAYLAND], [1],\n                  [Defined to 1 if VA/Wayland API is supported])\n    fi\nfi\n\nAM_CONDITIONAL(USE_WAYLAND, test \"$USE_WAYLAND\" = \"yes\")\n\npkgconfigdir=${libdir}/pkgconfig\nAC_SUBST(pkgconfigdir)\n\ndnl Check for builds without backend\nif test \"$USE_DRM:$USE_X11:$USE_WAYLAND\" = \"no:no:no\"; then\n    AC_MSG_ERROR([Please select at least one backend (DRM, X11, Wayland)])\nfi\n\nAM_CONDITIONAL(ENABLE_TESTS, test \"$enable_tests\" = \"yes\")\n\nAC_OUTPUT([\n    Makefile\n    common/Makefile\n    test/Makefile\n    vainfo/Makefile\n    encode/Makefile\n    decode/Makefile\n    putsurface/Makefile\n    videoprocess/Makefile\n    vendor/intel/Makefile\n    vendor/intel/sfcsample/Makefile\n])\n\n\n# Print a small summary\nBACKENDS=\"\"\nAS_IF([test $USE_DRM = yes], [BACKENDS=\"$BACKENDS drm\"])\nAS_IF([test $USE_X11 = yes], [BACKENDS=\"$BACKENDS x11\"])\nAS_IF([test $USE_WAYLAND = yes], [BACKENDS=\"$BACKENDS wayland\"])\n\necho\necho \"libva-utils - ${LIBVA_UTILS_VERSION}\"\necho\necho Libva VA-API version ............. : $LIBVA_API_VERSION\necho Installation prefix .............. : $prefix\necho Extra window systems ............. : $BACKENDS\necho Enable Unit-tests .................... : $enable_tests\necho\n"
  },
  {
    "path": "decode/Makefile.am",
    "content": "# Copyright (c) 2007 Intel Corporation. All Rights Reserved.\n#\n# Permission is hereby granted, free of charge, to any person obtaining a\n# copy of this software and associated documentation files (the\n# \"Software\"), to deal in the Software without restriction, including\n# without limitation the rights to use, copy, modify, merge, publish,\n# distribute, sub license, and/or sell copies of the Software, and to\n# permit persons to whom the Software is furnished to do so, subject to\n# the following conditions:\n# \n# The above copyright notice and this permission notice (including the\n# next paragraph) shall be included in all copies or substantial portions\n# of the Software.\n# \n# THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n# IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR\n# ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\nbin_PROGRAMS = mpeg2vldemo loadjpeg\n\nAM_CPPFLAGS = \\\n\t-Wall\t\t\t\t\t\\\n\t$(LIBVA_CFLAGS)\t\t\t\t\\\n\t-I$(top_srcdir)/common\t\t\t\\\n\t$(NULL)\n\nif USE_SSP\nAM_CPPFLAGS += -fstack-protector\nendif\n\nTEST_LIBS = \\\n\t$(LIBVA_LIBS)\t\t\t\t\\\n\t$(top_builddir)/common/libva-display.la\t\\\n\t$(NULL)\n\nmpeg2vldemo_LDADD\t= $(TEST_LIBS)\nmpeg2vldemo_SOURCES\t= mpeg2vldemo.cpp\n\nloadjpeg_LDADD\t\t= $(TEST_LIBS)\nloadjpeg_SOURCES\t= loadjpeg.c tinyjpeg.c\n\nvalgrind:\t$(bin_PROGRAMS)\n\tfor a in $(bin_PROGRAMS); do \\\n\t\tvalgrind --leak-check=full --show-reachable=yes .libs/$$a; \\\n\tdone\n\nEXTRA_DIST = \\\n\ttinyjpeg.h\t\t\\\n\ttinyjpeg-internal.h\t\\\n\t$(NULL)\n"
  },
  {
    "path": "decode/loadjpeg.c",
    "content": "/*\n * Small jpeg decoder library - testing application\n *\n * Copyright (c) 2006, Luc Saillard <luc@saillard.org>\n * Copyright (c) 2012 Intel Corporation.\n * All rights reserved.\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions are met:\n *\n * - Redistributions of source code must retain the above copyright notice,\n *  this list of conditions and the following disclaimer.\n *\n * - Redistributions in binary form must reproduce the above copyright notice,\n *  this list of conditions and the following disclaimer in the documentation\n *  and/or other materials provided with the distribution.\n *\n * - Neither the name of the author nor the names of its contributors may be\n *  used to endorse or promote products derived from this software without\n *  specific prior written permission.\n *\n * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE\n * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n * POSSIBILITY OF SUCH DAMAGE.\n *\n */\n\n#include \"tinyjpeg.h\"\n#include <stdio.h>\n#include <stdlib.h>\n#include <string.h>\n#include <time.h>\n#include \"va_display.h\"\n\nstatic void exitmessage(const char *message) __attribute__((noreturn));\nstatic void exitmessage(const char *message)\n{\n    printf(\"%s\\n\", message);\n    exit(0);\n}\n\nstatic int filesize(FILE *fp)\n{\n    long pos;\n    fseek(fp, 0, SEEK_END);\n    pos = ftell(fp);\n    fseek(fp, 0, SEEK_SET);\n    return pos;\n}\n\n/**\n * Load one jpeg image, and decompress it, and save the result.\n */\nint convert_one_image(const char *infilename)\n{\n    FILE *fp;\n    unsigned int length_of_file;\n    unsigned int width, height;\n    unsigned char *buf;\n    struct jdec_private *jdec;\n    size_t n_items;\n\n    /* Load the Jpeg into memory */\n    fp = fopen(infilename, \"rb\");\n    if (fp == NULL)\n        exitmessage(\"Cannot open filename\\n\");\n    length_of_file = filesize(fp);\n    if (length_of_file == -1)\n        exitmessage(\"Error to read file\\n\");\n    buf = (unsigned char *)malloc(length_of_file + 4);\n    if (buf == NULL)\n        exitmessage(\"Not enough memory for loading file\\n\");\n    n_items = fread(buf, length_of_file, 1, fp);\n    fclose(fp);\n    if (n_items != 1) {\n        free(buf);\n        exitmessage(\"Reading file fail\\n\");\n    }\n\n    /* Decompress it */\n    jdec = tinyjpeg_init();\n    if (jdec == NULL)\n        exitmessage(\"Not enough memory to alloc the structure need for decompressing\\n\");\n\n    if (tinyjpeg_parse_header(jdec, buf, length_of_file) < 0)\n        exitmessage(tinyjpeg_get_errorstring(jdec));\n\n    /* Get the size of the image */\n    tinyjpeg_get_size(jdec, &width, &height);\n\n    printf(\"Decoding JPEG image %dx%d...\\n\", width, height);\n    if (tinyjpeg_decode(jdec) < 0)\n        exitmessage(tinyjpeg_get_errorstring(jdec));\n\n    tinyjpeg_free(jdec);\n\n    free(buf);\n    return 0;\n}\n\nstatic void usage(void)\n{\n    fprintf(stderr, \"Usage: loadjpeg <input_filename.jpeg> \\n\");\n    exit(1);\n}\n\n/**\n * main\n *\n */\nint main(int argc, char *argv[])\n{\n    char *input_filename;\n    clock_t start_time, finish_time;\n    unsigned int duration;\n    int current_argument;\n\n    va_init_display_args(&argc, argv);\n\n    if (argc < 2)\n        usage();\n\n    current_argument = 1;\n    input_filename = argv[current_argument];\n\n    start_time = clock();\n    convert_one_image(input_filename);\n    finish_time = clock();\n    duration = finish_time - start_time;\n    printf(\"Decoding finished in %u ticks\\n\", duration);\n\n    return 0;\n}\n"
  },
  {
    "path": "decode/meson.build",
    "content": "executable('mpeg2vldemo', [ 'mpeg2vldemo.cpp' ],\n           dependencies: libva_display_dep,\n           install: true)\nexecutable('loadjpeg', [ 'loadjpeg.c', 'tinyjpeg.c' ],\n           dependencies: libva_display_dep,\n           install: true)\n"
  },
  {
    "path": "decode/mpeg2vldemo.cpp",
    "content": "/*\n * Copyright (c) 2007-2008 Intel Corporation. All Rights Reserved.\n *\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the\n * \"Software\"), to deal in the Software without restriction, including\n * without limitation the rights to use, copy, modify, merge, publish,\n * distribute, sub license, and/or sell copies of the Software, and to\n * permit persons to whom the Software is furnished to do so, subject to\n * the following conditions:\n *\n * The above copyright notice and this permission notice (including the\n * next paragraph) shall be included in all copies or substantial portions\n * of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR\n * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n/*\n * it is a real program to show how VAAPI decode work,\n * It does VLD decode for a simple MPEG2 clip \"mpeg2-I.m2v\"\n * \"mpeg2-I.m2v\" and VA parameters are hardcoded into mpeg2vldemo.c,\n * See mpeg2-I.jif to know how those VA parameters come from\n *\n * gcc -o  mpeg2vldemo  mpeg2vldemo.c -lva -lva-x11 -I/usr/include/va\n * ./mpeg2vldemo  : only do decode\n * ./mpeg2vldemo <any parameter >: decode+display\n *\n */\n#include <stdio.h>\n#include <string.h>\n#include <stdlib.h>\n#include <getopt.h>\n#include <unistd.h>\n#include <sys/types.h>\n#include <sys/stat.h>\n#include <fcntl.h>\n#include <assert.h>\n#include <va/va.h>\n#include \"va_display.h\"\n\n#define CHECK_VASTATUS(va_status,func)                                  \\\nif (va_status != VA_STATUS_SUCCESS) {                                   \\\n    fprintf(stderr,\"%s:%s (%d) failed,exit\\n\", __func__, func, __LINE__); \\\n    exit(1);                                                            \\\n}\n\n/* Data dump of a 16x16 MPEG2 video clip,it has one I frame\n */\nstatic unsigned char mpeg2_clip[] = {\n    0x00, 0x00, 0x01, 0xb3, 0x01, 0x00, 0x10, 0x13, 0xff, 0xff, 0xe0, 0x18, 0x00, 0x00, 0x01, 0xb5,\n    0x14, 0x8a, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0xb8, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00,\n    0x01, 0x00, 0x00, 0x0f, 0xff, 0xf8, 0x00, 0x00, 0x01, 0xb5, 0x8f, 0xff, 0xf3, 0x41, 0x80, 0x00,\n    0x00, 0x01, 0x01, 0x13, 0xe1, 0x00, 0x15, 0x81, 0x54, 0xe0, 0x2a, 0x05, 0x43, 0x00, 0x2d, 0x60,\n    0x18, 0x01, 0x4e, 0x82, 0xb9, 0x58, 0xb1, 0x83, 0x49, 0xa4, 0xa0, 0x2e, 0x05, 0x80, 0x4b, 0x7a,\n    0x00, 0x01, 0x38, 0x20, 0x80, 0xe8, 0x05, 0xff, 0x60, 0x18, 0xe0, 0x1d, 0x80, 0x98, 0x01, 0xf8,\n    0x06, 0x00, 0x54, 0x02, 0xc0, 0x18, 0x14, 0x03, 0xb2, 0x92, 0x80, 0xc0, 0x18, 0x94, 0x42, 0x2c,\n    0xb2, 0x11, 0x64, 0xa0, 0x12, 0x5e, 0x78, 0x03, 0x3c, 0x01, 0x80, 0x0e, 0x80, 0x18, 0x80, 0x6b,\n    0xca, 0x4e, 0x01, 0x0f, 0xe4, 0x32, 0xc9, 0xbf, 0x01, 0x42, 0x69, 0x43, 0x50, 0x4b, 0x01, 0xc9,\n    0x45, 0x80, 0x50, 0x01, 0x38, 0x65, 0xe8, 0x01, 0x03, 0xf3, 0xc0, 0x76, 0x00, 0xe0, 0x03, 0x20,\n    0x28, 0x18, 0x01, 0xa9, 0x34, 0x04, 0xc5, 0xe0, 0x0b, 0x0b, 0x04, 0x20, 0x06, 0xc0, 0x89, 0xff,\n    0x60, 0x12, 0x12, 0x8a, 0x2c, 0x34, 0x11, 0xff, 0xf6, 0xe2, 0x40, 0xc0, 0x30, 0x1b, 0x7a, 0x01,\n    0xa9, 0x0d, 0x00, 0xac, 0x64\n};\n\n/* hardcoded here without a bitstream parser helper\n * please see picture mpeg2-I.jpg for bitstream details\n */\nstatic VAPictureParameterBufferMPEG2 pic_param = {\n    .horizontal_size = 16,\n    .vertical_size = 16,\n    .forward_reference_picture = 0xffffffff,\n    .backward_reference_picture = 0xffffffff,\n    .picture_coding_type = 1,\n    .f_code = 0xffff,\n    .picture_coding_extension = {\n        .bits = {\n            .intra_dc_precision = 0,\n            .picture_structure = 3,\n            .top_field_first = 0,\n            .frame_pred_frame_dct = 1,\n            .concealment_motion_vectors = 0,\n            .q_scale_type = 0,\n            .intra_vlc_format = 0,\n            .alternate_scan = 0,\n            .repeat_first_field = 0,\n            .progressive_frame = 1,\n            .is_first_field = 1\n        },\n    }\n};\n\n/* see MPEG2 spec65 for the defines of matrix */\nstatic VAIQMatrixBufferMPEG2 iq_matrix = {\n    .load_intra_quantiser_matrix = 1,\n    .load_non_intra_quantiser_matrix = 1,\n    .load_chroma_intra_quantiser_matrix = 0,\n    .load_chroma_non_intra_quantiser_matrix = 0,\n    .intra_quantiser_matrix = {\n        8, 16, 16, 19, 16, 19, 22, 22,\n        22, 22, 22, 22, 26, 24, 26, 27,\n        27, 27, 26, 26, 26, 26, 27, 27,\n        27, 29, 29, 29, 34, 34, 34, 29,\n        29, 29, 27, 27, 29, 29, 32, 32,\n        34, 34, 37, 38, 37, 35, 35, 34,\n        35, 38, 38, 40, 40, 40, 48, 48,\n        46, 46, 56, 56, 58, 69, 69, 83\n    },\n    .non_intra_quantiser_matrix = {16},\n    .chroma_intra_quantiser_matrix = {0},\n    .chroma_non_intra_quantiser_matrix = {0}\n};\n\n#if 1\nstatic VASliceParameterBufferMPEG2 slice_param = {\n    .slice_data_size = 150,\n    .slice_data_offset = 0,\n    .slice_data_flag = 0,\n    .macroblock_offset = 38, /* 4byte + 6bits=38bits */\n    .slice_horizontal_position = 0,\n    .slice_vertical_position = 0,\n    .quantiser_scale_code = 2,\n    .intra_slice_flag = 0\n};\n#endif\n\n#define CLIP_WIDTH  16\n#define CLIP_HEIGHT 16\n\n#define WIN_WIDTH  (CLIP_WIDTH<<1)\n#define WIN_HEIGHT (CLIP_HEIGHT<<1)\n\nint main(int argc, char **argv)\n{\n    VAEntrypoint entrypoints[5];\n    int num_entrypoints, vld_entrypoint;\n    VAConfigAttrib attrib;\n    VAConfigID config_id;\n    VASurfaceID surface_id;\n    VAContextID context_id;\n    VABufferID pic_param_buf, iqmatrix_buf, slice_param_buf, slice_data_buf;\n    int major_ver, minor_ver;\n    VADisplay   va_dpy;\n    VAStatus va_status;\n    int putsurface = 0;\n\n    va_init_display_args(&argc, argv);\n\n    if (argc > 1)\n        putsurface = 1;\n\n    va_dpy = va_open_display();\n    va_status = vaInitialize(va_dpy, &major_ver, &minor_ver);\n    assert(va_status == VA_STATUS_SUCCESS);\n\n    va_status = vaQueryConfigEntrypoints(va_dpy, VAProfileMPEG2Main, entrypoints,\n                                         &num_entrypoints);\n    CHECK_VASTATUS(va_status, \"vaQueryConfigEntrypoints\");\n\n    for (vld_entrypoint = 0; vld_entrypoint < num_entrypoints; vld_entrypoint++) {\n        if (entrypoints[vld_entrypoint] == VAEntrypointVLD)\n            break;\n    }\n    if (vld_entrypoint == num_entrypoints) {\n        /* not find VLD entry point */\n        assert(0);\n    }\n\n    /* Assuming finding VLD, find out the format for the render target */\n    attrib.type = VAConfigAttribRTFormat;\n    vaGetConfigAttributes(va_dpy, VAProfileMPEG2Main, VAEntrypointVLD,\n                          &attrib, 1);\n    if ((attrib.value & VA_RT_FORMAT_YUV420) == 0) {\n        /* not find desired YUV420 RT format */\n        assert(0);\n    }\n\n    va_status = vaCreateConfig(va_dpy, VAProfileMPEG2Main, VAEntrypointVLD,\n                               &attrib, 1, &config_id);\n    CHECK_VASTATUS(va_status, \"vaQueryConfigEntrypoints\");\n\n    va_status = vaCreateSurfaces(\n                    va_dpy,\n                    VA_RT_FORMAT_YUV420, CLIP_WIDTH, CLIP_HEIGHT,\n                    &surface_id, 1,\n                    NULL, 0\n                );\n    CHECK_VASTATUS(va_status, \"vaCreateSurfaces\");\n\n    /* Create a context for this decode pipe */\n    va_status = vaCreateContext(va_dpy, config_id,\n                                CLIP_WIDTH,\n                                ((CLIP_HEIGHT + 15) / 16) * 16,\n                                VA_PROGRESSIVE,\n                                &surface_id,\n                                1,\n                                &context_id);\n    CHECK_VASTATUS(va_status, \"vaCreateContext\");\n\n    va_status = vaCreateBuffer(va_dpy, context_id,\n                               VAPictureParameterBufferType,\n                               sizeof(VAPictureParameterBufferMPEG2),\n                               1, &pic_param,\n                               &pic_param_buf);\n    CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n    va_status = vaCreateBuffer(va_dpy, context_id,\n                               VAIQMatrixBufferType,\n                               sizeof(VAIQMatrixBufferMPEG2),\n                               1, &iq_matrix,\n                               &iqmatrix_buf);\n    CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n    va_status = vaCreateBuffer(va_dpy, context_id,\n                               VASliceParameterBufferType,\n                               sizeof(VASliceParameterBufferMPEG2),\n                               1,\n                               &slice_param, &slice_param_buf);\n    CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n    va_status = vaCreateBuffer(va_dpy, context_id,\n                               VASliceDataBufferType,\n                               0xc4 - 0x2f + 1,\n                               1,\n                               mpeg2_clip + 0x2f,\n                               &slice_data_buf);\n    CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n    va_status = vaBeginPicture(va_dpy, context_id, surface_id);\n    CHECK_VASTATUS(va_status, \"vaBeginPicture\");\n\n    va_status = vaRenderPicture(va_dpy, context_id, &pic_param_buf, 1);\n    CHECK_VASTATUS(va_status, \"vaRenderPicture\");\n\n    va_status = vaRenderPicture(va_dpy, context_id, &iqmatrix_buf, 1);\n    CHECK_VASTATUS(va_status, \"vaRenderPicture\");\n\n    va_status = vaRenderPicture(va_dpy, context_id, &slice_param_buf, 1);\n    CHECK_VASTATUS(va_status, \"vaRenderPicture\");\n\n    va_status = vaRenderPicture(va_dpy, context_id, &slice_data_buf, 1);\n    CHECK_VASTATUS(va_status, \"vaRenderPicture\");\n\n    va_status = vaEndPicture(va_dpy, context_id);\n    CHECK_VASTATUS(va_status, \"vaEndPicture\");\n\n    va_status = vaSyncSurface(va_dpy, surface_id);\n    CHECK_VASTATUS(va_status, \"vaSyncSurface\");\n\n    if (putsurface) {\n        VARectangle src_rect, dst_rect;\n\n        src_rect.x      = 0;\n        src_rect.y      = 0;\n        src_rect.width  = CLIP_WIDTH;\n        src_rect.height = CLIP_HEIGHT;\n\n        dst_rect.x      = 0;\n        dst_rect.y      = 0;\n        dst_rect.width  = WIN_WIDTH;\n        dst_rect.height = WIN_HEIGHT;\n\n        va_status = va_put_surface(va_dpy, surface_id, &src_rect, &dst_rect);\n        CHECK_VASTATUS(va_status, \"vaPutSurface\");\n    }\n    printf(\"press any key to exit\\n\");\n    getchar();\n\n    vaDestroySurfaces(va_dpy, &surface_id, 1);\n    vaDestroyConfig(va_dpy, config_id);\n    vaDestroyContext(va_dpy, context_id);\n\n    vaTerminate(va_dpy);\n    va_close_display(va_dpy);\n    return 0;\n}\n"
  },
  {
    "path": "decode/tinyjpeg-internal.h",
    "content": "/*\n * Small jpeg decoder library (Internal header)\n *\n * Copyright (c) 2006, Luc Saillard <luc@saillard.org>\n * Copyright (c) 2012 Intel Corporation.\n * All rights reserved.\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions are met:\n *\n * - Redistributions of source code must retain the above copyright notice,\n *  this list of conditions and the following disclaimer.\n *\n * - Redistributions in binary form must reproduce the above copyright notice,\n *  this list of conditions and the following disclaimer in the documentation\n *  and/or other materials provided with the distribution.\n *\n * - Neither the name of the author nor the names of its contributors may be\n *  used to endorse or promote products derived from this software without\n *  specific prior written permission.\n *\n * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE\n * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n * POSSIBILITY OF SUCH DAMAGE.\n *\n */\n\n\n#ifndef __TINYJPEG_INTERNAL_H_\n#define __TINYJPEG_INTERNAL_H_\n\n#include <setjmp.h>\n\n#define SANITY_CHECK 1\n\nstruct jdec_private;\n\n#define HUFFMAN_BITS_SIZE  256\n\n#define HUFFMAN_TABLES     4\n#define COMPONENTS     4\n#define JPEG_MAX_WIDTH     2048\n#define JPEG_MAX_HEIGHT    2048\n#define JPEG_SCAN_MAX      4\n\nenum std_markers {\n    DQT  = 0xDB, /* Define Quantization Table */\n    SOF  = 0xC0, /* Start of Frame (size information) */\n    DHT  = 0xC4, /* Huffman Table */\n    SOI  = 0xD8, /* Start of Image */\n    SOS  = 0xDA, /* Start of Scan */\n    RST  = 0xD0, /* Reset Marker d0 -> .. */\n    RST7 = 0xD7, /* Reset Marker .. -> d7 */\n    EOI  = 0xD9, /* End of Image */\n    DRI  = 0xDD, /* Define Restart Interval */\n    APP0 = 0xE0,\n};\n\n\nstruct huffman_table {\n    /*bits and values*/\n    unsigned char bits[16];\n    unsigned char values[256];\n};\n\nstruct component {\n    unsigned int Hfactor;\n    unsigned int Vfactor;\n    unsigned char quant_table_index;\n    unsigned int cid;\n};\n\n\ntypedef void (*decode_MCU_fct)(struct jdec_private *priv);\ntypedef void (*convert_colorspace_fct)(struct jdec_private *priv);\n\nstruct jpeg_sos {\n    unsigned int nr_components;\n    struct {\n        unsigned int component_id;\n        unsigned int dc_selector;\n        unsigned int ac_selector;\n    } components[COMPONENTS];\n};\n\nstruct jdec_private {\n    /* Public variables */\n    unsigned int width[JPEG_SCAN_MAX], height[JPEG_SCAN_MAX]; /* Size of the image */\n\n    /* Private variables */\n    const unsigned char *stream_begin, *stream_end, *stream_scan;\n    unsigned int stream_length;\n\n    const unsigned char *stream;  /* Pointer to the current stream */\n\n    struct component component_infos[COMPONENTS];\n    unsigned int nf_components;\n    unsigned char Q_tables[COMPONENTS][64];       /* quantization tables, zigzag*/\n    unsigned char Q_tables_valid[COMPONENTS];\n    struct huffman_table HTDC[HUFFMAN_TABLES];    /* DC huffman tables   */\n    unsigned char HTDC_valid[HUFFMAN_TABLES];\n    struct huffman_table HTAC[HUFFMAN_TABLES];    /* AC huffman tables   */\n    unsigned char HTAC_valid[HUFFMAN_TABLES];\n    struct jpeg_sos cur_sos;  /* current sos values*/\n    int default_huffman_table_initialized;\n    int restart_interval;\n};\n\n#endif\n\n"
  },
  {
    "path": "decode/tinyjpeg.c",
    "content": "/*\n * Small jpeg decoder library\n *\n * Copyright (c) 2006, Luc Saillard <luc@saillard.org>\n * Copyright (c) 2012 Intel Corporation.\n * All rights reserved.\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions are met:\n *\n * - Redistributions of source code must retain the above copyright notice,\n *  this list of conditions and the following disclaimer.\n *\n * - Redistributions in binary form must reproduce the above copyright notice,\n *  this list of conditions and the following disclaimer in the documentation\n *  and/or other materials provided with the distribution.\n *\n * - Neither the name of the author nor the names of its contributors may be\n *  used to endorse or promote products derived from this software without\n *  specific prior written permission.\n *\n * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE\n * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n * POSSIBILITY OF SUCH DAMAGE.\n *\n */\n\n#include <stdio.h>\n#include <stdlib.h>\n#include <string.h>\n#include <stdint.h>\n#include <errno.h>\n\n#include \"tinyjpeg.h\"\n#include \"tinyjpeg-internal.h\"\n\n// for libva\n#include <unistd.h>\n#include <sys/types.h>\n#include <sys/stat.h>\n#include <fcntl.h>\n#include <assert.h>\n#include <va/va.h>\n#include \"va_display.h\"\n\n\n#define cY  0\n#define cCb 1\n#define cCr 2\n\n#define BLACK_Y 0\n#define BLACK_U 127\n#define BLACK_V 127\n\n#ifndef MIN\n#define MIN(a, b) ((a) < (b) ? (a) : (b))\n#endif\n#ifndef MAX\n#define MAX(a, b) ((a) > (b) ? (a) : (b))\n#endif\n#define ARRAY_ELEMS(a) (sizeof(a) / sizeof((a)[0]))\n\n#if DEBUG\n#define trace(fmt, args...) do { \\\n   fprintf(stderr, fmt, ## args); \\\n   fflush(stderr); \\\n} while(0)\n#else\n#define trace(fmt, args...) do { } while (0)\n#endif\n#define error(fmt, args...) do { \\\n   snprintf(error_string, sizeof(error_string), fmt, ## args); \\\n   return -1; \\\n} while(0)\n/* The variables for different image scans */\nstatic int scan_num = 0;\nstatic int next_image_found = 0;\n/* Global variable to return the last error found while deconding */\nstatic char error_string[256];\nstatic VAHuffmanTableBufferJPEGBaseline default_huffman_table_param = {\n    .huffman_table =\n    {\n        // lumiance component\n        {\n            .num_dc_codes = {0, 1, 5, 1, 1, 1, 1, 1, 1, 0, 0, 0}, // 12 bits is ok for baseline profile\n            .dc_values = {0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b},\n            .num_ac_codes = {0, 2, 1, 3, 3, 2, 4, 3, 5, 5, 4, 4, 0, 0, 1, 125},\n            .ac_values = {\n                0x01, 0x02, 0x03, 0x00, 0x04, 0x11, 0x05, 0x12,\n                0x21, 0x31, 0x41, 0x06, 0x13, 0x51, 0x61, 0x07,\n                0x22, 0x71, 0x14, 0x32, 0x81, 0x91, 0xa1, 0x08,\n                0x23, 0x42, 0xb1, 0xc1, 0x15, 0x52, 0xd1, 0xf0,\n                0x24, 0x33, 0x62, 0x72, 0x82, 0x09, 0x0a, 0x16,\n                0x17, 0x18, 0x19, 0x1a, 0x25, 0x26, 0x27, 0x28,\n                0x29, 0x2a, 0x34, 0x35, 0x36, 0x37, 0x38, 0x39,\n                0x3a, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49,\n                0x4a, 0x53, 0x54, 0x55, 0x56, 0x57, 0x58, 0x59,\n                0x5a, 0x63, 0x64, 0x65, 0x66, 0x67, 0x68, 0x69,\n                0x6a, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79,\n                0x7a, 0x83, 0x84, 0x85, 0x86, 0x87, 0x88, 0x89,\n                0x8a, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97, 0x98,\n                0x99, 0x9a, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7,\n                0xa8, 0xa9, 0xaa, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6,\n                0xb7, 0xb8, 0xb9, 0xba, 0xc2, 0xc3, 0xc4, 0xc5,\n                0xc6, 0xc7, 0xc8, 0xc9, 0xca, 0xd2, 0xd3, 0xd4,\n                0xd5, 0xd6, 0xd7, 0xd8, 0xd9, 0xda, 0xe1, 0xe2,\n                0xe3, 0xe4, 0xe5, 0xe6, 0xe7, 0xe8, 0xe9, 0xea,\n                0xf1, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7, 0xf8,\n                0xf9, 0xfa\n            },/*,0xonly,0xthe,0xfirst,0x162,0xbytes,0xare,0xavailable,0x*/\n        },\n        // chrom component\n        {\n            .num_dc_codes = {0, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0}, // 12 bits is ok for baseline profile\n            .dc_values = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0xa, 0xb},\n            .num_ac_codes = {0, 2, 1, 2, 4, 4, 3, 4, 7, 5, 4, 4, 0, 1, 2, 119},\n            .ac_values = {\n                0x00, 0x01, 0x02, 0x03, 0x11, 0x04, 0x05, 0x21,\n                0x31, 0x06, 0x12, 0x41, 0x51, 0x07, 0x61, 0x71,\n                0x13, 0x22, 0x32, 0x81, 0x08, 0x14, 0x42, 0x91,\n                0xa1, 0xb1, 0xc1, 0x09, 0x23, 0x33, 0x52, 0xf0,\n                0x15, 0x62, 0x72, 0xd1, 0x0a, 0x16, 0x24, 0x34,\n                0xe1, 0x25, 0xf1, 0x17, 0x18, 0x19, 0x1a, 0x26,\n                0x27, 0x28, 0x29, 0x2a, 0x35, 0x36, 0x37, 0x38,\n                0x39, 0x3a, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48,\n                0x49, 0x4a, 0x53, 0x54, 0x55, 0x56, 0x57, 0x58,\n                0x59, 0x5a, 0x63, 0x64, 0x65, 0x66, 0x67, 0x68,\n                0x69, 0x6a, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78,\n                0x79, 0x7a, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87,\n                0x88, 0x89, 0x8a, 0x92, 0x93, 0x94, 0x95, 0x96,\n                0x97, 0x98, 0x99, 0x9a, 0xa2, 0xa3, 0xa4, 0xa5,\n                0xa6, 0xa7, 0xa8, 0xa9, 0xaa, 0xb2, 0xb3, 0xb4,\n                0xb5, 0xb6, 0xb7, 0xb8, 0xb9, 0xba, 0xc2, 0xc3,\n                0xc4, 0xc5, 0xc6, 0xc7, 0xc8, 0xc9, 0xca, 0xd2,\n                0xd3, 0xd4, 0xd5, 0xd6, 0xd7, 0xd8, 0xd9, 0xda,\n                0xe2, 0xe3, 0xe4, 0xe5, 0xe6, 0xe7, 0xe8, 0xe9,\n                0xea, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7, 0xf8,\n                0xf9, 0xfa\n            },/*,0xonly,0xthe,0xfirst,0x162,0xbytes,0xare,0xavailable,0x*/\n        },\n    }\n};\n\n#define be16_to_cpu(x) (((x)[0]<<8)|(x)[1])\n\n\nstatic int build_default_huffman_tables(struct jdec_private *priv)\n{\n    int i = 0;\n    if (priv->default_huffman_table_initialized)\n        return 0;\n\n    for (i = 0; i < 4; i++) {\n        priv->HTDC_valid[i] = 1;\n        memcpy(priv->HTDC[i].bits, default_huffman_table_param.huffman_table[i % 2].num_dc_codes,\n               sizeof(default_huffman_table_param.huffman_table[i % 2].num_dc_codes));\n        memcpy(priv->HTDC[i].values, default_huffman_table_param.huffman_table[i % 2].dc_values,\n               sizeof(default_huffman_table_param.huffman_table[i % 2].dc_values));\n        priv->HTAC_valid[i] = 1;\n        memcpy(priv->HTAC[i].bits, default_huffman_table_param.huffman_table[i % 2].num_ac_codes,\n               sizeof(default_huffman_table_param.huffman_table[i % 2].num_ac_codes));\n        memcpy(priv->HTAC[i].values, default_huffman_table_param.huffman_table[i % 2].ac_values,\n               sizeof(default_huffman_table_param.huffman_table[i % 2].ac_values));\n    }\n    priv->default_huffman_table_initialized = 1;\n    return 0;\n}\n\n\nstatic void print_SOF(const unsigned char *stream)\n{\n#if DEBUG\n    int width, height, nr_components, precision;\n    const char *nr_components_to_string[] = {\n        \"????\",\n        \"Grayscale\",\n        \"????\",\n        \"YCbCr\",\n        \"CYMK\"\n    };\n\n    precision = stream[2];\n    height = be16_to_cpu(stream + 3);\n    width  = be16_to_cpu(stream + 5);\n    nr_components = stream[7];\n#endif\n\n    trace(\"> SOF marker\\n\");\n    trace(\"Size:%dx%d nr_components:%d (%s)  precision:%d\\n\",\n          width, height,\n          nr_components, nr_components_to_string[nr_components],\n          precision);\n}\n\nstatic int parse_DQT(struct jdec_private *priv, const unsigned char *stream)\n{\n    int qi;\n    const unsigned char *dqt_block_end;\n\n    trace(\"> DQT marker\\n\");\n    dqt_block_end = stream + be16_to_cpu(stream);\n    stream += 2;  /* Skip length */\n\n    while (stream < dqt_block_end) {\n        qi = *stream++;\n#if SANITY_CHECK\n        if (qi >> 4)\n            error(\"16 bits quantization table is not supported\\n\");\n        if (qi >= 4)\n            error(\"No more 4 quantization table is supported (got %d)\\n\", qi);\n#endif\n        memcpy(priv->Q_tables[qi & 0x0F], stream, 64);\n        priv->Q_tables_valid[qi & 0x0f] = 1;\n        stream += 64;\n    }\n    trace(\"< DQT marker\\n\");\n    return 0;\n}\n\nstatic int parse_SOF(struct jdec_private *priv, const unsigned char *stream)\n{\n    int i, width, height, nr_components, cid, sampling_factor;\n    unsigned char Q_table;\n    struct component *c;\n\n    trace(\"> SOF marker\\n\");\n    print_SOF(stream);\n\n    height = be16_to_cpu(stream + 3);\n    width  = be16_to_cpu(stream + 5);\n    nr_components = stream[7];\n    if(nr_components > COMPONENTS-1)\n        error(\"Components exceed the value specified by the Jpeg spec\\n\");\n    priv->nf_components = nr_components;\n#if SANITY_CHECK\n    if (stream[2] != 8)\n        error(\"Precision other than 8 is not supported\\n\");\n    if (width > JPEG_MAX_WIDTH || height > JPEG_MAX_HEIGHT)\n        printf(\"WARNING:Width and Height (%dx%d) seems suspicious\\n\", width, height);\n    if (nr_components != 3)\n        printf(\"ERROR:We only support YUV images\\n\");\n    if (height % 16)\n        printf(\"WARNING:Height need to be a multiple of 16 (current height is %d)\\n\", height);\n    if (width % 16)\n        printf(\"WARNING:Width need to be a multiple of 16 (current Width is %d)\\n\", width);\n#endif\n    stream += 8;\n    for (i = 0; i < nr_components; i++) {\n        cid = *stream++;\n        sampling_factor = *stream++;\n        Q_table = *stream++;\n        c = &priv->component_infos[i];\n        c->cid = cid;\n        if (Q_table >= COMPONENTS)\n            error(\"Bad Quantization table index (got %d, max allowed %d)\\n\", Q_table, COMPONENTS - 1);\n        c->Vfactor = sampling_factor & 0xf;\n        c->Hfactor = sampling_factor >> 4;\n        c->quant_table_index = Q_table;\n        trace(\"Component:%d  factor:%dx%d  Quantization table:%d\\n\",\n              cid, c->Hfactor, c->Vfactor, Q_table);\n\n    }\n    priv->width[scan_num] = width;\n    priv->height[scan_num] = height;\n\n    trace(\"< SOF marker\\n\");\n\n    return 0;\n}\n\nstatic int parse_SOS(struct jdec_private *priv, const unsigned char *stream)\n{\n    unsigned int i, cid, table;\n    unsigned int nr_components = stream[2];\n    if(nr_components > COMPONENTS-1)\n        error(\"Components exceed the value specified by the Jpeg spec\\n\");\n    trace(\"> SOS marker\\n\");\n\n    priv->cur_sos.nr_components = nr_components;\n\n    stream += 3;\n    for (i = 0; i < nr_components; i++) {\n        cid = *stream++;\n        table = *stream++;\n        priv->cur_sos.components[i].component_id = cid;\n        priv->cur_sos.components[i].dc_selector = ((table >> 4) & 0x0F);\n        priv->cur_sos.components[i].ac_selector = (table & 0x0F);\n#if SANITY_CHECK\n        if ((table & 0xf) >= 4)\n            error(\"We do not support more than 2 AC Huffman table\\n\");\n        if ((table >> 4) >= 4)\n            error(\"We do not support more than 2 DC Huffman table\\n\");\n        if (cid != priv->component_infos[i].cid)\n            error(\"SOS cid order (%d:%d) isn't compatible with the SOF marker (%d:%d)\\n\",\n                  i, cid, i, priv->component_infos[i].cid);\n        trace(\"ComponentId:%d  tableAC:%d tableDC:%d\\n\", cid, table & 0xf, table >> 4);\n#endif\n    }\n    priv->stream = stream + 3;\n    trace(\"< SOS marker\\n\");\n    return 0;\n}\n\nint tinyjpeg_parse_SOS(struct jdec_private *priv, const unsigned char *stream)\n{\n    return parse_SOS(priv, stream);\n}\n\n\nstatic int parse_DHT(struct jdec_private *priv, const unsigned char *stream)\n{\n    unsigned int count, i;\n    int length, index;\n    unsigned char Tc, Th;\n\n    length = be16_to_cpu(stream) - 2;\n    stream += 2;  /* Skip length */\n\n    trace(\"> DHT marker (length=%d)\\n\", length);\n\n    while (length > 0) {\n        index = *stream++;\n\n        Tc = index & 0xf0; // it is not important to <<4\n        Th = index & 0x0f;\n        if (Th >= HUFFMAN_TABLES)\n            error(\"No more than %d Huffman tables is supported (got %d)\\n\", HUFFMAN_TABLES, Th);\n        if (Tc) {\n            memcpy(priv->HTAC[Th].bits, stream, 16);\n        } else {\n            memcpy(priv->HTDC[Th].bits, stream, 16);\n        }\n\n        count = 0;\n        for (i = 0; i < 16; i++) {\n            count += *stream++;\n        }\n\n#if SANITY_CHECK\n        if (count >= HUFFMAN_BITS_SIZE)\n            error(\"No more than %d bytes is allowed to describe a huffman table\", HUFFMAN_BITS_SIZE);\n        trace(\"Huffman table %s[%d] length=%d\\n\", Tc ? \"AC\" : \"DC\", Th, count);\n#endif\n\n        if (Tc) {\n            memcpy(priv->HTAC[Th].values, stream, count);\n            priv->HTAC_valid[Th] = 1;\n        } else {\n            memcpy(priv->HTDC[Th].values, stream, count);\n            priv->HTDC_valid[Th] = 1;\n        }\n\n        length -= 1;\n        length -= 16;\n        length -= count;\n        stream += count;\n    }\n    trace(\"< DHT marker\\n\");\n    return 0;\n}\nstatic int parse_DRI(struct jdec_private *priv, const unsigned char *stream)\n{\n    unsigned int length;\n\n    trace(\"> DRI marker\\n\");\n\n    length = be16_to_cpu(stream);\n\n#if SANITY_CHECK\n    if (length != 4)\n        error(\"Length of DRI marker need to be 4\\n\");\n#endif\n\n    priv->restart_interval = be16_to_cpu(stream + 2);\n\n#if DEBUG\n    trace(\"Restart interval = %d\\n\", priv->restart_interval);\n#endif\n\n    trace(\"< DRI marker\\n\");\n\n    return 0;\n}\n\nstatic int findEOI(struct jdec_private *priv, const unsigned char *stream)\n{\n    while (stream <= priv->stream_end && !(*stream == 0xff  && *(stream + 1) == 0xd9)) { //searching for the end of image marker\n        stream++;\n        continue;\n    }\n    priv->stream_scan = stream;\n    return 0;\n}\n\nstatic int findSOI(struct jdec_private *priv, const unsigned char *stream)\n{\n    while (!(*stream == 0xff  && *(stream + 1) == 0xd8)) { //searching for the start of image marker\n        if (stream <= priv->stream_end) {\n            stream++;\n            continue;\n        } else\n            return 0;  // No more images in the file.\n    }\n    priv->stream = stream + 2;\n    return 1;\n}\n\nstatic int parse_JFIF(struct jdec_private *priv, const unsigned char *stream)\n{\n    int chuck_len;\n    int marker;\n    int sos_marker_found = 0;\n    int dht_marker_found = 0;\n    int dqt_marker_found = 0;\n    const unsigned char *next_chunck;\n\n    next_image_found = findSOI(priv, stream);\n    stream = priv->stream;\n\n    while (!sos_marker_found  && stream <= priv->stream_end) {\n        while ((*stream == 0xff))\n            stream++;\n\n        marker = *stream++;\n        chuck_len = be16_to_cpu(stream);\n        next_chunck = stream + chuck_len;\n        switch (marker) {\n        case SOF:\n            if (parse_SOF(priv, stream) < 0)\n                return -1;\n            break;\n        case DQT:\n            if (parse_DQT(priv, stream) < 0)\n                return -1;\n            dqt_marker_found = 1;\n            break;\n        case SOS:\n            if (parse_SOS(priv, stream) < 0)\n                return -1;\n            sos_marker_found = 1;\n            break;\n        case DHT:\n            if (parse_DHT(priv, stream) < 0)\n                return -1;\n            dht_marker_found = 1;\n            break;\n        case DRI:\n            if (parse_DRI(priv, stream) < 0)\n                return -1;\n            break;\n        default:\n            trace(\"> Unknown marker %2.2x\\n\", marker);\n            break;\n        }\n\n        stream = next_chunck;\n    }\n\n    if (next_image_found) {\n        if (!dht_marker_found) {\n            trace(\"No Huffman table loaded, using the default one\\n\");\n            build_default_huffman_tables(priv);\n        }\n        if (!dqt_marker_found) {\n            error(\"ERROR:No Quantization table loaded, using the default one\\n\");\n        }\n    }\n#ifdef SANITY_CHECK\n    if ((priv->component_infos[cY].Hfactor < priv->component_infos[cCb].Hfactor)\n        || (priv->component_infos[cY].Hfactor < priv->component_infos[cCr].Hfactor))\n        error(\"Horizontal sampling factor for Y should be greater than horitontal sampling factor for Cb or Cr\\n\");\n    if ((priv->component_infos[cY].Vfactor < priv->component_infos[cCb].Vfactor)\n        || (priv->component_infos[cY].Vfactor < priv->component_infos[cCr].Vfactor))\n        error(\"Vertical sampling factor for Y should be greater than vertical sampling factor for Cb or Cr\\n\");\n    if ((priv->component_infos[cCb].Hfactor != 1)\n        || (priv->component_infos[cCr].Hfactor != 1)\n        || (priv->component_infos[cCb].Vfactor != 1)\n        || (priv->component_infos[cCr].Vfactor != 1))\n        printf(\"ERROR:Sampling other than 1x1 for Cr and Cb is not supported\");\n#endif\n    findEOI(priv, stream);\n\n    if (priv->stream_scan > priv->stream_end)\n    {\n        error(\"stream_scan cannot exceed stream_end\\n\");\n        return -1;\n    }\n\n    return next_image_found;\n}\n\n/*******************************************************************************\n *\n * Functions exported of the library.\n *\n * Note: Some applications can access directly to internal pointer of the\n * structure. It's is not recommended, but if you have many images to\n * uncompress with the same parameters, some functions can be called to speedup\n * the decoding.\n *\n ******************************************************************************/\n\n/**\n * Allocate a new tinyjpeg decoder object.\n *\n * Before calling any other functions, an object need to be called.\n */\nstruct jdec_private *tinyjpeg_init(void)\n{\n    struct jdec_private *priv;\n\n    priv = (struct jdec_private *)calloc(1, sizeof(struct jdec_private));\n    if (priv == NULL)\n        return NULL;\n    return priv;\n}\n\n/**\n * Free a tinyjpeg object.\n *\n * No others function can be called after this one.\n */\nvoid tinyjpeg_free(struct jdec_private *priv)\n{\n    free(priv);\n}\n\n/**\n * Initialize the tinyjpeg object and prepare the decoding of the stream.\n *\n * Check if the jpeg can be decoded with this jpeg decoder.\n * Fill some table used for preprocessing.\n */\nint tinyjpeg_parse_header(struct jdec_private *priv, const unsigned char *buf, unsigned int size)\n{\n    int ret;\n\n    /* Identify the file */\n    if ((buf[0] != 0xFF) || (buf[1] != SOI))\n        error(\"Not a JPG file ?\\n\");\n\n    priv->stream_begin = buf;\n    priv->stream_length = size;\n    priv->stream_end = priv->stream_begin + priv->stream_length;\n\n    priv->stream = priv->stream_begin;\n    ret = parse_JFIF(priv, priv->stream);\n    return ret;\n}\n\n\nint tinyjpeg_decode(struct jdec_private *priv)\n{\n#define CHECK_VASTATUS(va_status,func)                                  \\\n    if (va_status != VA_STATUS_SUCCESS) {                                   \\\n        fprintf(stderr,\"%s:%s (%d) failed,exit\\n\", __func__, func, __LINE__); \\\n        exit(1);                                                            \\\n    }\n\n    VAEntrypoint entrypoints[5];\n    int num_entrypoints, vld_entrypoint;\n    VAConfigAttrib attrib;\n    VAConfigID config_id;\n    VASurfaceID surface_id;\n    VAContextID context_id;\n    VABufferID pic_param_buf, iqmatrix_buf, huffmantable_buf, slice_param_buf, slice_data_buf;\n    int major_ver, minor_ver;\n    VADisplay   va_dpy;\n    VAStatus va_status;\n    int max_h_factor, max_v_factor;\n    int putsurface = 1;\n    unsigned int i, j;\n\n    int surface_type;\n\n    VASurfaceAttrib forcc;\n    forcc.type = VASurfaceAttribPixelFormat;\n    forcc.flags = VA_SURFACE_ATTRIB_SETTABLE;\n    forcc.value.type = VAGenericValueTypeInteger;\n\n\n    va_dpy = va_open_display();\n    va_status = vaInitialize(va_dpy, &major_ver, &minor_ver);\n    assert(va_status == VA_STATUS_SUCCESS);\n\n    va_status = vaQueryConfigEntrypoints(va_dpy, VAProfileJPEGBaseline, entrypoints,\n                                         &num_entrypoints);\n    CHECK_VASTATUS(va_status, \"vaQueryConfigEntrypoints\");\n\n    for (vld_entrypoint = 0; vld_entrypoint < num_entrypoints; vld_entrypoint++) {\n        if (entrypoints[vld_entrypoint] == VAEntrypointVLD)\n            break;\n    }\n    if (vld_entrypoint == num_entrypoints) {\n        /* not find VLD entry point */\n        assert(0);\n    }\n\n    /* Assuming finding VLD, find out the format for the render target */\n    attrib.type = VAConfigAttribRTFormat;\n    vaGetConfigAttributes(va_dpy, VAProfileJPEGBaseline, VAEntrypointVLD,\n                          &attrib, 1);\n    if ((attrib.value & VA_RT_FORMAT_YUV420) == 0) {\n        /* not find desired YUV420 RT format */\n        assert(0);\n    }\n\n    va_status = vaCreateConfig(va_dpy, VAProfileJPEGBaseline, VAEntrypointVLD,\n                               &attrib, 1, &config_id);\n    CHECK_VASTATUS(va_status, \"vaQueryConfigEntrypoints\");\n\n    while (next_image_found) {\n        VAPictureParameterBufferJPEGBaseline pic_param;\n        memset(&pic_param, 0, sizeof(pic_param));\n        pic_param.picture_width = priv->width[scan_num];\n        pic_param.picture_height = priv->height[scan_num];\n        pic_param.num_components = priv->nf_components;\n\n\n        for (i = 0; i < pic_param.num_components; i++) { // tinyjpeg support 3 components only, does it match va?\n            pic_param.components[i].component_id = priv->component_infos[i].cid;\n            pic_param.components[i].h_sampling_factor = priv->component_infos[i].Hfactor;\n            pic_param.components[i].v_sampling_factor = priv->component_infos[i].Vfactor;\n            pic_param.components[i].quantiser_table_selector = priv->component_infos[i].quant_table_index;\n        }\n        int h1, h2, h3, v1, v2, v3;\n        h1 = pic_param.components[0].h_sampling_factor;\n        h2 = pic_param.components[1].h_sampling_factor;\n        h3 = pic_param.components[2].h_sampling_factor;\n        v1 = pic_param.components[0].v_sampling_factor;\n        v2 = pic_param.components[1].v_sampling_factor;\n        v3 = pic_param.components[2].v_sampling_factor;\n\n        if (h1 == 2 && h2 == 1 && h3 == 1 &&\n            v1 == 2 && v2 == 1 && v3 == 1) {\n            //surface_type = VA_RT_FORMAT_IMC3;\n            surface_type = VA_RT_FORMAT_YUV420;\n            forcc.value.value.i = VA_FOURCC_IMC3;\n        } else if (h1 == 2 && h2 == 1 && h3 == 1 &&\n                   v1 == 1 && v2 == 1 && v3 == 1) {\n            //surface_type = VA_RT_FORMAT_YUV422H;\n            surface_type = VA_RT_FORMAT_YUV422;\n            forcc.value.value.i = VA_FOURCC_422H;\n        } else if (h1 == 1 && h2 == 1 && h3 == 1 &&\n                   v1 == 1 && v2 == 1 && v3 == 1) {\n            surface_type = VA_RT_FORMAT_YUV444;\n            forcc.value.value.i = VA_FOURCC_444P;\n            //forcc.value.value.i = VA_FOURCC_RGBP;\n        } else if (h1 == 4 && h2 == 1 && h3 == 1 &&\n                   v1 == 1 && v2 == 1 && v3 == 1) {\n            surface_type = VA_RT_FORMAT_YUV411;\n            forcc.value.value.i = VA_FOURCC_411P;\n        } else if (h1 == 1 && h2 == 1 && h3 == 1 &&\n                   v1 == 2 && v2 == 1 && v3 == 1) {\n            //surface_type = VA_RT_FORMAT_YUV422V;\n            surface_type = VA_RT_FORMAT_YUV422;\n            forcc.value.value.i = VA_FOURCC_422V;\n        } else if (h1 == 2 && h2 == 1 && h3 == 1 &&\n                   v1 == 2 && v2 == 2 && v3 == 2) {\n            //surface_type = VA_RT_FORMAT_YUV422H;\n            surface_type = VA_RT_FORMAT_YUV422;\n            forcc.value.value.i = VA_FOURCC_422H;\n        } else if (h1 == 2 && h2 == 2 && h3 == 2 &&\n                   v1 == 2 && v2 == 1 && v3 == 1) {\n            //surface_type = VA_RT_FORMAT_YUV422V;\n            surface_type = VA_RT_FORMAT_YUV422;\n            forcc.value.value.i = VA_FOURCC_422V;\n        } else {\n            surface_type = VA_RT_FORMAT_YUV400;\n            forcc.value.value.i = VA_FOURCC('Y', '8', '0', '0');\n        }\n\n        va_status = vaCreateSurfaces(va_dpy, surface_type,\n                                     priv->width[scan_num], priv->height[scan_num], //alignment?\n                                     &surface_id, 1, &forcc, 1);\n        CHECK_VASTATUS(va_status, \"vaCreateSurfaces\");\n\n        /* Create a context for this decode pipe */\n        va_status = vaCreateContext(va_dpy, config_id,\n                                    priv->width[scan_num], priv->height[scan_num], // alignment?\n                                    VA_PROGRESSIVE,\n                                    &surface_id,\n                                    1,\n                                    &context_id);\n        CHECK_VASTATUS(va_status, \"vaCreateContext\");\n\n        va_status = vaCreateBuffer(va_dpy, context_id,\n                                   VAPictureParameterBufferType, // VAPictureParameterBufferJPEGBaseline?\n                                   sizeof(VAPictureParameterBufferJPEGBaseline),\n                                   1, &pic_param,\n                                   &pic_param_buf);\n        CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n        VAIQMatrixBufferJPEGBaseline iq_matrix;\n        const unsigned int num_quant_tables =\n            MIN(COMPONENTS, ARRAY_ELEMS(iq_matrix.load_quantiser_table));\n        // todo, only mask it if non-default quant matrix is used. do we need build default quant matrix?\n        memset(&iq_matrix, 0, sizeof(VAIQMatrixBufferJPEGBaseline));\n        for (i = 0; i < num_quant_tables; i++) {\n            if (!priv->Q_tables_valid[i])\n                continue;\n            iq_matrix.load_quantiser_table[i] = 1;\n            for (j = 0; j < 64; j++)\n                iq_matrix.quantiser_table[i][j] = priv->Q_tables[i][j];\n        }\n        va_status = vaCreateBuffer(va_dpy, context_id,\n                                   VAIQMatrixBufferType, // VAIQMatrixBufferJPEGBaseline?\n                                   sizeof(VAIQMatrixBufferJPEGBaseline),\n                                   1, &iq_matrix,\n                                   &iqmatrix_buf);\n        CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n        VAHuffmanTableBufferJPEGBaseline huffman_table;\n        const unsigned int num_huffman_tables =\n            MIN(COMPONENTS, ARRAY_ELEMS(huffman_table.load_huffman_table));\n        memset(&huffman_table, 0, sizeof(VAHuffmanTableBufferJPEGBaseline));\n        assert(sizeof(huffman_table.huffman_table[0].num_dc_codes) ==\n               sizeof(priv->HTDC[0].bits));\n        assert(sizeof(huffman_table.huffman_table[0].dc_values[0]) ==\n               sizeof(priv->HTDC[0].values[0]));\n        for (i = 0; i < num_huffman_tables; i++) {\n            if (!priv->HTDC_valid[i] || !priv->HTAC_valid[i])\n                continue;\n            huffman_table.load_huffman_table[i] = 1;\n            memcpy(huffman_table.huffman_table[i].num_dc_codes, priv->HTDC[i].bits,\n                   sizeof(huffman_table.huffman_table[i].num_dc_codes));\n            memcpy(huffman_table.huffman_table[i].dc_values, priv->HTDC[i].values,\n                   sizeof(huffman_table.huffman_table[i].dc_values));\n            memcpy(huffman_table.huffman_table[i].num_ac_codes, priv->HTAC[i].bits,\n                   sizeof(huffman_table.huffman_table[i].num_ac_codes));\n            memcpy(huffman_table.huffman_table[i].ac_values, priv->HTAC[i].values,\n                   sizeof(huffman_table.huffman_table[i].ac_values));\n            memset(huffman_table.huffman_table[i].pad, 0,\n                   sizeof(huffman_table.huffman_table[i].pad));\n        }\n        va_status = vaCreateBuffer(va_dpy, context_id,\n                                   VAHuffmanTableBufferType, // VAHuffmanTableBufferJPEGBaseline?\n                                   sizeof(VAHuffmanTableBufferJPEGBaseline),\n                                   1, &huffman_table,\n                                   &huffmantable_buf);\n        CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n        // one slice for whole image?\n        max_h_factor = priv->component_infos[0].Hfactor;\n        max_v_factor = priv->component_infos[0].Vfactor;\n        static VASliceParameterBufferJPEGBaseline slice_param;\n        slice_param.slice_data_size = (priv->stream_scan - priv->stream);\n        slice_param.slice_data_offset = 0;\n        slice_param.slice_data_flag = VA_SLICE_DATA_FLAG_ALL;\n        slice_param.slice_horizontal_position = 0;\n        slice_param.slice_vertical_position = 0;\n        slice_param.num_components = priv->cur_sos.nr_components;\n        for (i = 0; i < slice_param.num_components; i++) {\n            slice_param.components[i].component_selector = priv->cur_sos.components[i].component_id; /* FIXME: set to values specified in SOS  */\n            slice_param.components[i].dc_table_selector = priv->cur_sos.components[i].dc_selector;  /* FIXME: set to values specified in SOS  */\n            slice_param.components[i].ac_table_selector = priv->cur_sos.components[i].ac_selector;  /* FIXME: set to values specified in SOS  */\n        }\n        slice_param.restart_interval = priv->restart_interval;\n        slice_param.num_mcus = ((priv->width[scan_num] + max_h_factor * 8 - 1) / (max_h_factor * 8)) *\n                               ((priv->height[scan_num] + max_v_factor * 8 - 1) / (max_v_factor * 8)); // ?? 720/16?\n\n        va_status = vaCreateBuffer(va_dpy, context_id,\n                                   VASliceParameterBufferType, // VASliceParameterBufferJPEGBaseline?\n                                   sizeof(VASliceParameterBufferJPEGBaseline),\n                                   1,\n                                   &slice_param, &slice_param_buf);\n        CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n        va_status = vaCreateBuffer(va_dpy, context_id,\n                                   VASliceDataBufferType,\n                                   priv->stream_scan - priv->stream,\n                                   1,\n                                   (void*)priv->stream, // jpeg_clip,\n                                   &slice_data_buf);\n        CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n        va_status = vaBeginPicture(va_dpy, context_id, surface_id);\n        CHECK_VASTATUS(va_status, \"vaBeginPicture\");\n\n        va_status = vaRenderPicture(va_dpy, context_id, &pic_param_buf, 1);\n        CHECK_VASTATUS(va_status, \"vaRenderPicture\");\n\n        va_status = vaRenderPicture(va_dpy, context_id, &iqmatrix_buf, 1);\n        CHECK_VASTATUS(va_status, \"vaRenderPicture\");\n\n        va_status = vaRenderPicture(va_dpy, context_id, &huffmantable_buf, 1);\n        CHECK_VASTATUS(va_status, \"vaRenderPicture\");\n\n        va_status = vaRenderPicture(va_dpy, context_id, &slice_param_buf, 1);\n        CHECK_VASTATUS(va_status, \"vaRenderPicture\");\n\n        va_status = vaRenderPicture(va_dpy, context_id, &slice_data_buf, 1);\n        CHECK_VASTATUS(va_status, \"vaRenderPicture\");\n\n        va_status = vaEndPicture(va_dpy, context_id);\n        CHECK_VASTATUS(va_status, \"vaEndPicture\");\n\n        va_status = vaSyncSurface(va_dpy, surface_id);\n        CHECK_VASTATUS(va_status, \"vaSyncSurface\");\n\n        if (putsurface) {\n            VARectangle src_rect, dst_rect;\n\n            src_rect.x      = 0;\n            src_rect.y      = 0;\n            src_rect.width  = priv->width[scan_num];\n            src_rect.height = priv->height[scan_num];\n            dst_rect        = src_rect;\n\n            va_status = va_put_surface(va_dpy, surface_id, &src_rect, &dst_rect);\n            CHECK_VASTATUS(va_status, \"vaPutSurface\");\n        }\n        scan_num++;\n\n        vaDestroySurfaces(va_dpy, &surface_id, 1);\n        vaDestroyConfig(va_dpy, config_id);\n        vaDestroyContext(va_dpy, context_id);\n\n        if (scan_num >= JPEG_SCAN_MAX)\n            break;\n        parse_JFIF(priv, priv->stream);\n        if (priv->width[scan_num] == 0 && priv->height[scan_num] == 0)\n            break;\n    }\n    // va_close_display(va_dpy);\n    vaTerminate(va_dpy);\n    printf(\"press any key to exit23\\n\");\n    getchar();\n    return 0;\n}\nconst char *tinyjpeg_get_errorstring(struct jdec_private *priv)\n{\n    /* FIXME: the error string must be store in the context */\n    return error_string;\n}\nvoid tinyjpeg_get_size(struct jdec_private *priv, unsigned int *width, unsigned int *height)\n{\n    *width = priv->width[scan_num];\n    *height = priv->height[scan_num];\n}\n\n\n"
  },
  {
    "path": "decode/tinyjpeg.h",
    "content": "/*\n * Small jpeg decoder library (header file)\n *\n * Copyright (c) 2006, Luc Saillard <luc@saillard.org>\n * Copyright (c) 2012 Intel Corporation.\n * All rights reserved.\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions are met:\n *\n * - Redistributions of source code must retain the above copyright notice,\n *  this list of conditions and the following disclaimer.\n *\n * - Redistributions in binary form must reproduce the above copyright notice,\n *  this list of conditions and the following disclaimer in the documentation\n *  and/or other materials provided with the distribution.\n *\n * - Neither the name of the author nor the names of its contributors may be\n *  used to endorse or promote products derived from this software without\n *  specific prior written permission.\n *\n * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE\n * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n * POSSIBILITY OF SUCH DAMAGE.\n *\n */\n\n\n#ifndef __JPEGDEC_H__\n#define __JPEGDEC_H__\n\n#ifdef __cplusplus\nextern \"C\" {\n#endif\n\nstruct jdec_private;\n\n/* Flags that can be set by any applications */\n#define TINYJPEG_FLAGS_MJPEG_TABLE  (1<<1)\n\n/* Format accepted in outout */\nenum tinyjpeg_fmt {\n    TINYJPEG_FMT_GREY = 1,\n    TINYJPEG_FMT_BGR24,\n    TINYJPEG_FMT_RGB24,\n    TINYJPEG_FMT_YUV420P,\n};\n\nstruct jdec_private *tinyjpeg_init(void);\nvoid tinyjpeg_free(struct jdec_private *priv);\n\nint tinyjpeg_parse_header(struct jdec_private *priv, const unsigned char *buf, unsigned int size);\nint tinyjpeg_decode(struct jdec_private *priv);\nconst char *tinyjpeg_get_errorstring(struct jdec_private *priv);\nvoid tinyjpeg_get_size(struct jdec_private *priv, unsigned int *width, unsigned int *height);\n\n#ifdef __cplusplus\n}\n#endif\n\n#endif\n\n\n\n"
  },
  {
    "path": "encode/Makefile.am",
    "content": "# Copyright (c) 2007 Intel Corporation. All Rights Reserved.\n#\n# Permission is hereby granted, free of charge, to any person obtaining a\n# copy of this software and associated documentation files (the\n# \"Software\"), to deal in the Software without restriction, including\n# without limitation the rights to use, copy, modify, merge, publish,\n# distribute, sub license, and/or sell copies of the Software, and to\n# permit persons to whom the Software is furnished to do so, subject to\n# the following conditions:\n#\n# The above copyright notice and this permission notice (including the\n# next paragraph) shall be included in all copies or substantial portions\n# of the Software.\n# \n# THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n# IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR\n# ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\nbin_PROGRAMS = avcenc mpeg2vaenc h264encode jpegenc vp9enc vp8enc hevcencode av1encode\nnoinst_PROGRAMS = svctenc\n\nAM_CPPFLAGS = \\\n\t-Wall\t\t\t\t\\\n\t$(LIBVA_CFLAGS) \t\t\\\n\t$(NULL)\n\nif USE_SSP\nAM_CPPFLAGS += -fstack-protector\nendif\n\nh264encode_SOURCES\t= h264encode.c\nh264encode_CFLAGS\t= -I$(top_srcdir)/common -g\nh264encode_LDADD\t= \\\n       \t$(LIBVA_LIBS) \\\n\t$(top_builddir)/common/libva-display.la \\\n\t-lpthread -lm\n\nhevcencode_SOURCES\t= hevcencode.c\nhevcencode_CFLAGS\t= -I$(top_srcdir)/common -g\nhevcencode_LDADD\t= \\\n       \t$(LIBVA_LIBS) \\\n\t$(top_builddir)/common/libva-display.la \\\n\t-lpthread -lm\n\n\navcenc_SOURCES\t\t= avcenc.c\navcenc_CFLAGS\t\t= -I$(top_srcdir)/common -g\navcenc_LDADD\t\t= \\\n       \t$(LIBVA_LIBS) \\\n\t$(top_builddir)/common/libva-display.la \\\n\t-lpthread\n\nmpeg2vaenc_SOURCES\t= mpeg2vaenc.c\nmpeg2vaenc_CFLAGS\t= -I$(top_srcdir)/common\nmpeg2vaenc_LDADD\t= \\\n       \t$(LIBVA_LIBS) \\\n\t$(top_builddir)/common/libva-display.la \\\n\t-lpthread\n\njpegenc_SOURCES\t\t= jpegenc.c\njpegenc_CFLAGS\t\t= -I$(top_srcdir)/common -g\njpegenc_LDADD\t\t= \\\n       \t$(LIBVA_LIBS) \\\n\t$(top_builddir)/common/libva-display.la \\\n\t-lpthread\n\nsvctenc_SOURCES\t\t= svctenc.c\nsvctenc_CFLAGS\t\t= -I$(top_srcdir)/common -g\nsvctenc_LDADD\t\t= \\\n       \t$(LIBVA_LIBS) \\\n\t$(top_builddir)/common/libva-display.la \\\n\t-lpthread -lm\n\nvp9enc_SOURCES     = vp9enc.c\nvp9enc_CFLAGS      = -I$(top_srcdir)/common -g\nvp9enc_LDADD       = \\\n\t$(LIBVA_LIBS) \\\n\t$(top_builddir)/common/libva-display.la \\\n\t-lpthread -lm\n\nvp8enc_SOURCES     = vp8enc.c\nvp8enc_CFLAGS      = -I$(top_srcdir)/common -g\nvp8enc_LDADD       = \\\n\t$(LIBVA_LIBS) \\\n\t$(top_builddir)/common/libva-display.la \\\n\t-lpthread -lm\n\nav1encode_SOURCES\t= av1encode.c\nav1encode_CFLAGS\t= -I$(top_srcdir)/common -g\nav1encode_LDADD\t= \\\n       \t$(LIBVA_LIBS) \\\n\t$(top_builddir)/common/libva-display.la \\\n\t-lpthread -lm\n\nvalgrind:\t$(bin_PROGRAMS) $(noinst_PROGRAMS)\n\tfor a in $(bin_PROGRAMS) $(noinst_PROGRAMS); do \\\n\t\tvalgrind --leak-check=full --show-reachable=yes .libs/$$a; \\\n\tdone\n\nEXTRA_DIST = \t\t\\\n\tjpegenc_utils.h \\\n\t$(NULL)\n"
  },
  {
    "path": "encode/av1encode.c",
    "content": "#define LIBVA_UTILS_UPLOAD_DOWNLOAD_YUV_SURFACE 1\n\n#include <stdio.h>\n#include <stdbool.h>\n#include <string.h>\n#include <stdlib.h>\n#include <getopt.h>\n#include <unistd.h>\n#include <sys/types.h>\n#include <sys/stat.h>\n#include <sys/time.h>\n#include <sys/mman.h>\n#include <fcntl.h>\n#include <assert.h>\n#include <pthread.h>\n#include <errno.h>\n#include <math.h>\n#include <va/va.h>\n#include \"va_display.h\"\n\n#define ALIGN16(x)  ((x+15)&~15)\n#define CHECK_VASTATUS(va_status,func)                                  \\\n    if (va_status != VA_STATUS_SUCCESS) {                               \\\n        fprintf(stderr,\"%s:%s (%d) failed,exit\\n\", __func__, func, __LINE__); \\\n        exit(1);                                                        \\\n    }\n\n#define MIN(a, b) ((a)>(b)?(b):(a))\n#define MAX(a, b) ((a)>(b)?(a):(b))\n\n#define CHECK_NULL(p)                                           \\\n    if(!(p))                                                      \\\n    {                                                           \\\n        fprintf(stderr, \"Null pointer at:%s:%d\\n\", __func__, __LINE__); \\\n        exit(1);                                                \\\n    }\n    \n#define CHECK_CONDITION(cond)                                    \\\n    if(!(cond))                                                      \\\n    {                                                           \\\n        fprintf(stderr, \"Unexpected condition: %s:%d\\n\", __func__, __LINE__); \\\n        exit(1);                                                \\\n    }\n\n#define CHECK_BS_NULL(p)         \\\n    CHECK_NULL(p)        \\\n    CHECK_NULL(p->buffer)      \n\n#include \"loadsurface.h\"\n\n/*****\n * \n * Bit stream management\n * \n * \n * */\n#define BITSTREAM_ALLOCATE_STEPPING 1024 // in byte\n\nstruct __bitstream {\n    uint8_t *buffer; // managed by u8 to avoid swap every 4byte\n    int bit_offset;\n    int max_size_in_byte;\n};\ntypedef struct __bitstream bitstream;\n\nstatic void\nbitstream_start(bitstream *bs)\n{\n    CHECK_NULL(bs);\n    bs->max_size_in_byte = BITSTREAM_ALLOCATE_STEPPING;\n    bs->buffer = calloc(bs->max_size_in_byte * sizeof(uint8_t), 1);\n    CHECK_NULL(bs->buffer);\n    bs->bit_offset = 0;\n}\n\nstatic void\nput_ui(bitstream* bs, uint32_t val, int size_in_bits)\n{\n    CHECK_BS_NULL(bs);\n    CHECK_CONDITION((size_in_bits + bs->bit_offset) <= (8 * bs->max_size_in_byte));\n    int remain_bits = 8 - (bs->bit_offset % 8);\n\n    // make sure val does not overflow size_in_bits\n    val &= (0xffffffff >> (32 - size_in_bits));\n\n    if(size_in_bits <= remain_bits)\n    {\n        bs->buffer[bs->bit_offset / 8] |= val << (remain_bits - size_in_bits);\n        bs->bit_offset += size_in_bits;\n    }\n    else\n    {\n        \n        put_ui(bs, val >> (size_in_bits - remain_bits), remain_bits);\n        put_ui(bs, val & (~(0xffffffff << (size_in_bits - remain_bits))), size_in_bits - remain_bits);\n\n    }\n\n}\n\nstatic void\nput_aligning_bits(bitstream* bs)\n{\n    CHECK_BS_NULL(bs);\n    while (bs->bit_offset & 7)\n        put_ui(bs, 0, 1);; //trailing_zero_bit\n}\n\nstatic void\nput_trailing_bits(bitstream* bs)\n{\n    CHECK_BS_NULL(bs);\n    put_ui(bs, 1, 1); //trailing_one_bit\n    while (bs->bit_offset & 7)\n        put_ui(bs, 0, 1);; //trailing_zero_bit\n}\n\nstatic void\nbitstream_free(bitstream* bs)\n{\n    CHECK_BS_NULL(bs);\n    free(bs->buffer);\n    bs->bit_offset = 0;\n    bs->max_size_in_byte = 0;\n}\n\nstatic void\nbitstream_cat(bitstream *bs1, bitstream *bs2)\n{\n    CHECK_NULL(bs1);\n    CHECK_NULL(bs2);\n    CHECK_CONDITION(! (bs1->bit_offset & 7));\n    if(! (bs1->bit_offset & 7)) //byte aligned\n    {\n        memcpy(bs1->buffer + (bs1->bit_offset / 8), bs2->buffer, bs2->bit_offset/8);\n        bs1->bit_offset += bs2->bit_offset;\n        bitstream_free(bs2);\n    }\n    else\n    {\n        //when call this function to concat 2 bitstreams, the first bitstream should always be byte aligned\n        CHECK_CONDITION(0);\n    }\n}\n\n/******\n * definition of para set structure\n * \n * \n * \n * */\n#define PRIMARY_REF_BITS              3\n#define PRIMARY_REF_NONE              7\n\n#define REF_FRAMES_LOG2               3\n#define NUM_REF_FRAMES                (1 << REF_FRAMES_LOG2)\n#define REFS_PER_FRAME                7\n#define TOTAL_REFS_PER_FRAME          8\n#define MAX_MODE_LF_DELTAS            2\n#define MAX_MB_PLANE                  3\n\n#define CDEF_MAX_STRENGTHS            8\n#define CDEF_STRENGTH_BITS            6\n#define CDEF_STRENGTH_DIVISOR         4\n#define AV1_MAX_NUM_TILE_COLS         64\n#define AV1_MAX_NUM_TILE_ROWS         64\n#define MAX_NUM_OPERATING_POINTS      32\n\n#define SURFACE_NUM 16 /* 16 surfaces for source YUV */\n\nenum {\n    SINGLE_REFERENCE      = 0,\n    COMPOUND_REFERENCE    = 1,\n    REFERENCE_MODE_SELECT = 2,\n    REFERENCE_MODES       = 3,\n} REFERENCE_MODE;\n\nenum FRAME_TYPE\n{\n    KEY_FRAME = 0,\n    INTER_FRAME = 1,\n    INTRA_ONLY_FRAME = 2,\n    SWITCH_FRAME = 3,\n    NUM_FRAME_TYPES,\n};\n\nenum INTERP_FILTER{\n    EIGHTTAP_REGULAR,\n    EIGHTTAP_SMOOTH,\n    EIGHTTAP_SHARP,\n    BILINEAR,\n    SWITCHABLE,\n    INTERP_FILTERS_ALL\n};\n\nenum AV1_OBU_TYPE\n{\n    OBU_SEQUENCE_HEADER = 1,\n    OBU_TEMPORAL_DELIMITER = 2,\n    OBU_FRAME_HEADER = 3,\n    OBU_TILE_GROUP = 4,\n    OBU_METADATA = 5,\n    OBU_FRAME = 6,\n    OBU_REDUNDANT_FRAME_HEADER = 7,\n    OBU_PADDING = 15,\n};\n\nstruct LoopFilterParams\n{\n    int32_t loop_filter_level[4];\n    int32_t loop_filter_sharpness;\n    uint8_t loop_filter_delta_enabled;\n    uint8_t loop_filter_delta_update;\n    // 0 = Intra, Last, Last2, Last3, GF, BWD, ARF\n    int8_t loop_filter_ref_deltas[TOTAL_REFS_PER_FRAME];\n    // 0 = ZERO_MV, MV\n    int8_t loop_filter_mode_deltas[MAX_MODE_LF_DELTAS];\n};\n\nstruct TileInfoAv1\n{\n    uint32_t uniform_tile_spacing_flag;\n    uint32_t TileColsLog2;\n    uint32_t TileRowsLog2;\n    uint32_t TileCols;\n    uint32_t TileRows;\n    uint32_t TileWidthInSB[AV1_MAX_NUM_TILE_COLS];  // valid for 0 <= i < TileCols\n    uint32_t TileHeightInSB[AV1_MAX_NUM_TILE_ROWS]; // valid for 0 <= i < TileRows\n    uint32_t context_update_tile_id;\n    uint32_t TileSizeBytes;\n};\n\nstruct QuantizationParams\n{\n    uint32_t base_q_idx;\n    int32_t DeltaQYDc;\n    int32_t DeltaQUDc;\n    int32_t DeltaQUAc;\n    int32_t DeltaQVDc;\n    int32_t DeltaQVAc;\n    uint32_t using_qmatrix;\n    uint32_t qm_y;\n    uint32_t qm_u;\n    uint32_t qm_v;\n};\n\nstruct CdefParams\n{\n    uint32_t cdef_damping;\n    uint32_t cdef_bits;\n    uint32_t cdef_y_pri_strength[CDEF_MAX_STRENGTHS];\n    uint32_t cdef_y_sec_strength[CDEF_MAX_STRENGTHS];\n    uint32_t cdef_uv_pri_strength[CDEF_MAX_STRENGTHS];\n    uint32_t cdef_uv_sec_strength[CDEF_MAX_STRENGTHS];\n};\n\nenum RestorationType\n{\n    RESTORE_NONE,\n    RESTORE_SWITCHABLE,\n    RESTORE_WIENER,\n    RESTORE_SGRPROJ,\n    RESTORE_TYPES = 4,\n};\n\nenum {\n    BITDEPTH_8 = 8,\n    BITDEPTH_10 = 10\n};\n\nenum {\n    INTRA_FRAME     = 0,\n    LAST_FRAME      = 1,\n    LAST2_FRAME     = 2,\n    LAST3_FRAME     = 3,\n    GOLDEN_FRAME    = 4,\n    BWDREF_FRAME    = 5,\n    ALTREF2_FRAME   = 6,\n    ALTREF_FRAME    = 7,\n    MAX_REF_FRAMES  = 8\n};\n\nstruct LRParams\n{\n    enum RestorationType lr_type[MAX_MB_PLANE];\n    uint32_t lr_unit_shift;\n    uint32_t lr_uv_shift;\n    uint32_t lr_unit_extra_shift;\n};\n\nenum TX_MODE{\n    ONLY_4X4 = 0,     // only 4x4 transform used\n    TX_MODE_LARGEST,  // transform size is the largest possible for pu size\n    TX_MODE_SELECT,   // transform specified for each block\n    TX_MODES,\n};\n\nstruct ColorConfig\n{\n    uint32_t BitDepth                      ;\n    uint32_t mono_chrome                   ;\n    uint32_t color_primaries               ;\n    uint32_t transfer_characteristics      ;\n    uint32_t matrix_coefficients           ;\n    uint32_t color_description_present_flag;\n    uint32_t color_range                   ;\n    uint32_t chroma_sample_position        ;\n    uint32_t subsampling_x                 ;\n    uint32_t subsampling_y                 ;\n    uint32_t separate_uv_delta_q           ;\n};\n\ntypedef struct FrameHeader\n{\n    uint32_t show_existing_frame;\n    uint32_t frame_to_show_map_idx;\n    uint64_t frame_presentation_time;\n    uint32_t display_frame_id;\n    enum FRAME_TYPE frame_type;\n    uint32_t show_frame;\n    uint32_t showable_frame;\n    uint32_t error_resilient_mode;\n    uint32_t disable_cdf_update;\n    uint32_t allow_screen_content_tools;\n    uint32_t force_integer_mv;\n    uint32_t frame_size_override_flag;\n    uint32_t order_hint;\n    uint32_t primary_ref_frame;\n\n    uint8_t refresh_frame_flags;\n\n    uint32_t FrameWidth;//input\n    uint32_t FrameHeight;//input\n    uint32_t use_superres;\n    uint32_t SuperresDenom;\n    uint32_t UpscaledWidth;\n    uint32_t RenderWidth;\n    uint32_t RenderHeight;\n\n    uint32_t allow_intrabc;\n    int32_t ref_frame_idx[REFS_PER_FRAME];\n    uint32_t allow_high_precision_mv;\n    enum INTERP_FILTER interpolation_filter;\n    //uint32_t is_motion_mode_switchable;\n    uint32_t use_ref_frame_mvs; \n    uint32_t disable_frame_end_update_cdf;\n\n    uint32_t sbCols; \n    uint32_t sbRows;\n    uint32_t sbSize; //64 by default\n\n    struct TileInfoAv1 tile_info;\n    struct QuantizationParams quantization_params; \n\n    uint32_t delta_q_present;\n    uint32_t delta_q_res;\n\n    uint32_t delta_lf_present; \n    uint32_t delta_lf_res; \n    uint32_t delta_lf_multi;\n\n    uint32_t CodedLossless;\n    uint32_t AllLossless;\n\n    struct LoopFilterParams loop_filter_params;\n    struct CdefParams cdef_params;\n    struct LRParams lr_params;\n\n    enum TX_MODE TxMode;\n    uint32_t reference_select;\n    uint32_t skipModeAllowed;\n    uint32_t skipModeFrame[2];\n    uint32_t skip_mode_present;\n    uint32_t allow_warped_motion;\n    uint32_t reduced_tx_set;\n\n} FH;\n\ntypedef struct SequenceHeader\n{\n    uint32_t seq_profile                      ;\n    uint32_t still_picture                    ;\n    uint32_t reduced_still_picture_header     ;\n\n    uint32_t timing_info_present_flag         ;\n\n    uint32_t decoder_model_info_present_flag  ;\n\n    uint32_t operating_points_cnt_minus_1     ; \n    uint32_t operating_point_idc[MAX_NUM_OPERATING_POINTS]                                   ;\n    uint32_t seq_level_idx[MAX_NUM_OPERATING_POINTS]                                         ;\n    uint32_t seq_tier[MAX_NUM_OPERATING_POINTS]                                              ;\n    uint32_t decoder_model_present_for_this_op[MAX_NUM_OPERATING_POINTS]                     ;\n    uint32_t initial_display_delay_minus_1[MAX_NUM_OPERATING_POINTS]                         ;\n\n    uint32_t frame_width_bits                   ; //15 as default value\n    uint32_t frame_height_bits                  ; //15 as default value\n\n    uint32_t frame_id_numbers_present_flag      ; // default 0\n\n    uint32_t sbSize                             ; //default 64\n    uint32_t enable_filter_intra                ; \n    uint32_t enable_intra_edge_filter           ;\n    uint32_t enable_interintra_compound         ;\n    uint32_t enable_masked_compound             ;\n    uint32_t enable_warped_motion               ; \n    uint32_t enable_dual_filter                 ; \n    uint32_t enable_order_hint                  ;//default set to 1\n    uint32_t enable_jnt_comp                    ;\n    uint32_t enable_ref_frame_mvs               ; \n    uint32_t seq_force_screen_content_tools     ; \n    uint32_t seq_force_integer_mv               ; \n    uint32_t order_hint_bits_minus1             ; //default 8 - 1\n    uint32_t enable_superres                    ; \n    uint32_t enable_cdef                        ;\n    uint32_t enable_restoration                 ;\n\n    struct ColorConfig color_config; //default\n\n    uint32_t film_grain_param_present           ;\n\n    uint32_t frame_rate_extN;\n    uint32_t frame_rate_extD;\n} SH;\n\nstruct ObuExtensionHeader {\n    uint32_t temporal_id;\n    uint32_t spatial_id;\n};\n\nstruct BitOffsets\n{\n    uint32_t QIndexBitOffset;\n    uint32_t SegmentationBitOffset;\n    uint32_t SegmentationBitSize; \n    uint32_t LoopFilterParamsBitOffset;\n    uint32_t FrameHdrOBUSizeInBits;\n    uint32_t FrameHdrOBUSizeByteOffset;\n    uint32_t UncompressedHeaderByteOffset;\n    uint32_t CDEFParamsBitOffset;\n    uint32_t CDEFParamsSizeInBits;\n};\n\nstruct Av1InputParameters\n{\n    char* srcyuv;\n    char* recyuv;\n    char* output;\n    uint32_t profile;\n    \n    uint32_t order_hint_bits;\n    uint32_t enable_cdef;\n    uint32_t width;\n    uint32_t height;\n    uint32_t LDB;\n    uint32_t frame_rate_extN;\n    uint32_t frame_rate_extD;\n    uint32_t level;\n\n    // for brc\n    uint32_t bit_rate;\n    uint8_t MinBaseQIndex;\n    uint8_t MaxBaseQIndex;\n\n    uint32_t intra_period;\n    uint32_t ip_period;\n    uint32_t RateControlMethod;\n    uint32_t BRefType;\n    int encode_syncmode;\n    int calc_psnr;\n    int frame_count;\n    int frame_width_aligned;\n    int frame_height_aligned;\n    uint32_t base_qindex;\n    int bit_depth;\n    int target_bitrate;\n    int vbr_max_bitrate;\n    int buffer_size;\n    int initial_buffer_fullness;\n};\n\n\nstatic  VADisplay va_dpy;\nstatic  VAProfile av1_profile;\nstatic  VAEntrypoint entryPoint;\nstatic  VAConfigAttrib attrib[VAConfigAttribTypeMax];\nstatic  VAConfigAttrib config_attrib[VAConfigAttribTypeMax];\nstatic  int config_attrib_num = 0;\nstatic  VASurfaceID src_surface[SURFACE_NUM];\nstatic  VABufferID  coded_buf[SURFACE_NUM];\nstatic  VASurfaceID ref_surface[SURFACE_NUM];\nstatic  VAConfigID config_id;\nstatic  VAContextID context_id;\n\n// buffer \nstatic  VAEncSequenceParameterBufferAV1 seq_param;\nstatic  VAEncPictureParameterBufferAV1 pic_param;\nstatic  VAEncTileGroupBufferAV1 tile_group_param;\n\n// sh fh ips\nstatic  struct Av1InputParameters ips;\nstatic  FH fh;\nstatic  SH sh;\nstruct BitOffsets offsets;\n\n//Default entrypoint for Encode\nstatic VAEntrypoint requested_entrypoint = -1;\n\nstatic  unsigned long long current_frame_encoding = 0;\nstatic  unsigned long long current_frame_display = 0;\nstatic  int current_frame_type;\n#define current_slot (current_frame_display % SURFACE_NUM)\n\n/* thread to save coded data/upload source YUV */\nstruct storage_task_t {\n    void *next;\n    unsigned long long display_order;\n    unsigned long long encode_order;\n};\n\nstatic  struct storage_task_t *storage_task_header = NULL, *storage_task_tail = NULL;\n#define SRC_SURFACE_IN_ENCODING 0\n#define SRC_SURFACE_IN_STORAGE  1\nstatic  int srcsurface_status[SURFACE_NUM];\n//static  int encode_syncmode = 0; moved to input pars\nstatic  pthread_mutex_t encode_mutex = PTHREAD_MUTEX_INITIALIZER;\nstatic  pthread_cond_t  encode_cond = PTHREAD_COND_INITIALIZER;\nstatic  pthread_t encode_thread;\n\nstatic  FILE *coded_fp = NULL, *srcyuv_fp = NULL, *recyuv_fp = NULL;\nstatic  unsigned long long srcyuv_frames = 0;\nstatic  int srcyuv_fourcc = VA_FOURCC_IYUV;\n\nstatic  uint64_t frame_size = 0;\n\n/* for performance profiling */\nstatic unsigned int UploadPictureTicks = 0;\nstatic unsigned int BeginPictureTicks = 0;\nstatic unsigned int RenderPictureTicks = 0;\nstatic unsigned int EndPictureTicks = 0;\nstatic unsigned int SyncPictureTicks = 0;\nstatic unsigned int SavePictureTicks = 0;\nstatic unsigned int TotalTicks = 0;\n\nstatic  unsigned int frame_coded = 0;\n\nstatic  int rc_default_modes[] = {\n    VA_RC_VBR,\n    VA_RC_CQP,\n    VA_RC_VBR_CONSTRAINED,\n    VA_RC_CBR,\n    VA_RC_VCM,\n    VA_RC_NONE,\n};\n\nstatic int len_ivf_header;\nstatic int len_seq_header;\nstatic int len_pic_header;\n\n/*\n * Helper function for profiling purposes\n */\nstatic unsigned int GetTickCount()\n{\n    struct timeval tv;\n    if (gettimeofday(&tv, NULL))\n        return 0;\n    return tv.tv_usec / 1000 + tv.tv_sec * 1000;\n}\n\nstatic int string_to_fourcc(char *str)\n{\n    CHECK_NULL(str);\n    int fourcc;\n\n    if (!strncmp(str, \"NV12\", 4))\n        fourcc = VA_FOURCC_NV12;\n    else if (!strncmp(str, \"IYUV\", 4))\n        fourcc = VA_FOURCC_IYUV;\n    else if (!strncmp(str, \"YV12\", 4))\n        fourcc = VA_FOURCC_YV12;\n    else if (!strncmp(str, \"UYVY\", 4))\n        fourcc = VA_FOURCC_UYVY;\n    else {\n        printf(\"Unknow FOURCC\\n\");\n        fourcc = -1;\n    }\n    return fourcc;\n}\n\nstatic int string_to_rc(char *str)\n{\n    CHECK_NULL(str);\n    int rc_mode;\n\n    if (!strncmp(str, \"NONE\", 4))\n        rc_mode = VA_RC_NONE;\n    else if (!strncmp(str, \"CBR\", 3))\n        rc_mode = VA_RC_CBR;\n    else if (!strncmp(str, \"VBR\", 3))\n        rc_mode = VA_RC_VBR;\n    else if (!strncmp(str, \"VCM\", 3))\n        rc_mode = VA_RC_VCM;\n    else if (!strncmp(str, \"CQP\", 3))\n        rc_mode = VA_RC_CQP;\n    else if (!strncmp(str, \"VBR_CONSTRAINED\", 15))\n        rc_mode = VA_RC_VBR_CONSTRAINED;\n    else {\n        printf(\"Unknown RC mode\\n\");\n        rc_mode = -1;\n    }\n    return rc_mode;\n}\n\nstatic void print_help()\n{\n    printf(\"./av1encode <options>\\n\");\n    printf(\"   -n <frames> -f <frame rate> -o <output>\\n\");\n    printf(\"   --intra_period <number>\\n\");\n    printf(\"   --ip_period <number>\\n\");\n    printf(\"   --rcmode <16 for CQP>\\n\");\n    printf(\"   --srcyuv <filename> load YUV from a file\\n\");\n    printf(\"   --fourcc <NV12|IYUV|YV12> source YUV fourcc\\n\");\n    printf(\"   --recyuv <filename> save reconstructed YUV into a file\\n\");\n    printf(\"   --enablePSNR calculate PSNR of recyuv vs. srcyuv\\n\");\n    printf(\"   --level\\n\");\n    printf(\"   --height <number>\\n\");\n    printf(\"   --width <number>\\n\");\n    printf(\"   --base_q_idx <number> 1-255\\n\");\n    printf(\"   --normal_mode select VAEntrypointEncSlice as entrypoint\\n\");\n    printf(\"   --low_power_mode select VAEntrypointEncSliceLP as entrypoint\\n\");\n\n    printf(\" sample usage:\\n\");\n    printf(\"./av1encode -n 8 -f 30 --intra_period 4 --ip_period 1 --rcmode CQP --srcyuv ./input.yuv --recyuv ./rec.yuv --fourcc IYUV --level 8 --width 1920 --height 1080 --base_q_idx 128  -o ./out.av1 --LDB --low_power_mode\\n\"\n           \"./av1encode -n 8 -f 30 --intra_period 4 --ip_period 1 --rcmode CBR --srcyuv ./input.yuv --recyuv ./rec.yuv --fourcc IYUV --level 8 --width 1920 --height 1080 --target_bitrate 3360000 -o ./out.av1 --LDB --low_power_mode\\n\"\n           \"./av1encode -n 8 -f 30 --intra_period 4 --ip_period 1 --rcmode VBR --srcyuv ./input.yuv --recyuv ./rec.yuv --fourcc IYUV --level 8 --width 1920 --height 1080 --vbr_max_bitrate 3360000 -o ./out.av1 --LDB --low_power_mode\\n\");\n\n}\n\nstatic void process_cmdline(int argc, char *argv[])\n{\n    int c;\n    const struct option long_opts[] = {\n        {\"help\",            no_argument,        NULL, 0 },\n        {\"intra_period\",    required_argument,  NULL, 1 },\n        {\"ip_period\",       required_argument,  NULL, 2 },\n        {\"rcmode\",          required_argument,  NULL, 3 },\n        {\"srcyuv\",          required_argument,  NULL, 4 },\n        {\"recyuv\",          required_argument,  NULL, 5 },\n        {\"fourcc\",          required_argument,  NULL, 6 },\n        {\"syncmode\",        no_argument,        NULL, 7 },\n        {\"enablePSNR\",      no_argument,        NULL, 8 },\n        {\"level\",           required_argument,  NULL, 9 },\n        {\"height\",          required_argument,  NULL, 10 },\n        {\"width\",           required_argument,  NULL, 11 },\n        {\"base_q_idx\",      required_argument,  NULL, 12},\n        {\"LDB\",             no_argument,        NULL, 13},\n        {\"normal_mode\",     no_argument,        NULL, 14},\n        {\"low_power_mode\",  no_argument,        NULL, 15},\n        {\"target_bitrate\",  required_argument,  NULL, 16},\n        {\"vbr_max_bitrate\", required_argument,  NULL, 17},\n        {NULL,              no_argument,        NULL, 0 }\n    };\n\n    int long_index;\n    while ((c = getopt_long_only(argc, argv, \"n:f:o:t:m:u:d:?\", long_opts, &long_index)) != EOF)\n    {\n        switch (c) \n        {\n            case 'n':\n                ips.frame_count = atoi(optarg);\n                break;\n            case 'f':\n                ips.frame_rate_extN = (int)(atoi(optarg) * 100);\n                ips.frame_rate_extD = 100;\n                break;\n            case 'o':\n                ips.output = strdup(optarg);\n                break;\n            case 1:\n                ips.intra_period = atoi(optarg);\n                break;\n            case 2:\n                ips.ip_period = atoi(optarg);\n                break;\n            case 3:\n                ips.RateControlMethod = string_to_rc(optarg); //16:cqp 2:CBR 4:VBR\n                break;\n            case 4:\n                ips.srcyuv = strdup(optarg);\n                break;\n            case 5:\n                ips.recyuv = strdup(optarg);\n                break;\n            case 6:\n                srcyuv_fourcc = string_to_fourcc(optarg);\n                break;\n            case 7:\n                ips.encode_syncmode = 1;\n                break;\n            case 8:\n                ips.calc_psnr = 1;\n                break;\n            case 9:\n                ips.level = atoi(optarg);\n                break;\n            case 10:\n                ips.height = atoi(optarg);\n                ips.frame_height_aligned = (ips.height + 63) & (~63);\n                break;\n            case 11:\n                ips.width = atoi(optarg);\n                ips.frame_width_aligned = (ips.width + 63) & (~63);\n                break;\n            case 12:\n                ips.base_qindex = atoi(optarg);\n                break;\n            case 13:\n                ips.LDB = 1;\n                break;\n            case 14:\n                requested_entrypoint = VAEntrypointEncSlice;\n                break;\n            case 15:\n                requested_entrypoint = VAEntrypointEncSliceLP;\n                break;\n            case 't':\n            case 16:\n                ips.target_bitrate = atoi(optarg);\n                break;\n            case 'm':\n            case 17:\n                ips.vbr_max_bitrate = atoi(optarg);\n                break;\n            case 'u':\n                ips.buffer_size = atoi(optarg) * 8000;\n                break;\n            case 'd':\n                ips.initial_buffer_fullness = atoi(optarg) * 8000;\n                break;\n            case 0:\n            case ':':\n            case '?':\n                print_help();\n                exit(0);\n        }\n    }\n\n    // init other input parameters as default value\n    ips.MaxBaseQIndex = 255;\n    ips.MinBaseQIndex = 1;\n    ips.bit_depth = 8;\n\n    if (ips.frame_rate_extD == 0)\n    {\n        ips.frame_rate_extN = 3000;\n        ips.frame_rate_extD = 100;\n    }\n\n    int default_bitrate = (long long int) ips.height * ips.width * 12 * ips.frame_rate_extN / ips.frame_rate_extD / 50;\n    // For CBR, target bitrate should be set\n    if(ips.RateControlMethod == VA_RC_CBR)\n    {\n        if (ips.target_bitrate == 0)\n        {\n            ips.target_bitrate = default_bitrate;\n        }\n    }\n    // For VBR, max bitrate should be set\n    else if (ips.RateControlMethod == VA_RC_VBR)\n    {\n        if (ips.target_bitrate == 0 && ips.vbr_max_bitrate == 0)\n        {\n            ips.vbr_max_bitrate = default_bitrate;\n        }\n        else if (ips.vbr_max_bitrate == 0)\n        {\n            ips.vbr_max_bitrate = ips.target_bitrate;\n        }\n    }\n\n    // interface with IO\n    /* open source file */\n    if (ips.srcyuv) {\n        srcyuv_fp = fopen(ips.srcyuv, \"r\");\n\n        if (srcyuv_fp == NULL)\n            printf(\"Open source YUV file %s failed, use auto-generated YUV data\\n\", ips.srcyuv);\n        else {\n            struct stat tmp;\n\n            int ret = fstat(fileno(srcyuv_fp), &tmp);\n            CHECK_CONDITION(ret == 0);\n            srcyuv_frames = tmp.st_size / (ips.width * ips.height * 1.5);\n            printf(\"Source YUV file %s with %llu frames\\n\", ips.srcyuv, srcyuv_frames);\n\n            if (ips.frame_count == 0)\n                ips.frame_count = srcyuv_frames;\n        }\n    }\n\n    /* open source file */\n    if (ips.recyuv) {\n        recyuv_fp = fopen(ips.recyuv, \"w+\");\n\n        if (recyuv_fp == NULL)\n            printf(\"Open reconstructed YUV file %s failed\\n\", ips.recyuv);\n    }\n\n    if (ips.output == NULL) {\n        struct stat buf;\n        if (stat(\"/tmp\", &buf) == 0)\n            ips.output = strdup(\"/tmp/test.av1\");\n        else if (stat(\"/sdcard\", &buf) == 0)\n            ips.output = strdup(\"/sdcard/test.av1\");\n        else\n            ips.output = strdup(\"./test.av1\");\n    }\n\n    /* store coded data into a file */\n    if (ips.output) {\n        coded_fp = fopen(ips.output, \"w+\");\n    } else {\n        printf(\"Copy file string failed\");\n        exit(1);\n    }\n    if (coded_fp == NULL) {\n        printf(\"Open file %s failed, exit\\n\", ips.output);\n        exit(1);\n    }\n\n}\n\nstatic char *rc_to_string(int rcmode)\n{\n    switch (rcmode) {\n    case VA_RC_NONE:\n        return \"NONE\";\n    case VA_RC_CBR:\n        return \"CBR\";\n    case VA_RC_VBR:\n        return \"VBR\";\n    case VA_RC_VCM:\n        return \"VCM\";\n    case VA_RC_CQP:\n        return \"CQP\";\n    case VA_RC_VBR_CONSTRAINED:\n        return \"VBR_CONSTRAINED\";\n    default:\n        return \"Unknown\";\n    }\n}\n\nstatic int print_input()\n{\n    printf(\"frame count: %d \\n\", ips.frame_count);\n    printf(\"frame rate: %d \\n\", ips.frame_rate_extN / ips.frame_rate_extD);\n    printf(\"Intra period: %d \\n\", ips.intra_period);\n    printf(\"Gop ref dist: %d \\n\", ips.ip_period);\n    printf(\"rcmode: %s \\n\", rc_to_string(ips.RateControlMethod));\n    printf(\"source yuv: %s \\n\", ips.srcyuv);\n    printf(\"recon yuv: %s \\n\", ips.recyuv);\n    printf(\"output bitstream: %s \\n\", ips.output);\n    printf(\"level index: %d \\n\", ips.level);\n    printf(\"frame height: %d \\n\", ips.height);\n    printf(\"frame width: %d \\n\", ips.width);\n    printf(\"base_q_index: %d \\n\", ips.base_qindex);\n    printf(\"target_bitrate: %d bps\\n\", ips.target_bitrate);\n    printf(\"vbr_max_bitrate: %d bps\\n\", ips.vbr_max_bitrate);\n    return 0;\n}\n\nstatic int init_va(void)\n{\n    va_dpy = va_open_display();\n    VAStatus va_status;\n    int major_ver, minor_ver;\n    va_status = vaInitialize(va_dpy, &major_ver, &minor_ver);\n    CHECK_VASTATUS(va_status, \"vaInitialize\");\n    av1_profile = VAProfileAV1Profile0;\n\n    // select entrypoint\n\n    int num_entrypoints = vaMaxNumEntrypoints(va_dpy);\n    VAEntrypoint* entrypoints = malloc(num_entrypoints * sizeof(*entrypoints));\n    if (!entrypoints) {\n        fprintf(stderr, \"error: failed to initialize VA entrypoints array\\n\");\n        exit(1);\n    }\n\n    vaQueryConfigEntrypoints(va_dpy, av1_profile, entrypoints, &num_entrypoints);\n    int support_encode = 0;\n    for (int slice_entrypoint = 0; slice_entrypoint < num_entrypoints; slice_entrypoint++) \n    {\n        if (requested_entrypoint == -1) {\n            //Select the entry point based on what is avaiable\n            if ((entrypoints[slice_entrypoint] == VAEntrypointEncSlice) ||\n                (entrypoints[slice_entrypoint] == VAEntrypointEncSliceLP)) {\n                support_encode = 1;\n                entryPoint = entrypoints[slice_entrypoint];\n                break;\n            }\n        } else if ((entrypoints[slice_entrypoint] == requested_entrypoint)) {\n            //Select the entry point based on what was requested in cmd line option\n            support_encode = 1;\n            entryPoint = entrypoints[slice_entrypoint];\n            break;\n        }\n    }\n\n    if(entrypoints)\n        free(entrypoints);\n\n    if (support_encode == 0) {\n        printf(\"Can't find avaiable or requested entrypoints for AV1 profiles\\n\");\n        exit(1);\n    }\n\n    unsigned int i;\n    for (i = 0; i < VAConfigAttribTypeMax; i++)\n    attrib[i].type = i;\n\n\n    va_status = vaGetConfigAttributes(va_dpy, av1_profile, entryPoint,\n                                      &attrib[0], VAConfigAttribTypeMax);\n    CHECK_VASTATUS(va_status, \"vaGetConfigAttributes\");\n    /* check the interested configattrib */\n    if ((attrib[VAConfigAttribRTFormat].value & VA_RT_FORMAT_YUV420) == 0) {\n        printf(\"Not find desired YUV420 RT format\\n\");\n        exit(1);\n    } else {\n        config_attrib[config_attrib_num].type = VAConfigAttribRTFormat;\n        config_attrib[config_attrib_num].value = VA_RT_FORMAT_YUV420;\n        config_attrib_num++;\n    }\n\n    if (attrib[VAConfigAttribRateControl].value != VA_ATTRIB_NOT_SUPPORTED) {\n        int tmp = attrib[VAConfigAttribRateControl].value;\n\n        printf(\"Support rate control mode (0x%x):\", tmp);\n\n        if (tmp & VA_RC_NONE)\n            printf(\"NONE \");\n        if (tmp & VA_RC_CBR)\n            printf(\"CBR \");\n        if (tmp & VA_RC_VBR)\n            printf(\"VBR \");\n        if (tmp & VA_RC_VCM)\n            printf(\"VCM \");\n        if (tmp & VA_RC_CQP)\n            printf(\"CQP \");\n        if (tmp & VA_RC_VBR_CONSTRAINED)\n            printf(\"VBR_CONSTRAINED \");\n\n        printf(\"\\n\");\n\n        if (ips.RateControlMethod == -1 || !(ips.RateControlMethod & tmp))  {\n            if (ips.RateControlMethod != -1) {\n                printf(\"Warning: Don't support the specified RateControl mode: %s!!!, switch to \", rc_to_string(ips.RateControlMethod));\n            }\n\n            for (i = 0; i < sizeof(rc_default_modes) / sizeof(rc_default_modes[0]); i++) {\n                if (rc_default_modes[i] & tmp) {\n                    ips.RateControlMethod = rc_default_modes[i];\n                    break;\n                }\n            }\n\n            printf(\"RateControl mode: %s\\n\", rc_to_string(ips.RateControlMethod));\n        }\n\n        config_attrib[config_attrib_num].type = VAConfigAttribRateControl;\n        config_attrib[config_attrib_num].value = ips.RateControlMethod;\n        config_attrib_num++;\n    }\n\n\n    if (attrib[VAConfigAttribEncPackedHeaders].value != VA_ATTRIB_NOT_SUPPORTED) {\n        int tmp = attrib[VAConfigAttribEncPackedHeaders].value;\n\n        printf(\"Support VAConfigAttribEncPackedHeaders\\n\");\n\n        config_attrib[config_attrib_num].type = VAConfigAttribEncPackedHeaders;\n        config_attrib[config_attrib_num].value = VA_ENC_PACKED_HEADER_NONE;\n\n        if (tmp & VA_ENC_PACKED_HEADER_SEQUENCE) {\n            printf(\"Support packed sequence headers\\n\");\n            config_attrib[config_attrib_num].value |= VA_ENC_PACKED_HEADER_SEQUENCE;\n        }\n\n        if (tmp & VA_ENC_PACKED_HEADER_PICTURE) {\n            printf(\"Support packed picture headers\\n\");\n            config_attrib[config_attrib_num].value |= VA_ENC_PACKED_HEADER_PICTURE;\n        }\n\n        if (tmp & VA_ENC_PACKED_HEADER_SLICE) {\n            printf(\"Support packed slice headers\\n\");\n            config_attrib[config_attrib_num].value |= VA_ENC_PACKED_HEADER_SLICE;\n        }\n\n        if (tmp & VA_ENC_PACKED_HEADER_MISC) {\n            printf(\"Support packed misc headers\\n\");\n            config_attrib[config_attrib_num].value |= VA_ENC_PACKED_HEADER_MISC;\n        }\n\n        config_attrib_num++;\n    }\n\n    if (attrib[VAConfigAttribEncInterlaced].value != VA_ATTRIB_NOT_SUPPORTED) {\n        int tmp = attrib[VAConfigAttribEncInterlaced].value;\n\n        printf(\"Support VAConfigAttribEncInterlaced\\n\");\n\n        if (tmp & VA_ENC_INTERLACED_FRAME)\n            printf(\"support VA_ENC_INTERLACED_FRAME\\n\");\n        if (tmp & VA_ENC_INTERLACED_FIELD)\n            printf(\"Support VA_ENC_INTERLACED_FIELD\\n\");\n        if (tmp & VA_ENC_INTERLACED_MBAFF)\n            printf(\"Support VA_ENC_INTERLACED_MBAFF\\n\");\n        if (tmp & VA_ENC_INTERLACED_PAFF)\n            printf(\"Support VA_ENC_INTERLACED_PAFF\\n\");\n\n        config_attrib[config_attrib_num].type = VAConfigAttribEncInterlaced;\n        config_attrib[config_attrib_num].value = VA_ENC_PACKED_HEADER_NONE;\n        config_attrib_num++;\n    }\n\n    return 0;\n}\n\nstatic int setup_encode()\n{\n    VAStatus va_status;\n    VASurfaceID *tmp_surfaceid;\n    int codedbuf_size, i;\n\n    va_status = vaCreateConfig(va_dpy, av1_profile, entryPoint,\n                               &config_attrib[0], config_attrib_num, &config_id);\n    CHECK_VASTATUS(va_status, \"vaCreateConfig\");\n\n    /* create source surfaces */\n    va_status = vaCreateSurfaces(va_dpy,\n                                 VA_RT_FORMAT_YUV420, ips.frame_width_aligned, ips.frame_height_aligned,\n                                 &src_surface[0], SURFACE_NUM,\n                                 NULL, 0);\n    CHECK_VASTATUS(va_status, \"vaCreateSurfaces\");\n\n    /* create reference surfaces */\n    va_status = vaCreateSurfaces(\n                    va_dpy,\n                    VA_RT_FORMAT_YUV420, ips.frame_width_aligned, ips.frame_height_aligned,\n                    &ref_surface[0], SURFACE_NUM,\n                    NULL, 0\n                );\n    CHECK_VASTATUS(va_status, \"vaCreateSurfaces\");\n\n    tmp_surfaceid = calloc(2 * SURFACE_NUM, sizeof(VASurfaceID));\n    if (tmp_surfaceid) {\n        memcpy(tmp_surfaceid, src_surface, SURFACE_NUM * sizeof(VASurfaceID));\n        memcpy(tmp_surfaceid + SURFACE_NUM, ref_surface, SURFACE_NUM * sizeof(VASurfaceID));\n    }\n\n    /* Create a context for this encode pipe */\n    va_status = vaCreateContext(va_dpy, config_id,\n                                ips.frame_width_aligned, ips.frame_height_aligned,\n                                VA_PROGRESSIVE,\n                                tmp_surfaceid, 2 * SURFACE_NUM,\n                                &context_id);\n    CHECK_VASTATUS(va_status, \"vaCreateContext\");\n    free(tmp_surfaceid);\n\n    codedbuf_size = ((long long int) ips.frame_width_aligned * ips.frame_height_aligned * 400) / (16 * 16);\n\n    for (i = 0; i < SURFACE_NUM; i++) {\n        /* create coded buffer once for all\n         * other VA buffers which won't be used again after vaRenderPicture.\n         * so APP can always vaCreateBuffer for every frame\n         * but coded buffer need to be mapped and accessed after vaRenderPicture/vaEndPicture\n         * so VA won't maintain the coded buffer\n         */\n        va_status = vaCreateBuffer(va_dpy, context_id, VAEncCodedBufferType,\n                                   codedbuf_size, 1, NULL, &coded_buf[i]);\n        CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n    }\n\n    return 0;\n}\n\nstatic int release_encode()\n{\n    int i;\n\n    vaDestroySurfaces(va_dpy, &src_surface[0], SURFACE_NUM);\n    vaDestroySurfaces(va_dpy, &ref_surface[0], SURFACE_NUM);\n\n    for (i = 0; i < SURFACE_NUM; i++)\n        vaDestroyBuffer(va_dpy, coded_buf[i]);\n\n    vaDestroyContext(va_dpy, context_id);\n    vaDestroyConfig(va_dpy, config_id);\n\n    return 0;\n}\n\nstatic int deinit_va()\n{\n    vaTerminate(va_dpy);\n\n    va_close_display(va_dpy);\n\n    return 0;\n}\n\n/*\n * Return displaying order with specified periods and encoding order\n * displaying_order: displaying order\n * frame_type: frame type\n */\nvoid encoding2display_order(\n    unsigned long long encoding_order, int intra_period,\n    unsigned long long *displaying_order,\n    int *frame_type)\n{\n\n    // simple case for IPPP av1\n\n    *displaying_order = encoding_order;\n    // all KEY FRAME *frame_type = KEY_FRAME;\n    *frame_type = (encoding_order % intra_period) ? INTER_FRAME : KEY_FRAME;\n    return;\n\n}\n\nstatic void\nfill_sps_header()\n{\n    memset(&sh, 0, sizeof(sh));\n\n    sh.seq_level_idx[0] = ips.level;\n\n    sh.frame_width_bits = 15;\n    sh.frame_height_bits = 15;\n    sh.sbSize = 64;\n    sh.order_hint_bits_minus1 = 8 - 1;\n    sh.enable_cdef = 1;\n    sh.enable_order_hint = 1;\n    sh.color_config.separate_uv_delta_q = 1;\n\n}\n\nstatic void\nfill_pps_header(uint64_t displaying_order)\n{\n    fh.show_existing_frame = 0;\n    fh.frame_to_show_map_idx = 0;\n    fh.frame_presentation_time = 0;\n    fh.display_frame_id = 0;\n    fh.frame_type = current_frame_type;\n    fh.show_frame = 1;\n    fh.showable_frame = 1;\n    fh.error_resilient_mode = (fh.frame_type == KEY_FRAME) ? 1 : 0;\n    fh.disable_cdf_update = 0;\n    fh.allow_screen_content_tools = 0;\n    fh.force_integer_mv = 0;\n    fh.frame_size_override_flag = 0;\n    fh.order_hint = displaying_order; //for I/P frame\n    fh.primary_ref_frame = (fh.frame_type == KEY_FRAME || fh.frame_type == INTRA_ONLY_FRAME) ? PRIMARY_REF_NONE : 0;\n    // depends on reference frames\n    // by default, always refresh idx0\n    fh.refresh_frame_flags = (fh.frame_type == KEY_FRAME || fh.frame_type == INTRA_ONLY_FRAME) ? 0xff : 0x01;\n    fh.FrameWidth = ips.width;\n    fh.FrameHeight = ips.height;\n    fh.use_superres = 0;\n    fh.SuperresDenom = 0;\n    fh.UpscaledWidth = fh.FrameWidth;\n    fh.RenderWidth = fh.FrameWidth;\n    fh.RenderHeight = fh.FrameHeight;\n    fh.allow_intrabc = 0;\n    for(uint8_t i = 0; i < REFS_PER_FRAME; i++)\n        fh.ref_frame_idx[i] = 0;\n    fh.allow_high_precision_mv = 0;\n    fh.interpolation_filter = 0; \n    fh.use_ref_frame_mvs = 0;\n    fh.disable_frame_end_update_cdf = 0;\n    fh.sbCols = ((fh.FrameWidth+63)&(~63))/64;\n    fh.sbRows = ((fh.FrameHeight+63)&(~63))/64;\n    fh.sbSize = 64;\n    fh.tile_info.uniform_tile_spacing_flag = 1;\n    fh.tile_info.context_update_tile_id = 0;\n    fh.quantization_params.base_q_idx = ips.base_qindex;\n    fh.quantization_params.DeltaQYDc = 0;\n    fh.quantization_params.DeltaQUDc = 0;\n    fh.quantization_params.DeltaQUAc = 0;\n    fh.quantization_params.DeltaQVDc = 0;\n    fh.quantization_params.DeltaQVAc = 0;\n    fh.quantization_params.using_qmatrix = 0;\n    fh.quantization_params.qm_y = 15;\n    fh.quantization_params.qm_u = 15;\n    fh.quantization_params.qm_v = 15;\n    fh.delta_q_present = 0;\n    fh.delta_q_res = 0;\n    fh.delta_lf_present = 1;\n    fh.delta_lf_res = 0;\n    fh.delta_lf_multi = 1;\n    fh.CodedLossless = 0;\n    fh.AllLossless = 0;\n    fh.cdef_params.cdef_damping = 5;\n    fh.cdef_params.cdef_bits = 3;\n    fh.cdef_params.cdef_y_pri_strength[0] = 9;\n    fh.cdef_params.cdef_y_sec_strength[0] = 0;\n    fh.cdef_params.cdef_uv_pri_strength[0] = 9;\n    fh.cdef_params.cdef_uv_sec_strength[0] = 0;\n\n    fh.cdef_params.cdef_y_pri_strength[1] = 12;\n    fh.cdef_params.cdef_y_sec_strength[1] = 2;\n    fh.cdef_params.cdef_uv_pri_strength[1] = 12;\n    fh.cdef_params.cdef_uv_sec_strength[1] = 2;\n\n    fh.cdef_params.cdef_y_pri_strength[2] = 0;\n    fh.cdef_params.cdef_y_sec_strength[2] = 0;\n    fh.cdef_params.cdef_uv_pri_strength[2] = 0;\n    fh.cdef_params.cdef_uv_sec_strength[2] = 0;\n\n    fh.cdef_params.cdef_y_pri_strength[3] = 6;\n    fh.cdef_params.cdef_y_sec_strength[3] = 0;\n    fh.cdef_params.cdef_uv_pri_strength[3] = 6;\n    fh.cdef_params.cdef_uv_sec_strength[3] = 0;\n\n    fh.cdef_params.cdef_y_pri_strength[4] = 2;\n    fh.cdef_params.cdef_y_sec_strength[4] = 0;\n    fh.cdef_params.cdef_uv_pri_strength[4] = 2;\n    fh.cdef_params.cdef_uv_sec_strength[4] = 0;\n\n    fh.cdef_params.cdef_y_pri_strength[5] = 4;\n    fh.cdef_params.cdef_y_sec_strength[5] = 1;\n    fh.cdef_params.cdef_uv_pri_strength[5] = 4;\n    fh.cdef_params.cdef_uv_sec_strength[5] = 1;\n\n    fh.cdef_params.cdef_y_pri_strength[6] = 1;\n    fh.cdef_params.cdef_y_sec_strength[6] = 0;\n    fh.cdef_params.cdef_uv_pri_strength[6] = 1;\n    fh.cdef_params.cdef_uv_sec_strength[6] = 0;\n\n    fh.cdef_params.cdef_y_pri_strength[7] = 2;\n    fh.cdef_params.cdef_y_sec_strength[7] = 1;\n    fh.cdef_params.cdef_uv_pri_strength[7] = 2;\n    fh.cdef_params.cdef_uv_sec_strength[7] = 1;\n\n    fh.loop_filter_params.loop_filter_level[0] = 15;\n    fh.loop_filter_params.loop_filter_level[1] = 15;\n    fh.loop_filter_params.loop_filter_level[2] = 8;\n    fh.loop_filter_params.loop_filter_level[3] = 8;\n\n    fh.loop_filter_params.loop_filter_sharpness = 0;\n    fh.loop_filter_params.loop_filter_delta_enabled = 0;\n    fh.loop_filter_params.loop_filter_delta_update = 0;\n\n    fh.TxMode = TX_MODE_SELECT;\n    fh.reference_select = ips.LDB ? 1 : 0;\n    fh.skipModeAllowed = 0;\n    fh.skipModeFrame[0] = 0;\n    fh.skipModeFrame[1] = 0;\n    fh.allow_warped_motion = 0;\n    fh.reduced_tx_set = 1;\n}\n\n// brief interface with va, render bitstream\nstatic void\nva_render_packed_data(bitstream* bs)\n{\n    CHECK_BS_NULL(bs);\n    VAEncPackedHeaderParameterBuffer packedheader_param_buffer;\n    VABufferID packed_para_bufid = VA_INVALID_ID;\n    VABufferID packed_data_bufid = VA_INVALID_ID;\n    VABufferID render_id[2] = {VA_INVALID_ID};\n    unsigned int length_in_bits = bs->bit_offset;\n\n    unsigned char *packedpic_buffer = bs->buffer;\n    VAStatus va_status;\n\n    packedheader_param_buffer.type = VAEncPackedHeaderPicture; \n    packedheader_param_buffer.bit_length = length_in_bits;\n    packedheader_param_buffer.has_emulation_bytes = 0;\n\n    va_status = vaCreateBuffer(va_dpy,\n                               context_id,\n                               VAEncPackedHeaderParameterBufferType,\n                               sizeof(packedheader_param_buffer), 1, &packedheader_param_buffer,\n                               &packed_para_bufid);\n    CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n    va_status = vaCreateBuffer(va_dpy,\n                               context_id,\n                               VAEncPackedHeaderDataBufferType,\n                               (length_in_bits + 7) / 8, 1, packedpic_buffer,\n                               &packed_data_bufid);\n    CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n    render_id[0] = packed_para_bufid;\n    render_id[1] = packed_data_bufid;\n    va_status = vaRenderPicture(va_dpy, context_id, render_id, 2);\n    CHECK_VASTATUS(va_status, \"vaRenderPicture\");\n\n    //free(packedpic_buffer); free outside this function call\n\n    if (packed_para_bufid != VA_INVALID_ID) {\n        vaDestroyBuffer(va_dpy, packed_para_bufid);\n        packed_para_bufid = VA_INVALID_ID;\n    }\n    if (packed_data_bufid != VA_INVALID_ID) {\n        vaDestroyBuffer(va_dpy, packed_data_bufid);\n        packed_data_bufid = VA_INVALID_ID;\n    }\n}\n\nstatic void\nrender_ivf_frame_header()\n{\n    // write 12 empty byte to driver\n    // IVF frame header is filled after encoding\n    // first 4 byte is u32 for bit stream length\n    // last 8 byte is u64 for display order\n    bitstream bs;\n    bitstream_start(&bs);\n\n    for (size_t i = 0; i < 12; i++)\n    {\n        put_ui(&bs, 0x00, 8);\n    }\n\n    va_render_packed_data(&bs);\n\n    bitstream_free(&bs);\n}\n\nstatic void\nrender_ivf_header()\n{\n    bitstream bs;\n    bitstream_start(&bs);\n    uint32_t ivfSeqHeader[11] = {0x46494B44, 0x00200000, 0x31305641,\n    (uint32_t)(fh.UpscaledWidth + (fh.FrameHeight << 16)),\n    ips.frame_rate_extN,// FrameRateExtN\n    ips.frame_rate_extD,// FrameRateExtD\n    ips.frame_count/*numFramesInFile*/,\n    0x00000000,\n    0,0,0 };\n\n    // \n    uint8_t* hdr = (uint8_t*) ivfSeqHeader;\n    for (size_t i = 0; i < 44; i++)\n    {\n        put_ui(&bs, hdr[i], 8);\n    }\n\n    va_render_packed_data(&bs);\n\n    bitstream_free(&bs);\n}\n\nstatic void\nrender_TD()\n{\n    // OBU_TEMPORAL_DELIMITER\n    bitstream bs;\n    bitstream_start(&bs);\n    put_ui(&bs, 0x12, 8);\n    put_ui(&bs, 0x00, 8);\n\n    va_render_packed_data(&bs);\n\n    bitstream_free(&bs);\n}\n\nstatic void\nbuild_sps_buffer(VAEncSequenceParameterBufferAV1* sps)\n{\n    CHECK_NULL(sps);\n\n    sps->seq_profile = (uint8_t)sh.seq_profile;\n    sps->seq_level_idx = (uint8_t)(sh.seq_level_idx[0]);\n\n    sps->intra_period = ips.intra_period;\n    sps->ip_period    = ips.ip_period;\n\n    if (ips.RateControlMethod == VA_RC_CBR)\n    {\n        sps->bits_per_second = ips.target_bitrate;\n    }\n    else if (ips.RateControlMethod == VA_RC_VBR)\n    {\n        sps->bits_per_second = ips.vbr_max_bitrate;\n    }\n\n    sps->order_hint_bits_minus_1 = (uint8_t)(sh.order_hint_bits_minus1);\n\n    sps->seq_fields.bits.still_picture              = sh.still_picture;\n    sps->seq_fields.bits.enable_filter_intra        = sh.enable_filter_intra;\n    sps->seq_fields.bits.enable_intra_edge_filter   = sh.enable_intra_edge_filter;\n    sps->seq_fields.bits.enable_interintra_compound = sh.enable_interintra_compound;\n    sps->seq_fields.bits.enable_masked_compound     = sh.enable_masked_compound;\n    sps->seq_fields.bits.enable_warped_motion       = sh.enable_warped_motion;\n    sps->seq_fields.bits.enable_dual_filter         = sh.enable_dual_filter;\n    sps->seq_fields.bits.enable_order_hint          = sh.enable_order_hint;\n    sps->seq_fields.bits.enable_jnt_comp            = sh.enable_jnt_comp;\n    sps->seq_fields.bits.enable_ref_frame_mvs       = sh.enable_ref_frame_mvs;\n    sps->seq_fields.bits.enable_superres            = sh.enable_superres;\n    sps->seq_fields.bits.enable_cdef                = sh.enable_cdef;\n    sps->seq_fields.bits.enable_restoration         = sh.enable_restoration;\n    sps->seq_fields.bits.bit_depth_minus8           = ips.bit_depth - 8;\n    sps->seq_fields.bits.subsampling_x              = 0;\n    sps->seq_fields.bits.subsampling_y              = 0;\n}\n\nstatic void\nrender_sequence()\n{\n    VABufferID seq_param_buf_id = VA_INVALID_ID;\n    VAStatus va_status;\n\n    VAEncSequenceParameterBufferAV1 sps_buffer;\n    memset(&sps_buffer, 0, sizeof(sps_buffer));\n    build_sps_buffer(&sps_buffer);\n\n    va_status = vaCreateBuffer(va_dpy, context_id, VAEncSequenceParameterBufferType,\n                               sizeof(sps_buffer), 1, &sps_buffer, &seq_param_buf_id);\n    CHECK_VASTATUS(va_status, \"vaCreateBuffer\");;\n\n    va_status = vaRenderPicture(va_dpy, context_id, &seq_param_buf_id, 1);\n    CHECK_VASTATUS(va_status, \"vaRenderPicture\");\n\n    if (seq_param_buf_id != VA_INVALID_ID) {\n        vaDestroyBuffer(va_dpy, seq_param_buf_id);\n        seq_param_buf_id = VA_INVALID_ID;\n    }\n}\n\nstatic void\nrender_rc_buffer()\n{\n    VABufferID rc_param_buf = VA_INVALID_ID;\n    VAStatus va_status;\n    VABufferID render_id = VA_INVALID_ID;\n\n    VAEncMiscParameterBuffer *misc_param;\n    VAEncMiscParameterRateControl *misc_rate_ctrl;\n\n    va_status = vaCreateBuffer(va_dpy, context_id,\n                            VAEncMiscParameterBufferType,\n                            sizeof(VAEncMiscParameterBuffer) + sizeof(VAEncMiscParameterRateControl),\n                            1, NULL, &rc_param_buf);\n    CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n    vaMapBuffer(va_dpy, rc_param_buf, (void **)&misc_param);\n    misc_param->type = VAEncMiscParameterTypeRateControl;\n    misc_rate_ctrl = (VAEncMiscParameterRateControl *)misc_param->data;\n    memset(misc_rate_ctrl, 0, sizeof(*misc_rate_ctrl));\n    if (ips.RateControlMethod == VA_RC_CBR)\n    {\n        misc_rate_ctrl->bits_per_second = ips.target_bitrate;\n    }\n    else if (ips.RateControlMethod == VA_RC_VBR)\n    {\n        misc_rate_ctrl->bits_per_second = ips.vbr_max_bitrate;\n        if (ips.target_bitrate != 0)\n        {\n            misc_rate_ctrl->target_percentage = MIN(100, (uint32_t) (100.0 * ips.target_bitrate / ips.vbr_max_bitrate));\n        }\n    }\n\n    vaUnmapBuffer(va_dpy, rc_param_buf);\n\n    render_id = rc_param_buf;\n\n    va_status = vaRenderPicture(va_dpy, context_id, &render_id, 1);\n    CHECK_VASTATUS(va_status, \"vaRenderPicture\");\n\n    if (rc_param_buf != VA_INVALID_ID) \n    {\n        vaDestroyBuffer(va_dpy, rc_param_buf);\n        rc_param_buf = VA_INVALID_ID;\n    }\n}\n\nstatic void\nrender_hrd_buffer()\n{\n    VABufferID param_buf = VA_INVALID_ID;\n    VAStatus va_status;\n    VABufferID render_id = VA_INVALID_ID;\n\n    VAEncMiscParameterBuffer *misc_param;\n    VAEncMiscParameterHRD *misc_hrd;\n\n    va_status = vaCreateBuffer(va_dpy, context_id,\n                            VAEncMiscParameterBufferType,\n                            sizeof(VAEncMiscParameterBuffer) + sizeof(VAEncMiscParameterHRD),\n                            1, NULL, &param_buf);\n    CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n    vaMapBuffer(va_dpy, param_buf, (void **)&misc_param);\n    misc_param->type = VAEncMiscParameterTypeHRD;\n    misc_hrd = (VAEncMiscParameterHRD *)misc_param->data;\n    memset(misc_hrd, 0, sizeof(*misc_hrd));\n\n    misc_hrd->initial_buffer_fullness = ips.initial_buffer_fullness;\n    misc_hrd->buffer_size = ips.buffer_size;\n\n    vaUnmapBuffer(va_dpy, param_buf);\n\n    render_id = param_buf;\n\n    va_status = vaRenderPicture(va_dpy, context_id, &render_id, 1);\n    CHECK_VASTATUS(va_status, \"vaRenderPicture\");\n\n    if (param_buf != VA_INVALID_ID) \n    {\n        vaDestroyBuffer(va_dpy, param_buf);\n        param_buf = VA_INVALID_ID;\n    }\n}\n\nstatic void\nrender_fr_buffer()\n{\n    VABufferID param_buf = VA_INVALID_ID;\n    VAStatus va_status;\n    VABufferID render_id = VA_INVALID_ID;\n\n    VAEncMiscParameterBuffer *misc_param;\n    VAEncMiscParameterFrameRate *misc_fr;\n\n    va_status = vaCreateBuffer(va_dpy, context_id,\n                            VAEncMiscParameterBufferType,\n                            sizeof(VAEncMiscParameterBuffer) + sizeof(VAEncMiscParameterFrameRate),\n                            1, NULL, &param_buf);\n    CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n    vaMapBuffer(va_dpy, param_buf, (void **)&misc_param);\n    misc_param->type = VAEncMiscParameterTypeFrameRate;\n    misc_fr = (VAEncMiscParameterFrameRate *)misc_param->data;\n    memset(misc_fr, 0, sizeof(*misc_fr));\n\n    misc_fr->framerate = ips.frame_rate_extN | (ips.frame_rate_extD << 16);\n\n    vaUnmapBuffer(va_dpy, param_buf);\n\n    render_id = param_buf;\n\n    va_status = vaRenderPicture(va_dpy, context_id, &render_id, 1);\n    CHECK_VASTATUS(va_status, \"vaRenderPicture\");\n\n    if (param_buf != VA_INVALID_ID) \n    {\n        vaDestroyBuffer(va_dpy, param_buf);\n        param_buf = VA_INVALID_ID;\n    }\n}\n\nstatic void\nrender_misc_buffer()\n{\n    render_rc_buffer();\n    if (ips.buffer_size != 0 || ips.initial_buffer_fullness != 0)\n    {\n        render_hrd_buffer();\n    }\n    render_fr_buffer();\n}\n\nstatic void\nrender_tile_group()\n{\n    VABufferID tile_param_buf_id = VA_INVALID_ID;\n    VAStatus va_status;\n\n    VAEncTileGroupBufferAV1 tile_group_buffer = {0}; //default setting\n\n    va_status = vaCreateBuffer(va_dpy, context_id, VAEncSliceParameterBufferType,\n                               sizeof(tile_group_buffer), 1, &tile_group_buffer, &tile_param_buf_id);\n    CHECK_VASTATUS(va_status, \"vaCreateBuffer\");;\n\n    va_status = vaRenderPicture(va_dpy, context_id, &tile_param_buf_id, 1);\n    CHECK_VASTATUS(va_status, \"vaRenderPicture\");\n\n    if (tile_param_buf_id != VA_INVALID_ID) {\n        vaDestroyBuffer(va_dpy, tile_param_buf_id);\n        tile_param_buf_id = VA_INVALID_ID;\n    }\n}\n\nstatic void\npack_obu_header(bitstream *bs, int obu_type, uint32_t obu_extension_flag)\n{\n    put_ui(bs, 0, 1); //obu_forbidden_bit\n    put_ui(bs, obu_type, 4); //type\n    put_ui(bs, obu_extension_flag, 1);\n    put_ui(bs, 1, 1); //obu_has_size_field\n    put_ui(bs, 0, 1); //reserved\n\n    if (obu_extension_flag) {\n        //  Obu Extension Header\n        // not written to bitstream by default\n    }\n}\n\nstatic void\npack_obu_header_size(bitstream *bs, \n                    uint32_t value,\n                    uint8_t fixed_output_len)\n{\n    // pack leb128\n    uint64_t leb128_buf = 0;\n    uint8_t leb128_size = 0;\n\n    uint8_t* buf = (uint8_t*)(&leb128_buf);\n\n    if (!fixed_output_len)\n    {\n        // general encoding\n        do {\n            buf[leb128_size] = value & 0x7fU;\n            if (value >>= 7)\n            {\n                buf[leb128_size] |= 0x80U;\n            }\n            leb128_size++;\n        } while (value);\n    }\n    else\n    {\n        // get fixed len of output, in this case, LEB128 will have fixed length\n        uint8_t value_byte_count = 0;\n        do {\n            buf[value_byte_count++] = value & 0x7fU;\n            value >>= 7;\n        } while (value);\n\n        for (int i = 0; i < fixed_output_len - 1; i++)\n        {\n            buf[i] |= 0x80U;\n            leb128_size++;\n        }\n        leb128_size++;\n    }\n\n    // write to bitstream\n    const uint8_t* ptr = (uint8_t*)(&leb128_buf);\n    for (uint8_t i = 0; i < leb128_size; i++)\n        put_ui(bs, ptr[i], 8);\n}\n\nstatic void\npack_operating_points(bitstream* bs)\n{\n    put_ui(bs, sh.operating_points_cnt_minus_1, 5);\n    \n    for(uint8_t i = 0;i <= sh.operating_points_cnt_minus_1;i++)\n    {\n        //put_ui(bs, sh.operating_point_idc[i], 12);\n        put_ui(bs, sh.operating_point_idc[i] >> 4, 8);\n        put_ui(bs, sh.operating_point_idc[i] & 0x9f, 4);\n        \n        put_ui(bs, sh.seq_level_idx[i], 5);\n        if(sh.seq_level_idx[i]>7)\n            put_ui(bs, sh.seq_tier[i], 1);\n    }\n}\n\nstatic void\npack_frame_size_info(bitstream* bs)\n{\n    //pack frame size info\n    put_ui(bs, 15, 4);//frame_width_bits_minus_1\n    put_ui(bs, 15, 4);//frame_height_bits_minus_1\n    put_ui(bs, fh.UpscaledWidth - 1, 16);//max_frame_width_minus_1\n    put_ui(bs, fh.FrameHeight - 1, 16);//max_frame_height_minus_1\n    // end of pack frame size info\n}\n\nstatic void\npack_seq_data(bitstream *bs)\n{\n    put_ui(bs, sh.seq_profile, 3);\n    put_ui(bs, sh.still_picture, 1);\n    put_ui(bs, 0, 1);//reduced_still_picture_header\n    put_ui(bs, 0, 1);//timing_info_present_flag\n    put_ui(bs, 0, 1);//initial_display_delay_present_flag\n    pack_operating_points(bs);\n\n    pack_frame_size_info(bs);\n\n\n    put_ui(bs, 0, 1);//frame_id_numbers_present_flag (affects FH)\n\n    put_ui(bs, 0, 1);//use_128x128_superblock\n    put_ui(bs, sh.enable_filter_intra, 1);//enable_filter_intra\n    put_ui(bs, sh.enable_intra_edge_filter, 1);//enable_intra_edge_filter\n    put_ui(bs, sh.enable_interintra_compound, 1);//enable_interintra_compound\n    put_ui(bs, sh.enable_masked_compound, 1);//enable_masked_compound\n    put_ui(bs, sh.enable_warped_motion, 1);//enable_warped_motion\n    put_ui(bs, sh.enable_dual_filter, 1);//enable_dual_filter\n    put_ui(bs, sh.enable_order_hint, 1);//enable_order_hint\n\n    if (sh.enable_order_hint)\n    {\n        put_ui(bs, 0, 1); //enable_jnt_comp\n        put_ui(bs, fh.use_ref_frame_mvs, 1);//enable_ref_frame_mvs\n    }\n\n    put_ui(bs, 1, 1);//seq_choose_screen_content_tools\n    put_ui(bs, sh.seq_force_integer_mv, 1);//seq_choose_integer_mv\n\n    if (!sh.seq_force_integer_mv)\n    {\n        put_ui(bs, 0, 1); //seq_force_integer_mv\n    }\n\n    if (sh.enable_order_hint)\n    {\n        put_ui(bs, sh.order_hint_bits_minus1, 3);//affects FH\n    }\n\n    put_ui(bs, sh.enable_superres, 1);//enable_superres\n    put_ui(bs, sh.enable_cdef, 1);//enable_cdef\n    put_ui(bs, sh.enable_restoration, 1);//enable_restoration\n\n    // pack color config\n    put_ui(bs, sh.color_config.BitDepth == BITDEPTH_10 ? 1 : 0, 1);\n    if (sh.seq_profile != 1)\n        put_ui(bs, 0, 1);; //mono_chrome\n        \n    put_ui(bs, sh.color_config.color_description_present_flag, 1);\n\n    if (sh.color_config.color_description_present_flag)\n    {\n        put_ui(bs, sh.color_config.color_primaries, 8);\n        put_ui(bs, sh.color_config.transfer_characteristics, 8);\n        put_ui(bs, sh.color_config.matrix_coefficients, 8);\n    }\n\n    put_ui(bs, sh.color_config.color_range, 1);//color_range\n\n    if (sh.seq_profile == 0)\n        put_ui(bs, 0, 2); //chroma_sample_position\n\n    put_ui(bs, sh.color_config.separate_uv_delta_q, 1); //separate_uv_delta_q\n\n    put_ui(bs, 0, 1);//film_grain_params_present\n\n    put_trailing_bits(bs);\n}\n\nstatic void\nbuild_packed_seq_header(bitstream* bs)\n{\n    CHECK_BS_NULL(bs);\n    CHECK_CONDITION(bs->bit_offset == 0);\n    // handle vairable length\n    // seq obu data\n    bitstream obu_data;\n    bitstream_start(&obu_data);\n    pack_seq_data(&obu_data);\n\n    uint32_t obu_extension_flag = sh.operating_points_cnt_minus_1 ? 1 : 0;\n    pack_obu_header(bs, OBU_SEQUENCE_HEADER, obu_extension_flag);\n\n    //calculate data size\n    uint32_t obu_size_in_bytes = (obu_data.bit_offset + 7) / 8;\n    pack_obu_header_size(bs, obu_size_in_bytes, 0);\n    \n    bitstream_cat(bs, &obu_data);\n}\n\nstatic int\nrender_packedsequence()\n{\n    int len;\n    bitstream bs;\n    bitstream_start(&bs);\n\n    build_packed_seq_header(&bs);\n\n    len = (bs.bit_offset + 7) / 8;\n\n    va_render_packed_data(&bs);\n\n    bitstream_free(&bs);\n\n    return len;\n}\n\nstatic void\npack_show_existing_frame(bitstream* bs)\n{\n    return; //only for B frame, not enable by default\n}\n\nstatic void\npack_show_frame(bitstream* bs)\n{\n    put_ui(bs, fh.show_frame, 1);\n    if(!fh.show_frame)\n        put_ui(bs, fh.showable_frame, 1);\n}\n\nstatic void\npack_error_resilient(bitstream* bs)\n{\n    if (!(fh.frame_type == SWITCH_FRAME || (fh.frame_type == KEY_FRAME && fh.show_frame)))\n        put_ui(bs, 0, 1); //error_resilient_mode\n}\n\nstatic void\npack_ref_frame_flags(bitstream* bs, uint8_t error_resilient_mode, uint8_t isI)\n{\n    if(!(isI || error_resilient_mode))\n        put_ui(bs, 0, 3); //primary_ref_frame\n    if (!(fh.frame_type == SWITCH_FRAME || (fh.frame_type == KEY_FRAME && fh.show_frame)))\n        put_ui(bs, fh.refresh_frame_flags, NUM_REF_FRAMES);\n}\n\nstatic void\npack_interpolation_filter(bitstream* bs)\n{\n    const uint8_t is_filter_switchable = (fh.interpolation_filter == 4 ? 1 : 0);\n    put_ui(bs, is_filter_switchable, 1);//is_filter_switchable\n    if (!is_filter_switchable)\n    {\n        put_ui(bs, fh.interpolation_filter, 2);//interpolation_filter\n    }\n}\n\nstatic void\npack_render_size(bitstream* bs)\n{\n    uint32_t render_and_frame_size_different = 0;\n\n    put_ui(bs, render_and_frame_size_different, 1);//render_and_frame_size_different\n}\n\nstatic void\npack_frame_size(bitstream *bs)\n{\n    if (fh.frame_size_override_flag)\n    {\n        put_ui(bs, fh.UpscaledWidth - 1, sh.frame_width_bits + 1); //frame_width_minus_1\n        put_ui(bs, fh.FrameHeight - 1, sh.frame_height_bits + 1); //frame_height_minus_1\n    }\n\n}\n\nstatic void\npack_frame_size_with_refs(bitstream* bs)\n{\n    CHECK_BS_NULL(bs);\n    uint32_t found_ref = 0;\n\n    for (int8_t ref = 0; ref < REFS_PER_FRAME; ref++)\n        put_ui(bs, found_ref, 1);//found_ref\n\n    // if found_ref == 9\n    pack_frame_size(bs);\n    pack_render_size(bs);\n\n\n}\n\nstatic void\npack_frame_ref_info(bitstream* bs, uint8_t error_resilient_mode)\n{\n    if (sh.enable_order_hint)\n        put_ui(bs, 0, 1); //frame_refs_short_signaling\n\n    for (uint8_t ref = 0; ref < REFS_PER_FRAME; ref++)\n        put_ui(bs, fh.ref_frame_idx[ref], REF_FRAMES_LOG2);\n\n    if (fh.frame_size_override_flag && !error_resilient_mode)\n    {\n        pack_frame_size_with_refs(bs);\n    }\n    else\n    {\n        pack_frame_size(bs);\n        pack_render_size(bs);\n    }\n\n    put_ui(bs, fh.allow_high_precision_mv, 1); //allow_high_precision_mv\n\n    //PackInterpolationFilter(bs, fh);\n    pack_interpolation_filter(bs);\n\n    put_ui(bs, 0, 1);//is_motion_switchable\n\n    if (fh.use_ref_frame_mvs)\n        put_ui(bs, 1, 1); //use_ref_frame_mvs\n}\n\nstatic void\npack_tile_info(bitstream* bs)\n{\n    // use single tile by default\n    put_ui(bs, 1, 1);//uniform_tile_spacing_flag\n    put_ui(bs, 0, 1);//increment_tile_cols_log2\n    put_ui(bs, 0, 1);//increment_tile_rows_log2\n}\n\nstatic uint16_t\nwrite_SU(int32_t value, uint16_t n)\n{\n    int16_t signMask = 1 << (n - 1);\n    if (value & signMask)\n    {\n        value = value - 2 * signMask;\n    }\n    return value;\n}\n\nstatic void\npack_delta_q_value(bitstream* bs, int32_t deltaQ)\n{\n    if (deltaQ)\n    {\n        put_ui(bs, 1, 1);\n        put_ui(bs, write_SU(deltaQ, 7), 7);\n    }\n    else\n        put_ui(bs, 0, 1);\n}\n\nstatic void\npack_quantization_params(bitstream* bs)\n{\n    put_ui(bs, fh.quantization_params.base_q_idx, 8); //base_q_idx\n\n    pack_delta_q_value(bs, fh.quantization_params.DeltaQYDc);\n\n    bool diff_uv_delta = false;\n    if (fh.quantization_params.DeltaQUDc != fh.quantization_params.DeltaQVDc\n        || fh.quantization_params.DeltaQUAc != fh.quantization_params.DeltaQVAc)\n        diff_uv_delta = true;\n\n    if (sh.color_config.separate_uv_delta_q)\n        put_ui(bs, diff_uv_delta, 1);\n\n    pack_delta_q_value(bs, fh.quantization_params.DeltaQUDc);\n    pack_delta_q_value(bs, fh.quantization_params.DeltaQUAc);\n\n    if (diff_uv_delta)\n    {\n        pack_delta_q_value(bs, fh.quantization_params.DeltaQVDc);\n        pack_delta_q_value(bs, fh.quantization_params.DeltaQVAc);\n    }\n\n    put_ui(bs, fh.quantization_params.using_qmatrix, 1);//using_qmatrix\n    if (fh.quantization_params.using_qmatrix)\n    {\n        put_ui(bs, fh.quantization_params.qm_y, 4);\n        put_ui(bs, fh.quantization_params.qm_u, 4);\n        if (sh.color_config.separate_uv_delta_q)\n            put_ui(bs, fh.quantization_params.qm_v, 4);\n    }\n}\n\nstatic void\npack_loop_filter_params(bitstream* bs)\n{\n    if (fh.CodedLossless || fh.allow_intrabc)\n        return;\n    \n    put_ui(bs, fh.loop_filter_params.loop_filter_level[0], 6);//loop_filter_level[0]\n    put_ui(bs, fh.loop_filter_params.loop_filter_level[1], 6);//loop_filter_level[1]\n\n    if (fh.loop_filter_params.loop_filter_level[0] || fh.loop_filter_params.loop_filter_level[1])\n    {\n\n        put_ui(bs, fh.loop_filter_params.loop_filter_level[2], 6);//loop_filter_level[2]\n        put_ui(bs, fh.loop_filter_params.loop_filter_level[3], 6);//loop_filter_level[3]\n    }\n\n    put_ui(bs, fh.loop_filter_params.loop_filter_sharpness, 3); //loop_filter_sharpness\n    put_ui(bs, 0, 1); //loop_filter_delta_enabled\n\n}\n\nstatic void\npack_cdef_params(bitstream* bs)\n{\n    if (!sh.enable_cdef || fh.CodedLossless || fh.allow_intrabc)\n        return;\n\n    uint16_t num_planes = sh.color_config.mono_chrome ? 1 : 3;\n\n    put_ui(bs, fh.cdef_params.cdef_damping - 3, 2);//cdef_damping_minus_3\n    put_ui(bs, fh.cdef_params.cdef_bits, 2);//cdef_bits\n\n    for (uint16_t i = 0; i < (1 << fh.cdef_params.cdef_bits); ++i)\n    {\n        put_ui(bs, fh.cdef_params.cdef_y_pri_strength[i], 4);//cdef_y_pri_strength[0]\n        put_ui(bs, fh.cdef_params.cdef_y_sec_strength[i], 2);//cdef_y_sec_strength[0]\n\n        if (num_planes > 1)\n        {\n            put_ui(bs, fh.cdef_params.cdef_uv_pri_strength[i], 4);//cdef_uv_pri_strength[0]\n            put_ui(bs, fh.cdef_params.cdef_uv_sec_strength[i], 2);//cdef_uv_sec_strength[0]\n        }\n    }\n}\n\nstatic void\npack_lr_params(bitstream* bs)\n{\n    if (fh.AllLossless || fh.allow_intrabc || !sh.enable_restoration)\n        return;\n\n    bool usesLR = false;\n    bool usesChromaLR = false;\n\n    for (int i = 0; i < MAX_MB_PLANE; i++)\n    {\n        put_ui(bs, fh.lr_params.lr_type[i], 2);\n        if (fh.lr_params.lr_type[i] != RESTORE_NONE)\n        {\n            usesLR = true;\n            if (i > 0)\n            {\n                usesChromaLR = true;\n            }\n        }\n    }\n\n    if (usesLR)\n    {\n        put_ui(bs, fh.lr_params.lr_unit_shift, 1);\n\n        if (sh.sbSize != 1 && fh.lr_params.lr_unit_shift) \n        {\n            put_ui(bs, fh.lr_params.lr_unit_extra_shift, 1);\n        }\n\n        if (sh.color_config.subsampling_x && sh.color_config.subsampling_y && usesChromaLR)\n        {\n            put_ui(bs, fh.lr_params.lr_uv_shift, 1);\n        }\n    }\n}\n\nstatic void\npack_delta_q_params(bitstream* bs)\n{\n    if (fh.quantization_params.base_q_idx)\n        put_ui(bs, fh.delta_q_present, 1); //delta_q_present\n    if (fh.delta_q_present)\n    {\n        put_ui(bs, 0, 2); //delta_q_res\n        put_ui(bs, fh.delta_lf_present, 1); //delta_lf_present\n        put_ui(bs, 0, 2); //delta_lf_res\n        put_ui(bs, fh.delta_lf_multi, 1); //delta_lf_multi\n    }\n}\n\nstatic void\npack_frame_reference_mode(bitstream* bs, bool frameIsIntra)\n{\n    if (frameIsIntra)\n        return;\n    put_ui(bs, fh.reference_select, 1); //reference_select\n}\n\nstatic void\npack_skip_mode_params(bitstream* bs)\n{\n    if (fh.skipModeAllowed)\n        put_ui(bs, fh.skip_mode_present, 1); //skip_mode_present\n}\n\nstatic void\npack_wrapped_motion(bitstream* bs, bool frameIsIntra)\n{\n    if (frameIsIntra)\n        return;\n\n    if (sh.enable_warped_motion)\n        put_ui(bs, 0, 1); //allow_warped_motion\n}\n\nstatic void\npack_global_motion_params(bitstream* bs, bool frameIsIntra)\n{\n    if (frameIsIntra)\n        return;\n\n    for (uint8_t i = LAST_FRAME; i <= ALTREF_FRAME; i++)\n        put_ui(bs, 0, 1); //is_global[7]\n}\n\nstatic void\npack_frame_header(bitstream* bs)\n{\n    const uint8_t isI = (fh.frame_type == INTRA_ONLY_FRAME || fh.frame_type == KEY_FRAME);\n\n    put_ui(bs, fh.frame_type, 2);\n\n    pack_show_frame(bs);\n\n    uint8_t error_resilient_mode = 0;\n    pack_error_resilient(bs);\n    \n    put_ui(bs, fh.disable_cdf_update, 1);\n    put_ui(bs, fh.allow_screen_content_tools, 1);\n    put_ui(bs, fh.frame_size_override_flag, 1);\n\n    // pack order hint\n    if(sh.enable_order_hint)\n        put_ui(bs, fh.order_hint, sh.order_hint_bits_minus1 + 1);\n\n    // PackRefFrameFlags\n    pack_ref_frame_flags(bs, error_resilient_mode, isI);\n\n    if (!isI)\n    {\n        pack_frame_ref_info(bs, error_resilient_mode);\n    }\n    else\n    {\n        pack_frame_size(bs);\n        pack_render_size(bs);\n        if (fh.allow_screen_content_tools && fh.UpscaledWidth == fh.FrameWidth)\n            put_ui(bs, fh.allow_intrabc, 1);\n    }\n\n    if (!fh.disable_cdf_update)\n        put_ui(bs, fh.disable_frame_end_update_cdf, 1); //disable_frame_end_update_cdf\n\n    pack_tile_info(bs);\n\n    //quantization_params\n    offsets.QIndexBitOffset = bs->bit_offset;\n    pack_quantization_params(bs);\n\n    //segmentation_params\n    offsets.SegmentationBitOffset = bs->bit_offset;\n    put_ui(bs, 0, 1); //segmentation_enabled\n\n    offsets.SegmentationBitSize = bs->bit_offset - offsets.SegmentationBitOffset;\n\n    pack_delta_q_params(bs);\n\n    offsets.LoopFilterParamsBitOffset = bs->bit_offset;\n    pack_loop_filter_params(bs);\n\n    offsets.CDEFParamsBitOffset = bs->bit_offset;\n    pack_cdef_params(bs);\n    offsets.CDEFParamsSizeInBits = bs->bit_offset - offsets.CDEFParamsBitOffset;\n\n    pack_lr_params(bs);\n\n    const uint8_t tx_mode_select = fh.TxMode ? 1 : 0;\n   \n    if (!fh.CodedLossless)\n    put_ui(bs, tx_mode_select, 1); //tx_mode_select\n\n    pack_frame_reference_mode(bs, isI);\n    pack_skip_mode_params(bs);\n    pack_wrapped_motion(bs, isI);\n\n    put_ui(bs, fh.reduced_tx_set, 1); //reduced_tx_set\n\n    pack_global_motion_params(bs, isI);\n}\n\nstatic void\nbuild_packed_pic_header(bitstream* bs)\n{\n    // handle vairable length\n    // pack obu payload and then put header\n\n    // pic obu data\n    bitstream tmp;\n    bitstream_start(&tmp);\n\n    put_ui(&tmp, fh.show_existing_frame, 1); //show_existing_frame\n    if (fh.show_existing_frame)\n        pack_show_existing_frame(&tmp); // only for B frame\n    else\n        pack_frame_header(&tmp);\n\n    offsets.FrameHdrOBUSizeInBits = tmp.bit_offset;\n\n    const uint32_t obu_extension_flag = sh.operating_points_cnt_minus_1 ? 1 : 0;\n    const uint32_t obu_header_offset  = bs->bit_offset;\n\n    put_aligning_bits(&tmp);\n\n    pack_obu_header(bs, OBU_FRAME, obu_extension_flag);\n\n    offsets.FrameHdrOBUSizeByteOffset = (bs->bit_offset >> 3) + len_ivf_header + 2 + len_seq_header; // first frame with IVF header\n\n    const uint32_t obu_size_in_bytes = (tmp.bit_offset + 7) / 8;\n    pack_obu_header_size(bs, obu_size_in_bytes, fh.show_existing_frame? 0: 4);\n\n    if (!fh.show_existing_frame)\n    {\n        // The offset is related to frame or frame header OBU. IVF, sequence, and other headers should not be counted.\n        const uint32_t obuPayloadOffset     = bs->bit_offset - obu_header_offset;\n        offsets.QIndexBitOffset           += obuPayloadOffset;\n        offsets.SegmentationBitOffset     += obuPayloadOffset;\n        offsets.LoopFilterParamsBitOffset += obuPayloadOffset;\n        offsets.CDEFParamsBitOffset       += obuPayloadOffset;\n        //offsets.CDEFParamsSizeInBits is not needed to be updated.\n        offsets.FrameHdrOBUSizeInBits     += obuPayloadOffset;\n    }\n\n    bitstream_cat(bs, &tmp);\n}\n\nstatic void\nrender_packedpicture()\n{\n    bitstream bs;\n    bitstream_start(&bs);\n\n    build_packed_pic_header(&bs);\n\n    va_render_packed_data(&bs);\n\n    bitstream_free(&bs);\n}\n\nstatic void\nfill_ref_params(VAEncPictureParameterBufferAV1* pps)\n{\n    CHECK_NULL(pps);\n    if(fh.frame_type == KEY_FRAME)\n    {\n        return;\n    }\n    else if(fh.frame_type == INTER_FRAME)\n    {\n        // use last frame as reference\n        pps->reference_frames[0] = ref_surface[((current_frame_display - 1) % SURFACE_NUM)];\n        pps->ref_frame_ctrl_l0.fields.search_idx0 = LAST_FRAME;\n\n        // for Low delay B\n        pps->ref_frame_ctrl_l1.fields.search_idx0 = ips.LDB ? BWDREF_FRAME : INTRA_FRAME;\n    }\n}\n\nstatic void\nbuild_pps_buffer(VAEncPictureParameterBufferAV1* pps)\n{\n    CHECK_NULL(pps);\n    // InitPPS\n    memset(&(pps->reference_frames), VA_INVALID_ID, 8);\n\n    //frame size\n    pps->frame_height_minus_1  =(uint16_t)(fh.FrameHeight - 1);\n    pps->frame_width_minus_1 = (uint16_t)(fh.UpscaledWidth - 1);\n\n    //bitstream\n    pps->coded_buf = coded_buf[current_slot];\n    \n    for(int k = 0; k < REFS_PER_FRAME; k++)\n        pps->ref_frame_idx[k] = 0;\n\n    pps->picture_flags.bits.use_ref_frame_mvs = fh.use_ref_frame_mvs;\n    pps->picture_flags.bits.long_term_reference = 0;\n    pps->picture_flags.bits.allow_intrabc = fh.allow_intrabc;\n\n    pps->seg_id_block_size = 0;\n\n    //quantizer\n    pps->y_dc_delta_q = (uint8_t)(fh.quantization_params.DeltaQYDc);\n    pps->u_dc_delta_q = (uint8_t)(fh.quantization_params.DeltaQUDc);\n    pps->u_ac_delta_q = (uint8_t)(fh.quantization_params.DeltaQUAc);\n    pps->v_dc_delta_q = (uint8_t)(fh.quantization_params.DeltaQVDc);\n    pps->v_ac_delta_q = (uint8_t)(fh.quantization_params.DeltaQVAc);\n\n    //other params\n    pps->picture_flags.bits.error_resilient_mode = fh.error_resilient_mode;\n    pps->interpolation_filter = (uint8_t)(fh.interpolation_filter);\n    pps->picture_flags.bits.use_superres = fh.use_superres;\n    pps->picture_flags.bits.allow_high_precision_mv = fh.allow_high_precision_mv;\n    pps->picture_flags.bits.reduced_tx_set = fh.reduced_tx_set;\n    pps->picture_flags.bits.palette_mode_enable = fh.allow_screen_content_tools;\n\n    //tx_mod\n    pps->mode_control_flags.bits.tx_mode = fh.TxMode;\n    pps->temporal_id = 0;\n    pps->superres_scale_denominator = (uint8_t)(fh.SuperresDenom);\n\n    //q_matrix\n    pps->qmatrix_flags.bits.using_qmatrix = fh.quantization_params.using_qmatrix;\n    pps->qmatrix_flags.bits.qm_y = fh.quantization_params.qm_y;\n    pps->qmatrix_flags.bits.qm_u = fh.quantization_params.qm_u;\n    pps->qmatrix_flags.bits.qm_v = fh.quantization_params.qm_v;\n\n    pps->picture_flags.bits.frame_type = fh.frame_type;\n    pps->base_qindex     = (uint8_t)fh.quantization_params.base_q_idx;\n    pps->min_base_qindex = ips.MinBaseQIndex;\n    pps->max_base_qindex = ips.MaxBaseQIndex;\n\n    pps->order_hint = (uint8_t)(fh.order_hint);\n\n    //reference frame\n    pps->primary_ref_frame = (uint8_t)(fh.primary_ref_frame);\n    pps->ref_frame_ctrl_l0.value = 0;\n    pps->ref_frame_ctrl_l1.value = 0;\n    fill_ref_params(pps);\n    pps->refresh_frame_flags = fh.refresh_frame_flags;\n\n    // //loop filter  \n    // auto& lf = fh.loop_filter_params;\n    pps->filter_level[0] = (uint8_t)(fh.loop_filter_params.loop_filter_level[0]);\n    pps->filter_level[1] = (uint8_t)(fh.loop_filter_params.loop_filter_level[1]);\n    pps->filter_level_u  = (uint8_t)(fh.loop_filter_params.loop_filter_level[2]);\n    pps->filter_level_v  = (uint8_t)(fh.loop_filter_params.loop_filter_level[3]);\n    pps->loop_filter_flags.bits.sharpness_level        = fh.loop_filter_params.loop_filter_sharpness;\n    pps->loop_filter_flags.bits.mode_ref_delta_enabled = fh.loop_filter_params.loop_filter_delta_enabled;\n    pps->loop_filter_flags.bits.mode_ref_delta_update  = fh.loop_filter_params.loop_filter_delta_update;\n\n    for(int k = 0;k < 8;k++)\n        pps->ref_deltas[k] = 0;\n\n    //block-level deltas\n    pps->mode_control_flags.bits.delta_q_present  = fh.delta_q_present;\n    pps->mode_control_flags.bits.delta_q_res  = fh.delta_q_res;\n    pps->mode_control_flags.bits.delta_lf_res  = fh.delta_lf_res;\n    pps->mode_control_flags.bits.delta_lf_present = fh.delta_lf_present;\n    pps->mode_control_flags.bits.delta_lf_multi   = fh.delta_lf_multi;\n\n    pps->mode_control_flags.bits.reference_mode = fh.reference_select ?\n        REFERENCE_MODE_SELECT : SINGLE_REFERENCE;\n    pps->mode_control_flags.bits.skip_mode_present = fh.skip_mode_present;\n\n    //tile\n    pps->tile_cols = 1; \n    pps->width_in_sbs_minus_1[0] = (uint16_t)(((fh.UpscaledWidth+63)&(~63))/64 - 1);\n\n\n    pps->tile_rows = 1;\n    pps->height_in_sbs_minus_1[0] = (uint16_t)(((fh.FrameHeight+63)&(~63))/64 - 1);\n\n    pps->context_update_tile_id = (uint8_t)(fh.tile_info.context_update_tile_id);\n\n    //cdef\n    if(sh.enable_cdef)\n    {\n\n        pps->cdef_damping_minus_3 = (uint8_t)(fh.cdef_params.cdef_damping - 3);\n        pps->cdef_bits = (uint8_t)(fh.cdef_params.cdef_bits);\n\n        for (uint8_t i = 0; i < CDEF_MAX_STRENGTHS; i++)\n        {\n            pps->cdef_y_strengths[i]  = (uint8_t)(fh.cdef_params.cdef_y_pri_strength[i] * CDEF_STRENGTH_DIVISOR + fh.cdef_params.cdef_y_sec_strength[i]);\n            pps->cdef_uv_strengths[i] = (uint8_t)(fh.cdef_params.cdef_uv_pri_strength[i] * CDEF_STRENGTH_DIVISOR + fh.cdef_params.cdef_uv_sec_strength[i]);\n        }\n    }\n\n    //loop restoration\n    pps->loop_restoration_flags.bits.yframe_restoration_type  = (fh.lr_params.lr_type[0] == RESTORE_WIENER) ? 1 : 0;\n    pps->loop_restoration_flags.bits.cbframe_restoration_type = (fh.lr_params.lr_type[1] == RESTORE_WIENER) ? 1 : 0;\n    pps->loop_restoration_flags.bits.crframe_restoration_type = (fh.lr_params.lr_type[2] == RESTORE_WIENER) ? 1 : 0;\n    pps->loop_restoration_flags.bits.lr_unit_shift            = fh.lr_params.lr_unit_shift;\n    pps->loop_restoration_flags.bits.lr_uv_shift              = fh.lr_params.lr_uv_shift;\n\n    //context\n    pps->picture_flags.bits.disable_cdf_update = fh.disable_cdf_update;\n    pps->picture_flags.bits.disable_frame_end_update_cdf = fh.disable_frame_end_update_cdf;\n    pps->picture_flags.bits.disable_frame_recon = (fh.refresh_frame_flags == 0);\n\n    pps->num_tile_groups_minus1 = 0;\n\n    pps->tile_group_obu_hdr_info.bits.obu_extension_flag = 0;\n    pps->tile_group_obu_hdr_info.bits.obu_has_size_field = 1;\n    pps->tile_group_obu_hdr_info.bits.temporal_id = 0;\n    pps->tile_group_obu_hdr_info.bits.spatial_id  = 0;\n\n    //other params\n    pps->picture_flags.bits.error_resilient_mode = fh.error_resilient_mode;\n    pps->picture_flags.bits.enable_frame_obu     = 1;\n    pps->reconstructed_frame = ref_surface[current_slot];\n\n    //offsets need update\n    pps->size_in_bits_frame_hdr_obu     = offsets.FrameHdrOBUSizeInBits;\n    pps->byte_offset_frame_hdr_obu_size = offsets.FrameHdrOBUSizeByteOffset;\n    pps->bit_offset_loopfilter_params   = offsets.LoopFilterParamsBitOffset;\n    pps->bit_offset_qindex              = offsets.QIndexBitOffset;\n    pps->bit_offset_segmentation        = offsets.SegmentationBitOffset;\n    pps->bit_offset_cdef_params         = offsets.CDEFParamsBitOffset;\n    pps->size_in_bits_cdef_params       = offsets.CDEFParamsSizeInBits;\n\n    //q_matrix\n    pps->qmatrix_flags.bits.using_qmatrix = fh.quantization_params.using_qmatrix;\n    pps->qmatrix_flags.bits.qm_y = fh.quantization_params.qm_y;\n    pps->qmatrix_flags.bits.qm_u = fh.quantization_params.qm_u;\n    pps->qmatrix_flags.bits.qm_v = fh.quantization_params.qm_v;\n\n    pps->skip_frames_reduced_size = 0;\n}\n\nstatic void\nrender_picture()\n{\n    VABufferID pic_param_buf_id = VA_INVALID_ID;\n    VAStatus va_status;\n\n    VAEncPictureParameterBufferAV1 pps_buffer;\n    memset(&pps_buffer, 0, sizeof(pps_buffer));\n    build_pps_buffer(&pps_buffer);\n\n    va_status = vaCreateBuffer(va_dpy, context_id, VAEncPictureParameterBufferType,\n                               sizeof(pps_buffer), 1, &pps_buffer, &pic_param_buf_id);\n    CHECK_VASTATUS(va_status, \"vaCreateBuffer\");;\n\n    va_status = vaRenderPicture(va_dpy, context_id, &pic_param_buf_id, 1);\n    CHECK_VASTATUS(va_status, \"vaRenderPicture\");\n\n    if (pic_param_buf_id != VA_INVALID_ID) {\n        vaDestroyBuffer(va_dpy, pic_param_buf_id);\n        pic_param_buf_id = VA_INVALID_ID;\n    }\n}\n\nstatic int upload_source_YUV_once_for_all()\n{\n    int box_width = 8;\n    int row_shift = 0;\n    int i;\n\n    for (i = 0; i < SURFACE_NUM; i++) {\n        printf(\"\\rLoading data into surface %d.....\", i);\n        upload_surface(va_dpy, src_surface[i], box_width, row_shift, 0);\n\n        row_shift++;\n        if (row_shift == (2 * box_width)) row_shift = 0;\n    }\n    printf(\"Complete surface loading\\n\");\n\n    return 0;\n}\n\nstatic struct storage_task_t * storage_task_dequeue(void)\n{\n    struct storage_task_t *header;\n\n    pthread_mutex_lock(&encode_mutex);\n\n    header = storage_task_header;\n    if (storage_task_header != NULL) {\n        if (storage_task_tail == storage_task_header)\n            storage_task_tail = NULL;\n        storage_task_header = header->next;\n    }\n\n    pthread_mutex_unlock(&encode_mutex);\n\n    return header;\n}\n\nstatic int load_surface(VASurfaceID surface_id, unsigned long long display_order)\n{\n    unsigned char *srcyuv_ptr = NULL, *src_Y = NULL, *src_U = NULL, *src_V = NULL;\n    unsigned long long frame_start, mmap_start;\n    char *mmap_ptr = NULL;\n    int frame_size, mmap_size;\n\n    if (srcyuv_fp == NULL)\n        return 0;\n\n    /* allow encoding more than srcyuv_frames */\n    display_order = display_order % srcyuv_frames;\n    frame_size = ips.width * ips.height * 3 / 2; /* for YUV420 */\n    frame_start = display_order * frame_size;\n\n    mmap_start = frame_start & (~0xfff);\n    mmap_size = (frame_size + (frame_start & 0xfff) + 0xfff) & (~0xfff);\n    mmap_ptr = mmap(0, mmap_size, PROT_READ, MAP_SHARED,\n                    fileno(srcyuv_fp), mmap_start);\n    if (mmap_ptr == MAP_FAILED) {\n        printf(\"Failed to mmap YUV file (%s)\\n\", strerror(errno));\n        return 1;\n    }\n    srcyuv_ptr = (unsigned char *)mmap_ptr + (frame_start & 0xfff);\n    if (srcyuv_fourcc == VA_FOURCC_NV12) {\n        src_Y = srcyuv_ptr;\n        src_U = src_Y + ips.width * ips.height;\n        src_V = NULL;\n    } else if (srcyuv_fourcc == VA_FOURCC_IYUV ||\n               srcyuv_fourcc == VA_FOURCC_YV12) {\n        src_Y = srcyuv_ptr;\n        if (srcyuv_fourcc == VA_FOURCC_IYUV) {\n            src_U = src_Y + ips.width * ips.height;\n            src_V = src_U + (ips.width / 2) * (ips.height / 2);\n        } else { /* YV12 */\n            src_V = src_Y + ips.width * ips.height;\n            src_U = src_V + (ips.width / 2) * (ips.height / 2);\n        }\n    } else {\n        printf(\"Unsupported source YUV format\\n\");\n        exit(1);\n    }\n\n    upload_surface_yuv(va_dpy, surface_id,\n                       srcyuv_fourcc, ips.width, ips.height,\n                       src_Y, src_U, src_V);\n    if (mmap_ptr)\n        munmap(mmap_ptr, mmap_size);\n\n    return 0;\n}\n\nstatic int save_codeddata(unsigned long long display_order, unsigned long long encode_order)\n{\n    VACodedBufferSegment *buf_list = NULL;\n    VAStatus va_status;\n    int ret;\n    unsigned int coded_size = 0;\n\n    va_status = vaMapBuffer(va_dpy, coded_buf[display_order % SURFACE_NUM], (void **)(&buf_list));\n    CHECK_VASTATUS(va_status, \"vaMapBuffer\");\n\n    long frame_start = ftell(coded_fp);\n\n    while (buf_list != NULL) {\n        coded_size += fwrite(buf_list->buf, 1, buf_list->size, coded_fp);\n        buf_list = (VACodedBufferSegment *) buf_list->next;\n\n        frame_size += coded_size;\n    }\n\n    long frame_end = ftell(coded_fp);\n    vaUnmapBuffer(va_dpy, coded_buf[display_order % SURFACE_NUM]);\n\n    CHECK_CONDITION(frame_start >= 0 && frame_end >= 0);\n    if(encode_order == 0)\n    {\n        //first frame\n        CHECK_CONDITION(coded_size >= 44);\n        unsigned int ivf_size = coded_size - 32 - 12;\n        ret = fseek(coded_fp, frame_start + 32, SEEK_SET);\n        CHECK_CONDITION(ret == 0);\n        fwrite(&ivf_size, 4, 1, coded_fp);\n        fwrite(&display_order, 8, 1, coded_fp);\n        ret = fseek(coded_fp, frame_end, SEEK_SET);\n        CHECK_CONDITION(ret == 0);\n    }\n    else\n    {\n        //other frames\n        CHECK_CONDITION(coded_size >= 12);\n        unsigned int ivf_size = coded_size - 12;\n        ret = fseek(coded_fp, frame_start, SEEK_SET);\n        CHECK_CONDITION(ret == 0);\n        fwrite(&ivf_size, 4, 1, coded_fp);\n        fwrite(&display_order, 8, 1, coded_fp);\n        ret = fseek(coded_fp, frame_end, SEEK_SET);\n        CHECK_CONDITION(ret == 0);\n    }\n\n    printf(\"\\n      \"); /* return back to startpoint */\n    switch (encode_order % 4) {\n    case 0:\n        printf(\"|\");\n        break;\n    case 1:\n        printf(\"/\");\n        break;\n    case 2:\n        printf(\"-\");\n        break;\n    case 3:\n        printf(\"\\\\\");\n        break;\n    }\n    printf(\"%08lld\", encode_order);\n    printf(\"(%06d bytes coded)\\n\", coded_size);\n\n    fflush(coded_fp);\n\n    return 0;\n}\n\nstatic int save_recyuv(VASurfaceID surface_id,\n                       unsigned long long display_order,\n                       unsigned long long encode_order)\n{\n    unsigned char *dst_Y = NULL, *dst_U = NULL, *dst_V = NULL;\n\n    if (recyuv_fp == NULL)\n        return 0;\n\n    if (srcyuv_fourcc == VA_FOURCC_NV12) {\n        int uv_size = 2 * (ips.width / 2) * (ips.height / 2);\n        dst_Y = malloc(2 * uv_size);\n        if (dst_Y == NULL) {\n            printf(\"Failed to allocate memory for dst_Y\\n\");\n            exit(1);\n        }\n\n        dst_U = malloc(uv_size);\n        if (dst_U == NULL) {\n            printf(\"Failed to allocate memory for dst_U\\n\");\n            free(dst_Y);\n            exit(1);\n        }\n\n        memset(dst_Y, 0, 2 * uv_size);\n        memset(dst_U, 0, uv_size);\n    } else if (srcyuv_fourcc == VA_FOURCC_IYUV ||\n               srcyuv_fourcc == VA_FOURCC_YV12) {\n        int uv_size = (ips.width / 2) * (ips.height / 2);\n        dst_Y = malloc(4 * uv_size);\n        if (dst_Y == NULL) {\n            printf(\"Failed to allocate memory for dst_Y\\n\");\n            exit(1);\n        }\n\n        dst_U = malloc(uv_size);\n        if (dst_U == NULL) {\n            printf(\"Failed to allocate memory for dst_U\\n\");\n            free(dst_Y);\n            exit(1);\n        }\n\n        dst_V = malloc(uv_size);\n        if (dst_V == NULL) {\n            printf(\"Failed to allocate memory for dst_V\\n\");\n            free(dst_Y);\n            free(dst_U);\n            exit(1);\n        }\n\n        memset(dst_Y, 0, 4 * uv_size);\n        memset(dst_U, 0, uv_size);\n        memset(dst_V, 0, uv_size);\n    } else {\n        printf(\"Unsupported source YUV format\\n\");\n        exit(1);\n    }\n\n    download_surface_yuv(va_dpy, surface_id,\n                         srcyuv_fourcc, ips.width, ips.height,\n                         dst_Y, dst_U, dst_V);\n    fseek(recyuv_fp, display_order * ips.width * ips.height * 1.5, SEEK_SET);\n\n    if (srcyuv_fourcc == VA_FOURCC_NV12) {\n        int uv_size = 2 * (ips.width / 2) * (ips.height / 2);\n        fwrite(dst_Y, uv_size * 2, 1, recyuv_fp);\n        fwrite(dst_U, uv_size, 1, recyuv_fp);\n    } else if (srcyuv_fourcc == VA_FOURCC_IYUV ||\n               srcyuv_fourcc == VA_FOURCC_YV12) {\n        int uv_size = (ips.width / 2) * (ips.height / 2);\n        fwrite(dst_Y, uv_size * 4, 1, recyuv_fp);\n\n        if (srcyuv_fourcc == VA_FOURCC_IYUV) {\n            fwrite(dst_U, uv_size, 1, recyuv_fp);\n            fwrite(dst_V, uv_size, 1, recyuv_fp);\n        } else {\n            fwrite(dst_V, uv_size, 1, recyuv_fp);\n            fwrite(dst_U, uv_size, 1, recyuv_fp);\n        }\n    }\n\n    if (dst_Y)\n        free(dst_Y);\n    if (dst_U)\n        free(dst_U);\n    if (dst_V)\n        free(dst_V);\n\n    fflush(recyuv_fp);\n\n    return 0;\n}\n\nstatic void storage_task(unsigned long long display_order, unsigned long long encode_order)\n{\n    unsigned int tmp;\n    VAStatus va_status;\n\n    tmp = GetTickCount();\n    va_status = vaSyncSurface(va_dpy, src_surface[display_order % SURFACE_NUM]);\n    CHECK_VASTATUS(va_status, \"vaSyncSurface\");\n    SyncPictureTicks += GetTickCount() - tmp;\n    tmp = GetTickCount();\n    save_codeddata(display_order, encode_order);\n    SavePictureTicks += GetTickCount() - tmp;\n\n    save_recyuv(ref_surface[display_order % SURFACE_NUM], display_order, encode_order);\n\n    /* reload a new frame data */\n    tmp = GetTickCount();\n    if (srcyuv_fp != NULL)\n        load_surface(src_surface[display_order % SURFACE_NUM], display_order + SURFACE_NUM);\n    UploadPictureTicks += GetTickCount() - tmp;\n\n    pthread_mutex_lock(&encode_mutex);\n    srcsurface_status[display_order % SURFACE_NUM] = SRC_SURFACE_IN_ENCODING;\n    pthread_mutex_unlock(&encode_mutex);\n}\n\nstatic void * storage_task_thread(void *t)\n{\n    while (1) {\n        struct storage_task_t *current;\n\n        current = storage_task_dequeue();\n        if (current == NULL) {\n            pthread_mutex_lock(&encode_mutex);\n            pthread_cond_wait(&encode_cond, &encode_mutex);\n            pthread_mutex_unlock(&encode_mutex);\n            continue;\n        }\n\n        storage_task(current->display_order, current->encode_order);\n\n        free(current);\n\n        /* all frames are saved, exit the thread */\n        if (++frame_coded >= ips.frame_count)\n            break;\n    }\n\n    return 0;\n}\n\nstatic int storage_task_queue(unsigned long long display_order, unsigned long long encode_order)\n{\n    struct storage_task_t *tmp;\n\n    tmp = calloc(1, sizeof(struct storage_task_t));\n    if (tmp) {\n        tmp->display_order = display_order;\n        tmp->encode_order = encode_order;\n    }\n\n    pthread_mutex_lock(&encode_mutex);\n\n    if (storage_task_header == NULL) {\n        storage_task_header = tmp;\n        storage_task_tail = tmp;\n    } else {\n        storage_task_tail->next = tmp;\n        storage_task_tail = tmp;\n    }\n\n    srcsurface_status[display_order % SURFACE_NUM] = SRC_SURFACE_IN_STORAGE;\n    pthread_cond_signal(&encode_cond);\n\n    pthread_mutex_unlock(&encode_mutex);\n\n    return 0;\n}\n\nstatic int encode_frames(void)\n{\n    unsigned int i, tmp;\n    VAStatus va_status;\n    //VASurfaceStatus surface_status;\n\n    /* upload RAW YUV data into all surfaces */\n    tmp = GetTickCount();\n    if (srcyuv_fp != NULL) {\n        for (i = 0; i < SURFACE_NUM; i++)\n            load_surface(src_surface[i], i);\n    } else\n        upload_source_YUV_once_for_all();\n    UploadPictureTicks += GetTickCount() - tmp;\n\n    /* ready for encoding */\n    memset(srcsurface_status, SRC_SURFACE_IN_ENCODING, sizeof(srcsurface_status));\n\n    memset(&seq_param, 0, sizeof(seq_param));\n    memset(&pic_param, 0, sizeof(pic_param));\n    memset(&tile_group_param, 0, sizeof(tile_group_param));\n\n    if (ips.encode_syncmode == 0)\n        pthread_create(&encode_thread, NULL, storage_task_thread, NULL);\n\n    for (current_frame_encoding = 0; current_frame_encoding < ips.frame_count; current_frame_encoding++) {\n        encoding2display_order(current_frame_encoding, ips.intra_period, \n                               &current_frame_display, &current_frame_type);\n\n        printf(\"%s : %lld %s : %lld type : %d\\n\", \"encoding order\", current_frame_encoding, \"Display order\", current_frame_display, current_frame_type);\n        /* check if the source frame is ready */\n        while (srcsurface_status[current_slot] != SRC_SURFACE_IN_ENCODING) {\n            usleep(1);\n        }\n\n        tmp = GetTickCount();\n        va_status = vaBeginPicture(va_dpy, context_id, src_surface[current_slot]);\n        CHECK_VASTATUS(va_status, \"vaBeginPicture\");\n        BeginPictureTicks += GetTickCount() - tmp;\n\n        tmp = GetTickCount(); //start of render process\n\n        // prepare parameters used for sequence and frame\n        fill_sps_header();\n        fill_pps_header(current_frame_display);\n\n        // init length of packed headers\n        len_ivf_header = 0;\n        len_seq_header = 0;\n        len_pic_header = 0;\n\n        // render headers\n        // first frame send IVF sequence header + frame header\n        if(current_frame_encoding == 0) \n        {\n            render_ivf_header(); //44 byte, 32byte sequence ivf header, 12 byte frame ivf header\n            len_ivf_header = 44;\n        }\n        else \n        {\n            render_ivf_frame_header(); //12 byte frame ivf header\n            len_ivf_header = 12;\n        }\n\n        render_TD();//render OBU_TEMPORAL_DELIMITER\n\n        if (current_frame_type == KEY_FRAME) {\n            if(current_frame_encoding == 0)  render_sequence(); //render SPS only needed in first frame\n            len_seq_header = render_packedsequence(); //render packed sequence header\n        }\n        else\n        {\n            len_seq_header = 0;\n        }\n\n        if((ips.RateControlMethod == 2 || ips.RateControlMethod == 4) && current_frame_encoding == 0)\n        {\n            // misc buffer are not need in CQP case\n            // only needed in first frame\n            render_misc_buffer();\n        }\n\n\n        render_packedpicture(); //render packed frame header \n        render_picture(); //render frame PPS buffer\n        render_tile_group(); //render tile group buffer\n        RenderPictureTicks += GetTickCount() - tmp;\n\n        tmp = GetTickCount();\n        va_status = vaEndPicture(va_dpy, context_id);\n        CHECK_VASTATUS(va_status, \"vaEndPicture\");\n        EndPictureTicks += GetTickCount() - tmp;\n\n        if (ips.encode_syncmode)\n            storage_task(current_frame_display, current_frame_encoding);\n        else /* queue the storage task queue */\n            storage_task_queue(current_frame_display, current_frame_encoding);\n\n    }\n\n    if (ips.encode_syncmode == 0) {\n        int ret;\n        pthread_join(encode_thread, (void **)&ret);\n    }\n\n    return 0;\n}\n\nstatic int calc_PSNR(double *psnr)\n{\n    char *srcyuv_ptr = NULL, *recyuv_ptr = NULL, tmp;\n    unsigned long long min_size;\n    unsigned long long i, sse = 0;\n    double ssemean;\n    int fourM = 0x400000; /* 4M */\n\n    min_size = MIN(srcyuv_frames, ips.frame_count) * ips.width * ips.height * 1.5;\n    for (i = 0; i < min_size; i++) {\n        unsigned long long j = i % fourM;\n\n        if ((i % fourM) == 0) {\n            if (srcyuv_ptr)\n                munmap(srcyuv_ptr, fourM);\n            if (recyuv_ptr)\n                munmap(recyuv_ptr, fourM);\n\n            srcyuv_ptr = mmap(0, fourM, PROT_READ, MAP_SHARED, fileno(srcyuv_fp), i);\n            recyuv_ptr = mmap(0, fourM, PROT_READ, MAP_SHARED, fileno(recyuv_fp), i);\n            if ((srcyuv_ptr == MAP_FAILED) || (recyuv_ptr == MAP_FAILED)) {\n                if (srcyuv_ptr != MAP_FAILED) \n                    munmap(srcyuv_ptr, fourM);\n                if (recyuv_ptr != MAP_FAILED) \n                    munmap(recyuv_ptr, fourM);\n                printf(\"Failed to mmap YUV files\\n\");\n                return 1;\n            }\n        }\n        tmp = srcyuv_ptr[j] - recyuv_ptr[j];\n        sse += tmp * tmp;\n    }\n    ssemean = (double)sse / (double)min_size;\n    *psnr = 20.0 * log10(255) - 10.0 * log10(ssemean);\n\n    if (srcyuv_ptr)\n        munmap(srcyuv_ptr, fourM);\n    if (recyuv_ptr)\n        munmap(recyuv_ptr, fourM);\n\n    return 0;\n}\n\nstatic int print_performance(unsigned int PictureCount)\n{\n    unsigned int psnr_ret = 1, others = 0;\n    double psnr = 0, total_size = ips.width * ips.height * 1.5 * ips.frame_count;\n\n    if (ips.calc_psnr && srcyuv_fp && recyuv_fp)\n        psnr_ret = calc_PSNR(&psnr);\n\n    others = TotalTicks - UploadPictureTicks - BeginPictureTicks\n             - RenderPictureTicks - EndPictureTicks - SyncPictureTicks - SavePictureTicks;\n\n    printf(\"\\n\\n\");\n\n    printf(\"PERFORMANCE:   Frame Rate           : %.2f fps (%d frames, %d ms (%.2f ms per frame))\\n\",\n           (double) 1000 * PictureCount / TotalTicks, PictureCount,\n           TotalTicks, ((double)  TotalTicks) / (double) PictureCount);\n    printf(\"PERFORMANCE:   Compression ratio    : %d:1\\n\", (unsigned int)(total_size / frame_size));\n    if (psnr_ret == 0)\n        printf(\"PERFORMANCE:   PSNR                 : %.2f (%lld frames calculated)\\n\",\n               psnr, MIN(ips.frame_count, srcyuv_frames));\n\n    printf(\"PERFORMANCE:     UploadPicture      : %d ms (%.2f, %.2f%% percent)\\n\",\n           (int) UploadPictureTicks, ((double)  UploadPictureTicks) / (double) PictureCount,\n           UploadPictureTicks / (double) TotalTicks / 0.01);\n    printf(\"PERFORMANCE:     vaBeginPicture     : %d ms (%.2f, %.2f%% percent)\\n\",\n           (int) BeginPictureTicks, ((double)  BeginPictureTicks) / (double) PictureCount,\n           BeginPictureTicks / (double) TotalTicks / 0.01);\n    printf(\"PERFORMANCE:     vaRenderHeader     : %d ms (%.2f, %.2f%% percent)\\n\",\n           (int) RenderPictureTicks, ((double)  RenderPictureTicks) / (double) PictureCount,\n           RenderPictureTicks / (double) TotalTicks / 0.01);\n    printf(\"PERFORMANCE:     vaEndPicture       : %d ms (%.2f, %.2f%% percent)\\n\",\n           (int) EndPictureTicks, ((double)  EndPictureTicks) / (double) PictureCount,\n           EndPictureTicks / (double) TotalTicks / 0.01);\n    printf(\"PERFORMANCE:     vaSyncSurface      : %d ms (%.2f, %.2f%% percent)\\n\",\n           (int) SyncPictureTicks, ((double) SyncPictureTicks) / (double) PictureCount,\n           SyncPictureTicks / (double) TotalTicks / 0.01);\n    printf(\"PERFORMANCE:     SavePicture        : %d ms (%.2f, %.2f%% percent)\\n\",\n           (int) SavePictureTicks, ((double)  SavePictureTicks) / (double) PictureCount,\n           SavePictureTicks / (double) TotalTicks / 0.01);\n    printf(\"PERFORMANCE:     Others             : %d ms (%.2f, %.2f%% percent)\\n\",\n           (int) others, ((double) others) / (double) PictureCount,\n           others / (double) TotalTicks / 0.01);\n\n    if (ips.encode_syncmode == 0)\n        printf(\"(Multithread enabled, the timing is only for reference)\\n\");\n\n    return 0;\n}\n\nint main(int argc, char **argv)\n{\n    unsigned int start;\n\n    process_cmdline(argc, argv);\n\n    print_input();\n\n    start = GetTickCount();\n\n    init_va();\n    setup_encode();\n\n    encode_frames();\n\n    release_encode();\n    deinit_va();\n\n    //free memory\n    if(ips.output) free(ips.output);\n    if(ips.srcyuv) free(ips.srcyuv);\n    if(ips.recyuv) free(ips.recyuv);\n\n    TotalTicks += GetTickCount() - start;\n    print_performance(ips.frame_count);\n\n    return 0;\n}\n"
  },
  {
    "path": "encode/avcenc.c",
    "content": "/*\n * Copyright (c) 2012 Intel Corporation. All Rights Reserved.\n *\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the\n * \"Software\"), to deal in the Software without restriction, including\n * without limitation the rights to use, copy, modify, merge, publish,\n * distribute, sub license, and/or sell copies of the Software, and to\n * permit persons to whom the Software is furnished to do so, subject to\n * the following conditions:\n *\n * The above copyright notice and this permission notice (including the\n * next paragraph) shall be included in all copies or substantial portions\n * of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR\n * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n/*\n * Simple AVC encoder based on libVA.\n *\n * Usage:\n * ./avcenc <width> <height> <input file> <output file> [qp]\n */\n\n#include <stdbool.h>\n#include <stdio.h>\n#include <string.h>\n#include <stdlib.h>\n#include <getopt.h>\n#include <unistd.h>\n\n#include <sys/time.h>\n#include <sys/types.h>\n#include <sys/stat.h>\n#include <fcntl.h>\n#include <assert.h>\n#include <time.h>\n\n#include <pthread.h>\n\n#include <va/va.h>\n#include <va/va_enc_h264.h>\n#include \"va_display.h\"\n\n#define NAL_REF_IDC_NONE        0\n#define NAL_REF_IDC_LOW         1\n#define NAL_REF_IDC_MEDIUM      2\n#define NAL_REF_IDC_HIGH        3\n\n#define NAL_NON_IDR             1\n#define NAL_IDR                 5\n#define NAL_SPS                 7\n#define NAL_PPS                 8\n#define NAL_SEI                 6\n#define NAL_DELIMITER           9\n\n\n#define SLICE_TYPE_P            0\n#define SLICE_TYPE_B            1\n#define SLICE_TYPE_I            2\n\n#define FRAME_IDR 7\n\n#define ENTROPY_MODE_CAVLC      0\n#define ENTROPY_MODE_CABAC      1\n\n#define PROFILE_IDC_BASELINE    66\n#define PROFILE_IDC_MAIN        77\n#define PROFILE_IDC_HIGH        100\n\n#define CHECK_VASTATUS(va_status,func)                                  \\\n    if (va_status != VA_STATUS_SUCCESS) {                               \\\n        fprintf(stderr,\"%s:%s (%d) failed,exit\\n\", __func__, func, __LINE__); \\\n        exit(1);                                                        \\\n    }\n\n#define CHECK_CONDITION(cond)                                                \\\n    if(!(cond))                                                              \\\n    {                                                                        \\\n        fprintf(stderr, \"Unexpected condition: %s:%d\\n\", __func__, __LINE__); \\\n        exit(1);                                                             \\\n    }\n\nstatic VADisplay va_dpy;\n\nstatic int picture_width, picture_width_in_mbs;\nstatic int picture_height, picture_height_in_mbs;\nstatic int frame_size;\nstatic unsigned char *newImageBuffer = 0;\n\nstatic int qp_value = 26;\n\nstatic int intra_period = 30;\nstatic int frame_bit_rate = -1;\nstatic int frame_rate = 30;\nstatic int ip_period = 1;\nstatic int roi_test_enable = 0;\nstatic int aud_nal_enable = 1;\n\nstatic VAEntrypoint select_entrypoint = VAEntrypointEncSlice;\n\n#define MAX_SLICES      32\n\n\nstatic  unsigned int MaxFrameNum = (1 << 12);\nstatic  unsigned int Log2MaxFrameNum = 12;\nstatic  unsigned int Log2MaxPicOrderCntLsb = 8;\n\nstatic const struct option longopts[] = {\n    {\"qp\", required_argument, 0, 1},\n    {\"fb\", required_argument, 0, 2},\n    {\"mode\", required_argument, 0, 3},\n    {\"low-power\", no_argument, 0, 4},\n    {\"roi-test\", no_argument, 0, 5},\n    {\"frames\", required_argument, 0, 6},\n    { NULL, 0, NULL, 0}\n};\n\nstatic int\nbuild_packed_pic_buffer(unsigned char **header_buffer);\n\nstatic int\nbuild_packed_seq_buffer(unsigned char **header_buffer);\n\nstatic int\nbuild_nal_delimiter(unsigned char **header_buffer);\n\nstatic int\nbuild_packed_sei_pic_timing(unsigned int cpb_removal_length,\n                            unsigned int dpb_output_length,\n                            unsigned char **sei_buffer);\n\nstatic int\nbuild_packed_idr_sei_buffer_timing(unsigned int init_cpb_removal_delay_length,\n                                   unsigned int cpb_removal_length,\n                                   unsigned int dpb_output_length,\n                                   unsigned char **sei_buffer);\n\nstruct upload_thread_param {\n    FILE *yuv_fp;\n    VASurfaceID surface_id;\n};\n\nstatic void\nupload_yuv_to_surface(FILE *yuv_fp, VASurfaceID surface_id);\n\nstatic struct {\n    VAProfile profile;\n    int constraint_set_flag;\n    VAEncSequenceParameterBufferH264 seq_param;\n    VAEncPictureParameterBufferH264 pic_param;\n    VAEncSliceParameterBufferH264 slice_param[MAX_SLICES];\n    VAContextID context_id;\n    VAConfigID config_id;\n    VABufferID seq_param_buf_id;                /* Sequence level parameter */\n    VABufferID pic_param_buf_id;                /* Picture level parameter */\n    VABufferID slice_param_buf_id[MAX_SLICES];  /* Slice level parameter, multil slices */\n    VABufferID codedbuf_buf_id;                 /* Output buffer, compressed data */\n    VABufferID packed_seq_header_param_buf_id;\n    VABufferID packed_seq_buf_id;\n    VABufferID packed_pic_header_param_buf_id;\n    VABufferID packed_pic_buf_id;\n    VABufferID packed_sei_header_param_buf_id;   /* the SEI buffer */\n    VABufferID packed_sei_buf_id;\n    VABufferID misc_parameter_hrd_buf_id;\n    VABufferID misc_parameter_roi_buf_id;\n    VABufferID packed_aud_header_param_buf_id;\n    VABufferID packed_aud_buf_id;\n\n    int num_slices;\n    int codedbuf_i_size;\n    int codedbuf_pb_size;\n    int current_input_surface;\n    int rate_control_method;\n    struct upload_thread_param upload_thread_param;\n    pthread_t upload_thread_id;\n    int upload_thread_value;\n    int i_initial_cpb_removal_delay;\n    int i_initial_cpb_removal_delay_offset;\n    int i_initial_cpb_removal_delay_length;\n    int i_cpb_removal_delay;\n    int i_cpb_removal_delay_length;\n    int i_dpb_output_delay_length;\n    int time_offset_length;\n\n    unsigned long long idr_frame_num;\n    unsigned long long prev_idr_cpb_removal;\n    unsigned long long current_idr_cpb_removal;\n    unsigned long long current_cpb_removal;\n    /* This is relative to the current_cpb_removal */\n    unsigned int current_dpb_removal_delta;\n} avcenc_context;\n\nstatic  VAPictureH264 ReferenceFrames[16], RefPicList0[32], RefPicList1[32];\n\nstatic void create_encode_pipe()\n{\n    VAEntrypoint entrypoints[5];\n    int num_entrypoints, slice_entrypoint;\n    VAConfigAttrib attrib[3];\n    int major_ver, minor_ver;\n    VAStatus va_status;\n\n    va_dpy = va_open_display();\n    va_status = vaInitialize(va_dpy, &major_ver, &minor_ver);\n    CHECK_VASTATUS(va_status, \"vaInitialize\");\n\n    vaQueryConfigEntrypoints(va_dpy, avcenc_context.profile, entrypoints,\n                             &num_entrypoints);\n\n    for (slice_entrypoint = 0; slice_entrypoint < num_entrypoints; slice_entrypoint++) {\n        if (entrypoints[slice_entrypoint] == select_entrypoint)\n            break;\n    }\n\n    if (slice_entrypoint == num_entrypoints) {\n        /* not find Slice entry point */\n        assert(0);\n    }\n\n    /* find out the format for the render target, and rate control mode */\n    attrib[0].type = VAConfigAttribRTFormat;\n    attrib[1].type = VAConfigAttribRateControl;\n\n    /* This is to query whether the ROI is supported */\n    attrib[2].type = VAConfigAttribEncROI;\n    vaGetConfigAttributes(va_dpy, avcenc_context.profile, select_entrypoint,\n                          &attrib[0], 3);\n\n    if ((attrib[0].value & VA_RT_FORMAT_YUV420) == 0) {\n        /* not find desired YUV420 RT format */\n        assert(0);\n    }\n\n    if ((attrib[1].value & avcenc_context.rate_control_method) == 0) {\n        /* Can't find matched RC mode */\n        printf(\"Can't find the desired RC mode, exit\\n\");\n        assert(0);\n    }\n\n    if (roi_test_enable) {\n        if (attrib[2].value != VA_ATTRIB_NOT_SUPPORTED) {\n            VAConfigAttribValEncROI *roi_config = (VAConfigAttribValEncROI *) & (attrib[2].value);\n            if (roi_config->bits.num_roi_regions == 0 ||\n                roi_config->bits.roi_rc_qp_delta_support == 0) {\n                roi_test_enable = 0;\n                printf(\"WARNING: do not support ROI or ROI delta QP ! \\n\");\n            }\n        } else {\n            roi_test_enable = 0;\n            printf(\"WARNING: do not support VAConfigAttribValEncROI! \\n\");\n        }\n    }\n\n    attrib[0].value = VA_RT_FORMAT_YUV420; /* set to desired RT format */\n    attrib[1].value = avcenc_context.rate_control_method; /* set to desired RC mode */\n\n    if (roi_test_enable) {\n        va_status = vaCreateConfig(va_dpy, avcenc_context.profile, select_entrypoint,\n                                   &attrib[0], 3, &avcenc_context.config_id);\n    } else {\n        va_status = vaCreateConfig(va_dpy, avcenc_context.profile, select_entrypoint,\n                                   &attrib[0], 2, &avcenc_context.config_id);\n    }\n    CHECK_VASTATUS(va_status, \"vaCreateConfig\");\n\n    /* Create a context for this decode pipe */\n    va_status = vaCreateContext(va_dpy, avcenc_context.config_id,\n                                picture_width, picture_height,\n                                VA_PROGRESSIVE,\n                                0, 0,\n                                &avcenc_context.context_id);\n    CHECK_VASTATUS(va_status, \"vaCreateContext\");\n}\n\nstatic void destory_encode_pipe()\n{\n    vaDestroyContext(va_dpy, avcenc_context.context_id);\n    vaDestroyConfig(va_dpy, avcenc_context.config_id);\n    vaTerminate(va_dpy);\n    va_close_display(va_dpy);\n}\n\n/***************************************************\n *\n *  The encode pipe resource define\n *\n ***************************************************/\n#define SID_INPUT_PICTURE_0                     0\n#define SID_INPUT_PICTURE_1                     1\n#define SID_REFERENCE_PICTURE_L0                2\n#define SID_REFERENCE_PICTURE_L1                3\n#define SID_RECON_PICTURE                       4\n#define SID_NUMBER                              SID_RECON_PICTURE + 1\n\n#define SURFACE_NUM 16 /* 16 surfaces for reference */\n\nstatic  VASurfaceID surface_ids[SID_NUMBER];\nstatic  VASurfaceID ref_surface[SURFACE_NUM];\nstatic  int use_slot[SURFACE_NUM];\n\nstatic  unsigned long long current_frame_display = 0;\nstatic  unsigned long long current_IDR_display = 0;\n\nstatic  VAPictureH264 CurrentCurrPic;\n\n#define current_slot (current_frame_display % SURFACE_NUM)\n\nstatic int frame_number;\nstatic unsigned long long enc_frame_number;\nstatic int current_frame_type;\nstatic int current_frame_num;\nstatic unsigned int current_poc;\n\nstatic  unsigned int num_ref_frames = 2;\nstatic  unsigned int numShortTerm = 0;\n/***************************************************/\n\nstatic int get_free_slot()\n{\n    int i, index = -1;\n\n    for (i = 0; i < SURFACE_NUM; i++) {\n        if (use_slot[i] == 0) {\n            index = i;\n            break;\n        }\n    }\n    if (index < 0) {\n        printf(\"WARNING: No free slot to store the reconstructed frame \\n\");\n        index = SURFACE_NUM - 1;\n    }\n    return index;\n}\n\nstatic void *\nupload_thread_function(void *data)\n{\n    struct upload_thread_param *param = data;\n\n    upload_yuv_to_surface(param->yuv_fp, param->surface_id);\n\n    return NULL;\n}\n\nstatic void alloc_encode_resource(FILE *yuv_fp)\n{\n    VAStatus va_status;\n\n    // Create surface\n    va_status = vaCreateSurfaces(\n                    va_dpy,\n                    VA_RT_FORMAT_YUV420, picture_width, picture_height,\n                    surface_ids, SID_NUMBER,\n                    NULL, 0\n                );\n\n    CHECK_VASTATUS(va_status, \"vaCreateSurfaces\");\n\n    // Create surface\n    va_status = vaCreateSurfaces(\n                    va_dpy,\n                    VA_RT_FORMAT_YUV420, picture_width, picture_height,\n                    ref_surface, SURFACE_NUM,\n                    NULL, 0\n                );\n\n    CHECK_VASTATUS(va_status, \"vaCreateSurfaces\");\n\n\n    newImageBuffer = (unsigned char *)malloc(frame_size);\n\n    /* firstly upload YUV data to SID_INPUT_PICTURE_1 */\n    avcenc_context.upload_thread_param.yuv_fp = yuv_fp;\n    avcenc_context.upload_thread_param.surface_id = surface_ids[SID_INPUT_PICTURE_1];\n\n    avcenc_context.upload_thread_value = pthread_create(&avcenc_context.upload_thread_id,\n                                         NULL,\n                                         upload_thread_function,\n                                         (void*)&avcenc_context.upload_thread_param);\n}\n\nstatic void release_encode_resource()\n{\n    pthread_join(avcenc_context.upload_thread_id, NULL);\n    free(newImageBuffer);\n\n    // Release all the surfaces resource\n    vaDestroySurfaces(va_dpy, surface_ids, SID_NUMBER);\n    // Release all the reference surfaces\n    vaDestroySurfaces(va_dpy, ref_surface, SURFACE_NUM);\n}\n\nstatic void avcenc_update_sei_param(int is_idr)\n{\n    VAEncPackedHeaderParameterBuffer packed_header_param_buffer;\n    unsigned int length_in_bits;\n    unsigned char *packed_sei_buffer = NULL;\n    VAStatus va_status;\n\n    if (is_idr)\n        length_in_bits = build_packed_idr_sei_buffer_timing(\n                             avcenc_context.i_initial_cpb_removal_delay_length,\n                             avcenc_context.i_cpb_removal_delay_length,\n                             avcenc_context.i_dpb_output_delay_length,\n                             &packed_sei_buffer);\n    else\n        length_in_bits = build_packed_sei_pic_timing(\n                             avcenc_context.i_cpb_removal_delay_length,\n                             avcenc_context.i_dpb_output_delay_length,\n                             &packed_sei_buffer);\n\n    packed_header_param_buffer.type = VAEncPackedHeaderRawData;\n    packed_header_param_buffer.bit_length = length_in_bits;\n    packed_header_param_buffer.has_emulation_bytes = 0;\n\n    va_status = vaCreateBuffer(va_dpy,\n                               avcenc_context.context_id,\n                               VAEncPackedHeaderParameterBufferType,\n                               sizeof(packed_header_param_buffer), 1, &packed_header_param_buffer,\n                               &avcenc_context.packed_sei_header_param_buf_id);\n    CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n    va_status = vaCreateBuffer(va_dpy,\n                               avcenc_context.context_id,\n                               VAEncPackedHeaderDataBufferType,\n                               (length_in_bits + 7) / 8, 1, packed_sei_buffer,\n                               &avcenc_context.packed_sei_buf_id);\n    CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n    free(packed_sei_buffer);\n    return;\n}\n\n#define partition(ref, field, key, ascending)   \\\n    while (i <= j) {                            \\\n        if (ascending) {                        \\\n            while (ref[i].field < key)          \\\n                i++;                            \\\n            while (ref[j].field > key)          \\\n                j--;                            \\\n        } else {                                \\\n            while (ref[i].field > key)          \\\n                i++;                            \\\n            while (ref[j].field < key)          \\\n                j--;                            \\\n        }                                       \\\n        if (i <= j) {                           \\\n            tmp = ref[i];                       \\\n            ref[i] = ref[j];                    \\\n            ref[j] = tmp;                       \\\n            i++;                                \\\n            j--;                                \\\n        }                                       \\\n    }                                           \\\n\nstatic void sort_one(VAPictureH264 ref[], int left, int right,\n                     int ascending, int frame_idx)\n{\n    int i = left, j = right;\n    unsigned int key;\n    VAPictureH264 tmp;\n\n    if (frame_idx) {\n        key = ref[(left + right) / 2].frame_idx;\n        partition(ref, frame_idx, key, ascending);\n    } else {\n        key = ref[(left + right) / 2].TopFieldOrderCnt;\n        partition(ref, TopFieldOrderCnt, (signed int)key, ascending);\n    }\n\n    /* recursion */\n    if (left < j)\n        sort_one(ref, left, j, ascending, frame_idx);\n\n    if (i < right)\n        sort_one(ref, i, right, ascending, frame_idx);\n}\n\nstatic void sort_two(VAPictureH264 ref[], int left, int right, unsigned int key, unsigned int frame_idx,\n                     int partition_ascending, int list0_ascending, int list1_ascending)\n{\n    int i = left, j = right;\n    VAPictureH264 tmp;\n\n    if (frame_idx) {\n        partition(ref, frame_idx, key, partition_ascending);\n    } else {\n        partition(ref, TopFieldOrderCnt, (signed int)key, partition_ascending);\n    }\n\n    sort_one(ref, left, i - 1, list0_ascending, frame_idx);\n    sort_one(ref, j + 1, right, list1_ascending, frame_idx);\n}\n\nstatic int update_RefPicList()\n{\n\n    if (current_frame_type == SLICE_TYPE_P) {\n        memcpy(RefPicList0, ReferenceFrames, numShortTerm * sizeof(VAPictureH264));\n        sort_one(RefPicList0, 0, numShortTerm - 1, 0, 1);\n    }\n\n    if (current_frame_type == SLICE_TYPE_B) {\n        memcpy(RefPicList0, ReferenceFrames, numShortTerm * sizeof(VAPictureH264));\n        sort_two(RefPicList0, 0, numShortTerm - 1, current_poc, 0,\n                 1, 0, 1);\n\n        memcpy(RefPicList1, ReferenceFrames, numShortTerm * sizeof(VAPictureH264));\n        sort_two(RefPicList1, 0, numShortTerm - 1, current_poc, 0,\n                 0, 1, 0);\n    }\n\n    return 0;\n}\n\nstatic void avcenc_update_picture_parameter(int slice_type, int is_idr)\n{\n    VAEncPictureParameterBufferH264 *pic_param;\n    VAStatus va_status;\n    int recon_index;\n\n    recon_index = get_free_slot();\n    // Picture level\n    pic_param = &avcenc_context.pic_param;\n\n    pic_param->CurrPic.picture_id = ref_surface[recon_index];\n    pic_param->CurrPic.frame_idx = current_frame_num;\n    pic_param->CurrPic.flags = 0;\n\n    pic_param->CurrPic.TopFieldOrderCnt = current_poc;\n    pic_param->CurrPic.BottomFieldOrderCnt = pic_param->CurrPic.TopFieldOrderCnt;\n\n    assert(avcenc_context.codedbuf_buf_id != VA_INVALID_ID);\n    pic_param->coded_buf = avcenc_context.codedbuf_buf_id;\n    pic_param->frame_num = current_frame_num;\n    pic_param->pic_fields.bits.idr_pic_flag = !!is_idr;\n    pic_param->pic_fields.bits.reference_pic_flag = (slice_type != SLICE_TYPE_B);\n    CurrentCurrPic = pic_param->CurrPic;\n\n    if (slice_type == SLICE_TYPE_P || slice_type == SLICE_TYPE_B)\n        memset(pic_param->ReferenceFrames, 0xff, 16 * sizeof(VAPictureH264)); /* invalid all */\n\n    if ((slice_type == SLICE_TYPE_P) || (slice_type == SLICE_TYPE_B)) {\n        pic_param->ReferenceFrames[0] = RefPicList0[0];\n    }\n    if (slice_type == SLICE_TYPE_B) {\n        pic_param->ReferenceFrames[1] = RefPicList1[0];\n    }\n\n    va_status = vaCreateBuffer(va_dpy,\n                               avcenc_context.context_id,\n                               VAEncPictureParameterBufferType,\n                               sizeof(*pic_param), 1, pic_param,\n                               &avcenc_context.pic_param_buf_id);\n    CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n}\n\n#ifndef VA_FOURCC_I420\n#define VA_FOURCC_I420          0x30323449\n#endif\n\nstatic void upload_yuv_to_surface(FILE *yuv_fp, VASurfaceID surface_id)\n{\n    VAImage surface_image;\n    VAStatus va_status;\n    void *surface_p = NULL;\n    unsigned char *y_src, *u_src, *v_src;\n    unsigned char *y_dst, *u_dst, *v_dst;\n    int y_size = picture_width * picture_height;\n    int u_size = (picture_width >> 1) * (picture_height >> 1);\n    int row, col;\n    size_t n_items;\n\n    do {\n        n_items = fread(newImageBuffer, frame_size, 1, yuv_fp);\n    } while (n_items != 1);\n\n    va_status = vaDeriveImage(va_dpy, surface_id, &surface_image);\n    CHECK_VASTATUS(va_status, \"vaDeriveImage\");\n\n    vaMapBuffer(va_dpy, surface_image.buf, &surface_p);\n    assert(VA_STATUS_SUCCESS == va_status);\n\n    y_src = newImageBuffer;\n    u_src = newImageBuffer + y_size; /* UV offset for NV12 */\n    v_src = newImageBuffer + y_size + u_size;\n\n    y_dst = (unsigned char *)surface_p + surface_image.offsets[0];\n    u_dst = (unsigned char *)surface_p +\n            surface_image.offsets[1]; /* UV offset for NV12 */\n    v_dst = (unsigned char *)surface_p + surface_image.offsets[2];\n\n    /* Y plane */\n    for (row = 0; row < surface_image.height; row++) {\n        memcpy(y_dst, y_src, surface_image.width);\n        y_dst += surface_image.pitches[0];\n        y_src += picture_width;\n    }\n\n    if (surface_image.format.fourcc == VA_FOURCC_NV12) { /* UV plane */\n        for (row = 0; row < surface_image.height / 2; row++) {\n            for (col = 0; col < surface_image.width / 2; col++) {\n                u_dst[col * 2] = u_src[col];\n                u_dst[col * 2 + 1] = v_src[col];\n            }\n\n            u_dst += surface_image.pitches[1];\n            u_src += (picture_width / 2);\n            v_src += (picture_width / 2);\n        }\n    } else if (surface_image.format.fourcc == VA_FOURCC_YV12 ||\n               surface_image.format.fourcc == VA_FOURCC_I420) {\n        const int U = surface_image.format.fourcc == VA_FOURCC_I420 ? 1 : 2;\n        const int V = surface_image.format.fourcc == VA_FOURCC_I420 ? 2 : 1;\n\n        u_dst = (unsigned char *)surface_p + surface_image.offsets[U];\n        v_dst = (unsigned char *)surface_p + surface_image.offsets[V];\n\n        for (row = 0; row < surface_image.height / 2; row++) {\n            memcpy(u_dst, u_src, surface_image.width / 2);\n            memcpy(v_dst, v_src, surface_image.width / 2);\n            u_dst += surface_image.pitches[U];\n            v_dst += surface_image.pitches[V];\n            u_src += (picture_width / 2);\n            v_src += (picture_width / 2);\n        }\n    }\n\n    vaUnmapBuffer(va_dpy, surface_image.buf);\n    vaDestroyImage(va_dpy, surface_image.image_id);\n}\n\nstatic void avcenc_update_slice_parameter(int slice_type)\n{\n    VAEncSliceParameterBufferH264 *slice_param;\n    VAStatus va_status;\n    int i;\n\n    // Slice level\n    i = 0;\n    slice_param = &avcenc_context.slice_param[i];\n    slice_param->macroblock_address = 0;\n    slice_param->num_macroblocks = picture_height_in_mbs * picture_width_in_mbs;\n    slice_param->pic_parameter_set_id = 0;\n    slice_param->slice_type = slice_type;\n    slice_param->direct_spatial_mv_pred_flag = 1;\n    slice_param->num_ref_idx_l0_active_minus1 = 0;      /* FIXME: ??? */\n    slice_param->num_ref_idx_l1_active_minus1 = 0;\n    slice_param->cabac_init_idc = 0;\n    slice_param->slice_qp_delta = 0;\n    slice_param->disable_deblocking_filter_idc = 0;\n    slice_param->slice_alpha_c0_offset_div2 = 2;\n    slice_param->slice_beta_offset_div2 = 2;\n    slice_param->idr_pic_id = 0;\n\n    /* FIXME: fill other fields */\n    if ((slice_type == SLICE_TYPE_P) || (slice_type == SLICE_TYPE_B)) {\n        memset(slice_param->RefPicList0, 0xFF, 32 * sizeof(VAPictureH264));\n        slice_param->RefPicList0[0] = RefPicList0[0];\n    }\n\n    if (slice_type == SLICE_TYPE_B) {\n        memset(slice_param->RefPicList1, 0xFF, 32 * sizeof(VAPictureH264));\n        slice_param->RefPicList1[0] = RefPicList1[0];\n    }\n\n    va_status = vaCreateBuffer(va_dpy,\n                               avcenc_context.context_id,\n                               VAEncSliceParameterBufferType,\n                               sizeof(*slice_param), 1, slice_param,\n                               &avcenc_context.slice_param_buf_id[i]);\n    CHECK_VASTATUS(va_status, \"vaCreateBuffer\");;\n    i++;\n\n#if 0\n    slice_param = &avcenc_context.slice_param[i];\n    slice_param->macroblock_address = picture_height_in_mbs * picture_width_in_mbs / 2;\n    slice_param->num_macroblocks = picture_height_in_mbs * picture_width_in_mbs / 2;\n    slice_param->pic_parameter_set_id = 0;\n    slice_param->slice_type = slice_type;\n    slice_param->direct_spatial_mv_pred_flag = 0;\n    slice_param->num_ref_idx_l0_active_minus1 = 0;      /* FIXME: ??? */\n    slice_param->num_ref_idx_l1_active_minus1 = 0;\n    slice_param->cabac_init_idc = 0;\n    slice_param->slice_qp_delta = 0;\n    slice_param->disable_deblocking_filter_idc = 0;\n    slice_param->slice_alpha_c0_offset_div2 = 2;\n    slice_param->slice_beta_offset_div2 = 2;\n    slice_param->idr_pic_id = 0;\n\n    /* FIXME: fill other fields */\n\n    va_status = vaCreateBuffer(va_dpy,\n                               avcenc_context.context_id,\n                               VAEncSliceParameterBufferType,\n                               sizeof(*slice_param), 1, slice_param,\n                               &avcenc_context.slice_param_buf_id[i]);\n    CHECK_VASTATUS(va_status, \"vaCreateBuffer\");;\n    i++;\n#endif\n\n    avcenc_context.num_slices = i;\n}\n\nstatic int update_ReferenceFrames(void)\n{\n    int i;\n    /* B-frame is not used for reference */\n    if (current_frame_type == SLICE_TYPE_B)\n        return 0;\n\n    CurrentCurrPic.flags = VA_PICTURE_H264_SHORT_TERM_REFERENCE;\n    numShortTerm++;\n    if (numShortTerm > num_ref_frames)\n        numShortTerm = num_ref_frames;\n    for (i = numShortTerm - 1; i > 0; i--)\n        ReferenceFrames[i] = ReferenceFrames[i - 1];\n    ReferenceFrames[0] = CurrentCurrPic;\n\n    if (current_frame_type != SLICE_TYPE_B)\n        current_frame_num++;\n    if (current_frame_num > MaxFrameNum)\n        current_frame_num = 0;\n\n    /* Update the use_slot. Only when the surface is used in reference\n     * frame list, the use_slot[index] is set\n     */\n    for (i = 0; i < SURFACE_NUM; i++) {\n        int j;\n        bool found;\n\n        found = false;\n        for (j = 0; j < numShortTerm; j++) {\n            if (ref_surface[i] == ReferenceFrames[j].picture_id) {\n                found = true;\n                break;\n            }\n        }\n        if (found)\n            use_slot[i] = 1;\n        else\n            use_slot[i] = 0;\n    }\n\n    return 0;\n}\n\nstatic int begin_picture(FILE *yuv_fp, int frame_num, int display_num, int slice_type, int is_idr)\n{\n    VAStatus va_status;\n\n    if (avcenc_context.upload_thread_value != 0) {\n        fprintf(stderr, \"FATAL error!!!\\n\");\n        exit(1);\n    }\n\n    pthread_join(avcenc_context.upload_thread_id, NULL);\n\n    avcenc_context.upload_thread_value = -1;\n\n    if (avcenc_context.current_input_surface == SID_INPUT_PICTURE_0)\n        avcenc_context.current_input_surface = SID_INPUT_PICTURE_1;\n    else\n        avcenc_context.current_input_surface = SID_INPUT_PICTURE_0;\n\n    if (aud_nal_enable) {\n        VAEncPackedHeaderParameterBuffer packed_header_param_buffer;\n        unsigned int length_in_bits;\n        unsigned char *packed_buffer = NULL;\n\n        length_in_bits = build_nal_delimiter(&packed_buffer);\n        packed_header_param_buffer.type = VAEncPackedHeaderRawData;\n        packed_header_param_buffer.bit_length = length_in_bits;\n        packed_header_param_buffer.has_emulation_bytes = 1;\n        va_status = vaCreateBuffer(va_dpy,\n                                   avcenc_context.context_id,\n                                   VAEncPackedHeaderParameterBufferType,\n                                   sizeof(packed_header_param_buffer), 1, &packed_header_param_buffer,\n                                   &avcenc_context.packed_aud_header_param_buf_id);\n        CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n        va_status = vaCreateBuffer(va_dpy,\n                                   avcenc_context.context_id,\n                                   VAEncPackedHeaderDataBufferType,\n                                   (length_in_bits + 7) / 8, 1, packed_buffer,\n                                   &avcenc_context.packed_aud_buf_id);\n        CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n        free(packed_buffer);\n    }\n\n    if (is_idr) {\n        VAEncPackedHeaderParameterBuffer packed_header_param_buffer;\n        unsigned int length_in_bits;\n        unsigned char *packed_seq_buffer = NULL, *packed_pic_buffer = NULL;\n\n        assert(slice_type == SLICE_TYPE_I);\n        length_in_bits = build_packed_seq_buffer(&packed_seq_buffer);\n        packed_header_param_buffer.type = VAEncPackedHeaderSequence;\n        packed_header_param_buffer.bit_length = length_in_bits;\n        packed_header_param_buffer.has_emulation_bytes = 0;\n        va_status = vaCreateBuffer(va_dpy,\n                                   avcenc_context.context_id,\n                                   VAEncPackedHeaderParameterBufferType,\n                                   sizeof(packed_header_param_buffer), 1, &packed_header_param_buffer,\n                                   &avcenc_context.packed_seq_header_param_buf_id);\n        CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n        va_status = vaCreateBuffer(va_dpy,\n                                   avcenc_context.context_id,\n                                   VAEncPackedHeaderDataBufferType,\n                                   (length_in_bits + 7) / 8, 1, packed_seq_buffer,\n                                   &avcenc_context.packed_seq_buf_id);\n        CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n        length_in_bits = build_packed_pic_buffer(&packed_pic_buffer);\n        packed_header_param_buffer.type = VAEncPackedHeaderPicture;\n        packed_header_param_buffer.bit_length = length_in_bits;\n        packed_header_param_buffer.has_emulation_bytes = 0;\n\n        va_status = vaCreateBuffer(va_dpy,\n                                   avcenc_context.context_id,\n                                   VAEncPackedHeaderParameterBufferType,\n                                   sizeof(packed_header_param_buffer), 1, &packed_header_param_buffer,\n                                   &avcenc_context.packed_pic_header_param_buf_id);\n        CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n        va_status = vaCreateBuffer(va_dpy,\n                                   avcenc_context.context_id,\n                                   VAEncPackedHeaderDataBufferType,\n                                   (length_in_bits + 7) / 8, 1, packed_pic_buffer,\n                                   &avcenc_context.packed_pic_buf_id);\n        CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n        free(packed_seq_buffer);\n        free(packed_pic_buffer);\n    }\n\n    /* sequence parameter set */\n    VAEncSequenceParameterBufferH264 *seq_param = &avcenc_context.seq_param;\n    va_status = vaCreateBuffer(va_dpy,\n                               avcenc_context.context_id,\n                               VAEncSequenceParameterBufferType,\n                               sizeof(*seq_param), 1, seq_param,\n                               &avcenc_context.seq_param_buf_id);\n    CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n\n    /* hrd parameter */\n    VAEncMiscParameterBuffer *misc_param;\n    VAEncMiscParameterHRD *misc_hrd_param;\n    va_status = vaCreateBuffer(va_dpy,\n                   avcenc_context.context_id,\n                   VAEncMiscParameterBufferType,\n                   sizeof(VAEncMiscParameterBuffer) + sizeof(VAEncMiscParameterRateControl),\n                   1,\n                   NULL,\n                   &avcenc_context.misc_parameter_hrd_buf_id);\n    CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n    vaMapBuffer(va_dpy,\n                avcenc_context.misc_parameter_hrd_buf_id,\n                (void **)&misc_param);\n    misc_param->type = VAEncMiscParameterTypeHRD;\n    misc_hrd_param = (VAEncMiscParameterHRD *)misc_param->data;\n\n    if (frame_bit_rate > 0) {\n        misc_hrd_param->initial_buffer_fullness = frame_bit_rate * 1000 * 4;\n        misc_hrd_param->buffer_size = frame_bit_rate * 1000 * 8;\n    } else {\n        misc_hrd_param->initial_buffer_fullness = 0;\n        misc_hrd_param->buffer_size = 0;\n    }\n\n    vaUnmapBuffer(va_dpy, avcenc_context.misc_parameter_hrd_buf_id);\n\n    /* ROI parameter: hard code for test on only one region (0,0,120,120) with qp_delta=4 */\n    if (roi_test_enable) {\n        VAEncMiscParameterBufferROI *misc_roi_param;\n\n        int roi_num = 1;\n        va_status = vaCreateBuffer(va_dpy,\n                       avcenc_context.context_id,\n                       VAEncMiscParameterBufferType,\n                       sizeof(VAEncMiscParameterBuffer) + sizeof(VAEncMiscParameterBufferROI) + roi_num * sizeof(VAEncROI),\n                       1,\n                       NULL,\n                       &avcenc_context.misc_parameter_roi_buf_id);\n        CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n        vaMapBuffer(va_dpy,\n                    avcenc_context.misc_parameter_roi_buf_id,\n                    (void **)&misc_param);\n        misc_param->type = VAEncMiscParameterTypeROI;\n        misc_roi_param = (VAEncMiscParameterBufferROI *)misc_param->data;\n        {\n            misc_roi_param->roi_flags.bits.roi_value_is_qp_delta = 1;\n            /*\n            * Max/Min delta_qp is only used in CBR mode. It is ingored under CQP mode.\n            * max_delta_qp means the allowed upper bound of qp delta. (qp + X)\n            * min_delta_qp means the allowed lower bound of qp delta. (qp -X)\n            * So it will be better that it is positive. Otherwise the driver will\n            * use the default bound setting.\n            */\n            misc_roi_param->max_delta_qp = 3;\n            misc_roi_param->min_delta_qp = 3;\n            /* one example of ROI region conf.\n            * please change it on the fly.\n            */\n            VAEncROI *region_roi = (VAEncROI *)((char *)misc_param + sizeof(VAEncMiscParameterBuffer) +\n                                                sizeof(VAEncMiscParameterBufferROI));\n\n            /*\n            * Under CQP mode roi_value specifies the qp_delta that is added to frame qp\n            * Under CBR mode roi_value specifies the important level (positive means that\n            * it is important. negative means that it is less important).\n            */\n            region_roi->roi_value = 4;\n            region_roi->roi_rectangle.x = 0;\n            region_roi->roi_rectangle.y = 0;\n            region_roi->roi_rectangle.width = (120 < picture_width / 4) ? 120 : picture_width / 4;\n            region_roi->roi_rectangle.height = (120 < picture_height / 4) ? 120 : picture_height / 4;\n\n            misc_roi_param->roi = region_roi;\n            misc_roi_param->num_roi = 1;\n        }\n\n        vaUnmapBuffer(va_dpy, avcenc_context.misc_parameter_roi_buf_id);\n    }\n    return 0;\n}\n\nint avcenc_render_picture()\n{\n    VAStatus va_status;\n    VABufferID va_buffers[20];\n    unsigned int num_va_buffers = 0;\n    int i;\n\n    if (avcenc_context.packed_aud_header_param_buf_id != VA_INVALID_ID)\n        va_buffers[num_va_buffers++] =  avcenc_context.packed_aud_header_param_buf_id;\n\n    if (avcenc_context.packed_aud_buf_id != VA_INVALID_ID)\n        va_buffers[num_va_buffers++] =  avcenc_context.packed_aud_buf_id;\n\n    va_buffers[num_va_buffers++] = avcenc_context.seq_param_buf_id;\n    va_buffers[num_va_buffers++] = avcenc_context.pic_param_buf_id;\n\n    if (avcenc_context.packed_seq_header_param_buf_id != VA_INVALID_ID)\n        va_buffers[num_va_buffers++] = avcenc_context.packed_seq_header_param_buf_id;\n\n    if (avcenc_context.packed_seq_buf_id != VA_INVALID_ID)\n        va_buffers[num_va_buffers++] = avcenc_context.packed_seq_buf_id;\n\n    if (avcenc_context.packed_pic_header_param_buf_id != VA_INVALID_ID)\n        va_buffers[num_va_buffers++] = avcenc_context.packed_pic_header_param_buf_id;\n\n    if (avcenc_context.packed_pic_buf_id != VA_INVALID_ID)\n        va_buffers[num_va_buffers++] = avcenc_context.packed_pic_buf_id;\n\n    if (avcenc_context.packed_sei_header_param_buf_id != VA_INVALID_ID)\n        va_buffers[num_va_buffers++] = avcenc_context.packed_sei_header_param_buf_id;\n\n    if (avcenc_context.packed_sei_buf_id != VA_INVALID_ID)\n        va_buffers[num_va_buffers++] = avcenc_context.packed_sei_buf_id;\n\n    if (avcenc_context.misc_parameter_hrd_buf_id != VA_INVALID_ID)\n        va_buffers[num_va_buffers++] =  avcenc_context.misc_parameter_hrd_buf_id;\n\n    if (avcenc_context.misc_parameter_roi_buf_id != VA_INVALID_ID)\n        va_buffers[num_va_buffers++] =  avcenc_context.misc_parameter_roi_buf_id;\n\n\n    va_status = vaBeginPicture(va_dpy,\n                               avcenc_context.context_id,\n                               surface_ids[avcenc_context.current_input_surface]);\n    CHECK_VASTATUS(va_status, \"vaBeginPicture\");\n\n    va_status = vaRenderPicture(va_dpy,\n                                avcenc_context.context_id,\n                                va_buffers,\n                                num_va_buffers);\n    CHECK_VASTATUS(va_status, \"vaRenderPicture\");\n\n    for (i = 0; i < avcenc_context.num_slices; i++) {\n        va_status = vaRenderPicture(va_dpy,\n                                    avcenc_context.context_id,\n                                    &avcenc_context.slice_param_buf_id[i],\n                                    1);\n        CHECK_VASTATUS(va_status, \"vaRenderPicture\");\n    }\n\n    va_status = vaEndPicture(va_dpy, avcenc_context.context_id);\n    CHECK_VASTATUS(va_status, \"vaEndPicture\");\n\n    return 0;\n}\n\nstatic int avcenc_destroy_buffers(VABufferID *va_buffers, unsigned int num_va_buffers)\n{\n    VAStatus va_status;\n    unsigned int i;\n\n    for (i = 0; i < num_va_buffers; i++) {\n        if (va_buffers[i] != VA_INVALID_ID) {\n            va_status = vaDestroyBuffer(va_dpy, va_buffers[i]);\n            CHECK_VASTATUS(va_status, \"vaDestroyBuffer\");\n            va_buffers[i] = VA_INVALID_ID;\n        }\n    }\n\n    return 0;\n}\n\nstatic void end_picture(void)\n{\n\n    update_ReferenceFrames();\n    avcenc_destroy_buffers(&avcenc_context.seq_param_buf_id, 1);\n    avcenc_destroy_buffers(&avcenc_context.pic_param_buf_id, 1);\n    avcenc_destroy_buffers(&avcenc_context.packed_seq_header_param_buf_id, 1);\n    avcenc_destroy_buffers(&avcenc_context.packed_seq_buf_id, 1);\n    avcenc_destroy_buffers(&avcenc_context.packed_pic_header_param_buf_id, 1);\n    avcenc_destroy_buffers(&avcenc_context.packed_pic_buf_id, 1);\n    avcenc_destroy_buffers(&avcenc_context.packed_sei_header_param_buf_id, 1);\n    avcenc_destroy_buffers(&avcenc_context.packed_sei_buf_id, 1);\n    avcenc_destroy_buffers(&avcenc_context.slice_param_buf_id[0], avcenc_context.num_slices);\n    avcenc_destroy_buffers(&avcenc_context.codedbuf_buf_id, 1);\n    avcenc_destroy_buffers(&avcenc_context.misc_parameter_hrd_buf_id, 1);\n    avcenc_destroy_buffers(&avcenc_context.misc_parameter_roi_buf_id, 1);\n    avcenc_destroy_buffers(&avcenc_context.packed_aud_header_param_buf_id, 1);\n    avcenc_destroy_buffers(&avcenc_context.packed_aud_buf_id, 1);\n\n    memset(avcenc_context.slice_param, 0, sizeof(avcenc_context.slice_param));\n    avcenc_context.num_slices = 0;\n}\n\n#define BITSTREAM_ALLOCATE_STEPPING     4096\n\nstruct __bitstream {\n    unsigned int *buffer;\n    int bit_offset;\n    int max_size_in_dword;\n};\n\ntypedef struct __bitstream bitstream;\n\n#if 0\nstatic int\nget_coded_bitsteam_length(unsigned char *buffer, int buffer_length)\n{\n    int i;\n\n    for (i = 0; i < buffer_length - 3; i++) {\n        if (!buffer[i] &&\n            !buffer[i + 1] &&\n            !buffer[i + 2] &&\n            !buffer[i + 3])\n            break;\n    }\n\n    return i;\n}\n#endif\n\nstatic unsigned int\nva_swap32(unsigned int val)\n{\n    unsigned char *pval = (unsigned char *)&val;\n\n    return ((pval[0] << 24)     |\n            (pval[1] << 16)     |\n            (pval[2] << 8)      |\n            (pval[3] << 0));\n}\n\nstatic void\nbitstream_start(bitstream *bs)\n{\n    bs->max_size_in_dword = BITSTREAM_ALLOCATE_STEPPING;\n    bs->buffer = calloc(bs->max_size_in_dword * sizeof(int), 1);\n    assert(bs->buffer);\n    bs->bit_offset = 0;\n}\n\nstatic void\nbitstream_end(bitstream *bs)\n{\n    int pos = (bs->bit_offset >> 5);\n    int bit_offset = (bs->bit_offset & 0x1f);\n    int bit_left = 32 - bit_offset;\n\n    if (bit_offset) {\n        bs->buffer[pos] = va_swap32((bs->buffer[pos] << bit_left));\n    }\n}\n\nstatic void\nbitstream_put_ui(bitstream *bs, unsigned int val, int size_in_bits)\n{\n    int pos = (bs->bit_offset >> 5);\n    int bit_offset = (bs->bit_offset & 0x1f);\n    int bit_left = 32 - bit_offset;\n\n    if (!size_in_bits)\n        return;\n\n    bs->bit_offset += size_in_bits;\n\n    if (bit_left > size_in_bits) {\n        bs->buffer[pos] = (bs->buffer[pos] << size_in_bits | val);\n    } else {\n        size_in_bits -= bit_left;\n        bs->buffer[pos] = (bs->buffer[pos] << bit_left) | (val >> size_in_bits);\n        bs->buffer[pos] = va_swap32(bs->buffer[pos]);\n\n        if (pos + 1 == bs->max_size_in_dword) {\n            bs->max_size_in_dword += BITSTREAM_ALLOCATE_STEPPING;\n            bs->buffer = realloc(bs->buffer, bs->max_size_in_dword * sizeof(unsigned int));\n            assert(bs->buffer);\n        }\n\n        bs->buffer[pos + 1] = val;\n    }\n}\n\nstatic void\nbitstream_put_ue(bitstream *bs, unsigned int val)\n{\n    int size_in_bits = 0;\n    int tmp_val = ++val;\n\n    while (tmp_val) {\n        tmp_val >>= 1;\n        size_in_bits++;\n    }\n\n    bitstream_put_ui(bs, 0, size_in_bits - 1); // leading zero\n    bitstream_put_ui(bs, val, size_in_bits);\n}\n\nstatic void\nbitstream_put_se(bitstream *bs, int val)\n{\n    unsigned int new_val;\n\n    if (val <= 0)\n        new_val = -2 * val;\n    else\n        new_val = 2 * val - 1;\n\n    bitstream_put_ue(bs, new_val);\n}\n\nstatic void\nbitstream_byte_aligning(bitstream *bs, int bit)\n{\n    int bit_offset = (bs->bit_offset & 0x7);\n    int bit_left = 8 - bit_offset;\n    int new_val;\n\n    if (!bit_offset)\n        return;\n\n    assert(bit == 0 || bit == 1);\n\n    if (bit)\n        new_val = (1 << bit_left) - 1;\n    else\n        new_val = 0;\n\n    bitstream_put_ui(bs, new_val, bit_left);\n}\n\nstatic void\nrbsp_trailing_bits(bitstream *bs)\n{\n    bitstream_put_ui(bs, 1, 1);\n    bitstream_byte_aligning(bs, 0);\n}\n\nstatic void nal_start_code_prefix(bitstream *bs)\n{\n    bitstream_put_ui(bs, 0x00000001, 32);\n}\n\nstatic void nal_header(bitstream *bs, int nal_ref_idc, int nal_unit_type)\n{\n    bitstream_put_ui(bs, 0, 1);                /* forbidden_zero_bit: 0 */\n    bitstream_put_ui(bs, nal_ref_idc, 2);\n    bitstream_put_ui(bs, nal_unit_type, 5);\n}\n\nstatic void sps_rbsp(bitstream *bs)\n{\n    VAEncSequenceParameterBufferH264 *seq_param = &avcenc_context.seq_param;\n    int profile_idc = PROFILE_IDC_BASELINE;\n\n    if (avcenc_context.profile == VAProfileH264High)\n        profile_idc = PROFILE_IDC_HIGH;\n    else if (avcenc_context.profile == VAProfileH264Main)\n        profile_idc = PROFILE_IDC_MAIN;\n\n    bitstream_put_ui(bs, profile_idc, 8);               /* profile_idc */\n    bitstream_put_ui(bs, !!(avcenc_context.constraint_set_flag & 1), 1);                         /* constraint_set0_flag */\n    bitstream_put_ui(bs, !!(avcenc_context.constraint_set_flag & 2), 1);                         /* constraint_set1_flag */\n    bitstream_put_ui(bs, !!(avcenc_context.constraint_set_flag & 4), 1);                         /* constraint_set2_flag */\n    bitstream_put_ui(bs, !!(avcenc_context.constraint_set_flag & 8), 1);                         /* constraint_set3_flag */\n    bitstream_put_ui(bs, 0, 4);                         /* reserved_zero_4bits */\n    bitstream_put_ui(bs, seq_param->level_idc, 8);      /* level_idc */\n    bitstream_put_ue(bs, seq_param->seq_parameter_set_id);      /* seq_parameter_set_id */\n\n    if (profile_idc == PROFILE_IDC_HIGH) {\n        bitstream_put_ue(bs, 1);        /* chroma_format_idc = 1, 4:2:0 */\n        bitstream_put_ue(bs, 0);        /* bit_depth_luma_minus8 */\n        bitstream_put_ue(bs, 0);        /* bit_depth_chroma_minus8 */\n        bitstream_put_ui(bs, 0, 1);     /* qpprime_y_zero_transform_bypass_flag */\n        bitstream_put_ui(bs, 0, 1);     /* seq_scaling_matrix_present_flag */\n    }\n\n    bitstream_put_ue(bs, seq_param->seq_fields.bits.log2_max_frame_num_minus4); /* log2_max_frame_num_minus4 */\n    bitstream_put_ue(bs, seq_param->seq_fields.bits.pic_order_cnt_type);        /* pic_order_cnt_type */\n\n    if (seq_param->seq_fields.bits.pic_order_cnt_type == 0)\n        bitstream_put_ue(bs, seq_param->seq_fields.bits.log2_max_pic_order_cnt_lsb_minus4);     /* log2_max_pic_order_cnt_lsb_minus4 */\n    else {\n        assert(0);\n    }\n\n    bitstream_put_ue(bs, seq_param->max_num_ref_frames);        /* num_ref_frames */\n    bitstream_put_ui(bs, 0, 1);                                 /* gaps_in_frame_num_value_allowed_flag */\n\n    bitstream_put_ue(bs, seq_param->picture_width_in_mbs - 1);  /* pic_width_in_mbs_minus1 */\n    bitstream_put_ue(bs, seq_param->picture_height_in_mbs - 1); /* pic_height_in_map_units_minus1 */\n    bitstream_put_ui(bs, seq_param->seq_fields.bits.frame_mbs_only_flag, 1);    /* frame_mbs_only_flag */\n\n    if (!seq_param->seq_fields.bits.frame_mbs_only_flag) {\n        assert(0);\n    }\n\n    bitstream_put_ui(bs, seq_param->seq_fields.bits.direct_8x8_inference_flag, 1);      /* direct_8x8_inference_flag */\n    bitstream_put_ui(bs, seq_param->frame_cropping_flag, 1);            /* frame_cropping_flag */\n\n    if (seq_param->frame_cropping_flag) {\n        bitstream_put_ue(bs, seq_param->frame_crop_left_offset);        /* frame_crop_left_offset */\n        bitstream_put_ue(bs, seq_param->frame_crop_right_offset);       /* frame_crop_right_offset */\n        bitstream_put_ue(bs, seq_param->frame_crop_top_offset);         /* frame_crop_top_offset */\n        bitstream_put_ue(bs, seq_param->frame_crop_bottom_offset);      /* frame_crop_bottom_offset */\n    }\n\n    if (frame_bit_rate < 0) {\n        bitstream_put_ui(bs, 0, 1); /* vui_parameters_present_flag */\n    } else {\n        bitstream_put_ui(bs, 1, 1); /* vui_parameters_present_flag */\n        bitstream_put_ui(bs, 0, 1); /* aspect_ratio_info_present_flag */\n        bitstream_put_ui(bs, 0, 1); /* overscan_info_present_flag */\n        bitstream_put_ui(bs, 0, 1); /* video_signal_type_present_flag */\n        bitstream_put_ui(bs, 0, 1); /* chroma_loc_info_present_flag */\n        bitstream_put_ui(bs, 1, 1); /* timing_info_present_flag */\n        {\n            bitstream_put_ui(bs, 1, 32);\n            bitstream_put_ui(bs, frame_rate * 2, 32);\n            bitstream_put_ui(bs, 1, 1);\n        }\n        bitstream_put_ui(bs, 1, 1); /* nal_hrd_parameters_present_flag */\n        {\n            // hrd_parameters\n            bitstream_put_ue(bs, 0);    /* cpb_cnt_minus1 */\n            bitstream_put_ui(bs, 0, 4); /* bit_rate_scale */\n            bitstream_put_ui(bs, 2, 4); /* cpb_size_scale */\n\n            /* the frame_bit_rate is in kbps */\n            bitstream_put_ue(bs, (((frame_bit_rate * 1000) >> 6) - 1)); /* bit_rate_value_minus1[0] */\n            bitstream_put_ue(bs, ((frame_bit_rate * 8000) >> 6) - 1); /* cpb_size_value_minus1[0] */\n            bitstream_put_ui(bs, 1, 1);  /* cbr_flag[0] */\n\n            /* initial_cpb_removal_delay_length_minus1 */\n            bitstream_put_ui(bs,\n                             (avcenc_context.i_initial_cpb_removal_delay_length - 1), 5);\n            /* cpb_removal_delay_length_minus1 */\n            bitstream_put_ui(bs,\n                             (avcenc_context.i_cpb_removal_delay_length - 1), 5);\n            /* dpb_output_delay_length_minus1 */\n            bitstream_put_ui(bs,\n                             (avcenc_context.i_dpb_output_delay_length - 1), 5);\n            /* time_offset_length  */\n            bitstream_put_ui(bs,\n                             (avcenc_context.time_offset_length - 1), 5);\n        }\n        bitstream_put_ui(bs, 0, 1);   /* vcl_hrd_parameters_present_flag */\n        bitstream_put_ui(bs, 0, 1);   /* low_delay_hrd_flag */\n\n        bitstream_put_ui(bs, 0, 1); /* pic_struct_present_flag */\n        bitstream_put_ui(bs, 0, 1); /* bitstream_restriction_flag */\n    }\n\n    rbsp_trailing_bits(bs);     /* rbsp_trailing_bits */\n}\n\n#if 0\nstatic void build_nal_sps(FILE *avc_fp)\n{\n    bitstream bs;\n\n    bitstream_start(&bs);\n    nal_start_code_prefix(&bs);\n    nal_header(&bs, NAL_REF_IDC_HIGH, NAL_SPS);\n    sps_rbsp(&bs);\n    bitstream_end(&bs, avc_fp);\n}\n#endif\n\nstatic void pps_rbsp(bitstream *bs)\n{\n    VAEncPictureParameterBufferH264 *pic_param = &avcenc_context.pic_param;\n\n    bitstream_put_ue(bs, pic_param->pic_parameter_set_id);      /* pic_parameter_set_id */\n    bitstream_put_ue(bs, pic_param->seq_parameter_set_id);      /* seq_parameter_set_id */\n\n    bitstream_put_ui(bs, pic_param->pic_fields.bits.entropy_coding_mode_flag, 1);  /* entropy_coding_mode_flag */\n\n    bitstream_put_ui(bs, 0, 1);                         /* pic_order_present_flag: 0 */\n\n    bitstream_put_ue(bs, 0);                            /* num_slice_groups_minus1 */\n\n    bitstream_put_ue(bs, pic_param->num_ref_idx_l0_active_minus1);      /* num_ref_idx_l0_active_minus1 */\n    bitstream_put_ue(bs, pic_param->num_ref_idx_l1_active_minus1);      /* num_ref_idx_l1_active_minus1 1 */\n\n    bitstream_put_ui(bs, pic_param->pic_fields.bits.weighted_pred_flag, 1);     /* weighted_pred_flag: 0 */\n    bitstream_put_ui(bs, pic_param->pic_fields.bits.weighted_bipred_idc, 2);    /* weighted_bipred_idc: 0 */\n\n    bitstream_put_se(bs, pic_param->pic_init_qp - 26);  /* pic_init_qp_minus26 */\n    bitstream_put_se(bs, 0);                            /* pic_init_qs_minus26 */\n    bitstream_put_se(bs, 0);                            /* chroma_qp_index_offset */\n\n    bitstream_put_ui(bs, pic_param->pic_fields.bits.deblocking_filter_control_present_flag, 1); /* deblocking_filter_control_present_flag */\n    bitstream_put_ui(bs, 0, 1);                         /* constrained_intra_pred_flag */\n    bitstream_put_ui(bs, 0, 1);                         /* redundant_pic_cnt_present_flag */\n\n    /* more_rbsp_data */\n    bitstream_put_ui(bs, pic_param->pic_fields.bits.transform_8x8_mode_flag, 1);    /*transform_8x8_mode_flag */\n    bitstream_put_ui(bs, 0, 1);                         /* pic_scaling_matrix_present_flag */\n    bitstream_put_se(bs, pic_param->second_chroma_qp_index_offset);     /*second_chroma_qp_index_offset */\n\n    rbsp_trailing_bits(bs);\n}\n\n#if 0\nstatic void build_nal_pps(FILE *avc_fp)\n{\n    bitstream bs;\n\n    bitstream_start(&bs);\n    nal_start_code_prefix(&bs);\n    nal_header(&bs, NAL_REF_IDC_HIGH, NAL_PPS);\n    pps_rbsp(&bs);\n    bitstream_end(&bs, avc_fp);\n}\n\nstatic void\nbuild_header(FILE *avc_fp)\n{\n    build_nal_sps(avc_fp);\n    build_nal_pps(avc_fp);\n}\n#endif\n\nstatic void nal_delimiter(bitstream *bs, int slice_type)\n{\n    if (slice_type == SLICE_TYPE_I || slice_type == FRAME_IDR)\n        bitstream_put_ui(bs, 0, 3);\n    else if (slice_type == SLICE_TYPE_P)\n        bitstream_put_ui(bs, 1, 3);\n    else if (slice_type == SLICE_TYPE_B)\n        bitstream_put_ui(bs, 2, 3);\n    else\n        assert(0);\n    bitstream_put_ui(bs, 1, 1);\n    bitstream_put_ui(bs, 0, 4);\n}\n\nstatic int build_nal_delimiter(unsigned char **header_buffer)\n{\n    bitstream bs;\n\n    bitstream_start(&bs);\n    nal_start_code_prefix(&bs);\n    nal_header(&bs, NAL_REF_IDC_NONE, NAL_DELIMITER);\n    nal_delimiter(&bs, current_frame_type);\n    bitstream_end(&bs);\n    *header_buffer = (unsigned char *)bs.buffer;\n    return bs.bit_offset;\n}\n\n\nstatic int\nbuild_packed_pic_buffer(unsigned char **header_buffer)\n{\n    bitstream bs;\n\n    bitstream_start(&bs);\n    nal_start_code_prefix(&bs);\n    nal_header(&bs, NAL_REF_IDC_HIGH, NAL_PPS);\n    pps_rbsp(&bs);\n    bitstream_end(&bs);\n\n    *header_buffer = (unsigned char *)bs.buffer;\n    return bs.bit_offset;\n}\n\nstatic int\nbuild_packed_seq_buffer(unsigned char **header_buffer)\n{\n    bitstream bs;\n\n    bitstream_start(&bs);\n    nal_start_code_prefix(&bs);\n    nal_header(&bs, NAL_REF_IDC_HIGH, NAL_SPS);\n    sps_rbsp(&bs);\n    bitstream_end(&bs);\n\n    *header_buffer = (unsigned char *)bs.buffer;\n    return bs.bit_offset;\n}\n\nstatic int\nbuild_packed_idr_sei_buffer_timing(unsigned int init_cpb_removal_delay_length,\n                                   unsigned int cpb_removal_length,\n                                   unsigned int dpb_output_length,\n                                   unsigned char **sei_buffer)\n{\n    unsigned char *byte_buf;\n    int bp_byte_size, i, pic_byte_size;\n    unsigned int cpb_removal_delay;\n\n    bitstream nal_bs;\n    bitstream sei_bp_bs, sei_pic_bs;\n\n    bitstream_start(&sei_bp_bs);\n    bitstream_put_ue(&sei_bp_bs, 0);       /*seq_parameter_set_id*/\n    /* SEI buffer period info */\n    /* NALHrdBpPresentFlag == 1 */\n    bitstream_put_ui(&sei_bp_bs, avcenc_context.i_initial_cpb_removal_delay,\n                     init_cpb_removal_delay_length);\n    bitstream_put_ui(&sei_bp_bs, avcenc_context.i_initial_cpb_removal_delay_offset,\n                     init_cpb_removal_delay_length);\n    if (sei_bp_bs.bit_offset & 0x7) {\n        bitstream_put_ui(&sei_bp_bs, 1, 1);\n    }\n    bitstream_end(&sei_bp_bs);\n    bp_byte_size = (sei_bp_bs.bit_offset + 7) / 8;\n\n    /* SEI pic timing info */\n    bitstream_start(&sei_pic_bs);\n    /* The info of CPB and DPB delay is controlled by CpbDpbDelaysPresentFlag,\n     * which is derived as 1 if one of the following conditions is true:\n     * nal_hrd_parameters_present_flag is present in the bitstream and is equal to 1,\n     * vcl_hrd_parameters_present_flag is present in the bitstream and is equal to 1,\n     */\n    cpb_removal_delay = (avcenc_context.current_cpb_removal - avcenc_context.prev_idr_cpb_removal);\n    bitstream_put_ui(&sei_pic_bs, cpb_removal_delay, cpb_removal_length);\n    bitstream_put_ui(&sei_pic_bs, avcenc_context.current_dpb_removal_delta,\n                     dpb_output_length);\n    if (sei_pic_bs.bit_offset & 0x7) {\n        bitstream_put_ui(&sei_pic_bs, 1, 1);\n    }\n    /* The pic_structure_present_flag determines whether the pic_structure\n     * info is written into the SEI pic timing info.\n     * Currently it is set to zero.\n     */\n    bitstream_end(&sei_pic_bs);\n    pic_byte_size = (sei_pic_bs.bit_offset + 7) / 8;\n\n    bitstream_start(&nal_bs);\n    nal_start_code_prefix(&nal_bs);\n    nal_header(&nal_bs, NAL_REF_IDC_NONE, NAL_SEI);\n\n    /* Write the SEI buffer period data */\n    bitstream_put_ui(&nal_bs, 0, 8);\n    bitstream_put_ui(&nal_bs, bp_byte_size, 8);\n\n    byte_buf = (unsigned char *)sei_bp_bs.buffer;\n    for (i = 0; i < bp_byte_size; i++) {\n        bitstream_put_ui(&nal_bs, byte_buf[i], 8);\n    }\n    free(byte_buf);\n    /* write the SEI pic timing data */\n    bitstream_put_ui(&nal_bs, 0x01, 8);\n    bitstream_put_ui(&nal_bs, pic_byte_size, 8);\n\n    byte_buf = (unsigned char *)sei_pic_bs.buffer;\n    for (i = 0; i < pic_byte_size; i++) {\n        bitstream_put_ui(&nal_bs, byte_buf[i], 8);\n    }\n    free(byte_buf);\n\n    rbsp_trailing_bits(&nal_bs);\n    bitstream_end(&nal_bs);\n\n    *sei_buffer = (unsigned char *)nal_bs.buffer;\n\n    return nal_bs.bit_offset;\n}\n\nstatic int\nbuild_packed_sei_pic_timing(unsigned int cpb_removal_length,\n                            unsigned int dpb_output_length,\n                            unsigned char **sei_buffer)\n{\n    unsigned char *byte_buf;\n    int i, pic_byte_size;\n    unsigned int cpb_removal_delay;\n\n    bitstream nal_bs;\n    bitstream sei_pic_bs;\n\n    bitstream_start(&sei_pic_bs);\n    /* The info of CPB and DPB delay is controlled by CpbDpbDelaysPresentFlag,\n     * which is derived as 1 if one of the following conditions is true:\n     * nal_hrd_parameters_present_flag is present in the bitstream and is equal to 1,\n     * vcl_hrd_parameters_present_flag is present in the bitstream and is equal to 1,\n     */\n    cpb_removal_delay = (avcenc_context.current_cpb_removal - avcenc_context.current_idr_cpb_removal);\n    bitstream_put_ui(&sei_pic_bs, cpb_removal_delay, cpb_removal_length);\n    bitstream_put_ui(&sei_pic_bs, avcenc_context.current_dpb_removal_delta,\n                     dpb_output_length);\n    if (sei_pic_bs.bit_offset & 0x7) {\n        bitstream_put_ui(&sei_pic_bs, 1, 1);\n    }\n\n    /* The pic_structure_present_flag determines whether the pic_structure\n     * info is written into the SEI pic timing info.\n     * Currently it is set to zero.\n     */\n    bitstream_end(&sei_pic_bs);\n    pic_byte_size = (sei_pic_bs.bit_offset + 7) / 8;\n\n    bitstream_start(&nal_bs);\n    nal_start_code_prefix(&nal_bs);\n    nal_header(&nal_bs, NAL_REF_IDC_NONE, NAL_SEI);\n\n    /* write the SEI Pic timing data */\n    bitstream_put_ui(&nal_bs, 0x01, 8);\n    bitstream_put_ui(&nal_bs, pic_byte_size, 8);\n\n    byte_buf = (unsigned char *)sei_pic_bs.buffer;\n    for (i = 0; i < pic_byte_size; i++) {\n        bitstream_put_ui(&nal_bs, byte_buf[i], 8);\n    }\n    free(byte_buf);\n\n    rbsp_trailing_bits(&nal_bs);\n    bitstream_end(&nal_bs);\n\n    *sei_buffer = (unsigned char *)nal_bs.buffer;\n\n    return nal_bs.bit_offset;\n}\n\n#if 0\nstatic void\nslice_header(bitstream *bs, int frame_num, int display_frame, int slice_type, int nal_ref_idc, int is_idr)\n{\n    VAEncSequenceParameterBufferH264 *seq_param = &avcenc_context.seq_param;\n    VAEncPictureParameterBufferH264 *pic_param = &avcenc_context.pic_param;\n    int is_cabac = (pic_param->pic_fields.bits.entropy_coding_mode_flag == ENTROPY_MODE_CABAC);\n\n    bitstream_put_ue(bs, 0);                   /* first_mb_in_slice: 0 */\n    bitstream_put_ue(bs, slice_type);          /* slice_type */\n    bitstream_put_ue(bs, 0);                   /* pic_parameter_set_id: 0 */\n    bitstream_put_ui(bs, frame_num & 0x0F, seq_param->seq_fields.bits.log2_max_frame_num_minus4 + 4);    /* frame_num */\n\n    /* frame_mbs_only_flag == 1 */\n    if (!seq_param->seq_fields.bits.frame_mbs_only_flag) {\n        /* FIXME: */\n        assert(0);\n    }\n\n    if (is_idr)\n        bitstream_put_ue(bs, 0);        /* idr_pic_id: 0 */\n\n    if (seq_param->seq_fields.bits.pic_order_cnt_type == 0) {\n        bitstream_put_ui(bs, (display_frame * 2) & 0x3F, seq_param->seq_fields.bits.log2_max_pic_order_cnt_lsb_minus4 + 4);\n        /* only support frame */\n    } else {\n        /* FIXME: */\n        assert(0);\n    }\n\n    /* redundant_pic_cnt_present_flag == 0 */\n\n    /* slice type */\n    if (slice_type == SLICE_TYPE_P) {\n        bitstream_put_ui(bs, 0, 1);            /* num_ref_idx_active_override_flag: 0 */\n        /* ref_pic_list_reordering */\n        bitstream_put_ui(bs, 0, 1);            /* ref_pic_list_reordering_flag_l0: 0 */\n    } else if (slice_type == SLICE_TYPE_B) {\n        bitstream_put_ui(bs, 1, 1);            /* direct_spatial_mv_pred: 1 */\n        bitstream_put_ui(bs, 0, 1);            /* num_ref_idx_active_override_flag: 0 */\n        /* ref_pic_list_reordering */\n        bitstream_put_ui(bs, 0, 1);            /* ref_pic_list_reordering_flag_l0: 0 */\n        bitstream_put_ui(bs, 0, 1);            /* ref_pic_list_reordering_flag_l1: 0 */\n    }\n\n    /* weighted_pred_flag == 0 */\n\n    /* dec_ref_pic_marking */\n    if (nal_ref_idc != 0) {\n        if (is_idr) {\n            bitstream_put_ui(bs, 0, 1);            /* no_output_of_prior_pics_flag: 0 */\n            bitstream_put_ui(bs, 0, 1);            /* long_term_reference_flag: 0 */\n        } else {\n            bitstream_put_ui(bs, 0, 1);            /* adaptive_ref_pic_marking_mode_flag: 0 */\n        }\n    }\n\n    if (is_cabac && (slice_type != SLICE_TYPE_I))\n        bitstream_put_ue(bs, 0);               /* cabac_init_idc: 0 */\n\n    bitstream_put_se(bs, 0);                   /* slice_qp_delta: 0 */\n\n    if (pic_param->pic_fields.bits.deblocking_filter_control_present_flag == 1) {\n        bitstream_put_ue(bs, 0);               /* disable_deblocking_filter_idc: 0 */\n        bitstream_put_se(bs, 2);               /* slice_alpha_c0_offset_div2: 2 */\n        bitstream_put_se(bs, 2);               /* slice_beta_offset_div2: 2 */\n    }\n}\n\nstatic void\nslice_data(bitstream *bs)\n{\n    VACodedBufferSegment *coded_buffer_segment;\n    unsigned char *coded_mem;\n    int i, slice_data_length;\n    VAStatus va_status;\n    VASurfaceStatus surface_status;\n\n    va_status = vaSyncSurface(va_dpy, surface_ids[avcenc_context.current_input_surface]);\n    CHECK_VASTATUS(va_status, \"vaSyncSurface\");\n\n    surface_status = 0;\n    va_status = vaQuerySurfaceStatus(va_dpy, surface_ids[avcenc_context.current_input_surface], &surface_status);\n    CHECK_VASTATUS(va_status, \"vaQuerySurfaceStatus\");\n\n    va_status = vaMapBuffer(va_dpy, avcenc_context.codedbuf_buf_id, (void **)(&coded_buffer_segment));\n    CHECK_VASTATUS(va_status, \"vaMapBuffer\");\n    coded_mem = coded_buffer_segment->buf;\n\n    slice_data_length = get_coded_bitsteam_length(coded_mem, codedbuf_size);\n\n    for (i = 0; i < slice_data_length; i++) {\n        bitstream_put_ui(bs, *coded_mem, 8);\n        coded_mem++;\n    }\n\n    vaUnmapBuffer(va_dpy, avcenc_context.codedbuf_buf_id);\n}\n\nstatic void\nbuild_nal_slice(FILE *avc_fp, int frame_num, int display_frame, int slice_type, int is_idr)\n{\n    bitstream bs;\n\n    bitstream_start(&bs);\n    slice_data(&bs);\n    bitstream_end(&bs, avc_fp);\n}\n\n#endif\n\nstatic int\nstore_coded_buffer(FILE *avc_fp, int slice_type)\n{\n    VACodedBufferSegment *coded_buffer_segment;\n    unsigned char *coded_mem;\n    int slice_data_length;\n    VAStatus va_status;\n    VASurfaceStatus surface_status;\n    size_t w_items;\n\n    va_status = vaSyncSurface(va_dpy, surface_ids[avcenc_context.current_input_surface]);\n    CHECK_VASTATUS(va_status, \"vaSyncSurface\");\n\n    surface_status = 0;\n    va_status = vaQuerySurfaceStatus(va_dpy, surface_ids[avcenc_context.current_input_surface], &surface_status);\n    CHECK_VASTATUS(va_status, \"vaQuerySurfaceStatus\");\n\n    va_status = vaMapBuffer(va_dpy, avcenc_context.codedbuf_buf_id, (void **)(&coded_buffer_segment));\n    CHECK_VASTATUS(va_status, \"vaMapBuffer\");\n    coded_mem = coded_buffer_segment->buf;\n\n    if (coded_buffer_segment->status & VA_CODED_BUF_STATUS_SLICE_OVERFLOW_MASK) {\n        if (slice_type == SLICE_TYPE_I)\n            avcenc_context.codedbuf_i_size *= 2;\n        else\n            avcenc_context.codedbuf_pb_size *= 2;\n\n        vaUnmapBuffer(va_dpy, avcenc_context.codedbuf_buf_id);\n        return -1;\n    }\n\n    slice_data_length = coded_buffer_segment->size;\n\n    do {\n        w_items = fwrite(coded_mem, slice_data_length, 1, avc_fp);\n    } while (w_items != 1);\n\n    vaUnmapBuffer(va_dpy, avcenc_context.codedbuf_buf_id);\n\n    return 0;\n}\n\n/*\n * It is from the h264encode.c but it simplifies something.\n * For example: When one frame is encoded as I-frame under the scenario with\n * P-B frames, it will be regarded as IDR frame(key-frame) and then new GOP is\n * started. If the video clip is encoded as all I-frames, the first frame\n * is regarded as IDR and the remaining is regarded as I-frame.\n *\n */\n\nstatic void encoding2display_order(\n    unsigned long long encoding_order, int gop_size,\n    int ip_period,\n    unsigned long long *displaying_order,\n    int *frame_type)\n{\n    int encoding_order_gop = 0;\n\n    /* When ip_period is 0, all are I/IDR frames */\n    if (ip_period == 0) { /* all are I/IDR frames */\n        if (encoding_order == 0)\n            *frame_type = FRAME_IDR;\n        else\n            *frame_type = SLICE_TYPE_I;\n\n        *displaying_order = encoding_order;\n        return;\n    }\n\n    /* new sequence like\n     * IDR PPPPP IDRPPPPP\n     * IDR (PBB)(PBB)(PBB)(PBB) IDR (PBB)(PBB)(PBB)(PBB)\n     */\n    encoding_order_gop = encoding_order % gop_size;\n\n    if (encoding_order_gop == 0) { /* the first frame */\n        *frame_type = FRAME_IDR;\n        *displaying_order = encoding_order;\n    } else {\n        int gop_delta;\n\n        gop_delta = 1;\n\n        if ((ip_period != 1) && ((gop_size - 1) % ip_period)) {\n            int ipb_size;\n            ipb_size = (gop_size - 1) / ip_period * ip_period + 1;\n            if (encoding_order_gop >= ipb_size) {\n                gop_delta = ipb_size;\n                ip_period = gop_size - ipb_size;\n            }\n        }\n\n        if (((encoding_order_gop - gop_delta) % ip_period) == 0) { /* P frames */\n            *frame_type = SLICE_TYPE_P;\n            *displaying_order = encoding_order + ip_period - 1;\n        } else {\n            *frame_type = SLICE_TYPE_B;\n            *displaying_order = encoding_order - 1;\n        }\n    }\n}\n\n\nstatic void\nencode_picture(FILE *yuv_fp, FILE *avc_fp,\n               int frame_num, int display_num,\n               int is_idr,\n               int slice_type, int next_is_bpic,\n               int next_display_num)\n{\n    VAStatus va_status;\n    int ret = 0, codedbuf_size;\n\n    begin_picture(yuv_fp, frame_num, display_num, slice_type, is_idr);\n\n    //if (next_display_num < frame_number) {\n    if (1) {\n        int index;\n\n        /* prepare for next frame */\n        if (avcenc_context.current_input_surface == SID_INPUT_PICTURE_0)\n            index = SID_INPUT_PICTURE_1;\n        else\n            index = SID_INPUT_PICTURE_0;\n        if (next_display_num >= frame_number)\n            next_display_num = frame_number - 1;\n        ret = fseeko(yuv_fp, (off_t)frame_size * next_display_num, SEEK_SET);\n        CHECK_CONDITION(ret == 0);\n\n        avcenc_context.upload_thread_param.yuv_fp = yuv_fp;\n        avcenc_context.upload_thread_param.surface_id = surface_ids[index];\n\n        avcenc_context.upload_thread_value = pthread_create(&avcenc_context.upload_thread_id,\n                                             NULL,\n                                             upload_thread_function,\n                                             (void*)&avcenc_context.upload_thread_param);\n    }\n\n    do {\n        avcenc_destroy_buffers(&avcenc_context.codedbuf_buf_id, 1);\n        avcenc_destroy_buffers(&avcenc_context.pic_param_buf_id, 1);\n\n\n        if (SLICE_TYPE_I == slice_type) {\n            codedbuf_size = avcenc_context.codedbuf_i_size;\n        } else {\n            codedbuf_size = avcenc_context.codedbuf_pb_size;\n        }\n\n        /* coded buffer */\n        va_status = vaCreateBuffer(va_dpy,\n                                   avcenc_context.context_id,\n                                   VAEncCodedBufferType,\n                                   codedbuf_size, 1, NULL,\n                                   &avcenc_context.codedbuf_buf_id);\n        CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n        /* Update the RefPicList */\n        update_RefPicList();\n\n        /* picture parameter set */\n        avcenc_update_picture_parameter(slice_type, is_idr);\n\n        /* slice parameter */\n        avcenc_update_slice_parameter(slice_type);\n\n        if (avcenc_context.rate_control_method == VA_RC_CBR)\n            avcenc_update_sei_param(is_idr);\n\n        avcenc_render_picture();\n\n        ret = store_coded_buffer(avc_fp, slice_type);\n    } while (ret);\n\n    end_picture();\n}\n\nstatic void show_help()\n{\n    printf(\"Usage: avnenc <width> <height> <input_yuvfile> <output_avcfile> [--qp=qpvalue|--fb=framebitrate] [--mode=0(I frames only)/1(I and P frames)/2(I, P and B frames)] [--low-power] [--roi-test] [--frames=0(ignore when < 0)/N(number)] \\n\");\n}\n\nstatic void avcenc_context_seq_param_init(VAEncSequenceParameterBufferH264 *seq_param,\n        int width, int height)\n\n{\n    int width_in_mbs = (width + 15) / 16;\n    int height_in_mbs = (height + 15) / 16;\n    int frame_cropping_flag = 0;\n    int frame_crop_bottom_offset = 0;\n\n    seq_param->seq_parameter_set_id = 0;\n    seq_param->level_idc = 41;\n    seq_param->intra_period = intra_period;\n    seq_param->intra_idr_period = seq_param->intra_period;\n    seq_param->ip_period = ip_period;\n    seq_param->max_num_ref_frames = 4;\n    seq_param->picture_width_in_mbs = width_in_mbs;\n    seq_param->picture_height_in_mbs = height_in_mbs;\n    seq_param->seq_fields.bits.frame_mbs_only_flag = 1;\n    seq_param->seq_fields.bits.chroma_format_idc = 1;\n\n\n    if (frame_bit_rate > 0)\n        seq_param->bits_per_second = 1000 * frame_bit_rate; /* use kbps as input */\n    else\n        seq_param->bits_per_second = 0;\n\n    seq_param->time_scale = frame_rate * 2;\n    seq_param->num_units_in_tick = 1;           /* Tc = num_units_in_tick / time_sacle */\n\n    if (height_in_mbs * 16 - height) {\n        frame_cropping_flag = 1;\n        frame_crop_bottom_offset =\n            (height_in_mbs * 16 - height) / (2 * (!seq_param->seq_fields.bits.frame_mbs_only_flag + 1));\n    }\n\n    seq_param->frame_cropping_flag = frame_cropping_flag;\n    seq_param->frame_crop_left_offset = 0;\n    seq_param->frame_crop_right_offset = 0;\n    seq_param->frame_crop_top_offset = 0;\n    seq_param->frame_crop_bottom_offset = frame_crop_bottom_offset;\n\n    seq_param->seq_fields.bits.pic_order_cnt_type = 0;\n    seq_param->seq_fields.bits.direct_8x8_inference_flag = 0;\n\n    seq_param->seq_fields.bits.log2_max_frame_num_minus4 = Log2MaxFrameNum - 4;\n    seq_param->seq_fields.bits.log2_max_pic_order_cnt_lsb_minus4 = Log2MaxPicOrderCntLsb - 4;\n\n    if (frame_bit_rate > 0)\n        seq_param->vui_parameters_present_flag = 1; //HRD info located in vui\n    else\n        seq_param->vui_parameters_present_flag = 0;\n}\n\nstatic void avcenc_context_pic_param_init(VAEncPictureParameterBufferH264 *pic_param)\n{\n    pic_param->seq_parameter_set_id = 0;\n    pic_param->pic_parameter_set_id = 0;\n\n    pic_param->last_picture = 0;\n    pic_param->frame_num = 0;\n\n    pic_param->pic_init_qp = (qp_value >= 0 ?  qp_value : 26);\n    pic_param->num_ref_idx_l0_active_minus1 = 0;\n    pic_param->num_ref_idx_l1_active_minus1 = 0;\n\n    pic_param->pic_fields.bits.idr_pic_flag = 0;\n    pic_param->pic_fields.bits.reference_pic_flag = 0;\n    pic_param->pic_fields.bits.entropy_coding_mode_flag = ENTROPY_MODE_CABAC;\n    pic_param->pic_fields.bits.weighted_pred_flag = 0;\n    pic_param->pic_fields.bits.weighted_bipred_idc = 0;\n\n    if (avcenc_context.constraint_set_flag & 0x7)\n        pic_param->pic_fields.bits.transform_8x8_mode_flag = 0;\n    else\n        pic_param->pic_fields.bits.transform_8x8_mode_flag = 1;\n\n    pic_param->pic_fields.bits.deblocking_filter_control_present_flag = 1;\n\n    memset(pic_param->ReferenceFrames, 0xff, 16 * sizeof(VAPictureH264)); /* invalid all */\n}\n\nstatic void avcenc_context_sei_init()\n{\n    /* it comes for the bps defined in SPS */\n    avcenc_context.i_initial_cpb_removal_delay = 2 * 90000;\n    avcenc_context.i_initial_cpb_removal_delay_offset = 2 * 90000;\n\n    avcenc_context.i_cpb_removal_delay = 2;\n    avcenc_context.i_initial_cpb_removal_delay_length = 24;\n    avcenc_context.i_cpb_removal_delay_length = 24;\n    avcenc_context.i_dpb_output_delay_length = 24;\n    avcenc_context.time_offset_length = 24;\n\n    avcenc_context.prev_idr_cpb_removal = avcenc_context.i_initial_cpb_removal_delay / 90000;\n    avcenc_context.current_idr_cpb_removal = avcenc_context.prev_idr_cpb_removal;\n    avcenc_context.current_cpb_removal = 0;\n    avcenc_context.idr_frame_num = 0;\n}\n\nstatic void avcenc_context_init(int width, int height)\n{\n    int i;\n    memset(&avcenc_context, 0, sizeof(avcenc_context));\n    avcenc_context.profile = VAProfileH264Main;\n\n    memset(&use_slot, 0, sizeof(use_slot));\n    switch (avcenc_context.profile) {\n    case VAProfileH264ConstrainedBaseline:\n        avcenc_context.constraint_set_flag |= (1 << 0); /* Annex A.2.1 */\n        avcenc_context.constraint_set_flag |= (1 << 1); /* Annex A.2.2 */\n        break;\n\n    case VAProfileH264Main:\n        avcenc_context.constraint_set_flag |= (1 << 1); /* Annex A.2.2 */\n        break;\n\n    case VAProfileH264High:\n        avcenc_context.constraint_set_flag |= (1 << 3); /* Annex A.2.4 */\n        break;\n\n    default:\n        break;\n    }\n\n    avcenc_context.seq_param_buf_id = VA_INVALID_ID;\n    avcenc_context.pic_param_buf_id = VA_INVALID_ID;\n    avcenc_context.packed_seq_header_param_buf_id = VA_INVALID_ID;\n    avcenc_context.packed_seq_buf_id = VA_INVALID_ID;\n    avcenc_context.packed_pic_header_param_buf_id = VA_INVALID_ID;\n    avcenc_context.packed_pic_buf_id = VA_INVALID_ID;\n    avcenc_context.codedbuf_buf_id = VA_INVALID_ID;\n    avcenc_context.misc_parameter_hrd_buf_id = VA_INVALID_ID;\n    avcenc_context.codedbuf_i_size = width * height;\n    avcenc_context.codedbuf_pb_size = width * height;\n    avcenc_context.current_input_surface = SID_INPUT_PICTURE_0;\n    avcenc_context.upload_thread_value = -1;\n    avcenc_context.packed_sei_header_param_buf_id = VA_INVALID_ID;\n    avcenc_context.packed_sei_buf_id = VA_INVALID_ID;\n    avcenc_context.misc_parameter_roi_buf_id = VA_INVALID_ID;\n    avcenc_context.packed_aud_header_param_buf_id = VA_INVALID_ID;\n    avcenc_context.packed_aud_buf_id = VA_INVALID_ID;\n\n    if (qp_value == -1)\n        avcenc_context.rate_control_method = VA_RC_CBR;\n    else if (qp_value == -2)\n        avcenc_context.rate_control_method = VA_RC_VBR;\n    else {\n        assert(qp_value >= 0 && qp_value <= 51);\n        avcenc_context.rate_control_method = VA_RC_CQP;\n    }\n\n    for (i = 0; i < MAX_SLICES; i++) {\n        avcenc_context.slice_param_buf_id[i] = VA_INVALID_ID;\n    }\n\n    avcenc_context_seq_param_init(&avcenc_context.seq_param, width, height);\n    avcenc_context_pic_param_init(&avcenc_context.pic_param);\n    if (avcenc_context.rate_control_method == VA_RC_CBR)\n        avcenc_context_sei_init();\n}\n\nint main(int argc, char *argv[])\n{\n    int f;\n    FILE *yuv_fp;\n    FILE *avc_fp;\n    off_t file_size;\n    int mode_value;\n    struct timeval tpstart, tpend;\n    float  timeuse;\n    int frame_num_value = 0;\n\n    va_init_display_args(&argc, argv);\n\n    if (argc < 5) {\n        show_help();\n        return -1;\n    }\n\n    picture_width = atoi(argv[1]);\n    picture_height = atoi(argv[2]);\n    picture_width_in_mbs = (picture_width + 15) / 16;\n    picture_height_in_mbs = (picture_height + 15) / 16;\n\n    if (argc > 5) {\n        int o;\n\n        optind = 5;\n\n        while ((o = getopt_long_only(argc, argv, \"\", longopts, NULL)) != -1) {\n            switch (o) {\n            case 1:     // qp\n                frame_bit_rate = -1;\n                qp_value = atoi(optarg);\n\n                if (qp_value > 51)\n                    qp_value = 51;\n\n                if (qp_value < 0)\n                    qp_value = 0;\n\n                break;\n\n            case 2:     // fb\n                qp_value = -1;\n                frame_bit_rate = atoi(optarg);\n\n                if (frame_bit_rate <= 0) {\n                    show_help();\n\n                    return -1;\n                }\n\n                break;\n\n            case 3:     // mode\n                mode_value = atoi(optarg);\n\n                if (mode_value == 0)\n                    ip_period = 0;\n                else if (mode_value == 1)\n                    ip_period = 1;\n                else if (mode_value == 2)\n                    /* Hack mechanism before adding the parameter of B-frame number */\n                    ip_period = 2;\n                else {\n                    printf(\"mode_value = %d\\n\", mode_value);\n                    show_help();\n                    return -1;\n                }\n\n                break;\n\n            case 4:     // low-power mode\n                select_entrypoint = VAEntrypointEncSliceLP;\n                break;\n\n            case 5:     // roi-test enable/disable\n                roi_test_enable = 1;\n                break;\n\n            case 6:     // Frames number\n                frame_num_value = atoi(optarg);\n                break;\n            default:\n                show_help();\n                return -1;\n            }\n        }\n    } else\n        qp_value = 28;                          //default const QP mode\n\n    yuv_fp = fopen(argv[3], \"rb\");\n    if (yuv_fp == NULL) {\n        printf(\"Can't open input YUV file\\n\");\n        return -1;\n    }\n    fseeko(yuv_fp, (off_t)0, SEEK_END);\n    file_size = ftello(yuv_fp);\n    frame_size = picture_width * picture_height + ((picture_width * picture_height) >> 1) ;\n\n    if (frame_size == 0) {\n        fclose(yuv_fp);\n        printf(\"Frame size is not correct\\n\");\n        return -1;\n    }\n    if ((file_size < frame_size) || (file_size % frame_size)) {\n        fclose(yuv_fp);\n        printf(\"The YUV file's size is not correct\\n\");\n        return -1;\n    }\n    frame_number = file_size / frame_size;\n    fseeko(yuv_fp, (off_t)0, SEEK_SET);\n\n    avc_fp = fopen(argv[4], \"wb\");\n    if (avc_fp == NULL) {\n        fclose(yuv_fp);\n        printf(\"Can't open output avc file\\n\");\n        return -1;\n    }\n    gettimeofday(&tpstart, NULL);\n    avcenc_context_init(picture_width, picture_height);\n    create_encode_pipe();\n    alloc_encode_resource(yuv_fp);\n\n    enc_frame_number = 0;\n    if (frame_num_value <= 0)\n        frame_num_value = frame_number;\n\n    for (f = 0; f < frame_num_value; f++) {            //picture level loop\n        unsigned long long next_frame_display;\n        int next_frame_type;\n\n        enc_frame_number = f;\n\n        encoding2display_order(enc_frame_number, intra_period, ip_period,\n                               &current_frame_display, &current_frame_type);\n\n        encoding2display_order(enc_frame_number + 1, intra_period, ip_period,\n                               &next_frame_display, &next_frame_type);\n\n        if (current_frame_type == FRAME_IDR) {\n            numShortTerm = 0;\n            current_frame_num = 0;\n            memset(&use_slot, 0, sizeof(use_slot));\n            current_IDR_display = current_frame_display;\n            if (avcenc_context.rate_control_method == VA_RC_CBR) {\n                unsigned long long frame_interval;\n\n                frame_interval = enc_frame_number - avcenc_context.idr_frame_num;\n\n                /* Based on the H264 spec the removal time of the IDR access\n                 * unit is derived as the following:\n                 * the removal time of previous IDR unit + Tc * cpb_removal_delay(n)\n                 */\n                avcenc_context.current_cpb_removal = avcenc_context.prev_idr_cpb_removal +\n                                                     frame_interval * 2;\n                avcenc_context.idr_frame_num = enc_frame_number;\n                avcenc_context.current_idr_cpb_removal = avcenc_context.current_cpb_removal;\n                if (ip_period)\n                    avcenc_context.current_dpb_removal_delta = (ip_period + 1) * 2;\n                else\n                    avcenc_context.current_dpb_removal_delta = 2;\n            }\n        } else {\n            if (avcenc_context.rate_control_method == VA_RC_CBR) {\n                unsigned long long frame_interval;\n\n                frame_interval = enc_frame_number - avcenc_context.idr_frame_num;\n\n                /* Based on the H264 spec the removal time of the non-IDR access\n                 * unit is derived as the following:\n                 * the removal time of current IDR unit + Tc * cpb_removal_delay(n)\n                 */\n                avcenc_context.current_cpb_removal = avcenc_context.current_idr_cpb_removal +\n                                                     frame_interval * 2;\n                if (current_frame_type == SLICE_TYPE_I ||\n                    current_frame_type == SLICE_TYPE_P) {\n                    if (ip_period)\n                        avcenc_context.current_dpb_removal_delta = (ip_period + 1) * 2;\n                    else\n                        avcenc_context.current_dpb_removal_delta = 2;\n                } else\n                    avcenc_context.current_dpb_removal_delta = 2;\n            }\n        }\n\n        /* use the simple mechanism to calc the POC */\n        current_poc = (current_frame_display - current_IDR_display) * 2;\n\n        encode_picture(yuv_fp, avc_fp, frame_number, current_frame_display,\n                       (current_frame_type == FRAME_IDR) ? 1 : 0,\n                       (current_frame_type == FRAME_IDR) ? SLICE_TYPE_I : current_frame_type,\n                       (next_frame_type == SLICE_TYPE_B) ? 1 : 0,\n                       next_frame_display);\n        if ((current_frame_type == FRAME_IDR) &&\n            (avcenc_context.rate_control_method == VA_RC_CBR)) {\n            /* after one IDR frame is written, it needs to update the\n             * prev_idr_cpb_removal for next IDR\n             */\n            avcenc_context.prev_idr_cpb_removal = avcenc_context.current_idr_cpb_removal;\n        }\n        printf(\"\\r %d/%d ...\", f, frame_number);\n        fflush(stdout);\n    }\n\n    gettimeofday(&tpend, NULL);\n    timeuse = 1000000 * (tpend.tv_sec - tpstart.tv_sec) + tpend.tv_usec - tpstart.tv_usec;\n    timeuse /= 1000000;\n    printf(\"\\ndone!\\n\");\n    printf(\"encode %d frames in %f secondes, FPS is %.1f\\n\", frame_number, timeuse, frame_number / timeuse);\n    release_encode_resource();\n    destory_encode_pipe();\n\n    fclose(yuv_fp);\n    fclose(avc_fp);\n\n    return 0;\n}\n"
  },
  {
    "path": "encode/h264encode.c",
    "content": "/*\n * Copyright (c) 2007-2013 Intel Corporation. All Rights Reserved.\n *\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the\n * \"Software\"), to deal in the Software without restriction, including\n * without limitation the rights to use, copy, modify, merge, publish,\n * distribute, sub license, and/or sell copies of the Software, and to\n * permit persons to whom the Software is furnished to do so, subject to\n * the following conditions:\n *\n * The above copyright notice and this permission notice (including the\n * next paragraph) shall be included in all copies or substantial portions\n * of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR\n * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n#define LIBVA_UTILS_UPLOAD_DOWNLOAD_YUV_SURFACE 1\n\n#include <stdio.h>\n#include <string.h>\n#include <stdlib.h>\n#include <getopt.h>\n#include <unistd.h>\n#include <sys/types.h>\n#include <sys/stat.h>\n#include <sys/time.h>\n#include <sys/mman.h>\n#include <fcntl.h>\n#include <assert.h>\n#include <pthread.h>\n#include <errno.h>\n#include <math.h>\n#include <va/va.h>\n#include <va/va_enc_h264.h>\n#include \"va_display.h\"\n\n#define CHECK_VASTATUS(va_status,func)                                  \\\n    if (va_status != VA_STATUS_SUCCESS) {                               \\\n        fprintf(stderr,\"%s:%s (%d) failed,exit\\n\", __func__, func, __LINE__); \\\n        exit(1);                                                        \\\n    }\n\n#include \"loadsurface.h\"\n\n#define NAL_REF_IDC_NONE        0\n#define NAL_REF_IDC_LOW         1\n#define NAL_REF_IDC_MEDIUM      2\n#define NAL_REF_IDC_HIGH        3\n\n#define NAL_NON_IDR             1\n#define NAL_IDR                 5\n#define NAL_SPS                 7\n#define NAL_PPS                 8\n#define NAL_SEI         6\n\n#define SLICE_TYPE_P            0\n#define SLICE_TYPE_B            1\n#define SLICE_TYPE_I            2\n#define IS_P_SLICE(type) (SLICE_TYPE_P == (type))\n#define IS_B_SLICE(type) (SLICE_TYPE_B == (type))\n#define IS_I_SLICE(type) (SLICE_TYPE_I == (type))\n\n\n#define ENTROPY_MODE_CAVLC      0\n#define ENTROPY_MODE_CABAC      1\n\n#define PROFILE_IDC_BASELINE    66\n#define PROFILE_IDC_MAIN        77\n#define PROFILE_IDC_HIGH        100\n\n#define BITSTREAM_ALLOCATE_STEPPING     4096\n\n#define SURFACE_NUM 16 /* 16 surfaces for source YUV */\n#define SURFACE_NUM 16 /* 16 surfaces for reference */\nstatic  VADisplay va_dpy;\nstatic  VAProfile h264_profile = ~0;\nstatic  VAConfigAttrib attrib[VAConfigAttribTypeMax];\nstatic  VAConfigAttrib config_attrib[VAConfigAttribTypeMax];\nstatic  int config_attrib_num = 0, enc_packed_header_idx;\nstatic  VASurfaceID src_surface[SURFACE_NUM];\nstatic  VABufferID  coded_buf[SURFACE_NUM];\nstatic  VASurfaceID ref_surface[SURFACE_NUM];\nstatic  VAConfigID config_id;\nstatic  VAContextID context_id;\nstatic  VAEncSequenceParameterBufferH264 seq_param;\nstatic  VAEncPictureParameterBufferH264 pic_param;\nstatic  VAEncSliceParameterBufferH264 slice_param;\nstatic  VAPictureH264 CurrentCurrPic;\nstatic  VAPictureH264 ReferenceFrames[16], RefPicList0_P[32], RefPicList0_B[32], RefPicList1_B[32];\n\nstatic  unsigned int MaxFrameNum = (2 << 16);\nstatic  unsigned int MaxPicOrderCntLsb = (2 << 8);\nstatic  unsigned int Log2MaxFrameNum = 16;\nstatic  unsigned int Log2MaxPicOrderCntLsb = 8;\n\nstatic  unsigned int num_ref_frames = 2;\nstatic  unsigned int numShortTerm = 0;\nstatic  int constraint_set_flag = 0;\nstatic  int h264_packedheader = 0; /* support pack header? */\nstatic  int h264_maxref = (1 << 16 | 1);\nstatic  int h264_entropy_mode = 1; /* cabac */\n\nstatic  char *coded_fn = NULL, *srcyuv_fn = NULL, *recyuv_fn = NULL;\nstatic  FILE *coded_fp = NULL, *srcyuv_fp = NULL, *recyuv_fp = NULL;\nstatic  unsigned long long srcyuv_frames = 0;\nstatic  int srcyuv_fourcc = VA_FOURCC_NV12;\nstatic  int calc_psnr = 0;\n\nstatic  int frame_width = 176;\nstatic  int frame_height = 144;\nstatic  int frame_width_mbaligned;\nstatic  int frame_height_mbaligned;\nstatic  int frame_rate = 30;\nstatic  unsigned int frame_count = 60;\nstatic  unsigned int frame_coded = 0;\nstatic  unsigned int frame_bitrate = 0;\nstatic  unsigned int frame_slices = 1;\nstatic  double frame_size = 0;\nstatic  int initial_qp = 26;\nstatic  int minimal_qp = 0;\nstatic  int intra_period = 30;\nstatic  int intra_idr_period = 60;\nstatic  int ip_period = 1;\nstatic  int rc_mode = -1;\nstatic  int rc_default_modes[] = {\n    VA_RC_VBR,\n    VA_RC_CQP,\n    VA_RC_VBR_CONSTRAINED,\n    VA_RC_CBR,\n    VA_RC_VCM,\n    VA_RC_NONE,\n};\nstatic  unsigned long long current_frame_encoding = 0;\nstatic  unsigned long long current_frame_display = 0;\nstatic  unsigned long long current_IDR_display = 0;\nstatic  unsigned int current_frame_num = 0;\nstatic  int current_frame_type;\n#define current_slot (current_frame_display % SURFACE_NUM)\n\nstatic  int misc_priv_type = 0;\nstatic  int misc_priv_value = 0;\n\n#define MIN(a, b) ((a)>(b)?(b):(a))\n#define MAX(a, b) ((a)>(b)?(a):(b))\n\n/* thread to save coded data/upload source YUV */\nstruct storage_task_t {\n    void *next;\n    unsigned long long display_order;\n    unsigned long long encode_order;\n};\nstatic  struct storage_task_t *storage_task_header = NULL, *storage_task_tail = NULL;\n#define SRC_SURFACE_IN_ENCODING 0\n#define SRC_SURFACE_IN_STORAGE  1\nstatic  int srcsurface_status[SURFACE_NUM];\nstatic  int encode_syncmode = 0;\nstatic  pthread_mutex_t encode_mutex = PTHREAD_MUTEX_INITIALIZER;\nstatic  pthread_cond_t  encode_cond = PTHREAD_COND_INITIALIZER;\nstatic  pthread_t encode_thread;\n\n/* for performance profiling */\nstatic unsigned int UploadPictureTicks = 0;\nstatic unsigned int BeginPictureTicks = 0;\nstatic unsigned int RenderPictureTicks = 0;\nstatic unsigned int EndPictureTicks = 0;\nstatic unsigned int SyncPictureTicks = 0;\nstatic unsigned int SavePictureTicks = 0;\nstatic unsigned int TotalTicks = 0;\n\n//Default entrypoint for Encode\nstatic VAEntrypoint requested_entrypoint = -1;\nstatic VAEntrypoint selected_entrypoint = -1;\n\nstruct __bitstream {\n    unsigned int *buffer;\n    int bit_offset;\n    int max_size_in_dword;\n};\ntypedef struct __bitstream bitstream;\n\n\nstatic unsigned int\nva_swap32(unsigned int val)\n{\n    unsigned char *pval = (unsigned char *)&val;\n\n    return ((pval[0] << 24)     |\n            (pval[1] << 16)     |\n            (pval[2] << 8)      |\n            (pval[3] << 0));\n}\n\nstatic void\nbitstream_start(bitstream *bs)\n{\n    bs->max_size_in_dword = BITSTREAM_ALLOCATE_STEPPING;\n    bs->buffer = calloc(bs->max_size_in_dword * sizeof(int), 1);\n    assert(bs->buffer);\n    bs->bit_offset = 0;\n}\n\nstatic void\nbitstream_end(bitstream *bs)\n{\n    int pos = (bs->bit_offset >> 5);\n    int bit_offset = (bs->bit_offset & 0x1f);\n    int bit_left = 32 - bit_offset;\n\n    if (bit_offset) {\n        bs->buffer[pos] = va_swap32((bs->buffer[pos] << bit_left));\n    }\n}\n\nstatic void\nbitstream_put_ui(bitstream *bs, unsigned int val, int size_in_bits)\n{\n    int pos = (bs->bit_offset >> 5);\n    int bit_offset = (bs->bit_offset & 0x1f);\n    int bit_left = 32 - bit_offset;\n\n    if (!size_in_bits)\n        return;\n\n    bs->bit_offset += size_in_bits;\n\n    if (bit_left > size_in_bits) {\n        bs->buffer[pos] = (bs->buffer[pos] << size_in_bits | val);\n    } else {\n        size_in_bits -= bit_left;\n        bs->buffer[pos] = (bs->buffer[pos] << bit_left) | (val >> size_in_bits);\n        bs->buffer[pos] = va_swap32(bs->buffer[pos]);\n\n        if (pos + 1 == bs->max_size_in_dword) {\n            bs->max_size_in_dword += BITSTREAM_ALLOCATE_STEPPING;\n            bs->buffer = realloc(bs->buffer, bs->max_size_in_dword * sizeof(unsigned int));\n            assert(bs->buffer);\n        }\n\n        bs->buffer[pos + 1] = val;\n    }\n}\n\nstatic void\nbitstream_put_ue(bitstream *bs, unsigned int val)\n{\n    int size_in_bits = 0;\n    int tmp_val = ++val;\n\n    while (tmp_val) {\n        tmp_val >>= 1;\n        size_in_bits++;\n    }\n\n    bitstream_put_ui(bs, 0, size_in_bits - 1); // leading zero\n    bitstream_put_ui(bs, val, size_in_bits);\n}\n\nstatic void\nbitstream_put_se(bitstream *bs, int val)\n{\n    unsigned int new_val;\n\n    if (val <= 0)\n        new_val = -2 * val;\n    else\n        new_val = 2 * val - 1;\n\n    bitstream_put_ue(bs, new_val);\n}\n\nstatic void\nbitstream_byte_aligning(bitstream *bs, int bit)\n{\n    int bit_offset = (bs->bit_offset & 0x7);\n    int bit_left = 8 - bit_offset;\n    int new_val;\n\n    if (!bit_offset)\n        return;\n\n    assert(bit == 0 || bit == 1);\n\n    if (bit)\n        new_val = (1 << bit_left) - 1;\n    else\n        new_val = 0;\n\n    bitstream_put_ui(bs, new_val, bit_left);\n}\n\nstatic void\nrbsp_trailing_bits(bitstream *bs)\n{\n    bitstream_put_ui(bs, 1, 1);\n    bitstream_byte_aligning(bs, 0);\n}\n\nstatic void nal_start_code_prefix(bitstream *bs)\n{\n    bitstream_put_ui(bs, 0x00000001, 32);\n}\n\nstatic void nal_header(bitstream *bs, int nal_ref_idc, int nal_unit_type)\n{\n    bitstream_put_ui(bs, 0, 1);                /* forbidden_zero_bit: 0 */\n    bitstream_put_ui(bs, nal_ref_idc, 2);\n    bitstream_put_ui(bs, nal_unit_type, 5);\n}\n\nstatic void sps_rbsp(bitstream *bs)\n{\n    int profile_idc = PROFILE_IDC_BASELINE;\n\n    if (h264_profile  == VAProfileH264High)\n        profile_idc = PROFILE_IDC_HIGH;\n    else if (h264_profile  == VAProfileH264Main)\n        profile_idc = PROFILE_IDC_MAIN;\n\n    bitstream_put_ui(bs, profile_idc, 8);               /* profile_idc */\n    bitstream_put_ui(bs, !!(constraint_set_flag & 1), 1);                         /* constraint_set0_flag */\n    bitstream_put_ui(bs, !!(constraint_set_flag & 2), 1);                         /* constraint_set1_flag */\n    bitstream_put_ui(bs, !!(constraint_set_flag & 4), 1);                         /* constraint_set2_flag */\n    bitstream_put_ui(bs, !!(constraint_set_flag & 8), 1);                         /* constraint_set3_flag */\n    bitstream_put_ui(bs, 0, 4);                         /* reserved_zero_4bits */\n    bitstream_put_ui(bs, seq_param.level_idc, 8);      /* level_idc */\n    bitstream_put_ue(bs, seq_param.seq_parameter_set_id);      /* seq_parameter_set_id */\n\n    if (profile_idc == PROFILE_IDC_HIGH) {\n        bitstream_put_ue(bs, 1);        /* chroma_format_idc = 1, 4:2:0 */\n        bitstream_put_ue(bs, 0);        /* bit_depth_luma_minus8 */\n        bitstream_put_ue(bs, 0);        /* bit_depth_chroma_minus8 */\n        bitstream_put_ui(bs, 0, 1);     /* qpprime_y_zero_transform_bypass_flag */\n        bitstream_put_ui(bs, 0, 1);     /* seq_scaling_matrix_present_flag */\n    }\n\n    bitstream_put_ue(bs, seq_param.seq_fields.bits.log2_max_frame_num_minus4); /* log2_max_frame_num_minus4 */\n    bitstream_put_ue(bs, seq_param.seq_fields.bits.pic_order_cnt_type);        /* pic_order_cnt_type */\n\n    if (seq_param.seq_fields.bits.pic_order_cnt_type == 0)\n        bitstream_put_ue(bs, seq_param.seq_fields.bits.log2_max_pic_order_cnt_lsb_minus4);     /* log2_max_pic_order_cnt_lsb_minus4 */\n    else {\n        assert(0);\n    }\n\n    bitstream_put_ue(bs, seq_param.max_num_ref_frames);        /* num_ref_frames */\n    bitstream_put_ui(bs, 0, 1);                                 /* gaps_in_frame_num_value_allowed_flag */\n\n    bitstream_put_ue(bs, seq_param.picture_width_in_mbs - 1);  /* pic_width_in_mbs_minus1 */\n    bitstream_put_ue(bs, seq_param.picture_height_in_mbs - 1); /* pic_height_in_map_units_minus1 */\n    bitstream_put_ui(bs, seq_param.seq_fields.bits.frame_mbs_only_flag, 1);    /* frame_mbs_only_flag */\n\n    if (!seq_param.seq_fields.bits.frame_mbs_only_flag) {\n        assert(0);\n    }\n\n    bitstream_put_ui(bs, seq_param.seq_fields.bits.direct_8x8_inference_flag, 1);      /* direct_8x8_inference_flag */\n    bitstream_put_ui(bs, seq_param.frame_cropping_flag, 1);            /* frame_cropping_flag */\n\n    if (seq_param.frame_cropping_flag) {\n        bitstream_put_ue(bs, seq_param.frame_crop_left_offset);        /* frame_crop_left_offset */\n        bitstream_put_ue(bs, seq_param.frame_crop_right_offset);       /* frame_crop_right_offset */\n        bitstream_put_ue(bs, seq_param.frame_crop_top_offset);         /* frame_crop_top_offset */\n        bitstream_put_ue(bs, seq_param.frame_crop_bottom_offset);      /* frame_crop_bottom_offset */\n    }\n\n    //if ( frame_bit_rate < 0 ) { //TODO EW: the vui header isn't correct\n    if (1) {\n        bitstream_put_ui(bs, 0, 1); /* vui_parameters_present_flag */\n    } else {\n        bitstream_put_ui(bs, 1, 1); /* vui_parameters_present_flag */\n        bitstream_put_ui(bs, 0, 1); /* aspect_ratio_info_present_flag */\n        bitstream_put_ui(bs, 0, 1); /* overscan_info_present_flag */\n        bitstream_put_ui(bs, 0, 1); /* video_signal_type_present_flag */\n        bitstream_put_ui(bs, 0, 1); /* chroma_loc_info_present_flag */\n        bitstream_put_ui(bs, 1, 1); /* timing_info_present_flag */\n        {\n            bitstream_put_ui(bs, 15, 32);\n            bitstream_put_ui(bs, 900, 32);\n            bitstream_put_ui(bs, 1, 1);\n        }\n        bitstream_put_ui(bs, 1, 1); /* nal_hrd_parameters_present_flag */\n        {\n            // hrd_parameters\n            bitstream_put_ue(bs, 0);    /* cpb_cnt_minus1 */\n            bitstream_put_ui(bs, 4, 4); /* bit_rate_scale */\n            bitstream_put_ui(bs, 6, 4); /* cpb_size_scale */\n\n            bitstream_put_ue(bs, frame_bitrate - 1); /* bit_rate_value_minus1[0] */\n            bitstream_put_ue(bs, frame_bitrate * 8 - 1); /* cpb_size_value_minus1[0] */\n            bitstream_put_ui(bs, 1, 1);  /* cbr_flag[0] */\n\n            bitstream_put_ui(bs, 23, 5);   /* initial_cpb_removal_delay_length_minus1 */\n            bitstream_put_ui(bs, 23, 5);   /* cpb_removal_delay_length_minus1 */\n            bitstream_put_ui(bs, 23, 5);   /* dpb_output_delay_length_minus1 */\n            bitstream_put_ui(bs, 23, 5);   /* time_offset_length  */\n        }\n        bitstream_put_ui(bs, 0, 1);   /* vcl_hrd_parameters_present_flag */\n        bitstream_put_ui(bs, 0, 1);   /* low_delay_hrd_flag */\n\n        bitstream_put_ui(bs, 0, 1); /* pic_struct_present_flag */\n        bitstream_put_ui(bs, 0, 1); /* bitstream_restriction_flag */\n    }\n\n    rbsp_trailing_bits(bs);     /* rbsp_trailing_bits */\n}\n\n\nstatic void pps_rbsp(bitstream *bs)\n{\n    bitstream_put_ue(bs, pic_param.pic_parameter_set_id);      /* pic_parameter_set_id */\n    bitstream_put_ue(bs, pic_param.seq_parameter_set_id);      /* seq_parameter_set_id */\n\n    bitstream_put_ui(bs, pic_param.pic_fields.bits.entropy_coding_mode_flag, 1);  /* entropy_coding_mode_flag */\n\n    bitstream_put_ui(bs, 0, 1);                         /* pic_order_present_flag: 0 */\n\n    bitstream_put_ue(bs, 0);                            /* num_slice_groups_minus1 */\n\n    bitstream_put_ue(bs, pic_param.num_ref_idx_l0_active_minus1);      /* num_ref_idx_l0_active_minus1 */\n    bitstream_put_ue(bs, pic_param.num_ref_idx_l1_active_minus1);      /* num_ref_idx_l1_active_minus1 1 */\n\n    bitstream_put_ui(bs, pic_param.pic_fields.bits.weighted_pred_flag, 1);     /* weighted_pred_flag: 0 */\n    bitstream_put_ui(bs, pic_param.pic_fields.bits.weighted_bipred_idc, 2); /* weighted_bipred_idc: 0 */\n\n    bitstream_put_se(bs, pic_param.pic_init_qp - 26);  /* pic_init_qp_minus26 */\n    bitstream_put_se(bs, 0);                            /* pic_init_qs_minus26 */\n    bitstream_put_se(bs, 0);                            /* chroma_qp_index_offset */\n\n    bitstream_put_ui(bs, pic_param.pic_fields.bits.deblocking_filter_control_present_flag, 1); /* deblocking_filter_control_present_flag */\n    bitstream_put_ui(bs, 0, 1);                         /* constrained_intra_pred_flag */\n    bitstream_put_ui(bs, 0, 1);                         /* redundant_pic_cnt_present_flag */\n\n    /* more_rbsp_data */\n    bitstream_put_ui(bs, pic_param.pic_fields.bits.transform_8x8_mode_flag, 1);    /*transform_8x8_mode_flag */\n    bitstream_put_ui(bs, 0, 1);                         /* pic_scaling_matrix_present_flag */\n    bitstream_put_se(bs, pic_param.second_chroma_qp_index_offset);     /*second_chroma_qp_index_offset */\n\n    rbsp_trailing_bits(bs);\n}\n\nstatic void slice_header(bitstream *bs)\n{\n    int first_mb_in_slice = slice_param.macroblock_address;\n\n    bitstream_put_ue(bs, first_mb_in_slice);        /* first_mb_in_slice: 0 */\n    bitstream_put_ue(bs, slice_param.slice_type);   /* slice_type */\n    bitstream_put_ue(bs, slice_param.pic_parameter_set_id);        /* pic_parameter_set_id: 0 */\n    bitstream_put_ui(bs, pic_param.frame_num, seq_param.seq_fields.bits.log2_max_frame_num_minus4 + 4); /* frame_num */\n\n    /* frame_mbs_only_flag == 1 */\n    if (!seq_param.seq_fields.bits.frame_mbs_only_flag) {\n        /* FIXME: */\n        assert(0);\n    }\n\n    if (pic_param.pic_fields.bits.idr_pic_flag)\n        bitstream_put_ue(bs, slice_param.idr_pic_id);       /* idr_pic_id: 0 */\n\n    if (seq_param.seq_fields.bits.pic_order_cnt_type == 0) {\n        bitstream_put_ui(bs, pic_param.CurrPic.TopFieldOrderCnt, seq_param.seq_fields.bits.log2_max_pic_order_cnt_lsb_minus4 + 4);\n        /* pic_order_present_flag == 0 */\n    } else {\n        /* FIXME: */\n        assert(0);\n    }\n\n    /* redundant_pic_cnt_present_flag == 0 */\n    /* slice type */\n    if (IS_P_SLICE(slice_param.slice_type)) {\n        bitstream_put_ui(bs, slice_param.num_ref_idx_active_override_flag, 1);            /* num_ref_idx_active_override_flag: */\n\n        if (slice_param.num_ref_idx_active_override_flag)\n            bitstream_put_ue(bs, slice_param.num_ref_idx_l0_active_minus1);\n\n        /* ref_pic_list_reordering */\n        bitstream_put_ui(bs, 0, 1);            /* ref_pic_list_reordering_flag_l0: 0 */\n    } else if (IS_B_SLICE(slice_param.slice_type)) {\n        bitstream_put_ui(bs, slice_param.direct_spatial_mv_pred_flag, 1);            /* direct_spatial_mv_pred: 1 */\n\n        bitstream_put_ui(bs, slice_param.num_ref_idx_active_override_flag, 1);       /* num_ref_idx_active_override_flag: */\n\n        if (slice_param.num_ref_idx_active_override_flag) {\n            bitstream_put_ue(bs, slice_param.num_ref_idx_l0_active_minus1);\n            bitstream_put_ue(bs, slice_param.num_ref_idx_l1_active_minus1);\n        }\n\n        /* ref_pic_list_reordering */\n        bitstream_put_ui(bs, 0, 1);            /* ref_pic_list_reordering_flag_l0: 0 */\n        bitstream_put_ui(bs, 0, 1);            /* ref_pic_list_reordering_flag_l1: 0 */\n    }\n\n    if ((pic_param.pic_fields.bits.weighted_pred_flag &&\n         IS_P_SLICE(slice_param.slice_type)) ||\n        ((pic_param.pic_fields.bits.weighted_bipred_idc == 1) &&\n         IS_B_SLICE(slice_param.slice_type))) {\n        /* FIXME: fill weight/offset table */\n        assert(0);\n    }\n\n    /* dec_ref_pic_marking */\n    if (pic_param.pic_fields.bits.reference_pic_flag) {     /* nal_ref_idc != 0 */\n        unsigned char no_output_of_prior_pics_flag = 0;\n        unsigned char long_term_reference_flag = 0;\n        unsigned char adaptive_ref_pic_marking_mode_flag = 0;\n\n        if (pic_param.pic_fields.bits.idr_pic_flag) {\n            bitstream_put_ui(bs, no_output_of_prior_pics_flag, 1);            /* no_output_of_prior_pics_flag: 0 */\n            bitstream_put_ui(bs, long_term_reference_flag, 1);            /* long_term_reference_flag: 0 */\n        } else {\n            bitstream_put_ui(bs, adaptive_ref_pic_marking_mode_flag, 1);            /* adaptive_ref_pic_marking_mode_flag: 0 */\n        }\n    }\n\n    if (pic_param.pic_fields.bits.entropy_coding_mode_flag &&\n        !IS_I_SLICE(slice_param.slice_type))\n        bitstream_put_ue(bs, slice_param.cabac_init_idc);               /* cabac_init_idc: 0 */\n\n    bitstream_put_se(bs, slice_param.slice_qp_delta);                   /* slice_qp_delta: 0 */\n\n    /* ignore for SP/SI */\n\n    if (pic_param.pic_fields.bits.deblocking_filter_control_present_flag) {\n        bitstream_put_ue(bs, slice_param.disable_deblocking_filter_idc);           /* disable_deblocking_filter_idc: 0 */\n\n        if (slice_param.disable_deblocking_filter_idc != 1) {\n            bitstream_put_se(bs, slice_param.slice_alpha_c0_offset_div2);          /* slice_alpha_c0_offset_div2: 2 */\n            bitstream_put_se(bs, slice_param.slice_beta_offset_div2);              /* slice_beta_offset_div2: 2 */\n        }\n    }\n\n    if (pic_param.pic_fields.bits.entropy_coding_mode_flag) {\n        bitstream_byte_aligning(bs, 1);\n    }\n}\n\nstatic int\nbuild_packed_pic_buffer(unsigned char **header_buffer)\n{\n    bitstream bs;\n\n    bitstream_start(&bs);\n    nal_start_code_prefix(&bs);\n    nal_header(&bs, NAL_REF_IDC_HIGH, NAL_PPS);\n    pps_rbsp(&bs);\n    bitstream_end(&bs);\n\n    *header_buffer = (unsigned char *)bs.buffer;\n    return bs.bit_offset;\n}\n\nstatic int\nbuild_packed_seq_buffer(unsigned char **header_buffer)\n{\n    bitstream bs;\n\n    bitstream_start(&bs);\n    nal_start_code_prefix(&bs);\n    nal_header(&bs, NAL_REF_IDC_HIGH, NAL_SPS);\n    sps_rbsp(&bs);\n    bitstream_end(&bs);\n\n    *header_buffer = (unsigned char *)bs.buffer;\n    return bs.bit_offset;\n}\n\n#if 0\n\nstatic int\nbuild_packed_sei_buffer_timing(unsigned int init_cpb_removal_length,\n                               unsigned int init_cpb_removal_delay,\n                               unsigned int init_cpb_removal_delay_offset,\n                               unsigned int cpb_removal_length,\n                               unsigned int cpb_removal_delay,\n                               unsigned int dpb_output_length,\n                               unsigned int dpb_output_delay,\n                               unsigned char **sei_buffer)\n{\n    unsigned char *byte_buf;\n    int bp_byte_size, i, pic_byte_size;\n\n    bitstream nal_bs;\n    bitstream sei_bp_bs, sei_pic_bs;\n\n    bitstream_start(&sei_bp_bs);\n    bitstream_put_ue(&sei_bp_bs, 0);       /*seq_parameter_set_id*/\n    bitstream_put_ui(&sei_bp_bs, init_cpb_removal_delay, cpb_removal_length);\n    bitstream_put_ui(&sei_bp_bs, init_cpb_removal_delay_offset, cpb_removal_length);\n    if (sei_bp_bs.bit_offset & 0x7) {\n        bitstream_put_ui(&sei_bp_bs, 1, 1);\n    }\n    bitstream_end(&sei_bp_bs);\n    bp_byte_size = (sei_bp_bs.bit_offset + 7) / 8;\n\n    bitstream_start(&sei_pic_bs);\n    bitstream_put_ui(&sei_pic_bs, cpb_removal_delay, cpb_removal_length);\n    bitstream_put_ui(&sei_pic_bs, dpb_output_delay, dpb_output_length);\n    if (sei_pic_bs.bit_offset & 0x7) {\n        bitstream_put_ui(&sei_pic_bs, 1, 1);\n    }\n    bitstream_end(&sei_pic_bs);\n    pic_byte_size = (sei_pic_bs.bit_offset + 7) / 8;\n\n    bitstream_start(&nal_bs);\n    nal_start_code_prefix(&nal_bs);\n    nal_header(&nal_bs, NAL_REF_IDC_NONE, NAL_SEI);\n\n    /* Write the SEI buffer period data */\n    bitstream_put_ui(&nal_bs, 0, 8);\n    bitstream_put_ui(&nal_bs, bp_byte_size, 8);\n\n    byte_buf = (unsigned char *)sei_bp_bs.buffer;\n    for (i = 0; i < bp_byte_size; i++) {\n        bitstream_put_ui(&nal_bs, byte_buf[i], 8);\n    }\n    free(byte_buf);\n    /* write the SEI timing data */\n    bitstream_put_ui(&nal_bs, 0x01, 8);\n    bitstream_put_ui(&nal_bs, pic_byte_size, 8);\n\n    byte_buf = (unsigned char *)sei_pic_bs.buffer;\n    for (i = 0; i < pic_byte_size; i++) {\n        bitstream_put_ui(&nal_bs, byte_buf[i], 8);\n    }\n    free(byte_buf);\n\n    rbsp_trailing_bits(&nal_bs);\n    bitstream_end(&nal_bs);\n\n    *sei_buffer = (unsigned char *)nal_bs.buffer;\n\n    return nal_bs.bit_offset;\n}\n\n#endif\n\nstatic int build_packed_slice_buffer(unsigned char **header_buffer)\n{\n    bitstream bs;\n    int is_idr = !!pic_param.pic_fields.bits.idr_pic_flag;\n    int is_ref = !!pic_param.pic_fields.bits.reference_pic_flag;\n\n    bitstream_start(&bs);\n    nal_start_code_prefix(&bs);\n\n    if (IS_I_SLICE(slice_param.slice_type)) {\n        nal_header(&bs, NAL_REF_IDC_HIGH, is_idr ? NAL_IDR : NAL_NON_IDR);\n    } else if (IS_P_SLICE(slice_param.slice_type)) {\n        nal_header(&bs, NAL_REF_IDC_MEDIUM, NAL_NON_IDR);\n    } else {\n        assert(IS_B_SLICE(slice_param.slice_type));\n        nal_header(&bs, is_ref ? NAL_REF_IDC_LOW : NAL_REF_IDC_NONE, NAL_NON_IDR);\n    }\n\n    slice_header(&bs);\n    bitstream_end(&bs);\n\n    *header_buffer = (unsigned char *)bs.buffer;\n    return bs.bit_offset;\n}\n\n\n/*\n * Helper function for profiling purposes\n */\nstatic unsigned int GetTickCount()\n{\n    struct timeval tv;\n    if (gettimeofday(&tv, NULL))\n        return 0;\n    return tv.tv_usec / 1000 + tv.tv_sec * 1000;\n}\n\n/*\n  Assume frame sequence is: Frame#0,#1,#2,...,#M,...,#X,... (encoding order)\n  1) period between Frame #X and Frame #N = #X - #N\n  2) 0 means infinite for intra_period/intra_idr_period, and 0 is invalid for ip_period\n  3) intra_idr_period % intra_period (intra_period > 0) and intra_period % ip_period must be 0\n  4) intra_period and intra_idr_period take precedence over ip_period\n  5) if ip_period > 1, intra_period and intra_idr_period are not  the strict periods\n     of I/IDR frames, see bellow examples\n  -------------------------------------------------------------------\n  intra_period intra_idr_period ip_period frame sequence (intra_period/intra_idr_period/ip_period)\n  0            ignored          1          IDRPPPPPPP ...     (No IDR/I any more)\n  0            ignored        >=2          IDR(PBB)(PBB)...   (No IDR/I any more)\n  1            0                ignored    IDRIIIIIII...      (No IDR any more)\n  1            1                ignored    IDR IDR IDR IDR...\n  1            >=2              ignored    IDRII IDRII IDR... (1/3/ignore)\n  >=2          0                1          IDRPPP IPPP I...   (3/0/1)\n  >=2          0              >=2          IDR(PBB)(PBB)(IBB) (6/0/3)\n                                              (PBB)(IBB)(PBB)(IBB)...\n  >=2          >=2              1          IDRPPPPP IPPPPP IPPPPP (6/18/1)\n                                           IDRPPPPP IPPPPP IPPPPP...\n  >=2          >=2              >=2        {IDR(PBB)(PBB)(IBB)(PBB)(IBB)(PBB)} (6/18/3)\n                                           {IDR(PBB)(PBB)(IBB)(PBB)(IBB)(PBB)}...\n                                           {IDR(PBB)(PBB)(IBB)(PBB)}           (6/12/3)\n                                           {IDR(PBB)(PBB)(IBB)(PBB)}...\n                                           {IDR(PBB)(PBB)}                     (6/6/3)\n                                           {IDR(PBB)(PBB)}.\n*/\n\n/*\n * Return displaying order with specified periods and encoding order\n * displaying_order: displaying order\n * frame_type: frame type\n */\n#define FRAME_P 0\n#define FRAME_B 1\n#define FRAME_I 2\n#define FRAME_IDR 7\nvoid encoding2display_order(\n    unsigned long long encoding_order, int intra_period,\n    int intra_idr_period, int ip_period,\n    unsigned long long *displaying_order,\n    int *frame_type)\n{\n    int encoding_order_gop = 0;\n\n    if (intra_period == 1) { /* all are I/IDR frames */\n        *displaying_order = encoding_order;\n        if (intra_idr_period == 0)\n            *frame_type = (encoding_order == 0) ? FRAME_IDR : FRAME_I;\n        else\n            *frame_type = (encoding_order % intra_idr_period == 0) ? FRAME_IDR : FRAME_I;\n        return;\n    }\n\n    if (intra_period == 0)\n        intra_idr_period = 0;\n\n    /* new sequence like\n     * IDR PPPPP IPPPPP\n     * IDR (PBB)(PBB)(IBB)(PBB)\n     */\n    encoding_order_gop = (intra_idr_period == 0) ? encoding_order :\n                         (encoding_order % (intra_idr_period + ((ip_period == 1) ? 0 : 1)));\n\n    if (encoding_order_gop == 0) { /* the first frame */\n        *frame_type = FRAME_IDR;\n        *displaying_order = encoding_order;\n    } else if (((encoding_order_gop - 1) % ip_period) != 0) { /* B frames */\n        *frame_type = FRAME_B;\n        *displaying_order = encoding_order - 1;\n    } else if ((intra_period != 0) && /* have I frames */\n               (encoding_order_gop >= 2) &&\n               ((ip_period == 1 && encoding_order_gop % intra_period == 0) || /* for IDR PPPPP IPPPP */\n                /* for IDR (PBB)(PBB)(IBB) */\n                (ip_period >= 2 && ((encoding_order_gop - 1) / ip_period % (intra_period / ip_period)) == 0))) {\n        *frame_type = FRAME_I;\n        *displaying_order = encoding_order + ip_period - 1;\n    } else {\n        *frame_type = FRAME_P;\n        *displaying_order = encoding_order + ip_period - 1;\n    }\n}\n\n\nstatic char *fourcc_to_string(int fourcc)\n{\n    switch (fourcc) {\n    case VA_FOURCC_NV12:\n        return \"NV12\";\n    case VA_FOURCC_IYUV:\n        return \"IYUV\";\n    case VA_FOURCC_YV12:\n        return \"YV12\";\n    case VA_FOURCC_UYVY:\n        return \"UYVY\";\n    default:\n        return \"Unknown\";\n    }\n}\n\nstatic int string_to_fourcc(char *str)\n{\n    int fourcc;\n\n    if (!strncmp(str, \"NV12\", 4))\n        fourcc = VA_FOURCC_NV12;\n    else if (!strncmp(str, \"IYUV\", 4))\n        fourcc = VA_FOURCC_IYUV;\n    else if (!strncmp(str, \"YV12\", 4))\n        fourcc = VA_FOURCC_YV12;\n    else if (!strncmp(str, \"UYVY\", 4))\n        fourcc = VA_FOURCC_UYVY;\n    else {\n        printf(\"Unknow FOURCC\\n\");\n        fourcc = -1;\n    }\n    return fourcc;\n}\n\n\nstatic char *rc_to_string(int rcmode)\n{\n    switch (rc_mode) {\n    case VA_RC_NONE:\n        return \"NONE\";\n    case VA_RC_CBR:\n        return \"CBR\";\n    case VA_RC_VBR:\n        return \"VBR\";\n    case VA_RC_VCM:\n        return \"VCM\";\n    case VA_RC_CQP:\n        return \"CQP\";\n    case VA_RC_VBR_CONSTRAINED:\n        return \"VBR_CONSTRAINED\";\n    default:\n        return \"Unknown\";\n    }\n}\n\nstatic int string_to_rc(char *str)\n{\n    int rc_mode;\n\n    if (!strncmp(str, \"NONE\", 4))\n        rc_mode = VA_RC_NONE;\n    else if (!strncmp(str, \"CBR\", 3))\n        rc_mode = VA_RC_CBR;\n    else if (!strncmp(str, \"VBR\", 3))\n        rc_mode = VA_RC_VBR;\n    else if (!strncmp(str, \"VCM\", 3))\n        rc_mode = VA_RC_VCM;\n    else if (!strncmp(str, \"CQP\", 3))\n        rc_mode = VA_RC_CQP;\n    else if (!strncmp(str, \"VBR_CONSTRAINED\", 15))\n        rc_mode = VA_RC_VBR_CONSTRAINED;\n    else {\n        printf(\"Unknown RC mode\\n\");\n        rc_mode = -1;\n    }\n    return rc_mode;\n}\n\n\nstatic int print_help(void)\n{\n    printf(\"./h264encode <options>\\n\");\n    printf(\"   -w <width> -h <height>\\n\");\n    printf(\"   -framecount <frame number>\\n\");\n    printf(\"   -n <frame number>\\n\");\n    printf(\"      if set to 0 and srcyuv is set, the frame count is from srcuv file\\n\");\n    printf(\"   -o <coded file>\\n\");\n    printf(\"   -f <frame rate>\\n\");\n    printf(\"   --intra_period <number>\\n\");\n    printf(\"   --idr_period <number>\\n\");\n    printf(\"   --ip_period <number>\\n\");\n    printf(\"   --bitrate <bitrate>\\n\");\n    printf(\"   --initialqp <number>\\n\");\n    printf(\"   --minqp <number>\\n\");\n    printf(\"   --rcmode <NONE|CBR|VBR|VCM|CQP|VBR_CONTRAINED>\\n\");\n    printf(\"   --syncmode: sequentially upload source, encoding, save result, no multi-thread\\n\");\n    printf(\"   --srcyuv <filename> load YUV from a file\\n\");\n    printf(\"   --fourcc <NV12|IYUV|YV12> source YUV fourcc\\n\");\n    printf(\"   --recyuv <filename> save reconstructed YUV into a file\\n\");\n    printf(\"   --enablePSNR calculate PSNR of recyuv vs. srcyuv\\n\");\n    printf(\"   --entropy <0|1>, 1 means cabac, 0 cavlc\\n\");\n    printf(\"   --profile <BP|MP|HP>\\n\");\n    printf(\"   --low_power <num> 0: Normal mode, 1: Low power mode, others: auto mode\\n\");\n    return 0;\n}\n\nstatic int process_cmdline(int argc, char *argv[])\n{\n    int c;\n    const struct option long_opts[] = {\n        {\"help\", no_argument, NULL, 0 },\n        {\"bitrate\", required_argument, NULL, 1 },\n        {\"minqp\", required_argument, NULL, 2 },\n        {\"initialqp\", required_argument, NULL, 3 },\n        {\"intra_period\", required_argument, NULL, 4 },\n        {\"idr_period\", required_argument, NULL, 5 },\n        {\"ip_period\", required_argument, NULL, 6 },\n        {\"rcmode\", required_argument, NULL, 7 },\n        {\"srcyuv\", required_argument, NULL, 9 },\n        {\"recyuv\", required_argument, NULL, 10 },\n        {\"fourcc\", required_argument, NULL, 11 },\n        {\"syncmode\", no_argument, NULL, 12 },\n        {\"enablePSNR\", no_argument, NULL, 13 },\n        {\"prit\", required_argument, NULL, 14 },\n        {\"priv\", required_argument, NULL, 15 },\n        {\"framecount\", required_argument, NULL, 16 },\n        {\"entropy\", required_argument, NULL, 17 },\n        {\"profile\", required_argument, NULL, 18 },\n        {\"low_power\", required_argument, NULL, 19 },\n        {NULL, no_argument, NULL, 0 }\n    };\n    int long_index;\n\n    while ((c = getopt_long_only(argc, argv, \"w:h:n:f:o:?\", long_opts, &long_index)) != EOF) {\n        switch (c) {\n        case 'w':\n            frame_width = atoi(optarg);\n            break;\n        case 'h':\n            frame_height = atoi(optarg);\n            break;\n        case 'n':\n        case 16:\n            frame_count = atoi(optarg);\n            break;\n        case 'f':\n            frame_rate = atoi(optarg);\n            break;\n        case 'o':\n            if (!coded_fn)\n                coded_fn = strdup(optarg);\n            assert(coded_fn);\n            break;\n        case 0:\n            print_help();\n            exit(0);\n        case 1:\n            frame_bitrate = atoi(optarg);\n            break;\n        case 2:\n            minimal_qp = atoi(optarg);\n            break;\n        case 3:\n            initial_qp = atoi(optarg);\n            break;\n        case 4:\n            intra_period = atoi(optarg);\n            break;\n        case 5:\n            intra_idr_period = atoi(optarg);\n            break;\n        case 6:\n            ip_period = atoi(optarg);\n            break;\n        case 7:\n            rc_mode = string_to_rc(optarg);\n            if (rc_mode < 0) {\n                print_help();\n                exit(1);\n            }\n            break;\n        case 9:\n            if (!srcyuv_fn)\n                srcyuv_fn = strdup(optarg);\n            assert(srcyuv_fn);\n            break;\n        case 10:\n            if (!recyuv_fn)\n                recyuv_fn = strdup(optarg);\n            assert(recyuv_fn);\n            break;\n        case 11:\n            srcyuv_fourcc = string_to_fourcc(optarg);\n            if (srcyuv_fourcc <= 0) {\n                print_help();\n                exit(1);\n            }\n            break;\n        case 12:\n            encode_syncmode = 1;\n            break;\n        case 13:\n            calc_psnr = 1;\n            break;\n        case 14:\n            misc_priv_type = strtol(optarg, NULL, 0);\n            break;\n        case 15:\n            misc_priv_value = strtol(optarg, NULL, 0);\n            break;\n        case 17:\n            h264_entropy_mode = atoi(optarg) ? 1 : 0;\n            break;\n        case 18:\n            if (strncmp(optarg, \"BP\", 2) == 0)\n                h264_profile = VAProfileH264ConstrainedBaseline;\n            else if (strncmp(optarg, \"MP\", 2) == 0)\n                h264_profile = VAProfileH264Main;\n            else if (strncmp(optarg, \"HP\", 2) == 0)\n                h264_profile = VAProfileH264High;\n            else\n                h264_profile = 0;\n            break;\n        case 19: {\n            int lp_option = atoi(optarg);\n            if (lp_option == 0)\n                requested_entrypoint = VAEntrypointEncSlice; //normal 0\n            else if (lp_option == 1)\n                requested_entrypoint =  VAEntrypointEncSliceLP; //low power 1\n            else\n                requested_entrypoint = -1;\n        }\n        break;\n        case ':':\n        case '?':\n            print_help();\n            exit(0);\n        }\n    }\n\n    if (ip_period < 1) {\n        printf(\" ip_period must be greater than 0\\n\");\n        exit(0);\n    }\n    if (intra_period != 1 && intra_period % ip_period != 0) {\n        printf(\" intra_period must be a multiplier of ip_period\\n\");\n        exit(0);\n    }\n    if (intra_period != 0 && intra_idr_period % intra_period != 0) {\n        printf(\" intra_idr_period must be a multiplier of intra_period\\n\");\n        exit(0);\n    }\n\n    if (frame_bitrate == 0)\n        frame_bitrate = (long long int) frame_width * frame_height * 12 * frame_rate / 50;\n\n    /* open source file */\n    if (srcyuv_fn) {\n        srcyuv_fp = fopen(srcyuv_fn, \"r\");\n\n        if (srcyuv_fp == NULL)\n            printf(\"Open source YUV file %s failed, use auto-generated YUV data\\n\", srcyuv_fn);\n        else {\n            struct stat tmp;\n\n            fstat(fileno(srcyuv_fp), &tmp);\n            srcyuv_frames = tmp.st_size / (frame_width * frame_height * 1.5);\n            printf(\"Source YUV file %s with %llu frames\\n\", srcyuv_fn, srcyuv_frames);\n\n            if (frame_count == 0)\n                frame_count = srcyuv_frames;\n        }\n    }\n\n    /* open source file */\n    if (recyuv_fn) {\n        recyuv_fp = fopen(recyuv_fn, \"w+\");\n\n        if (recyuv_fp == NULL)\n            printf(\"Open reconstructed YUV file %s failed\\n\", recyuv_fn);\n    }\n\n    if (coded_fn == NULL) {\n        struct stat buf;\n        if (stat(\"/tmp\", &buf) == 0)\n            coded_fn = strdup(\"/tmp/test.264\");\n        else if (stat(\"/sdcard\", &buf) == 0)\n            coded_fn = strdup(\"/sdcard/test.264\");\n        else\n            coded_fn = strdup(\"./test.264\");\n\n        assert(coded_fn);\n    }\n\n    /* store coded data into a file */\n    coded_fp = fopen(coded_fn, \"w+\");\n    if (coded_fp == NULL) {\n        printf(\"Open file %s failed, exit\\n\", coded_fn);\n        exit(1);\n    }\n\n    frame_width_mbaligned = (frame_width + 15) & (~15);\n    frame_height_mbaligned = (frame_height + 15) & (~15);\n    if (frame_width != frame_width_mbaligned ||\n        frame_height != frame_height_mbaligned) {\n        printf(\"Source frame is %dx%d and will code clip to %dx%d with crop\\n\",\n               frame_width, frame_height,\n               frame_width_mbaligned, frame_height_mbaligned\n              );\n    }\n\n    return 0;\n}\n\nstatic int init_va(void)\n{\n    VAProfile profile_list[] = {VAProfileH264High, VAProfileH264Main, VAProfileH264ConstrainedBaseline};\n    VAEntrypoint *entrypoints;\n    int num_entrypoints, slice_entrypoint;\n    int support_encode = 0;\n    int major_ver, minor_ver;\n    VAStatus va_status;\n    unsigned int i;\n\n    va_dpy = va_open_display();\n    va_status = vaInitialize(va_dpy, &major_ver, &minor_ver);\n    CHECK_VASTATUS(va_status, \"vaInitialize\");\n\n    num_entrypoints = vaMaxNumEntrypoints(va_dpy);\n    entrypoints = malloc(num_entrypoints * sizeof(*entrypoints));\n    if (!entrypoints) {\n        fprintf(stderr, \"error: failed to initialize VA entrypoints array\\n\");\n        exit(1);\n    }\n\n    /* use the highest profile */\n    for (i = 0; i < sizeof(profile_list) / sizeof(profile_list[0]); i++) {\n        if ((h264_profile != ~0) && h264_profile != profile_list[i])\n            continue;\n\n        h264_profile = profile_list[i];\n        vaQueryConfigEntrypoints(va_dpy, h264_profile, entrypoints, &num_entrypoints);\n        for (slice_entrypoint = 0; slice_entrypoint < num_entrypoints; slice_entrypoint++) {\n            if (requested_entrypoint == -1) {\n                //Select the entry point based on what is avaiable\n                if ((entrypoints[slice_entrypoint] == VAEntrypointEncSlice) ||\n                    (entrypoints[slice_entrypoint] == VAEntrypointEncSliceLP)) {\n                    support_encode = 1;\n                    selected_entrypoint = entrypoints[slice_entrypoint];\n                    break;\n                }\n            } else if (entrypoints[slice_entrypoint] == requested_entrypoint) {\n                //Select the entry point based on what was requested in cmd line option\n                support_encode = 1;\n                selected_entrypoint = entrypoints[slice_entrypoint];\n                break;\n            }\n        }\n        if (support_encode == 1) {\n            printf(\"Using EntryPoint - %d \\n\", selected_entrypoint);\n            break;\n        }\n    }\n\n    if (support_encode == 0) {\n        printf(\"Can't find VAEntrypointEncSlice or  VAEntrypointEncSliceLP for H264 profiles\\n\");\n        exit(1);\n    } else {\n        switch (h264_profile) {\n        case VAProfileH264ConstrainedBaseline:\n            printf(\"Use profile VAProfileH264ConstrainedBaseline\\n\");\n            constraint_set_flag |= (1 << 0 | 1 << 1); /* Annex A.2.2 */\n            ip_period = 1;\n            break;\n\n        case VAProfileH264Main:\n            printf(\"Use profile VAProfileH264Main\\n\");\n            constraint_set_flag |= (1 << 1); /* Annex A.2.2 */\n            break;\n\n        case VAProfileH264High:\n            constraint_set_flag |= (1 << 3); /* Annex A.2.4 */\n            printf(\"Use profile VAProfileH264High\\n\");\n            break;\n        default:\n            printf(\"unknow profile. Set to Constrained Baseline\");\n            h264_profile = VAProfileH264ConstrainedBaseline;\n            constraint_set_flag |= (1 << 0 | 1 << 1); /* Annex A.2.1 & A.2.2 */\n            ip_period = 1;\n            break;\n        }\n    }\n\n    /* find out the format for the render target, and rate control mode */\n    for (i = 0; i < VAConfigAttribTypeMax; i++)\n        attrib[i].type = i;\n\n    va_status = vaGetConfigAttributes(va_dpy, h264_profile, selected_entrypoint,\n                                      &attrib[0], VAConfigAttribTypeMax);\n    CHECK_VASTATUS(va_status, \"vaGetConfigAttributes\");\n    /* check the interested configattrib */\n    if ((attrib[VAConfigAttribRTFormat].value & VA_RT_FORMAT_YUV420) == 0) {\n        printf(\"Not find desired YUV420 RT format\\n\");\n\tfree(entrypoints);\n        exit(1);\n    } else {\n        config_attrib[config_attrib_num].type = VAConfigAttribRTFormat;\n        config_attrib[config_attrib_num].value = VA_RT_FORMAT_YUV420;\n        config_attrib_num++;\n    }\n\n    if (attrib[VAConfigAttribRateControl].value != VA_ATTRIB_NOT_SUPPORTED) {\n        int tmp = attrib[VAConfigAttribRateControl].value;\n\n        printf(\"Support rate control mode (0x%x):\", tmp);\n\n        if (tmp & VA_RC_NONE)\n            printf(\"NONE \");\n        if (tmp & VA_RC_CBR)\n            printf(\"CBR \");\n        if (tmp & VA_RC_VBR)\n            printf(\"VBR \");\n        if (tmp & VA_RC_VCM)\n            printf(\"VCM \");\n        if (tmp & VA_RC_CQP)\n            printf(\"CQP \");\n        if (tmp & VA_RC_VBR_CONSTRAINED)\n            printf(\"VBR_CONSTRAINED \");\n\n        printf(\"\\n\");\n\n        if (rc_mode == -1 || !(rc_mode & tmp))  {\n            if (rc_mode != -1) {\n                printf(\"Warning: Don't support the specified RateControl mode: %s!!!, switch to \", rc_to_string(rc_mode));\n            }\n\n            for (i = 0; i < sizeof(rc_default_modes) / sizeof(rc_default_modes[0]); i++) {\n                if (rc_default_modes[i] & tmp) {\n                    rc_mode = rc_default_modes[i];\n                    break;\n                }\n            }\n\n            printf(\"RateControl mode: %s\\n\", rc_to_string(rc_mode));\n        }\n\n        config_attrib[config_attrib_num].type = VAConfigAttribRateControl;\n        config_attrib[config_attrib_num].value = rc_mode;\n        config_attrib_num++;\n    }\n\n\n    if (attrib[VAConfigAttribEncPackedHeaders].value != VA_ATTRIB_NOT_SUPPORTED) {\n        int tmp = attrib[VAConfigAttribEncPackedHeaders].value;\n\n        printf(\"Support VAConfigAttribEncPackedHeaders\\n\");\n\n        h264_packedheader = 1;\n        config_attrib[config_attrib_num].type = VAConfigAttribEncPackedHeaders;\n        config_attrib[config_attrib_num].value = VA_ENC_PACKED_HEADER_NONE;\n\n        if (tmp & VA_ENC_PACKED_HEADER_SEQUENCE) {\n            printf(\"Support packed sequence headers\\n\");\n            config_attrib[config_attrib_num].value |= VA_ENC_PACKED_HEADER_SEQUENCE;\n        }\n\n        if (tmp & VA_ENC_PACKED_HEADER_PICTURE) {\n            printf(\"Support packed picture headers\\n\");\n            config_attrib[config_attrib_num].value |= VA_ENC_PACKED_HEADER_PICTURE;\n        }\n\n        if (tmp & VA_ENC_PACKED_HEADER_SLICE) {\n            printf(\"Support packed slice headers\\n\");\n            config_attrib[config_attrib_num].value |= VA_ENC_PACKED_HEADER_SLICE;\n        }\n\n        if (tmp & VA_ENC_PACKED_HEADER_MISC) {\n            printf(\"Support packed misc headers\\n\");\n            config_attrib[config_attrib_num].value |= VA_ENC_PACKED_HEADER_MISC;\n        }\n\n        enc_packed_header_idx = config_attrib_num;\n        config_attrib_num++;\n    }\n\n    if (attrib[VAConfigAttribEncInterlaced].value != VA_ATTRIB_NOT_SUPPORTED) {\n        int tmp = attrib[VAConfigAttribEncInterlaced].value;\n\n        printf(\"Support VAConfigAttribEncInterlaced\\n\");\n\n        if (tmp & VA_ENC_INTERLACED_FRAME)\n            printf(\"support VA_ENC_INTERLACED_FRAME\\n\");\n        if (tmp & VA_ENC_INTERLACED_FIELD)\n            printf(\"Support VA_ENC_INTERLACED_FIELD\\n\");\n        if (tmp & VA_ENC_INTERLACED_MBAFF)\n            printf(\"Support VA_ENC_INTERLACED_MBAFF\\n\");\n        if (tmp & VA_ENC_INTERLACED_PAFF)\n            printf(\"Support VA_ENC_INTERLACED_PAFF\\n\");\n\n        config_attrib[config_attrib_num].type = VAConfigAttribEncInterlaced;\n        config_attrib[config_attrib_num].value = VA_ENC_PACKED_HEADER_NONE;\n        config_attrib_num++;\n    }\n\n    if (attrib[VAConfigAttribEncMaxRefFrames].value != VA_ATTRIB_NOT_SUPPORTED) {\n        h264_maxref = attrib[VAConfigAttribEncMaxRefFrames].value;\n\n        printf(\"Support %d RefPicList0 and %d RefPicList1\\n\",\n               h264_maxref & 0xffff, (h264_maxref >> 16) & 0xffff);\n    }\n\n    if (attrib[VAConfigAttribEncMaxSlices].value != VA_ATTRIB_NOT_SUPPORTED)\n        printf(\"Support %d slices\\n\", attrib[VAConfigAttribEncMaxSlices].value);\n\n    if (attrib[VAConfigAttribEncSliceStructure].value != VA_ATTRIB_NOT_SUPPORTED) {\n        int tmp = attrib[VAConfigAttribEncSliceStructure].value;\n\n        printf(\"Support VAConfigAttribEncSliceStructure\\n\");\n\n        if (tmp & VA_ENC_SLICE_STRUCTURE_ARBITRARY_ROWS)\n            printf(\"Support VA_ENC_SLICE_STRUCTURE_ARBITRARY_ROWS\\n\");\n        if (tmp & VA_ENC_SLICE_STRUCTURE_POWER_OF_TWO_ROWS)\n            printf(\"Support VA_ENC_SLICE_STRUCTURE_POWER_OF_TWO_ROWS\\n\");\n        if (tmp & VA_ENC_SLICE_STRUCTURE_ARBITRARY_MACROBLOCKS)\n            printf(\"Support VA_ENC_SLICE_STRUCTURE_ARBITRARY_MACROBLOCKS\\n\");\n    }\n    if (attrib[VAConfigAttribEncMacroblockInfo].value != VA_ATTRIB_NOT_SUPPORTED) {\n        printf(\"Support VAConfigAttribEncMacroblockInfo\\n\");\n    }\n\n    free(entrypoints);\n    return 0;\n}\n\nstatic int setup_encode()\n{\n    VAStatus va_status;\n    VASurfaceID *tmp_surfaceid;\n    int codedbuf_size, i;\n\n    va_status = vaCreateConfig(va_dpy, h264_profile, selected_entrypoint,\n                               &config_attrib[0], config_attrib_num, &config_id);\n    CHECK_VASTATUS(va_status, \"vaCreateConfig\");\n\n    /* create source surfaces */\n    va_status = vaCreateSurfaces(va_dpy,\n                                 VA_RT_FORMAT_YUV420, frame_width_mbaligned, frame_height_mbaligned,\n                                 &src_surface[0], SURFACE_NUM,\n                                 NULL, 0);\n    CHECK_VASTATUS(va_status, \"vaCreateSurfaces\");\n\n    /* create reference surfaces */\n    va_status = vaCreateSurfaces(\n                    va_dpy,\n                    VA_RT_FORMAT_YUV420, frame_width_mbaligned, frame_height_mbaligned,\n                    &ref_surface[0], SURFACE_NUM,\n                    NULL, 0\n                );\n    CHECK_VASTATUS(va_status, \"vaCreateSurfaces\");\n\n    tmp_surfaceid = calloc(2 * SURFACE_NUM, sizeof(VASurfaceID));\n    assert(tmp_surfaceid);\n    memcpy(tmp_surfaceid, src_surface, SURFACE_NUM * sizeof(VASurfaceID));\n    memcpy(tmp_surfaceid + SURFACE_NUM, ref_surface, SURFACE_NUM * sizeof(VASurfaceID));\n\n    /* Create a context for this encode pipe */\n    va_status = vaCreateContext(va_dpy, config_id,\n                                frame_width_mbaligned, frame_height_mbaligned,\n                                VA_PROGRESSIVE,\n                                tmp_surfaceid, 2 * SURFACE_NUM,\n                                &context_id);\n    CHECK_VASTATUS(va_status, \"vaCreateContext\");\n    free(tmp_surfaceid);\n\n    codedbuf_size = ((long long int)frame_width_mbaligned * frame_height_mbaligned * 400) / (16 * 16);\n\n    for (i = 0; i < SURFACE_NUM; i++) {\n        /* create coded buffer once for all\n         * other VA buffers which won't be used again after vaRenderPicture.\n         * so APP can always vaCreateBuffer for every frame\n         * but coded buffer need to be mapped and accessed after vaRenderPicture/vaEndPicture\n         * so VA won't maintain the coded buffer\n         */\n        va_status = vaCreateBuffer(va_dpy, context_id, VAEncCodedBufferType,\n                                   codedbuf_size, 1, NULL, &coded_buf[i]);\n        CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n    }\n\n    return 0;\n}\n\n\n\n#define partition(ref, field, key, ascending)   \\\n    while (i <= j) {                            \\\n        if (ascending) {                        \\\n            while (ref[i].field < key)          \\\n                i++;                            \\\n            while (ref[j].field > key)          \\\n                j--;                            \\\n        } else {                                \\\n            while (ref[i].field > key)          \\\n                i++;                            \\\n            while (ref[j].field < key)          \\\n                j--;                            \\\n        }                                       \\\n        if (i <= j) {                           \\\n            tmp = ref[i];                       \\\n            ref[i] = ref[j];                    \\\n            ref[j] = tmp;                       \\\n            i++;                                \\\n            j--;                                \\\n        }                                       \\\n    }                                           \\\n\nstatic void sort_one(VAPictureH264 ref[], int left, int right,\n                     int ascending, int frame_idx)\n{\n    int i = left, j = right;\n    unsigned int key;\n    VAPictureH264 tmp;\n\n    if (frame_idx) {\n        key = ref[(left + right) / 2].frame_idx;\n        partition(ref, frame_idx, key, ascending);\n    } else {\n        key = ref[(left + right) / 2].TopFieldOrderCnt;\n        partition(ref, TopFieldOrderCnt, (signed int)key, ascending);\n    }\n\n    /* recursion */\n    if (left < j)\n        sort_one(ref, left, j, ascending, frame_idx);\n\n    if (i < right)\n        sort_one(ref, i, right, ascending, frame_idx);\n}\n\nstatic void sort_two(VAPictureH264 ref[], int left, int right, unsigned int key, unsigned int frame_idx,\n                     int partition_ascending, int list0_ascending, int list1_ascending)\n{\n    int i = left, j = right;\n    VAPictureH264 tmp;\n\n    if (frame_idx) {\n        partition(ref, frame_idx, key, partition_ascending);\n    } else {\n        partition(ref, TopFieldOrderCnt, (signed int)key, partition_ascending);\n    }\n\n\n    sort_one(ref, left, i - 1, list0_ascending, frame_idx);\n    sort_one(ref, j + 1, right, list1_ascending, frame_idx);\n}\n\nstatic int update_ReferenceFrames(void)\n{\n    int i;\n\n    if (current_frame_type == FRAME_B)\n        return 0;\n\n    CurrentCurrPic.flags = VA_PICTURE_H264_SHORT_TERM_REFERENCE;\n    numShortTerm++;\n    if (numShortTerm > num_ref_frames)\n        numShortTerm = num_ref_frames;\n    for (i = numShortTerm - 1; i > 0; i--)\n        ReferenceFrames[i] = ReferenceFrames[i - 1];\n    ReferenceFrames[0] = CurrentCurrPic;\n\n    if (current_frame_type != FRAME_B)\n        current_frame_num++;\n    if (current_frame_num > MaxFrameNum)\n        current_frame_num = 0;\n\n    return 0;\n}\n\n\nstatic int update_RefPicList(void)\n{\n    unsigned int current_poc = CurrentCurrPic.TopFieldOrderCnt;\n\n    if (current_frame_type == FRAME_P) {\n        memcpy(RefPicList0_P, ReferenceFrames, numShortTerm * sizeof(VAPictureH264));\n        sort_one(RefPicList0_P, 0, numShortTerm - 1, 0, 1);\n    }\n\n    if (current_frame_type == FRAME_B) {\n        memcpy(RefPicList0_B, ReferenceFrames, numShortTerm * sizeof(VAPictureH264));\n        sort_two(RefPicList0_B, 0, numShortTerm - 1, current_poc, 0,\n                 1, 0, 1);\n\n        memcpy(RefPicList1_B, ReferenceFrames, numShortTerm * sizeof(VAPictureH264));\n        sort_two(RefPicList1_B, 0, numShortTerm - 1, current_poc, 0,\n                 0, 1, 0);\n    }\n\n    return 0;\n}\n\n\nstatic int render_sequence(void)\n{\n    VABufferID seq_param_buf, rc_param_buf, misc_param_tmpbuf, render_id[2];\n    VAStatus va_status;\n    VAEncMiscParameterBuffer *misc_param, *misc_param_tmp;\n    VAEncMiscParameterRateControl *misc_rate_ctrl;\n\n    seq_param.level_idc = 41 /*SH_LEVEL_3*/;\n    seq_param.picture_width_in_mbs = frame_width_mbaligned / 16;\n    seq_param.picture_height_in_mbs = frame_height_mbaligned / 16;\n    seq_param.bits_per_second = frame_bitrate;\n\n    seq_param.intra_period = intra_period;\n    seq_param.intra_idr_period = intra_idr_period;\n    seq_param.ip_period = ip_period;\n\n    seq_param.max_num_ref_frames = num_ref_frames;\n    seq_param.seq_fields.bits.frame_mbs_only_flag = 1;\n    seq_param.time_scale = 900;\n    seq_param.num_units_in_tick = 15; /* Tc = num_units_in_tick / time_sacle */\n    Log2MaxPicOrderCntLsb = ceil(log2(intra_idr_period*2));\n    seq_param.seq_fields.bits.log2_max_pic_order_cnt_lsb_minus4 = Log2MaxPicOrderCntLsb - 4;\n    if(seq_param.seq_fields.bits.log2_max_pic_order_cnt_lsb_minus4 > 12)\n    {\n        seq_param.seq_fields.bits.log2_max_pic_order_cnt_lsb_minus4 = 12;\n    }\n    seq_param.seq_fields.bits.log2_max_frame_num_minus4 = Log2MaxFrameNum - 4;;\n    seq_param.seq_fields.bits.frame_mbs_only_flag = 1;\n    seq_param.seq_fields.bits.chroma_format_idc = 1;\n    seq_param.seq_fields.bits.direct_8x8_inference_flag = 1;\n\n    if (frame_width != frame_width_mbaligned ||\n        frame_height != frame_height_mbaligned) {\n        seq_param.frame_cropping_flag = 1;\n        seq_param.frame_crop_left_offset = 0;\n        seq_param.frame_crop_right_offset = (frame_width_mbaligned - frame_width) / 2;\n        seq_param.frame_crop_top_offset = 0;\n        seq_param.frame_crop_bottom_offset = (frame_height_mbaligned - frame_height) / 2;\n    }\n\n    va_status = vaCreateBuffer(va_dpy, context_id,\n                               VAEncSequenceParameterBufferType,\n                               sizeof(seq_param), 1, &seq_param, &seq_param_buf);\n    CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n    va_status = vaCreateBuffer(va_dpy, context_id,\n                               VAEncMiscParameterBufferType,\n                               sizeof(VAEncMiscParameterBuffer) + sizeof(VAEncMiscParameterRateControl),\n                               1, NULL, &rc_param_buf);\n    CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n    vaMapBuffer(va_dpy, rc_param_buf, (void **)&misc_param);\n    misc_param->type = VAEncMiscParameterTypeRateControl;\n    misc_rate_ctrl = (VAEncMiscParameterRateControl *)misc_param->data;\n    memset(misc_rate_ctrl, 0, sizeof(*misc_rate_ctrl));\n    misc_rate_ctrl->bits_per_second = frame_bitrate;\n    misc_rate_ctrl->target_percentage = 66;\n    misc_rate_ctrl->window_size = 1000;\n    misc_rate_ctrl->initial_qp = initial_qp;\n    misc_rate_ctrl->min_qp = minimal_qp;\n    misc_rate_ctrl->basic_unit_size = 0;\n    vaUnmapBuffer(va_dpy, rc_param_buf);\n\n    render_id[0] = seq_param_buf;\n    render_id[1] = rc_param_buf;\n\n    va_status = vaRenderPicture(va_dpy, context_id, &render_id[0], 2);\n    CHECK_VASTATUS(va_status, \"vaRenderPicture\");;\n\n    if (misc_priv_type != 0) {\n        va_status = vaCreateBuffer(va_dpy, context_id,\n                                   VAEncMiscParameterBufferType,\n                                   sizeof(VAEncMiscParameterBuffer),\n                                   1, NULL, &misc_param_tmpbuf);\n        CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n        vaMapBuffer(va_dpy, misc_param_tmpbuf, (void **)&misc_param_tmp);\n        misc_param_tmp->type = misc_priv_type;\n        misc_param_tmp->data[0] = misc_priv_value;\n        vaUnmapBuffer(va_dpy, misc_param_tmpbuf);\n\n        va_status = vaRenderPicture(va_dpy, context_id, &misc_param_tmpbuf, 1);\n    }\n\n    return 0;\n}\n\nstatic int calc_poc(int pic_order_cnt_lsb)\n{\n    static int PicOrderCntMsb_ref = 0, pic_order_cnt_lsb_ref = 0;\n    int prevPicOrderCntMsb, prevPicOrderCntLsb;\n    int PicOrderCntMsb, TopFieldOrderCnt;\n\n    if (current_frame_type == FRAME_IDR)\n        prevPicOrderCntMsb = prevPicOrderCntLsb = 0;\n    else {\n        prevPicOrderCntMsb = PicOrderCntMsb_ref;\n        prevPicOrderCntLsb = pic_order_cnt_lsb_ref;\n    }\n\n    if ((pic_order_cnt_lsb < prevPicOrderCntLsb) &&\n        ((prevPicOrderCntLsb - pic_order_cnt_lsb) >= (int)(MaxPicOrderCntLsb / 2)))\n        PicOrderCntMsb = prevPicOrderCntMsb + MaxPicOrderCntLsb;\n    else if ((pic_order_cnt_lsb > prevPicOrderCntLsb) &&\n             ((pic_order_cnt_lsb - prevPicOrderCntLsb) > (int)(MaxPicOrderCntLsb / 2)))\n        PicOrderCntMsb = prevPicOrderCntMsb - MaxPicOrderCntLsb;\n    else\n        PicOrderCntMsb = prevPicOrderCntMsb;\n\n    TopFieldOrderCnt = PicOrderCntMsb + pic_order_cnt_lsb;\n\n    if (current_frame_type != FRAME_B) {\n        PicOrderCntMsb_ref = PicOrderCntMsb;\n        pic_order_cnt_lsb_ref = pic_order_cnt_lsb;\n    }\n\n    return TopFieldOrderCnt;\n}\n\nstatic int render_picture(void)\n{\n    VABufferID pic_param_buf;\n    VAStatus va_status;\n    int i = 0;\n\n    pic_param.CurrPic.picture_id = ref_surface[current_slot];\n    pic_param.CurrPic.frame_idx = current_frame_num;\n    pic_param.CurrPic.flags = 0;\n    pic_param.CurrPic.TopFieldOrderCnt = calc_poc((current_frame_display - current_IDR_display) % MaxPicOrderCntLsb);\n    pic_param.CurrPic.BottomFieldOrderCnt = pic_param.CurrPic.TopFieldOrderCnt;\n    CurrentCurrPic = pic_param.CurrPic;\n\n    if (getenv(\"TO_DEL\")) { /* set RefPicList into ReferenceFrames */\n        update_RefPicList(); /* calc RefPicList */\n        memset(pic_param.ReferenceFrames, 0xff, 16 * sizeof(VAPictureH264)); /* invalid all */\n        if (current_frame_type == FRAME_P) {\n            pic_param.ReferenceFrames[0] = RefPicList0_P[0];\n        } else if (current_frame_type == FRAME_B) {\n            pic_param.ReferenceFrames[0] = RefPicList0_B[0];\n            pic_param.ReferenceFrames[1] = RefPicList1_B[0];\n        }\n    } else {\n        memcpy(pic_param.ReferenceFrames, ReferenceFrames, numShortTerm * sizeof(VAPictureH264));\n        for (i = numShortTerm; i < SURFACE_NUM; i++) {\n            pic_param.ReferenceFrames[i].picture_id = VA_INVALID_SURFACE;\n            pic_param.ReferenceFrames[i].flags = VA_PICTURE_H264_INVALID;\n        }\n    }\n\n    pic_param.pic_fields.bits.idr_pic_flag = (current_frame_type == FRAME_IDR);\n    pic_param.pic_fields.bits.reference_pic_flag = (current_frame_type != FRAME_B);\n    pic_param.pic_fields.bits.entropy_coding_mode_flag = h264_entropy_mode;\n    pic_param.pic_fields.bits.deblocking_filter_control_present_flag = 1;\n    pic_param.frame_num = current_frame_num;\n    pic_param.coded_buf = coded_buf[current_slot];\n    pic_param.last_picture = (current_frame_encoding == frame_count);\n    pic_param.pic_init_qp = initial_qp;\n\n    va_status = vaCreateBuffer(va_dpy, context_id, VAEncPictureParameterBufferType,\n                               sizeof(pic_param), 1, &pic_param, &pic_param_buf);\n    CHECK_VASTATUS(va_status, \"vaCreateBuffer\");;\n\n    va_status = vaRenderPicture(va_dpy, context_id, &pic_param_buf, 1);\n    CHECK_VASTATUS(va_status, \"vaRenderPicture\");\n\n    return 0;\n}\n\nstatic int render_packedsequence(void)\n{\n    VAEncPackedHeaderParameterBuffer packedheader_param_buffer;\n    VABufferID packedseq_para_bufid, packedseq_data_bufid, render_id[2];\n    unsigned int length_in_bits;\n    unsigned char *packedseq_buffer = NULL;\n    VAStatus va_status;\n\n    length_in_bits = build_packed_seq_buffer(&packedseq_buffer);\n\n    packedheader_param_buffer.type = VAEncPackedHeaderSequence;\n\n    packedheader_param_buffer.bit_length = length_in_bits; /*length_in_bits*/\n    packedheader_param_buffer.has_emulation_bytes = 0;\n    va_status = vaCreateBuffer(va_dpy,\n                               context_id,\n                               VAEncPackedHeaderParameterBufferType,\n                               sizeof(packedheader_param_buffer), 1, &packedheader_param_buffer,\n                               &packedseq_para_bufid);\n    CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n    va_status = vaCreateBuffer(va_dpy,\n                               context_id,\n                               VAEncPackedHeaderDataBufferType,\n                               (length_in_bits + 7) / 8, 1, packedseq_buffer,\n                               &packedseq_data_bufid);\n    CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n    render_id[0] = packedseq_para_bufid;\n    render_id[1] = packedseq_data_bufid;\n    va_status = vaRenderPicture(va_dpy, context_id, render_id, 2);\n    CHECK_VASTATUS(va_status, \"vaRenderPicture\");\n\n    free(packedseq_buffer);\n\n    return 0;\n}\n\n\nstatic int render_packedpicture(void)\n{\n    VAEncPackedHeaderParameterBuffer packedheader_param_buffer;\n    VABufferID packedpic_para_bufid, packedpic_data_bufid, render_id[2];\n    unsigned int length_in_bits;\n    unsigned char *packedpic_buffer = NULL;\n    VAStatus va_status;\n\n    length_in_bits = build_packed_pic_buffer(&packedpic_buffer);\n    packedheader_param_buffer.type = VAEncPackedHeaderPicture;\n    packedheader_param_buffer.bit_length = length_in_bits;\n    packedheader_param_buffer.has_emulation_bytes = 0;\n\n    va_status = vaCreateBuffer(va_dpy,\n                               context_id,\n                               VAEncPackedHeaderParameterBufferType,\n                               sizeof(packedheader_param_buffer), 1, &packedheader_param_buffer,\n                               &packedpic_para_bufid);\n    CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n    va_status = vaCreateBuffer(va_dpy,\n                               context_id,\n                               VAEncPackedHeaderDataBufferType,\n                               (length_in_bits + 7) / 8, 1, packedpic_buffer,\n                               &packedpic_data_bufid);\n    CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n    render_id[0] = packedpic_para_bufid;\n    render_id[1] = packedpic_data_bufid;\n    va_status = vaRenderPicture(va_dpy, context_id, render_id, 2);\n    CHECK_VASTATUS(va_status, \"vaRenderPicture\");\n\n    free(packedpic_buffer);\n\n    return 0;\n}\n\n#if 0\n\nstatic void render_packedsei(void)\n{\n    VAEncPackedHeaderParameterBuffer packed_header_param_buffer;\n    VABufferID packed_sei_header_param_buf_id, packed_sei_buf_id, render_id[2];\n    unsigned int length_in_bits /*offset_in_bytes*/;\n    unsigned char *packed_sei_buffer = NULL;\n    VAStatus va_status;\n    int init_cpb_size, target_bit_rate, i_initial_cpb_removal_delay_length, i_initial_cpb_removal_delay;\n    int i_cpb_removal_delay, i_dpb_output_delay_length, i_cpb_removal_delay_length;\n\n    /* it comes for the bps defined in SPS */\n    target_bit_rate = frame_bitrate;\n    init_cpb_size = (target_bit_rate * 8) >> 10;\n    i_initial_cpb_removal_delay = init_cpb_size * 0.5 * 1024 / target_bit_rate * 90000;\n\n    i_cpb_removal_delay = 2;\n    i_initial_cpb_removal_delay_length = 24;\n    i_cpb_removal_delay_length = 24;\n    i_dpb_output_delay_length = 24;\n\n\n    length_in_bits = build_packed_sei_buffer_timing(\n                         i_initial_cpb_removal_delay_length,\n                         i_initial_cpb_removal_delay,\n                         0,\n                         i_cpb_removal_delay_length,\n                         i_cpb_removal_delay * current_frame_encoding,\n                         i_dpb_output_delay_length,\n                         0,\n                         &packed_sei_buffer);\n\n    //offset_in_bytes = 0;\n    packed_header_param_buffer.type = VAEncPackedHeaderRawData;\n    packed_header_param_buffer.bit_length = length_in_bits;\n    packed_header_param_buffer.has_emulation_bytes = 0;\n\n    va_status = vaCreateBuffer(va_dpy,\n                               context_id,\n                               VAEncPackedHeaderParameterBufferType,\n                               sizeof(packed_header_param_buffer), 1, &packed_header_param_buffer,\n                               &packed_sei_header_param_buf_id);\n    CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n    va_status = vaCreateBuffer(va_dpy,\n                               context_id,\n                               VAEncPackedHeaderDataBufferType,\n                               (length_in_bits + 7) / 8, 1, packed_sei_buffer,\n                               &packed_sei_buf_id);\n    CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n\n    render_id[0] = packed_sei_header_param_buf_id;\n    render_id[1] = packed_sei_buf_id;\n    va_status = vaRenderPicture(va_dpy, context_id, render_id, 2);\n    CHECK_VASTATUS(va_status, \"vaRenderPicture\");\n\n\n    free(packed_sei_buffer);\n\n    return;\n}\n\nstatic int render_hrd(void)\n{\n    VABufferID misc_parameter_hrd_buf_id;\n    VAStatus va_status;\n    VAEncMiscParameterBuffer *misc_param;\n    VAEncMiscParameterHRD *misc_hrd_param;\n\n    va_status = vaCreateBuffer(va_dpy, context_id,\n                               VAEncMiscParameterBufferType,\n                               sizeof(VAEncMiscParameterBuffer) + sizeof(VAEncMiscParameterHRD),\n                               1,\n                               NULL,\n                               &misc_parameter_hrd_buf_id);\n    CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n    vaMapBuffer(va_dpy,\n                misc_parameter_hrd_buf_id,\n                (void **)&misc_param);\n    misc_param->type = VAEncMiscParameterTypeHRD;\n    misc_hrd_param = (VAEncMiscParameterHRD *)misc_param->data;\n\n    if (frame_bitrate > 0) {\n        misc_hrd_param->initial_buffer_fullness = frame_bitrate * 1024 * 4;\n        misc_hrd_param->buffer_size = frame_bitrate * 1024 * 8;\n    } else {\n        misc_hrd_param->initial_buffer_fullness = 0;\n        misc_hrd_param->buffer_size = 0;\n    }\n    vaUnmapBuffer(va_dpy, misc_parameter_hrd_buf_id);\n\n    va_status = vaRenderPicture(va_dpy, context_id, &misc_parameter_hrd_buf_id, 1);\n    CHECK_VASTATUS(va_status, \"vaRenderPicture\");;\n\n    return 0;\n}\n\n#endif\n\nstatic void render_packedslice()\n{\n    VAEncPackedHeaderParameterBuffer packedheader_param_buffer;\n    VABufferID packedslice_para_bufid, packedslice_data_bufid, render_id[2];\n    unsigned int length_in_bits;\n    unsigned char *packedslice_buffer = NULL;\n    VAStatus va_status;\n\n    length_in_bits = build_packed_slice_buffer(&packedslice_buffer);\n    packedheader_param_buffer.type = VAEncPackedHeaderSlice;\n    packedheader_param_buffer.bit_length = length_in_bits;\n    packedheader_param_buffer.has_emulation_bytes = 0;\n\n    va_status = vaCreateBuffer(va_dpy,\n                               context_id,\n                               VAEncPackedHeaderParameterBufferType,\n                               sizeof(packedheader_param_buffer), 1, &packedheader_param_buffer,\n                               &packedslice_para_bufid);\n    CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n    va_status = vaCreateBuffer(va_dpy,\n                               context_id,\n                               VAEncPackedHeaderDataBufferType,\n                               (length_in_bits + 7) / 8, 1, packedslice_buffer,\n                               &packedslice_data_bufid);\n    CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n    render_id[0] = packedslice_para_bufid;\n    render_id[1] = packedslice_data_bufid;\n    va_status = vaRenderPicture(va_dpy, context_id, render_id, 2);\n    CHECK_VASTATUS(va_status, \"vaRenderPicture\");\n\n    free(packedslice_buffer);\n}\n\nstatic int render_slice(void)\n{\n    VABufferID slice_param_buf;\n    VAStatus va_status;\n    int i;\n\n    update_RefPicList();\n\n    /* one frame, one slice */\n    slice_param.macroblock_address = 0;\n    slice_param.num_macroblocks = frame_width_mbaligned * frame_height_mbaligned / (16 * 16); /* Measured by MB */\n    slice_param.slice_type = (current_frame_type == FRAME_IDR) ? 2 : current_frame_type;\n    if (current_frame_type == FRAME_IDR) {\n        if (current_frame_encoding != 0)\n            ++slice_param.idr_pic_id;\n    } else if (current_frame_type == FRAME_P) {\n        int refpiclist0_max = h264_maxref & 0xffff;\n        memcpy(slice_param.RefPicList0, RefPicList0_P, ((refpiclist0_max > 32) ? 32 : refpiclist0_max)*sizeof(VAPictureH264));\n\n        for (i = refpiclist0_max; i < 32; i++) {\n            slice_param.RefPicList0[i].picture_id = VA_INVALID_SURFACE;\n            slice_param.RefPicList0[i].flags = VA_PICTURE_H264_INVALID;\n        }\n    } else if (current_frame_type == FRAME_B) {\n        int refpiclist0_max = h264_maxref & 0xffff;\n        int refpiclist1_max = (h264_maxref >> 16) & 0xffff;\n\n        memcpy(slice_param.RefPicList0, RefPicList0_B, ((refpiclist0_max > 32) ? 32 : refpiclist0_max)*sizeof(VAPictureH264));\n        for (i = refpiclist0_max; i < 32; i++) {\n            slice_param.RefPicList0[i].picture_id = VA_INVALID_SURFACE;\n            slice_param.RefPicList0[i].flags = VA_PICTURE_H264_INVALID;\n        }\n\n        memcpy(slice_param.RefPicList1, RefPicList1_B, ((refpiclist1_max > 32) ? 32 : refpiclist1_max)*sizeof(VAPictureH264));\n        for (i = refpiclist1_max; i < 32; i++) {\n            slice_param.RefPicList1[i].picture_id = VA_INVALID_SURFACE;\n            slice_param.RefPicList1[i].flags = VA_PICTURE_H264_INVALID;\n        }\n    }\n\n    slice_param.slice_alpha_c0_offset_div2 = 0;\n    slice_param.slice_beta_offset_div2 = 0;\n    slice_param.direct_spatial_mv_pred_flag = 1;\n    slice_param.pic_order_cnt_lsb = (current_frame_display - current_IDR_display) % MaxPicOrderCntLsb;\n\n\n    if (h264_packedheader &&\n        config_attrib[enc_packed_header_idx].value & VA_ENC_PACKED_HEADER_SLICE)\n        render_packedslice();\n\n    va_status = vaCreateBuffer(va_dpy, context_id, VAEncSliceParameterBufferType,\n                               sizeof(slice_param), 1, &slice_param, &slice_param_buf);\n    CHECK_VASTATUS(va_status, \"vaCreateBuffer\");;\n\n    va_status = vaRenderPicture(va_dpy, context_id, &slice_param_buf, 1);\n    CHECK_VASTATUS(va_status, \"vaRenderPicture\");\n\n    return 0;\n}\n\n\nstatic int upload_source_YUV_once_for_all()\n{\n    int box_width = 8;\n    int row_shift = 0;\n    int i;\n\n    for (i = 0; i < SURFACE_NUM; i++) {\n        printf(\"\\rLoading data into surface %d.....\", i);\n        upload_surface(va_dpy, src_surface[i], box_width, row_shift, 0);\n\n        row_shift++;\n        if (row_shift == (2 * box_width)) row_shift = 0;\n    }\n    printf(\"Complete surface loading\\n\");\n\n    return 0;\n}\n\nstatic int load_surface(VASurfaceID surface_id, unsigned long long display_order)\n{\n    unsigned char *srcyuv_ptr = NULL, *src_Y = NULL, *src_U = NULL, *src_V = NULL;\n    unsigned long long frame_start, mmap_start;\n    char *mmap_ptr = NULL;\n    int frame_size, mmap_size;\n\n    if (srcyuv_fp == NULL)\n        return 0;\n\n    /* allow encoding more than srcyuv_frames */\n    display_order = display_order % srcyuv_frames;\n    frame_size = frame_width * frame_height * 3 / 2; /* for YUV420 */\n    frame_start = display_order * frame_size;\n\n    mmap_start = frame_start & (~0xfff);\n    mmap_size = (frame_size + (frame_start & 0xfff) + 0xfff) & (~0xfff);\n    mmap_ptr = mmap(0, mmap_size, PROT_READ, MAP_SHARED,\n                    fileno(srcyuv_fp), mmap_start);\n    if (mmap_ptr == MAP_FAILED) {\n        printf(\"Failed to mmap YUV file (%s)\\n\", strerror(errno));\n        return 1;\n    }\n    srcyuv_ptr = (unsigned char *)mmap_ptr + (frame_start & 0xfff);\n    if (srcyuv_fourcc == VA_FOURCC_NV12) {\n        src_Y = srcyuv_ptr;\n        src_U = src_Y + frame_width * frame_height;\n        src_V = NULL;\n    } else if (srcyuv_fourcc == VA_FOURCC_IYUV ||\n               srcyuv_fourcc == VA_FOURCC_YV12) {\n        src_Y = srcyuv_ptr;\n        if (srcyuv_fourcc == VA_FOURCC_IYUV) {\n            src_U = src_Y + frame_width * frame_height;\n            src_V = src_U + (frame_width / 2) * (frame_height / 2);\n        } else { /* YV12 */\n            src_V = src_Y + frame_width * frame_height;\n            src_U = src_V + (frame_width / 2) * (frame_height / 2);\n        }\n    } else {\n        printf(\"Unsupported source YUV format\\n\");\n        if (mmap_ptr)\n            munmap(mmap_ptr, mmap_size);\n        exit(1);\n    }\n\n    upload_surface_yuv(va_dpy, surface_id,\n                       srcyuv_fourcc, frame_width, frame_height,\n                       src_Y, src_U, src_V);\n    if (mmap_ptr)\n        munmap(mmap_ptr, mmap_size);\n\n    return 0;\n}\n\n\nstatic int save_recyuv(VASurfaceID surface_id,\n                       unsigned long long display_order,\n                       unsigned long long encode_order)\n{\n    unsigned char *dst_Y = NULL, *dst_U = NULL, *dst_V = NULL;\n\n    if (recyuv_fp == NULL)\n        return 0;\n\n    if (srcyuv_fourcc == VA_FOURCC_NV12) {\n        int uv_size = 2 * (frame_width / 2) * (frame_height / 2);\n        dst_Y = malloc(2 * uv_size);\n        if (dst_Y == NULL) {\n            printf(\"Failed to allocate memory for dst_Y\\n\");\n            exit(1);\n        }\n\n        dst_U = malloc(uv_size);\n        if (dst_U == NULL) {\n            printf(\"Failed to allocate memory for dst_U\\n\");\n            free(dst_Y);\n            exit(1);\n        }\n\n        memset(dst_Y, 0, 2 * uv_size);\n        memset(dst_U, 0, uv_size);\n    } else if (srcyuv_fourcc == VA_FOURCC_IYUV ||\n               srcyuv_fourcc == VA_FOURCC_YV12) {\n        int uv_size = (frame_width / 2) * (frame_height / 2);\n        dst_Y = malloc(4 * uv_size);\n        if (dst_Y == NULL) {\n            printf(\"Failed to allocate memory for dst_Y\\n\");\n            exit(1);\n        }\n\n        dst_U = malloc(uv_size);\n        if (dst_U == NULL) {\n            printf(\"Failed to allocate memory for dst_U\\n\");\n            free(dst_Y);\n            exit(1);\n        }\n\n        dst_V = malloc(uv_size);\n        if (dst_V == NULL) {\n            printf(\"Failed to allocate memory for dst_V\\n\");\n            free(dst_Y);\n            free(dst_U);\n            exit(1);\n        }\n\n        memset(dst_Y, 0, 4 * uv_size);\n        memset(dst_U, 0, uv_size);\n        memset(dst_V, 0, uv_size);\n    } else {\n        printf(\"Unsupported source YUV format\\n\");\n        exit(1);\n    }\n\n    download_surface_yuv(va_dpy, surface_id,\n                         srcyuv_fourcc, frame_width, frame_height,\n                         dst_Y, dst_U, dst_V);\n    fseek(recyuv_fp, display_order * frame_width * frame_height * 1.5, SEEK_SET);\n\n    if (srcyuv_fourcc == VA_FOURCC_NV12) {\n        int uv_size = 2 * (frame_width / 2) * (frame_height / 2);\n        fwrite(dst_Y, uv_size * 2, 1, recyuv_fp);\n        fwrite(dst_U, uv_size, 1, recyuv_fp);\n    } else if (srcyuv_fourcc == VA_FOURCC_IYUV ||\n               srcyuv_fourcc == VA_FOURCC_YV12) {\n        int uv_size = (frame_width / 2) * (frame_height / 2);\n        fwrite(dst_Y, uv_size * 4, 1, recyuv_fp);\n\n        if (srcyuv_fourcc == VA_FOURCC_IYUV) {\n            fwrite(dst_U, uv_size, 1, recyuv_fp);\n            fwrite(dst_V, uv_size, 1, recyuv_fp);\n        } else {\n            fwrite(dst_V, uv_size, 1, recyuv_fp);\n            fwrite(dst_U, uv_size, 1, recyuv_fp);\n        }\n    }\n\n    if (dst_Y)\n        free(dst_Y);\n    if (dst_U)\n        free(dst_U);\n    if (dst_V)\n        free(dst_V);\n\n    fflush(recyuv_fp);\n\n    return 0;\n}\n\n\nstatic int save_codeddata(unsigned long long display_order, unsigned long long encode_order)\n{\n    VACodedBufferSegment *buf_list = NULL;\n    VAStatus va_status;\n    unsigned int coded_size = 0;\n\n    va_status = vaMapBuffer(va_dpy, coded_buf[display_order % SURFACE_NUM], (void **)(&buf_list));\n    CHECK_VASTATUS(va_status, \"vaMapBuffer\");\n    while (buf_list != NULL) {\n        coded_size += fwrite(buf_list->buf, 1, buf_list->size, coded_fp);\n        buf_list = (VACodedBufferSegment *) buf_list->next;\n\n        frame_size += coded_size;\n    }\n    vaUnmapBuffer(va_dpy, coded_buf[display_order % SURFACE_NUM]);\n\n    printf(\"\\r      \"); /* return back to startpoint */\n    switch (encode_order % 4) {\n    case 0:\n        printf(\"|\");\n        break;\n    case 1:\n        printf(\"/\");\n        break;\n    case 2:\n        printf(\"-\");\n        break;\n    case 3:\n        printf(\"\\\\\");\n        break;\n    }\n    printf(\"%08lld\", encode_order);\n    printf(\"(%06d bytes coded)\", coded_size);\n\n    fflush(coded_fp);\n\n    return 0;\n}\n\n\nstatic struct storage_task_t * storage_task_dequeue(void)\n{\n    struct storage_task_t *header;\n\n    pthread_mutex_lock(&encode_mutex);\n\n    header = storage_task_header;\n    if (storage_task_header != NULL) {\n        if (storage_task_tail == storage_task_header)\n            storage_task_tail = NULL;\n        storage_task_header = header->next;\n    }\n\n    pthread_mutex_unlock(&encode_mutex);\n\n    return header;\n}\n\nstatic int storage_task_queue(unsigned long long display_order, unsigned long long encode_order)\n{\n    struct storage_task_t *tmp;\n\n    tmp = calloc(1, sizeof(struct storage_task_t));\n    assert(tmp);\n    tmp->display_order = display_order;\n    tmp->encode_order = encode_order;\n\n    pthread_mutex_lock(&encode_mutex);\n\n    if (storage_task_header == NULL) {\n        storage_task_header = tmp;\n        storage_task_tail = tmp;\n    } else {\n        storage_task_tail->next = tmp;\n        storage_task_tail = tmp;\n    }\n\n    srcsurface_status[display_order % SURFACE_NUM] = SRC_SURFACE_IN_STORAGE;\n    pthread_cond_signal(&encode_cond);\n\n    pthread_mutex_unlock(&encode_mutex);\n\n    return 0;\n}\n\nstatic void storage_task(unsigned long long display_order, unsigned long long encode_order)\n{\n    unsigned int tmp;\n    VAStatus va_status;\n\n    tmp = GetTickCount();\n    va_status = vaSyncSurface(va_dpy, src_surface[display_order % SURFACE_NUM]);\n    CHECK_VASTATUS(va_status, \"vaSyncSurface\");\n    SyncPictureTicks += GetTickCount() - tmp;\n    tmp = GetTickCount();\n    save_codeddata(display_order, encode_order);\n    SavePictureTicks += GetTickCount() - tmp;\n\n    save_recyuv(ref_surface[display_order % SURFACE_NUM], display_order, encode_order);\n\n    /* reload a new frame data */\n    tmp = GetTickCount();\n    if (srcyuv_fp != NULL)\n        load_surface(src_surface[display_order % SURFACE_NUM], display_order + SURFACE_NUM);\n    UploadPictureTicks += GetTickCount() - tmp;\n\n    pthread_mutex_lock(&encode_mutex);\n    srcsurface_status[display_order % SURFACE_NUM] = SRC_SURFACE_IN_ENCODING;\n    pthread_mutex_unlock(&encode_mutex);\n}\n\n\nstatic void * storage_task_thread(void *t)\n{\n    while (1) {\n        struct storage_task_t *current;\n\n        current = storage_task_dequeue();\n        if (current == NULL) {\n            pthread_mutex_lock(&encode_mutex);\n            pthread_cond_wait(&encode_cond, &encode_mutex);\n            pthread_mutex_unlock(&encode_mutex);\n            continue;\n        }\n\n        storage_task(current->display_order, current->encode_order);\n\n        free(current);\n\n        /* all frames are saved, exit the thread */\n        if (++frame_coded >= frame_count)\n            break;\n    }\n\n    return 0;\n}\n\n\nstatic int encode_frames(void)\n{\n    unsigned int i, tmp;\n    VAStatus va_status;\n    //VASurfaceStatus surface_status;\n\n    /* upload RAW YUV data into all surfaces */\n    tmp = GetTickCount();\n    if (srcyuv_fp != NULL) {\n        for (i = 0; i < SURFACE_NUM; i++)\n            load_surface(src_surface[i], i);\n    } else\n        upload_source_YUV_once_for_all();\n    UploadPictureTicks += GetTickCount() - tmp;\n\n    /* ready for encoding */\n    memset(srcsurface_status, SRC_SURFACE_IN_ENCODING, sizeof(srcsurface_status));\n\n    memset(&seq_param, 0, sizeof(seq_param));\n    memset(&pic_param, 0, sizeof(pic_param));\n    memset(&slice_param, 0, sizeof(slice_param));\n\n    if (encode_syncmode == 0)\n        pthread_create(&encode_thread, NULL, storage_task_thread, NULL);\n\n    for (current_frame_encoding = 0; current_frame_encoding < frame_count; current_frame_encoding++) {\n        encoding2display_order(current_frame_encoding, intra_period, intra_idr_period, ip_period,\n                               &current_frame_display, &current_frame_type);\n        if (current_frame_type == FRAME_IDR) {\n            numShortTerm = 0;\n            current_frame_num = 0;\n            current_IDR_display = current_frame_display;\n        }\n\n        /* check if the source frame is ready */\n        while (srcsurface_status[current_slot] != SRC_SURFACE_IN_ENCODING) {\n            usleep(1);\n        }\n\n        tmp = GetTickCount();\n        va_status = vaBeginPicture(va_dpy, context_id, src_surface[current_slot]);\n        CHECK_VASTATUS(va_status, \"vaBeginPicture\");\n        BeginPictureTicks += GetTickCount() - tmp;\n\n        tmp = GetTickCount();\n        if (current_frame_type == FRAME_IDR) {\n            render_sequence();\n            render_picture();\n            if (h264_packedheader) {\n                render_packedsequence();\n                render_packedpicture();\n            }\n            //if (rc_mode == VA_RC_CBR)\n            //    render_packedsei();\n            //render_hrd();\n        } else {\n            //render_sequence();\n            render_picture();\n            //if (rc_mode == VA_RC_CBR)\n            //    render_packedsei();\n            //render_hrd();\n        }\n        render_slice();\n        RenderPictureTicks += GetTickCount() - tmp;\n\n        tmp = GetTickCount();\n        va_status = vaEndPicture(va_dpy, context_id);\n        CHECK_VASTATUS(va_status, \"vaEndPicture\");;\n        EndPictureTicks += GetTickCount() - tmp;\n\n        if (encode_syncmode)\n            storage_task(current_frame_display, current_frame_encoding);\n        else /* queue the storage task queue */\n            storage_task_queue(current_frame_display, current_frame_encoding);\n\n        update_ReferenceFrames();\n    }\n\n    if (encode_syncmode == 0) {\n        int ret;\n        pthread_join(encode_thread, (void **)&ret);\n    }\n\n    return 0;\n}\n\n\nstatic int release_encode()\n{\n    int i;\n\n    vaDestroySurfaces(va_dpy, &src_surface[0], SURFACE_NUM);\n    vaDestroySurfaces(va_dpy, &ref_surface[0], SURFACE_NUM);\n\n    for (i = 0; i < SURFACE_NUM; i++)\n        vaDestroyBuffer(va_dpy, coded_buf[i]);\n\n    vaDestroyContext(va_dpy, context_id);\n    vaDestroyConfig(va_dpy, config_id);\n\n    return 0;\n}\n\nstatic int deinit_va()\n{\n    vaTerminate(va_dpy);\n\n    va_close_display(va_dpy);\n\n    return 0;\n}\n\n\nstatic int print_input()\n{\n    printf(\"\\n\\nINPUT:Try to encode H264...\\n\");\n    if (rc_mode != -1)\n        printf(\"INPUT: RateControl  : %s\\n\", rc_to_string(rc_mode));\n    printf(\"INPUT: Resolution   : %dx%d, %d frames\\n\",\n           frame_width, frame_height, frame_count);\n    printf(\"INPUT: FrameRate    : %d\\n\", frame_rate);\n    printf(\"INPUT: Bitrate      : %d\\n\", frame_bitrate);\n    printf(\"INPUT: Slieces      : %d\\n\", frame_slices);\n    printf(\"INPUT: IntraPeriod  : %d\\n\", intra_period);\n    printf(\"INPUT: IDRPeriod    : %d\\n\", intra_idr_period);\n    printf(\"INPUT: IpPeriod     : %d\\n\", ip_period);\n    printf(\"INPUT: Initial QP   : %d\\n\", initial_qp);\n    printf(\"INPUT: Min QP       : %d\\n\", minimal_qp);\n    printf(\"INPUT: Source YUV   : %s\", srcyuv_fp ? \"FILE\" : \"AUTO generated\");\n    if (srcyuv_fp)\n        printf(\":%s (fourcc %s)\\n\", srcyuv_fn, fourcc_to_string(srcyuv_fourcc));\n    else\n        printf(\"\\n\");\n    printf(\"INPUT: Coded Clip   : %s\\n\", coded_fn);\n    if (recyuv_fp == NULL)\n        printf(\"INPUT: Rec   Clip   : %s\\n\", \"Not save reconstructed frame\");\n    else\n        printf(\"INPUT: Rec   Clip   : Save reconstructed frame into %s (fourcc %s)\\n\", recyuv_fn,\n               fourcc_to_string(srcyuv_fourcc));\n\n    printf(\"\\n\\n\"); /* return back to startpoint */\n\n    return 0;\n}\n\nstatic int calc_PSNR(double *psnr)\n{\n    char *srcyuv_ptr = NULL, *recyuv_ptr = NULL, tmp;\n    unsigned long long min_size;\n    unsigned long long i, sse = 0;\n    double ssemean;\n    int fourM = 0x400000; /* 4M */\n\n    min_size = MIN(srcyuv_frames, frame_count) * frame_width * frame_height * 1.5;\n    for (i = 0; i < min_size; i++) {\n        unsigned long long j = i % fourM;\n\n        if ((i % fourM) == 0) {\n            if (srcyuv_ptr)\n                munmap(srcyuv_ptr, fourM);\n            if (recyuv_ptr)\n                munmap(recyuv_ptr, fourM);\n\n            srcyuv_ptr = mmap(0, fourM, PROT_READ, MAP_SHARED, fileno(srcyuv_fp), i);\n            recyuv_ptr = mmap(0, fourM, PROT_READ, MAP_SHARED, fileno(recyuv_fp), i);\n            if ((srcyuv_ptr == MAP_FAILED) || (recyuv_ptr == MAP_FAILED)) {\n                printf(\"Failed to mmap YUV files\\n\");\n\n                if (srcyuv_ptr != MAP_FAILED)\n                    munmap(srcyuv_ptr, fourM);\n                if (recyuv_ptr != MAP_FAILED)\n                    munmap(recyuv_ptr, fourM);\n\n                return 1;\n            }\n        }\n        tmp = srcyuv_ptr[j] - recyuv_ptr[j];\n        sse += tmp * tmp;\n    }\n    ssemean = (double)sse / (double)min_size;\n    *psnr = 20.0 * log10(255) - 10.0 * log10(ssemean);\n\n    if (srcyuv_ptr)\n        munmap(srcyuv_ptr, fourM);\n    if (recyuv_ptr)\n        munmap(recyuv_ptr, fourM);\n\n    return 0;\n}\n\nstatic int print_performance(unsigned int PictureCount)\n{\n    unsigned int psnr_ret = 1, others = 0;\n    double psnr = 0, total_size = frame_width * frame_height * 1.5 * frame_count;\n\n    if (calc_psnr && srcyuv_fp && recyuv_fp)\n        psnr_ret = calc_PSNR(&psnr);\n\n    others = TotalTicks - UploadPictureTicks - BeginPictureTicks\n             - RenderPictureTicks - EndPictureTicks - SyncPictureTicks - SavePictureTicks;\n\n    printf(\"\\n\\n\");\n\n    printf(\"PERFORMANCE:   Frame Rate           : %.2f fps (%d frames, %d ms (%.2f ms per frame))\\n\",\n           (double) 1000 * PictureCount / TotalTicks, PictureCount,\n           TotalTicks, ((double)  TotalTicks) / (double) PictureCount);\n    printf(\"PERFORMANCE:   Compression ratio    : %d:1\\n\", (unsigned int)(total_size / frame_size));\n    if (psnr_ret == 0)\n        printf(\"PERFORMANCE:   PSNR                 : %.2f (%lld frames calculated)\\n\",\n               psnr, MIN(frame_count, srcyuv_frames));\n\n    printf(\"PERFORMANCE:     UploadPicture      : %d ms (%.2f, %.2f%% percent)\\n\",\n           (int) UploadPictureTicks, ((double)  UploadPictureTicks) / (double) PictureCount,\n           UploadPictureTicks / (double) TotalTicks / 0.01);\n    printf(\"PERFORMANCE:     vaBeginPicture     : %d ms (%.2f, %.2f%% percent)\\n\",\n           (int) BeginPictureTicks, ((double)  BeginPictureTicks) / (double) PictureCount,\n           BeginPictureTicks / (double) TotalTicks / 0.01);\n    printf(\"PERFORMANCE:     vaRenderHeader     : %d ms (%.2f, %.2f%% percent)\\n\",\n           (int) RenderPictureTicks, ((double)  RenderPictureTicks) / (double) PictureCount,\n           RenderPictureTicks / (double) TotalTicks / 0.01);\n    printf(\"PERFORMANCE:     vaEndPicture       : %d ms (%.2f, %.2f%% percent)\\n\",\n           (int) EndPictureTicks, ((double)  EndPictureTicks) / (double) PictureCount,\n           EndPictureTicks / (double) TotalTicks / 0.01);\n    printf(\"PERFORMANCE:     vaSyncSurface      : %d ms (%.2f, %.2f%% percent)\\n\",\n           (int) SyncPictureTicks, ((double) SyncPictureTicks) / (double) PictureCount,\n           SyncPictureTicks / (double) TotalTicks / 0.01);\n    printf(\"PERFORMANCE:     SavePicture        : %d ms (%.2f, %.2f%% percent)\\n\",\n           (int) SavePictureTicks, ((double)  SavePictureTicks) / (double) PictureCount,\n           SavePictureTicks / (double) TotalTicks / 0.01);\n    printf(\"PERFORMANCE:     Others             : %d ms (%.2f, %.2f%% percent)\\n\",\n           (int) others, ((double) others) / (double) PictureCount,\n           others / (double) TotalTicks / 0.01);\n\n    if (encode_syncmode == 0)\n        printf(\"(Multithread enabled, the timing is only for reference)\\n\");\n\n    return 0;\n}\n\n\nint main(int argc, char **argv)\n{\n    unsigned int start;\n\n    process_cmdline(argc, argv);\n\n    print_input();\n\n    start = GetTickCount();\n\n    init_va();\n    setup_encode();\n\n    encode_frames();\n\n    release_encode();\n    deinit_va();\n\n    TotalTicks += GetTickCount() - start;\n    print_performance(frame_count);\n\n    free(srcyuv_fn);\n    free(recyuv_fn);\n    free(coded_fn);\n\n    if (srcyuv_fp)\n        fclose(srcyuv_fp);\n\n    if (recyuv_fp)\n        fclose(recyuv_fp);\n\n    if (coded_fp)\n        fclose(coded_fp);\n\n    return 0;\n}\n"
  },
  {
    "path": "encode/hevcencode.c",
    "content": "/*\n * Copyright (c) 2018 Intel Corporation. All Rights Reserved.\n *\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the\n * \"Software\"), to deal in the Software without restriction, including\n * without limitation the rights to use, copy, modify, merge, publish,\n * distribute, sub license, and/or sell copies of the Software, and to\n * permit persons to whom the Software is furnished to do so, subject to\n * the following conditions:\n *\n * The above copyright notice and this permission notice (including the\n * next paragraph) shall be included in all copies or substantial portions\n * of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR\n * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n#define LIBVA_UTILS_UPLOAD_DOWNLOAD_YUV_SURFACE 1\n\n#include <stdio.h>\n#include <string.h>\n#include <stdlib.h>\n#include <getopt.h>\n#include <unistd.h>\n#include <sys/types.h>\n#include <sys/stat.h>\n#include <sys/time.h>\n#include <sys/mman.h>\n#include <fcntl.h>\n#include <assert.h>\n#include <pthread.h>\n#include <errno.h>\n#include <math.h>\n#include <va/va.h>\n#include <va/va_enc_hevc.h>\n#include \"va_display.h\"\n#define ALIGN16(x)  ((x+15)&~15)\n#define CHECK_VASTATUS(va_status,func)                                  \\\n    if (va_status != VA_STATUS_SUCCESS) {                               \\\n        fprintf(stderr,\"%s:%s (%d) failed,exit\\n\", __func__, func, __LINE__); \\\n        exit(1);                                                        \\\n    }\n\n#define CHECK_CONDITION(cond)                                                \\\n    if(!(cond))                                                              \\\n    {                                                                        \\\n        fprintf(stderr, \"Unexpected condition: %s:%d\\n\", __func__, __LINE__);\\\n        exit(1);                                                             \\\n    }\n\n#include \"loadsurface.h\"\n\n#define NAL_REF_IDC_NONE        0\n#define NAL_REF_IDC_LOW         1\n#define NAL_REF_IDC_MEDIUM      2\n#define NAL_REF_IDC_HIGH        3\n\n#define FRAME_I 1\n#define FRAME_P 2\n#define FRAME_B 3\n#define FRAME_IDR 7\n\n// SLICE TYPE HEVC ENUM\nenum {\n    SLICE_B = 0,\n    SLICE_P = 1,\n    SLICE_I = 2,\n};\n#define IS_I_SLICE(type) (SLICE_I == (type))\n#define IS_P_SLICE(type) (SLICE_P == (type))\n#define IS_B_SLICE(type) (SLICE_B == (type))\n\n\n\n#define ENTROPY_MODE_CAVLC      0\n#define ENTROPY_MODE_CABAC      1\n\n#define PROFILE_IDC_MAIN        1\n#define PROFILE_IDC_MAIN10      2\n\n#define BITSTREAM_ALLOCATE_STEPPING     4096\nstatic  int LCU_SIZE = 32;\n\n#define SURFACE_NUM 16 /* 16 surfaces for source YUV */\n#define SURFACE_NUM 16 /* 16 surfaces for reference */\nenum NALUType {\n    NALU_TRAIL_N        = 0x00, // Coded slice segment of a non-TSA, non-STSA trailing picture - slice_segment_layer_rbsp, VLC\n    NALU_TRAIL_R        = 0x01, // Coded slice segment of a non-TSA, non-STSA trailing picture - slice_segment_layer_rbsp, VLC\n    NALU_TSA_N          = 0x02, // Coded slice segment of a TSA picture - slice_segment_layer_rbsp, VLC\n    NALU_TSA_R          = 0x03, // Coded slice segment of a TSA picture - slice_segment_layer_rbsp, VLC\n    NALU_STSA_N         = 0x04, // Coded slice of an STSA picture - slice_layer_rbsp, VLC\n    NALU_STSA_R         = 0x05, // Coded slice of an STSA picture - slice_layer_rbsp, VLC\n    NALU_RADL_N         = 0x06, // Coded slice of an RADL picture - slice_layer_rbsp, VLC\n    NALU_RADL_R         = 0x07, // Coded slice of an RADL picture - slice_layer_rbsp, VLC\n    NALU_RASL_N         = 0x08, // Coded slice of an RASL picture - slice_layer_rbsp, VLC\n    NALU_RASL_R         = 0x09, // Coded slice of an RASL picture - slice_layer_rbsp, VLC\n    /* 0x0a..0x0f - Reserved */\n    NALU_BLA_W_LP       = 0x10, // Coded slice segment of an BLA picture - slice_segment_layer_rbsp, VLC\n    NALU_BLA_W_DLP      = 0x11, // Coded slice segment of an BLA picture - slice_segment_layer_rbsp, VLC\n    NALU_BLA_N_LP       = 0x12, // Coded slice segment of an BLA picture - slice_segment_layer_rbsp, VLC\n    NALU_IDR_W_DLP      = 0x13, // Coded slice segment of an IDR picture - slice_segment_layer_rbsp, VLC\n    NALU_IDR_N_LP       = 0x14, // Coded slice segment of an IDR picture - slice_segment_layer_rbsp, VLC\n    NALU_CRA            = 0x15, // Coded slice segment of an CRA picture - slice_segment_layer_rbsp, VLC\n    /* 0x16..0x1f - Reserved */\n    NALU_VPS            = 0x20, // Video parameter set - video_parameter_set_rbsp, non-VLC\n    NALU_SPS            = 0x21, // Sequence parameter set - seq_parameter_set_rbsp, non-VLC\n    NALU_PPS            = 0x22, // Picture parameter set - pic_parameter_set_rbsp, non-VLC\n    NALU_AUD            = 0x23, // Access unit delimiter - access_unit_delimiter_rbsp, non-VLC\n    NALU_EOS            = 0x24, // End of sequence - end_of_seq_rbsp, non-VLC\n    NALU_EOB            = 0x25, // End of bitsteam - end_of_bitsteam_rbsp, non-VLC\n    NALU_FD             = 0x26, // Filler data - filler_data_rbsp, non-VLC\n    NALU_PREFIX_SEI     = 0x27, // Supplemental enhancement information (SEI) - sei_rbsp, non_VLC\n    NALU_SUFFIX_SEI     = 0x28, // Supplemental enhancement information (SEI) - sei_rbsp, non_VLC\n    /* 0x29..0x2f - Reserved */\n    /* 0x30..0x3f - Unspecified */\n    //this should be the last element of this enum\n    //chagne this value if NAL unit type increased\n    MAX_HEVC_NAL_TYPE   = 0x3f,\n\n};\n\n// Config const values\n#define MAX_TEMPORAL_SUBLAYERS         8\n#define MAX_LAYER_ID                   64\n#define MAX_LONGTERM_REF_PIC           32\n#define NUM_OF_EXTRA_SLICEHEADER_BITS  3\nstruct ProfileTierParamSet {\n    uint8_t      general_profile_space;                                        //u(2)\n    int          general_tier_flag;                                            //u(1)\n    uint8_t      general_profile_idc;                                          //u(5)\n    int          general_profile_compatibility_flag[32];                       //u(1)\n    int          general_progressive_source_flag;                              //u(1)\n    int          general_interlaced_source_flag;                               //u(1)\n    int          general_non_packed_constraint_flag;                           //u(1)\n    int          general_frame_only_constraint_flag;                           //u(1)\n    int          general_reserved_zero_43bits[43];                             //u(1)\n    int          general_reserved_zero_bit;                                    //u(1)\n    uint8_t      general_level_idc;                                            //u(8)\n};\n// Video parameter set structure\nstruct VideoParamSet {\n    uint8_t       vps_video_parameter_set_id;                                   //u(4)\n    int           vps_base_layer_internal_flag;                                 //u(1)\n    int           vps_base_layer_available_flag;                                //u(1)\n    uint8_t       vps_max_layers_minus1;                                        //u(6)\n    uint8_t       vps_max_sub_layers_minus1;                                    //u(3)\n    int           vps_temporal_id_nesting_flag;                                 //u(1)\n    uint16_t      vps_reserved_0xffff_16bits;                                   //u(16)\n\n    struct        ProfileTierParamSet ptps;\n    uint8_t       vps_max_nuh_reserved_zero_layer_id;\n    uint32_t      vps_max_op_sets;\n    uint32_t      vps_num_op_sets_minus1;\n\n    int           vps_sub_layer_ordering_info_present_flag;                     //u(1)\n    uint32_t      vps_max_dec_pic_buffering_minus1[MAX_TEMPORAL_SUBLAYERS];      //ue(v)\n    uint32_t      vps_max_num_reorder_pics[MAX_TEMPORAL_SUBLAYERS];              //ue(v)\n    uint32_t      vps_max_latency_increase_plus1[MAX_TEMPORAL_SUBLAYERS];        //ue(v)\n    uint8_t       vps_max_layer_id;                                             //u(6)\n    uint32_t      vps_num_layer_sets_minus1;                                    //ue(v)\n    int           layer_id_included_flag[MAX_TEMPORAL_SUBLAYERS][MAX_LAYER_ID];   //u(1)\n    int           vps_timing_info_present_flag;                                 //u(1)\n    uint32_t      vps_num_units_in_tick;                                        //u(32)\n    uint32_t      vps_time_scale;                                               //u(32\n    int           vps_poc_proportional_to_timing_flag;                          //u(1)\n    uint32_t      vps_num_ticks_poc_diff_one_minus1;                            //ue(v)\n    uint32_t      vps_num_hrd_parameters;                                       //ue(v)\n    uint32_t      hrd_layer_set_idx[MAX_TEMPORAL_SUBLAYERS];                     //ue(v)\n    int           cprms_present_flag[MAX_TEMPORAL_SUBLAYERS];                    //u(1)\n    int           vps_extension_flag;                                           //u(1)\n    int           vps_extension_data_flag;                                      //u(1)\n};\n\nstruct ShortTermRefPicParamSet {\n    int         inter_ref_pic_set_prediction_flag;                               //u(1)\n    uint32_t    delta_idx_minus1;                                               //ue(v)\n    uint8_t     delta_rps_sign;                                                 //u(1)\n    uint32_t    abs_delta_rps_minus1;                                           //ue(v)\n    uint8_t     used_by_curr_pic_flag[32];                                      //u(1)\n    uint8_t     use_delta_flag[32];                                             //u(1)\n    uint32_t    num_negative_pics;                                              //ue(v)\n    uint32_t    num_positive_pics;                                              //ue(v)\n    uint32_t    delta_poc_s0_minus1[32];                                        //ue(v)\n    uint8_t     used_by_curr_pic_s0_flag[32];                                   //u(1)\n    uint32_t    delta_poc_s1_minus1[32];                                        //ue(v)\n    uint8_t     used_by_curr_pic_s1_flag[32];                                   //u(1)\n};\nstruct SeqParamSet {\n    uint8_t     sps_video_parameter_set_id;                                     //u(4)\n    uint8_t     sps_max_sub_layers_minus1;                                      //u(3)\n    int         sps_temporal_id_nesting_flag;                                   //u(1)\n\n    struct      ProfileTierParamSet ptps;\n    uint32_t    sps_seq_parameter_set_id;                                       //ue(v)\n    uint32_t    chroma_format_idc;                                              //ue(v)\n    int         separate_colour_plane_flag;                                     //u(1)\n    uint32_t    pic_width_in_luma_samples;                                      //ue(v)\n    uint32_t    pic_height_in_luma_samples;                                     //ue(v)\n    int         conformance_window_flag;                                        //u(1)\n    uint32_t    conf_win_left_offset;                                           //ue(v)\n    uint32_t    conf_win_right_offset;                                          //ue(v)\n    uint32_t    conf_win_top_offset;                                            //ue(v)\n    uint32_t    conf_win_bottom_offset;                                         //ue(v)\n    uint32_t    bit_depth_luma_minus8;                                          //ue(v)\n    uint32_t    bit_depth_chroma_minus8;                                        //ue(v)\n    uint32_t    log2_max_pic_order_cnt_lsb_minus4;                              //ue(v)\n    int         sps_sub_layer_ordering_info_present_flag;                       //u(1)\n    uint32_t    sps_max_dec_pic_buffering_minus1[MAX_TEMPORAL_SUBLAYERS];        //ue(v)\n    uint32_t    sps_max_num_reorder_pics[MAX_TEMPORAL_SUBLAYERS];                //ue(v)\n    uint32_t    sps_max_latency_increase_plus1[MAX_TEMPORAL_SUBLAYERS];          //ue(v)\n    uint32_t    log2_min_luma_coding_block_size_minus3;                         //ue(v)\n    uint32_t    log2_diff_max_min_luma_coding_block_size;\n    uint32_t    log2_max_coding_block_size_minus3; //ue(v)\n    uint32_t    log2_min_luma_transform_block_size_minus2;                      //ue(v)\n    uint32_t    log2_diff_max_min_luma_transform_block_size;                    //ue(v)\n    uint32_t    max_transform_hierarchy_depth_inter;                            //ue(v)\n    uint32_t    max_transform_hierarchy_depth_intra;                            //ue(v)\n    uint8_t     scaling_list_enabled_flag;                                      //u(1)\n    uint8_t     sps_scaling_list_data_present_flag;                             //u(1)\n    uint8_t     amp_enabled_flag;                                               //u(1)\n    uint8_t     sample_adaptive_offset_enabled_flag;                            //u(1)\n    uint8_t     pcm_enabled_flag;                                               //u(1)\n    uint8_t     pcm_sample_bit_depth_luma_minus1;                               //u(4)\n    uint8_t     pcm_sample_bit_depth_chroma_minus1;                             //u(4)\n    uint32_t    log2_min_pcm_luma_coding_block_size_minus3;\n    uint32_t    log2_max_pcm_luma_coding_block_size_minus3;                     //ue(v)\n    uint32_t    log2_diff_max_min_pcm_luma_coding_block_size;                   //ue(v)\n    uint8_t     pcm_loop_filter_disabled_flag;                                  //u(1)\n    uint32_t    num_short_term_ref_pic_sets;                                    //ue(v)\n\n    struct      ShortTermRefPicParamSet strp[66];\n    uint8_t     long_term_ref_pics_present_flag;                                //u(1)\n    uint32_t    num_long_term_ref_pics_sps;                                     //ue(v)\n    uint32_t    lt_ref_pic_poc_lsb_sps[MAX_LONGTERM_REF_PIC];                   //u(v)\n    uint8_t     used_by_curr_pic_lt_sps_flag[MAX_LONGTERM_REF_PIC];             //u(1)\n    uint8_t     sps_temporal_mvp_enabled_flag;                                  //u(1)\n    uint8_t     strong_intra_smoothing_enabled_flag;                            //u(1)\n    uint8_t     vui_parameters_present_flag;                                    //u(1)\n    //VuiParameters   vui_parameters;\n    int         sps_extension_present_flag;                                     //u(1)\n    int         sps_range_extension_flag;                                       //u(1)\n    int         sps_multilayer_extension_flag;                                  //u(1)\n    int         sps_3d_extension_flag;                                          //u(1)\n    uint8_t     sps_extension_5bits;                                           //u(5)\n    int         sps_extension_data_flag;                                        //u(1)\n};\nstruct PicParamSet {\n    uint32_t    pps_pic_parameter_set_id;                                       //ue(v)\n    uint32_t    pps_seq_parameter_set_id;                                       //ue(v)\n    int         dependent_slice_segments_enabled_flag;                          //u(1)\n    int         output_flag_present_flag;                                       //u(1)\n    uint8_t     num_extra_slice_header_bits;                                    //u(3)\n    int         sign_data_hiding_enabled_flag;                                  //u(1)\n    int         cabac_init_present_flag;                                        //u(1)\n    uint32_t    num_ref_idx_l0_default_active_minus1;                           //ue(v)\n    uint32_t    num_ref_idx_l1_default_active_minus1;                           //ue(v)\n    int32_t     init_qp_minus26;                                                //se(v)\n    int         constrained_intra_pred_flag;                                    //u(1)\n    int         transform_skip_enabled_flag;                                    //u(1)\n    int         cu_qp_delta_enabled_flag;                                       //u(1)\n    uint32_t    diff_cu_qp_delta_depth;                                         //ue(v)\n    uint32_t    pps_cb_qp_offset;                                               //se(v)\n    uint32_t    pps_cr_qp_offset;                                               //se(v)\n    int         pps_slice_chroma_qp_offsets_present_flag;                       //u(1)\n    int         weighted_pred_flag;                                             //u(1)\n    int         weighted_bipred_flag;                                           //u(1)\n    int         transquant_bypass_enabled_flag;                                 //u(1)\n    int         tiles_enabled_flag;                                             //u(1)\n    int         entropy_coding_sync_enabled_flag;                               //u(1)\n    uint32_t    num_tile_columns_minus1;                                        //ue(v)\n    uint32_t    num_tile_rows_minus1;                                           //ue(v)\n    int         uniform_spacing_flag;                                           //u(1)\n    uint32_t    *column_width_minus1;                                           //ue(v)\n    uint32_t    *row_height_minus1;                                             //ue(v)\n    int         loop_filter_across_tiles_enabled_flag;                          //u(1)\n    int         pps_loop_filter_across_slices_enabled_flag;                     //u(1)\n    int         deblocking_filter_control_present_flag;                         //u(1)\n    int         deblocking_filter_override_enabled_flag;                        //u(1)\n    int         pps_deblocking_filter_disabled_flag;                            //u(1)\n    int32_t     pps_beta_offset_div2;                                           //se(v)\n    int32_t     pps_tc_offset_div2;                                             //se(v)\n    int         pps_scaling_list_data_present_flag;                             //u(1)\n    int         lists_modification_present_flag;                                //u(1)\n    uint32_t    log2_parallel_merge_level_minus2;                               //ue(v)\n    int         slice_segment_header_extension_present_flag;                    //u(1)\n    int         pps_extension_present_flag;                                     //u(1)\n    int         pps_range_extension_flag;                                       //u(1)\n    int         pps_multilayer_extension_flag;                                  //u(1)\n    int         pps_3d_extension_flag;                                          //u(1)\n    uint8_t     pps_extension_5bits;                                            //u(5)\n    uint8_t     pps_extension_data_flag;                                        //u(1)\n    uint32_t    log2_max_transform_skip_block_size_minus2;                      //ue(v)\n    uint8_t     cross_component_prediction_enabled_flag;                        //ue(1)\n    uint8_t     chroma_qp_offset_list_enabled_flag;                             //ue(1)\n    uint32_t    diff_cu_chroma_qp_offset_depth;                                 //ue(v)\n    uint32_t    chroma_qp_offset_list_len_minus1;                               //ue(v)\n    uint32_t    cb_qp_offset_list[6];                                           //se(v)\n    uint32_t    cr_qp_offset_list[6];                                           //se(v)\n    uint32_t    log2_sao_offset_scale_luma;                                     //ue(v)\n    uint32_t    log2_sao_offset_scale_chroma;                                   //ue(v)\n};\nstruct SliceHeader {\n    int         first_slice_segment_in_pic_flag;                                //u(1)\n    int         no_output_of_prior_pics_flag;                                   //u(1)\n    uint32_t    slice_pic_parameter_set_id;                                     //ue(v)\n    int         dependent_slice_segment_flag;                                   //u(1)\n    uint32_t    picture_width_in_ctus;\n    uint32_t    picture_height_in_ctus;\n    uint32_t    slice_segment_address;                                          //u(v)\n    int         slice_reserved_undetermined_flag[NUM_OF_EXTRA_SLICEHEADER_BITS];               //u(1)\n    uint32_t    slice_type;                                                     //ue(v)\n    int         pic_output_flag;                                                //u(1)\n    uint8_t     colour_plane_id;                                                //u(2)\n    uint32_t    pic_order_cnt_lsb;\n    uint32_t    num_negative_pics;\n    uint32_t    num_positive_pics;\n    uint32_t    delta_poc_s0_minus1;\n\n    struct      ShortTermRefPicParamSet strp;\n    int         short_term_ref_pic_set_sps_flag;                                //u(1)\n    uint32_t    short_term_ref_pic_set_idx;                                     //u(v)\n    uint32_t    num_long_term_sps;                                              //ue(v)\n    uint32_t    num_long_term_pics;                                             //ue(v)\n    uint32_t    *lt_idx_sps;                                                    //u(v)\n    uint32_t    *poc_lsb_lt;                                                    //u(v)\n    int         *used_by_curr_pic_lt_flag;                                      //u(1)\n    int         *delta_poc_msb_present_flag;                                    //u(1)\n    uint32_t    *delta_poc_msb_cycle_lt;                                        //ue(v)\n    int         slice_temporal_mvp_enabled_flag;                                //u(1)\n    int         slice_sao_luma_flag;                                            //u(1)\n    int         slice_sao_chroma_flag;                                          //u(1)\n    int         num_ref_idx_active_override_flag;                               //u(1)\n    uint32_t    num_ref_idx_l0_active_minus1;                                   //ue(v)\n    uint32_t    num_ref_idx_l1_active_minus1;\n    uint32_t    num_poc_total_cur;\n    int         ref_pic_list_modification_flag_l0;\n    int         ref_pic_list_modification_flag_l1;\n    uint32_t*   list_entry_l0;\n    uint32_t*   list_entry_l1;\n\n    int         ref_pic_list_combination_flag;\n\n    uint32_t    num_ref_idx_lc_active_minus1;\n    uint32_t    ref_pic_list_modification_flag_lc;\n    int         pic_from_list_0_flag;\n    uint32_t    ref_idx_list_curr;\n    int         mvd_l1_zero_flag;                                               //u(1)\n    int         cabac_init_present_flag;\n    int         pic_temporal_mvp_enable_flag;\n\n    int         collocated_from_l0_flag;                                        //u(1)\n    uint32_t    collocated_ref_idx;                                             //ue(v)\n    uint32_t    five_minus_max_num_merge_cand;                                  //ue(v)\n    int32_t     delta_pic_order_cnt_bottom;                                     //se(v)\n    int32_t     slice_qp_delta;                                                 //se(v)\n    int32_t     slice_qp_delta_cb;                                             //se(v)\n    int32_t     slice_qp_delta_cr;                                             //se(v)\n    int         cu_chroma_qp_offset_enabled_flag;                               //u(1)\n    int         deblocking_filter_override_flag;                                //u(1)\n    int         disable_deblocking_filter_flag;                          //u(1)\n    int32_t     beta_offset_div2;                                         //se(v)\n    int32_t     tc_offset_div2;                                           //se(v)\n    int         slice_loop_filter_across_slices_enabled_flag;                   //u(1)\n    uint32_t    num_entry_point_offsets;                                        //ue(v)\n    uint32_t    offset_len_minus1;                                              //ue(v)\n    uint32_t    *entry_point_offset;                                     //u(v)\n    uint32_t    slice_segment_header_extension_length;                          //ue(v)\n    uint8_t     *slice_segment_header_extension_data_byte;                      //u(8)\n};\n\nstruct BlockSizes {\n    uint32_t log2_max_coding_tree_block_size_minus3;\n    uint32_t log2_min_coding_tree_block_size_minus3;\n    uint32_t log2_min_luma_coding_block_size_minus3;\n    uint32_t log2_max_luma_transform_block_size_minus2;\n    uint32_t log2_min_luma_transform_block_size_minus2;\n    uint32_t log2_max_pcm_coding_block_size_minus3;\n    uint32_t log2_min_pcm_coding_block_size_minus3;\n    uint32_t max_max_transform_hierarchy_depth_inter;\n    uint32_t min_max_transform_hierarchy_depth_inter;\n    uint32_t max_max_transform_hierarchy_depth_intra;\n    uint32_t min_max_transform_hierarchy_depth_intra;\n};\n\nstruct Features {\n    uint32_t amp; //sps->amp_enable_flag\n    uint32_t constrained_intra_pred;\n    uint32_t cu_qp_delta; // pps->cu_qp_delta_enabled_flag\n    uint32_t deblocking_filter_disable;\n    uint32_t dependent_slices;\n    uint32_t pcm; // sps->pcm_enable_flag\n    uint32_t sao; //sps->sample_adaptive_offset_enabled_flag\n    uint32_t scaling_lists;\n    uint32_t separate_colour_planes;\n    uint32_t sign_data_hiding;\n    uint32_t strong_intra_smoothing;\n    uint32_t temporal_mvp; //sps->sps_temporal_mvp_enabled_flag\n    uint32_t transform_skip; // pps->transform_skip_enabled_flag\n    uint32_t transquant_bypass;\n    uint32_t weighted_prediction;\n};\n\nstatic  struct VideoParamSet vps;\nstatic  struct SeqParamSet sps;\nstatic  struct PicParamSet pps;\nstatic  struct SliceHeader ssh;\nstatic  struct BlockSizes block_sizes;\nstatic  int use_block_sizes = 0;\nstatic  struct Features features;\nstatic  int use_features = 0;\nstatic  VADisplay va_dpy;\nstatic  VAProfile hevc_profile = ~0;\nstatic  int real_hevc_profile = 0;\nstatic  VAEntrypoint entryPoint = VAEntrypointEncSlice;\nstatic  int p2b = 1;\nstatic  int lowpower = 0;\nstatic  VAConfigAttrib attrib[VAConfigAttribTypeMax];\nstatic  VAConfigAttrib config_attrib[VAConfigAttribTypeMax];\nstatic  int config_attrib_num = 0, enc_packed_header_idx;\nstatic  VASurfaceID src_surface[SURFACE_NUM];\nstatic  VABufferID  coded_buf[SURFACE_NUM];\nstatic  VASurfaceID ref_surface[SURFACE_NUM];\nstatic  VAConfigID config_id;\nstatic  VAContextID context_id;\nstatic  struct ProfileTierParamSet protier_param;\n\nstatic  VAEncSequenceParameterBufferHEVC seq_param;\nstatic  VAEncPictureParameterBufferHEVC pic_param;\nstatic  VAEncSliceParameterBufferHEVC slice_param;\nstatic  VAPictureHEVC CurrentCurrPic;\nstatic  VAPictureHEVC ReferenceFrames[16], RefPicList0_P[32], RefPicList0_B[32], RefPicList1_B[32];\n\nstatic  unsigned int MaxPicOrderCntLsb = (2 << 8);\n\nstatic  unsigned int num_ref_frames = 2;\nstatic  unsigned int num_active_ref_p = 1;\nstatic  unsigned int numShortTerm = 0;\nstatic  int constraint_set_flag = 0;\nstatic  int hevc_packedheader = 0;\nstatic  int hevc_maxref = 16;\n\nstatic  char *coded_fn = NULL, *srcyuv_fn = NULL, *recyuv_fn = NULL;\nstatic  FILE *coded_fp = NULL, *srcyuv_fp = NULL, *recyuv_fp = NULL;\nstatic  unsigned long long srcyuv_frames = 0;\nstatic  int srcyuv_fourcc = VA_FOURCC_NV12;\nstatic  int calc_psnr = 0;\n\nstatic  int frame_width = 176;\nstatic  int frame_height = 144;\nstatic  int frame_width_aligned;\nstatic  int frame_height_aligned;\nstatic  int frame_rate = 30;\nstatic  unsigned int frame_count = 60;\nstatic  unsigned int frame_coded = 0;\nstatic  unsigned int frame_bitrate = 0;\nstatic  unsigned int frame_slices = 1;\nstatic  double frame_size = 0;\nstatic  int initial_qp = 26;\nstatic  int minimal_qp = 0;\nstatic  int intra_period = 30;\nstatic  int intra_idr_period = 60;\nstatic  int ip_period = 1;\nstatic  int rc_mode = -1;\nstatic  int rc_default_modes[] = {\n    VA_RC_VBR,\n    VA_RC_CQP,\n    VA_RC_VBR_CONSTRAINED,\n    VA_RC_CBR,\n    VA_RC_VCM,\n    VA_RC_NONE,\n};\nstatic  unsigned long long current_frame_encoding = 0;\nstatic  unsigned long long current_frame_display = 0;\nstatic  unsigned long long current_IDR_display = 0;\nstatic  unsigned int current_frame_num = 0;\nstatic  int current_frame_type;\n#define current_slot (current_frame_display % SURFACE_NUM)\n\nstatic  int misc_priv_type = 0;\nstatic  int misc_priv_value = 0;\n\n#define MIN(a, b) ((a)>(b)?(b):(a))\n#define MAX(a, b) ((a)>(b)?(a):(b))\n\n/* thread to save coded data/upload source YUV */\nstruct storage_task_t {\n    void *next;\n    unsigned long long display_order;\n    unsigned long long encode_order;\n};\nstatic  struct storage_task_t *storage_task_header = NULL, *storage_task_tail = NULL;\n#define SRC_SURFACE_IN_ENCODING 0\n#define SRC_SURFACE_IN_STORAGE  1\nstatic  int srcsurface_status[SURFACE_NUM];\nstatic  int encode_syncmode = 0;\nstatic  pthread_mutex_t encode_mutex = PTHREAD_MUTEX_INITIALIZER;\nstatic  pthread_cond_t  encode_cond = PTHREAD_COND_INITIALIZER;\nstatic  pthread_t encode_thread;\n\n/* for performance profiling */\nstatic unsigned int UploadPictureTicks = 0;\nstatic unsigned int BeginPictureTicks = 0;\nstatic unsigned int RenderPictureTicks = 0;\nstatic unsigned int EndPictureTicks = 0;\nstatic unsigned int SyncPictureTicks = 0;\nstatic unsigned int SavePictureTicks = 0;\nstatic unsigned int TotalTicks = 0;\n\nstruct __bitstream {\n    unsigned int *buffer;\n    int bit_offset;\n    int max_size_in_dword;\n};\ntypedef struct __bitstream bitstream;\n\nstatic unsigned int\nva_swap32(unsigned int val)\n{\n    unsigned char *pval = (unsigned char *)&val;\n\n    return ((pval[0] << 24)     |\n            (pval[1] << 16)     |\n            (pval[2] << 8)      |\n            (pval[3] << 0));\n}\n\nstatic void\nbitstream_start(bitstream *bs)\n{\n    bs->max_size_in_dword = BITSTREAM_ALLOCATE_STEPPING;\n    bs->buffer = calloc(bs->max_size_in_dword * sizeof(int), 1);\n    assert(bs->buffer);\n    bs->bit_offset = 0;\n}\n\nstatic void\nbitstream_end(bitstream *bs)\n{\n    int pos = (bs->bit_offset >> 5);\n    int bit_offset = (bs->bit_offset & 0x1f);\n    int bit_left = 32 - bit_offset;\n\n    if (bit_offset) {\n        bs->buffer[pos] = va_swap32((bs->buffer[pos] << bit_left));\n    }\n}\n\nstatic void\nput_ui(bitstream *bs, unsigned int val, int size_in_bits)\n{\n    int pos = (bs->bit_offset >> 5);\n    int bit_offset = (bs->bit_offset & 0x1f);\n    int bit_left = 32 - bit_offset;\n\n    if (!size_in_bits)\n        return;\n\n    bs->bit_offset += size_in_bits;\n\n    if (bit_left > size_in_bits) {\n        bs->buffer[pos] = (bs->buffer[pos] << size_in_bits | val);\n    } else {\n        size_in_bits -= bit_left;\n        bs->buffer[pos] = (bs->buffer[pos] << bit_left) | (val >> size_in_bits);\n        bs->buffer[pos] = va_swap32(bs->buffer[pos]);\n\n        if (pos + 1 == bs->max_size_in_dword) {\n            bs->max_size_in_dword += BITSTREAM_ALLOCATE_STEPPING;\n            bs->buffer = realloc(bs->buffer, bs->max_size_in_dword * sizeof(unsigned int));\n            assert(bs->buffer);\n        }\n\n        bs->buffer[pos + 1] = val;\n    }\n}\n\nstatic void\nput_ue(bitstream *bs, unsigned int val)\n{\n    int size_in_bits = 0;\n    int tmp_val = ++val;\n\n    while (tmp_val) {\n        tmp_val >>= 1;\n        size_in_bits++;\n    }\n\n    put_ui(bs, 0, size_in_bits - 1); // leading zero\n    put_ui(bs, val, size_in_bits);\n}\n\nstatic void\nput_se(bitstream *bs, int val)\n{\n    unsigned int new_val;\n\n    if (val <= 0)\n        new_val = -2 * val;\n    else\n        new_val = 2 * val - 1;\n\n    put_ue(bs, new_val);\n}\n\nstatic void\nbyte_aligning(bitstream *bs, int bit)\n{\n    int bit_offset = (bs->bit_offset & 0x7);\n    int bit_left = 8 - bit_offset;\n    int new_val;\n\n    if (!bit_offset)\n        return;\n\n    assert(bit == 0 || bit == 1);\n\n    if (bit)\n        new_val = (1 << bit_left) - 1;\n    else\n        new_val = 0;\n\n    put_ui(bs, new_val, bit_left);\n}\n\nstatic void\nrbsp_trailing_bits(bitstream *bs)\n{\n    put_ui(bs, 1, 1);\n    byte_aligning(bs, 0);\n}\n\nstatic void nal_start_code_prefix(bitstream *bs, int nal_unit_type)\n{\n    if (nal_unit_type == NALU_VPS ||\n        nal_unit_type == NALU_SPS ||\n        nal_unit_type == NALU_PPS ||\n        nal_unit_type == NALU_AUD)\n        put_ui(bs, 0x00000001, 32);\n    else\n        put_ui(bs, 0x000001, 24);\n}\n\nstatic void nal_header(bitstream *bs, int nal_unit_type)\n{\n    put_ui(bs, 0, 1);                /* forbidden_zero_bit: 0 */\n    put_ui(bs, nal_unit_type, 6);\n    put_ui(bs, 0, 6);\n    put_ui(bs, 1, 3);\n}\n\nstatic int calc_poc(int pic_order_cnt_lsb)\n{\n    static int picOrderCntMsb_ref = 0, pic_order_cnt_lsb_ref = 0;\n    int prevPicOrderCntMsb, prevPicOrderCntLsb;\n    int picOrderCntMsb, picOrderCnt;\n\n    if (current_frame_type == FRAME_IDR)\n        prevPicOrderCntMsb = prevPicOrderCntLsb = 0;\n    else {\n        prevPicOrderCntMsb = picOrderCntMsb_ref;\n        prevPicOrderCntLsb = pic_order_cnt_lsb_ref;\n    }\n\n    if ((pic_order_cnt_lsb < prevPicOrderCntLsb) &&\n        ((prevPicOrderCntLsb - pic_order_cnt_lsb) >= (int)(MaxPicOrderCntLsb / 2)))\n        picOrderCntMsb = prevPicOrderCntMsb + MaxPicOrderCntLsb;\n    else if ((pic_order_cnt_lsb > prevPicOrderCntLsb) &&\n             ((pic_order_cnt_lsb - prevPicOrderCntLsb) > (int)(MaxPicOrderCntLsb / 2)))\n        picOrderCntMsb = prevPicOrderCntMsb - MaxPicOrderCntLsb;\n    else\n        picOrderCntMsb = prevPicOrderCntMsb;\n\n    picOrderCnt = picOrderCntMsb + pic_order_cnt_lsb;\n\n    if (current_frame_type != FRAME_B) {\n        picOrderCntMsb_ref = picOrderCntMsb;\n        pic_order_cnt_lsb_ref = pic_order_cnt_lsb;\n    }\n\n    return picOrderCnt;\n}\n\nstatic void fill_profile_tier_level(\n    uint8_t vps_max_layers_minus1,\n    struct ProfileTierParamSet *ptps,\n    uint8_t profilePresentFlag)\n{\n    if (!profilePresentFlag)\n        return;\n\n    memset(ptps, 0, sizeof(*ptps));\n\n    ptps->general_profile_space = 0;\n    ptps->general_tier_flag = 0;\n    ptps->general_profile_idc = real_hevc_profile;\n    memset(ptps->general_profile_compatibility_flag, 0, 32 * sizeof(int));\n    ptps->general_profile_compatibility_flag[ptps->general_profile_idc] = 1;\n    ptps->general_progressive_source_flag = 1;\n    ptps->general_interlaced_source_flag = 0;\n    ptps->general_non_packed_constraint_flag = 0;\n    ptps->general_frame_only_constraint_flag = 1;\n\n    ptps->general_level_idc = 30;\n    ptps->general_level_idc = ptps->general_level_idc * 4;\n\n}\nstatic void fill_vps_header(struct VideoParamSet *vps)\n{\n    int i = 0;\n    memset(vps, 0, sizeof(*vps));\n\n    vps->vps_video_parameter_set_id = 0;\n    vps->vps_base_layer_internal_flag = 1;\n    vps->vps_base_layer_available_flag = 1;\n    vps->vps_max_layers_minus1 = 0;\n    vps->vps_max_sub_layers_minus1 = 0; // max temporal layer minus 1\n    vps->vps_temporal_id_nesting_flag = 1;\n    vps->vps_reserved_0xffff_16bits = 0xFFFF;\n    // hevc::ProfileTierParamSet ptps;\n    memset(&vps->ptps, 0, sizeof(vps->ptps));\n    fill_profile_tier_level(vps->vps_max_layers_minus1, &protier_param, 1);\n    vps->vps_sub_layer_ordering_info_present_flag = 0;\n    for (i = 0; i < MAX_TEMPORAL_SUBLAYERS; i++) {\n        vps->vps_max_dec_pic_buffering_minus1[i] = intra_period == 1 ? 1 : 6;\n        vps->vps_max_num_reorder_pics[i] = ip_period != 0 ? ip_period - 1 : 0;\n        vps->vps_max_latency_increase_plus1[i] = 0;\n    }\n    vps->vps_max_layer_id = 0;\n    vps->vps_num_layer_sets_minus1 = 0;\n    vps->vps_sub_layer_ordering_info_present_flag = 0;\n    vps->vps_max_nuh_reserved_zero_layer_id = 0;\n    vps->vps_max_op_sets = 1;\n    vps->vps_timing_info_present_flag = 0;\n    vps->vps_extension_flag = 0;\n}\n\nstatic void fill_short_term_ref_pic_header(\n    struct ShortTermRefPicParamSet  *strp,\n    uint8_t strp_index)\n{\n    uint32_t i = 0;\n    // inter_ref_pic_set_prediction_flag is always 0 now\n    strp->inter_ref_pic_set_prediction_flag = 0;\n    /* don't need to set below parameters since inter_ref_pic_set_prediction_flag equal to 0\n    strp->delta_idx_minus1 should be set to 0 since strp_index != num_short_term_ref_pic_sets in sps\n    strp->delta_rps_sign;\n    strp->abs_delta_rps_minus1;\n    strp->used_by_curr_pic_flag[j];\n    strp->use_delta_flag[j];\n    */\n    strp->num_negative_pics = num_active_ref_p;\n    int num_positive_pics = ip_period > 1 ? 1 : 0;\n    strp->num_positive_pics = strp_index == 0 ? 0 : num_positive_pics;\n\n    if (strp_index == 0) {\n        for (i = 0; i < strp->num_negative_pics; i++) {\n            strp->delta_poc_s0_minus1[i] = ip_period - 1;\n            strp->used_by_curr_pic_s0_flag[i] = 1;\n        }\n    } else {\n        for (i = 0; i < strp->num_negative_pics; i++) {\n            strp->delta_poc_s0_minus1[i] = (i == 0) ?\n                                           (strp_index - 1) : (ip_period - 1);\n            strp->used_by_curr_pic_s0_flag[i] = 1;\n        }\n        for (i = 0; i < strp->num_positive_pics; i++) {\n            strp->delta_poc_s1_minus1[i] = ip_period - 1 - strp_index;\n            strp->used_by_curr_pic_s1_flag[i] = 1;\n        }\n\n    }\n}\n\nvoid fill_sps_header(struct  SeqParamSet *sps, int id)\n{\n    int i = 0;\n    memset(sps, 0, sizeof(struct  SeqParamSet));\n\n    sps->sps_video_parameter_set_id = 0;\n    sps->sps_max_sub_layers_minus1 = 0;\n    sps->sps_temporal_id_nesting_flag = 1;\n    fill_profile_tier_level(sps->sps_max_sub_layers_minus1, &sps->ptps, 1);\n    sps->sps_seq_parameter_set_id = id;\n    sps->chroma_format_idc = 1;\n    if (sps->chroma_format_idc == 3) {\n        sps->separate_colour_plane_flag = use_features ? features.separate_colour_planes : 0;\n    }\n    frame_width_aligned = ALIGN16(frame_width);\n    frame_height_aligned = ALIGN16(frame_height);\n    sps->pic_width_in_luma_samples = frame_width_aligned;\n    sps->pic_height_in_luma_samples = frame_height_aligned;\n    if (frame_width_aligned != frame_width ||\n        frame_height_aligned != frame_height) {\n        sps->conformance_window_flag = 1;\n        sps->conf_win_left_offset = 0;\n        sps->conf_win_top_offset = 0;\n        switch (sps->chroma_format_idc) {\n        case 0:\n        case 3:  // 4:4:4 format\n            sps->conf_win_right_offset = (frame_width_aligned - frame_width);\n            sps->conf_win_bottom_offset = (frame_height_aligned - frame_height);\n            break;\n\n        case 2:  // 4:2:2 format\n            sps->conf_win_right_offset = (frame_width_aligned - frame_width) >> 1;\n            sps->conf_win_bottom_offset = (frame_height_aligned - frame_height);\n            break;\n\n        case 1:\n        default: // 4:2:0 format\n            sps->conf_win_right_offset = (frame_width_aligned - frame_width) >> 1;\n            sps->conf_win_bottom_offset = (frame_height_aligned - frame_height) >> 1;\n            break;\n        }\n    } else {\n        sps->conformance_window_flag = 0;\n    }\n\n    sps->bit_depth_luma_minus8 = 0;\n    sps->bit_depth_chroma_minus8 = 0;\n    sps->log2_max_pic_order_cnt_lsb_minus4 = MAX((ceil(log(ip_period - 1 + 4) / log(2.0)) + 3), 4) - 4;\n    sps->sps_sub_layer_ordering_info_present_flag = 0;\n    for (i = 0; i < MAX_TEMPORAL_SUBLAYERS; i++) {\n        sps->sps_max_dec_pic_buffering_minus1[i] = intra_period == 1 ? 1 : 6;\n        sps->sps_max_num_reorder_pics[i] = ip_period != 0 ? ip_period - 1 : 0;\n        sps->sps_max_latency_increase_plus1[i] = 0;\n    }\n    sps->log2_min_luma_coding_block_size_minus3 = use_block_sizes ? block_sizes.log2_min_luma_coding_block_size_minus3 : 0;\n    int log2_max_luma_coding_block_size = use_block_sizes ? block_sizes.log2_max_coding_tree_block_size_minus3 + 3 : log2(LCU_SIZE);\n    int log2_min_luma_coding_block_size = sps->log2_min_luma_coding_block_size_minus3 + 3;\n    sps->log2_diff_max_min_luma_coding_block_size = log2_max_luma_coding_block_size -\n            log2_min_luma_coding_block_size;\n    sps->log2_min_luma_transform_block_size_minus2 = use_block_sizes ? block_sizes.log2_min_luma_transform_block_size_minus2 : 0;\n    sps->log2_diff_max_min_luma_transform_block_size = use_block_sizes ? (block_sizes.log2_max_luma_transform_block_size_minus2 - \n                                                                          sps->log2_min_luma_transform_block_size_minus2) : 3;\n    sps->max_transform_hierarchy_depth_inter = use_block_sizes ? block_sizes.max_max_transform_hierarchy_depth_inter : 2;\n    sps->max_transform_hierarchy_depth_intra = use_block_sizes ? block_sizes.max_max_transform_hierarchy_depth_intra : 2;\n    sps->scaling_list_enabled_flag = 0;\n    //sps->sps_scaling_list_data_present_flag; // ignore since scaling_list_enabled_flag equal to 0\n    sps->amp_enabled_flag = use_features ? features.amp >= 1 : 1;\n    sps->sample_adaptive_offset_enabled_flag = use_features ? features.sao : 1;\n    sps->pcm_enabled_flag = use_features ? features.pcm : 0;\n    /* ignore below parameters seting since pcm_enabled_flag equal to 0\n    pcm_sample_bit_depth_luma_minus1;\n    pcm_sample_bit_depth_chroma_minus1;\n    log2_min_pcm_luma_coding_block_size_minus3;\n    log2_diff_max_min_pcm_luma_coding_block_size;\n    pcm_loop_filter_disabled_flag;\n    */\n    sps->num_short_term_ref_pic_sets = ip_period;\n\n    memset(&sps->strp[0], 0, sizeof(sps->strp));\n    for (i = 0; i < MIN(sps->num_short_term_ref_pic_sets, 64); i++)\n        fill_short_term_ref_pic_header(&sps->strp[i], i);\n    sps->long_term_ref_pics_present_flag = 0;\n    /* ignore below parameters seting since long_term_ref_pics_present_flag equal to 0\n    num_long_term_ref_pics_sps;\n    lt_ref_pic_poc_lsb_sps[kMaxLongTermRefPic];\n    used_by_curr_pic_lt_sps_flag[kMaxLongTermRefPic];\n    */\n    sps->sps_temporal_mvp_enabled_flag = use_features ? features.temporal_mvp : 1;\n    sps->strong_intra_smoothing_enabled_flag = use_features ? features.strong_intra_smoothing : 0;\n    \n    sps->vui_parameters_present_flag = 0;\n    sps->sps_extension_present_flag = 0;\n    /* ignore below parameters seting since sps_extension_present_flag equal to 0\n    sps->sps_range_extension_flag\n    sps->sps_multilayer_extension_flag\n    sps->sps_3d_extension_flag\n    sps->sps_extension_5bits\n    sps->sps_extension_data_flag\n    */\n}\n\nstatic void fill_pps_header(\n    struct PicParamSet *pps,\n    uint32_t pps_id,\n    uint32_t sps_id)\n{\n    memset(pps, 0, sizeof(struct PicParamSet));\n\n    pps->pps_pic_parameter_set_id = pps_id;\n    pps->pps_seq_parameter_set_id = sps_id;\n    pps->dependent_slice_segments_enabled_flag = use_features ? features.dependent_slices : 0;\n    pps->output_flag_present_flag = 0;\n    pps->num_extra_slice_header_bits = 0;\n    pps->sign_data_hiding_enabled_flag = use_features ? features.sign_data_hiding : 0;\n    pps->cabac_init_present_flag = 1;\n\n    pps->num_ref_idx_l0_default_active_minus1 = 0;\n    pps->num_ref_idx_l1_default_active_minus1 = 0;\n\n    pps->init_qp_minus26 = initial_qp - 26;\n    pps->constrained_intra_pred_flag = use_features ? features.constrained_intra_pred : 0;\n    pps->transform_skip_enabled_flag = use_features ? features.transform_skip : 0;\n    pps->cu_qp_delta_enabled_flag = use_features ? features.cu_qp_delta >= 1 : 1;\n    if (pps->cu_qp_delta_enabled_flag)\n        pps->diff_cu_qp_delta_depth = 2;\n    pps->pps_cb_qp_offset = 0;\n    pps->pps_cr_qp_offset = 0;\n    pps->pps_slice_chroma_qp_offsets_present_flag = 0;\n    pps->weighted_pred_flag = use_features ? features.weighted_prediction : 0;\n    pps->weighted_bipred_flag = 0;\n    pps->transquant_bypass_enabled_flag = use_features ? features.transquant_bypass : 0;\n    pps->entropy_coding_sync_enabled_flag = 0;\n    pps->tiles_enabled_flag = 0;\n\n    pps->pps_loop_filter_across_slices_enabled_flag = 0;\n    pps->deblocking_filter_control_present_flag = 1;\n    pps->deblocking_filter_override_enabled_flag = 0,\n         pps->pps_deblocking_filter_disabled_flag = use_features ? features.deblocking_filter_disable : 0,\n              pps->pps_beta_offset_div2 = 2,\n                   pps->pps_tc_offset_div2 = 0,\n                        pps->pps_scaling_list_data_present_flag = 0;\n    pps->lists_modification_present_flag = 0;\n    pps->log2_parallel_merge_level_minus2 = 0;\n    pps->slice_segment_header_extension_present_flag = 0;\n    pps->pps_extension_present_flag = 0;\n    pps->pps_range_extension_flag = 0;\n\n}\nstatic void fill_slice_header(\n    uint32_t count,\n    struct PicParamSet *pps,\n    struct SliceHeader *slice)\n{\n    memset(slice, 0, sizeof(struct SliceHeader));\n    slice->pic_output_flag = 1;\n    slice->colour_plane_id = 0;\n    slice->no_output_of_prior_pics_flag = 0;\n    slice->pic_order_cnt_lsb = calc_poc((current_frame_display - current_IDR_display) % MaxPicOrderCntLsb);\n\n    //slice_segment_address (u(v))\n    int lcu_size = use_block_sizes ? (1 << (block_sizes.log2_max_coding_tree_block_size_minus3 + 3)) : LCU_SIZE;\n    slice->picture_height_in_ctus = (frame_height + lcu_size - 1) / lcu_size;\n    slice->picture_width_in_ctus = (frame_width + lcu_size - 1) / lcu_size;\n    slice->slice_segment_address = 0;\n    slice->first_slice_segment_in_pic_flag = ((slice->slice_segment_address == 0) ? 1 : 0);\n    slice->slice_type = current_frame_type == FRAME_P ? (p2b ? SLICE_B : SLICE_P) :\n                        current_frame_type == FRAME_B ? SLICE_B : SLICE_I;\n\n    slice->dependent_slice_segment_flag = 0;\n    slice->short_term_ref_pic_set_sps_flag = 1;\n    slice->num_ref_idx_active_override_flag = 0;\n    slice->short_term_ref_pic_set_idx = slice->pic_order_cnt_lsb % ip_period;\n    slice->strp.num_negative_pics = numShortTerm;\n    slice->strp.num_positive_pics = 0;\n    slice->slice_sao_luma_flag = 0;\n    slice->slice_sao_chroma_flag = 0;\n    slice->slice_temporal_mvp_enabled_flag = use_features ? features.temporal_mvp : 1;\n\n    slice->num_ref_idx_l0_active_minus1 = pps->num_ref_idx_l0_default_active_minus1;\n    slice->num_ref_idx_l1_active_minus1 = pps->num_ref_idx_l1_default_active_minus1;\n\n    slice->num_poc_total_cur = 0;\n    // for I slice\n    if (current_frame_type == FRAME_I || current_frame_type == FRAME_IDR) {\n        slice->ref_pic_list_modification_flag_l0 = 0;\n        slice->list_entry_l0 = 0;\n        slice->ref_pic_list_modification_flag_l1 = 0;\n        slice->list_entry_l1 = 0;\n    } else {\n        slice->ref_pic_list_modification_flag_l0 = 1;\n        slice->num_poc_total_cur = 2;\n    }\n\n    slice->ref_pic_list_combination_flag = 0;\n    slice->num_ref_idx_lc_active_minus1 = 0;\n    slice->ref_pic_list_modification_flag_lc = 0;\n    slice->pic_from_list_0_flag = 0;\n    slice->ref_idx_list_curr = 0;\n    slice->mvd_l1_zero_flag = 0;\n    slice->cabac_init_present_flag = 0;\n\n    slice->slice_qp_delta = 0;\n    slice->slice_qp_delta_cb = pps->pps_cb_qp_offset;\n    slice->slice_qp_delta_cr = pps->pps_cr_qp_offset;\n\n    slice->deblocking_filter_override_flag = 0;\n    slice->disable_deblocking_filter_flag = 0;\n    slice->tc_offset_div2 = pps->pps_tc_offset_div2;\n    slice->beta_offset_div2 = pps->pps_beta_offset_div2;\n\n    slice->collocated_from_l0_flag = 1;\n    slice->collocated_ref_idx = pps->num_ref_idx_l0_default_active_minus1;\n\n    slice->five_minus_max_num_merge_cand = 0;\n\n    slice->slice_loop_filter_across_slices_enabled_flag = 0;\n    slice->num_entry_point_offsets = 0;\n    slice->offset_len_minus1 = 0;\n}\n\nstatic void protier_rbsp(bitstream *bs)\n{\n    uint32_t i = 0;\n    put_ui(bs, protier_param.general_profile_space, 2);\n    put_ui(bs, protier_param.general_tier_flag, 1);\n    put_ui(bs, protier_param.general_profile_idc, 5);\n\n    for (i = 0; i < 32; i++)\n        put_ui(bs, protier_param.general_profile_compatibility_flag[i], 1);\n\n    put_ui(bs, protier_param.general_progressive_source_flag, 1);\n    put_ui(bs, protier_param.general_interlaced_source_flag, 1);\n    put_ui(bs, protier_param.general_non_packed_constraint_flag, 1);\n    put_ui(bs, protier_param.general_frame_only_constraint_flag, 1);\n    put_ui(bs, 0, 16);\n    put_ui(bs, 0, 16);\n    put_ui(bs, 0, 12);\n    put_ui(bs, protier_param.general_level_idc, 8);\n}\nvoid pack_short_term_ref_pic_setp(\n    bitstream *bs,\n    struct ShortTermRefPicParamSet* strp,\n    int first_strp)\n{\n    uint32_t i = 0;\n    if (!first_strp)\n        put_ui(bs, strp->inter_ref_pic_set_prediction_flag, 1);\n\n    // inter_ref_pic_set_prediction_flag is always 0 now\n    put_ue(bs, strp->num_negative_pics);\n    put_ue(bs, strp->num_positive_pics);\n\n    for (i = 0; i < strp->num_negative_pics; i++) {\n        put_ue(bs, strp->delta_poc_s0_minus1[i]);\n        put_ui(bs, strp->used_by_curr_pic_s0_flag[i], 1);\n    }\n    for (i = 0; i < strp->num_positive_pics; i++) {\n        put_ue(bs, strp->delta_poc_s1_minus1[i]);\n        put_ui(bs, strp->used_by_curr_pic_s1_flag[i], 1);\n    }\n}\nstatic void vps_rbsp(bitstream *bs)\n{\n    uint32_t i = 0;\n    put_ui(bs, vps.vps_video_parameter_set_id, 4);\n    put_ui(bs, 3, 2);  //vps_reserved_three_2bits\n    put_ui(bs, 0, 6);  //vps_reserved_zero_6bits\n\n    put_ui(bs, vps.vps_max_sub_layers_minus1, 3);\n    put_ui(bs, vps.vps_temporal_id_nesting_flag, 1);\n    put_ui(bs, 0xFFFF, 16); //vps_reserved_0xffff_16bits\n    protier_rbsp(bs);\n\n    put_ui(bs, vps.vps_sub_layer_ordering_info_present_flag, 1);\n\n    for (i = (vps.vps_sub_layer_ordering_info_present_flag ? 0 : vps.vps_max_sub_layers_minus1); i <= vps.vps_max_sub_layers_minus1; i++) {\n        // NOTE: In teddi and mv_encoder, the setting is max_dec_pic_buffering.\n        // here just follow the spec 7.3.2.1\n        put_ue(bs, vps.vps_max_dec_pic_buffering_minus1[i]);\n        put_ue(bs, vps.vps_max_num_reorder_pics[i]);\n        put_ue(bs, vps.vps_max_latency_increase_plus1[i]);\n    }\n\n    put_ui(bs, vps.vps_max_nuh_reserved_zero_layer_id, 6);\n    put_ue(bs, vps.vps_num_op_sets_minus1);\n\n    put_ui(bs, vps.vps_timing_info_present_flag, 1);\n\n    if (vps.vps_timing_info_present_flag) {\n        put_ue(bs, vps.vps_num_units_in_tick);\n        put_ue(bs, vps.vps_time_scale);\n        put_ue(bs, vps.vps_poc_proportional_to_timing_flag);\n        if (vps.vps_poc_proportional_to_timing_flag) {\n            put_ue(bs, vps.vps_num_ticks_poc_diff_one_minus1);\n        }\n        put_ue(bs, vps.vps_num_hrd_parameters);\n        for (i = 0; i < vps.vps_num_hrd_parameters; i++) {\n            put_ue(bs, vps.hrd_layer_set_idx[i]);\n            if (i > 0) {\n                put_ui(bs, vps.cprms_present_flag[i], 1);\n            }\n        }\n    }\n\n    // no extension flag\n    put_ui(bs, 0, 1);\n}\n\nstatic void sps_rbsp(bitstream *bs)\n{\n    uint32_t  i = 0;\n    put_ui(bs, sps.sps_video_parameter_set_id, 4);\n    put_ui(bs, sps.sps_max_sub_layers_minus1, 3);\n    put_ui(bs, sps.sps_temporal_id_nesting_flag, 1);\n\n    protier_rbsp(bs);\n\n    put_ue(bs, sps.sps_seq_parameter_set_id);\n    put_ue(bs, sps.chroma_format_idc);\n\n    if (sps.chroma_format_idc == 3) {\n        put_ui(bs, sps.separate_colour_plane_flag, 1);\n\n    }\n    put_ue(bs, sps.pic_width_in_luma_samples);\n    put_ue(bs, sps.pic_height_in_luma_samples);\n\n    put_ui(bs, sps.conformance_window_flag, 1);\n\n    if (sps.conformance_window_flag) {\n        put_ue(bs, sps.conf_win_left_offset);\n        put_ue(bs, sps.conf_win_right_offset);\n        put_ue(bs, sps.conf_win_top_offset);\n        put_ue(bs, sps.conf_win_bottom_offset);\n    }\n    put_ue(bs, sps.bit_depth_luma_minus8);\n    put_ue(bs, sps.bit_depth_chroma_minus8);\n    put_ue(bs, sps.log2_max_pic_order_cnt_lsb_minus4);\n    put_ui(bs, sps.sps_sub_layer_ordering_info_present_flag, 1);\n\n    for (i = (sps.sps_sub_layer_ordering_info_present_flag ? 0 : sps.sps_max_sub_layers_minus1); i <= sps.sps_max_sub_layers_minus1; i++) {\n        // NOTE: In teddi and mv_encoder, the setting is max_dec_pic_buffering.\n        // here just follow the spec 7.3.2.2\n        put_ue(bs, sps.sps_max_dec_pic_buffering_minus1[i]);\n        put_ue(bs, sps.sps_max_num_reorder_pics[i]);\n        put_ue(bs, sps.sps_max_latency_increase_plus1[i]);\n    }\n\n    put_ue(bs, sps.log2_min_luma_coding_block_size_minus3);\n    put_ue(bs, sps.log2_diff_max_min_luma_coding_block_size);\n    put_ue(bs, sps.log2_min_luma_transform_block_size_minus2);\n    put_ue(bs, sps.log2_diff_max_min_luma_transform_block_size);\n    put_ue(bs, sps.max_transform_hierarchy_depth_inter);\n    put_ue(bs, sps.max_transform_hierarchy_depth_intra);\n\n    // scaling_list_enabled_flag is set as 0 in fill_sps_header() for now\n    put_ui(bs, sps.scaling_list_enabled_flag, 1);\n    if (sps.scaling_list_enabled_flag) {\n        put_ui(bs, sps.sps_scaling_list_data_present_flag, 1);\n        if (sps.sps_scaling_list_data_present_flag) {\n            //scaling_list_data();\n        }\n    }\n\n    put_ui(bs, sps.amp_enabled_flag, 1);\n    put_ui(bs, sps.sample_adaptive_offset_enabled_flag, 1);\n\n    // pcm_enabled_flag is set as 0 in fill_sps_header() for now\n    put_ui(bs, sps.pcm_enabled_flag, 1);\n    if (sps.pcm_enabled_flag) {\n        put_ui(bs, sps.pcm_sample_bit_depth_luma_minus1, 4);\n        put_ui(bs, sps.pcm_sample_bit_depth_chroma_minus1, 4);\n        put_ue(bs, sps.log2_min_pcm_luma_coding_block_size_minus3);\n        put_ue(bs, sps.log2_diff_max_min_pcm_luma_coding_block_size);\n        put_ui(bs, sps.pcm_loop_filter_disabled_flag, 1);\n    }\n\n    put_ue(bs, sps.num_short_term_ref_pic_sets);\n    for (i = 0; i < sps.num_short_term_ref_pic_sets; i++) {\n        pack_short_term_ref_pic_setp(bs, &sps.strp[i], i == 0);\n    }\n\n    // long_term_ref_pics_present_flag is set as 0 in fill_sps_header() for now\n    put_ui(bs, sps.long_term_ref_pics_present_flag, 1);\n    if (sps.long_term_ref_pics_present_flag) {\n        put_ue(bs, sps.num_long_term_ref_pics_sps);\n        for (i = 0; i < sps.num_long_term_ref_pics_sps; i++) {\n            put_ue(bs, sps.lt_ref_pic_poc_lsb_sps[i]);\n            put_ui(bs, sps.used_by_curr_pic_lt_sps_flag[i], 1);\n        }\n    }\n\n    put_ui(bs, sps.sps_temporal_mvp_enabled_flag, 1);\n    put_ui(bs, sps.strong_intra_smoothing_enabled_flag, 1);\n\n    // vui_parameters_present_flag is set as 0 in fill_sps_header() for now\n    put_ui(bs, sps.vui_parameters_present_flag, 1);\n\n    put_ui(bs, sps.sps_extension_present_flag, 1);\n}\n\nstatic void pps_rbsp(bitstream *bs)\n{\n    uint32_t  i = 0;\n    put_ue(bs, pps.pps_pic_parameter_set_id);\n    put_ue(bs, pps.pps_seq_parameter_set_id);\n    put_ui(bs, pps.dependent_slice_segments_enabled_flag, 1);\n    put_ui(bs, pps.output_flag_present_flag, 1);\n    put_ui(bs, pps.num_extra_slice_header_bits, 3);\n    put_ui(bs, pps.sign_data_hiding_enabled_flag, 1);\n    put_ui(bs, pps.cabac_init_present_flag, 1);\n\n    put_ue(bs, pps.num_ref_idx_l0_default_active_minus1);\n    put_ue(bs, pps.num_ref_idx_l1_default_active_minus1);\n    put_se(bs, pps.init_qp_minus26);\n\n    put_ui(bs, pps.constrained_intra_pred_flag, 1);\n    put_ui(bs, pps.transform_skip_enabled_flag, 1);\n\n    put_ui(bs, pps.cu_qp_delta_enabled_flag, 1);\n    if (pps.cu_qp_delta_enabled_flag) {\n        put_ue(bs, pps.diff_cu_qp_delta_depth);\n    }\n\n    put_se(bs, pps.pps_cb_qp_offset);\n    put_se(bs, pps.pps_cr_qp_offset);\n\n    put_ui(bs, pps.pps_slice_chroma_qp_offsets_present_flag, 1);\n    put_ui(bs, pps.weighted_pred_flag, 1);\n    put_ui(bs, pps.weighted_bipred_flag, 1);\n    put_ui(bs, pps.transquant_bypass_enabled_flag, 1);\n    put_ui(bs, pps.tiles_enabled_flag, 1);\n    put_ui(bs, pps.entropy_coding_sync_enabled_flag, 1);\n\n    if (pps.tiles_enabled_flag) {\n        put_ue(bs, pps.num_tile_columns_minus1);\n        put_ue(bs, pps.num_tile_rows_minus1);\n        put_ui(bs, pps.uniform_spacing_flag, 1);\n        if (!pps.uniform_spacing_flag) {\n            for (i = 0; i < pps.num_tile_columns_minus1; i++) {\n                put_ue(bs, pps.column_width_minus1[i]);\n            }\n\n            for (i = 0; i < pps.num_tile_rows_minus1; i++) {\n                put_ue(bs, pps.row_height_minus1[i]);\n            }\n\n        }\n        put_ui(bs, pps.loop_filter_across_tiles_enabled_flag, 1);\n    }\n\n    put_ui(bs, pps.pps_loop_filter_across_slices_enabled_flag, 1);\n    put_ui(bs, pps.deblocking_filter_control_present_flag, 1);\n    if (pps.deblocking_filter_control_present_flag) {\n        put_ui(bs, pps.deblocking_filter_override_enabled_flag, 1);\n        put_ui(bs, pps.pps_deblocking_filter_disabled_flag, 1);\n        if (!pps.pps_deblocking_filter_disabled_flag) {\n            put_se(bs, pps.pps_beta_offset_div2);\n            put_se(bs, pps.pps_tc_offset_div2);\n        }\n    }\n\n    // pps_scaling_list_data_present_flag is set as 0 in fill_pps_header() for now\n    put_ui(bs, pps.pps_scaling_list_data_present_flag, 1);\n    if (pps.pps_scaling_list_data_present_flag) {\n        //scaling_list_data();\n    }\n\n    put_ui(bs, pps.lists_modification_present_flag, 1);\n    put_ue(bs, pps.log2_parallel_merge_level_minus2);\n    put_ui(bs, pps.slice_segment_header_extension_present_flag, 1);\n\n    put_ui(bs, pps.pps_extension_present_flag, 1);\n    if (pps.pps_extension_present_flag) {\n        put_ui(bs, pps.pps_range_extension_flag, 1);\n        put_ui(bs, pps.pps_multilayer_extension_flag, 1);\n        put_ui(bs, pps.pps_3d_extension_flag, 1);\n        put_ui(bs, pps.pps_extension_5bits, 1);\n\n    }\n\n    if (pps.pps_range_extension_flag) {\n        if (pps.transform_skip_enabled_flag)\n            put_ue(bs, pps.log2_max_transform_skip_block_size_minus2);\n        put_ui(bs, pps.cross_component_prediction_enabled_flag, 1);\n        put_ui(bs, pps.chroma_qp_offset_list_enabled_flag, 1);\n\n        if (pps.chroma_qp_offset_list_enabled_flag) {\n            put_ue(bs, pps.diff_cu_chroma_qp_offset_depth);\n            put_ue(bs, pps.chroma_qp_offset_list_len_minus1);\n            for (i = 0; i <= pps.chroma_qp_offset_list_len_minus1; i++) {\n                put_ue(bs, pps.cb_qp_offset_list[i]);\n                put_ue(bs, pps.cr_qp_offset_list[i]);\n            }\n        }\n\n        put_ue(bs, pps.log2_sao_offset_scale_luma);\n        put_ue(bs, pps.log2_sao_offset_scale_chroma);\n    }\n\n}\nstatic void sliceHeader_rbsp(\n    bitstream *bs,\n    struct SliceHeader *slice_header,\n    struct SeqParamSet *sps,\n    struct PicParamSet *pps,\n    int isidr)\n{\n    uint8_t nal_unit_type = NALU_TRAIL_R;\n    int gop_ref_distance = ip_period;\n    int i = 0;\n\n    put_ui(bs, slice_header->first_slice_segment_in_pic_flag, 1);\n    if (slice_header->pic_order_cnt_lsb == 0)\n        nal_unit_type = NALU_IDR_W_DLP;\n\n    if (nal_unit_type >= 16 && nal_unit_type <= 23)\n        put_ui(bs, slice_header->no_output_of_prior_pics_flag, 1);\n\n    put_ue(bs, slice_header->slice_pic_parameter_set_id);\n\n    if (!slice_header->first_slice_segment_in_pic_flag) {\n        if (slice_header->dependent_slice_segment_flag) {\n            put_ui(bs, slice_header->dependent_slice_segment_flag, 1);\n        }\n\n        put_ui(bs, slice_header->slice_segment_address,\n               (uint8_t)(ceil(log(slice_header->picture_height_in_ctus * slice_header->picture_width_in_ctus) / log(2.0))));\n    }\n    if (!slice_header->dependent_slice_segment_flag) {\n        for (i = 0; i < pps->num_extra_slice_header_bits; i++) {\n            put_ui(bs, slice_header->slice_reserved_undetermined_flag[i], 1);\n        }\n        put_ue(bs, slice_header->slice_type);\n        if (pps->output_flag_present_flag) {\n            put_ui(bs, slice_header->pic_output_flag, 1);\n        }\n        if (sps->separate_colour_plane_flag == 1) {\n            put_ui(bs, slice_header->colour_plane_id, 2);\n        }\n\n        if (!(nal_unit_type == NALU_IDR_W_DLP || nal_unit_type == NALU_IDR_N_LP)) {\n            put_ui(bs, slice_header->pic_order_cnt_lsb, (sps->log2_max_pic_order_cnt_lsb_minus4 + 4));\n            put_ui(bs, slice_header->short_term_ref_pic_set_sps_flag, 1);\n\n            if (!slice_header->short_term_ref_pic_set_sps_flag) {\n                // refer to Teddi\n                if (sps->num_short_term_ref_pic_sets > 0)\n                    put_ui(bs, 0, 1); // inter_ref_pic_set_prediction_flag, always 0 for now\n\n                put_ue(bs, slice_header->strp.num_negative_pics);\n                put_ue(bs, slice_header->strp.num_positive_pics);\n\n                // below chunks of codes (majorly two big 'for' blocks) are refering both\n                // Teddi and mv_encoder, they look kind of ugly, however, keep them as these\n                // since it will be pretty easy to update if change/update in Teddi side.\n                // According to Teddi, these are CModel Implementation.\n                int prev = 0;\n                int frame_cnt_in_gop = slice_header->pic_order_cnt_lsb / 2;\n                // this is the first big 'for' block\n                for (i = 0; i < slice_header->strp.num_negative_pics; i++) {\n                    // Low Delay B case\n                    if (1 == gop_ref_distance) {\n                        put_ue(bs, 0 /*delta_poc_s0_minus1*/);\n                    } else {\n                        // For Non-BPyramid GOP i.e B0 type\n                        if (num_active_ref_p > 1) {\n                            // DeltaPOC Equals NumB\n                            int DeltaPoc = -(int)(gop_ref_distance);\n                            put_ue(bs, prev - DeltaPoc - 1 /*delta_poc_s0_minus1*/);\n                        } else {\n                            //  the big 'if' wraps here is -\n                            //     if (!slice_header->short_term_ref_pic_set_sps_flag)\n                            // From the Teddi logic, the short_term_ref_pic_set_sps_flag only can be '0'\n                            // either for B-Prymid or first several frames in a GOP in multi-ref cases\n                            // when there are not enough backward refs.\n                            // So though there are really some codes under this 'else'in Teddi, don't\n                            // want to introduce them in MEA to avoid confusion, and put an assert\n                            // here to guard that there is new case we need handle in the future.\n                            assert(0);\n                        }\n                    }\n                    put_ui(bs, 1 /*used_by_curr_pic_s0_flag*/, 1);\n                }\n\n                prev = 0;\n                // this is the second big 'for' block\n                for (i = 0; i < slice_header->strp.num_positive_pics; i++) {\n                    // Non-BPyramid GOP\n                    if (num_active_ref_p > 1) {\n                        // MultiRef Case\n                        if (frame_cnt_in_gop < gop_ref_distance) {\n                            int DeltaPoc = (int)(gop_ref_distance - frame_cnt_in_gop);\n                            put_ue(bs, DeltaPoc - prev - 1 /*delta_poc_s1_minus1*/);\n                        } else if (frame_cnt_in_gop > gop_ref_distance) {\n                            int DeltaPoc = (int)(gop_ref_distance * slice_header->strp.num_negative_pics - frame_cnt_in_gop);\n                            put_ue(bs, DeltaPoc - prev - 1 /*delta_poc_s1_minus1*/);\n                        }\n                    } else {\n                        //  the big 'if' wraps here is -\n                        //     if (!slice_header->short_term_ref_pic_set_sps_flag)\n                        // From the Teddi logic, the short_term_ref_pic_set_sps_flag only can be '0'\n                        // either for B-Prymid or first several frames in a GOP in multi-ref cases\n                        // when there are not enough backward refs.\n                        // So though there are really some codes under this 'else'in Teddi, don't\n                        // want to introduce them in MEA to avoid confusion, and put an assert\n                        // here to guard that there is new case we need handle in the future.\n                        assert(0);\n                    }\n                    put_ui(bs, 1 /*used_by_curr_pic_s1_flag*/, 1);\n                }\n            } else if (sps->num_short_term_ref_pic_sets > 1)\n                put_ui(bs, slice_header->short_term_ref_pic_set_idx,\n                       (uint8_t)(ceil(log(sps->num_short_term_ref_pic_sets) / log(2.0))));\n\n            if (sps->long_term_ref_pics_present_flag) {\n                if (sps->num_long_term_ref_pics_sps > 0)\n                    put_ue(bs, slice_header->num_long_term_sps);\n\n                put_ue(bs, slice_header->num_long_term_pics);\n            }\n\n            if (sps->sps_temporal_mvp_enabled_flag)\n                put_ui(bs, slice_header->slice_temporal_mvp_enabled_flag, 1);\n\n        }\n\n        if (sps->sample_adaptive_offset_enabled_flag) {\n            put_ui(bs, slice_header->slice_sao_luma_flag, 1);\n            put_ui(bs, slice_header->slice_sao_chroma_flag, 1);\n        }\n\n        if (slice_header->slice_type != SLICE_I) {\n            put_ui(bs, slice_header->num_ref_idx_active_override_flag, 1);\n\n            if (slice_header->num_ref_idx_active_override_flag) {\n                put_ue(bs, slice_header->num_ref_idx_l0_active_minus1);\n                if (slice_header->slice_type == SLICE_B)\n                    put_ue(bs, slice_header->num_ref_idx_l1_active_minus1);\n            }\n\n            if (pps->lists_modification_present_flag &&  slice_header->num_poc_total_cur > 1) {\n                /* ref_pic_list_modification */\n                put_ui(bs, slice_header->ref_pic_list_modification_flag_l0, 1);\n\n                if (slice_header->ref_pic_list_modification_flag_l0) {\n                    for (i = 0; i <= slice_header->num_ref_idx_l0_active_minus1; i++) {\n                        put_ui(bs, slice_header->list_entry_l0[i],\n                               (uint8_t)(ceil(log(slice_header->num_poc_total_cur) / log(2.0))));\n                    }\n                }\n\n                put_ui(bs, slice_header->ref_pic_list_modification_flag_l1, 1);\n\n                if (slice_header->ref_pic_list_modification_flag_l1) {\n                    for (i = 0; i <= slice_header->num_ref_idx_l1_active_minus1; i++) {\n                        put_ui(bs, slice_header->list_entry_l1[i],\n                               (uint8_t)(ceil(log(slice_header->num_poc_total_cur) / log(2.0))));\n                    }\n                }\n            }\n\n            if (slice_header->slice_type == SLICE_B) {\n                put_ui(bs, slice_header->mvd_l1_zero_flag, 1);\n            }\n\n            if (pps->cabac_init_present_flag) {\n                put_ui(bs, slice_header->cabac_init_present_flag, 1);\n            }\n\n            if (slice_header->slice_temporal_mvp_enabled_flag) {\n                int collocated_from_l0_flag = 1;\n\n                if (slice_header->slice_type == SLICE_B) {\n                    collocated_from_l0_flag = slice_header->collocated_from_l0_flag;\n                    put_ui(bs, slice_header->collocated_from_l0_flag, 1);\n                }\n\n                if (((collocated_from_l0_flag && (slice_header->num_ref_idx_l0_active_minus1 > 0)) ||\n                     (!collocated_from_l0_flag && (slice_header->num_ref_idx_l1_active_minus1 > 0)))) {\n                    put_ue(bs, slice_header->collocated_ref_idx);\n                }\n            }\n\n            put_ue(bs, slice_header->five_minus_max_num_merge_cand);\n        }\n\n        put_se(bs, slice_header->slice_qp_delta);\n\n        if (pps->chroma_qp_offset_list_enabled_flag) {\n            put_se(bs, slice_header->slice_qp_delta_cb);\n            put_se(bs, slice_header->slice_qp_delta_cr);\n        }\n\n        if (pps->deblocking_filter_override_enabled_flag) {\n            put_ui(bs, slice_header->deblocking_filter_override_flag, 1);\n        }\n        if (slice_header->deblocking_filter_override_flag) {\n            put_ui(bs, slice_header->disable_deblocking_filter_flag, 1);\n\n            if (!slice_header->disable_deblocking_filter_flag) {\n                put_se(bs, slice_header->beta_offset_div2);\n                put_se(bs, slice_header->tc_offset_div2);\n            }\n        }\n\n        if (pps->pps_loop_filter_across_slices_enabled_flag &&\n            (slice_header->slice_sao_luma_flag || slice_header->slice_sao_chroma_flag ||\n             !slice_header->disable_deblocking_filter_flag)) {\n            put_ui(bs, slice_header->slice_loop_filter_across_slices_enabled_flag, 1);\n        }\n\n    }\n\n    if ((pps->tiles_enabled_flag) || (pps->entropy_coding_sync_enabled_flag)) {\n        put_ue(bs, slice_header->num_entry_point_offsets);\n\n        if (slice_header->num_entry_point_offsets > 0) {\n            put_ue(bs, slice_header->offset_len_minus1);\n        }\n    }\n\n    if (pps->slice_segment_header_extension_present_flag) {\n        int slice_header_extension_length = 0;\n\n        put_ue(bs, slice_header_extension_length);\n    }\n}\n\nstatic int\nbuild_packed_pic_buffer(unsigned char **header_buffer)\n{\n    bitstream bs;\n\n    bitstream_start(&bs);\n    nal_start_code_prefix(&bs, NALU_PPS);\n    nal_header(&bs, NALU_PPS);\n    pps_rbsp(&bs);\n    rbsp_trailing_bits(&bs);\n    bitstream_end(&bs);\n\n    *header_buffer = (unsigned char *)bs.buffer;\n    return bs.bit_offset;\n}\nstatic int\nbuild_packed_video_buffer(unsigned char **header_buffer)\n{\n    bitstream bs;\n\n    bitstream_start(&bs);\n    nal_start_code_prefix(&bs, NALU_VPS);\n    nal_header(&bs, NALU_VPS);\n    vps_rbsp(&bs);\n    rbsp_trailing_bits(&bs);\n    bitstream_end(&bs);\n\n    *header_buffer = (unsigned char *)bs.buffer;\n    return bs.bit_offset;\n}\n\nstatic int\nbuild_packed_seq_buffer(unsigned char **header_buffer)\n{\n    bitstream bs;\n\n    bitstream_start(&bs);\n    nal_start_code_prefix(&bs, NALU_SPS);\n    nal_header(&bs, NALU_SPS);\n    sps_rbsp(&bs);\n    rbsp_trailing_bits(&bs);\n    bitstream_end(&bs);\n\n    *header_buffer = (unsigned char *)bs.buffer;\n    return bs.bit_offset;\n}\n\nstatic int build_packed_slice_buffer(unsigned char **header_buffer)\n{\n    bitstream bs;\n    int is_idr = !!pic_param.pic_fields.bits.idr_pic_flag;\n    int naluType = is_idr ? NALU_IDR_W_DLP : NALU_TRAIL_R;\n\n    bitstream_start(&bs);\n    nal_start_code_prefix(&bs, NALU_TRAIL_R);\n    nal_header(&bs, naluType);\n    sliceHeader_rbsp(&bs, &ssh, &sps, &pps, 0);\n    rbsp_trailing_bits(&bs);\n    bitstream_end(&bs);\n\n    *header_buffer = (unsigned char *)bs.buffer;\n    return bs.bit_offset;\n}\n\n\n/*\n * Helper function for profiling purposes\n */\nstatic unsigned int GetTickCount()\n{\n    struct timeval tv;\n    if (gettimeofday(&tv, NULL))\n        return 0;\n    return tv.tv_usec / 1000 + tv.tv_sec * 1000;\n}\n\n/*\n  Assume frame sequence is: Frame#0,#1,#2,...,#M,...,#X,... (encoding order)\n  1) period between Frame #X and Frame #N = #X - #N\n  2) 0 means infinite for intra_period/intra_idr_period, and 0 is invalid for ip_period\n  3) intra_idr_period % intra_period (intra_period > 0) and (intra_period -1)% ip_period must be 0\n  4) intra_period and intra_idr_period take precedence over ip_period\n  5) if ip_period > 1, intra_period and intra_idr_period are not  the strict periods\n     of I/IDR frames, see bellow examples\n  -------------------------------------------------------------------\n  intra_period intra_idr_period ip_period frame sequence (intra_period/intra_idr_period/ip_period)\n  0            ignored          1          IDRPPPPPPP ...     (No IDR/I any more)\n  0            ignored        >=2          IDR(PBB)(PBB)...   (No IDR/I any more)\n  1            0                ignored    IDRIIIIIII...      (No IDR any more)\n  1            1                ignored    IDR IDR IDR IDR...\n  1            >=2              ignored    IDRII IDRII IDR... (1/3/ignore)\n  >=2          0                1          IDRPPP IPPP I...   (3/0/1)\n  >=2          0              >=2          IDR(PBB)(PBB)(IBB) (7/0/3)\n                                              (PBB)(IBB)(PBB)(IBB)...\n  >=2          >=2              1          IDRPPPPP IPPPPP IPPPPP (7/14/1)\n                                           IDRPPPPP IPPPPP IPPPPP...\n  >=2          >=2              >=2        {IDR(PBB)(PBB)(IBB)(PBB)(IBB)(PBB)} (7/14/3)\n                                           {IDR(PBB)(PBB)(IBB)(PBB)(IBB)(PBB)}...\n                                           {IDR(PBB)(PBB)(IBB)(PBB)}           (7/14/3)\n                                           {IDR(PBB)(PBB)(IBB)(PBB)}...\n                                           {IDR(PBB)(PBB)}                     (7/7/3)\n                                           {IDR(PBB)(PBB)}.\n*/\n\n/*\n * Return displaying order with specified periods and encoding order\n * displaying_order: displaying order\n * frame_type: frame type\n */\nvoid encoding2display_order(\n    unsigned long long encoding_order, int intra_period,\n    int intra_idr_period, int ip_period,\n    unsigned long long *displaying_order,\n    int *frame_type)\n{\n    int encoding_order_gop = 0;\n\n    if (intra_period == 1) { /* all are I/IDR frames */\n        *displaying_order = encoding_order;\n        if (intra_idr_period == 0)\n            *frame_type = (encoding_order == 0) ? FRAME_IDR : FRAME_I;\n        else\n            *frame_type = (encoding_order % intra_idr_period == 0) ? FRAME_IDR : FRAME_I;\n        return;\n    }\n\n    if (intra_period == 0)\n        intra_idr_period = 0;\n\n    /* new sequence like\n     * IDR PPPPP IPPPPP\n     * IDR (PBB)(PBB)(IBB)(PBB)\n     */\n    encoding_order_gop = (intra_idr_period == 0) ? encoding_order :\n                         (encoding_order % (intra_idr_period + ((ip_period == 1) ? 0 : 1)));\n\n    if (encoding_order_gop == 0) { /* the first frame */\n        *frame_type = FRAME_IDR;\n        *displaying_order = encoding_order;\n    } else if (((encoding_order_gop - 1) % ip_period) != 0) { /* B frames */\n        *frame_type = FRAME_B;\n        *displaying_order = encoding_order - 1;\n    } else if ((intra_period != 0) && /* have I frames */\n               (encoding_order_gop >= 2) &&\n               ((ip_period == 1 && encoding_order_gop % (intra_period - 1) == 0) || /* for IDR PPPPP IPPPP */\n                /* for IDR (PBB)(PBB)(IBB) */\n                (ip_period >= 2 && ((encoding_order_gop - 1) / ip_period % ((intra_period - 1) / ip_period)) == 0))) {\n        *frame_type = FRAME_I;\n        *displaying_order = encoding_order + ip_period - 1;\n    } else {\n        *frame_type = FRAME_P;\n        *displaying_order = encoding_order + ip_period - 1;\n    }\n\n\n}\n\n\nstatic char *fourcc_to_string(int fourcc)\n{\n    switch (fourcc) {\n    case VA_FOURCC_NV12:\n        return \"NV12\";\n    case VA_FOURCC_IYUV:\n        return \"IYUV\";\n    case VA_FOURCC_YV12:\n        return \"YV12\";\n    case VA_FOURCC_UYVY:\n        return \"UYVY\";\n    default:\n        return \"Unknown\";\n    }\n}\n\nstatic int string_to_fourcc(char *str)\n{\n    int fourcc;\n\n    if (!strncmp(str, \"NV12\", 4))\n        fourcc = VA_FOURCC_NV12;\n    else if (!strncmp(str, \"IYUV\", 4))\n        fourcc = VA_FOURCC_IYUV;\n    else if (!strncmp(str, \"YV12\", 4))\n        fourcc = VA_FOURCC_YV12;\n    else if (!strncmp(str, \"UYVY\", 4))\n        fourcc = VA_FOURCC_UYVY;\n    else {\n        printf(\"Unknow FOURCC\\n\");\n        fourcc = -1;\n    }\n    return fourcc;\n}\n\n\nstatic char *rc_to_string(int rcmode)\n{\n    switch (rc_mode) {\n    case VA_RC_NONE:\n        return \"NONE\";\n    case VA_RC_CBR:\n        return \"CBR\";\n    case VA_RC_VBR:\n        return \"VBR\";\n    case VA_RC_VCM:\n        return \"VCM\";\n    case VA_RC_CQP:\n        return \"CQP\";\n    case VA_RC_VBR_CONSTRAINED:\n        return \"VBR_CONSTRAINED\";\n    default:\n        return \"Unknown\";\n    }\n}\n\nstatic int string_to_rc(char *str)\n{\n    int rc_mode;\n\n    if (!strncmp(str, \"NONE\", 4))\n        rc_mode = VA_RC_NONE;\n    else if (!strncmp(str, \"CBR\", 3))\n        rc_mode = VA_RC_CBR;\n    else if (!strncmp(str, \"VBR\", 3))\n        rc_mode = VA_RC_VBR;\n    else if (!strncmp(str, \"VCM\", 3))\n        rc_mode = VA_RC_VCM;\n    else if (!strncmp(str, \"CQP\", 3))\n        rc_mode = VA_RC_CQP;\n    else if (!strncmp(str, \"VBR_CONSTRAINED\", 15))\n        rc_mode = VA_RC_VBR_CONSTRAINED;\n    else {\n        printf(\"Unknown RC mode\\n\");\n        rc_mode = -1;\n    }\n    return rc_mode;\n}\n\n\nstatic int print_help(void)\n{\n    printf(\"./hevcencode <options>\\n\");\n    printf(\"   -w <width> -h <height>\\n\");\n    printf(\"   -framecount <frame number>\\n\");\n    printf(\"   -n <frame number>\\n\");\n    printf(\"      if set to 0 and srcyuv is set, the frame count is from srcuv file\\n\");\n    printf(\"   -o <coded file>\\n\");\n    printf(\"   -f <frame rate>\\n\");\n    printf(\"   --intra_period <number>\\n\");\n    printf(\"   --idr_period <number>\\n\");\n    printf(\"   --ip_period <number>\\n\");\n    printf(\"   --bitrate <bitrate> Kbits per second\\n\");\n    printf(\"   --initialqp <number>\\n\");\n    printf(\"   --minqp <number>\\n\");\n    printf(\"   --rcmode <NONE|CBR|VBR|VCM|CQP|VBR_CONTRAINED>\\n\");\n    printf(\"   --syncmode: sequentially upload source, encoding, save result, no multi-thread\\n\");\n    printf(\"   --srcyuv <filename> load YUV from a file\\n\");\n    printf(\"   --fourcc <NV12|IYUV|YV12> source YUV fourcc\\n\");\n    printf(\"   --recyuv <filename> save reconstructed YUV into a file\\n\");\n    printf(\"   --enablePSNR calculate PSNR of recyuv vs. srcyuv\\n\");\n    printf(\"   --profile 1: main 2 : main10\\n\");\n    printf(\"   --p2b 1: enable 0 : disalbe(defalut)\\n\");\n    printf(\"   --lowpower 1: enable 0 : disalbe(defalut)\\n\");\n    return 0;\n}\n\nstatic int process_cmdline(int argc, char *argv[])\n{\n    int c;\n    const struct option long_opts[] = {\n        {\"help\", no_argument, NULL, 0 },\n        {\"bitrate\", required_argument, NULL, 1 },\n        {\"minqp\", required_argument, NULL, 2 },\n        {\"initialqp\", required_argument, NULL, 3 },\n        {\"intra_period\", required_argument, NULL, 4 },\n        {\"idr_period\", required_argument, NULL, 5 },\n        {\"ip_period\", required_argument, NULL, 6 },\n        {\"rcmode\", required_argument, NULL, 7 },\n        {\"srcyuv\", required_argument, NULL, 9 },\n        {\"recyuv\", required_argument, NULL, 10 },\n        {\"fourcc\", required_argument, NULL, 11 },\n        {\"syncmode\", no_argument, NULL, 12 },\n        {\"enablePSNR\", no_argument, NULL, 13 },\n        {\"prit\", required_argument, NULL, 14 },\n        {\"priv\", required_argument, NULL, 15 },\n        {\"framecount\", required_argument, NULL, 16 },\n        {\"profile\", required_argument, NULL, 17 },\n        {\"p2b\", required_argument, NULL, 18 },\n        {\"lowpower\", required_argument, NULL, 19 },\n        {NULL, no_argument, NULL, 0 }\n    };\n    int long_index;\n\n    while ((c = getopt_long_only(argc, argv, \"w:h:n:f:o:?\", long_opts, &long_index)) != EOF) {\n        switch (c) {\n        case 'w':\n            frame_width = atoi(optarg);\n            break;\n        case 'h':\n            frame_height = atoi(optarg);\n            break;\n        case 'n':\n        case 16:\n            frame_count = atoi(optarg);\n            break;\n        case 'f':\n            frame_rate = atoi(optarg);\n            break;\n        case 'o':\n            if (coded_fn)\n                free(coded_fn);\n            coded_fn = strdup(optarg);\n            break;\n        case 0:\n            print_help();\n            exit(0);\n        case 1:\n            frame_bitrate = atoi(optarg)*1000;\n            break;\n        case 2:\n            minimal_qp = atoi(optarg);\n            break;\n        case 3:\n            initial_qp = atoi(optarg);\n            break;\n        case 4:\n            intra_period = atoi(optarg);\n            break;\n        case 5:\n            intra_idr_period = atoi(optarg);\n            break;\n        case 6:\n            ip_period = atoi(optarg);\n            break;\n        case 7:\n            rc_mode = string_to_rc(optarg);\n            if (rc_mode < 0) {\n                print_help();\n                exit(1);\n            }\n            break;\n        case 9:\n            if (srcyuv_fn)\n                free(srcyuv_fn);\n            srcyuv_fn = strdup(optarg);\n            break;\n        case 10:\n            if (recyuv_fn)\n                free(recyuv_fn);\n            recyuv_fn = strdup(optarg);\n            break;\n        case 11:\n            srcyuv_fourcc = string_to_fourcc(optarg);\n            if (srcyuv_fourcc <= 0) {\n                print_help();\n                exit(1);\n            }\n            break;\n        case 12:\n            encode_syncmode = 1;\n            break;\n        case 13:\n            calc_psnr = 1;\n            break;\n        case 14:\n            misc_priv_type = strtol(optarg, NULL, 0);\n            break;\n        case 15:\n            misc_priv_value = strtol(optarg, NULL, 0);\n            break;\n        case 17:\n            if (strncmp(optarg, \"1\", 1) == 0) {\n                real_hevc_profile = 1;\n                hevc_profile = VAProfileHEVCMain;\n            } else if (strncmp(optarg, \"2\", 1) == 0) {\n                real_hevc_profile = 2;\n                hevc_profile = VAProfileHEVCMain10;\n            } else\n                hevc_profile = 0;\n            break;\n        case 18:\n            p2b = atoi(optarg);\n            break;\n        case 19:\n            lowpower = atoi(optarg);\n            break;\n\n        case ':':\n        case '?':\n            print_help();\n            exit(0);\n        }\n    }\n\n    if (ip_period < 1) {\n        printf(\" ip_period must be greater than 0\\n\");\n        exit(0);\n    }\n    if (intra_period != 1 && (intra_period - 1) % ip_period != 0) {\n        printf(\" intra_period -1 must be a multiplier of ip_period\\n\");\n        exit(0);\n    }\n    if (intra_period != 0 && intra_idr_period % intra_period != 0) {\n        printf(\" intra_idr_period must be a multiplier of intra_period\\n\");\n        exit(0);\n    }\n    if (ip_period > 1) {\n        frame_count -= (frame_count - 1) % ip_period;\n    }\n\n    if (frame_bitrate == 0)\n        frame_bitrate = (long long int) frame_width * frame_height * 12 * frame_rate / 50;\n\n    /* open source file */\n    if (srcyuv_fn) {\n        srcyuv_fp = fopen(srcyuv_fn, \"r\");\n\n        if (srcyuv_fp == NULL)\n            printf(\"Open source YUV file %s failed, use auto-generated YUV data\\n\", srcyuv_fn);\n        else {\n            struct stat tmp;\n\n            int ret = fstat(fileno(srcyuv_fp), &tmp);\n            CHECK_CONDITION(ret == 0);\n            srcyuv_frames = tmp.st_size / (frame_width * frame_height * 1.5);\n            printf(\"Source YUV file %s with %llu frames\\n\", srcyuv_fn, srcyuv_frames);\n\n            if (frame_count == 0)\n                frame_count = srcyuv_frames;\n        }\n    }\n\n    /* open source file */\n    if (recyuv_fn) {\n        recyuv_fp = fopen(recyuv_fn, \"w+\");\n\n        if (recyuv_fp == NULL)\n            printf(\"Open reconstructed YUV file %s failed\\n\", recyuv_fn);\n    }\n\n    if (coded_fn == NULL) {\n        struct stat buf;\n        if (stat(\"/tmp\", &buf) == 0)\n            coded_fn = strdup(\"/tmp/test.265\");\n        else if (stat(\"/sdcard\", &buf) == 0)\n            coded_fn = strdup(\"/sdcard/test.265\");\n        else\n            coded_fn = strdup(\"./test.265\");\n    }\n\n    /* store coded data into a file */\n    if (coded_fn) {\n        coded_fp = fopen(coded_fn, \"w+\");\n    } else {\n        printf(\"Copy file string failed\");\n        exit(1);\n    }\n    if (coded_fp == NULL) {\n        printf(\"Open file %s failed, exit\\n\", coded_fn);\n        exit(1);\n    }\n\n    frame_width_aligned = (frame_width + 63) & (~63);\n    frame_height_aligned = (frame_height + 63) & (~63);\n    if (frame_width != frame_width_aligned ||\n        frame_height != frame_height_aligned) {\n        printf(\"Source frame is %dx%d and will code clip to %dx%d with crop\\n\",\n               frame_width, frame_height,\n               frame_width_aligned, frame_height_aligned\n              );\n    }\n\n    return 0;\n}\n\nstatic int init_va(void)\n{\n    VAProfile profile_list[] = {VAProfileHEVCMain, VAProfileHEVCMain10};\n    VAEntrypoint *entrypoints;\n    int num_entrypoints, slice_entrypoint;\n    int support_encode = 0;\n    int support_lpEntryPoint = 0;\n    int major_ver, minor_ver;\n    VAStatus va_status;\n    unsigned int i;\n\n    va_dpy = va_open_display();\n    va_status = vaInitialize(va_dpy, &major_ver, &minor_ver);\n    CHECK_VASTATUS(va_status, \"vaInitialize\");\n\n    num_entrypoints = vaMaxNumEntrypoints(va_dpy);\n    entrypoints = malloc(num_entrypoints * sizeof(*entrypoints));\n    if (!entrypoints) {\n        fprintf(stderr, \"error: failed to initialize VA entrypoints array\\n\");\n        exit(1);\n    }\n\n    /* use the highest profile */\n    for (i = 0; i < sizeof(profile_list) / sizeof(profile_list[0]); i++) {\n        if ((hevc_profile != ~0) && hevc_profile != profile_list[i])\n            continue;\n\n        hevc_profile = profile_list[i];\n        vaQueryConfigEntrypoints(va_dpy, hevc_profile, entrypoints, &num_entrypoints);\n        for (slice_entrypoint = 0; slice_entrypoint < num_entrypoints; slice_entrypoint++) {\n            if (entrypoints[slice_entrypoint] == VAEntrypointEncSlice) {\n                support_encode = 1;\n            }\n            else if (entrypoints[slice_entrypoint] == VAEntrypointEncSliceLP) {\n                support_encode = 1;\n                support_lpEntryPoint = 1;\n            }\n        }\n        if (support_encode == 1)\n            break;\n    }\n\n    if (support_encode == 0) {\n        printf(\"Can't find VAEntrypointEncSlice for HEVC profiles\\n\");\n        exit(1);\n    } else {\n        switch (hevc_profile) {\n        case VAProfileHEVCMain:\n            hevc_profile = VAProfileHEVCMain;\n            printf(\"Use profile VAProfileHEVCMain\\n\");\n            break;\n\n        case VAProfileHEVCMain10:\n            hevc_profile = VAProfileHEVCMain10;\n            printf(\"Use profile VAProfileHEVCMain10\\n\");\n            break;\n        default:\n            printf(\"unknow profile. Set to Main\");\n            hevc_profile = VAProfileHEVCMain;\n            constraint_set_flag |= (1 << 0 | 1 << 1); /* Annex A.2.1 & A.2.2 */\n            ip_period = 1;\n            break;\n        }\n    }\n\n    /* find out the format for the render target, and rate control mode */\n    for (i = 0; i < VAConfigAttribTypeMax; i++)\n        attrib[i].type = i;\n\n    if (lowpower)\n    {\n        LCU_SIZE = 64;\n        if (support_lpEntryPoint == 1) {\n            entryPoint = VAEntrypointEncSliceLP;\n        }\n    }\n\n    va_status = vaGetConfigAttributes(va_dpy, hevc_profile, entryPoint,\n                                      &attrib[0], VAConfigAttribTypeMax);\n    CHECK_VASTATUS(va_status, \"vaGetConfigAttributes\");\n    /* check the interested configattrib */\n    if ((attrib[VAConfigAttribRTFormat].value & VA_RT_FORMAT_YUV420) == 0) {\n        printf(\"Not find desired YUV420 RT format\\n\");\n        exit(1);\n    } else {\n        config_attrib[config_attrib_num].type = VAConfigAttribRTFormat;\n        config_attrib[config_attrib_num].value = VA_RT_FORMAT_YUV420;\n        config_attrib_num++;\n    }\n\n    if (attrib[VAConfigAttribRateControl].value != VA_ATTRIB_NOT_SUPPORTED) {\n        int tmp = attrib[VAConfigAttribRateControl].value;\n\n        printf(\"Support rate control mode (0x%x):\", tmp);\n\n        if (tmp & VA_RC_NONE)\n            printf(\"NONE \");\n        if (tmp & VA_RC_CBR)\n            printf(\"CBR \");\n        if (tmp & VA_RC_VBR)\n            printf(\"VBR \");\n        if (tmp & VA_RC_VCM)\n            printf(\"VCM \");\n        if (tmp & VA_RC_CQP)\n            printf(\"CQP \");\n        if (tmp & VA_RC_VBR_CONSTRAINED)\n            printf(\"VBR_CONSTRAINED \");\n\n        printf(\"\\n\");\n\n        if (rc_mode == -1 || !(rc_mode & tmp))  {\n            if (rc_mode != -1) {\n                printf(\"Warning: Don't support the specified RateControl mode: %s!!!, switch to \", rc_to_string(rc_mode));\n            }\n\n            for (i = 0; i < sizeof(rc_default_modes) / sizeof(rc_default_modes[0]); i++) {\n                if (rc_default_modes[i] & tmp) {\n                    rc_mode = rc_default_modes[i];\n                    break;\n                }\n            }\n\n            printf(\"RateControl mode: %s\\n\", rc_to_string(rc_mode));\n        }\n\n        config_attrib[config_attrib_num].type = VAConfigAttribRateControl;\n        config_attrib[config_attrib_num].value = rc_mode;\n        config_attrib_num++;\n    }\n\n\n    if (attrib[VAConfigAttribEncPackedHeaders].value != VA_ATTRIB_NOT_SUPPORTED) {\n        int tmp = attrib[VAConfigAttribEncPackedHeaders].value;\n\n        printf(\"Support VAConfigAttribEncPackedHeaders\\n\");\n\n        hevc_packedheader = 1;\n        config_attrib[config_attrib_num].type = VAConfigAttribEncPackedHeaders;\n        config_attrib[config_attrib_num].value = VA_ENC_PACKED_HEADER_NONE;\n\n        if (tmp & VA_ENC_PACKED_HEADER_SEQUENCE) {\n            printf(\"Support packed sequence headers\\n\");\n            config_attrib[config_attrib_num].value |= VA_ENC_PACKED_HEADER_SEQUENCE;\n        }\n\n        if (tmp & VA_ENC_PACKED_HEADER_PICTURE) {\n            printf(\"Support packed picture headers\\n\");\n            config_attrib[config_attrib_num].value |= VA_ENC_PACKED_HEADER_PICTURE;\n        }\n\n        if (tmp & VA_ENC_PACKED_HEADER_SLICE) {\n            printf(\"Support packed slice headers\\n\");\n            config_attrib[config_attrib_num].value |= VA_ENC_PACKED_HEADER_SLICE;\n        }\n\n        if (tmp & VA_ENC_PACKED_HEADER_MISC) {\n            printf(\"Support packed misc headers\\n\");\n            config_attrib[config_attrib_num].value |= VA_ENC_PACKED_HEADER_MISC;\n        }\n\n        enc_packed_header_idx = config_attrib_num;\n        config_attrib_num++;\n    }\n\n    if (attrib[VAConfigAttribEncInterlaced].value != VA_ATTRIB_NOT_SUPPORTED) {\n        int tmp = attrib[VAConfigAttribEncInterlaced].value;\n\n        printf(\"Support VAConfigAttribEncInterlaced\\n\");\n\n        if (tmp & VA_ENC_INTERLACED_FRAME)\n            printf(\"support VA_ENC_INTERLACED_FRAME\\n\");\n        if (tmp & VA_ENC_INTERLACED_FIELD)\n            printf(\"Support VA_ENC_INTERLACED_FIELD\\n\");\n        if (tmp & VA_ENC_INTERLACED_MBAFF)\n            printf(\"Support VA_ENC_INTERLACED_MBAFF\\n\");\n        if (tmp & VA_ENC_INTERLACED_PAFF)\n            printf(\"Support VA_ENC_INTERLACED_PAFF\\n\");\n\n        config_attrib[config_attrib_num].type = VAConfigAttribEncInterlaced;\n        config_attrib[config_attrib_num].value = VA_ENC_PACKED_HEADER_NONE;\n        config_attrib_num++;\n    }\n\n    if (attrib[VAConfigAttribEncMaxRefFrames].value != VA_ATTRIB_NOT_SUPPORTED) {\n        hevc_maxref = attrib[VAConfigAttribEncMaxRefFrames].value;\n\n        printf(\"Support %d RefPicList0 and %d RefPicList1\\n\",\n               hevc_maxref & 0xffff, (hevc_maxref >> 16) & 0xffff);\n    }\n\n    if (attrib[VAConfigAttribEncMaxSlices].value != VA_ATTRIB_NOT_SUPPORTED)\n        printf(\"Support %d slices\\n\", attrib[VAConfigAttribEncMaxSlices].value);\n\n    if (attrib[VAConfigAttribEncSliceStructure].value != VA_ATTRIB_NOT_SUPPORTED) {\n        int tmp = attrib[VAConfigAttribEncSliceStructure].value;\n\n        printf(\"Support VAConfigAttribEncSliceStructure\\n\");\n\n        if (tmp & VA_ENC_SLICE_STRUCTURE_ARBITRARY_ROWS)\n            printf(\"Support VA_ENC_SLICE_STRUCTURE_ARBITRARY_ROWS\\n\");\n        if (tmp & VA_ENC_SLICE_STRUCTURE_POWER_OF_TWO_ROWS)\n            printf(\"Support VA_ENC_SLICE_STRUCTURE_POWER_OF_TWO_ROWS\\n\");\n        if (tmp & VA_ENC_SLICE_STRUCTURE_ARBITRARY_MACROBLOCKS)\n            printf(\"Support VA_ENC_SLICE_STRUCTURE_ARBITRARY_MACROBLOCKS\\n\");\n    }\n    if (attrib[VAConfigAttribEncMacroblockInfo].value != VA_ATTRIB_NOT_SUPPORTED) {\n        printf(\"Support VAConfigAttribEncMacroblockInfo\\n\");\n    }\n    if (attrib[VAConfigAttribEncHEVCBlockSizes].value != VA_ATTRIB_NOT_SUPPORTED) {\n        printf(\"Support VAConfigAttribEncHEVCBlockSizes\\n\");\n        uint32_t tmp = attrib[VAConfigAttribEncHEVCBlockSizes].value;\n        VAConfigAttribValEncHEVCBlockSizes bs = { .value = tmp };\n        block_sizes.log2_max_coding_tree_block_size_minus3 = bs.bits.log2_max_coding_tree_block_size_minus3;\n        block_sizes.log2_min_coding_tree_block_size_minus3 = bs.bits.log2_min_coding_tree_block_size_minus3;\n        block_sizes.log2_min_luma_coding_block_size_minus3 = bs.bits.log2_min_luma_coding_block_size_minus3;\n        block_sizes.log2_max_luma_transform_block_size_minus2 = bs.bits.log2_max_luma_transform_block_size_minus2;\n        block_sizes.log2_min_luma_transform_block_size_minus2 = bs.bits.log2_min_luma_transform_block_size_minus2;\n        block_sizes.log2_max_pcm_coding_block_size_minus3 = bs.bits.log2_max_pcm_coding_block_size_minus3;\n        block_sizes.log2_min_pcm_coding_block_size_minus3 = bs.bits.log2_min_pcm_coding_block_size_minus3;\n        block_sizes.max_max_transform_hierarchy_depth_inter = bs.bits.max_max_transform_hierarchy_depth_inter;\n        block_sizes.min_max_transform_hierarchy_depth_inter = bs.bits.min_max_transform_hierarchy_depth_inter;\n        block_sizes.max_max_transform_hierarchy_depth_intra = bs.bits.max_max_transform_hierarchy_depth_intra;\n        block_sizes.min_max_transform_hierarchy_depth_intra = bs.bits.min_max_transform_hierarchy_depth_intra;\n\n        use_block_sizes = 1;\n        config_attrib[config_attrib_num].type = VAConfigAttribEncHEVCBlockSizes;\n        config_attrib[config_attrib_num].value = tmp;\n        config_attrib_num++;\n    }\n    if (attrib[VAConfigAttribEncHEVCFeatures].value != VA_ATTRIB_NOT_SUPPORTED) {\n        printf(\"Support VAConfigAttribEncHEVCFeatures\\n\");\n        uint32_t tmp = attrib[VAConfigAttribEncHEVCFeatures].value;\n        VAConfigAttribValEncHEVCFeatures f = { .value = tmp };\n        features.amp = f.bits.amp;\n        features.constrained_intra_pred = f.bits.constrained_intra_pred;\n        features.cu_qp_delta = f.bits.cu_qp_delta;\n        features.deblocking_filter_disable = f.bits.deblocking_filter_disable;\n        features.dependent_slices = f.bits.dependent_slices;\n        features.pcm = f.bits.pcm;\n        features.sao = f.bits.sao;\n        features.scaling_lists = f.bits.scaling_lists;\n        features.separate_colour_planes = f.bits.separate_colour_planes;\n        features.sign_data_hiding = f.bits.sign_data_hiding;\n        features.strong_intra_smoothing = f.bits.strong_intra_smoothing;\n        features.temporal_mvp = f.bits.temporal_mvp;\n        features.transform_skip = f.bits.transform_skip;\n        features.transquant_bypass = f.bits.transquant_bypass;\n        features.weighted_prediction = f.bits.weighted_prediction;\n\n        use_features = 1;\n        config_attrib[config_attrib_num].type = VAConfigAttribEncHEVCFeatures;\n        config_attrib[config_attrib_num].value = attrib[VAConfigAttribEncHEVCFeatures].value;\n        config_attrib_num++;\n    }\n\n    free(entrypoints);\n    return 0;\n}\n\nstatic int setup_encode()\n{\n    VAStatus va_status;\n    VASurfaceID *tmp_surfaceid;\n    int codedbuf_size, i;\n\n    va_status = vaCreateConfig(va_dpy, hevc_profile, entryPoint,\n                               &config_attrib[0], config_attrib_num, &config_id);\n    CHECK_VASTATUS(va_status, \"vaCreateConfig\");\n\n    /* create source surfaces */\n    va_status = vaCreateSurfaces(va_dpy,\n                                 VA_RT_FORMAT_YUV420, frame_width_aligned, frame_height_aligned,\n                                 &src_surface[0], SURFACE_NUM,\n                                 NULL, 0);\n    CHECK_VASTATUS(va_status, \"vaCreateSurfaces\");\n\n    /* create reference surfaces */\n    va_status = vaCreateSurfaces(\n                    va_dpy,\n                    VA_RT_FORMAT_YUV420, frame_width_aligned, frame_height_aligned,\n                    &ref_surface[0], SURFACE_NUM,\n                    NULL, 0\n                );\n    CHECK_VASTATUS(va_status, \"vaCreateSurfaces\");\n\n    tmp_surfaceid = calloc(2 * SURFACE_NUM, sizeof(VASurfaceID));\n    if (tmp_surfaceid) {\n        memcpy(tmp_surfaceid, src_surface, SURFACE_NUM * sizeof(VASurfaceID));\n        memcpy(tmp_surfaceid + SURFACE_NUM, ref_surface, SURFACE_NUM * sizeof(VASurfaceID));\n    }\n\n    /* Create a context for this encode pipe */\n    va_status = vaCreateContext(va_dpy, config_id,\n                                frame_width_aligned, frame_height_aligned,\n                                VA_PROGRESSIVE,\n                                tmp_surfaceid, 2 * SURFACE_NUM,\n                                &context_id);\n    CHECK_VASTATUS(va_status, \"vaCreateContext\");\n    free(tmp_surfaceid);\n\n    codedbuf_size = ((long long int) frame_width_aligned * frame_height_aligned * 400) / (16 * 16);\n\n    for (i = 0; i < SURFACE_NUM; i++) {\n        /* create coded buffer once for all\n         * other VA buffers which won't be used again after vaRenderPicture.\n         * so APP can always vaCreateBuffer for every frame\n         * but coded buffer need to be mapped and accessed after vaRenderPicture/vaEndPicture\n         * so VA won't maintain the coded buffer\n         */\n        va_status = vaCreateBuffer(va_dpy, context_id, VAEncCodedBufferType,\n                                   codedbuf_size, 1, NULL, &coded_buf[i]);\n        CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n    }\n\n    return 0;\n}\n\n\n\n#define partition(ref, field, key, ascending)   \\\n    while (i <= j) {                            \\\n        if (ascending) {                        \\\n            while (ref[i].field < key)          \\\n                i++;                            \\\n            while (ref[j].field > key)          \\\n                j--;                            \\\n        } else {                                \\\n            while (ref[i].field > key)          \\\n                i++;                            \\\n            while (ref[j].field < key)          \\\n                j--;                            \\\n        }                                       \\\n        if (i <= j) {                           \\\n            tmp = ref[i];                       \\\n            ref[i] = ref[j];                    \\\n            ref[j] = tmp;                       \\\n            i++;                                \\\n            j--;                                \\\n        }                                       \\\n    }                                           \\\n\nstatic void sort_one(VAPictureHEVC ref[], int left, int right,\n                     int ascending)\n{\n    VAPictureHEVC tmp;\n    int i = left, j = right;\n    unsigned int key = ref[(left + right) / 2].pic_order_cnt;\n    partition(ref, pic_order_cnt, (signed int)key, ascending);\n\n    /* recursion */\n    if (left < j)\n        sort_one(ref, left, j, ascending);\n\n    if (i < right)\n        sort_one(ref, i, right, ascending);\n}\n\nstatic void sort_two(VAPictureHEVC ref[], int left, int right, unsigned int key,\n                     int partition_ascending, int list0_ascending, int list1_ascending)\n{\n    VAPictureHEVC tmp;\n    int i = left, j = right;\n\n    partition(ref, pic_order_cnt, (signed int)key, partition_ascending);\n\n    sort_one(ref, left, i - 1, list0_ascending);\n    sort_one(ref, j + 1, right, list1_ascending);\n}\n\nstatic int update_ReferenceFrames(void)\n{\n    int i;\n\n    if (current_frame_type == FRAME_B)\n        return 0;\n\n    numShortTerm++;\n    if (numShortTerm > num_ref_frames)\n        numShortTerm = num_ref_frames;\n    for (i = numShortTerm - 1; i > 0; i--)\n        ReferenceFrames[i] = ReferenceFrames[i - 1];\n    ReferenceFrames[0] = CurrentCurrPic;\n\n    return 0;\n}\n\nstatic int update_RefPicList(void)\n{\n    unsigned int current_poc = CurrentCurrPic.pic_order_cnt;\n\n    if (current_frame_type == FRAME_P) {\n        memcpy(RefPicList0_P, ReferenceFrames, numShortTerm * sizeof(VAPictureHEVC));\n        sort_one(RefPicList0_P, 0, numShortTerm - 1, 0);\n    }\n\n    if (current_frame_type == FRAME_B) {\n        memcpy(RefPicList0_B, ReferenceFrames, numShortTerm * sizeof(VAPictureHEVC));\n        sort_two(RefPicList0_B, 0, numShortTerm - 1, current_poc, 1, 0, 1);\n\n        memcpy(RefPicList1_B, ReferenceFrames, numShortTerm * sizeof(VAPictureHEVC));\n        sort_two(RefPicList1_B, 0, numShortTerm - 1, current_poc, 0, 1, 0);\n    }\n\n    return 0;\n}\n\n\nstatic int render_sequence(struct SeqParamSet *sps)\n{\n\n    VABufferID seq_param_buf = VA_INVALID_ID;\n    VABufferID rc_param_buf = VA_INVALID_ID;\n    VABufferID misc_param_tmpbuf = VA_INVALID_ID;\n    VABufferID render_id[2] = {VA_INVALID_ID};\n    VAStatus va_status;\n    VAEncMiscParameterBuffer *misc_param, *misc_param_tmp;\n    VAEncMiscParameterRateControl *misc_rate_ctrl;\n    seq_param.general_profile_idc = sps->ptps.general_profile_idc;\n    seq_param.general_level_idc = sps->ptps.general_level_idc;\n    seq_param.general_tier_flag = (uint8_t)(sps->ptps.general_tier_flag);\n\n    seq_param.intra_period = intra_period;\n    seq_param.intra_idr_period = intra_idr_period;\n    seq_param.ip_period = ip_period;\n\n    seq_param.bits_per_second = frame_bitrate;\n    seq_param.pic_width_in_luma_samples = sps->pic_width_in_luma_samples;\n    seq_param.pic_height_in_luma_samples = sps->pic_height_in_luma_samples;\n\n    seq_param.seq_fields.bits.chroma_format_idc = 1;\n    seq_param.seq_fields.bits.separate_colour_plane_flag = 0;\n    seq_param.seq_fields.bits.bit_depth_luma_minus8 = sps->bit_depth_luma_minus8;\n    seq_param.seq_fields.bits.bit_depth_chroma_minus8 = sps->bit_depth_chroma_minus8;\n    seq_param.seq_fields.bits.scaling_list_enabled_flag = sps->scaling_list_enabled_flag;\n    seq_param.seq_fields.bits.strong_intra_smoothing_enabled_flag = sps->strong_intra_smoothing_enabled_flag;\n    seq_param.seq_fields.bits.amp_enabled_flag = sps->amp_enabled_flag;\n    seq_param.seq_fields.bits.sample_adaptive_offset_enabled_flag = sps->sample_adaptive_offset_enabled_flag;\n    seq_param.seq_fields.bits.pcm_enabled_flag = sps->pcm_enabled_flag;\n    seq_param.seq_fields.bits.pcm_loop_filter_disabled_flag = sps->pcm_loop_filter_disabled_flag;\n    seq_param.seq_fields.bits.sps_temporal_mvp_enabled_flag = sps->sps_temporal_mvp_enabled_flag;\n\n    seq_param.log2_min_luma_coding_block_size_minus3 = sps->log2_min_luma_coding_block_size_minus3;\n    seq_param.log2_diff_max_min_luma_coding_block_size = sps->log2_diff_max_min_luma_coding_block_size;\n    seq_param.log2_min_transform_block_size_minus2 = sps->log2_min_luma_transform_block_size_minus2;\n    seq_param.log2_diff_max_min_transform_block_size = sps->log2_diff_max_min_luma_transform_block_size;\n    seq_param.max_transform_hierarchy_depth_inter = sps->max_transform_hierarchy_depth_inter;\n    seq_param.max_transform_hierarchy_depth_intra = sps->max_transform_hierarchy_depth_intra;\n\n    seq_param.vui_parameters_present_flag = sps->vui_parameters_present_flag;\n\n    va_status = vaCreateBuffer(va_dpy, context_id,\n                               VAEncSequenceParameterBufferType,\n                               sizeof(seq_param), 1, &seq_param, &seq_param_buf);\n    CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n    va_status = vaCreateBuffer(va_dpy, context_id,\n                               VAEncMiscParameterBufferType,\n                               sizeof(VAEncMiscParameterBuffer) + sizeof(VAEncMiscParameterRateControl),\n                               1, NULL, &rc_param_buf);\n    CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n    vaMapBuffer(va_dpy, rc_param_buf, (void **)&misc_param);\n    misc_param->type = VAEncMiscParameterTypeRateControl;\n    misc_rate_ctrl = (VAEncMiscParameterRateControl *)misc_param->data;\n    memset(misc_rate_ctrl, 0, sizeof(*misc_rate_ctrl));\n    misc_rate_ctrl->bits_per_second = frame_bitrate;\n    misc_rate_ctrl->target_percentage = 66;\n    misc_rate_ctrl->window_size = 1000;\n    misc_rate_ctrl->initial_qp = initial_qp;\n    misc_rate_ctrl->min_qp = minimal_qp;\n    misc_rate_ctrl->basic_unit_size = 0;\n    vaUnmapBuffer(va_dpy, rc_param_buf);\n\n    render_id[0] = seq_param_buf;\n    render_id[1] = rc_param_buf;\n\n    va_status = vaRenderPicture(va_dpy, context_id, &render_id[0], 2);\n    CHECK_VASTATUS(va_status, \"vaRenderPicture\");\n    if (seq_param_buf != VA_INVALID_ID) {\n        vaDestroyBuffer(va_dpy, seq_param_buf);\n        seq_param_buf = VA_INVALID_ID;\n    }\n\n    if (rc_param_buf != VA_INVALID_ID) {\n        vaDestroyBuffer(va_dpy, rc_param_buf);\n        rc_param_buf = VA_INVALID_ID;\n    }\n\n\n    if (misc_priv_type != 0) {\n        va_status = vaCreateBuffer(va_dpy, context_id,\n                                   VAEncMiscParameterBufferType,\n                                   sizeof(VAEncMiscParameterBuffer),\n                                   1, NULL, &misc_param_tmpbuf);\n        CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n        vaMapBuffer(va_dpy, misc_param_tmpbuf, (void **)&misc_param_tmp);\n        misc_param_tmp->type = misc_priv_type;\n        misc_param_tmp->data[0] = misc_priv_value;\n        vaUnmapBuffer(va_dpy, misc_param_tmpbuf);\n\n        va_status = vaRenderPicture(va_dpy, context_id, &misc_param_tmpbuf, 1);\n    }\n\n    return 0;\n}\n\nstatic int render_picture(struct PicParamSet *pps)\n{\n    VABufferID pic_param_buf = VA_INVALID_ID;\n    VAStatus va_status;\n    int i = 0;\n\n    memcpy(pic_param.reference_frames, ReferenceFrames, numShortTerm * sizeof(VAPictureHEVC));\n    for (i = numShortTerm; i < SURFACE_NUM - 1; i++) {\n        pic_param.reference_frames[i].picture_id = VA_INVALID_SURFACE;\n        pic_param.reference_frames[i].flags = VA_PICTURE_HEVC_INVALID;\n    }\n\n    pic_param.last_picture = 0;\n    pic_param.last_picture |= ((current_frame_encoding + 1) % intra_period == 0) ? HEVC_LAST_PICTURE_EOSEQ : 0;\n    pic_param.last_picture |= ((current_frame_encoding + 1) == frame_count) ? HEVC_LAST_PICTURE_EOSTREAM : 0;\n    pic_param.coded_buf = coded_buf[current_slot];\n\n    pic_param.decoded_curr_pic.picture_id = ref_surface[current_slot];\n    pic_param.decoded_curr_pic.pic_order_cnt = calc_poc((current_frame_display - current_IDR_display) % MaxPicOrderCntLsb) * 2;\n    pic_param.decoded_curr_pic.flags = 0;\n    CurrentCurrPic = pic_param.decoded_curr_pic;\n\n    pic_param.collocated_ref_pic_index = pps->num_ref_idx_l0_default_active_minus1;\n    pic_param.pic_init_qp = pps->init_qp_minus26 + 26;\n    pic_param.diff_cu_qp_delta_depth = pps->diff_cu_qp_delta_depth;\n    pic_param.pps_cb_qp_offset = pps->pps_cb_qp_offset;\n    pic_param.pps_cr_qp_offset = pps->pps_cr_qp_offset;\n\n    pic_param.num_tile_columns_minus1 = pps->num_tile_columns_minus1;\n    pic_param.num_tile_rows_minus1 = pps->num_tile_rows_minus1;\n    for (i = 0; i <= (unsigned int)(pic_param.num_tile_columns_minus1); i++) {\n        pic_param.column_width_minus1[i] = 0;\n    }\n    for (i = 0; i <= (unsigned int)(pic_param.num_tile_rows_minus1); i++) {\n        pic_param.row_height_minus1[i] = 0;\n    }\n\n    pic_param.log2_parallel_merge_level_minus2 = pps->log2_parallel_merge_level_minus2;\n    pic_param.ctu_max_bitsize_allowed = 0;\n    pic_param.num_ref_idx_l0_default_active_minus1 = pps->num_ref_idx_l0_default_active_minus1;\n    pic_param.num_ref_idx_l1_default_active_minus1 = pps->num_ref_idx_l1_default_active_minus1;\n    pic_param.slice_pic_parameter_set_id = 0;\n    pic_param.pic_fields.bits.idr_pic_flag         = (current_frame_type == FRAME_IDR);\n    pic_param.pic_fields.bits.coding_type          = current_frame_type == FRAME_IDR ? FRAME_I : current_frame_type;\n    pic_param.pic_fields.bits.reference_pic_flag   = current_frame_type != FRAME_B ? 1 : 0;\n    pic_param.pic_fields.bits.dependent_slice_segments_enabled_flag = pps->dependent_slice_segments_enabled_flag;\n    pic_param.pic_fields.bits.sign_data_hiding_enabled_flag = pps->sign_data_hiding_enabled_flag;\n    pic_param.pic_fields.bits.constrained_intra_pred_flag = pps->constrained_intra_pred_flag;\n    pic_param.pic_fields.bits.transform_skip_enabled_flag = pps->transform_skip_enabled_flag;\n    pic_param.pic_fields.bits.cu_qp_delta_enabled_flag = pps->cu_qp_delta_enabled_flag;\n    pic_param.pic_fields.bits.weighted_pred_flag = pps->weighted_pred_flag;\n    pic_param.pic_fields.bits.weighted_bipred_flag = pps->weighted_bipred_flag;\n    pic_param.pic_fields.bits.transquant_bypass_enabled_flag = pps->transquant_bypass_enabled_flag;\n    pic_param.pic_fields.bits.tiles_enabled_flag = pps->tiles_enabled_flag;\n    pic_param.pic_fields.bits.entropy_coding_sync_enabled_flag = pps->entropy_coding_sync_enabled_flag;\n    pic_param.pic_fields.bits.loop_filter_across_tiles_enabled_flag = pps->loop_filter_across_tiles_enabled_flag;\n    pic_param.pic_fields.bits.pps_loop_filter_across_slices_enabled_flag = pps->pps_loop_filter_across_slices_enabled_flag;\n    pic_param.pic_fields.bits.scaling_list_data_present_flag = pps->pps_scaling_list_data_present_flag;\n\n    va_status = vaCreateBuffer(va_dpy, context_id, VAEncPictureParameterBufferType,\n                               sizeof(pic_param), 1, &pic_param, &pic_param_buf);\n    CHECK_VASTATUS(va_status, \"vaCreateBuffer\");;\n\n    va_status = vaRenderPicture(va_dpy, context_id, &pic_param_buf, 1);\n    CHECK_VASTATUS(va_status, \"vaRenderPicture\");\n\n    if (pic_param_buf != VA_INVALID_ID) {\n        vaDestroyBuffer(va_dpy, pic_param_buf);\n        pic_param_buf = VA_INVALID_ID;\n    }\n\n    return 0;\n}\n\nstatic int render_packedvideo(void)\n{\n\n    VAEncPackedHeaderParameterBuffer packedheader_param_buffer;\n    VABufferID packedvideo_para_bufid = VA_INVALID_ID;\n    VABufferID packedvideo_data_bufid = VA_INVALID_ID;\n    VABufferID render_id[2] = {VA_INVALID_ID};\n    unsigned int length_in_bits;\n    unsigned char *packedvideo_buffer = NULL;\n    VAStatus va_status;\n\n    length_in_bits = build_packed_video_buffer(&packedvideo_buffer);\n\n    packedheader_param_buffer.type = VAEncPackedHeaderSequence;\n\n    packedheader_param_buffer.bit_length = length_in_bits; /*length_in_bits*/\n    packedheader_param_buffer.has_emulation_bytes = 0;\n    va_status = vaCreateBuffer(va_dpy,\n                               context_id,\n                               VAEncPackedHeaderParameterBufferType,\n                               sizeof(packedheader_param_buffer), 1, &packedheader_param_buffer,\n                               &packedvideo_para_bufid);\n    CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n    va_status = vaCreateBuffer(va_dpy,\n                               context_id,\n                               VAEncPackedHeaderDataBufferType,\n                               (length_in_bits + 7) / 8, 1, packedvideo_buffer,\n                               &packedvideo_data_bufid);\n    CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n    render_id[0] = packedvideo_para_bufid;\n    render_id[1] = packedvideo_data_bufid;\n    va_status = vaRenderPicture(va_dpy, context_id, render_id, 2);\n    CHECK_VASTATUS(va_status, \"vaRenderPicture\");\n\n    free(packedvideo_buffer);\n\n    if (packedvideo_para_bufid != VA_INVALID_ID) {\n        vaDestroyBuffer(va_dpy, packedvideo_para_bufid);\n        packedvideo_para_bufid = VA_INVALID_ID;\n    }\n    if (packedvideo_data_bufid != VA_INVALID_ID) {\n        vaDestroyBuffer(va_dpy, packedvideo_data_bufid);\n        packedvideo_data_bufid = VA_INVALID_ID;\n    }\n\n    return 0;\n}\n\nstatic int render_packedsequence(void)\n{\n    VAEncPackedHeaderParameterBuffer packedheader_param_buffer;\n    VABufferID packedseq_para_bufid = VA_INVALID_ID;\n    VABufferID packedseq_data_bufid = VA_INVALID_ID;\n    VABufferID render_id[2] = {VA_INVALID_ID};\n    unsigned int length_in_bits;\n    unsigned char *packedseq_buffer = NULL;\n    VAStatus va_status;\n\n    length_in_bits = build_packed_seq_buffer(&packedseq_buffer);\n\n    packedheader_param_buffer.type = VAEncPackedHeaderSequence;\n\n    packedheader_param_buffer.bit_length = length_in_bits; /*length_in_bits*/\n    packedheader_param_buffer.has_emulation_bytes = 0;\n    va_status = vaCreateBuffer(va_dpy,\n                               context_id,\n                               VAEncPackedHeaderParameterBufferType,\n                               sizeof(packedheader_param_buffer), 1, &packedheader_param_buffer,\n                               &packedseq_para_bufid);\n    CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n    va_status = vaCreateBuffer(va_dpy,\n                               context_id,\n                               VAEncPackedHeaderDataBufferType,\n                               (length_in_bits + 7) / 8, 1, packedseq_buffer,\n                               &packedseq_data_bufid);\n    CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n    render_id[0] = packedseq_para_bufid;\n    render_id[1] = packedseq_data_bufid;\n    va_status = vaRenderPicture(va_dpy, context_id, render_id, 2);\n    CHECK_VASTATUS(va_status, \"vaRenderPicture\");\n\n    free(packedseq_buffer);\n\n    if (packedseq_para_bufid != VA_INVALID_ID) {\n        vaDestroyBuffer(va_dpy, packedseq_para_bufid);\n        packedseq_para_bufid = VA_INVALID_ID;\n    }\n    if (packedseq_data_bufid != VA_INVALID_ID) {\n        vaDestroyBuffer(va_dpy, packedseq_data_bufid);\n        packedseq_para_bufid = VA_INVALID_ID;\n    }\n\n    return 0;\n}\n\n\nstatic int render_packedpicture(void)\n{\n    VAEncPackedHeaderParameterBuffer packedheader_param_buffer;\n    VABufferID packedpic_para_bufid = VA_INVALID_ID;\n    VABufferID packedpic_data_bufid = VA_INVALID_ID;\n    VABufferID render_id[2] = {VA_INVALID_ID};\n    unsigned int length_in_bits;\n    unsigned char *packedpic_buffer = NULL;\n    VAStatus va_status;\n\n    length_in_bits = build_packed_pic_buffer(&packedpic_buffer);\n    packedheader_param_buffer.type = VAEncPackedHeaderPicture;\n    packedheader_param_buffer.bit_length = length_in_bits;\n    packedheader_param_buffer.has_emulation_bytes = 0;\n\n    va_status = vaCreateBuffer(va_dpy,\n                               context_id,\n                               VAEncPackedHeaderParameterBufferType,\n                               sizeof(packedheader_param_buffer), 1, &packedheader_param_buffer,\n                               &packedpic_para_bufid);\n    CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n    va_status = vaCreateBuffer(va_dpy,\n                               context_id,\n                               VAEncPackedHeaderDataBufferType,\n                               (length_in_bits + 7) / 8, 1, packedpic_buffer,\n                               &packedpic_data_bufid);\n    CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n    render_id[0] = packedpic_para_bufid;\n    render_id[1] = packedpic_data_bufid;\n    va_status = vaRenderPicture(va_dpy, context_id, render_id, 2);\n    CHECK_VASTATUS(va_status, \"vaRenderPicture\");\n\n    free(packedpic_buffer);\n\n    if (packedpic_para_bufid != VA_INVALID_ID) {\n        vaDestroyBuffer(va_dpy, packedpic_para_bufid);\n        packedpic_para_bufid = VA_INVALID_ID;\n    }\n    if (packedpic_data_bufid != VA_INVALID_ID) {\n        vaDestroyBuffer(va_dpy, packedpic_data_bufid);\n        packedpic_data_bufid = VA_INVALID_ID;\n    }\n\n    return 0;\n}\n\nstatic void render_packedslice()\n{\n    VAEncPackedHeaderParameterBuffer packedheader_param_buffer;\n    VABufferID packedslice_para_bufid =  VA_INVALID_ID;\n    VABufferID packedslice_data_bufid =  VA_INVALID_ID;\n    VABufferID render_id[2] = {VA_INVALID_ID};\n    unsigned int length_in_bits;\n    unsigned char *packedslice_buffer = NULL;\n    VAStatus va_status;\n\n    length_in_bits = build_packed_slice_buffer(&packedslice_buffer);\n    packedheader_param_buffer.type = VAEncPackedHeaderSlice;\n    packedheader_param_buffer.bit_length = length_in_bits;\n    packedheader_param_buffer.has_emulation_bytes = 0;\n\n    va_status = vaCreateBuffer(va_dpy,\n                               context_id,\n                               VAEncPackedHeaderParameterBufferType,\n                               sizeof(packedheader_param_buffer), 1, &packedheader_param_buffer,\n                               &packedslice_para_bufid);\n    CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n    va_status = vaCreateBuffer(va_dpy,\n                               context_id,\n                               VAEncPackedHeaderDataBufferType,\n                               (length_in_bits + 7) / 8, 1, packedslice_buffer,\n                               &packedslice_data_bufid);\n    CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n    render_id[0] = packedslice_para_bufid;\n    render_id[1] = packedslice_data_bufid;\n    va_status = vaRenderPicture(va_dpy, context_id, render_id, 2);\n    CHECK_VASTATUS(va_status, \"vaRenderPicture\");\n\n    free(packedslice_buffer);\n\n    if (packedslice_para_bufid != VA_INVALID_ID) {\n        vaDestroyBuffer(va_dpy, packedslice_para_bufid);\n        packedslice_para_bufid = VA_INVALID_ID;\n    }\n    if (packedslice_data_bufid != VA_INVALID_ID) {\n        vaDestroyBuffer(va_dpy, packedslice_data_bufid);\n        packedslice_para_bufid = VA_INVALID_ID;\n    }\n}\n\nstatic int render_slice(void)\n{\n    VABufferID slice_param_buf = VA_INVALID_ID;\n    VAStatus va_status;\n    memset(&slice_param, 0x00, sizeof(VAEncSliceParameterBufferHEVC));\n\n    update_RefPicList();\n\n    slice_param.slice_segment_address = 0;\n    slice_param.num_ctu_in_slice = ssh.picture_width_in_ctus * ssh.picture_height_in_ctus;\n    slice_param.slice_type = ssh.slice_type;\n    slice_param.slice_pic_parameter_set_id = ssh.slice_pic_parameter_set_id; // right???\n\n    slice_param.num_ref_idx_l0_active_minus1 = ssh.num_ref_idx_l0_active_minus1;\n    slice_param.num_ref_idx_l1_active_minus1 = ssh.num_ref_idx_l1_active_minus1;\n    memset(slice_param.ref_pic_list0, 0xff, sizeof(slice_param.ref_pic_list0));\n    memset(slice_param.ref_pic_list1, 0xff, sizeof(slice_param.ref_pic_list1));\n\n    if (current_frame_type == FRAME_P) {\n        memcpy(slice_param.ref_pic_list0, RefPicList0_P, sizeof(VAPictureHEVC));\n        if (p2b) {\n            memcpy(slice_param.ref_pic_list1, RefPicList0_P, sizeof(VAPictureHEVC));\n        }\n    } else if (current_frame_type == FRAME_B) {\n        memcpy(slice_param.ref_pic_list0, RefPicList0_B, sizeof(VAPictureHEVC));\n        memcpy(slice_param.ref_pic_list1, RefPicList1_B, sizeof(VAPictureHEVC));\n    }\n\n    slice_param.luma_log2_weight_denom = 0;\n    slice_param.delta_chroma_log2_weight_denom = 0;\n\n    slice_param.max_num_merge_cand = 5 - ssh.five_minus_max_num_merge_cand;\n\n    slice_param.slice_qp_delta = ssh.slice_qp_delta;\n    slice_param.slice_cb_qp_offset = 0;\n    slice_param.slice_cr_qp_offset = 0;\n    slice_param.slice_beta_offset_div2 = ssh.beta_offset_div2;\n    slice_param.slice_tc_offset_div2 = ssh.tc_offset_div2;\n\n    slice_param.slice_fields.bits.dependent_slice_segment_flag = 0;\n    slice_param.slice_fields.bits.colour_plane_id = ssh.colour_plane_id;\n    slice_param.slice_fields.bits.slice_temporal_mvp_enabled_flag = ssh.slice_temporal_mvp_enabled_flag;\n    slice_param.slice_fields.bits.slice_sao_luma_flag = ssh.slice_sao_luma_flag;\n    slice_param.slice_fields.bits.slice_sao_chroma_flag = ssh.slice_sao_luma_flag;\n    slice_param.slice_fields.bits.num_ref_idx_active_override_flag = ssh.num_ref_idx_active_override_flag;\n    slice_param.slice_fields.bits.mvd_l1_zero_flag = 0;\n    slice_param.slice_fields.bits.cabac_init_flag = 0;\n    slice_param.slice_fields.bits.slice_deblocking_filter_disabled_flag = ssh.disable_deblocking_filter_flag;\n    slice_param.slice_fields.bits.slice_loop_filter_across_slices_enabled_flag = ssh.slice_loop_filter_across_slices_enabled_flag;\n    slice_param.slice_fields.bits.collocated_from_l0_flag = ssh.collocated_from_l0_flag;\n\n    if (hevc_packedheader &&\n        config_attrib[enc_packed_header_idx].value & VA_ENC_PACKED_HEADER_SLICE)\n        render_packedslice();\n\n    va_status = vaCreateBuffer(va_dpy, context_id, VAEncSliceParameterBufferType,\n                               sizeof(slice_param), 1, &slice_param, &slice_param_buf);\n    CHECK_VASTATUS(va_status, \"vaCreateBuffer\");;\n\n    va_status = vaRenderPicture(va_dpy, context_id, &slice_param_buf, 1);\n    CHECK_VASTATUS(va_status, \"vaRenderPicture\");\n\n    if (slice_param_buf != VA_INVALID_ID) {\n        vaDestroyBuffer(va_dpy, slice_param_buf);\n        slice_param_buf = VA_INVALID_ID;\n    }\n\n    return 0;\n}\n\n\nstatic int upload_source_YUV_once_for_all()\n{\n    int box_width = 8;\n    int row_shift = 0;\n    int i;\n\n    for (i = 0; i < SURFACE_NUM; i++) {\n        printf(\"\\rLoading data into surface %d.....\", i);\n        upload_surface(va_dpy, src_surface[i], box_width, row_shift, 0);\n\n        row_shift++;\n        if (row_shift == (2 * box_width)) row_shift = 0;\n    }\n    printf(\"Complete surface loading\\n\");\n\n    return 0;\n}\n\nstatic int load_surface(VASurfaceID surface_id, unsigned long long display_order)\n{\n    unsigned char *srcyuv_ptr = NULL, *src_Y = NULL, *src_U = NULL, *src_V = NULL;\n    unsigned long long frame_start, mmap_start;\n    char *mmap_ptr = NULL;\n    int frame_size, mmap_size;\n\n    if (srcyuv_fp == NULL)\n        return 0;\n\n    /* allow encoding more than srcyuv_frames */\n    display_order = display_order % srcyuv_frames;\n    frame_size = frame_width * frame_height * 3 / 2; /* for YUV420 */\n    frame_start = display_order * frame_size;\n\n    mmap_start = frame_start & (~0xfff);\n    mmap_size = (frame_size + (frame_start & 0xfff) + 0xfff) & (~0xfff);\n    mmap_ptr = mmap(0, mmap_size, PROT_READ, MAP_SHARED,\n                    fileno(srcyuv_fp), mmap_start);\n    if (mmap_ptr == MAP_FAILED) {\n        printf(\"Failed to mmap YUV file (%s)\\n\", strerror(errno));\n        return 1;\n    }\n    srcyuv_ptr = (unsigned char *)mmap_ptr + (frame_start & 0xfff);\n    if (srcyuv_fourcc == VA_FOURCC_NV12) {\n        src_Y = srcyuv_ptr;\n        src_U = src_Y + frame_width * frame_height;\n        src_V = NULL;\n    } else if (srcyuv_fourcc == VA_FOURCC_IYUV ||\n               srcyuv_fourcc == VA_FOURCC_YV12) {\n        src_Y = srcyuv_ptr;\n        if (srcyuv_fourcc == VA_FOURCC_IYUV) {\n            src_U = src_Y + frame_width * frame_height;\n            src_V = src_U + (frame_width / 2) * (frame_height / 2);\n        } else { /* YV12 */\n            src_V = src_Y + frame_width * frame_height;\n            src_U = src_V + (frame_width / 2) * (frame_height / 2);\n        }\n    } else {\n        printf(\"Unsupported source YUV format\\n\");\n        exit(1);\n    }\n\n    upload_surface_yuv(va_dpy, surface_id,\n                       srcyuv_fourcc, frame_width, frame_height,\n                       src_Y, src_U, src_V);\n    if (mmap_ptr)\n        munmap(mmap_ptr, mmap_size);\n\n    return 0;\n}\n\n\nstatic int save_recyuv(VASurfaceID surface_id,\n                       unsigned long long display_order,\n                       unsigned long long encode_order)\n{\n    unsigned char *dst_Y = NULL, *dst_U = NULL, *dst_V = NULL;\n\n    if (recyuv_fp == NULL)\n        return 0;\n\n    if (srcyuv_fourcc == VA_FOURCC_NV12) {\n        int uv_size = 2 * (frame_width / 2) * (frame_height / 2);\n        dst_Y = malloc(2 * uv_size);\n        if (dst_Y == NULL) {\n            printf(\"Failed to allocate memory for dst_Y\\n\");\n            exit(1);\n        }\n\n        dst_U = malloc(uv_size);\n        if (dst_U == NULL) {\n            printf(\"Failed to allocate memory for dst_U\\n\");\n            free(dst_Y);\n            exit(1);\n        }\n\n        memset(dst_Y, 0, 2 * uv_size);\n        memset(dst_U, 0, uv_size);\n    } else if (srcyuv_fourcc == VA_FOURCC_IYUV ||\n               srcyuv_fourcc == VA_FOURCC_YV12) {\n        int uv_size = (frame_width / 2) * (frame_height / 2);\n        dst_Y = malloc(4 * uv_size);\n        if (dst_Y == NULL) {\n            printf(\"Failed to allocate memory for dst_Y\\n\");\n            exit(1);\n        }\n\n        dst_U = malloc(uv_size);\n        if (dst_U == NULL) {\n            printf(\"Failed to allocate memory for dst_U\\n\");\n            free(dst_Y);\n            exit(1);\n        }\n\n        dst_V = malloc(uv_size);\n        if (dst_V == NULL) {\n            printf(\"Failed to allocate memory for dst_V\\n\");\n            free(dst_Y);\n            free(dst_U);\n            exit(1);\n        }\n\n        memset(dst_Y, 0, 4 * uv_size);\n        memset(dst_U, 0, uv_size);\n        memset(dst_V, 0, uv_size);\n    } else {\n        printf(\"Unsupported source YUV format\\n\");\n        exit(1);\n    }\n\n    download_surface_yuv(va_dpy, surface_id,\n                         srcyuv_fourcc, frame_width, frame_height,\n                         dst_Y, dst_U, dst_V);\n    fseek(recyuv_fp, display_order * frame_width * frame_height * 1.5, SEEK_SET);\n\n    if (srcyuv_fourcc == VA_FOURCC_NV12) {\n        int uv_size = 2 * (frame_width / 2) * (frame_height / 2);\n        fwrite(dst_Y, uv_size * 2, 1, recyuv_fp);\n        fwrite(dst_U, uv_size, 1, recyuv_fp);\n    } else if (srcyuv_fourcc == VA_FOURCC_IYUV ||\n               srcyuv_fourcc == VA_FOURCC_YV12) {\n        int uv_size = (frame_width / 2) * (frame_height / 2);\n        fwrite(dst_Y, uv_size * 4, 1, recyuv_fp);\n\n        if (srcyuv_fourcc == VA_FOURCC_IYUV) {\n            fwrite(dst_U, uv_size, 1, recyuv_fp);\n            fwrite(dst_V, uv_size, 1, recyuv_fp);\n        } else {\n            fwrite(dst_V, uv_size, 1, recyuv_fp);\n            fwrite(dst_U, uv_size, 1, recyuv_fp);\n        }\n    }\n\n    if (dst_Y)\n        free(dst_Y);\n    if (dst_U)\n        free(dst_U);\n    if (dst_V)\n        free(dst_V);\n\n    fflush(recyuv_fp);\n\n    return 0;\n}\n\n\nstatic int save_codeddata(unsigned long long display_order, unsigned long long encode_order)\n{\n    VACodedBufferSegment *buf_list = NULL;\n    VAStatus va_status;\n    unsigned int coded_size = 0;\n\n    va_status = vaMapBuffer(va_dpy, coded_buf[display_order % SURFACE_NUM], (void **)(&buf_list));\n    CHECK_VASTATUS(va_status, \"vaMapBuffer\");\n    while (buf_list != NULL) {\n        coded_size += fwrite(buf_list->buf, 1, buf_list->size, coded_fp);\n        buf_list = (VACodedBufferSegment *) buf_list->next;\n\n        frame_size += coded_size;\n    }\n    vaUnmapBuffer(va_dpy, coded_buf[display_order % SURFACE_NUM]);\n\n    printf(\"\\n      \"); /* return back to startpoint */\n    switch (encode_order % 4) {\n    case 0:\n        printf(\"|\");\n        break;\n    case 1:\n        printf(\"/\");\n        break;\n    case 2:\n        printf(\"-\");\n        break;\n    case 3:\n        printf(\"\\\\\");\n        break;\n    }\n    printf(\"%08lld\", encode_order);\n    printf(\"(%06d bytes coded)\\n\", coded_size);\n\n    fflush(coded_fp);\n\n    return 0;\n}\n\n\nstatic struct storage_task_t * storage_task_dequeue(void)\n{\n    struct storage_task_t *header;\n\n    pthread_mutex_lock(&encode_mutex);\n\n    header = storage_task_header;\n    if (storage_task_header != NULL) {\n        if (storage_task_tail == storage_task_header)\n            storage_task_tail = NULL;\n        storage_task_header = header->next;\n    }\n\n    pthread_mutex_unlock(&encode_mutex);\n\n    return header;\n}\n\nstatic int storage_task_queue(unsigned long long display_order, unsigned long long encode_order)\n{\n    struct storage_task_t *tmp;\n\n    tmp = calloc(1, sizeof(struct storage_task_t));\n    if (tmp) {\n        tmp->display_order = display_order;\n        tmp->encode_order = encode_order;\n    }\n\n    pthread_mutex_lock(&encode_mutex);\n\n    if (storage_task_header == NULL) {\n        storage_task_header = tmp;\n        storage_task_tail = tmp;\n    } else {\n        storage_task_tail->next = tmp;\n        storage_task_tail = tmp;\n    }\n\n    srcsurface_status[display_order % SURFACE_NUM] = SRC_SURFACE_IN_STORAGE;\n    pthread_cond_signal(&encode_cond);\n\n    pthread_mutex_unlock(&encode_mutex);\n\n    return 0;\n}\n\nstatic void storage_task(unsigned long long display_order, unsigned long long encode_order)\n{\n    unsigned int tmp;\n    VAStatus va_status;\n\n    tmp = GetTickCount();\n    va_status = vaSyncSurface(va_dpy, src_surface[display_order % SURFACE_NUM]);\n    CHECK_VASTATUS(va_status, \"vaSyncSurface\");\n    SyncPictureTicks += GetTickCount() - tmp;\n    tmp = GetTickCount();\n    save_codeddata(display_order, encode_order);\n    SavePictureTicks += GetTickCount() - tmp;\n\n    save_recyuv(ref_surface[display_order % SURFACE_NUM], display_order, encode_order);\n\n    /* reload a new frame data */\n    tmp = GetTickCount();\n    if (srcyuv_fp != NULL)\n        load_surface(src_surface[display_order % SURFACE_NUM], display_order + SURFACE_NUM);\n    UploadPictureTicks += GetTickCount() - tmp;\n\n    pthread_mutex_lock(&encode_mutex);\n    srcsurface_status[display_order % SURFACE_NUM] = SRC_SURFACE_IN_ENCODING;\n    pthread_mutex_unlock(&encode_mutex);\n}\n\n\nstatic void * storage_task_thread(void *t)\n{\n    while (1) {\n        struct storage_task_t *current;\n\n        current = storage_task_dequeue();\n        if (current == NULL) {\n            pthread_mutex_lock(&encode_mutex);\n            pthread_cond_wait(&encode_cond, &encode_mutex);\n            pthread_mutex_unlock(&encode_mutex);\n            continue;\n        }\n\n        storage_task(current->display_order, current->encode_order);\n\n        free(current);\n\n        /* all frames are saved, exit the thread */\n        if (++frame_coded >= frame_count)\n            break;\n    }\n\n    return 0;\n}\n\n\nstatic int encode_frames(void)\n{\n    unsigned int i, tmp;\n    VAStatus va_status;\n    //VASurfaceStatus surface_status;\n\n    /* upload RAW YUV data into all surfaces */\n    tmp = GetTickCount();\n    if (srcyuv_fp != NULL) {\n        for (i = 0; i < SURFACE_NUM; i++)\n            load_surface(src_surface[i], i);\n    } else\n        upload_source_YUV_once_for_all();\n    UploadPictureTicks += GetTickCount() - tmp;\n\n    /* ready for encoding */\n    memset(srcsurface_status, SRC_SURFACE_IN_ENCODING, sizeof(srcsurface_status));\n\n    memset(&seq_param, 0, sizeof(seq_param));\n    memset(&pic_param, 0, sizeof(pic_param));\n    memset(&slice_param, 0, sizeof(slice_param));\n\n    if (encode_syncmode == 0)\n        pthread_create(&encode_thread, NULL, storage_task_thread, NULL);\n\n    for (current_frame_encoding = 0; current_frame_encoding < frame_count; current_frame_encoding++) {\n        encoding2display_order(current_frame_encoding, intra_period, intra_idr_period, ip_period,\n                               &current_frame_display, &current_frame_type);\n        if (current_frame_type == FRAME_IDR) {\n            numShortTerm = 0;\n            current_frame_num = 0;\n            current_IDR_display = current_frame_display;\n        }\n        printf(\"%s : %lld %s : %lld type : %d\\n\", \"encoding order\", current_frame_encoding, \"Display order\", current_frame_display, current_frame_type);\n        /* check if the source frame is ready */\n        while (srcsurface_status[current_slot] != SRC_SURFACE_IN_ENCODING) {\n            usleep(1);\n        }\n\n        tmp = GetTickCount();\n        va_status = vaBeginPicture(va_dpy, context_id, src_surface[current_slot]);\n        CHECK_VASTATUS(va_status, \"vaBeginPicture\");\n        BeginPictureTicks += GetTickCount() - tmp;\n        fill_vps_header(&vps);\n        fill_sps_header(&sps, 0);\n        fill_pps_header(&pps, 0, 0);\n        tmp = GetTickCount();\n        if (current_frame_type == FRAME_IDR) {\n            render_sequence(&sps);\n            render_packedvideo();\n            render_packedsequence();\n        }\n        render_packedpicture();\n        render_picture(&pps);\n        fill_slice_header(0, &pps, &ssh);\n        render_slice();\n        RenderPictureTicks += GetTickCount() - tmp;\n\n        tmp = GetTickCount();\n        va_status = vaEndPicture(va_dpy, context_id);\n        CHECK_VASTATUS(va_status, \"vaEndPicture\");;\n        EndPictureTicks += GetTickCount() - tmp;\n\n        if (encode_syncmode)\n            storage_task(current_frame_display, current_frame_encoding);\n        else /* queue the storage task queue */\n            storage_task_queue(current_frame_display, current_frame_encoding);\n\n        update_ReferenceFrames();\n    }\n\n    if (encode_syncmode == 0) {\n        int ret;\n        pthread_join(encode_thread, (void **)&ret);\n    }\n\n    return 0;\n}\n\n\nstatic int release_encode()\n{\n    int i;\n\n    vaDestroySurfaces(va_dpy, &src_surface[0], SURFACE_NUM);\n    vaDestroySurfaces(va_dpy, &ref_surface[0], SURFACE_NUM);\n\n    for (i = 0; i < SURFACE_NUM; i++)\n        vaDestroyBuffer(va_dpy, coded_buf[i]);\n\n    vaDestroyContext(va_dpy, context_id);\n    vaDestroyConfig(va_dpy, config_id);\n\n    return 0;\n}\n\nstatic int deinit_va()\n{\n    vaTerminate(va_dpy);\n\n    va_close_display(va_dpy);\n\n    return 0;\n}\n\n\nstatic int print_input()\n{\n    printf(\"\\n\\nINPUT:Try to encode HEVC...\\n\");\n    if (rc_mode != -1)\n        printf(\"INPUT: RateControl  : %s\\n\", rc_to_string(rc_mode));\n    printf(\"INPUT: Resolution   : %dx%d, %d frames\\n\",\n           frame_width, frame_height, frame_count);\n    printf(\"INPUT: FrameRate    : %d\\n\", frame_rate);\n    printf(\"INPUT: Bitrate      : %d\\n\", frame_bitrate);\n    printf(\"INPUT: Slieces      : %d\\n\", frame_slices);\n    printf(\"INPUT: IntraPeriod  : %d\\n\", intra_period);\n    printf(\"INPUT: IDRPeriod    : %d\\n\", intra_idr_period);\n    printf(\"INPUT: IpPeriod     : %d\\n\", ip_period);\n    printf(\"INPUT: Initial QP   : %d\\n\", initial_qp);\n    printf(\"INPUT: Min QP       : %d\\n\", minimal_qp);\n    printf(\"INPUT: P As B       : %d\\n\", p2b);\n    printf(\"INPUT: lowpower     : %d\\n\", lowpower);\n    printf(\"INPUT: Source YUV   : %s\", srcyuv_fp ? \"FILE\" : \"AUTO generated\");\n    if (srcyuv_fp)\n        printf(\":%s (fourcc %s)\\n\", srcyuv_fn, fourcc_to_string(srcyuv_fourcc));\n    else\n        printf(\"\\n\");\n    printf(\"INPUT: Coded Clip   : %s\\n\", coded_fn);\n    if (recyuv_fp == NULL)\n        printf(\"INPUT: Rec   Clip   : %s\\n\", \"Not save reconstructed frame\");\n    else\n        printf(\"INPUT: Rec   Clip   : Save reconstructed frame into %s (fourcc %s)\\n\", recyuv_fn,\n               fourcc_to_string(srcyuv_fourcc));\n\n    printf(\"\\n\\n\"); /* return back to startpoint */\n\n    return 0;\n}\n\nstatic int calc_PSNR(double *psnr)\n{\n    char *srcyuv_ptr = NULL, *recyuv_ptr = NULL, tmp;\n    unsigned long long min_size;\n    unsigned long long i, sse = 0;\n    double ssemean;\n    int fourM = 0x400000; /* 4M */\n\n    min_size = MIN(srcyuv_frames, frame_count) * frame_width * frame_height * 1.5;\n    for (i = 0; i < min_size; i++) {\n        unsigned long long j = i % fourM;\n\n        if ((i % fourM) == 0) {\n            if (srcyuv_ptr)\n                munmap(srcyuv_ptr, fourM);\n            if (recyuv_ptr)\n                munmap(recyuv_ptr, fourM);\n\n            srcyuv_ptr = mmap(0, fourM, PROT_READ, MAP_SHARED, fileno(srcyuv_fp), i);\n            recyuv_ptr = mmap(0, fourM, PROT_READ, MAP_SHARED, fileno(recyuv_fp), i);\n            if ((srcyuv_ptr == MAP_FAILED) || (recyuv_ptr == MAP_FAILED)) {\n                if (srcyuv_ptr != MAP_FAILED) \n                    munmap(srcyuv_ptr, fourM);\n                if (recyuv_ptr != MAP_FAILED) \n                    munmap(recyuv_ptr, fourM);\n                printf(\"Failed to mmap YUV files\\n\");\n                return 1;\n            }\n        }\n        tmp = srcyuv_ptr[j] - recyuv_ptr[j];\n        sse += tmp * tmp;\n    }\n    ssemean = (double)sse / (double)min_size;\n    *psnr = 20.0 * log10(255) - 10.0 * log10(ssemean);\n\n    if (srcyuv_ptr)\n        munmap(srcyuv_ptr, fourM);\n    if (recyuv_ptr)\n        munmap(recyuv_ptr, fourM);\n\n    return 0;\n}\n\nstatic int print_performance(unsigned int PictureCount)\n{\n    unsigned int psnr_ret = 1, others = 0;\n    double psnr = 0, total_size = frame_width * frame_height * 1.5 * frame_count;\n\n    if (calc_psnr && srcyuv_fp && recyuv_fp)\n        psnr_ret = calc_PSNR(&psnr);\n\n    others = TotalTicks - UploadPictureTicks - BeginPictureTicks\n             - RenderPictureTicks - EndPictureTicks - SyncPictureTicks - SavePictureTicks;\n\n    printf(\"\\n\\n\");\n\n    printf(\"PERFORMANCE:   Frame Rate           : %.2f fps (%d frames, %d ms (%.2f ms per frame))\\n\",\n           (double) 1000 * PictureCount / TotalTicks, PictureCount,\n           TotalTicks, ((double)  TotalTicks) / (double) PictureCount);\n    printf(\"PERFORMANCE:   Compression ratio    : %d:1\\n\", (unsigned int)(total_size / frame_size));\n    if (psnr_ret == 0)\n        printf(\"PERFORMANCE:   PSNR                 : %.2f (%lld frames calculated)\\n\",\n               psnr, MIN(frame_count, srcyuv_frames));\n\n    printf(\"PERFORMANCE:     UploadPicture      : %d ms (%.2f, %.2f%% percent)\\n\",\n           (int) UploadPictureTicks, ((double)  UploadPictureTicks) / (double) PictureCount,\n           UploadPictureTicks / (double) TotalTicks / 0.01);\n    printf(\"PERFORMANCE:     vaBeginPicture     : %d ms (%.2f, %.2f%% percent)\\n\",\n           (int) BeginPictureTicks, ((double)  BeginPictureTicks) / (double) PictureCount,\n           BeginPictureTicks / (double) TotalTicks / 0.01);\n    printf(\"PERFORMANCE:     vaRenderHeader     : %d ms (%.2f, %.2f%% percent)\\n\",\n           (int) RenderPictureTicks, ((double)  RenderPictureTicks) / (double) PictureCount,\n           RenderPictureTicks / (double) TotalTicks / 0.01);\n    printf(\"PERFORMANCE:     vaEndPicture       : %d ms (%.2f, %.2f%% percent)\\n\",\n           (int) EndPictureTicks, ((double)  EndPictureTicks) / (double) PictureCount,\n           EndPictureTicks / (double) TotalTicks / 0.01);\n    printf(\"PERFORMANCE:     vaSyncSurface      : %d ms (%.2f, %.2f%% percent)\\n\",\n           (int) SyncPictureTicks, ((double) SyncPictureTicks) / (double) PictureCount,\n           SyncPictureTicks / (double) TotalTicks / 0.01);\n    printf(\"PERFORMANCE:     SavePicture        : %d ms (%.2f, %.2f%% percent)\\n\",\n           (int) SavePictureTicks, ((double)  SavePictureTicks) / (double) PictureCount,\n           SavePictureTicks / (double) TotalTicks / 0.01);\n    printf(\"PERFORMANCE:     Others             : %d ms (%.2f, %.2f%% percent)\\n\",\n           (int) others, ((double) others) / (double) PictureCount,\n           others / (double) TotalTicks / 0.01);\n\n    if (encode_syncmode == 0)\n        printf(\"(Multithread enabled, the timing is only for reference)\\n\");\n\n    return 0;\n}\n\n\nint main(int argc, char **argv)\n{\n    unsigned int start;\n\n    va_init_display_args(&argc, argv);\n    process_cmdline(argc, argv);\n\n    print_input();\n\n    start = GetTickCount();\n\n    init_va();\n    setup_encode();\n\n    encode_frames();\n\n    release_encode();\n    deinit_va();\n\n    TotalTicks += GetTickCount() - start;\n    print_performance(frame_count);\n\n    return 0;\n}\n"
  },
  {
    "path": "encode/jpegenc.c",
    "content": "/*\n * Copyright (c) 2014 Intel Corporation. All Rights Reserved.\n *\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the\n * \"Software\"), to deal in the Software without restriction, including\n * without limitation the rights to use, copy, modify, merge, publish,\n * distribute, sub license, and/or sell copies of the Software, and to\n * permit persons to whom the Software is furnished to do so, subject to\n * the following conditions:\n *\n * The above copyright notice and this permission notice (including the\n * next paragraph) shall be included in all copies or substantial portions\n * of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR\n * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n/*\n * Simple JPEG encoder based on libVA.\n *\n * Usage:\n * ./jpegenc <width> <height> <input file> <output file> <input filetype 0(I420)/1(NV12)/2(UYVY)/3(YUY2)/4(Y8)/5(RGBA)> q <quality>\n * Currently supporting only I420/NV12/UYVY/YUY2/Y8 input file formats.\n *\n * NOTE: The intel-driver expects a packed header sent to it. So, the app is responsible to pack the header\n * and send to the driver through LibVA. This unit test also showcases how to send the header to the driver.\n */\n\n#include <stdio.h>\n#include <string.h>\n#include <stdlib.h>\n#include <getopt.h>\n#include <unistd.h>\n\n#include <sys/time.h>\n#include <sys/types.h>\n#include <sys/stat.h>\n#include <fcntl.h>\n#include <assert.h>\n#include <time.h>\n\n#include <pthread.h>\n\n#include <va/va.h>\n#include <va/va_enc_jpeg.h>\n#include \"va_display.h\"\n#include \"jpegenc_utils.h\"\n\n#ifndef VA_FOURCC_I420\n#define VA_FOURCC_I420          0x30323449\n#endif\n\n#define CHECK_VASTATUS(va_status,func)                                  \\\n    if (va_status != VA_STATUS_SUCCESS) {                                   \\\n        fprintf(stderr,\"%s:%s (%d) failed,exit\\n\", __func__, func, __LINE__); \\\n        exit(1);                                                            \\\n    }\n\n\nvoid show_help()\n{\n    printf(\"Usage: ./jpegenc <width> <height> <input file> <output file> <fourcc value 0(I420)/1(NV12)/2(UYVY)/3(YUY2)/4(Y8)/5(RGBA)> q <quality>\\n\");\n    printf(\"Currently supporting only I420/NV12/UYVY/YUY2/Y8 input file formats.\\n\");\n    printf(\"Example: ./jpegenc 1024 768 input_file.yuv output.jpeg 0 50\\n\\n\");\n    return;\n}\n\n\nvoid jpegenc_pic_param_init(VAEncPictureParameterBufferJPEG *pic_param, int width, int height, int quality, YUVComponentSpecs yuvComp)\n{\n    assert(pic_param);\n\n    pic_param->picture_width = width;\n    pic_param->picture_height = height;\n    pic_param->quality = quality;\n\n    pic_param->pic_flags.bits.profile = 0;      //Profile = Baseline\n    pic_param->pic_flags.bits.progressive = 0;  //Sequential encoding\n    pic_param->pic_flags.bits.huffman = 1;      //Uses Huffman coding\n    pic_param->pic_flags.bits.interleaved = 0;  //Input format is interleaved (YUV)\n    pic_param->pic_flags.bits.differential = 0; //non-Differential Encoding\n\n    pic_param->sample_bit_depth = 8; //only 8 bit sample depth is currently supported\n    pic_param->num_scan = 1;\n    pic_param->num_components = yuvComp.num_components; // Supporting only upto 3 components maximum\n    //set component_id Ci and Tqi\n    if (yuvComp.fourcc_val == VA_FOURCC_Y800) {\n        pic_param->component_id[0] = 0;\n        pic_param->quantiser_table_selector[0] = 0;\n    } else {\n        pic_param->component_id[0] = pic_param->quantiser_table_selector[0] = 0;\n        pic_param->component_id[1] = pic_param->quantiser_table_selector[1] = 1;\n        pic_param->component_id[2] = 2;\n        pic_param->quantiser_table_selector[2] = 1;\n    }\n\n    pic_param->quality = quality;\n}\n\nvoid jpegenc_qmatrix_init(VAQMatrixBufferJPEG *quantization_param, YUVComponentSpecs yuvComp)\n{\n    int i = 0;\n    quantization_param->load_lum_quantiser_matrix = 1;\n\n    //LibVA expects the QM in zigzag order\n    for (i = 0; i < NUM_QUANT_ELEMENTS; i++) {\n        quantization_param->lum_quantiser_matrix[i] = jpeg_luma_quant[jpeg_zigzag[i]];\n    }\n\n\n    if (yuvComp.fourcc_val == VA_FOURCC_Y800) {\n        quantization_param->load_chroma_quantiser_matrix = 0;\n    } else {\n        quantization_param->load_chroma_quantiser_matrix = 1;\n        for (i = 0; i < NUM_QUANT_ELEMENTS; i++) {\n            quantization_param->chroma_quantiser_matrix[i] = jpeg_chroma_quant[jpeg_zigzag[i]];\n        }\n    }\n\n}\n\nvoid jpegenc_hufftable_init(VAHuffmanTableBufferJPEGBaseline *hufftable_param, YUVComponentSpecs yuvComp)\n{\n\n    hufftable_param->load_huffman_table[0] = 1; //Load Luma Hufftable\n    if (yuvComp.fourcc_val == VA_FOURCC_Y800) {\n        hufftable_param->load_huffman_table[1] = 0; //Do not load Chroma Hufftable for Y8\n    } else {\n        hufftable_param->load_huffman_table[1] = 1; //Load Chroma Hufftable for other formats\n    }\n\n    //Load Luma hufftable values\n    //Load DC codes\n    memcpy(hufftable_param->huffman_table[0].num_dc_codes, jpeg_hufftable_luma_dc + 1, 16);\n    //Load DC Values\n    memcpy(hufftable_param->huffman_table[0].dc_values, jpeg_hufftable_luma_dc + 17, 12);\n    //Load AC codes\n    memcpy(hufftable_param->huffman_table[0].num_ac_codes, jpeg_hufftable_luma_ac + 1, 16);\n    //Load AC Values\n    memcpy(hufftable_param->huffman_table[0].ac_values, jpeg_hufftable_luma_ac + 17, 162);\n    memset(hufftable_param->huffman_table[0].pad, 0, 2);\n\n\n    //Load Chroma hufftable values if needed\n    if (yuvComp.fourcc_val != VA_FOURCC_Y800) {\n        //Load DC codes\n        memcpy(hufftable_param->huffman_table[1].num_dc_codes, jpeg_hufftable_chroma_dc + 1, 16);\n        //Load DC Values\n        memcpy(hufftable_param->huffman_table[1].dc_values, jpeg_hufftable_chroma_dc + 17, 12);\n        //Load AC codes\n        memcpy(hufftable_param->huffman_table[1].num_ac_codes, jpeg_hufftable_chroma_ac + 1, 16);\n        //Load AC Values\n        memcpy(hufftable_param->huffman_table[1].ac_values, jpeg_hufftable_chroma_ac + 17, 162);\n        memset(hufftable_param->huffman_table[1].pad, 0, 2);\n\n    }\n\n}\n\nvoid jpegenc_slice_param_init(VAEncSliceParameterBufferJPEG *slice_param, YUVComponentSpecs yuvComp)\n{\n    slice_param->restart_interval = 0;\n\n    slice_param->num_components = yuvComp.num_components;\n\n    slice_param->components[0].component_selector = 1;\n    slice_param->components[0].dc_table_selector = 0;\n    slice_param->components[0].ac_table_selector = 0;\n\n    if (yuvComp.num_components > 1) {\n        slice_param->components[1].component_selector = 2;\n        slice_param->components[1].dc_table_selector = 1;\n        slice_param->components[1].ac_table_selector = 1;\n\n        slice_param->components[2].component_selector = 3;\n        slice_param->components[2].dc_table_selector = 1;\n        slice_param->components[2].ac_table_selector = 1;\n    }\n}\n\n\nvoid populate_quantdata(JPEGQuantSection *quantVal, int type)\n{\n    uint8_t zigzag_qm[NUM_QUANT_ELEMENTS];\n    int i;\n\n    quantVal->DQT = DQT;\n    quantVal->Pq = 0;\n    quantVal->Tq = type;\n    if (type == 0) {\n        for (i = 0; i < NUM_QUANT_ELEMENTS; i++) {\n            zigzag_qm[i] = jpeg_luma_quant[jpeg_zigzag[i]];\n        }\n\n        memcpy(quantVal->Qk, zigzag_qm, NUM_QUANT_ELEMENTS);\n    } else {\n        for (i = 0; i < NUM_QUANT_ELEMENTS; i++) {\n            zigzag_qm[i] = jpeg_chroma_quant[jpeg_zigzag[i]];\n        }\n        memcpy(quantVal->Qk, zigzag_qm, NUM_QUANT_ELEMENTS);\n    }\n    quantVal->Lq = 3 + NUM_QUANT_ELEMENTS;\n}\n\nvoid populate_frame_header(JPEGFrameHeader *frameHdr, YUVComponentSpecs yuvComp, int picture_width, int picture_height)\n{\n    int i = 0;\n\n    frameHdr->SOF = SOF0;\n    frameHdr->Lf = 8 + (3 * yuvComp.num_components); //Size of FrameHeader in bytes without the Marker SOF\n    frameHdr->P = 8;\n    frameHdr->Y = picture_height;\n    frameHdr->X = picture_width;\n    frameHdr->Nf = yuvComp.num_components;\n\n    for (i = 0; i < yuvComp.num_components; i++) {\n        frameHdr->JPEGComponent[i].Ci = i + 1;\n\n        if (i == 0) {\n            frameHdr->JPEGComponent[i].Hi = yuvComp.y_h_subsample;\n            frameHdr->JPEGComponent[i].Vi = yuvComp.y_v_subsample;\n            frameHdr->JPEGComponent[i].Tqi = 0;\n\n        } else {\n            //Analyzing the sampling factors for U/V, they are 1 for all formats except for Y8.\n            //So, it is okay to have the code below like this. For Y8, we wont reach this code.\n            frameHdr->JPEGComponent[i].Hi = yuvComp.u_h_subsample;\n            frameHdr->JPEGComponent[i].Vi = yuvComp.u_v_subsample;\n            frameHdr->JPEGComponent[i].Tqi = 1;\n        }\n    }\n}\n\nvoid populate_huff_section_header(JPEGHuffSection *huffSectionHdr, int th, int tc)\n{\n    int i = 0, totalCodeWords = 0;\n\n    huffSectionHdr->DHT = DHT;\n    huffSectionHdr->Tc = tc;\n    huffSectionHdr->Th = th;\n\n    if (th == 0) { //If Luma\n\n        //If AC\n        if (tc == 1) {\n            memcpy(huffSectionHdr->Li, jpeg_hufftable_luma_ac + 1, NUM_AC_RUN_SIZE_BITS);\n            memcpy(huffSectionHdr->Vij, jpeg_hufftable_luma_ac + 17, NUM_AC_CODE_WORDS_HUFFVAL);\n        }\n\n        //If DC\n        if (tc == 0) {\n            memcpy(huffSectionHdr->Li, jpeg_hufftable_luma_dc + 1, NUM_DC_RUN_SIZE_BITS);\n            memcpy(huffSectionHdr->Vij, jpeg_hufftable_luma_dc + 17, NUM_DC_CODE_WORDS_HUFFVAL);\n        }\n\n        for (i = 0; i < NUM_AC_RUN_SIZE_BITS; i++) {\n            totalCodeWords += huffSectionHdr->Li[i];\n        }\n\n        huffSectionHdr->Lh = 3 + 16 + totalCodeWords;\n\n    } else { //If Chroma\n        //If AC\n        if (tc == 1) {\n            memcpy(huffSectionHdr->Li, jpeg_hufftable_chroma_ac + 1, NUM_AC_RUN_SIZE_BITS);\n            memcpy(huffSectionHdr->Vij, jpeg_hufftable_chroma_ac + 17, NUM_AC_CODE_WORDS_HUFFVAL);\n        }\n\n        //If DC\n        if (tc == 0) {\n            memcpy(huffSectionHdr->Li, jpeg_hufftable_chroma_dc + 1, NUM_DC_RUN_SIZE_BITS);\n            memcpy(huffSectionHdr->Vij, jpeg_hufftable_chroma_dc + 17, NUM_DC_CODE_WORDS_HUFFVAL);\n        }\n\n    }\n}\n\nvoid populate_scan_header(JPEGScanHeader *scanHdr, YUVComponentSpecs yuvComp)\n{\n\n    scanHdr->SOS = SOS;\n    scanHdr->Ns = yuvComp.num_components;\n\n    //Y Component\n    scanHdr->ScanComponent[0].Csj = 1;\n    scanHdr->ScanComponent[0].Tdj = 0;\n    scanHdr->ScanComponent[0].Taj = 0;\n\n    if (yuvComp.num_components > 1) {\n        //U Component\n        scanHdr->ScanComponent[1].Csj = 2;\n        scanHdr->ScanComponent[1].Tdj = 1;\n        scanHdr->ScanComponent[1].Taj = 1;\n\n        //V Component\n        scanHdr->ScanComponent[2].Csj = 3;\n        scanHdr->ScanComponent[2].Tdj = 1;\n        scanHdr->ScanComponent[2].Taj = 1;\n    }\n\n    scanHdr->Ss = 0;  //0 for Baseline\n    scanHdr->Se = 63; //63 for Baseline\n    scanHdr->Ah = 0;  //0 for Baseline\n    scanHdr->Al = 0;  //0 for Baseline\n\n    scanHdr->Ls = 3 + (yuvComp.num_components * 2) + 3;\n\n}\n\n// This method packs the header information which is to be sent to the driver through LibVA.\n// All the information that needs to be inserted in the encoded buffer should be built and sent.\n// It is the responsibility of the app talking to LibVA to build this header and send it.\n// This includes Markers, Quantization tables (normalized with quality factor), Huffman tables,etc.\nint build_packed_jpeg_header_buffer(unsigned char **header_buffer, YUVComponentSpecs yuvComp, int picture_width, int picture_height, uint16_t restart_interval, int quality)\n{\n    bitstream bs;\n    int i = 0, j = 0;\n    uint32_t temp = 0;\n\n    bitstream_start(&bs);\n\n    //Add SOI\n    bitstream_put_ui(&bs, SOI, 16);\n\n    //Add AppData\n    bitstream_put_ui(&bs, APP0, 16);  //APP0 marker\n    bitstream_put_ui(&bs, 16, 16);    //Length excluding the marker\n    bitstream_put_ui(&bs, 0x4A, 8);   //J\n    bitstream_put_ui(&bs, 0x46, 8);   //F\n    bitstream_put_ui(&bs, 0x49, 8);   //I\n    bitstream_put_ui(&bs, 0x46, 8);   //F\n    bitstream_put_ui(&bs, 0x00, 8);   //0\n    bitstream_put_ui(&bs, 1, 8);      //Major Version\n    bitstream_put_ui(&bs, 1, 8);      //Minor Version\n    bitstream_put_ui(&bs, 1, 8);      //Density units 0:no units, 1:pixels per inch, 2: pixels per cm\n    bitstream_put_ui(&bs, 72, 16);    //X density\n    bitstream_put_ui(&bs, 72, 16);    //Y density\n    bitstream_put_ui(&bs, 0, 8);      //Thumbnail width\n    bitstream_put_ui(&bs, 0, 8);      //Thumbnail height\n\n    // Regarding Quantization matrices: As per JPEG Spec ISO/IEC 10918-1:1993(E), Pg-19:\n    // \"applications may specify values which customize picture quality for their particular\n    // image characteristics, display devices, and viewing conditions\"\n\n\n    //Normalization of quality factor\n    quality = (quality < 50) ? (5000 / quality) : (200 - (quality * 2));\n\n    //Add QTable - Y\n    JPEGQuantSection quantLuma;\n    populate_quantdata(&quantLuma, 0);\n\n    bitstream_put_ui(&bs, quantLuma.DQT, 16);\n    bitstream_put_ui(&bs, quantLuma.Lq, 16);\n    bitstream_put_ui(&bs, quantLuma.Pq, 4);\n    bitstream_put_ui(&bs, quantLuma.Tq, 4);\n    for (i = 0; i < NUM_QUANT_ELEMENTS; i++) {\n        //scale the quantization table with quality factor\n        temp = (quantLuma.Qk[i] * quality) / 100;\n        //clamp to range [1,255]\n        temp = (temp > 255) ? 255 : temp;\n        temp = (temp < 1) ? 1 : temp;\n        quantLuma.Qk[i] = (unsigned char)temp;\n        bitstream_put_ui(&bs, quantLuma.Qk[i], 8);\n    }\n\n    //Add QTable - U/V\n    if (yuvComp.fourcc_val != VA_FOURCC_Y800) {\n        JPEGQuantSection quantChroma;\n        populate_quantdata(&quantChroma, 1);\n\n        bitstream_put_ui(&bs, quantChroma.DQT, 16);\n        bitstream_put_ui(&bs, quantChroma.Lq, 16);\n        bitstream_put_ui(&bs, quantChroma.Pq, 4);\n        bitstream_put_ui(&bs, quantChroma.Tq, 4);\n        for (i = 0; i < NUM_QUANT_ELEMENTS; i++) {\n            //scale the quantization table with quality factor\n            temp = (quantChroma.Qk[i] * quality) / 100;\n            //clamp to range [1,255]\n            temp = (temp > 255) ? 255 : temp;\n            temp = (temp < 1) ? 1 : temp;\n            quantChroma.Qk[i] = (unsigned char)temp;\n            bitstream_put_ui(&bs, quantChroma.Qk[i], 8);\n        }\n    }\n\n    //Add FrameHeader\n    JPEGFrameHeader frameHdr;\n    memset(&frameHdr, 0, sizeof(JPEGFrameHeader));\n    populate_frame_header(&frameHdr, yuvComp, picture_width, picture_height);\n\n    bitstream_put_ui(&bs, frameHdr.SOF, 16);\n    bitstream_put_ui(&bs, frameHdr.Lf, 16);\n    bitstream_put_ui(&bs, frameHdr.P, 8);\n    bitstream_put_ui(&bs, frameHdr.Y, 16);\n    bitstream_put_ui(&bs, frameHdr.X, 16);\n    bitstream_put_ui(&bs, frameHdr.Nf, 8);\n    for (i = 0; i < frameHdr.Nf; i++) {\n        bitstream_put_ui(&bs, frameHdr.JPEGComponent[i].Ci, 8);\n        bitstream_put_ui(&bs, frameHdr.JPEGComponent[i].Hi, 4);\n        bitstream_put_ui(&bs, frameHdr.JPEGComponent[i].Vi, 4);\n        bitstream_put_ui(&bs, frameHdr.JPEGComponent[i].Tqi, 8);\n    }\n\n    //Add HuffTable AC and DC for Y,U/V components\n    JPEGHuffSection acHuffSectionHdr, dcHuffSectionHdr;\n\n    for (i = 0; (i < yuvComp.num_components && (i <= 1)); i++) {\n        //Add DC component (Tc = 0)\n        populate_huff_section_header(&dcHuffSectionHdr, i, 0);\n\n        bitstream_put_ui(&bs, dcHuffSectionHdr.DHT, 16);\n        bitstream_put_ui(&bs, dcHuffSectionHdr.Lh, 16);\n        bitstream_put_ui(&bs, dcHuffSectionHdr.Tc, 4);\n        bitstream_put_ui(&bs, dcHuffSectionHdr.Th, 4);\n        for (j = 0; j < NUM_DC_RUN_SIZE_BITS; j++) {\n            bitstream_put_ui(&bs, dcHuffSectionHdr.Li[j], 8);\n        }\n\n        for (j = 0; j < NUM_DC_CODE_WORDS_HUFFVAL; j++) {\n            bitstream_put_ui(&bs, dcHuffSectionHdr.Vij[j], 8);\n        }\n\n        //Add AC component (Tc = 1)\n        populate_huff_section_header(&acHuffSectionHdr, i, 1);\n\n        bitstream_put_ui(&bs, acHuffSectionHdr.DHT, 16);\n        bitstream_put_ui(&bs, acHuffSectionHdr.Lh, 16);\n        bitstream_put_ui(&bs, acHuffSectionHdr.Tc, 4);\n        bitstream_put_ui(&bs, acHuffSectionHdr.Th, 4);\n        for (j = 0; j < NUM_AC_RUN_SIZE_BITS; j++) {\n            bitstream_put_ui(&bs, acHuffSectionHdr.Li[j], 8);\n        }\n\n        for (j = 0; j < NUM_AC_CODE_WORDS_HUFFVAL; j++) {\n            bitstream_put_ui(&bs, acHuffSectionHdr.Vij[j], 8);\n        }\n\n        if (yuvComp.fourcc_val == VA_FOURCC_Y800)\n            break;\n    }\n\n    //Add Restart Interval if restart_interval is not 0\n    if (restart_interval != 0) {\n        JPEGRestartSection restartHdr;\n        restartHdr.DRI = DRI;\n        restartHdr.Lr = 4;\n        restartHdr.Ri = restart_interval;\n\n        bitstream_put_ui(&bs, restartHdr.DRI, 16);\n        bitstream_put_ui(&bs, restartHdr.Lr, 16);\n        bitstream_put_ui(&bs, restartHdr.Ri, 16);\n    }\n\n    //Add ScanHeader\n    JPEGScanHeader scanHdr;\n    populate_scan_header(&scanHdr, yuvComp);\n\n    bitstream_put_ui(&bs, scanHdr.SOS, 16);\n    bitstream_put_ui(&bs, scanHdr.Ls, 16);\n    bitstream_put_ui(&bs, scanHdr.Ns, 8);\n\n    for (i = 0; i < scanHdr.Ns; i++) {\n        bitstream_put_ui(&bs, scanHdr.ScanComponent[i].Csj, 8);\n        bitstream_put_ui(&bs, scanHdr.ScanComponent[i].Tdj, 4);\n        bitstream_put_ui(&bs, scanHdr.ScanComponent[i].Taj, 4);\n    }\n\n    bitstream_put_ui(&bs, scanHdr.Ss, 8);\n    bitstream_put_ui(&bs, scanHdr.Se, 8);\n    bitstream_put_ui(&bs, scanHdr.Ah, 4);\n    bitstream_put_ui(&bs, scanHdr.Al, 4);\n\n    bitstream_end(&bs);\n    *header_buffer = (unsigned char *)bs.buffer;\n\n    return bs.bit_offset;\n}\n\n//Upload the yuv image from the file to the VASurface\nvoid upload_yuv_to_surface(VADisplay va_dpy, FILE *yuv_fp, VASurfaceID surface_id, YUVComponentSpecs yuvComp, int picture_width, int picture_height, int frame_size)\n{\n\n    VAImage surface_image;\n    VAStatus va_status;\n    void *surface_p = NULL;\n    unsigned char *newImageBuffer;\n    unsigned char *y_src, *u_src, *v_src;\n    unsigned char *y_dst, *u_dst;\n    int y_size = picture_width * picture_height;\n    int u_size = 0;\n    int row, col;\n    size_t n_items;\n\n    //u_size is used for I420, NV12 formats only\n    u_size = ((picture_width >> 1) * (picture_height >> 1));\n\n    newImageBuffer = malloc(frame_size);\n    if (newImageBuffer == NULL) {\n        printf(\"ERROR......upload_yuv_to_surface malloc failed\");\n        exit(1);\n    }\n    memset(newImageBuffer, 0, frame_size);\n    do {\n        n_items = fread(newImageBuffer, frame_size, 1, yuv_fp);\n    } while (n_items != 1);\n\n    va_status = vaDeriveImage(va_dpy, surface_id, &surface_image);\n    CHECK_VASTATUS(va_status, \"vaDeriveImage\");\n\n    vaMapBuffer(va_dpy, surface_image.buf, &surface_p);\n    assert(VA_STATUS_SUCCESS == va_status);\n\n    y_src = newImageBuffer;\n    u_src = newImageBuffer + y_size; /* UV offset for NV12 */\n    v_src = newImageBuffer + y_size + u_size;\n\n    y_dst = (unsigned char *)surface_p + surface_image.offsets[0];\n    u_dst = (unsigned char *)surface_p + surface_image.offsets[1]; /* UV offset for NV12 */\n\n    if ((yuvComp.fourcc_val == VA_FOURCC_NV12) || (yuvComp.fourcc_val == VA_FOURCC_I420) ||\n        (yuvComp.fourcc_val == VA_FOURCC_Y800)) {\n\n        /* Y plane */\n        for (row = 0; row < surface_image.height; row++) {\n            memcpy(y_dst, y_src, surface_image.width);\n            y_dst += surface_image.pitches[0];\n            y_src += picture_width;\n        }\n\n        if (yuvComp.num_components > 1) {\n\n            switch (yuvComp.fourcc_val) {\n            case VA_FOURCC_NV12: {\n                for (row = 0; row < surface_image.height / 2; row++) {\n                    memcpy(u_dst, u_src, surface_image.width);\n                    u_dst += surface_image.pitches[1];\n                    u_src += (picture_width);\n                }\n                break;\n            }\n\n            case VA_FOURCC_I420: {\n                for (row = 0; row < surface_image.height / 2; row++) {\n                    for (col = 0; col < surface_image.width / 2; col++) {\n                        u_dst[col * 2] = u_src[col];\n                        u_dst[col * 2 + 1] = v_src[col];\n                    }\n\n                    u_dst += surface_image.pitches[1];\n                    u_src += (picture_width / 2);\n                    v_src += (picture_width / 2);\n                }\n                break;\n            }\n            }//end of switch\n        }//end of if check\n    } else if ((yuvComp.fourcc_val == VA_FOURCC_UYVY) || (yuvComp.fourcc_val == VA_FOURCC_YUY2)) {\n\n        for (row = 0; row < surface_image.height; row++) {\n            memcpy(y_dst, y_src, surface_image.width * 2);\n            y_dst += surface_image.pitches[0];\n            y_src += picture_width * 2;\n        }\n\n    } else if (yuvComp.fourcc_val == VA_FOURCC_RGBA) {\n\n        for (row = 0; row < surface_image.height; row++) {\n            memcpy(y_dst, y_src, surface_image.width * 4);\n            y_dst += surface_image.pitches[0];\n            y_src += picture_width * 4;\n        }\n    }\n\n    vaUnmapBuffer(va_dpy, surface_image.buf);\n    vaDestroyImage(va_dpy, surface_image.image_id);\n    free(newImageBuffer);\n\n}\n\n\n\nvoid init_yuv_component(YUVComponentSpecs *yuvComponent, int yuv_type, int *surface_type, VASurfaceAttrib *fourcc)\n{\n    yuvComponent->yuv_type = yuv_type;\n\n    //<fourcc value 0(I420)/1(NV12)/2(UYVY)/3(YUY2)/4(Y8)/5(RGBA)>\n    switch (yuv_type) {\n    case 0 :   //I420\n    case 1 : { //NV12\n        yuvComponent->va_surface_format = (*surface_type) = VA_RT_FORMAT_YUV420;\n        if (yuv_type == 0) {\n            yuvComponent->fourcc_val = VA_FOURCC_I420;\n            fourcc->value.value.i = VA_FOURCC_NV12;\n        } else {\n            yuvComponent->fourcc_val = fourcc->value.value.i = VA_FOURCC_NV12;\n        }\n        yuvComponent->num_components = 3;\n        yuvComponent->y_h_subsample = 2;\n        yuvComponent->y_v_subsample = 2;\n        yuvComponent->u_h_subsample = 1;\n        yuvComponent->u_v_subsample = 1;\n        yuvComponent->v_h_subsample = 1;\n        yuvComponent->v_v_subsample = 1;\n        break;\n    }\n\n    case 2: { //UYVY\n        yuvComponent->va_surface_format = (*surface_type) = VA_RT_FORMAT_YUV422;\n        yuvComponent->fourcc_val = fourcc->value.value.i = VA_FOURCC_UYVY;\n        yuvComponent->num_components = 3;\n        yuvComponent->y_h_subsample = 2;\n        yuvComponent->y_v_subsample = 1;\n        yuvComponent->u_h_subsample = 1;\n        yuvComponent->u_v_subsample = 1;\n        yuvComponent->v_h_subsample = 1;\n        yuvComponent->v_v_subsample = 1;\n        break;\n    }\n\n    case 3: { //YUY2\n        yuvComponent->va_surface_format = (*surface_type) = VA_RT_FORMAT_YUV422;\n        yuvComponent->fourcc_val = fourcc->value.value.i = VA_FOURCC_YUY2;\n        yuvComponent->num_components = 3;\n        yuvComponent->y_h_subsample = 2;\n        yuvComponent->y_v_subsample = 1;\n        yuvComponent->u_h_subsample = 1;\n        yuvComponent->u_v_subsample = 1;\n        yuvComponent->v_h_subsample = 1;\n        yuvComponent->v_v_subsample = 1;\n        break;\n    }\n\n    case 4: { //Y8\n        yuvComponent->va_surface_format = (*surface_type) = VA_RT_FORMAT_YUV400;\n        yuvComponent->fourcc_val = fourcc->value.value.i = VA_FOURCC_Y800;\n        yuvComponent->num_components = 1;\n        yuvComponent->y_h_subsample = 1;\n        yuvComponent->y_v_subsample = 1;\n        yuvComponent->u_h_subsample = 0;\n        yuvComponent->u_v_subsample = 0;\n        yuvComponent->v_h_subsample = 0;\n        yuvComponent->v_v_subsample = 0;\n        break;\n    }\n\n    case 5: { //RGBA\n        yuvComponent->va_surface_format = (*surface_type) = VA_RT_FORMAT_RGB32;\n        yuvComponent->fourcc_val = fourcc->value.value.i = VA_FOURCC_RGBA;\n        yuvComponent->num_components = 3;\n        yuvComponent->y_h_subsample = 1;\n        yuvComponent->y_v_subsample = 1;\n        yuvComponent->u_h_subsample = 1;\n        yuvComponent->u_v_subsample = 1;\n        yuvComponent->v_h_subsample = 1;\n        yuvComponent->v_v_subsample = 1;\n        break;\n    }\n\n    default: {\n        printf(\"Unsupported format:\\n\");\n        show_help();\n        break;\n    }\n\n    }\n\n}\n\nint encode_input_image(FILE *yuv_fp, FILE *jpeg_fp, int picture_width, int picture_height, int frame_size, int yuv_type, int quality)\n{\n    int num_entrypoints, enc_entrypoint;\n    int major_ver, minor_ver;\n    int surface_type;\n    VAEntrypoint entrypoints[5];\n    VASurfaceAttrib fourcc;\n    VAConfigAttrib attrib[2];\n    VADisplay   va_dpy;\n    VAStatus va_status;\n    VAConfigID config_id;\n    VASurfaceID surface_id;\n    VAContextID context_id;\n    VABufferID pic_param_buf_id;                /* Picture parameter id*/\n    VABufferID slice_param_buf_id;              /* Slice parameter id, only 1 slice per frame in jpeg encode */\n    VABufferID codedbuf_buf_id;                 /* Output buffer id, compressed data */\n    VABufferID packed_raw_header_param_buf_id;  /* Header parameter buffer id */\n    VABufferID packed_raw_header_buf_id;        /* Header buffer id */\n    VABufferID qmatrix_buf_id;                  /* Quantization Matrix id */\n    VABufferID huffmantable_buf_id;             /* Huffman table id*/\n    VAEncPictureParameterBufferJPEG pic_param;  /* Picture parameter buffer */\n    VAEncSliceParameterBufferJPEG slice_param;  /* Slice parameter buffer */\n    VAQMatrixBufferJPEG quantization_param;     /* Quantization Matrix buffer */\n    VAHuffmanTableBufferJPEGBaseline hufftable_param; /* Huffmantable buffer */\n    YUVComponentSpecs yuvComponent;\n    int writeToFile = 1;\n\n    //Clamp the quality factor value to [1,100]\n    if (quality >= 100) quality = 100;\n    if (quality <= 0) quality = 1;\n\n    fourcc.type = VASurfaceAttribPixelFormat;\n    fourcc.flags = VA_SURFACE_ATTRIB_SETTABLE;\n    fourcc.value.type = VAGenericValueTypeInteger;\n\n    init_yuv_component(&yuvComponent, yuv_type, &surface_type, &fourcc);\n\n    /* 1. Initialize the va driver */\n    va_dpy = va_open_display();\n    va_status = vaInitialize(va_dpy, &major_ver, &minor_ver);\n    assert(va_status == VA_STATUS_SUCCESS);\n\n    /* 2. Query for the entrypoints for the JPEGBaseline profile */\n    va_status = vaQueryConfigEntrypoints(va_dpy, VAProfileJPEGBaseline, entrypoints, &num_entrypoints);\n    CHECK_VASTATUS(va_status, \"vaQueryConfigEntrypoints\");\n    // We need picture level encoding (VAEntrypointEncPicture). Find if it is supported.\n    for (enc_entrypoint = 0; enc_entrypoint < num_entrypoints; enc_entrypoint++) {\n        if (entrypoints[enc_entrypoint] == VAEntrypointEncPicture)\n            break;\n    }\n    if (enc_entrypoint == num_entrypoints) {\n        /* No JPEG Encode (VAEntrypointEncPicture) entry point found */\n        assert(0);\n    }\n\n    /* 3. Query for the Render Target format supported */\n    attrib[0].type = VAConfigAttribRTFormat;\n    attrib[1].type = VAConfigAttribEncJPEG;\n    vaGetConfigAttributes(va_dpy, VAProfileJPEGBaseline, VAEntrypointEncPicture, &attrib[0], 2);\n\n    // RT should be one of below.\n    if (!((attrib[0].value & VA_RT_FORMAT_YUV420) || (attrib[0].value & VA_RT_FORMAT_YUV422) || (attrib[0].value & VA_RT_FORMAT_RGB32)\n          || (attrib[0].value & VA_RT_FORMAT_YUV444) || (attrib[0].value & VA_RT_FORMAT_YUV400))) {\n        /* Did not find the supported RT format */\n        assert(0);\n    }\n\n    VAConfigAttribValEncJPEG jpeg_attrib_val;\n    jpeg_attrib_val.value = attrib[1].value;\n\n    /* Set JPEG profile attribs */\n    jpeg_attrib_val.bits.arithmatic_coding_mode = 0;\n    jpeg_attrib_val.bits.progressive_dct_mode = 0;\n    jpeg_attrib_val.bits.non_interleaved_mode = 1;\n    jpeg_attrib_val.bits.differential_mode = 0;\n\n    attrib[1].value = jpeg_attrib_val.value;\n\n    /* 4. Create Config for the profile=VAProfileJPEGBaseline, entrypoint=VAEntrypointEncPicture,\n     * with RT format attribute */\n    va_status = vaCreateConfig(va_dpy, VAProfileJPEGBaseline, VAEntrypointEncPicture,\n                               &attrib[0], 2, &config_id);\n    CHECK_VASTATUS(va_status, \"vaQueryConfigEntrypoints\");\n\n    /* 5. Create Surface for the input picture */\n    va_status = vaCreateSurfaces(va_dpy, surface_type, picture_width, picture_height,\n                                 &surface_id, 1, &fourcc, 1);\n    CHECK_VASTATUS(va_status, \"vaCreateSurfaces\");\n\n    //Map the input yuv file to the input surface created with the surface_id\n    upload_yuv_to_surface(va_dpy, yuv_fp, surface_id, yuvComponent, picture_width, picture_height, frame_size);\n\n    /* 6. Create Context for the encode pipe*/\n    va_status = vaCreateContext(va_dpy, config_id, picture_width, picture_height,\n                                VA_PROGRESSIVE, &surface_id, 1, &context_id);\n    CHECK_VASTATUS(va_status, \"vaCreateContext\");\n\n    /* Create buffer for Encoded data to be stored */\n    va_status =  vaCreateBuffer(va_dpy, context_id, VAEncCodedBufferType,\n                                frame_size, 1, NULL, &codedbuf_buf_id);\n    CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n    //Initialize the picture parameter buffer\n    pic_param.coded_buf = codedbuf_buf_id;\n    jpegenc_pic_param_init(&pic_param, picture_width, picture_height, quality, yuvComponent);\n\n    /* 7. Create buffer for the picture parameter */\n    va_status = vaCreateBuffer(va_dpy, context_id, VAEncPictureParameterBufferType,\n                               sizeof(VAEncPictureParameterBufferJPEG), 1, &pic_param, &pic_param_buf_id);\n    CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n    //Load the QMatrix\n    jpegenc_qmatrix_init(&quantization_param, yuvComponent);\n\n    /* 8. Create buffer for Quantization Matrix */\n    va_status = vaCreateBuffer(va_dpy, context_id, VAQMatrixBufferType,\n                               sizeof(VAQMatrixBufferJPEG), 1, &quantization_param, &qmatrix_buf_id);\n    CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n    //Load the Huffman Tables\n    jpegenc_hufftable_init(&hufftable_param, yuvComponent);\n\n    /* 9. Create buffer for Huffman Tables */\n    va_status = vaCreateBuffer(va_dpy, context_id, VAHuffmanTableBufferType,\n                               sizeof(VAHuffmanTableBufferJPEGBaseline), 1, &hufftable_param, &huffmantable_buf_id);\n    CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n    //Initialize the slice parameter buffer\n    jpegenc_slice_param_init(&slice_param, yuvComponent);\n\n    /* 10. Create buffer for slice parameter */\n    va_status = vaCreateBuffer(va_dpy, context_id, VAEncSliceParameterBufferType,\n                               sizeof(slice_param), 1, &slice_param, &slice_param_buf_id);\n    CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n    //Pack headers and send using Raw data buffer\n    VAEncPackedHeaderParameterBuffer packed_header_param_buffer;\n    unsigned int length_in_bits;\n    unsigned char *packed_header_buffer = NULL;\n\n    length_in_bits = build_packed_jpeg_header_buffer(&packed_header_buffer, yuvComponent, picture_width, picture_height, slice_param.restart_interval, quality);\n    packed_header_param_buffer.type = VAEncPackedHeaderRawData;\n    packed_header_param_buffer.bit_length = length_in_bits;\n    packed_header_param_buffer.has_emulation_bytes = 0;\n\n    /* 11. Create raw buffer for header */\n    va_status = vaCreateBuffer(va_dpy,\n                               context_id,\n                               VAEncPackedHeaderParameterBufferType,\n                               sizeof(packed_header_param_buffer), 1, &packed_header_param_buffer,\n                               &packed_raw_header_param_buf_id);\n    CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n    va_status = vaCreateBuffer(va_dpy,\n                               context_id,\n                               VAEncPackedHeaderDataBufferType,\n                               (length_in_bits + 7) / 8, 1, packed_header_buffer,\n                               &packed_raw_header_buf_id);\n    CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n    /* 12. Begin picture */\n    va_status = vaBeginPicture(va_dpy, context_id, surface_id);\n    CHECK_VASTATUS(va_status, \"vaBeginPicture\");\n\n    /* 13. Render picture for all the VA buffers created */\n    va_status = vaRenderPicture(va_dpy, context_id, &pic_param_buf_id, 1);\n    CHECK_VASTATUS(va_status, \"vaRenderPicture\");\n\n    va_status = vaRenderPicture(va_dpy, context_id, &qmatrix_buf_id, 1);\n    CHECK_VASTATUS(va_status, \"vaRenderPicture\");\n\n    va_status = vaRenderPicture(va_dpy, context_id, &huffmantable_buf_id, 1);\n    CHECK_VASTATUS(va_status, \"vaRenderPicture\");\n\n    va_status = vaRenderPicture(va_dpy, context_id, &slice_param_buf_id, 1);\n    CHECK_VASTATUS(va_status, \"vaRenderPicture\");\n\n    va_status = vaRenderPicture(va_dpy, context_id, &packed_raw_header_param_buf_id, 1);\n    CHECK_VASTATUS(va_status, \"vaRenderPicture\");\n\n    va_status = vaRenderPicture(va_dpy, context_id, &packed_raw_header_buf_id, 1);\n    CHECK_VASTATUS(va_status, \"vaRenderPicture\");\n\n    va_status = vaEndPicture(va_dpy, context_id);\n    CHECK_VASTATUS(va_status, \"vaEndPicture\");\n\n    if (writeToFile) {\n        VASurfaceStatus surface_status;\n        size_t w_items;\n        VACodedBufferSegment *coded_buffer_segment;\n        unsigned char *coded_mem;\n        int slice_data_length;\n\n        va_status = vaSyncSurface(va_dpy, surface_id);\n        CHECK_VASTATUS(va_status, \"vaSyncSurface\");\n\n        surface_status = 0;\n        va_status = vaQuerySurfaceStatus(va_dpy, surface_id, &surface_status);\n        CHECK_VASTATUS(va_status, \"vaQuerySurfaceStatus\");\n\n        va_status = vaMapBuffer(va_dpy, codedbuf_buf_id, (void **)(&coded_buffer_segment));\n        CHECK_VASTATUS(va_status, \"vaMapBuffer\");\n\n        coded_mem = coded_buffer_segment->buf;\n\n        if (coded_buffer_segment->status & VA_CODED_BUF_STATUS_SLICE_OVERFLOW_MASK) {\n            vaUnmapBuffer(va_dpy, codedbuf_buf_id);\n            printf(\"ERROR......Coded buffer too small\\n\");\n        }\n\n\n        slice_data_length = coded_buffer_segment->size;\n\n        do {\n            w_items = fwrite(coded_mem, slice_data_length, 1, jpeg_fp);\n        } while (w_items != 1);\n\n        va_status = vaUnmapBuffer(va_dpy, codedbuf_buf_id);\n        CHECK_VASTATUS(va_status, \"vaUnmapBuffer\");\n    }\n\n    vaDestroyBuffer(va_dpy, pic_param_buf_id);\n    vaDestroyBuffer(va_dpy, qmatrix_buf_id);\n    vaDestroyBuffer(va_dpy, slice_param_buf_id);\n    vaDestroyBuffer(va_dpy, huffmantable_buf_id);\n    vaDestroyBuffer(va_dpy, codedbuf_buf_id);\n    vaDestroyBuffer(va_dpy, packed_raw_header_param_buf_id);\n    vaDestroyBuffer(va_dpy, packed_raw_header_buf_id);\n    vaDestroySurfaces(va_dpy, &surface_id, 1);\n    vaDestroyContext(va_dpy, context_id);\n    vaDestroyConfig(va_dpy, config_id);\n    vaTerminate(va_dpy);\n    va_close_display(va_dpy);\n\n    return 0;\n}\n\n\nint main(int argc, char *argv[])\n{\n    FILE *yuv_fp;\n    FILE *jpeg_fp;\n    off_t file_size;\n    clock_t start_time, finish_time;\n    unsigned int duration;\n    unsigned int yuv_type = 0;\n    int quality = 0;\n    unsigned int picture_width = 0;\n    unsigned int picture_height = 0;\n    unsigned int frame_size = 0;\n\n    va_init_display_args(&argc, argv);\n\n    if (argc != 7) {\n        show_help();\n        return -1;\n    }\n\n    picture_width = atoi(argv[1]);\n    picture_height = atoi(argv[2]);\n    yuv_type = atoi(argv[5]);\n    quality = atoi(argv[6]);\n\n    //<input file type: 0(I420)/1(NV12)/2(UYVY)/3(YUY2)/4(Y8)/5(RGBA)>\n    switch (yuv_type) {\n    case 0 :   //I420\n    case 1 : { //NV12\n        frame_size = picture_width * picture_height + ((picture_width * picture_height) >> 1) ;\n        break;\n    }\n\n    case 2:  //UYVY\n    case 3: { //YUY2\n        frame_size = 2 * (picture_width * picture_height);\n        break;\n    }\n\n    case 4: { //Y8\n        frame_size = picture_width * picture_height;\n        break;\n    }\n\n    case 5: { //RGBA\n        frame_size = 4 * (picture_width * picture_height) ;\n        break;\n    }\n\n    default: {\n        printf(\"Unsupported format:\\n\");\n        show_help();\n        return -1;\n    }\n    }\n\n    yuv_fp = fopen(argv[3], \"rb\");\n    if (yuv_fp == NULL) {\n        printf(\"Can't open input YUV file\\n\");\n        return -1;\n    }\n\n    fseeko(yuv_fp, (off_t)0, SEEK_END);\n    file_size = ftello(yuv_fp);\n\n    if ((file_size < frame_size) || ((frame_size != 0) && (file_size % frame_size))) {\n        fclose(yuv_fp);\n        printf(\"The YUV file's size is not correct: file_size=%zd, frame_size=%d\\n\", file_size, frame_size);\n        return -1;\n    }\n\n    fseeko(yuv_fp, (off_t)0, SEEK_SET);\n\n    jpeg_fp = fopen(argv[4], \"wb\");\n    if (jpeg_fp == NULL) {\n        fclose(yuv_fp);\n        printf(\"Can't open output destination jpeg file\\n\");\n        return -1;\n    }\n\n    start_time = clock();\n    encode_input_image(yuv_fp, jpeg_fp, picture_width, picture_height, frame_size, yuv_type, quality);\n    if (yuv_fp != NULL) fclose(yuv_fp);\n    if (jpeg_fp != NULL) fclose(jpeg_fp);\n    finish_time = clock();\n    duration = finish_time - start_time;\n    printf(\"Encoding finished in %u ticks\\n\", duration);\n\n    return 0;\n}\n"
  },
  {
    "path": "encode/jpegenc_utils.h",
    "content": "/*\n * Copyright (c) 2014 Intel Corporation. All Rights Reserved.\n *\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the\n * \"Software\"), to deal in the Software without restriction, including\n * without limitation the rights to use, copy, modify, merge, publish,\n * distribute, sub license, and/or sell copies of the Software, and to\n * permit persons to whom the Software is furnished to do so, subject to\n * the following conditions:\n *\n * The above copyright notice and this permission notice (including the\n * next paragraph) shall be included in all copies or substantial portions\n * of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR\n * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n/*\n * This file is a utilities file which supports JPEG Encode process\n */\n\n#include <sys/types.h>\n#include <stdio.h>\n\n#define MAX_JPEG_COMPONENTS 3 //only for Y, U and V\n#define JPEG_Y 0\n#define JPEG_U 1\n#define JPEG_V 2\n#define NUM_QUANT_ELEMENTS 64\n#define NUM_MAX_HUFFTABLE 2\n#define NUM_AC_RUN_SIZE_BITS 16\n#define NUM_AC_CODE_WORDS_HUFFVAL 162\n#define NUM_DC_RUN_SIZE_BITS 16\n#define NUM_DC_CODE_WORDS_HUFFVAL 12\n\n#define BITSTREAM_ALLOCATE_STEPPING     4096\n\nstruct __bitstream {\n    unsigned int *buffer;\n    int bit_offset;\n    int max_size_in_dword;\n};\n\ntypedef struct __bitstream bitstream;\n\nstatic unsigned int\nswap32(unsigned int val)\n{\n    unsigned char *pval = (unsigned char *)&val;\n\n    return ((pval[0] << 24)     |\n            (pval[1] << 16)     |\n            (pval[2] << 8)      |\n            (pval[3] << 0));\n}\n\nstatic void\nbitstream_start(bitstream *bs)\n{\n    bs->max_size_in_dword = BITSTREAM_ALLOCATE_STEPPING;\n    bs->buffer = calloc(bs->max_size_in_dword * sizeof(int), 1);\n    assert(bs->buffer);\n    bs->bit_offset = 0;\n}\n\nstatic void\nbitstream_end(bitstream *bs)\n{\n    int pos = (bs->bit_offset >> 5);\n    int bit_offset = (bs->bit_offset & 0x1f);\n    int bit_left = 32 - bit_offset;\n\n    if (bit_offset) {\n        bs->buffer[pos] = swap32((bs->buffer[pos] << bit_left));\n    }\n}\n\nstatic void\nbitstream_put_ui(bitstream *bs, unsigned int val, int size_in_bits)\n{\n    int pos = (bs->bit_offset >> 5);\n    int bit_offset = (bs->bit_offset & 0x1f);\n    int bit_left = 32 - bit_offset;\n\n    if (!size_in_bits)\n        return;\n\n    if (size_in_bits < 32)\n        val &= ((1 << size_in_bits) - 1);\n\n    bs->bit_offset += size_in_bits;\n\n    if (bit_left > size_in_bits) {\n        bs->buffer[pos] = (bs->buffer[pos] << size_in_bits | val);\n    } else {\n        size_in_bits -= bit_left;\n        bs->buffer[pos] = (bs->buffer[pos] << bit_left) | (val >> size_in_bits);\n        bs->buffer[pos] = swap32(bs->buffer[pos]);\n\n        if (pos + 1 == bs->max_size_in_dword) {\n            bs->max_size_in_dword += BITSTREAM_ALLOCATE_STEPPING;\n            bs->buffer = realloc(bs->buffer, bs->max_size_in_dword * sizeof(unsigned int));\n            assert(bs->buffer);\n        }\n\n        bs->buffer[pos + 1] = val;\n    }\n}\n\n//As per Jpeg Spec ISO/IEC 10918-1, below values are assigned\nenum jpeg_markers {\n\n//Define JPEG markers as 0xFFXX if you are adding the value directly to the buffer\n//Else define marker as 0xXXFF if you are assigning the marker to a structure variable.\n//This is needed because of the little-endedness of the IA\n\n    SOI  = 0xFFD8, //Start of Image\n    EOI  = 0xFFD9, //End of Image\n    SOS  = 0xFFDA, //Start of Scan\n    DQT  = 0xFFDB, //Define Quantization Table\n    DRI  = 0xFFDD, //Define restart interval\n    RST0 = 0xFFD0, //Restart interval termination\n    DHT  = 0xFFC4, //Huffman table\n    SOF0 = 0xFFC0, //Baseline DCT\n    APP0 = 0xFFE0, //Application Segment\n    COM  = 0xFFFE  //Comment segment\n};\n\ntypedef struct _JPEGFrameHeader {\n\n    uint16_t SOF;    //Start of Frame Header\n    uint16_t Lf;     //Length of Frame Header\n    uint8_t  P;      //Sample precision\n    uint16_t Y;      //Number of lines\n    uint16_t X;      //Number of samples per line\n    uint8_t  Nf;     //Number of image components in frame\n\n    struct _JPEGComponent {\n        uint8_t Ci;    //Component identifier\n        uint8_t Hi: 4; //Horizontal sampling factor\n        uint8_t Vi: 4; //Vertical sampling factor\n        uint8_t Tqi;   //Quantization table destination selector\n    } JPEGComponent[MAX_JPEG_COMPONENTS];\n\n} JPEGFrameHeader;\n\n\ntypedef struct _JPEGScanHeader {\n\n    uint16_t SOS;  //Start of Scan\n    uint16_t Ls;   //Length of Scan\n    uint8_t  Ns;   //Number of image components in the scan\n\n    struct _ScanComponent {\n        uint8_t Csj;   //Scan component selector\n        uint8_t Tdj: 4; //DC Entropy coding table destination selector(Tdj:4 bits)\n        uint8_t Taj: 4; //AC Entropy coding table destination selector(Taj:4 bits)\n    } ScanComponent[MAX_JPEG_COMPONENTS];\n\n    uint8_t Ss;    //Start of spectral or predictor selection, 0 for Baseline\n    uint8_t Se;    //End of spectral or predictor selection, 63 for Baseline\n    uint8_t Ah: 4; //Successive approximation bit position high, 0 for Baseline\n    uint8_t Al: 4; //Successive approximation bit position low, 0 for Baseline\n\n} JPEGScanHeader;\n\n\ntypedef struct _JPEGQuantSection {\n\n    uint16_t DQT;    //Quantization table marker\n    uint16_t Lq;     //Length of Quantization table definition\n    uint8_t  Tq: 4;  //Quantization table destination identifier\n    uint8_t  Pq: 4;  //Quatization table precision. Should be 0 for 8-bit samples\n    uint8_t  Qk[NUM_QUANT_ELEMENTS]; //Quantization table elements\n\n} JPEGQuantSection;\n\ntypedef struct _JPEGHuffSection {\n\n    uint16_t DHT;                            //Huffman table marker\n    uint16_t Lh;                             //Huffman table definition length\n    uint8_t  Tc: 4;                          //Table class- 0:DC, 1:AC\n    uint8_t  Th: 4;                          //Huffman table destination identifier\n    uint8_t  Li[NUM_AC_RUN_SIZE_BITS];       //Number of Huffman codes of length i\n    uint8_t  Vij[NUM_AC_CODE_WORDS_HUFFVAL]; //Value associated with each Huffman code\n\n} JPEGHuffSection;\n\n\ntypedef struct _JPEGRestartSection {\n\n    uint16_t DRI;  //Restart interval marker\n    uint16_t Lr;   //Legth of restart interval segment\n    uint16_t Ri;   //Restart interval\n\n} JPEGRestartSection;\n\n\ntypedef struct _JPEGCommentSection {\n\n    uint16_t COM;  //Comment marker\n    uint16_t Lc;   //Comment segment length\n    uint8_t  Cmi;  //Comment byte\n\n} JPEGCommentSection;\n\n\ntypedef struct _JPEGAppSection {\n\n    uint16_t APPn;  //Application data marker\n    uint16_t Lp;    //Application data segment length\n    uint8_t  Api;   //Application data byte\n\n} JPEGAppSection;\n\n//Luminance quantization table\n//Source: Jpeg Spec ISO/IEC 10918-1, Annex K, Table K.1\nuint8_t jpeg_luma_quant[NUM_QUANT_ELEMENTS] = {\n    16, 11, 10, 16, 24,  40,  51,  61,\n    12, 12, 14, 19, 26,  58,  60,  55,\n    14, 13, 16, 24, 40,  57,  69,  56,\n    14, 17, 22, 29, 51,  87,  80,  62,\n    18, 22, 37, 56, 68,  109, 103, 77,\n    24, 35, 55, 64, 81,  104, 113, 92,\n    49, 64, 78, 87, 103, 121, 120, 101,\n    72, 92, 95, 98, 112, 100, 103, 99\n};\n\n//Luminance quantization table\n//Source: Jpeg Spec ISO/IEC 10918-1, Annex K, Table K.2\nuint8_t jpeg_chroma_quant[NUM_QUANT_ELEMENTS] = {\n    17, 18, 24, 47, 99, 99, 99, 99,\n    18, 21, 26, 66, 99, 99, 99, 99,\n    24, 26, 56, 99, 99, 99, 99, 99,\n    47, 66, 99, 99, 99, 99, 99, 99,\n    99, 99, 99, 99, 99, 99, 99, 99,\n    99, 99, 99, 99, 99, 99, 99, 99,\n    99, 99, 99, 99, 99, 99, 99, 99,\n    99, 99, 99, 99, 99, 99, 99, 99\n};\n\n\n//Zigzag scan order of the the Luma and Chroma components\n//Note: Jpeg Spec ISO/IEC 10918-1, Figure A.6 shows the zigzag order differently.\n//The Spec is trying to show the zigzag pattern with number positions. The below\n//table will use the patter shown by A.6 and map the postion of the elements in the array\nuint8_t jpeg_zigzag[] = {\n    0,   1,   8,   16,  9,   2,   3,   10,\n    17,  24,  32,  25,  18,  11,  4,   5,\n    12,  19,  26,  33,  40,  48,  41,  34,\n    27,  20,  13,  6,   7,   14,  21,  28,\n    35,  42,  49,  56,  57,  50,  43,  36,\n    29,  22,  15,  23,  30,  37,  44,  51,\n    58,  59,  52,  45,  38,  31,  39,  46,\n    53,  60,  61,  54,  47,  55,  62,  63\n};\n\n\n//Huffman table for Luminance DC Coefficients\n//Reference Jpeg Spec ISO/IEC 10918-1, K.3.3.1\n//K.3.3.1 is the summarized version of Table K.3\nuint8_t jpeg_hufftable_luma_dc[] = {\n    //TcTh (Tc=0 since 0:DC, 1:AC; Th=0)\n    0x00,\n    //Li\n    0x00, 0x01, 0x05, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    //Vi\n    0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0A, 0x0B\n};\n\n//Huffman table for Chrominance DC Coefficients\n//Reference Jpeg Spec ISO/IEC 10918-1, K.3.3.1\n//K.3.3.1 is the summarized version of Table K.4\nuint8_t jpeg_hufftable_chroma_dc[] = {\n    //TcTh (Tc=0 since 0:DC, 1:AC; Th=1)\n    0x01,\n    //Li\n    0x00, 0x03, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n    //Vi\n    0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0A, 0x0B\n};\n\n\n//Huffman table for Luminance AC Coefficients\n//Reference Jpeg Spec ISO/IEC 10918-1, K.3.3.2\n//K.3.3.2 is the summarized version of Table K.5\nuint8_t jpeg_hufftable_luma_ac[] = {\n    //TcTh (Tc=1 since 0:DC, 1:AC; Th=0)\n    0x10,\n    //Li\n    0x00, 0x02, 0x01, 0x03, 0x03, 0x02, 0x04, 0x03, 0x05, 0x05, 0x04, 0x04, 0x00, 0x00, 0x01, 0x7D,\n    //Vi\n    0x01, 0x02, 0x03, 0x00, 0x04, 0x11, 0x05, 0x12, 0x21, 0x31, 0x41, 0x06, 0x13, 0x51, 0x61, 0x07,\n    0x22, 0x71, 0x14, 0x32, 0x81, 0x91, 0xA1, 0x08, 0x23, 0x42, 0xB1, 0xC1, 0x15, 0x52, 0xD1, 0xF0,\n    0x24, 0x33, 0x62, 0x72, 0x82, 0x09, 0x0A, 0x16, 0x17, 0x18, 0x19, 0x1A, 0x25, 0x26, 0x27, 0x28,\n    0x29, 0x2A, 0x34, 0x35, 0x36, 0x37, 0x38, 0x39, 0x3A, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49,\n    0x4A, 0x53, 0x54, 0x55, 0x56, 0x57, 0x58, 0x59, 0x5A, 0x63, 0x64, 0x65, 0x66, 0x67, 0x68, 0x69,\n    0x6A, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7A, 0x83, 0x84, 0x85, 0x86, 0x87, 0x88, 0x89,\n    0x8A, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97, 0x98, 0x99, 0x9A, 0xA2, 0xA3, 0xA4, 0xA5, 0xA6, 0xA7,\n    0xA8, 0xA9, 0xAA, 0xB2, 0xB3, 0xB4, 0xB5, 0xB6, 0xB7, 0xB8, 0xB9, 0xBA, 0xC2, 0xC3, 0xC4, 0xC5,\n    0xC6, 0xC7, 0xC8, 0xC9, 0xCA, 0xD2, 0xD3, 0xD4, 0xD5, 0xD6, 0xD7, 0xD8, 0xD9, 0xDA, 0xE1, 0xE2,\n    0xE3, 0xE4, 0xE5, 0xE6, 0xE7, 0xE8, 0xE9, 0xEA, 0xF1, 0xF2, 0xF3, 0xF4, 0xF5, 0xF6, 0xF7, 0xF8,\n    0xF9, 0xFA\n};\n\n//Huffman table for Chrominance AC Coefficients\n//Reference Jpeg Spec ISO/IEC 10918-1, K.3.3.2\n//K.3.3.2 is the summarized version of Table K.6\nuint8_t jpeg_hufftable_chroma_ac[] = {\n    //TcTh (Tc=1 since 0:DC, 1:AC; Th=1)\n    0x11,\n    //Li\n    0x00, 0x02, 0x01, 0x02, 0x04, 0x04, 0x03, 0x04, 0x07, 0x05, 0x04, 0x04, 0x00, 0x01, 0x02, 0x77,\n    //Vi\n    0x00, 0x01, 0x02, 0x03, 0x11, 0x04, 0x05, 0x21, 0x31, 0x06, 0x12, 0x41, 0x51, 0x07, 0x61, 0x71,\n    0x13, 0x22, 0x32, 0x81, 0x08, 0x14, 0x42, 0x91, 0xA1, 0xB1, 0xC1, 0x09, 0x23, 0x33, 0x52, 0xF0,\n    0x15, 0x62, 0x72, 0xD1, 0x0A, 0x16, 0x24, 0x34, 0xE1, 0x25, 0xF1, 0x17, 0x18, 0x19, 0x1A, 0x26,\n    0x27, 0x28, 0x29, 0x2A, 0x35, 0x36, 0x37, 0x38, 0x39, 0x3A, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48,\n    0x49, 0x4A, 0x53, 0x54, 0x55, 0x56, 0x57, 0x58, 0x59, 0x5A, 0x63, 0x64, 0x65, 0x66, 0x67, 0x68,\n    0x69, 0x6A, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7A, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87,\n    0x88, 0x89, 0x8A, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97, 0x98, 0x99, 0x9A, 0xA2, 0xA3, 0xA4, 0xA5,\n    0xA6, 0xA7, 0xA8, 0xA9, 0xAA, 0xB2, 0xB3, 0xB4, 0xB5, 0xB6, 0xB7, 0xB8, 0xB9, 0xBA, 0xC2, 0xC3,\n    0xC4, 0xC5, 0xC6, 0xC7, 0xC8, 0xC9, 0xCA, 0xD2, 0xD3, 0xD4, 0xD5, 0xD6, 0xD7, 0xD8, 0xD9, 0xDA,\n    0xE2, 0xE3, 0xE4, 0xE5, 0xE6, 0xE7, 0xE8, 0xE9, 0xEA, 0xF2, 0xF3, 0xF4, 0xF5, 0xF6, 0xF7, 0xF8,\n    0xF9, 0xFA\n};\n\ntypedef struct _YUVComponentSpecs {\n    //One of 0(I420)/1(NV12)/2(UYVY)/3(YUY2)/4(Y8)/5(RGBA)>\n    unsigned int yuv_type;\n    // One of VA_RT_FORMAT_YUV420, VA_RT_FORMAT_YUV422, VA_RT_FORMAT_YUV400, VA_RT_FORMAT_YUV444, VA_RT_FORMAT_RGB32\n    unsigned int va_surface_format;\n    //One of VA_FOURCC_I420, VA_FOURCC_NV12, VA_FOURCC_UYVY, VA_FOURCC_YUY2, VA_FOURCC_Y800, VA_FOURCC_444P, VA_FOURCC_RGBA\n    unsigned int fourcc_val; //Using this field to evaluate the input file type.\n    //no.of. components\n    unsigned int num_components;\n    //Y horizontal subsample\n    unsigned int y_h_subsample;\n    //Y vertical subsample\n    unsigned int y_v_subsample;\n    //U horizontal subsample\n    unsigned int u_h_subsample;\n    //U vertical subsample\n    unsigned int u_v_subsample;\n    //V horizontal subsample\n    unsigned int v_h_subsample;\n    //V vertical subsample\n    unsigned int v_v_subsample;\n} YUVComponentSpecs;\n"
  },
  {
    "path": "encode/meson.build",
    "content": "m = c.find_library('m')\n\n\nexecutable('avcenc', [ 'avcenc.c' ],\n           dependencies: [ libva_display_dep, threads ],\n           install: true)\nexecutable('h264encode', [ 'h264encode.c' ],\n           dependencies: [ libva_display_dep, threads, m ],\n           install: true)\nexecutable('hevcencode', [ 'hevcencode.c' ],\n           dependencies: [ libva_display_dep, threads, m ],\n           install: true)\nexecutable('mpeg2vaenc', [ 'mpeg2vaenc.c' ],\n           dependencies: [ libva_display_dep, threads ],\n           install: true)\nexecutable('jpegenc', [ 'jpegenc.c' ],\n           dependencies: [ libva_display_dep, threads ],\n           install: true)\nexecutable('svctenc', [ 'svctenc.c' ],\n           dependencies: [libva_display_dep, threads, m ])\nexecutable('vp9enc', [ 'vp9enc.c' ],\n           dependencies: [libva_display_dep, threads, m ],\n           install: true)\nexecutable('vp8enc', [ 'vp8enc.c' ],\n           dependencies: [libva_display_dep, threads, m ],\n           install: true)\nif libva_dep.version().version_compare('>= 1.14.0')\n    executable('av1encode', [ 'av1encode.c' ],\n            dependencies: [ libva_display_dep, threads, m ],\n            install: true)\nendif"
  },
  {
    "path": "encode/mpeg2vaenc.c",
    "content": "/*\n * Copyright (c) 2012 Intel Corporation. All Rights Reserved.\n *\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the\n * \"Software\"), to deal in the Software without restriction, including\n * without limitation the rights to use, copy, modify, merge, publish,\n * distribute, sub license, and/or sell copies of the Software, and to\n * permit persons to whom the Software is furnished to do so, subject to\n * the following conditions:\n *\n * The above copyright notice and this permission notice (including the\n * next paragraph) shall be included in all copies or substantial portions\n * of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR\n * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n/*\n * Simple MPEG-2 encoder based on libVA.\n *\n */\n\n#include <getopt.h>\n#include <unistd.h>\n\n#include <assert.h>\n#include <stdio.h>\n#include <stdlib.h>\n#include <string.h>\n#include <sys/time.h>\n#include <sys/types.h>\n#include <fcntl.h>\n#include <time.h>\n#include <math.h>\n#include <pthread.h>\n\n#include <va/va.h>\n#include <va/va_enc_mpeg2.h>\n\n#include \"va_display.h\"\n\n#define START_CODE_PICUTRE      0x00000100\n#define START_CODE_SLICE        0x00000101\n#define START_CODE_USER         0x000001B2\n#define START_CODE_SEQ          0x000001B3\n#define START_CODE_EXT          0x000001B5\n#define START_CODE_GOP          0x000001B8\n\n#define CHROMA_FORMAT_RESERVED  0\n#define CHROMA_FORMAT_420       1\n#define CHROMA_FORMAT_422       2\n#define CHROMA_FORMAT_444       3\n\n#define MAX_SLICES              128\n\nenum {\n    MPEG2_MODE_I = 0,\n    MPEG2_MODE_IP,\n    MPEG2_MODE_IPB,\n};\n\nenum {\n    MPEG2_LEVEL_LOW = 0,\n    MPEG2_LEVEL_MAIN,\n    MPEG2_LEVEL_HIGH,\n};\n\n#define CHECK_VASTATUS(va_status, func)                                 \\\n    if (va_status != VA_STATUS_SUCCESS) {                               \\\n        fprintf(stderr, \"%s:%s (%d) failed, exit\\n\", __func__, func, __LINE__); \\\n        exit(1);                                                        \\\n    }\n\n#define CHECK_CONDITION(cond)                                                \\\n    if(!(cond))                                                              \\\n    {                                                                        \\\n        fprintf(stderr, \"Unexpected condition: %s:%d\\n\", __func__, __LINE__); \\\n        exit(1);                                                             \\\n    }\n\nstatic VAProfile mpeg2_va_profiles[] = {\n    VAProfileMPEG2Simple,\n    VAProfileMPEG2Main\n};\n\nstatic struct _mpeg2_sampling_density {\n    int samplers_per_line;\n    int line_per_frame;\n    int frame_per_sec;\n} mpeg2_upper_samplings[2][3] = {\n    {   { 0, 0, 0 },\n        { 720, 576, 30 },\n        { 0, 0, 0 },\n    },\n\n    {   { 352, 288, 30 },\n        { 720, 576, 30 },\n        { 1920, 1152, 60 },\n    }\n};\n\nstruct mpeg2enc_context {\n    /* args */\n    int rate_control_mode;\n    int fps;\n    int mode; /* 0:I, 1:I/P, 2:I/P/B */\n    VAProfile profile;\n    int level;\n    int width;\n    int height;\n    int frame_size;\n    int num_pictures;\n    int qp;\n    FILE *ifp;\n    FILE *ofp;\n    unsigned char *frame_data_buffer;\n    int intra_period;\n    int ip_period;\n    int bit_rate; /* in kbps */\n    VAEncPictureType next_type;\n    int next_display_order;\n    int next_bframes;\n    int new_sequence;\n    int new_gop_header;\n    int gop_header_in_display_order;\n\n    /* VA resource */\n    VADisplay va_dpy;\n    VAEncSequenceParameterBufferMPEG2 seq_param;\n    VAEncPictureParameterBufferMPEG2 pic_param;\n    VAEncSliceParameterBufferMPEG2 slice_param[MAX_SLICES];\n    VAContextID context_id;\n    VAConfigID config_id;\n    VABufferID seq_param_buf_id;                /* Sequence level parameter */\n    VABufferID pic_param_buf_id;                /* Picture level parameter */\n    VABufferID slice_param_buf_id[MAX_SLICES];  /* Slice level parameter, multil slices */\n    VABufferID codedbuf_buf_id;                 /* Output buffer, compressed data */\n    VABufferID packed_seq_header_param_buf_id;\n    VABufferID packed_seq_buf_id;\n    VABufferID packed_pic_header_param_buf_id;\n    VABufferID packed_pic_buf_id;\n    int num_slice_groups;\n    int codedbuf_i_size;\n    int codedbuf_pb_size;\n\n    /* thread */\n    pthread_t upload_thread_id;\n    int upload_thread_value;\n    int current_input_surface;\n    int current_upload_surface;\n};\n\n/*\n * mpeg2enc helpers\n */\n#define BITSTREAM_ALLOCATE_STEPPING     4096\n\nstruct __bitstream {\n    unsigned int *buffer;\n    int bit_offset;\n    int max_size_in_dword;\n};\n\ntypedef struct __bitstream bitstream;\n\nstatic unsigned int\nswap32(unsigned int val)\n{\n    unsigned char *pval = (unsigned char *)&val;\n\n    return ((pval[0] << 24)     |\n            (pval[1] << 16)     |\n            (pval[2] << 8)      |\n            (pval[3] << 0));\n}\n\nstatic void\nbitstream_start(bitstream *bs)\n{\n    bs->max_size_in_dword = BITSTREAM_ALLOCATE_STEPPING;\n    bs->buffer = calloc(bs->max_size_in_dword * sizeof(int), 1);\n    assert(bs->buffer);\n    bs->bit_offset = 0;\n}\n\nstatic void\nbitstream_end(bitstream *bs)\n{\n    int pos = (bs->bit_offset >> 5);\n    int bit_offset = (bs->bit_offset & 0x1f);\n    int bit_left = 32 - bit_offset;\n\n    if (bit_offset) {\n        bs->buffer[pos] = swap32((bs->buffer[pos] << bit_left));\n    }\n}\n\nstatic void\nbitstream_put_ui(bitstream *bs, unsigned int val, int size_in_bits)\n{\n    int pos = (bs->bit_offset >> 5);\n    int bit_offset = (bs->bit_offset & 0x1f);\n    int bit_left = 32 - bit_offset;\n\n    if (!size_in_bits)\n        return;\n\n    if (size_in_bits < 32)\n        val &= ((1 << size_in_bits) - 1);\n\n    bs->bit_offset += size_in_bits;\n\n    if (bit_left > size_in_bits) {\n        bs->buffer[pos] = (bs->buffer[pos] << size_in_bits | val);\n    } else {\n        size_in_bits -= bit_left;\n        bs->buffer[pos] = (bs->buffer[pos] << bit_left) | (val >> size_in_bits);\n        bs->buffer[pos] = swap32(bs->buffer[pos]);\n\n        if (pos + 1 == bs->max_size_in_dword) {\n            bs->max_size_in_dword += BITSTREAM_ALLOCATE_STEPPING;\n            bs->buffer = realloc(bs->buffer, bs->max_size_in_dword * sizeof(unsigned int));\n            assert(bs->buffer);\n        }\n\n        bs->buffer[pos + 1] = val;\n    }\n}\n\nstatic void\nbitstream_byte_aligning(bitstream *bs, int bit)\n{\n    int bit_offset = (bs->bit_offset & 0x7);\n    int bit_left = 8 - bit_offset;\n    int new_val;\n\n    if (!bit_offset)\n        return;\n\n    assert(bit == 0 || bit == 1);\n\n    if (bit)\n        new_val = (1 << bit_left) - 1;\n    else\n        new_val = 0;\n\n    bitstream_put_ui(bs, new_val, bit_left);\n}\n\nstatic struct mpeg2_frame_rate {\n    int code;\n    float value;\n} frame_rate_tab[] = {\n    {1, 23.976},\n    {2, 24.0},\n    {3, 25.0},\n    {4, 29.97},\n    {5, 30},\n    {6, 50},\n    {7, 59.94},\n    {8, 60}\n};\n\nstatic int\nfind_frame_rate_code(const VAEncSequenceParameterBufferMPEG2 *seq_param)\n{\n    unsigned int delta = -1;\n    int code = 1, i;\n    float frame_rate_value = seq_param->frame_rate *\n                             (seq_param->sequence_extension.bits.frame_rate_extension_d + 1) /\n                             (seq_param->sequence_extension.bits.frame_rate_extension_n + 1);\n\n    for (i = 0; i < sizeof(frame_rate_tab) / sizeof(frame_rate_tab[0]); i++) {\n\n        if (fabsf(1000 * frame_rate_tab[i].value - 1000 * frame_rate_value) < delta) {\n            code = frame_rate_tab[i].code;\n            delta = fabsf(1000 * frame_rate_tab[i].value - 1000 * frame_rate_value);\n        }\n    }\n\n    return code;\n}\n\nstatic void\nsps_rbsp(struct mpeg2enc_context *ctx,\n         const VAEncSequenceParameterBufferMPEG2 *seq_param,\n         bitstream *bs)\n{\n    int frame_rate_code = find_frame_rate_code(seq_param);\n\n    if (ctx->new_sequence) {\n        bitstream_put_ui(bs, START_CODE_SEQ, 32);\n        bitstream_put_ui(bs, seq_param->picture_width, 12);\n        bitstream_put_ui(bs, seq_param->picture_height, 12);\n        bitstream_put_ui(bs, seq_param->aspect_ratio_information, 4);\n        bitstream_put_ui(bs, frame_rate_code, 4); /* frame_rate_code */\n        bitstream_put_ui(bs, (seq_param->bits_per_second + 399) / 400, 18); /* the low 18 bits of bit_rate */\n        bitstream_put_ui(bs, 1, 1); /* marker_bit */\n        bitstream_put_ui(bs, seq_param->vbv_buffer_size, 10);\n        bitstream_put_ui(bs, 0, 1); /* constraint_parameter_flag, always 0 for MPEG-2 */\n        bitstream_put_ui(bs, 0, 1); /* load_intra_quantiser_matrix */\n        bitstream_put_ui(bs, 0, 1); /* load_non_intra_quantiser_matrix */\n\n        bitstream_byte_aligning(bs, 0);\n\n        bitstream_put_ui(bs, START_CODE_EXT, 32);\n        bitstream_put_ui(bs, 1, 4); /* sequence_extension id */\n        bitstream_put_ui(bs, seq_param->sequence_extension.bits.profile_and_level_indication, 8);\n        bitstream_put_ui(bs, seq_param->sequence_extension.bits.progressive_sequence, 1);\n        bitstream_put_ui(bs, seq_param->sequence_extension.bits.chroma_format, 2);\n        bitstream_put_ui(bs, seq_param->picture_width >> 12, 2);\n        bitstream_put_ui(bs, seq_param->picture_height >> 12, 2);\n        bitstream_put_ui(bs, ((seq_param->bits_per_second + 399) / 400) >> 18, 12); /* bit_rate_extension */\n        bitstream_put_ui(bs, 1, 1); /* marker_bit */\n        bitstream_put_ui(bs, seq_param->vbv_buffer_size >> 10, 8);\n        bitstream_put_ui(bs, seq_param->sequence_extension.bits.low_delay, 1);\n        bitstream_put_ui(bs, seq_param->sequence_extension.bits.frame_rate_extension_n, 2);\n        bitstream_put_ui(bs, seq_param->sequence_extension.bits.frame_rate_extension_d, 5);\n\n        bitstream_byte_aligning(bs, 0);\n    }\n\n    if (ctx->new_gop_header) {\n        bitstream_put_ui(bs, START_CODE_GOP, 32);\n        bitstream_put_ui(bs, seq_param->gop_header.bits.time_code, 25);\n        bitstream_put_ui(bs, seq_param->gop_header.bits.closed_gop, 1);\n        bitstream_put_ui(bs, seq_param->gop_header.bits.broken_link, 1);\n\n        bitstream_byte_aligning(bs, 0);\n    }\n}\n\nstatic void\npps_rbsp(const VAEncSequenceParameterBufferMPEG2 *seq_param,\n         const VAEncPictureParameterBufferMPEG2 *pic_param,\n         bitstream *bs)\n{\n    int chroma_420_type;\n\n    if (seq_param->sequence_extension.bits.chroma_format == CHROMA_FORMAT_420)\n        chroma_420_type = pic_param->picture_coding_extension.bits.progressive_frame;\n    else\n        chroma_420_type = 0;\n\n    bitstream_put_ui(bs, START_CODE_PICUTRE, 32);\n    bitstream_put_ui(bs, pic_param->temporal_reference, 10);\n    bitstream_put_ui(bs,\n                     pic_param->picture_type == VAEncPictureTypeIntra ? 1 :\n                     pic_param->picture_type == VAEncPictureTypePredictive ? 2 : 3,\n                     3);\n    bitstream_put_ui(bs, 0xFFFF, 16); /* vbv_delay, always 0xFFFF */\n\n    if (pic_param->picture_type == VAEncPictureTypePredictive ||\n        pic_param->picture_type == VAEncPictureTypeBidirectional) {\n        bitstream_put_ui(bs, 0, 1); /* full_pel_forward_vector, always 0 for MPEG-2 */\n        bitstream_put_ui(bs, 7, 3); /* forward_f_code, always 7 for MPEG-2 */\n    }\n\n    if (pic_param->picture_type == VAEncPictureTypeBidirectional) {\n        bitstream_put_ui(bs, 0, 1); /* full_pel_backward_vector, always 0 for MPEG-2 */\n        bitstream_put_ui(bs, 7, 3); /* backward_f_code, always 7 for MPEG-2 */\n    }\n\n    bitstream_put_ui(bs, 0, 1); /* extra_bit_picture, 0 */\n\n    bitstream_byte_aligning(bs, 0);\n\n    bitstream_put_ui(bs, START_CODE_EXT, 32);\n    bitstream_put_ui(bs, 8, 4); /* Picture Coding Extension ID: 8 */\n    bitstream_put_ui(bs, pic_param->f_code[0][0], 4);\n    bitstream_put_ui(bs, pic_param->f_code[0][1], 4);\n    bitstream_put_ui(bs, pic_param->f_code[1][0], 4);\n    bitstream_put_ui(bs, pic_param->f_code[1][1], 4);\n\n    bitstream_put_ui(bs, pic_param->picture_coding_extension.bits.intra_dc_precision, 2);\n    bitstream_put_ui(bs, pic_param->picture_coding_extension.bits.picture_structure, 2);\n    bitstream_put_ui(bs, pic_param->picture_coding_extension.bits.top_field_first, 1);\n    bitstream_put_ui(bs, pic_param->picture_coding_extension.bits.frame_pred_frame_dct, 1);\n    bitstream_put_ui(bs, pic_param->picture_coding_extension.bits.concealment_motion_vectors, 1);\n    bitstream_put_ui(bs, pic_param->picture_coding_extension.bits.q_scale_type, 1);\n    bitstream_put_ui(bs, pic_param->picture_coding_extension.bits.intra_vlc_format, 1);\n    bitstream_put_ui(bs, pic_param->picture_coding_extension.bits.alternate_scan, 1);\n    bitstream_put_ui(bs, pic_param->picture_coding_extension.bits.repeat_first_field, 1);\n    bitstream_put_ui(bs, chroma_420_type, 1);\n    bitstream_put_ui(bs, pic_param->picture_coding_extension.bits.progressive_frame, 1);\n    bitstream_put_ui(bs, pic_param->picture_coding_extension.bits.composite_display_flag, 1);\n\n    bitstream_byte_aligning(bs, 0);\n}\n\nstatic int\nbuild_packed_pic_buffer(const VAEncSequenceParameterBufferMPEG2 *seq_param,\n                        const VAEncPictureParameterBufferMPEG2 *pic_param,\n                        unsigned char **header_buffer)\n{\n    bitstream bs;\n\n    bitstream_start(&bs);\n    pps_rbsp(seq_param, pic_param, &bs);\n    bitstream_end(&bs);\n\n    *header_buffer = (unsigned char *)bs.buffer;\n    return bs.bit_offset;\n}\n\nstatic int\nbuild_packed_seq_buffer(struct mpeg2enc_context *ctx,\n                        const VAEncSequenceParameterBufferMPEG2 *seq_param,\n                        unsigned char **header_buffer)\n{\n    bitstream bs;\n\n    bitstream_start(&bs);\n    sps_rbsp(ctx, seq_param, &bs);\n    bitstream_end(&bs);\n\n    *header_buffer = (unsigned char *)bs.buffer;\n    return bs.bit_offset;\n}\n\n/*\n * mpeg2enc\n */\n#define SID_INPUT_PICTURE_0                     0\n#define SID_INPUT_PICTURE_1                     1\n#define SID_REFERENCE_PICTURE_L0                2\n#define SID_REFERENCE_PICTURE_L1                3\n#define SID_RECON_PICTURE                       4\n#define SID_NUMBER                              SID_RECON_PICTURE + 1\n\nstatic VASurfaceID surface_ids[SID_NUMBER];\n\n/*\n * upload thread function\n */\nstatic void *\nupload_yuv_to_surface(void *data)\n{\n    struct mpeg2enc_context *ctx = data;\n    VAImage surface_image;\n    VAStatus va_status;\n    void *surface_p = NULL;\n    unsigned char *y_src, *u_src, *v_src;\n    unsigned char *y_dst, *u_dst, *v_dst;\n    int y_size = ctx->width * ctx->height;\n    int u_size = (ctx->width >> 1) * (ctx->height >> 1);\n    int row, col;\n    size_t n_items;\n\n    do {\n        n_items = fread(ctx->frame_data_buffer, ctx->frame_size, 1, ctx->ifp);\n    } while (n_items != 1);\n\n    va_status = vaDeriveImage(ctx->va_dpy, surface_ids[ctx->current_upload_surface], &surface_image);\n    CHECK_VASTATUS(va_status, \"vaDeriveImage\");\n\n    vaMapBuffer(ctx->va_dpy, surface_image.buf, &surface_p);\n    assert(VA_STATUS_SUCCESS == va_status);\n\n    y_src = ctx->frame_data_buffer;\n    u_src = ctx->frame_data_buffer + y_size; /* UV offset for NV12 */\n    v_src = ctx->frame_data_buffer + y_size + u_size;\n\n    y_dst = (unsigned char *)surface_p + surface_image.offsets[0];\n    u_dst = (unsigned char *)surface_p + surface_image.offsets[1]; /* UV offset for NV12 */\n    v_dst = (unsigned char *)surface_p + surface_image.offsets[2];\n\n    /* Y plane */\n    for (row = 0; row < surface_image.height; row++) {\n        memcpy(y_dst, y_src, surface_image.width);\n        y_dst += surface_image.pitches[0];\n        y_src += ctx->width;\n    }\n\n    if (surface_image.format.fourcc == VA_FOURCC_NV12) { /* UV plane */\n        for (row = 0; row < surface_image.height / 2; row++) {\n            for (col = 0; col < surface_image.width / 2; col++) {\n                u_dst[col * 2] = u_src[col];\n                u_dst[col * 2 + 1] = v_src[col];\n            }\n\n            u_dst += surface_image.pitches[1];\n            u_src += (ctx->width / 2);\n            v_src += (ctx->width / 2);\n        }\n    } else {\n        for (row = 0; row < surface_image.height / 2; row++) {\n            for (col = 0; col < surface_image.width / 2; col++) {\n                u_dst[col] = u_src[col];\n                v_dst[col] = v_src[col];\n            }\n\n            u_dst += surface_image.pitches[1];\n            v_dst += surface_image.pitches[2];\n            u_src += (ctx->width / 2);\n            v_src += (ctx->width / 2);\n        }\n    }\n\n    vaUnmapBuffer(ctx->va_dpy, surface_image.buf);\n    vaDestroyImage(ctx->va_dpy, surface_image.image_id);\n\n    return NULL;\n}\n\nstatic void\nmpeg2enc_exit(struct mpeg2enc_context *ctx, int exit_code)\n{\n    if (ctx->frame_data_buffer) {\n        free(ctx->frame_data_buffer);\n        ctx->frame_data_buffer = NULL;\n    }\n\n    if (ctx->ifp) {\n        fclose(ctx->ifp);\n        ctx->ifp = NULL;\n    }\n\n    if (ctx->ofp) {\n        fclose(ctx->ofp);\n        ctx->ofp = NULL;\n    }\n\n    exit(exit_code);\n}\n\nstatic void\nusage(char *program)\n{\n    fprintf(stderr, \"Usage: %s --help\\n\", program);\n    fprintf(stderr, \"\\t--help   print this message\\n\");\n    fprintf(stderr, \"Usage: %s <width> <height> <ifile> <ofile> [options]\\n\", program);\n    fprintf(stderr, \"\\t<width>  specifies the frame width\\n\");\n    fprintf(stderr, \"\\t<height> specifies the frame height\\n\");\n    fprintf(stderr, \"\\t<ifile>  specifies the I420/IYUV YUV file\\n\");\n    fprintf(stderr, \"\\t<ofile>  specifies the encoded MPEG-2 file\\n\");\n    fprintf(stderr, \"where options include:\\n\");\n    fprintf(stderr, \"\\t--cqp <QP>       const qp mode with specified <QP>\\n\");\n    fprintf(stderr, \"\\t--fps <FPS>      specify the frame rate\\n\");\n    fprintf(stderr, \"\\t--mode <MODE>    specify the mode 0 (I), 1 (I/P) and 2 (I/P/B)\\n\");\n    fprintf(stderr, \"\\t--profile <PROFILE>      specify the profile 0(Simple), or 1(Main, default)\\n\");\n    fprintf(stderr, \"\\t--level <LEVEL>  specify the level 0(Low), 1(Main, default) or 2(High)\\n\");\n}\n\nvoid\nmpeg2_profile_level(struct mpeg2enc_context *ctx,\n                    int profile,\n                    int level)\n{\n    int l = 2, p;\n\n    for (p = profile; p < 2; p++) {\n        for (l = level; l < 3; l++) {\n            if (ctx->width <= mpeg2_upper_samplings[p][l].samplers_per_line &&\n                ctx->height <= mpeg2_upper_samplings[p][l].line_per_frame &&\n                ctx->fps <= mpeg2_upper_samplings[p][l].frame_per_sec) {\n\n                goto __find;\n                break;\n            }\n        }\n    }\n\n    if (p == 2) {\n        fprintf(stderr, \"Warning: can't find a proper profile and level for the specified width/height/fps\\n\");\n        p = 1;\n        l = 2;\n    }\n\n__find:\n    ctx->profile = mpeg2_va_profiles[p];\n    ctx->level = l;\n}\n\nstatic void\nparse_args(struct mpeg2enc_context *ctx, int argc, char **argv)\n{\n    int c, tmp;\n    int option_index = 0;\n    long file_size;\n    int profile = 1, level = 1;\n\n    static struct option long_options[] = {\n        {\"help\",        no_argument,            0,      'h'},\n        {\"cqp\",         required_argument,      0,      'c'},\n        {\"fps\",         required_argument,      0,      'f'},\n        {\"mode\",        required_argument,      0,      'm'},\n        {\"profile\",     required_argument,      0,      'p'},\n        {\"level\",       required_argument,      0,      'l'},\n        { NULL,         0,                      NULL,   0 }\n    };\n\n    if ((argc == 2 && strcmp(argv[1], \"--help\") == 0) ||\n        (argc < 5))\n        goto print_usage;\n\n    ctx->width = atoi(argv[1]);\n    ctx->height = atoi(argv[2]);\n\n    if (ctx->width <= 0 || ctx->height <= 0) {\n        fprintf(stderr, \"<width> and <height> must be greater than 0\\n\");\n        goto err_exit;\n    }\n\n    ctx->ifp = fopen(argv[3], \"rb\");\n\n    if (ctx->ifp == NULL) {\n        fprintf(stderr, \"Can't open the input file\\n\");\n        goto err_exit;\n    }\n\n    fseek(ctx->ifp, 0l, SEEK_END);\n    file_size = ftell(ctx->ifp);\n    ctx->frame_size = ctx->width * ctx->height * 3 / 2;\n\n    if ((file_size < ctx->frame_size) ||\n        (file_size % ctx->frame_size)) {\n        fprintf(stderr, \"The input file size %ld isn't a multiple of the frame size %d\\n\", file_size, ctx->frame_size);\n        goto err_exit;\n    }\n\n    ctx->num_pictures = file_size / ctx->frame_size;\n    fseek(ctx->ifp, 0l, SEEK_SET);\n\n    ctx->ofp = fopen(argv[4], \"wb\");\n\n    if (ctx->ofp == NULL) {\n        fprintf(stderr, \"Can't create the output file\\n\");\n        goto err_exit;\n    }\n\n    opterr = 0;\n    ctx->fps = 30;\n    ctx->qp = 8;\n    ctx->rate_control_mode = VA_RC_CQP;\n    ctx->mode = MPEG2_MODE_IP;\n    ctx->profile = VAProfileMPEG2Main;\n    ctx->level = MPEG2_LEVEL_MAIN;\n\n    optind = 5;\n\n    while ((c = getopt_long(argc, argv,\n                            \"\",\n                            long_options,\n                            &option_index)) != -1) {\n        switch (c) {\n        case 'c':\n            tmp = atoi(optarg);\n\n            /* only support q_scale_type = 0 */\n            if (tmp > 62 || tmp < 2) {\n                fprintf(stderr, \"Warning: QP must be in [2, 62]\\n\");\n\n                if (tmp > 62)\n                    tmp = 62;\n\n                if (tmp < 2)\n                    tmp = 2;\n            }\n\n            ctx->qp = tmp & 0xFE;\n            ctx->rate_control_mode = VA_RC_CQP;\n\n            break;\n\n        case 'f':\n            tmp = atoi(optarg);\n\n            if (tmp <= 0)\n                fprintf(stderr, \"Warning: FPS must be greater than 0\\n\");\n            else\n                ctx->fps = tmp;\n\n            ctx->rate_control_mode = VA_RC_CBR;\n\n            break;\n\n        case 'm':\n            tmp = atoi(optarg);\n\n            if (tmp < MPEG2_MODE_I || tmp > MPEG2_MODE_IPB)\n                fprintf(stderr, \"Waning: MODE must be 0, 1, or 2\\n\");\n            else\n                ctx->mode = tmp;\n\n            break;\n\n        case 'p':\n            tmp = atoi(optarg);\n\n            if (tmp < 0 || tmp > 1)\n                fprintf(stderr, \"Waning: PROFILE must be 0 or 1\\n\");\n            else\n                profile = tmp;\n\n            break;\n\n        case 'l':\n            tmp = atoi(optarg);\n\n            if (tmp < MPEG2_LEVEL_LOW || tmp > MPEG2_LEVEL_HIGH)\n                fprintf(stderr, \"Waning: LEVEL must be 0, 1, or 2\\n\");\n            else\n                level = tmp;\n\n            break;\n\n        case '?':\n            fprintf(stderr, \"Error: unkown command options\\n\");\n\n        case 'h':\n            goto print_usage;\n        }\n    }\n\n    mpeg2_profile_level(ctx, profile, level);\n\n    return;\n\nprint_usage:\n    usage(argv[0]);\nerr_exit:\n    mpeg2enc_exit(ctx, 1);\n}\n\n/*\n * init\n */\nvoid\nmpeg2enc_init_sequence_parameter(struct mpeg2enc_context *ctx,\n                                 VAEncSequenceParameterBufferMPEG2 *seq_param)\n{\n    int profile = 4, level = 8;\n\n    switch (ctx->profile) {\n    case VAProfileMPEG2Simple:\n        profile = 5;\n        break;\n\n    case VAProfileMPEG2Main:\n        profile = 4;\n        break;\n\n    default:\n        assert(0);\n        break;\n    }\n\n    switch (ctx->level) {\n    case MPEG2_LEVEL_LOW:\n        level = 10;\n        break;\n\n    case MPEG2_LEVEL_MAIN:\n        level = 8;\n        break;\n\n    case MPEG2_LEVEL_HIGH:\n        level = 4;\n        break;\n\n    default:\n        assert(0);\n        break;\n    }\n\n    seq_param->intra_period = ctx->intra_period;\n    seq_param->ip_period = ctx->ip_period;   /* FIXME: ??? */\n    seq_param->picture_width = ctx->width;\n    seq_param->picture_height = ctx->height;\n\n    if (ctx->bit_rate > 0)\n        seq_param->bits_per_second = 1024 * ctx->bit_rate; /* use kbps as input */\n    else\n        seq_param->bits_per_second = 0x3FFFF * 400;\n\n    seq_param->frame_rate = ctx->fps;\n    seq_param->aspect_ratio_information = 1;\n    seq_param->vbv_buffer_size = 3; /* B = 16 * 1024 * vbv_buffer_size */\n\n    seq_param->sequence_extension.bits.profile_and_level_indication = profile << 4 | level;\n    seq_param->sequence_extension.bits.progressive_sequence = 1; /* progressive frame-pictures */\n    seq_param->sequence_extension.bits.chroma_format = CHROMA_FORMAT_420; /* 4:2:0 */\n    seq_param->sequence_extension.bits.low_delay = 0; /* FIXME */\n    seq_param->sequence_extension.bits.frame_rate_extension_n = 0;\n    seq_param->sequence_extension.bits.frame_rate_extension_d = 0;\n\n    seq_param->gop_header.bits.time_code = (1 << 12); /* bit12: marker_bit */\n    seq_param->gop_header.bits.closed_gop = 0;\n    seq_param->gop_header.bits.broken_link = 0;\n}\n\nstatic void\nmpeg2enc_init_picture_parameter(struct mpeg2enc_context *ctx,\n                                VAEncPictureParameterBufferMPEG2 *pic_param)\n{\n    pic_param->forward_reference_picture = VA_INVALID_ID;\n    pic_param->backward_reference_picture = VA_INVALID_ID;\n    pic_param->reconstructed_picture = VA_INVALID_ID;\n    pic_param->coded_buf = VA_INVALID_ID;\n    pic_param->picture_type = VAEncPictureTypeIntra;\n\n    pic_param->temporal_reference = 0;\n    pic_param->f_code[0][0] = 0xf;\n    pic_param->f_code[0][1] = 0xf;\n    pic_param->f_code[1][0] = 0xf;\n    pic_param->f_code[1][1] = 0xf;\n\n    pic_param->picture_coding_extension.bits.intra_dc_precision = 0; /* 8bits */\n    pic_param->picture_coding_extension.bits.picture_structure = 3; /* frame picture */\n    pic_param->picture_coding_extension.bits.top_field_first = 0;\n    pic_param->picture_coding_extension.bits.frame_pred_frame_dct = 1; /* FIXME */\n    pic_param->picture_coding_extension.bits.concealment_motion_vectors = 0;\n    pic_param->picture_coding_extension.bits.q_scale_type = 0;\n    pic_param->picture_coding_extension.bits.intra_vlc_format = 0;\n    pic_param->picture_coding_extension.bits.alternate_scan = 0;\n    pic_param->picture_coding_extension.bits.repeat_first_field = 0;\n    pic_param->picture_coding_extension.bits.progressive_frame = 1;\n    pic_param->picture_coding_extension.bits.composite_display_flag = 0;\n}\n\nstatic void\nmpeg2enc_alloc_va_resources(struct mpeg2enc_context *ctx)\n{\n    VAEntrypoint *entrypoint_list;\n    VAConfigAttrib attrib_list[2];\n    VAStatus va_status;\n    int max_entrypoints, num_entrypoints, entrypoint;\n    int major_ver, minor_ver;\n\n    ctx->va_dpy = va_open_display();\n    va_status = vaInitialize(ctx->va_dpy,\n                             &major_ver,\n                             &minor_ver);\n    CHECK_VASTATUS(va_status, \"vaInitialize\");\n\n    max_entrypoints = vaMaxNumEntrypoints(ctx->va_dpy);\n    entrypoint_list = malloc(max_entrypoints * sizeof(VAEntrypoint));\n    assert(entrypoint_list);\n    vaQueryConfigEntrypoints(ctx->va_dpy,\n                             ctx->profile,\n                             entrypoint_list,\n                             &num_entrypoints);\n\n    for (entrypoint = 0; entrypoint < num_entrypoints; entrypoint++) {\n        if (entrypoint_list[entrypoint] == VAEntrypointEncSlice)\n            break;\n    }\n\n    free(entrypoint_list);\n\n    if (entrypoint == num_entrypoints) {\n        /* not find Slice entry point */\n        assert(0);\n    }\n\n    /* find out the format for the render target, and rate control mode */\n    attrib_list[0].type = VAConfigAttribRTFormat;\n    attrib_list[1].type = VAConfigAttribRateControl;\n    vaGetConfigAttributes(ctx->va_dpy,\n                          ctx->profile,\n                          VAEntrypointEncSlice,\n                          &attrib_list[0],\n                          2);\n\n    if ((attrib_list[0].value & VA_RT_FORMAT_YUV420) == 0) {\n        /* not find desired YUV420 RT format */\n        assert(0);\n    }\n\n    if ((attrib_list[1].value & ctx->rate_control_mode) == 0) {\n        /* Can't find matched RC mode */\n        fprintf(stderr, \"RC mode %d isn't found, exit\\n\", ctx->rate_control_mode);\n        assert(0);\n    }\n\n    attrib_list[0].value = VA_RT_FORMAT_YUV420; /* set to desired RT format */\n    attrib_list[1].value = ctx->rate_control_mode; /* set to desired RC mode */\n\n    va_status = vaCreateConfig(ctx->va_dpy,\n                               ctx->profile,\n                               VAEntrypointEncSlice,\n                               attrib_list,\n                               2,\n                               &ctx->config_id);\n    CHECK_VASTATUS(va_status, \"vaCreateConfig\");\n\n    /* Create a context for this decode pipe */\n    va_status = vaCreateContext(ctx->va_dpy,\n                                ctx->config_id,\n                                ctx->width,\n                                ctx->height,\n                                VA_PROGRESSIVE,\n                                0,\n                                0,\n                                &ctx->context_id);\n    CHECK_VASTATUS(va_status, \"vaCreateContext\");\n\n    va_status = vaCreateSurfaces(ctx->va_dpy,\n                                 VA_RT_FORMAT_YUV420,\n                                 ctx->width,\n                                 ctx->height,\n                                 surface_ids,\n                                 SID_NUMBER,\n                                 NULL,\n                                 0);\n    CHECK_VASTATUS(va_status, \"vaCreateSurfaces\");\n}\n\nstatic void\nmpeg2enc_init(struct mpeg2enc_context *ctx)\n{\n    int i;\n\n    ctx->frame_data_buffer = (unsigned char *)malloc(ctx->frame_size);\n    ctx->seq_param_buf_id = VA_INVALID_ID;\n    ctx->pic_param_buf_id = VA_INVALID_ID;\n    ctx->packed_seq_header_param_buf_id = VA_INVALID_ID;\n    ctx->packed_seq_buf_id = VA_INVALID_ID;\n    ctx->packed_pic_header_param_buf_id = VA_INVALID_ID;\n    ctx->packed_pic_buf_id = VA_INVALID_ID;\n    ctx->codedbuf_buf_id = VA_INVALID_ID;\n    ctx->codedbuf_i_size = ctx->frame_size;\n    ctx->codedbuf_pb_size = 0;\n    ctx->next_display_order = 0;\n    ctx->next_type = VAEncPictureTypeIntra;\n\n    if (ctx->mode == MPEG2_MODE_I) {\n        ctx->intra_period = 1;\n        ctx->ip_period = 0;\n    } else if (ctx->mode == MPEG2_MODE_IP) {\n        ctx->intra_period = 16;\n        ctx->ip_period = 0;\n    } else {\n        ctx->intra_period = 16;\n        ctx->ip_period = 2;\n    }\n\n    ctx->next_bframes = ctx->ip_period;\n\n    ctx->new_sequence = 1;\n    ctx->new_gop_header = 1;\n    ctx->gop_header_in_display_order = 0;\n\n    ctx->bit_rate = -1;\n\n    for (i = 0; i < MAX_SLICES; i++) {\n        ctx->slice_param_buf_id[i] = VA_INVALID_ID;\n    }\n\n    mpeg2enc_init_sequence_parameter(ctx, &ctx->seq_param);\n    mpeg2enc_init_picture_parameter(ctx, &ctx->pic_param);\n    mpeg2enc_alloc_va_resources(ctx);\n\n    /* thread */\n    ctx->current_input_surface = SID_INPUT_PICTURE_0;\n    ctx->current_upload_surface = SID_INPUT_PICTURE_1;\n    ctx->upload_thread_value = pthread_create(&ctx->upload_thread_id,\n                               NULL,\n                               upload_yuv_to_surface,\n                               ctx);\n}\n\nstatic int\nmpeg2enc_time_code(VAEncSequenceParameterBufferMPEG2 *seq_param,\n                   int num_frames)\n{\n    int fps = (int)(seq_param->frame_rate + 0.5);\n    int time_code = 0;\n    int time_code_pictures, time_code_seconds, time_code_minutes, time_code_hours;\n    int drop_frame_flag = 0;\n\n    assert(fps <= 60);\n\n    time_code_seconds = num_frames / fps;\n    time_code_pictures = num_frames % fps;\n    time_code |= time_code_pictures;\n\n    time_code_minutes = time_code_seconds / 60;\n    time_code_seconds = time_code_seconds % 60;\n    time_code |= (time_code_seconds << 6);\n\n    time_code_hours = time_code_minutes / 60;\n    time_code_minutes = time_code_minutes % 60;\n\n    time_code |= (1 << 12);     /* marker_bit */\n    time_code |= (time_code_minutes << 13);\n\n    time_code_hours = time_code_hours % 24;\n    time_code |= (time_code_hours << 19);\n\n    time_code |= (drop_frame_flag << 24);\n\n    return time_code;\n}\n\n/*\n * run\n */\nstatic void\nmpeg2enc_update_sequence_parameter(struct mpeg2enc_context *ctx,\n                                   VAEncPictureType picture_type,\n                                   int coded_order,\n                                   int display_order)\n{\n    VAEncSequenceParameterBufferMPEG2 *seq_param = &ctx->seq_param;\n\n    /* update the time_code info for the new GOP */\n    if (ctx->new_gop_header) {\n        seq_param->gop_header.bits.time_code = mpeg2enc_time_code(seq_param, display_order);\n    }\n}\n\nstatic void\nmpeg2enc_update_picture_parameter(struct mpeg2enc_context *ctx,\n                                  VAEncPictureType picture_type,\n                                  int coded_order,\n                                  int display_order)\n{\n    VAEncPictureParameterBufferMPEG2 *pic_param = &ctx->pic_param;\n    uint8_t f_code_x, f_code_y;\n\n    pic_param->picture_type = picture_type;\n    pic_param->temporal_reference = (display_order - ctx->gop_header_in_display_order) & 0x3FF;\n    pic_param->reconstructed_picture = surface_ids[SID_RECON_PICTURE];\n    pic_param->forward_reference_picture = surface_ids[SID_REFERENCE_PICTURE_L0];\n    pic_param->backward_reference_picture = surface_ids[SID_REFERENCE_PICTURE_L1];\n\n    f_code_x = 0xf;\n    f_code_y = 0xf;\n    if (pic_param->picture_type != VAEncPictureTypeIntra) {\n        if (ctx->level == MPEG2_LEVEL_LOW) {\n            f_code_x = 7;\n            f_code_y = 4;\n        } else if (ctx->level == MPEG2_LEVEL_MAIN) {\n            f_code_x = 8;\n            f_code_y = 5;\n        } else {\n            f_code_x = 9;\n            f_code_y = 5;\n        }\n    }\n\n    if (pic_param->picture_type == VAEncPictureTypeIntra) {\n        pic_param->f_code[0][0] = 0xf;\n        pic_param->f_code[0][1] = 0xf;\n        pic_param->f_code[1][0] = 0xf;\n        pic_param->f_code[1][1] = 0xf;\n        pic_param->forward_reference_picture = VA_INVALID_SURFACE;\n        pic_param->backward_reference_picture = VA_INVALID_SURFACE;\n\n    } else if (pic_param->picture_type == VAEncPictureTypePredictive) {\n        pic_param->f_code[0][0] = f_code_x;\n        pic_param->f_code[0][1] = f_code_y;\n        pic_param->f_code[1][0] = 0xf;\n        pic_param->f_code[1][1] = 0xf;\n        pic_param->forward_reference_picture = surface_ids[SID_REFERENCE_PICTURE_L0];\n        pic_param->backward_reference_picture = VA_INVALID_SURFACE;\n    } else if (pic_param->picture_type == VAEncPictureTypeBidirectional) {\n        pic_param->f_code[0][0] = f_code_x;\n        pic_param->f_code[0][1] = f_code_y;\n        pic_param->f_code[1][0] = f_code_x;\n        pic_param->f_code[1][1] = f_code_y;\n        pic_param->forward_reference_picture = surface_ids[SID_REFERENCE_PICTURE_L0];\n        pic_param->backward_reference_picture = surface_ids[SID_REFERENCE_PICTURE_L1];\n    } else {\n        assert(0);\n    }\n}\n\nstatic void\nmpeg2enc_update_picture_parameter_buffer(struct mpeg2enc_context *ctx,\n        VAEncPictureType picture_type,\n        int coded_order,\n        int display_order)\n{\n    VAEncPictureParameterBufferMPEG2 *pic_param = &ctx->pic_param;\n    VAStatus va_status;\n\n    /* update the coded buffer id */\n    pic_param->coded_buf = ctx->codedbuf_buf_id;\n    va_status = vaCreateBuffer(ctx->va_dpy,\n                               ctx->context_id,\n                               VAEncPictureParameterBufferType,\n                               sizeof(*pic_param),\n                               1,\n                               pic_param,\n                               &ctx->pic_param_buf_id);\n    CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n}\n\nstatic void\nmpeg2enc_update_slice_parameter(struct mpeg2enc_context *ctx, VAEncPictureType picture_type)\n{\n    VAEncSequenceParameterBufferMPEG2 *seq_param;\n    VAEncPictureParameterBufferMPEG2 *pic_param;\n    VAEncSliceParameterBufferMPEG2 *slice_param;\n    VAStatus va_status;\n    int i, width_in_mbs, height_in_mbs;\n\n    pic_param = &ctx->pic_param;\n    assert(pic_param->picture_coding_extension.bits.q_scale_type == 0);\n\n    seq_param = &ctx->seq_param;\n    width_in_mbs = (seq_param->picture_width + 15) / 16;\n    height_in_mbs = (seq_param->picture_height + 15) / 16;\n    ctx->num_slice_groups = 1;\n\n    for (i = 0; i < height_in_mbs; i++) {\n        slice_param = &ctx->slice_param[i];\n        slice_param->macroblock_address = i * width_in_mbs;\n        slice_param->num_macroblocks = width_in_mbs;\n        slice_param->is_intra_slice = (picture_type == VAEncPictureTypeIntra);\n        slice_param->quantiser_scale_code = ctx->qp / 2;\n    }\n\n    va_status = vaCreateBuffer(ctx->va_dpy,\n                               ctx->context_id,\n                               VAEncSliceParameterBufferType,\n                               sizeof(*slice_param),\n                               height_in_mbs,\n                               ctx->slice_param,\n                               ctx->slice_param_buf_id);\n    CHECK_VASTATUS(va_status, \"vaCreateBuffer\");;\n}\n\nstatic int\nbegin_picture(struct mpeg2enc_context *ctx,\n              int coded_order,\n              int display_order,\n              VAEncPictureType picture_type)\n{\n    VAStatus va_status;\n    int tmp;\n    VAEncPackedHeaderParameterBuffer packed_header_param_buffer;\n    unsigned int length_in_bits;\n    unsigned char *packed_seq_buffer = NULL, *packed_pic_buffer = NULL;\n\n    if (ctx->upload_thread_value != 0) {\n        fprintf(stderr, \"FATAL error!!!\\n\");\n        exit(1);\n    }\n\n    pthread_join(ctx->upload_thread_id, NULL);\n\n    ctx->upload_thread_value = -1;\n    tmp = ctx->current_input_surface;\n    ctx->current_input_surface = ctx->current_upload_surface;\n    ctx->current_upload_surface = tmp;\n\n    mpeg2enc_update_sequence_parameter(ctx, picture_type, coded_order, display_order);\n    mpeg2enc_update_picture_parameter(ctx, picture_type, coded_order, display_order);\n\n    if (ctx->new_sequence || ctx->new_gop_header) {\n        assert(picture_type == VAEncPictureTypeIntra);\n        length_in_bits = build_packed_seq_buffer(ctx, &ctx->seq_param, &packed_seq_buffer);\n        packed_header_param_buffer.type = VAEncPackedHeaderMPEG2_SPS;\n        packed_header_param_buffer.has_emulation_bytes = 0;\n        packed_header_param_buffer.bit_length = length_in_bits;\n        va_status = vaCreateBuffer(ctx->va_dpy,\n                                   ctx->context_id,\n                                   VAEncPackedHeaderParameterBufferType,\n                                   sizeof(packed_header_param_buffer), 1, &packed_header_param_buffer,\n                                   &ctx->packed_seq_header_param_buf_id);\n        CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n        va_status = vaCreateBuffer(ctx->va_dpy,\n                                   ctx->context_id,\n                                   VAEncPackedHeaderDataBufferType,\n                                   (length_in_bits + 7) / 8, 1, packed_seq_buffer,\n                                   &ctx->packed_seq_buf_id);\n        CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n        free(packed_seq_buffer);\n    }\n\n    length_in_bits = build_packed_pic_buffer(&ctx->seq_param, &ctx->pic_param, &packed_pic_buffer);\n    packed_header_param_buffer.type = VAEncPackedHeaderMPEG2_PPS;\n    packed_header_param_buffer.has_emulation_bytes = 0;\n    packed_header_param_buffer.bit_length = length_in_bits;\n\n    va_status = vaCreateBuffer(ctx->va_dpy,\n                               ctx->context_id,\n                               VAEncPackedHeaderParameterBufferType,\n                               sizeof(packed_header_param_buffer), 1, &packed_header_param_buffer,\n                               &ctx->packed_pic_header_param_buf_id);\n    CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n    va_status = vaCreateBuffer(ctx->va_dpy,\n                               ctx->context_id,\n                               VAEncPackedHeaderDataBufferType,\n                               (length_in_bits + 7) / 8, 1, packed_pic_buffer,\n                               &ctx->packed_pic_buf_id);\n    CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n    free(packed_pic_buffer);\n\n    /* sequence parameter set */\n    VAEncSequenceParameterBufferMPEG2 *seq_param = &ctx->seq_param;\n    va_status = vaCreateBuffer(ctx->va_dpy,\n                               ctx->context_id,\n                               VAEncSequenceParameterBufferType,\n                               sizeof(*seq_param),\n                               1,\n                               seq_param,\n                               &ctx->seq_param_buf_id);\n    CHECK_VASTATUS(va_status, \"vaCreateBuffer\");;\n\n    /* slice parameter */\n    mpeg2enc_update_slice_parameter(ctx, picture_type);\n\n    return 0;\n}\n\nstatic int\nmpeg2enc_render_picture(struct mpeg2enc_context *ctx)\n{\n    VAStatus va_status;\n    VABufferID va_buffers[16];\n    unsigned int num_va_buffers = 0;\n\n    va_buffers[num_va_buffers++] = ctx->seq_param_buf_id;\n    va_buffers[num_va_buffers++] = ctx->pic_param_buf_id;\n\n    if (ctx->packed_seq_header_param_buf_id != VA_INVALID_ID)\n        va_buffers[num_va_buffers++] = ctx->packed_seq_header_param_buf_id;\n\n    if (ctx->packed_seq_buf_id != VA_INVALID_ID)\n        va_buffers[num_va_buffers++] = ctx->packed_seq_buf_id;\n\n    if (ctx->packed_pic_header_param_buf_id != VA_INVALID_ID)\n        va_buffers[num_va_buffers++] = ctx->packed_pic_header_param_buf_id;\n\n    if (ctx->packed_pic_buf_id != VA_INVALID_ID)\n        va_buffers[num_va_buffers++] = ctx->packed_pic_buf_id;\n\n    va_status = vaBeginPicture(ctx->va_dpy,\n                               ctx->context_id,\n                               surface_ids[ctx->current_input_surface]);\n    CHECK_VASTATUS(va_status, \"vaBeginPicture\");\n\n    va_status = vaRenderPicture(ctx->va_dpy,\n                                ctx->context_id,\n                                va_buffers,\n                                num_va_buffers);\n    CHECK_VASTATUS(va_status, \"vaRenderPicture\");\n\n    va_status = vaRenderPicture(ctx->va_dpy,\n                                ctx->context_id,\n                                &ctx->slice_param_buf_id[0],\n                                ctx->num_slice_groups);\n    CHECK_VASTATUS(va_status, \"vaRenderPicture\");\n\n    va_status = vaEndPicture(ctx->va_dpy, ctx->context_id);\n    CHECK_VASTATUS(va_status, \"vaEndPicture\");\n\n    return 0;\n}\n\nstatic int\nmpeg2enc_destroy_buffers(struct mpeg2enc_context *ctx, VABufferID *va_buffers, unsigned int num_va_buffers)\n{\n    VAStatus va_status;\n    unsigned int i;\n\n    for (i = 0; i < num_va_buffers; i++) {\n        if (va_buffers[i] != VA_INVALID_ID) {\n            va_status = vaDestroyBuffer(ctx->va_dpy, va_buffers[i]);\n            CHECK_VASTATUS(va_status, \"vaDestroyBuffer\");\n            va_buffers[i] = VA_INVALID_ID;\n        }\n    }\n\n    return 0;\n}\n\nstatic void\nend_picture(struct mpeg2enc_context *ctx, VAEncPictureType picture_type, int next_is_bpic)\n{\n    VABufferID tempID;\n\n    /* Prepare for next picture */\n    tempID = surface_ids[SID_RECON_PICTURE];\n\n    if (picture_type != VAEncPictureTypeBidirectional) {\n        if (next_is_bpic) {\n            surface_ids[SID_RECON_PICTURE] = surface_ids[SID_REFERENCE_PICTURE_L1];\n            surface_ids[SID_REFERENCE_PICTURE_L1] = tempID;\n        } else {\n            surface_ids[SID_RECON_PICTURE] = surface_ids[SID_REFERENCE_PICTURE_L0];\n            surface_ids[SID_REFERENCE_PICTURE_L0] = tempID;\n        }\n    } else {\n        if (!next_is_bpic) {\n            surface_ids[SID_RECON_PICTURE] = surface_ids[SID_REFERENCE_PICTURE_L0];\n            surface_ids[SID_REFERENCE_PICTURE_L0] = surface_ids[SID_REFERENCE_PICTURE_L1];\n            surface_ids[SID_REFERENCE_PICTURE_L1] = tempID;\n        }\n    }\n\n    mpeg2enc_destroy_buffers(ctx, &ctx->seq_param_buf_id, 1);\n    mpeg2enc_destroy_buffers(ctx, &ctx->pic_param_buf_id, 1);\n    mpeg2enc_destroy_buffers(ctx, &ctx->packed_seq_header_param_buf_id, 1);\n    mpeg2enc_destroy_buffers(ctx, &ctx->packed_seq_buf_id, 1);\n    mpeg2enc_destroy_buffers(ctx, &ctx->packed_pic_header_param_buf_id, 1);\n    mpeg2enc_destroy_buffers(ctx, &ctx->packed_pic_buf_id, 1);\n    mpeg2enc_destroy_buffers(ctx, &ctx->slice_param_buf_id[0], ctx->num_slice_groups);\n    mpeg2enc_destroy_buffers(ctx, &ctx->codedbuf_buf_id, 1);\n    memset(ctx->slice_param, 0, sizeof(ctx->slice_param));\n    ctx->num_slice_groups = 0;\n}\n\nstatic int\nstore_coded_buffer(struct mpeg2enc_context *ctx, VAEncPictureType picture_type)\n{\n    VACodedBufferSegment *coded_buffer_segment;\n    unsigned char *coded_mem;\n    int slice_data_length;\n    VAStatus va_status;\n    VASurfaceStatus surface_status;\n    size_t w_items;\n\n    va_status = vaSyncSurface(ctx->va_dpy, surface_ids[ctx->current_input_surface]);\n    CHECK_VASTATUS(va_status, \"vaSyncSurface\");\n\n    surface_status = 0;\n    va_status = vaQuerySurfaceStatus(ctx->va_dpy, surface_ids[ctx->current_input_surface], &surface_status);\n    CHECK_VASTATUS(va_status, \"vaQuerySurfaceStatus\");\n\n    va_status = vaMapBuffer(ctx->va_dpy, ctx->codedbuf_buf_id, (void **)(&coded_buffer_segment));\n    CHECK_VASTATUS(va_status, \"vaMapBuffer\");\n    coded_mem = coded_buffer_segment->buf;\n\n    if (coded_buffer_segment->status & VA_CODED_BUF_STATUS_SLICE_OVERFLOW_MASK) {\n        if (picture_type == VAEncPictureTypeIntra)\n            ctx->codedbuf_i_size *= 2;\n        else\n            ctx->codedbuf_pb_size *= 2;\n\n        vaUnmapBuffer(ctx->va_dpy, ctx->codedbuf_buf_id);\n        return -1;\n    }\n\n    slice_data_length = coded_buffer_segment->size;\n\n    do {\n        w_items = fwrite(coded_mem, slice_data_length, 1, ctx->ofp);\n    } while (w_items != 1);\n\n    if (picture_type == VAEncPictureTypeIntra) {\n        if (ctx->codedbuf_i_size > slice_data_length * 3 / 2) {\n            ctx->codedbuf_i_size = slice_data_length * 3 / 2;\n        }\n\n        if (ctx->codedbuf_pb_size < slice_data_length) {\n            ctx->codedbuf_pb_size = slice_data_length;\n        }\n    } else {\n        if (ctx->codedbuf_pb_size > slice_data_length * 3 / 2) {\n            ctx->codedbuf_pb_size = slice_data_length * 3 / 2;\n        }\n    }\n\n    vaUnmapBuffer(ctx->va_dpy, ctx->codedbuf_buf_id);\n\n    return 0;\n}\n\nstatic void\nencode_picture(struct mpeg2enc_context *ctx,\n               int coded_order,\n               int display_order,\n               VAEncPictureType picture_type,\n               int next_is_bpic,\n               int next_display_order)\n{\n    VAStatus va_status;\n    int ret = 0, codedbuf_size;\n\n    begin_picture(ctx, coded_order, display_order, picture_type);\n\n    if (1) {\n        /* upload YUV data to VA surface for next frame */\n        if (next_display_order >= ctx->num_pictures)\n            next_display_order = ctx->num_pictures - 1;\n\n        ret = fseek(ctx->ifp, ctx->frame_size * next_display_order, SEEK_SET);\n        CHECK_CONDITION(ret == 0);\n        ctx->upload_thread_value = pthread_create(&ctx->upload_thread_id,\n                                   NULL,\n                                   upload_yuv_to_surface,\n                                   ctx);\n    }\n\n    do {\n        mpeg2enc_destroy_buffers(ctx, &ctx->codedbuf_buf_id, 1);\n        mpeg2enc_destroy_buffers(ctx, &ctx->pic_param_buf_id, 1);\n\n\n        if (VAEncPictureTypeIntra == picture_type) {\n            codedbuf_size = ctx->codedbuf_i_size;\n        } else {\n            codedbuf_size = ctx->codedbuf_pb_size;\n        }\n\n        /* coded buffer */\n        va_status = vaCreateBuffer(ctx->va_dpy,\n                                   ctx->context_id,\n                                   VAEncCodedBufferType,\n                                   codedbuf_size, 1, NULL,\n                                   &ctx->codedbuf_buf_id);\n        CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n        /* picture parameter set */\n        mpeg2enc_update_picture_parameter_buffer(ctx, picture_type, coded_order, display_order);\n\n        mpeg2enc_render_picture(ctx);\n\n        ret = store_coded_buffer(ctx, picture_type);\n    } while (ret);\n\n    end_picture(ctx, picture_type, next_is_bpic);\n}\n\nstatic void\nupdate_next_frame_info(struct mpeg2enc_context *ctx,\n                       VAEncPictureType curr_type,\n                       int curr_coded_order,\n                       int curr_display_order)\n{\n    if (((curr_coded_order + 1) % ctx->intra_period) == 0) {\n        ctx->next_type = VAEncPictureTypeIntra;\n        ctx->next_display_order = curr_coded_order + 1;\n\n        return;\n    }\n\n    if (curr_type == VAEncPictureTypeIntra) {\n        assert(curr_display_order == curr_coded_order);\n        ctx->next_type = VAEncPictureTypePredictive;\n        ctx->next_bframes = ctx->ip_period;\n        ctx->next_display_order = curr_display_order + ctx->next_bframes + 1;\n    } else if (curr_type == VAEncPictureTypePredictive) {\n        if (ctx->ip_period == 0) {\n            assert(curr_display_order == curr_coded_order);\n            ctx->next_type = VAEncPictureTypePredictive;\n            ctx->next_display_order = curr_display_order + 1;\n        } else {\n            ctx->next_type = VAEncPictureTypeBidirectional;\n            ctx->next_display_order = curr_display_order - ctx->next_bframes;\n            ctx->next_bframes--;\n        }\n    } else if (curr_type == VAEncPictureTypeBidirectional) {\n        if (ctx->next_bframes == 0) {\n            ctx->next_type = VAEncPictureTypePredictive;\n            ctx->next_bframes = ctx->ip_period;\n            ctx->next_display_order = curr_display_order + ctx->next_bframes + 2;\n        } else {\n            ctx->next_type = VAEncPictureTypeBidirectional;\n            ctx->next_display_order = curr_display_order + 1;\n            ctx->next_bframes--;\n        }\n    }\n\n    if (ctx->next_display_order >= ctx->num_pictures) {\n        int rtmp = ctx->next_display_order - (ctx->num_pictures - 1);\n        ctx->next_display_order = ctx->num_pictures - 1;\n        ctx->next_bframes -= rtmp;\n    }\n}\n\nstatic void\nmpeg2enc_run(struct mpeg2enc_context *ctx)\n{\n    int display_order = 0, coded_order = 0;\n    VAEncPictureType type;\n\n    ctx->new_sequence = 1;\n    ctx->new_gop_header = 1;\n    ctx->gop_header_in_display_order = display_order;\n\n    while (coded_order < ctx->num_pictures) {\n        type = ctx->next_type;\n        display_order = ctx->next_display_order;\n        /* follow the IPBxxBPBxxB mode */\n        update_next_frame_info(ctx, type, coded_order, display_order);\n        encode_picture(ctx,\n                       coded_order,\n                       display_order,\n                       type,\n                       ctx->next_type == VAEncPictureTypeBidirectional,\n                       ctx->next_display_order);\n\n        /* update gop_header */\n        ctx->new_sequence = 0;\n        ctx->new_gop_header = ctx->next_type == VAEncPictureTypeIntra;\n\n        if (ctx->new_gop_header)\n            ctx->gop_header_in_display_order += ctx->intra_period;\n\n        coded_order++;\n\n        fprintf(stderr, \"\\r %d/%d ...\", coded_order, ctx->num_pictures);\n        fflush(stdout);\n    }\n}\n\n/*\n * end\n */\nstatic void\nmpeg2enc_release_va_resources(struct mpeg2enc_context *ctx)\n{\n    vaDestroySurfaces(ctx->va_dpy, surface_ids, SID_NUMBER);\n    vaDestroyContext(ctx->va_dpy, ctx->context_id);\n    vaDestroyConfig(ctx->va_dpy, ctx->config_id);\n    vaTerminate(ctx->va_dpy);\n    va_close_display(ctx->va_dpy);\n}\n\nstatic void\nmpeg2enc_end(struct mpeg2enc_context *ctx)\n{\n    pthread_join(ctx->upload_thread_id, NULL);\n    mpeg2enc_release_va_resources(ctx);\n}\n\nint\nmain(int argc, char *argv[])\n{\n    struct mpeg2enc_context ctx;\n    struct timeval tpstart, tpend;\n    float timeuse;\n\n    gettimeofday(&tpstart, NULL);\n\n    memset(&ctx, 0, sizeof(ctx));\n    if (argv) {\n        parse_args(&ctx, argc, argv);\n    }\n    mpeg2enc_init(&ctx);\n    mpeg2enc_run(&ctx);\n    mpeg2enc_end(&ctx);\n\n    gettimeofday(&tpend, NULL);\n    timeuse = 1000000 * (tpend.tv_sec - tpstart.tv_sec) + tpend.tv_usec - tpstart.tv_usec;\n    timeuse /= 1000000;\n    fprintf(stderr, \"\\ndone!\\n\");\n    fprintf(stderr, \"encode %d frames in %f secondes, FPS is %.1f\\n\", ctx.num_pictures, timeuse, ctx.num_pictures / timeuse);\n\n    mpeg2enc_exit(&ctx, 0);\n\n    return 0;\n}\n"
  },
  {
    "path": "encode/svctenc.c",
    "content": "/*\n * Copyright (c) 2016 Intel Corporation. All Rights Reserved.\n *\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the\n * \"Software\"), to deal in the Software without restriction, including\n * without limitation the rights to use, copy, modify, merge, publish,\n * distribute, sub license, and/or sell copies of the Software, and to\n * permit persons to whom the Software is furnished to do so, subject to\n * the following conditions:\n *\n * The above copyright notice and this permission notice (including the\n * next paragraph) shall be included in all copies or substantial portions\n * of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR\n * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n/*\n * Simple H.264/AVC temporal scalability encoder based on libVA.\n *\n */\n\n#include <stdio.h>\n#include <string.h>\n#include <stdlib.h>\n#include <getopt.h>\n#include <unistd.h>\n\n#include <sys/time.h>\n#include <sys/types.h>\n#include <sys/stat.h>\n#include <fcntl.h>\n#include <assert.h>\n#include <time.h>\n#include <math.h>\n\n#include <pthread.h>\n\n#include <va/va.h>\n#include \"va_display.h\"\n\n#define SLICE_TYPE_P                    0\n#define SLICE_TYPE_B                    1\n#define SLICE_TYPE_I                    2\n\n#define IS_I_SLICE(type)                (SLICE_TYPE_I == (type) || SLICE_TYPE_I == (type - 5))\n#define IS_P_SLICE(type)                (SLICE_TYPE_P == (type) || SLICE_TYPE_P == (type - 5))\n#define IS_B_SLICE(type)                (SLICE_TYPE_B == (type) || SLICE_TYPE_B == (type - 5))\n\n#define NAL_REF_IDC_NONE                0\n#define NAL_REF_IDC_LOW                 1\n#define NAL_REF_IDC_MEDIUM              2\n#define NAL_REF_IDC_HIGH                3\n\n#define NAL_NON_IDR                     1\n#define NAL_IDR                         5\n#define NAL_SEI                 6\n#define NAL_SPS                         7\n#define NAL_PPS                         8\n#define NAL_PREFIX                      14\n#define NAL_SUBSET_SPS                  15\n\n#define ENTROPY_MODE_CAVLC              0\n#define ENTROPY_MODE_CABAC              1\n\n#define PROFILE_IDC_BASELINE            66\n#define PROFILE_IDC_MAIN                77\n#define PROFILE_IDC_SCALABLE_BASELINE   83\n#define PROFILE_IDC_SCALABLE_HIGH       86\n#define PROFILE_IDC_HIGH                100\n\n#define SRC_SURFACE_IN_ENCODING         0\n#define SRC_SURFACE_IN_STORAGE          1\n\n#define NUM_SURFACES                    32\n\n#define ARRAY_ELEMS(a)                  (sizeof(a) / sizeof((a)[0]))\n\n#define CHECK_VASTATUS(va_status, func)                                 \\\n    if (va_status != VA_STATUS_SUCCESS) {                               \\\n        fprintf(stderr,\"%s:%s (%d) failed, exit\\n\", __func__, func, __LINE__); \\\n        exit(1);                                                        \\\n    }\n\n#define CHECK_CONDITION(cond)                                                \\\n    if(!(cond))                                                              \\\n    {                                                                        \\\n        fprintf(stderr, \"Unexpected condition: %s:%d\\n\", __func__, __LINE__); \\\n        exit(1);                                                             \\\n    }\n\n#define MAX_SLICES                      32\n#define MAX_LAYERS                      4\n\n#define MIN(a, b)                       ((a) > (b) ? (b) : (a))\n#define MAX(a, b)                       ((a) > (b) ? (a) : (b))\n\nstatic VASurfaceID src_surfaces[NUM_SURFACES];\nstatic VASurfaceID rec_surfaces[NUM_SURFACES];\nstatic int src_surface_status[NUM_SURFACES];\n\nstatic int temporal_ids_in_bgop[16] = { // index is (encoding order) % gop_size - 1, available from the 2nd encoded frame\n    0,                                  /* temporal 0 */\n    1,                                  /* temporal 1 */\n    2, 2,                               /* temporal 2 */\n    3, 3, 3, 3,                         /* temporal 3 */\n    4, 4, 4, 4, 4, 4, 4, 4              /* temporal 4 */\n};\n\nstatic int temporal_ids_in_pgop[16] = { // index is (encoding order) % gop_size - 1, available from the 2nd encoded frame\n    1, 2, 1, 3,                         // each element is (the number of temporal layers - temporal id)\n    1, 2, 1, 3,\n    1, 2, 1, 3,\n    1, 2, 1, 3,\n};\n\nstatic int gop_factors_in_bgop[16] = {\n    1,\n    1,\n    1, 3,\n    1, 3, 5, 7,\n    1, 3, 5, 7, 9, 11, 13, 15\n};\n\nstatic float frame_rates[4] = {\n    7.5,\n    15,\n    30,\n    60,\n};\n\nstatic VAProfile g_va_profiles[] = {\n    VAProfileH264High,\n    VAProfileH264ConstrainedBaseline,\n};\n\ntypedef struct _svcenc_surface {\n    int slot_in_surfaces; /* index in src_surfaces and rec_surfaces */\n    int coding_order;\n    int display_order;\n    int temporal_id;\n    int frame_num;\n    int poc;\n    unsigned int is_intra : 1;\n    unsigned int is_idr : 1;\n    unsigned int is_ref : 1;\n    VAEncPictureType picture_type;\n    VASurfaceID rec_surface;\n} svcenc_surface;\n\nstatic svcenc_surface ref_frames[16], ref_list0[32], ref_list1[32];\n\nstatic pthread_mutex_t upload_mutex = PTHREAD_MUTEX_INITIALIZER;\nstatic pthread_cond_t upload_cond = PTHREAD_COND_INITIALIZER;\n\nstruct upload_task_t {\n    void *next;\n    unsigned int display_order;\n    unsigned int surface;\n};\n\nstruct svcenc_context {\n    /* parameter info */\n    FILE *ifp;  /* a FILE pointer for source YUV file */\n    FILE *ofp;  /* a FILE pointer for output SVC file */\n    int width;\n    int height;\n    int frame_size;\n    int num_pictures;\n    int num_slices;\n    int qp;     /* quantisation parameter, default value is 26 */\n    unsigned char *frame_data_buffer;   /* buffer for input surface, the length is the maximum frame_size */\n    int gop_size;\n    int max_num_ref_frames;\n    int num_ref_frames;\n    int hierarchical_levels;\n    int layer_brc;\n\n    /* the info for next picture in encoding order */\n    svcenc_surface next_svcenc_surface;\n\n    /* GOP info */\n    int intra_idr_period;\n    int intra_period;\n    int ip_period;\n    int num_remainder_bframes;\n    int gop_type;       /* 0: p hierarchical, 1: B hierarchical, default is 0 */\n\n    /* bitrate info */\n    int rate_control_mode;\n    int bits_per_kbps;\n    int framerate_per_100s;\n    int i_initial_cpb_removal_delay;\n    int i_initial_cpb_removal_delay_offset;\n    int i_initial_cpb_removal_delay_length;\n    int i_cpb_removal_delay;\n    int i_cpb_removal_delay_length;\n    int i_dpb_output_delay_length;\n    int time_offset_length;\n\n    unsigned long long idr_frame_num;\n    unsigned long long prev_idr_cpb_removal;\n    unsigned long long current_idr_cpb_removal;\n    unsigned long long current_cpb_removal;\n\n    /* This is relative to the current_cpb_removal */\n    unsigned int current_dpb_removal_delta;\n\n    int profile_idc;\n    int constraint_set_flag;\n\n    int svc_profile_idc;\n    int svc_constraint_set_flag;\n\n    /* reordering info for l0/l1,\n     * bit0-3: ref_pic_list_modification_flag_lX (X=0,1),\n     * bit4-7: modification_of_pic_nums_idc,\n     * bit8-15: abs_diff_pic_num_minus1\n     * bit16-23: num_ref_idx_active_override_flag\n     * bit24-31: num_ref_idx_lX_active_minus1 (X=0,1),\n     */\n    unsigned int reordering_info[2];\n\n    /* VA info */\n    VADisplay va_dpy;\n    VAProfile profile;\n    VAEncSequenceParameterBufferH264 seq_param;\n    VAEncPictureParameterBufferH264 pic_param;\n    VAEncSliceParameterBufferH264 slice_param[MAX_SLICES];\n    VAContextID context_id;\n    VAConfigID config_id;\n    VABufferID seq_param_buf_id;                /* Sequence level parameter */\n    VABufferID pic_param_buf_id;                /* Picture level parameter */\n    VABufferID slice_param_buf_id[MAX_SLICES];  /* Slice level parameter, multil slices */\n    VABufferID codedbuf_buf_id;                 /* Output buffer, compressed data */\n    VABufferID packed_sei_scalability_info_header_param_buf_id;\n    VABufferID packed_sei_scalability_info_buf_id;\n    VABufferID packed_seq_header_param_buf_id;\n    VABufferID packed_seq_buf_id;\n    VABufferID packed_svc_seq_header_param_buf_id;\n    VABufferID packed_svc_seq_buf_id;\n    VABufferID packed_pic_header_param_buf_id;\n    VABufferID packed_pic_buf_id;\n    VABufferID packed_sei_header_param_buf_id;   /* the SEI buffer */\n    VABufferID packed_sei_buf_id;\n    VABufferID misc_parameter_layer_structure_buf_id;\n    VABufferID misc_parameter_ratecontrol_buf_id[MAX_LAYERS];\n    VABufferID misc_parameter_framerate_buf_id[MAX_LAYERS];\n    VABufferID misc_parameter_hrd_buf_id;\n    VABufferID packed_slice_header_param_buf_id[MAX_SLICES];\n    VABufferID packed_slice_header_data_buf_id[MAX_SLICES];\n    VABufferID packed_prefix_nal_unit_param_buf_id[MAX_SLICES];\n    VABufferID packed_prefix_nal_unit_data_buf_id[MAX_SLICES];\n\n    /* thread info */\n    pthread_t upload_thread;\n    struct upload_task_t *upload_task_header;\n    struct upload_task_t *upload_task_tail;\n};\n\n/* bitstream */\n#define BITSTREAM_ALLOCATE_STEPPING     4096\n\nstruct __bitstream {\n    unsigned int *buffer;\n    int bit_offset;\n    int max_size_in_dword;\n};\n\ntypedef struct __bitstream bitstream;\n\nstatic unsigned int\nva_swap32(unsigned int val)\n{\n    unsigned char *pval = (unsigned char *)&val;\n\n    return ((pval[0] << 24)     |\n            (pval[1] << 16)     |\n            (pval[2] << 8)      |\n            (pval[3] << 0));\n}\n\nstatic void\nbitstream_start(bitstream *bs)\n{\n    bs->max_size_in_dword = BITSTREAM_ALLOCATE_STEPPING;\n    bs->buffer = calloc(bs->max_size_in_dword * sizeof(int), 1);\n    bs->bit_offset = 0;\n}\n\nstatic void\nbitstream_end(bitstream *bs)\n{\n    int pos = (bs->bit_offset >> 5);\n    int bit_offset = (bs->bit_offset & 0x1f);\n    int bit_left = 32 - bit_offset;\n\n    if (bit_offset) {\n        bs->buffer[pos] = va_swap32((bs->buffer[pos] << bit_left));\n    }\n}\n\nstatic void\nbitstream_put_ui(bitstream *bs, unsigned int val, int size_in_bits)\n{\n    int pos = (bs->bit_offset >> 5);\n    int bit_offset = (bs->bit_offset & 0x1f);\n    int bit_left = 32 - bit_offset;\n\n    if (!size_in_bits)\n        return;\n\n    bs->bit_offset += size_in_bits;\n\n    if (bit_left > size_in_bits) {\n        bs->buffer[pos] = (bs->buffer[pos] << size_in_bits | val);\n    } else {\n        size_in_bits -= bit_left;\n        bs->buffer[pos] = (bs->buffer[pos] << bit_left) | (val >> size_in_bits);\n        bs->buffer[pos] = va_swap32(bs->buffer[pos]);\n\n        if (pos + 1 == bs->max_size_in_dword) {\n            bs->max_size_in_dword += BITSTREAM_ALLOCATE_STEPPING;\n            bs->buffer = realloc(bs->buffer, bs->max_size_in_dword * sizeof(unsigned int));\n            assert(bs->buffer);\n        }\n\n        bs->buffer[pos + 1] = val;\n    }\n}\n\nstatic void\nbitstream_put_ue(bitstream *bs, unsigned int val)\n{\n    int size_in_bits = 0;\n    int tmp_val = ++val;\n\n    while (tmp_val) {\n        tmp_val >>= 1;\n        size_in_bits++;\n    }\n\n    bitstream_put_ui(bs, 0, size_in_bits - 1); // leading zero\n    bitstream_put_ui(bs, val, size_in_bits);\n}\n\nstatic void\nbitstream_put_se(bitstream *bs, int val)\n{\n    unsigned int new_val;\n\n    if (val <= 0)\n        new_val = -2 * val;\n    else\n        new_val = 2 * val - 1;\n\n    bitstream_put_ue(bs, new_val);\n}\n\nstatic void\nbitstream_byte_aligning(bitstream *bs, int bit)\n{\n    int bit_offset = (bs->bit_offset & 0x7);\n    int bit_left = 8 - bit_offset;\n    int new_val;\n\n    if (!bit_offset)\n        return;\n\n    assert(bit == 0 || bit == 1);\n\n    if (bit)\n        new_val = (1 << bit_left) - 1;\n    else\n        new_val = 0;\n\n    bitstream_put_ui(bs, new_val, bit_left);\n}\n\nstatic void\nrbsp_trailing_bits(bitstream *bs)\n{\n    bitstream_put_ui(bs, 1, 1);\n    bitstream_byte_aligning(bs, 0);\n}\n\nstatic void\nnal_start_code_prefix(bitstream *bs)\n{\n    bitstream_put_ui(bs, 0x00000001, 32);\n}\n\nstatic void\nnal_header(bitstream *bs, int nal_ref_idc, int nal_unit_type)\n{\n    bitstream_put_ui(bs, 0, 1);                /* forbidden_zero_bit: 0 */\n    bitstream_put_ui(bs, nal_ref_idc, 2);\n    bitstream_put_ui(bs, nal_unit_type, 5);\n}\n\nstatic void\nsps_data(struct svcenc_context *ctx,\n         const VAEncSequenceParameterBufferH264 *seq_param,\n         bitstream *bs)\n{\n    bitstream_put_ui(bs, ctx->profile_idc, 8);               /* profile_idc */\n    bitstream_put_ui(bs, !!(ctx->constraint_set_flag & 1), 1);                          /* constraint_set0_flag */\n    bitstream_put_ui(bs, !!(ctx->constraint_set_flag & 2), 1);                          /* constraint_set1_flag */\n    bitstream_put_ui(bs, !!(ctx->constraint_set_flag & 4), 1);                          /* constraint_set2_flag */\n    bitstream_put_ui(bs, !!(ctx->constraint_set_flag & 8), 1);                          /* constraint_set3_flag */\n    bitstream_put_ui(bs, !!(ctx->constraint_set_flag & 16), 1);                         /* constraint_set4_flag */\n    bitstream_put_ui(bs, !!(ctx->constraint_set_flag & 32), 1);                         /* constraint_set5_flag */\n    bitstream_put_ui(bs, 0, 2);                         /* reserved_zero_2bits */\n    bitstream_put_ui(bs, seq_param->level_idc, 8);      /* level_idc */\n    bitstream_put_ue(bs, seq_param->seq_parameter_set_id);      /* seq_parameter_set_id */\n\n    if (ctx->profile_idc == PROFILE_IDC_HIGH ||\n        ctx->profile_idc == PROFILE_IDC_SCALABLE_HIGH ||\n        ctx->profile_idc == PROFILE_IDC_SCALABLE_BASELINE) {\n        bitstream_put_ue(bs, 1);        /* chroma_format_idc = 1, 4:2:0 */\n        bitstream_put_ue(bs, 0);        /* bit_depth_luma_minus8 */\n        bitstream_put_ue(bs, 0);        /* bit_depth_chroma_minus8 */\n        bitstream_put_ui(bs, 0, 1);     /* qpprime_y_zero_transform_bypass_flag */\n        bitstream_put_ui(bs, 0, 1);     /* seq_scaling_matrix_present_flag */\n    }\n\n    bitstream_put_ue(bs, seq_param->seq_fields.bits.log2_max_frame_num_minus4); /* log2_max_frame_num_minus4 */\n    bitstream_put_ue(bs, seq_param->seq_fields.bits.pic_order_cnt_type);        /* pic_order_cnt_type */\n\n    if (seq_param->seq_fields.bits.pic_order_cnt_type == 0)\n        bitstream_put_ue(bs, seq_param->seq_fields.bits.log2_max_pic_order_cnt_lsb_minus4);     /* log2_max_pic_order_cnt_lsb_minus4 */\n    else {\n        assert(0);\n    }\n\n    bitstream_put_ue(bs, seq_param->max_num_ref_frames);        /* num_ref_frames */\n    bitstream_put_ui(bs, 0, 1);                                 /* gaps_in_frame_num_value_allowed_flag */\n\n    bitstream_put_ue(bs, seq_param->picture_width_in_mbs - 1);  /* pic_width_in_mbs_minus1 */\n    bitstream_put_ue(bs, seq_param->picture_height_in_mbs - 1); /* pic_height_in_map_units_minus1 */\n    bitstream_put_ui(bs, seq_param->seq_fields.bits.frame_mbs_only_flag, 1);    /* frame_mbs_only_flag */\n\n    if (!seq_param->seq_fields.bits.frame_mbs_only_flag) {\n        assert(0);\n    }\n\n    bitstream_put_ui(bs, seq_param->seq_fields.bits.direct_8x8_inference_flag, 1);      /* direct_8x8_inference_flag */\n    bitstream_put_ui(bs, seq_param->frame_cropping_flag, 1);            /* frame_cropping_flag */\n\n    if (seq_param->frame_cropping_flag) {\n        bitstream_put_ue(bs, seq_param->frame_crop_left_offset);        /* frame_crop_left_offset */\n        bitstream_put_ue(bs, seq_param->frame_crop_right_offset);       /* frame_crop_right_offset */\n        bitstream_put_ue(bs, seq_param->frame_crop_top_offset);         /* frame_crop_top_offset */\n        bitstream_put_ue(bs, seq_param->frame_crop_bottom_offset);      /* frame_crop_bottom_offset */\n    }\n\n    if (ctx->bits_per_kbps < 0) {\n        bitstream_put_ui(bs, 0, 1); /* vui_parameters_present_flag */\n    } else {\n        bitstream_put_ui(bs, 1, 1); /* vui_parameters_present_flag */\n        bitstream_put_ui(bs, 0, 1); /* aspect_ratio_info_present_flag */\n        bitstream_put_ui(bs, 0, 1); /* overscan_info_present_flag */\n        bitstream_put_ui(bs, 0, 1); /* video_signal_type_present_flag */\n        bitstream_put_ui(bs, 0, 1); /* chroma_loc_info_present_flag */\n        bitstream_put_ui(bs, 1, 1); /* timing_info_present_flag */\n        {\n            bitstream_put_ui(bs, seq_param->num_units_in_tick, 32);\n            bitstream_put_ui(bs, seq_param->time_scale, 32);\n            bitstream_put_ui(bs, 1, 1);\n        }\n        bitstream_put_ui(bs, 1, 1); /* nal_hrd_parameters_present_flag */\n        {\n            // hrd_parameters\n            bitstream_put_ue(bs, 0);    /* cpb_cnt_minus1 */\n            bitstream_put_ui(bs, 0, 4); /* bit_rate_scale */\n            bitstream_put_ui(bs, 2, 4); /* cpb_size_scale */\n\n            /* the bits_per_kbps is in kbps */\n            bitstream_put_ue(bs, (((ctx->bits_per_kbps * 1024) >> 6) - 1)); /* bit_rate_value_minus1[0] */\n            bitstream_put_ue(bs, ((ctx->bits_per_kbps * 8 * 1024) >> 6) - 1); /* cpb_size_value_minus1[0] */\n            bitstream_put_ui(bs, 1, 1);  /* cbr_flag[0] */\n\n            /* initial_cpb_removal_delay_length_minus1 */\n            bitstream_put_ui(bs, (ctx->i_initial_cpb_removal_delay_length - 1), 5);\n            /* cpb_removal_delay_length_minus1 */\n            bitstream_put_ui(bs, (ctx->i_cpb_removal_delay_length - 1), 5);\n            /* dpb_output_delay_length_minus1 */\n            bitstream_put_ui(bs, (ctx->i_dpb_output_delay_length - 1), 5);\n            /* time_offset_length  */\n            bitstream_put_ui(bs, (ctx->time_offset_length - 1), 5);\n        }\n\n        bitstream_put_ui(bs, 0, 1);   /* vcl_hrd_parameters_present_flag */\n        bitstream_put_ui(bs, 0, 1);   /* low_delay_hrd_flag */\n\n        bitstream_put_ui(bs, 0, 1); /* pic_struct_present_flag */\n        bitstream_put_ui(bs, 0, 1); /* bitstream_restriction_flag */\n    }\n}\n\nstatic void\nsps_svc_extension(struct svcenc_context *ctx,\n                  const VAEncSequenceParameterBufferH264 *sps_param,\n                  bitstream *bs)\n{\n    bitstream_put_ui(bs, 0, 1); /* inter_layer_deblocking_filter_control_present_flag */\n    bitstream_put_ui(bs, 0, 2); /* extended_spatial_scalability_idc */\n\n    /* if (ChromaArrayType == 1) */\n    bitstream_put_ui(bs, 0, 1); /* chroma_phase_x_plus1_flag */\n    bitstream_put_ui(bs, 1, 2); /* chroma_phase_y_plus1 */\n\n#if 0\n    if (extended_spatial_scalability_idc == 1) {\n        /* if (ChromaArrayType > 0) */\n        bitstream_put_ui(bs, 0, 1); /* seq_ref_layer_chroma_phase_x_plus1_flag */\n        bitstream_put_ui(bs, 0, 2); /* seq_ref_layer_chroma_phase_y_plus1 */\n\n        bitstream_put_se(bs, 0); /* seq_scaled_ref_layer_left_offset */\n        bitstream_put_se(bs, 0); /* seq_scaled_ref_layer_top_offset */\n        bitstream_put_se(bs, 0); /* seq_scaled_ref_layer_right_offset */\n        bitstream_put_se(bs, 0); /* seq_scaled_ref_layer_bottom_offset */\n    }\n#endif\n\n    bitstream_put_ui(bs, 0, 1); /* seq_tcoeff_level_prediction_flag */\n\n#if 0\n    if (seq_tcoeff_level_prediction_flag)\n        bitstream_put_ui(bs, 0, 1); /* adaptive_tcoeff_level_prediction_flag */\n#endif\n\n    bitstream_put_ui(bs, 0, 1); /* slice_header_restriction_flag */\n}\n\nstatic void\nsps_svc_vui_parameters_extension(struct svcenc_context *ctx,\n                                 const VAEncSequenceParameterBufferH264 *sps_param,\n                                 bitstream *bs)\n{\n    bitstream_put_ui(bs, 0, 1); /* svc_vui_parameters_present_flag */\n}\n\nstatic void\nsps_additional_extension2(struct svcenc_context *ctx,\n                          const VAEncSequenceParameterBufferH264 *sps_param,\n                          bitstream *bs)\n{\n    bitstream_put_ui(bs, 0, 1); /* additional_extension2_flag */\n}\n\nstatic void\npps_rbsp(struct svcenc_context *ctx,\n         const VAEncPictureParameterBufferH264 *pic_param,\n         bitstream *bs)\n{\n    bitstream_put_ue(bs, pic_param->pic_parameter_set_id);      /* pic_parameter_set_id */\n    bitstream_put_ue(bs, pic_param->seq_parameter_set_id);      /* seq_parameter_set_id */\n\n    bitstream_put_ui(bs, pic_param->pic_fields.bits.entropy_coding_mode_flag, 1);  /* entropy_coding_mode_flag */\n\n    bitstream_put_ui(bs, 0, 1);                         /* pic_order_present_flag: 0 */\n\n    bitstream_put_ue(bs, 0);                            /* num_slice_groups_minus1 */\n\n    bitstream_put_ue(bs, pic_param->num_ref_idx_l0_active_minus1);      /* num_ref_idx_l0_active_minus1 */\n    bitstream_put_ue(bs, pic_param->num_ref_idx_l1_active_minus1);      /* num_ref_idx_l1_active_minus1 1 */\n\n    bitstream_put_ui(bs, pic_param->pic_fields.bits.weighted_pred_flag, 1);     /* weighted_pred_flag: 0 */\n    bitstream_put_ui(bs, pic_param->pic_fields.bits.weighted_bipred_idc, 2);    /* weighted_bipred_idc: 0 */\n\n    bitstream_put_se(bs, pic_param->pic_init_qp - 26);  /* pic_init_qp_minus26 */\n    bitstream_put_se(bs, 0);                            /* pic_init_qs_minus26 */\n    bitstream_put_se(bs, 0);                            /* chroma_qp_index_offset */\n\n    bitstream_put_ui(bs, pic_param->pic_fields.bits.deblocking_filter_control_present_flag, 1); /* deblocking_filter_control_present_flag */\n    bitstream_put_ui(bs, 0, 1);                         /* constrained_intra_pred_flag */\n    bitstream_put_ui(bs, 0, 1);                         /* redundant_pic_cnt_present_flag */\n\n    /* more_rbsp_data */\n    bitstream_put_ui(bs, pic_param->pic_fields.bits.transform_8x8_mode_flag, 1);    /*transform_8x8_mode_flag */\n    bitstream_put_ui(bs, 0, 1);                         /* pic_scaling_matrix_present_flag */\n    bitstream_put_se(bs, pic_param->second_chroma_qp_index_offset);     /*second_chroma_qp_index_offset */\n\n    rbsp_trailing_bits(bs);\n}\n\nstatic int\nbuild_packed_seq_buffer(struct svcenc_context *ctx,\n                        const VAEncSequenceParameterBufferH264 *seq_param,\n                        unsigned char **header_buffer)\n{\n    bitstream bs;\n\n    bitstream_start(&bs);\n\n    nal_start_code_prefix(&bs);\n    nal_header(&bs, NAL_REF_IDC_HIGH, NAL_SPS);\n\n    sps_data(ctx, seq_param, &bs);\n    rbsp_trailing_bits(&bs);     /* rbsp_trailing_bits */\n\n    bitstream_end(&bs);\n\n    *header_buffer = (unsigned char *)bs.buffer;\n    return bs.bit_offset;\n}\n\nstatic int\nbuild_packed_subset_seq_buffer(struct svcenc_context *ctx,\n                               const VAEncSequenceParameterBufferH264 *seq_param,\n                               unsigned char **header_buffer)\n{\n    bitstream bs;\n\n    bitstream_start(&bs);\n\n    nal_start_code_prefix(&bs);\n    nal_header(&bs, NAL_REF_IDC_HIGH, NAL_SUBSET_SPS);\n\n    sps_data(ctx, seq_param, &bs);\n    sps_svc_extension(ctx, seq_param, &bs);\n    sps_svc_vui_parameters_extension(ctx, seq_param, &bs);\n    sps_additional_extension2(ctx, seq_param, &bs);\n    rbsp_trailing_bits(&bs);     /* rbsp_trailing_bits */\n\n    bitstream_end(&bs);\n\n    *header_buffer = (unsigned char *)bs.buffer;\n    return bs.bit_offset;\n}\n\nstatic int\nbuild_packed_pic_buffer(struct svcenc_context *ctx,\n                        const VAEncPictureParameterBufferH264 *pic_param,\n                        unsigned char **header_buffer)\n{\n    bitstream bs;\n\n    bitstream_start(&bs);\n    nal_start_code_prefix(&bs);\n    nal_header(&bs, NAL_REF_IDC_HIGH, NAL_PPS);\n    pps_rbsp(ctx, pic_param, &bs);\n    bitstream_end(&bs);\n\n    *header_buffer = (unsigned char *)bs.buffer;\n    return bs.bit_offset;\n}\n\nstatic int\nbuild_packed_sei_buffering_period_buffer(struct svcenc_context *ctx,\n        const VAEncSequenceParameterBufferH264 *seq_param,\n        int frame_num,\n        unsigned char **sei_buffer)\n{\n    bitstream sei_bp_bs;\n\n    if (ctx->rate_control_mode & VA_RC_CQP ||\n        frame_num) {\n        *sei_buffer = NULL;\n        return 0;\n    }\n\n    bitstream_start(&sei_bp_bs);\n    bitstream_put_ue(&sei_bp_bs, seq_param->seq_parameter_set_id);       /* seq_parameter_set_id */\n    /* SEI buffer period info */\n    /* NALHrdBpPresentFlag == 1 */\n    bitstream_put_ui(&sei_bp_bs, ctx->i_initial_cpb_removal_delay, ctx->i_initial_cpb_removal_delay_length);\n    bitstream_put_ui(&sei_bp_bs, ctx->i_initial_cpb_removal_delay_offset, ctx->i_initial_cpb_removal_delay_length);\n\n    if (sei_bp_bs.bit_offset & 0x7) {\n        bitstream_put_ui(&sei_bp_bs, 1, 1);\n    }\n\n    bitstream_end(&sei_bp_bs);\n\n    *sei_buffer = (unsigned char *)sei_bp_bs.buffer;\n\n    return (sei_bp_bs.bit_offset + 7) / 8;\n}\n\nstatic int\nbuild_packed_sei_pic_timing_buffer(struct svcenc_context *ctx, int frame_num, unsigned char **sei_buffer)\n{\n    bitstream sei_pic_bs;\n    unsigned int cpb_removal_delay;\n\n    if (ctx->rate_control_mode & VA_RC_CQP) {\n        *sei_buffer = 0;\n        return 0;\n    }\n\n    /* SEI pic timing info */\n    bitstream_start(&sei_pic_bs);\n\n    /* The info of CPB and DPB delay is controlled by CpbDpbDelaysPresentFlag,\n     * which is derived as 1 if one of the following conditions is true:\n     * nal_hrd_parameters_present_flag is present in the bitstream and is equal to 1,\n     * vcl_hrd_parameters_present_flag is present in the bitstream and is equal to 1,\n     */\n    cpb_removal_delay = (ctx->current_cpb_removal - ctx->prev_idr_cpb_removal);\n    bitstream_put_ui(&sei_pic_bs, cpb_removal_delay, ctx->i_cpb_removal_delay_length);\n    bitstream_put_ui(&sei_pic_bs, ctx->current_dpb_removal_delta, ctx->i_dpb_output_delay_length);\n\n    if (sei_pic_bs.bit_offset & 0x7) {\n        bitstream_put_ui(&sei_pic_bs, 1, 1);\n    }\n\n    /* The pic_structure_present_flag determines whether the pic_structure\n     * info is written into the SEI pic timing info.\n     * Currently it is set to zero.\n     */\n    bitstream_end(&sei_pic_bs);\n\n    *sei_buffer = (unsigned char *)sei_pic_bs.buffer;\n\n    return (sei_pic_bs.bit_offset + 7) / 8;\n}\n\nstatic int\nbuild_packed_sei_scalability_info_buffer(struct svcenc_context *ctx,\n        const VAEncSequenceParameterBufferH264 *seq_param,\n        const VAEncPictureParameterBufferH264 *pic_param,\n        int frame_num,\n        unsigned char **sei_buffer)\n{\n    bitstream scalability_info_bs;\n    int i;\n\n    if (frame_num) { // non IDR\n        *sei_buffer = NULL;\n        return 0;\n    }\n\n    /* Write scalability_info */\n    bitstream_start(&scalability_info_bs);\n\n    bitstream_put_ui(&scalability_info_bs, 0, 1);       // temporal_id_nesting_flag: false\n    bitstream_put_ui(&scalability_info_bs, 0, 1);       // priority_layer_info_present_flag: false\n    bitstream_put_ui(&scalability_info_bs, 0, 1);       // priority_id_setting_flag: false\n    bitstream_put_ue(&scalability_info_bs, ctx->hierarchical_levels - 1); // num_layers_minus1\n\n    for (i = 0; i < ctx->hierarchical_levels; i++) {\n        bitstream_put_ue(&scalability_info_bs, i);      // layer_id[i]\n        bitstream_put_ui(&scalability_info_bs, 0, 6);   // priority_id[i[\n        bitstream_put_ui(&scalability_info_bs, 0, 1);   // discardable_flag[i]\n        bitstream_put_ui(&scalability_info_bs, 0, 3);   // dependency_id[i]\n        bitstream_put_ui(&scalability_info_bs, 0, 4);   // quality_id[i]\n        bitstream_put_ui(&scalability_info_bs, i, 3);   // temporal_id[i]\n        bitstream_put_ui(&scalability_info_bs, 0, 1);   // sub_pic_layer_flag[i]\n        bitstream_put_ui(&scalability_info_bs, 0, 1);   // sub_region_layer_flag[i]\n        bitstream_put_ui(&scalability_info_bs, 0, 1);   // iroi_division_info_present_flag[i]\n        bitstream_put_ui(&scalability_info_bs, 0, 1);   // profile_level_info_present_flag[i]\n        bitstream_put_ui(&scalability_info_bs, 0, 1);   // bitrate_info_present_flag[i]\n        bitstream_put_ui(&scalability_info_bs, 1, 1);   // frm_rate_info_present_flag[i]\n        bitstream_put_ui(&scalability_info_bs, 1, 1);   // frm_size_info_present_flag[i]\n        bitstream_put_ui(&scalability_info_bs, 0, 1);   // layer_dependency_info_present_flag[i]\n        bitstream_put_ui(&scalability_info_bs, 0, 1);   // parameter_sets_info_present_flag[i]\n        bitstream_put_ui(&scalability_info_bs, 0, 1);   // bitstream_restriction_info_present_flag[i]\n        bitstream_put_ui(&scalability_info_bs, 0, 1);   // exact_interlayer_pred_flag[i]\n        bitstream_put_ui(&scalability_info_bs, 0, 1);   // layer_conversion_flag[i]\n        bitstream_put_ui(&scalability_info_bs, 0, 1);   // layer_output_flag[i]\n\n        bitstream_put_ui(&scalability_info_bs, 0, 2);   // constant_frm_bitrate_idc[i]\n        bitstream_put_ui(&scalability_info_bs, (int)floor(frame_rates[i] * 256 + 0.5), 16);     // avg_frm_rate\n\n        bitstream_put_ue(&scalability_info_bs, seq_param->picture_width_in_mbs - 1);    // frm_width_in_mbs_minus1\n        bitstream_put_ue(&scalability_info_bs, seq_param->picture_height_in_mbs - 1);   // frm_height_in_mbs_minus1\n\n        bitstream_put_ue(&scalability_info_bs, 0);      // layer_dependency_info_src_layer_id_delta[i]\n        bitstream_put_ue(&scalability_info_bs, 0);      // parameter_sets_info_src_layer_id_delta[i]\n    }\n\n    rbsp_trailing_bits(&scalability_info_bs);\n    bitstream_end(&scalability_info_bs);\n\n    *sei_buffer = (unsigned char *)scalability_info_bs.buffer;\n\n    return (scalability_info_bs.bit_offset + 7) / 8;\n}\n\nstatic void\nsvcenc_update_sei_info(struct svcenc_context *ctx, svcenc_surface *current_surface)\n{\n    unsigned long long frame_interval;\n\n    if (!(ctx->rate_control_mode & VA_RC_CBR)) {\n        return;\n    }\n\n    frame_interval = current_surface->coding_order - ctx->idr_frame_num;\n\n    if (current_surface->is_idr) {\n        ctx->current_cpb_removal = ctx->prev_idr_cpb_removal + frame_interval * 2;\n        ctx->idr_frame_num = current_surface->coding_order;\n        ctx->current_idr_cpb_removal = ctx->current_cpb_removal;\n\n        if (ctx->ip_period)\n            ctx->current_dpb_removal_delta = (ctx->ip_period + 1) * 2;\n        else\n            ctx->current_dpb_removal_delta = 2;\n    } else {\n        ctx->current_cpb_removal = ctx->current_idr_cpb_removal + frame_interval * 2;\n\n        if (current_surface->picture_type == VAEncPictureTypeIntra ||\n            current_surface->picture_type == VAEncPictureTypePredictive) {\n            if (ctx->ip_period)\n                ctx->current_dpb_removal_delta = (ctx->ip_period + 1) * 2;\n            else\n                ctx->current_dpb_removal_delta = 2;\n        } else\n            ctx->current_dpb_removal_delta = 2;\n    }\n}\n\nstatic int\nbuild_packed_sei_buffer(struct svcenc_context *ctx,\n                        const VAEncSequenceParameterBufferH264 *seq_param,\n                        const VAEncPictureParameterBufferH264 *pic_param,\n                        svcenc_surface *current_surface,\n                        unsigned char **sei_buffer)\n{\n    unsigned char *scalability_info_buffer = NULL, *buffering_period_buffer = NULL, *pic_timing_buffer = NULL;\n    int scalability_info_size = 0, buffering_period_size = 0,  pic_timing_size = 0;\n    bitstream nal_bs;\n    int i;\n\n    svcenc_update_sei_info(ctx, current_surface);\n\n    buffering_period_size = build_packed_sei_buffering_period_buffer(ctx, seq_param, current_surface->frame_num, &buffering_period_buffer);\n    pic_timing_size = build_packed_sei_pic_timing_buffer(ctx, current_surface->frame_num, &pic_timing_buffer);\n    scalability_info_size = build_packed_sei_scalability_info_buffer(ctx, seq_param, pic_param, current_surface->frame_num, &scalability_info_buffer);\n\n    if (!buffering_period_buffer &&\n        !pic_timing_buffer &&\n        !scalability_info_buffer) {\n        *sei_buffer = NULL;\n        return 0;\n    }\n\n    bitstream_start(&nal_bs);\n    nal_start_code_prefix(&nal_bs);\n    nal_header(&nal_bs, NAL_REF_IDC_NONE, NAL_SEI);\n\n    /* Write the SEI buffer */\n    if (buffering_period_buffer) {\n        assert(buffering_period_size);\n\n        bitstream_put_ui(&nal_bs, 0, 8);                        // last_payload_type_byte: 0\n        bitstream_put_ui(&nal_bs, buffering_period_size, 8);    // last_payload_size_byte\n\n        for (i = 0; i < buffering_period_size; i++) {\n            bitstream_put_ui(&nal_bs, buffering_period_buffer[i], 8);\n        }\n\n        free(buffering_period_buffer);\n    }\n\n    if (pic_timing_buffer) {\n        assert(pic_timing_size);\n\n        bitstream_put_ui(&nal_bs, 1, 8);                        // last_payload_type_byte: 1\n        bitstream_put_ui(&nal_bs, pic_timing_size, 8);          // last_payload_size_byte\n\n        for (i = 0; i < pic_timing_size; i++) {\n            bitstream_put_ui(&nal_bs, pic_timing_buffer[i], 8);\n        }\n\n        free(pic_timing_buffer);\n    }\n\n    if (scalability_info_buffer) {\n        assert(scalability_info_size);\n\n        bitstream_put_ui(&nal_bs, 24, 8);                       // last_payload_type_byte: 24\n        bitstream_put_ui(&nal_bs, scalability_info_size, 8);    // last_payload_size_byte\n\n        for (i = 0; i < scalability_info_size; i++) {\n            bitstream_put_ui(&nal_bs, scalability_info_buffer[i], 8);\n        }\n\n        free(scalability_info_buffer);\n    }\n\n    rbsp_trailing_bits(&nal_bs);\n    bitstream_end(&nal_bs);\n\n    *sei_buffer = (unsigned char *)nal_bs.buffer;\n\n    return nal_bs.bit_offset;\n}\n\nstatic void\nslice_header(bitstream *bs,\n             VAEncSequenceParameterBufferH264 *sps_param,\n             VAEncPictureParameterBufferH264 *pic_param,\n             VAEncSliceParameterBufferH264 *slice_param,\n             unsigned int reordering_info[2])\n{\n    int first_mb_in_slice = slice_param->macroblock_address;\n    int i;\n\n    bitstream_put_ue(bs, first_mb_in_slice);        /* first_mb_in_slice: 0 */\n    bitstream_put_ue(bs, slice_param->slice_type);  /* slice_type */\n    bitstream_put_ue(bs, slice_param->pic_parameter_set_id);        /* pic_parameter_set_id: 0 */\n    bitstream_put_ui(bs, pic_param->frame_num, sps_param->seq_fields.bits.log2_max_frame_num_minus4 + 4); /* frame_num */\n\n    /* frame_mbs_only_flag == 1 */\n    if (!sps_param->seq_fields.bits.frame_mbs_only_flag) {\n        /* FIXME: */\n        assert(0);\n    }\n\n    if (pic_param->pic_fields.bits.idr_pic_flag)\n        bitstream_put_ue(bs, slice_param->idr_pic_id);      /* idr_pic_id: 0 */\n\n    if (sps_param->seq_fields.bits.pic_order_cnt_type == 0) {\n        bitstream_put_ui(bs, pic_param->CurrPic.TopFieldOrderCnt, sps_param->seq_fields.bits.log2_max_pic_order_cnt_lsb_minus4 + 4);\n        /* pic_order_present_flag == 0 */\n    } else {\n        /* FIXME: */\n        assert(0);\n    }\n\n    /* redundant_pic_cnt_present_flag == 0 */\n    /* slice type */\n    if (IS_P_SLICE(slice_param->slice_type)) {\n        bitstream_put_ui(bs, !!((reordering_info[0] >> 16) & 0xFF), 1);     /* num_ref_idx_active_override_flag: */\n\n        if ((reordering_info[0] >> 16) & 0xFF)\n            bitstream_put_ue(bs, (reordering_info[0] >> 24) & 0xFF);        /* num_ref_idx_l0_active_minus1 */\n\n        /* ref_pic_list_reordering */\n        if (!(reordering_info[0] & 0x0F))\n            bitstream_put_ui(bs, 0, 1);             /* ref_pic_list_reordering_flag_l0: 0 */\n        else {\n            bitstream_put_ui(bs, 1, 1);             /* ref_pic_list_reordering_flag_l0: 1 */\n            bitstream_put_ue(bs, (reordering_info[0] >> 4) & 0x0F);\n            bitstream_put_ue(bs, (reordering_info[0] >> 8) & 0xFF);\n            bitstream_put_ue(bs, 3);                /* modification_of_pic_nums_idc: 3 */\n        }\n    } else if (IS_B_SLICE(slice_param->slice_type)) {\n        bitstream_put_ui(bs, slice_param->direct_spatial_mv_pred_flag, 1);            /* direct_spatial_mv_pred: 1 */\n\n        bitstream_put_ui(bs, ((reordering_info[0] >> 16) & 0xFF) || ((reordering_info[1] >> 16) & 0xFF), 1);                /* num_ref_idx_active_override_flag: */\n\n        if (((reordering_info[0] >> 16) & 0xFF) || ((reordering_info[1] >> 16) & 0xFF)) {\n            bitstream_put_ue(bs, (reordering_info[0] >> 24) & 0xFF);        /* num_ref_idx_l0_active_minus1 */\n            bitstream_put_ue(bs, (reordering_info[1] >> 24) & 0xFF);        /* num_ref_idx_l0_active_minus1 */\n        }\n\n        /* ref_pic_list_reordering */\n\n        for (i = 0; i < 2; i++) {\n            if (!(reordering_info[i] & 0x0F))\n                bitstream_put_ui(bs, 0, 1);             /* ref_pic_list_reordering_flag_l0/l1: 0 */\n            else {\n                bitstream_put_ui(bs, 1, 1);             /* ref_pic_list_reordering_flag_l0/l1: 1 */\n                bitstream_put_ue(bs, (reordering_info[i] >> 4) & 0x0F);\n                bitstream_put_ue(bs, (reordering_info[i] >> 8) & 0xFF);\n                bitstream_put_ue(bs, 3);                /* modification_of_pic_nums_idc: 3 */\n            }\n        }\n    }\n\n    if ((pic_param->pic_fields.bits.weighted_pred_flag &&\n         IS_P_SLICE(slice_param->slice_type)) ||\n        ((pic_param->pic_fields.bits.weighted_bipred_idc == 1) &&\n         IS_B_SLICE(slice_param->slice_type))) {\n        /* FIXME: fill weight/offset table */\n        assert(0);\n    }\n\n    /* dec_ref_pic_marking */\n    if (pic_param->pic_fields.bits.reference_pic_flag) {     /* nal_ref_idc != 0 */\n        unsigned char no_output_of_prior_pics_flag = 0;\n        unsigned char long_term_reference_flag = 0;\n        unsigned char adaptive_ref_pic_marking_mode_flag = 0;\n\n        if (pic_param->pic_fields.bits.idr_pic_flag) {\n            bitstream_put_ui(bs, no_output_of_prior_pics_flag, 1);            /* no_output_of_prior_pics_flag: 0 */\n            bitstream_put_ui(bs, long_term_reference_flag, 1);            /* long_term_reference_flag: 0 */\n        } else {\n            bitstream_put_ui(bs, adaptive_ref_pic_marking_mode_flag, 1);            /* adaptive_ref_pic_marking_mode_flag: 0 */\n        }\n    }\n\n    if (pic_param->pic_fields.bits.entropy_coding_mode_flag &&\n        !IS_I_SLICE(slice_param->slice_type))\n        bitstream_put_ue(bs, slice_param->cabac_init_idc);               /* cabac_init_idc: 0 */\n\n    bitstream_put_se(bs, slice_param->slice_qp_delta);                   /* slice_qp_delta: 0 */\n\n    /* ignore for SP/SI */\n\n    if (pic_param->pic_fields.bits.deblocking_filter_control_present_flag) {\n        bitstream_put_ue(bs, slice_param->disable_deblocking_filter_idc);           /* disable_deblocking_filter_idc: 0 */\n\n        if (slice_param->disable_deblocking_filter_idc != 1) {\n            bitstream_put_se(bs, slice_param->slice_alpha_c0_offset_div2);          /* slice_alpha_c0_offset_div2: 2 */\n            bitstream_put_se(bs, slice_param->slice_beta_offset_div2);              /* slice_beta_offset_div2: 2 */\n        }\n    }\n\n    if (pic_param->pic_fields.bits.entropy_coding_mode_flag) {\n        bitstream_byte_aligning(bs, 1);\n    }\n}\n\nstatic void\nnal_header_extension(bitstream *bs,\n                     VAEncPictureParameterBufferH264 *pic_param,\n                     unsigned int temporal_id)\n{\n    int is_idr = !!pic_param->pic_fields.bits.idr_pic_flag;\n\n    /* 3 bytes */\n    bitstream_put_ui(bs, 1, 1);     /* svc_extension_flag */\n    bitstream_put_ui(bs, !!is_idr, 1);\n    bitstream_put_ui(bs, 0, 6);     /* priority_id */\n    bitstream_put_ui(bs, 1, 1);     /* no_inter_layer_pred_flag */\n    bitstream_put_ui(bs, 0, 3);     /* dependency_id */\n    bitstream_put_ui(bs, 0, 4);     /* quality_id */\n    bitstream_put_ui(bs, temporal_id, 3); /* temporal_id */\n    bitstream_put_ui(bs, 0, 1);     /* use_ref_base_pic_flag */\n    bitstream_put_ui(bs, 1, 1);     /* discardable_flag */\n    bitstream_put_ui(bs, 1, 1);     /* output_flag */\n    bitstream_put_ui(bs, 3, 2);     /* reserved_three_2bits */\n}\n\nstatic void\nnal_unit_svc_prefix_rbsp(bitstream *bs, int is_ref)\n{\n    if (is_ref) {\n        bitstream_put_ui(bs, 0, 1); /* store_ref_base_pic_flag */\n        bitstream_put_ui(bs, 0, 1); /* additional_prefix_nal_unit_extension_flag*/\n    } else {\n        /* no more rbsp data */\n    }\n\n    rbsp_trailing_bits(bs);\n}\n\nstatic int\nbuild_packed_svc_prefix_nal_unit(VAEncPictureParameterBufferH264 *pic_param,\n                                 unsigned int temporal_id,\n                                 unsigned char **nal_unit_buffer)\n{\n    int is_ref = !!pic_param->pic_fields.bits.reference_pic_flag;\n    bitstream bs;\n\n    bitstream_start(&bs);\n    nal_start_code_prefix(&bs);\n\n    nal_header(&bs, is_ref ? NAL_REF_IDC_LOW : NAL_REF_IDC_NONE, NAL_PREFIX);\n    nal_header_extension(&bs, pic_param, temporal_id);\n    nal_unit_svc_prefix_rbsp(&bs, is_ref);\n\n    bitstream_end(&bs);\n    *nal_unit_buffer = (unsigned char *)bs.buffer;\n\n    return bs.bit_offset;\n}\n\nstatic int\nbuild_packed_slice_header_buffer(struct svcenc_context *ctx,\n                                 VAEncSequenceParameterBufferH264 *sps_param,\n                                 VAEncPictureParameterBufferH264 *pic_param,\n                                 VAEncSliceParameterBufferH264 *slice_param,\n                                 unsigned int reordering_info[2],\n                                 unsigned char **header_buffer)\n{\n    bitstream bs;\n    int is_idr = !!pic_param->pic_fields.bits.idr_pic_flag;\n    int is_ref = !!pic_param->pic_fields.bits.reference_pic_flag;\n\n    bitstream_start(&bs);\n    nal_start_code_prefix(&bs);\n\n    if (IS_I_SLICE(slice_param->slice_type)) {\n        nal_header(&bs, NAL_REF_IDC_HIGH, is_idr ? NAL_IDR : NAL_NON_IDR);\n    } else if (IS_P_SLICE(slice_param->slice_type)) {\n        assert(!is_idr);\n        nal_header(&bs, is_ref ? NAL_REF_IDC_MEDIUM : NAL_REF_IDC_NONE, NAL_NON_IDR);\n    } else {\n        assert(IS_B_SLICE(slice_param->slice_type));\n        assert(!is_idr);\n        nal_header(&bs, is_ref ? NAL_REF_IDC_LOW : NAL_REF_IDC_NONE, NAL_NON_IDR);\n    }\n\n    slice_header(&bs, sps_param, pic_param, slice_param, reordering_info);\n\n    bitstream_end(&bs);\n    *header_buffer = (unsigned char *)bs.buffer;\n\n    return bs.bit_offset;\n}\n\n/* upload thread */\nstatic struct upload_task_t *\nupload_task_dequeue(struct svcenc_context *ctx)\n{\n    struct upload_task_t *task;\n\n    pthread_mutex_lock(&upload_mutex);\n\n    task = ctx->upload_task_header;\n\n    if (task) {\n        ctx->upload_task_header = task->next;\n\n        if (!ctx->upload_task_header)\n            ctx->upload_task_tail = NULL;\n    }\n\n    pthread_mutex_unlock(&upload_mutex);\n\n    return task;\n}\n\nstatic int\nupload_task_queue(struct svcenc_context *ctx, unsigned int display_order, int surface)\n{\n    struct upload_task_t *task;\n\n    task = calloc(1, sizeof(struct upload_task_t));\n    assert(task);\n    task->display_order = display_order;\n    task->surface = surface;\n    task->next = NULL;\n\n    pthread_mutex_lock(&upload_mutex);\n\n    if (!ctx->upload_task_header)\n        ctx->upload_task_header = task;\n\n    if (ctx->upload_task_tail)\n        ctx->upload_task_tail->next = task;\n\n    ctx->upload_task_tail = task;\n    src_surface_status[surface] = SRC_SURFACE_IN_STORAGE;\n    pthread_cond_signal(&upload_cond);\n\n    pthread_mutex_unlock(&upload_mutex);\n\n    return 0;\n}\n\nstatic void\nupload_task(struct svcenc_context *ctx, unsigned int display_order, int surface)\n{\n    VAStatus va_status;\n    VAImage surface_image;\n    void *surface_p = NULL;\n    size_t n_items;\n    unsigned char *y_src, *u_src, *v_src;\n    unsigned char *y_dst, *u_dst, *v_dst;\n    int row, col;\n    int y_size = ctx->width * ctx->height;\n    int u_size = (ctx->width >> 1) * (ctx->height >> 1);\n\n    int ret = fseek(ctx->ifp, ctx->frame_size * display_order, SEEK_SET);\n    CHECK_CONDITION(ret == 0);\n\n    do {\n        n_items = fread(ctx->frame_data_buffer, ctx->frame_size, 1, ctx->ifp);\n    } while (n_items != 1);\n\n    va_status = vaDeriveImage(ctx->va_dpy, src_surfaces[surface], &surface_image);\n    CHECK_VASTATUS(va_status, \"vaDeriveImage\");\n\n    vaMapBuffer(ctx->va_dpy, surface_image.buf, &surface_p);\n    assert(VA_STATUS_SUCCESS == va_status);\n\n    y_src = ctx->frame_data_buffer;\n    u_src = ctx->frame_data_buffer + y_size; /* UV offset for NV12 */\n    v_src = ctx->frame_data_buffer + y_size + u_size;\n\n    y_dst = (unsigned char *)surface_p + surface_image.offsets[0];\n    u_dst = (unsigned char *)surface_p + surface_image.offsets[1]; /* UV offset for NV12 */\n    v_dst = (unsigned char *)surface_p + surface_image.offsets[2];\n\n    /* Y plane */\n    for (row = 0; row < surface_image.height; row++) {\n        memcpy(y_dst, y_src, surface_image.width);\n        y_dst += surface_image.pitches[0];\n        y_src += ctx->width;\n    }\n\n    if (surface_image.format.fourcc == VA_FOURCC_NV12) { /* UV plane */\n        for (row = 0; row < surface_image.height / 2; row++) {\n            for (col = 0; col < surface_image.width / 2; col++) {\n                u_dst[col * 2] = u_src[col];\n                u_dst[col * 2 + 1] = v_src[col];\n            }\n\n            u_dst += surface_image.pitches[1];\n            u_src += (ctx->width / 2);\n            v_src += (ctx->width / 2);\n        }\n    } else {\n        for (row = 0; row < surface_image.height / 2; row++) {\n            for (col = 0; col < surface_image.width / 2; col++) {\n                u_dst[col] = u_src[col];\n                v_dst[col] = v_src[col];\n            }\n\n            u_dst += surface_image.pitches[1];\n            v_dst += surface_image.pitches[2];\n            u_src += (ctx->width / 2);\n            v_src += (ctx->width / 2);\n        }\n    }\n\n    vaUnmapBuffer(ctx->va_dpy, surface_image.buf);\n    vaDestroyImage(ctx->va_dpy, surface_image.image_id);\n\n    pthread_mutex_lock(&upload_mutex);\n    src_surface_status[surface] = SRC_SURFACE_IN_ENCODING;\n    pthread_mutex_unlock(&upload_mutex);\n}\n\nstatic void *\nupload_task_thread(void *data)\n{\n    struct svcenc_context *ctx = (struct svcenc_context *)data;\n    int num = 0;\n\n    while (1) {\n        struct upload_task_t *task;\n\n        task = upload_task_dequeue(ctx);\n        if (!task) {\n            pthread_mutex_lock(&upload_mutex);\n            pthread_cond_wait(&upload_cond, &upload_mutex);\n            pthread_mutex_unlock(&upload_mutex);\n\n            continue;\n        }\n\n        upload_task(ctx, task->display_order, task->surface);\n        free(task);\n\n        if (++num >= ctx->num_pictures)\n            break;\n    }\n\n    return 0;\n}\n\n/* main thread */\nstatic void\nusage(char *program)\n{\n    fprintf(stderr, \"Usage: %s --help\\n\", program);\n    fprintf(stderr, \"\\t--help print this message\\n\");\n    fprintf(stderr, \"Usage: %s <width> <height> <ifile> <ofile> [options] \\n\", program);\n    fprintf(stderr, \"\\t<width>\\t\\tThe base picture width\\n\");\n    fprintf(stderr, \"\\t<height>\\tThe base picture height\\n\");\n    fprintf(stderr, \"\\t<ifiles>\\tThe input YUV I420 file\\n\");\n    fprintf(stderr, \"\\t<ofile>\\t\\tThe output H.264/SVC file\\n\\n\");\n    fprintf(stderr, \"\\tAvailable options:\\n\");\n    fprintf(stderr, \"\\t--gop <value>\\t\\tGOP size, default is 8\\n\");\n    fprintf(stderr, \"\\t--goptype <value>\\tGOP hierarchical type, 0 is P hierarchical GOP, 1 is B hierarchical GOP, default is 0\\n\");\n    fprintf(stderr, \"\\t--brcmode <value>\\tBRC mode, 0 is CQP mode, otherwise CBR mode, default mode is CQP\\n\");\n    fprintf(stderr, \"\\t--brclayer<value>\\tDisable/Enalbe BRC per temporal layer, default is disable(0)\\n\");\n    fprintf(stderr, \"\\t--bitrate <value>\\tbit rate in Kbps(1024 bits). It is available for CBR mode only and default value is 2000\\n\");\n}\n\nstatic void\nsvcenc_exit(struct svcenc_context *ctx, int exit_code)\n{\n    if (ctx->ifp) {\n        fclose(ctx->ifp);\n        ctx->ifp = NULL;\n    }\n\n    if (ctx->ofp) {\n        fclose(ctx->ofp);\n        ctx->ofp = NULL;\n    }\n\n    exit(exit_code);\n}\n\nstatic void\nparse_args(struct svcenc_context *ctx, int argc, char **argv)\n{\n    int c, tmp;\n    int option_index = 0;\n    long file_size;\n\n    static struct option long_options[] = {\n        {\"gop\",         required_argument,      0,      'g'},\n        {\"goptype\",     required_argument,      0,      't'},\n        {\"bitrate\",     required_argument,      0,      'b'},\n        {\"brcmode\",     required_argument,      0,      'm'},\n        {\"brclayer\",    required_argument,      0,      'l'},\n        {\"help\",        no_argument,            0,      'h'},\n        { NULL,         0,                      NULL,   0 }\n    };\n\n    va_init_display_args(&argc, argv);\n\n    if ((argc == 2 && strcmp(argv[1], \"--help\") == 0) ||\n        (argc < 5))\n        goto print_usage;\n\n    ctx->width = atoi(argv[1]);\n    ctx->height = atoi(argv[2]);\n\n    if (ctx->width <= 0 || ctx->height <= 0) {\n        fprintf(stderr, \"<base width> and <base height> must be greater than 0\\n\");\n        goto err_exit;\n    }\n\n    ctx->frame_size = ctx->width * ctx->height * 3 / 2;\n    ctx->ifp = fopen(argv[3], \"rb\");\n\n    if (ctx->ifp == NULL) {\n        fprintf(stderr, \"Can't open the input file\\n\");\n        goto err_exit;\n    }\n\n    fseek(ctx->ifp, 0l, SEEK_END);\n    file_size = ftell(ctx->ifp);\n\n    if ((file_size < ctx->frame_size) ||\n        (file_size % ctx->frame_size)) {\n        fprintf(stderr, \"The input file size %ld isn't a multiple of the frame size %d\\n\", file_size, ctx->frame_size);\n        goto err_exit;\n    }\n\n    assert(ctx->num_pictures == 0);\n    ctx->num_pictures = file_size / ctx->frame_size;\n    fseek(ctx->ifp, 0l, SEEK_SET);\n\n    ctx->ofp = fopen(argv[4], \"wb\");\n\n    if (ctx->ofp == NULL) {\n        fprintf(stderr, \"Can't create the output file\\n\");\n        goto err_exit;\n    }\n\n    opterr = 0;\n    optind = 5;\n    ctx->gop_size = 8;\n    ctx->gop_type = 0;\n    ctx->bits_per_kbps = -1;\n    ctx->rate_control_mode = VA_RC_CQP;\n    ctx->layer_brc = 0;\n\n    while ((c = getopt_long(argc, argv,\n                            \"\",\n                            long_options,\n                            &option_index)) != -1) {\n        switch (c) {\n        case 'g':\n            tmp = atoi(optarg);\n\n            if ((tmp & (tmp - 1)) ||\n                tmp > 8) {\n                fprintf(stderr, \"Warning: invalid GOP size\\n\");\n                tmp = 8;\n            }\n\n            ctx->gop_size = tmp;\n\n            break;\n\n        case 't':\n            tmp = atoi(optarg);\n\n            ctx->gop_type = !!tmp;\n\n            break;\n\n        case 'b':\n            tmp = atoi(optarg);\n\n            if (tmp <= 0)\n                ctx->bits_per_kbps = -1;\n            else {\n                if (tmp >= 30000)\n                    tmp = 30000;\n\n                ctx->bits_per_kbps = tmp;\n            }\n\n            break;\n\n        case 'm':\n            tmp = atoi(optarg);\n\n            if (tmp == 0)\n                ctx->rate_control_mode = VA_RC_CQP;\n            else\n                ctx->rate_control_mode = VA_RC_CBR;\n\n            break;\n\n        case 'l':\n            tmp = atoi(optarg);\n\n            ctx->layer_brc = !!tmp;\n\n            break;\n\n        case '?':\n            fprintf(stderr, \"Error: unkown command options\\n\");\n\n        case 'h':\n            goto print_usage;\n        }\n    }\n\n    ctx->num_pictures = ((ctx->num_pictures - 1) & ~(ctx->gop_size - 1)) + 1;\n\n    if (ctx->rate_control_mode == VA_RC_CQP)\n        ctx->bits_per_kbps = -1;\n    else {\n        if (ctx->bits_per_kbps == -1)\n            ctx->bits_per_kbps = 2000;\n    }\n\n    return;\n\nprint_usage:\n    usage(argv[0]);\nerr_exit:\n    svcenc_exit(ctx, 1);\n}\n\nvoid\nsvcenc_update_ref_frames(struct svcenc_context *ctx, svcenc_surface *current_surface)\n{\n    int i;\n\n    if (!current_surface->is_ref)\n        return;\n\n    if (current_surface->is_idr)\n        ctx->num_ref_frames = 1;\n    else\n        ctx->num_ref_frames++;\n\n    if (ctx->num_ref_frames > ctx->max_num_ref_frames)\n        ctx->num_ref_frames = ctx->max_num_ref_frames;\n\n    for (i = ctx->num_ref_frames - 1; i > 0; i--)\n        ref_frames[i] =  ref_frames[i - 1];\n\n    ref_frames[0] = *current_surface;\n}\n\nstatic int\nsvcenc_coding_order_to_display_order(struct svcenc_context *ctx, int coding_order)\n{\n    int n, m;\n    int level;\n\n    assert(coding_order > 0);\n\n    n = (coding_order - 1) / ctx->gop_size;\n    m = (coding_order - 1) % ctx->gop_size;\n    level = ctx->hierarchical_levels - temporal_ids_in_bgop[m] - 1;\n\n    return n * ctx->gop_size + gop_factors_in_bgop[m] * (int)pow(2.00, level);\n}\n\nstatic void\nupdate_next_picture_info(struct svcenc_context *ctx)\n{\n    svcenc_surface *current_surface = NULL;\n    svcenc_surface next_surface;\n    int current_frame_num;\n\n    current_surface = &ctx->next_svcenc_surface;\n    current_frame_num = current_surface->frame_num;\n\n    next_surface.coding_order = current_surface->coding_order + 1;\n    next_surface.display_order = svcenc_coding_order_to_display_order(ctx, next_surface.coding_order);\n    next_surface.slot_in_surfaces = (current_surface->slot_in_surfaces + 1) % NUM_SURFACES;\n    next_surface.temporal_id = temporal_ids_in_bgop[current_surface->coding_order % ctx->gop_size];\n    next_surface.is_ref = (next_surface.temporal_id != ctx->hierarchical_levels - 1);\n\n    if (next_surface.temporal_id == 0) {\n        if (!(next_surface.display_order % ctx->intra_period))\n            next_surface.picture_type = VAEncPictureTypeIntra;\n        else\n            next_surface.picture_type = VAEncPictureTypePredictive;\n    } else\n        next_surface.picture_type = VAEncPictureTypeBidirectional;\n\n    if (current_surface->temporal_id == ctx->hierarchical_levels - 1)\n        next_surface.frame_num = current_frame_num;\n    else\n        next_surface.frame_num = current_frame_num + 1;\n\n    next_surface.is_intra = (next_surface.picture_type == VAEncPictureTypeIntra);\n    next_surface.is_idr = 0;\n    next_surface.rec_surface = rec_surfaces[next_surface.slot_in_surfaces];\n    next_surface.poc = next_surface.display_order;\n\n    if (next_surface.is_idr)\n        next_surface.frame_num = 0;\n\n    *current_surface = next_surface;\n}\n\nstatic int\nsvcenc_coding_order_to_level_pgop(struct svcenc_context *ctx, int coding_order)\n{\n    int m;\n    int level;\n\n    assert(coding_order > 0);\n\n    m = coding_order % ctx->gop_size;\n\n    if (m == 0)\n        return 0;\n\n    level = ctx->hierarchical_levels - temporal_ids_in_pgop[m - 1];\n\n    assert(level > 0 && level < 5);\n\n    return level;\n}\n\nstatic void\nupdate_next_picture_info_pgop(struct svcenc_context *ctx)\n{\n    svcenc_surface *current_surface = NULL;\n    svcenc_surface next_surface;\n    int current_frame_num;\n\n    current_surface = &ctx->next_svcenc_surface;\n    current_frame_num = current_surface->frame_num;\n\n    next_surface.coding_order = current_surface->coding_order + 1;\n    next_surface.display_order = next_surface.coding_order;\n    next_surface.slot_in_surfaces = (current_surface->slot_in_surfaces + 1) % NUM_SURFACES;\n    next_surface.temporal_id = svcenc_coding_order_to_level_pgop(ctx, next_surface.coding_order);\n    next_surface.is_ref = (next_surface.temporal_id != ctx->hierarchical_levels - 1);\n\n    if (next_surface.temporal_id == 0) {\n        if (!(next_surface.display_order % ctx->intra_period))\n            next_surface.picture_type = VAEncPictureTypeIntra;\n        else\n            next_surface.picture_type = VAEncPictureTypePredictive;\n    } else {\n        next_surface.picture_type = VAEncPictureTypePredictive;\n    }\n\n    next_surface.frame_num = current_frame_num + 1;\n    next_surface.is_intra = (next_surface.picture_type == VAEncPictureTypeIntra);\n    next_surface.is_idr = !(next_surface.display_order % ctx->intra_idr_period);\n    next_surface.rec_surface = rec_surfaces[next_surface.slot_in_surfaces];\n    next_surface.poc = next_surface.display_order % ctx->intra_idr_period;\n\n    if (next_surface.is_idr) {\n        next_surface.frame_num = 0;\n        assert(next_surface.poc == 0);\n    }\n\n    *current_surface = next_surface;\n}\n\nstatic int\nsvcenc_seq_parameter_set_id(struct svcenc_context *ctx,\n                            svcenc_surface *current_surface)\n{\n    return 0;\n}\n\nstatic int\nsvcenc_pic_parameter_set_id(struct svcenc_context *ctx,\n                            svcenc_surface *current_surface)\n{\n    return 0;\n}\n\nvoid\nsvcenc_update_sequence_parameter_buffer(struct svcenc_context *ctx,\n                                        svcenc_surface *current_surface)\n{\n    VAEncSequenceParameterBufferH264 *seq_param = &ctx->seq_param;\n    VAStatus va_status;\n    int width_in_mbs = (ctx->width + 15) / 16;\n    int height_in_mbs = (ctx->height + 15) / 16;\n    int frame_cropping_flag = 0;\n    int frame_crop_bottom_offset = 0;\n\n    memset(seq_param, 0, sizeof(*seq_param));\n    seq_param->seq_parameter_set_id = svcenc_seq_parameter_set_id(ctx, current_surface);\n    seq_param->level_idc = 41;\n    seq_param->intra_period = ctx->intra_period;\n    seq_param->ip_period = ctx->ip_period;\n    seq_param->intra_idr_period = ctx->intra_idr_period;\n    seq_param->max_num_ref_frames = ctx->max_num_ref_frames;\n    seq_param->picture_width_in_mbs = width_in_mbs;\n    seq_param->picture_height_in_mbs = height_in_mbs;\n    seq_param->seq_fields.bits.frame_mbs_only_flag = 1;\n\n    if (ctx->bits_per_kbps > 0)\n        seq_param->bits_per_second = 1024 * ctx->bits_per_kbps;\n    else\n        seq_param->bits_per_second = 0;\n\n    seq_param->time_scale = ctx->framerate_per_100s * 2;\n    seq_param->num_units_in_tick = 100;\n\n    if (height_in_mbs * 16 - ctx->height) {\n        frame_cropping_flag = 1;\n        frame_crop_bottom_offset =\n            (height_in_mbs * 16 - ctx->height) / (2 * (!seq_param->seq_fields.bits.frame_mbs_only_flag + 1));\n    }\n\n    seq_param->frame_cropping_flag = frame_cropping_flag;\n    seq_param->frame_crop_left_offset = 0;\n    seq_param->frame_crop_right_offset = 0;\n    seq_param->frame_crop_top_offset = 0;\n    seq_param->frame_crop_bottom_offset = frame_crop_bottom_offset;\n\n    seq_param->seq_fields.bits.pic_order_cnt_type = 0;\n\n    if ((ctx->profile_idc == PROFILE_IDC_SCALABLE_HIGH &&\n         ctx->constraint_set_flag & (1 << 3)) ||\n        (ctx->profile_idc == PROFILE_IDC_SCALABLE_BASELINE &&\n         ctx->constraint_set_flag & (1 << 5)))\n        seq_param->seq_fields.bits.direct_8x8_inference_flag = 0;\n    else\n        seq_param->seq_fields.bits.direct_8x8_inference_flag = 1;\n\n    seq_param->seq_fields.bits.log2_max_frame_num_minus4 = 10;\n    seq_param->seq_fields.bits.log2_max_pic_order_cnt_lsb_minus4 = 10;\n\n    if (ctx->bits_per_kbps > 0)\n        seq_param->vui_parameters_present_flag = 1; //HRD info located in vui\n    else\n        seq_param->vui_parameters_present_flag = 0;\n\n    va_status = vaCreateBuffer(ctx->va_dpy,\n                               ctx->context_id,\n                               VAEncSequenceParameterBufferType,\n                               sizeof(*seq_param),\n                               1,\n                               seq_param,\n                               &ctx->seq_param_buf_id);\n    CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n}\n\nvoid\nsvcenc_update_picture_parameter_buffer(struct svcenc_context *ctx,\n                                       svcenc_surface *current_surface)\n{\n    VAEncPictureParameterBufferH264 *pic_param;\n    VAStatus va_status;\n    int i;\n\n    /* Allocate the new coded buffer */\n    va_status = vaCreateBuffer(ctx->va_dpy,\n                               ctx->context_id,\n                               VAEncCodedBufferType,\n                               ctx->frame_size,\n                               1,\n                               NULL,\n                               &ctx->codedbuf_buf_id);\n    assert(ctx->codedbuf_buf_id != VA_INVALID_ID);\n    CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n    /* H.264 picture parameter */\n    pic_param = &ctx->pic_param;\n    memset(pic_param, 0, sizeof(*pic_param));\n\n    pic_param->seq_parameter_set_id = svcenc_seq_parameter_set_id(ctx, current_surface);\n    pic_param->pic_parameter_set_id = svcenc_pic_parameter_set_id(ctx, current_surface);\n    pic_param->last_picture = 0;\n    pic_param->pic_init_qp = 34;\n\n    pic_param->num_ref_idx_l0_active_minus1 = ctx->hierarchical_levels - 1;\n    pic_param->num_ref_idx_l1_active_minus1 = ctx->hierarchical_levels - 1;\n\n    pic_param->coded_buf = ctx->codedbuf_buf_id;\n    pic_param->frame_num = current_surface->frame_num;\n\n    pic_param->CurrPic.picture_id = current_surface->rec_surface;\n    pic_param->CurrPic.TopFieldOrderCnt = current_surface->poc * 2;\n    pic_param->CurrPic.BottomFieldOrderCnt = pic_param->CurrPic.TopFieldOrderCnt;\n    pic_param->CurrPic.frame_idx = current_surface->frame_num;\n    pic_param->CurrPic.flags = 0; /* frame */\n\n    for (i = 0; i < ctx->num_ref_frames; i++) {\n        assert(pic_param->CurrPic.picture_id != ref_frames[i].rec_surface);\n\n        pic_param->ReferenceFrames[i].picture_id = ref_frames[i].rec_surface;\n        pic_param->ReferenceFrames[i].TopFieldOrderCnt = ref_frames[i].poc * 2;\n        pic_param->ReferenceFrames[i].BottomFieldOrderCnt = pic_param->ReferenceFrames[i].TopFieldOrderCnt;\n        pic_param->ReferenceFrames[i].flags = VA_PICTURE_H264_SHORT_TERM_REFERENCE;\n    }\n\n    for (; i < 16; i++) {\n        pic_param->ReferenceFrames[i].picture_id = VA_INVALID_ID;\n        pic_param->ReferenceFrames[i].flags = VA_PICTURE_H264_INVALID;\n    }\n\n    pic_param->pic_fields.bits.entropy_coding_mode_flag = ENTROPY_MODE_CAVLC;\n    pic_param->pic_fields.bits.weighted_pred_flag = 0;\n    pic_param->pic_fields.bits.weighted_bipred_idc = 0;\n    pic_param->pic_fields.bits.idr_pic_flag = !!current_surface->is_idr;\n    pic_param->pic_fields.bits.reference_pic_flag = !!current_surface->is_ref;\n    pic_param->pic_fields.bits.deblocking_filter_control_present_flag = 1;\n\n    pic_param->pic_fields.bits.transform_8x8_mode_flag = 0;\n\n    /* Allocate the new picture parameter buffer */\n    va_status = vaCreateBuffer(ctx->va_dpy,\n                               ctx->context_id,\n                               VAEncPictureParameterBufferType,\n                               sizeof(*pic_param),\n                               1,\n                               pic_param,\n                               &ctx->pic_param_buf_id);\n    assert(ctx->pic_param_buf_id != VA_INVALID_ID);\n    CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n}\n\n#define partition(ref, field, key, ascending)   \\\n    while (i <= j) {                            \\\n        if (ascending) {                        \\\n            while (ref[i].field < key)          \\\n                i++;                            \\\n            while (ref[j].field > key)          \\\n                j--;                            \\\n        } else {                                \\\n            while (ref[i].field > key)          \\\n                i++;                            \\\n            while (ref[j].field < key)          \\\n                j--;                            \\\n        }                                       \\\n        if (i <= j) {                           \\\n            tmp = ref[i];                       \\\n            ref[i] = ref[j];                    \\\n            ref[j] = tmp;                       \\\n            i++;                                \\\n            j--;                                \\\n        }                                       \\\n    }                                           \\\n\nstatic void\nsort_one(svcenc_surface ref[],\n         int left, int right,\n         int ascending, int is_frame_num)\n{\n    int i = left, j = right;\n    int key;\n    svcenc_surface tmp;\n\n    if (is_frame_num) {\n        key = ref[(left + right) / 2].frame_num;\n        partition(ref, frame_num, key, ascending);\n    } else {\n        key = ref[(left + right) / 2].display_order;\n        partition(ref, display_order, (signed int)key, ascending);\n    }\n\n    /* recursion */\n    if (left < j)\n        sort_one(ref, left, j, ascending, is_frame_num);\n\n    if (i < right)\n        sort_one(ref, i, right, ascending, is_frame_num);\n}\n\nstatic void\nsort_two(svcenc_surface ref[],\n         int left, int right,\n         int key, int is_frame_num,\n         int partition_ascending,\n         int list0_ascending, int list1_ascending)\n{\n    int i = left, j = right;\n    svcenc_surface tmp;\n\n    if (is_frame_num) {\n        partition(ref, frame_num, key, partition_ascending);\n    } else {\n        partition(ref, display_order, key, partition_ascending);\n    }\n\n    sort_one(ref, left, i - 1, list0_ascending, is_frame_num);\n    sort_one(ref, j + 1, right, list1_ascending, is_frame_num);\n}\n\nstatic void\nsvcenc_update_ref_lists(struct svcenc_context *ctx,\n                        svcenc_surface *current_surface)\n{\n    if (current_surface->picture_type == VAEncPictureTypePredictive) {\n        memcpy(ref_list0, ref_frames, ctx->num_ref_frames * sizeof(svcenc_surface));\n        sort_one(ref_list0, 0, ctx->num_ref_frames - 1, 0, 1);\n    } else if (current_surface->picture_type == VAEncPictureTypeBidirectional) {\n        memcpy(ref_list0, ref_frames, ctx->num_ref_frames * sizeof(svcenc_surface));\n        sort_two(ref_list0,\n                 0, ctx->num_ref_frames - 1,\n                 current_surface->display_order, 0,\n                 1,\n                 0, 1);\n        memcpy(ref_list1, ref_frames, ctx->num_ref_frames * sizeof(svcenc_surface));\n        sort_two(ref_list1,\n                 0, ctx->num_ref_frames - 1,\n                 current_surface->display_order, 0,\n                 0,\n                 1, 0);\n    }\n}\n\nstatic int\navc_temporal_find_surface(VAPictureH264 *curr_pic,\n                          VAPictureH264 *ref_list,\n                          int num_pictures,\n                          int dir)\n{\n    int i, found = -1, min = 0x7FFFFFFF;\n\n    for (i = 0; i < num_pictures; i++) {\n        int tmp;\n\n        if ((ref_list[i].flags & VA_PICTURE_H264_INVALID) ||\n            (ref_list[i].picture_id == VA_INVALID_SURFACE))\n            break;\n\n        tmp = curr_pic->TopFieldOrderCnt - ref_list[i].TopFieldOrderCnt;\n\n        if (dir)\n            tmp = -tmp;\n\n        if (tmp > 0 && tmp < min) {\n            min = tmp;\n            found = i;\n        }\n    }\n\n    assert(found != -1);\n\n    return found;\n}\n\nstatic int\navc_temporal_find_surface_pgop(svcenc_surface *curr_pic,\n                               svcenc_surface *ref_list,\n                               int num_pictures)\n{\n    int i, found = -1, min = 0x7FFFFFFF;\n\n    for (i = 0; i < num_pictures; i++) {\n        int tmp;\n\n        if (ref_list[i].rec_surface == VA_INVALID_SURFACE)\n            break;\n\n        if (curr_pic->temporal_id < ref_list[i].temporal_id)\n            continue;\n\n        tmp = curr_pic->display_order - ref_list[i].display_order;\n\n        if (tmp > 0 && tmp < min) {\n            min = tmp;\n            found = i;\n        }\n    }\n\n    assert(found != -1);\n\n    return found;\n}\n\nvoid\nsvcenc_update_slice_parameter_buffer(struct svcenc_context *ctx,\n                                     svcenc_surface *current_surface)\n{\n    VAEncPictureParameterBufferH264 *pic_param = &ctx->pic_param;\n    VAEncSliceParameterBufferH264 *slice_param;\n    VAStatus va_status;\n    int i, width_in_mbs, height_in_mbs;\n    int slice_type;\n    int num_ref_idx_active_override_flag = 0, num_ref_l0 = 1, num_ref_l1 = 1;\n    VAPictureH264 RefPicList0[32];\n    VAPictureH264 RefPicList1[32];\n    VAPictureH264 *curr_pic;\n    int ref_idx;\n\n    memset(RefPicList0, 0, sizeof(RefPicList0));\n    memset(RefPicList1, 0, sizeof(RefPicList1));\n\n    svcenc_update_ref_lists(ctx, current_surface);\n\n    switch (current_surface->picture_type) {\n    case VAEncPictureTypeBidirectional:\n        slice_type = SLICE_TYPE_B;\n        break;\n\n    case VAEncPictureTypePredictive:\n        slice_type = SLICE_TYPE_P;\n        break;\n\n    case VAEncPictureTypeIntra:\n    default:\n        slice_type = SLICE_TYPE_I;\n        break;\n    }\n\n    width_in_mbs = (ctx->width + 15) / 16;\n    height_in_mbs = (ctx->height + 15) / 16;\n\n    // Slice level\n    i = 0;\n    slice_param = &ctx->slice_param[i];\n    memset(slice_param, 0, sizeof(*slice_param));\n\n    slice_param->macroblock_address = 0;\n    slice_param->num_macroblocks = height_in_mbs * width_in_mbs;\n    slice_param->pic_parameter_set_id = svcenc_pic_parameter_set_id(ctx, current_surface);\n    slice_param->slice_type = slice_type;\n\n    slice_param->direct_spatial_mv_pred_flag = 1; /*\n                                                   * It is required for the slice layer extension and the base\n                                                   * layer bitstream\n                                                   * See G.7.4.3 j), G.10.1.2 a), G.10.1.2.1 a)\n                                                   */\n    slice_param->num_ref_idx_active_override_flag = 0;\n    slice_param->num_ref_idx_l0_active_minus1 = 0;\n    slice_param->num_ref_idx_l1_active_minus1 = 0;\n    slice_param->cabac_init_idc = 0;\n    slice_param->slice_qp_delta = 0;\n    slice_param->disable_deblocking_filter_idc = 0;\n    slice_param->slice_alpha_c0_offset_div2 = 2;\n    slice_param->slice_beta_offset_div2 = 2;\n    slice_param->idr_pic_id = 0;\n\n    ctx->reordering_info[0] = ctx->reordering_info[1] = 0;\n\n    /* FIXME: fill other fields */\n    if ((slice_type == SLICE_TYPE_P) || (slice_type == SLICE_TYPE_B)) {\n        int j;\n        num_ref_l0 = MIN((pic_param->num_ref_idx_l0_active_minus1 + 1), ctx->num_ref_frames);\n\n        for (j = 0; j < num_ref_l0; j++) {\n            RefPicList0[j].picture_id = ref_list0[j].rec_surface;\n            RefPicList0[j].TopFieldOrderCnt = ref_list0[j].poc * 2;\n            RefPicList0[j].BottomFieldOrderCnt = RefPicList0[j].TopFieldOrderCnt;\n            RefPicList0[j].frame_idx = ref_list0[j].frame_num;\n            RefPicList0[j].flags = VA_PICTURE_H264_SHORT_TERM_REFERENCE;\n        }\n\n        for (; j < 32; j++) {\n            RefPicList0[j].picture_id = VA_INVALID_SURFACE;\n            RefPicList0[j].flags = VA_PICTURE_H264_INVALID;\n        }\n\n        if (num_ref_l0 != pic_param->num_ref_idx_l0_active_minus1 + 1)\n            num_ref_idx_active_override_flag = 1;\n    }\n\n    if (slice_type == SLICE_TYPE_B) {\n        int j;\n        num_ref_l1 = MIN((pic_param->num_ref_idx_l1_active_minus1 + 1), ctx->num_ref_frames);\n\n        for (j = 0; j < num_ref_l1; j++) {\n            RefPicList1[j].picture_id = ref_list1[j].rec_surface;\n            RefPicList1[j].TopFieldOrderCnt = ref_list1[j].poc * 2;\n            RefPicList1[j].BottomFieldOrderCnt = RefPicList1[j].TopFieldOrderCnt;\n            RefPicList1[j].frame_idx = ref_list1[j].frame_num;\n            RefPicList1[j].flags = VA_PICTURE_H264_SHORT_TERM_REFERENCE;\n        }\n\n        for (; j < 32; j++) {\n            RefPicList1[j].picture_id = VA_INVALID_SURFACE;\n            RefPicList1[j].flags = VA_PICTURE_H264_INVALID;\n        }\n\n        if (num_ref_l1 != pic_param->num_ref_idx_l1_active_minus1 + 1)\n            num_ref_idx_active_override_flag = 1;\n    }\n\n    if (num_ref_l0 != 1 || num_ref_l1 != 1) {\n        curr_pic = &pic_param->CurrPic;\n\n        /* select the reference frame in temporal space */\n        if ((slice_type == SLICE_TYPE_P) || (slice_type == SLICE_TYPE_B)) {\n            if (ctx->gop_type == 1)\n                ref_idx = avc_temporal_find_surface(curr_pic, RefPicList0, num_ref_l0, 0);\n            else\n                ref_idx = avc_temporal_find_surface_pgop(current_surface, ref_list0, num_ref_l0);\n\n            if (ref_idx != 0) {\n                ctx->reordering_info[0] |= (1 << 0);\n\n                if (curr_pic->frame_idx > RefPicList0[ref_idx].frame_idx) {\n                    ctx->reordering_info[0] |= (0 << 4);\n                    ctx->reordering_info[0] |= ((curr_pic->frame_idx - RefPicList0[ref_idx].frame_idx - 1) << 8);\n                } else {\n                    ctx->reordering_info[0] |= (1 << 4);\n                    ctx->reordering_info[0] |= ((RefPicList0[ref_idx].frame_idx - curr_pic->frame_idx - 1) << 8);\n                }\n            }\n\n            slice_param->RefPicList0[0] = RefPicList0[ref_idx];\n        }\n\n        if (slice_type == SLICE_TYPE_B) {\n            assert(ctx->gop_type == 1);\n            ref_idx = avc_temporal_find_surface(curr_pic, RefPicList1, num_ref_l1, 1);\n\n            if (ref_idx != 0) {\n                ctx->reordering_info[1] |= (1 << 0);\n\n                if (curr_pic->frame_idx > RefPicList1[ref_idx].frame_idx) {\n                    ctx->reordering_info[1] |= (0 << 4);\n                    ctx->reordering_info[1] |= ((curr_pic->frame_idx - RefPicList1[ref_idx].frame_idx - 1) << 8);\n                } else {\n                    ctx->reordering_info[1] |= (1 << 4);\n                    ctx->reordering_info[1] |= ((RefPicList1[ref_idx].frame_idx - curr_pic->frame_idx - 1) << 8);\n                }\n            }\n\n            slice_param->RefPicList1[0] = RefPicList1[ref_idx];\n        }\n\n        slice_param->num_ref_idx_active_override_flag = 1;\n        slice_param->num_ref_idx_l0_active_minus1 = 0;\n        slice_param->num_ref_idx_l1_active_minus1 = 0;\n        ctx->reordering_info[0] |= ((1 << 16) | (0 << 24));\n        ctx->reordering_info[1] |= ((1 << 16) | (0 << 24));\n    } else {\n        if (num_ref_idx_active_override_flag == 1) {\n            slice_param->num_ref_idx_active_override_flag = 1;\n            slice_param->num_ref_idx_l0_active_minus1 = 0;\n            slice_param->num_ref_idx_l1_active_minus1 = 0;\n            ctx->reordering_info[0] |= ((1 << 16) | (0 << 24));\n            ctx->reordering_info[1] |= ((1 << 16) | (0 << 24));\n        }\n\n        if ((slice_type == SLICE_TYPE_P) || (slice_type == SLICE_TYPE_B)) {\n            slice_param->RefPicList0[0] = RefPicList0[0];\n        }\n\n        if (slice_type == SLICE_TYPE_B) {\n            slice_param->RefPicList1[0] = RefPicList1[0];\n        }\n    }\n\n    va_status = vaCreateBuffer(ctx->va_dpy,\n                               ctx->context_id,\n                               VAEncSliceParameterBufferType,\n                               sizeof(*slice_param),\n                               1,\n                               slice_param,\n                               &ctx->slice_param_buf_id[i]);\n    CHECK_VASTATUS(va_status, \"vaCreateBuffer\");;\n\n    ctx->num_slices = ++i;\n}\n\nvoid\nsvcenc_update_misc_parameter_buffer(struct svcenc_context *ctx, svcenc_surface *current_surface)\n{\n    VAStatus va_status;\n    VAEncMiscParameterBuffer *misc_param;\n    VAEncMiscParameterTemporalLayerStructure *misc_layer_structure_param;\n    VAEncMiscParameterRateControl *misc_ratecontrol_param;\n    VAEncMiscParameterFrameRate *misc_framerate_param;\n    VAEncMiscParameterHRD *misc_hrd_param;\n\n    if (current_surface->frame_num != 0)\n        return;\n\n    if (ctx->rate_control_mode & VA_RC_CQP)\n        return;\n\n    assert(ctx->bits_per_kbps > 0);\n\n    if (!ctx->layer_brc) {\n        va_status = vaCreateBuffer(ctx->va_dpy,\n                                   ctx->context_id,\n                                   VAEncMiscParameterBufferType,\n                                   sizeof(VAEncMiscParameterBuffer) + sizeof(VAEncMiscParameterRateControl),\n                                   1,\n                                   NULL,\n                                   &ctx->misc_parameter_ratecontrol_buf_id[0]);\n        CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n        vaMapBuffer(ctx->va_dpy,\n                    ctx->misc_parameter_ratecontrol_buf_id[0],\n                    (void **)&misc_param);\n\n        misc_param->type = VAEncMiscParameterTypeRateControl;\n        misc_ratecontrol_param = (VAEncMiscParameterRateControl *)misc_param->data;\n\n        misc_ratecontrol_param->bits_per_second = 1024 * ctx->bits_per_kbps;\n\n        vaUnmapBuffer(ctx->va_dpy, ctx->misc_parameter_ratecontrol_buf_id[0]);\n\n        va_status = vaCreateBuffer(ctx->va_dpy,\n                                   ctx->context_id,\n                                   VAEncMiscParameterBufferType,\n                                   sizeof(VAEncMiscParameterBuffer) + sizeof(VAEncMiscParameterFrameRate),\n                                   1,\n                                   NULL,\n                                   &ctx->misc_parameter_framerate_buf_id[0]);\n        CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n        vaMapBuffer(ctx->va_dpy,\n                    ctx->misc_parameter_framerate_buf_id[0],\n                    (void **)&misc_param);\n\n        misc_param->type = VAEncMiscParameterTypeFrameRate;\n        misc_framerate_param = (VAEncMiscParameterFrameRate *)misc_param->data;\n        misc_framerate_param->framerate = ((100 << 16) | ctx->framerate_per_100s);\n\n        misc_ratecontrol_param->bits_per_second = 1024 * ctx->bits_per_kbps;\n\n        vaUnmapBuffer(ctx->va_dpy, ctx->misc_parameter_ratecontrol_buf_id[0]);\n\n        va_status = vaCreateBuffer(ctx->va_dpy,\n                                   ctx->context_id,\n                                   VAEncMiscParameterBufferType,\n                                   sizeof(VAEncMiscParameterBuffer) + sizeof(VAEncMiscParameterHRD),\n                                   1,\n                                   NULL,\n                                   &ctx->misc_parameter_hrd_buf_id);\n        CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n        vaMapBuffer(ctx->va_dpy,\n                    ctx->misc_parameter_hrd_buf_id,\n                    (void **)&misc_param);\n\n        misc_param->type = VAEncMiscParameterTypeHRD;\n        misc_hrd_param = (VAEncMiscParameterHRD *)misc_param->data;\n\n        misc_hrd_param->initial_buffer_fullness = ctx->bits_per_kbps * 1024 * 4;\n        misc_hrd_param->buffer_size = ctx->bits_per_kbps * 1024 * 8;\n\n        vaUnmapBuffer(ctx->va_dpy, ctx->misc_parameter_hrd_buf_id);\n    } else {\n        int i, j, nlayers = 0;\n\n        va_status = vaCreateBuffer(ctx->va_dpy,\n                                   ctx->context_id,\n                                   VAEncMiscParameterBufferType,\n                                   sizeof(VAEncMiscParameterBuffer) + sizeof(VAEncMiscParameterTemporalLayerStructure),\n                                   1,\n                                   NULL,\n                                   &ctx->misc_parameter_layer_structure_buf_id);\n        CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n        vaMapBuffer(ctx->va_dpy,\n                    ctx->misc_parameter_layer_structure_buf_id,\n                    (void **)&misc_param);\n\n        misc_param->type = VAEncMiscParameterTypeTemporalLayerStructure;\n        misc_layer_structure_param = (VAEncMiscParameterTemporalLayerStructure *)misc_param->data;\n\n        misc_layer_structure_param->number_of_layers = ctx->hierarchical_levels;\n        misc_layer_structure_param->periodicity = ctx->gop_size;\n\n        for (i = 0; i < ctx->gop_size; i++) {\n            if (ctx->gop_type == 1) { // B\n                misc_layer_structure_param->layer_id[i] = temporal_ids_in_bgop[i];\n            } else {\n                misc_layer_structure_param->layer_id[i] = svcenc_coding_order_to_level_pgop(ctx, i + 1);\n            }\n        }\n\n        vaUnmapBuffer(ctx->va_dpy, ctx->misc_parameter_layer_structure_buf_id);\n\n        for (i = 1; i <= ctx->hierarchical_levels; i++) {\n            nlayers += i;\n        }\n\n        for (i = 0; i < ctx->hierarchical_levels; i++) {\n            int framerate_per_100s = frame_rates[i] * 100;\n            int numerator = 0;\n\n            for (j = 0; j < ctx->gop_size; j++) {\n                if (misc_layer_structure_param->layer_id[j] <= i)\n                    numerator++;\n            }\n\n            va_status = vaCreateBuffer(ctx->va_dpy,\n                                       ctx->context_id,\n                                       VAEncMiscParameterBufferType,\n                                       sizeof(VAEncMiscParameterBuffer) + sizeof(VAEncMiscParameterRateControl),\n                                       1,\n                                       NULL,\n                                       &ctx->misc_parameter_ratecontrol_buf_id[i]);\n            CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n            vaMapBuffer(ctx->va_dpy,\n                        ctx->misc_parameter_ratecontrol_buf_id[i],\n                        (void **)&misc_param);\n\n            misc_param->type = VAEncMiscParameterTypeRateControl;\n            misc_ratecontrol_param = (VAEncMiscParameterRateControl *)misc_param->data;\n            misc_ratecontrol_param->bits_per_second = 1024 * ctx->bits_per_kbps * ((float)numerator / ctx->gop_size);\n            misc_ratecontrol_param->rc_flags.bits.temporal_id = i;\n\n            vaUnmapBuffer(ctx->va_dpy, ctx->misc_parameter_ratecontrol_buf_id[i]);\n\n            va_status = vaCreateBuffer(ctx->va_dpy,\n                                       ctx->context_id,\n                                       VAEncMiscParameterBufferType,\n                                       sizeof(VAEncMiscParameterBuffer) + sizeof(VAEncMiscParameterFrameRate),\n                                       1,\n                                       NULL,\n                                       &ctx->misc_parameter_framerate_buf_id[i]);\n            CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n            vaMapBuffer(ctx->va_dpy,\n                        ctx->misc_parameter_framerate_buf_id[i],\n                        (void **)&misc_param);\n\n            misc_param->type = VAEncMiscParameterTypeFrameRate;\n            misc_framerate_param = (VAEncMiscParameterFrameRate *)misc_param->data;\n            misc_framerate_param->framerate = ((100 << 16) | framerate_per_100s);\n            misc_framerate_param->framerate_flags.bits.temporal_id = i;\n\n            vaUnmapBuffer(ctx->va_dpy, ctx->misc_parameter_ratecontrol_buf_id[i]);\n        }\n\n        va_status = vaCreateBuffer(ctx->va_dpy,\n                                   ctx->context_id,\n                                   VAEncMiscParameterBufferType,\n                                   sizeof(VAEncMiscParameterBuffer) + sizeof(VAEncMiscParameterHRD),\n                                   1,\n                                   NULL,\n                                   &ctx->misc_parameter_hrd_buf_id);\n        CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n        vaMapBuffer(ctx->va_dpy,\n                    ctx->misc_parameter_hrd_buf_id,\n                    (void **)&misc_param);\n\n        misc_param->type = VAEncMiscParameterTypeHRD;\n        misc_hrd_param = (VAEncMiscParameterHRD *)misc_param->data;\n\n        misc_hrd_param->initial_buffer_fullness = ctx->bits_per_kbps * 1024 * 4;\n        misc_hrd_param->buffer_size = ctx->bits_per_kbps * 1024 * 8;\n\n        vaUnmapBuffer(ctx->va_dpy, ctx->misc_parameter_hrd_buf_id);\n    }\n}\n\nstatic void\nsvcenc_update_packed_slice_header_buffer(struct svcenc_context *ctx, unsigned int temporal_id)\n{\n    VAStatus va_status;\n    VAEncPackedHeaderParameterBuffer packed_header_param_buffer;\n    unsigned int length_in_bits;\n    unsigned char *packed_header_data_buffer = NULL;\n    int i;\n\n    for (i = 0; i < ctx->num_slices; i++) {\n        length_in_bits = build_packed_svc_prefix_nal_unit(&ctx->pic_param,\n                         temporal_id,\n                         &packed_header_data_buffer);\n\n        packed_header_param_buffer.type = VAEncPackedHeaderRawData;\n        packed_header_param_buffer.bit_length = length_in_bits;\n        packed_header_param_buffer.has_emulation_bytes = 0;\n\n        va_status = vaCreateBuffer(ctx->va_dpy,\n                                   ctx->context_id,\n                                   VAEncPackedHeaderParameterBufferType,\n                                   sizeof(packed_header_param_buffer),\n                                   1,\n                                   &packed_header_param_buffer,\n                                   &ctx->packed_prefix_nal_unit_param_buf_id[i]);\n        CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n        va_status = vaCreateBuffer(ctx->va_dpy,\n                                   ctx->context_id,\n                                   VAEncPackedHeaderDataBufferType,\n                                   (length_in_bits + 7) / 8,\n                                   1,\n                                   packed_header_data_buffer,\n                                   &ctx->packed_prefix_nal_unit_data_buf_id[i]);\n        CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n        free(packed_header_data_buffer);\n\n        length_in_bits = build_packed_slice_header_buffer(ctx,\n                         &ctx->seq_param,\n                         &ctx->pic_param,\n                         &ctx->slice_param[i],\n                         ctx->reordering_info,\n                         &packed_header_data_buffer);\n\n        packed_header_param_buffer.type = VAEncPackedHeaderSlice;\n        packed_header_param_buffer.bit_length = length_in_bits;\n        packed_header_param_buffer.has_emulation_bytes = 0;\n\n        va_status = vaCreateBuffer(ctx->va_dpy,\n                                   ctx->context_id,\n                                   VAEncPackedHeaderParameterBufferType,\n                                   sizeof(packed_header_param_buffer),\n                                   1,\n                                   &packed_header_param_buffer,\n                                   &ctx->packed_slice_header_param_buf_id[i]);\n        CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n        va_status = vaCreateBuffer(ctx->va_dpy,\n                                   ctx->context_id,\n                                   VAEncPackedHeaderDataBufferType,\n                                   (length_in_bits + 7) / 8,\n                                   1,\n                                   packed_header_data_buffer,\n                                   &ctx->packed_slice_header_data_buf_id[i]);\n        CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n        free(packed_header_data_buffer);\n    }\n}\n\nvoid\nsvcenc_update_packed_buffers(struct svcenc_context *ctx,\n                             svcenc_surface *current_surface)\n{\n    VAStatus va_status;\n    VAEncPackedHeaderParameterBuffer packed_header_param_buffer;\n    unsigned int length_in_bits;\n    unsigned char *packed_seq_buffer = NULL, *packed_pic_buffer = NULL, *packed_sei_buffer = NULL;\n\n    length_in_bits = build_packed_sei_buffer(ctx,\n                     &ctx->seq_param,\n                     &ctx->pic_param,\n                     current_surface,\n                     &packed_sei_buffer);\n\n    if (packed_sei_buffer) {\n        assert(length_in_bits);\n\n        packed_header_param_buffer.type = VAEncPackedHeaderRawData;\n        packed_header_param_buffer.bit_length = length_in_bits;\n        packed_header_param_buffer.has_emulation_bytes = 0;\n        va_status = vaCreateBuffer(ctx->va_dpy,\n                                   ctx->context_id,\n                                   VAEncPackedHeaderParameterBufferType,\n                                   sizeof(packed_header_param_buffer),\n                                   1,\n                                   &packed_header_param_buffer,\n                                   &ctx->packed_sei_header_param_buf_id);\n        CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n        va_status = vaCreateBuffer(ctx->va_dpy,\n                                   ctx->context_id,\n                                   VAEncPackedHeaderDataBufferType,\n                                   (length_in_bits + 7) / 8,\n                                   1,\n                                   packed_sei_buffer,\n                                   &ctx->packed_sei_buf_id);\n        CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n        free(packed_sei_buffer);\n    }\n\n    if (current_surface->frame_num == 0) {\n        int save_profile_idc, save_constraint_set_flag;\n        unsigned char *packed_svc_seq_buffer = NULL;\n\n        length_in_bits = build_packed_seq_buffer(ctx,\n                         &ctx->seq_param,\n                         &packed_seq_buffer);\n\n        packed_header_param_buffer.type = VAEncPackedHeaderH264_SPS;\n        packed_header_param_buffer.bit_length = length_in_bits;\n        packed_header_param_buffer.has_emulation_bytes = 0;\n        va_status = vaCreateBuffer(ctx->va_dpy,\n                                   ctx->context_id,\n                                   VAEncPackedHeaderParameterBufferType,\n                                   sizeof(packed_header_param_buffer),\n                                   1,\n                                   &packed_header_param_buffer,\n                                   &ctx->packed_seq_header_param_buf_id);\n        CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n        va_status = vaCreateBuffer(ctx->va_dpy,\n                                   ctx->context_id,\n                                   VAEncPackedHeaderDataBufferType,\n                                   (length_in_bits + 7) / 8,\n                                   1,\n                                   packed_seq_buffer,\n                                   &ctx->packed_seq_buf_id);\n        CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n        save_profile_idc = ctx->profile_idc;\n        save_constraint_set_flag = ctx->constraint_set_flag;\n        ctx->profile_idc = ctx->svc_profile_idc;\n        ctx->constraint_set_flag = ctx->svc_constraint_set_flag;\n\n        length_in_bits = build_packed_subset_seq_buffer(ctx,\n                         &ctx->seq_param,\n                         &packed_svc_seq_buffer);\n        packed_header_param_buffer.type = VAEncPackedHeaderRawData;\n        packed_header_param_buffer.bit_length = length_in_bits;\n        packed_header_param_buffer.has_emulation_bytes = 0;\n        va_status = vaCreateBuffer(ctx->va_dpy,\n                                   ctx->context_id,\n                                   VAEncPackedHeaderParameterBufferType,\n                                   sizeof(packed_header_param_buffer),\n                                   1,\n                                   &packed_header_param_buffer,\n                                   &ctx->packed_svc_seq_header_param_buf_id);\n        CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n        va_status = vaCreateBuffer(ctx->va_dpy,\n                                   ctx->context_id,\n                                   VAEncPackedHeaderDataBufferType,\n                                   (length_in_bits + 7) / 8,\n                                   1,\n                                   packed_svc_seq_buffer,\n                                   &ctx->packed_svc_seq_buf_id);\n        CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n        ctx->profile_idc = save_profile_idc;\n        ctx->constraint_set_flag = save_constraint_set_flag;\n\n        free(packed_svc_seq_buffer);\n\n        length_in_bits = build_packed_pic_buffer(ctx,\n                         &ctx->pic_param,\n                         &packed_pic_buffer);\n        packed_header_param_buffer.type = VAEncPackedHeaderH264_PPS;\n        packed_header_param_buffer.bit_length = length_in_bits;\n        packed_header_param_buffer.has_emulation_bytes = 0;\n\n        va_status = vaCreateBuffer(ctx->va_dpy,\n                                   ctx->context_id,\n                                   VAEncPackedHeaderParameterBufferType,\n                                   sizeof(packed_header_param_buffer),\n                                   1,\n                                   &packed_header_param_buffer,\n                                   &ctx->packed_pic_header_param_buf_id);\n        CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n        va_status = vaCreateBuffer(ctx->va_dpy,\n                                   ctx->context_id,\n                                   VAEncPackedHeaderDataBufferType,\n                                   (length_in_bits + 7) / 8,\n                                   1,\n                                   packed_pic_buffer,\n                                   &ctx->packed_pic_buf_id);\n        CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n        free(packed_seq_buffer);\n        free(packed_pic_buffer);\n    }\n\n    svcenc_update_packed_slice_header_buffer(ctx, current_surface->temporal_id);\n}\n\nvoid\nsvcenc_update_profile_idc(struct svcenc_context *ctx,\n                          svcenc_surface *current_surface)\n{\n    ctx->profile_idc = PROFILE_IDC_HIGH;\n    ctx->constraint_set_flag = 0;\n\n    switch (ctx->profile) {\n    case VAProfileH264High:\n        ctx->profile_idc = PROFILE_IDC_HIGH;\n        ctx->constraint_set_flag |= (1 << 1);\n        break;\n\n    case VAProfileH264ConstrainedBaseline:\n        ctx->profile_idc = PROFILE_IDC_BASELINE;\n        ctx->constraint_set_flag |= (1 << 0 |\n                                     1 << 1 |\n                                     1 << 2);\n        break;\n\n    default:\n        /* Never get here !!! */\n        assert(0);\n        break;\n    }\n\n    ctx->svc_profile_idc = PROFILE_IDC_SCALABLE_HIGH;\n    ctx->svc_constraint_set_flag = 0;\n\n    switch (ctx->profile) {\n    case VAProfileH264High:\n        ctx->svc_profile_idc = PROFILE_IDC_SCALABLE_HIGH;\n        ctx->svc_constraint_set_flag |= (1 << 1);\n        break;\n\n    case VAProfileH264ConstrainedBaseline:\n        ctx->svc_profile_idc = PROFILE_IDC_SCALABLE_BASELINE;\n        ctx->svc_constraint_set_flag |= (1 << 0 | 1 << 1 | 1 << 5);\n        break;\n\n    default:\n        /* Never get here !!! */\n        assert(0);\n        break;\n    }\n}\n\nint\nbegin_picture(struct svcenc_context *ctx,\n              svcenc_surface *current_surface)\n{\n    svcenc_update_profile_idc(ctx, current_surface);\n    svcenc_update_sequence_parameter_buffer(ctx, current_surface);\n    svcenc_update_picture_parameter_buffer(ctx, current_surface);\n    svcenc_update_slice_parameter_buffer(ctx, current_surface);\n    svcenc_update_misc_parameter_buffer(ctx, current_surface);\n    svcenc_update_packed_buffers(ctx, current_surface);\n\n    return 0;\n}\n\nstatic int\nsvcenc_store_coded_buffer(struct svcenc_context *ctx,\n                          svcenc_surface *current_surface)\n{\n    VACodedBufferSegment *coded_buffer_segment;\n    unsigned char *coded_mem;\n    int slice_data_length;\n    VAStatus va_status;\n    size_t w_items;\n\n    va_status = vaSyncSurface(ctx->va_dpy, src_surfaces[current_surface->slot_in_surfaces]);\n    CHECK_VASTATUS(va_status, \"vaSyncSurface\");\n\n    va_status = vaMapBuffer(ctx->va_dpy, ctx->codedbuf_buf_id, (void **)(&coded_buffer_segment));\n    CHECK_VASTATUS(va_status, \"vaMapBuffer\");\n\n    coded_mem = coded_buffer_segment->buf;\n\n    if (coded_buffer_segment->status & VA_CODED_BUF_STATUS_SLICE_OVERFLOW_MASK) {\n        /* Fatal error !!! */\n        assert(0);\n    }\n\n    slice_data_length = coded_buffer_segment->size;\n\n    do {\n        w_items = fwrite(coded_mem, slice_data_length, 1, ctx->ofp);\n    } while (w_items != 1);\n\n    vaUnmapBuffer(ctx->va_dpy, ctx->codedbuf_buf_id);\n\n    return 0;\n}\n\nint\nrender_picture(struct svcenc_context *ctx,\n               svcenc_surface *current_surface)\n{\n    VAStatus va_status;\n    VABufferID va_buffers[32];\n    unsigned int num_va_buffers = 0;\n    int i;\n\n    va_buffers[num_va_buffers++] = ctx->seq_param_buf_id;\n    va_buffers[num_va_buffers++] = ctx->pic_param_buf_id;\n\n    if (ctx->packed_sei_scalability_info_header_param_buf_id != VA_INVALID_ID)\n        va_buffers[num_va_buffers++] = ctx->packed_sei_scalability_info_header_param_buf_id;\n\n    if (ctx->packed_sei_scalability_info_buf_id != VA_INVALID_ID)\n        va_buffers[num_va_buffers++] = ctx->packed_sei_scalability_info_buf_id;\n\n    if (ctx->packed_seq_header_param_buf_id != VA_INVALID_ID)\n        va_buffers[num_va_buffers++] = ctx->packed_seq_header_param_buf_id;\n\n    if (ctx->packed_seq_buf_id != VA_INVALID_ID)\n        va_buffers[num_va_buffers++] = ctx->packed_seq_buf_id;\n\n    if (ctx->packed_svc_seq_header_param_buf_id != VA_INVALID_ID)\n        va_buffers[num_va_buffers++] = ctx->packed_svc_seq_header_param_buf_id;\n\n    if (ctx->packed_svc_seq_buf_id != VA_INVALID_ID)\n        va_buffers[num_va_buffers++] = ctx->packed_svc_seq_buf_id;\n\n    if (ctx->packed_pic_header_param_buf_id != VA_INVALID_ID)\n        va_buffers[num_va_buffers++] = ctx->packed_pic_header_param_buf_id;\n\n    if (ctx->packed_pic_buf_id != VA_INVALID_ID)\n        va_buffers[num_va_buffers++] = ctx->packed_pic_buf_id;\n\n    if (ctx->packed_sei_header_param_buf_id != VA_INVALID_ID)\n        va_buffers[num_va_buffers++] = ctx->packed_sei_header_param_buf_id;\n\n    if (ctx->packed_sei_buf_id != VA_INVALID_ID)\n        va_buffers[num_va_buffers++] = ctx->packed_sei_buf_id;\n\n    if (ctx->misc_parameter_layer_structure_buf_id != VA_INVALID_ID)\n        va_buffers[num_va_buffers++] = ctx->misc_parameter_layer_structure_buf_id;\n\n    for (i = 0; i < MAX_LAYERS; i++) {\n        if (ctx->misc_parameter_ratecontrol_buf_id[i] != VA_INVALID_ID)\n            va_buffers[num_va_buffers++] = ctx->misc_parameter_ratecontrol_buf_id[i];\n\n        if (ctx->misc_parameter_framerate_buf_id[i] != VA_INVALID_ID)\n            va_buffers[num_va_buffers++] = ctx->misc_parameter_framerate_buf_id[i];\n    }\n\n    if (ctx->misc_parameter_hrd_buf_id != VA_INVALID_ID)\n        va_buffers[num_va_buffers++] =  ctx->misc_parameter_hrd_buf_id;\n\n    va_status = vaBeginPicture(ctx->va_dpy,\n                               ctx->context_id,\n                               src_surfaces[current_surface->slot_in_surfaces]);\n    CHECK_VASTATUS(va_status, \"vaBeginPicture\");\n\n    va_status = vaRenderPicture(ctx->va_dpy,\n                                ctx->context_id,\n                                va_buffers,\n                                num_va_buffers);\n    CHECK_VASTATUS(va_status, \"vaRenderPicture\");\n\n    for (i = 0; i < ctx->num_slices; i++) {\n        va_status = vaRenderPicture(ctx->va_dpy,\n                                    ctx->context_id,\n                                    &ctx->packed_prefix_nal_unit_param_buf_id[i],\n                                    1);\n        CHECK_VASTATUS(va_status, \"vaRenderPicture\");\n\n        va_status = vaRenderPicture(ctx->va_dpy,\n                                    ctx->context_id,\n                                    &ctx->packed_prefix_nal_unit_data_buf_id[i],\n                                    1);\n        CHECK_VASTATUS(va_status, \"vaRenderPicture\");\n\n        va_status = vaRenderPicture(ctx->va_dpy,\n                                    ctx->context_id,\n                                    &ctx->packed_slice_header_param_buf_id[i],\n                                    1);\n        CHECK_VASTATUS(va_status, \"vaRenderPicture\");\n\n        va_status = vaRenderPicture(ctx->va_dpy,\n                                    ctx->context_id,\n                                    &ctx->packed_slice_header_data_buf_id[i],\n                                    1);\n        CHECK_VASTATUS(va_status, \"vaRenderPicture\");\n\n        va_status = vaRenderPicture(ctx->va_dpy,\n                                    ctx->context_id,\n                                    &ctx->slice_param_buf_id[i],\n                                    1);\n        CHECK_VASTATUS(va_status, \"vaRenderPicture\");\n    }\n\n    va_status = vaEndPicture(ctx->va_dpy, ctx->context_id);\n    CHECK_VASTATUS(va_status, \"vaEndPicture\");\n\n    svcenc_store_coded_buffer(ctx, current_surface);\n\n    return 0;\n}\n\nstatic int\nsvcenc_destroy_buffers(struct svcenc_context *ctx,\n                       VABufferID *va_buffers,\n                       unsigned int num_va_buffers)\n{\n    VAStatus va_status;\n    unsigned int i;\n\n    for (i = 0; i < num_va_buffers; i++) {\n        if (va_buffers[i] != VA_INVALID_ID) {\n            va_status = vaDestroyBuffer(ctx->va_dpy, va_buffers[i]);\n            CHECK_VASTATUS(va_status, \"vaDestroyBuffer\");\n            va_buffers[i] = VA_INVALID_ID;\n        }\n    }\n\n    return 0;\n}\n\nint\nend_picture(struct svcenc_context *ctx,\n            svcenc_surface *current_surface)\n{\n    svcenc_destroy_buffers(ctx, &ctx->seq_param_buf_id, 1);\n    svcenc_destroy_buffers(ctx, &ctx->pic_param_buf_id, 1);\n    svcenc_destroy_buffers(ctx, &ctx->packed_sei_scalability_info_header_param_buf_id, 1);\n    svcenc_destroy_buffers(ctx, &ctx->packed_sei_scalability_info_buf_id, 1);\n    svcenc_destroy_buffers(ctx, &ctx->packed_seq_header_param_buf_id, 1);\n    svcenc_destroy_buffers(ctx, &ctx->packed_seq_buf_id, 1);\n    svcenc_destroy_buffers(ctx, &ctx->packed_svc_seq_header_param_buf_id, 1);\n    svcenc_destroy_buffers(ctx, &ctx->packed_svc_seq_buf_id, 1);\n    svcenc_destroy_buffers(ctx, &ctx->packed_pic_header_param_buf_id, 1);\n    svcenc_destroy_buffers(ctx, &ctx->packed_pic_buf_id, 1);\n    svcenc_destroy_buffers(ctx, &ctx->slice_param_buf_id[0], ctx->num_slices);\n    svcenc_destroy_buffers(ctx, &ctx->codedbuf_buf_id, 1);\n    svcenc_destroy_buffers(ctx, &ctx->misc_parameter_layer_structure_buf_id, 1);\n    svcenc_destroy_buffers(ctx, &ctx->misc_parameter_ratecontrol_buf_id[0], MAX_LAYERS);\n    svcenc_destroy_buffers(ctx, &ctx->misc_parameter_framerate_buf_id[0], MAX_LAYERS);\n    svcenc_destroy_buffers(ctx, &ctx->misc_parameter_hrd_buf_id, 1);\n    svcenc_destroy_buffers(ctx, &ctx->packed_sei_header_param_buf_id, 1);\n    svcenc_destroy_buffers(ctx, &ctx->packed_sei_buf_id, 1);\n    svcenc_destroy_buffers(ctx, &ctx->packed_slice_header_param_buf_id[0], ctx->num_slices);\n    svcenc_destroy_buffers(ctx, &ctx->packed_slice_header_data_buf_id[0], ctx->num_slices);\n    svcenc_destroy_buffers(ctx, &ctx->packed_prefix_nal_unit_param_buf_id[0], ctx->num_slices);\n    svcenc_destroy_buffers(ctx, &ctx->packed_prefix_nal_unit_data_buf_id[0], ctx->num_slices);\n\n    memset(ctx->slice_param, 0, sizeof(ctx->slice_param));\n    ctx->num_slices = 0;\n\n    return 0;\n}\n\nvoid\nencode_picture(struct svcenc_context *ctx, svcenc_surface *current_surface)\n{\n    begin_picture(ctx, current_surface);\n    render_picture(ctx, current_surface);\n    end_picture(ctx, current_surface);\n\n    svcenc_update_ref_frames(ctx, current_surface);\n\n    if ((current_surface->is_idr) &&\n        (ctx->rate_control_mode & VA_RC_CBR)) {\n        ctx->prev_idr_cpb_removal = ctx->current_idr_cpb_removal;\n    }\n}\n\nstatic void\nsvcenc_va_init(struct svcenc_context *ctx)\n{\n    VAProfile *profile_list;\n    VAEntrypoint *entrypoint_list;\n    VAConfigAttrib attrib_list[4];\n    VAStatus va_status;\n    int max_profiles, num_profiles = 0, profile = VAProfileNone;\n    int max_entrypoints, num_entrypoints = 0, entrypoint;\n    int major_ver, minor_ver;\n    int i, j;\n\n    ctx->va_dpy = va_open_display();\n    va_status = vaInitialize(ctx->va_dpy,\n                             &major_ver,\n                             &minor_ver);\n    CHECK_VASTATUS(va_status, \"vaInitialize\");\n\n    max_profiles = vaMaxNumProfiles(ctx->va_dpy);\n    profile_list = malloc(max_profiles * sizeof(VAProfile));\n    assert(profile_list);\n    vaQueryConfigProfiles(ctx->va_dpy,\n                          profile_list,\n                          &num_profiles);\n\n    for (i = 0; i < ARRAY_ELEMS(g_va_profiles); i++) {\n        for (j = 0; j < num_profiles; j++) {\n            if (g_va_profiles[i] == profile_list[j]) {\n                profile = g_va_profiles[i];\n                break;\n            }\n        }\n\n        if (profile != VAProfileNone)\n            break;\n    }\n\n    free(profile_list);\n\n    if (profile == VAProfileNone) {\n        fprintf(stderr, \"Can't find a supported profile\\n\");\n        exit(-1);\n    }\n\n    ctx->profile = profile;\n\n    max_entrypoints = vaMaxNumEntrypoints(ctx->va_dpy);\n    entrypoint_list = malloc(max_entrypoints * sizeof(VAEntrypoint));\n    assert(entrypoint_list);\n    vaQueryConfigEntrypoints(ctx->va_dpy,\n                             ctx->profile,\n                             entrypoint_list,\n                             &num_entrypoints);\n\n    for (entrypoint = 0; entrypoint < num_entrypoints; entrypoint++) {\n        if (entrypoint_list[entrypoint] == VAEntrypointEncSlice)\n            break;\n    }\n\n    free(entrypoint_list);\n\n    if (entrypoint == num_entrypoints) {\n        /* not find Slice entry point */\n        fprintf(stderr, \"Can't find the supported entrypoint\\n\");\n        exit(-1);\n    }\n\n    /* find out the format for the render target, and rate control mode */\n    attrib_list[0].type = VAConfigAttribRTFormat;\n    attrib_list[1].type = VAConfigAttribRateControl;\n    attrib_list[2].type = VAConfigAttribEncPackedHeaders;\n    attrib_list[3].type = VAConfigAttribEncRateControlExt;\n\n    vaGetConfigAttributes(ctx->va_dpy,\n                          ctx->profile,\n                          VAEntrypointEncSlice,\n                          &attrib_list[0],\n                          4);\n\n    if ((attrib_list[0].value & VA_RT_FORMAT_YUV420) == 0) {\n        /* not find desired YUV420 RT format */\n        assert(0);\n    }\n\n    if ((attrib_list[1].value & ctx->rate_control_mode) == 0) {\n        /* Can't find matched RC mode */\n        fprintf(stderr, \"RC mode %d isn't found, exit\\n\", ctx->rate_control_mode);\n        assert(0);\n    }\n\n    if ((attrib_list[2].value & (VA_ENC_PACKED_HEADER_SEQUENCE |\n                                 VA_ENC_PACKED_HEADER_PICTURE |\n                                 VA_ENC_PACKED_HEADER_SLICE |\n                                 VA_ENC_PACKED_HEADER_RAW_DATA)) == 0) {\n        /* Can't find matched PACKED HEADER mode */\n        assert(0);\n    }\n\n    if (attrib_list[3].value == VA_ATTRIB_NOT_SUPPORTED) {\n        ctx->layer_brc = 0; // force to 0\n    } else {\n        VAConfigAttribValEncRateControlExt *val = (VAConfigAttribValEncRateControlExt *)&attrib_list[3].value;\n\n        if (!val->bits.max_num_temporal_layers_minus1) {\n            fprintf(stderr, \"Do not support temporal layer\\n\");\n            assert(0);\n        }\n\n        if (ctx->hierarchical_levels > (val->bits.max_num_temporal_layers_minus1 + 1)) {\n            fprintf(stderr, \"Over the maximum number of the supported layers\\n\");\n            assert(0);\n        }\n\n        if (!val->bits.temporal_layer_bitrate_control_flag)\n            ctx->layer_brc = 0; // force to 0\n    }\n\n    attrib_list[0].value = VA_RT_FORMAT_YUV420; /* set to desired RT format */\n    attrib_list[1].value = ctx->rate_control_mode; /* set to desired RC mode */\n    attrib_list[2].value = (VA_ENC_PACKED_HEADER_SEQUENCE |\n                            VA_ENC_PACKED_HEADER_PICTURE |\n                            VA_ENC_PACKED_HEADER_SLICE |\n                            VA_ENC_PACKED_HEADER_RAW_DATA);\n\n    va_status = vaCreateConfig(ctx->va_dpy,\n                               ctx->profile,\n                               VAEntrypointEncSlice,\n                               attrib_list,\n                               3,\n                               &ctx->config_id);\n    CHECK_VASTATUS(va_status, \"vaCreateConfig\");\n\n    /* Create a context for this decode pipe */\n    va_status = vaCreateContext(ctx->va_dpy,\n                                ctx->config_id,\n                                ctx->width,\n                                ctx->height,\n                                VA_PROGRESSIVE,\n                                0,\n                                0,\n                                &ctx->context_id);\n    CHECK_VASTATUS(va_status, \"vaCreateContext\");\n\n    va_status = vaCreateSurfaces(ctx->va_dpy,\n                                 VA_RT_FORMAT_YUV420,\n                                 ctx->width,\n                                 ctx->height,\n                                 src_surfaces,\n                                 NUM_SURFACES,\n                                 NULL,\n                                 0);\n    CHECK_VASTATUS(va_status, \"vaCreateSurfaces\");\n\n    va_status = vaCreateSurfaces(ctx->va_dpy,\n                                 VA_RT_FORMAT_YUV420,\n                                 ctx->width,\n                                 ctx->height,\n                                 rec_surfaces,\n                                 NUM_SURFACES,\n                                 NULL,\n                                 0);\n    CHECK_VASTATUS(va_status, \"vaCreateSurfaces\");\n}\n\nstatic void\nsvcenc_sei_init(struct svcenc_context *ctx)\n{\n    if (!(ctx->rate_control_mode & VA_RC_CBR))\n        return;\n\n    /* it comes for the bps defined in SPS */\n    ctx->i_initial_cpb_removal_delay = 2 * 90000;\n    ctx->i_initial_cpb_removal_delay_offset = 2 * 90000;\n\n    ctx->i_cpb_removal_delay = 2;\n    ctx->i_initial_cpb_removal_delay_length = 24;\n    ctx->i_cpb_removal_delay_length = 24;\n    ctx->i_dpb_output_delay_length = 24;\n    ctx->time_offset_length = 24;\n\n    ctx->prev_idr_cpb_removal = ctx->i_initial_cpb_removal_delay / 90000;\n    ctx->current_idr_cpb_removal = ctx->prev_idr_cpb_removal;\n    ctx->current_cpb_removal = 0;\n    ctx->idr_frame_num = 0;\n}\n\nstatic void\nsvcenc_init(struct svcenc_context *ctx)\n{\n    int i;\n\n    ctx->frame_data_buffer = (unsigned char *)malloc(ctx->frame_size);\n    ctx->num_remainder_bframes = 0;\n    ctx->max_num_ref_frames = ctx->gop_size;\n    ctx->num_ref_frames = 0;\n\n    switch (ctx->gop_size) {\n    case 1:\n        ctx->hierarchical_levels = 1;\n        break;\n\n    case 2:\n        ctx->hierarchical_levels = 2;\n        break;\n\n    case 4:\n        ctx->hierarchical_levels = 3;\n        break;\n\n    case 8:\n        ctx->hierarchical_levels = 4;\n        break;\n\n    default:\n        /* Never get here !!! */\n        assert(0);\n        break;\n    }\n\n    if (ctx->gop_type == 1) { // B\n        ctx->intra_period = 2 * ctx->gop_size;\n        ctx->ip_period = ctx->gop_size;\n        ctx->intra_idr_period = 0; // 0 means infinite\n    } else {\n        ctx->intra_period = 2 * ctx->gop_size;\n        ctx->ip_period = 1;\n        ctx->intra_idr_period = 8 * ctx->intra_period;\n    }\n\n    ctx->framerate_per_100s = frame_rates[ctx->hierarchical_levels - 1] * 100;\n\n    ctx->upload_task_header = NULL;\n    ctx->upload_task_tail = NULL;\n\n    ctx->reordering_info[0] = ctx->reordering_info[1] = 0;\n\n    ctx->seq_param_buf_id = VA_INVALID_ID;\n    ctx->pic_param_buf_id = VA_INVALID_ID;\n    ctx->packed_sei_scalability_info_header_param_buf_id = VA_INVALID_ID;\n    ctx->packed_sei_scalability_info_buf_id = VA_INVALID_ID;\n    ctx->packed_seq_header_param_buf_id = VA_INVALID_ID;\n    ctx->packed_seq_buf_id = VA_INVALID_ID;\n    ctx->packed_svc_seq_header_param_buf_id = VA_INVALID_ID;\n    ctx->packed_svc_seq_buf_id = VA_INVALID_ID;\n    ctx->packed_pic_header_param_buf_id = VA_INVALID_ID;\n    ctx->packed_pic_buf_id = VA_INVALID_ID;\n    ctx->codedbuf_buf_id = VA_INVALID_ID;\n    ctx->misc_parameter_layer_structure_buf_id = VA_INVALID_ID;\n\n    for (i = 0; i < MAX_LAYERS; i++) {\n        ctx->misc_parameter_ratecontrol_buf_id[i] = VA_INVALID_ID;\n        ctx->misc_parameter_framerate_buf_id[i] = VA_INVALID_ID;\n    }\n\n    ctx->misc_parameter_hrd_buf_id = VA_INVALID_ID;\n    ctx->packed_sei_header_param_buf_id = VA_INVALID_ID;\n    ctx->packed_sei_buf_id = VA_INVALID_ID;\n\n    for (i = 0; i < MAX_SLICES; i++) {\n        ctx->packed_slice_header_param_buf_id[i] = VA_INVALID_ID;\n        ctx->packed_slice_header_data_buf_id[i] = VA_INVALID_ID;\n        ctx->packed_prefix_nal_unit_param_buf_id[i] = VA_INVALID_ID;\n        ctx->packed_prefix_nal_unit_data_buf_id[i] = VA_INVALID_ID;\n    }\n\n    svcenc_va_init(ctx);\n\n    /* update the next surface status */\n    ctx->next_svcenc_surface.slot_in_surfaces = 0;\n    ctx->next_svcenc_surface.coding_order = 0;\n    ctx->next_svcenc_surface.display_order = 0;\n    ctx->next_svcenc_surface.temporal_id = 0;\n    ctx->next_svcenc_surface.frame_num = 0;\n    ctx->next_svcenc_surface.poc = 0;\n    ctx->next_svcenc_surface.picture_type = VAEncPictureTypeIntra;\n    ctx->next_svcenc_surface.is_intra = 1;\n    ctx->next_svcenc_surface.is_idr = 1;\n    ctx->next_svcenc_surface.is_ref = 1;\n    ctx->next_svcenc_surface.rec_surface = rec_surfaces[ctx->next_svcenc_surface.slot_in_surfaces];\n    memset(src_surface_status, SRC_SURFACE_IN_STORAGE, sizeof(src_surface_status));\n\n    svcenc_sei_init(ctx);\n}\n\nstatic void\nsvcenc_run(struct svcenc_context *ctx)\n{\n    int coding_order = 0;\n    svcenc_surface current_surface;\n\n    pthread_create(&ctx->upload_thread, NULL, upload_task_thread, ctx);\n    current_surface = ctx->next_svcenc_surface;\n    upload_task_queue(ctx, current_surface.display_order, current_surface.slot_in_surfaces);\n\n    while (coding_order < ctx->num_pictures) {\n        if (coding_order < (ctx->num_pictures - 1)) {\n            if (ctx->gop_type == 1) {\n                update_next_picture_info(ctx);\n            } else {\n                update_next_picture_info_pgop(ctx);\n            }\n\n            assert(current_surface.display_order != ctx->next_svcenc_surface.display_order);\n            upload_task_queue(ctx, ctx->next_svcenc_surface.display_order, ctx->next_svcenc_surface.slot_in_surfaces);\n        }\n\n        while (src_surface_status[current_surface.slot_in_surfaces] != SRC_SURFACE_IN_ENCODING)\n            usleep(1);\n\n        encode_picture(ctx, &current_surface);\n\n        if (coding_order < (ctx->num_pictures - 1))\n            current_surface = ctx->next_svcenc_surface;\n\n        coding_order++;\n        fprintf(stderr, \"\\r %d/%d ...\", coding_order, ctx->num_pictures);\n        fflush(stdout);\n    }\n\n    pthread_join(ctx->upload_thread, NULL);\n}\n\nstatic void\nsvcenc_va_end(struct svcenc_context *ctx)\n{\n    vaDestroySurfaces(ctx->va_dpy, src_surfaces, NUM_SURFACES);\n    vaDestroySurfaces(ctx->va_dpy, rec_surfaces, NUM_SURFACES);\n\n    vaDestroyContext(ctx->va_dpy, ctx->context_id);\n    vaDestroyConfig(ctx->va_dpy, ctx->config_id);\n    vaTerminate(ctx->va_dpy);\n    va_close_display(ctx->va_dpy);\n}\n\nstatic void\nsvcenc_end(struct svcenc_context *ctx)\n{\n    free(ctx->frame_data_buffer);\n    ctx->frame_data_buffer = NULL;\n    svcenc_va_end(ctx);\n}\n\nint\nmain(int argc, char *argv[])\n{\n    struct svcenc_context ctx;\n    struct timeval tpstart, tpend;\n    float timeuse;\n\n    gettimeofday(&tpstart, NULL);\n\n    memset(&ctx, 0, sizeof(ctx));\n    parse_args(&ctx, argc, argv);\n\n    svcenc_init(&ctx);\n    svcenc_run(&ctx);\n    svcenc_end(&ctx);\n\n    gettimeofday(&tpend, NULL);\n    timeuse = 1000000 * (tpend.tv_sec - tpstart.tv_sec) + tpend.tv_usec - tpstart.tv_usec;\n    timeuse /= 1000000;\n    fprintf(stderr, \"\\ndone!\\n\");\n    fprintf(stderr, \"encode %d frames in %f secondes, FPS is %.1f\\n\", ctx.num_pictures, timeuse, ctx.num_pictures / timeuse);\n\n    svcenc_exit(&ctx, 0);\n\n    return 0;\n}\n"
  },
  {
    "path": "encode/vp8enc.c",
    "content": "/*\n * Copyright (c) 2018 Georg Ottinger. All Rights Reserved.\n *\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the\n * \"Software\"), to deal in the Software without restriction, including\n * without limitation the rights to use, copy, modify, merge, publish,\n * distribute, sub license, and/or sell copies of the Software, and to\n * permit persons to whom the Software is furnished to do so, subject to\n * the following conditions:\n *\n * The above copyright notice and this permission notice (including the\n * next paragraph) shall be included in all copies or substantial portions\n * of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR\n * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n/* This file includes code taken from vp9enc.c (libva-utils) copyright 2017\n * by Intel Cooperation and licensed under same conditions.\n * This file includes code ported from vaapiencoder_vp8.cpp (libyami) copyright\n * by 2014-2016 Intel Corporation. https://github.com/intel/libyami\n * The original copyright and licence statement as below.\n */\n\n/*\n * Copyright (C) 2014-2016 Intel Corporation. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n#include <stdbool.h>\n#include <stdio.h>\n#include <string.h>\n#include <stdlib.h>\n#include <getopt.h>\n#include <unistd.h>\n#include <inttypes.h>\n\n#include <sys/time.h>\n#include <sys/types.h>\n#include <sys/stat.h>\n#include <sys/mman.h>\n#include <fcntl.h>\n#include <assert.h>\n#include <time.h>\n#include <stdlib.h>\n#include <pthread.h>\n\n#include <va/va.h>\n#include <va/va_enc_vp8.h>\n#include \"va_display.h\"\n\n#define MAX_XY_RESOLUTION       16364\n\n#define KEY_FRAME               0\n#define INTER_FRAME             1\n\n#define NUM_REF_SURFACES        4\n#define NUM_INPUT_SURFACES      2\n#define NUM_SURFACES_TOTAL      (NUM_REF_SURFACES+NUM_INPUT_SURFACES)\n#define SID_INPUT_PICTURE_0     (NUM_REF_SURFACES)\n#define SID_INPUT_PICTURE_1     (NUM_REF_SURFACES+1)\n#define NUM_BUFFERS             10\n\n#define VP8ENC_OK               0\n#define VP8ENC_FAIL             -1\n#define PARSE_OPTIONS_OK        0\n#define PARSE_OPTIONS_FAIL      -1\n\n#ifndef N_ELEMENTS\n#define N_ELEMENTS(array) (sizeof(array)/sizeof(array[0]))\n#endif\n\n#ifndef CHECK_VASTATUS\n#define CHECK_VASTATUS(va_status,func)                                  \\\n    if (va_status != VA_STATUS_SUCCESS) {                               \\\n        fprintf(stderr,\"%s:%s (%d) failed,exit\\n\", __func__, func, __LINE__); \\\n        exit(1);                                                        \\\n    }\n#endif\n\n#define CHECK_CONDITION(cond)                                                \\\n    if(!(cond))                                                              \\\n    {                                                                        \\\n        fprintf(stderr, \"Unexpected condition: %s:%d\\n\", __func__, __LINE__); \\\n        exit(1);                                                             \\\n    }\n\nstatic const struct option long_opts[] = {\n    {\"help\", no_argument, NULL, 0 },\n    {\"rcmode\", required_argument, NULL, 1 },\n    {\"qp\", required_argument, NULL, 2 },\n    {\"intra_period\", required_argument, NULL, 3 },\n    {\"fb\", required_argument, NULL, 4 },\n    {\"lf_level\", required_argument, NULL, 5 },\n    {\"hrd_win\", required_argument, NULL, 6},\n    {\"vbr_max\", required_argument, NULL, 7},\n    {\"fn_num\", required_argument, NULL, 8},\n    {\"error_resilient\", no_argument, NULL, 9},\n    {\"debug\", no_argument, NULL, 10},\n    {\"temp_svc\", required_argument, NULL, 11},\n    {\"repeat\", required_argument, NULL, 12},\n    {NULL, no_argument, NULL, 0 }\n};\n\n\nstatic const int default_rc_modes[4] = {\n    VA_RC_CQP, // 0\n    VA_RC_CBR, // 1\n    VA_RC_VBR, // 2\n    VA_RC_NONE\n};\n\nstruct vp8enc_settings {\n    int width;\n    int height;\n    int frame_rate;\n    int frame_size;\n    int loop_filter_level;\n    int clamp_qindex_low;\n    int clamp_qindex_high;\n    int intra_period;\n    int quantization_parameter;\n    int frame_bitrate;\n    int max_variable_bitrate;\n    int rc_mode;\n    int num_frames;\n    VAEntrypoint vaapi_entry_point;\n    int codedbuf_size;\n    int hrd_window;\n    int error_resilient;\n    int debug;\n    int temporal_svc_layers;\n    int repeat_times;\n};\n\n\nstatic struct vp8enc_settings settings = {\n    //Default Values - unless otherwise specified with command line options\n    .frame_rate = 30,\n    .loop_filter_level = 19,\n    .clamp_qindex_low = 9,\n    .clamp_qindex_high = 127,\n    .intra_period = 30,\n    .quantization_parameter = 60,\n    .frame_bitrate = -1,\n    .max_variable_bitrate = -1,\n    .num_frames = 0,\n    .rc_mode = VA_RC_CQP,\n    .vaapi_entry_point = VAEntrypointEncSlice, //VAEntrypointEncSliceLP would be LowPower Mode - but not supported with VP8Encoder\n    .hrd_window = 1500,\n    .error_resilient = 0,\n    .debug = 0,\n    .temporal_svc_layers = 1,\n    .repeat_times = 1,\n};\n\nstruct vp8enc_vaapi_context {\n    VADisplay display;\n    VAProfile profile;\n    VAContextID context_id;\n    VAConfigID config_id;\n    VAEncSequenceParameterBufferVP8 seq_param;\n    VAEncPictureParameterBufferVP8 pic_param;\n    VAQMatrixBufferVP8 q_matrix;\n    VASurfaceID surfaces[NUM_SURFACES_TOTAL];\n    VASurfaceID recon_surface, last_ref_surface, golden_ref_surface, alt_ref_surface;\n    VASurfaceID input_surface;\n    VABufferID codedbuf_buf_id;\n    VABufferID va_buffers[NUM_BUFFERS];\n    int num_va_buffers;\n    int is_golden_refreshed;\n    struct {\n        VAEncMiscParameterBuffer header;\n        VAEncMiscParameterHRD data;\n    } hrd_param;\n    struct {\n        VAEncMiscParameterBuffer header;\n        VAEncMiscParameterFrameRate data;\n    } frame_rate_param;\n    struct {\n        VAEncMiscParameterBuffer header;\n        VAEncMiscParameterRateControl data;\n    } rate_control_param;\n    struct {\n        pthread_t id;\n        int value;\n        FILE *input_fp;\n        int input_surface_num;\n        VASurfaceID input_surface;\n        int processed_frame;\n    } upload_thread;\n};\n\nstatic struct vp8enc_vaapi_context vaapi_context;\n\n\n/********************************************\n*\n* START: IVF Container Releated Stuff\n*\n********************************************/\nstatic void\nvp8enc_write_word(char *ptr, uint32_t value)\n{\n    uint8_t *tmp;\n\n    tmp = (uint8_t *)ptr;\n    *(tmp) = (value >> 0) & 0XFF;\n    *(tmp + 1) = (value >> 8) & 0XFF;\n}\n\nstatic void\nvp8enc_write_dword(char *ptr, uint32_t value)\n{\n    uint8_t *tmp;\n\n    tmp = (uint8_t *)ptr;\n    *(tmp) = (value >> 0) & 0XFF;\n    *(tmp + 1) = (value >> 8) & 0XFF;\n    *(tmp + 2) = (value >> 16) & 0XFF;\n    *(tmp + 3) = (value >> 24) & 0XFF;\n}\n\nstatic void\nvp8enc_write_qword(char *ptr, uint64_t value)\n{\n    uint8_t *tmp;\n\n    tmp = (uint8_t *)ptr;\n    *(tmp) = (value >> 0) & 0XFF;\n    *(tmp + 1) = (value >> 8) & 0XFF;\n    *(tmp + 2) = (value >> 16) & 0XFF;\n    *(tmp + 3) = (value >> 24) & 0XFF;\n    *(tmp + 4) = (value >> 32) & 0XFF;\n    *(tmp + 5) = (value >> 40) & 0XFF;\n    *(tmp + 6) = (value >> 48) & 0XFF;\n    *(tmp + 7) = (value >> 56) & 0XFF;\n}\n\nstatic void\nvp8enc_write_frame_header(FILE *vp8_output, uint32_t data_length, uint64_t timestamp)\n{\n    char header[12];\n\n    vp8enc_write_dword(header, data_length);\n    vp8enc_write_qword(header + 4, timestamp);\n\n    fwrite(header, 1, 12, vp8_output);\n}\n\nstatic void\nvp8enc_write_ivf_header(FILE *vp8_file)\n{\n\n\n#define VP8_FOURCC    0x30385056\n\n    char header[32];\n\n    header[0] = 'D';\n    header[1] = 'K';\n    header[2] = 'I';\n    header[3] = 'F';\n\n    vp8enc_write_word(header + 4, 0);\n    vp8enc_write_word(header + 6, 32);\n    vp8enc_write_dword(header + 8, VP8_FOURCC);\n    vp8enc_write_word(header + 12, settings.width);\n    vp8enc_write_word(header + 14, settings.height);\n    vp8enc_write_dword(header + 16, settings.frame_rate);\n    vp8enc_write_dword(header + 20, 1);\n    vp8enc_write_dword(header + 24, settings.num_frames * settings.repeat_times);\n    vp8enc_write_dword(header + 28, 0);\n\n    fwrite(header, 1, 32, vp8_file);\n}\n\n/********************************************\n*\n* END: IVF Container Releated Stuff\n*\n********************************************/\n\n\n/********************************************\n*\n* START: Read YUV Input File Releated Stuff\n*\n********************************************/\nstatic void\nvp8enc_upload_yuv_to_surface(FILE *yuv_fp, VASurfaceID surface_id, int current_frame)\n{\n    VAImage surface_image;\n    VAStatus va_status;\n    void *surface_p = NULL;\n    uint8_t *y_src, *u_src, *v_src;\n    uint8_t *y_dst, *u_dst, *v_dst;\n    int y_size = settings.width * settings.height;\n    int u_size = (settings.width >> 1) * (settings.height >> 1);\n    int row, col;\n    char *yuv_mmap_ptr = NULL;\n    unsigned long long frame_start_pos, mmap_start;\n    int mmap_size;\n\n    frame_start_pos = (unsigned long long)current_frame * settings.frame_size;\n\n    mmap_start = frame_start_pos & (~0xfff);\n    mmap_size = (settings.frame_size + (frame_start_pos & 0xfff) + 0xfff) & (~0xfff);\n    yuv_mmap_ptr = mmap(0, mmap_size, PROT_READ, MAP_SHARED,\n                        fileno(yuv_fp), mmap_start);\n\n    if (yuv_mmap_ptr == MAP_FAILED) {\n        fprintf(stderr, \"Error: Failed to mmap YUV file.\\n\");\n        assert(0);\n    }\n\n    y_src = (uint8_t*)yuv_mmap_ptr + (frame_start_pos & 0xfff);\n    u_src = y_src + y_size; /* UV offset for NV12 */\n    v_src = y_src + y_size + u_size;\n\n\n    va_status = vaDeriveImage(vaapi_context.display, surface_id, &surface_image);\n    CHECK_VASTATUS(va_status, \"vaDeriveImage\");\n\n    vaMapBuffer(vaapi_context.display, surface_image.buf, &surface_p);\n    assert(VA_STATUS_SUCCESS == va_status);\n\n    y_dst = (unsigned char *)surface_p + surface_image.offsets[0];\n    u_dst = (unsigned char *)surface_p +\n            surface_image.offsets[1]; /* UV offset for NV12 */\n    v_dst = (unsigned char *)surface_p + surface_image.offsets[2];\n\n    /* Y plane */\n    for (row = 0; row < surface_image.height; row++) {\n        memcpy(y_dst, y_src, surface_image.width);\n        y_dst += surface_image.pitches[0];\n        y_src += settings.width;\n    }\n\n    if (surface_image.format.fourcc == VA_FOURCC_NV12) { /* UV plane */\n        for (row = 0; row < surface_image.height / 2; row++) {\n            for (col = 0; col < surface_image.width / 2; col++) {\n                u_dst[col * 2] = u_src[col];\n                u_dst[col * 2 + 1] = v_src[col];\n            }\n\n            u_dst += surface_image.pitches[1];\n            u_src += (settings.width / 2);\n            v_src += (settings.width / 2);\n        }\n    } else if (surface_image.format.fourcc == VA_FOURCC_YV12 ||\n               surface_image.format.fourcc == VA_FOURCC_I420) {\n        const int U = surface_image.format.fourcc == VA_FOURCC_I420 ? 1 : 2;\n        const int V = surface_image.format.fourcc == VA_FOURCC_I420 ? 2 : 1;\n\n        u_dst = (unsigned char *)surface_p + surface_image.offsets[U];\n        v_dst = (unsigned char *)surface_p + surface_image.offsets[V];\n\n        for (row = 0; row < surface_image.height / 2; row++) {\n            memcpy(u_dst, u_src, surface_image.width / 2);\n            memcpy(v_dst, v_src, surface_image.width / 2);\n            u_dst += surface_image.pitches[U];\n            v_dst += surface_image.pitches[V];\n            u_src += (settings.width / 2);\n            v_src += (settings.width / 2);\n        }\n    }\n\n    vaUnmapBuffer(vaapi_context.display, surface_image.buf);\n    vaDestroyImage(vaapi_context.display, surface_image.image_id);\n\n    if (yuv_mmap_ptr)\n        munmap(yuv_mmap_ptr, mmap_size);\n}\n\nstatic void *\nvp8enc_upload_thread_function(void *data)\n{\n    vp8enc_upload_yuv_to_surface(vaapi_context.upload_thread.input_fp, vaapi_context.upload_thread.input_surface, vaapi_context.upload_thread.processed_frame);\n\n    return NULL;\n}\n/********************************************\n*\n* END: Read YUV Input File Releated Stuff\n*\n********************************************/\n\nvoid vp8enc_init_QMatrix(VAQMatrixBufferVP8 *qMatrix)\n{\n    // When segmentation is disabled, only quantization_index[0] will be used\n    size_t i;\n    for (i = 0; i < N_ELEMENTS(qMatrix->quantization_index); i++) {\n        qMatrix->quantization_index[i] = settings.quantization_parameter;\n    }\n\n    for (i = 0; i < N_ELEMENTS(qMatrix->quantization_index_delta); i++) {\n        qMatrix->quantization_index_delta[i] = 0;\n    }\n}\n\nvoid vp8enc_init_SequenceParameterBuffer(VAEncSequenceParameterBufferVP8* seqParam)\n{\n    size_t i;\n\n    memset(seqParam, 0, sizeof(VAEncSequenceParameterBufferVP8));\n\n    seqParam->frame_width = settings.width;\n    seqParam->frame_height = settings.height;\n\n    if (settings.frame_bitrate > 0)\n        seqParam->bits_per_second = settings.frame_bitrate * 1000;\n    else\n        seqParam->bits_per_second = 0;\n\n    seqParam->intra_period = settings.intra_period;\n    seqParam->error_resilient = settings.error_resilient;\n\n    for (i = 0; i < N_ELEMENTS(seqParam->reference_frames); i++)\n        seqParam->reference_frames[i] = VA_INVALID_ID;\n}\n\nvoid vp8enc_init_PictureParameterBuffer(VAEncPictureParameterBufferVP8 *picParam)\n{\n    size_t i;\n    memset(picParam, 0, sizeof(VAEncPictureParameterBufferVP8));\n\n    picParam->ref_last_frame = VA_INVALID_SURFACE;\n    picParam->ref_gf_frame = VA_INVALID_SURFACE;\n    picParam->ref_arf_frame = VA_INVALID_SURFACE;\n\n    /* always show it */\n    picParam->pic_flags.bits.show_frame = 1;\n\n    for (i = 0; i < N_ELEMENTS(picParam->loop_filter_level); i++) {\n        picParam->loop_filter_level[i] = settings.loop_filter_level;\n    }\n\n    picParam->clamp_qindex_low = settings.clamp_qindex_low;\n    picParam->clamp_qindex_high = settings.clamp_qindex_high;\n\n}\n\nvoid vp8enc_set_refreshparameter_for_svct_2layers(VAEncPictureParameterBufferVP8 *picParam, int current_frame, int *is_golden_refreshed)\n{\n    //Pattern taken from libyami\n\n    picParam->ref_flags.bits.no_ref_arf = 1;\n\n    if (! *is_golden_refreshed)\n        picParam->ref_flags.bits.no_ref_gf = 1;\n\n    switch (current_frame % 2) {\n    case 0:\n        //Layer 0\n        picParam->pic_flags.bits.refresh_last = 1;\n        picParam->ref_flags.bits.no_ref_gf = 1;\n        picParam->ref_flags.bits.temporal_id = 0;\n        break;\n    case 1:\n        //Layer 1\n        picParam->pic_flags.bits.refresh_golden_frame = 1;\n        *is_golden_refreshed = 1;\n        picParam->ref_flags.bits.temporal_id = 1;\n        break;\n    }\n}\n\nvoid vp8enc_set_refreshparameter_for_svct_3layers(VAEncPictureParameterBufferVP8 *picParam, int current_frame, int *is_golden_refreshed)\n{\n    //Pattern taken from libyami - Note that the alternate frame is never referenced,\n    //this is because, libyami implementation suggests to be able to drop individual\n    //frames from Layer 2 on bad network connections\n    picParam->ref_flags.bits.no_ref_arf = 1;\n\n    if (! *is_golden_refreshed)\n        picParam->ref_flags.bits.no_ref_gf = 1;\n\n    switch (current_frame % 4) {\n    case 0:\n        //Layer 0\n        picParam->pic_flags.bits.refresh_last = 1;\n        picParam->ref_flags.bits.no_ref_gf = 1;\n        picParam->ref_flags.bits.temporal_id = 0;\n        break;\n    case 1:\n    case 3:\n        //Layer 2\n        picParam->pic_flags.bits.refresh_alternate_frame  = 1;\n        picParam->ref_flags.bits.temporal_id = 2;\n        break;\n    case 2:\n        //Layer 1\n        picParam->pic_flags.bits.refresh_golden_frame = 1;\n        *is_golden_refreshed = 1;\n        picParam->ref_flags.bits.temporal_id = 1;\n        break;\n    }\n}\n\nvoid vp8enc_reset_picture_parameter_references(VAEncPictureParameterBufferVP8 *picParam)\n{\n    picParam->ref_last_frame = VA_INVALID_SURFACE;\n    picParam->ref_gf_frame = VA_INVALID_SURFACE;\n    picParam->ref_arf_frame = VA_INVALID_SURFACE;\n    picParam->pic_flags.bits.refresh_last = 0;\n    picParam->pic_flags.bits.refresh_golden_frame = 0;\n    picParam->pic_flags.bits.refresh_alternate_frame = 0;\n    picParam->pic_flags.bits.copy_buffer_to_golden = 0;\n    picParam->pic_flags.bits.copy_buffer_to_alternate = 0;\n    picParam->ref_flags.bits.no_ref_last = 0;\n    picParam->ref_flags.bits.no_ref_gf = 0;\n    picParam->ref_flags.bits.no_ref_arf = 0;\n}\n\nvoid vp8enc_update_picture_parameter(int frame_type, int current_frame)\n{\n    VAEncPictureParameterBufferVP8 *picParam = &vaapi_context.pic_param;\n\n    picParam->reconstructed_frame = vaapi_context.recon_surface;\n\n    vp8enc_reset_picture_parameter_references(picParam);\n\n    if (frame_type == KEY_FRAME) {\n        picParam->ref_flags.bits.force_kf = 1;\n        picParam->pic_flags.bits.frame_type = KEY_FRAME;\n        vaapi_context.is_golden_refreshed = 0;\n        return;\n    }\n\n    // INTER_FRAME\n    picParam->ref_flags.bits.force_kf = 0;\n    picParam->pic_flags.bits.frame_type = INTER_FRAME;\n\n    switch (settings.temporal_svc_layers) {\n    case 1:\n        //Standard behavoir only 1 Temporal Layer\n        picParam->pic_flags.bits.refresh_last = 1;\n        picParam->pic_flags.bits.copy_buffer_to_golden = 1;\n        picParam->pic_flags.bits.copy_buffer_to_alternate = 2;\n        picParam->ref_flags.bits.temporal_id = 0;\n        break;\n    case 2:\n        //2 Temporal Layers\n        vp8enc_set_refreshparameter_for_svct_2layers(picParam, current_frame, &vaapi_context.is_golden_refreshed);\n        break;\n    case 3:\n        //3 Temporal Layers\n        vp8enc_set_refreshparameter_for_svct_3layers(picParam, current_frame, &vaapi_context.is_golden_refreshed);\n        break;\n    default:\n        //should never happen\n        fprintf(stderr, \"Error: Only 1,2 or 3 TemporalLayers supported.\\n\");\n        assert(0);\n        break;\n    }\n\n    if (!picParam->ref_flags.bits.no_ref_last)\n        picParam->ref_last_frame = vaapi_context.last_ref_surface;\n    if (!picParam->ref_flags.bits.no_ref_gf)\n        picParam->ref_gf_frame = vaapi_context.golden_ref_surface;\n    if (!picParam->ref_flags.bits.no_ref_arf)\n        picParam->ref_arf_frame = vaapi_context.alt_ref_surface;\n\n}\n\nVASurfaceID vp8enc_get_unused_surface()\n{\n    VASurfaceID current_surface;\n    size_t i = 0;\n\n    for (i = 0; i < NUM_REF_SURFACES; i++) {\n        current_surface = vaapi_context.surfaces[i];\n\n        if (current_surface != vaapi_context.last_ref_surface && current_surface != vaapi_context.golden_ref_surface && current_surface != vaapi_context.alt_ref_surface)\n            return current_surface;\n    }\n\n    //No unused surface found - should never happen.\n    fprintf(stderr, \"Error: No unused surface found!\\n\");\n    assert(0);\n\n    return VA_INVALID_ID;  // should never happen\n}\n\nVASurfaceID vp8enc_update_reference(VASurfaceID current_surface, VASurfaceID second_copy_surface, bool refresh_with_recon, int copy_flag)\n{\n    if (refresh_with_recon)\n        return vaapi_context.recon_surface;\n    switch (copy_flag) {\n    case 0:\n        return current_surface;\n    case 1:\n        return vaapi_context.last_ref_surface;\n    case 2:\n        return second_copy_surface;\n    default: // should never happen\n        fprintf(stderr, \"Error: Invalid copy_buffer_to_X flag\\n\");\n        assert(0);\n    }\n\n    return VA_INVALID_ID; // should never happen\n}\n\n\nvoid vp8enc_update_reference_list(int frame_type)\n{\n\n    VAEncPictureParameterBufferVP8 *picParam = &vaapi_context.pic_param;\n\n    if (frame_type == KEY_FRAME) {\n        vaapi_context.last_ref_surface = vaapi_context.recon_surface;\n        vaapi_context.golden_ref_surface = vaapi_context.recon_surface;\n        vaapi_context.alt_ref_surface = vaapi_context.recon_surface;\n    } else { // INTER_FRAME\n        //check refresh_X and copy_buffer_to_golden_X and update references accordingly\n        if (picParam->pic_flags.bits.refresh_last)\n            vaapi_context.last_ref_surface = vaapi_context.recon_surface;\n        vaapi_context.golden_ref_surface = vp8enc_update_reference(vaapi_context.golden_ref_surface, vaapi_context.alt_ref_surface, picParam->pic_flags.bits.refresh_golden_frame, picParam->pic_flags.bits.copy_buffer_to_golden);\n        vaapi_context.alt_ref_surface = vp8enc_update_reference(vaapi_context.alt_ref_surface, vaapi_context.golden_ref_surface, picParam->pic_flags.bits.refresh_alternate_frame, picParam->pic_flags.bits.copy_buffer_to_alternate);\n    }\n\n    vaapi_context.recon_surface = vp8enc_get_unused_surface();\n}\n\nvoid vp8enc_init_MiscParameterBuffers(VAEncMiscParameterHRD *hrd, VAEncMiscParameterFrameRate *frame_rate, VAEncMiscParameterRateControl *rate_control)\n{\n    if (hrd != NULL) {\n        if (settings.frame_bitrate) {\n            hrd->initial_buffer_fullness = settings.frame_bitrate * settings.hrd_window / 2;\n            hrd->buffer_size = settings.frame_bitrate * settings.hrd_window;\n        } else {\n            hrd->initial_buffer_fullness = 0;\n            hrd->buffer_size = 0;\n        }\n    }\n\n    if (frame_rate != NULL) {\n        frame_rate->framerate = settings.frame_rate;\n    }\n\n    if (rate_control != NULL) {\n        rate_control->window_size = settings.hrd_window;\n        rate_control->initial_qp = settings.quantization_parameter;\n        rate_control->min_qp = settings.clamp_qindex_low;\n        //rate_control->rc_flags.bits.disable_bit_stuffing = 1;\n\n        if (settings.rc_mode == VA_RC_VBR) {\n            rate_control->bits_per_second = settings.max_variable_bitrate * 1000;\n            rate_control->target_percentage = (settings.frame_bitrate * 100) / settings.max_variable_bitrate;\n        } else {\n            rate_control->bits_per_second = settings.frame_bitrate * 1000;\n            rate_control->target_percentage = 95;\n\n        }\n    }\n}\n\nvoid vp8enc_create_EncoderPipe()\n{\n    VAEntrypoint entrypoints[5];\n    int num_entrypoints;\n    VAConfigAttrib conf_attrib[2];\n    VASurfaceAttrib surface_attrib;\n    int major_ver, minor_ver;\n    VAStatus va_status;\n\n    vaapi_context.display = va_open_display();\n    va_status = vaInitialize(vaapi_context.display, &major_ver, &minor_ver);\n    CHECK_VASTATUS(va_status, \"vaInitialize\");\n\n    vaQueryConfigEntrypoints(vaapi_context.display, vaapi_context.profile, entrypoints,\n                             &num_entrypoints);\n\n    /* find out the format for the render target, and rate control mode */\n    conf_attrib[0].type = VAConfigAttribRTFormat;\n    conf_attrib[1].type = VAConfigAttribRateControl;\n    vaGetConfigAttributes(vaapi_context.display, vaapi_context.profile, settings.vaapi_entry_point,\n                          &conf_attrib[0], 2);\n\n    if ((conf_attrib[0].value & VA_RT_FORMAT_YUV420) == 0) {\n        fprintf(stderr, \"Error: Input colorspace YUV420 not supported, exit\\n\");\n        assert(0);\n    }\n\n    if ((conf_attrib[1].value & settings.rc_mode) == 0) {\n        /* Can't find matched RC mode */\n        fprintf(stderr, \"Error: Can't find the desired RC mode, exit\\n\");\n        assert(0);\n    }\n\n    conf_attrib[0].value = VA_RT_FORMAT_YUV420; /* set to desired RT format */\n    conf_attrib[1].value = settings.rc_mode; /* set to desired RC mode */\n\n    va_status = vaCreateConfig(vaapi_context.display, vaapi_context.profile, settings.vaapi_entry_point,\n                               &conf_attrib[0], 2, &vaapi_context.config_id);\n    CHECK_VASTATUS(va_status, \"vaCreateConfig\");\n\n    surface_attrib.type = VASurfaceAttribPixelFormat;\n    surface_attrib.flags = VA_SURFACE_ATTRIB_SETTABLE;\n    surface_attrib.value.type = VAGenericValueTypeInteger;\n    surface_attrib.value.value.i = VA_FOURCC_NV12;\n\n    // Create surface (Reference Surfaces + Input Surfaces)\n    va_status = vaCreateSurfaces(\n                    vaapi_context.display,\n                    VA_RT_FORMAT_YUV420, settings.width, settings.height,\n                    vaapi_context.surfaces, NUM_SURFACES_TOTAL,\n                    &surface_attrib, 1\n                );\n\n    CHECK_VASTATUS(va_status, \"vaCreateSurfaces\");\n\n    vaapi_context.recon_surface = vaapi_context.surfaces[0];\n    vaapi_context.last_ref_surface = VA_INVALID_SURFACE;\n    vaapi_context.golden_ref_surface = VA_INVALID_SURFACE;\n    vaapi_context.alt_ref_surface = VA_INVALID_SURFACE;\n    vaapi_context.input_surface = vaapi_context.surfaces[NUM_REF_SURFACES]; // input surfaces trail the reference surfaces\n\n    /* Create a context for this Encoder pipe */\n    /* the surface is added to the render_target list when creating the context */\n    va_status = vaCreateContext(vaapi_context.display, vaapi_context.config_id,\n                                settings.width, settings.height,\n                                VA_PROGRESSIVE,\n                                vaapi_context.surfaces, NUM_SURFACES_TOTAL,\n                                &vaapi_context.context_id);\n\n    CHECK_VASTATUS(va_status, \"vaCreateContext\");\n\n\n}\n\nvoid vp8enc_destory_EncoderPipe()\n{\n    pthread_join(vaapi_context.upload_thread.id, NULL);\n    vaDestroySurfaces(vaapi_context.display, vaapi_context.surfaces, NUM_SURFACES_TOTAL);\n    vaDestroyContext(vaapi_context.display, vaapi_context.context_id);\n    vaDestroyConfig(vaapi_context.display, vaapi_context.config_id);\n    vaTerminate(vaapi_context.display);\n    va_close_display(vaapi_context.display);\n}\n\n\nvoid vp8enc_init_VaapiContext()\n{\n    size_t i;\n    vaapi_context.profile = VAProfileVP8Version0_3;\n\n    vp8enc_init_SequenceParameterBuffer(&vaapi_context.seq_param);\n    vp8enc_init_PictureParameterBuffer(&vaapi_context.pic_param);\n    vp8enc_init_QMatrix(&vaapi_context.q_matrix);\n\n    vaapi_context.hrd_param.header.type = VAEncMiscParameterTypeHRD;\n    vaapi_context.frame_rate_param.header.type = VAEncMiscParameterTypeFrameRate;\n    vaapi_context.rate_control_param.header.type = VAEncMiscParameterTypeRateControl;\n    vp8enc_init_MiscParameterBuffers(&vaapi_context.hrd_param.data, &vaapi_context.frame_rate_param.data, &vaapi_context.rate_control_param.data);\n\n    for (i = 0; i < N_ELEMENTS(vaapi_context.va_buffers); i++)\n        vaapi_context.va_buffers[i] = VA_INVALID_ID;\n    vaapi_context.num_va_buffers = 0;\n\n    vaapi_context.is_golden_refreshed = 0;\n}\n\n\n\nstatic int\nvp8enc_store_coded_buffer(FILE *vp8_fp, uint64_t timestamp)\n{\n    VACodedBufferSegment *coded_buffer_segment;\n    uint8_t *coded_mem;\n    int data_length;\n    VAStatus va_status;\n    VASurfaceStatus surface_status;\n    size_t w_items;\n\n    va_status = vaSyncSurface(vaapi_context.display, vaapi_context.recon_surface);\n    CHECK_VASTATUS(va_status, \"vaSyncSurface\");\n\n    surface_status = 0;\n    va_status = vaQuerySurfaceStatus(vaapi_context.display, vaapi_context.recon_surface, &surface_status);\n    CHECK_VASTATUS(va_status, \"vaQuerySurfaceStatus\");\n\n    va_status = vaMapBuffer(vaapi_context.display, vaapi_context.codedbuf_buf_id, (void **)(&coded_buffer_segment));\n    CHECK_VASTATUS(va_status, \"vaMapBuffer\");\n    coded_mem = coded_buffer_segment->buf;\n\n    if (coded_buffer_segment->status & VA_CODED_BUF_STATUS_SLICE_OVERFLOW_MASK) {\n        fprintf(stderr, \"Error: CodeBuffer Size too small\\n\");\n        vaUnmapBuffer(vaapi_context.display, vaapi_context.codedbuf_buf_id);\n        assert(0);\n    }\n\n    data_length = coded_buffer_segment->size;\n\n    vp8enc_write_frame_header(vp8_fp, data_length, timestamp);\n\n    do {\n        w_items = fwrite(coded_mem, data_length, 1, vp8_fp);\n    } while (w_items != 1);\n\n    if (settings.debug)\n        fprintf(stderr, \"Timestamp: %ld Bytes written %d\\n\", timestamp, data_length);\n\n    vaUnmapBuffer(vaapi_context.display, vaapi_context.codedbuf_buf_id);\n\n    return 0;\n}\n\nsize_t vp8enc_get_FileSize(FILE *fp)\n{\n    struct stat st;\n    int ret = fstat(fileno(fp), &st);\n    CHECK_CONDITION(ret == 0);\n    return st.st_size;\n}\n\nint vp8enc_prepare_buffers(int frame_type)\n{\n    int num_buffers = 0;\n    VABufferID *va_buffers;\n    VAStatus va_status;\n    VAEncPictureParameterBufferVP8 *picParam = &vaapi_context.pic_param;\n\n\n    va_buffers = vaapi_context.va_buffers;\n    /* coded buffer */\n    va_status = vaCreateBuffer(vaapi_context.display,\n                               vaapi_context.context_id,\n                               VAEncCodedBufferType,\n                               settings.codedbuf_size, 1, NULL,\n                               &vaapi_context.codedbuf_buf_id);\n    CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n    /* sequence parameter set */\n    va_status = vaCreateBuffer(vaapi_context.display,\n                               vaapi_context.context_id,\n                               VAEncSequenceParameterBufferType,\n                               sizeof(vaapi_context.seq_param), 1, &vaapi_context.seq_param,\n                               va_buffers);\n    CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n    va_buffers ++;\n    num_buffers++;\n\n    /* picture parameter set */\n    picParam->coded_buf = vaapi_context.codedbuf_buf_id;\n\n    va_status = vaCreateBuffer(vaapi_context.display,\n                               vaapi_context.context_id,\n                               VAEncPictureParameterBufferType,\n                               sizeof(vaapi_context.pic_param), 1, &vaapi_context.pic_param,\n                               va_buffers);\n    CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n    va_buffers ++;\n    num_buffers++;\n\n\n\n    /* hrd parameter */\n    va_status = vaCreateBuffer(vaapi_context.display,\n                   vaapi_context.context_id,\n                   VAEncMiscParameterBufferType,\n                   sizeof(vaapi_context.hrd_param), 1, &vaapi_context.hrd_param,\n                   va_buffers);\n    CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n    va_buffers ++;\n    num_buffers++;\n\n    /* QMatrix */\n    va_status = vaCreateBuffer(vaapi_context.display,\n                               vaapi_context.context_id,\n                               VAQMatrixBufferType,\n                               sizeof(vaapi_context.q_matrix), 1, &vaapi_context.q_matrix,\n                               va_buffers);\n    CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n\n    va_buffers ++;\n    num_buffers++;\n    /* Create the Misc FR/RC buffer under non-CQP mode */\n    if (settings.rc_mode != VA_RC_CQP && frame_type == KEY_FRAME) {\n        va_status = vaCreateBuffer(vaapi_context.display,\n                       vaapi_context.context_id,\n                       VAEncMiscParameterBufferType,\n                       sizeof(vaapi_context.frame_rate_param), 1, &vaapi_context.frame_rate_param,\n                       va_buffers);\n        CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n        va_buffers ++;\n        num_buffers++;\n\n        va_status = vaCreateBuffer(vaapi_context.display,\n                       vaapi_context.context_id,\n                       VAEncMiscParameterBufferType,\n                       sizeof(vaapi_context.rate_control_param), 1, &vaapi_context.rate_control_param,\n                       va_buffers);\n        CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n        va_buffers ++;\n        num_buffers++;\n    }\n\n    vaapi_context.num_va_buffers = num_buffers;\n\n    return num_buffers;\n}\n\n\n\n\nstatic void\nvp8enc_render_picture()\n{\n    VAStatus va_status;\n\n    va_status = vaBeginPicture(vaapi_context.display,\n                               vaapi_context.context_id,\n                               vaapi_context.input_surface);\n    CHECK_VASTATUS(va_status, \"vaBeginPicture\");\n\n\n    va_status = vaRenderPicture(vaapi_context.display,\n                                vaapi_context.context_id,\n                                vaapi_context.va_buffers,\n                                vaapi_context.num_va_buffers);\n    CHECK_VASTATUS(va_status, \"vaRenderPicture\");\n\n    va_status = vaEndPicture(vaapi_context.display, vaapi_context.context_id);\n    CHECK_VASTATUS(va_status, \"vaEndPicture\");\n\n}\n\nvoid vp8enc_destroy_buffers()\n{\n    int i;\n    VAStatus va_status;\n\n    for (i = 0; i < vaapi_context.num_va_buffers; i++) {\n        if (vaapi_context.va_buffers[i] != VA_INVALID_ID) {\n            va_status = vaDestroyBuffer(vaapi_context.display, vaapi_context.va_buffers[i]);\n            CHECK_VASTATUS(va_status, \"vaDestroyBuffer\");\n            vaapi_context.va_buffers[i] = VA_INVALID_ID;\n        }\n    }\n\n    if (vaapi_context.codedbuf_buf_id != VA_INVALID_ID) {\n        va_status = vaDestroyBuffer(vaapi_context.display, vaapi_context.codedbuf_buf_id);\n        CHECK_VASTATUS(va_status, \"vaDestroyBuffer\");\n        vaapi_context.codedbuf_buf_id = VA_INVALID_ID;\n    }\n\n}\nvoid vp8enc_show_help()\n{\n    printf(\"Usage: vp8enc <width> <height> <input_yuvfile> <output_vp8> additional_option\\n\");\n    printf(\"output_vp8 should use *.ivf\\n\");\n    printf(\"The additional option is listed\\n\");\n    printf(\"-f <frame rate> \\n\");\n    printf(\"--intra_period <key_frame interval>\\n\");\n    printf(\"--qp <quantization parameter> \\n\");\n    printf(\"--rcmode <rate control mode> 0: CQP, 1: CBR, 2: VBR\\n\");\n    printf(\"--fb <bitrate> (kbps unit)\\n\");\n    printf(\"--lf_level <loop filter level>  [0-63]\\n\");\n    printf(\"--hrd_win <num>  [1000-8000]\\n\");\n    printf(\"--vbr_max <num> (kbps unit. It should be greater than fb)\\n\");\n    printf(\"--fn_num <num>\\n  how many frames to be encoded\\n\");\n    printf(\"--error_resilient Turn on Error resilient mode\\n\");\n    printf(\"--debug Turn debug info on\\n\");\n    printf(\"--temp_svc <num> Number of temporal layers 2 or 3\\n\");\n    printf(\"--repeat <num> Number of times to repeat the encoding\\n\");\n}\n\nvoid parameter_check(const char *param, int val, int min, int max)\n{\n    if (val < min || val > max) {\n        fprintf(stderr, \"Error: %s out of range (%d..%d) \\n\", param, min, max);\n        exit(VP8ENC_FAIL);\n    }\n}\n\nvoid parameter_check_positive(const char *param, int val, int min)\n{\n    if (val < 1) {\n        fprintf(stderr, \"Error: %s demands a positive value greater than %d \\n\", param, min);\n        exit(VP8ENC_FAIL);\n    }\n}\n\nint parse_options(int ac, char *av[])\n{\n    int c, long_index, tmp_input;\n    while (1) {\n        c = getopt_long_only(ac, av, \"hf:?\", long_opts, &long_index);\n\n        if (c == -1)\n            break;\n\n        switch (c) {\n        case 'f':\n            tmp_input = atoi(optarg);\n            parameter_check_positive(\"-f\", tmp_input, 1);\n            settings.frame_rate = tmp_input;\n            break;\n        case 1:\n            tmp_input = atoi(optarg);\n            parameter_check(\"--rcmode\", tmp_input, 0, 2);\n            settings.rc_mode = default_rc_modes[tmp_input];\n            break;\n        case 2:\n            tmp_input = atoi(optarg);\n            parameter_check(\"--qp\", tmp_input, 0, 255);\n            settings.quantization_parameter = tmp_input;\n            break;\n        case 3:\n            tmp_input = atoi(optarg);\n            parameter_check_positive(\"--intra_period\", tmp_input, 1);\n            settings.intra_period = tmp_input;\n            break;\n        case 4:\n            tmp_input = atoi(optarg);\n            parameter_check_positive(\"--fb\", tmp_input, 1);\n            settings.frame_bitrate = tmp_input;\n            break;\n        case 5:\n            tmp_input = atoi(optarg);\n            parameter_check(\"--lf_level\", tmp_input, 0, 63);\n            settings.loop_filter_level = tmp_input;\n            break;\n        case 6:\n            tmp_input = atoi(optarg);\n            parameter_check(\"--hrd_win\", tmp_input, 1000, 8000);\n            settings.hrd_window = tmp_input;\n            break;\n        case 7:\n            tmp_input = atoi(optarg);\n            parameter_check_positive(\"--vbr_max\", tmp_input, 1);\n            settings.max_variable_bitrate = tmp_input;\n            break;\n        case 8:\n            tmp_input = atoi(optarg);\n            parameter_check_positive(\"--fn_num\", tmp_input, 1);\n            settings.num_frames = tmp_input;\n            break;\n        case 9:\n            settings.error_resilient = 1;\n            break;\n        case 10:\n            settings.debug = 1;\n            break;\n        case 11:\n            tmp_input = atoi(optarg);\n            parameter_check(\"--temp_svc\", tmp_input, 2, 3);\n            settings.temporal_svc_layers = tmp_input;\n            break;\n        case 12:\n            tmp_input = atoi(optarg);\n            parameter_check(\"--repeat\", tmp_input, 1, 1000000);\n            settings.repeat_times = tmp_input;\n            break;\n        case 'h':\n        case 0:\n        default:\n            return PARSE_OPTIONS_FAIL;\n            break;\n        }\n    }\n    return PARSE_OPTIONS_OK;\n}\n\nint main(int argc, char *argv[])\n{\n    int current_frame, frame_type;\n    FILE *fp_vp8_output = NULL;\n    FILE *fp_yuv_input = NULL;\n    uint64_t timestamp;\n    struct timeval t1, t2;\n    double fps, elapsed_time;\n\n\n    if (argc < 5) {\n        vp8enc_show_help();\n        return VP8ENC_FAIL;\n    }\n\n    if (parse_options(argc - 4, &argv[4]) != PARSE_OPTIONS_OK) {\n        vp8enc_show_help();\n        return VP8ENC_FAIL;\n    }\n\n    settings.width = atoi(argv[1]);\n    parameter_check(\"Width\", settings.width, 16, MAX_XY_RESOLUTION);\n\n    settings.height = atoi(argv[2]);\n    parameter_check(\"Height\", settings.height, 16, MAX_XY_RESOLUTION);\n\n    if (settings.rc_mode == VA_RC_VBR && settings.max_variable_bitrate < settings.frame_bitrate) {\n        fprintf(stderr, \"Error: max. variable bitrate should be greater than frame bitrate (--vbr_max >= --fb)\\n\");\n        return VP8ENC_FAIL;\n    }\n\n    if (argv[3]) {\n        fp_yuv_input = fopen(argv[3], \"rb\");\n    }\n    if (fp_yuv_input == NULL) {\n        fprintf(stderr, \"Error: Couldn't open input file.\\n\");\n        return VP8ENC_FAIL;\n    }\n    vaapi_context.upload_thread.input_fp = fp_yuv_input;\n\n    fp_vp8_output = fopen(argv[4], \"wb\");\n    if (fp_vp8_output == NULL) {\n        fprintf(stderr, \"Error: Couldn't open output file.\\n\");\n        return VP8ENC_FAIL;\n    }\n\n    if (settings.temporal_svc_layers == 2 && settings.intra_period % 2)\n        fprintf(stderr, \"Warning: Choose Key-Frame interval (--intra_period) to be integer mutliply of 2 to match temporal layer pattern\");\n\n    if (settings.temporal_svc_layers == 3 && settings.intra_period % 4)\n        fprintf(stderr, \"Warning: Choose Key-Frame interval (--intra_period) to be integer mutliply of 4 to match temporal layer pattern\");\n\n\n    settings.frame_size = settings.width * settings.height * 3 / 2; //NV12 Colorspace - For a 2x2 group of pixels, you have 4 Y samples and 1 U and 1 V sample.\n    if (!settings.num_frames)\n        settings.num_frames = vp8enc_get_FileSize(fp_yuv_input) / (size_t)settings.frame_size;\n    settings.codedbuf_size = settings.width * settings.height; //just a generous assumptions\n\n    fprintf(stderr, \"Info: Encoding total of %d frames.\\n\", settings.num_frames);\n\n    gettimeofday(&t1, 0); //Measure Runtime\n\n    vp8enc_init_VaapiContext();\n    vp8enc_create_EncoderPipe();\n\n    vp8enc_write_ivf_header(fp_vp8_output);\n\n    current_frame = 0;\n    timestamp = 0;\n    vaapi_context.input_surface = vaapi_context.surfaces[SID_INPUT_PICTURE_0];\n    vaapi_context.upload_thread.input_surface_num = SID_INPUT_PICTURE_0;\n\n    while (current_frame < settings.num_frames * settings.repeat_times) {\n        fprintf(stderr, \"\\rProcessing frame: %d\", current_frame);\n\n        if ((current_frame % settings.intra_period) == 0)\n            frame_type = KEY_FRAME;\n        else\n            frame_type = INTER_FRAME;\n\n        if (current_frame == 0) {\n            // Preload first input_surface\n            vp8enc_upload_yuv_to_surface(fp_yuv_input, vaapi_context.input_surface, current_frame); //prefill\n        } else {\n            // wait for input processing thread to finish\n            pthread_join(vaapi_context.upload_thread.id, NULL);\n            vaapi_context.input_surface = vaapi_context.upload_thread.input_surface;\n        }\n\n        // Start Upload thread\n        if ((current_frame + 1) < settings.num_frames * settings.repeat_times) {\n            vaapi_context.upload_thread.processed_frame = (current_frame % settings.num_frames - 1) + 1;\n\n            if (vaapi_context.upload_thread.input_surface_num == SID_INPUT_PICTURE_0)\n                vaapi_context.upload_thread.input_surface_num = SID_INPUT_PICTURE_1;\n            else\n                vaapi_context.upload_thread.input_surface_num = SID_INPUT_PICTURE_0;\n\n            vaapi_context.upload_thread.input_surface = vaapi_context.surfaces[vaapi_context.upload_thread.input_surface_num];\n            vaapi_context.upload_thread.value = pthread_create(&vaapi_context.upload_thread.id, NULL, vp8enc_upload_thread_function, NULL);\n        }\n\n\n        vp8enc_update_picture_parameter(frame_type, current_frame);\n        vp8enc_prepare_buffers(frame_type);\n\n        vp8enc_render_picture();\n\n        vp8enc_store_coded_buffer(fp_vp8_output, timestamp);\n        vp8enc_destroy_buffers();\n\n        vp8enc_update_reference_list(frame_type);\n\n        current_frame ++;\n        timestamp ++;\n    }\n\n    vp8enc_destory_EncoderPipe();\n    fclose(fp_vp8_output);\n    fclose(fp_yuv_input);\n\n    gettimeofday(&t2, 0);\n    elapsed_time = (double)(t2.tv_sec - t1.tv_sec) + (double)(t2.tv_usec - t1.tv_usec) / 1000000.0;\n    fps = (double)current_frame / elapsed_time;\n\n    fprintf(stderr, \"\\nProcessed %d frames in %.0f ms (%.2f FPS)\\n\", current_frame, elapsed_time * 1000.0, fps);\n\n    return VP8ENC_OK;\n}\n"
  },
  {
    "path": "encode/vp9enc.c",
    "content": "/*\n * Copyright (c) 2017 Intel Corporation. All Rights Reserved.\n *\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the\n * \"Software\"), to deal in the Software without restriction, including\n * without limitation the rights to use, copy, modify, merge, publish,\n * distribute, sub license, and/or sell copies of the Software, and to\n * permit persons to whom the Software is furnished to do so, subject to\n * the following conditions:\n *\n * The above copyright notice and this permission notice (including the\n * next paragraph) shall be included in all copies or substantial portions\n * of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR\n * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n/*\n * This file has some codes for vp9 bitstream built, and\n * they are ported from libvpx (https://github.com/webmproject/libvpx/).\n * The original copyright and licence statement as below.\n */\n\n/*\n *  Copyright (c) 2010 The WebM project authors. All Rights Reserved.\n *\n *  Use of this source code is governed by a BSD-style license\n *  that can be found in the LICENSE file in the root of the source\n *  tree. An additional intellectual property rights grant can be found\n *  in the file PATENTS.  All contributing project authors may\n *  be found in the AUTHORS file in the root of the source tree.\n */\n\n#include <stdbool.h>\n#include <stdio.h>\n#include <string.h>\n#include <stdlib.h>\n#include <getopt.h>\n#include <unistd.h>\n\n#include <sys/time.h>\n#include <sys/types.h>\n#include <sys/stat.h>\n#include <fcntl.h>\n#include <assert.h>\n#include <time.h>\n#include <stdlib.h>\n#include <pthread.h>\n\n#include <va/va.h>\n#include <va/va_enc_vp9.h>\n#include \"va_display.h\"\n\n#define KEY_FRAME               0\n#define INTER_FRAME             1\n\n#define CHECK_VASTATUS(va_status,func)                                  \\\n    if (va_status != VA_STATUS_SUCCESS) {                               \\\n        fprintf(stderr,\"%s:%s (%d) failed,exit\\n\", __func__, func, __LINE__); \\\n        exit(1);                                                        \\\n    }\n\n#define CHECK_CONDITION(cond)                                                \\\n    if(!(cond))                                                              \\\n    {                                                                        \\\n        fprintf(stderr, \"Unexpected condition: %s:%d\\n\", __func__, __LINE__); \\\n        exit(1);                                                             \\\n    }\n\nstatic VADisplay va_dpy;\n\nstatic int rc_mode;\n\nstatic int picture_width;\nstatic int picture_height;\nstatic int frame_size;\nstatic uint8_t *newImageBuffer = 0;\n\nstatic int hrd_window = 1500;\n\nstatic int vbr_max;\n\nstatic int qp_value = 60;\n\nstatic int intra_period = 30;\nstatic int frame_bit_rate = -1;\nstatic int frame_rate = 30;\n\nstatic int lf_level = 10;\nstatic int opt_header = 0;\n\nstatic int current_slot;\n\nstatic int frame_number;\nstatic int current_frame_type;\n\nstatic  VASurfaceID vp9_ref_list[8];\n\n#define SURFACE_NUM                             8\n#define SID_INPUT_PICTURE_0                     0\n#define SID_INPUT_PICTURE_1                     1\n#define SID_REFERENCE_PICTURE_L0                2\n#define SID_REFERENCE_PICTURE_L1                3\n#define SID_NUMBER                              2\n\nstatic  VASurfaceID surface_ids[SID_NUMBER];\nstatic  VASurfaceID ref_surfaces[SURFACE_NUM + SID_NUMBER];\nstatic  int use_slot[SURFACE_NUM];\n\n#ifndef VA_FOURCC_I420\n#define VA_FOURCC_I420          0x30323449\n#endif\n\nstatic int rc_default_mode[4] = {\n    VA_RC_CQP,\n    VA_RC_CBR,\n    VA_RC_VBR,\n    VA_RC_NONE\n};\n\nstatic int vp9enc_entrypoint_lists[2] = {\n    VAEntrypointEncSlice,\n    VAEntrypointEncSliceLP\n};\n\nstatic int select_entrypoint = -1;\n\nstatic const struct option long_opts[] = {\n    {\"help\", no_argument, NULL, 0 },\n    {\"rcmode\", required_argument, NULL, 1 },\n    {\"qp\", required_argument, NULL, 2 },\n    {\"intra_period\", required_argument, NULL, 3 },\n    {\"fb\", required_argument, NULL, 4 },\n    {\"lf_level\", required_argument, NULL, 6 },\n    {\"opt_header\", required_argument, NULL, 7},\n    {\"hrd_win\", required_argument, NULL, 8},\n    {\"vbr_max\", required_argument, NULL, 9},\n    {\"fn_num\", required_argument, NULL, 10},\n    {\"low_power\", required_argument, NULL, 11},\n    {NULL, no_argument, NULL, 0 }\n};\n\nstruct vp9enc_bit_buffer {\n    uint8_t *bit_buffer;\n    int bit_offset;\n};\n\nstruct upload_thread_param {\n    FILE *yuv_fp;\n    VASurfaceID surface_id;\n};\n\nstruct vp9encode_context {\n    VAProfile profile;\n    VAEncSequenceParameterBufferVP9 seq_param;\n    VAEncPictureParameterBufferVP9 pic_param;\n    VAContextID context_id;\n    VAConfigID config_id;\n    VABufferID seq_param_buf_id;                /* Sequence level parameter */\n    VABufferID pic_param_buf_id;                /* Picture level parameter */\n    VABufferID codedbuf_buf_id;                 /* Output buffer, compressed data */\n    VABufferID misc_parameter_hrd_buf_id;\n    /* for VAEncMiscParameterTypeVP9PerSegmantParam. VAQMatrixBufferType */\n    VABufferID qmatrix_buf_id;\n    /* the buffer for VP9 super block. VAEncMacroblockMapBufferType */\n    VABufferID mb_seg_buf_id;\n    VABufferID raw_data_header_buf_id;\n    VABufferID raw_data_buf_id;\n    VABufferID misc_fr_buf_id;\n    VABufferID misc_rc_buf_id;\n\n    int codedbuf_i_size;\n    int codedbuf_pb_size;\n    int current_input_surface;\n    int rate_control_method;\n\n    struct upload_thread_param upload_thread_param;\n    pthread_t upload_thread_id;\n    int upload_thread_value;\n};\n\nstatic struct vp9encode_context vp9enc_context;\n\nstatic void\nvp9enc_write_word(char *ptr, uint32_t value)\n{\n    uint8_t *tmp;\n\n    tmp = (uint8_t *)ptr;\n    *(tmp) = (value >> 0) & 0XFF;\n    *(tmp + 1) = (value >> 8) & 0XFF;\n}\n\nstatic void\nvp9enc_write_dword(char *ptr, uint32_t value)\n{\n    uint8_t *tmp;\n\n    tmp = (uint8_t *)ptr;\n    *(tmp) = (value >> 0) & 0XFF;\n    *(tmp + 1) = (value >> 8) & 0XFF;\n    *(tmp + 2) = (value >> 16) & 0XFF;\n    *(tmp + 3) = (value >> 24) & 0XFF;\n}\n\nstatic void\nvp9enc_wb_write_bit(struct vp9enc_bit_buffer *wb, int bit)\n{\n    const int off = wb->bit_offset;\n    const int p = off / 8;\n    const int q = 7 - off % 8;\n\n    if (q == 7) {\n        wb->bit_buffer[p] = bit << q;\n    } else {\n        wb->bit_buffer[p] &= ~(1 << q);\n        wb->bit_buffer[p] |= bit << q;\n    }\n    wb->bit_offset = off + 1;\n}\n\nstatic void\nvp9enc_wb_write_literal(struct vp9enc_bit_buffer *wb, int data, int bits)\n{\n    int bit;\n\n    for (bit = bits - 1; bit >= 0; bit--)\n        vp9enc_wb_write_bit(wb, (data >> bit) & 1);\n}\n\nstatic void\nvp9enc_write_bitdepth_colorspace_sampling(int codec_profile,\n        struct vp9enc_bit_buffer *wb)\n{\n    if (codec_profile >= 2) {\n        /* the bit-depth will be added for VP9Profile2/3 */\n        /* this will be added later */\n        assert(0);\n    }\n\n    /* Add the default color-space */\n    vp9enc_wb_write_literal(wb, 0, 3);\n    vp9enc_wb_write_bit(wb, 0);  // 0: [16, 235] (i.e. xvYCC), 1: [0, 255]\n\n    /* the sampling_x/y will be added for VP9Profile1/2/3 later */\n}\n\n#define    MAX_TILE_WIDTH_B64    64\n#define    MIN_TILE_WIDTH_B64    4\n\nstatic int\nvp9enc_get_min_log2_tile_cols(const int sb_cols)\n{\n    int min_log2 = 0;\n\n    while ((MAX_TILE_WIDTH_B64 << min_log2) < sb_cols)\n        ++min_log2;\n\n    return min_log2;\n}\n\nstatic int\nvp9enc_get_max_log2_tile_cols(const int sb_cols)\n{\n    int max_log2 = 1;\n\n    while ((sb_cols >> max_log2) >= MIN_TILE_WIDTH_B64)\n        ++max_log2;\n\n    return max_log2 - 1;\n}\n\nstatic void\nvp9enc_write_uncompressed_header(struct vp9encode_context *enc_context,\n                                 char *header_data,\n                                 int *header_length)\n{\n#define    VP9_SYNC_CODE_0    0x49\n#define    VP9_SYNC_CODE_1    0x83\n#define    VP9_SYNC_CODE_2    0x42\n\n#define    VP9_FRAME_MARKER   0x2\n\n#define    REFS_PER_FRAME     3\n\n#define    REF_FRAMES_LOG2    3\n#define    REF_FRAMES         (1 << REF_FRAMES_LOG2)\n\n#define    VP9_KEY_FRAME      0\n\n    VAEncPictureParameterBufferVP9 *pic_param;\n    struct vp9enc_bit_buffer *wb, vp9_wb;\n\n    if (!header_data || !header_length)\n        return;\n\n    pic_param = &enc_context->pic_param;\n\n    vp9_wb.bit_buffer = (uint8_t *)header_data;\n    vp9_wb.bit_offset = 0;\n    wb = &vp9_wb;\n    vp9enc_wb_write_literal(wb, VP9_FRAME_MARKER, 2);\n\n    vp9enc_wb_write_literal(wb, 0, 2);\n\n    vp9enc_wb_write_bit(wb, 0);  // show_existing_frame\n    vp9enc_wb_write_bit(wb, pic_param->pic_flags.bits.frame_type);\n    vp9enc_wb_write_bit(wb, pic_param->pic_flags.bits.show_frame);\n    vp9enc_wb_write_bit(wb, pic_param->pic_flags.bits.error_resilient_mode);\n\n    if (pic_param->pic_flags.bits.frame_type == VP9_KEY_FRAME) {\n        vp9enc_wb_write_literal(wb, VP9_SYNC_CODE_0, 8);\n        vp9enc_wb_write_literal(wb, VP9_SYNC_CODE_1, 8);\n        vp9enc_wb_write_literal(wb, VP9_SYNC_CODE_2, 8);\n\n        vp9enc_write_bitdepth_colorspace_sampling(0, wb);\n\n        /* write the encoded frame size */\n        vp9enc_wb_write_literal(wb, pic_param->frame_width_dst - 1, 16);\n        vp9enc_wb_write_literal(wb, pic_param->frame_height_dst - 1, 16);\n        /* write display size */\n        if ((pic_param->frame_width_dst != pic_param->frame_width_src) ||\n            (pic_param->frame_height_dst != pic_param->frame_height_src)) {\n            vp9enc_wb_write_bit(wb, 1);\n            vp9enc_wb_write_literal(wb, pic_param->frame_width_src - 1, 16);\n            vp9enc_wb_write_literal(wb, pic_param->frame_height_src - 1, 16);\n        } else\n            vp9enc_wb_write_bit(wb, 0);\n    } else {\n        /* for the non-Key frame */\n        if (!pic_param->pic_flags.bits.show_frame)\n            vp9enc_wb_write_bit(wb, pic_param->pic_flags.bits.intra_only);\n\n        if (!pic_param->pic_flags.bits.error_resilient_mode)\n            vp9enc_wb_write_literal(wb, pic_param->pic_flags.bits.reset_frame_context, 2);\n\n        if (pic_param->pic_flags.bits.intra_only) {\n            vp9enc_wb_write_literal(wb, VP9_SYNC_CODE_0, 8);\n            vp9enc_wb_write_literal(wb, VP9_SYNC_CODE_1, 8);\n            vp9enc_wb_write_literal(wb, VP9_SYNC_CODE_2, 8);\n\n            /* Add the bit_depth for VP9Profile1/2/3 */\n            /* write the refreshed_frame_flags */\n            vp9enc_wb_write_literal(wb, pic_param->refresh_frame_flags, REF_FRAMES);\n            /* write the encoded frame size */\n            vp9enc_wb_write_literal(wb, pic_param->frame_width_dst - 1, 16);\n            vp9enc_wb_write_literal(wb, pic_param->frame_height_dst - 1, 16);\n            /* write display size */\n            if ((pic_param->frame_width_dst != pic_param->frame_width_src) ||\n                (pic_param->frame_height_dst != pic_param->frame_height_src)) {\n                vp9enc_wb_write_bit(wb, 1);\n                vp9enc_wb_write_literal(wb, pic_param->frame_width_src - 1, 16);\n                vp9enc_wb_write_literal(wb, pic_param->frame_height_src - 1, 16);\n            } else\n                vp9enc_wb_write_bit(wb, 0);\n\n        } else {\n            /* The refresh_frame_map is  for the next frame so that it can select Last/Godlen/Alt ref_index */\n            vp9enc_wb_write_literal(wb, pic_param->refresh_frame_flags, REF_FRAMES);\n\n            vp9enc_wb_write_literal(wb, pic_param->ref_flags.bits.ref_last_idx, REF_FRAMES_LOG2);\n            vp9enc_wb_write_bit(wb, pic_param->ref_flags.bits.ref_last_sign_bias);\n            vp9enc_wb_write_literal(wb, pic_param->ref_flags.bits.ref_gf_idx, REF_FRAMES_LOG2);\n            vp9enc_wb_write_bit(wb, pic_param->ref_flags.bits.ref_gf_sign_bias);\n            vp9enc_wb_write_literal(wb, pic_param->ref_flags.bits.ref_arf_idx, REF_FRAMES_LOG2);\n            vp9enc_wb_write_bit(wb, pic_param->ref_flags.bits.ref_arf_sign_bias);\n\n            /* write three bits with zero so that it can parse width/height directly */\n            vp9enc_wb_write_literal(wb, 0, 3);\n            vp9enc_wb_write_literal(wb, pic_param->frame_width_dst - 1, 16);\n            vp9enc_wb_write_literal(wb, pic_param->frame_height_dst - 1, 16);\n\n            /* write display size */\n            if ((pic_param->frame_width_dst != pic_param->frame_width_src) ||\n                (pic_param->frame_height_dst != pic_param->frame_height_src)) {\n\n                vp9enc_wb_write_bit(wb, 1);\n                vp9enc_wb_write_literal(wb, pic_param->frame_width_src - 1, 16);\n                vp9enc_wb_write_literal(wb, pic_param->frame_height_src - 1, 16);\n            } else\n                vp9enc_wb_write_bit(wb, 0);\n\n            vp9enc_wb_write_bit(wb, pic_param->pic_flags.bits.allow_high_precision_mv);\n\n#define    SWITCHABLE_FILTER    4\n#define    FILTER_MASK          3\n\n            if (pic_param->pic_flags.bits.mcomp_filter_type == SWITCHABLE_FILTER)\n                vp9enc_wb_write_bit(wb, 1);\n            else {\n                const int filter_to_literal[4] = { 1, 0, 2, 3 };\n                uint8_t filter_flag = pic_param->pic_flags.bits.mcomp_filter_type;\n                filter_flag = filter_flag & FILTER_MASK;\n                vp9enc_wb_write_bit(wb, 0);\n                vp9enc_wb_write_literal(wb, filter_to_literal[filter_flag], 2);\n            }\n        }\n    }\n\n    /* write refresh_frame_context/paralle frame_decoding */\n    if (!pic_param->pic_flags.bits.error_resilient_mode) {\n        vp9enc_wb_write_bit(wb, pic_param->pic_flags.bits.refresh_frame_context);\n        vp9enc_wb_write_bit(wb, pic_param->pic_flags.bits.frame_parallel_decoding_mode);\n    }\n\n    vp9enc_wb_write_literal(wb, pic_param->pic_flags.bits.frame_context_idx, 2);\n\n    /* write loop filter */\n    pic_param->bit_offset_lf_level = wb->bit_offset;\n    vp9enc_wb_write_literal(wb, pic_param->filter_level, 6);\n    vp9enc_wb_write_literal(wb, pic_param->sharpness_level, 3);\n\n    {\n        int i, mode_flag;\n\n        vp9enc_wb_write_bit(wb, 1);\n        vp9enc_wb_write_bit(wb, 1);\n        pic_param->bit_offset_ref_lf_delta = wb->bit_offset;\n        for (i = 0; i < 4; i++) {\n            /*\n             * This check is skipped to prepare the bit_offset_lf_ref\n            if (pic_param->ref_lf_delta[i] == 0) {\n                vp9enc_wb_write_bit(wb, 0);\n                continue;\n            }\n             */\n\n            vp9enc_wb_write_bit(wb, 1);\n            mode_flag = pic_param->ref_lf_delta[i];\n            if (mode_flag >= 0) {\n                vp9enc_wb_write_literal(wb, mode_flag & (0x3F), 6);\n                vp9enc_wb_write_bit(wb, 0);\n            } else {\n                mode_flag = -mode_flag;\n                vp9enc_wb_write_literal(wb, mode_flag & (0x3F), 6);\n                vp9enc_wb_write_bit(wb, 1);\n            }\n        }\n\n        pic_param->bit_offset_mode_lf_delta = wb->bit_offset;\n        for (i = 0; i < 2; i++) {\n            /*\n             * This check is skipped to prepare the bit_offset_lf_ref\n            if (pic_param->mode_lf_delta[i] == 0) {\n                vp9enc_wb_write_bit(wb, 0);\n                continue;\n            }\n             */\n            vp9enc_wb_write_bit(wb, 1);\n            mode_flag = pic_param->mode_lf_delta[i];\n            if (mode_flag >= 0) {\n                vp9enc_wb_write_literal(wb, mode_flag & (0x3F), 6);\n                vp9enc_wb_write_bit(wb, 0);\n            } else {\n                mode_flag = -mode_flag;\n                vp9enc_wb_write_literal(wb, mode_flag & (0x3F), 6);\n                vp9enc_wb_write_bit(wb, 1);\n            }\n        }\n    }\n\n    /* write basic quantizer */\n    pic_param->bit_offset_qindex = wb->bit_offset;\n    vp9enc_wb_write_literal(wb, pic_param->luma_ac_qindex, 8);\n    if (pic_param->luma_dc_qindex_delta) {\n        int delta_q = pic_param->luma_dc_qindex_delta;\n        vp9enc_wb_write_bit(wb, 1);\n        vp9enc_wb_write_literal(wb, abs(delta_q), 4);\n        vp9enc_wb_write_bit(wb, delta_q < 0);\n    } else\n        vp9enc_wb_write_bit(wb, 0);\n\n    if (pic_param->chroma_dc_qindex_delta) {\n        int delta_q = pic_param->chroma_dc_qindex_delta;\n        vp9enc_wb_write_bit(wb, 1);\n        vp9enc_wb_write_literal(wb, abs(delta_q), 4);\n        vp9enc_wb_write_bit(wb, delta_q < 0);\n    } else\n        vp9enc_wb_write_bit(wb, 0);\n\n    if (pic_param->chroma_ac_qindex_delta) {\n        int delta_q = pic_param->chroma_ac_qindex_delta;\n        vp9enc_wb_write_bit(wb, 1);\n        vp9enc_wb_write_literal(wb, abs(delta_q), 4);\n        vp9enc_wb_write_bit(wb, delta_q < 0);\n    } else\n        vp9enc_wb_write_bit(wb, 0);\n\n    /* segment is not enabled */\n    //vp9enc_wb_write_bit(wb, pic_param->pic_flags.bits.segmentation_enabled);\n    vp9enc_wb_write_bit(wb, 0);\n\n    {\n        int sb_cols = (pic_param->frame_width_dst + 63) / 64;\n        int min_log2_tile_cols, max_log2_tile_cols;\n        int col_data;\n\n        /* write tile column info */\n        min_log2_tile_cols = vp9enc_get_min_log2_tile_cols(sb_cols);\n        max_log2_tile_cols = vp9enc_get_max_log2_tile_cols(sb_cols);\n\n        col_data = pic_param->log2_tile_columns - min_log2_tile_cols;\n        while (col_data--) {\n            vp9enc_wb_write_bit(wb, 1);\n        }\n        if (pic_param->log2_tile_columns < max_log2_tile_cols)\n            vp9enc_wb_write_bit(wb, 0);\n\n        /* write tile row info */\n        vp9enc_wb_write_bit(wb, pic_param->log2_tile_rows);\n        if (pic_param->log2_tile_rows)\n            vp9enc_wb_write_bit(wb, (pic_param->log2_tile_rows != 1));\n    }\n\n    /* get the bit_offset of the first partition size */\n    pic_param->bit_offset_first_partition_size = wb->bit_offset;\n\n    /* reserve the space for writing the first partitions ize */\n    vp9enc_wb_write_literal(wb, 0, 16);\n\n    *header_length = (wb->bit_offset + 7) / 8;\n}\n\nstatic void\nvp9enc_upload_yuv_to_surface(FILE *yuv_fp, VASurfaceID surface_id)\n{\n    VAImage surface_image;\n    VAStatus va_status;\n    void *surface_p = NULL;\n    uint8_t *y_src, *u_src, *v_src;\n    uint8_t *y_dst, *u_dst, *v_dst;\n    int y_size = picture_width * picture_height;\n    int u_size = (picture_width >> 1) * (picture_height >> 1);\n    int row, col;\n    size_t n_items;\n\n    do {\n        n_items = fread(newImageBuffer, frame_size, 1, yuv_fp);\n    } while (n_items != 1);\n\n    va_status = vaDeriveImage(va_dpy, surface_id, &surface_image);\n    CHECK_VASTATUS(va_status, \"vaDeriveImage\");\n\n    vaMapBuffer(va_dpy, surface_image.buf, &surface_p);\n    assert(VA_STATUS_SUCCESS == va_status);\n\n    y_src = newImageBuffer;\n    u_src = newImageBuffer + y_size; /* UV offset for NV12 */\n    v_src = newImageBuffer + y_size + u_size;\n\n    y_dst = (unsigned char *)surface_p + surface_image.offsets[0];\n    u_dst = (unsigned char *)surface_p +\n            surface_image.offsets[1]; /* UV offset for NV12 */\n    v_dst = (unsigned char *)surface_p + surface_image.offsets[2];\n\n    /* Y plane */\n    for (row = 0; row < surface_image.height; row++) {\n        memcpy(y_dst, y_src, surface_image.width);\n        y_dst += surface_image.pitches[0];\n        y_src += picture_width;\n    }\n\n    if (surface_image.format.fourcc == VA_FOURCC_NV12) { /* UV plane */\n        for (row = 0; row < surface_image.height / 2; row++) {\n            for (col = 0; col < surface_image.width / 2; col++) {\n                u_dst[col * 2] = u_src[col];\n                u_dst[col * 2 + 1] = v_src[col];\n            }\n\n            u_dst += surface_image.pitches[1];\n            u_src += (picture_width / 2);\n            v_src += (picture_width / 2);\n        }\n    } else if (surface_image.format.fourcc == VA_FOURCC_YV12 ||\n               surface_image.format.fourcc == VA_FOURCC_I420) {\n        const int U = surface_image.format.fourcc == VA_FOURCC_I420 ? 1 : 2;\n        const int V = surface_image.format.fourcc == VA_FOURCC_I420 ? 2 : 1;\n\n        u_dst = (unsigned char *)surface_p + surface_image.offsets[U];\n        v_dst = (unsigned char *)surface_p + surface_image.offsets[V];\n\n        for (row = 0; row < surface_image.height / 2; row++) {\n            memcpy(u_dst, u_src, surface_image.width / 2);\n            memcpy(v_dst, v_src, surface_image.width / 2);\n            u_dst += surface_image.pitches[U];\n            v_dst += surface_image.pitches[V];\n            u_src += (picture_width / 2);\n            v_src += (picture_width / 2);\n        }\n    }\n\n    vaUnmapBuffer(va_dpy, surface_image.buf);\n    vaDestroyImage(va_dpy, surface_image.image_id);\n}\n\nstatic void *\nvp9enc_upload_thread_function(void *data)\n{\n    struct upload_thread_param *param = data;\n\n    vp9enc_upload_yuv_to_surface(param->yuv_fp, param->surface_id);\n\n    return NULL;\n}\n\nstatic void\nvp9enc_alloc_encode_resource(FILE *yuv_fp)\n{\n    VAStatus va_status;\n    VASurfaceAttrib attrib;\n    int i;\n\n    attrib.type = VASurfaceAttribPixelFormat;\n    attrib.flags = VA_SURFACE_ATTRIB_SETTABLE;\n    attrib.value.type = VAGenericValueTypeInteger;\n    attrib.value.value.i = VA_FOURCC_NV12;\n\n    // Create surface\n    va_status = vaCreateSurfaces(\n                    va_dpy,\n                    VA_RT_FORMAT_YUV420, picture_width, picture_height,\n                    surface_ids, SID_NUMBER,\n                    &attrib, 1\n                );\n\n    CHECK_VASTATUS(va_status, \"vaCreateSurfaces\");\n\n    // Create surface\n    va_status = vaCreateSurfaces(\n                    va_dpy,\n                    VA_RT_FORMAT_YUV420, picture_width, picture_height,\n                    ref_surfaces, SURFACE_NUM,\n                    &attrib, 1\n                );\n\n    for (i = 0; i < SID_NUMBER; i++)\n        ref_surfaces[i + SURFACE_NUM] = surface_ids[i];\n\n    CHECK_VASTATUS(va_status, \"vaCreateSurfaces\");\n\n    newImageBuffer = (uint8_t *)malloc(frame_size);\n\n    /* firstly upload YUV data to SID_INPUT_PICTURE_0 */\n    vp9enc_context.upload_thread_param.yuv_fp = yuv_fp;\n    vp9enc_context.upload_thread_param.surface_id = surface_ids[SID_INPUT_PICTURE_0];\n\n    vp9enc_context.upload_thread_value = pthread_create(&vp9enc_context.upload_thread_id,\n                                         NULL,\n                                         vp9enc_upload_thread_function,\n                                         (void*)&vp9enc_context.upload_thread_param);\n}\n\nstatic void\nvp9enc_create_encode_pipe(FILE *yuv_fp)\n{\n    VAEntrypoint entrypoints[5];\n    int num_entrypoints, slice_entrypoint;\n    VAConfigAttrib attrib[2];\n    int major_ver, minor_ver;\n    VAStatus va_status;\n    int i;\n\n    va_dpy = va_open_display();\n    va_status = vaInitialize(va_dpy, &major_ver, &minor_ver);\n    CHECK_VASTATUS(va_status, \"vaInitialize\");\n\n    vaQueryConfigEntrypoints(va_dpy, vp9enc_context.profile, entrypoints,\n                             &num_entrypoints);\n\n    for (slice_entrypoint = 0; slice_entrypoint < num_entrypoints; slice_entrypoint++) {\n        if (select_entrypoint == -1) {\n            for (i = 0; i < 2; i++) {\n                if (entrypoints[slice_entrypoint] == vp9enc_entrypoint_lists[i])\n                    break;\n            }\n\n            if (i < 2) {\n                select_entrypoint = i;\n                break;\n            }\n        } else {\n            assert(select_entrypoint == 0 || select_entrypoint == 1);\n\n            if (entrypoints[slice_entrypoint] == vp9enc_entrypoint_lists[select_entrypoint])\n                break;\n        }\n    }\n\n    if (slice_entrypoint == num_entrypoints) {\n        /* not find Slice entry point */\n        assert(0);\n    }\n\n    /* find out the format for the render target, and rate control mode */\n    attrib[0].type = VAConfigAttribRTFormat;\n    attrib[1].type = VAConfigAttribRateControl;\n    vaGetConfigAttributes(va_dpy, vp9enc_context.profile, vp9enc_entrypoint_lists[select_entrypoint],\n                          &attrib[0], 2);\n\n    if ((attrib[0].value & VA_RT_FORMAT_YUV420) == 0) {\n        /* not find desired YUV420 RT format */\n        assert(0);\n    }\n\n    if ((attrib[1].value & vp9enc_context.rate_control_method) == 0) {\n        /* Can't find matched RC mode */\n        printf(\"Can't find the desired RC mode, exit\\n\");\n        assert(0);\n    }\n\n    attrib[0].value = VA_RT_FORMAT_YUV420; /* set to desired RT format */\n    attrib[1].value = vp9enc_context.rate_control_method; /* set to desired RC mode */\n\n    va_status = vaCreateConfig(va_dpy, vp9enc_context.profile, vp9enc_entrypoint_lists[select_entrypoint],\n                               &attrib[0], 2, &vp9enc_context.config_id);\n    CHECK_VASTATUS(va_status, \"vaCreateConfig\");\n\n    vp9enc_alloc_encode_resource(yuv_fp);\n\n    /* Create a context for this decode pipe */\n    /* the surface is added to the render_target list when creating the context */\n    va_status = vaCreateContext(va_dpy, vp9enc_context.config_id,\n                                picture_width, picture_height,\n                                VA_PROGRESSIVE,\n                                ref_surfaces, SURFACE_NUM + 2,\n                                &vp9enc_context.context_id);\n    CHECK_VASTATUS(va_status, \"vaCreateContext\");\n}\n\nstatic void\nvp9enc_destory_encode_pipe()\n{\n    vaDestroyContext(va_dpy, vp9enc_context.context_id);\n    vaDestroyConfig(va_dpy, vp9enc_context.config_id);\n    vaTerminate(va_dpy);\n    va_close_display(va_dpy);\n}\n\nstatic void\nvp9enc_release_encode_resource()\n{\n    pthread_join(vp9enc_context.upload_thread_id, NULL);\n    free(newImageBuffer);\n\n    vaDestroySurfaces(va_dpy, surface_ids, SID_NUMBER);\n    vaDestroySurfaces(va_dpy, ref_surfaces, SURFACE_NUM);\n}\n\nstatic int\nvp9enc_get_free_slot()\n{\n    int i, index = -1;\n\n    for (i = 0; i < SURFACE_NUM; i++) {\n        if (use_slot[i] == 0) {\n            index = i;\n            break;\n        }\n    }\n\n    if (index < 0) {\n        printf(\"WARNING: No free slot to store the reconstructed frame \\n\");\n        index = SURFACE_NUM - 1;\n    }\n\n    return index;\n}\n\nstatic void\nvp9enc_update_reference_list(void)\n{\n    VASurfaceID last_surf;\n    int last_slot;\n    int i;\n\n    /* Todo: Add the full support of reference frames */\n\n    if (current_frame_type == KEY_FRAME) {\n        memset(use_slot, 0, sizeof(use_slot));\n        use_slot[current_slot] = 1;\n        for (i = 0; i < SURFACE_NUM; i++)\n            vp9_ref_list[i] = ref_surfaces[current_slot];\n\n        return;\n    }\n\n    last_slot = -1;\n    use_slot[current_slot] = 1;\n    last_surf = vp9_ref_list[0];\n\n    vp9_ref_list[0] = ref_surfaces[current_slot];\n\n    for (i = 0; i < SURFACE_NUM; i++) {\n        if (ref_surfaces[i] == last_surf) {\n            last_slot = i;\n            break;\n        }\n    }\n\n    if (last_slot != -1) {\n        int used_flag = 0;\n\n        for (i = 1; i < SURFACE_NUM; i++) {\n            if (vp9_ref_list[i] == last_surf) {\n                used_flag = 1;\n                break;\n            }\n        }\n\n        if (!used_flag)\n            use_slot[last_slot] = 0;\n    }\n}\n\nstatic void\nvp9enc_update_picture_parameter(int frame_type)\n{\n    VAEncPictureParameterBufferVP9 *pic_param;\n    int recon_index;\n    VASurfaceID current_surface;\n    int ref_num = 0;\n    int i = 0;\n\n    recon_index = vp9enc_get_free_slot();\n    current_slot = recon_index;\n    current_surface = ref_surfaces[recon_index];\n\n    pic_param = &vp9enc_context.pic_param;\n\n    pic_param->reconstructed_frame = current_surface;\n    pic_param->coded_buf = vp9enc_context.codedbuf_buf_id;\n\n    ref_num = sizeof(pic_param->reference_frames) / sizeof(VASurfaceID);\n\n    if (frame_type == KEY_FRAME) {\n        pic_param->pic_flags.bits.frame_type = KEY_FRAME;\n        pic_param->pic_flags.bits.frame_context_idx = 0;\n        pic_param->ref_flags.bits.ref_last_idx = 0;\n        pic_param->ref_flags.bits.ref_gf_idx = 0;\n        pic_param->ref_flags.bits.ref_arf_idx = 0;\n        pic_param->pic_flags.bits.frame_context_idx = 0;\n        pic_param->ref_flags.bits.ref_frame_ctrl_l0 = 0;\n\n        for (i = 0; i < ref_num; i++)\n            pic_param->reference_frames[i] = VA_INVALID_ID;\n    } else {\n        pic_param->refresh_frame_flags = 0x01;\n        pic_param->pic_flags.bits.frame_type = INTER_FRAME;\n        pic_param->ref_flags.bits.ref_frame_ctrl_l0 = 0x7;\n\n        pic_param->ref_flags.bits.ref_last_idx = 0;\n        pic_param->ref_flags.bits.ref_gf_idx = 1;\n        pic_param->ref_flags.bits.ref_arf_idx = 2;\n        pic_param->pic_flags.bits.frame_context_idx = 0;\n\n        memcpy(&pic_param->reference_frames, vp9_ref_list, sizeof(vp9_ref_list));\n    }\n}\n\nstatic void\nvp9enc_create_picture_parameter_buf()\n{\n    VAStatus va_status;\n\n    va_status = vaCreateBuffer(va_dpy,\n                               vp9enc_context.context_id,\n                               VAEncPictureParameterBufferType,\n                               sizeof(vp9enc_context.pic_param), 1,\n                               &vp9enc_context.pic_param,\n                               &vp9enc_context.pic_param_buf_id);\n    CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n}\n\nstatic void\nvp9enc_begin_picture(FILE *yuv_fp, int frame_num, int frame_type)\n{\n    VAStatus va_status;\n\n    if (vp9enc_context.upload_thread_value != 0) {\n        fprintf(stderr, \"FATAL error!!!\\n\");\n        exit(1);\n    }\n\n    pthread_join(vp9enc_context.upload_thread_id, NULL);\n\n    vp9enc_context.upload_thread_value = -1;\n\n    /* sequence parameter set */\n    VAEncSequenceParameterBufferVP9 *seq_param = &vp9enc_context.seq_param;\n    va_status = vaCreateBuffer(va_dpy,\n                               vp9enc_context.context_id,\n                               VAEncSequenceParameterBufferType,\n                               sizeof(*seq_param), 1, seq_param,\n                               &vp9enc_context.seq_param_buf_id);\n    CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n    /* hrd parameter */\n    VAEncMiscParameterBuffer *misc_param;\n    VAEncMiscParameterHRD *misc_hrd_param;\n    va_status = vaCreateBuffer(va_dpy,\n                   vp9enc_context.context_id,\n                   VAEncMiscParameterBufferType,\n                   sizeof(VAEncMiscParameterBuffer) + sizeof(VAEncMiscParameterRateControl),\n                   1,\n                   NULL,\n                   &vp9enc_context.misc_parameter_hrd_buf_id);\n    CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n    vaMapBuffer(va_dpy,\n                vp9enc_context.misc_parameter_hrd_buf_id,\n                (void **)&misc_param);\n\n    misc_param->type = VAEncMiscParameterTypeHRD;\n    misc_hrd_param = (VAEncMiscParameterHRD *)misc_param->data;\n\n    if (frame_bit_rate > 0) {\n        misc_hrd_param->initial_buffer_fullness = frame_bit_rate * hrd_window / 2;\n        misc_hrd_param->buffer_size = frame_bit_rate * hrd_window;\n    } else {\n        misc_hrd_param->initial_buffer_fullness = 0;\n        misc_hrd_param->buffer_size = 0;\n    }\n\n    vaUnmapBuffer(va_dpy, vp9enc_context.misc_parameter_hrd_buf_id);\n\n    VAEncMiscParameterTypeVP9PerSegmantParam seg_param;\n\n    memset(&seg_param, 0, sizeof(seg_param));\n\n    va_status = vaCreateBuffer(va_dpy,\n                               vp9enc_context.context_id,\n                               VAQMatrixBufferType,\n                               sizeof(seg_param), 1, &seg_param,\n                               &vp9enc_context.qmatrix_buf_id);\n    CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n    /* Create the Misc FR/RC buffer under non-CQP mode */\n    if (rc_mode != VA_RC_CQP && frame_type == KEY_FRAME) {\n        VAEncMiscParameterFrameRate *misc_fr;\n        VAEncMiscParameterRateControl *misc_rc;\n\n        va_status = vaCreateBuffer(va_dpy,\n                       vp9enc_context.context_id,\n                       VAEncMiscParameterBufferType,\n                       sizeof(VAEncMiscParameterBuffer) + sizeof(VAEncMiscParameterFrameRate),\n                       1,\n                       NULL,\n                       &vp9enc_context.misc_fr_buf_id);\n        CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n        vaMapBuffer(va_dpy,\n                    vp9enc_context.misc_fr_buf_id,\n                    (void **)&misc_param);\n        misc_param->type = VAEncMiscParameterTypeFrameRate;\n        misc_fr = (VAEncMiscParameterFrameRate *)misc_param->data;\n        misc_fr->framerate = frame_rate;\n        vaUnmapBuffer(va_dpy, vp9enc_context.misc_fr_buf_id);\n\n        va_status = vaCreateBuffer(va_dpy,\n                       vp9enc_context.context_id,\n                       VAEncMiscParameterBufferType,\n                       sizeof(VAEncMiscParameterBuffer) + sizeof(VAEncMiscParameterRateControl),\n                       1,\n                       NULL,\n                       &vp9enc_context.misc_rc_buf_id);\n        CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n        vaMapBuffer(va_dpy,\n                    vp9enc_context.misc_rc_buf_id,\n                    (void **)&misc_param);\n        misc_param->type = VAEncMiscParameterTypeRateControl;\n        misc_rc = (VAEncMiscParameterRateControl *)misc_param->data;\n\n        misc_rc->bits_per_second = frame_bit_rate * 1000;\n        misc_rc->window_size = hrd_window;\n        misc_rc->initial_qp = qp_value;\n        /* The target percentage is only for VBR. It is ignored in CBR */\n        misc_rc->target_percentage = 95;\n        if (rc_mode == VA_RC_VBR) {\n            misc_rc->bits_per_second = vbr_max * 1000;\n            misc_rc->target_percentage = (frame_bit_rate * 100) / vbr_max;\n        }\n        vaUnmapBuffer(va_dpy, vp9enc_context.misc_rc_buf_id);\n    }\n}\n\nstatic void\nvp9enc_render_picture()\n{\n    VAStatus va_status;\n    VABufferID va_buffers[10];\n    uint32_t num_va_buffers = 0;\n\n    va_buffers[num_va_buffers++] = vp9enc_context.seq_param_buf_id;\n    va_buffers[num_va_buffers++] = vp9enc_context.pic_param_buf_id;\n\n    if (vp9enc_context.misc_parameter_hrd_buf_id != VA_INVALID_ID)\n        va_buffers[num_va_buffers++] =  vp9enc_context.misc_parameter_hrd_buf_id;\n\n    if (vp9enc_context.qmatrix_buf_id != VA_INVALID_ID)\n        va_buffers[num_va_buffers++] =  vp9enc_context.qmatrix_buf_id;\n\n    if (vp9enc_context.mb_seg_buf_id != VA_INVALID_ID)\n        va_buffers[num_va_buffers++] =  vp9enc_context.mb_seg_buf_id;\n\n    if (vp9enc_context.raw_data_header_buf_id != VA_INVALID_ID)\n        va_buffers[num_va_buffers++] = vp9enc_context.raw_data_header_buf_id;\n\n    if (vp9enc_context.raw_data_buf_id != VA_INVALID_ID)\n        va_buffers[num_va_buffers++] = vp9enc_context.raw_data_buf_id;\n\n    if (vp9enc_context.misc_fr_buf_id != VA_INVALID_ID)\n        va_buffers[num_va_buffers++] = vp9enc_context.misc_fr_buf_id;\n\n    if (vp9enc_context.misc_rc_buf_id != VA_INVALID_ID)\n        va_buffers[num_va_buffers++] = vp9enc_context.misc_rc_buf_id;\n\n    va_status = vaBeginPicture(va_dpy,\n                               vp9enc_context.context_id,\n                               surface_ids[vp9enc_context.current_input_surface]);\n    CHECK_VASTATUS(va_status, \"vaBeginPicture\");\n\n    va_status = vaRenderPicture(va_dpy,\n                                vp9enc_context.context_id,\n                                va_buffers,\n                                num_va_buffers);\n    CHECK_VASTATUS(va_status, \"vaRenderPicture\");\n\n    va_status = vaEndPicture(va_dpy, vp9enc_context.context_id);\n    CHECK_VASTATUS(va_status, \"vaEndPicture\");\n}\n\nstatic void\nvp9enc_destroy_buffers(VABufferID *va_buffers, uint32_t num_va_buffers)\n{\n    VAStatus va_status;\n    uint32_t i;\n\n    for (i = 0; i < num_va_buffers; i++) {\n        if (va_buffers[i] != VA_INVALID_ID) {\n            va_status = vaDestroyBuffer(va_dpy, va_buffers[i]);\n            CHECK_VASTATUS(va_status, \"vaDestroyBuffer\");\n            va_buffers[i] = VA_INVALID_ID;\n        }\n    }\n}\n\nstatic void\nvp9enc_write_frame_header(FILE *vp9_output, int frame_size)\n{\n    char header[12];\n\n    vp9enc_write_dword(header, (uint32_t)frame_size);\n    vp9enc_write_dword(header + 4, 0);\n    vp9enc_write_dword(header + 8, 0);\n\n    fwrite(header, 1, 12, vp9_output);\n}\n\nstatic int\nvp9enc_store_coded_buffer(FILE *vp9_fp, int frame_type)\n{\n    VACodedBufferSegment *coded_buffer_segment;\n    uint8_t *coded_mem;\n    int data_length;\n    VAStatus va_status;\n    VASurfaceStatus surface_status;\n    size_t w_items;\n\n    va_status = vaSyncSurface(va_dpy, surface_ids[vp9enc_context.current_input_surface]);\n    CHECK_VASTATUS(va_status, \"vaSyncSurface\");\n\n    surface_status = 0;\n    va_status = vaQuerySurfaceStatus(va_dpy, surface_ids[vp9enc_context.current_input_surface], &surface_status);\n    CHECK_VASTATUS(va_status, \"vaQuerySurfaceStatus\");\n\n    va_status = vaMapBuffer(va_dpy, vp9enc_context.codedbuf_buf_id, (void **)(&coded_buffer_segment));\n    CHECK_VASTATUS(va_status, \"vaMapBuffer\");\n    coded_mem = coded_buffer_segment->buf;\n\n    if (coded_buffer_segment->status & VA_CODED_BUF_STATUS_SLICE_OVERFLOW_MASK) {\n        if (frame_type == KEY_FRAME)\n            vp9enc_context.codedbuf_i_size *= 2;\n        else\n            vp9enc_context.codedbuf_pb_size *= 2;\n\n        vaUnmapBuffer(va_dpy, vp9enc_context.codedbuf_buf_id);\n        return -1;\n    }\n\n    data_length = coded_buffer_segment->size;\n\n    vp9enc_write_frame_header(vp9_fp, data_length);\n\n    do {\n        w_items = fwrite(coded_mem, data_length, 1, vp9_fp);\n    } while (w_items != 1);\n\n    vaUnmapBuffer(va_dpy, vp9enc_context.codedbuf_buf_id);\n\n    return 0;\n}\n\nstatic void\nvp9enc_write_ivf_header(FILE *vp9_file,\n                        int width, int height,\n                        int frame_num,\n                        int frame_rate)\n{\n\n#define VP9_FOURCC    0x30395056\n\n    char header[32];\n\n    header[0] = 'D';\n    header[1] = 'K';\n    header[2] = 'I';\n    header[3] = 'F';\n\n    vp9enc_write_word(header + 4, 0);\n    vp9enc_write_word(header + 6, 32);\n    vp9enc_write_dword(header + 8, VP9_FOURCC);\n    vp9enc_write_word(header + 12, width);\n    vp9enc_write_word(header + 14, height);\n    vp9enc_write_dword(header + 16, 1);\n    vp9enc_write_dword(header + 20, frame_rate);\n    vp9enc_write_dword(header + 24, frame_num);\n    vp9enc_write_dword(header + 28, 0);\n\n    fwrite(header, 1, 32, vp9_file);\n}\n\nstatic void\nvp9enc_get_frame_type(int encoding_order,\n                      int gop_size,\n                      int ip_period,\n                      int *frame_type)\n{\n    if (ip_period == 0 ||\n        (encoding_order % gop_size == 0))\n        *frame_type = KEY_FRAME;\n    else\n        *frame_type = INTER_FRAME;\n}\n\nstatic void\nvp9enc_end_picture()\n{\n    vp9enc_destroy_buffers(&vp9enc_context.seq_param_buf_id, 1);\n    vp9enc_destroy_buffers(&vp9enc_context.pic_param_buf_id, 1);\n    vp9enc_destroy_buffers(&vp9enc_context.codedbuf_buf_id, 1);\n    vp9enc_destroy_buffers(&vp9enc_context.qmatrix_buf_id, 1);\n    vp9enc_destroy_buffers(&vp9enc_context.misc_parameter_hrd_buf_id, 1);\n    vp9enc_destroy_buffers(&vp9enc_context.mb_seg_buf_id, 1);\n    vp9enc_destroy_buffers(&vp9enc_context.raw_data_header_buf_id, 1);\n    vp9enc_destroy_buffers(&vp9enc_context.raw_data_buf_id, 1);\n    vp9enc_destroy_buffers(&vp9enc_context.misc_fr_buf_id, 1);\n    vp9enc_destroy_buffers(&vp9enc_context.misc_rc_buf_id, 1);\n\n    if (vp9enc_context.current_input_surface == SID_INPUT_PICTURE_0)\n        vp9enc_context.current_input_surface = SID_INPUT_PICTURE_1;\n    else\n        vp9enc_context.current_input_surface = SID_INPUT_PICTURE_0;\n}\n\nstatic void\nvp9enc_encode_picture(FILE *yuv_fp, FILE *vp9_fp,\n                      int frame_num,\n                      int frame_type,\n                      int next_enc_frame)\n{\n    VAStatus va_status;\n    int ret = 0, codedbuf_size;\n\n    vp9enc_begin_picture(yuv_fp, frame_num, frame_type);\n\n    if (next_enc_frame < frame_num) {\n        int index;\n\n        /* prepare for next frame */\n        if (vp9enc_context.current_input_surface == SID_INPUT_PICTURE_0)\n            index = SID_INPUT_PICTURE_1;\n        else\n            index = SID_INPUT_PICTURE_0;\n\n        ret = fseeko(yuv_fp, (off_t)frame_size * next_enc_frame, SEEK_SET);\n        CHECK_CONDITION(ret == 0);\n\n        vp9enc_context.upload_thread_param.yuv_fp = yuv_fp;\n        vp9enc_context.upload_thread_param.surface_id = surface_ids[index];\n\n        vp9enc_context.upload_thread_value = pthread_create(&vp9enc_context.upload_thread_id,\n                                             NULL,\n                                             vp9enc_upload_thread_function,\n                                             (void*)&vp9enc_context.upload_thread_param);\n    }\n\n    do {\n        vp9enc_destroy_buffers(&vp9enc_context.codedbuf_buf_id, 1);\n        vp9enc_destroy_buffers(&vp9enc_context.pic_param_buf_id, 1);\n\n        if (frame_type == KEY_FRAME)\n            codedbuf_size = vp9enc_context.codedbuf_i_size;\n        else\n            codedbuf_size = vp9enc_context.codedbuf_pb_size;\n\n        /* coded buffer */\n        va_status = vaCreateBuffer(va_dpy,\n                                   vp9enc_context.context_id,\n                                   VAEncCodedBufferType,\n                                   codedbuf_size, 1, NULL,\n                                   &vp9enc_context.codedbuf_buf_id);\n        CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n        /* picture parameter set */\n        vp9enc_update_picture_parameter(current_frame_type);\n\n        if (opt_header) {\n            char raw_data[64];\n            int raw_data_length;\n            VAEncPackedHeaderParameterBuffer packed_header_param_buffer;\n\n            memset(raw_data, 0, sizeof(raw_data));\n            vp9enc_write_uncompressed_header(&vp9enc_context,\n                                             raw_data,\n                                             &raw_data_length);\n\n            packed_header_param_buffer.type = VAEncPackedHeaderRawData;\n            packed_header_param_buffer.bit_length = raw_data_length * 8;\n            packed_header_param_buffer.has_emulation_bytes = 0;\n\n            va_status = vaCreateBuffer(va_dpy,\n                           vp9enc_context.context_id,\n                           VAEncPackedHeaderParameterBufferType,\n                           sizeof(packed_header_param_buffer), 1, &packed_header_param_buffer,\n                           &vp9enc_context.raw_data_header_buf_id);\n            CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n            va_status = vaCreateBuffer(va_dpy,\n                           vp9enc_context.context_id,\n                           VAEncPackedHeaderDataBufferType,\n                           raw_data_length, 1, raw_data,\n                           &vp9enc_context.raw_data_buf_id);\n            CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n        }\n\n        vp9enc_create_picture_parameter_buf();\n\n        vp9enc_render_picture();\n\n        ret = vp9enc_store_coded_buffer(vp9_fp, current_frame_type);\n    } while (ret);\n\n    vp9enc_update_reference_list();\n\n    vp9enc_end_picture();\n}\n\nstatic void\nvp9enc_context_seq_param_init(VAEncSequenceParameterBufferVP9 *seq_param,\n                              int width, int height)\n{\n    seq_param->intra_period = intra_period;\n    seq_param->max_frame_width = width;\n    seq_param->max_frame_height = height;\n    seq_param->kf_auto = 0;\n    seq_param->kf_min_dist = 1;\n    seq_param->kf_max_dist = intra_period;\n\n    if (frame_bit_rate > 0)\n        seq_param->bits_per_second = 1000 * frame_bit_rate; /* use kbps as input */\n    else\n        seq_param->bits_per_second = 0;\n}\n\nstatic void\nvp9enc_context_pic_param_init(VAEncPictureParameterBufferVP9 *pic_param,\n                              int width, int height)\n{\n    int i, ref_num;\n\n    memset(pic_param, 0, sizeof(VAEncPictureParameterBufferVP9));\n\n    ref_num = sizeof(pic_param->reference_frames) / sizeof(VASurfaceID);\n    for (i = 0; i < ref_num; i++)\n        pic_param->reference_frames[i] = VA_INVALID_ID;\n\n    pic_param->coded_buf = VA_INVALID_ID;\n    pic_param->reconstructed_frame = VA_INVALID_ID;\n\n    pic_param->frame_width_src = width;\n    pic_param->frame_height_src = height;\n    pic_param->frame_width_dst = width;\n    pic_param->frame_height_dst = height;\n\n    pic_param->ref_flags.bits.force_kf = 0;\n    /* always show it */\n    pic_param->pic_flags.bits.show_frame = 1;\n    /* Not use silience mode */\n    pic_param->pic_flags.bits.error_resilient_mode = 0;\n    /* Not use the frame parallel mode */\n    pic_param->pic_flags.bits.frame_parallel_decoding_mode = 0;\n\n    pic_param->luma_ac_qindex = qp_value;\n    pic_param->luma_dc_qindex_delta = 1;\n    pic_param->chroma_ac_qindex_delta = 1;\n    pic_param->chroma_dc_qindex_delta = 1;\n    /* use the zero sharpness_level/lf_ref&mode deltas */\n    pic_param->filter_level = lf_level;\n\n    for (i = 0; i < 4; i++)\n        pic_param->ref_lf_delta[i] = 1;\n\n    for (i = 0; i < 2; i++)\n        pic_param->mode_lf_delta[i] = 1;\n}\n\n\nstatic void\nvp9enc_context_init(int width, int height)\n{\n    memset(&vp9enc_context, 0, sizeof(vp9enc_context));\n    vp9enc_context.profile = VAProfileVP9Profile0;\n\n    memset(&use_slot, 0, sizeof(use_slot));\n\n    vp9enc_context.seq_param_buf_id = VA_INVALID_ID;\n    vp9enc_context.pic_param_buf_id = VA_INVALID_ID;\n    vp9enc_context.mb_seg_buf_id = VA_INVALID_ID;\n    vp9enc_context.misc_parameter_hrd_buf_id = VA_INVALID_ID;\n    vp9enc_context.qmatrix_buf_id = VA_INVALID_ID;\n    vp9enc_context.codedbuf_buf_id = VA_INVALID_ID;\n    vp9enc_context.raw_data_header_buf_id = VA_INVALID_ID;\n    vp9enc_context.raw_data_buf_id = VA_INVALID_ID;\n    vp9enc_context.misc_fr_buf_id = VA_INVALID_ID;\n    vp9enc_context.misc_rc_buf_id = VA_INVALID_ID;\n\n    vp9enc_context.codedbuf_i_size = width * height;\n    vp9enc_context.codedbuf_pb_size = width * height;\n    vp9enc_context.current_input_surface = SID_INPUT_PICTURE_0;\n    vp9enc_context.upload_thread_value = -1;\n\n    vp9enc_context.rate_control_method = rc_mode;\n\n    vp9enc_context_seq_param_init(&vp9enc_context.seq_param, 8192, 8192);\n    vp9enc_context_pic_param_init(&vp9enc_context.pic_param, width, height);\n}\n\nstatic void\nvp9enc_show_help()\n{\n    printf(\"Usage: vp9encode <width> <height> <input_yuvfile> <output_vp9> additional_option\\n\");\n    printf(\"output_vp9 should use *.ivf\\n\");\n    printf(\"The additional option is listed\\n\");\n    printf(\"-f <frame rate> \\n\");\n    printf(\"--intra_period <key_frame interval>\\n\");\n    printf(\"--qp <quantization parameter> \\n\");\n    printf(\"--rcmode <rate control mode> 0: CQP, 1: CBR, 2: VBR\\n\");\n    printf(\"--fb <bitrate> (kbps unit)\\n\");\n    printf(\"--lf_level <loop filter level>  [0-63]\\n\");\n    printf(\"--hrd_win <num>  [1000-8000]\\n\");\n    printf(\"--vbr_max <num> (kbps unit. It should be greater than fb)\\n\");\n    printf(\"--opt_header \\n  write the uncompressed header manually. without this, the driver will add those headers by itself\\n\");\n    printf(\"--fn_num <num>\\n  how many frames to be encoded\\n\");\n    printf(\"--low_power <num> 0: Normal mode, 1: Low power mode, others: auto mode\\n\");\n}\n\nint\nmain(int argc, char *argv[])\n{\n    char *yuv_input, *vp9_output, *tmp_vp9;\n    FILE *yuv_fp;\n    FILE *vp9_fp;\n    off_t file_size;\n    struct timeval tpstart, tpend;\n    float  timeuse;\n    int ip_period;\n    int fn_num;\n    int frame_idx;\n\n    va_init_display_args(&argc, argv);\n\n    //TODO may be we should using option analytics library\n    if (argc < 5) {\n        vp9enc_show_help();\n        exit(0);\n    }\n\n    picture_width = atoi(argv[1]);\n    picture_height = atoi(argv[2]);\n    yuv_input = argv[3];\n    vp9_output = argv[4];\n    fn_num = -1;\n\n    if (!yuv_input || !vp9_output) {\n        vp9enc_show_help();\n        exit(0);\n    }\n\n    tmp_vp9 = strdup(argv[4]);\n    assert(tmp_vp9);\n\n    if (!strstr(tmp_vp9, \".ivf\")) {\n        free(tmp_vp9);\n        vp9enc_show_help();\n        exit(0);\n    }\n\n    free(tmp_vp9);\n\n    rc_mode = VA_RC_CQP;\n    frame_rate = 30;\n    qp_value = 60;\n    intra_period = 30;\n    frame_bit_rate = -1;\n    vbr_max = -1;\n    if (argc > 5) {\n        int c, long_index, tmp_input;\n        while (1) {\n            c = getopt_long_only(argc - 4, argv + 4, \"hf:?\", long_opts, &long_index);\n\n            if (c == -1)\n                break;\n\n            switch (c) {\n            case 'h':\n            case 0:\n                vp9enc_show_help();\n                exit(0);\n                break;\n            case 'f':\n                frame_rate = atoi(optarg);\n                break;\n            case 1:\n                tmp_input = atoi(optarg);\n                if (tmp_input > 3 || tmp_input < 0)\n                    tmp_input = 0;\n                rc_mode = rc_default_mode[tmp_input];\n                break;\n            case 2:\n                tmp_input = atoi(optarg);\n                if (tmp_input < 0 || tmp_input > 255)\n                    tmp_input = 60;\n                qp_value = tmp_input;\n                break;\n            case 3:\n                tmp_input = atoi(optarg);\n                if (tmp_input < 0)\n                    tmp_input = 30;\n                intra_period = tmp_input;\n                break;\n            case 4:\n                tmp_input = atoi(optarg);\n                frame_bit_rate = tmp_input;\n                break;\n            case 6:\n                tmp_input = atoi(optarg);\n                if (tmp_input < 0 || tmp_input > 63)\n                    tmp_input = 10;\n                lf_level = tmp_input;\n                break;\n            case 7:\n                tmp_input = atoi(optarg);\n                if (tmp_input)\n                    tmp_input = 1;\n                opt_header = tmp_input;\n                break;\n            case 8:\n                tmp_input = atoi(optarg);\n                if (tmp_input > 8000 || tmp_input < 1000)\n                    tmp_input = 1500;\n                hrd_window = tmp_input;\n                break;\n            case 9:\n                tmp_input = atoi(optarg);\n                if (tmp_input < 0)\n                    tmp_input = 20000;\n                else if (tmp_input > 100000)\n                    tmp_input = 100000;\n                vbr_max = tmp_input;\n                break;\n            case 10:\n                tmp_input = atoi(optarg);\n                fn_num = tmp_input;\n                break;\n            case 11:\n                tmp_input = atoi(optarg);\n\n                if (tmp_input == 0 || tmp_input == 1)\n                    select_entrypoint = tmp_input;\n                else\n                    select_entrypoint = -1;\n\n                break;\n\n            default:\n                vp9enc_show_help();\n                exit(0);\n                break;\n            }\n        }\n    }\n\n    if (rc_mode != VA_RC_CQP && (frame_bit_rate < 0)) {\n        printf(\"Please specifiy the bit rate for CBR/VBR\\n\");\n        vp9enc_show_help();\n        exit(0);\n    }\n\n    if (rc_mode == VA_RC_VBR) {\n        if (vbr_max < 0) {\n            vbr_max = frame_bit_rate;\n            frame_bit_rate = (vbr_max * 95 / 100);\n        }\n\n        if (vbr_max < frame_bit_rate) {\n            printf(\"Under VBR, the max bit rate should be greater than or equal to fb\\n\");\n            vp9enc_show_help();\n            exit(0);\n        }\n\n        if (vbr_max > (frame_bit_rate * 2)) {\n            printf(\"under VBR, the max bit rate is too much greater than the average bit\\n\");\n            vp9enc_show_help();\n            exit(0);\n        }\n    }\n\n    yuv_fp = fopen(yuv_input, \"rb\");\n    if (yuv_fp == NULL) {\n        printf(\"Can't open input YUV file\\n\");\n        return -1;\n    }\n    fseeko(yuv_fp, (off_t)0, SEEK_END);\n    file_size = ftello(yuv_fp);\n    frame_size = picture_width * picture_height + ((picture_width * picture_height) >> 1) ;\n\n    if (frame_size == 0) {\n        fclose(yuv_fp);\n        printf(\"Frame size is not correct\\n\");\n        return -1;\n    }\n    if ((file_size < frame_size) || (file_size % frame_size)) {\n        fclose(yuv_fp);\n        printf(\"The YUV file's size is not correct\\n\");\n        return -1;\n    }\n    frame_number = file_size / frame_size;\n    fseeko(yuv_fp, (off_t)0, SEEK_SET);\n\n    if (fn_num > 0 && fn_num <= frame_number)\n        frame_number = fn_num;\n\n    vp9_fp = fopen(vp9_output, \"wb\");\n    if (vp9_fp == NULL) {\n        fclose(yuv_fp);\n        printf(\"Can't open output avc file\\n\");\n        return -1;\n    }\n\n    if (intra_period == 0)\n        intra_period = frame_number;\n\n    ip_period = 1;\n    if (intra_period == 1)\n        ip_period = 0;\n\n    gettimeofday(&tpstart, NULL);\n\n    vp9enc_write_ivf_header(vp9_fp, picture_width, picture_height,\n                            frame_number, frame_rate);\n    vp9enc_context_init(picture_width, picture_height);\n    vp9enc_create_encode_pipe(yuv_fp);\n\n    for (frame_idx = 0; frame_idx < frame_number; frame_idx++) {\n        vp9enc_get_frame_type(frame_idx, intra_period, ip_period,\n                              &current_frame_type);\n\n        vp9enc_encode_picture(yuv_fp, vp9_fp, frame_number,\n                              current_frame_type, frame_idx + 1);\n\n        printf(\"\\r %d/%d ...\", (frame_idx + 1), frame_number);\n        fflush(stdout);\n    }\n\n    gettimeofday(&tpend, NULL);\n    timeuse = 1000000 * (tpend.tv_sec - tpstart.tv_sec) + tpend.tv_usec - tpstart.tv_usec;\n    timeuse /= 1000000;\n\n    printf(\"\\ndone!\\n\");\n    printf(\"encode %d frames in %f secondes, FPS is %.1f\\n\", frame_number, timeuse, frame_number / timeuse);\n\n    vp9enc_release_encode_resource();\n    vp9enc_destory_encode_pipe();\n\n    fclose(yuv_fp);\n    fclose(vp9_fp);\n\n    return 0;\n}\n"
  },
  {
    "path": "getopt/getopt.h",
    "content": "/*\t$OpenBSD: getopt.h,v 1.2 2008/06/26 05:42:04 ray Exp $\t*/\r\n/*\t$NetBSD: getopt.h,v 1.4 2000/07/07 10:43:54 ad Exp $\t*/\r\n\r\n/*-\r\n * Copyright (c) 2000 The NetBSD Foundation, Inc.\r\n * All rights reserved.\r\n *\r\n * This code is derived from software contributed to The NetBSD Foundation\r\n * by Dieter Baron and Thomas Klausner.\r\n *\r\n * Redistribution and use in source and binary forms, with or without\r\n * modification, are permitted provided that the following conditions\r\n * are met:\r\n * 1. Redistributions of source code must retain the above copyright\r\n *    notice, this list of conditions and the following disclaimer.\r\n * 2. Redistributions in binary form must reproduce the above copyright\r\n *    notice, this list of conditions and the following disclaimer in the\r\n *    documentation and/or other materials provided with the distribution.\r\n *\r\n * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS\r\n * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\r\n * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\r\n * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS\r\n * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\r\n * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\r\n * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\r\n * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\r\n * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\r\n * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\r\n * POSSIBILITY OF SUCH DAMAGE.\r\n */\r\n\r\n#ifndef _GETOPT_H_\r\n#define _GETOPT_H_\r\n\r\n/*\r\n * GNU-like getopt_long() and 4.4BSD getsubopt()/optreset extensions\r\n */\r\n#define no_argument        0\r\n#define required_argument  1\r\n#define optional_argument  2\r\n\r\n#ifdef __cplusplus\r\nextern \"C\" {\r\n#endif\r\n\r\nstruct option {\r\n\t/* name of long option */\r\n\tconst char *name;\r\n\t/*\r\n\t * one of no_argument, required_argument, and optional_argument:\r\n\t * whether option takes an argument\r\n\t */\r\n\tint has_arg;\r\n\t/* if not NULL, set *flag to val when option found */\r\n\tint *flag;\r\n\t/* if flag not NULL, value to set *flag to; else return value */\r\n\tint val;\r\n};\r\n\r\nint\t getopt_long(int, char * const *, const char *,\r\n\t    const struct option *, int *);\r\nint\t getopt_long_only(int, char * const *, const char *,\r\n\t    const struct option *, int *);\r\n#ifndef _GETOPT_DEFINED_\r\n#define _GETOPT_DEFINED_\r\nint\t getopt(int, char * const *, const char *);\r\nint\t getsubopt(char **, char * const *, char **);\r\n\r\nextern   char *optarg;                  /* getopt(3) external variables */\r\nextern   int opterr;\r\nextern   int optind;\r\nextern   int optopt;\r\nextern   int optreset;\r\nextern   char *suboptarg;               /* getsubopt(3) external variable */\r\n#endif\r\n\r\n#ifdef __cplusplus\r\n}\r\n#endif\r\n \r\n#endif /* !_GETOPT_H_ */\r\n"
  },
  {
    "path": "getopt/getopt_long.c",
    "content": "/*\t$OpenBSD: getopt_long.c,v 1.24 2010/07/22 19:31:53 blambert Exp $\t*/\r\n/*\t$NetBSD: getopt_long.c,v 1.15 2002/01/31 22:43:40 tv Exp $\t*/\r\n\r\n/*\r\n * Copyright (c) 2002 Todd C. Miller <Todd.Miller@courtesan.com>\r\n *\r\n * Permission to use, copy, modify, and distribute this software for any\r\n * purpose with or without fee is hereby granted, provided that the above\r\n * copyright notice and this permission notice appear in all copies.\r\n *\r\n * THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\r\n * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\r\n * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\r\n * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\r\n * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\r\n * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\r\n * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\r\n *\r\n * Sponsored in part by the Defense Advanced Research Projects\r\n * Agency (DARPA) and Air Force Research Laboratory, Air Force\r\n * Materiel Command, USAF, under agreement number F39502-99-1-0512.\r\n */\r\n/*-\r\n * Copyright (c) 2000 The NetBSD Foundation, Inc.\r\n * All rights reserved.\r\n *\r\n * This code is derived from software contributed to The NetBSD Foundation\r\n * by Dieter Baron and Thomas Klausner.\r\n *\r\n * Redistribution and use in source and binary forms, with or without\r\n * modification, are permitted provided that the following conditions\r\n * are met:\r\n * 1. Redistributions of source code must retain the above copyright\r\n *    notice, this list of conditions and the following disclaimer.\r\n * 2. Redistributions in binary form must reproduce the above copyright\r\n *    notice, this list of conditions and the following disclaimer in the\r\n *    documentation and/or other materials provided with the distribution.\r\n *\r\n * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS\r\n * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\r\n * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\r\n * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS\r\n * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\r\n * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\r\n * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\r\n * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\r\n * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\r\n * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\r\n * POSSIBILITY OF SUCH DAMAGE.\r\n */\r\n\r\n#include <errno.h>\r\n#include <getopt.h>\r\n#include <stdio.h>\r\n#include <stdlib.h>\r\n#include <string.h>\r\n\r\nint\topterr = 1;\t\t/* if error message should be printed */\r\nint\toptind = 1;\t\t/* index into parent argv vector */\r\nint\toptopt = '?';\t\t/* character checked for validity */\r\nint\toptreset;\t\t/* reset getopt */\r\nchar    *optarg;\t\t/* argument associated with option */\r\n\r\n#define PRINT_ERROR\t((opterr) && (*options != ':'))\r\n\r\n#define FLAG_PERMUTE\t0x01\t/* permute non-options to the end of argv */\r\n#define FLAG_ALLARGS\t0x02\t/* treat non-options as args to option \"-1\" */\r\n#define FLAG_LONGONLY\t0x04\t/* operate as getopt_long_only */\r\n\r\n/* return values */\r\n#define\tBADCH\t\t(int)'?'\r\n#define\tBADARG\t\t((*options == ':') ? (int)':' : (int)'?')\r\n#define\tINORDER \t(int)1\r\n\r\n#define\tEMSG\t\t\"\"\r\n\r\nstatic int getopt_internal(int, char * const *, const char *,\r\n\t\t\t   const struct option *, int *, int);\r\nstatic int parse_long_options(char * const *, const char *,\r\n\t\t\t      const struct option *, int *, int);\r\nstatic int gcd(int, int);\r\nstatic void permute_args(int, int, int, char * const *);\r\n\r\nstatic char *place = EMSG; /* option letter processing */\r\n\r\n/* XXX: set optreset to 1 rather than these two */\r\nstatic int nonopt_start = -1; /* first non option argument (for permute) */\r\nstatic int nonopt_end = -1;   /* first option after non options (for permute) */\r\n\r\n/* Error messages */\r\nstatic const char recargchar[] = \"option requires an argument -- %c\";\r\nstatic const char recargstring[] = \"option requires an argument -- %s\";\r\nstatic const char ambig[] = \"ambiguous option -- %.*s\";\r\nstatic const char noarg[] = \"option doesn't take an argument -- %.*s\";\r\nstatic const char illoptchar[] = \"unknown option -- %c\";\r\nstatic const char illoptstring[] = \"unknown option -- %s\";\r\n\r\n/*\r\n * Compute the greatest common divisor of a and b.\r\n */\r\nstatic int\r\ngcd(int a, int b)\r\n{\r\n\tint c;\r\n\r\n\tc = a % b;\r\n\twhile (c != 0) {\r\n\t\ta = b;\r\n\t\tb = c;\r\n\t\tc = a % b;\r\n\t}\r\n\r\n\treturn (b);\r\n}\r\n\r\n/*\r\n * Exchange the block from nonopt_start to nonopt_end with the block\r\n * from nonopt_end to opt_end (keeping the same order of arguments\r\n * in each block).\r\n */\r\nstatic void\r\npermute_args(int panonopt_start, int panonopt_end, int opt_end,\r\n\tchar * const *nargv)\r\n{\r\n\tint cstart, cyclelen, i, j, ncycle, nnonopts, nopts, pos;\r\n\tchar *swap;\r\n\r\n\t/*\r\n\t * compute lengths of blocks and number and size of cycles\r\n\t */\r\n\tnnonopts = panonopt_end - panonopt_start;\r\n\tnopts = opt_end - panonopt_end;\r\n\tncycle = gcd(nnonopts, nopts);\r\n\tcyclelen = (opt_end - panonopt_start) / ncycle;\r\n\r\n\tfor (i = 0; i < ncycle; i++) {\r\n\t\tcstart = panonopt_end+i;\r\n\t\tpos = cstart;\r\n\t\tfor (j = 0; j < cyclelen; j++) {\r\n\t\t\tif (pos >= panonopt_end)\r\n\t\t\t\tpos -= nnonopts;\r\n\t\t\telse\r\n\t\t\t\tpos += nopts;\r\n\t\t\tswap = nargv[pos];\r\n\t\t\t/* LINTED const cast */\r\n\t\t\t((char **) nargv)[pos] = nargv[cstart];\r\n\t\t\t/* LINTED const cast */\r\n\t\t\t((char **)nargv)[cstart] = swap;\r\n\t\t}\r\n\t}\r\n}\r\n\r\n/*\r\n * parse_long_options --\r\n *\tParse long options in argc/argv argument vector.\r\n * Returns -1 if short_too is set and the option does not match long_options.\r\n */\r\nstatic int\r\nparse_long_options(char * const *nargv, const char *options,\r\n\tconst struct option *long_options, int *idx, int short_too)\r\n{\r\n\tchar *current_argv, *has_equal;\r\n\tsize_t current_argv_len;\r\n\tint i, match;\r\n\r\n\tcurrent_argv = place;\r\n\tmatch = -1;\r\n\r\n\toptind++;\r\n\r\n\tif ((has_equal = strchr(current_argv, '=')) != NULL) {\r\n\t\t/* argument found (--option=arg) */\r\n\t\tcurrent_argv_len = has_equal - current_argv;\r\n\t\thas_equal++;\r\n\t} else\r\n\t\tcurrent_argv_len = strlen(current_argv);\r\n\r\n\tfor (i = 0; long_options[i].name; i++) {\r\n\t\t/* find matching long option */\r\n\t\tif (strncmp(current_argv, long_options[i].name,\r\n\t\t    current_argv_len))\r\n\t\t\tcontinue;\r\n\r\n\t\tif (strlen(long_options[i].name) == current_argv_len) {\r\n\t\t\t/* exact match */\r\n\t\t\tmatch = i;\r\n\t\t\tbreak;\r\n\t\t}\r\n\t\t/*\r\n\t\t * If this is a known short option, don't allow\r\n\t\t * a partial match of a single character.\r\n\t\t */\r\n\t\tif (short_too && current_argv_len == 1)\r\n\t\t\tcontinue;\r\n\r\n\t\tif (match == -1)\t/* partial match */\r\n\t\t\tmatch = i;\r\n\t\telse {\r\n\t\t\t/* ambiguous abbreviation */\r\n\t\t\tif (PRINT_ERROR)\r\n\t\t\t\tfprintf(stderr, ambig, (int)current_argv_len,\r\n\t\t\t\t     current_argv);\r\n\t\t\toptopt = 0;\r\n\t\t\treturn (BADCH);\r\n\t\t}\r\n\t}\r\n\tif (match != -1) {\t\t/* option found */\r\n\t\tif (long_options[match].has_arg == no_argument\r\n\t\t    && has_equal) {\r\n\t\t\tif (PRINT_ERROR)\r\n\t\t\t\tfprintf(stderr, noarg, (int)current_argv_len,\r\n\t\t\t\t     current_argv);\r\n\t\t\t/*\r\n\t\t\t * XXX: GNU sets optopt to val regardless of flag\r\n\t\t\t */\r\n\t\t\tif (long_options[match].flag == NULL)\r\n\t\t\t\toptopt = long_options[match].val;\r\n\t\t\telse\r\n\t\t\t\toptopt = 0;\r\n\t\t\treturn (BADARG);\r\n\t\t}\r\n\t\tif (long_options[match].has_arg == required_argument ||\r\n\t\t    long_options[match].has_arg == optional_argument) {\r\n\t\t\tif (has_equal)\r\n\t\t\t\toptarg = has_equal;\r\n\t\t\telse if (long_options[match].has_arg ==\r\n\t\t\t    required_argument) {\r\n\t\t\t\t/*\r\n\t\t\t\t * optional argument doesn't use next nargv\r\n\t\t\t\t */\r\n\t\t\t\toptarg = nargv[optind++];\r\n\t\t\t}\r\n\t\t}\r\n\t\tif ((long_options[match].has_arg == required_argument)\r\n\t\t    && (optarg == NULL)) {\r\n\t\t\t/*\r\n\t\t\t * Missing argument; leading ':' indicates no error\r\n\t\t\t * should be generated.\r\n\t\t\t */\r\n\t\t\tif (PRINT_ERROR)\r\n\t\t\t\tfprintf(stderr, recargstring,\r\n\t\t\t\t    current_argv);\r\n\t\t\t/*\r\n\t\t\t * XXX: GNU sets optopt to val regardless of flag\r\n\t\t\t */\r\n\t\t\tif (long_options[match].flag == NULL)\r\n\t\t\t\toptopt = long_options[match].val;\r\n\t\t\telse\r\n\t\t\t\toptopt = 0;\r\n\t\t\t--optind;\r\n\t\t\treturn (BADARG);\r\n\t\t}\r\n\t} else {\t\t\t/* unknown option */\r\n\t\tif (short_too) {\r\n\t\t\t--optind;\r\n\t\t\treturn (-1);\r\n\t\t}\r\n\t\tif (PRINT_ERROR)\r\n\t\t\tfprintf(stderr, illoptstring, current_argv);\r\n\t\toptopt = 0;\r\n\t\treturn (BADCH);\r\n\t}\r\n\tif (idx)\r\n\t\t*idx = match;\r\n\tif (long_options[match].flag) {\r\n\t\t*long_options[match].flag = long_options[match].val;\r\n\t\treturn (0);\r\n\t} else\r\n\t\treturn (long_options[match].val);\r\n}\r\n\r\n/*\r\n * getopt_internal --\r\n *\tParse argc/argv argument vector.  Called by user level routines.\r\n */\r\nstatic int\r\ngetopt_internal(int nargc, char * const *nargv, const char *options,\r\n\tconst struct option *long_options, int *idx, int flags)\r\n{\r\n\tchar *oli;\t\t\t\t/* option letter list index */\r\n\tint optchar, short_too;\r\n\tstatic int posixly_correct = -1;\r\n\r\n\tif (options == NULL)\r\n\t\treturn (-1);\r\n\r\n\t/*\r\n\t * Disable GNU extensions if POSIXLY_CORRECT is set or options\r\n\t * string begins with a '+'.\r\n\t */\r\n\tif (posixly_correct == -1)\r\n\t\tposixly_correct = (getenv(\"POSIXLY_CORRECT\") != NULL);\r\n\tif (posixly_correct || *options == '+')\r\n\t\tflags &= ~FLAG_PERMUTE;\r\n\telse if (*options == '-')\r\n\t\tflags |= FLAG_ALLARGS;\r\n\tif (*options == '+' || *options == '-')\r\n\t\toptions++;\r\n\r\n\t/*\r\n\t * XXX Some GNU programs (like cvs) set optind to 0 instead of\r\n\t * XXX using optreset.  Work around this braindamage.\r\n\t */\r\n\tif (optind == 0)\r\n\t\toptind = optreset = 1;\r\n\r\n\toptarg = NULL;\r\n\tif (optreset)\r\n\t\tnonopt_start = nonopt_end = -1;\r\nstart:\r\n\tif (optreset || !*place) {\t\t/* update scanning pointer */\r\n\t\toptreset = 0;\r\n\t\tif (optind >= nargc) {          /* end of argument vector */\r\n\t\t\tplace = EMSG;\r\n\t\t\tif (nonopt_end != -1) {\r\n\t\t\t\t/* do permutation, if we have to */\r\n\t\t\t\tpermute_args(nonopt_start, nonopt_end,\r\n\t\t\t\t    optind, nargv);\r\n\t\t\t\toptind -= nonopt_end - nonopt_start;\r\n\t\t\t}\r\n\t\t\telse if (nonopt_start != -1) {\r\n\t\t\t\t/*\r\n\t\t\t\t * If we skipped non-options, set optind\r\n\t\t\t\t * to the first of them.\r\n\t\t\t\t */\r\n\t\t\t\toptind = nonopt_start;\r\n\t\t\t}\r\n\t\t\tnonopt_start = nonopt_end = -1;\r\n\t\t\treturn (-1);\r\n\t\t}\r\n\t\tif (*(place = nargv[optind]) != '-' ||\r\n\t\t    (place[1] == '\\0' && strchr(options, '-') == NULL)) {\r\n\t\t\tplace = EMSG;\t\t/* found non-option */\r\n\t\t\tif (flags & FLAG_ALLARGS) {\r\n\t\t\t\t/*\r\n\t\t\t\t * GNU extension:\r\n\t\t\t\t * return non-option as argument to option 1\r\n\t\t\t\t */\r\n\t\t\t\toptarg = nargv[optind++];\r\n\t\t\t\treturn (INORDER);\r\n\t\t\t}\r\n\t\t\tif (!(flags & FLAG_PERMUTE)) {\r\n\t\t\t\t/*\r\n\t\t\t\t * If no permutation wanted, stop parsing\r\n\t\t\t\t * at first non-option.\r\n\t\t\t\t */\r\n\t\t\t\treturn (-1);\r\n\t\t\t}\r\n\t\t\t/* do permutation */\r\n\t\t\tif (nonopt_start == -1)\r\n\t\t\t\tnonopt_start = optind;\r\n\t\t\telse if (nonopt_end != -1) {\r\n\t\t\t\tpermute_args(nonopt_start, nonopt_end,\r\n\t\t\t\t    optind, nargv);\r\n\t\t\t\tnonopt_start = optind -\r\n\t\t\t\t    (nonopt_end - nonopt_start);\r\n\t\t\t\tnonopt_end = -1;\r\n\t\t\t}\r\n\t\t\toptind++;\r\n\t\t\t/* process next argument */\r\n\t\t\tgoto start;\r\n\t\t}\r\n\t\tif (nonopt_start != -1 && nonopt_end == -1)\r\n\t\t\tnonopt_end = optind;\r\n\r\n\t\t/*\r\n\t\t * If we have \"-\" do nothing, if \"--\" we are done.\r\n\t\t */\r\n\t\tif (place[1] != '\\0' && *++place == '-' && place[1] == '\\0') {\r\n\t\t\toptind++;\r\n\t\t\tplace = EMSG;\r\n\t\t\t/*\r\n\t\t\t * We found an option (--), so if we skipped\r\n\t\t\t * non-options, we have to permute.\r\n\t\t\t */\r\n\t\t\tif (nonopt_end != -1) {\r\n\t\t\t\tpermute_args(nonopt_start, nonopt_end,\r\n\t\t\t\t    optind, nargv);\r\n\t\t\t\toptind -= nonopt_end - nonopt_start;\r\n\t\t\t}\r\n\t\t\tnonopt_start = nonopt_end = -1;\r\n\t\t\treturn (-1);\r\n\t\t}\r\n\t}\r\n\r\n\t/*\r\n\t * Check long options if:\r\n\t *  1) we were passed some\r\n\t *  2) the arg is not just \"-\"\r\n\t *  3) either the arg starts with -- we are getopt_long_only()\r\n\t */\r\n\tif (long_options != NULL && place != nargv[optind] &&\r\n\t    (*place == '-' || (flags & FLAG_LONGONLY))) {\r\n\t\tshort_too = 0;\r\n\t\tif (*place == '-')\r\n\t\t\tplace++;\t\t/* --foo long option */\r\n\t\telse if (*place != ':' && strchr(options, *place) != NULL)\r\n\t\t\tshort_too = 1;\t\t/* could be short option too */\r\n\r\n\t\toptchar = parse_long_options(nargv, options, long_options,\r\n\t\t    idx, short_too);\r\n\t\tif (optchar != -1) {\r\n\t\t\tplace = EMSG;\r\n\t\t\treturn (optchar);\r\n\t\t}\r\n\t}\r\n\r\n\tif ((optchar = (int)*place++) == (int)':' ||\r\n\t    (optchar == (int)'-' && *place != '\\0') ||\r\n\t    (oli = strchr(options, optchar)) == NULL) {\r\n\t\t/*\r\n\t\t * If the user specified \"-\" and  '-' isn't listed in\r\n\t\t * options, return -1 (non-option) as per POSIX.\r\n\t\t * Otherwise, it is an unknown option character (or ':').\r\n\t\t */\r\n\t\tif (optchar == (int)'-' && *place == '\\0')\r\n\t\t\treturn (-1);\r\n\t\tif (!*place)\r\n\t\t\t++optind;\r\n\t\tif (PRINT_ERROR)\r\n\t\t\tfprintf(stderr, illoptchar, optchar);\r\n\t\toptopt = optchar;\r\n\t\treturn (BADCH);\r\n\t}\r\n\tif (long_options != NULL && optchar == 'W' && oli[1] == ';') {\r\n\t\t/* -W long-option */\r\n\t\tif (*place)\t\t\t/* no space */\r\n\t\t\t/* NOTHING */;\r\n\t\telse if (++optind >= nargc) {\t/* no arg */\r\n\t\t\tplace = EMSG;\r\n\t\t\tif (PRINT_ERROR)\r\n\t\t\t\tfprintf(stderr, recargchar, optchar);\r\n\t\t\toptopt = optchar;\r\n\t\t\treturn (BADARG);\r\n\t\t} else\t\t\t\t/* white space */\r\n\t\t\tplace = nargv[optind];\r\n\t\toptchar = parse_long_options(nargv, options, long_options,\r\n\t\t    idx, 0);\r\n\t\tplace = EMSG;\r\n\t\treturn (optchar);\r\n\t}\r\n\tif (*++oli != ':') {\t\t\t/* doesn't take argument */\r\n\t\tif (!*place)\r\n\t\t\t++optind;\r\n\t} else {\t\t\t\t/* takes (optional) argument */\r\n\t\toptarg = NULL;\r\n\t\tif (*place)\t\t\t/* no white space */\r\n\t\t\toptarg = place;\r\n\t\telse if (oli[1] != ':') {\t/* arg not optional */\r\n\t\t\tif (++optind >= nargc) {\t/* no arg */\r\n\t\t\t\tplace = EMSG;\r\n\t\t\t\tif (PRINT_ERROR)\r\n\t\t\t\t\tfprintf(stderr, recargchar, optchar);\r\n\t\t\t\toptopt = optchar;\r\n\t\t\t\treturn (BADARG);\r\n\t\t\t} else\r\n\t\t\t\toptarg = nargv[optind];\r\n\t\t}\r\n\t\tplace = EMSG;\r\n\t\t++optind;\r\n\t}\r\n\t/* dump back option letter */\r\n\treturn (optchar);\r\n}\r\n\r\n/*\r\n * getopt --\r\n *\tParse argc/argv argument vector.\r\n *\r\n * [eventually this will replace the BSD getopt]\r\n */\r\nint\r\ngetopt(int nargc, char * const *nargv, const char *options)\r\n{\r\n\r\n\t/*\r\n\t * We don't pass FLAG_PERMUTE to getopt_internal() since\r\n\t * the BSD getopt(3) (unlike GNU) has never done this.\r\n\t *\r\n\t * Furthermore, since many privileged programs call getopt()\r\n\t * before dropping privileges it makes sense to keep things\r\n\t * as simple (and bug-free) as possible.\r\n\t */\r\n\treturn (getopt_internal(nargc, nargv, options, NULL, NULL, 0));\r\n}\r\n\r\n/*\r\n * getopt_long --\r\n *\tParse argc/argv argument vector.\r\n */\r\nint\r\ngetopt_long(int nargc, char * const *nargv, const char *options,\r\n    const struct option *long_options, int *idx)\r\n{\r\n\r\n\treturn (getopt_internal(nargc, nargv, options, long_options, idx,\r\n\t    FLAG_PERMUTE));\r\n}\r\n\r\n/*\r\n * getopt_long_only --\r\n *\tParse argc/argv argument vector.\r\n */\r\nint\r\ngetopt_long_only(int nargc, char * const *nargv, const char *options,\r\n    const struct option *long_options, int *idx)\r\n{\r\n\r\n\treturn (getopt_internal(nargc, nargv, options, long_options, idx,\r\n\t    FLAG_PERMUTE|FLAG_LONGONLY));\r\n}\r\n"
  },
  {
    "path": "getopt/meson.build",
    "content": "libgetopt = static_library(\r\n  'getopt',\r\n  'getopt_long.c',\r\n)\r\n\r\nidep_getopt = declare_dependency(\r\n  link_with : libgetopt,\r\n  include_directories : include_directories('.', is_system : true),\r\n)\r\n"
  },
  {
    "path": "meson.build",
    "content": "project('libva-utils', 'c', 'cpp',\n        version : '2.24.0.1',\n        default_options : [\n          'warning_level=2',\n          'c_std=gnu99',\n          'default_library=static',\n        ],\n        license : 'MIT',\n        meson_version : '>= 0.42.0')\n\nc = meson.get_compiler('c')\n\nthreads = dependency('threads')\n\nlibva_dep = dependency('libva', version: '>= 1.1.0')\n\nlibva_utils_flags = [ '-Wno-unused-parameter',\n                      '-Wno-sign-compare' ]\n\nbackends = ''\n\n# DRM\nuse_drm = false\ndrm_deps=[]\nif get_option('drm') != 'false'\n  require_drm = get_option('drm') == 'true'\n  drm_deps = [\n    dependency('libva-drm', version: libva_dep.version(), required: require_drm),\n    dependency('libdrm', required: require_drm),\n  ]\n  use_drm = true\n  foreach d : drm_deps\n    if not d.found()\n      use_drm = false\n    endif\n  endforeach\n  if use_drm\n    backends += ' drm'\n    libva_utils_flags += [ '-DHAVE_VA_DRM=1' ]\n  endif\nendif\n\n# X11\nuse_x11 = false\nif get_option('x11') != 'false'\n  require_x11 = get_option('x11') == 'true'\n  x11_deps = [\n    dependency('x11', required: require_x11),\n    dependency('libva-x11', version: libva_dep.version(), required: require_x11),\n  ]\n  use_x11 = true\n  foreach d : x11_deps\n    if not d.found()\n      use_x11 = false\n    endif\n  endforeach\n  if use_x11\n    backends += ' x11'\n    libva_utils_flags += [ '-DHAVE_VA_X11=1' ]\n  endif\nendif\n\n# WAYLAND\nuse_wayland = false\nif get_option('wayland') != 'false'\n  require_wayland = get_option('wayland') == 'true'\n  wayland_deps = [\n    dependency('wayland-client', version: '>= 1.0.0', required: require_wayland),\n    dependency('libva-wayland', version: libva_dep.version(), required: require_wayland),\n  ]\n  use_wayland = true\n  foreach d : wayland_deps\n    if not d.found()\n      use_wayland = false\n    endif\n  endforeach\n  if use_wayland\n    backends += ' wayland'\n    libva_utils_flags += [ '-DHAVE_VA_WAYLAND=1' ]\n  endif\nendif\n\n# WIN32\nuse_win32 = false\nif get_option('win32') != 'false'\n  require_win32 = get_option('win32') == 'true'\n  use_win32 = dependency('libva-win32', version: libva_dep.version(), required: require_win32).found()\n  if use_win32\n    libva_utils_flags = [ '-DHAVE_VA_WIN32=1', '-DNOMINMAX']\n    dep_dxheaders = dependency('directx-headers', required : false)\n    if not dep_dxheaders.found()\n      dep_dxheaders = dependency('DirectX-Headers',\n        version : '>= v1.0.2',\n        fallback : ['DirectX-Headers', 'dep_dxheaders'],\n        required : use_win32\n      )\n    endif\n  endif\nendif\n\nadd_project_arguments(libva_utils_flags,\n                      language: ['c', 'cpp'])\n\nif use_win32\n  subdir('getopt')\n  win32_deps = [ dependency('libva-win32', required: require_win32), idep_getopt, dep_dxheaders]\nendif\n\nsubdir('common') # Uses win32_deps\nsubdir('vainfo')\n\nif not use_win32\n  subdir('decode')\n  subdir('encode')\n  subdir('putsurface')\n  subdir('videoprocess')\n  subdir('vendor/intel')\n  subdir('vendor/intel/sfcsample')\nendif\n\nif get_option('tests')\n  subdir('test')\nendif\n\nif meson.version().version_compare('>= 0.53')\n  summary({\n    'Libva VA-API version' : libva_dep.version(),\n    'Installation prefix' : get_option('prefix'),\n    'Extra window systems' : backends,\n    'Enable Unit-tests': get_option('tests')\n  }, bool_yn: true)\nendif\n"
  },
  {
    "path": "meson_options.txt",
    "content": "option('drm',\n       type : 'combo',\n       value : 'auto',\n       choices: [ 'auto', 'true', 'false' ])\noption('x11',\n       type : 'combo',\n       value : 'auto',\n       choices: [ 'auto', 'true', 'false' ])\noption('wayland',\n       type : 'combo',\n       value : 'auto',\n       choices: [ 'auto', 'true', 'false' ])\noption('win32',\n       type : 'combo',\n       value : 'auto',\n       choices: [ 'auto', 'true', 'false' ])\noption('tests',\n       type : 'boolean',\n       value : false)\n"
  },
  {
    "path": "putsurface/Makefile.am",
    "content": "# Copyright (c) 2007 Intel Corporation. All Rights Reserved.\n#\n# Permission is hereby granted, free of charge, to any person obtaining a\n# copy of this software and associated documentation files (the\n# \"Software\"), to deal in the Software without restriction, including\n# without limitation the rights to use, copy, modify, merge, publish,\n# distribute, sub license, and/or sell copies of the Software, and to\n# permit persons to whom the Software is furnished to do so, subject to\n# the following conditions:\n# \n# The above copyright notice and this permission notice (including the\n# next paragraph) shall be included in all copies or substantial portions\n# of the Software.\n# \n# THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n# IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR\n# ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\nbin_PROGRAMS =\n\nTEST_CFLAGS = \\\n\t$(LIBVA_CFLAGS)\t\t\t\\\n\t-I$(top_srcdir)/common\t\t\\\n\t-Wall\t\t\t\t\\\n\t$(NULL)\n\nif USE_SSP\nTEST_CFLAGS += -fstack-protector\nendif\n\nTEST_LIBS = \\\n\t$(LIBVA_LIBS)\t\t\\\n\t$(top_builddir)/common/libva-display.la\t\\\n\t-lpthread\t\t\\\n\t$(NULL)\n\nif USE_X11\nbin_PROGRAMS \t\t\t+= putsurface\nputsurface_SOURCES\t\t= putsurface_x11.c\nputsurface_CFLAGS\t\t= $(X11_CFLAGS) $(TEST_CFLAGS)\nputsurface_LDADD\t\t= $(X11_LIBS) $(LIBVA_X11_LIBS) $(TEST_LIBS)\nendif\n\nif USE_WAYLAND\nbin_PROGRAMS\t\t\t+= putsurface_wayland\nputsurface_wayland_SOURCES\t= putsurface_wayland.c\nputsurface_wayland_CFLAGS\t= $(WAYLAND_CFLAGS) $(TEST_CFLAGS)\nputsurface_wayland_LDADD\t= $(WAYLAND_LIBS) $(LIBVA_WAYLAND_LIBS) $(TEST_LIBS)\nendif\n\nEXTRA_DIST = putsurface_common.c\n\nvalgrind:\t$(bin_PROGRAMS)\n\tfor a in $(bin_PROGRAMS); do \\\n\t\tvalgrind --leak-check=full --show-reachable=yes .libs/$$a; \\\n\tdone\n"
  },
  {
    "path": "putsurface/meson.build",
    "content": "deps = [\n  libva_display_dep,\n  threads,\n]\n\nif use_x11\n  executable('putsurface', [ 'putsurface_x11.c' ],\n             dependencies: deps,\n             install: true)\nendif\nif use_wayland\n  executable('putsurface_wayland', [ 'putsurface_wayland.c' ],\n             dependencies: deps,\n             install: true)\nendif\n"
  },
  {
    "path": "putsurface/putsurface_common.c",
    "content": "/*\n * Copyright (c) 2008-2009 Intel Corporation. All Rights Reserved.\n *\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the\n * \"Software\"), to deal in the Software without restriction, including\n * without limitation the rights to use, copy, modify, merge, publish,\n * distribute, sub license, and/or sell copies of the Software, and to\n * permit persons to whom the Software is furnished to do so, subject to\n * the following conditions:\n *\n * The above copyright notice and this permission notice (including the\n * next paragraph) shall be included in all copies or substantial portions\n * of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR\n * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n#include <stdio.h>\n#include <string.h>\n#include <stdlib.h>\n#include <stdint.h>\n#include <getopt.h>\n\n#include <sys/time.h>\n\n#include <unistd.h>\n\n#include <sys/types.h>\n#include <sys/stat.h>\n#include <fcntl.h>\n#include <assert.h>\n#include <pthread.h>\n\n/*currently, if XCheckWindowEvent was called  in more than one thread, it would cause\n * XIO:  fatal IO error 11 (Resource temporarily unavailable) on X server \":0.0\"\n *       after 87 requests (83 known processed) with 0 events remaining.\n *\n *       X Error of failed request:  BadGC (invalid GC parameter)\n *       Major opcode of failed request:  60 (X_FreeGC)\n *       Resource id in failed request:  0x600034\n *       Serial number of failed request:  398\n *       Current serial number in output stream:  399\n * The root cause is unknown. */\n\n#define CHECK_VASTATUS(va_status,func)                                  \\\nif (va_status != VA_STATUS_SUCCESS) {                                   \\\n    fprintf(stderr,\"%s:%s (%d) failed,exit\\n\", __func__, func, __LINE__); \\\n    exit(1);                                                            \\\n}\n#include \"loadsurface.h\"\n\n#define SURFACE_NUM 16\n\nstatic  void *win_display;\nstatic  VADisplay va_dpy;\nstatic  VAImageFormat *va_image_formats;\nstatic  int va_num_image_formats = -1;\nstatic  VAConfigID vpp_config_id = VA_INVALID_ID;\nstatic  VASurfaceAttrib *va_surface_attribs;\nstatic  int va_num_surface_attribs = -1;\nstatic  VASurfaceID surface_id[SURFACE_NUM];\nstatic  pthread_mutex_t surface_mutex[SURFACE_NUM];\n\nstatic  void *drawable_thread0, *drawable_thread1;\nstatic  int surface_width = 352, surface_height = 288;\nstatic  int win_x = 0, win_y = 0;\nstatic  int win_width = 352, win_height = 288;\nstatic  int frame_rate = 0;\nstatic  unsigned long long frame_num_total = ~0;\nstatic  int check_event = 1;\nstatic  int put_pixmap = 0;\nstatic  int test_clip = 0;\nstatic  int display_field = VA_FRAME_PICTURE;\nstatic  pthread_mutex_t gmutex;\nstatic  int box_width = 32;\nstatic  int multi_thread = 0;\nstatic  int verbose = 0;\nstatic  int test_color_conversion = 0;\nstatic  int csc_src_fourcc = 0, csc_dst_fourcc = 0;\nstatic  VAImage csc_dst_fourcc_image;\nstatic  VASurfaceID csc_render_surface;\n\n\ntypedef struct {\n    char* fmt_str;\n    unsigned int fourcc;\n} fourcc_map;\nfourcc_map va_fourcc_map[] = {\n    {\"YUYV\", VA_FOURCC_YUY2},\n    {\"YUY2\", VA_FOURCC_YUY2},\n    {\"NV12\", VA_FOURCC_NV12},\n    {\"YV12\", VA_FOURCC_YV12},\n    {\"BGRA\", VA_FOURCC_BGRA},\n    {\"RGBA\", VA_FOURCC_RGBA},\n    {\"BGRX\", VA_FOURCC_BGRX},\n    {\"RGBX\", VA_FOURCC_RGBX},\n};\nunsigned int map_str_to_vafourcc(char * str)\n{\n    int i;\n    for (i = 0; i < sizeof(va_fourcc_map) / sizeof(fourcc_map); i++) {\n        if (!strcmp(va_fourcc_map[i].fmt_str, str)) {\n            return va_fourcc_map[i].fourcc;\n        }\n    }\n\n    return 0;\n\n}\nchar* map_vafourcc_to_str(unsigned int format)\n{\n    static char unknown_format[] = \"unknown-format\";\n    int i;\n    for (i = 0; i < sizeof(va_fourcc_map) / sizeof(fourcc_map); i++) {\n        if (va_fourcc_map[i].fourcc == format) {\n            return va_fourcc_map[i].fmt_str;\n        }\n    }\n\n    return unknown_format;\n\n}\n\nstatic int\nva_value_equals(const VAGenericValue *v1, const VAGenericValue *v2)\n{\n    if (v1->type != v2->type)\n        return 0;\n\n    switch (v1->type) {\n    case VAGenericValueTypeInteger:\n        return v1->value.i == v2->value.i;\n    case VAGenericValueTypeFloat:\n        return v1->value.f == v2->value.f;\n    case VAGenericValueTypePointer:\n        return v1->value.p == v2->value.p;\n    case VAGenericValueTypeFunc:\n        return v1->value.fn == v2->value.fn;\n    }\n    return 0;\n}\n\nstatic int\nensure_image_formats(void)\n{\n    VAStatus va_status;\n    VAImageFormat *image_formats;\n    int num_image_formats;\n\n    if (va_num_image_formats >= 0)\n        return va_num_image_formats;\n\n    num_image_formats = vaMaxNumImageFormats(va_dpy);\n    if (num_image_formats == 0)\n        return 0;\n\n    image_formats = (VAImageFormat *)malloc(num_image_formats * sizeof(*image_formats));\n    if (!image_formats)\n        return 0;\n\n    va_status = vaQueryImageFormats(va_dpy, image_formats, &num_image_formats);\n    CHECK_VASTATUS(va_status, \"vaQuerySurfaceAttributes()\");\n\n    va_image_formats = image_formats;\n    va_num_image_formats = num_image_formats;\n    return num_image_formats;\n}\n\nstatic const VAImageFormat *\nlookup_image_format(uint32_t fourcc)\n{\n    int i;\n\n    if (!ensure_image_formats())\n        return NULL;\n\n    for (i = 0; i < va_num_image_formats; i++) {\n        const VAImageFormat * const image_format = &va_image_formats[i];\n        if (image_format->fourcc == fourcc)\n            return image_format;\n    }\n    return NULL;\n}\n\nstatic int\nensure_surface_attribs(void)\n{\n    VAStatus va_status;\n    VASurfaceAttrib *surface_attribs;\n    unsigned int num_image_formats, num_surface_attribs;\n\n    if (va_num_surface_attribs >= 0)\n        return va_num_surface_attribs;\n\n    num_image_formats = vaMaxNumImageFormats(va_dpy);\n    if (num_image_formats == 0)\n        return 0;\n\n    va_status = vaCreateConfig(va_dpy, VAProfileNone, VAEntrypointVideoProc,\n                               NULL, 0, &vpp_config_id);\n    CHECK_VASTATUS(va_status, \"vaCreateConfig()\");\n\n    /* Guess the number of surface attributes, thus including any\n       pixel-format supported by the VA driver */\n    num_surface_attribs = VASurfaceAttribCount + num_image_formats;\n    surface_attribs = (VASurfaceAttrib *)malloc(num_surface_attribs * sizeof(*surface_attribs));\n    if (!surface_attribs)\n        return 0;\n\n    va_status = vaQuerySurfaceAttributes(va_dpy, vpp_config_id,\n                                         surface_attribs, &num_surface_attribs);\n    if (va_status == VA_STATUS_SUCCESS)\n        va_surface_attribs =  surface_attribs;\n    else if (va_status == VA_STATUS_ERROR_MAX_NUM_EXCEEDED) {\n        va_surface_attribs = (VASurfaceAttrib *)realloc(surface_attribs,\n                             num_surface_attribs * sizeof(*va_surface_attribs));\n        if (!va_surface_attribs) {\n            free(surface_attribs);\n            return 0;\n        }\n        va_status = vaQuerySurfaceAttributes(va_dpy, vpp_config_id,\n                                             va_surface_attribs, &num_surface_attribs);\n    }\n    CHECK_VASTATUS(va_status, \"vaQuerySurfaceAttributes()\");\n    va_num_surface_attribs = num_surface_attribs;\n    return num_surface_attribs;\n}\n\nstatic const VASurfaceAttrib *\nlookup_surface_attrib(VASurfaceAttribType type, const VAGenericValue *value)\n{\n    int i;\n\n    if (!ensure_surface_attribs())\n        return NULL;\n\n    for (i = 0; i < va_num_surface_attribs; i++) {\n        const VASurfaceAttrib * const surface_attrib = &va_surface_attribs[i];\n        if (surface_attrib->type != type)\n            continue;\n        if (!(surface_attrib->flags & VA_SURFACE_ATTRIB_SETTABLE))\n            continue;\n        if (va_value_equals(&surface_attrib->value, value))\n            return surface_attrib;\n    }\n    return NULL;\n}\n\nint csc_preparation()\n{\n    VAStatus va_status;\n\n    // 1. make sure dst fourcc is supported for vaImage\n    if (!lookup_image_format(csc_dst_fourcc)) {\n        test_color_conversion = 0;\n        printf(\"VA driver doesn't support %s image, skip additional color conversion\\n\",  map_vafourcc_to_str(csc_dst_fourcc));\n        return test_color_conversion;\n    }\n\n    // 2. make sure src_fourcc is supported for vaSurface\n    VASurfaceAttrib surface_attribs[1], * const s_attrib = &surface_attribs[0];\n    s_attrib->type = VASurfaceAttribPixelFormat;\n    s_attrib->flags = VA_SURFACE_ATTRIB_SETTABLE;\n    s_attrib->value.type = VAGenericValueTypeInteger;\n    s_attrib->value.value.i = csc_src_fourcc;\n\n    if (!lookup_surface_attrib(VASurfaceAttribPixelFormat, &s_attrib->value)) {\n        printf(\"VA driver doesn't support %s surface, skip additional color conversion\\n\",  map_vafourcc_to_str(csc_src_fourcc));\n        test_color_conversion = 0;\n        goto cleanup;\n    }\n\n    // 3 create all objs required by csc\n    // 3.1 vaSurface with src fourcc\n    va_status = vaCreateSurfaces(\n                    va_dpy,\n                    VA_RT_FORMAT_YUV420, surface_width, surface_height,\n                    &surface_id[0], SURFACE_NUM,\n                    surface_attribs, 1\n                );\n    CHECK_VASTATUS(va_status, \"vaCreateSurfaces\");\n\n    // 3.2 vaImage with dst fourcc\n    VAImageFormat image_format;\n    image_format.fourcc = csc_dst_fourcc;\n    image_format.byte_order = VA_LSB_FIRST;\n    image_format.bits_per_pixel = 16;\n\n    va_status = vaCreateImage(va_dpy, &image_format,\n                              surface_width, surface_height,\n                              &csc_dst_fourcc_image);\n    CHECK_VASTATUS(va_status, \"vaCreateImage\");\n\n\n    // 3.3 create a temp VASurface for final rendering(vaPutSurface)\n    s_attrib->value.value.i = VA_FOURCC_NV12;\n    va_status = vaCreateSurfaces(va_dpy, VA_RT_FORMAT_YUV420,\n                                 surface_width, surface_height,\n                                 &csc_render_surface, 1,\n                                 surface_attribs, 1);\n    CHECK_VASTATUS(va_status, \"vaCreateSurfaces\");\n\n\ncleanup:\n    return test_color_conversion;\n}\n\nstatic VASurfaceID get_next_free_surface(int *index)\n{\n    VASurfaceStatus surface_status;\n    int i;\n\n    assert(index);\n\n    if (multi_thread == 0) {\n        i = *index;\n        i++;\n        if (i == SURFACE_NUM)\n            i = 0;\n        *index = i;\n\n        return surface_id[i];\n    }\n\n    for (i = 0; i < SURFACE_NUM; i++) {\n        surface_status = (VASurfaceStatus)0;\n        vaQuerySurfaceStatus(va_dpy, surface_id[i], &surface_status);\n        if (surface_status == VASurfaceReady) {\n            if (0 == pthread_mutex_trylock(&surface_mutex[i])) {\n                *index = i;\n                break;\n            }\n        }\n    }\n\n    if (i == SURFACE_NUM)\n        return VA_INVALID_SURFACE;\n    else\n        return surface_id[i];\n}\n\nstatic int upload_source_YUV_once_for_all()\n{\n    int box_width_loc = 8;\n    int row_shift_loc = 0;\n    int i;\n\n    for (i = 0; i < SURFACE_NUM; i++) {\n        printf(\"\\rLoading data into surface %d.....\", i);\n        upload_surface(va_dpy, surface_id[i], box_width_loc, row_shift_loc, 0);\n\n        row_shift_loc++;\n        if (row_shift_loc == (2 * box_width_loc)) row_shift_loc = 0;\n    }\n    printf(\"\\n\");\n\n    return 0;\n}\n\n/*\n * Helper function for profiling purposes\n */\nstatic unsigned long get_tick_count(void)\n{\n    struct timeval tv;\n    if (gettimeofday(&tv, NULL))\n        return 0;\n    return tv.tv_usec / 1000 + tv.tv_sec * 1000;\n}\n\nstatic void update_clipbox(VARectangle *cliprects, int width, int height)\n{\n    if (test_clip == 0)\n        return;\n\n    srand((unsigned)time(NULL));\n\n    cliprects[0].x = (rand() % width);\n    cliprects[0].y = (rand() % height);\n    cliprects[0].width = (rand() % (width - cliprects[0].x));\n    cliprects[0].height = (rand() % (height - cliprects[0].y));\n\n    cliprects[1].x = (rand() % width);\n    cliprects[1].y = (rand() % height);\n    cliprects[1].width = (rand() % (width - cliprects[1].x));\n    cliprects[1].height = (rand() % (height - cliprects[1].y));\n    printf(\"\\nTest clip (%d,%d, %d x %d) and (%d,%d, %d x %d) \\n\",\n           cliprects[0].x, cliprects[0].y, cliprects[0].width, cliprects[0].height,\n           cliprects[1].x, cliprects[1].y, cliprects[1].width, cliprects[1].height);\n}\n\nstatic void* putsurface_thread(void *data)\n{\n    int width = win_width, height = win_height;\n    void *drawable = data;\n    int quit = 0;\n    VAStatus vaStatus;\n    int row_shift = 0;\n    int index = 0;\n    unsigned int frame_num = 0, start_time, putsurface_time;\n    VARectangle cliprects[2]; /* client supplied clip list */\n    int continue_display = 0;\n\n    if (drawable == drawable_thread0)\n        printf(\"Enter into thread0\\n\\n\");\n    if (drawable == drawable_thread1)\n        printf(\"Enter into thread1\\n\\n\");\n\n    putsurface_time = 0;\n    while (!quit) {\n        VASurfaceID surface_id = VA_INVALID_SURFACE;\n\n        while (surface_id == VA_INVALID_SURFACE)\n            surface_id = get_next_free_surface(&index);\n\n        if (verbose) printf(\"Thread: %p Display surface 0x%x,\\n\", drawable, surface_id);\n\n        if (multi_thread)\n            upload_surface(va_dpy, surface_id, box_width, row_shift, display_field);\n\n        if (check_event)\n            pthread_mutex_lock(&gmutex);\n\n        start_time = get_tick_count();\n        if ((continue_display == 0) && getenv(\"FRAME_STOP\")) {\n            char c;\n            printf(\"Press any key to display frame %d...(c/C to continue)\\n\", frame_num);\n            c = getchar();\n            if (c == 'c' || c == 'C')\n                continue_display = 1;\n        }\n        if (test_color_conversion) {\n            static int _put_surface_count = 0;\n            if (_put_surface_count++ % 50 == 0) {\n                printf(\"do additional colorcoversion from %s to %s\\n\", map_vafourcc_to_str(csc_src_fourcc), map_vafourcc_to_str(csc_dst_fourcc));\n            }\n            // get image from surface, csc_src_fourcc to csc_dst_fourcc conversion happens\n            vaStatus = vaGetImage(va_dpy, surface_id, 0, 0,\n                                  surface_width, surface_height, csc_dst_fourcc_image.image_id);\n            CHECK_VASTATUS(vaStatus, \"vaGetImage\");\n\n            // render csc_dst_fourcc image to temp surface\n            vaStatus = vaPutImage(va_dpy, csc_render_surface, csc_dst_fourcc_image.image_id,\n                                  0, 0, surface_width, surface_height,\n                                  0, 0, surface_width, surface_height);\n            CHECK_VASTATUS(vaStatus, \"vaPutImage\");\n\n            // render the temp surface, it should be same with original surface without color conversion test\n            vaStatus = vaPutSurface(va_dpy, csc_render_surface, CAST_DRAWABLE(drawable),\n                                    0, 0, surface_width, surface_height,\n                                    0, 0, width, height,\n                                    (test_clip == 0) ? NULL : &cliprects[0],\n                                    (test_clip == 0) ? 0 : 2,\n                                    display_field);\n            CHECK_VASTATUS(vaStatus, \"vaPutSurface\");\n\n        } else {\n            vaStatus = vaPutSurface(va_dpy, surface_id, CAST_DRAWABLE(drawable),\n                                    0, 0, surface_width, surface_height,\n                                    0, 0, width, height,\n                                    (test_clip == 0) ? NULL : &cliprects[0],\n                                    (test_clip == 0) ? 0 : 2,\n                                    display_field);\n            CHECK_VASTATUS(vaStatus, \"vaPutSurface\");\n        }\n\n        putsurface_time += (get_tick_count() - start_time);\n\n        if (check_event)\n            pthread_mutex_unlock(&gmutex);\n\n        pthread_mutex_unlock(&surface_mutex[index]); /* locked in get_next_free_surface */\n\n        if ((frame_num % 0xff) == 0) {\n            fprintf(stderr, \"%.2f FPS             \\r\", 256000.0 / (float)putsurface_time);\n            putsurface_time = 0;\n            update_clipbox(cliprects, width, height);\n        }\n\n        if (check_event)\n            check_window_event(win_display, drawable, &width, &height, &quit);\n\n        if (multi_thread) { /* reload surface content */\n            row_shift++;\n            if (row_shift == (2 * box_width)) row_shift = 0;\n        }\n\n        if (frame_rate != 0) /* rough framerate control */\n            usleep(1000 / frame_rate * 1000);\n\n        frame_num++;\n        if (frame_num >= frame_num_total)\n            quit = 1;\n    }\n\n    if (drawable == drawable_thread1)\n        pthread_exit(NULL);\n\n    return 0;\n}\nint main(int argc, char **argv)\n{\n    int major_ver, minor_ver;\n    VAStatus va_status;\n    pthread_t thread1;\n    int ret;\n    int c;\n    int i;\n    char str_src_fmt[5], str_dst_fmt[5];\n\n    static struct option long_options[] = {\n        {\"fmt1\",  required_argument,       NULL, '1'},\n        {\"fmt2\",  required_argument,       NULL, '2'},\n        {0, 0, 0, 0}\n    };\n\n    while ((c = getopt_long(argc, argv, \"w:h:g:r:d:f:tcep?n:1:2:v\", long_options, NULL)) != EOF) {\n        switch (c) {\n        case '?':\n            printf(\"putsurface <options>\\n\");\n            printf(\"           -g <widthxheight+x_location+y_location> window geometry\\n\");\n            printf(\"           -w/-h resolution of surface\\n\");\n            printf(\"           -r <framerate>\\n\");\n            printf(\"           -d the dimension of black/write square box, default is 32\\n\");\n            printf(\"           -t multi-threads\\n\");\n            printf(\"           -c test clipbox\\n\");\n            printf(\"           -f <1/2> top field, or bottom field\\n\");\n            printf(\"           -1 source format (fourcc) for color conversion test\\n\");\n            printf(\"           -2 dest   format (fourcc) for color conversion test\\n\");\n            printf(\"           --fmt1 same to -1\\n\");\n            printf(\"           --fmt2 same to -2\\n\");\n            printf(\"           -v verbose output\\n\");\n            exit(0);\n            break;\n        case 'g':\n            ret = sscanf(optarg, \"%dx%d+%d+%d\", &win_width, &win_height, &win_x, &win_y);\n            if (ret != 4) {\n                printf(\"invalid window geometry, must be widthxheight+x_location+y_location\\n\");\n                exit(0);\n            } else\n                printf(\"Create window at (%d, %d), width = %d, height = %d\\n\",\n                       win_x, win_y, win_width, win_height);\n            break;\n        case 'r':\n            frame_rate = atoi(optarg);\n            break;\n        case 'w':\n            surface_width = atoi(optarg);\n            break;\n        case 'h':\n            surface_height = atoi(optarg);\n            break;\n        case 'n':\n            frame_num_total = atoi(optarg);\n            break;\n        case 'd':\n            box_width = atoi(optarg);\n            break;\n        case 't':\n            multi_thread = 1;\n            printf(\"Two threads to do vaPutSurface\\n\");\n            break;\n        case 'e':\n            check_event = 0;\n            break;\n        case 'p':\n            put_pixmap = 1;\n            break;\n        case 'c':\n            test_clip = 1;\n            break;\n        case 'f':\n            if (atoi(optarg) == 1) {\n                printf(\"Display TOP field\\n\");\n                display_field = VA_TOP_FIELD;\n            } else if (atoi(optarg) == 2) {\n                printf(\"Display BOTTOM field\\n\");\n                display_field = VA_BOTTOM_FIELD;\n            } else\n                printf(\"The validate input for -f is: 1(top field)/2(bottom field)\\n\");\n            break;\n        case '1':\n            sscanf(optarg, \"%5s\", str_src_fmt);\n            csc_src_fourcc = map_str_to_vafourcc(str_src_fmt);\n\n            if (!csc_src_fourcc) {\n                printf(\"invalid fmt1: %s\\n\", str_src_fmt);\n                exit(0);\n            }\n            break;\n        case '2':\n            sscanf(optarg, \"%5s\", str_dst_fmt);\n            csc_dst_fourcc = map_str_to_vafourcc(str_dst_fmt);\n\n            if (!csc_dst_fourcc) {\n                printf(\"invalid fmt1: %s\\n\", str_dst_fmt);\n                exit(0);\n            }\n            break;\n        case 'v':\n            verbose = 1;\n            printf(\"Enable verbose output\\n\");\n            break;\n        }\n    }\n\n    if (csc_src_fourcc && csc_dst_fourcc) {\n        test_color_conversion = 1;\n    }\n\n    win_display = (void *)open_display();\n    if (win_display == NULL) {\n        fprintf(stderr, \"Can't open the connection of display!\\n\");\n        exit(-1);\n    }\n    create_window(win_display, win_x, win_y, win_width, win_height);\n\n    va_dpy = vaGetDisplay(win_display);\n    va_status = vaInitialize(va_dpy, &major_ver, &minor_ver);\n    CHECK_VASTATUS(va_status, \"vaInitialize\");\n\n    if (test_color_conversion) {\n        ret = csc_preparation();\n    }\n    if (!test_color_conversion || !ret) {\n        va_status = vaCreateSurfaces(\n                        va_dpy,\n                        VA_RT_FORMAT_YUV420, surface_width, surface_height,\n                        &surface_id[0], SURFACE_NUM,\n                        NULL, 0\n                    );\n    }\n    CHECK_VASTATUS(va_status, \"vaCreateSurfaces\");\n    if (multi_thread == 0) /* upload the content for all surfaces */\n        upload_source_YUV_once_for_all();\n\n    if (check_event)\n        pthread_mutex_init(&gmutex, NULL);\n\n    for (i = 0; i < SURFACE_NUM; i++)\n        pthread_mutex_init(&surface_mutex[i], NULL);\n\n    if (multi_thread == 1)\n        ret = pthread_create(&thread1, NULL, putsurface_thread, (void*)drawable_thread1);\n\n    putsurface_thread((void *)drawable_thread0);\n\n    if (multi_thread == 1)\n        pthread_join(thread1, (void **)&ret);\n    printf(\"thread1 is free\\n\");\n\n    if (test_color_conversion) {\n        // destroy temp surface/image\n        va_status = vaDestroySurfaces(va_dpy, &csc_render_surface, 1);\n        CHECK_VASTATUS(va_status, \"vaDestroySurfaces\");\n\n        va_status = vaDestroyImage(va_dpy, csc_dst_fourcc_image.image_id);\n        CHECK_VASTATUS(va_status, \"vaDestroyImage\");\n    }\n\n    if (vpp_config_id != VA_INVALID_ID) {\n        vaDestroyConfig(va_dpy, vpp_config_id);\n        vpp_config_id = VA_INVALID_ID;\n    }\n\n    vaDestroySurfaces(va_dpy, &surface_id[0], SURFACE_NUM);\n    vaTerminate(va_dpy);\n\n    free(va_image_formats);\n    free(va_surface_attribs);\n    close_display(win_display);\n\n    return 0;\n}\n"
  },
  {
    "path": "putsurface/putsurface_wayland.c",
    "content": "/*\n * Copyright (c) 2011 Intel Corporation. All Rights Reserved.\n *\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the\n * \"Software\"), to deal in the Software without restriction, including\n * without limitation the rights to use, copy, modify, merge, publish,\n * distribute, sub license, and/or sell copies of the Software, and to\n * permit persons to whom the Software is furnished to do so, subject to\n * the following conditions:\n *\n * The above copyright notice and this permission notice (including the\n * next paragraph) shall be included in all copies or substantial portions\n * of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR\n * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n#include <stddef.h>\n#include <errno.h>\n#include <sys/select.h>\n#include <assert.h>\n#ifdef IN_LIBVA\n# include \"va/wayland/va_wayland.h\"\n#else\n# include <va/va_wayland.h>\n#endif\n#include <wayland-client.h>\n\nstatic void *open_display(void);\nstatic void close_display(void *win_display);\nstatic int create_window(void *win_display,\n                         int x, int y, int width, int height);\nstatic int check_window_event(void *win_display, void *drawable,\n                              int *width, int *height, int *quit);\n\nstruct display;\nstruct drawable;\n\nstatic VAStatus\nva_put_surface(\n    VADisplay           dpy,\n    struct drawable    *wl_drawable,\n    VASurfaceID         va_surface,\n    const VARectangle  *src_rect,\n    const VARectangle  *dst_rect,\n    const VARectangle  *cliprects,\n    unsigned int        num_cliprects,\n    unsigned int        flags\n);\n\n/* Glue code for the current PutSurface test design */\n#define CAST_DRAWABLE(a)  (struct drawable *)(a)\n\nstatic inline VADisplay\nvaGetDisplay(VANativeDisplay native_dpy)\n{\n    return vaGetDisplayWl(native_dpy);\n}\n\nstatic VAStatus\nvaPutSurface(\n    VADisplay           dpy,\n    VASurfaceID         surface,\n    struct drawable    *wl_drawable,\n    short               src_x,\n    short               src_y,\n    unsigned short      src_w,\n    unsigned short      src_h,\n    short               dst_x,\n    short               dst_y,\n    unsigned short      dst_w,\n    unsigned short      dst_h,\n    const VARectangle  *cliprects,\n    unsigned int        num_cliprects,\n    unsigned int        flags\n)\n{\n    VARectangle src_rect, dst_rect;\n\n    src_rect.x      = src_x;\n    src_rect.y      = src_y;\n    src_rect.width  = src_w;\n    src_rect.height = src_h;\n\n    dst_rect.x      = src_x;\n    dst_rect.y      = src_y;\n    dst_rect.width  = src_w;\n    dst_rect.height = src_h;\n    return va_put_surface(dpy, wl_drawable, surface, &src_rect, &dst_rect,\n                          cliprects, num_cliprects, flags);\n}\n\n#include \"putsurface_common.c\"\n\nstruct display {\n    struct wl_display  *display;\n    struct wl_compositor *compositor;\n    struct wl_shell    *shell;\n    struct wl_registry *registry;\n    int                 event_fd;\n};\n\nstruct drawable {\n    struct wl_display  *display;\n    struct wl_surface  *surface;\n    unsigned int        redraw_pending  : 1;\n};\n\nstatic void\nframe_redraw_callback(void *data, struct wl_callback *callback, uint32_t time)\n{\n    struct drawable * const drawable = data;\n\n    drawable->redraw_pending = 0;\n    wl_callback_destroy(callback);\n}\n\nstatic const struct wl_callback_listener frame_callback_listener = {\n    frame_redraw_callback\n};\n\nstatic VAStatus\nva_put_surface(\n    VADisplay           dpy,\n    struct drawable    *wl_drawable,\n    VASurfaceID         va_surface,\n    const VARectangle  *src_rect,\n    const VARectangle  *dst_rect,\n    const VARectangle  *cliprects,\n    unsigned int        num_cliprects,\n    unsigned int        flags\n)\n{\n    struct display *d;\n    struct wl_callback *callback;\n    VAStatus va_status;\n    struct wl_buffer *buffer;\n    int ret = 0;\n\n    if (!wl_drawable)\n        return VA_STATUS_ERROR_INVALID_SURFACE;\n\n    d = wl_display_get_user_data(wl_drawable->display);\n    if (!d)\n        return VA_STATUS_ERROR_INVALID_DISPLAY;\n\n    /* Wait for the previous frame to complete redraw */\n    if (wl_drawable->redraw_pending) {\n        wl_display_flush(d->display);\n        while (wl_drawable->redraw_pending && ret >= 0)\n            ret = wl_display_dispatch(wl_drawable->display);\n    }\n\n    va_status = vaGetSurfaceBufferWl(va_dpy, va_surface, VA_FRAME_PICTURE, &buffer);\n    if (va_status != VA_STATUS_SUCCESS)\n        return va_status;\n\n    wl_surface_attach(wl_drawable->surface, buffer, 0, 0);\n    wl_surface_damage(\n        wl_drawable->surface,\n        dst_rect->x, dst_rect->y, dst_rect->width, dst_rect->height\n    );\n\n    wl_display_flush(d->display);\n    wl_drawable->redraw_pending = 1;\n    callback = wl_surface_frame(wl_drawable->surface);\n    wl_surface_commit(wl_drawable->surface);\n    wl_callback_add_listener(callback, &frame_callback_listener, wl_drawable);\n    return VA_STATUS_SUCCESS;\n}\n\nstatic void\nregistry_handle_global(\n    void               *data,\n    struct wl_registry *registry,\n    uint32_t            id,\n    const char         *interface,\n    uint32_t            version\n)\n{\n    struct display * const d = data;\n\n    if (strcmp(interface, \"wl_compositor\") == 0)\n        d->compositor =\n            wl_registry_bind(registry, id, &wl_compositor_interface, 1);\n    else if (strcmp(interface, \"wl_shell\") == 0)\n        d->shell = wl_registry_bind(registry, id, &wl_shell_interface, 1);\n}\n\nstatic const struct wl_registry_listener registry_listener = {\n    registry_handle_global,\n    NULL,\n};\n\nstatic void *\nopen_display(void)\n{\n    struct display *d;\n\n    d = calloc(1, sizeof * d);\n    if (!d)\n        return NULL;\n\n    d->display = wl_display_connect(NULL);\n    if (!d->display) {\n        free(d);\n        return NULL;\n    }\n\n    wl_display_set_user_data(d->display, d);\n    d->registry = wl_display_get_registry(d->display);\n    wl_registry_add_listener(d->registry, &registry_listener, d);\n    d->event_fd = wl_display_get_fd(d->display);\n    wl_display_dispatch(d->display);\n    return d->display;\n}\n\nstatic void\nclose_display(void *win_display)\n{\n    struct display * const d = wl_display_get_user_data(win_display);\n\n    if (d->shell) {\n        wl_shell_destroy(d->shell);\n        d->shell = NULL;\n    }\n\n    if (d->compositor) {\n        wl_compositor_destroy(d->compositor);\n        d->compositor = NULL;\n    }\n\n    if (d->display) {\n        wl_display_disconnect(d->display);\n        d->display = NULL;\n    }\n    free(d);\n}\n\nstatic int\ncreate_window(void *win_display, int x, int y, int width, int height)\n{\n    struct wl_display * const display = win_display;\n    struct display * const d = wl_display_get_user_data(display);\n    struct wl_surface *surface1, *surface2;\n    struct wl_shell_surface *shell_surface;\n    struct wl_shell_surface *shell_surface_2;\n    struct drawable *drawable1, *drawable2;\n\n    surface1 = wl_compositor_create_surface(d->compositor);\n    shell_surface = wl_shell_get_shell_surface(d->shell, surface1);\n    wl_shell_surface_set_toplevel(shell_surface);\n\n    drawable1 = malloc(sizeof(*drawable1));\n    assert(drawable1);\n    drawable1->display          = display;\n    drawable1->surface          = surface1;\n    drawable1->redraw_pending   = 0;\n\n    /* global out */\n    drawable_thread0 = drawable1;\n\n    if (multi_thread == 0)\n        return 0;\n\n    surface2 = wl_compositor_create_surface(d->compositor);\n    shell_surface_2 = wl_shell_get_shell_surface(d->shell, surface2);\n    wl_shell_surface_set_toplevel(shell_surface_2);\n\n    drawable2 = malloc(sizeof(*drawable2));\n    assert(drawable2);\n    drawable2->display          = display;\n    drawable2->surface          = surface2;\n    drawable2->redraw_pending   = 0;\n\n    /* global out */\n    drawable_thread1 = drawable2;\n    return 0;\n}\n\nstatic int\ncheck_window_event(\n    void *win_display,\n    void *drawable,\n    int  *width,\n    int  *height,\n    int  *quit\n)\n{\n    struct wl_display * const display = win_display;\n    struct display * const d = wl_display_get_user_data(display);\n    struct timeval tv;\n    fd_set rfds;\n    int retval;\n\n    if (check_event == 0)\n        return 0;\n\n    tv.tv_sec  = 0;\n    tv.tv_usec = 0;\n    do {\n        FD_ZERO(&rfds);\n        FD_SET(d->event_fd, &rfds);\n\n        retval = select(d->event_fd + 1, &rfds, NULL, NULL, &tv);\n        if (retval < 0) {\n            perror(\"select\");\n            break;\n        }\n        if (retval == 1)\n            wl_display_dispatch(d->display);\n    } while (retval > 0);\n\n#if 0\n    /* bail on any focused key press */\n    if (event.type == KeyPress) {\n        *quit = 1;\n        return 0;\n    }\n#endif\n\n#if 0\n    /* rescale the video to fit the window */\n    if (event.type == ConfigureNotify) {\n        *width = event.xconfigure.width;\n        *height = event.xconfigure.height;\n        printf(\"Scale window to %dx%d\\n\", width, height);\n    }\n#endif\n    return 0;\n}\n"
  },
  {
    "path": "putsurface/putsurface_x11.c",
    "content": "/*\n * Copyright (c) 2008-2009 Intel Corporation. All Rights Reserved.\n *\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the\n * \"Software\"), to deal in the Software without restriction, including\n * without limitation the rights to use, copy, modify, merge, publish,\n * distribute, sub license, and/or sell copies of the Software, and to\n * permit persons to whom the Software is furnished to do so, subject to\n * the following conditions:\n *\n * The above copyright notice and this permission notice (including the\n * next paragraph) shall be included in all copies or substantial portions\n * of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR\n * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n#include <X11/Xlib.h>\n#include <X11/Xutil.h>\n#include <va/va_x11.h>\n\nstatic  Window window_thread0, window_thread1;\nstatic  GC context_thread0, context_thread1;\nstatic  pthread_mutex_t gmutex;\n\nstatic void *open_display(void);\nstatic void close_display(void *win_display);\nstatic int create_window(void *win_display, int x, int y, int width, int height);\nstatic int check_window_event(void *x11_display, void *drawable, int *width, int *height, int *quit);\n\n#define CAST_DRAWABLE(a)  (Drawable)(a)\n\n#include \"putsurface_common.c\"\n\nstatic void *open_display(void)\n{\n    return XOpenDisplay(NULL);\n}\n\nstatic void close_display(void *win_display)\n{\n    XCloseDisplay(win_display);\n}\n\nstatic Pixmap create_pixmap(void *win_display, int width, int height)\n{\n    Display *x11_display = (Display *)win_display;\n    int screen = DefaultScreen(x11_display);\n    Window root;\n    Pixmap pixmap;\n    XWindowAttributes attr;\n\n    root = RootWindow(x11_display, screen);\n\n    XGetWindowAttributes(x11_display, root, &attr);\n\n    printf(\"Create a pixmap from ROOT window %dx%d, pixmap size %dx%d\\n\\n\", attr.width, attr.height, width, height);\n    pixmap = XCreatePixmap(x11_display, root, width, height,\n                           DefaultDepth(x11_display, DefaultScreen(x11_display)));\n\n    return pixmap;\n}\n\nstatic int create_window(void *win_display, int x, int y, int width, int height)\n{\n    Display *x11_display = (Display *)win_display;\n    int screen = DefaultScreen(x11_display);\n    Window root, win;\n\n    root = RootWindow(x11_display, screen);\n\n    printf(\"Create window0 for thread0\\n\");\n    drawable_thread0 = (void *)XCreateSimpleWindow(x11_display, root, x, y, width, height,\n                       0, 0, WhitePixel(x11_display, 0));\n\n    win = (Window)drawable_thread0;\n    if (drawable_thread0) {\n        XSizeHints sizehints;\n        sizehints.width  = width;\n        sizehints.height = height;\n        sizehints.flags = USSize;\n        XSetNormalHints(x11_display, win, &sizehints);\n        XSetStandardProperties(x11_display, win, \"Thread 0\", \"Thread 0\",\n                               None, (char **)NULL, 0, &sizehints);\n\n        XMapWindow(x11_display, win);\n    }\n    context_thread0 = XCreateGC(x11_display, win, 0, 0);\n    XSelectInput(x11_display, win, KeyPressMask | StructureNotifyMask);\n    XSync(x11_display, False);\n\n    if (put_pixmap) {\n        window_thread0 = (Window)drawable_thread0;\n        drawable_thread0 = (void *)create_pixmap(x11_display, width, height);\n    }\n\n    if (multi_thread == 0)\n        return 0;\n\n    printf(\"Create window1 for thread1\\n\");\n\n    drawable_thread1 = (void *)XCreateSimpleWindow(x11_display, root, width, 0, width, height,\n                       0, 0, WhitePixel(x11_display, 0));\n    win = (Window)drawable_thread1;\n    if (drawable_thread1) {\n        XSizeHints sizehints;\n        sizehints.width  = width;\n        sizehints.height = height;\n        sizehints.flags = USSize;\n        XSetNormalHints(x11_display, win, &sizehints);\n        XSetStandardProperties(x11_display, win, \"Thread 1\", \"Thread 1\",\n                               None, (char **)NULL, 0, &sizehints);\n\n        XMapWindow(x11_display, win);\n    }\n    if (put_pixmap) {\n        window_thread1 = (Window)drawable_thread1;\n        drawable_thread1 = (void *)create_pixmap(x11_display, width, height);\n    }\n\n    context_thread1 = XCreateGC(x11_display, win, 0, 0);\n    XSelectInput(x11_display, win, KeyPressMask | StructureNotifyMask);\n    XSync(x11_display, False);\n\n    return 0;\n}\n\nstatic int check_window_event(void *win_display, void *drawable, int *width, int *height, int *quit)\n{\n    int is_event = 0;\n    XEvent event;\n    Window win = (Window)drawable;\n    Display *x11_display = (Display *)win_display;\n\n\n    if (check_event == 0)\n        return 0;\n\n    pthread_mutex_lock(&gmutex);\n    is_event = XCheckWindowEvent(x11_display, win, StructureNotifyMask | KeyPressMask, &event);\n    pthread_mutex_unlock(&gmutex);\n\n    if (is_event == 0)\n        return 0;\n\n    /* bail on any focused key press */\n    if (event.type == KeyPress) {\n        *quit = 1;\n        return 0;\n    }\n\n#if 0\n    /* rescale the video to fit the window */\n    if (event.type == ConfigureNotify) {\n        *width = event.xconfigure.width;\n        *height = event.xconfigure.height;\n        printf(\"Scale window to %dx%d\\n\", width, height);\n    }\n#endif\n\n    return 0;\n}\n\n\n\n"
  },
  {
    "path": "security.md",
    "content": "# Security Policy\nIntel is committed to rapidly addressing security vulnerabilities affecting our customers and providing clear guidance on the solution, impact, severity and mitigation. \n\n## Reporting a Vulnerability\nPlease report any security vulnerabilities in this project utilizing the guidelines [here](https://www.intel.com/content/www/us/en/security-center/vulnerability-handling-guidelines.html)."
  },
  {
    "path": "style_unify",
    "content": "#!/bin/bash\nfile=$(find . -path ./test/gtest/ -prune -name \"*.[ch]\" -o -name \"*.cpp\")\nfor i in $file\ndo \n    echo $i \n    astyle --style=linux -s4 -c -s -p -U -H -n $i\ndone\n\n\n\n"
  },
  {
    "path": "subprojects/DirectX-Headers.wrap",
    "content": "[wrap-git]\r\ndirectory = DirectX-Headers-1.0\r\n\r\nurl = https://github.com/microsoft/DirectX-Headers.git\r\nrevision = v1.0.2\r\n"
  },
  {
    "path": "test/Makefile.am",
    "content": "AUTOMAKE_OPTIONS = subdir-objects\n\nAM_CXXFLAGS =\t\t\t\t\t\t\t\\\n\t-I$(top_srcdir)/test/gtest/include\t\t\t\\\n\t$(NULL)\n\nAM_CPPFLAGS =\t\t\t\t\t\t\t\\\n\t-DGTEST_HAS_PTHREAD=1\t\t\t\t\t\\\n\t-DGTEST_USE_OWN_TR1_TUPLE=0\t\t\t\t\\\n\t-DGTEST_LANG_CXX11=1\t\t\t\t\t\\\n\t-DGTEST_HAS_TR1_TUPLE=1\t\t\t\t\t\\\n\t-DPTHREADS\t\t\t\t\t\t\\\n\t-DVA_DRIVERS_PATH=\"\\\"$(LIBVA_DRIVERS_PATH)\\\"\"\t\t\\\n\t-std=c++11\t\t\t\t\t\t\\\n\t$(NULL)\n\nAM_LDFLAGS =\t\t\t\t\t\t\t\\\n\t-pthread\t\t\t\t\t\t\\\n\t$(NULL)\n\n# libgtest\nnoinst_LTLIBRARIES = libgtest.la\n\nlibgtest_la_SOURCES =\t\t\t\t\t\t\\\n\tgtest/src/gtest-all.cc\t\t\t\t\t\\\n\tgtest/src/gtest_main.cc\t\t\t\t\t\\\n\t$(NULL)\n\nlibgtest_la_CXXFLAGS =\t\t\t\t\t\t\\\n\t-I$(top_srcdir)/test/gtest\t\t\t\t\\\n\t$(AM_CXXFLAGS)\t\t\t\t\t\t\\\n\t$(NULL)\n\nEXTRA_DIST =\t\t\t\t\t\t\t\\\n\tgtest/docs\t\t\t\t\t\t\\\n\tgtest/include\t\t\t\t\t\t\\\n\tgtest/src/*.cc\t\t\t\t\t\t\\\n\tgtest/src/*.h\t\t\t\t\t\t\\\n\tgtest/README.md\t\t\t\t\t\t\\\n\tgtest/LICENSE\t\t\t\t\t\t\\\n\t$(NULL)\n\n# test_va_api\nbin_PROGRAMS = test_va_api\nnoinst_HEADERS =\t\t\t\t\t\t\\\n\ttest.h\t\t\t\t\t\t\t\\\n\ttest_data.h\t\t\t\t\t\t\\\n\ttest_defs.h\t\t\t\t\t\t\\\n\ttest_streamable.h\t\t\t\t\t\\\n\ttest_utils.h\t\t\t\t\t\t\\\n\ttest_va_api_fixture.h\t\t\t\t\t\\\n\t$(NULL)\n\ntest_va_api_SOURCES =\t\t\t\t\t\t\\\n\ttest_main.cpp\t\t\t\t\t\t\\\n\ttest_internal.cpp\t\t\t\t\t\\\n\ttest_va_api_fixture.cpp\t\t\t\t\t\\\n\ttest_va_api_get_create_config.cpp\t\t\t\\\n\ttest_va_api_config_attribs.cpp\t\t\t\t\\\n\ttest_va_api_createsurfaces.cpp\t\t\t\t\\\n\ttest_va_api_createcontext.cpp\t\t\t\t\\\n\ttest_va_api_createbuffer.cpp\t\t\t\t\\\n\ttest_va_api_display_attribs.cpp\t\t\t\t\\\n\ttest_va_api_get_max_values.cpp\t\t\t\t\\\n\ttest_va_api_init_terminate.cpp\t\t\t\t\\\n\ttest_va_api_query_config.cpp\t\t\t\t\\\n\ttest_va_api_query_vendor.cpp\t\t\t\t\\\n\t$(NULL)\n\ntest_va_api_LDFLAGS =\t\t\t\t\t\t\\\n\t$(LIBVA_LDFLAGS)\t\t\t\t\t\\\n\t$(LIBVA_DRM_LDFLAGS)\t\t\t\t\t\\\n\t$(AM_LDFLAGS)\t\t\t\t\t\t\\\n\t$(NULL)\n\ntest_va_api_LDADD =\t\t\t\t\t\t\\\n\tlibgtest.la\t\t\t\t\t\t\\\n\t$(LIBVA_DEPS_LIBS)\t\t\t\t\t\\\n\t$(LIBVA_DRM_LIBS)\t\t\t\t\t\\\n\t$(NULL)\n\ntest_va_api_CPPFLAGS =\t\t\t\t\t\t\\\n\t$(LIBVA_CFLAGS)\t\t\t\t\t\t\\\n\t$(LIBVA_DRM_CFLAGS)\t\t\t\t\t\\\n\t$(AM_CPPFLAGS)\t\t\t\t\t\t\\\n\t$(NULL)\n\ntest_va_api_CXXFLAGS =\t\t\t\t\t\t\\\n\t-Wall -Werror\t\t\t\t\t\t\\\n\t$(AM_CXXFLAGS)\t\t\t\t\t\t\\\n\t$(NULL)\n\ncheck-local: test_va_api\n\t$(builddir)/test_va_api\n"
  },
  {
    "path": "test/compat_win32.h",
    "content": "/*\r\n * Copyright © Microsoft Corporation\r\n *\r\n * Permission is hereby granted, free of charge, to any person obtaining a\r\n * copy of this software and associated documentation files (the \"Software\"),\r\n * to deal in the Software without restriction, including without limitation\r\n * the rights to use, copy, modify, merge, publish, distribute, sublicense,\r\n * and/or sell copies of the Software, and to permit persons to whom the\r\n * Software is furnished to do so, subject to the following conditions:\r\n *\r\n * The above copyright notice and this permission notice (including the next\r\n * paragraph) shall be included in all copies or substantial portions of the\r\n * Software.\r\n *\r\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL\r\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\r\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\r\n * IN THE SOFTWARE.\r\n */\r\n\r\n#ifndef _COMPAT_WIN32_H_\r\n#define _COMPAT_WIN32_H_\r\n\r\n#include <windows.h>\r\n\r\n#ifdef __cplusplus\r\nextern \"C\" {\r\n#endif\r\n\r\n/* The setenv() function returns zero on success, or -1 on error, with\r\n* errno set to indicate the cause of the error.\r\n*\r\n* SetEnvironmentVariableA Return value\r\n* If the function succeeds, the return value is nonzero.\r\n* If the function fails, the return value is zero.\r\n*/\r\ninline int setenv(const char *varname, const char *value_string, int overwrite)\r\n{\r\n    return SetEnvironmentVariableA(varname, value_string) ? 0 : -1;\r\n}\r\n\r\n/* The unsetenv() function returns zero on success, or -1 on error,\r\n* with errno set to indicate the cause of the error.\r\n* SetEnvironmentVariableA Return value\r\n* If the function succeeds, the return value is nonzero.\r\n* If the function fails, the return value is zero.\r\n*/\r\ninline int unsetenv(const char *varname)\r\n{\r\n    return SetEnvironmentVariableA(varname, NULL) ? 0 : -1;\r\n}\r\n\r\n#ifdef __cplusplus\r\n}\r\n#endif\r\n\r\n#endif /* _COMPAT_WIN32_H_ */\r\n"
  },
  {
    "path": "test/gtest/LICENSE",
    "content": "Copyright 2008, Google Inc.\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n    * Redistributions of source code must retain the above copyright\nnotice, this list of conditions and the following disclaimer.\n    * Redistributions in binary form must reproduce the above\ncopyright notice, this list of conditions and the following disclaimer\nin the documentation and/or other materials provided with the\ndistribution.\n    * Neither the name of Google Inc. nor the names of its\ncontributors may be used to endorse or promote products derived from\nthis software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
  },
  {
    "path": "test/gtest/README.md",
    "content": "\n### Generic Build Instructions ###\n\n#### Setup ####\n\nTo build Google Test and your tests that use it, you need to tell your\nbuild system where to find its headers and source files.  The exact\nway to do it depends on which build system you use, and is usually\nstraightforward.\n\n#### Build ####\n\nSuppose you put Google Test in directory `${GTEST_DIR}`.  To build it,\ncreate a library build target (or a project as called by Visual Studio\nand Xcode) to compile\n\n    ${GTEST_DIR}/src/gtest-all.cc\n\nwith `${GTEST_DIR}/include` in the system header search path and `${GTEST_DIR}`\nin the normal header search path.  Assuming a Linux-like system and gcc,\nsomething like the following will do:\n\n    g++ -isystem ${GTEST_DIR}/include -I${GTEST_DIR} \\\n        -pthread -c ${GTEST_DIR}/src/gtest-all.cc\n    ar -rv libgtest.a gtest-all.o\n\n(We need `-pthread` as Google Test uses threads.)\n\nNext, you should compile your test source file with\n`${GTEST_DIR}/include` in the system header search path, and link it\nwith gtest and any other necessary libraries:\n\n    g++ -isystem ${GTEST_DIR}/include -pthread path/to/your_test.cc libgtest.a \\\n        -o your_test\n\nAs an example, the make/ directory contains a Makefile that you can\nuse to build Google Test on systems where GNU make is available\n(e.g. Linux, Mac OS X, and Cygwin).  It doesn't try to build Google\nTest's own tests.  Instead, it just builds the Google Test library and\na sample test.  You can use it as a starting point for your own build\nscript.\n\nIf the default settings are correct for your environment, the\nfollowing commands should succeed:\n\n    cd ${GTEST_DIR}/make\n    make\n    ./sample1_unittest\n\nIf you see errors, try to tweak the contents of `make/Makefile` to make\nthem go away.  There are instructions in `make/Makefile` on how to do\nit.\n\n### Using CMake ###\n\nGoogle Test comes with a CMake build script (\n[CMakeLists.txt](CMakeLists.txt)) that can be used on a wide range of platforms (\"C\" stands for\ncross-platform.). If you don't have CMake installed already, you can\ndownload it for free from <http://www.cmake.org/>.\n\nCMake works by generating native makefiles or build projects that can\nbe used in the compiler environment of your choice.  The typical\nworkflow starts with:\n\n    mkdir mybuild       # Create a directory to hold the build output.\n    cd mybuild\n    cmake ${GTEST_DIR}  # Generate native build scripts.\n\nIf you want to build Google Test's samples, you should replace the\nlast command with\n\n    cmake -Dgtest_build_samples=ON ${GTEST_DIR}\n\nIf you are on a \\*nix system, you should now see a Makefile in the\ncurrent directory.  Just type 'make' to build gtest.\n\nIf you use Windows and have Visual Studio installed, a `gtest.sln` file\nand several `.vcproj` files will be created.  You can then build them\nusing Visual Studio.\n\nOn Mac OS X with Xcode installed, a `.xcodeproj` file will be generated.\n\n### Legacy Build Scripts ###\n\nBefore settling on CMake, we have been providing hand-maintained build\nprojects/scripts for Visual Studio, Xcode, and Autotools.  While we\ncontinue to provide them for convenience, they are not actively\nmaintained any more.  We highly recommend that you follow the\ninstructions in the previous two sections to integrate Google Test\nwith your existing build system.\n\nIf you still need to use the legacy build scripts, here's how:\n\nThe msvc\\ folder contains two solutions with Visual C++ projects.\nOpen the `gtest.sln` or `gtest-md.sln` file using Visual Studio, and you\nare ready to build Google Test the same way you build any Visual\nStudio project.  Files that have names ending with -md use DLL\nversions of Microsoft runtime libraries (the /MD or the /MDd compiler\noption).  Files without that suffix use static versions of the runtime\nlibraries (the /MT or the /MTd option).  Please note that one must use\nthe same option to compile both gtest and the test code.  If you use\nVisual Studio 2005 or above, we recommend the -md version as /MD is\nthe default for new projects in these versions of Visual Studio.\n\nOn Mac OS X, open the `gtest.xcodeproj` in the `xcode/` folder using\nXcode.  Build the \"gtest\" target.  The universal binary framework will\nend up in your selected build directory (selected in the Xcode\n\"Preferences...\" -> \"Building\" pane and defaults to xcode/build).\nAlternatively, at the command line, enter:\n\n    xcodebuild\n\nThis will build the \"Release\" configuration of gtest.framework in your\ndefault build location.  See the \"xcodebuild\" man page for more\ninformation about building different configurations and building in\ndifferent locations.\n\nIf you wish to use the Google Test Xcode project with Xcode 4.x and\nabove, you need to either:\n\n * update the SDK configuration options in xcode/Config/General.xconfig.\n   Comment options `SDKROOT`, `MACOS_DEPLOYMENT_TARGET`, and `GCC_VERSION`. If\n   you choose this route you lose the ability to target earlier versions\n   of MacOS X.\n * Install an SDK for an earlier version. This doesn't appear to be\n   supported by Apple, but has been reported to work\n   (http://stackoverflow.com/questions/5378518).\n\n### Tweaking Google Test ###\n\nGoogle Test can be used in diverse environments.  The default\nconfiguration may not work (or may not work well) out of the box in\nsome environments.  However, you can easily tweak Google Test by\ndefining control macros on the compiler command line.  Generally,\nthese macros are named like `GTEST_XYZ` and you define them to either 1\nor 0 to enable or disable a certain feature.\n\nWe list the most frequently used macros below.  For a complete list,\nsee file [include/gtest/internal/gtest-port.h](include/gtest/internal/gtest-port.h).\n\n### Choosing a TR1 Tuple Library ###\n\nSome Google Test features require the C++ Technical Report 1 (TR1)\ntuple library, which is not yet available with all compilers.  The\ngood news is that Google Test implements a subset of TR1 tuple that's\nenough for its own need, and will automatically use this when the\ncompiler doesn't provide TR1 tuple.\n\nUsually you don't need to care about which tuple library Google Test\nuses.  However, if your project already uses TR1 tuple, you need to\ntell Google Test to use the same TR1 tuple library the rest of your\nproject uses, or the two tuple implementations will clash.  To do\nthat, add\n\n    -DGTEST_USE_OWN_TR1_TUPLE=0\n\nto the compiler flags while compiling Google Test and your tests.  If\nyou want to force Google Test to use its own tuple library, just add\n\n    -DGTEST_USE_OWN_TR1_TUPLE=1\n\nto the compiler flags instead.\n\nIf you don't want Google Test to use tuple at all, add\n\n    -DGTEST_HAS_TR1_TUPLE=0\n\nand all features using tuple will be disabled.\n\n### Multi-threaded Tests ###\n\nGoogle Test is thread-safe where the pthread library is available.\nAfter `#include \"gtest/gtest.h\"`, you can check the `GTEST_IS_THREADSAFE`\nmacro to see whether this is the case (yes if the macro is `#defined` to\n1, no if it's undefined.).\n\nIf Google Test doesn't correctly detect whether pthread is available\nin your environment, you can force it with\n\n    -DGTEST_HAS_PTHREAD=1\n\nor\n\n    -DGTEST_HAS_PTHREAD=0\n\nWhen Google Test uses pthread, you may need to add flags to your\ncompiler and/or linker to select the pthread library, or you'll get\nlink errors.  If you use the CMake script or the deprecated Autotools\nscript, this is taken care of for you.  If you use your own build\nscript, you'll need to read your compiler and linker's manual to\nfigure out what flags to add.\n\n### As a Shared Library (DLL) ###\n\nGoogle Test is compact, so most users can build and link it as a\nstatic library for the simplicity.  You can choose to use Google Test\nas a shared library (known as a DLL on Windows) if you prefer.\n\nTo compile *gtest* as a shared library, add\n\n    -DGTEST_CREATE_SHARED_LIBRARY=1\n\nto the compiler flags.  You'll also need to tell the linker to produce\na shared library instead - consult your linker's manual for how to do\nit.\n\nTo compile your *tests* that use the gtest shared library, add\n\n    -DGTEST_LINKED_AS_SHARED_LIBRARY=1\n\nto the compiler flags.\n\nNote: while the above steps aren't technically necessary today when\nusing some compilers (e.g. GCC), they may become necessary in the\nfuture, if we decide to improve the speed of loading the library (see\n<http://gcc.gnu.org/wiki/Visibility> for details).  Therefore you are\nrecommended to always add the above flags when using Google Test as a\nshared library.  Otherwise a future release of Google Test may break\nyour build script.\n\n### Avoiding Macro Name Clashes ###\n\nIn C++, macros don't obey namespaces.  Therefore two libraries that\nboth define a macro of the same name will clash if you `#include` both\ndefinitions.  In case a Google Test macro clashes with another\nlibrary, you can force Google Test to rename its macro to avoid the\nconflict.\n\nSpecifically, if both Google Test and some other code define macro\nFOO, you can add\n\n    -DGTEST_DONT_DEFINE_FOO=1\n\nto the compiler flags to tell Google Test to change the macro's name\nfrom `FOO` to `GTEST_FOO`.  Currently `FOO` can be `FAIL`, `SUCCEED`,\nor `TEST`.  For example, with `-DGTEST_DONT_DEFINE_TEST=1`, you'll\nneed to write\n\n    GTEST_TEST(SomeTest, DoesThis) { ... }\n\ninstead of\n\n    TEST(SomeTest, DoesThis) { ... }\n\nin order to define a test.\n\n## Developing Google Test ##\n\nThis section discusses how to make your own changes to Google Test.\n\n### Testing Google Test Itself ###\n\nTo make sure your changes work as intended and don't break existing\nfunctionality, you'll want to compile and run Google Test's own tests.\nFor that you can use CMake:\n\n    mkdir mybuild\n    cd mybuild\n    cmake -Dgtest_build_tests=ON ${GTEST_DIR}\n\nMake sure you have Python installed, as some of Google Test's tests\nare written in Python.  If the cmake command complains about not being\nable to find Python (`Could NOT find PythonInterp (missing:\nPYTHON_EXECUTABLE)`), try telling it explicitly where your Python\nexecutable can be found:\n\n    cmake -DPYTHON_EXECUTABLE=path/to/python -Dgtest_build_tests=ON ${GTEST_DIR}\n\nNext, you can build Google Test and all of its own tests.  On \\*nix,\nthis is usually done by 'make'.  To run the tests, do\n\n    make test\n\nAll tests should pass.\n\nNormally you don't need to worry about regenerating the source files,\nunless you need to modify them.  In that case, you should modify the\ncorresponding .pump files instead and run the pump.py Python script to\nregenerate them.  You can find pump.py in the [scripts/](scripts/) directory.\nRead the [Pump manual](docs/PumpManual.md) for how to use it.\n"
  },
  {
    "path": "test/gtest/docs/AdvancedGuide.md",
    "content": "\n\nNow that you have read [Primer](Primer.md) and learned how to write tests\nusing Google Test, it's time to learn some new tricks. This document\nwill show you more assertions as well as how to construct complex\nfailure messages, propagate fatal failures, reuse and speed up your\ntest fixtures, and use various flags with your tests.\n\n# More Assertions #\n\nThis section covers some less frequently used, but still significant,\nassertions.\n\n## Explicit Success and Failure ##\n\nThese three assertions do not actually test a value or expression. Instead,\nthey generate a success or failure directly. Like the macros that actually\nperform a test, you may stream a custom failure message into the them.\n\n| `SUCCEED();` |\n|:-------------|\n\nGenerates a success. This does NOT make the overall test succeed. A test is\nconsidered successful only if none of its assertions fail during its execution.\n\nNote: `SUCCEED()` is purely documentary and currently doesn't generate any\nuser-visible output. However, we may add `SUCCEED()` messages to Google Test's\noutput in the future.\n\n| `FAIL();`  | `ADD_FAILURE();` | `ADD_FAILURE_AT(\"`_file\\_path_`\", `_line\\_number_`);` |\n|:-----------|:-----------------|:------------------------------------------------------|\n\n`FAIL()` generates a fatal failure, while `ADD_FAILURE()` and `ADD_FAILURE_AT()` generate a nonfatal\nfailure. These are useful when control flow, rather than a Boolean expression,\ndeteremines the test's success or failure. For example, you might want to write\nsomething like:\n\n```\nswitch(expression) {\n  case 1: ... some checks ...\n  case 2: ... some other checks\n  ...\n  default: FAIL() << \"We shouldn't get here.\";\n}\n```\n\nNote: you can only use `FAIL()` in functions that return `void`. See the [Assertion Placement section](#assertion-placement) for more information.\n\n_Availability_: Linux, Windows, Mac.\n\n## Exception Assertions ##\n\nThese are for verifying that a piece of code throws (or does not\nthrow) an exception of the given type:\n\n| **Fatal assertion** | **Nonfatal assertion** | **Verifies** |\n|:--------------------|:-----------------------|:-------------|\n| `ASSERT_THROW(`_statement_, _exception\\_type_`);`  | `EXPECT_THROW(`_statement_, _exception\\_type_`);`  | _statement_ throws an exception of the given type  |\n| `ASSERT_ANY_THROW(`_statement_`);`                | `EXPECT_ANY_THROW(`_statement_`);`                | _statement_ throws an exception of any type        |\n| `ASSERT_NO_THROW(`_statement_`);`                 | `EXPECT_NO_THROW(`_statement_`);`                 | _statement_ doesn't throw any exception            |\n\nExamples:\n\n```\nASSERT_THROW(Foo(5), bar_exception);\n\nEXPECT_NO_THROW({\n  int n = 5;\n  Bar(&n);\n});\n```\n\n_Availability_: Linux, Windows, Mac; since version 1.1.0.\n\n## Predicate Assertions for Better Error Messages ##\n\nEven though Google Test has a rich set of assertions, they can never be\ncomplete, as it's impossible (nor a good idea) to anticipate all the scenarios\na user might run into. Therefore, sometimes a user has to use `EXPECT_TRUE()`\nto check a complex expression, for lack of a better macro. This has the problem\nof not showing you the values of the parts of the expression, making it hard to\nunderstand what went wrong. As a workaround, some users choose to construct the\nfailure message by themselves, streaming it into `EXPECT_TRUE()`. However, this\nis awkward especially when the expression has side-effects or is expensive to\nevaluate.\n\nGoogle Test gives you three different options to solve this problem:\n\n### Using an Existing Boolean Function ###\n\nIf you already have a function or a functor that returns `bool` (or a type\nthat can be implicitly converted to `bool`), you can use it in a _predicate\nassertion_ to get the function arguments printed for free:\n\n| **Fatal assertion** | **Nonfatal assertion** | **Verifies** |\n|:--------------------|:-----------------------|:-------------|\n| `ASSERT_PRED1(`_pred1, val1_`);`       | `EXPECT_PRED1(`_pred1, val1_`);` | _pred1(val1)_ returns true |\n| `ASSERT_PRED2(`_pred2, val1, val2_`);` | `EXPECT_PRED2(`_pred2, val1, val2_`);` |  _pred2(val1, val2)_ returns true |\n|  ...                | ...                    | ...          |\n\nIn the above, _predn_ is an _n_-ary predicate function or functor, where\n_val1_, _val2_, ..., and _valn_ are its arguments. The assertion succeeds\nif the predicate returns `true` when applied to the given arguments, and fails\notherwise. When the assertion fails, it prints the value of each argument. In\neither case, the arguments are evaluated exactly once.\n\nHere's an example. Given\n\n```\n// Returns true iff m and n have no common divisors except 1.\nbool MutuallyPrime(int m, int n) { ... }\nconst int a = 3;\nconst int b = 4;\nconst int c = 10;\n```\n\nthe assertion `EXPECT_PRED2(MutuallyPrime, a, b);` will succeed, while the\nassertion `EXPECT_PRED2(MutuallyPrime, b, c);` will fail with the message\n\n<pre>\n!MutuallyPrime(b, c) is false, where<br>\nb is 4<br>\nc is 10<br>\n</pre>\n\n**Notes:**\n\n  1. If you see a compiler error \"no matching function to call\" when using `ASSERT_PRED*` or `EXPECT_PRED*`, please see [this FAQ](FAQ.md#the-compiler-complains-no-matching-function-to-call-when-i-use-assert_predn-how-do-i-fix-it) for how to resolve it.\n  1. Currently we only provide predicate assertions of arity <= 5. If you need a higher-arity assertion, let us know.\n\n_Availability_: Linux, Windows, Mac\n\n### Using a Function That Returns an AssertionResult ###\n\nWhile `EXPECT_PRED*()` and friends are handy for a quick job, the\nsyntax is not satisfactory: you have to use different macros for\ndifferent arities, and it feels more like Lisp than C++.  The\n`::testing::AssertionResult` class solves this problem.\n\nAn `AssertionResult` object represents the result of an assertion\n(whether it's a success or a failure, and an associated message).  You\ncan create an `AssertionResult` using one of these factory\nfunctions:\n\n```\nnamespace testing {\n\n// Returns an AssertionResult object to indicate that an assertion has\n// succeeded.\nAssertionResult AssertionSuccess();\n\n// Returns an AssertionResult object to indicate that an assertion has\n// failed.\nAssertionResult AssertionFailure();\n\n}\n```\n\nYou can then use the `<<` operator to stream messages to the\n`AssertionResult` object.\n\nTo provide more readable messages in Boolean assertions\n(e.g. `EXPECT_TRUE()`), write a predicate function that returns\n`AssertionResult` instead of `bool`. For example, if you define\n`IsEven()` as:\n\n```\n::testing::AssertionResult IsEven(int n) {\n  if ((n % 2) == 0)\n    return ::testing::AssertionSuccess();\n  else\n    return ::testing::AssertionFailure() << n << \" is odd\";\n}\n```\n\ninstead of:\n\n```\nbool IsEven(int n) {\n  return (n % 2) == 0;\n}\n```\n\nthe failed assertion `EXPECT_TRUE(IsEven(Fib(4)))` will print:\n\n<pre>\nValue of: IsEven(Fib(4))<br>\nActual: false (*3 is odd*)<br>\nExpected: true<br>\n</pre>\n\ninstead of a more opaque\n\n<pre>\nValue of: IsEven(Fib(4))<br>\nActual: false<br>\nExpected: true<br>\n</pre>\n\nIf you want informative messages in `EXPECT_FALSE` and `ASSERT_FALSE`\nas well, and are fine with making the predicate slower in the success\ncase, you can supply a success message:\n\n```\n::testing::AssertionResult IsEven(int n) {\n  if ((n % 2) == 0)\n    return ::testing::AssertionSuccess() << n << \" is even\";\n  else\n    return ::testing::AssertionFailure() << n << \" is odd\";\n}\n```\n\nThen the statement `EXPECT_FALSE(IsEven(Fib(6)))` will print\n\n<pre>\nValue of: IsEven(Fib(6))<br>\nActual: true (8 is even)<br>\nExpected: false<br>\n</pre>\n\n_Availability_: Linux, Windows, Mac; since version 1.4.1.\n\n### Using a Predicate-Formatter ###\n\nIf you find the default message generated by `(ASSERT|EXPECT)_PRED*` and\n`(ASSERT|EXPECT)_(TRUE|FALSE)` unsatisfactory, or some arguments to your\npredicate do not support streaming to `ostream`, you can instead use the\nfollowing _predicate-formatter assertions_ to _fully_ customize how the\nmessage is formatted:\n\n| **Fatal assertion** | **Nonfatal assertion** | **Verifies** |\n|:--------------------|:-----------------------|:-------------|\n| `ASSERT_PRED_FORMAT1(`_pred\\_format1, val1_`);`        | `EXPECT_PRED_FORMAT1(`_pred\\_format1, val1_`);` | _pred\\_format1(val1)_ is successful |\n| `ASSERT_PRED_FORMAT2(`_pred\\_format2, val1, val2_`);` | `EXPECT_PRED_FORMAT2(`_pred\\_format2, val1, val2_`);` | _pred\\_format2(val1, val2)_ is successful |\n| `...`               | `...`                  | `...`        |\n\nThe difference between this and the previous two groups of macros is that instead of\na predicate, `(ASSERT|EXPECT)_PRED_FORMAT*` take a _predicate-formatter_\n(_pred\\_formatn_), which is a function or functor with the signature:\n\n`::testing::AssertionResult PredicateFormattern(const char* `_expr1_`, const char* `_expr2_`, ... const char* `_exprn_`, T1 `_val1_`, T2 `_val2_`, ... Tn `_valn_`);`\n\nwhere _val1_, _val2_, ..., and _valn_ are the values of the predicate\narguments, and _expr1_, _expr2_, ..., and _exprn_ are the corresponding\nexpressions as they appear in the source code. The types `T1`, `T2`, ..., and\n`Tn` can be either value types or reference types. For example, if an\nargument has type `Foo`, you can declare it as either `Foo` or `const Foo&`,\nwhichever is appropriate.\n\nA predicate-formatter returns a `::testing::AssertionResult` object to indicate\nwhether the assertion has succeeded or not. The only way to create such an\nobject is to call one of these factory functions:\n\nAs an example, let's improve the failure message in the previous example, which uses `EXPECT_PRED2()`:\n\n```\n// Returns the smallest prime common divisor of m and n,\n// or 1 when m and n are mutually prime.\nint SmallestPrimeCommonDivisor(int m, int n) { ... }\n\n// A predicate-formatter for asserting that two integers are mutually prime.\n::testing::AssertionResult AssertMutuallyPrime(const char* m_expr,\n                                               const char* n_expr,\n                                               int m,\n                                               int n) {\n  if (MutuallyPrime(m, n))\n    return ::testing::AssertionSuccess();\n\n  return ::testing::AssertionFailure()\n      << m_expr << \" and \" << n_expr << \" (\" << m << \" and \" << n\n      << \") are not mutually prime, \" << \"as they have a common divisor \"\n      << SmallestPrimeCommonDivisor(m, n);\n}\n```\n\nWith this predicate-formatter, we can use\n\n```\nEXPECT_PRED_FORMAT2(AssertMutuallyPrime, b, c);\n```\n\nto generate the message\n\n<pre>\nb and c (4 and 10) are not mutually prime, as they have a common divisor 2.<br>\n</pre>\n\nAs you may have realized, many of the assertions we introduced earlier are\nspecial cases of `(EXPECT|ASSERT)_PRED_FORMAT*`. In fact, most of them are\nindeed defined using `(EXPECT|ASSERT)_PRED_FORMAT*`.\n\n_Availability_: Linux, Windows, Mac.\n\n\n## Floating-Point Comparison ##\n\nComparing floating-point numbers is tricky. Due to round-off errors, it is\nvery unlikely that two floating-points will match exactly. Therefore,\n`ASSERT_EQ` 's naive comparison usually doesn't work. And since floating-points\ncan have a wide value range, no single fixed error bound works. It's better to\ncompare by a fixed relative error bound, except for values close to 0 due to\nthe loss of precision there.\n\nIn general, for floating-point comparison to make sense, the user needs to\ncarefully choose the error bound. If they don't want or care to, comparing in\nterms of Units in the Last Place (ULPs) is a good default, and Google Test\nprovides assertions to do this. Full details about ULPs are quite long; if you\nwant to learn more, see\n[this article on float comparison](http://www.cygnus-software.com/papers/comparingfloats/comparingfloats.htm).\n\n### Floating-Point Macros ###\n\n| **Fatal assertion** | **Nonfatal assertion** | **Verifies** |\n|:--------------------|:-----------------------|:-------------|\n| `ASSERT_FLOAT_EQ(`_val1, val2_`);`  | `EXPECT_FLOAT_EQ(`_val1, val2_`);` | the two `float` values are almost equal |\n| `ASSERT_DOUBLE_EQ(`_val1, val2_`);` | `EXPECT_DOUBLE_EQ(`_val1, val2_`);` | the two `double` values are almost equal |\n\nBy \"almost equal\", we mean the two values are within 4 ULP's from each\nother.\n\nThe following assertions allow you to choose the acceptable error bound:\n\n| **Fatal assertion** | **Nonfatal assertion** | **Verifies** |\n|:--------------------|:-----------------------|:-------------|\n| `ASSERT_NEAR(`_val1, val2, abs\\_error_`);` | `EXPECT_NEAR`_(val1, val2, abs\\_error_`);` | the difference between _val1_ and _val2_ doesn't exceed the given absolute error |\n\n_Availability_: Linux, Windows, Mac.\n\n### Floating-Point Predicate-Format Functions ###\n\nSome floating-point operations are useful, but not that often used. In order\nto avoid an explosion of new macros, we provide them as predicate-format\nfunctions that can be used in predicate assertion macros (e.g.\n`EXPECT_PRED_FORMAT2`, etc).\n\n```\nEXPECT_PRED_FORMAT2(::testing::FloatLE, val1, val2);\nEXPECT_PRED_FORMAT2(::testing::DoubleLE, val1, val2);\n```\n\nVerifies that _val1_ is less than, or almost equal to, _val2_. You can\nreplace `EXPECT_PRED_FORMAT2` in the above table with `ASSERT_PRED_FORMAT2`.\n\n_Availability_: Linux, Windows, Mac.\n\n## Windows HRESULT assertions ##\n\nThese assertions test for `HRESULT` success or failure.\n\n| **Fatal assertion** | **Nonfatal assertion** | **Verifies** |\n|:--------------------|:-----------------------|:-------------|\n| `ASSERT_HRESULT_SUCCEEDED(`_expression_`);` | `EXPECT_HRESULT_SUCCEEDED(`_expression_`);` | _expression_ is a success `HRESULT` |\n| `ASSERT_HRESULT_FAILED(`_expression_`);`    | `EXPECT_HRESULT_FAILED(`_expression_`);`    | _expression_ is a failure `HRESULT` |\n\nThe generated output contains the human-readable error message\nassociated with the `HRESULT` code returned by _expression_.\n\nYou might use them like this:\n\n```\nCComPtr shell;\nASSERT_HRESULT_SUCCEEDED(shell.CoCreateInstance(L\"Shell.Application\"));\nCComVariant empty;\nASSERT_HRESULT_SUCCEEDED(shell->ShellExecute(CComBSTR(url), empty, empty, empty, empty));\n```\n\n_Availability_: Windows.\n\n## Type Assertions ##\n\nYou can call the function\n```\n::testing::StaticAssertTypeEq<T1, T2>();\n```\nto assert that types `T1` and `T2` are the same.  The function does\nnothing if the assertion is satisfied.  If the types are different,\nthe function call will fail to compile, and the compiler error message\nwill likely (depending on the compiler) show you the actual values of\n`T1` and `T2`.  This is mainly useful inside template code.\n\n_Caveat:_ When used inside a member function of a class template or a\nfunction template, `StaticAssertTypeEq<T1, T2>()` is effective _only if_\nthe function is instantiated.  For example, given:\n```\ntemplate <typename T> class Foo {\n public:\n  void Bar() { ::testing::StaticAssertTypeEq<int, T>(); }\n};\n```\nthe code:\n```\nvoid Test1() { Foo<bool> foo; }\n```\nwill _not_ generate a compiler error, as `Foo<bool>::Bar()` is never\nactually instantiated.  Instead, you need:\n```\nvoid Test2() { Foo<bool> foo; foo.Bar(); }\n```\nto cause a compiler error.\n\n_Availability:_ Linux, Windows, Mac; since version 1.3.0.\n\n## Assertion Placement ##\n\nYou can use assertions in any C++ function. In particular, it doesn't\nhave to be a method of the test fixture class. The one constraint is\nthat assertions that generate a fatal failure (`FAIL*` and `ASSERT_*`)\ncan only be used in void-returning functions. This is a consequence of\nGoogle Test not using exceptions. By placing it in a non-void function\nyou'll get a confusing compile error like\n`\"error: void value not ignored as it ought to be\"`.\n\nIf you need to use assertions in a function that returns non-void, one option\nis to make the function return the value in an out parameter instead. For\nexample, you can rewrite `T2 Foo(T1 x)` to `void Foo(T1 x, T2* result)`. You\nneed to make sure that `*result` contains some sensible value even when the\nfunction returns prematurely. As the function now returns `void`, you can use\nany assertion inside of it.\n\nIf changing the function's type is not an option, you should just use\nassertions that generate non-fatal failures, such as `ADD_FAILURE*` and\n`EXPECT_*`.\n\n_Note_: Constructors and destructors are not considered void-returning\nfunctions, according to the C++ language specification, and so you may not use\nfatal assertions in them. You'll get a compilation error if you try. A simple\nworkaround is to transfer the entire body of the constructor or destructor to a\nprivate void-returning method. However, you should be aware that a fatal\nassertion failure in a constructor does not terminate the current test, as your\nintuition might suggest; it merely returns from the constructor early, possibly\nleaving your object in a partially-constructed state. Likewise, a fatal\nassertion failure in a destructor may leave your object in a\npartially-destructed state. Use assertions carefully in these situations!\n\n# Teaching Google Test How to Print Your Values #\n\nWhen a test assertion such as `EXPECT_EQ` fails, Google Test prints the\nargument values to help you debug.  It does this using a\nuser-extensible value printer.\n\nThis printer knows how to print built-in C++ types, native arrays, STL\ncontainers, and any type that supports the `<<` operator.  For other\ntypes, it prints the raw bytes in the value and hopes that you the\nuser can figure it out.\n\nAs mentioned earlier, the printer is _extensible_.  That means\nyou can teach it to do a better job at printing your particular type\nthan to dump the bytes.  To do that, define `<<` for your type:\n\n```\n#include <iostream>\n\nnamespace foo {\n\nclass Bar { ... };  // We want Google Test to be able to print instances of this.\n\n// It's important that the << operator is defined in the SAME\n// namespace that defines Bar.  C++'s look-up rules rely on that.\n::std::ostream& operator<<(::std::ostream& os, const Bar& bar) {\n  return os << bar.DebugString();  // whatever needed to print bar to os\n}\n\n}  // namespace foo\n```\n\nSometimes, this might not be an option: your team may consider it bad\nstyle to have a `<<` operator for `Bar`, or `Bar` may already have a\n`<<` operator that doesn't do what you want (and you cannot change\nit).  If so, you can instead define a `PrintTo()` function like this:\n\n```\n#include <iostream>\n\nnamespace foo {\n\nclass Bar { ... };\n\n// It's important that PrintTo() is defined in the SAME\n// namespace that defines Bar.  C++'s look-up rules rely on that.\nvoid PrintTo(const Bar& bar, ::std::ostream* os) {\n  *os << bar.DebugString();  // whatever needed to print bar to os\n}\n\n}  // namespace foo\n```\n\nIf you have defined both `<<` and `PrintTo()`, the latter will be used\nwhen Google Test is concerned.  This allows you to customize how the value\nappears in Google Test's output without affecting code that relies on the\nbehavior of its `<<` operator.\n\nIf you want to print a value `x` using Google Test's value printer\nyourself, just call `::testing::PrintToString(`_x_`)`, which\nreturns an `std::string`:\n\n```\nvector<pair<Bar, int> > bar_ints = GetBarIntVector();\n\nEXPECT_TRUE(IsCorrectBarIntVector(bar_ints))\n    << \"bar_ints = \" << ::testing::PrintToString(bar_ints);\n```\n\n# Death Tests #\n\nIn many applications, there are assertions that can cause application failure\nif a condition is not met. These sanity checks, which ensure that the program\nis in a known good state, are there to fail at the earliest possible time after\nsome program state is corrupted. If the assertion checks the wrong condition,\nthen the program may proceed in an erroneous state, which could lead to memory\ncorruption, security holes, or worse. Hence it is vitally important to test\nthat such assertion statements work as expected.\n\nSince these precondition checks cause the processes to die, we call such tests\n_death tests_. More generally, any test that checks that a program terminates\n(except by throwing an exception) in an expected fashion is also a death test.\n\nNote that if a piece of code throws an exception, we don't consider it \"death\"\nfor the purpose of death tests, as the caller of the code could catch the exception\nand avoid the crash. If you want to verify exceptions thrown by your code,\nsee [Exception Assertions](#exception-assertions).\n\nIf you want to test `EXPECT_*()/ASSERT_*()` failures in your test code, see [Catching Failures](#catching-failures).\n\n## How to Write a Death Test ##\n\nGoogle Test has the following macros to support death tests:\n\n| **Fatal assertion** | **Nonfatal assertion** | **Verifies** |\n|:--------------------|:-----------------------|:-------------|\n| `ASSERT_DEATH(`_statement, regex_`);` | `EXPECT_DEATH(`_statement, regex_`);` | _statement_ crashes with the given error |\n| `ASSERT_DEATH_IF_SUPPORTED(`_statement, regex_`);` | `EXPECT_DEATH_IF_SUPPORTED(`_statement, regex_`);` | if death tests are supported, verifies that _statement_ crashes with the given error; otherwise verifies nothing |\n| `ASSERT_EXIT(`_statement, predicate, regex_`);` | `EXPECT_EXIT(`_statement, predicate, regex_`);` |_statement_ exits with the given error and its exit code matches _predicate_ |\n\nwhere _statement_ is a statement that is expected to cause the process to\ndie, _predicate_ is a function or function object that evaluates an integer\nexit status, and _regex_ is a regular expression that the stderr output of\n_statement_ is expected to match. Note that _statement_ can be _any valid\nstatement_ (including _compound statement_) and doesn't have to be an\nexpression.\n\nAs usual, the `ASSERT` variants abort the current test function, while the\n`EXPECT` variants do not.\n\n**Note:** We use the word \"crash\" here to mean that the process\nterminates with a _non-zero_ exit status code.  There are two\npossibilities: either the process has called `exit()` or `_exit()`\nwith a non-zero value, or it may be killed by a signal.\n\nThis means that if _statement_ terminates the process with a 0 exit\ncode, it is _not_ considered a crash by `EXPECT_DEATH`.  Use\n`EXPECT_EXIT` instead if this is the case, or if you want to restrict\nthe exit code more precisely.\n\nA predicate here must accept an `int` and return a `bool`. The death test\nsucceeds only if the predicate returns `true`. Google Test defines a few\npredicates that handle the most common cases:\n\n```\n::testing::ExitedWithCode(exit_code)\n```\n\nThis expression is `true` if the program exited normally with the given exit\ncode.\n\n```\n::testing::KilledBySignal(signal_number)  // Not available on Windows.\n```\n\nThis expression is `true` if the program was killed by the given signal.\n\nThe `*_DEATH` macros are convenient wrappers for `*_EXIT` that use a predicate\nthat verifies the process' exit code is non-zero.\n\nNote that a death test only cares about three things:\n\n  1. does _statement_ abort or exit the process?\n  1. (in the case of `ASSERT_EXIT` and `EXPECT_EXIT`) does the exit status satisfy _predicate_?  Or (in the case of `ASSERT_DEATH` and `EXPECT_DEATH`) is the exit status non-zero?  And\n  1. does the stderr output match _regex_?\n\nIn particular, if _statement_ generates an `ASSERT_*` or `EXPECT_*` failure, it will **not** cause the death test to fail, as Google Test assertions don't abort the process.\n\nTo write a death test, simply use one of the above macros inside your test\nfunction. For example,\n\n```\nTEST(MyDeathTest, Foo) {\n  // This death test uses a compound statement.\n  ASSERT_DEATH({ int n = 5; Foo(&n); }, \"Error on line .* of Foo()\");\n}\nTEST(MyDeathTest, NormalExit) {\n  EXPECT_EXIT(NormalExit(), ::testing::ExitedWithCode(0), \"Success\");\n}\nTEST(MyDeathTest, KillMyself) {\n  EXPECT_EXIT(KillMyself(), ::testing::KilledBySignal(SIGKILL), \"Sending myself unblockable signal\");\n}\n```\n\nverifies that:\n\n  * calling `Foo(5)` causes the process to die with the given error message,\n  * calling `NormalExit()` causes the process to print `\"Success\"` to stderr and exit with exit code 0, and\n  * calling `KillMyself()` kills the process with signal `SIGKILL`.\n\nThe test function body may contain other assertions and statements as well, if\nnecessary.\n\n_Important:_ We strongly recommend you to follow the convention of naming your\ntest case (not test) `*DeathTest` when it contains a death test, as\ndemonstrated in the above example. The `Death Tests And Threads` section below\nexplains why.\n\nIf a test fixture class is shared by normal tests and death tests, you\ncan use typedef to introduce an alias for the fixture class and avoid\nduplicating its code:\n```\nclass FooTest : public ::testing::Test { ... };\n\ntypedef FooTest FooDeathTest;\n\nTEST_F(FooTest, DoesThis) {\n  // normal test\n}\n\nTEST_F(FooDeathTest, DoesThat) {\n  // death test\n}\n```\n\n_Availability:_ Linux, Windows (requires MSVC 8.0 or above), Cygwin, and Mac (the latter three are supported since v1.3.0).  `(ASSERT|EXPECT)_DEATH_IF_SUPPORTED` are new in v1.4.0.\n\n## Regular Expression Syntax ##\n\nOn POSIX systems (e.g. Linux, Cygwin, and Mac), Google Test uses the\n[POSIX extended regular expression](http://www.opengroup.org/onlinepubs/009695399/basedefs/xbd_chap09.html#tag_09_04)\nsyntax in death tests. To learn about this syntax, you may want to read this [Wikipedia entry](http://en.wikipedia.org/wiki/Regular_expression#POSIX_Extended_Regular_Expressions).\n\nOn Windows, Google Test uses its own simple regular expression\nimplementation. It lacks many features you can find in POSIX extended\nregular expressions.  For example, we don't support union (`\"x|y\"`),\ngrouping (`\"(xy)\"`), brackets (`\"[xy]\"`), and repetition count\n(`\"x{5,7}\"`), among others. Below is what we do support (Letter `A` denotes a\nliteral character, period (`.`), or a single `\\\\` escape sequence; `x`\nand `y` denote regular expressions.):\n\n| `c` | matches any literal character `c` |\n|:----|:----------------------------------|\n| `\\\\d` | matches any decimal digit         |\n| `\\\\D` | matches any character that's not a decimal digit |\n| `\\\\f` | matches `\\f`                      |\n| `\\\\n` | matches `\\n`                      |\n| `\\\\r` | matches `\\r`                      |\n| `\\\\s` | matches any ASCII whitespace, including `\\n` |\n| `\\\\S` | matches any character that's not a whitespace |\n| `\\\\t` | matches `\\t`                      |\n| `\\\\v` | matches `\\v`                      |\n| `\\\\w` | matches any letter, `_`, or decimal digit |\n| `\\\\W` | matches any character that `\\\\w` doesn't match |\n| `\\\\c` | matches any literal character `c`, which must be a punctuation |\n| `\\\\.` | matches the `.` character         |\n| `.` | matches any single character except `\\n` |\n| `A?` | matches 0 or 1 occurrences of `A` |\n| `A*` | matches 0 or many occurrences of `A` |\n| `A+` | matches 1 or many occurrences of `A` |\n| `^` | matches the beginning of a string (not that of each line) |\n| `$` | matches the end of a string (not that of each line) |\n| `xy` | matches `x` followed by `y`       |\n\nTo help you determine which capability is available on your system,\nGoogle Test defines macro `GTEST_USES_POSIX_RE=1` when it uses POSIX\nextended regular expressions, or `GTEST_USES_SIMPLE_RE=1` when it uses\nthe simple version.  If you want your death tests to work in both\ncases, you can either `#if` on these macros or use the more limited\nsyntax only.\n\n## How It Works ##\n\nUnder the hood, `ASSERT_EXIT()` spawns a new process and executes the\ndeath test statement in that process. The details of of how precisely\nthat happens depend on the platform and the variable\n`::testing::GTEST_FLAG(death_test_style)` (which is initialized from the\ncommand-line flag `--gtest_death_test_style`).\n\n  * On POSIX systems, `fork()` (or `clone()` on Linux) is used to spawn the child, after which:\n    * If the variable's value is `\"fast\"`, the death test statement is immediately executed.\n    * If the variable's value is `\"threadsafe\"`, the child process re-executes the unit test binary just as it was originally invoked, but with some extra flags to cause just the single death test under consideration to be run.\n  * On Windows, the child is spawned using the `CreateProcess()` API, and re-executes the binary to cause just the single death test under consideration to be run - much like the `threadsafe` mode on POSIX.\n\nOther values for the variable are illegal and will cause the death test to\nfail. Currently, the flag's default value is `\"fast\"`. However, we reserve the\nright to change it in the future. Therefore, your tests should not depend on\nthis.\n\nIn either case, the parent process waits for the child process to complete, and checks that\n\n  1. the child's exit status satisfies the predicate, and\n  1. the child's stderr matches the regular expression.\n\nIf the death test statement runs to completion without dying, the child\nprocess will nonetheless terminate, and the assertion fails.\n\n## Death Tests And Threads ##\n\nThe reason for the two death test styles has to do with thread safety. Due to\nwell-known problems with forking in the presence of threads, death tests should\nbe run in a single-threaded context. Sometimes, however, it isn't feasible to\narrange that kind of environment. For example, statically-initialized modules\nmay start threads before main is ever reached. Once threads have been created,\nit may be difficult or impossible to clean them up.\n\nGoogle Test has three features intended to raise awareness of threading issues.\n\n  1. A warning is emitted if multiple threads are running when a death test is encountered.\n  1. Test cases with a name ending in \"DeathTest\" are run before all other tests.\n  1. It uses `clone()` instead of `fork()` to spawn the child process on Linux (`clone()` is not available on Cygwin and Mac), as `fork()` is more likely to cause the child to hang when the parent process has multiple threads.\n\nIt's perfectly fine to create threads inside a death test statement; they are\nexecuted in a separate process and cannot affect the parent.\n\n## Death Test Styles ##\n\nThe \"threadsafe\" death test style was introduced in order to help mitigate the\nrisks of testing in a possibly multithreaded environment. It trades increased\ntest execution time (potentially dramatically so) for improved thread safety.\nWe suggest using the faster, default \"fast\" style unless your test has specific\nproblems with it.\n\nYou can choose a particular style of death tests by setting the flag\nprogrammatically:\n\n```\n::testing::FLAGS_gtest_death_test_style = \"threadsafe\";\n```\n\nYou can do this in `main()` to set the style for all death tests in the\nbinary, or in individual tests. Recall that flags are saved before running each\ntest and restored afterwards, so you need not do that yourself. For example:\n\n```\nTEST(MyDeathTest, TestOne) {\n  ::testing::FLAGS_gtest_death_test_style = \"threadsafe\";\n  // This test is run in the \"threadsafe\" style:\n  ASSERT_DEATH(ThisShouldDie(), \"\");\n}\n\nTEST(MyDeathTest, TestTwo) {\n  // This test is run in the \"fast\" style:\n  ASSERT_DEATH(ThisShouldDie(), \"\");\n}\n\nint main(int argc, char** argv) {\n  ::testing::InitGoogleTest(&argc, argv);\n  ::testing::FLAGS_gtest_death_test_style = \"fast\";\n  return RUN_ALL_TESTS();\n}\n```\n\n## Caveats ##\n\nThe _statement_ argument of `ASSERT_EXIT()` can be any valid C++ statement.\nIf it leaves the current function via a `return` statement or by throwing an exception,\nthe death test is considered to have failed.  Some Google Test macros may return\nfrom the current function (e.g. `ASSERT_TRUE()`), so be sure to avoid them in _statement_.\n\nSince _statement_ runs in the child process, any in-memory side effect (e.g.\nmodifying a variable, releasing memory, etc) it causes will _not_ be observable\nin the parent process. In particular, if you release memory in a death test,\nyour program will fail the heap check as the parent process will never see the\nmemory reclaimed. To solve this problem, you can\n\n  1. try not to free memory in a death test;\n  1. free the memory again in the parent process; or\n  1. do not use the heap checker in your program.\n\nDue to an implementation detail, you cannot place multiple death test\nassertions on the same line; otherwise, compilation will fail with an unobvious\nerror message.\n\nDespite the improved thread safety afforded by the \"threadsafe\" style of death\ntest, thread problems such as deadlock are still possible in the presence of\nhandlers registered with `pthread_atfork(3)`.\n\n# Using Assertions in Sub-routines #\n\n## Adding Traces to Assertions ##\n\nIf a test sub-routine is called from several places, when an assertion\ninside it fails, it can be hard to tell which invocation of the\nsub-routine the failure is from.  You can alleviate this problem using\nextra logging or custom failure messages, but that usually clutters up\nyour tests. A better solution is to use the `SCOPED_TRACE` macro:\n\n| `SCOPED_TRACE(`_message_`);` |\n|:-----------------------------|\n\nwhere _message_ can be anything streamable to `std::ostream`. This\nmacro will cause the current file name, line number, and the given\nmessage to be added in every failure message. The effect will be\nundone when the control leaves the current lexical scope.\n\nFor example,\n\n```\n10: void Sub1(int n) {\n11:   EXPECT_EQ(1, Bar(n));\n12:   EXPECT_EQ(2, Bar(n + 1));\n13: }\n14:\n15: TEST(FooTest, Bar) {\n16:   {\n17:     SCOPED_TRACE(\"A\");  // This trace point will be included in\n18:                         // every failure in this scope.\n19:     Sub1(1);\n20:   }\n21:   // Now it won't.\n22:   Sub1(9);\n23: }\n```\n\ncould result in messages like these:\n\n```\npath/to/foo_test.cc:11: Failure\nValue of: Bar(n)\nExpected: 1\n  Actual: 2\n   Trace:\npath/to/foo_test.cc:17: A\n\npath/to/foo_test.cc:12: Failure\nValue of: Bar(n + 1)\nExpected: 2\n  Actual: 3\n```\n\nWithout the trace, it would've been difficult to know which invocation\nof `Sub1()` the two failures come from respectively. (You could add an\nextra message to each assertion in `Sub1()` to indicate the value of\n`n`, but that's tedious.)\n\nSome tips on using `SCOPED_TRACE`:\n\n  1. With a suitable message, it's often enough to use `SCOPED_TRACE` at the beginning of a sub-routine, instead of at each call site.\n  1. When calling sub-routines inside a loop, make the loop iterator part of the message in `SCOPED_TRACE` such that you can know which iteration the failure is from.\n  1. Sometimes the line number of the trace point is enough for identifying the particular invocation of a sub-routine. In this case, you don't have to choose a unique message for `SCOPED_TRACE`. You can simply use `\"\"`.\n  1. You can use `SCOPED_TRACE` in an inner scope when there is one in the outer scope. In this case, all active trace points will be included in the failure messages, in reverse order they are encountered.\n  1. The trace dump is clickable in Emacs' compilation buffer - hit return on a line number and you'll be taken to that line in the source file!\n\n_Availability:_ Linux, Windows, Mac.\n\n## Propagating Fatal Failures ##\n\nA common pitfall when using `ASSERT_*` and `FAIL*` is not understanding that\nwhen they fail they only abort the _current function_, not the entire test. For\nexample, the following test will segfault:\n```\nvoid Subroutine() {\n  // Generates a fatal failure and aborts the current function.\n  ASSERT_EQ(1, 2);\n  // The following won't be executed.\n  ...\n}\n\nTEST(FooTest, Bar) {\n  Subroutine();\n  // The intended behavior is for the fatal failure\n  // in Subroutine() to abort the entire test.\n  // The actual behavior: the function goes on after Subroutine() returns.\n  int* p = NULL;\n  *p = 3; // Segfault!\n}\n```\n\nSince we don't use exceptions, it is technically impossible to\nimplement the intended behavior here.  To alleviate this, Google Test\nprovides two solutions.  You could use either the\n`(ASSERT|EXPECT)_NO_FATAL_FAILURE` assertions or the\n`HasFatalFailure()` function.  They are described in the following two\nsubsections.\n\n### Asserting on Subroutines ###\n\nAs shown above, if your test calls a subroutine that has an `ASSERT_*`\nfailure in it, the test will continue after the subroutine\nreturns. This may not be what you want.\n\nOften people want fatal failures to propagate like exceptions.  For\nthat Google Test offers the following macros:\n\n| **Fatal assertion** | **Nonfatal assertion** | **Verifies** |\n|:--------------------|:-----------------------|:-------------|\n| `ASSERT_NO_FATAL_FAILURE(`_statement_`);` | `EXPECT_NO_FATAL_FAILURE(`_statement_`);` | _statement_ doesn't generate any new fatal failures in the current thread. |\n\nOnly failures in the thread that executes the assertion are checked to\ndetermine the result of this type of assertions.  If _statement_\ncreates new threads, failures in these threads are ignored.\n\nExamples:\n\n```\nASSERT_NO_FATAL_FAILURE(Foo());\n\nint i;\nEXPECT_NO_FATAL_FAILURE({\n  i = Bar();\n});\n```\n\n_Availability:_ Linux, Windows, Mac. Assertions from multiple threads\nare currently not supported.\n\n### Checking for Failures in the Current Test ###\n\n`HasFatalFailure()` in the `::testing::Test` class returns `true` if an\nassertion in the current test has suffered a fatal failure. This\nallows functions to catch fatal failures in a sub-routine and return\nearly.\n\n```\nclass Test {\n public:\n  ...\n  static bool HasFatalFailure();\n};\n```\n\nThe typical usage, which basically simulates the behavior of a thrown\nexception, is:\n\n```\nTEST(FooTest, Bar) {\n  Subroutine();\n  // Aborts if Subroutine() had a fatal failure.\n  if (HasFatalFailure())\n    return;\n  // The following won't be executed.\n  ...\n}\n```\n\nIf `HasFatalFailure()` is used outside of `TEST()` , `TEST_F()` , or a test\nfixture, you must add the `::testing::Test::` prefix, as in:\n\n```\nif (::testing::Test::HasFatalFailure())\n  return;\n```\n\nSimilarly, `HasNonfatalFailure()` returns `true` if the current test\nhas at least one non-fatal failure, and `HasFailure()` returns `true`\nif the current test has at least one failure of either kind.\n\n_Availability:_ Linux, Windows, Mac.  `HasNonfatalFailure()` and\n`HasFailure()` are available since version 1.4.0.\n\n# Logging Additional Information #\n\nIn your test code, you can call `RecordProperty(\"key\", value)` to log\nadditional information, where `value` can be either a string or an `int`. The _last_ value recorded for a key will be emitted to the XML output\nif you specify one. For example, the test\n\n```\nTEST_F(WidgetUsageTest, MinAndMaxWidgets) {\n  RecordProperty(\"MaximumWidgets\", ComputeMaxUsage());\n  RecordProperty(\"MinimumWidgets\", ComputeMinUsage());\n}\n```\n\nwill output XML like this:\n\n```\n...\n  <testcase name=\"MinAndMaxWidgets\" status=\"run\" time=\"6\" classname=\"WidgetUsageTest\"\n            MaximumWidgets=\"12\"\n            MinimumWidgets=\"9\" />\n...\n```\n\n_Note_:\n  * `RecordProperty()` is a static member of the `Test` class. Therefore it needs to be prefixed with `::testing::Test::` if used outside of the `TEST` body and the test fixture class.\n  * `key` must be a valid XML attribute name, and cannot conflict with the ones already used by Google Test (`name`, `status`, `time`, `classname`, `type_param`, and `value_param`).\n  * Calling `RecordProperty()` outside of the lifespan of a test is allowed. If it's called outside of a test but between a test case's `SetUpTestCase()` and `TearDownTestCase()` methods, it will be attributed to the XML element for the test case. If it's called outside of all test cases (e.g. in a test environment), it will be attributed to the top-level XML element.\n\n_Availability_: Linux, Windows, Mac.\n\n# Sharing Resources Between Tests in the Same Test Case #\n\n\n\nGoogle Test creates a new test fixture object for each test in order to make\ntests independent and easier to debug. However, sometimes tests use resources\nthat are expensive to set up, making the one-copy-per-test model prohibitively\nexpensive.\n\nIf the tests don't change the resource, there's no harm in them sharing a\nsingle resource copy. So, in addition to per-test set-up/tear-down, Google Test\nalso supports per-test-case set-up/tear-down. To use it:\n\n  1. In your test fixture class (say `FooTest` ), define as `static` some member variables to hold the shared resources.\n  1. In the same test fixture class, define a `static void SetUpTestCase()` function (remember not to spell it as **`SetupTestCase`** with a small `u`!) to set up the shared resources and a `static void TearDownTestCase()` function to tear them down.\n\nThat's it! Google Test automatically calls `SetUpTestCase()` before running the\n_first test_ in the `FooTest` test case (i.e. before creating the first\n`FooTest` object), and calls `TearDownTestCase()` after running the _last test_\nin it (i.e. after deleting the last `FooTest` object). In between, the tests\ncan use the shared resources.\n\nRemember that the test order is undefined, so your code can't depend on a test\npreceding or following another. Also, the tests must either not modify the\nstate of any shared resource, or, if they do modify the state, they must\nrestore the state to its original value before passing control to the next\ntest.\n\nHere's an example of per-test-case set-up and tear-down:\n```\nclass FooTest : public ::testing::Test {\n protected:\n  // Per-test-case set-up.\n  // Called before the first test in this test case.\n  // Can be omitted if not needed.\n  static void SetUpTestCase() {\n    shared_resource_ = new ...;\n  }\n\n  // Per-test-case tear-down.\n  // Called after the last test in this test case.\n  // Can be omitted if not needed.\n  static void TearDownTestCase() {\n    delete shared_resource_;\n    shared_resource_ = NULL;\n  }\n\n  // You can define per-test set-up and tear-down logic as usual.\n  virtual void SetUp() { ... }\n  virtual void TearDown() { ... }\n\n  // Some expensive resource shared by all tests.\n  static T* shared_resource_;\n};\n\nT* FooTest::shared_resource_ = NULL;\n\nTEST_F(FooTest, Test1) {\n  ... you can refer to shared_resource here ...\n}\nTEST_F(FooTest, Test2) {\n  ... you can refer to shared_resource here ...\n}\n```\n\n_Availability:_ Linux, Windows, Mac.\n\n# Global Set-Up and Tear-Down #\n\nJust as you can do set-up and tear-down at the test level and the test case\nlevel, you can also do it at the test program level. Here's how.\n\nFirst, you subclass the `::testing::Environment` class to define a test\nenvironment, which knows how to set-up and tear-down:\n\n```\nclass Environment {\n public:\n  virtual ~Environment() {}\n  // Override this to define how to set up the environment.\n  virtual void SetUp() {}\n  // Override this to define how to tear down the environment.\n  virtual void TearDown() {}\n};\n```\n\nThen, you register an instance of your environment class with Google Test by\ncalling the `::testing::AddGlobalTestEnvironment()` function:\n\n```\nEnvironment* AddGlobalTestEnvironment(Environment* env);\n```\n\nNow, when `RUN_ALL_TESTS()` is called, it first calls the `SetUp()` method of\nthe environment object, then runs the tests if there was no fatal failures, and\nfinally calls `TearDown()` of the environment object.\n\nIt's OK to register multiple environment objects. In this case, their `SetUp()`\nwill be called in the order they are registered, and their `TearDown()` will be\ncalled in the reverse order.\n\nNote that Google Test takes ownership of the registered environment objects.\nTherefore **do not delete them** by yourself.\n\nYou should call `AddGlobalTestEnvironment()` before `RUN_ALL_TESTS()` is\ncalled, probably in `main()`. If you use `gtest_main`, you need to      call\nthis before `main()` starts for it to take effect. One way to do this is to\ndefine a global variable like this:\n\n```\n::testing::Environment* const foo_env = ::testing::AddGlobalTestEnvironment(new FooEnvironment);\n```\n\nHowever, we strongly recommend you to write your own `main()` and call\n`AddGlobalTestEnvironment()` there, as relying on initialization of global\nvariables makes the code harder to read and may cause problems when you\nregister multiple environments from different translation units and the\nenvironments have dependencies among them (remember that the compiler doesn't\nguarantee the order in which global variables from different translation units\nare initialized).\n\n_Availability:_ Linux, Windows, Mac.\n\n\n# Value Parameterized Tests #\n\n_Value-parameterized tests_ allow you to test your code with different\nparameters without writing multiple copies of the same test.\n\nSuppose you write a test for your code and then realize that your code is affected by a presence of a Boolean command line flag.\n\n```\nTEST(MyCodeTest, TestFoo) {\n  // A code to test foo().\n}\n```\n\nUsually people factor their test code into a function with a Boolean parameter in such situations. The function sets the flag, then executes the testing code.\n\n```\nvoid TestFooHelper(bool flag_value) {\n  flag = flag_value;\n  // A code to test foo().\n}\n\nTEST(MyCodeTest, TestFoo) {\n  TestFooHelper(false);\n  TestFooHelper(true);\n}\n```\n\nBut this setup has serious drawbacks. First, when a test assertion fails in your tests, it becomes unclear what value of the parameter caused it to fail. You can stream a clarifying message into your `EXPECT`/`ASSERT` statements, but it you'll have to do it with all of them. Second, you have to add one such helper function per test. What if you have ten tests? Twenty? A hundred?\n\nValue-parameterized tests will let you write your test only once and then easily instantiate and run it with an arbitrary number of parameter values.\n\nHere are some other situations when value-parameterized tests come handy:\n\n  * You want to test different implementations of an OO interface.\n  * You want to test your code over various inputs (a.k.a. data-driven testing). This feature is easy to abuse, so please exercise your good sense when doing it!\n\n## How to Write Value-Parameterized Tests ##\n\nTo write value-parameterized tests, first you should define a fixture\nclass.  It must be derived from both `::testing::Test` and\n`::testing::WithParamInterface<T>` (the latter is a pure interface),\nwhere `T` is the type of your parameter values.  For convenience, you\ncan just derive the fixture class from `::testing::TestWithParam<T>`,\nwhich itself is derived from both `::testing::Test` and\n`::testing::WithParamInterface<T>`. `T` can be any copyable type. If\nit's a raw pointer, you are responsible for managing the lifespan of\nthe pointed values.\n\n```\nclass FooTest : public ::testing::TestWithParam<const char*> {\n  // You can implement all the usual fixture class members here.\n  // To access the test parameter, call GetParam() from class\n  // TestWithParam<T>.\n};\n\n// Or, when you want to add parameters to a pre-existing fixture class:\nclass BaseTest : public ::testing::Test {\n  ...\n};\nclass BarTest : public BaseTest,\n                public ::testing::WithParamInterface<const char*> {\n  ...\n};\n```\n\nThen, use the `TEST_P` macro to define as many test patterns using\nthis fixture as you want.  The `_P` suffix is for \"parameterized\" or\n\"pattern\", whichever you prefer to think.\n\n```\nTEST_P(FooTest, DoesBlah) {\n  // Inside a test, access the test parameter with the GetParam() method\n  // of the TestWithParam<T> class:\n  EXPECT_TRUE(foo.Blah(GetParam()));\n  ...\n}\n\nTEST_P(FooTest, HasBlahBlah) {\n  ...\n}\n```\n\nFinally, you can use `INSTANTIATE_TEST_CASE_P` to instantiate the test\ncase with any set of parameters you want. Google Test defines a number of\nfunctions for generating test parameters. They return what we call\n(surprise!) _parameter generators_. Here is a summary of them,\nwhich are all in the `testing` namespace:\n\n| `Range(begin, end[, step])` | Yields values `{begin, begin+step, begin+step+step, ...}`. The values do not include `end`. `step` defaults to 1. |\n|:----------------------------|:------------------------------------------------------------------------------------------------------------------|\n| `Values(v1, v2, ..., vN)`   | Yields values `{v1, v2, ..., vN}`.                                                                                |\n| `ValuesIn(container)` and `ValuesIn(begin, end)` | Yields values from a C-style array, an STL-style container, or an iterator range `[begin, end)`. `container`, `begin`, and `end` can be expressions whose values are determined at run time.  |\n| `Bool()`                    | Yields sequence `{false, true}`.                                                                                  |\n| `Combine(g1, g2, ..., gN)`  | Yields all combinations (the Cartesian product for the math savvy) of the values generated by the `N` generators. This is only available if your system provides the `<tr1/tuple>` header. If you are sure your system does, and Google Test disagrees, you can override it by defining `GTEST_HAS_TR1_TUPLE=1`. See comments in [include/gtest/internal/gtest-port.h](../include/gtest/internal/gtest-port.h) for more information. |\n\nFor more details, see the comments at the definitions of these functions in the [source code](../include/gtest/gtest-param-test.h).\n\nThe following statement will instantiate tests from the `FooTest` test case\neach with parameter values `\"meeny\"`, `\"miny\"`, and `\"moe\"`.\n\n```\nINSTANTIATE_TEST_CASE_P(InstantiationName,\n                        FooTest,\n                        ::testing::Values(\"meeny\", \"miny\", \"moe\"));\n```\n\nTo distinguish different instances of the pattern (yes, you can\ninstantiate it more than once), the first argument to\n`INSTANTIATE_TEST_CASE_P` is a prefix that will be added to the actual\ntest case name. Remember to pick unique prefixes for different\ninstantiations. The tests from the instantiation above will have these\nnames:\n\n  * `InstantiationName/FooTest.DoesBlah/0` for `\"meeny\"`\n  * `InstantiationName/FooTest.DoesBlah/1` for `\"miny\"`\n  * `InstantiationName/FooTest.DoesBlah/2` for `\"moe\"`\n  * `InstantiationName/FooTest.HasBlahBlah/0` for `\"meeny\"`\n  * `InstantiationName/FooTest.HasBlahBlah/1` for `\"miny\"`\n  * `InstantiationName/FooTest.HasBlahBlah/2` for `\"moe\"`\n\nYou can use these names in [--gtest\\_filter](#running-a-subset-of-the-tests).\n\nThis statement will instantiate all tests from `FooTest` again, each\nwith parameter values `\"cat\"` and `\"dog\"`:\n\n```\nconst char* pets[] = {\"cat\", \"dog\"};\nINSTANTIATE_TEST_CASE_P(AnotherInstantiationName, FooTest,\n                        ::testing::ValuesIn(pets));\n```\n\nThe tests from the instantiation above will have these names:\n\n  * `AnotherInstantiationName/FooTest.DoesBlah/0` for `\"cat\"`\n  * `AnotherInstantiationName/FooTest.DoesBlah/1` for `\"dog\"`\n  * `AnotherInstantiationName/FooTest.HasBlahBlah/0` for `\"cat\"`\n  * `AnotherInstantiationName/FooTest.HasBlahBlah/1` for `\"dog\"`\n\nPlease note that `INSTANTIATE_TEST_CASE_P` will instantiate _all_\ntests in the given test case, whether their definitions come before or\n_after_ the `INSTANTIATE_TEST_CASE_P` statement.\n\nYou can see\n[these](../samples/sample7_unittest.cc)\n[files](../samples/sample8_unittest.cc) for more examples.\n\n_Availability_: Linux, Windows (requires MSVC 8.0 or above), Mac; since version 1.2.0.\n\n## Creating Value-Parameterized Abstract Tests ##\n\nIn the above, we define and instantiate `FooTest` in the same source\nfile. Sometimes you may want to define value-parameterized tests in a\nlibrary and let other people instantiate them later. This pattern is\nknown as <i>abstract tests</i>. As an example of its application, when you\nare designing an interface you can write a standard suite of abstract\ntests (perhaps using a factory function as the test parameter) that\nall implementations of the interface are expected to pass. When\nsomeone implements the interface, he can instantiate your suite to get\nall the interface-conformance tests for free.\n\nTo define abstract tests, you should organize your code like this:\n\n  1. Put the definition of the parameterized test fixture class (e.g. `FooTest`) in a header file, say `foo_param_test.h`. Think of this as _declaring_ your abstract tests.\n  1. Put the `TEST_P` definitions in `foo_param_test.cc`, which includes `foo_param_test.h`. Think of this as _implementing_ your abstract tests.\n\nOnce they are defined, you can instantiate them by including\n`foo_param_test.h`, invoking `INSTANTIATE_TEST_CASE_P()`, and linking\nwith `foo_param_test.cc`. You can instantiate the same abstract test\ncase multiple times, possibly in different source files.\n\n# Typed Tests #\n\nSuppose you have multiple implementations of the same interface and\nwant to make sure that all of them satisfy some common requirements.\nOr, you may have defined several types that are supposed to conform to\nthe same \"concept\" and you want to verify it.  In both cases, you want\nthe same test logic repeated for different types.\n\nWhile you can write one `TEST` or `TEST_F` for each type you want to\ntest (and you may even factor the test logic into a function template\nthat you invoke from the `TEST`), it's tedious and doesn't scale:\nif you want _m_ tests over _n_ types, you'll end up writing _m\\*n_\n`TEST`s.\n\n_Typed tests_ allow you to repeat the same test logic over a list of\ntypes.  You only need to write the test logic once, although you must\nknow the type list when writing typed tests.  Here's how you do it:\n\nFirst, define a fixture class template.  It should be parameterized\nby a type.  Remember to derive it from `::testing::Test`:\n\n```\ntemplate <typename T>\nclass FooTest : public ::testing::Test {\n public:\n  ...\n  typedef std::list<T> List;\n  static T shared_;\n  T value_;\n};\n```\n\nNext, associate a list of types with the test case, which will be\nrepeated for each type in the list:\n\n```\ntypedef ::testing::Types<char, int, unsigned int> MyTypes;\nTYPED_TEST_CASE(FooTest, MyTypes);\n```\n\nThe `typedef` is necessary for the `TYPED_TEST_CASE` macro to parse\ncorrectly.  Otherwise the compiler will think that each comma in the\ntype list introduces a new macro argument.\n\nThen, use `TYPED_TEST()` instead of `TEST_F()` to define a typed test\nfor this test case.  You can repeat this as many times as you want:\n\n```\nTYPED_TEST(FooTest, DoesBlah) {\n  // Inside a test, refer to the special name TypeParam to get the type\n  // parameter.  Since we are inside a derived class template, C++ requires\n  // us to visit the members of FooTest via 'this'.\n  TypeParam n = this->value_;\n\n  // To visit static members of the fixture, add the 'TestFixture::'\n  // prefix.\n  n += TestFixture::shared_;\n\n  // To refer to typedefs in the fixture, add the 'typename TestFixture::'\n  // prefix.  The 'typename' is required to satisfy the compiler.\n  typename TestFixture::List values;\n  values.push_back(n);\n  ...\n}\n\nTYPED_TEST(FooTest, HasPropertyA) { ... }\n```\n\nYou can see `samples/sample6_unittest.cc` for a complete example.\n\n_Availability:_ Linux, Windows (requires MSVC 8.0 or above), Mac;\nsince version 1.1.0.\n\n# Type-Parameterized Tests #\n\n_Type-parameterized tests_ are like typed tests, except that they\ndon't require you to know the list of types ahead of time.  Instead,\nyou can define the test logic first and instantiate it with different\ntype lists later.  You can even instantiate it more than once in the\nsame program.\n\nIf you are designing an interface or concept, you can define a suite\nof type-parameterized tests to verify properties that any valid\nimplementation of the interface/concept should have.  Then, the author\nof each implementation can just instantiate the test suite with his\ntype to verify that it conforms to the requirements, without having to\nwrite similar tests repeatedly.  Here's an example:\n\nFirst, define a fixture class template, as we did with typed tests:\n\n```\ntemplate <typename T>\nclass FooTest : public ::testing::Test {\n  ...\n};\n```\n\nNext, declare that you will define a type-parameterized test case:\n\n```\nTYPED_TEST_CASE_P(FooTest);\n```\n\nThe `_P` suffix is for \"parameterized\" or \"pattern\", whichever you\nprefer to think.\n\nThen, use `TYPED_TEST_P()` to define a type-parameterized test.  You\ncan repeat this as many times as you want:\n\n```\nTYPED_TEST_P(FooTest, DoesBlah) {\n  // Inside a test, refer to TypeParam to get the type parameter.\n  TypeParam n = 0;\n  ...\n}\n\nTYPED_TEST_P(FooTest, HasPropertyA) { ... }\n```\n\nNow the tricky part: you need to register all test patterns using the\n`REGISTER_TYPED_TEST_CASE_P` macro before you can instantiate them.\nThe first argument of the macro is the test case name; the rest are\nthe names of the tests in this test case:\n\n```\nREGISTER_TYPED_TEST_CASE_P(FooTest,\n                           DoesBlah, HasPropertyA);\n```\n\nFinally, you are free to instantiate the pattern with the types you\nwant.  If you put the above code in a header file, you can `#include`\nit in multiple C++ source files and instantiate it multiple times.\n\n```\ntypedef ::testing::Types<char, int, unsigned int> MyTypes;\nINSTANTIATE_TYPED_TEST_CASE_P(My, FooTest, MyTypes);\n```\n\nTo distinguish different instances of the pattern, the first argument\nto the `INSTANTIATE_TYPED_TEST_CASE_P` macro is a prefix that will be\nadded to the actual test case name.  Remember to pick unique prefixes\nfor different instances.\n\nIn the special case where the type list contains only one type, you\ncan write that type directly without `::testing::Types<...>`, like this:\n\n```\nINSTANTIATE_TYPED_TEST_CASE_P(My, FooTest, int);\n```\n\nYou can see `samples/sample6_unittest.cc` for a complete example.\n\n_Availability:_ Linux, Windows (requires MSVC 8.0 or above), Mac;\nsince version 1.1.0.\n\n# Testing Private Code #\n\nIf you change your software's internal implementation, your tests should not\nbreak as long as the change is not observable by users. Therefore, per the\n_black-box testing principle_, most of the time you should test your code\nthrough its public interfaces.\n\nIf you still find yourself needing to test internal implementation code,\nconsider if there's a better design that wouldn't require you to do so. If you\nabsolutely have to test non-public interface code though, you can. There are\ntwo cases to consider:\n\n  * Static functions (_not_ the same as static member functions!) or unnamed namespaces, and\n  * Private or protected class members\n\n## Static Functions ##\n\nBoth static functions and definitions/declarations in an unnamed namespace are\nonly visible within the same translation unit. To test them, you can `#include`\nthe entire `.cc` file being tested in your `*_test.cc` file. (`#include`ing `.cc`\nfiles is not a good way to reuse code - you should not do this in production\ncode!)\n\nHowever, a better approach is to move the private code into the\n`foo::internal` namespace, where `foo` is the namespace your project normally\nuses, and put the private declarations in a `*-internal.h` file. Your\nproduction `.cc` files and your tests are allowed to include this internal\nheader, but your clients are not. This way, you can fully test your internal\nimplementation without leaking it to your clients.\n\n## Private Class Members ##\n\nPrivate class members are only accessible from within the class or by friends.\nTo access a class' private members, you can declare your test fixture as a\nfriend to the class and define accessors in your fixture. Tests using the\nfixture can then access the private members of your production class via the\naccessors in the fixture. Note that even though your fixture is a friend to\nyour production class, your tests are not automatically friends to it, as they\nare technically defined in sub-classes of the fixture.\n\nAnother way to test private members is to refactor them into an implementation\nclass, which is then declared in a `*-internal.h` file. Your clients aren't\nallowed to include this header but your tests can. Such is called the Pimpl\n(Private Implementation) idiom.\n\nOr, you can declare an individual test as a friend of your class by adding this\nline in the class body:\n\n```\nFRIEND_TEST(TestCaseName, TestName);\n```\n\nFor example,\n```\n// foo.h\n#include \"gtest/gtest_prod.h\"\n\n// Defines FRIEND_TEST.\nclass Foo {\n  ...\n private:\n  FRIEND_TEST(FooTest, BarReturnsZeroOnNull);\n  int Bar(void* x);\n};\n\n// foo_test.cc\n...\nTEST(FooTest, BarReturnsZeroOnNull) {\n  Foo foo;\n  EXPECT_EQ(0, foo.Bar(NULL));\n  // Uses Foo's private member Bar().\n}\n```\n\nPay special attention when your class is defined in a namespace, as you should\ndefine your test fixtures and tests in the same namespace if you want them to\nbe friends of your class. For example, if the code to be tested looks like:\n\n```\nnamespace my_namespace {\n\nclass Foo {\n  friend class FooTest;\n  FRIEND_TEST(FooTest, Bar);\n  FRIEND_TEST(FooTest, Baz);\n  ...\n  definition of the class Foo\n  ...\n};\n\n}  // namespace my_namespace\n```\n\nYour test code should be something like:\n\n```\nnamespace my_namespace {\nclass FooTest : public ::testing::Test {\n protected:\n  ...\n};\n\nTEST_F(FooTest, Bar) { ... }\nTEST_F(FooTest, Baz) { ... }\n\n}  // namespace my_namespace\n```\n\n# Catching Failures #\n\nIf you are building a testing utility on top of Google Test, you'll\nwant to test your utility.  What framework would you use to test it?\nGoogle Test, of course.\n\nThe challenge is to verify that your testing utility reports failures\ncorrectly.  In frameworks that report a failure by throwing an\nexception, you could catch the exception and assert on it.  But Google\nTest doesn't use exceptions, so how do we test that a piece of code\ngenerates an expected failure?\n\n`\"gtest/gtest-spi.h\"` contains some constructs to do this.  After\n`#include`ing this header, you can use\n\n| `EXPECT_FATAL_FAILURE(`_statement, substring_`);` |\n|:--------------------------------------------------|\n\nto assert that _statement_ generates a fatal (e.g. `ASSERT_*`) failure\nwhose message contains the given _substring_, or use\n\n| `EXPECT_NONFATAL_FAILURE(`_statement, substring_`);` |\n|:-----------------------------------------------------|\n\nif you are expecting a non-fatal (e.g. `EXPECT_*`) failure.\n\nFor technical reasons, there are some caveats:\n\n  1. You cannot stream a failure message to either macro.\n  1. _statement_ in `EXPECT_FATAL_FAILURE()` cannot reference local non-static variables or non-static members of `this` object.\n  1. _statement_ in `EXPECT_FATAL_FAILURE()` cannot return a value.\n\n_Note:_ Google Test is designed with threads in mind. Once the\nsynchronization primitives in `\"gtest/internal/gtest-port.h\"` have\nbeen implemented, Google Test will become thread-safe, meaning that\nyou can then use assertions in multiple threads concurrently. Before\nthat, however, Google Test only supports single-threaded usage. Once\nthread-safe, `EXPECT_FATAL_FAILURE()` and `EXPECT_NONFATAL_FAILURE()`\nwill capture failures in the current thread only. If _statement_\ncreates new threads, failures in these threads will be ignored. If\nyou want to capture failures from all threads instead, you should use\nthe following macros:\n\n| `EXPECT_FATAL_FAILURE_ON_ALL_THREADS(`_statement, substring_`);` |\n|:-----------------------------------------------------------------|\n| `EXPECT_NONFATAL_FAILURE_ON_ALL_THREADS(`_statement, substring_`);` |\n\n# Getting the Current Test's Name #\n\nSometimes a function may need to know the name of the currently running test.\nFor example, you may be using the `SetUp()` method of your test fixture to set\nthe golden file name based on which test is running. The `::testing::TestInfo`\nclass has this information:\n\n```\nnamespace testing {\n\nclass TestInfo {\n public:\n  // Returns the test case name and the test name, respectively.\n  //\n  // Do NOT delete or free the return value - it's managed by the\n  // TestInfo class.\n  const char* test_case_name() const;\n  const char* name() const;\n};\n\n}  // namespace testing\n```\n\n\n> To obtain a `TestInfo` object for the currently running test, call\n`current_test_info()` on the `UnitTest` singleton object:\n\n```\n// Gets information about the currently running test.\n// Do NOT delete the returned object - it's managed by the UnitTest class.\nconst ::testing::TestInfo* const test_info =\n  ::testing::UnitTest::GetInstance()->current_test_info();\nprintf(\"We are in test %s of test case %s.\\n\",\n       test_info->name(), test_info->test_case_name());\n```\n\n`current_test_info()` returns a null pointer if no test is running. In\nparticular, you cannot find the test case name in `TestCaseSetUp()`,\n`TestCaseTearDown()` (where you know the test case name implicitly), or\nfunctions called from them.\n\n_Availability:_ Linux, Windows, Mac.\n\n# Extending Google Test by Handling Test Events #\n\nGoogle Test provides an <b>event listener API</b> to let you receive\nnotifications about the progress of a test program and test\nfailures. The events you can listen to include the start and end of\nthe test program, a test case, or a test method, among others. You may\nuse this API to augment or replace the standard console output,\nreplace the XML output, or provide a completely different form of\noutput, such as a GUI or a database. You can also use test events as\ncheckpoints to implement a resource leak checker, for example.\n\n_Availability:_ Linux, Windows, Mac; since v1.4.0.\n\n## Defining Event Listeners ##\n\nTo define a event listener, you subclass either\n[testing::TestEventListener](../include/gtest/gtest.h#L991)\nor [testing::EmptyTestEventListener](../include/gtest/gtest.h#L1044).\nThe former is an (abstract) interface, where <i>each pure virtual method<br>\ncan be overridden to handle a test event</i> (For example, when a test\nstarts, the `OnTestStart()` method will be called.). The latter provides\nan empty implementation of all methods in the interface, such that a\nsubclass only needs to override the methods it cares about.\n\nWhen an event is fired, its context is passed to the handler function\nas an argument. The following argument types are used:\n  * [UnitTest](../include/gtest/gtest.h#L1151) reflects the state of the entire test program,\n  * [TestCase](../include/gtest/gtest.h#L778) has information about a test case, which can contain one or more tests,\n  * [TestInfo](../include/gtest/gtest.h#L644) contains the state of a test, and\n  * [TestPartResult](../include/gtest/gtest-test-part.h#L47) represents the result of a test assertion.\n\nAn event handler function can examine the argument it receives to find\nout interesting information about the event and the test program's\nstate.  Here's an example:\n\n```\n  class MinimalistPrinter : public ::testing::EmptyTestEventListener {\n    // Called before a test starts.\n    virtual void OnTestStart(const ::testing::TestInfo& test_info) {\n      printf(\"*** Test %s.%s starting.\\n\",\n             test_info.test_case_name(), test_info.name());\n    }\n\n    // Called after a failed assertion or a SUCCEED() invocation.\n    virtual void OnTestPartResult(\n        const ::testing::TestPartResult& test_part_result) {\n      printf(\"%s in %s:%d\\n%s\\n\",\n             test_part_result.failed() ? \"*** Failure\" : \"Success\",\n             test_part_result.file_name(),\n             test_part_result.line_number(),\n             test_part_result.summary());\n    }\n\n    // Called after a test ends.\n    virtual void OnTestEnd(const ::testing::TestInfo& test_info) {\n      printf(\"*** Test %s.%s ending.\\n\",\n             test_info.test_case_name(), test_info.name());\n    }\n  };\n```\n\n## Using Event Listeners ##\n\nTo use the event listener you have defined, add an instance of it to\nthe Google Test event listener list (represented by class\n[TestEventListeners](../include/gtest/gtest.h#L1064)\n- note the \"s\" at the end of the name) in your\n`main()` function, before calling `RUN_ALL_TESTS()`:\n```\nint main(int argc, char** argv) {\n  ::testing::InitGoogleTest(&argc, argv);\n  // Gets hold of the event listener list.\n  ::testing::TestEventListeners& listeners =\n      ::testing::UnitTest::GetInstance()->listeners();\n  // Adds a listener to the end.  Google Test takes the ownership.\n  listeners.Append(new MinimalistPrinter);\n  return RUN_ALL_TESTS();\n}\n```\n\nThere's only one problem: the default test result printer is still in\neffect, so its output will mingle with the output from your minimalist\nprinter. To suppress the default printer, just release it from the\nevent listener list and delete it. You can do so by adding one line:\n```\n  ...\n  delete listeners.Release(listeners.default_result_printer());\n  listeners.Append(new MinimalistPrinter);\n  return RUN_ALL_TESTS();\n```\n\nNow, sit back and enjoy a completely different output from your\ntests. For more details, you can read this\n[sample](../samples/sample9_unittest.cc).\n\nYou may append more than one listener to the list. When an `On*Start()`\nor `OnTestPartResult()` event is fired, the listeners will receive it in\nthe order they appear in the list (since new listeners are added to\nthe end of the list, the default text printer and the default XML\ngenerator will receive the event first). An `On*End()` event will be\nreceived by the listeners in the _reverse_ order. This allows output by\nlisteners added later to be framed by output from listeners added\nearlier.\n\n## Generating Failures in Listeners ##\n\nYou may use failure-raising macros (`EXPECT_*()`, `ASSERT_*()`,\n`FAIL()`, etc) when processing an event. There are some restrictions:\n\n  1. You cannot generate any failure in `OnTestPartResult()` (otherwise it will cause `OnTestPartResult()` to be called recursively).\n  1. A listener that handles `OnTestPartResult()` is not allowed to generate any failure.\n\nWhen you add listeners to the listener list, you should put listeners\nthat handle `OnTestPartResult()` _before_ listeners that can generate\nfailures. This ensures that failures generated by the latter are\nattributed to the right test by the former.\n\nWe have a sample of failure-raising listener\n[here](../samples/sample10_unittest.cc).\n\n# Running Test Programs: Advanced Options #\n\nGoogle Test test programs are ordinary executables. Once built, you can run\nthem directly and affect their behavior via the following environment variables\nand/or command line flags. For the flags to work, your programs must call\n`::testing::InitGoogleTest()` before calling `RUN_ALL_TESTS()`.\n\nTo see a list of supported flags and their usage, please run your test\nprogram with the `--help` flag.  You can also use `-h`, `-?`, or `/?`\nfor short.  This feature is added in version 1.3.0.\n\nIf an option is specified both by an environment variable and by a\nflag, the latter takes precedence.  Most of the options can also be\nset/read in code: to access the value of command line flag\n`--gtest_foo`, write `::testing::GTEST_FLAG(foo)`.  A common pattern is\nto set the value of a flag before calling `::testing::InitGoogleTest()`\nto change the default value of the flag:\n```\nint main(int argc, char** argv) {\n  // Disables elapsed time by default.\n  ::testing::GTEST_FLAG(print_time) = false;\n\n  // This allows the user to override the flag on the command line.\n  ::testing::InitGoogleTest(&argc, argv);\n\n  return RUN_ALL_TESTS();\n}\n```\n\n## Selecting Tests ##\n\nThis section shows various options for choosing which tests to run.\n\n### Listing Test Names ###\n\nSometimes it is necessary to list the available tests in a program before\nrunning them so that a filter may be applied if needed. Including the flag\n`--gtest_list_tests` overrides all other flags and lists tests in the following\nformat:\n```\nTestCase1.\n  TestName1\n  TestName2\nTestCase2.\n  TestName\n```\n\nNone of the tests listed are actually run if the flag is provided. There is no\ncorresponding environment variable for this flag.\n\n_Availability:_ Linux, Windows, Mac.\n\n### Running a Subset of the Tests ###\n\nBy default, a Google Test program runs all tests the user has defined.\nSometimes, you want to run only a subset of the tests (e.g. for debugging or\nquickly verifying a change). If you set the `GTEST_FILTER` environment variable\nor the `--gtest_filter` flag to a filter string, Google Test will only run the\ntests whose full names (in the form of `TestCaseName.TestName`) match the\nfilter.\n\nThe format of a filter is a '`:`'-separated list of wildcard patterns (called\nthe positive patterns) optionally followed by a '`-`' and another\n'`:`'-separated pattern list (called the negative patterns). A test matches the\nfilter if and only if it matches any of the positive patterns but does not\nmatch any of the negative patterns.\n\nA pattern may contain `'*'` (matches any string) or `'?'` (matches any single\ncharacter). For convenience, the filter `'*-NegativePatterns'` can be also\nwritten as `'-NegativePatterns'`.\n\nFor example:\n\n  * `./foo_test` Has no flag, and thus runs all its tests.\n  * `./foo_test --gtest_filter=*` Also runs everything, due to the single match-everything `*` value.\n  * `./foo_test --gtest_filter=FooTest.*` Runs everything in test case `FooTest`.\n  * `./foo_test --gtest_filter=*Null*:*Constructor*` Runs any test whose full name contains either `\"Null\"` or `\"Constructor\"`.\n  * `./foo_test --gtest_filter=-*DeathTest.*` Runs all non-death tests.\n  * `./foo_test --gtest_filter=FooTest.*-FooTest.Bar` Runs everything in test case `FooTest` except `FooTest.Bar`.\n\n_Availability:_ Linux, Windows, Mac.\n\n### Temporarily Disabling Tests ###\n\nIf you have a broken test that you cannot fix right away, you can add the\n`DISABLED_` prefix to its name. This will exclude it from execution. This is\nbetter than commenting out the code or using `#if 0`, as disabled tests are\nstill compiled (and thus won't rot).\n\nIf you need to disable all tests in a test case, you can either add `DISABLED_`\nto the front of the name of each test, or alternatively add it to the front of\nthe test case name.\n\nFor example, the following tests won't be run by Google Test, even though they\nwill still be compiled:\n\n```\n// Tests that Foo does Abc.\nTEST(FooTest, DISABLED_DoesAbc) { ... }\n\nclass DISABLED_BarTest : public ::testing::Test { ... };\n\n// Tests that Bar does Xyz.\nTEST_F(DISABLED_BarTest, DoesXyz) { ... }\n```\n\n_Note:_ This feature should only be used for temporary pain-relief. You still\nhave to fix the disabled tests at a later date. As a reminder, Google Test will\nprint a banner warning you if a test program contains any disabled tests.\n\n_Tip:_ You can easily count the number of disabled tests you have\nusing `grep`. This number can be used as a metric for improving your\ntest quality.\n\n_Availability:_ Linux, Windows, Mac.\n\n### Temporarily Enabling Disabled Tests ###\n\nTo include [disabled tests](#temporarily-disabling-tests) in test\nexecution, just invoke the test program with the\n`--gtest_also_run_disabled_tests` flag or set the\n`GTEST_ALSO_RUN_DISABLED_TESTS` environment variable to a value other\nthan `0`.  You can combine this with the\n[--gtest\\_filter](#running-a-subset-of-the-tests) flag to further select\nwhich disabled tests to run.\n\n_Availability:_ Linux, Windows, Mac; since version 1.3.0.\n\n## Repeating the Tests ##\n\nOnce in a while you'll run into a test whose result is hit-or-miss. Perhaps it\nwill fail only 1% of the time, making it rather hard to reproduce the bug under\na debugger. This can be a major source of frustration.\n\nThe `--gtest_repeat` flag allows you to repeat all (or selected) test methods\nin a program many times. Hopefully, a flaky test will eventually fail and give\nyou a chance to debug. Here's how to use it:\n\n| `$ foo_test --gtest_repeat=1000` | Repeat foo\\_test 1000 times and don't stop at failures. |\n|:---------------------------------|:--------------------------------------------------------|\n| `$ foo_test --gtest_repeat=-1`   | A negative count means repeating forever.               |\n| `$ foo_test --gtest_repeat=1000 --gtest_break_on_failure` | Repeat foo\\_test 1000 times, stopping at the first failure. This is especially useful when running under a debugger: when the testfails, it will drop into the debugger and you can then inspect variables and stacks. |\n| `$ foo_test --gtest_repeat=1000 --gtest_filter=FooBar` | Repeat the tests whose name matches the filter 1000 times. |\n\nIf your test program contains global set-up/tear-down code registered\nusing `AddGlobalTestEnvironment()`, it will be repeated in each\niteration as well, as the flakiness may be in it. You can also specify\nthe repeat count by setting the `GTEST_REPEAT` environment variable.\n\n_Availability:_ Linux, Windows, Mac.\n\n## Shuffling the Tests ##\n\nYou can specify the `--gtest_shuffle` flag (or set the `GTEST_SHUFFLE`\nenvironment variable to `1`) to run the tests in a program in a random\norder. This helps to reveal bad dependencies between tests.\n\nBy default, Google Test uses a random seed calculated from the current\ntime. Therefore you'll get a different order every time. The console\noutput includes the random seed value, such that you can reproduce an\norder-related test failure later. To specify the random seed\nexplicitly, use the `--gtest_random_seed=SEED` flag (or set the\n`GTEST_RANDOM_SEED` environment variable), where `SEED` is an integer\nbetween 0 and 99999. The seed value 0 is special: it tells Google Test\nto do the default behavior of calculating the seed from the current\ntime.\n\nIf you combine this with `--gtest_repeat=N`, Google Test will pick a\ndifferent random seed and re-shuffle the tests in each iteration.\n\n_Availability:_ Linux, Windows, Mac; since v1.4.0.\n\n## Controlling Test Output ##\n\nThis section teaches how to tweak the way test results are reported.\n\n### Colored Terminal Output ###\n\nGoogle Test can use colors in its terminal output to make it easier to spot\nthe separation between tests, and whether tests passed.\n\nYou can set the GTEST\\_COLOR environment variable or set the `--gtest_color`\ncommand line flag to `yes`, `no`, or `auto` (the default) to enable colors,\ndisable colors, or let Google Test decide. When the value is `auto`, Google\nTest will use colors if and only if the output goes to a terminal and (on\nnon-Windows platforms) the `TERM` environment variable is set to `xterm` or\n`xterm-color`.\n\n_Availability:_ Linux, Windows, Mac.\n\n### Suppressing the Elapsed Time ###\n\nBy default, Google Test prints the time it takes to run each test.  To\nsuppress that, run the test program with the `--gtest_print_time=0`\ncommand line flag.  Setting the `GTEST_PRINT_TIME` environment\nvariable to `0` has the same effect.\n\n_Availability:_ Linux, Windows, Mac.  (In Google Test 1.3.0 and lower,\nthe default behavior is that the elapsed time is **not** printed.)\n\n### Generating an XML Report ###\n\nGoogle Test can emit a detailed XML report to a file in addition to its normal\ntextual output. The report contains the duration of each test, and thus can\nhelp you identify slow tests.\n\nTo generate the XML report, set the `GTEST_OUTPUT` environment variable or the\n`--gtest_output` flag to the string `\"xml:_path_to_output_file_\"`, which will\ncreate the file at the given location. You can also just use the string\n`\"xml\"`, in which case the output can be found in the `test_detail.xml` file in\nthe current directory.\n\nIf you specify a directory (for example, `\"xml:output/directory/\"` on Linux or\n`\"xml:output\\directory\\\"` on Windows), Google Test will create the XML file in\nthat directory, named after the test executable (e.g. `foo_test.xml` for test\nprogram `foo_test` or `foo_test.exe`). If the file already exists (perhaps left\nover from a previous run), Google Test will pick a different name (e.g.\n`foo_test_1.xml`) to avoid overwriting it.\n\nThe report uses the format described here.  It is based on the\n`junitreport` Ant task and can be parsed by popular continuous build\nsystems like [Hudson](https://hudson.dev.java.net/). Since that format\nwas originally intended for Java, a little interpretation is required\nto make it apply to Google Test tests, as shown here:\n\n```\n<testsuites name=\"AllTests\" ...>\n  <testsuite name=\"test_case_name\" ...>\n    <testcase name=\"test_name\" ...>\n      <failure message=\"...\"/>\n      <failure message=\"...\"/>\n      <failure message=\"...\"/>\n    </testcase>\n  </testsuite>\n</testsuites>\n```\n\n  * The root `<testsuites>` element corresponds to the entire test program.\n  * `<testsuite>` elements correspond to Google Test test cases.\n  * `<testcase>` elements correspond to Google Test test functions.\n\nFor instance, the following program\n\n```\nTEST(MathTest, Addition) { ... }\nTEST(MathTest, Subtraction) { ... }\nTEST(LogicTest, NonContradiction) { ... }\n```\n\ncould generate this report:\n\n```\n<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<testsuites tests=\"3\" failures=\"1\" errors=\"0\" time=\"35\" name=\"AllTests\">\n  <testsuite name=\"MathTest\" tests=\"2\" failures=\"1\" errors=\"0\" time=\"15\">\n    <testcase name=\"Addition\" status=\"run\" time=\"7\" classname=\"\">\n      <failure message=\"Value of: add(1, 1)&#x0A; Actual: 3&#x0A;Expected: 2\" type=\"\"/>\n      <failure message=\"Value of: add(1, -1)&#x0A; Actual: 1&#x0A;Expected: 0\" type=\"\"/>\n    </testcase>\n    <testcase name=\"Subtraction\" status=\"run\" time=\"5\" classname=\"\">\n    </testcase>\n  </testsuite>\n  <testsuite name=\"LogicTest\" tests=\"1\" failures=\"0\" errors=\"0\" time=\"5\">\n    <testcase name=\"NonContradiction\" status=\"run\" time=\"5\" classname=\"\">\n    </testcase>\n  </testsuite>\n</testsuites>\n```\n\nThings to note:\n\n  * The `tests` attribute of a `<testsuites>` or `<testsuite>` element tells how many test functions the Google Test program or test case contains, while the `failures` attribute tells how many of them failed.\n  * The `time` attribute expresses the duration of the test, test case, or entire test program in milliseconds.\n  * Each `<failure>` element corresponds to a single failed Google Test assertion.\n  * Some JUnit concepts don't apply to Google Test, yet we have to conform to the DTD. Therefore you'll see some dummy elements and attributes in the report. You can safely ignore these parts.\n\n_Availability:_ Linux, Windows, Mac.\n\n## Controlling How Failures Are Reported ##\n\n### Turning Assertion Failures into Break-Points ###\n\nWhen running test programs under a debugger, it's very convenient if the\ndebugger can catch an assertion failure and automatically drop into interactive\nmode. Google Test's _break-on-failure_ mode supports this behavior.\n\nTo enable it, set the `GTEST_BREAK_ON_FAILURE` environment variable to a value\nother than `0` . Alternatively, you can use the `--gtest_break_on_failure`\ncommand line flag.\n\n_Availability:_ Linux, Windows, Mac.\n\n### Disabling Catching Test-Thrown Exceptions ###\n\nGoogle Test can be used either with or without exceptions enabled.  If\na test throws a C++ exception or (on Windows) a structured exception\n(SEH), by default Google Test catches it, reports it as a test\nfailure, and continues with the next test method.  This maximizes the\ncoverage of a test run.  Also, on Windows an uncaught exception will\ncause a pop-up window, so catching the exceptions allows you to run\nthe tests automatically.\n\nWhen debugging the test failures, however, you may instead want the\nexceptions to be handled by the debugger, such that you can examine\nthe call stack when an exception is thrown.  To achieve that, set the\n`GTEST_CATCH_EXCEPTIONS` environment variable to `0`, or use the\n`--gtest_catch_exceptions=0` flag when running the tests.\n\n**Availability**: Linux, Windows, Mac.\n\n### Letting Another Testing Framework Drive ###\n\nIf you work on a project that has already been using another testing\nframework and is not ready to completely switch to Google Test yet,\nyou can get much of Google Test's benefit by using its assertions in\nyour existing tests.  Just change your `main()` function to look\nlike:\n\n```\n#include \"gtest/gtest.h\"\n\nint main(int argc, char** argv) {\n  ::testing::GTEST_FLAG(throw_on_failure) = true;\n  // Important: Google Test must be initialized.\n  ::testing::InitGoogleTest(&argc, argv);\n\n  ... whatever your existing testing framework requires ...\n}\n```\n\nWith that, you can use Google Test assertions in addition to the\nnative assertions your testing framework provides, for example:\n\n```\nvoid TestFooDoesBar() {\n  Foo foo;\n  EXPECT_LE(foo.Bar(1), 100);     // A Google Test assertion.\n  CPPUNIT_ASSERT(foo.IsEmpty());  // A native assertion.\n}\n```\n\nIf a Google Test assertion fails, it will print an error message and\nthrow an exception, which will be treated as a failure by your host\ntesting framework.  If you compile your code with exceptions disabled,\na failed Google Test assertion will instead exit your program with a\nnon-zero code, which will also signal a test failure to your test\nrunner.\n\nIf you don't write `::testing::GTEST_FLAG(throw_on_failure) = true;` in\nyour `main()`, you can alternatively enable this feature by specifying\nthe `--gtest_throw_on_failure` flag on the command-line or setting the\n`GTEST_THROW_ON_FAILURE` environment variable to a non-zero value.\n\nDeath tests are _not_ supported when other test framework is used to organize tests.\n\n_Availability:_ Linux, Windows, Mac; since v1.3.0.\n\n## Distributing Test Functions to Multiple Machines ##\n\nIf you have more than one machine you can use to run a test program,\nyou might want to run the test functions in parallel and get the\nresult faster.  We call this technique _sharding_, where each machine\nis called a _shard_.\n\nGoogle Test is compatible with test sharding.  To take advantage of\nthis feature, your test runner (not part of Google Test) needs to do\nthe following:\n\n  1. Allocate a number of machines (shards) to run the tests.\n  1. On each shard, set the `GTEST_TOTAL_SHARDS` environment variable to the total number of shards.  It must be the same for all shards.\n  1. On each shard, set the `GTEST_SHARD_INDEX` environment variable to the index of the shard.  Different shards must be assigned different indices, which must be in the range `[0, GTEST_TOTAL_SHARDS - 1]`.\n  1. Run the same test program on all shards.  When Google Test sees the above two environment variables, it will select a subset of the test functions to run.  Across all shards, each test function in the program will be run exactly once.\n  1. Wait for all shards to finish, then collect and report the results.\n\nYour project may have tests that were written without Google Test and\nthus don't understand this protocol.  In order for your test runner to\nfigure out which test supports sharding, it can set the environment\nvariable `GTEST_SHARD_STATUS_FILE` to a non-existent file path.  If a\ntest program supports sharding, it will create this file to\nacknowledge the fact (the actual contents of the file are not\nimportant at this time; although we may stick some useful information\nin it in the future.); otherwise it will not create it.\n\nHere's an example to make it clear.  Suppose you have a test program\n`foo_test` that contains the following 5 test functions:\n```\nTEST(A, V)\nTEST(A, W)\nTEST(B, X)\nTEST(B, Y)\nTEST(B, Z)\n```\nand you have 3 machines at your disposal.  To run the test functions in\nparallel, you would set `GTEST_TOTAL_SHARDS` to 3 on all machines, and\nset `GTEST_SHARD_INDEX` to 0, 1, and 2 on the machines respectively.\nThen you would run the same `foo_test` on each machine.\n\nGoogle Test reserves the right to change how the work is distributed\nacross the shards, but here's one possible scenario:\n\n  * Machine #0 runs `A.V` and `B.X`.\n  * Machine #1 runs `A.W` and `B.Y`.\n  * Machine #2 runs `B.Z`.\n\n_Availability:_ Linux, Windows, Mac; since version 1.3.0.\n\n# Fusing Google Test Source Files #\n\nGoogle Test's implementation consists of ~30 files (excluding its own\ntests).  Sometimes you may want them to be packaged up in two files (a\n`.h` and a `.cc`) instead, such that you can easily copy them to a new\nmachine and start hacking there.  For this we provide an experimental\nPython script `fuse_gtest_files.py` in the `scripts/` directory (since release 1.3.0).\nAssuming you have Python 2.4 or above installed on your machine, just\ngo to that directory and run\n```\npython fuse_gtest_files.py OUTPUT_DIR\n```\n\nand you should see an `OUTPUT_DIR` directory being created with files\n`gtest/gtest.h` and `gtest/gtest-all.cc` in it.  These files contain\neverything you need to use Google Test.  Just copy them to anywhere\nyou want and you are ready to write tests.  You can use the\n[scripts/test/Makefile](../scripts/test/Makefile)\nfile as an example on how to compile your tests against them.\n\n# Where to Go from Here #\n\nCongratulations! You've now learned more advanced Google Test tools and are\nready to tackle more complex testing tasks. If you want to dive even deeper, you\ncan read the [Frequently-Asked Questions](FAQ.md).\n"
  },
  {
    "path": "test/gtest/docs/DevGuide.md",
    "content": "\n\nIf you are interested in understanding the internals of Google Test,\nbuilding from source, or contributing ideas or modifications to the\nproject, then this document is for you.\n\n# Introduction #\n\nFirst, let's give you some background of the project.\n\n## Licensing ##\n\nAll Google Test source and pre-built packages are provided under the [New BSD License](http://www.opensource.org/licenses/bsd-license.php).\n\n## The Google Test Community ##\n\nThe Google Test community exists primarily through the [discussion group](http://groups.google.com/group/googletestframework) and the GitHub repository.\nYou are definitely encouraged to contribute to the\ndiscussion and you can also help us to keep the effectiveness of the\ngroup high by following and promoting the guidelines listed here.\n\n### Please Be Friendly ###\n\nShowing courtesy and respect to others is a vital part of the Google\nculture, and we strongly encourage everyone participating in Google\nTest development to join us in accepting nothing less. Of course,\nbeing courteous is not the same as failing to constructively disagree\nwith each other, but it does mean that we should be respectful of each\nother when enumerating the 42 technical reasons that a particular\nproposal may not be the best choice. There's never a reason to be\nantagonistic or dismissive toward anyone who is sincerely trying to\ncontribute to a discussion.\n\nSure, C++ testing is serious business and all that, but it's also\na lot of fun. Let's keep it that way. Let's strive to be one of the\nfriendliest communities in all of open source.\n\nAs always, discuss Google Test in the official GoogleTest discussion group.\nYou don't have to actually submit code in order to sign up. Your participation\nitself is a valuable contribution.\n\n# Working with the Code #\n\nIf you want to get your hands dirty with the code inside Google Test,\nthis is the section for you.\n\n## Compiling from Source ##\n\nOnce you check out the code, you can find instructions on how to\ncompile it in the [README](../README.md) file.\n\n## Testing ##\n\nA testing framework is of no good if itself is not thoroughly tested.\nTests should be written for any new code, and changes should be\nverified to not break existing tests before they are submitted for\nreview. To perform the tests, follow the instructions in\n[README](../README.md) and verify that there are no failures.\n\n# Contributing Code #\n\nWe are excited that Google Test is now open source, and hope to get\ngreat patches from the community. Before you fire up your favorite IDE\nand begin hammering away at that new feature, though, please take the\ntime to read this section and understand the process. While it seems\nrigorous, we want to keep a high standard of quality in the code\nbase.\n\n## Contributor License Agreements ##\n\nYou must sign a Contributor License Agreement (CLA) before we can\naccept any code.  The CLA protects you and us.\n\n  * If you are an individual writing original source code and you're sure you own the intellectual property, then you'll need to sign an [individual CLA](http://code.google.com/legal/individual-cla-v1.0.html).\n  * If you work for a company that wants to allow you to contribute your work to Google Test, then you'll need to sign a [corporate CLA](http://code.google.com/legal/corporate-cla-v1.0.html).\n\nFollow either of the two links above to access the appropriate CLA and\ninstructions for how to sign and return it.\n\n## Coding Style ##\n\nTo keep the source consistent, readable, diffable and easy to merge,\nwe use a fairly rigid coding style, as defined by the [google-styleguide](http://code.google.com/p/google-styleguide/) project.  All patches will be expected\nto conform to the style outlined [here](http://google-styleguide.googlecode.com/svn/trunk/cppguide.xml).\n\n## Updating Generated Code ##\n\nSome of Google Test's source files are generated by the Pump tool (a\nPython script).  If you need to update such files, please modify the\nsource (`foo.h.pump`) and re-generate the C++ file using Pump.  You\ncan read the PumpManual for details.\n\n## Submitting Patches ##\n\nPlease do submit code. Here's what you need to do:\n\n  1. A submission should be a set of changes that addresses one issue in the [issue tracker](https://github.com/google/googletest/issues). Please don't mix more than one logical change per submittal, because it makes the history hard to follow. If you want to make a change that doesn't have a corresponding issue in the issue tracker, please create one.\n  1. Also, coordinate with team members that are listed on the issue in question. This ensures that work isn't being duplicated and communicating your plan early also generally leads to better patches.\n  1. Ensure that your code adheres to the [Google Test source code style](#Coding_Style.md).\n  1. Ensure that there are unit tests for your code.\n  1. Sign a Contributor License Agreement.\n  1. Create a Pull Request in the usual way.\n\n## Google Test Committers ##\n\nThe current members of the Google Test engineering team are the only\ncommitters at present. In the great tradition of eating one's own\ndogfood, we will be requiring each new Google Test engineering team\nmember to earn the right to become a committer by following the\nprocedures in this document, writing consistently great code, and\ndemonstrating repeatedly that he or she truly gets the zen of Google\nTest.\n\n# Release Process #\n\nWe follow a typical release process:\n\n  1. A release branch named `release-X.Y` is created.\n  1. Bugs are fixed and features are added in trunk; those individual patches are merged into the release branch until it's stable.\n  1. An individual point release (the `Z` in `X.Y.Z`) is made by creating a tag from the branch.\n  1. Repeat steps 2 and 3 throughout one release cycle (as determined by features or time).\n  1. Go back to step 1 to create another release branch and so on.\n\n---\n\nThis page is based on the [Making GWT Better](http://code.google.com/webtoolkit/makinggwtbetter.html) guide from the [Google Web Toolkit](http://code.google.com/webtoolkit/) project.  Except as otherwise [noted](http://code.google.com/policies.html#restrictions), the content of this page is licensed under the [Creative Commons Attribution 2.5 License](http://creativecommons.org/licenses/by/2.5/).\n"
  },
  {
    "path": "test/gtest/docs/Documentation.md",
    "content": "This page lists all documentation wiki pages for Google Test **(the SVN trunk version)**\n-- **if you use a released version of Google Test, please read the\ndocumentation for that specific version instead.**\n\n  * [Primer](Primer.md) -- start here if you are new to Google Test.\n  * [Samples](Samples.md) -- learn from examples.\n  * [AdvancedGuide](AdvancedGuide.md) -- learn more about Google Test.\n  * [XcodeGuide](XcodeGuide.md) -- how to use Google Test in Xcode on Mac.\n  * [Frequently-Asked Questions](FAQ.md) -- check here before asking a question on the mailing list.\n\nTo contribute code to Google Test, read:\n\n  * [DevGuide](DevGuide.md) -- read this _before_ writing your first patch.\n  * [PumpManual](PumpManual.md) -- how we generate some of Google Test's source files."
  },
  {
    "path": "test/gtest/docs/FAQ.md",
    "content": "\n\nIf you cannot find the answer to your question here, and you have read\n[Primer](Primer.md) and [AdvancedGuide](AdvancedGuide.md), send it to\ngoogletestframework@googlegroups.com.\n\n## Why should I use Google Test instead of my favorite C++ testing framework? ##\n\nFirst, let us say clearly that we don't want to get into the debate of\nwhich C++ testing framework is **the best**.  There exist many fine\nframeworks for writing C++ tests, and we have tremendous respect for\nthe developers and users of them.  We don't think there is (or will\nbe) a single best framework - you have to pick the right tool for the\nparticular task you are tackling.\n\nWe created Google Test because we couldn't find the right combination\nof features and conveniences in an existing framework to satisfy _our_\nneeds.  The following is a list of things that _we_ like about Google\nTest.  We don't claim them to be unique to Google Test - rather, the\ncombination of them makes Google Test the choice for us.  We hope this\nlist can help you decide whether it is for you too.\n\n  * Google Test is designed to be portable: it doesn't require exceptions or RTTI; it works around various bugs in various compilers and environments; etc.  As a result, it works on Linux, Mac OS X, Windows and several embedded operating systems.\n  * Nonfatal assertions (`EXPECT_*`) have proven to be great time savers, as they allow a test to report multiple failures in a single edit-compile-test cycle.\n  * It's easy to write assertions that generate informative messages: you just use the stream syntax to append any additional information, e.g. `ASSERT_EQ(5, Foo(i)) << \" where i = \" << i;`.  It doesn't require a new set of macros or special functions.\n  * Google Test automatically detects your tests and doesn't require you to enumerate them in order to run them.\n  * Death tests are pretty handy for ensuring that your asserts in production code are triggered by the right conditions.\n  * `SCOPED_TRACE` helps you understand the context of an assertion failure when it comes from inside a sub-routine or loop.\n  * You can decide which tests to run using name patterns.  This saves time when you want to quickly reproduce a test failure.\n  * Google Test can generate XML test result reports that can be parsed by popular continuous build system like Hudson.\n  * Simple things are easy in Google Test, while hard things are possible: in addition to advanced features like [global test environments](AdvancedGuide.md#global-set-up-and-tear-down) and tests parameterized by [values](AdvancedGuide.md#value-parameterized-tests) or [types](docs/AdvancedGuide.md#typed-tests), Google Test supports various ways for the user to extend the framework -- if Google Test doesn't do something out of the box, chances are that a user can implement the feature using Google Test's public API, without changing Google Test itself.  In particular, you can:\n    * expand your testing vocabulary by defining [custom predicates](AdvancedGuide.md#predicate-assertions-for-better-error-messages),\n    * teach Google Test how to [print your types](AdvancedGuide.md#teaching-google-test-how-to-print-your-values),\n    * define your own testing macros or utilities and verify them using Google Test's [Service Provider Interface](AdvancedGuide.md#catching-failures), and\n    * reflect on the test cases or change the test output format by intercepting the [test events](AdvancedGuide.md#extending-google-test-by-handling-test-events).\n\n## I'm getting warnings when compiling Google Test.  Would you fix them? ##\n\nWe strive to minimize compiler warnings Google Test generates.  Before releasing a new version, we test to make sure that it doesn't generate warnings when compiled using its CMake script on Windows, Linux, and Mac OS.\n\nUnfortunately, this doesn't mean you are guaranteed to see no warnings when compiling Google Test in your environment:\n\n  * You may be using a different compiler as we use, or a different version of the same compiler.  We cannot possibly test for all compilers.\n  * You may be compiling on a different platform as we do.\n  * Your project may be using different compiler flags as we do.\n\nIt is not always possible to make Google Test warning-free for everyone.  Or, it may not be desirable if the warning is rarely enabled and fixing the violations makes the code more complex.\n\nIf you see warnings when compiling Google Test, we suggest that you use the `-isystem` flag (assuming your are using GCC) to mark Google Test headers as system headers.  That'll suppress warnings from Google Test headers.\n\n## Why should not test case names and test names contain underscore? ##\n\nUnderscore (`_`) is special, as C++ reserves the following to be used by\nthe compiler and the standard library:\n\n  1. any identifier that starts with an `_` followed by an upper-case letter, and\n  1. any identifier that containers two consecutive underscores (i.e. `__`) _anywhere_ in its name.\n\nUser code is _prohibited_ from using such identifiers.\n\nNow let's look at what this means for `TEST` and `TEST_F`.\n\nCurrently `TEST(TestCaseName, TestName)` generates a class named\n`TestCaseName_TestName_Test`.  What happens if `TestCaseName` or `TestName`\ncontains `_`?\n\n  1. If `TestCaseName` starts with an `_` followed by an upper-case letter (say, `_Foo`), we end up with `_Foo_TestName_Test`, which is reserved and thus invalid.\n  1. If `TestCaseName` ends with an `_` (say, `Foo_`), we get `Foo__TestName_Test`, which is invalid.\n  1. If `TestName` starts with an `_` (say, `_Bar`), we get `TestCaseName__Bar_Test`, which is invalid.\n  1. If `TestName` ends with an `_` (say, `Bar_`), we get `TestCaseName_Bar__Test`, which is invalid.\n\nSo clearly `TestCaseName` and `TestName` cannot start or end with `_`\n(Actually, `TestCaseName` can start with `_` -- as long as the `_` isn't\nfollowed by an upper-case letter.  But that's getting complicated.  So\nfor simplicity we just say that it cannot start with `_`.).\n\nIt may seem fine for `TestCaseName` and `TestName` to contain `_` in the\nmiddle.  However, consider this:\n``` cpp\nTEST(Time, Flies_Like_An_Arrow) { ... }\nTEST(Time_Flies, Like_An_Arrow) { ... }\n```\n\nNow, the two `TEST`s will both generate the same class\n(`Time_Files_Like_An_Arrow_Test`).  That's not good.\n\nSo for simplicity, we just ask the users to avoid `_` in `TestCaseName`\nand `TestName`.  The rule is more constraining than necessary, but it's\nsimple and easy to remember.  It also gives Google Test some wiggle\nroom in case its implementation needs to change in the future.\n\nIf you violate the rule, there may not be immediately consequences,\nbut your test may (just may) break with a new compiler (or a new\nversion of the compiler you are using) or with a new version of Google\nTest.  Therefore it's best to follow the rule.\n\n## Why is it not recommended to install a pre-compiled copy of Google Test (for example, into /usr/local)? ##\n\nIn the early days, we said that you could install\ncompiled Google Test libraries on `*`nix systems using `make install`.\nThen every user of your machine can write tests without\nrecompiling Google Test.\n\nThis seemed like a good idea, but it has a\ngot-cha: every user needs to compile his tests using the _same_ compiler\nflags used to compile the installed Google Test libraries; otherwise\nhe may run into undefined behaviors (i.e. the tests can behave\nstrangely and may even crash for no obvious reasons).\n\nWhy?  Because C++ has this thing called the One-Definition Rule: if\ntwo C++ source files contain different definitions of the same\nclass/function/variable, and you link them together, you violate the\nrule.  The linker may or may not catch the error (in many cases it's\nnot required by the C++ standard to catch the violation).  If it\ndoesn't, you get strange run-time behaviors that are unexpected and\nhard to debug.\n\nIf you compile Google Test and your test code using different compiler\nflags, they may see different definitions of the same\nclass/function/variable (e.g. due to the use of `#if` in Google Test).\nTherefore, for your sanity, we recommend to avoid installing pre-compiled\nGoogle Test libraries.  Instead, each project should compile\nGoogle Test itself such that it can be sure that the same flags are\nused for both Google Test and the tests.\n\n## How do I generate 64-bit binaries on Windows (using Visual Studio 2008)? ##\n\n(Answered by Trevor Robinson)\n\nLoad the supplied Visual Studio solution file, either `msvc\\gtest-md.sln` or\n`msvc\\gtest.sln`. Go through the migration wizard to migrate the\nsolution and project files to Visual Studio 2008. Select\n`Configuration Manager...` from the `Build` menu. Select `<New...>` from\nthe `Active solution platform` dropdown.  Select `x64` from the new\nplatform dropdown, leave `Copy settings from` set to `Win32` and\n`Create new project platforms` checked, then click `OK`. You now have\n`Win32` and `x64` platform configurations, selectable from the\n`Standard` toolbar, which allow you to toggle between building 32-bit or\n64-bit binaries (or both at once using Batch Build).\n\nIn order to prevent build output files from overwriting one another,\nyou'll need to change the `Intermediate Directory` settings for the\nnewly created platform configuration across all the projects. To do\nthis, multi-select (e.g. using shift-click) all projects (but not the\nsolution) in the `Solution Explorer`. Right-click one of them and\nselect `Properties`. In the left pane, select `Configuration Properties`,\nand from the `Configuration` dropdown, select `All Configurations`.\nMake sure the selected platform is `x64`. For the\n`Intermediate Directory` setting, change the value from\n`$(PlatformName)\\$(ConfigurationName)` to\n`$(OutDir)\\$(ProjectName)`. Click `OK` and then build the\nsolution. When the build is complete, the 64-bit binaries will be in\nthe `msvc\\x64\\Debug` directory.\n\n## Can I use Google Test on MinGW? ##\n\nWe haven't tested this ourselves, but Per Abrahamsen reported that he\nwas able to compile and install Google Test successfully when using\nMinGW from Cygwin.  You'll need to configure it with:\n\n`PATH/TO/configure CC=\"gcc -mno-cygwin\" CXX=\"g++ -mno-cygwin\"`\n\nYou should be able to replace the `-mno-cygwin` option with direct links\nto the real MinGW binaries, but we haven't tried that.\n\nCaveats:\n\n  * There are many warnings when compiling.\n  * `make check` will produce some errors as not all tests for Google Test itself are compatible with MinGW.\n\nWe also have reports on successful cross compilation of Google Test\nMinGW binaries on Linux using\n[these instructions](http://wiki.wxwidgets.org/Cross-Compiling_Under_Linux#Cross-compiling_under_Linux_for_MS_Windows)\non the WxWidgets site.\n\nPlease contact `googletestframework@googlegroups.com` if you are\ninterested in improving the support for MinGW.\n\n## Why does Google Test support EXPECT\\_EQ(NULL, ptr) and ASSERT\\_EQ(NULL, ptr) but not EXPECT\\_NE(NULL, ptr) and ASSERT\\_NE(NULL, ptr)? ##\n\nDue to some peculiarity of C++, it requires some non-trivial template\nmeta programming tricks to support using `NULL` as an argument of the\n`EXPECT_XX()` and `ASSERT_XX()` macros. Therefore we only do it where\nit's most needed (otherwise we make the implementation of Google Test\nharder to maintain and more error-prone than necessary).\n\nThe `EXPECT_EQ()` macro takes the _expected_ value as its first\nargument and the _actual_ value as the second. It's reasonable that\nsomeone wants to write `EXPECT_EQ(NULL, some_expression)`, and this\nindeed was requested several times. Therefore we implemented it.\n\nThe need for `EXPECT_NE(NULL, ptr)` isn't nearly as strong. When the\nassertion fails, you already know that `ptr` must be `NULL`, so it\ndoesn't add any information to print ptr in this case. That means\n`EXPECT_TRUE(ptr != NULL)` works just as well.\n\nIf we were to support `EXPECT_NE(NULL, ptr)`, for consistency we'll\nhave to support `EXPECT_NE(ptr, NULL)` as well, as unlike `EXPECT_EQ`,\nwe don't have a convention on the order of the two arguments for\n`EXPECT_NE`. This means using the template meta programming tricks\ntwice in the implementation, making it even harder to understand and\nmaintain. We believe the benefit doesn't justify the cost.\n\nFinally, with the growth of Google Mock's [matcher](../../googlemock/docs/CookBook.md#using-matchers-in-google-test-assertions) library, we are\nencouraging people to use the unified `EXPECT_THAT(value, matcher)`\nsyntax more often in tests. One significant advantage of the matcher\napproach is that matchers can be easily combined to form new matchers,\nwhile the `EXPECT_NE`, etc, macros cannot be easily\ncombined. Therefore we want to invest more in the matchers than in the\n`EXPECT_XX()` macros.\n\n## Does Google Test support running tests in parallel? ##\n\nTest runners tend to be tightly coupled with the build/test\nenvironment, and Google Test doesn't try to solve the problem of\nrunning tests in parallel.  Instead, we tried to make Google Test work\nnicely with test runners.  For example, Google Test's XML report\ncontains the time spent on each test, and its `gtest_list_tests` and\n`gtest_filter` flags can be used for splitting the execution of test\nmethods into multiple processes.  These functionalities can help the\ntest runner run the tests in parallel.\n\n## Why don't Google Test run the tests in different threads to speed things up? ##\n\nIt's difficult to write thread-safe code.  Most tests are not written\nwith thread-safety in mind, and thus may not work correctly in a\nmulti-threaded setting.\n\nIf you think about it, it's already hard to make your code work when\nyou know what other threads are doing.  It's much harder, and\nsometimes even impossible, to make your code work when you don't know\nwhat other threads are doing (remember that test methods can be added,\ndeleted, or modified after your test was written).  If you want to run\nthe tests in parallel, you'd better run them in different processes.\n\n## Why aren't Google Test assertions implemented using exceptions? ##\n\nOur original motivation was to be able to use Google Test in projects\nthat disable exceptions.  Later we realized some additional benefits\nof this approach:\n\n  1. Throwing in a destructor is undefined behavior in C++.  Not using exceptions means Google Test's assertions are safe to use in destructors.\n  1. The `EXPECT_*` family of macros will continue even after a failure, allowing multiple failures in a `TEST` to be reported in a single run. This is a popular feature, as in C++ the edit-compile-test cycle is usually quite long and being able to fixing more than one thing at a time is a blessing.\n  1. If assertions are implemented using exceptions, a test may falsely ignore a failure if it's caught by user code:\n``` cpp\ntry { ... ASSERT_TRUE(...) ... }\ncatch (...) { ... }\n```\nThe above code will pass even if the `ASSERT_TRUE` throws.  While it's unlikely for someone to write this in a test, it's possible to run into this pattern when you write assertions in callbacks that are called by the code under test.\n\nThe downside of not using exceptions is that `ASSERT_*` (implemented\nusing `return`) will only abort the current function, not the current\n`TEST`.\n\n## Why do we use two different macros for tests with and without fixtures? ##\n\nUnfortunately, C++'s macro system doesn't allow us to use the same\nmacro for both cases.  One possibility is to provide only one macro\nfor tests with fixtures, and require the user to define an empty\nfixture sometimes:\n\n``` cpp\nclass FooTest : public ::testing::Test {};\n\nTEST_F(FooTest, DoesThis) { ... }\n```\nor\n``` cpp\ntypedef ::testing::Test FooTest;\n\nTEST_F(FooTest, DoesThat) { ... }\n```\n\nYet, many people think this is one line too many. :-) Our goal was to\nmake it really easy to write tests, so we tried to make simple tests\ntrivial to create.  That means using a separate macro for such tests.\n\nWe think neither approach is ideal, yet either of them is reasonable.\nIn the end, it probably doesn't matter much either way.\n\n## Why don't we use structs as test fixtures? ##\n\nWe like to use structs only when representing passive data.  This\ndistinction between structs and classes is good for documenting the\nintent of the code's author.  Since test fixtures have logic like\n`SetUp()` and `TearDown()`, they are better defined as classes.\n\n## Why are death tests implemented as assertions instead of using a test runner? ##\n\nOur goal was to make death tests as convenient for a user as C++\npossibly allows.  In particular:\n\n  * The runner-style requires to split the information into two pieces: the definition of the death test itself, and the specification for the runner on how to run the death test and what to expect.  The death test would be written in C++, while the runner spec may or may not be.  A user needs to carefully keep the two in sync. `ASSERT_DEATH(statement, expected_message)` specifies all necessary information in one place, in one language, without boilerplate code. It is very declarative.\n  * `ASSERT_DEATH` has a similar syntax and error-reporting semantics as other Google Test assertions, and thus is easy to learn.\n  * `ASSERT_DEATH` can be mixed with other assertions and other logic at your will.  You are not limited to one death test per test method. For example, you can write something like:\n``` cpp\n    if (FooCondition()) {\n      ASSERT_DEATH(Bar(), \"blah\");\n    } else {\n      ASSERT_EQ(5, Bar());\n    }\n```\nIf you prefer one death test per test method, you can write your tests in that style too, but we don't want to impose that on the users.  The fewer artificial limitations the better.\n  * `ASSERT_DEATH` can reference local variables in the current function, and you can decide how many death tests you want based on run-time information.  For example,\n``` cpp\n    const int count = GetCount();  // Only known at run time.\n    for (int i = 1; i <= count; i++) {\n      ASSERT_DEATH({\n        double* buffer = new double[i];\n        ... initializes buffer ...\n        Foo(buffer, i)\n      }, \"blah blah\");\n    }\n```\nThe runner-based approach tends to be more static and less flexible, or requires more user effort to get this kind of flexibility.\n\nAnother interesting thing about `ASSERT_DEATH` is that it calls `fork()`\nto create a child process to run the death test.  This is lightening\nfast, as `fork()` uses copy-on-write pages and incurs almost zero\noverhead, and the child process starts from the user-supplied\nstatement directly, skipping all global and local initialization and\nany code leading to the given statement.  If you launch the child\nprocess from scratch, it can take seconds just to load everything and\nstart running if the test links to many libraries dynamically.\n\n## My death test modifies some state, but the change seems lost after the death test finishes. Why? ##\n\nDeath tests (`EXPECT_DEATH`, etc) are executed in a sub-process s.t. the\nexpected crash won't kill the test program (i.e. the parent process). As a\nresult, any in-memory side effects they incur are observable in their\nrespective sub-processes, but not in the parent process. You can think of them\nas running in a parallel universe, more or less.\n\n## The compiler complains about \"undefined references\" to some static const member variables, but I did define them in the class body. What's wrong? ##\n\nIf your class has a static data member:\n\n``` cpp\n// foo.h\nclass Foo {\n  ...\n  static const int kBar = 100;\n};\n```\n\nYou also need to define it _outside_ of the class body in `foo.cc`:\n\n``` cpp\nconst int Foo::kBar;  // No initializer here.\n```\n\nOtherwise your code is **invalid C++**, and may break in unexpected ways. In\nparticular, using it in Google Test comparison assertions (`EXPECT_EQ`, etc)\nwill generate an \"undefined reference\" linker error.\n\n## I have an interface that has several implementations. Can I write a set of tests once and repeat them over all the implementations? ##\n\nGoogle Test doesn't yet have good support for this kind of tests, or\ndata-driven tests in general. We hope to be able to make improvements in this\narea soon.\n\n## Can I derive a test fixture from another? ##\n\nYes.\n\nEach test fixture has a corresponding and same named test case. This means only\none test case can use a particular fixture. Sometimes, however, multiple test\ncases may want to use the same or slightly different fixtures. For example, you\nmay want to make sure that all of a GUI library's test cases don't leak\nimportant system resources like fonts and brushes.\n\nIn Google Test, you share a fixture among test cases by putting the shared\nlogic in a base test fixture, then deriving from that base a separate fixture\nfor each test case that wants to use this common logic. You then use `TEST_F()`\nto write tests using each derived fixture.\n\nTypically, your code looks like this:\n\n``` cpp\n// Defines a base test fixture.\nclass BaseTest : public ::testing::Test {\n  protected:\n   ...\n};\n\n// Derives a fixture FooTest from BaseTest.\nclass FooTest : public BaseTest {\n  protected:\n    virtual void SetUp() {\n      BaseTest::SetUp();  // Sets up the base fixture first.\n      ... additional set-up work ...\n    }\n    virtual void TearDown() {\n      ... clean-up work for FooTest ...\n      BaseTest::TearDown();  // Remember to tear down the base fixture\n                             // after cleaning up FooTest!\n    }\n    ... functions and variables for FooTest ...\n};\n\n// Tests that use the fixture FooTest.\nTEST_F(FooTest, Bar) { ... }\nTEST_F(FooTest, Baz) { ... }\n\n... additional fixtures derived from BaseTest ...\n```\n\nIf necessary, you can continue to derive test fixtures from a derived fixture.\nGoogle Test has no limit on how deep the hierarchy can be.\n\nFor a complete example using derived test fixtures, see\n[sample5](../samples/sample5_unittest.cc).\n\n## My compiler complains \"void value not ignored as it ought to be.\" What does this mean? ##\n\nYou're probably using an `ASSERT_*()` in a function that doesn't return `void`.\n`ASSERT_*()` can only be used in `void` functions.\n\n## My death test hangs (or seg-faults). How do I fix it? ##\n\nIn Google Test, death tests are run in a child process and the way they work is\ndelicate. To write death tests you really need to understand how they work.\nPlease make sure you have read this.\n\nIn particular, death tests don't like having multiple threads in the parent\nprocess. So the first thing you can try is to eliminate creating threads\noutside of `EXPECT_DEATH()`.\n\nSometimes this is impossible as some library you must use may be creating\nthreads before `main()` is even reached. In this case, you can try to minimize\nthe chance of conflicts by either moving as many activities as possible inside\n`EXPECT_DEATH()` (in the extreme case, you want to move everything inside), or\nleaving as few things as possible in it. Also, you can try to set the death\ntest style to `\"threadsafe\"`, which is safer but slower, and see if it helps.\n\nIf you go with thread-safe death tests, remember that they rerun the test\nprogram from the beginning in the child process. Therefore make sure your\nprogram can run side-by-side with itself and is deterministic.\n\nIn the end, this boils down to good concurrent programming. You have to make\nsure that there is no race conditions or dead locks in your program. No silver\nbullet - sorry!\n\n## Should I use the constructor/destructor of the test fixture or the set-up/tear-down function? ##\n\nThe first thing to remember is that Google Test does not reuse the\nsame test fixture object across multiple tests. For each `TEST_F`,\nGoogle Test will create a fresh test fixture object, _immediately_\ncall `SetUp()`, run the test body, call `TearDown()`, and then\n_immediately_ delete the test fixture object.\n\nWhen you need to write per-test set-up and tear-down logic, you have\nthe choice between using the test fixture constructor/destructor or\n`SetUp()/TearDown()`. The former is usually preferred, as it has the\nfollowing benefits:\n\n  * By initializing a member variable in the constructor, we have the option to make it `const`, which helps prevent accidental changes to its value and makes the tests more obviously correct.\n  * In case we need to subclass the test fixture class, the subclass' constructor is guaranteed to call the base class' constructor first, and the subclass' destructor is guaranteed to call the base class' destructor afterward. With `SetUp()/TearDown()`, a subclass may make the mistake of forgetting to call the base class' `SetUp()/TearDown()` or call them at the wrong moment.\n\nYou may still want to use `SetUp()/TearDown()` in the following rare cases:\n  * If the tear-down operation could throw an exception, you must use `TearDown()` as opposed to the destructor, as throwing in a destructor leads to undefined behavior and usually will kill your program right away. Note that many standard libraries (like STL) may throw when exceptions are enabled in the compiler. Therefore you should prefer `TearDown()` if you want to write portable tests that work with or without exceptions.\n  * The assertion macros throw an exception when flag `--gtest_throw_on_failure` is specified. Therefore, you shouldn't use Google Test assertions in a destructor if you plan to run your tests with this flag.\n  * In a constructor or destructor, you cannot make a virtual function call on this object. (You can call a method declared as virtual, but it will be statically bound.) Therefore, if you need to call a method that will be overriden in a derived class, you have to use `SetUp()/TearDown()`.\n\n## The compiler complains \"no matching function to call\" when I use ASSERT\\_PREDn. How do I fix it? ##\n\nIf the predicate function you use in `ASSERT_PRED*` or `EXPECT_PRED*` is\noverloaded or a template, the compiler will have trouble figuring out which\noverloaded version it should use. `ASSERT_PRED_FORMAT*` and\n`EXPECT_PRED_FORMAT*` don't have this problem.\n\nIf you see this error, you might want to switch to\n`(ASSERT|EXPECT)_PRED_FORMAT*`, which will also give you a better failure\nmessage. If, however, that is not an option, you can resolve the problem by\nexplicitly telling the compiler which version to pick.\n\nFor example, suppose you have\n\n``` cpp\nbool IsPositive(int n) {\n  return n > 0;\n}\nbool IsPositive(double x) {\n  return x > 0;\n}\n```\n\nyou will get a compiler error if you write\n\n``` cpp\nEXPECT_PRED1(IsPositive, 5);\n```\n\nHowever, this will work:\n\n``` cpp\nEXPECT_PRED1(*static_cast<bool (*)(int)>*(IsPositive), 5);\n```\n\n(The stuff inside the angled brackets for the `static_cast` operator is the\ntype of the function pointer for the `int`-version of `IsPositive()`.)\n\nAs another example, when you have a template function\n\n``` cpp\ntemplate <typename T>\nbool IsNegative(T x) {\n  return x < 0;\n}\n```\n\nyou can use it in a predicate assertion like this:\n\n``` cpp\nASSERT_PRED1(IsNegative*<int>*, -5);\n```\n\nThings are more interesting if your template has more than one parameters. The\nfollowing won't compile:\n\n``` cpp\nASSERT_PRED2(*GreaterThan<int, int>*, 5, 0);\n```\n\n\nas the C++ pre-processor thinks you are giving `ASSERT_PRED2` 4 arguments,\nwhich is one more than expected. The workaround is to wrap the predicate\nfunction in parentheses:\n\n``` cpp\nASSERT_PRED2(*(GreaterThan<int, int>)*, 5, 0);\n```\n\n\n## My compiler complains about \"ignoring return value\" when I call RUN\\_ALL\\_TESTS(). Why? ##\n\nSome people had been ignoring the return value of `RUN_ALL_TESTS()`. That is,\ninstead of\n\n``` cpp\nreturn RUN_ALL_TESTS();\n```\n\nthey write\n\n``` cpp\nRUN_ALL_TESTS();\n```\n\nThis is wrong and dangerous. A test runner needs to see the return value of\n`RUN_ALL_TESTS()` in order to determine if a test has passed. If your `main()`\nfunction ignores it, your test will be considered successful even if it has a\nGoogle Test assertion failure. Very bad.\n\nTo help the users avoid this dangerous bug, the implementation of\n`RUN_ALL_TESTS()` causes gcc to raise this warning, when the return value is\nignored. If you see this warning, the fix is simple: just make sure its value\nis used as the return value of `main()`.\n\n## My compiler complains that a constructor (or destructor) cannot return a value. What's going on? ##\n\nDue to a peculiarity of C++, in order to support the syntax for streaming\nmessages to an `ASSERT_*`, e.g.\n\n``` cpp\nASSERT_EQ(1, Foo()) << \"blah blah\" << foo;\n```\n\nwe had to give up using `ASSERT*` and `FAIL*` (but not `EXPECT*` and\n`ADD_FAILURE*`) in constructors and destructors. The workaround is to move the\ncontent of your constructor/destructor to a private void member function, or\nswitch to `EXPECT_*()` if that works. This section in the user's guide explains\nit.\n\n## My set-up function is not called. Why? ##\n\nC++ is case-sensitive. It should be spelled as `SetUp()`.  Did you\nspell it as `Setup()`?\n\nSimilarly, sometimes people spell `SetUpTestCase()` as `SetupTestCase()` and\nwonder why it's never called.\n\n## How do I jump to the line of a failure in Emacs directly? ##\n\nGoogle Test's failure message format is understood by Emacs and many other\nIDEs, like acme and XCode. If a Google Test message is in a compilation buffer\nin Emacs, then it's clickable. You can now hit `enter` on a message to jump to\nthe corresponding source code, or use `C-x `` to jump to the next failure.\n\n## I have several test cases which share the same test fixture logic, do I have to define a new test fixture class for each of them? This seems pretty tedious. ##\n\nYou don't have to. Instead of\n\n``` cpp\nclass FooTest : public BaseTest {};\n\nTEST_F(FooTest, Abc) { ... }\nTEST_F(FooTest, Def) { ... }\n\nclass BarTest : public BaseTest {};\n\nTEST_F(BarTest, Abc) { ... }\nTEST_F(BarTest, Def) { ... }\n```\n\nyou can simply `typedef` the test fixtures:\n``` cpp\ntypedef BaseTest FooTest;\n\nTEST_F(FooTest, Abc) { ... }\nTEST_F(FooTest, Def) { ... }\n\ntypedef BaseTest BarTest;\n\nTEST_F(BarTest, Abc) { ... }\nTEST_F(BarTest, Def) { ... }\n```\n\n## The Google Test output is buried in a whole bunch of log messages. What do I do? ##\n\nThe Google Test output is meant to be a concise and human-friendly report. If\nyour test generates textual output itself, it will mix with the Google Test\noutput, making it hard to read. However, there is an easy solution to this\nproblem.\n\nSince most log messages go to stderr, we decided to let Google Test output go\nto stdout. This way, you can easily separate the two using redirection. For\nexample:\n```\n./my_test > googletest_output.txt\n```\n\n## Why should I prefer test fixtures over global variables? ##\n\nThere are several good reasons:\n  1. It's likely your test needs to change the states of its global variables. This makes it difficult to keep side effects from escaping one test and contaminating others, making debugging difficult. By using fixtures, each test has a fresh set of variables that's different (but with the same names). Thus, tests are kept independent of each other.\n  1. Global variables pollute the global namespace.\n  1. Test fixtures can be reused via subclassing, which cannot be done easily with global variables. This is useful if many test cases have something in common.\n\n## How do I test private class members without writing FRIEND\\_TEST()s? ##\n\nYou should try to write testable code, which means classes should be easily\ntested from their public interface. One way to achieve this is the Pimpl idiom:\nyou move all private members of a class into a helper class, and make all\nmembers of the helper class public.\n\nYou have several other options that don't require using `FRIEND_TEST`:\n  * Write the tests as members of the fixture class:\n``` cpp\nclass Foo {\n  friend class FooTest;\n  ...\n};\n\nclass FooTest : public ::testing::Test {\n protected:\n  ...\n  void Test1() {...} // This accesses private members of class Foo.\n  void Test2() {...} // So does this one.\n};\n\nTEST_F(FooTest, Test1) {\n  Test1();\n}\n\nTEST_F(FooTest, Test2) {\n  Test2();\n}\n```\n  * In the fixture class, write accessors for the tested class' private members, then use the accessors in your tests:\n``` cpp\nclass Foo {\n  friend class FooTest;\n  ...\n};\n\nclass FooTest : public ::testing::Test {\n protected:\n  ...\n  T1 get_private_member1(Foo* obj) {\n    return obj->private_member1_;\n  }\n};\n\nTEST_F(FooTest, Test1) {\n  ...\n  get_private_member1(x)\n  ...\n}\n```\n  * If the methods are declared **protected**, you can change their access level in a test-only subclass:\n``` cpp\nclass YourClass {\n  ...\n protected: // protected access for testability.\n  int DoSomethingReturningInt();\n  ...\n};\n\n// in the your_class_test.cc file:\nclass TestableYourClass : public YourClass {\n  ...\n public: using YourClass::DoSomethingReturningInt; // changes access rights\n  ...\n};\n\nTEST_F(YourClassTest, DoSomethingTest) {\n  TestableYourClass obj;\n  assertEquals(expected_value, obj.DoSomethingReturningInt());\n}\n```\n\n## How do I test private class static members without writing FRIEND\\_TEST()s? ##\n\nWe find private static methods clutter the header file.  They are\nimplementation details and ideally should be kept out of a .h. So often I make\nthem free functions instead.\n\nInstead of:\n``` cpp\n// foo.h\nclass Foo {\n  ...\n private:\n  static bool Func(int n);\n};\n\n// foo.cc\nbool Foo::Func(int n) { ... }\n\n// foo_test.cc\nEXPECT_TRUE(Foo::Func(12345));\n```\n\nYou probably should better write:\n``` cpp\n// foo.h\nclass Foo {\n  ...\n};\n\n// foo.cc\nnamespace internal {\n  bool Func(int n) { ... }\n}\n\n// foo_test.cc\nnamespace internal {\n  bool Func(int n);\n}\n\nEXPECT_TRUE(internal::Func(12345));\n```\n\n## I would like to run a test several times with different parameters. Do I need to write several similar copies of it? ##\n\nNo. You can use a feature called [value-parameterized tests](AdvancedGuide.md#Value_Parameterized_Tests) which\nlets you repeat your tests with different parameters, without defining it more than once.\n\n## How do I test a file that defines main()? ##\n\nTo test a `foo.cc` file, you need to compile and link it into your unit test\nprogram. However, when the file contains a definition for the `main()`\nfunction, it will clash with the `main()` of your unit test, and will result in\na build error.\n\nThe right solution is to split it into three files:\n  1. `foo.h` which contains the declarations,\n  1. `foo.cc` which contains the definitions except `main()`, and\n  1. `foo_main.cc` which contains nothing but the definition of `main()`.\n\nThen `foo.cc` can be easily tested.\n\nIf you are adding tests to an existing file and don't want an intrusive change\nlike this, there is a hack: just include the entire `foo.cc` file in your unit\ntest. For example:\n``` cpp\n// File foo_unittest.cc\n\n// The headers section\n...\n\n// Renames main() in foo.cc to make room for the unit test main()\n#define main FooMain\n\n#include \"a/b/foo.cc\"\n\n// The tests start here.\n...\n```\n\n\nHowever, please remember this is a hack and should only be used as the last\nresort.\n\n## What can the statement argument in ASSERT\\_DEATH() be? ##\n\n`ASSERT_DEATH(_statement_, _regex_)` (or any death assertion macro) can be used\nwherever `_statement_` is valid. So basically `_statement_` can be any C++\nstatement that makes sense in the current context. In particular, it can\nreference global and/or local variables, and can be:\n  * a simple function call (often the case),\n  * a complex expression, or\n  * a compound statement.\n\nSome examples are shown here:\n\n``` cpp\n// A death test can be a simple function call.\nTEST(MyDeathTest, FunctionCall) {\n  ASSERT_DEATH(Xyz(5), \"Xyz failed\");\n}\n\n// Or a complex expression that references variables and functions.\nTEST(MyDeathTest, ComplexExpression) {\n  const bool c = Condition();\n  ASSERT_DEATH((c ? Func1(0) : object2.Method(\"test\")),\n               \"(Func1|Method) failed\");\n}\n\n// Death assertions can be used any where in a function. In\n// particular, they can be inside a loop.\nTEST(MyDeathTest, InsideLoop) {\n  // Verifies that Foo(0), Foo(1), ..., and Foo(4) all die.\n  for (int i = 0; i < 5; i++) {\n    EXPECT_DEATH_M(Foo(i), \"Foo has \\\\d+ errors\",\n                   ::testing::Message() << \"where i is \" << i);\n  }\n}\n\n// A death assertion can contain a compound statement.\nTEST(MyDeathTest, CompoundStatement) {\n  // Verifies that at lease one of Bar(0), Bar(1), ..., and\n  // Bar(4) dies.\n  ASSERT_DEATH({\n    for (int i = 0; i < 5; i++) {\n      Bar(i);\n    }\n  },\n  \"Bar has \\\\d+ errors\");}\n```\n\n`googletest_unittest.cc` contains more examples if you are interested.\n\n## What syntax does the regular expression in ASSERT\\_DEATH use? ##\n\nOn POSIX systems, Google Test uses the POSIX Extended regular\nexpression syntax\n(http://en.wikipedia.org/wiki/Regular_expression#POSIX_Extended_Regular_Expressions).\nOn Windows, it uses a limited variant of regular expression\nsyntax. For more details, see the\n[regular expression syntax](AdvancedGuide.md#Regular_Expression_Syntax).\n\n## I have a fixture class Foo, but TEST\\_F(Foo, Bar) gives me error \"no matching function for call to Foo::Foo()\". Why? ##\n\nGoogle Test needs to be able to create objects of your test fixture class, so\nit must have a default constructor. Normally the compiler will define one for\nyou. However, there are cases where you have to define your own:\n  * If you explicitly declare a non-default constructor for class `Foo`, then you need to define a default constructor, even if it would be empty.\n  * If `Foo` has a const non-static data member, then you have to define the default constructor _and_ initialize the const member in the initializer list of the constructor. (Early versions of `gcc` doesn't force you to initialize the const member. It's a bug that has been fixed in `gcc 4`.)\n\n## Why does ASSERT\\_DEATH complain about previous threads that were already joined? ##\n\nWith the Linux pthread library, there is no turning back once you cross the\nline from single thread to multiple threads. The first time you create a\nthread, a manager thread is created in addition, so you get 3, not 2, threads.\nLater when the thread you create joins the main thread, the thread count\ndecrements by 1, but the manager thread will never be killed, so you still have\n2 threads, which means you cannot safely run a death test.\n\nThe new NPTL thread library doesn't suffer from this problem, as it doesn't\ncreate a manager thread. However, if you don't control which machine your test\nruns on, you shouldn't depend on this.\n\n## Why does Google Test require the entire test case, instead of individual tests, to be named FOODeathTest when it uses ASSERT\\_DEATH? ##\n\nGoogle Test does not interleave tests from different test cases. That is, it\nruns all tests in one test case first, and then runs all tests in the next test\ncase, and so on. Google Test does this because it needs to set up a test case\nbefore the first test in it is run, and tear it down afterwords. Splitting up\nthe test case would require multiple set-up and tear-down processes, which is\ninefficient and makes the semantics unclean.\n\nIf we were to determine the order of tests based on test name instead of test\ncase name, then we would have a problem with the following situation:\n\n``` cpp\nTEST_F(FooTest, AbcDeathTest) { ... }\nTEST_F(FooTest, Uvw) { ... }\n\nTEST_F(BarTest, DefDeathTest) { ... }\nTEST_F(BarTest, Xyz) { ... }\n```\n\nSince `FooTest.AbcDeathTest` needs to run before `BarTest.Xyz`, and we don't\ninterleave tests from different test cases, we need to run all tests in the\n`FooTest` case before running any test in the `BarTest` case. This contradicts\nwith the requirement to run `BarTest.DefDeathTest` before `FooTest.Uvw`.\n\n## But I don't like calling my entire test case FOODeathTest when it contains both death tests and non-death tests. What do I do? ##\n\nYou don't have to, but if you like, you may split up the test case into\n`FooTest` and `FooDeathTest`, where the names make it clear that they are\nrelated:\n\n``` cpp\nclass FooTest : public ::testing::Test { ... };\n\nTEST_F(FooTest, Abc) { ... }\nTEST_F(FooTest, Def) { ... }\n\ntypedef FooTest FooDeathTest;\n\nTEST_F(FooDeathTest, Uvw) { ... EXPECT_DEATH(...) ... }\nTEST_F(FooDeathTest, Xyz) { ... ASSERT_DEATH(...) ... }\n```\n\n## The compiler complains about \"no match for 'operator<<'\" when I use an assertion. What gives? ##\n\nIf you use a user-defined type `FooType` in an assertion, you must make sure\nthere is an `std::ostream& operator<<(std::ostream&, const FooType&)` function\ndefined such that we can print a value of `FooType`.\n\nIn addition, if `FooType` is declared in a name space, the `<<` operator also\nneeds to be defined in the _same_ name space.\n\n## How do I suppress the memory leak messages on Windows? ##\n\nSince the statically initialized Google Test singleton requires allocations on\nthe heap, the Visual C++ memory leak detector will report memory leaks at the\nend of the program run. The easiest way to avoid this is to use the\n`_CrtMemCheckpoint` and `_CrtMemDumpAllObjectsSince` calls to not report any\nstatically initialized heap objects. See MSDN for more details and additional\nheap check/debug routines.\n\n## I am building my project with Google Test in Visual Studio and all I'm getting is a bunch of linker errors (or warnings). Help! ##\n\nYou may get a number of the following linker error or warnings if you\nattempt to link your test project with the Google Test library when\nyour project and the are not built using the same compiler settings.\n\n  * LNK2005: symbol already defined in object\n  * LNK4217: locally defined symbol 'symbol' imported in function 'function'\n  * LNK4049: locally defined symbol 'symbol' imported\n\nThe Google Test project (gtest.vcproj) has the Runtime Library option\nset to /MT (use multi-threaded static libraries, /MTd for debug). If\nyour project uses something else, for example /MD (use multi-threaded\nDLLs, /MDd for debug), you need to change the setting in the Google\nTest project to match your project's.\n\nTo update this setting open the project properties in the Visual\nStudio IDE then select the branch Configuration Properties | C/C++ |\nCode Generation and change the option \"Runtime Library\".  You may also try\nusing gtest-md.vcproj instead of gtest.vcproj.\n\n## I put my tests in a library and Google Test doesn't run them. What's happening? ##\nHave you read a\n[warning](Primer.md#important-note-for-visual-c-users) on\nthe Google Test Primer page?\n\n## I want to use Google Test with Visual Studio but don't know where to start. ##\nMany people are in your position and one of the posted his solution to\nour mailing list.\n\n## I am seeing compile errors mentioning std::type\\_traits when I try to use Google Test on Solaris. ##\nGoogle Test uses parts of the standard C++ library that SunStudio does not support.\nOur users reported success using alternative implementations. Try running the build after runing this commad:\n\n`export CC=cc CXX=CC CXXFLAGS='-library=stlport4'`\n\n## How can my code detect if it is running in a test? ##\n\nIf you write code that sniffs whether it's running in a test and does\ndifferent things accordingly, you are leaking test-only logic into\nproduction code and there is no easy way to ensure that the test-only\ncode paths aren't run by mistake in production.  Such cleverness also\nleads to\n[Heisenbugs](http://en.wikipedia.org/wiki/Unusual_software_bug#Heisenbug).\nTherefore we strongly advise against the practice, and Google Test doesn't\nprovide a way to do it.\n\nIn general, the recommended way to cause the code to behave\ndifferently under test is [dependency injection](http://jamesshore.com/Blog/Dependency-Injection-Demystified.html).\nYou can inject different functionality from the test and from the\nproduction code.  Since your production code doesn't link in the\nfor-test logic at all, there is no danger in accidentally running it.\n\nHowever, if you _really_, _really_, _really_ have no choice, and if\nyou follow the rule of ending your test program names with `_test`,\nyou can use the _horrible_ hack of sniffing your executable name\n(`argv[0]` in `main()`) to know whether the code is under test.\n\n## Google Test defines a macro that clashes with one defined by another library. How do I deal with that? ##\n\nIn C++, macros don't obey namespaces.  Therefore two libraries that\nboth define a macro of the same name will clash if you `#include` both\ndefinitions.  In case a Google Test macro clashes with another\nlibrary, you can force Google Test to rename its macro to avoid the\nconflict.\n\nSpecifically, if both Google Test and some other code define macro\n`FOO`, you can add\n```\n  -DGTEST_DONT_DEFINE_FOO=1\n```\nto the compiler flags to tell Google Test to change the macro's name\nfrom `FOO` to `GTEST_FOO`. For example, with `-DGTEST_DONT_DEFINE_TEST=1`, you'll need to write\n``` cpp\n  GTEST_TEST(SomeTest, DoesThis) { ... }\n```\ninstead of\n``` cpp\n  TEST(SomeTest, DoesThis) { ... }\n```\nin order to define a test.\n\nCurrently, the following `TEST`, `FAIL`, `SUCCEED`, and the basic comparison assertion macros can have alternative names. You can see the full list of covered macros [here](http://www.google.com/codesearch?q=if+!GTEST_DONT_DEFINE_\\w%2B+package:http://googletest\\.googlecode\\.com+file:/include/gtest/gtest.h). More information can be found in the \"Avoiding Macro Name Clashes\" section of the README file.\n\n\n## Is it OK if I have two separate `TEST(Foo, Bar)` test methods defined in different namespaces? ##\n\nYes.\n\nThe rule is **all test methods in the same test case must use the same fixture class**. This means that the following is **allowed** because both tests use the same fixture class (`::testing::Test`).\n\n``` cpp\nnamespace foo {\nTEST(CoolTest, DoSomething) {\n  SUCCEED();\n}\n}  // namespace foo\n\nnamespace bar {\nTEST(CoolTest, DoSomething) {\n  SUCCEED();\n}\n}  // namespace foo\n```\n\nHowever, the following code is **not allowed** and will produce a runtime error from Google Test because the test methods are using different test fixture classes with the same test case name.\n\n``` cpp\nnamespace foo {\nclass CoolTest : public ::testing::Test {};  // Fixture foo::CoolTest\nTEST_F(CoolTest, DoSomething) {\n  SUCCEED();\n}\n}  // namespace foo\n\nnamespace bar {\nclass CoolTest : public ::testing::Test {};  // Fixture: bar::CoolTest\nTEST_F(CoolTest, DoSomething) {\n  SUCCEED();\n}\n}  // namespace foo\n```\n\n## How do I build Google Testing Framework with Xcode 4? ##\n\nIf you try to build Google Test's Xcode project with Xcode 4.0 or later, you may encounter an error message that looks like\n\"Missing SDK in target gtest\\_framework: /Developer/SDKs/MacOSX10.4u.sdk\". That means that Xcode does not support the SDK the project is targeting. See the Xcode section in the [README](../README.md) file on how to resolve this.\n\n## My question is not covered in your FAQ! ##\n\nIf you cannot find the answer to your question in this FAQ, there are\nsome other resources you can use:\n\n  1. read other [wiki pages](../docs),\n  1. search the mailing list [archive](https://groups.google.com/forum/#!forum/googletestframework),\n  1. ask it on [googletestframework@googlegroups.com](mailto:googletestframework@googlegroups.com) and someone will answer it (to prevent spam, we require you to join the [discussion group](http://groups.google.com/group/googletestframework) before you can post.).\n\nPlease note that creating an issue in the\n[issue tracker](https://github.com/google/googletest/issues) is _not_\na good way to get your answer, as it is monitored infrequently by a\nvery small number of people.\n\nWhen asking a question, it's helpful to provide as much of the\nfollowing information as possible (people cannot help you if there's\nnot enough information in your question):\n\n  * the version (or the commit hash if you check out from Git directly) of Google Test you use (Google Test is under active development, so it's possible that your problem has been solved in a later version),\n  * your operating system,\n  * the name and version of your compiler,\n  * the complete command line flags you give to your compiler,\n  * the complete compiler error messages (if the question is about compilation),\n  * the _actual_ code (ideally, a minimal but complete program) that has the problem you encounter.\n"
  },
  {
    "path": "test/gtest/docs/Primer.md",
    "content": "\n\n# Introduction: Why Google C++ Testing Framework? #\n\n_Google C++ Testing Framework_ helps you write better C++ tests.\n\nNo matter whether you work on Linux, Windows, or a Mac, if you write C++ code,\nGoogle Test can help you.\n\nSo what makes a good test, and how does Google C++ Testing Framework fit in? We believe:\n  1. Tests should be _independent_ and _repeatable_. It's a pain to debug a test that succeeds or fails as a result of other tests.  Google C++ Testing Framework isolates the tests by running each of them on a different object. When a test fails, Google C++ Testing Framework allows you to run it in isolation for quick debugging.\n  1. Tests should be well _organized_ and reflect the structure of the tested code.  Google C++ Testing Framework groups related tests into test cases that can share data and subroutines. This common pattern is easy to recognize and makes tests easy to maintain. Such consistency is especially helpful when people switch projects and start to work on a new code base.\n  1. Tests should be _portable_ and _reusable_. The open-source community has a lot of code that is platform-neutral, its tests should also be platform-neutral.  Google C++ Testing Framework works on different OSes, with different compilers (gcc, MSVC, and others), with or without exceptions, so Google C++ Testing Framework tests can easily work with a variety of configurations.  (Note that the current release only contains build scripts for Linux - we are actively working on scripts for other platforms.)\n  1. When tests fail, they should provide as much _information_ about the problem as possible. Google C++ Testing Framework doesn't stop at the first test failure. Instead, it only stops the current test and continues with the next. You can also set up tests that report non-fatal failures after which the current test continues. Thus, you can detect and fix multiple bugs in a single run-edit-compile cycle.\n  1. The testing framework should liberate test writers from housekeeping chores and let them focus on the test _content_.  Google C++ Testing Framework automatically keeps track of all tests defined, and doesn't require the user to enumerate them in order to run them.\n  1. Tests should be _fast_. With Google C++ Testing Framework, you can reuse shared resources across tests and pay for the set-up/tear-down only once, without making tests depend on each other.\n\nSince Google C++ Testing Framework is based on the popular xUnit\narchitecture, you'll feel right at home if you've used JUnit or PyUnit before.\nIf not, it will take you about 10 minutes to learn the basics and get started.\nSo let's go!\n\n_Note:_ We sometimes refer to Google C++ Testing Framework informally\nas _Google Test_.\n\n# Setting up a New Test Project #\n\nTo write a test program using Google Test, you need to compile Google\nTest into a library and link your test with it.  We provide build\nfiles for some popular build systems: `msvc/` for Visual Studio,\n`xcode/` for Mac Xcode, `make/` for GNU make, `codegear/` for Borland\nC++ Builder, and the autotools script (deprecated) and\n`CMakeLists.txt` for CMake (recommended) in the Google Test root\ndirectory.  If your build system is not on this list, you can take a\nlook at `make/Makefile` to learn how Google Test should be compiled\n(basically you want to compile `src/gtest-all.cc` with `GTEST_ROOT`\nand `GTEST_ROOT/include` in the header search path, where `GTEST_ROOT`\nis the Google Test root directory).\n\nOnce you are able to compile the Google Test library, you should\ncreate a project or build target for your test program.  Make sure you\nhave `GTEST_ROOT/include` in the header search path so that the\ncompiler can find `\"gtest/gtest.h\"` when compiling your test.  Set up\nyour test project to link with the Google Test library (for example,\nin Visual Studio, this is done by adding a dependency on\n`gtest.vcproj`).\n\nIf you still have questions, take a look at how Google Test's own\ntests are built and use them as examples.\n\n# Basic Concepts #\n\nWhen using Google Test, you start by writing _assertions_, which are statements\nthat check whether a condition is true. An assertion's result can be _success_,\n_nonfatal failure_, or _fatal failure_. If a fatal failure occurs, it aborts\nthe current function; otherwise the program continues normally.\n\n_Tests_ use assertions to verify the tested code's behavior. If a test crashes\nor has a failed assertion, then it _fails_; otherwise it _succeeds_.\n\nA _test case_ contains one or many tests. You should group your tests into test\ncases that reflect the structure of the tested code. When multiple tests in a\ntest case need to share common objects and subroutines, you can put them into a\n_test fixture_ class.\n\nA _test program_ can contain multiple test cases.\n\nWe'll now explain how to write a test program, starting at the individual\nassertion level and building up to tests and test cases.\n\n# Assertions #\n\nGoogle Test assertions are macros that resemble function calls. You test a\nclass or function by making assertions about its behavior. When an assertion\nfails, Google Test prints the assertion's source file and line number location,\nalong with a failure message. You may also supply a custom failure message\nwhich will be appended to Google Test's message.\n\nThe assertions come in pairs that test the same thing but have different\neffects on the current function. `ASSERT_*` versions generate fatal failures\nwhen they fail, and **abort the current function**. `EXPECT_*` versions generate\nnonfatal failures, which don't abort the current function. Usually `EXPECT_*`\nare preferred, as they allow more than one failures to be reported in a test.\nHowever, you should use `ASSERT_*` if it doesn't make sense to continue when\nthe assertion in question fails.\n\nSince a failed `ASSERT_*` returns from the current function immediately,\npossibly skipping clean-up code that comes after it, it may cause a space leak.\nDepending on the nature of the leak, it may or may not be worth fixing - so\nkeep this in mind if you get a heap checker error in addition to assertion\nerrors.\n\nTo provide a custom failure message, simply stream it into the macro using the\n`<<` operator, or a sequence of such operators. An example:\n```\nASSERT_EQ(x.size(), y.size()) << \"Vectors x and y are of unequal length\";\n\nfor (int i = 0; i < x.size(); ++i) {\n  EXPECT_EQ(x[i], y[i]) << \"Vectors x and y differ at index \" << i;\n}\n```\n\nAnything that can be streamed to an `ostream` can be streamed to an assertion\nmacro--in particular, C strings and `string` objects. If a wide string\n(`wchar_t*`, `TCHAR*` in `UNICODE` mode on Windows, or `std::wstring`) is\nstreamed to an assertion, it will be translated to UTF-8 when printed.\n\n## Basic Assertions ##\n\nThese assertions do basic true/false condition testing.\n\n| **Fatal assertion** | **Nonfatal assertion** | **Verifies** |\n|:--------------------|:-----------------------|:-------------|\n| `ASSERT_TRUE(`_condition_`)`;  | `EXPECT_TRUE(`_condition_`)`;   | _condition_ is true |\n| `ASSERT_FALSE(`_condition_`)`; | `EXPECT_FALSE(`_condition_`)`;  | _condition_ is false |\n\nRemember, when they fail, `ASSERT_*` yields a fatal failure and\nreturns from the current function, while `EXPECT_*` yields a nonfatal\nfailure, allowing the function to continue running. In either case, an\nassertion failure means its containing test fails.\n\n_Availability_: Linux, Windows, Mac.\n\n## Binary Comparison ##\n\nThis section describes assertions that compare two values.\n\n| **Fatal assertion** | **Nonfatal assertion** | **Verifies** |\n|:--------------------|:-----------------------|:-------------|\n|`ASSERT_EQ(`_val1_`, `_val2_`);`|`EXPECT_EQ(`_val1_`, `_val2_`);`| _val1_ `==` _val2_ |\n|`ASSERT_NE(`_val1_`, `_val2_`);`|`EXPECT_NE(`_val1_`, `_val2_`);`| _val1_ `!=` _val2_ |\n|`ASSERT_LT(`_val1_`, `_val2_`);`|`EXPECT_LT(`_val1_`, `_val2_`);`| _val1_ `<` _val2_ |\n|`ASSERT_LE(`_val1_`, `_val2_`);`|`EXPECT_LE(`_val1_`, `_val2_`);`| _val1_ `<=` _val2_ |\n|`ASSERT_GT(`_val1_`, `_val2_`);`|`EXPECT_GT(`_val1_`, `_val2_`);`| _val1_ `>` _val2_ |\n|`ASSERT_GE(`_val1_`, `_val2_`);`|`EXPECT_GE(`_val1_`, `_val2_`);`| _val1_ `>=` _val2_ |\n\nIn the event of a failure, Google Test prints both _val1_ and _val2_.\n\nValue arguments must be comparable by the assertion's comparison\noperator or you'll get a compiler error.  We used to require the\narguments to support the `<<` operator for streaming to an `ostream`,\nbut it's no longer necessary since v1.6.0 (if `<<` is supported, it\nwill be called to print the arguments when the assertion fails;\notherwise Google Test will attempt to print them in the best way it\ncan. For more details and how to customize the printing of the\narguments, see this Google Mock [recipe](../../googlemock/docs/CookBook.md#teaching-google-mock-how-to-print-your-values).).\n\nThese assertions can work with a user-defined type, but only if you define the\ncorresponding comparison operator (e.g. `==`, `<`, etc).  If the corresponding\noperator is defined, prefer using the `ASSERT_*()` macros because they will\nprint out not only the result of the comparison, but the two operands as well.\n\nArguments are always evaluated exactly once. Therefore, it's OK for the\narguments to have side effects. However, as with any ordinary C/C++ function,\nthe arguments' evaluation order is undefined (i.e. the compiler is free to\nchoose any order) and your code should not depend on any particular argument\nevaluation order.\n\n`ASSERT_EQ()` does pointer equality on pointers. If used on two C strings, it\ntests if they are in the same memory location, not if they have the same value.\nTherefore, if you want to compare C strings (e.g. `const char*`) by value, use\n`ASSERT_STREQ()` , which will be described later on. In particular, to assert\nthat a C string is `NULL`, use `ASSERT_STREQ(NULL, c_string)` . However, to\ncompare two `string` objects, you should use `ASSERT_EQ`.\n\nMacros in this section work with both narrow and wide string objects (`string`\nand `wstring`).\n\n_Availability_: Linux, Windows, Mac.\n\n_Historical note_: Before February 2016 `*_EQ` had a convention of calling it as\n`ASSERT_EQ(expected, actual)`, so lots of existing code uses this order.\nNow `*_EQ` treats both parameters in the same way.\n\n## String Comparison ##\n\nThe assertions in this group compare two **C strings**. If you want to compare\ntwo `string` objects, use `EXPECT_EQ`, `EXPECT_NE`, and etc instead.\n\n| **Fatal assertion** | **Nonfatal assertion** | **Verifies** |\n|:--------------------|:-----------------------|:-------------|\n| `ASSERT_STREQ(`_str1_`, `_str2_`);`    | `EXPECT_STREQ(`_str1_`, `_str_2`);`     | the two C strings have the same content |\n| `ASSERT_STRNE(`_str1_`, `_str2_`);`    | `EXPECT_STRNE(`_str1_`, `_str2_`);`     | the two C strings have different content |\n| `ASSERT_STRCASEEQ(`_str1_`, `_str2_`);`| `EXPECT_STRCASEEQ(`_str1_`, `_str2_`);` | the two C strings have the same content, ignoring case |\n| `ASSERT_STRCASENE(`_str1_`, `_str2_`);`| `EXPECT_STRCASENE(`_str1_`, `_str2_`);` | the two C strings have different content, ignoring case |\n\nNote that \"CASE\" in an assertion name means that case is ignored.\n\n`*STREQ*` and `*STRNE*` also accept wide C strings (`wchar_t*`). If a\ncomparison of two wide strings fails, their values will be printed as UTF-8\nnarrow strings.\n\nA `NULL` pointer and an empty string are considered _different_.\n\n_Availability_: Linux, Windows, Mac.\n\nSee also: For more string comparison tricks (substring, prefix, suffix, and\nregular expression matching, for example), see the [Advanced Google Test Guide](AdvancedGuide.md).\n\n# Simple Tests #\n\nTo create a test:\n  1. Use the `TEST()` macro to define and name a test function, These are ordinary C++ functions that don't return a value.\n  1. In this function, along with any valid C++ statements you want to include, use the various Google Test assertions to check values.\n  1. The test's result is determined by the assertions; if any assertion in the test fails (either fatally or non-fatally), or if the test crashes, the entire test fails. Otherwise, it succeeds.\n\n```\nTEST(test_case_name, test_name) {\n ... test body ...\n}\n```\n\n\n`TEST()` arguments go from general to specific. The _first_ argument is the\nname of the test case, and the _second_ argument is the test's name within the\ntest case. Both names must be valid C++ identifiers, and they should not contain underscore (`_`). A test's _full name_ consists of its containing test case and its\nindividual name. Tests from different test cases can have the same individual\nname.\n\nFor example, let's take a simple integer function:\n```\nint Factorial(int n); // Returns the factorial of n\n```\n\nA test case for this function might look like:\n```\n// Tests factorial of 0.\nTEST(FactorialTest, HandlesZeroInput) {\n  EXPECT_EQ(1, Factorial(0));\n}\n\n// Tests factorial of positive numbers.\nTEST(FactorialTest, HandlesPositiveInput) {\n  EXPECT_EQ(1, Factorial(1));\n  EXPECT_EQ(2, Factorial(2));\n  EXPECT_EQ(6, Factorial(3));\n  EXPECT_EQ(40320, Factorial(8));\n}\n```\n\nGoogle Test groups the test results by test cases, so logically-related tests\nshould be in the same test case; in other words, the first argument to their\n`TEST()` should be the same. In the above example, we have two tests,\n`HandlesZeroInput` and `HandlesPositiveInput`, that belong to the same test\ncase `FactorialTest`.\n\n_Availability_: Linux, Windows, Mac.\n\n# Test Fixtures: Using the Same Data Configuration for Multiple Tests #\n\nIf you find yourself writing two or more tests that operate on similar data,\nyou can use a _test fixture_. It allows you to reuse the same configuration of\nobjects for several different tests.\n\nTo create a fixture, just:\n  1. Derive a class from `::testing::Test` . Start its body with `protected:` or `public:` as we'll want to access fixture members from sub-classes.\n  1. Inside the class, declare any objects you plan to use.\n  1. If necessary, write a default constructor or `SetUp()` function to prepare the objects for each test. A common mistake is to spell `SetUp()` as `Setup()` with a small `u` - don't let that happen to you.\n  1. If necessary, write a destructor or `TearDown()` function to release any resources you allocated in `SetUp()` . To learn when you should use the constructor/destructor and when you should use `SetUp()/TearDown()`, read this [FAQ entry](FAQ.md#should-i-use-the-constructordestructor-of-the-test-fixture-or-the-set-uptear-down-function).\n  1. If needed, define subroutines for your tests to share.\n\nWhen using a fixture, use `TEST_F()` instead of `TEST()` as it allows you to\naccess objects and subroutines in the test fixture:\n```\nTEST_F(test_case_name, test_name) {\n ... test body ...\n}\n```\n\nLike `TEST()`, the first argument is the test case name, but for `TEST_F()`\nthis must be the name of the test fixture class. You've probably guessed: `_F`\nis for fixture.\n\nUnfortunately, the C++ macro system does not allow us to create a single macro\nthat can handle both types of tests. Using the wrong macro causes a compiler\nerror.\n\nAlso, you must first define a test fixture class before using it in a\n`TEST_F()`, or you'll get the compiler error \"`virtual outside class\ndeclaration`\".\n\nFor each test defined with `TEST_F()`, Google Test will:\n  1. Create a _fresh_ test fixture at runtime\n  1. Immediately initialize it via `SetUp()` ,\n  1. Run the test\n  1. Clean up by calling `TearDown()`\n  1. Delete the test fixture.  Note that different tests in the same test case have different test fixture objects, and Google Test always deletes a test fixture before it creates the next one. Google Test does not reuse the same test fixture for multiple tests. Any changes one test makes to the fixture do not affect other tests.\n\nAs an example, let's write tests for a FIFO queue class named `Queue`, which\nhas the following interface:\n```\ntemplate <typename E> // E is the element type.\nclass Queue {\n public:\n  Queue();\n  void Enqueue(const E& element);\n  E* Dequeue(); // Returns NULL if the queue is empty.\n  size_t size() const;\n  ...\n};\n```\n\nFirst, define a fixture class. By convention, you should give it the name\n`FooTest` where `Foo` is the class being tested.\n```\nclass QueueTest : public ::testing::Test {\n protected:\n  virtual void SetUp() {\n    q1_.Enqueue(1);\n    q2_.Enqueue(2);\n    q2_.Enqueue(3);\n  }\n\n  // virtual void TearDown() {}\n\n  Queue<int> q0_;\n  Queue<int> q1_;\n  Queue<int> q2_;\n};\n```\n\nIn this case, `TearDown()` is not needed since we don't have to clean up after\neach test, other than what's already done by the destructor.\n\nNow we'll write tests using `TEST_F()` and this fixture.\n```\nTEST_F(QueueTest, IsEmptyInitially) {\n  EXPECT_EQ(0, q0_.size());\n}\n\nTEST_F(QueueTest, DequeueWorks) {\n  int* n = q0_.Dequeue();\n  EXPECT_EQ(NULL, n);\n\n  n = q1_.Dequeue();\n  ASSERT_TRUE(n != NULL);\n  EXPECT_EQ(1, *n);\n  EXPECT_EQ(0, q1_.size());\n  delete n;\n\n  n = q2_.Dequeue();\n  ASSERT_TRUE(n != NULL);\n  EXPECT_EQ(2, *n);\n  EXPECT_EQ(1, q2_.size());\n  delete n;\n}\n```\n\nThe above uses both `ASSERT_*` and `EXPECT_*` assertions. The rule of thumb is\nto use `EXPECT_*` when you want the test to continue to reveal more errors\nafter the assertion failure, and use `ASSERT_*` when continuing after failure\ndoesn't make sense. For example, the second assertion in the `Dequeue` test is\n`ASSERT_TRUE(n != NULL)`, as we need to dereference the pointer `n` later,\nwhich would lead to a segfault when `n` is `NULL`.\n\nWhen these tests run, the following happens:\n  1. Google Test constructs a `QueueTest` object (let's call it `t1` ).\n  1. `t1.SetUp()` initializes `t1` .\n  1. The first test ( `IsEmptyInitially` ) runs on `t1` .\n  1. `t1.TearDown()` cleans up after the test finishes.\n  1. `t1` is destructed.\n  1. The above steps are repeated on another `QueueTest` object, this time running the `DequeueWorks` test.\n\n_Availability_: Linux, Windows, Mac.\n\n_Note_: Google Test automatically saves all _Google Test_ flags when a test\nobject is constructed, and restores them when it is destructed.\n\n# Invoking the Tests #\n\n`TEST()` and `TEST_F()` implicitly register their tests with Google Test. So, unlike with many other C++ testing frameworks, you don't have to re-list all your defined tests in order to run them.\n\nAfter defining your tests, you can run them with `RUN_ALL_TESTS()` , which returns `0` if all the tests are successful, or `1` otherwise. Note that `RUN_ALL_TESTS()` runs _all tests_ in your link unit -- they can be from different test cases, or even different source files.\n\nWhen invoked, the `RUN_ALL_TESTS()` macro:\n  1. Saves the state of all  Google Test flags.\n  1. Creates a test fixture object for the first test.\n  1. Initializes it via `SetUp()`.\n  1. Runs the test on the fixture object.\n  1. Cleans up the fixture via `TearDown()`.\n  1. Deletes the fixture.\n  1. Restores the state of all Google Test flags.\n  1. Repeats the above steps for the next test, until all tests have run.\n\nIn addition, if the text fixture's constructor generates a fatal failure in\nstep 2, there is no point for step 3 - 5 and they are thus skipped. Similarly,\nif step 3 generates a fatal failure, step 4 will be skipped.\n\n_Important_: You must not ignore the return value of `RUN_ALL_TESTS()`, or `gcc`\nwill give you a compiler error. The rationale for this design is that the\nautomated testing service determines whether a test has passed based on its\nexit code, not on its stdout/stderr output; thus your `main()` function must\nreturn the value of `RUN_ALL_TESTS()`.\n\nAlso, you should call `RUN_ALL_TESTS()` only **once**. Calling it more than once\nconflicts with some advanced Google Test features (e.g. thread-safe death\ntests) and thus is not supported.\n\n_Availability_: Linux, Windows, Mac.\n\n# Writing the main() Function #\n\nYou can start from this boilerplate:\n```\n#include \"this/package/foo.h\"\n#include \"gtest/gtest.h\"\n\nnamespace {\n\n// The fixture for testing class Foo.\nclass FooTest : public ::testing::Test {\n protected:\n  // You can remove any or all of the following functions if its body\n  // is empty.\n\n  FooTest() {\n    // You can do set-up work for each test here.\n  }\n\n  virtual ~FooTest() {\n    // You can do clean-up work that doesn't throw exceptions here.\n  }\n\n  // If the constructor and destructor are not enough for setting up\n  // and cleaning up each test, you can define the following methods:\n\n  virtual void SetUp() {\n    // Code here will be called immediately after the constructor (right\n    // before each test).\n  }\n\n  virtual void TearDown() {\n    // Code here will be called immediately after each test (right\n    // before the destructor).\n  }\n\n  // Objects declared here can be used by all tests in the test case for Foo.\n};\n\n// Tests that the Foo::Bar() method does Abc.\nTEST_F(FooTest, MethodBarDoesAbc) {\n  const string input_filepath = \"this/package/testdata/myinputfile.dat\";\n  const string output_filepath = \"this/package/testdata/myoutputfile.dat\";\n  Foo f;\n  EXPECT_EQ(0, f.Bar(input_filepath, output_filepath));\n}\n\n// Tests that Foo does Xyz.\nTEST_F(FooTest, DoesXyz) {\n  // Exercises the Xyz feature of Foo.\n}\n\n}  // namespace\n\nint main(int argc, char **argv) {\n  ::testing::InitGoogleTest(&argc, argv);\n  return RUN_ALL_TESTS();\n}\n```\n\nThe `::testing::InitGoogleTest()` function parses the command line for Google\nTest flags, and removes all recognized flags. This allows the user to control a\ntest program's behavior via various flags, which we'll cover in [AdvancedGuide](AdvancedGuide.md).\nYou must call this function before calling `RUN_ALL_TESTS()`, or the flags\nwon't be properly initialized.\n\nOn Windows, `InitGoogleTest()` also works with wide strings, so it can be used\nin programs compiled in `UNICODE` mode as well.\n\nBut maybe you think that writing all those main() functions is too much work? We agree with you completely and that's why Google Test provides a basic implementation of main(). If it fits your needs, then just link your test with gtest\\_main library and you are good to go.\n\n## Important note for Visual C++ users ##\nIf you put your tests into a library and your `main()` function is in a different library or in your .exe file, those tests will not run. The reason is a [bug](https://connect.microsoft.com/feedback/viewfeedback.aspx?FeedbackID=244410&siteid=210) in Visual C++. When you define your tests, Google Test creates certain static objects to register them. These objects are not referenced from elsewhere but their constructors are still supposed to run. When Visual C++ linker sees that nothing in the library is referenced from other places it throws the library out. You have to reference your library with tests from your main program to keep the linker from discarding it. Here is how to do it. Somewhere in your library code declare a function:\n```\n__declspec(dllexport) int PullInMyLibrary() { return 0; }\n```\nIf you put your tests in a static library (not DLL) then `__declspec(dllexport)` is not required. Now, in your main program, write a code that invokes that function:\n```\nint PullInMyLibrary();\nstatic int dummy = PullInMyLibrary();\n```\nThis will keep your tests referenced and will make them register themselves at startup.\n\nIn addition, if you define your tests in a static library, add `/OPT:NOREF` to your main program linker options. If you use MSVC++ IDE, go to your .exe project properties/Configuration Properties/Linker/Optimization and set References setting to `Keep Unreferenced Data (/OPT:NOREF)`. This will keep Visual C++ linker from discarding individual symbols generated by your tests from the final executable.\n\nThere is one more pitfall, though. If you use Google Test as a static library (that's how it is defined in gtest.vcproj) your tests must also reside in a static library. If you have to have them in a DLL, you _must_ change Google Test to build into a DLL as well. Otherwise your tests will not run correctly or will not run at all. The general conclusion here is: make your life easier - do not write your tests in libraries!\n\n# Where to Go from Here #\n\nCongratulations! You've learned the Google Test basics. You can start writing\nand running Google Test tests, read some [samples](Samples.md), or continue with\n[AdvancedGuide](AdvancedGuide.md), which describes many more useful Google Test features.\n\n# Known Limitations #\n\nGoogle Test is designed to be thread-safe.  The implementation is\nthread-safe on systems where the `pthreads` library is available.  It\nis currently _unsafe_ to use Google Test assertions from two threads\nconcurrently on other systems (e.g. Windows).  In most tests this is\nnot an issue as usually the assertions are done in the main thread. If\nyou want to help, you can volunteer to implement the necessary\nsynchronization primitives in `gtest-port.h` for your platform.\n"
  },
  {
    "path": "test/gtest/docs/PumpManual.md",
    "content": "\n\n<b>P</b>ump is <b>U</b>seful for <b>M</b>eta <b>P</b>rogramming.\n\n# The Problem #\n\nTemplate and macro libraries often need to define many classes,\nfunctions, or macros that vary only (or almost only) in the number of\narguments they take. It's a lot of repetitive, mechanical, and\nerror-prone work.\n\nVariadic templates and variadic macros can alleviate the problem.\nHowever, while both are being considered by the C++ committee, neither\nis in the standard yet or widely supported by compilers.  Thus they\nare often not a good choice, especially when your code needs to be\nportable. And their capabilities are still limited.\n\nAs a result, authors of such libraries often have to write scripts to\ngenerate their implementation. However, our experience is that it's\ntedious to write such scripts, which tend to reflect the structure of\nthe generated code poorly and are often hard to read and edit. For\nexample, a small change needed in the generated code may require some\nnon-intuitive, non-trivial changes in the script. This is especially\npainful when experimenting with the code.\n\n# Our Solution #\n\nPump (for Pump is Useful for Meta Programming, Pretty Useful for Meta\nProgramming, or Practical Utility for Meta Programming, whichever you\nprefer) is a simple meta-programming tool for C++. The idea is that a\nprogrammer writes a `foo.pump` file which contains C++ code plus meta\ncode that manipulates the C++ code. The meta code can handle\niterations over a range, nested iterations, local meta variable\ndefinitions, simple arithmetic, and conditional expressions. You can\nview it as a small Domain-Specific Language. The meta language is\ndesigned to be non-intrusive (s.t. it won't confuse Emacs' C++ mode,\nfor example) and concise, making Pump code intuitive and easy to\nmaintain.\n\n## Highlights ##\n\n  * The implementation is in a single Python script and thus ultra portable: no build or installation is needed and it works cross platforms.\n  * Pump tries to be smart with respect to [Google's style guide](http://code.google.com/p/google-styleguide/): it breaks long lines (easy to have when they are generated) at acceptable places to fit within 80 columns and indent the continuation lines correctly.\n  * The format is human-readable and more concise than XML.\n  * The format works relatively well with Emacs' C++ mode.\n\n## Examples ##\n\nThe following Pump code (where meta keywords start with `$`, `[[` and `]]` are meta brackets, and `$$` starts a meta comment that ends with the line):\n\n```\n$var n = 3     $$ Defines a meta variable n.\n$range i 0..n  $$ Declares the range of meta iterator i (inclusive).\n$for i [[\n               $$ Meta loop.\n// Foo$i does blah for $i-ary predicates.\n$range j 1..i\ntemplate <size_t N $for j [[, typename A$j]]>\nclass Foo$i {\n$if i == 0 [[\n  blah a;\n]] $elif i <= 2 [[\n  blah b;\n]] $else [[\n  blah c;\n]]\n};\n\n]]\n```\n\nwill be translated by the Pump compiler to:\n\n```\n// Foo0 does blah for 0-ary predicates.\ntemplate <size_t N>\nclass Foo0 {\n  blah a;\n};\n\n// Foo1 does blah for 1-ary predicates.\ntemplate <size_t N, typename A1>\nclass Foo1 {\n  blah b;\n};\n\n// Foo2 does blah for 2-ary predicates.\ntemplate <size_t N, typename A1, typename A2>\nclass Foo2 {\n  blah b;\n};\n\n// Foo3 does blah for 3-ary predicates.\ntemplate <size_t N, typename A1, typename A2, typename A3>\nclass Foo3 {\n  blah c;\n};\n```\n\nIn another example,\n\n```\n$range i 1..n\nFunc($for i + [[a$i]]);\n$$ The text between i and [[ is the separator between iterations.\n```\n\nwill generate one of the following lines (without the comments), depending on the value of `n`:\n\n```\nFunc();              // If n is 0.\nFunc(a1);            // If n is 1.\nFunc(a1 + a2);       // If n is 2.\nFunc(a1 + a2 + a3);  // If n is 3.\n// And so on...\n```\n\n## Constructs ##\n\nWe support the following meta programming constructs:\n\n| `$var id = exp` | Defines a named constant value. `$id` is valid util the end of the current meta lexical block. |\n|:----------------|:-----------------------------------------------------------------------------------------------|\n| `$range id exp..exp` | Sets the range of an iteration variable, which can be reused in multiple loops later.          |\n| `$for id sep [[ code ]]` | Iteration. The range of `id` must have been defined earlier. `$id` is valid in `code`.         |\n| `$($)`          | Generates a single `$` character.                                                              |\n| `$id`           | Value of the named constant or iteration variable.                                             |\n| `$(exp)`        | Value of the expression.                                                                       |\n| `$if exp [[ code ]] else_branch` | Conditional.                                                                                   |\n| `[[ code ]]`    | Meta lexical block.                                                                            |\n| `cpp_code`      | Raw C++ code.                                                                                  |\n| `$$ comment`    | Meta comment.                                                                                  |\n\n**Note:** To give the user some freedom in formatting the Pump source\ncode, Pump ignores a new-line character if it's right after `$for foo`\nor next to `[[` or `]]`. Without this rule you'll often be forced to write\nvery long lines to get the desired output. Therefore sometimes you may\nneed to insert an extra new-line in such places for a new-line to show\nup in your output.\n\n## Grammar ##\n\n```\ncode ::= atomic_code*\natomic_code ::= $var id = exp\n    | $var id = [[ code ]]\n    | $range id exp..exp\n    | $for id sep [[ code ]]\n    | $($)\n    | $id\n    | $(exp)\n    | $if exp [[ code ]] else_branch\n    | [[ code ]]\n    | cpp_code\nsep ::= cpp_code | empty_string\nelse_branch ::= $else [[ code ]]\n    | $elif exp [[ code ]] else_branch\n    | empty_string\nexp ::= simple_expression_in_Python_syntax\n```\n\n## Code ##\n\nYou can find the source code of Pump in [scripts/pump.py](../scripts/pump.py). It is still\nvery unpolished and lacks automated tests, although it has been\nsuccessfully used many times. If you find a chance to use it in your\nproject, please let us know what you think!  We also welcome help on\nimproving Pump.\n\n## Real Examples ##\n\nYou can find real-world applications of Pump in [Google Test](http://www.google.com/codesearch?q=file%3A\\.pump%24+package%3Ahttp%3A%2F%2Fgoogletest\\.googlecode\\.com) and [Google Mock](http://www.google.com/codesearch?q=file%3A\\.pump%24+package%3Ahttp%3A%2F%2Fgooglemock\\.googlecode\\.com).  The source file `foo.h.pump` generates `foo.h`.\n\n## Tips ##\n\n  * If a meta variable is followed by a letter or digit, you can separate them using `[[]]`, which inserts an empty string. For example `Foo$j[[]]Helper` generate `Foo1Helper` when `j` is 1.\n  * To avoid extra-long Pump source lines, you can break a line anywhere you want by inserting `[[]]` followed by a new line. Since any new-line character next to `[[` or `]]` is ignored, the generated code won't contain this new line.\n"
  },
  {
    "path": "test/gtest/docs/README.md",
    "content": "# Content Moved\n\nWe are working on updates to the GoogleTest documentation, which has moved to\nthe top-level [docs](../../docs) directory.\n"
  },
  {
    "path": "test/gtest/docs/Samples.md",
    "content": "If you're like us, you'd like to look at some Google Test sample code.  The\n[samples folder](../samples) has a number of well-commented samples showing how to use a\nvariety of Google Test features.\n\n  * [Sample #1](../samples/sample1_unittest.cc) shows the basic steps of using Google Test to test C++ functions.\n  * [Sample #2](../samples/sample2_unittest.cc) shows a more complex unit test for a class with multiple member functions.\n  * [Sample #3](../samples/sample3_unittest.cc) uses a test fixture.\n  * [Sample #4](../samples/sample4_unittest.cc) is another basic example of using Google Test.\n  * [Sample #5](../samples/sample5_unittest.cc) teaches how to reuse a test fixture in multiple test cases by deriving sub-fixtures from it.\n  * [Sample #6](../samples/sample6_unittest.cc) demonstrates type-parameterized tests.\n  * [Sample #7](../samples/sample7_unittest.cc) teaches the basics of value-parameterized tests.\n  * [Sample #8](../samples/sample8_unittest.cc) shows using `Combine()` in value-parameterized tests.\n  * [Sample #9](../samples/sample9_unittest.cc) shows use of the listener API to modify Google Test's console output and the use of its reflection API to inspect test results.\n  * [Sample #10](../samples/sample10_unittest.cc) shows use of the listener API to implement a primitive memory leak checker.\n"
  },
  {
    "path": "test/gtest/docs/XcodeGuide.md",
    "content": "\n\nThis guide will explain how to use the Google Testing Framework in your Xcode projects on Mac OS X. This tutorial begins by quickly explaining what to do for experienced users. After the quick start, the guide goes provides additional explanation about each step.\n\n# Quick Start #\n\nHere is the quick guide for using Google Test in your Xcode project.\n\n  1. Download the source from the [website](http://code.google.com/p/googletest) using this command: `svn checkout http://googletest.googlecode.com/svn/trunk/ googletest-read-only`\n  1. Open up the `gtest.xcodeproj` in the `googletest-read-only/xcode/` directory and build the gtest.framework.\n  1. Create a new \"Shell Tool\" target in your Xcode project called something like \"UnitTests\"\n  1. Add the gtest.framework to your project and add it to the \"Link Binary with Libraries\" build phase of \"UnitTests\"\n  1. Add your unit test source code to the \"Compile Sources\" build phase of \"UnitTests\"\n  1. Edit the \"UnitTests\" executable and add an environment variable named \"DYLD\\_FRAMEWORK\\_PATH\" with a value equal to the path to the framework containing the gtest.framework relative to the compiled executable.\n  1. Build and Go\n\nThe following sections further explain each of the steps listed above in depth, describing in more detail how to complete it including some variations.\n\n# Get the Source #\n\nCurrently, the gtest.framework discussed here isn't available in a tagged release of Google Test, it is only available in the trunk. As explained at the Google Test [site](http://code.google.com/p/googletest/source/checkout\">svn), you can get the code from anonymous SVN with this command:\n\n```\nsvn checkout http://googletest.googlecode.com/svn/trunk/ googletest-read-only\n```\n\nAlternatively, if you are working with Subversion in your own code base, you can add Google Test as an external dependency to your own Subversion repository. By following this approach, everyone that checks out your svn repository will also receive a copy of Google Test (a specific version, if you wish) without having to check it out explicitly. This makes the set up of your project simpler and reduces the copied code in the repository.\n\nTo use `svn:externals`, decide where you would like to have the external source reside. You might choose to put the external source inside the trunk, because you want it to be part of the branch when you make a release. However, keeping it outside the trunk in a version-tagged directory called something like `third-party/googletest/1.0.1`, is another option. Once the location is established, use `svn propedit svn:externals _directory_` to set the svn:externals property on a directory in your repository. This directory won't contain the code, but be its versioned parent directory.\n\nThe command `svn propedit` will bring up your Subversion editor, making editing the long, (potentially multi-line) property simpler. This same method can be used to check out a tagged branch, by using the appropriate URL (e.g. `http://googletest.googlecode.com/svn/tags/release-1.0.1`). Additionally, the svn:externals property allows the specification of a particular revision of the trunk with the `-r_##_` option (e.g. `externals/src/googletest -r60 http://googletest.googlecode.com/svn/trunk`).\n\nHere is an example of using the svn:externals properties on a trunk (read via `svn propget`) of a project. This value checks out a copy of Google Test into the `trunk/externals/src/googletest/` directory.\n\n```\n[Computer:svn] user$ svn propget svn:externals trunk\nexternals/src/googletest http://googletest.googlecode.com/svn/trunk\n```\n\n# Add the Framework to Your Project #\n\nThe next step is to build and add the gtest.framework to your own project. This guide describes two common ways below.\n\n  * **Option 1** --- The simplest way to add Google Test to your own project, is to open gtest.xcodeproj (found in the xcode/ directory of the Google Test trunk) and build the framework manually. Then, add the built framework into your project using the \"Add->Existing Framework...\" from the context menu or \"Project->Add...\" from the main menu. The gtest.framework is relocatable and contains the headers and object code that you'll need to make tests. This method requires rebuilding every time you upgrade Google Test in your project.\n  * **Option 2** --- If you are going to be living off the trunk of Google Test, incorporating its latest features into your unit tests (or are a Google Test developer yourself). You'll want to rebuild the framework every time the source updates. to do this, you'll need to add the gtest.xcodeproj file, not the framework itself, to your own Xcode project. Then, from the build products that are revealed by the project's disclosure triangle, you can find the gtest.framework, which can be added to your targets (discussed below).\n\n# Make a Test Target #\n\nTo start writing tests, make a new \"Shell Tool\" target. This target template is available under BSD, Cocoa, or Carbon. Add your unit test source code to the \"Compile Sources\" build phase of the target.\n\nNext, you'll want to add gtest.framework in two different ways, depending upon which option you chose above.\n\n  * **Option 1** --- During compilation, Xcode will need to know that you are linking against the gtest.framework. Add the gtest.framework to the \"Link Binary with Libraries\" build phase of your test target. This will include the Google Test headers in your header search path, and will tell the linker where to find the library.\n  * **Option 2** --- If your working out of the trunk, you'll also want to add gtest.framework to your \"Link Binary with Libraries\" build phase of your test target. In addition, you'll  want to add the gtest.framework as a dependency to your unit test target. This way, Xcode will make sure that gtest.framework is up to date, every time your build your target. Finally, if you don't share build directories with Google Test, you'll have to copy the gtest.framework into your own build products directory using a \"Run Script\" build phase.\n\n# Set Up the Executable Run Environment #\n\nSince the unit test executable is a shell tool, it doesn't have a bundle with a `Contents/Frameworks` directory, in which to place gtest.framework. Instead, the dynamic linker must be told at runtime to search for the framework in another location. This can be accomplished by setting the \"DYLD\\_FRAMEWORK\\_PATH\" environment variable in the \"Edit Active Executable ...\" Arguments tab, under \"Variables to be set in the environment:\". The path for this value is the path (relative or absolute) of the directory containing the gtest.framework.\n\nIf you haven't set up the DYLD\\_FRAMEWORK\\_PATH, correctly, you might get a message like this:\n\n```\n[Session started at 2008-08-15 06:23:57 -0600.]\n  dyld: Library not loaded: @loader_path/../Frameworks/gtest.framework/Versions/A/gtest\n    Referenced from: /Users/username/Documents/Sandbox/gtestSample/build/Debug/WidgetFrameworkTest\n    Reason: image not found\n```\n\nTo correct this problem, got to the directory containing the executable named in \"Referenced from:\" value in the error message above. Then, with the terminal in this location, find the relative path to the directory containing the gtest.framework. That is the value you'll need to set as the DYLD\\_FRAMEWORK\\_PATH.\n\n# Build and Go #\n\nNow, when you click \"Build and Go\", the test will be executed. Dumping out something like this:\n\n```\n[Session started at 2008-08-06 06:36:13 -0600.]\n[==========] Running 2 tests from 1 test case.\n[----------] Global test environment set-up.\n[----------] 2 tests from WidgetInitializerTest\n[ RUN      ] WidgetInitializerTest.TestConstructor\n[       OK ] WidgetInitializerTest.TestConstructor\n[ RUN      ] WidgetInitializerTest.TestConversion\n[       OK ] WidgetInitializerTest.TestConversion\n[----------] Global test environment tear-down\n[==========] 2 tests from 1 test case ran.\n[  PASSED  ] 2 tests.\n\nThe Debugger has exited with status 0.\n```\n\n# Summary #\n\nUnit testing is a valuable way to ensure your data model stays valid even during rapid development or refactoring. The Google Testing Framework is a great unit testing framework for C and C++ which integrates well with an Xcode development environment."
  },
  {
    "path": "test/gtest/include/gtest/gtest-death-test.h",
    "content": "// Copyright 2005, Google Inc.\n// All rights reserved.\n//\n// Redistribution and use in source and binary forms, with or without\n// modification, are permitted provided that the following conditions are\n// met:\n//\n//     * Redistributions of source code must retain the above copyright\n// notice, this list of conditions and the following disclaimer.\n//     * Redistributions in binary form must reproduce the above\n// copyright notice, this list of conditions and the following disclaimer\n// in the documentation and/or other materials provided with the\n// distribution.\n//     * Neither the name of Google Inc. nor the names of its\n// contributors may be used to endorse or promote products derived from\n// this software without specific prior written permission.\n//\n// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n// \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n//\n// The Google C++ Testing and Mocking Framework (Google Test)\n//\n// This header file defines the public API for death tests.  It is\n// #included by gtest.h so a user doesn't need to include this\n// directly.\n// GOOGLETEST_CM0001 DO NOT DELETE\n\n#ifndef GOOGLETEST_INCLUDE_GTEST_GTEST_DEATH_TEST_H_\n#define GOOGLETEST_INCLUDE_GTEST_GTEST_DEATH_TEST_H_\n\n#include \"gtest/internal/gtest-death-test-internal.h\"\n\nnamespace testing {\n\n// This flag controls the style of death tests.  Valid values are \"threadsafe\",\n// meaning that the death test child process will re-execute the test binary\n// from the start, running only a single death test, or \"fast\",\n// meaning that the child process will execute the test logic immediately\n// after forking.\nGTEST_DECLARE_string_(death_test_style);\n\n#if GTEST_HAS_DEATH_TEST\n\nnamespace internal {\n\n// Returns a Boolean value indicating whether the caller is currently\n// executing in the context of the death test child process.  Tools such as\n// Valgrind heap checkers may need this to modify their behavior in death\n// tests.  IMPORTANT: This is an internal utility.  Using it may break the\n// implementation of death tests.  User code MUST NOT use it.\nGTEST_API_ bool InDeathTestChild();\n\n}  // namespace internal\n\n// The following macros are useful for writing death tests.\n\n// Here's what happens when an ASSERT_DEATH* or EXPECT_DEATH* is\n// executed:\n//\n//   1. It generates a warning if there is more than one active\n//   thread.  This is because it's safe to fork() or clone() only\n//   when there is a single thread.\n//\n//   2. The parent process clone()s a sub-process and runs the death\n//   test in it; the sub-process exits with code 0 at the end of the\n//   death test, if it hasn't exited already.\n//\n//   3. The parent process waits for the sub-process to terminate.\n//\n//   4. The parent process checks the exit code and error message of\n//   the sub-process.\n//\n// Examples:\n//\n//   ASSERT_DEATH(server.SendMessage(56, \"Hello\"), \"Invalid port number\");\n//   for (int i = 0; i < 5; i++) {\n//     EXPECT_DEATH(server.ProcessRequest(i),\n//                  \"Invalid request .* in ProcessRequest()\")\n//                  << \"Failed to die on request \" << i;\n//   }\n//\n//   ASSERT_EXIT(server.ExitNow(), ::testing::ExitedWithCode(0), \"Exiting\");\n//\n//   bool KilledBySIGHUP(int exit_code) {\n//     return WIFSIGNALED(exit_code) && WTERMSIG(exit_code) == SIGHUP;\n//   }\n//\n//   ASSERT_EXIT(client.HangUpServer(), KilledBySIGHUP, \"Hanging up!\");\n//\n// The final parameter to each of these macros is a matcher applied to any data\n// the sub-process wrote to stderr.  For compatibility with existing tests, a\n// bare string is interpreted as a regular expression matcher.\n//\n// On the regular expressions used in death tests:\n//\n//   GOOGLETEST_CM0005 DO NOT DELETE\n//   On POSIX-compliant systems (*nix), we use the <regex.h> library,\n//   which uses the POSIX extended regex syntax.\n//\n//   On other platforms (e.g. Windows or Mac), we only support a simple regex\n//   syntax implemented as part of Google Test.  This limited\n//   implementation should be enough most of the time when writing\n//   death tests; though it lacks many features you can find in PCRE\n//   or POSIX extended regex syntax.  For example, we don't support\n//   union (\"x|y\"), grouping (\"(xy)\"), brackets (\"[xy]\"), and\n//   repetition count (\"x{5,7}\"), among others.\n//\n//   Below is the syntax that we do support.  We chose it to be a\n//   subset of both PCRE and POSIX extended regex, so it's easy to\n//   learn wherever you come from.  In the following: 'A' denotes a\n//   literal character, period (.), or a single \\\\ escape sequence;\n//   'x' and 'y' denote regular expressions; 'm' and 'n' are for\n//   natural numbers.\n//\n//     c     matches any literal character c\n//     \\\\d   matches any decimal digit\n//     \\\\D   matches any character that's not a decimal digit\n//     \\\\f   matches \\f\n//     \\\\n   matches \\n\n//     \\\\r   matches \\r\n//     \\\\s   matches any ASCII whitespace, including \\n\n//     \\\\S   matches any character that's not a whitespace\n//     \\\\t   matches \\t\n//     \\\\v   matches \\v\n//     \\\\w   matches any letter, _, or decimal digit\n//     \\\\W   matches any character that \\\\w doesn't match\n//     \\\\c   matches any literal character c, which must be a punctuation\n//     .     matches any single character except \\n\n//     A?    matches 0 or 1 occurrences of A\n//     A*    matches 0 or many occurrences of A\n//     A+    matches 1 or many occurrences of A\n//     ^     matches the beginning of a string (not that of each line)\n//     $     matches the end of a string (not that of each line)\n//     xy    matches x followed by y\n//\n//   If you accidentally use PCRE or POSIX extended regex features\n//   not implemented by us, you will get a run-time failure.  In that\n//   case, please try to rewrite your regular expression within the\n//   above syntax.\n//\n//   This implementation is *not* meant to be as highly tuned or robust\n//   as a compiled regex library, but should perform well enough for a\n//   death test, which already incurs significant overhead by launching\n//   a child process.\n//\n// Known caveats:\n//\n//   A \"threadsafe\" style death test obtains the path to the test\n//   program from argv[0] and re-executes it in the sub-process.  For\n//   simplicity, the current implementation doesn't search the PATH\n//   when launching the sub-process.  This means that the user must\n//   invoke the test program via a path that contains at least one\n//   path separator (e.g. path/to/foo_test and\n//   /absolute/path/to/bar_test are fine, but foo_test is not).  This\n//   is rarely a problem as people usually don't put the test binary\n//   directory in PATH.\n//\n\n// Asserts that a given `statement` causes the program to exit, with an\n// integer exit status that satisfies `predicate`, and emitting error output\n// that matches `matcher`.\n# define ASSERT_EXIT(statement, predicate, matcher) \\\n    GTEST_DEATH_TEST_(statement, predicate, matcher, GTEST_FATAL_FAILURE_)\n\n// Like `ASSERT_EXIT`, but continues on to successive tests in the\n// test suite, if any:\n# define EXPECT_EXIT(statement, predicate, matcher) \\\n    GTEST_DEATH_TEST_(statement, predicate, matcher, GTEST_NONFATAL_FAILURE_)\n\n// Asserts that a given `statement` causes the program to exit, either by\n// explicitly exiting with a nonzero exit code or being killed by a\n// signal, and emitting error output that matches `matcher`.\n# define ASSERT_DEATH(statement, matcher) \\\n    ASSERT_EXIT(statement, ::testing::internal::ExitedUnsuccessfully, matcher)\n\n// Like `ASSERT_DEATH`, but continues on to successive tests in the\n// test suite, if any:\n# define EXPECT_DEATH(statement, matcher) \\\n    EXPECT_EXIT(statement, ::testing::internal::ExitedUnsuccessfully, matcher)\n\n// Two predicate classes that can be used in {ASSERT,EXPECT}_EXIT*:\n\n// Tests that an exit code describes a normal exit with a given exit code.\nclass GTEST_API_ ExitedWithCode {\n public:\n  explicit ExitedWithCode(int exit_code);\n  ExitedWithCode(const ExitedWithCode&) = default;\n  void operator=(const ExitedWithCode& other) = delete;\n  bool operator()(int exit_status) const;\n private:\n  const int exit_code_;\n};\n\n# if !GTEST_OS_WINDOWS && !GTEST_OS_FUCHSIA\n// Tests that an exit code describes an exit due to termination by a\n// given signal.\n// GOOGLETEST_CM0006 DO NOT DELETE\nclass GTEST_API_ KilledBySignal {\n public:\n  explicit KilledBySignal(int signum);\n  bool operator()(int exit_status) const;\n private:\n  const int signum_;\n};\n# endif  // !GTEST_OS_WINDOWS\n\n// EXPECT_DEBUG_DEATH asserts that the given statements die in debug mode.\n// The death testing framework causes this to have interesting semantics,\n// since the sideeffects of the call are only visible in opt mode, and not\n// in debug mode.\n//\n// In practice, this can be used to test functions that utilize the\n// LOG(DFATAL) macro using the following style:\n//\n// int DieInDebugOr12(int* sideeffect) {\n//   if (sideeffect) {\n//     *sideeffect = 12;\n//   }\n//   LOG(DFATAL) << \"death\";\n//   return 12;\n// }\n//\n// TEST(TestSuite, TestDieOr12WorksInDgbAndOpt) {\n//   int sideeffect = 0;\n//   // Only asserts in dbg.\n//   EXPECT_DEBUG_DEATH(DieInDebugOr12(&sideeffect), \"death\");\n//\n// #ifdef NDEBUG\n//   // opt-mode has sideeffect visible.\n//   EXPECT_EQ(12, sideeffect);\n// #else\n//   // dbg-mode no visible sideeffect.\n//   EXPECT_EQ(0, sideeffect);\n// #endif\n// }\n//\n// This will assert that DieInDebugReturn12InOpt() crashes in debug\n// mode, usually due to a DCHECK or LOG(DFATAL), but returns the\n// appropriate fallback value (12 in this case) in opt mode. If you\n// need to test that a function has appropriate side-effects in opt\n// mode, include assertions against the side-effects.  A general\n// pattern for this is:\n//\n// EXPECT_DEBUG_DEATH({\n//   // Side-effects here will have an effect after this statement in\n//   // opt mode, but none in debug mode.\n//   EXPECT_EQ(12, DieInDebugOr12(&sideeffect));\n// }, \"death\");\n//\n# ifdef NDEBUG\n\n#  define EXPECT_DEBUG_DEATH(statement, regex) \\\n  GTEST_EXECUTE_STATEMENT_(statement, regex)\n\n#  define ASSERT_DEBUG_DEATH(statement, regex) \\\n  GTEST_EXECUTE_STATEMENT_(statement, regex)\n\n# else\n\n#  define EXPECT_DEBUG_DEATH(statement, regex) \\\n  EXPECT_DEATH(statement, regex)\n\n#  define ASSERT_DEBUG_DEATH(statement, regex) \\\n  ASSERT_DEATH(statement, regex)\n\n# endif  // NDEBUG for EXPECT_DEBUG_DEATH\n#endif  // GTEST_HAS_DEATH_TEST\n\n// This macro is used for implementing macros such as\n// EXPECT_DEATH_IF_SUPPORTED and ASSERT_DEATH_IF_SUPPORTED on systems where\n// death tests are not supported. Those macros must compile on such systems\n// if and only if EXPECT_DEATH and ASSERT_DEATH compile with the same parameters\n// on systems that support death tests. This allows one to write such a macro on\n// a system that does not support death tests and be sure that it will compile\n// on a death-test supporting system. It is exposed publicly so that systems\n// that have death-tests with stricter requirements than GTEST_HAS_DEATH_TEST\n// can write their own equivalent of EXPECT_DEATH_IF_SUPPORTED and\n// ASSERT_DEATH_IF_SUPPORTED.\n//\n// Parameters:\n//   statement -  A statement that a macro such as EXPECT_DEATH would test\n//                for program termination. This macro has to make sure this\n//                statement is compiled but not executed, to ensure that\n//                EXPECT_DEATH_IF_SUPPORTED compiles with a certain\n//                parameter if and only if EXPECT_DEATH compiles with it.\n//   regex     -  A regex that a macro such as EXPECT_DEATH would use to test\n//                the output of statement.  This parameter has to be\n//                compiled but not evaluated by this macro, to ensure that\n//                this macro only accepts expressions that a macro such as\n//                EXPECT_DEATH would accept.\n//   terminator - Must be an empty statement for EXPECT_DEATH_IF_SUPPORTED\n//                and a return statement for ASSERT_DEATH_IF_SUPPORTED.\n//                This ensures that ASSERT_DEATH_IF_SUPPORTED will not\n//                compile inside functions where ASSERT_DEATH doesn't\n//                compile.\n//\n//  The branch that has an always false condition is used to ensure that\n//  statement and regex are compiled (and thus syntactically correct) but\n//  never executed. The unreachable code macro protects the terminator\n//  statement from generating an 'unreachable code' warning in case\n//  statement unconditionally returns or throws. The Message constructor at\n//  the end allows the syntax of streaming additional messages into the\n//  macro, for compilational compatibility with EXPECT_DEATH/ASSERT_DEATH.\n# define GTEST_UNSUPPORTED_DEATH_TEST(statement, regex, terminator) \\\n    GTEST_AMBIGUOUS_ELSE_BLOCKER_ \\\n    if (::testing::internal::AlwaysTrue()) { \\\n      GTEST_LOG_(WARNING) \\\n          << \"Death tests are not supported on this platform.\\n\" \\\n          << \"Statement '\" #statement \"' cannot be verified.\"; \\\n    } else if (::testing::internal::AlwaysFalse()) { \\\n      ::testing::internal::RE::PartialMatch(\".*\", (regex)); \\\n      GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement); \\\n      terminator; \\\n    } else \\\n      ::testing::Message()\n\n// EXPECT_DEATH_IF_SUPPORTED(statement, regex) and\n// ASSERT_DEATH_IF_SUPPORTED(statement, regex) expand to real death tests if\n// death tests are supported; otherwise they just issue a warning.  This is\n// useful when you are combining death test assertions with normal test\n// assertions in one test.\n#if GTEST_HAS_DEATH_TEST\n# define EXPECT_DEATH_IF_SUPPORTED(statement, regex) \\\n    EXPECT_DEATH(statement, regex)\n# define ASSERT_DEATH_IF_SUPPORTED(statement, regex) \\\n    ASSERT_DEATH(statement, regex)\n#else\n# define EXPECT_DEATH_IF_SUPPORTED(statement, regex) \\\n    GTEST_UNSUPPORTED_DEATH_TEST(statement, regex, )\n# define ASSERT_DEATH_IF_SUPPORTED(statement, regex) \\\n    GTEST_UNSUPPORTED_DEATH_TEST(statement, regex, return)\n#endif\n\n}  // namespace testing\n\n#endif  // GOOGLETEST_INCLUDE_GTEST_GTEST_DEATH_TEST_H_\n"
  },
  {
    "path": "test/gtest/include/gtest/gtest-matchers.h",
    "content": "// Copyright 2007, Google Inc.\n// All rights reserved.\n//\n// Redistribution and use in source and binary forms, with or without\n// modification, are permitted provided that the following conditions are\n// met:\n//\n//     * Redistributions of source code must retain the above copyright\n// notice, this list of conditions and the following disclaimer.\n//     * Redistributions in binary form must reproduce the above\n// copyright notice, this list of conditions and the following disclaimer\n// in the documentation and/or other materials provided with the\n// distribution.\n//     * Neither the name of Google Inc. nor the names of its\n// contributors may be used to endorse or promote products derived from\n// this software without specific prior written permission.\n//\n// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n// \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n// The Google C++ Testing and Mocking Framework (Google Test)\n//\n// This file implements just enough of the matcher interface to allow\n// EXPECT_DEATH and friends to accept a matcher argument.\n\n#ifndef GOOGLETEST_INCLUDE_GTEST_GTEST_MATCHERS_H_\n#define GOOGLETEST_INCLUDE_GTEST_GTEST_MATCHERS_H_\n\n#include <atomic>\n#include <memory>\n#include <ostream>\n#include <string>\n#include <type_traits>\n\n#include \"gtest/gtest-printers.h\"\n#include \"gtest/internal/gtest-internal.h\"\n#include \"gtest/internal/gtest-port.h\"\n\n// MSVC warning C5046 is new as of VS2017 version 15.8.\n#if defined(_MSC_VER) && _MSC_VER >= 1915\n#define GTEST_MAYBE_5046_ 5046\n#else\n#define GTEST_MAYBE_5046_\n#endif\n\nGTEST_DISABLE_MSC_WARNINGS_PUSH_(\n    4251 GTEST_MAYBE_5046_ /* class A needs to have dll-interface to be used by\n                              clients of class B */\n    /* Symbol involving type with internal linkage not defined */)\n\nnamespace testing {\n\n// To implement a matcher Foo for type T, define:\n//   1. a class FooMatcherMatcher that implements the matcher interface:\n//     using is_gtest_matcher = void;\n//     bool MatchAndExplain(const T&, std::ostream*);\n//       (MatchResultListener* can also be used instead of std::ostream*)\n//     void DescribeTo(std::ostream*);\n//     void DescribeNegationTo(std::ostream*);\n//\n//   2. a factory function that creates a Matcher<T> object from a\n//      FooMatcherMatcher.\n\nclass MatchResultListener {\n public:\n  // Creates a listener object with the given underlying ostream.  The\n  // listener does not own the ostream, and does not dereference it\n  // in the constructor or destructor.\n  explicit MatchResultListener(::std::ostream* os) : stream_(os) {}\n  virtual ~MatchResultListener() = 0;  // Makes this class abstract.\n\n  // Streams x to the underlying ostream; does nothing if the ostream\n  // is NULL.\n  template <typename T>\n  MatchResultListener& operator<<(const T& x) {\n    if (stream_ != nullptr) *stream_ << x;\n    return *this;\n  }\n\n  // Returns the underlying ostream.\n  ::std::ostream* stream() { return stream_; }\n\n  // Returns true if and only if the listener is interested in an explanation\n  // of the match result.  A matcher's MatchAndExplain() method can use\n  // this information to avoid generating the explanation when no one\n  // intends to hear it.\n  bool IsInterested() const { return stream_ != nullptr; }\n\n private:\n  ::std::ostream* const stream_;\n\n  GTEST_DISALLOW_COPY_AND_ASSIGN_(MatchResultListener);\n};\n\ninline MatchResultListener::~MatchResultListener() {\n}\n\n// An instance of a subclass of this knows how to describe itself as a\n// matcher.\nclass GTEST_API_ MatcherDescriberInterface {\n public:\n  virtual ~MatcherDescriberInterface() {}\n\n  // Describes this matcher to an ostream.  The function should print\n  // a verb phrase that describes the property a value matching this\n  // matcher should have.  The subject of the verb phrase is the value\n  // being matched.  For example, the DescribeTo() method of the Gt(7)\n  // matcher prints \"is greater than 7\".\n  virtual void DescribeTo(::std::ostream* os) const = 0;\n\n  // Describes the negation of this matcher to an ostream.  For\n  // example, if the description of this matcher is \"is greater than\n  // 7\", the negated description could be \"is not greater than 7\".\n  // You are not required to override this when implementing\n  // MatcherInterface, but it is highly advised so that your matcher\n  // can produce good error messages.\n  virtual void DescribeNegationTo(::std::ostream* os) const {\n    *os << \"not (\";\n    DescribeTo(os);\n    *os << \")\";\n  }\n};\n\n// The implementation of a matcher.\ntemplate <typename T>\nclass MatcherInterface : public MatcherDescriberInterface {\n public:\n  // Returns true if and only if the matcher matches x; also explains the\n  // match result to 'listener' if necessary (see the next paragraph), in\n  // the form of a non-restrictive relative clause (\"which ...\",\n  // \"whose ...\", etc) that describes x.  For example, the\n  // MatchAndExplain() method of the Pointee(...) matcher should\n  // generate an explanation like \"which points to ...\".\n  //\n  // Implementations of MatchAndExplain() should add an explanation of\n  // the match result *if and only if* they can provide additional\n  // information that's not already present (or not obvious) in the\n  // print-out of x and the matcher's description.  Whether the match\n  // succeeds is not a factor in deciding whether an explanation is\n  // needed, as sometimes the caller needs to print a failure message\n  // when the match succeeds (e.g. when the matcher is used inside\n  // Not()).\n  //\n  // For example, a \"has at least 10 elements\" matcher should explain\n  // what the actual element count is, regardless of the match result,\n  // as it is useful information to the reader; on the other hand, an\n  // \"is empty\" matcher probably only needs to explain what the actual\n  // size is when the match fails, as it's redundant to say that the\n  // size is 0 when the value is already known to be empty.\n  //\n  // You should override this method when defining a new matcher.\n  //\n  // It's the responsibility of the caller (Google Test) to guarantee\n  // that 'listener' is not NULL.  This helps to simplify a matcher's\n  // implementation when it doesn't care about the performance, as it\n  // can talk to 'listener' without checking its validity first.\n  // However, in order to implement dummy listeners efficiently,\n  // listener->stream() may be NULL.\n  virtual bool MatchAndExplain(T x, MatchResultListener* listener) const = 0;\n\n  // Inherits these methods from MatcherDescriberInterface:\n  //   virtual void DescribeTo(::std::ostream* os) const = 0;\n  //   virtual void DescribeNegationTo(::std::ostream* os) const;\n};\n\nnamespace internal {\n\nstruct AnyEq {\n  template <typename A, typename B>\n  bool operator()(const A& a, const B& b) const { return a == b; }\n};\nstruct AnyNe {\n  template <typename A, typename B>\n  bool operator()(const A& a, const B& b) const { return a != b; }\n};\nstruct AnyLt {\n  template <typename A, typename B>\n  bool operator()(const A& a, const B& b) const { return a < b; }\n};\nstruct AnyGt {\n  template <typename A, typename B>\n  bool operator()(const A& a, const B& b) const { return a > b; }\n};\nstruct AnyLe {\n  template <typename A, typename B>\n  bool operator()(const A& a, const B& b) const { return a <= b; }\n};\nstruct AnyGe {\n  template <typename A, typename B>\n  bool operator()(const A& a, const B& b) const { return a >= b; }\n};\n\n// A match result listener that ignores the explanation.\nclass DummyMatchResultListener : public MatchResultListener {\n public:\n  DummyMatchResultListener() : MatchResultListener(nullptr) {}\n\n private:\n  GTEST_DISALLOW_COPY_AND_ASSIGN_(DummyMatchResultListener);\n};\n\n// A match result listener that forwards the explanation to a given\n// ostream.  The difference between this and MatchResultListener is\n// that the former is concrete.\nclass StreamMatchResultListener : public MatchResultListener {\n public:\n  explicit StreamMatchResultListener(::std::ostream* os)\n      : MatchResultListener(os) {}\n\n private:\n  GTEST_DISALLOW_COPY_AND_ASSIGN_(StreamMatchResultListener);\n};\n\nstruct SharedPayloadBase {\n  std::atomic<int> ref{1};\n  void Ref() { ref.fetch_add(1, std::memory_order_relaxed); }\n  bool Unref() { return ref.fetch_sub(1, std::memory_order_acq_rel) == 1; }\n};\n\ntemplate <typename T>\nstruct SharedPayload : SharedPayloadBase {\n  explicit SharedPayload(const T& v) : value(v) {}\n  explicit SharedPayload(T&& v) : value(std::move(v)) {}\n\n  static void Destroy(SharedPayloadBase* shared) {\n    delete static_cast<SharedPayload*>(shared);\n  }\n\n  T value;\n};\n\n// An internal class for implementing Matcher<T>, which will derive\n// from it.  We put functionalities common to all Matcher<T>\n// specializations here to avoid code duplication.\ntemplate <typename T>\nclass MatcherBase : private MatcherDescriberInterface {\n public:\n  // Returns true if and only if the matcher matches x; also explains the\n  // match result to 'listener'.\n  bool MatchAndExplain(const T& x, MatchResultListener* listener) const {\n    GTEST_CHECK_(vtable_ != nullptr);\n    return vtable_->match_and_explain(*this, x, listener);\n  }\n\n  // Returns true if and only if this matcher matches x.\n  bool Matches(const T& x) const {\n    DummyMatchResultListener dummy;\n    return MatchAndExplain(x, &dummy);\n  }\n\n  // Describes this matcher to an ostream.\n  void DescribeTo(::std::ostream* os) const final {\n    GTEST_CHECK_(vtable_ != nullptr);\n    vtable_->describe(*this, os, false);\n  }\n\n  // Describes the negation of this matcher to an ostream.\n  void DescribeNegationTo(::std::ostream* os) const final {\n    GTEST_CHECK_(vtable_ != nullptr);\n    vtable_->describe(*this, os, true);\n  }\n\n  // Explains why x matches, or doesn't match, the matcher.\n  void ExplainMatchResultTo(const T& x, ::std::ostream* os) const {\n    StreamMatchResultListener listener(os);\n    MatchAndExplain(x, &listener);\n  }\n\n  // Returns the describer for this matcher object; retains ownership\n  // of the describer, which is only guaranteed to be alive when\n  // this matcher object is alive.\n  const MatcherDescriberInterface* GetDescriber() const {\n    if (vtable_ == nullptr) return nullptr;\n    return vtable_->get_describer(*this);\n  }\n\n protected:\n  MatcherBase() : vtable_(nullptr) {}\n\n  // Constructs a matcher from its implementation.\n  template <typename U>\n  explicit MatcherBase(const MatcherInterface<U>* impl) {\n    Init(impl);\n  }\n\n  template <typename M, typename = typename std::remove_reference<\n                            M>::type::is_gtest_matcher>\n  MatcherBase(M&& m) {  // NOLINT\n    Init(std::forward<M>(m));\n  }\n\n  MatcherBase(const MatcherBase& other)\n      : vtable_(other.vtable_), buffer_(other.buffer_) {\n    if (IsShared()) buffer_.shared->Ref();\n  }\n\n  MatcherBase& operator=(const MatcherBase& other) {\n    if (this == &other) return *this;\n    Destroy();\n    vtable_ = other.vtable_;\n    buffer_ = other.buffer_;\n    if (IsShared()) buffer_.shared->Ref();\n    return *this;\n  }\n\n  MatcherBase(MatcherBase&& other)\n      : vtable_(other.vtable_), buffer_(other.buffer_) {\n    other.vtable_ = nullptr;\n  }\n\n  MatcherBase& operator=(MatcherBase&& other) {\n    if (this == &other) return *this;\n    Destroy();\n    vtable_ = other.vtable_;\n    buffer_ = other.buffer_;\n    other.vtable_ = nullptr;\n    return *this;\n  }\n\n  ~MatcherBase() override { Destroy(); }\n\n private:\n  struct VTable {\n    bool (*match_and_explain)(const MatcherBase&, const T&,\n                              MatchResultListener*);\n    void (*describe)(const MatcherBase&, std::ostream*, bool negation);\n    // Returns the captured object if it implements the interface, otherwise\n    // returns the MatcherBase itself.\n    const MatcherDescriberInterface* (*get_describer)(const MatcherBase&);\n    // Called on shared instances when the reference count reaches 0.\n    void (*shared_destroy)(SharedPayloadBase*);\n  };\n\n  bool IsShared() const {\n    return vtable_ != nullptr && vtable_->shared_destroy != nullptr;\n  }\n\n  // If the implementation uses a listener, call that.\n  template <typename P>\n  static auto MatchAndExplainImpl(const MatcherBase& m, const T& value,\n                                  MatchResultListener* listener)\n      -> decltype(P::Get(m).MatchAndExplain(value, listener->stream())) {\n    return P::Get(m).MatchAndExplain(value, listener->stream());\n  }\n\n  template <typename P>\n  static auto MatchAndExplainImpl(const MatcherBase& m, const T& value,\n                                  MatchResultListener* listener)\n      -> decltype(P::Get(m).MatchAndExplain(value, listener)) {\n    return P::Get(m).MatchAndExplain(value, listener);\n  }\n\n  template <typename P>\n  static void DescribeImpl(const MatcherBase& m, std::ostream* os,\n                           bool negation) {\n    if (negation) {\n      P::Get(m).DescribeNegationTo(os);\n    } else {\n      P::Get(m).DescribeTo(os);\n    }\n  }\n\n  template <typename P>\n  static const MatcherDescriberInterface* GetDescriberImpl(\n      const MatcherBase& m) {\n    // If the impl is a MatcherDescriberInterface, then return it.\n    // Otherwise use MatcherBase itself.\n    // This allows us to implement the GetDescriber() function without support\n    // from the impl, but some users really want to get their impl back when\n    // they call GetDescriber().\n    // We use std::get on a tuple as a workaround of not having `if constexpr`.\n    return std::get<(\n        std::is_convertible<decltype(&P::Get(m)),\n                            const MatcherDescriberInterface*>::value\n            ? 1\n            : 0)>(std::make_tuple(&m, &P::Get(m)));\n  }\n\n  template <typename P>\n  const VTable* GetVTable() {\n    static constexpr VTable kVTable = {&MatchAndExplainImpl<P>,\n                                       &DescribeImpl<P>, &GetDescriberImpl<P>,\n                                       P::shared_destroy};\n    return &kVTable;\n  }\n\n  union Buffer {\n    // Add some types to give Buffer some common alignment/size use cases.\n    void* ptr;\n    double d;\n    int64_t i;\n    // And add one for the out-of-line cases.\n    SharedPayloadBase* shared;\n  };\n\n  void Destroy() {\n    if (IsShared() && buffer_.shared->Unref()) {\n      vtable_->shared_destroy(buffer_.shared);\n    }\n  }\n\n  template <typename M>\n  static constexpr bool IsInlined() {\n    return sizeof(M) <= sizeof(Buffer) && alignof(M) <= alignof(Buffer) &&\n           std::is_trivially_copy_constructible<M>::value &&\n           std::is_trivially_destructible<M>::value;\n  }\n\n  template <typename M, bool = MatcherBase::IsInlined<M>()>\n  struct ValuePolicy {\n    static const M& Get(const MatcherBase& m) {\n      // When inlined along with Init, need to be explicit to avoid violating\n      // strict aliasing rules.\n      const M *ptr = static_cast<const M*>(\n          static_cast<const void*>(&m.buffer_));\n      return *ptr;\n    }\n    static void Init(MatcherBase& m, M impl) {\n      ::new (static_cast<void*>(&m.buffer_)) M(impl);\n    }\n    static constexpr auto shared_destroy = nullptr;\n  };\n\n  template <typename M>\n  struct ValuePolicy<M, false> {\n    using Shared = SharedPayload<M>;\n    static const M& Get(const MatcherBase& m) {\n      return static_cast<Shared*>(m.buffer_.shared)->value;\n    }\n    template <typename Arg>\n    static void Init(MatcherBase& m, Arg&& arg) {\n      m.buffer_.shared = new Shared(std::forward<Arg>(arg));\n    }\n    static constexpr auto shared_destroy = &Shared::Destroy;\n  };\n\n  template <typename U, bool B>\n  struct ValuePolicy<const MatcherInterface<U>*, B> {\n    using M = const MatcherInterface<U>;\n    using Shared = SharedPayload<std::unique_ptr<M>>;\n    static const M& Get(const MatcherBase& m) {\n      return *static_cast<Shared*>(m.buffer_.shared)->value;\n    }\n    static void Init(MatcherBase& m, M* impl) {\n      m.buffer_.shared = new Shared(std::unique_ptr<M>(impl));\n    }\n\n    static constexpr auto shared_destroy = &Shared::Destroy;\n  };\n\n  template <typename M>\n  void Init(M&& m) {\n    using MM = typename std::decay<M>::type;\n    using Policy = ValuePolicy<MM>;\n    vtable_ = GetVTable<Policy>();\n    Policy::Init(*this, std::forward<M>(m));\n  }\n\n  const VTable* vtable_;\n  Buffer buffer_;\n};\n\n}  // namespace internal\n\n// A Matcher<T> is a copyable and IMMUTABLE (except by assignment)\n// object that can check whether a value of type T matches.  The\n// implementation of Matcher<T> is just a std::shared_ptr to const\n// MatcherInterface<T>.  Don't inherit from Matcher!\ntemplate <typename T>\nclass Matcher : public internal::MatcherBase<T> {\n public:\n  // Constructs a null matcher.  Needed for storing Matcher objects in STL\n  // containers.  A default-constructed matcher is not yet initialized.  You\n  // cannot use it until a valid value has been assigned to it.\n  explicit Matcher() {}  // NOLINT\n\n  // Constructs a matcher from its implementation.\n  explicit Matcher(const MatcherInterface<const T&>* impl)\n      : internal::MatcherBase<T>(impl) {}\n\n  template <typename U>\n  explicit Matcher(\n      const MatcherInterface<U>* impl,\n      typename std::enable_if<!std::is_same<U, const U&>::value>::type* =\n          nullptr)\n      : internal::MatcherBase<T>(impl) {}\n\n  template <typename M, typename = typename std::remove_reference<\n                            M>::type::is_gtest_matcher>\n  Matcher(M&& m) : internal::MatcherBase<T>(std::forward<M>(m)) {}  // NOLINT\n\n  // Implicit constructor here allows people to write\n  // EXPECT_CALL(foo, Bar(5)) instead of EXPECT_CALL(foo, Bar(Eq(5))) sometimes\n  Matcher(T value);  // NOLINT\n};\n\n// The following two specializations allow the user to write str\n// instead of Eq(str) and \"foo\" instead of Eq(\"foo\") when a std::string\n// matcher is expected.\ntemplate <>\nclass GTEST_API_ Matcher<const std::string&>\n    : public internal::MatcherBase<const std::string&> {\n public:\n  Matcher() {}\n\n  explicit Matcher(const MatcherInterface<const std::string&>* impl)\n      : internal::MatcherBase<const std::string&>(impl) {}\n\n  template <typename M, typename = typename std::remove_reference<\n                            M>::type::is_gtest_matcher>\n  Matcher(M&& m)  // NOLINT\n      : internal::MatcherBase<const std::string&>(std::forward<M>(m)) {}\n\n  // Allows the user to write str instead of Eq(str) sometimes, where\n  // str is a std::string object.\n  Matcher(const std::string& s);  // NOLINT\n\n  // Allows the user to write \"foo\" instead of Eq(\"foo\") sometimes.\n  Matcher(const char* s);  // NOLINT\n};\n\ntemplate <>\nclass GTEST_API_ Matcher<std::string>\n    : public internal::MatcherBase<std::string> {\n public:\n  Matcher() {}\n\n  explicit Matcher(const MatcherInterface<const std::string&>* impl)\n      : internal::MatcherBase<std::string>(impl) {}\n  explicit Matcher(const MatcherInterface<std::string>* impl)\n      : internal::MatcherBase<std::string>(impl) {}\n\n  template <typename M, typename = typename std::remove_reference<\n                            M>::type::is_gtest_matcher>\n  Matcher(M&& m)  // NOLINT\n      : internal::MatcherBase<std::string>(std::forward<M>(m)) {}\n\n  // Allows the user to write str instead of Eq(str) sometimes, where\n  // str is a string object.\n  Matcher(const std::string& s);  // NOLINT\n\n  // Allows the user to write \"foo\" instead of Eq(\"foo\") sometimes.\n  Matcher(const char* s);  // NOLINT\n};\n\n#if GTEST_INTERNAL_HAS_STRING_VIEW\n// The following two specializations allow the user to write str\n// instead of Eq(str) and \"foo\" instead of Eq(\"foo\") when a absl::string_view\n// matcher is expected.\ntemplate <>\nclass GTEST_API_ Matcher<const internal::StringView&>\n    : public internal::MatcherBase<const internal::StringView&> {\n public:\n  Matcher() {}\n\n  explicit Matcher(const MatcherInterface<const internal::StringView&>* impl)\n      : internal::MatcherBase<const internal::StringView&>(impl) {}\n\n  template <typename M, typename = typename std::remove_reference<\n                            M>::type::is_gtest_matcher>\n  Matcher(M&& m)  // NOLINT\n      : internal::MatcherBase<const internal::StringView&>(std::forward<M>(m)) {\n  }\n\n  // Allows the user to write str instead of Eq(str) sometimes, where\n  // str is a std::string object.\n  Matcher(const std::string& s);  // NOLINT\n\n  // Allows the user to write \"foo\" instead of Eq(\"foo\") sometimes.\n  Matcher(const char* s);  // NOLINT\n\n  // Allows the user to pass absl::string_views or std::string_views directly.\n  Matcher(internal::StringView s);  // NOLINT\n};\n\ntemplate <>\nclass GTEST_API_ Matcher<internal::StringView>\n    : public internal::MatcherBase<internal::StringView> {\n public:\n  Matcher() {}\n\n  explicit Matcher(const MatcherInterface<const internal::StringView&>* impl)\n      : internal::MatcherBase<internal::StringView>(impl) {}\n  explicit Matcher(const MatcherInterface<internal::StringView>* impl)\n      : internal::MatcherBase<internal::StringView>(impl) {}\n\n  template <typename M, typename = typename std::remove_reference<\n                            M>::type::is_gtest_matcher>\n  Matcher(M&& m)  // NOLINT\n      : internal::MatcherBase<internal::StringView>(std::forward<M>(m)) {}\n\n  // Allows the user to write str instead of Eq(str) sometimes, where\n  // str is a std::string object.\n  Matcher(const std::string& s);  // NOLINT\n\n  // Allows the user to write \"foo\" instead of Eq(\"foo\") sometimes.\n  Matcher(const char* s);  // NOLINT\n\n  // Allows the user to pass absl::string_views or std::string_views directly.\n  Matcher(internal::StringView s);  // NOLINT\n};\n#endif  // GTEST_INTERNAL_HAS_STRING_VIEW\n\n// Prints a matcher in a human-readable format.\ntemplate <typename T>\nstd::ostream& operator<<(std::ostream& os, const Matcher<T>& matcher) {\n  matcher.DescribeTo(&os);\n  return os;\n}\n\n// The PolymorphicMatcher class template makes it easy to implement a\n// polymorphic matcher (i.e. a matcher that can match values of more\n// than one type, e.g. Eq(n) and NotNull()).\n//\n// To define a polymorphic matcher, a user should provide an Impl\n// class that has a DescribeTo() method and a DescribeNegationTo()\n// method, and define a member function (or member function template)\n//\n//   bool MatchAndExplain(const Value& value,\n//                        MatchResultListener* listener) const;\n//\n// See the definition of NotNull() for a complete example.\ntemplate <class Impl>\nclass PolymorphicMatcher {\n public:\n  explicit PolymorphicMatcher(const Impl& an_impl) : impl_(an_impl) {}\n\n  // Returns a mutable reference to the underlying matcher\n  // implementation object.\n  Impl& mutable_impl() { return impl_; }\n\n  // Returns an immutable reference to the underlying matcher\n  // implementation object.\n  const Impl& impl() const { return impl_; }\n\n  template <typename T>\n  operator Matcher<T>() const {\n    return Matcher<T>(new MonomorphicImpl<const T&>(impl_));\n  }\n\n private:\n  template <typename T>\n  class MonomorphicImpl : public MatcherInterface<T> {\n   public:\n    explicit MonomorphicImpl(const Impl& impl) : impl_(impl) {}\n\n    void DescribeTo(::std::ostream* os) const override { impl_.DescribeTo(os); }\n\n    void DescribeNegationTo(::std::ostream* os) const override {\n      impl_.DescribeNegationTo(os);\n    }\n\n    bool MatchAndExplain(T x, MatchResultListener* listener) const override {\n      return impl_.MatchAndExplain(x, listener);\n    }\n\n   private:\n    const Impl impl_;\n  };\n\n  Impl impl_;\n};\n\n// Creates a matcher from its implementation.\n// DEPRECATED: Especially in the generic code, prefer:\n//   Matcher<T>(new MyMatcherImpl<const T&>(...));\n//\n// MakeMatcher may create a Matcher that accepts its argument by value, which\n// leads to unnecessary copies & lack of support for non-copyable types.\ntemplate <typename T>\ninline Matcher<T> MakeMatcher(const MatcherInterface<T>* impl) {\n  return Matcher<T>(impl);\n}\n\n// Creates a polymorphic matcher from its implementation.  This is\n// easier to use than the PolymorphicMatcher<Impl> constructor as it\n// doesn't require you to explicitly write the template argument, e.g.\n//\n//   MakePolymorphicMatcher(foo);\n// vs\n//   PolymorphicMatcher<TypeOfFoo>(foo);\ntemplate <class Impl>\ninline PolymorphicMatcher<Impl> MakePolymorphicMatcher(const Impl& impl) {\n  return PolymorphicMatcher<Impl>(impl);\n}\n\nnamespace internal {\n// Implements a matcher that compares a given value with a\n// pre-supplied value using one of the ==, <=, <, etc, operators.  The\n// two values being compared don't have to have the same type.\n//\n// The matcher defined here is polymorphic (for example, Eq(5) can be\n// used to match an int, a short, a double, etc).  Therefore we use\n// a template type conversion operator in the implementation.\n//\n// The following template definition assumes that the Rhs parameter is\n// a \"bare\" type (i.e. neither 'const T' nor 'T&').\ntemplate <typename D, typename Rhs, typename Op>\nclass ComparisonBase {\n public:\n  explicit ComparisonBase(const Rhs& rhs) : rhs_(rhs) {}\n\n  using is_gtest_matcher = void;\n\n  template <typename Lhs>\n  bool MatchAndExplain(const Lhs& lhs, std::ostream*) const {\n    return Op()(lhs, Unwrap(rhs_));\n  }\n  void DescribeTo(std::ostream* os) const {\n    *os << D::Desc() << \" \";\n    UniversalPrint(Unwrap(rhs_), os);\n  }\n  void DescribeNegationTo(std::ostream* os) const {\n    *os << D::NegatedDesc() << \" \";\n    UniversalPrint(Unwrap(rhs_), os);\n  }\n\n private:\n  template <typename T>\n  static const T& Unwrap(const T& v) {\n    return v;\n  }\n  template <typename T>\n  static const T& Unwrap(std::reference_wrapper<T> v) {\n    return v;\n  }\n\n  Rhs rhs_;\n};\n\ntemplate <typename Rhs>\nclass EqMatcher : public ComparisonBase<EqMatcher<Rhs>, Rhs, AnyEq> {\n public:\n  explicit EqMatcher(const Rhs& rhs)\n      : ComparisonBase<EqMatcher<Rhs>, Rhs, AnyEq>(rhs) { }\n  static const char* Desc() { return \"is equal to\"; }\n  static const char* NegatedDesc() { return \"isn't equal to\"; }\n};\ntemplate <typename Rhs>\nclass NeMatcher : public ComparisonBase<NeMatcher<Rhs>, Rhs, AnyNe> {\n public:\n  explicit NeMatcher(const Rhs& rhs)\n      : ComparisonBase<NeMatcher<Rhs>, Rhs, AnyNe>(rhs) { }\n  static const char* Desc() { return \"isn't equal to\"; }\n  static const char* NegatedDesc() { return \"is equal to\"; }\n};\ntemplate <typename Rhs>\nclass LtMatcher : public ComparisonBase<LtMatcher<Rhs>, Rhs, AnyLt> {\n public:\n  explicit LtMatcher(const Rhs& rhs)\n      : ComparisonBase<LtMatcher<Rhs>, Rhs, AnyLt>(rhs) { }\n  static const char* Desc() { return \"is <\"; }\n  static const char* NegatedDesc() { return \"isn't <\"; }\n};\ntemplate <typename Rhs>\nclass GtMatcher : public ComparisonBase<GtMatcher<Rhs>, Rhs, AnyGt> {\n public:\n  explicit GtMatcher(const Rhs& rhs)\n      : ComparisonBase<GtMatcher<Rhs>, Rhs, AnyGt>(rhs) { }\n  static const char* Desc() { return \"is >\"; }\n  static const char* NegatedDesc() { return \"isn't >\"; }\n};\ntemplate <typename Rhs>\nclass LeMatcher : public ComparisonBase<LeMatcher<Rhs>, Rhs, AnyLe> {\n public:\n  explicit LeMatcher(const Rhs& rhs)\n      : ComparisonBase<LeMatcher<Rhs>, Rhs, AnyLe>(rhs) { }\n  static const char* Desc() { return \"is <=\"; }\n  static const char* NegatedDesc() { return \"isn't <=\"; }\n};\ntemplate <typename Rhs>\nclass GeMatcher : public ComparisonBase<GeMatcher<Rhs>, Rhs, AnyGe> {\n public:\n  explicit GeMatcher(const Rhs& rhs)\n      : ComparisonBase<GeMatcher<Rhs>, Rhs, AnyGe>(rhs) { }\n  static const char* Desc() { return \"is >=\"; }\n  static const char* NegatedDesc() { return \"isn't >=\"; }\n};\n\ntemplate <typename T, typename = typename std::enable_if<\n                          std::is_constructible<std::string, T>::value>::type>\nusing StringLike = T;\n\n// Implements polymorphic matchers MatchesRegex(regex) and\n// ContainsRegex(regex), which can be used as a Matcher<T> as long as\n// T can be converted to a string.\nclass MatchesRegexMatcher {\n public:\n  MatchesRegexMatcher(const RE* regex, bool full_match)\n      : regex_(regex), full_match_(full_match) {}\n\n#if GTEST_INTERNAL_HAS_STRING_VIEW\n  bool MatchAndExplain(const internal::StringView& s,\n                       MatchResultListener* listener) const {\n    return MatchAndExplain(std::string(s), listener);\n  }\n#endif  // GTEST_INTERNAL_HAS_STRING_VIEW\n\n  // Accepts pointer types, particularly:\n  //   const char*\n  //   char*\n  //   const wchar_t*\n  //   wchar_t*\n  template <typename CharType>\n  bool MatchAndExplain(CharType* s, MatchResultListener* listener) const {\n    return s != nullptr && MatchAndExplain(std::string(s), listener);\n  }\n\n  // Matches anything that can convert to std::string.\n  //\n  // This is a template, not just a plain function with const std::string&,\n  // because absl::string_view has some interfering non-explicit constructors.\n  template <class MatcheeStringType>\n  bool MatchAndExplain(const MatcheeStringType& s,\n                       MatchResultListener* /* listener */) const {\n    const std::string& s2(s);\n    return full_match_ ? RE::FullMatch(s2, *regex_)\n                       : RE::PartialMatch(s2, *regex_);\n  }\n\n  void DescribeTo(::std::ostream* os) const {\n    *os << (full_match_ ? \"matches\" : \"contains\") << \" regular expression \";\n    UniversalPrinter<std::string>::Print(regex_->pattern(), os);\n  }\n\n  void DescribeNegationTo(::std::ostream* os) const {\n    *os << \"doesn't \" << (full_match_ ? \"match\" : \"contain\")\n        << \" regular expression \";\n    UniversalPrinter<std::string>::Print(regex_->pattern(), os);\n  }\n\n private:\n  const std::shared_ptr<const RE> regex_;\n  const bool full_match_;\n};\n}  // namespace internal\n\n// Matches a string that fully matches regular expression 'regex'.\n// The matcher takes ownership of 'regex'.\ninline PolymorphicMatcher<internal::MatchesRegexMatcher> MatchesRegex(\n    const internal::RE* regex) {\n  return MakePolymorphicMatcher(internal::MatchesRegexMatcher(regex, true));\n}\ntemplate <typename T = std::string>\nPolymorphicMatcher<internal::MatchesRegexMatcher> MatchesRegex(\n    const internal::StringLike<T>& regex) {\n  return MatchesRegex(new internal::RE(std::string(regex)));\n}\n\n// Matches a string that contains regular expression 'regex'.\n// The matcher takes ownership of 'regex'.\ninline PolymorphicMatcher<internal::MatchesRegexMatcher> ContainsRegex(\n    const internal::RE* regex) {\n  return MakePolymorphicMatcher(internal::MatchesRegexMatcher(regex, false));\n}\ntemplate <typename T = std::string>\nPolymorphicMatcher<internal::MatchesRegexMatcher> ContainsRegex(\n    const internal::StringLike<T>& regex) {\n  return ContainsRegex(new internal::RE(std::string(regex)));\n}\n\n// Creates a polymorphic matcher that matches anything equal to x.\n// Note: if the parameter of Eq() were declared as const T&, Eq(\"foo\")\n// wouldn't compile.\ntemplate <typename T>\ninline internal::EqMatcher<T> Eq(T x) { return internal::EqMatcher<T>(x); }\n\n// Constructs a Matcher<T> from a 'value' of type T.  The constructed\n// matcher matches any value that's equal to 'value'.\ntemplate <typename T>\nMatcher<T>::Matcher(T value) { *this = Eq(value); }\n\n// Creates a monomorphic matcher that matches anything with type Lhs\n// and equal to rhs.  A user may need to use this instead of Eq(...)\n// in order to resolve an overloading ambiguity.\n//\n// TypedEq<T>(x) is just a convenient short-hand for Matcher<T>(Eq(x))\n// or Matcher<T>(x), but more readable than the latter.\n//\n// We could define similar monomorphic matchers for other comparison\n// operations (e.g. TypedLt, TypedGe, and etc), but decided not to do\n// it yet as those are used much less than Eq() in practice.  A user\n// can always write Matcher<T>(Lt(5)) to be explicit about the type,\n// for example.\ntemplate <typename Lhs, typename Rhs>\ninline Matcher<Lhs> TypedEq(const Rhs& rhs) { return Eq(rhs); }\n\n// Creates a polymorphic matcher that matches anything >= x.\ntemplate <typename Rhs>\ninline internal::GeMatcher<Rhs> Ge(Rhs x) {\n  return internal::GeMatcher<Rhs>(x);\n}\n\n// Creates a polymorphic matcher that matches anything > x.\ntemplate <typename Rhs>\ninline internal::GtMatcher<Rhs> Gt(Rhs x) {\n  return internal::GtMatcher<Rhs>(x);\n}\n\n// Creates a polymorphic matcher that matches anything <= x.\ntemplate <typename Rhs>\ninline internal::LeMatcher<Rhs> Le(Rhs x) {\n  return internal::LeMatcher<Rhs>(x);\n}\n\n// Creates a polymorphic matcher that matches anything < x.\ntemplate <typename Rhs>\ninline internal::LtMatcher<Rhs> Lt(Rhs x) {\n  return internal::LtMatcher<Rhs>(x);\n}\n\n// Creates a polymorphic matcher that matches anything != x.\ntemplate <typename Rhs>\ninline internal::NeMatcher<Rhs> Ne(Rhs x) {\n  return internal::NeMatcher<Rhs>(x);\n}\n}  // namespace testing\n\nGTEST_DISABLE_MSC_WARNINGS_POP_()  //  4251 5046\n\n#endif  // GOOGLETEST_INCLUDE_GTEST_GTEST_MATCHERS_H_\n"
  },
  {
    "path": "test/gtest/include/gtest/gtest-message.h",
    "content": "// Copyright 2005, Google Inc.\n// All rights reserved.\n//\n// Redistribution and use in source and binary forms, with or without\n// modification, are permitted provided that the following conditions are\n// met:\n//\n//     * Redistributions of source code must retain the above copyright\n// notice, this list of conditions and the following disclaimer.\n//     * Redistributions in binary form must reproduce the above\n// copyright notice, this list of conditions and the following disclaimer\n// in the documentation and/or other materials provided with the\n// distribution.\n//     * Neither the name of Google Inc. nor the names of its\n// contributors may be used to endorse or promote products derived from\n// this software without specific prior written permission.\n//\n// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n// \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n//\n// The Google C++ Testing and Mocking Framework (Google Test)\n//\n// This header file defines the Message class.\n//\n// IMPORTANT NOTE: Due to limitation of the C++ language, we have to\n// leave some internal implementation details in this header file.\n// They are clearly marked by comments like this:\n//\n//   // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM.\n//\n// Such code is NOT meant to be used by a user directly, and is subject\n// to CHANGE WITHOUT NOTICE.  Therefore DO NOT DEPEND ON IT in a user\n// program!\n\n// GOOGLETEST_CM0001 DO NOT DELETE\n\n#ifndef GOOGLETEST_INCLUDE_GTEST_GTEST_MESSAGE_H_\n#define GOOGLETEST_INCLUDE_GTEST_GTEST_MESSAGE_H_\n\n#include <limits>\n#include <memory>\n#include <sstream>\n\n#include \"gtest/internal/gtest-port.h\"\n\nGTEST_DISABLE_MSC_WARNINGS_PUSH_(4251 \\\n/* class A needs to have dll-interface to be used by clients of class B */)\n\n// Ensures that there is at least one operator<< in the global namespace.\n// See Message& operator<<(...) below for why.\nvoid operator<<(const testing::internal::Secret&, int);\n\nnamespace testing {\n\n// The Message class works like an ostream repeater.\n//\n// Typical usage:\n//\n//   1. You stream a bunch of values to a Message object.\n//      It will remember the text in a stringstream.\n//   2. Then you stream the Message object to an ostream.\n//      This causes the text in the Message to be streamed\n//      to the ostream.\n//\n// For example;\n//\n//   testing::Message foo;\n//   foo << 1 << \" != \" << 2;\n//   std::cout << foo;\n//\n// will print \"1 != 2\".\n//\n// Message is not intended to be inherited from.  In particular, its\n// destructor is not virtual.\n//\n// Note that stringstream behaves differently in gcc and in MSVC.  You\n// can stream a NULL char pointer to it in the former, but not in the\n// latter (it causes an access violation if you do).  The Message\n// class hides this difference by treating a NULL char pointer as\n// \"(null)\".\nclass GTEST_API_ Message {\n private:\n  // The type of basic IO manipulators (endl, ends, and flush) for\n  // narrow streams.\n  typedef std::ostream& (*BasicNarrowIoManip)(std::ostream&);\n\n public:\n  // Constructs an empty Message.\n  Message();\n\n  // Copy constructor.\n  Message(const Message& msg) : ss_(new ::std::stringstream) {  // NOLINT\n    *ss_ << msg.GetString();\n  }\n\n  // Constructs a Message from a C-string.\n  explicit Message(const char* str) : ss_(new ::std::stringstream) {\n    *ss_ << str;\n  }\n\n  // Streams a non-pointer value to this object.\n  template <typename T>\n  inline Message& operator <<(const T& val) {\n    // Some libraries overload << for STL containers.  These\n    // overloads are defined in the global namespace instead of ::std.\n    //\n    // C++'s symbol lookup rule (i.e. Koenig lookup) says that these\n    // overloads are visible in either the std namespace or the global\n    // namespace, but not other namespaces, including the testing\n    // namespace which Google Test's Message class is in.\n    //\n    // To allow STL containers (and other types that has a << operator\n    // defined in the global namespace) to be used in Google Test\n    // assertions, testing::Message must access the custom << operator\n    // from the global namespace.  With this using declaration,\n    // overloads of << defined in the global namespace and those\n    // visible via Koenig lookup are both exposed in this function.\n    using ::operator <<;\n    *ss_ << val;\n    return *this;\n  }\n\n  // Streams a pointer value to this object.\n  //\n  // This function is an overload of the previous one.  When you\n  // stream a pointer to a Message, this definition will be used as it\n  // is more specialized.  (The C++ Standard, section\n  // [temp.func.order].)  If you stream a non-pointer, then the\n  // previous definition will be used.\n  //\n  // The reason for this overload is that streaming a NULL pointer to\n  // ostream is undefined behavior.  Depending on the compiler, you\n  // may get \"0\", \"(nil)\", \"(null)\", or an access violation.  To\n  // ensure consistent result across compilers, we always treat NULL\n  // as \"(null)\".\n  template <typename T>\n  inline Message& operator <<(T* const& pointer) {  // NOLINT\n    if (pointer == nullptr) {\n      *ss_ << \"(null)\";\n    } else {\n      *ss_ << pointer;\n    }\n    return *this;\n  }\n\n  // Since the basic IO manipulators are overloaded for both narrow\n  // and wide streams, we have to provide this specialized definition\n  // of operator <<, even though its body is the same as the\n  // templatized version above.  Without this definition, streaming\n  // endl or other basic IO manipulators to Message will confuse the\n  // compiler.\n  Message& operator <<(BasicNarrowIoManip val) {\n    *ss_ << val;\n    return *this;\n  }\n\n  // Instead of 1/0, we want to see true/false for bool values.\n  Message& operator <<(bool b) {\n    return *this << (b ? \"true\" : \"false\");\n  }\n\n  // These two overloads allow streaming a wide C string to a Message\n  // using the UTF-8 encoding.\n  Message& operator <<(const wchar_t* wide_c_str);\n  Message& operator <<(wchar_t* wide_c_str);\n\n#if GTEST_HAS_STD_WSTRING\n  // Converts the given wide string to a narrow string using the UTF-8\n  // encoding, and streams the result to this Message object.\n  Message& operator <<(const ::std::wstring& wstr);\n#endif  // GTEST_HAS_STD_WSTRING\n\n  // Gets the text streamed to this object so far as an std::string.\n  // Each '\\0' character in the buffer is replaced with \"\\\\0\".\n  //\n  // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM.\n  std::string GetString() const;\n\n private:\n  // We'll hold the text streamed to this object here.\n  const std::unique_ptr< ::std::stringstream> ss_;\n\n  // We declare (but don't implement) this to prevent the compiler\n  // from implementing the assignment operator.\n  void operator=(const Message&);\n};\n\n// Streams a Message to an ostream.\ninline std::ostream& operator <<(std::ostream& os, const Message& sb) {\n  return os << sb.GetString();\n}\n\nnamespace internal {\n\n// Converts a streamable value to an std::string.  A NULL pointer is\n// converted to \"(null)\".  When the input value is a ::string,\n// ::std::string, ::wstring, or ::std::wstring object, each NUL\n// character in it is replaced with \"\\\\0\".\ntemplate <typename T>\nstd::string StreamableToString(const T& streamable) {\n  return (Message() << streamable).GetString();\n}\n\n}  // namespace internal\n}  // namespace testing\n\nGTEST_DISABLE_MSC_WARNINGS_POP_()  //  4251\n\n#endif  // GOOGLETEST_INCLUDE_GTEST_GTEST_MESSAGE_H_\n"
  },
  {
    "path": "test/gtest/include/gtest/gtest-param-test.h",
    "content": "// Copyright 2008, Google Inc.\n// All rights reserved.\n//\n// Redistribution and use in source and binary forms, with or without\n// modification, are permitted provided that the following conditions are\n// met:\n//\n//     * Redistributions of source code must retain the above copyright\n// notice, this list of conditions and the following disclaimer.\n//     * Redistributions in binary form must reproduce the above\n// copyright notice, this list of conditions and the following disclaimer\n// in the documentation and/or other materials provided with the\n// distribution.\n//     * Neither the name of Google Inc. nor the names of its\n// contributors may be used to endorse or promote products derived from\n// this software without specific prior written permission.\n//\n// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n// \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n//\n// Macros and functions for implementing parameterized tests\n// in Google C++ Testing and Mocking Framework (Google Test)\n//\n// GOOGLETEST_CM0001 DO NOT DELETE\n#ifndef GOOGLETEST_INCLUDE_GTEST_GTEST_PARAM_TEST_H_\n#define GOOGLETEST_INCLUDE_GTEST_GTEST_PARAM_TEST_H_\n\n// Value-parameterized tests allow you to test your code with different\n// parameters without writing multiple copies of the same test.\n//\n// Here is how you use value-parameterized tests:\n\n#if 0\n\n// To write value-parameterized tests, first you should define a fixture\n// class. It is usually derived from testing::TestWithParam<T> (see below for\n// another inheritance scheme that's sometimes useful in more complicated\n// class hierarchies), where the type of your parameter values.\n// TestWithParam<T> is itself derived from testing::Test. T can be any\n// copyable type. If it's a raw pointer, you are responsible for managing the\n// lifespan of the pointed values.\n\nclass FooTest : public ::testing::TestWithParam<const char*> {\n  // You can implement all the usual class fixture members here.\n};\n\n// Then, use the TEST_P macro to define as many parameterized tests\n// for this fixture as you want. The _P suffix is for \"parameterized\"\n// or \"pattern\", whichever you prefer to think.\n\nTEST_P(FooTest, DoesBlah) {\n  // Inside a test, access the test parameter with the GetParam() method\n  // of the TestWithParam<T> class:\n  EXPECT_TRUE(foo.Blah(GetParam()));\n  ...\n}\n\nTEST_P(FooTest, HasBlahBlah) {\n  ...\n}\n\n// Finally, you can use INSTANTIATE_TEST_SUITE_P to instantiate the test\n// case with any set of parameters you want. Google Test defines a number\n// of functions for generating test parameters. They return what we call\n// (surprise!) parameter generators. Here is a summary of them, which\n// are all in the testing namespace:\n//\n//\n//  Range(begin, end [, step]) - Yields values {begin, begin+step,\n//                               begin+step+step, ...}. The values do not\n//                               include end. step defaults to 1.\n//  Values(v1, v2, ..., vN)    - Yields values {v1, v2, ..., vN}.\n//  ValuesIn(container)        - Yields values from a C-style array, an STL\n//  ValuesIn(begin,end)          container, or an iterator range [begin, end).\n//  Bool()                     - Yields sequence {false, true}.\n//  Combine(g1, g2, ..., gN)   - Yields all combinations (the Cartesian product\n//                               for the math savvy) of the values generated\n//                               by the N generators.\n//\n// For more details, see comments at the definitions of these functions below\n// in this file.\n//\n// The following statement will instantiate tests from the FooTest test suite\n// each with parameter values \"meeny\", \"miny\", and \"moe\".\n\nINSTANTIATE_TEST_SUITE_P(InstantiationName,\n                         FooTest,\n                         Values(\"meeny\", \"miny\", \"moe\"));\n\n// To distinguish different instances of the pattern, (yes, you\n// can instantiate it more than once) the first argument to the\n// INSTANTIATE_TEST_SUITE_P macro is a prefix that will be added to the\n// actual test suite name. Remember to pick unique prefixes for different\n// instantiations. The tests from the instantiation above will have\n// these names:\n//\n//    * InstantiationName/FooTest.DoesBlah/0 for \"meeny\"\n//    * InstantiationName/FooTest.DoesBlah/1 for \"miny\"\n//    * InstantiationName/FooTest.DoesBlah/2 for \"moe\"\n//    * InstantiationName/FooTest.HasBlahBlah/0 for \"meeny\"\n//    * InstantiationName/FooTest.HasBlahBlah/1 for \"miny\"\n//    * InstantiationName/FooTest.HasBlahBlah/2 for \"moe\"\n//\n// You can use these names in --gtest_filter.\n//\n// This statement will instantiate all tests from FooTest again, each\n// with parameter values \"cat\" and \"dog\":\n\nconst char* pets[] = {\"cat\", \"dog\"};\nINSTANTIATE_TEST_SUITE_P(AnotherInstantiationName, FooTest, ValuesIn(pets));\n\n// The tests from the instantiation above will have these names:\n//\n//    * AnotherInstantiationName/FooTest.DoesBlah/0 for \"cat\"\n//    * AnotherInstantiationName/FooTest.DoesBlah/1 for \"dog\"\n//    * AnotherInstantiationName/FooTest.HasBlahBlah/0 for \"cat\"\n//    * AnotherInstantiationName/FooTest.HasBlahBlah/1 for \"dog\"\n//\n// Please note that INSTANTIATE_TEST_SUITE_P will instantiate all tests\n// in the given test suite, whether their definitions come before or\n// AFTER the INSTANTIATE_TEST_SUITE_P statement.\n//\n// Please also note that generator expressions (including parameters to the\n// generators) are evaluated in InitGoogleTest(), after main() has started.\n// This allows the user on one hand, to adjust generator parameters in order\n// to dynamically determine a set of tests to run and on the other hand,\n// give the user a chance to inspect the generated tests with Google Test\n// reflection API before RUN_ALL_TESTS() is executed.\n//\n// You can see samples/sample7_unittest.cc and samples/sample8_unittest.cc\n// for more examples.\n//\n// In the future, we plan to publish the API for defining new parameter\n// generators. But for now this interface remains part of the internal\n// implementation and is subject to change.\n//\n//\n// A parameterized test fixture must be derived from testing::Test and from\n// testing::WithParamInterface<T>, where T is the type of the parameter\n// values. Inheriting from TestWithParam<T> satisfies that requirement because\n// TestWithParam<T> inherits from both Test and WithParamInterface. In more\n// complicated hierarchies, however, it is occasionally useful to inherit\n// separately from Test and WithParamInterface. For example:\n\nclass BaseTest : public ::testing::Test {\n  // You can inherit all the usual members for a non-parameterized test\n  // fixture here.\n};\n\nclass DerivedTest : public BaseTest, public ::testing::WithParamInterface<int> {\n  // The usual test fixture members go here too.\n};\n\nTEST_F(BaseTest, HasFoo) {\n  // This is an ordinary non-parameterized test.\n}\n\nTEST_P(DerivedTest, DoesBlah) {\n  // GetParam works just the same here as if you inherit from TestWithParam.\n  EXPECT_TRUE(foo.Blah(GetParam()));\n}\n\n#endif  // 0\n\n#include <iterator>\n#include <utility>\n\n#include \"gtest/internal/gtest-internal.h\"\n#include \"gtest/internal/gtest-param-util.h\"\n#include \"gtest/internal/gtest-port.h\"\n\nnamespace testing {\n\n// Functions producing parameter generators.\n//\n// Google Test uses these generators to produce parameters for value-\n// parameterized tests. When a parameterized test suite is instantiated\n// with a particular generator, Google Test creates and runs tests\n// for each element in the sequence produced by the generator.\n//\n// In the following sample, tests from test suite FooTest are instantiated\n// each three times with parameter values 3, 5, and 8:\n//\n// class FooTest : public TestWithParam<int> { ... };\n//\n// TEST_P(FooTest, TestThis) {\n// }\n// TEST_P(FooTest, TestThat) {\n// }\n// INSTANTIATE_TEST_SUITE_P(TestSequence, FooTest, Values(3, 5, 8));\n//\n\n// Range() returns generators providing sequences of values in a range.\n//\n// Synopsis:\n// Range(start, end)\n//   - returns a generator producing a sequence of values {start, start+1,\n//     start+2, ..., }.\n// Range(start, end, step)\n//   - returns a generator producing a sequence of values {start, start+step,\n//     start+step+step, ..., }.\n// Notes:\n//   * The generated sequences never include end. For example, Range(1, 5)\n//     returns a generator producing a sequence {1, 2, 3, 4}. Range(1, 9, 2)\n//     returns a generator producing {1, 3, 5, 7}.\n//   * start and end must have the same type. That type may be any integral or\n//     floating-point type or a user defined type satisfying these conditions:\n//     * It must be assignable (have operator=() defined).\n//     * It must have operator+() (operator+(int-compatible type) for\n//       two-operand version).\n//     * It must have operator<() defined.\n//     Elements in the resulting sequences will also have that type.\n//   * Condition start < end must be satisfied in order for resulting sequences\n//     to contain any elements.\n//\ntemplate <typename T, typename IncrementT>\ninternal::ParamGenerator<T> Range(T start, T end, IncrementT step) {\n  return internal::ParamGenerator<T>(\n      new internal::RangeGenerator<T, IncrementT>(start, end, step));\n}\n\ntemplate <typename T>\ninternal::ParamGenerator<T> Range(T start, T end) {\n  return Range(start, end, 1);\n}\n\n// ValuesIn() function allows generation of tests with parameters coming from\n// a container.\n//\n// Synopsis:\n// ValuesIn(const T (&array)[N])\n//   - returns a generator producing sequences with elements from\n//     a C-style array.\n// ValuesIn(const Container& container)\n//   - returns a generator producing sequences with elements from\n//     an STL-style container.\n// ValuesIn(Iterator begin, Iterator end)\n//   - returns a generator producing sequences with elements from\n//     a range [begin, end) defined by a pair of STL-style iterators. These\n//     iterators can also be plain C pointers.\n//\n// Please note that ValuesIn copies the values from the containers\n// passed in and keeps them to generate tests in RUN_ALL_TESTS().\n//\n// Examples:\n//\n// This instantiates tests from test suite StringTest\n// each with C-string values of \"foo\", \"bar\", and \"baz\":\n//\n// const char* strings[] = {\"foo\", \"bar\", \"baz\"};\n// INSTANTIATE_TEST_SUITE_P(StringSequence, StringTest, ValuesIn(strings));\n//\n// This instantiates tests from test suite StlStringTest\n// each with STL strings with values \"a\" and \"b\":\n//\n// ::std::vector< ::std::string> GetParameterStrings() {\n//   ::std::vector< ::std::string> v;\n//   v.push_back(\"a\");\n//   v.push_back(\"b\");\n//   return v;\n// }\n//\n// INSTANTIATE_TEST_SUITE_P(CharSequence,\n//                          StlStringTest,\n//                          ValuesIn(GetParameterStrings()));\n//\n//\n// This will also instantiate tests from CharTest\n// each with parameter values 'a' and 'b':\n//\n// ::std::list<char> GetParameterChars() {\n//   ::std::list<char> list;\n//   list.push_back('a');\n//   list.push_back('b');\n//   return list;\n// }\n// ::std::list<char> l = GetParameterChars();\n// INSTANTIATE_TEST_SUITE_P(CharSequence2,\n//                          CharTest,\n//                          ValuesIn(l.begin(), l.end()));\n//\ntemplate <typename ForwardIterator>\ninternal::ParamGenerator<\n    typename std::iterator_traits<ForwardIterator>::value_type>\nValuesIn(ForwardIterator begin, ForwardIterator end) {\n  typedef typename std::iterator_traits<ForwardIterator>::value_type ParamType;\n  return internal::ParamGenerator<ParamType>(\n      new internal::ValuesInIteratorRangeGenerator<ParamType>(begin, end));\n}\n\ntemplate <typename T, size_t N>\ninternal::ParamGenerator<T> ValuesIn(const T (&array)[N]) {\n  return ValuesIn(array, array + N);\n}\n\ntemplate <class Container>\ninternal::ParamGenerator<typename Container::value_type> ValuesIn(\n    const Container& container) {\n  return ValuesIn(container.begin(), container.end());\n}\n\n// Values() allows generating tests from explicitly specified list of\n// parameters.\n//\n// Synopsis:\n// Values(T v1, T v2, ..., T vN)\n//   - returns a generator producing sequences with elements v1, v2, ..., vN.\n//\n// For example, this instantiates tests from test suite BarTest each\n// with values \"one\", \"two\", and \"three\":\n//\n// INSTANTIATE_TEST_SUITE_P(NumSequence,\n//                          BarTest,\n//                          Values(\"one\", \"two\", \"three\"));\n//\n// This instantiates tests from test suite BazTest each with values 1, 2, 3.5.\n// The exact type of values will depend on the type of parameter in BazTest.\n//\n// INSTANTIATE_TEST_SUITE_P(FloatingNumbers, BazTest, Values(1, 2, 3.5));\n//\n//\ntemplate <typename... T>\ninternal::ValueArray<T...> Values(T... v) {\n  return internal::ValueArray<T...>(std::move(v)...);\n}\n\n// Bool() allows generating tests with parameters in a set of (false, true).\n//\n// Synopsis:\n// Bool()\n//   - returns a generator producing sequences with elements {false, true}.\n//\n// It is useful when testing code that depends on Boolean flags. Combinations\n// of multiple flags can be tested when several Bool()'s are combined using\n// Combine() function.\n//\n// In the following example all tests in the test suite FlagDependentTest\n// will be instantiated twice with parameters false and true.\n//\n// class FlagDependentTest : public testing::TestWithParam<bool> {\n//   virtual void SetUp() {\n//     external_flag = GetParam();\n//   }\n// }\n// INSTANTIATE_TEST_SUITE_P(BoolSequence, FlagDependentTest, Bool());\n//\ninline internal::ParamGenerator<bool> Bool() {\n  return Values(false, true);\n}\n\n// Combine() allows the user to combine two or more sequences to produce\n// values of a Cartesian product of those sequences' elements.\n//\n// Synopsis:\n// Combine(gen1, gen2, ..., genN)\n//   - returns a generator producing sequences with elements coming from\n//     the Cartesian product of elements from the sequences generated by\n//     gen1, gen2, ..., genN. The sequence elements will have a type of\n//     std::tuple<T1, T2, ..., TN> where T1, T2, ..., TN are the types\n//     of elements from sequences produces by gen1, gen2, ..., genN.\n//\n// Example:\n//\n// This will instantiate tests in test suite AnimalTest each one with\n// the parameter values tuple(\"cat\", BLACK), tuple(\"cat\", WHITE),\n// tuple(\"dog\", BLACK), and tuple(\"dog\", WHITE):\n//\n// enum Color { BLACK, GRAY, WHITE };\n// class AnimalTest\n//     : public testing::TestWithParam<std::tuple<const char*, Color> > {...};\n//\n// TEST_P(AnimalTest, AnimalLooksNice) {...}\n//\n// INSTANTIATE_TEST_SUITE_P(AnimalVariations, AnimalTest,\n//                          Combine(Values(\"cat\", \"dog\"),\n//                                  Values(BLACK, WHITE)));\n//\n// This will instantiate tests in FlagDependentTest with all variations of two\n// Boolean flags:\n//\n// class FlagDependentTest\n//     : public testing::TestWithParam<std::tuple<bool, bool> > {\n//   virtual void SetUp() {\n//     // Assigns external_flag_1 and external_flag_2 values from the tuple.\n//     std::tie(external_flag_1, external_flag_2) = GetParam();\n//   }\n// };\n//\n// TEST_P(FlagDependentTest, TestFeature1) {\n//   // Test your code using external_flag_1 and external_flag_2 here.\n// }\n// INSTANTIATE_TEST_SUITE_P(TwoBoolSequence, FlagDependentTest,\n//                          Combine(Bool(), Bool()));\n//\ntemplate <typename... Generator>\ninternal::CartesianProductHolder<Generator...> Combine(const Generator&... g) {\n  return internal::CartesianProductHolder<Generator...>(g...);\n}\n\n#define TEST_P(test_suite_name, test_name)                                     \\\n  class GTEST_TEST_CLASS_NAME_(test_suite_name, test_name)                     \\\n      : public test_suite_name {                                               \\\n   public:                                                                     \\\n    GTEST_TEST_CLASS_NAME_(test_suite_name, test_name)() {}                    \\\n    void TestBody() override;                                                  \\\n                                                                               \\\n   private:                                                                    \\\n    static int AddToRegistry() {                                               \\\n      ::testing::UnitTest::GetInstance()                                       \\\n          ->parameterized_test_registry()                                      \\\n          .GetTestSuitePatternHolder<test_suite_name>(                         \\\n              GTEST_STRINGIFY_(test_suite_name),                               \\\n              ::testing::internal::CodeLocation(__FILE__, __LINE__))           \\\n          ->AddTestPattern(                                                    \\\n              GTEST_STRINGIFY_(test_suite_name), GTEST_STRINGIFY_(test_name),  \\\n              new ::testing::internal::TestMetaFactory<GTEST_TEST_CLASS_NAME_( \\\n                  test_suite_name, test_name)>(),                              \\\n              ::testing::internal::CodeLocation(__FILE__, __LINE__));          \\\n      return 0;                                                                \\\n    }                                                                          \\\n    static int gtest_registering_dummy_ GTEST_ATTRIBUTE_UNUSED_;               \\\n    GTEST_DISALLOW_COPY_AND_ASSIGN_(GTEST_TEST_CLASS_NAME_(test_suite_name,    \\\n                                                           test_name));        \\\n  };                                                                           \\\n  int GTEST_TEST_CLASS_NAME_(test_suite_name,                                  \\\n                             test_name)::gtest_registering_dummy_ =            \\\n      GTEST_TEST_CLASS_NAME_(test_suite_name, test_name)::AddToRegistry();     \\\n  void GTEST_TEST_CLASS_NAME_(test_suite_name, test_name)::TestBody()\n\n// The last argument to INSTANTIATE_TEST_SUITE_P allows the user to specify\n// generator and an optional function or functor that generates custom test name\n// suffixes based on the test parameters. Such a function or functor should\n// accept one argument of type testing::TestParamInfo<class ParamType>, and\n// return std::string.\n//\n// testing::PrintToStringParamName is a builtin test suffix generator that\n// returns the value of testing::PrintToString(GetParam()).\n//\n// Note: test names must be non-empty, unique, and may only contain ASCII\n// alphanumeric characters or underscore. Because PrintToString adds quotes\n// to std::string and C strings, it won't work for these types.\n\n#define GTEST_EXPAND_(arg) arg\n#define GTEST_GET_FIRST_(first, ...) first\n#define GTEST_GET_SECOND_(first, second, ...) second\n\n#define INSTANTIATE_TEST_SUITE_P(prefix, test_suite_name, ...)                \\\n  static ::testing::internal::ParamGenerator<test_suite_name::ParamType>      \\\n      gtest_##prefix##test_suite_name##_EvalGenerator_() {                    \\\n    return GTEST_EXPAND_(GTEST_GET_FIRST_(__VA_ARGS__, DUMMY_PARAM_));        \\\n  }                                                                           \\\n  static ::std::string gtest_##prefix##test_suite_name##_EvalGenerateName_(   \\\n      const ::testing::TestParamInfo<test_suite_name::ParamType>& info) {     \\\n    if (::testing::internal::AlwaysFalse()) {                                 \\\n      ::testing::internal::TestNotEmpty(GTEST_EXPAND_(GTEST_GET_SECOND_(      \\\n          __VA_ARGS__,                                                        \\\n          ::testing::internal::DefaultParamName<test_suite_name::ParamType>,  \\\n          DUMMY_PARAM_)));                                                    \\\n      auto t = std::make_tuple(__VA_ARGS__);                                  \\\n      static_assert(std::tuple_size<decltype(t)>::value <= 2,                 \\\n                    \"Too Many Args!\");                                        \\\n    }                                                                         \\\n    return ((GTEST_EXPAND_(GTEST_GET_SECOND_(                                 \\\n        __VA_ARGS__,                                                          \\\n        ::testing::internal::DefaultParamName<test_suite_name::ParamType>,    \\\n        DUMMY_PARAM_))))(info);                                               \\\n  }                                                                           \\\n  static int gtest_##prefix##test_suite_name##_dummy_                         \\\n      GTEST_ATTRIBUTE_UNUSED_ =                                               \\\n          ::testing::UnitTest::GetInstance()                                  \\\n              ->parameterized_test_registry()                                 \\\n              .GetTestSuitePatternHolder<test_suite_name>(                    \\\n                  GTEST_STRINGIFY_(test_suite_name),                          \\\n                  ::testing::internal::CodeLocation(__FILE__, __LINE__))      \\\n              ->AddTestSuiteInstantiation(                                    \\\n                  GTEST_STRINGIFY_(prefix),                                   \\\n                  &gtest_##prefix##test_suite_name##_EvalGenerator_,          \\\n                  &gtest_##prefix##test_suite_name##_EvalGenerateName_,       \\\n                  __FILE__, __LINE__)\n\n\n// Allow Marking a Parameterized test class as not needing to be instantiated.\n#define GTEST_ALLOW_UNINSTANTIATED_PARAMETERIZED_TEST(T)                   \\\n  namespace gtest_do_not_use_outside_namespace_scope {}                   \\\n  static const ::testing::internal::MarkAsIgnored gtest_allow_ignore_##T( \\\n      GTEST_STRINGIFY_(T))\n\n// Legacy API is deprecated but still available\n#ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_\n#define INSTANTIATE_TEST_CASE_P                                            \\\n  static_assert(::testing::internal::InstantiateTestCase_P_IsDeprecated(), \\\n                \"\");                                                       \\\n  INSTANTIATE_TEST_SUITE_P\n#endif  // GTEST_REMOVE_LEGACY_TEST_CASEAPI_\n\n}  // namespace testing\n\n#endif  // GOOGLETEST_INCLUDE_GTEST_GTEST_PARAM_TEST_H_\n"
  },
  {
    "path": "test/gtest/include/gtest/gtest-param-test.h.pump",
    "content": "$$ -*- mode: c++; -*-\n$var n = 50  $$ Maximum length of Values arguments we want to support.\n$var maxtuple = 10  $$ Maximum number of Combine arguments we want to support.\n// Copyright 2008, Google Inc.\n// All rights reserved.\n//\n// Redistribution and use in source and binary forms, with or without\n// modification, are permitted provided that the following conditions are\n// met:\n//\n//     * Redistributions of source code must retain the above copyright\n// notice, this list of conditions and the following disclaimer.\n//     * Redistributions in binary form must reproduce the above\n// copyright notice, this list of conditions and the following disclaimer\n// in the documentation and/or other materials provided with the\n// distribution.\n//     * Neither the name of Google Inc. nor the names of its\n// contributors may be used to endorse or promote products derived from\n// this software without specific prior written permission.\n//\n// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n// \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n//\n// Authors: vladl@google.com (Vlad Losev)\n//\n// Macros and functions for implementing parameterized tests\n// in Google C++ Testing Framework (Google Test)\n//\n// This file is generated by a SCRIPT.  DO NOT EDIT BY HAND!\n//\n#ifndef GTEST_INCLUDE_GTEST_GTEST_PARAM_TEST_H_\n#define GTEST_INCLUDE_GTEST_GTEST_PARAM_TEST_H_\n\n\n// Value-parameterized tests allow you to test your code with different\n// parameters without writing multiple copies of the same test.\n//\n// Here is how you use value-parameterized tests:\n\n#if 0\n\n// To write value-parameterized tests, first you should define a fixture\n// class. It is usually derived from testing::TestWithParam<T> (see below for\n// another inheritance scheme that's sometimes useful in more complicated\n// class hierarchies), where the type of your parameter values.\n// TestWithParam<T> is itself derived from testing::Test. T can be any\n// copyable type. If it's a raw pointer, you are responsible for managing the\n// lifespan of the pointed values.\n\nclass FooTest : public ::testing::TestWithParam<const char*> {\n  // You can implement all the usual class fixture members here.\n};\n\n// Then, use the TEST_P macro to define as many parameterized tests\n// for this fixture as you want. The _P suffix is for \"parameterized\"\n// or \"pattern\", whichever you prefer to think.\n\nTEST_P(FooTest, DoesBlah) {\n  // Inside a test, access the test parameter with the GetParam() method\n  // of the TestWithParam<T> class:\n  EXPECT_TRUE(foo.Blah(GetParam()));\n  ...\n}\n\nTEST_P(FooTest, HasBlahBlah) {\n  ...\n}\n\n// Finally, you can use INSTANTIATE_TEST_CASE_P to instantiate the test\n// case with any set of parameters you want. Google Test defines a number\n// of functions for generating test parameters. They return what we call\n// (surprise!) parameter generators. Here is a  summary of them, which\n// are all in the testing namespace:\n//\n//\n//  Range(begin, end [, step]) - Yields values {begin, begin+step,\n//                               begin+step+step, ...}. The values do not\n//                               include end. step defaults to 1.\n//  Values(v1, v2, ..., vN)    - Yields values {v1, v2, ..., vN}.\n//  ValuesIn(container)        - Yields values from a C-style array, an STL\n//  ValuesIn(begin,end)          container, or an iterator range [begin, end).\n//  Bool()                     - Yields sequence {false, true}.\n//  Combine(g1, g2, ..., gN)   - Yields all combinations (the Cartesian product\n//                               for the math savvy) of the values generated\n//                               by the N generators.\n//\n// For more details, see comments at the definitions of these functions below\n// in this file.\n//\n// The following statement will instantiate tests from the FooTest test case\n// each with parameter values \"meeny\", \"miny\", and \"moe\".\n\nINSTANTIATE_TEST_CASE_P(InstantiationName,\n                        FooTest,\n                        Values(\"meeny\", \"miny\", \"moe\"));\n\n// To distinguish different instances of the pattern, (yes, you\n// can instantiate it more then once) the first argument to the\n// INSTANTIATE_TEST_CASE_P macro is a prefix that will be added to the\n// actual test case name. Remember to pick unique prefixes for different\n// instantiations. The tests from the instantiation above will have\n// these names:\n//\n//    * InstantiationName/FooTest.DoesBlah/0 for \"meeny\"\n//    * InstantiationName/FooTest.DoesBlah/1 for \"miny\"\n//    * InstantiationName/FooTest.DoesBlah/2 for \"moe\"\n//    * InstantiationName/FooTest.HasBlahBlah/0 for \"meeny\"\n//    * InstantiationName/FooTest.HasBlahBlah/1 for \"miny\"\n//    * InstantiationName/FooTest.HasBlahBlah/2 for \"moe\"\n//\n// You can use these names in --gtest_filter.\n//\n// This statement will instantiate all tests from FooTest again, each\n// with parameter values \"cat\" and \"dog\":\n\nconst char* pets[] = {\"cat\", \"dog\"};\nINSTANTIATE_TEST_CASE_P(AnotherInstantiationName, FooTest, ValuesIn(pets));\n\n// The tests from the instantiation above will have these names:\n//\n//    * AnotherInstantiationName/FooTest.DoesBlah/0 for \"cat\"\n//    * AnotherInstantiationName/FooTest.DoesBlah/1 for \"dog\"\n//    * AnotherInstantiationName/FooTest.HasBlahBlah/0 for \"cat\"\n//    * AnotherInstantiationName/FooTest.HasBlahBlah/1 for \"dog\"\n//\n// Please note that INSTANTIATE_TEST_CASE_P will instantiate all tests\n// in the given test case, whether their definitions come before or\n// AFTER the INSTANTIATE_TEST_CASE_P statement.\n//\n// Please also note that generator expressions (including parameters to the\n// generators) are evaluated in InitGoogleTest(), after main() has started.\n// This allows the user on one hand, to adjust generator parameters in order\n// to dynamically determine a set of tests to run and on the other hand,\n// give the user a chance to inspect the generated tests with Google Test\n// reflection API before RUN_ALL_TESTS() is executed.\n//\n// You can see samples/sample7_unittest.cc and samples/sample8_unittest.cc\n// for more examples.\n//\n// In the future, we plan to publish the API for defining new parameter\n// generators. But for now this interface remains part of the internal\n// implementation and is subject to change.\n//\n//\n// A parameterized test fixture must be derived from testing::Test and from\n// testing::WithParamInterface<T>, where T is the type of the parameter\n// values. Inheriting from TestWithParam<T> satisfies that requirement because\n// TestWithParam<T> inherits from both Test and WithParamInterface. In more\n// complicated hierarchies, however, it is occasionally useful to inherit\n// separately from Test and WithParamInterface. For example:\n\nclass BaseTest : public ::testing::Test {\n  // You can inherit all the usual members for a non-parameterized test\n  // fixture here.\n};\n\nclass DerivedTest : public BaseTest, public ::testing::WithParamInterface<int> {\n  // The usual test fixture members go here too.\n};\n\nTEST_F(BaseTest, HasFoo) {\n  // This is an ordinary non-parameterized test.\n}\n\nTEST_P(DerivedTest, DoesBlah) {\n  // GetParam works just the same here as if you inherit from TestWithParam.\n  EXPECT_TRUE(foo.Blah(GetParam()));\n}\n\n#endif  // 0\n\n#include \"gtest/internal/gtest-port.h\"\n\n#if !GTEST_OS_SYMBIAN\n# include <utility>\n#endif\n\n// scripts/fuse_gtest.py depends on gtest's own header being #included\n// *unconditionally*.  Therefore these #includes cannot be moved\n// inside #if GTEST_HAS_PARAM_TEST.\n#include \"gtest/internal/gtest-internal.h\"\n#include \"gtest/internal/gtest-param-util.h\"\n#include \"gtest/internal/gtest-param-util-generated.h\"\n\n#if GTEST_HAS_PARAM_TEST\n\nnamespace testing {\n\n// Functions producing parameter generators.\n//\n// Google Test uses these generators to produce parameters for value-\n// parameterized tests. When a parameterized test case is instantiated\n// with a particular generator, Google Test creates and runs tests\n// for each element in the sequence produced by the generator.\n//\n// In the following sample, tests from test case FooTest are instantiated\n// each three times with parameter values 3, 5, and 8:\n//\n// class FooTest : public TestWithParam<int> { ... };\n//\n// TEST_P(FooTest, TestThis) {\n// }\n// TEST_P(FooTest, TestThat) {\n// }\n// INSTANTIATE_TEST_CASE_P(TestSequence, FooTest, Values(3, 5, 8));\n//\n\n// Range() returns generators providing sequences of values in a range.\n//\n// Synopsis:\n// Range(start, end)\n//   - returns a generator producing a sequence of values {start, start+1,\n//     start+2, ..., }.\n// Range(start, end, step)\n//   - returns a generator producing a sequence of values {start, start+step,\n//     start+step+step, ..., }.\n// Notes:\n//   * The generated sequences never include end. For example, Range(1, 5)\n//     returns a generator producing a sequence {1, 2, 3, 4}. Range(1, 9, 2)\n//     returns a generator producing {1, 3, 5, 7}.\n//   * start and end must have the same type. That type may be any integral or\n//     floating-point type or a user defined type satisfying these conditions:\n//     * It must be assignable (have operator=() defined).\n//     * It must have operator+() (operator+(int-compatible type) for\n//       two-operand version).\n//     * It must have operator<() defined.\n//     Elements in the resulting sequences will also have that type.\n//   * Condition start < end must be satisfied in order for resulting sequences\n//     to contain any elements.\n//\ntemplate <typename T, typename IncrementT>\ninternal::ParamGenerator<T> Range(T start, T end, IncrementT step) {\n  return internal::ParamGenerator<T>(\n      new internal::RangeGenerator<T, IncrementT>(start, end, step));\n}\n\ntemplate <typename T>\ninternal::ParamGenerator<T> Range(T start, T end) {\n  return Range(start, end, 1);\n}\n\n// ValuesIn() function allows generation of tests with parameters coming from\n// a container.\n//\n// Synopsis:\n// ValuesIn(const T (&array)[N])\n//   - returns a generator producing sequences with elements from\n//     a C-style array.\n// ValuesIn(const Container& container)\n//   - returns a generator producing sequences with elements from\n//     an STL-style container.\n// ValuesIn(Iterator begin, Iterator end)\n//   - returns a generator producing sequences with elements from\n//     a range [begin, end) defined by a pair of STL-style iterators. These\n//     iterators can also be plain C pointers.\n//\n// Please note that ValuesIn copies the values from the containers\n// passed in and keeps them to generate tests in RUN_ALL_TESTS().\n//\n// Examples:\n//\n// This instantiates tests from test case StringTest\n// each with C-string values of \"foo\", \"bar\", and \"baz\":\n//\n// const char* strings[] = {\"foo\", \"bar\", \"baz\"};\n// INSTANTIATE_TEST_CASE_P(StringSequence, SrtingTest, ValuesIn(strings));\n//\n// This instantiates tests from test case StlStringTest\n// each with STL strings with values \"a\" and \"b\":\n//\n// ::std::vector< ::std::string> GetParameterStrings() {\n//   ::std::vector< ::std::string> v;\n//   v.push_back(\"a\");\n//   v.push_back(\"b\");\n//   return v;\n// }\n//\n// INSTANTIATE_TEST_CASE_P(CharSequence,\n//                         StlStringTest,\n//                         ValuesIn(GetParameterStrings()));\n//\n//\n// This will also instantiate tests from CharTest\n// each with parameter values 'a' and 'b':\n//\n// ::std::list<char> GetParameterChars() {\n//   ::std::list<char> list;\n//   list.push_back('a');\n//   list.push_back('b');\n//   return list;\n// }\n// ::std::list<char> l = GetParameterChars();\n// INSTANTIATE_TEST_CASE_P(CharSequence2,\n//                         CharTest,\n//                         ValuesIn(l.begin(), l.end()));\n//\ntemplate <typename ForwardIterator>\ninternal::ParamGenerator<\n  typename ::testing::internal::IteratorTraits<ForwardIterator>::value_type>\nValuesIn(ForwardIterator begin, ForwardIterator end) {\n  typedef typename ::testing::internal::IteratorTraits<ForwardIterator>\n      ::value_type ParamType;\n  return internal::ParamGenerator<ParamType>(\n      new internal::ValuesInIteratorRangeGenerator<ParamType>(begin, end));\n}\n\ntemplate <typename T, size_t N>\ninternal::ParamGenerator<T> ValuesIn(const T (&array)[N]) {\n  return ValuesIn(array, array + N);\n}\n\ntemplate <class Container>\ninternal::ParamGenerator<typename Container::value_type> ValuesIn(\n    const Container& container) {\n  return ValuesIn(container.begin(), container.end());\n}\n\n// Values() allows generating tests from explicitly specified list of\n// parameters.\n//\n// Synopsis:\n// Values(T v1, T v2, ..., T vN)\n//   - returns a generator producing sequences with elements v1, v2, ..., vN.\n//\n// For example, this instantiates tests from test case BarTest each\n// with values \"one\", \"two\", and \"three\":\n//\n// INSTANTIATE_TEST_CASE_P(NumSequence, BarTest, Values(\"one\", \"two\", \"three\"));\n//\n// This instantiates tests from test case BazTest each with values 1, 2, 3.5.\n// The exact type of values will depend on the type of parameter in BazTest.\n//\n// INSTANTIATE_TEST_CASE_P(FloatingNumbers, BazTest, Values(1, 2, 3.5));\n//\n// Currently, Values() supports from 1 to $n parameters.\n//\n$range i 1..n\n$for i [[\n$range j 1..i\n\ntemplate <$for j, [[typename T$j]]>\ninternal::ValueArray$i<$for j, [[T$j]]> Values($for j, [[T$j v$j]]) {\n  return internal::ValueArray$i<$for j, [[T$j]]>($for j, [[v$j]]);\n}\n\n]]\n\n// Bool() allows generating tests with parameters in a set of (false, true).\n//\n// Synopsis:\n// Bool()\n//   - returns a generator producing sequences with elements {false, true}.\n//\n// It is useful when testing code that depends on Boolean flags. Combinations\n// of multiple flags can be tested when several Bool()'s are combined using\n// Combine() function.\n//\n// In the following example all tests in the test case FlagDependentTest\n// will be instantiated twice with parameters false and true.\n//\n// class FlagDependentTest : public testing::TestWithParam<bool> {\n//   virtual void SetUp() {\n//     external_flag = GetParam();\n//   }\n// }\n// INSTANTIATE_TEST_CASE_P(BoolSequence, FlagDependentTest, Bool());\n//\ninline internal::ParamGenerator<bool> Bool() {\n  return Values(false, true);\n}\n\n# if GTEST_HAS_COMBINE\n// Combine() allows the user to combine two or more sequences to produce\n// values of a Cartesian product of those sequences' elements.\n//\n// Synopsis:\n// Combine(gen1, gen2, ..., genN)\n//   - returns a generator producing sequences with elements coming from\n//     the Cartesian product of elements from the sequences generated by\n//     gen1, gen2, ..., genN. The sequence elements will have a type of\n//     tuple<T1, T2, ..., TN> where T1, T2, ..., TN are the types\n//     of elements from sequences produces by gen1, gen2, ..., genN.\n//\n// Combine can have up to $maxtuple arguments. This number is currently limited\n// by the maximum number of elements in the tuple implementation used by Google\n// Test.\n//\n// Example:\n//\n// This will instantiate tests in test case AnimalTest each one with\n// the parameter values tuple(\"cat\", BLACK), tuple(\"cat\", WHITE),\n// tuple(\"dog\", BLACK), and tuple(\"dog\", WHITE):\n//\n// enum Color { BLACK, GRAY, WHITE };\n// class AnimalTest\n//     : public testing::TestWithParam<tuple<const char*, Color> > {...};\n//\n// TEST_P(AnimalTest, AnimalLooksNice) {...}\n//\n// INSTANTIATE_TEST_CASE_P(AnimalVariations, AnimalTest,\n//                         Combine(Values(\"cat\", \"dog\"),\n//                                 Values(BLACK, WHITE)));\n//\n// This will instantiate tests in FlagDependentTest with all variations of two\n// Boolean flags:\n//\n// class FlagDependentTest\n//     : public testing::TestWithParam<tuple<bool, bool> > {\n//   virtual void SetUp() {\n//     // Assigns external_flag_1 and external_flag_2 values from the tuple.\n//     tie(external_flag_1, external_flag_2) = GetParam();\n//   }\n// };\n//\n// TEST_P(FlagDependentTest, TestFeature1) {\n//   // Test your code using external_flag_1 and external_flag_2 here.\n// }\n// INSTANTIATE_TEST_CASE_P(TwoBoolSequence, FlagDependentTest,\n//                         Combine(Bool(), Bool()));\n//\n$range i 2..maxtuple\n$for i [[\n$range j 1..i\n\ntemplate <$for j, [[typename Generator$j]]>\ninternal::CartesianProductHolder$i<$for j, [[Generator$j]]> Combine(\n    $for j, [[const Generator$j& g$j]]) {\n  return internal::CartesianProductHolder$i<$for j, [[Generator$j]]>(\n      $for j, [[g$j]]);\n}\n\n]]\n# endif  // GTEST_HAS_COMBINE\n\n\n\n# define TEST_P(test_case_name, test_name) \\\n  class GTEST_TEST_CLASS_NAME_(test_case_name, test_name) \\\n      : public test_case_name { \\\n   public: \\\n    GTEST_TEST_CLASS_NAME_(test_case_name, test_name)() {} \\\n    virtual void TestBody(); \\\n   private: \\\n    static int AddToRegistry() { \\\n      ::testing::UnitTest::GetInstance()->parameterized_test_registry(). \\\n          GetTestCasePatternHolder<test_case_name>(\\\n              #test_case_name, \\\n              ::testing::internal::CodeLocation(\\\n                  __FILE__, __LINE__))->AddTestPattern(\\\n                      #test_case_name, \\\n                      #test_name, \\\n                      new ::testing::internal::TestMetaFactory< \\\n                          GTEST_TEST_CLASS_NAME_(\\\n                              test_case_name, test_name)>()); \\\n      return 0; \\\n    } \\\n    static int gtest_registering_dummy_ GTEST_ATTRIBUTE_UNUSED_; \\\n    GTEST_DISALLOW_COPY_AND_ASSIGN_(\\\n        GTEST_TEST_CLASS_NAME_(test_case_name, test_name)); \\\n  }; \\\n  int GTEST_TEST_CLASS_NAME_(test_case_name, \\\n                             test_name)::gtest_registering_dummy_ = \\\n      GTEST_TEST_CLASS_NAME_(test_case_name, test_name)::AddToRegistry(); \\\n  void GTEST_TEST_CLASS_NAME_(test_case_name, test_name)::TestBody()\n\n// The optional last argument to INSTANTIATE_TEST_CASE_P allows the user\n// to specify a function or functor that generates custom test name suffixes\n// based on the test parameters. The function should accept one argument of\n// type testing::TestParamInfo<class ParamType>, and return std::string.\n//\n// testing::PrintToStringParamName is a builtin test suffix generator that\n// returns the value of testing::PrintToString(GetParam()).\n//\n// Note: test names must be non-empty, unique, and may only contain ASCII\n// alphanumeric characters or underscore. Because PrintToString adds quotes\n// to std::string and C strings, it won't work for these types.\n\n# define INSTANTIATE_TEST_CASE_P(prefix, test_case_name, generator, ...) \\\n  ::testing::internal::ParamGenerator<test_case_name::ParamType> \\\n      gtest_##prefix##test_case_name##_EvalGenerator_() { return generator; } \\\n  ::std::string gtest_##prefix##test_case_name##_EvalGenerateName_( \\\n      const ::testing::TestParamInfo<test_case_name::ParamType>& info) { \\\n    return ::testing::internal::GetParamNameGen<test_case_name::ParamType> \\\n        (__VA_ARGS__)(info); \\\n  } \\\n  int gtest_##prefix##test_case_name##_dummy_ GTEST_ATTRIBUTE_UNUSED_ = \\\n      ::testing::UnitTest::GetInstance()->parameterized_test_registry(). \\\n          GetTestCasePatternHolder<test_case_name>(\\\n              #test_case_name, \\\n              ::testing::internal::CodeLocation(\\\n                  __FILE__, __LINE__))->AddTestCaseInstantiation(\\\n                      #prefix, \\\n                      &gtest_##prefix##test_case_name##_EvalGenerator_, \\\n                      &gtest_##prefix##test_case_name##_EvalGenerateName_, \\\n                      __FILE__, __LINE__)\n\n}  // namespace testing\n\n#endif  // GTEST_HAS_PARAM_TEST\n\n#endif  // GTEST_INCLUDE_GTEST_GTEST_PARAM_TEST_H_\n"
  },
  {
    "path": "test/gtest/include/gtest/gtest-printers.h",
    "content": "// Copyright 2007, Google Inc.\n// All rights reserved.\n//\n// Redistribution and use in source and binary forms, with or without\n// modification, are permitted provided that the following conditions are\n// met:\n//\n//     * Redistributions of source code must retain the above copyright\n// notice, this list of conditions and the following disclaimer.\n//     * Redistributions in binary form must reproduce the above\n// copyright notice, this list of conditions and the following disclaimer\n// in the documentation and/or other materials provided with the\n// distribution.\n//     * Neither the name of Google Inc. nor the names of its\n// contributors may be used to endorse or promote products derived from\n// this software without specific prior written permission.\n//\n// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n// \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n\n// Google Test - The Google C++ Testing and Mocking Framework\n//\n// This file implements a universal value printer that can print a\n// value of any type T:\n//\n//   void ::testing::internal::UniversalPrinter<T>::Print(value, ostream_ptr);\n//\n// A user can teach this function how to print a class type T by\n// defining either operator<<() or PrintTo() in the namespace that\n// defines T.  More specifically, the FIRST defined function in the\n// following list will be used (assuming T is defined in namespace\n// foo):\n//\n//   1. foo::PrintTo(const T&, ostream*)\n//   2. operator<<(ostream&, const T&) defined in either foo or the\n//      global namespace.\n//\n// However if T is an STL-style container then it is printed element-wise\n// unless foo::PrintTo(const T&, ostream*) is defined. Note that\n// operator<<() is ignored for container types.\n//\n// If none of the above is defined, it will print the debug string of\n// the value if it is a protocol buffer, or print the raw bytes in the\n// value otherwise.\n//\n// To aid debugging: when T is a reference type, the address of the\n// value is also printed; when T is a (const) char pointer, both the\n// pointer value and the NUL-terminated string it points to are\n// printed.\n//\n// We also provide some convenient wrappers:\n//\n//   // Prints a value to a string.  For a (const or not) char\n//   // pointer, the NUL-terminated string (but not the pointer) is\n//   // printed.\n//   std::string ::testing::PrintToString(const T& value);\n//\n//   // Prints a value tersely: for a reference type, the referenced\n//   // value (but not the address) is printed; for a (const or not) char\n//   // pointer, the NUL-terminated string (but not the pointer) is\n//   // printed.\n//   void ::testing::internal::UniversalTersePrint(const T& value, ostream*);\n//\n//   // Prints value using the type inferred by the compiler.  The difference\n//   // from UniversalTersePrint() is that this function prints both the\n//   // pointer and the NUL-terminated string for a (const or not) char pointer.\n//   void ::testing::internal::UniversalPrint(const T& value, ostream*);\n//\n//   // Prints the fields of a tuple tersely to a string vector, one\n//   // element for each field. Tuple support must be enabled in\n//   // gtest-port.h.\n//   std::vector<string> UniversalTersePrintTupleFieldsToStrings(\n//       const Tuple& value);\n//\n// Known limitation:\n//\n// The print primitives print the elements of an STL-style container\n// using the compiler-inferred type of *iter where iter is a\n// const_iterator of the container.  When const_iterator is an input\n// iterator but not a forward iterator, this inferred type may not\n// match value_type, and the print output may be incorrect.  In\n// practice, this is rarely a problem as for most containers\n// const_iterator is a forward iterator.  We'll fix this if there's an\n// actual need for it.  Note that this fix cannot rely on value_type\n// being defined as many user-defined container types don't have\n// value_type.\n\n// GOOGLETEST_CM0001 DO NOT DELETE\n\n#ifndef GOOGLETEST_INCLUDE_GTEST_GTEST_PRINTERS_H_\n#define GOOGLETEST_INCLUDE_GTEST_GTEST_PRINTERS_H_\n\n#include <functional>\n#include <memory>\n#include <ostream>  // NOLINT\n#include <sstream>\n#include <string>\n#include <tuple>\n#include <type_traits>\n#include <utility>\n#include <vector>\n\n#include \"gtest/internal/gtest-internal.h\"\n#include \"gtest/internal/gtest-port.h\"\n\nnamespace testing {\n\n// Definitions in the internal* namespaces are subject to change without notice.\n// DO NOT USE THEM IN USER CODE!\nnamespace internal {\n\ntemplate <typename T>\nvoid UniversalPrint(const T& value, ::std::ostream* os);\n\n// Used to print an STL-style container when the user doesn't define\n// a PrintTo() for it.\nstruct ContainerPrinter {\n  template <typename T,\n            typename = typename std::enable_if<\n                (sizeof(IsContainerTest<T>(0)) == sizeof(IsContainer)) &&\n                !IsRecursiveContainer<T>::value>::type>\n  static void PrintValue(const T& container, std::ostream* os) {\n    const size_t kMaxCount = 32;  // The maximum number of elements to print.\n    *os << '{';\n    size_t count = 0;\n    for (auto&& elem : container) {\n      if (count > 0) {\n        *os << ',';\n        if (count == kMaxCount) {  // Enough has been printed.\n          *os << \" ...\";\n          break;\n        }\n      }\n      *os << ' ';\n      // We cannot call PrintTo(elem, os) here as PrintTo() doesn't\n      // handle `elem` being a native array.\n      internal::UniversalPrint(elem, os);\n      ++count;\n    }\n\n    if (count > 0) {\n      *os << ' ';\n    }\n    *os << '}';\n  }\n};\n\n// Used to print a pointer that is neither a char pointer nor a member\n// pointer, when the user doesn't define PrintTo() for it.  (A member\n// variable pointer or member function pointer doesn't really point to\n// a location in the address space.  Their representation is\n// implementation-defined.  Therefore they will be printed as raw\n// bytes.)\nstruct FunctionPointerPrinter {\n  template <typename T, typename = typename std::enable_if<\n                            std::is_function<T>::value>::type>\n  static void PrintValue(T* p, ::std::ostream* os) {\n    if (p == nullptr) {\n      *os << \"NULL\";\n    } else {\n      // T is a function type, so '*os << p' doesn't do what we want\n      // (it just prints p as bool).  We want to print p as a const\n      // void*.\n      *os << reinterpret_cast<const void*>(p);\n    }\n  }\n};\n\nstruct PointerPrinter {\n  template <typename T>\n  static void PrintValue(T* p, ::std::ostream* os) {\n    if (p == nullptr) {\n      *os << \"NULL\";\n    } else {\n      // T is not a function type.  We just call << to print p,\n      // relying on ADL to pick up user-defined << for their pointer\n      // types, if any.\n      *os << p;\n    }\n  }\n};\n\nnamespace internal_stream_operator_without_lexical_name_lookup {\n\n// The presence of an operator<< here will terminate lexical scope lookup\n// straight away (even though it cannot be a match because of its argument\n// types). Thus, the two operator<< calls in StreamPrinter will find only ADL\n// candidates.\nstruct LookupBlocker {};\nvoid operator<<(LookupBlocker, LookupBlocker);\n\nstruct StreamPrinter {\n  template <typename T,\n            // Don't accept member pointers here. We'd print them via implicit\n            // conversion to bool, which isn't useful.\n            typename = typename std::enable_if<\n                !std::is_member_pointer<T>::value>::type,\n            // Only accept types for which we can find a streaming operator via\n            // ADL (possibly involving implicit conversions).\n            typename = decltype(std::declval<std::ostream&>()\n                                << std::declval<const T&>())>\n  static void PrintValue(const T& value, ::std::ostream* os) {\n    // Call streaming operator found by ADL, possibly with implicit conversions\n    // of the arguments.\n    *os << value;\n  }\n};\n\n}  // namespace internal_stream_operator_without_lexical_name_lookup\n\nstruct ProtobufPrinter {\n  // We print a protobuf using its ShortDebugString() when the string\n  // doesn't exceed this many characters; otherwise we print it using\n  // DebugString() for better readability.\n  static const size_t kProtobufOneLinerMaxLength = 50;\n\n  template <typename T,\n            typename = typename std::enable_if<\n                internal::HasDebugStringAndShortDebugString<T>::value>::type>\n  static void PrintValue(const T& value, ::std::ostream* os) {\n    std::string pretty_str = value.ShortDebugString();\n    if (pretty_str.length() > kProtobufOneLinerMaxLength) {\n      pretty_str = \"\\n\" + value.DebugString();\n    }\n    *os << (\"<\" + pretty_str + \">\");\n  }\n};\n\nstruct ConvertibleToIntegerPrinter {\n  // Since T has no << operator or PrintTo() but can be implicitly\n  // converted to BiggestInt, we print it as a BiggestInt.\n  //\n  // Most likely T is an enum type (either named or unnamed), in which\n  // case printing it as an integer is the desired behavior.  In case\n  // T is not an enum, printing it as an integer is the best we can do\n  // given that it has no user-defined printer.\n  static void PrintValue(internal::BiggestInt value, ::std::ostream* os) {\n    *os << value;\n  }\n};\n\nstruct ConvertibleToStringViewPrinter {\n#if GTEST_INTERNAL_HAS_STRING_VIEW\n  static void PrintValue(internal::StringView value, ::std::ostream* os) {\n    internal::UniversalPrint(value, os);\n  }\n#endif\n};\n\n\n// Prints the given number of bytes in the given object to the given\n// ostream.\nGTEST_API_ void PrintBytesInObjectTo(const unsigned char* obj_bytes,\n                                     size_t count,\n                                     ::std::ostream* os);\nstruct RawBytesPrinter {\n  // SFINAE on `sizeof` to make sure we have a complete type.\n  template <typename T, size_t = sizeof(T)>\n  static void PrintValue(const T& value, ::std::ostream* os) {\n    PrintBytesInObjectTo(\n        static_cast<const unsigned char*>(\n            // Load bearing cast to void* to support iOS\n            reinterpret_cast<const void*>(std::addressof(value))),\n        sizeof(value), os);\n  }\n};\n\nstruct FallbackPrinter {\n  template <typename T>\n  static void PrintValue(const T&, ::std::ostream* os) {\n    *os << \"(incomplete type)\";\n  }\n};\n\n// Try every printer in order and return the first one that works.\ntemplate <typename T, typename E, typename Printer, typename... Printers>\nstruct FindFirstPrinter : FindFirstPrinter<T, E, Printers...> {};\n\ntemplate <typename T, typename Printer, typename... Printers>\nstruct FindFirstPrinter<\n    T, decltype(Printer::PrintValue(std::declval<const T&>(), nullptr)),\n    Printer, Printers...> {\n  using type = Printer;\n};\n\n// Select the best printer in the following order:\n//  - Print containers (they have begin/end/etc).\n//  - Print function pointers.\n//  - Print object pointers.\n//  - Use the stream operator, if available.\n//  - Print protocol buffers.\n//  - Print types convertible to BiggestInt.\n//  - Print types convertible to StringView, if available.\n//  - Fallback to printing the raw bytes of the object.\ntemplate <typename T>\nvoid PrintWithFallback(const T& value, ::std::ostream* os) {\n  using Printer = typename FindFirstPrinter<\n      T, void, ContainerPrinter, FunctionPointerPrinter, PointerPrinter,\n      internal_stream_operator_without_lexical_name_lookup::StreamPrinter,\n      ProtobufPrinter, ConvertibleToIntegerPrinter,\n      ConvertibleToStringViewPrinter, RawBytesPrinter, FallbackPrinter>::type;\n  Printer::PrintValue(value, os);\n}\n\n// FormatForComparison<ToPrint, OtherOperand>::Format(value) formats a\n// value of type ToPrint that is an operand of a comparison assertion\n// (e.g. ASSERT_EQ).  OtherOperand is the type of the other operand in\n// the comparison, and is used to help determine the best way to\n// format the value.  In particular, when the value is a C string\n// (char pointer) and the other operand is an STL string object, we\n// want to format the C string as a string, since we know it is\n// compared by value with the string object.  If the value is a char\n// pointer but the other operand is not an STL string object, we don't\n// know whether the pointer is supposed to point to a NUL-terminated\n// string, and thus want to print it as a pointer to be safe.\n//\n// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM.\n\n// The default case.\ntemplate <typename ToPrint, typename OtherOperand>\nclass FormatForComparison {\n public:\n  static ::std::string Format(const ToPrint& value) {\n    return ::testing::PrintToString(value);\n  }\n};\n\n// Array.\ntemplate <typename ToPrint, size_t N, typename OtherOperand>\nclass FormatForComparison<ToPrint[N], OtherOperand> {\n public:\n  static ::std::string Format(const ToPrint* value) {\n    return FormatForComparison<const ToPrint*, OtherOperand>::Format(value);\n  }\n};\n\n// By default, print C string as pointers to be safe, as we don't know\n// whether they actually point to a NUL-terminated string.\n\n#define GTEST_IMPL_FORMAT_C_STRING_AS_POINTER_(CharType)                \\\n  template <typename OtherOperand>                                      \\\n  class FormatForComparison<CharType*, OtherOperand> {                  \\\n   public:                                                              \\\n    static ::std::string Format(CharType* value) {                      \\\n      return ::testing::PrintToString(static_cast<const void*>(value)); \\\n    }                                                                   \\\n  }\n\nGTEST_IMPL_FORMAT_C_STRING_AS_POINTER_(char);\nGTEST_IMPL_FORMAT_C_STRING_AS_POINTER_(const char);\nGTEST_IMPL_FORMAT_C_STRING_AS_POINTER_(wchar_t);\nGTEST_IMPL_FORMAT_C_STRING_AS_POINTER_(const wchar_t);\n#ifdef __cpp_char8_t\nGTEST_IMPL_FORMAT_C_STRING_AS_POINTER_(char8_t);\nGTEST_IMPL_FORMAT_C_STRING_AS_POINTER_(const char8_t);\n#endif\nGTEST_IMPL_FORMAT_C_STRING_AS_POINTER_(char16_t);\nGTEST_IMPL_FORMAT_C_STRING_AS_POINTER_(const char16_t);\nGTEST_IMPL_FORMAT_C_STRING_AS_POINTER_(char32_t);\nGTEST_IMPL_FORMAT_C_STRING_AS_POINTER_(const char32_t);\n\n#undef GTEST_IMPL_FORMAT_C_STRING_AS_POINTER_\n\n// If a C string is compared with an STL string object, we know it's meant\n// to point to a NUL-terminated string, and thus can print it as a string.\n\n#define GTEST_IMPL_FORMAT_C_STRING_AS_STRING_(CharType, OtherStringType) \\\n  template <>                                                           \\\n  class FormatForComparison<CharType*, OtherStringType> {               \\\n   public:                                                              \\\n    static ::std::string Format(CharType* value) {                      \\\n      return ::testing::PrintToString(value);                           \\\n    }                                                                   \\\n  }\n\nGTEST_IMPL_FORMAT_C_STRING_AS_STRING_(char, ::std::string);\nGTEST_IMPL_FORMAT_C_STRING_AS_STRING_(const char, ::std::string);\n#ifdef __cpp_char8_t\nGTEST_IMPL_FORMAT_C_STRING_AS_STRING_(char8_t, ::std::u8string);\nGTEST_IMPL_FORMAT_C_STRING_AS_STRING_(const char8_t, ::std::u8string);\n#endif\nGTEST_IMPL_FORMAT_C_STRING_AS_STRING_(char16_t, ::std::u16string);\nGTEST_IMPL_FORMAT_C_STRING_AS_STRING_(const char16_t, ::std::u16string);\nGTEST_IMPL_FORMAT_C_STRING_AS_STRING_(char32_t, ::std::u32string);\nGTEST_IMPL_FORMAT_C_STRING_AS_STRING_(const char32_t, ::std::u32string);\n\n#if GTEST_HAS_STD_WSTRING\nGTEST_IMPL_FORMAT_C_STRING_AS_STRING_(wchar_t, ::std::wstring);\nGTEST_IMPL_FORMAT_C_STRING_AS_STRING_(const wchar_t, ::std::wstring);\n#endif\n\n#undef GTEST_IMPL_FORMAT_C_STRING_AS_STRING_\n\n// Formats a comparison assertion (e.g. ASSERT_EQ, EXPECT_LT, and etc)\n// operand to be used in a failure message.  The type (but not value)\n// of the other operand may affect the format.  This allows us to\n// print a char* as a raw pointer when it is compared against another\n// char* or void*, and print it as a C string when it is compared\n// against an std::string object, for example.\n//\n// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM.\ntemplate <typename T1, typename T2>\nstd::string FormatForComparisonFailureMessage(\n    const T1& value, const T2& /* other_operand */) {\n  return FormatForComparison<T1, T2>::Format(value);\n}\n\n// UniversalPrinter<T>::Print(value, ostream_ptr) prints the given\n// value to the given ostream.  The caller must ensure that\n// 'ostream_ptr' is not NULL, or the behavior is undefined.\n//\n// We define UniversalPrinter as a class template (as opposed to a\n// function template), as we need to partially specialize it for\n// reference types, which cannot be done with function templates.\ntemplate <typename T>\nclass UniversalPrinter;\n\n// Prints the given value using the << operator if it has one;\n// otherwise prints the bytes in it.  This is what\n// UniversalPrinter<T>::Print() does when PrintTo() is not specialized\n// or overloaded for type T.\n//\n// A user can override this behavior for a class type Foo by defining\n// an overload of PrintTo() in the namespace where Foo is defined.  We\n// give the user this option as sometimes defining a << operator for\n// Foo is not desirable (e.g. the coding style may prevent doing it,\n// or there is already a << operator but it doesn't do what the user\n// wants).\ntemplate <typename T>\nvoid PrintTo(const T& value, ::std::ostream* os) {\n  internal::PrintWithFallback(value, os);\n}\n\n// The following list of PrintTo() overloads tells\n// UniversalPrinter<T>::Print() how to print standard types (built-in\n// types, strings, plain arrays, and pointers).\n\n// Overloads for various char types.\nGTEST_API_ void PrintTo(unsigned char c, ::std::ostream* os);\nGTEST_API_ void PrintTo(signed char c, ::std::ostream* os);\ninline void PrintTo(char c, ::std::ostream* os) {\n  // When printing a plain char, we always treat it as unsigned.  This\n  // way, the output won't be affected by whether the compiler thinks\n  // char is signed or not.\n  PrintTo(static_cast<unsigned char>(c), os);\n}\n\n// Overloads for other simple built-in types.\ninline void PrintTo(bool x, ::std::ostream* os) {\n  *os << (x ? \"true\" : \"false\");\n}\n\n// Overload for wchar_t type.\n// Prints a wchar_t as a symbol if it is printable or as its internal\n// code otherwise and also as its decimal code (except for L'\\0').\n// The L'\\0' char is printed as \"L'\\\\0'\". The decimal code is printed\n// as signed integer when wchar_t is implemented by the compiler\n// as a signed type and is printed as an unsigned integer when wchar_t\n// is implemented as an unsigned type.\nGTEST_API_ void PrintTo(wchar_t wc, ::std::ostream* os);\n\nGTEST_API_ void PrintTo(char32_t c, ::std::ostream* os);\ninline void PrintTo(char16_t c, ::std::ostream* os) {\n  PrintTo(ImplicitCast_<char32_t>(c), os);\n}\n#ifdef __cpp_char8_t\ninline void PrintTo(char8_t c, ::std::ostream* os) {\n  PrintTo(ImplicitCast_<char32_t>(c), os);\n}\n#endif\n\n// Overloads for C strings.\nGTEST_API_ void PrintTo(const char* s, ::std::ostream* os);\ninline void PrintTo(char* s, ::std::ostream* os) {\n  PrintTo(ImplicitCast_<const char*>(s), os);\n}\n\n// signed/unsigned char is often used for representing binary data, so\n// we print pointers to it as void* to be safe.\ninline void PrintTo(const signed char* s, ::std::ostream* os) {\n  PrintTo(ImplicitCast_<const void*>(s), os);\n}\ninline void PrintTo(signed char* s, ::std::ostream* os) {\n  PrintTo(ImplicitCast_<const void*>(s), os);\n}\ninline void PrintTo(const unsigned char* s, ::std::ostream* os) {\n  PrintTo(ImplicitCast_<const void*>(s), os);\n}\ninline void PrintTo(unsigned char* s, ::std::ostream* os) {\n  PrintTo(ImplicitCast_<const void*>(s), os);\n}\n#ifdef __cpp_char8_t\n// Overloads for u8 strings.\nGTEST_API_ void PrintTo(const char8_t* s, ::std::ostream* os);\ninline void PrintTo(char8_t* s, ::std::ostream* os) {\n  PrintTo(ImplicitCast_<const char8_t*>(s), os);\n}\n#endif\n// Overloads for u16 strings.\nGTEST_API_ void PrintTo(const char16_t* s, ::std::ostream* os);\ninline void PrintTo(char16_t* s, ::std::ostream* os) {\n  PrintTo(ImplicitCast_<const char16_t*>(s), os);\n}\n// Overloads for u32 strings.\nGTEST_API_ void PrintTo(const char32_t* s, ::std::ostream* os);\ninline void PrintTo(char32_t* s, ::std::ostream* os) {\n  PrintTo(ImplicitCast_<const char32_t*>(s), os);\n}\n\n// MSVC can be configured to define wchar_t as a typedef of unsigned\n// short.  It defines _NATIVE_WCHAR_T_DEFINED when wchar_t is a native\n// type.  When wchar_t is a typedef, defining an overload for const\n// wchar_t* would cause unsigned short* be printed as a wide string,\n// possibly causing invalid memory accesses.\n#if !defined(_MSC_VER) || defined(_NATIVE_WCHAR_T_DEFINED)\n// Overloads for wide C strings\nGTEST_API_ void PrintTo(const wchar_t* s, ::std::ostream* os);\ninline void PrintTo(wchar_t* s, ::std::ostream* os) {\n  PrintTo(ImplicitCast_<const wchar_t*>(s), os);\n}\n#endif\n\n// Overload for C arrays.  Multi-dimensional arrays are printed\n// properly.\n\n// Prints the given number of elements in an array, without printing\n// the curly braces.\ntemplate <typename T>\nvoid PrintRawArrayTo(const T a[], size_t count, ::std::ostream* os) {\n  UniversalPrint(a[0], os);\n  for (size_t i = 1; i != count; i++) {\n    *os << \", \";\n    UniversalPrint(a[i], os);\n  }\n}\n\n// Overloads for ::std::string.\nGTEST_API_ void PrintStringTo(const ::std::string&s, ::std::ostream* os);\ninline void PrintTo(const ::std::string& s, ::std::ostream* os) {\n  PrintStringTo(s, os);\n}\n\n// Overloads for ::std::u8string\n#ifdef __cpp_char8_t\nGTEST_API_ void PrintU8StringTo(const ::std::u8string& s, ::std::ostream* os);\ninline void PrintTo(const ::std::u8string& s, ::std::ostream* os) {\n  PrintU8StringTo(s, os);\n}\n#endif\n\n// Overloads for ::std::u16string\nGTEST_API_ void PrintU16StringTo(const ::std::u16string& s, ::std::ostream* os);\ninline void PrintTo(const ::std::u16string& s, ::std::ostream* os) {\n  PrintU16StringTo(s, os);\n}\n\n// Overloads for ::std::u32string\nGTEST_API_ void PrintU32StringTo(const ::std::u32string& s, ::std::ostream* os);\ninline void PrintTo(const ::std::u32string& s, ::std::ostream* os) {\n  PrintU32StringTo(s, os);\n}\n\n// Overloads for ::std::wstring.\n#if GTEST_HAS_STD_WSTRING\nGTEST_API_ void PrintWideStringTo(const ::std::wstring&s, ::std::ostream* os);\ninline void PrintTo(const ::std::wstring& s, ::std::ostream* os) {\n  PrintWideStringTo(s, os);\n}\n#endif  // GTEST_HAS_STD_WSTRING\n\n#if GTEST_INTERNAL_HAS_STRING_VIEW\n// Overload for internal::StringView.\ninline void PrintTo(internal::StringView sp, ::std::ostream* os) {\n  PrintTo(::std::string(sp), os);\n}\n#endif  // GTEST_INTERNAL_HAS_STRING_VIEW\n\ninline void PrintTo(std::nullptr_t, ::std::ostream* os) { *os << \"(nullptr)\"; }\n\ntemplate <typename T>\nvoid PrintTo(std::reference_wrapper<T> ref, ::std::ostream* os) {\n  UniversalPrinter<T&>::Print(ref.get(), os);\n}\n\ninline const void* VoidifyPointer(const void* p) { return p; }\ninline const void* VoidifyPointer(volatile const void* p) {\n  return const_cast<const void*>(p);\n}\n\ntemplate <typename T, typename Ptr>\nvoid PrintSmartPointer(const Ptr& ptr, std::ostream* os, char) {\n  if (ptr == nullptr) {\n    *os << \"(nullptr)\";\n  } else {\n    // We can't print the value. Just print the pointer..\n    *os << \"(\" << (VoidifyPointer)(ptr.get()) << \")\";\n  }\n}\ntemplate <typename T, typename Ptr,\n          typename = typename std::enable_if<!std::is_void<T>::value &&\n                                             !std::is_array<T>::value>::type>\nvoid PrintSmartPointer(const Ptr& ptr, std::ostream* os, int) {\n  if (ptr == nullptr) {\n    *os << \"(nullptr)\";\n  } else {\n    *os << \"(ptr = \" << (VoidifyPointer)(ptr.get()) << \", value = \";\n    UniversalPrinter<T>::Print(*ptr, os);\n    *os << \")\";\n  }\n}\n\ntemplate <typename T, typename D>\nvoid PrintTo(const std::unique_ptr<T, D>& ptr, std::ostream* os) {\n  (PrintSmartPointer<T>)(ptr, os, 0);\n}\n\ntemplate <typename T>\nvoid PrintTo(const std::shared_ptr<T>& ptr, std::ostream* os) {\n  (PrintSmartPointer<T>)(ptr, os, 0);\n}\n\n// Helper function for printing a tuple.  T must be instantiated with\n// a tuple type.\ntemplate <typename T>\nvoid PrintTupleTo(const T&, std::integral_constant<size_t, 0>,\n                  ::std::ostream*) {}\n\ntemplate <typename T, size_t I>\nvoid PrintTupleTo(const T& t, std::integral_constant<size_t, I>,\n                  ::std::ostream* os) {\n  PrintTupleTo(t, std::integral_constant<size_t, I - 1>(), os);\n  GTEST_INTENTIONAL_CONST_COND_PUSH_()\n  if (I > 1) {\n    GTEST_INTENTIONAL_CONST_COND_POP_()\n    *os << \", \";\n  }\n  UniversalPrinter<typename std::tuple_element<I - 1, T>::type>::Print(\n      std::get<I - 1>(t), os);\n}\n\ntemplate <typename... Types>\nvoid PrintTo(const ::std::tuple<Types...>& t, ::std::ostream* os) {\n  *os << \"(\";\n  PrintTupleTo(t, std::integral_constant<size_t, sizeof...(Types)>(), os);\n  *os << \")\";\n}\n\n// Overload for std::pair.\ntemplate <typename T1, typename T2>\nvoid PrintTo(const ::std::pair<T1, T2>& value, ::std::ostream* os) {\n  *os << '(';\n  // We cannot use UniversalPrint(value.first, os) here, as T1 may be\n  // a reference type.  The same for printing value.second.\n  UniversalPrinter<T1>::Print(value.first, os);\n  *os << \", \";\n  UniversalPrinter<T2>::Print(value.second, os);\n  *os << ')';\n}\n\n// Implements printing a non-reference type T by letting the compiler\n// pick the right overload of PrintTo() for T.\ntemplate <typename T>\nclass UniversalPrinter {\n public:\n  // MSVC warns about adding const to a function type, so we want to\n  // disable the warning.\n  GTEST_DISABLE_MSC_WARNINGS_PUSH_(4180)\n\n  // Note: we deliberately don't call this PrintTo(), as that name\n  // conflicts with ::testing::internal::PrintTo in the body of the\n  // function.\n  static void Print(const T& value, ::std::ostream* os) {\n    // By default, ::testing::internal::PrintTo() is used for printing\n    // the value.\n    //\n    // Thanks to Koenig look-up, if T is a class and has its own\n    // PrintTo() function defined in its namespace, that function will\n    // be visible here.  Since it is more specific than the generic ones\n    // in ::testing::internal, it will be picked by the compiler in the\n    // following statement - exactly what we want.\n    PrintTo(value, os);\n  }\n\n  GTEST_DISABLE_MSC_WARNINGS_POP_()\n};\n\n// Remove any const-qualifiers before passing a type to UniversalPrinter.\ntemplate <typename T>\nclass UniversalPrinter<const T> : public UniversalPrinter<T> {};\n\n#if GTEST_INTERNAL_HAS_ANY\n\n// Printer for std::any / absl::any\n\ntemplate <>\nclass UniversalPrinter<Any> {\n public:\n  static void Print(const Any& value, ::std::ostream* os) {\n    if (value.has_value()) {\n      *os << \"value of type \" << GetTypeName(value);\n    } else {\n      *os << \"no value\";\n    }\n  }\n\n private:\n  static std::string GetTypeName(const Any& value) {\n#if GTEST_HAS_RTTI\n    return internal::GetTypeName(value.type());\n#else\n    static_cast<void>(value);  // possibly unused\n    return \"<unknown_type>\";\n#endif  // GTEST_HAS_RTTI\n  }\n};\n\n#endif  // GTEST_INTERNAL_HAS_ANY\n\n#if GTEST_INTERNAL_HAS_OPTIONAL\n\n// Printer for std::optional / absl::optional\n\ntemplate <typename T>\nclass UniversalPrinter<Optional<T>> {\n public:\n  static void Print(const Optional<T>& value, ::std::ostream* os) {\n    *os << '(';\n    if (!value) {\n      *os << \"nullopt\";\n    } else {\n      UniversalPrint(*value, os);\n    }\n    *os << ')';\n  }\n};\n\n#endif  // GTEST_INTERNAL_HAS_OPTIONAL\n\n#if GTEST_INTERNAL_HAS_VARIANT\n\n// Printer for std::variant / absl::variant\n\ntemplate <typename... T>\nclass UniversalPrinter<Variant<T...>> {\n public:\n  static void Print(const Variant<T...>& value, ::std::ostream* os) {\n    *os << '(';\n#if GTEST_HAS_ABSL\n    absl::visit(Visitor{os, value.index()}, value);\n#else\n    std::visit(Visitor{os, value.index()}, value);\n#endif  // GTEST_HAS_ABSL\n    *os << ')';\n  }\n\n private:\n  struct Visitor {\n    template <typename U>\n    void operator()(const U& u) const {\n      *os << \"'\" << GetTypeName<U>() << \"(index = \" << index\n          << \")' with value \";\n      UniversalPrint(u, os);\n    }\n    ::std::ostream* os;\n    std::size_t index;\n  };\n};\n\n#endif  // GTEST_INTERNAL_HAS_VARIANT\n\n// UniversalPrintArray(begin, len, os) prints an array of 'len'\n// elements, starting at address 'begin'.\ntemplate <typename T>\nvoid UniversalPrintArray(const T* begin, size_t len, ::std::ostream* os) {\n  if (len == 0) {\n    *os << \"{}\";\n  } else {\n    *os << \"{ \";\n    const size_t kThreshold = 18;\n    const size_t kChunkSize = 8;\n    // If the array has more than kThreshold elements, we'll have to\n    // omit some details by printing only the first and the last\n    // kChunkSize elements.\n    if (len <= kThreshold) {\n      PrintRawArrayTo(begin, len, os);\n    } else {\n      PrintRawArrayTo(begin, kChunkSize, os);\n      *os << \", ..., \";\n      PrintRawArrayTo(begin + len - kChunkSize, kChunkSize, os);\n    }\n    *os << \" }\";\n  }\n}\n// This overload prints a (const) char array compactly.\nGTEST_API_ void UniversalPrintArray(\n    const char* begin, size_t len, ::std::ostream* os);\n\n#ifdef __cpp_char8_t\n// This overload prints a (const) char8_t array compactly.\nGTEST_API_ void UniversalPrintArray(const char8_t* begin, size_t len,\n                                    ::std::ostream* os);\n#endif\n\n// This overload prints a (const) char16_t array compactly.\nGTEST_API_ void UniversalPrintArray(const char16_t* begin, size_t len,\n                                    ::std::ostream* os);\n\n// This overload prints a (const) char32_t array compactly.\nGTEST_API_ void UniversalPrintArray(const char32_t* begin, size_t len,\n                                    ::std::ostream* os);\n\n// This overload prints a (const) wchar_t array compactly.\nGTEST_API_ void UniversalPrintArray(\n    const wchar_t* begin, size_t len, ::std::ostream* os);\n\n// Implements printing an array type T[N].\ntemplate <typename T, size_t N>\nclass UniversalPrinter<T[N]> {\n public:\n  // Prints the given array, omitting some elements when there are too\n  // many.\n  static void Print(const T (&a)[N], ::std::ostream* os) {\n    UniversalPrintArray(a, N, os);\n  }\n};\n\n// Implements printing a reference type T&.\ntemplate <typename T>\nclass UniversalPrinter<T&> {\n public:\n  // MSVC warns about adding const to a function type, so we want to\n  // disable the warning.\n  GTEST_DISABLE_MSC_WARNINGS_PUSH_(4180)\n\n  static void Print(const T& value, ::std::ostream* os) {\n    // Prints the address of the value.  We use reinterpret_cast here\n    // as static_cast doesn't compile when T is a function type.\n    *os << \"@\" << reinterpret_cast<const void*>(&value) << \" \";\n\n    // Then prints the value itself.\n    UniversalPrint(value, os);\n  }\n\n  GTEST_DISABLE_MSC_WARNINGS_POP_()\n};\n\n// Prints a value tersely: for a reference type, the referenced value\n// (but not the address) is printed; for a (const) char pointer, the\n// NUL-terminated string (but not the pointer) is printed.\n\ntemplate <typename T>\nclass UniversalTersePrinter {\n public:\n  static void Print(const T& value, ::std::ostream* os) {\n    UniversalPrint(value, os);\n  }\n};\ntemplate <typename T>\nclass UniversalTersePrinter<T&> {\n public:\n  static void Print(const T& value, ::std::ostream* os) {\n    UniversalPrint(value, os);\n  }\n};\ntemplate <typename T, size_t N>\nclass UniversalTersePrinter<T[N]> {\n public:\n  static void Print(const T (&value)[N], ::std::ostream* os) {\n    UniversalPrinter<T[N]>::Print(value, os);\n  }\n};\ntemplate <>\nclass UniversalTersePrinter<const char*> {\n public:\n  static void Print(const char* str, ::std::ostream* os) {\n    if (str == nullptr) {\n      *os << \"NULL\";\n    } else {\n      UniversalPrint(std::string(str), os);\n    }\n  }\n};\ntemplate <>\nclass UniversalTersePrinter<char*> : public UniversalTersePrinter<const char*> {\n};\n\n#ifdef __cpp_char8_t\ntemplate <>\nclass UniversalTersePrinter<const char8_t*> {\n public:\n  static void Print(const char8_t* str, ::std::ostream* os) {\n    if (str == nullptr) {\n      *os << \"NULL\";\n    } else {\n      UniversalPrint(::std::u8string(str), os);\n    }\n  }\n};\ntemplate <>\nclass UniversalTersePrinter<char8_t*>\n    : public UniversalTersePrinter<const char8_t*> {};\n#endif\n\ntemplate <>\nclass UniversalTersePrinter<const char16_t*> {\n public:\n  static void Print(const char16_t* str, ::std::ostream* os) {\n    if (str == nullptr) {\n      *os << \"NULL\";\n    } else {\n      UniversalPrint(::std::u16string(str), os);\n    }\n  }\n};\ntemplate <>\nclass UniversalTersePrinter<char16_t*>\n    : public UniversalTersePrinter<const char16_t*> {};\n\ntemplate <>\nclass UniversalTersePrinter<const char32_t*> {\n public:\n  static void Print(const char32_t* str, ::std::ostream* os) {\n    if (str == nullptr) {\n      *os << \"NULL\";\n    } else {\n      UniversalPrint(::std::u32string(str), os);\n    }\n  }\n};\ntemplate <>\nclass UniversalTersePrinter<char32_t*>\n    : public UniversalTersePrinter<const char32_t*> {};\n\n#if GTEST_HAS_STD_WSTRING\ntemplate <>\nclass UniversalTersePrinter<const wchar_t*> {\n public:\n  static void Print(const wchar_t* str, ::std::ostream* os) {\n    if (str == nullptr) {\n      *os << \"NULL\";\n    } else {\n      UniversalPrint(::std::wstring(str), os);\n    }\n  }\n};\n#endif\n\ntemplate <>\nclass UniversalTersePrinter<wchar_t*> {\n public:\n  static void Print(wchar_t* str, ::std::ostream* os) {\n    UniversalTersePrinter<const wchar_t*>::Print(str, os);\n  }\n};\n\ntemplate <typename T>\nvoid UniversalTersePrint(const T& value, ::std::ostream* os) {\n  UniversalTersePrinter<T>::Print(value, os);\n}\n\n// Prints a value using the type inferred by the compiler.  The\n// difference between this and UniversalTersePrint() is that for a\n// (const) char pointer, this prints both the pointer and the\n// NUL-terminated string.\ntemplate <typename T>\nvoid UniversalPrint(const T& value, ::std::ostream* os) {\n  // A workarond for the bug in VC++ 7.1 that prevents us from instantiating\n  // UniversalPrinter with T directly.\n  typedef T T1;\n  UniversalPrinter<T1>::Print(value, os);\n}\n\ntypedef ::std::vector< ::std::string> Strings;\n\n  // Tersely prints the first N fields of a tuple to a string vector,\n  // one element for each field.\ntemplate <typename Tuple>\nvoid TersePrintPrefixToStrings(const Tuple&, std::integral_constant<size_t, 0>,\n                               Strings*) {}\ntemplate <typename Tuple, size_t I>\nvoid TersePrintPrefixToStrings(const Tuple& t,\n                               std::integral_constant<size_t, I>,\n                               Strings* strings) {\n  TersePrintPrefixToStrings(t, std::integral_constant<size_t, I - 1>(),\n                            strings);\n  ::std::stringstream ss;\n  UniversalTersePrint(std::get<I - 1>(t), &ss);\n  strings->push_back(ss.str());\n}\n\n// Prints the fields of a tuple tersely to a string vector, one\n// element for each field.  See the comment before\n// UniversalTersePrint() for how we define \"tersely\".\ntemplate <typename Tuple>\nStrings UniversalTersePrintTupleFieldsToStrings(const Tuple& value) {\n  Strings result;\n  TersePrintPrefixToStrings(\n      value, std::integral_constant<size_t, std::tuple_size<Tuple>::value>(),\n      &result);\n  return result;\n}\n\n}  // namespace internal\n\ntemplate <typename T>\n::std::string PrintToString(const T& value) {\n  ::std::stringstream ss;\n  internal::UniversalTersePrinter<T>::Print(value, &ss);\n  return ss.str();\n}\n\n}  // namespace testing\n\n// Include any custom printer added by the local installation.\n// We must include this header at the end to make sure it can use the\n// declarations from this file.\n#include \"gtest/internal/custom/gtest-printers.h\"\n\n#endif  // GOOGLETEST_INCLUDE_GTEST_GTEST_PRINTERS_H_\n"
  },
  {
    "path": "test/gtest/include/gtest/gtest-spi.h",
    "content": "// Copyright 2007, Google Inc.\n// All rights reserved.\n//\n// Redistribution and use in source and binary forms, with or without\n// modification, are permitted provided that the following conditions are\n// met:\n//\n//     * Redistributions of source code must retain the above copyright\n// notice, this list of conditions and the following disclaimer.\n//     * Redistributions in binary form must reproduce the above\n// copyright notice, this list of conditions and the following disclaimer\n// in the documentation and/or other materials provided with the\n// distribution.\n//     * Neither the name of Google Inc. nor the names of its\n// contributors may be used to endorse or promote products derived from\n// this software without specific prior written permission.\n//\n// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n// \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n//\n// Utilities for testing Google Test itself and code that uses Google Test\n// (e.g. frameworks built on top of Google Test).\n\n// GOOGLETEST_CM0004 DO NOT DELETE\n\n#ifndef GOOGLETEST_INCLUDE_GTEST_GTEST_SPI_H_\n#define GOOGLETEST_INCLUDE_GTEST_GTEST_SPI_H_\n\n#include \"gtest/gtest.h\"\n\nGTEST_DISABLE_MSC_WARNINGS_PUSH_(4251 \\\n/* class A needs to have dll-interface to be used by clients of class B */)\n\nnamespace testing {\n\n// This helper class can be used to mock out Google Test failure reporting\n// so that we can test Google Test or code that builds on Google Test.\n//\n// An object of this class appends a TestPartResult object to the\n// TestPartResultArray object given in the constructor whenever a Google Test\n// failure is reported. It can either intercept only failures that are\n// generated in the same thread that created this object or it can intercept\n// all generated failures. The scope of this mock object can be controlled with\n// the second argument to the two arguments constructor.\nclass GTEST_API_ ScopedFakeTestPartResultReporter\n    : public TestPartResultReporterInterface {\n public:\n  // The two possible mocking modes of this object.\n  enum InterceptMode {\n    INTERCEPT_ONLY_CURRENT_THREAD,  // Intercepts only thread local failures.\n    INTERCEPT_ALL_THREADS           // Intercepts all failures.\n  };\n\n  // The c'tor sets this object as the test part result reporter used\n  // by Google Test.  The 'result' parameter specifies where to report the\n  // results. This reporter will only catch failures generated in the current\n  // thread. DEPRECATED\n  explicit ScopedFakeTestPartResultReporter(TestPartResultArray* result);\n\n  // Same as above, but you can choose the interception scope of this object.\n  ScopedFakeTestPartResultReporter(InterceptMode intercept_mode,\n                                   TestPartResultArray* result);\n\n  // The d'tor restores the previous test part result reporter.\n  ~ScopedFakeTestPartResultReporter() override;\n\n  // Appends the TestPartResult object to the TestPartResultArray\n  // received in the constructor.\n  //\n  // This method is from the TestPartResultReporterInterface\n  // interface.\n  void ReportTestPartResult(const TestPartResult& result) override;\n\n private:\n  void Init();\n\n  const InterceptMode intercept_mode_;\n  TestPartResultReporterInterface* old_reporter_;\n  TestPartResultArray* const result_;\n\n  GTEST_DISALLOW_COPY_AND_ASSIGN_(ScopedFakeTestPartResultReporter);\n};\n\nnamespace internal {\n\n// A helper class for implementing EXPECT_FATAL_FAILURE() and\n// EXPECT_NONFATAL_FAILURE().  Its destructor verifies that the given\n// TestPartResultArray contains exactly one failure that has the given\n// type and contains the given substring.  If that's not the case, a\n// non-fatal failure will be generated.\nclass GTEST_API_ SingleFailureChecker {\n public:\n  // The constructor remembers the arguments.\n  SingleFailureChecker(const TestPartResultArray* results,\n                       TestPartResult::Type type, const std::string& substr);\n  ~SingleFailureChecker();\n private:\n  const TestPartResultArray* const results_;\n  const TestPartResult::Type type_;\n  const std::string substr_;\n\n  GTEST_DISALLOW_COPY_AND_ASSIGN_(SingleFailureChecker);\n};\n\n}  // namespace internal\n\n}  // namespace testing\n\nGTEST_DISABLE_MSC_WARNINGS_POP_()  //  4251\n\n// A set of macros for testing Google Test assertions or code that's expected\n// to generate Google Test fatal failures.  It verifies that the given\n// statement will cause exactly one fatal Google Test failure with 'substr'\n// being part of the failure message.\n//\n// There are two different versions of this macro. EXPECT_FATAL_FAILURE only\n// affects and considers failures generated in the current thread and\n// EXPECT_FATAL_FAILURE_ON_ALL_THREADS does the same but for all threads.\n//\n// The verification of the assertion is done correctly even when the statement\n// throws an exception or aborts the current function.\n//\n// Known restrictions:\n//   - 'statement' cannot reference local non-static variables or\n//     non-static members of the current object.\n//   - 'statement' cannot return a value.\n//   - You cannot stream a failure message to this macro.\n//\n// Note that even though the implementations of the following two\n// macros are much alike, we cannot refactor them to use a common\n// helper macro, due to some peculiarity in how the preprocessor\n// works.  The AcceptsMacroThatExpandsToUnprotectedComma test in\n// gtest_unittest.cc will fail to compile if we do that.\n#define EXPECT_FATAL_FAILURE(statement, substr) \\\n  do { \\\n    class GTestExpectFatalFailureHelper {\\\n     public:\\\n      static void Execute() { statement; }\\\n    };\\\n    ::testing::TestPartResultArray gtest_failures;\\\n    ::testing::internal::SingleFailureChecker gtest_checker(\\\n        &gtest_failures, ::testing::TestPartResult::kFatalFailure, (substr));\\\n    {\\\n      ::testing::ScopedFakeTestPartResultReporter gtest_reporter(\\\n          ::testing::ScopedFakeTestPartResultReporter:: \\\n          INTERCEPT_ONLY_CURRENT_THREAD, &gtest_failures);\\\n      GTestExpectFatalFailureHelper::Execute();\\\n    }\\\n  } while (::testing::internal::AlwaysFalse())\n\n#define EXPECT_FATAL_FAILURE_ON_ALL_THREADS(statement, substr) \\\n  do { \\\n    class GTestExpectFatalFailureHelper {\\\n     public:\\\n      static void Execute() { statement; }\\\n    };\\\n    ::testing::TestPartResultArray gtest_failures;\\\n    ::testing::internal::SingleFailureChecker gtest_checker(\\\n        &gtest_failures, ::testing::TestPartResult::kFatalFailure, (substr));\\\n    {\\\n      ::testing::ScopedFakeTestPartResultReporter gtest_reporter(\\\n          ::testing::ScopedFakeTestPartResultReporter:: \\\n          INTERCEPT_ALL_THREADS, &gtest_failures);\\\n      GTestExpectFatalFailureHelper::Execute();\\\n    }\\\n  } while (::testing::internal::AlwaysFalse())\n\n// A macro for testing Google Test assertions or code that's expected to\n// generate Google Test non-fatal failures.  It asserts that the given\n// statement will cause exactly one non-fatal Google Test failure with 'substr'\n// being part of the failure message.\n//\n// There are two different versions of this macro. EXPECT_NONFATAL_FAILURE only\n// affects and considers failures generated in the current thread and\n// EXPECT_NONFATAL_FAILURE_ON_ALL_THREADS does the same but for all threads.\n//\n// 'statement' is allowed to reference local variables and members of\n// the current object.\n//\n// The verification of the assertion is done correctly even when the statement\n// throws an exception or aborts the current function.\n//\n// Known restrictions:\n//   - You cannot stream a failure message to this macro.\n//\n// Note that even though the implementations of the following two\n// macros are much alike, we cannot refactor them to use a common\n// helper macro, due to some peculiarity in how the preprocessor\n// works.  If we do that, the code won't compile when the user gives\n// EXPECT_NONFATAL_FAILURE() a statement that contains a macro that\n// expands to code containing an unprotected comma.  The\n// AcceptsMacroThatExpandsToUnprotectedComma test in gtest_unittest.cc\n// catches that.\n//\n// For the same reason, we have to write\n//   if (::testing::internal::AlwaysTrue()) { statement; }\n// instead of\n//   GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement)\n// to avoid an MSVC warning on unreachable code.\n#define EXPECT_NONFATAL_FAILURE(statement, substr) \\\n  do {\\\n    ::testing::TestPartResultArray gtest_failures;\\\n    ::testing::internal::SingleFailureChecker gtest_checker(\\\n        &gtest_failures, ::testing::TestPartResult::kNonFatalFailure, \\\n        (substr));\\\n    {\\\n      ::testing::ScopedFakeTestPartResultReporter gtest_reporter(\\\n          ::testing::ScopedFakeTestPartResultReporter:: \\\n          INTERCEPT_ONLY_CURRENT_THREAD, &gtest_failures);\\\n      if (::testing::internal::AlwaysTrue()) { statement; }\\\n    }\\\n  } while (::testing::internal::AlwaysFalse())\n\n#define EXPECT_NONFATAL_FAILURE_ON_ALL_THREADS(statement, substr) \\\n  do {\\\n    ::testing::TestPartResultArray gtest_failures;\\\n    ::testing::internal::SingleFailureChecker gtest_checker(\\\n        &gtest_failures, ::testing::TestPartResult::kNonFatalFailure, \\\n        (substr));\\\n    {\\\n      ::testing::ScopedFakeTestPartResultReporter gtest_reporter(\\\n          ::testing::ScopedFakeTestPartResultReporter::INTERCEPT_ALL_THREADS, \\\n          &gtest_failures);\\\n      if (::testing::internal::AlwaysTrue()) { statement; }\\\n    }\\\n  } while (::testing::internal::AlwaysFalse())\n\n#endif  // GOOGLETEST_INCLUDE_GTEST_GTEST_SPI_H_\n"
  },
  {
    "path": "test/gtest/include/gtest/gtest-test-part.h",
    "content": "// Copyright 2008, Google Inc.\n// All rights reserved.\n//\n// Redistribution and use in source and binary forms, with or without\n// modification, are permitted provided that the following conditions are\n// met:\n//\n//     * Redistributions of source code must retain the above copyright\n// notice, this list of conditions and the following disclaimer.\n//     * Redistributions in binary form must reproduce the above\n// copyright notice, this list of conditions and the following disclaimer\n// in the documentation and/or other materials provided with the\n// distribution.\n//     * Neither the name of Google Inc. nor the names of its\n// contributors may be used to endorse or promote products derived from\n// this software without specific prior written permission.\n//\n// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n// \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n//\n// GOOGLETEST_CM0001 DO NOT DELETE\n\n#ifndef GOOGLETEST_INCLUDE_GTEST_GTEST_TEST_PART_H_\n#define GOOGLETEST_INCLUDE_GTEST_GTEST_TEST_PART_H_\n\n#include <iosfwd>\n#include <vector>\n#include \"gtest/internal/gtest-internal.h\"\n#include \"gtest/internal/gtest-string.h\"\n\nGTEST_DISABLE_MSC_WARNINGS_PUSH_(4251 \\\n/* class A needs to have dll-interface to be used by clients of class B */)\n\nnamespace testing {\n\n// A copyable object representing the result of a test part (i.e. an\n// assertion or an explicit FAIL(), ADD_FAILURE(), or SUCCESS()).\n//\n// Don't inherit from TestPartResult as its destructor is not virtual.\nclass GTEST_API_ TestPartResult {\n public:\n  // The possible outcomes of a test part (i.e. an assertion or an\n  // explicit SUCCEED(), FAIL(), or ADD_FAILURE()).\n  enum Type {\n    kSuccess,          // Succeeded.\n    kNonFatalFailure,  // Failed but the test can continue.\n    kFatalFailure,     // Failed and the test should be terminated.\n    kSkip              // Skipped.\n  };\n\n  // C'tor.  TestPartResult does NOT have a default constructor.\n  // Always use this constructor (with parameters) to create a\n  // TestPartResult object.\n  TestPartResult(Type a_type, const char* a_file_name, int a_line_number,\n                 const char* a_message)\n      : type_(a_type),\n        file_name_(a_file_name == nullptr ? \"\" : a_file_name),\n        line_number_(a_line_number),\n        summary_(ExtractSummary(a_message)),\n        message_(a_message) {}\n\n  // Gets the outcome of the test part.\n  Type type() const { return type_; }\n\n  // Gets the name of the source file where the test part took place, or\n  // NULL if it's unknown.\n  const char* file_name() const {\n    return file_name_.empty() ? nullptr : file_name_.c_str();\n  }\n\n  // Gets the line in the source file where the test part took place,\n  // or -1 if it's unknown.\n  int line_number() const { return line_number_; }\n\n  // Gets the summary of the failure message.\n  const char* summary() const { return summary_.c_str(); }\n\n  // Gets the message associated with the test part.\n  const char* message() const { return message_.c_str(); }\n\n  // Returns true if and only if the test part was skipped.\n  bool skipped() const { return type_ == kSkip; }\n\n  // Returns true if and only if the test part passed.\n  bool passed() const { return type_ == kSuccess; }\n\n  // Returns true if and only if the test part non-fatally failed.\n  bool nonfatally_failed() const { return type_ == kNonFatalFailure; }\n\n  // Returns true if and only if the test part fatally failed.\n  bool fatally_failed() const { return type_ == kFatalFailure; }\n\n  // Returns true if and only if the test part failed.\n  bool failed() const { return fatally_failed() || nonfatally_failed(); }\n\n private:\n  Type type_;\n\n  // Gets the summary of the failure message by omitting the stack\n  // trace in it.\n  static std::string ExtractSummary(const char* message);\n\n  // The name of the source file where the test part took place, or\n  // \"\" if the source file is unknown.\n  std::string file_name_;\n  // The line in the source file where the test part took place, or -1\n  // if the line number is unknown.\n  int line_number_;\n  std::string summary_;  // The test failure summary.\n  std::string message_;  // The test failure message.\n};\n\n// Prints a TestPartResult object.\nstd::ostream& operator<<(std::ostream& os, const TestPartResult& result);\n\n// An array of TestPartResult objects.\n//\n// Don't inherit from TestPartResultArray as its destructor is not\n// virtual.\nclass GTEST_API_ TestPartResultArray {\n public:\n  TestPartResultArray() {}\n\n  // Appends the given TestPartResult to the array.\n  void Append(const TestPartResult& result);\n\n  // Returns the TestPartResult at the given index (0-based).\n  const TestPartResult& GetTestPartResult(int index) const;\n\n  // Returns the number of TestPartResult objects in the array.\n  int size() const;\n\n private:\n  std::vector<TestPartResult> array_;\n\n  GTEST_DISALLOW_COPY_AND_ASSIGN_(TestPartResultArray);\n};\n\n// This interface knows how to report a test part result.\nclass GTEST_API_ TestPartResultReporterInterface {\n public:\n  virtual ~TestPartResultReporterInterface() {}\n\n  virtual void ReportTestPartResult(const TestPartResult& result) = 0;\n};\n\nnamespace internal {\n\n// This helper class is used by {ASSERT|EXPECT}_NO_FATAL_FAILURE to check if a\n// statement generates new fatal failures. To do so it registers itself as the\n// current test part result reporter. Besides checking if fatal failures were\n// reported, it only delegates the reporting to the former result reporter.\n// The original result reporter is restored in the destructor.\n// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM.\nclass GTEST_API_ HasNewFatalFailureHelper\n    : public TestPartResultReporterInterface {\n public:\n  HasNewFatalFailureHelper();\n  ~HasNewFatalFailureHelper() override;\n  void ReportTestPartResult(const TestPartResult& result) override;\n  bool has_new_fatal_failure() const { return has_new_fatal_failure_; }\n private:\n  bool has_new_fatal_failure_;\n  TestPartResultReporterInterface* original_reporter_;\n\n  GTEST_DISALLOW_COPY_AND_ASSIGN_(HasNewFatalFailureHelper);\n};\n\n}  // namespace internal\n\n}  // namespace testing\n\nGTEST_DISABLE_MSC_WARNINGS_POP_()  //  4251\n\n#endif  // GOOGLETEST_INCLUDE_GTEST_GTEST_TEST_PART_H_\n"
  },
  {
    "path": "test/gtest/include/gtest/gtest-typed-test.h",
    "content": "// Copyright 2008 Google Inc.\n// All Rights Reserved.\n//\n// Redistribution and use in source and binary forms, with or without\n// modification, are permitted provided that the following conditions are\n// met:\n//\n//     * Redistributions of source code must retain the above copyright\n// notice, this list of conditions and the following disclaimer.\n//     * Redistributions in binary form must reproduce the above\n// copyright notice, this list of conditions and the following disclaimer\n// in the documentation and/or other materials provided with the\n// distribution.\n//     * Neither the name of Google Inc. nor the names of its\n// contributors may be used to endorse or promote products derived from\n// this software without specific prior written permission.\n//\n// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n// \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n// GOOGLETEST_CM0001 DO NOT DELETE\n\n#ifndef GOOGLETEST_INCLUDE_GTEST_GTEST_TYPED_TEST_H_\n#define GOOGLETEST_INCLUDE_GTEST_GTEST_TYPED_TEST_H_\n\n// This header implements typed tests and type-parameterized tests.\n\n// Typed (aka type-driven) tests repeat the same test for types in a\n// list.  You must know which types you want to test with when writing\n// typed tests. Here's how you do it:\n\n#if 0\n\n// First, define a fixture class template.  It should be parameterized\n// by a type.  Remember to derive it from testing::Test.\ntemplate <typename T>\nclass FooTest : public testing::Test {\n public:\n  ...\n  typedef std::list<T> List;\n  static T shared_;\n  T value_;\n};\n\n// Next, associate a list of types with the test suite, which will be\n// repeated for each type in the list.  The typedef is necessary for\n// the macro to parse correctly.\ntypedef testing::Types<char, int, unsigned int> MyTypes;\nTYPED_TEST_SUITE(FooTest, MyTypes);\n\n// If the type list contains only one type, you can write that type\n// directly without Types<...>:\n//   TYPED_TEST_SUITE(FooTest, int);\n\n// Then, use TYPED_TEST() instead of TEST_F() to define as many typed\n// tests for this test suite as you want.\nTYPED_TEST(FooTest, DoesBlah) {\n  // Inside a test, refer to the special name TypeParam to get the type\n  // parameter.  Since we are inside a derived class template, C++ requires\n  // us to visit the members of FooTest via 'this'.\n  TypeParam n = this->value_;\n\n  // To visit static members of the fixture, add the TestFixture::\n  // prefix.\n  n += TestFixture::shared_;\n\n  // To refer to typedefs in the fixture, add the \"typename\n  // TestFixture::\" prefix.\n  typename TestFixture::List values;\n  values.push_back(n);\n  ...\n}\n\nTYPED_TEST(FooTest, HasPropertyA) { ... }\n\n// TYPED_TEST_SUITE takes an optional third argument which allows to specify a\n// class that generates custom test name suffixes based on the type. This should\n// be a class which has a static template function GetName(int index) returning\n// a string for each type. The provided integer index equals the index of the\n// type in the provided type list. In many cases the index can be ignored.\n//\n// For example:\n//   class MyTypeNames {\n//    public:\n//     template <typename T>\n//     static std::string GetName(int) {\n//       if (std::is_same<T, char>()) return \"char\";\n//       if (std::is_same<T, int>()) return \"int\";\n//       if (std::is_same<T, unsigned int>()) return \"unsignedInt\";\n//     }\n//   };\n//   TYPED_TEST_SUITE(FooTest, MyTypes, MyTypeNames);\n\n#endif  // 0\n\n// Type-parameterized tests are abstract test patterns parameterized\n// by a type.  Compared with typed tests, type-parameterized tests\n// allow you to define the test pattern without knowing what the type\n// parameters are.  The defined pattern can be instantiated with\n// different types any number of times, in any number of translation\n// units.\n//\n// If you are designing an interface or concept, you can define a\n// suite of type-parameterized tests to verify properties that any\n// valid implementation of the interface/concept should have.  Then,\n// each implementation can easily instantiate the test suite to verify\n// that it conforms to the requirements, without having to write\n// similar tests repeatedly.  Here's an example:\n\n#if 0\n\n// First, define a fixture class template.  It should be parameterized\n// by a type.  Remember to derive it from testing::Test.\ntemplate <typename T>\nclass FooTest : public testing::Test {\n  ...\n};\n\n// Next, declare that you will define a type-parameterized test suite\n// (the _P suffix is for \"parameterized\" or \"pattern\", whichever you\n// prefer):\nTYPED_TEST_SUITE_P(FooTest);\n\n// Then, use TYPED_TEST_P() to define as many type-parameterized tests\n// for this type-parameterized test suite as you want.\nTYPED_TEST_P(FooTest, DoesBlah) {\n  // Inside a test, refer to TypeParam to get the type parameter.\n  TypeParam n = 0;\n  ...\n}\n\nTYPED_TEST_P(FooTest, HasPropertyA) { ... }\n\n// Now the tricky part: you need to register all test patterns before\n// you can instantiate them.  The first argument of the macro is the\n// test suite name; the rest are the names of the tests in this test\n// case.\nREGISTER_TYPED_TEST_SUITE_P(FooTest,\n                            DoesBlah, HasPropertyA);\n\n// Finally, you are free to instantiate the pattern with the types you\n// want.  If you put the above code in a header file, you can #include\n// it in multiple C++ source files and instantiate it multiple times.\n//\n// To distinguish different instances of the pattern, the first\n// argument to the INSTANTIATE_* macro is a prefix that will be added\n// to the actual test suite name.  Remember to pick unique prefixes for\n// different instances.\ntypedef testing::Types<char, int, unsigned int> MyTypes;\nINSTANTIATE_TYPED_TEST_SUITE_P(My, FooTest, MyTypes);\n\n// If the type list contains only one type, you can write that type\n// directly without Types<...>:\n//   INSTANTIATE_TYPED_TEST_SUITE_P(My, FooTest, int);\n//\n// Similar to the optional argument of TYPED_TEST_SUITE above,\n// INSTANTIATE_TEST_SUITE_P takes an optional fourth argument which allows to\n// generate custom names.\n//   INSTANTIATE_TYPED_TEST_SUITE_P(My, FooTest, MyTypes, MyTypeNames);\n\n#endif  // 0\n\n#include \"gtest/internal/gtest-internal.h\"\n#include \"gtest/internal/gtest-port.h\"\n#include \"gtest/internal/gtest-type-util.h\"\n\n// Implements typed tests.\n\n// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE.\n//\n// Expands to the name of the typedef for the type parameters of the\n// given test suite.\n#define GTEST_TYPE_PARAMS_(TestSuiteName) gtest_type_params_##TestSuiteName##_\n\n// Expands to the name of the typedef for the NameGenerator, responsible for\n// creating the suffixes of the name.\n#define GTEST_NAME_GENERATOR_(TestSuiteName) \\\n  gtest_type_params_##TestSuiteName##_NameGenerator\n\n#define TYPED_TEST_SUITE(CaseName, Types, ...)                          \\\n  typedef ::testing::internal::GenerateTypeList<Types>::type            \\\n      GTEST_TYPE_PARAMS_(CaseName);                                     \\\n  typedef ::testing::internal::NameGeneratorSelector<__VA_ARGS__>::type \\\n      GTEST_NAME_GENERATOR_(CaseName)\n\n#define TYPED_TEST(CaseName, TestName)                                        \\\n  static_assert(sizeof(GTEST_STRINGIFY_(TestName)) > 1,                       \\\n                \"test-name must not be empty\");                               \\\n  template <typename gtest_TypeParam_>                                        \\\n  class GTEST_TEST_CLASS_NAME_(CaseName, TestName)                            \\\n      : public CaseName<gtest_TypeParam_> {                                   \\\n   private:                                                                   \\\n    typedef CaseName<gtest_TypeParam_> TestFixture;                           \\\n    typedef gtest_TypeParam_ TypeParam;                                       \\\n    void TestBody() override;                                                 \\\n  };                                                                          \\\n  static bool gtest_##CaseName##_##TestName##_registered_                     \\\n      GTEST_ATTRIBUTE_UNUSED_ = ::testing::internal::TypeParameterizedTest<   \\\n          CaseName,                                                           \\\n          ::testing::internal::TemplateSel<GTEST_TEST_CLASS_NAME_(CaseName,   \\\n                                                                  TestName)>, \\\n          GTEST_TYPE_PARAMS_(                                                 \\\n              CaseName)>::Register(\"\",                                        \\\n                                   ::testing::internal::CodeLocation(         \\\n                                       __FILE__, __LINE__),                   \\\n                                   GTEST_STRINGIFY_(CaseName),                \\\n                                   GTEST_STRINGIFY_(TestName), 0,             \\\n                                   ::testing::internal::GenerateNames<        \\\n                                       GTEST_NAME_GENERATOR_(CaseName),       \\\n                                       GTEST_TYPE_PARAMS_(CaseName)>());      \\\n  template <typename gtest_TypeParam_>                                        \\\n  void GTEST_TEST_CLASS_NAME_(CaseName,                                       \\\n                              TestName)<gtest_TypeParam_>::TestBody()\n\n// Legacy API is deprecated but still available\n#ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_\n#define TYPED_TEST_CASE                                                \\\n  static_assert(::testing::internal::TypedTestCaseIsDeprecated(), \"\"); \\\n  TYPED_TEST_SUITE\n#endif  // GTEST_REMOVE_LEGACY_TEST_CASEAPI_\n\n// Implements type-parameterized tests.\n\n// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE.\n//\n// Expands to the namespace name that the type-parameterized tests for\n// the given type-parameterized test suite are defined in.  The exact\n// name of the namespace is subject to change without notice.\n#define GTEST_SUITE_NAMESPACE_(TestSuiteName) gtest_suite_##TestSuiteName##_\n\n// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE.\n//\n// Expands to the name of the variable used to remember the names of\n// the defined tests in the given test suite.\n#define GTEST_TYPED_TEST_SUITE_P_STATE_(TestSuiteName) \\\n  gtest_typed_test_suite_p_state_##TestSuiteName##_\n\n// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE DIRECTLY.\n//\n// Expands to the name of the variable used to remember the names of\n// the registered tests in the given test suite.\n#define GTEST_REGISTERED_TEST_NAMES_(TestSuiteName) \\\n  gtest_registered_test_names_##TestSuiteName##_\n\n// The variables defined in the type-parameterized test macros are\n// static as typically these macros are used in a .h file that can be\n// #included in multiple translation units linked together.\n#define TYPED_TEST_SUITE_P(SuiteName)              \\\n  static ::testing::internal::TypedTestSuitePState \\\n      GTEST_TYPED_TEST_SUITE_P_STATE_(SuiteName)\n\n// Legacy API is deprecated but still available\n#ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_\n#define TYPED_TEST_CASE_P                                                 \\\n  static_assert(::testing::internal::TypedTestCase_P_IsDeprecated(), \"\"); \\\n  TYPED_TEST_SUITE_P\n#endif  // GTEST_REMOVE_LEGACY_TEST_CASEAPI_\n\n#define TYPED_TEST_P(SuiteName, TestName)                             \\\n  namespace GTEST_SUITE_NAMESPACE_(SuiteName) {                       \\\n    template <typename gtest_TypeParam_>                              \\\n    class TestName : public SuiteName<gtest_TypeParam_> {             \\\n     private:                                                         \\\n      typedef SuiteName<gtest_TypeParam_> TestFixture;                \\\n      typedef gtest_TypeParam_ TypeParam;                             \\\n      void TestBody() override;                                       \\\n    };                                                                \\\n    static bool gtest_##TestName##_defined_ GTEST_ATTRIBUTE_UNUSED_ = \\\n        GTEST_TYPED_TEST_SUITE_P_STATE_(SuiteName).AddTestName(       \\\n            __FILE__, __LINE__, GTEST_STRINGIFY_(SuiteName),          \\\n            GTEST_STRINGIFY_(TestName));                              \\\n  }                                                                   \\\n  template <typename gtest_TypeParam_>                                \\\n  void GTEST_SUITE_NAMESPACE_(                                        \\\n      SuiteName)::TestName<gtest_TypeParam_>::TestBody()\n\n// Note: this won't work correctly if the trailing arguments are macros.\n#define REGISTER_TYPED_TEST_SUITE_P(SuiteName, ...)                         \\\n  namespace GTEST_SUITE_NAMESPACE_(SuiteName) {                             \\\n    typedef ::testing::internal::Templates<__VA_ARGS__> gtest_AllTests_;    \\\n  }                                                                         \\\n  static const char* const GTEST_REGISTERED_TEST_NAMES_(                    \\\n      SuiteName) GTEST_ATTRIBUTE_UNUSED_ =                                  \\\n      GTEST_TYPED_TEST_SUITE_P_STATE_(SuiteName).VerifyRegisteredTestNames( \\\n          GTEST_STRINGIFY_(SuiteName), __FILE__, __LINE__, #__VA_ARGS__)\n\n// Legacy API is deprecated but still available\n#ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_\n#define REGISTER_TYPED_TEST_CASE_P                                           \\\n  static_assert(::testing::internal::RegisterTypedTestCase_P_IsDeprecated(), \\\n                \"\");                                                         \\\n  REGISTER_TYPED_TEST_SUITE_P\n#endif  // GTEST_REMOVE_LEGACY_TEST_CASEAPI_\n\n#define INSTANTIATE_TYPED_TEST_SUITE_P(Prefix, SuiteName, Types, ...)       \\\n  static_assert(sizeof(GTEST_STRINGIFY_(Prefix)) > 1,                       \\\n                \"test-suit-prefix must not be empty\");                      \\\n  static bool gtest_##Prefix##_##SuiteName GTEST_ATTRIBUTE_UNUSED_ =        \\\n      ::testing::internal::TypeParameterizedTestSuite<                      \\\n          SuiteName, GTEST_SUITE_NAMESPACE_(SuiteName)::gtest_AllTests_,    \\\n          ::testing::internal::GenerateTypeList<Types>::type>::             \\\n          Register(GTEST_STRINGIFY_(Prefix),                                \\\n                   ::testing::internal::CodeLocation(__FILE__, __LINE__),   \\\n                   &GTEST_TYPED_TEST_SUITE_P_STATE_(SuiteName),             \\\n                   GTEST_STRINGIFY_(SuiteName),                             \\\n                   GTEST_REGISTERED_TEST_NAMES_(SuiteName),                 \\\n                   ::testing::internal::GenerateNames<                      \\\n                       ::testing::internal::NameGeneratorSelector<          \\\n                           __VA_ARGS__>::type,                              \\\n                       ::testing::internal::GenerateTypeList<Types>::type>())\n\n// Legacy API is deprecated but still available\n#ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_\n#define INSTANTIATE_TYPED_TEST_CASE_P                                      \\\n  static_assert(                                                           \\\n      ::testing::internal::InstantiateTypedTestCase_P_IsDeprecated(), \"\"); \\\n  INSTANTIATE_TYPED_TEST_SUITE_P\n#endif  // GTEST_REMOVE_LEGACY_TEST_CASEAPI_\n\n#endif  // GOOGLETEST_INCLUDE_GTEST_GTEST_TYPED_TEST_H_\n"
  },
  {
    "path": "test/gtest/include/gtest/gtest.h",
    "content": "// Copyright 2005, Google Inc.\n// All rights reserved.\n//\n// Redistribution and use in source and binary forms, with or without\n// modification, are permitted provided that the following conditions are\n// met:\n//\n//     * Redistributions of source code must retain the above copyright\n// notice, this list of conditions and the following disclaimer.\n//     * Redistributions in binary form must reproduce the above\n// copyright notice, this list of conditions and the following disclaimer\n// in the documentation and/or other materials provided with the\n// distribution.\n//     * Neither the name of Google Inc. nor the names of its\n// contributors may be used to endorse or promote products derived from\n// this software without specific prior written permission.\n//\n// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n// \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n//\n// The Google C++ Testing and Mocking Framework (Google Test)\n//\n// This header file defines the public API for Google Test.  It should be\n// included by any test program that uses Google Test.\n//\n// IMPORTANT NOTE: Due to limitation of the C++ language, we have to\n// leave some internal implementation details in this header file.\n// They are clearly marked by comments like this:\n//\n//   // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM.\n//\n// Such code is NOT meant to be used by a user directly, and is subject\n// to CHANGE WITHOUT NOTICE.  Therefore DO NOT DEPEND ON IT in a user\n// program!\n//\n// Acknowledgment: Google Test borrowed the idea of automatic test\n// registration from Barthelemy Dagenais' (barthelemy@prologique.com)\n// easyUnit framework.\n\n// GOOGLETEST_CM0001 DO NOT DELETE\n\n#ifndef GOOGLETEST_INCLUDE_GTEST_GTEST_H_\n#define GOOGLETEST_INCLUDE_GTEST_GTEST_H_\n\n#include <cstddef>\n#include <limits>\n#include <memory>\n#include <ostream>\n#include <type_traits>\n#include <vector>\n\n#include \"gtest/internal/gtest-internal.h\"\n#include \"gtest/internal/gtest-string.h\"\n#include \"gtest/gtest-death-test.h\"\n#include \"gtest/gtest-matchers.h\"\n#include \"gtest/gtest-message.h\"\n#include \"gtest/gtest-param-test.h\"\n#include \"gtest/gtest-printers.h\"\n#include \"gtest/gtest_prod.h\"\n#include \"gtest/gtest-test-part.h\"\n#include \"gtest/gtest-typed-test.h\"\n\nGTEST_DISABLE_MSC_WARNINGS_PUSH_(4251 \\\n/* class A needs to have dll-interface to be used by clients of class B */)\n\nnamespace testing {\n\n// Silence C4100 (unreferenced formal parameter) and 4805\n// unsafe mix of type 'const int' and type 'const bool'\n#ifdef _MSC_VER\n# pragma warning(push)\n# pragma warning(disable:4805)\n# pragma warning(disable:4100)\n#endif\n\n\n// Declares the flags.\n\n// This flag temporary enables the disabled tests.\nGTEST_DECLARE_bool_(also_run_disabled_tests);\n\n// This flag brings the debugger on an assertion failure.\nGTEST_DECLARE_bool_(break_on_failure);\n\n// This flag controls whether Google Test catches all test-thrown exceptions\n// and logs them as failures.\nGTEST_DECLARE_bool_(catch_exceptions);\n\n// This flag enables using colors in terminal output. Available values are\n// \"yes\" to enable colors, \"no\" (disable colors), or \"auto\" (the default)\n// to let Google Test decide.\nGTEST_DECLARE_string_(color);\n\n// This flag controls whether the test runner should continue execution past\n// first failure.\nGTEST_DECLARE_bool_(fail_fast);\n\n// This flag sets up the filter to select by name using a glob pattern\n// the tests to run. If the filter is not given all tests are executed.\nGTEST_DECLARE_string_(filter);\n\n// This flag controls whether Google Test installs a signal handler that dumps\n// debugging information when fatal signals are raised.\nGTEST_DECLARE_bool_(install_failure_signal_handler);\n\n// This flag causes the Google Test to list tests. None of the tests listed\n// are actually run if the flag is provided.\nGTEST_DECLARE_bool_(list_tests);\n\n// This flag controls whether Google Test emits a detailed XML report to a file\n// in addition to its normal textual output.\nGTEST_DECLARE_string_(output);\n\n// This flags control whether Google Test prints only test failures.\nGTEST_DECLARE_bool_(brief);\n\n// This flags control whether Google Test prints the elapsed time for each\n// test.\nGTEST_DECLARE_bool_(print_time);\n\n// This flags control whether Google Test prints UTF8 characters as text.\nGTEST_DECLARE_bool_(print_utf8);\n\n// This flag specifies the random number seed.\nGTEST_DECLARE_int32_(random_seed);\n\n// This flag sets how many times the tests are repeated. The default value\n// is 1. If the value is -1 the tests are repeating forever.\nGTEST_DECLARE_int32_(repeat);\n\n// This flag controls whether Google Test includes Google Test internal\n// stack frames in failure stack traces.\nGTEST_DECLARE_bool_(show_internal_stack_frames);\n\n// When this flag is specified, tests' order is randomized on every iteration.\nGTEST_DECLARE_bool_(shuffle);\n\n// This flag specifies the maximum number of stack frames to be\n// printed in a failure message.\nGTEST_DECLARE_int32_(stack_trace_depth);\n\n// When this flag is specified, a failed assertion will throw an\n// exception if exceptions are enabled, or exit the program with a\n// non-zero code otherwise. For use with an external test framework.\nGTEST_DECLARE_bool_(throw_on_failure);\n\n// When this flag is set with a \"host:port\" string, on supported\n// platforms test results are streamed to the specified port on\n// the specified host machine.\nGTEST_DECLARE_string_(stream_result_to);\n\n#if GTEST_USE_OWN_FLAGFILE_FLAG_\nGTEST_DECLARE_string_(flagfile);\n#endif  // GTEST_USE_OWN_FLAGFILE_FLAG_\n\n// The upper limit for valid stack trace depths.\nconst int kMaxStackTraceDepth = 100;\n\nnamespace internal {\n\nclass AssertHelper;\nclass DefaultGlobalTestPartResultReporter;\nclass ExecDeathTest;\nclass NoExecDeathTest;\nclass FinalSuccessChecker;\nclass GTestFlagSaver;\nclass StreamingListenerTest;\nclass TestResultAccessor;\nclass TestEventListenersAccessor;\nclass TestEventRepeater;\nclass UnitTestRecordPropertyTestHelper;\nclass WindowsDeathTest;\nclass FuchsiaDeathTest;\nclass UnitTestImpl* GetUnitTestImpl();\nvoid ReportFailureInUnknownLocation(TestPartResult::Type result_type,\n                                    const std::string& message);\nstd::set<std::string>* GetIgnoredParameterizedTestSuites();\n\n}  // namespace internal\n\n// The friend relationship of some of these classes is cyclic.\n// If we don't forward declare them the compiler might confuse the classes\n// in friendship clauses with same named classes on the scope.\nclass Test;\nclass TestSuite;\n\n// Old API is still available but deprecated\n#ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_\nusing TestCase = TestSuite;\n#endif\nclass TestInfo;\nclass UnitTest;\n\n// A class for indicating whether an assertion was successful.  When\n// the assertion wasn't successful, the AssertionResult object\n// remembers a non-empty message that describes how it failed.\n//\n// To create an instance of this class, use one of the factory functions\n// (AssertionSuccess() and AssertionFailure()).\n//\n// This class is useful for two purposes:\n//   1. Defining predicate functions to be used with Boolean test assertions\n//      EXPECT_TRUE/EXPECT_FALSE and their ASSERT_ counterparts\n//   2. Defining predicate-format functions to be\n//      used with predicate assertions (ASSERT_PRED_FORMAT*, etc).\n//\n// For example, if you define IsEven predicate:\n//\n//   testing::AssertionResult IsEven(int n) {\n//     if ((n % 2) == 0)\n//       return testing::AssertionSuccess();\n//     else\n//       return testing::AssertionFailure() << n << \" is odd\";\n//   }\n//\n// Then the failed expectation EXPECT_TRUE(IsEven(Fib(5)))\n// will print the message\n//\n//   Value of: IsEven(Fib(5))\n//     Actual: false (5 is odd)\n//   Expected: true\n//\n// instead of a more opaque\n//\n//   Value of: IsEven(Fib(5))\n//     Actual: false\n//   Expected: true\n//\n// in case IsEven is a simple Boolean predicate.\n//\n// If you expect your predicate to be reused and want to support informative\n// messages in EXPECT_FALSE and ASSERT_FALSE (negative assertions show up\n// about half as often as positive ones in our tests), supply messages for\n// both success and failure cases:\n//\n//   testing::AssertionResult IsEven(int n) {\n//     if ((n % 2) == 0)\n//       return testing::AssertionSuccess() << n << \" is even\";\n//     else\n//       return testing::AssertionFailure() << n << \" is odd\";\n//   }\n//\n// Then a statement EXPECT_FALSE(IsEven(Fib(6))) will print\n//\n//   Value of: IsEven(Fib(6))\n//     Actual: true (8 is even)\n//   Expected: false\n//\n// NB: Predicates that support negative Boolean assertions have reduced\n// performance in positive ones so be careful not to use them in tests\n// that have lots (tens of thousands) of positive Boolean assertions.\n//\n// To use this class with EXPECT_PRED_FORMAT assertions such as:\n//\n//   // Verifies that Foo() returns an even number.\n//   EXPECT_PRED_FORMAT1(IsEven, Foo());\n//\n// you need to define:\n//\n//   testing::AssertionResult IsEven(const char* expr, int n) {\n//     if ((n % 2) == 0)\n//       return testing::AssertionSuccess();\n//     else\n//       return testing::AssertionFailure()\n//         << \"Expected: \" << expr << \" is even\\n  Actual: it's \" << n;\n//   }\n//\n// If Foo() returns 5, you will see the following message:\n//\n//   Expected: Foo() is even\n//     Actual: it's 5\n//\nclass GTEST_API_ AssertionResult {\n public:\n  // Copy constructor.\n  // Used in EXPECT_TRUE/FALSE(assertion_result).\n  AssertionResult(const AssertionResult& other);\n\n// C4800 is a level 3 warning in Visual Studio 2015 and earlier.\n// This warning is not emitted in Visual Studio 2017.\n// This warning is off by default starting in Visual Studio 2019 but can be\n// enabled with command-line options.\n#if defined(_MSC_VER) && (_MSC_VER < 1910 || _MSC_VER >= 1920)\n  GTEST_DISABLE_MSC_WARNINGS_PUSH_(4800 /* forcing value to bool */)\n#endif\n\n  // Used in the EXPECT_TRUE/FALSE(bool_expression).\n  //\n  // T must be contextually convertible to bool.\n  //\n  // The second parameter prevents this overload from being considered if\n  // the argument is implicitly convertible to AssertionResult. In that case\n  // we want AssertionResult's copy constructor to be used.\n  template <typename T>\n  explicit AssertionResult(\n      const T& success,\n      typename std::enable_if<\n          !std::is_convertible<T, AssertionResult>::value>::type*\n      /*enabler*/\n      = nullptr)\n      : success_(success) {}\n\n#if defined(_MSC_VER) && (_MSC_VER < 1910 || _MSC_VER >= 1920)\n  GTEST_DISABLE_MSC_WARNINGS_POP_()\n#endif\n\n  // Assignment operator.\n  AssertionResult& operator=(AssertionResult other) {\n    swap(other);\n    return *this;\n  }\n\n  // Returns true if and only if the assertion succeeded.\n  operator bool() const { return success_; }  // NOLINT\n\n  // Returns the assertion's negation. Used with EXPECT/ASSERT_FALSE.\n  AssertionResult operator!() const;\n\n  // Returns the text streamed into this AssertionResult. Test assertions\n  // use it when they fail (i.e., the predicate's outcome doesn't match the\n  // assertion's expectation). When nothing has been streamed into the\n  // object, returns an empty string.\n  const char* message() const {\n    return message_.get() != nullptr ? message_->c_str() : \"\";\n  }\n  // Deprecated; please use message() instead.\n  const char* failure_message() const { return message(); }\n\n  // Streams a custom failure message into this object.\n  template <typename T> AssertionResult& operator<<(const T& value) {\n    AppendMessage(Message() << value);\n    return *this;\n  }\n\n  // Allows streaming basic output manipulators such as endl or flush into\n  // this object.\n  AssertionResult& operator<<(\n      ::std::ostream& (*basic_manipulator)(::std::ostream& stream)) {\n    AppendMessage(Message() << basic_manipulator);\n    return *this;\n  }\n\n private:\n  // Appends the contents of message to message_.\n  void AppendMessage(const Message& a_message) {\n    if (message_.get() == nullptr) message_.reset(new ::std::string);\n    message_->append(a_message.GetString().c_str());\n  }\n\n  // Swap the contents of this AssertionResult with other.\n  void swap(AssertionResult& other);\n\n  // Stores result of the assertion predicate.\n  bool success_;\n  // Stores the message describing the condition in case the expectation\n  // construct is not satisfied with the predicate's outcome.\n  // Referenced via a pointer to avoid taking too much stack frame space\n  // with test assertions.\n  std::unique_ptr< ::std::string> message_;\n};\n\n// Makes a successful assertion result.\nGTEST_API_ AssertionResult AssertionSuccess();\n\n// Makes a failed assertion result.\nGTEST_API_ AssertionResult AssertionFailure();\n\n// Makes a failed assertion result with the given failure message.\n// Deprecated; use AssertionFailure() << msg.\nGTEST_API_ AssertionResult AssertionFailure(const Message& msg);\n\n}  // namespace testing\n\n// Includes the auto-generated header that implements a family of generic\n// predicate assertion macros. This include comes late because it relies on\n// APIs declared above.\n#include \"gtest/gtest_pred_impl.h\"\n\nnamespace testing {\n\n// The abstract class that all tests inherit from.\n//\n// In Google Test, a unit test program contains one or many TestSuites, and\n// each TestSuite contains one or many Tests.\n//\n// When you define a test using the TEST macro, you don't need to\n// explicitly derive from Test - the TEST macro automatically does\n// this for you.\n//\n// The only time you derive from Test is when defining a test fixture\n// to be used in a TEST_F.  For example:\n//\n//   class FooTest : public testing::Test {\n//    protected:\n//     void SetUp() override { ... }\n//     void TearDown() override { ... }\n//     ...\n//   };\n//\n//   TEST_F(FooTest, Bar) { ... }\n//   TEST_F(FooTest, Baz) { ... }\n//\n// Test is not copyable.\nclass GTEST_API_ Test {\n public:\n  friend class TestInfo;\n\n  // The d'tor is virtual as we intend to inherit from Test.\n  virtual ~Test();\n\n  // Sets up the stuff shared by all tests in this test suite.\n  //\n  // Google Test will call Foo::SetUpTestSuite() before running the first\n  // test in test suite Foo.  Hence a sub-class can define its own\n  // SetUpTestSuite() method to shadow the one defined in the super\n  // class.\n  static void SetUpTestSuite() {}\n\n  // Tears down the stuff shared by all tests in this test suite.\n  //\n  // Google Test will call Foo::TearDownTestSuite() after running the last\n  // test in test suite Foo.  Hence a sub-class can define its own\n  // TearDownTestSuite() method to shadow the one defined in the super\n  // class.\n  static void TearDownTestSuite() {}\n\n  // Legacy API is deprecated but still available. Use SetUpTestSuite and\n  // TearDownTestSuite instead.\n#ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_\n  static void TearDownTestCase() {}\n  static void SetUpTestCase() {}\n#endif  // GTEST_REMOVE_LEGACY_TEST_CASEAPI_\n\n  // Returns true if and only if the current test has a fatal failure.\n  static bool HasFatalFailure();\n\n  // Returns true if and only if the current test has a non-fatal failure.\n  static bool HasNonfatalFailure();\n\n  // Returns true if and only if the current test was skipped.\n  static bool IsSkipped();\n\n  // Returns true if and only if the current test has a (either fatal or\n  // non-fatal) failure.\n  static bool HasFailure() { return HasFatalFailure() || HasNonfatalFailure(); }\n\n  // Logs a property for the current test, test suite, or for the entire\n  // invocation of the test program when used outside of the context of a\n  // test suite.  Only the last value for a given key is remembered.  These\n  // are public static so they can be called from utility functions that are\n  // not members of the test fixture.  Calls to RecordProperty made during\n  // lifespan of the test (from the moment its constructor starts to the\n  // moment its destructor finishes) will be output in XML as attributes of\n  // the <testcase> element.  Properties recorded from fixture's\n  // SetUpTestSuite or TearDownTestSuite are logged as attributes of the\n  // corresponding <testsuite> element.  Calls to RecordProperty made in the\n  // global context (before or after invocation of RUN_ALL_TESTS and from\n  // SetUp/TearDown method of Environment objects registered with Google\n  // Test) will be output as attributes of the <testsuites> element.\n  static void RecordProperty(const std::string& key, const std::string& value);\n  static void RecordProperty(const std::string& key, int value);\n\n protected:\n  // Creates a Test object.\n  Test();\n\n  // Sets up the test fixture.\n  virtual void SetUp();\n\n  // Tears down the test fixture.\n  virtual void TearDown();\n\n private:\n  // Returns true if and only if the current test has the same fixture class\n  // as the first test in the current test suite.\n  static bool HasSameFixtureClass();\n\n  // Runs the test after the test fixture has been set up.\n  //\n  // A sub-class must implement this to define the test logic.\n  //\n  // DO NOT OVERRIDE THIS FUNCTION DIRECTLY IN A USER PROGRAM.\n  // Instead, use the TEST or TEST_F macro.\n  virtual void TestBody() = 0;\n\n  // Sets up, executes, and tears down the test.\n  void Run();\n\n  // Deletes self.  We deliberately pick an unusual name for this\n  // internal method to avoid clashing with names used in user TESTs.\n  void DeleteSelf_() { delete this; }\n\n  const std::unique_ptr<GTEST_FLAG_SAVER_> gtest_flag_saver_;\n\n  // Often a user misspells SetUp() as Setup() and spends a long time\n  // wondering why it is never called by Google Test.  The declaration of\n  // the following method is solely for catching such an error at\n  // compile time:\n  //\n  //   - The return type is deliberately chosen to be not void, so it\n  //   will be a conflict if void Setup() is declared in the user's\n  //   test fixture.\n  //\n  //   - This method is private, so it will be another compiler error\n  //   if the method is called from the user's test fixture.\n  //\n  // DO NOT OVERRIDE THIS FUNCTION.\n  //\n  // If you see an error about overriding the following function or\n  // about it being private, you have mis-spelled SetUp() as Setup().\n  struct Setup_should_be_spelled_SetUp {};\n  virtual Setup_should_be_spelled_SetUp* Setup() { return nullptr; }\n\n  // We disallow copying Tests.\n  GTEST_DISALLOW_COPY_AND_ASSIGN_(Test);\n};\n\ntypedef internal::TimeInMillis TimeInMillis;\n\n// A copyable object representing a user specified test property which can be\n// output as a key/value string pair.\n//\n// Don't inherit from TestProperty as its destructor is not virtual.\nclass TestProperty {\n public:\n  // C'tor.  TestProperty does NOT have a default constructor.\n  // Always use this constructor (with parameters) to create a\n  // TestProperty object.\n  TestProperty(const std::string& a_key, const std::string& a_value) :\n    key_(a_key), value_(a_value) {\n  }\n\n  // Gets the user supplied key.\n  const char* key() const {\n    return key_.c_str();\n  }\n\n  // Gets the user supplied value.\n  const char* value() const {\n    return value_.c_str();\n  }\n\n  // Sets a new value, overriding the one supplied in the constructor.\n  void SetValue(const std::string& new_value) {\n    value_ = new_value;\n  }\n\n private:\n  // The key supplied by the user.\n  std::string key_;\n  // The value supplied by the user.\n  std::string value_;\n};\n\n// The result of a single Test.  This includes a list of\n// TestPartResults, a list of TestProperties, a count of how many\n// death tests there are in the Test, and how much time it took to run\n// the Test.\n//\n// TestResult is not copyable.\nclass GTEST_API_ TestResult {\n public:\n  // Creates an empty TestResult.\n  TestResult();\n\n  // D'tor.  Do not inherit from TestResult.\n  ~TestResult();\n\n  // Gets the number of all test parts.  This is the sum of the number\n  // of successful test parts and the number of failed test parts.\n  int total_part_count() const;\n\n  // Returns the number of the test properties.\n  int test_property_count() const;\n\n  // Returns true if and only if the test passed (i.e. no test part failed).\n  bool Passed() const { return !Skipped() && !Failed(); }\n\n  // Returns true if and only if the test was skipped.\n  bool Skipped() const;\n\n  // Returns true if and only if the test failed.\n  bool Failed() const;\n\n  // Returns true if and only if the test fatally failed.\n  bool HasFatalFailure() const;\n\n  // Returns true if and only if the test has a non-fatal failure.\n  bool HasNonfatalFailure() const;\n\n  // Returns the elapsed time, in milliseconds.\n  TimeInMillis elapsed_time() const { return elapsed_time_; }\n\n  // Gets the time of the test case start, in ms from the start of the\n  // UNIX epoch.\n  TimeInMillis start_timestamp() const { return start_timestamp_; }\n\n  // Returns the i-th test part result among all the results. i can range from 0\n  // to total_part_count() - 1. If i is not in that range, aborts the program.\n  const TestPartResult& GetTestPartResult(int i) const;\n\n  // Returns the i-th test property. i can range from 0 to\n  // test_property_count() - 1. If i is not in that range, aborts the\n  // program.\n  const TestProperty& GetTestProperty(int i) const;\n\n private:\n  friend class TestInfo;\n  friend class TestSuite;\n  friend class UnitTest;\n  friend class internal::DefaultGlobalTestPartResultReporter;\n  friend class internal::ExecDeathTest;\n  friend class internal::TestResultAccessor;\n  friend class internal::UnitTestImpl;\n  friend class internal::WindowsDeathTest;\n  friend class internal::FuchsiaDeathTest;\n\n  // Gets the vector of TestPartResults.\n  const std::vector<TestPartResult>& test_part_results() const {\n    return test_part_results_;\n  }\n\n  // Gets the vector of TestProperties.\n  const std::vector<TestProperty>& test_properties() const {\n    return test_properties_;\n  }\n\n  // Sets the start time.\n  void set_start_timestamp(TimeInMillis start) { start_timestamp_ = start; }\n\n  // Sets the elapsed time.\n  void set_elapsed_time(TimeInMillis elapsed) { elapsed_time_ = elapsed; }\n\n  // Adds a test property to the list. The property is validated and may add\n  // a non-fatal failure if invalid (e.g., if it conflicts with reserved\n  // key names). If a property is already recorded for the same key, the\n  // value will be updated, rather than storing multiple values for the same\n  // key.  xml_element specifies the element for which the property is being\n  // recorded and is used for validation.\n  void RecordProperty(const std::string& xml_element,\n                      const TestProperty& test_property);\n\n  // Adds a failure if the key is a reserved attribute of Google Test\n  // testsuite tags.  Returns true if the property is valid.\n  // FIXME: Validate attribute names are legal and human readable.\n  static bool ValidateTestProperty(const std::string& xml_element,\n                                   const TestProperty& test_property);\n\n  // Adds a test part result to the list.\n  void AddTestPartResult(const TestPartResult& test_part_result);\n\n  // Returns the death test count.\n  int death_test_count() const { return death_test_count_; }\n\n  // Increments the death test count, returning the new count.\n  int increment_death_test_count() { return ++death_test_count_; }\n\n  // Clears the test part results.\n  void ClearTestPartResults();\n\n  // Clears the object.\n  void Clear();\n\n  // Protects mutable state of the property vector and of owned\n  // properties, whose values may be updated.\n  internal::Mutex test_properties_mutex_;\n\n  // The vector of TestPartResults\n  std::vector<TestPartResult> test_part_results_;\n  // The vector of TestProperties\n  std::vector<TestProperty> test_properties_;\n  // Running count of death tests.\n  int death_test_count_;\n  // The start time, in milliseconds since UNIX Epoch.\n  TimeInMillis start_timestamp_;\n  // The elapsed time, in milliseconds.\n  TimeInMillis elapsed_time_;\n\n  // We disallow copying TestResult.\n  GTEST_DISALLOW_COPY_AND_ASSIGN_(TestResult);\n};  // class TestResult\n\n// A TestInfo object stores the following information about a test:\n//\n//   Test suite name\n//   Test name\n//   Whether the test should be run\n//   A function pointer that creates the test object when invoked\n//   Test result\n//\n// The constructor of TestInfo registers itself with the UnitTest\n// singleton such that the RUN_ALL_TESTS() macro knows which tests to\n// run.\nclass GTEST_API_ TestInfo {\n public:\n  // Destructs a TestInfo object.  This function is not virtual, so\n  // don't inherit from TestInfo.\n  ~TestInfo();\n\n  // Returns the test suite name.\n  const char* test_suite_name() const { return test_suite_name_.c_str(); }\n\n// Legacy API is deprecated but still available\n#ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_\n  const char* test_case_name() const { return test_suite_name(); }\n#endif  // GTEST_REMOVE_LEGACY_TEST_CASEAPI_\n\n  // Returns the test name.\n  const char* name() const { return name_.c_str(); }\n\n  // Returns the name of the parameter type, or NULL if this is not a typed\n  // or a type-parameterized test.\n  const char* type_param() const {\n    if (type_param_.get() != nullptr) return type_param_->c_str();\n    return nullptr;\n  }\n\n  // Returns the text representation of the value parameter, or NULL if this\n  // is not a value-parameterized test.\n  const char* value_param() const {\n    if (value_param_.get() != nullptr) return value_param_->c_str();\n    return nullptr;\n  }\n\n  // Returns the file name where this test is defined.\n  const char* file() const { return location_.file.c_str(); }\n\n  // Returns the line where this test is defined.\n  int line() const { return location_.line; }\n\n  // Return true if this test should not be run because it's in another shard.\n  bool is_in_another_shard() const { return is_in_another_shard_; }\n\n  // Returns true if this test should run, that is if the test is not\n  // disabled (or it is disabled but the also_run_disabled_tests flag has\n  // been specified) and its full name matches the user-specified filter.\n  //\n  // Google Test allows the user to filter the tests by their full names.\n  // The full name of a test Bar in test suite Foo is defined as\n  // \"Foo.Bar\".  Only the tests that match the filter will run.\n  //\n  // A filter is a colon-separated list of glob (not regex) patterns,\n  // optionally followed by a '-' and a colon-separated list of\n  // negative patterns (tests to exclude).  A test is run if it\n  // matches one of the positive patterns and does not match any of\n  // the negative patterns.\n  //\n  // For example, *A*:Foo.* is a filter that matches any string that\n  // contains the character 'A' or starts with \"Foo.\".\n  bool should_run() const { return should_run_; }\n\n  // Returns true if and only if this test will appear in the XML report.\n  bool is_reportable() const {\n    // The XML report includes tests matching the filter, excluding those\n    // run in other shards.\n    return matches_filter_ && !is_in_another_shard_;\n  }\n\n  // Returns the result of the test.\n  const TestResult* result() const { return &result_; }\n\n private:\n#if GTEST_HAS_DEATH_TEST\n  friend class internal::DefaultDeathTestFactory;\n#endif  // GTEST_HAS_DEATH_TEST\n  friend class Test;\n  friend class TestSuite;\n  friend class internal::UnitTestImpl;\n  friend class internal::StreamingListenerTest;\n  friend TestInfo* internal::MakeAndRegisterTestInfo(\n      const char* test_suite_name, const char* name, const char* type_param,\n      const char* value_param, internal::CodeLocation code_location,\n      internal::TypeId fixture_class_id, internal::SetUpTestSuiteFunc set_up_tc,\n      internal::TearDownTestSuiteFunc tear_down_tc,\n      internal::TestFactoryBase* factory);\n\n  // Constructs a TestInfo object. The newly constructed instance assumes\n  // ownership of the factory object.\n  TestInfo(const std::string& test_suite_name, const std::string& name,\n           const char* a_type_param,   // NULL if not a type-parameterized test\n           const char* a_value_param,  // NULL if not a value-parameterized test\n           internal::CodeLocation a_code_location,\n           internal::TypeId fixture_class_id,\n           internal::TestFactoryBase* factory);\n\n  // Increments the number of death tests encountered in this test so\n  // far.\n  int increment_death_test_count() {\n    return result_.increment_death_test_count();\n  }\n\n  // Creates the test object, runs it, records its result, and then\n  // deletes it.\n  void Run();\n\n  // Skip and records the test result for this object.\n  void Skip();\n\n  static void ClearTestResult(TestInfo* test_info) {\n    test_info->result_.Clear();\n  }\n\n  // These fields are immutable properties of the test.\n  const std::string test_suite_name_;    // test suite name\n  const std::string name_;               // Test name\n  // Name of the parameter type, or NULL if this is not a typed or a\n  // type-parameterized test.\n  const std::unique_ptr<const ::std::string> type_param_;\n  // Text representation of the value parameter, or NULL if this is not a\n  // value-parameterized test.\n  const std::unique_ptr<const ::std::string> value_param_;\n  internal::CodeLocation location_;\n  const internal::TypeId fixture_class_id_;  // ID of the test fixture class\n  bool should_run_;           // True if and only if this test should run\n  bool is_disabled_;          // True if and only if this test is disabled\n  bool matches_filter_;       // True if this test matches the\n                              // user-specified filter.\n  bool is_in_another_shard_;  // Will be run in another shard.\n  internal::TestFactoryBase* const factory_;  // The factory that creates\n                                              // the test object\n\n  // This field is mutable and needs to be reset before running the\n  // test for the second time.\n  TestResult result_;\n\n  GTEST_DISALLOW_COPY_AND_ASSIGN_(TestInfo);\n};\n\n// A test suite, which consists of a vector of TestInfos.\n//\n// TestSuite is not copyable.\nclass GTEST_API_ TestSuite {\n public:\n  // Creates a TestSuite with the given name.\n  //\n  // TestSuite does NOT have a default constructor.  Always use this\n  // constructor to create a TestSuite object.\n  //\n  // Arguments:\n  //\n  //   name:         name of the test suite\n  //   a_type_param: the name of the test's type parameter, or NULL if\n  //                 this is not a type-parameterized test.\n  //   set_up_tc:    pointer to the function that sets up the test suite\n  //   tear_down_tc: pointer to the function that tears down the test suite\n  TestSuite(const char* name, const char* a_type_param,\n            internal::SetUpTestSuiteFunc set_up_tc,\n            internal::TearDownTestSuiteFunc tear_down_tc);\n\n  // Destructor of TestSuite.\n  virtual ~TestSuite();\n\n  // Gets the name of the TestSuite.\n  const char* name() const { return name_.c_str(); }\n\n  // Returns the name of the parameter type, or NULL if this is not a\n  // type-parameterized test suite.\n  const char* type_param() const {\n    if (type_param_.get() != nullptr) return type_param_->c_str();\n    return nullptr;\n  }\n\n  // Returns true if any test in this test suite should run.\n  bool should_run() const { return should_run_; }\n\n  // Gets the number of successful tests in this test suite.\n  int successful_test_count() const;\n\n  // Gets the number of skipped tests in this test suite.\n  int skipped_test_count() const;\n\n  // Gets the number of failed tests in this test suite.\n  int failed_test_count() const;\n\n  // Gets the number of disabled tests that will be reported in the XML report.\n  int reportable_disabled_test_count() const;\n\n  // Gets the number of disabled tests in this test suite.\n  int disabled_test_count() const;\n\n  // Gets the number of tests to be printed in the XML report.\n  int reportable_test_count() const;\n\n  // Get the number of tests in this test suite that should run.\n  int test_to_run_count() const;\n\n  // Gets the number of all tests in this test suite.\n  int total_test_count() const;\n\n  // Returns true if and only if the test suite passed.\n  bool Passed() const { return !Failed(); }\n\n  // Returns true if and only if the test suite failed.\n  bool Failed() const {\n    return failed_test_count() > 0 || ad_hoc_test_result().Failed();\n  }\n\n  // Returns the elapsed time, in milliseconds.\n  TimeInMillis elapsed_time() const { return elapsed_time_; }\n\n  // Gets the time of the test suite start, in ms from the start of the\n  // UNIX epoch.\n  TimeInMillis start_timestamp() const { return start_timestamp_; }\n\n  // Returns the i-th test among all the tests. i can range from 0 to\n  // total_test_count() - 1. If i is not in that range, returns NULL.\n  const TestInfo* GetTestInfo(int i) const;\n\n  // Returns the TestResult that holds test properties recorded during\n  // execution of SetUpTestSuite and TearDownTestSuite.\n  const TestResult& ad_hoc_test_result() const { return ad_hoc_test_result_; }\n\n private:\n  friend class Test;\n  friend class internal::UnitTestImpl;\n\n  // Gets the (mutable) vector of TestInfos in this TestSuite.\n  std::vector<TestInfo*>& test_info_list() { return test_info_list_; }\n\n  // Gets the (immutable) vector of TestInfos in this TestSuite.\n  const std::vector<TestInfo*>& test_info_list() const {\n    return test_info_list_;\n  }\n\n  // Returns the i-th test among all the tests. i can range from 0 to\n  // total_test_count() - 1. If i is not in that range, returns NULL.\n  TestInfo* GetMutableTestInfo(int i);\n\n  // Sets the should_run member.\n  void set_should_run(bool should) { should_run_ = should; }\n\n  // Adds a TestInfo to this test suite.  Will delete the TestInfo upon\n  // destruction of the TestSuite object.\n  void AddTestInfo(TestInfo * test_info);\n\n  // Clears the results of all tests in this test suite.\n  void ClearResult();\n\n  // Clears the results of all tests in the given test suite.\n  static void ClearTestSuiteResult(TestSuite* test_suite) {\n    test_suite->ClearResult();\n  }\n\n  // Runs every test in this TestSuite.\n  void Run();\n\n  // Skips the execution of tests under this TestSuite\n  void Skip();\n\n  // Runs SetUpTestSuite() for this TestSuite.  This wrapper is needed\n  // for catching exceptions thrown from SetUpTestSuite().\n  void RunSetUpTestSuite() {\n    if (set_up_tc_ != nullptr) {\n      (*set_up_tc_)();\n    }\n  }\n\n  // Runs TearDownTestSuite() for this TestSuite.  This wrapper is\n  // needed for catching exceptions thrown from TearDownTestSuite().\n  void RunTearDownTestSuite() {\n    if (tear_down_tc_ != nullptr) {\n      (*tear_down_tc_)();\n    }\n  }\n\n  // Returns true if and only if test passed.\n  static bool TestPassed(const TestInfo* test_info) {\n    return test_info->should_run() && test_info->result()->Passed();\n  }\n\n  // Returns true if and only if test skipped.\n  static bool TestSkipped(const TestInfo* test_info) {\n    return test_info->should_run() && test_info->result()->Skipped();\n  }\n\n  // Returns true if and only if test failed.\n  static bool TestFailed(const TestInfo* test_info) {\n    return test_info->should_run() && test_info->result()->Failed();\n  }\n\n  // Returns true if and only if the test is disabled and will be reported in\n  // the XML report.\n  static bool TestReportableDisabled(const TestInfo* test_info) {\n    return test_info->is_reportable() && test_info->is_disabled_;\n  }\n\n  // Returns true if and only if test is disabled.\n  static bool TestDisabled(const TestInfo* test_info) {\n    return test_info->is_disabled_;\n  }\n\n  // Returns true if and only if this test will appear in the XML report.\n  static bool TestReportable(const TestInfo* test_info) {\n    return test_info->is_reportable();\n  }\n\n  // Returns true if the given test should run.\n  static bool ShouldRunTest(const TestInfo* test_info) {\n    return test_info->should_run();\n  }\n\n  // Shuffles the tests in this test suite.\n  void ShuffleTests(internal::Random* random);\n\n  // Restores the test order to before the first shuffle.\n  void UnshuffleTests();\n\n  // Name of the test suite.\n  std::string name_;\n  // Name of the parameter type, or NULL if this is not a typed or a\n  // type-parameterized test.\n  const std::unique_ptr<const ::std::string> type_param_;\n  // The vector of TestInfos in their original order.  It owns the\n  // elements in the vector.\n  std::vector<TestInfo*> test_info_list_;\n  // Provides a level of indirection for the test list to allow easy\n  // shuffling and restoring the test order.  The i-th element in this\n  // vector is the index of the i-th test in the shuffled test list.\n  std::vector<int> test_indices_;\n  // Pointer to the function that sets up the test suite.\n  internal::SetUpTestSuiteFunc set_up_tc_;\n  // Pointer to the function that tears down the test suite.\n  internal::TearDownTestSuiteFunc tear_down_tc_;\n  // True if and only if any test in this test suite should run.\n  bool should_run_;\n  // The start time, in milliseconds since UNIX Epoch.\n  TimeInMillis start_timestamp_;\n  // Elapsed time, in milliseconds.\n  TimeInMillis elapsed_time_;\n  // Holds test properties recorded during execution of SetUpTestSuite and\n  // TearDownTestSuite.\n  TestResult ad_hoc_test_result_;\n\n  // We disallow copying TestSuites.\n  GTEST_DISALLOW_COPY_AND_ASSIGN_(TestSuite);\n};\n\n// An Environment object is capable of setting up and tearing down an\n// environment.  You should subclass this to define your own\n// environment(s).\n//\n// An Environment object does the set-up and tear-down in virtual\n// methods SetUp() and TearDown() instead of the constructor and the\n// destructor, as:\n//\n//   1. You cannot safely throw from a destructor.  This is a problem\n//      as in some cases Google Test is used where exceptions are enabled, and\n//      we may want to implement ASSERT_* using exceptions where they are\n//      available.\n//   2. You cannot use ASSERT_* directly in a constructor or\n//      destructor.\nclass Environment {\n public:\n  // The d'tor is virtual as we need to subclass Environment.\n  virtual ~Environment() {}\n\n  // Override this to define how to set up the environment.\n  virtual void SetUp() {}\n\n  // Override this to define how to tear down the environment.\n  virtual void TearDown() {}\n private:\n  // If you see an error about overriding the following function or\n  // about it being private, you have mis-spelled SetUp() as Setup().\n  struct Setup_should_be_spelled_SetUp {};\n  virtual Setup_should_be_spelled_SetUp* Setup() { return nullptr; }\n};\n\n#if GTEST_HAS_EXCEPTIONS\n\n// Exception which can be thrown from TestEventListener::OnTestPartResult.\nclass GTEST_API_ AssertionException\n    : public internal::GoogleTestFailureException {\n public:\n  explicit AssertionException(const TestPartResult& result)\n      : GoogleTestFailureException(result) {}\n};\n\n#endif  // GTEST_HAS_EXCEPTIONS\n\n// The interface for tracing execution of tests. The methods are organized in\n// the order the corresponding events are fired.\nclass TestEventListener {\n public:\n  virtual ~TestEventListener() {}\n\n  // Fired before any test activity starts.\n  virtual void OnTestProgramStart(const UnitTest& unit_test) = 0;\n\n  // Fired before each iteration of tests starts.  There may be more than\n  // one iteration if GTEST_FLAG(repeat) is set. iteration is the iteration\n  // index, starting from 0.\n  virtual void OnTestIterationStart(const UnitTest& unit_test,\n                                    int iteration) = 0;\n\n  // Fired before environment set-up for each iteration of tests starts.\n  virtual void OnEnvironmentsSetUpStart(const UnitTest& unit_test) = 0;\n\n  // Fired after environment set-up for each iteration of tests ends.\n  virtual void OnEnvironmentsSetUpEnd(const UnitTest& unit_test) = 0;\n\n  // Fired before the test suite starts.\n  virtual void OnTestSuiteStart(const TestSuite& /*test_suite*/) {}\n\n  //  Legacy API is deprecated but still available\n#ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_\n  virtual void OnTestCaseStart(const TestCase& /*test_case*/) {}\n#endif  //  GTEST_REMOVE_LEGACY_TEST_CASEAPI_\n\n  // Fired before the test starts.\n  virtual void OnTestStart(const TestInfo& test_info) = 0;\n\n  // Fired after a failed assertion or a SUCCEED() invocation.\n  // If you want to throw an exception from this function to skip to the next\n  // TEST, it must be AssertionException defined above, or inherited from it.\n  virtual void OnTestPartResult(const TestPartResult& test_part_result) = 0;\n\n  // Fired after the test ends.\n  virtual void OnTestEnd(const TestInfo& test_info) = 0;\n\n  // Fired after the test suite ends.\n  virtual void OnTestSuiteEnd(const TestSuite& /*test_suite*/) {}\n\n//  Legacy API is deprecated but still available\n#ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_\n  virtual void OnTestCaseEnd(const TestCase& /*test_case*/) {}\n#endif  //  GTEST_REMOVE_LEGACY_TEST_CASEAPI_\n\n  // Fired before environment tear-down for each iteration of tests starts.\n  virtual void OnEnvironmentsTearDownStart(const UnitTest& unit_test) = 0;\n\n  // Fired after environment tear-down for each iteration of tests ends.\n  virtual void OnEnvironmentsTearDownEnd(const UnitTest& unit_test) = 0;\n\n  // Fired after each iteration of tests finishes.\n  virtual void OnTestIterationEnd(const UnitTest& unit_test,\n                                  int iteration) = 0;\n\n  // Fired after all test activities have ended.\n  virtual void OnTestProgramEnd(const UnitTest& unit_test) = 0;\n};\n\n// The convenience class for users who need to override just one or two\n// methods and are not concerned that a possible change to a signature of\n// the methods they override will not be caught during the build.  For\n// comments about each method please see the definition of TestEventListener\n// above.\nclass EmptyTestEventListener : public TestEventListener {\n public:\n  void OnTestProgramStart(const UnitTest& /*unit_test*/) override {}\n  void OnTestIterationStart(const UnitTest& /*unit_test*/,\n                            int /*iteration*/) override {}\n  void OnEnvironmentsSetUpStart(const UnitTest& /*unit_test*/) override {}\n  void OnEnvironmentsSetUpEnd(const UnitTest& /*unit_test*/) override {}\n  void OnTestSuiteStart(const TestSuite& /*test_suite*/) override {}\n//  Legacy API is deprecated but still available\n#ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_\n  void OnTestCaseStart(const TestCase& /*test_case*/) override {}\n#endif  //  GTEST_REMOVE_LEGACY_TEST_CASEAPI_\n\n  void OnTestStart(const TestInfo& /*test_info*/) override {}\n  void OnTestPartResult(const TestPartResult& /*test_part_result*/) override {}\n  void OnTestEnd(const TestInfo& /*test_info*/) override {}\n  void OnTestSuiteEnd(const TestSuite& /*test_suite*/) override {}\n#ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_\n  void OnTestCaseEnd(const TestCase& /*test_case*/) override {}\n#endif  //  GTEST_REMOVE_LEGACY_TEST_CASEAPI_\n\n  void OnEnvironmentsTearDownStart(const UnitTest& /*unit_test*/) override {}\n  void OnEnvironmentsTearDownEnd(const UnitTest& /*unit_test*/) override {}\n  void OnTestIterationEnd(const UnitTest& /*unit_test*/,\n                          int /*iteration*/) override {}\n  void OnTestProgramEnd(const UnitTest& /*unit_test*/) override {}\n};\n\n// TestEventListeners lets users add listeners to track events in Google Test.\nclass GTEST_API_ TestEventListeners {\n public:\n  TestEventListeners();\n  ~TestEventListeners();\n\n  // Appends an event listener to the end of the list. Google Test assumes\n  // the ownership of the listener (i.e. it will delete the listener when\n  // the test program finishes).\n  void Append(TestEventListener* listener);\n\n  // Removes the given event listener from the list and returns it.  It then\n  // becomes the caller's responsibility to delete the listener. Returns\n  // NULL if the listener is not found in the list.\n  TestEventListener* Release(TestEventListener* listener);\n\n  // Returns the standard listener responsible for the default console\n  // output.  Can be removed from the listeners list to shut down default\n  // console output.  Note that removing this object from the listener list\n  // with Release transfers its ownership to the caller and makes this\n  // function return NULL the next time.\n  TestEventListener* default_result_printer() const {\n    return default_result_printer_;\n  }\n\n  // Returns the standard listener responsible for the default XML output\n  // controlled by the --gtest_output=xml flag.  Can be removed from the\n  // listeners list by users who want to shut down the default XML output\n  // controlled by this flag and substitute it with custom one.  Note that\n  // removing this object from the listener list with Release transfers its\n  // ownership to the caller and makes this function return NULL the next\n  // time.\n  TestEventListener* default_xml_generator() const {\n    return default_xml_generator_;\n  }\n\n private:\n  friend class TestSuite;\n  friend class TestInfo;\n  friend class internal::DefaultGlobalTestPartResultReporter;\n  friend class internal::NoExecDeathTest;\n  friend class internal::TestEventListenersAccessor;\n  friend class internal::UnitTestImpl;\n\n  // Returns repeater that broadcasts the TestEventListener events to all\n  // subscribers.\n  TestEventListener* repeater();\n\n  // Sets the default_result_printer attribute to the provided listener.\n  // The listener is also added to the listener list and previous\n  // default_result_printer is removed from it and deleted. The listener can\n  // also be NULL in which case it will not be added to the list. Does\n  // nothing if the previous and the current listener objects are the same.\n  void SetDefaultResultPrinter(TestEventListener* listener);\n\n  // Sets the default_xml_generator attribute to the provided listener.  The\n  // listener is also added to the listener list and previous\n  // default_xml_generator is removed from it and deleted. The listener can\n  // also be NULL in which case it will not be added to the list. Does\n  // nothing if the previous and the current listener objects are the same.\n  void SetDefaultXmlGenerator(TestEventListener* listener);\n\n  // Controls whether events will be forwarded by the repeater to the\n  // listeners in the list.\n  bool EventForwardingEnabled() const;\n  void SuppressEventForwarding();\n\n  // The actual list of listeners.\n  internal::TestEventRepeater* repeater_;\n  // Listener responsible for the standard result output.\n  TestEventListener* default_result_printer_;\n  // Listener responsible for the creation of the XML output file.\n  TestEventListener* default_xml_generator_;\n\n  // We disallow copying TestEventListeners.\n  GTEST_DISALLOW_COPY_AND_ASSIGN_(TestEventListeners);\n};\n\n// A UnitTest consists of a vector of TestSuites.\n//\n// This is a singleton class.  The only instance of UnitTest is\n// created when UnitTest::GetInstance() is first called.  This\n// instance is never deleted.\n//\n// UnitTest is not copyable.\n//\n// This class is thread-safe as long as the methods are called\n// according to their specification.\nclass GTEST_API_ UnitTest {\n public:\n  // Gets the singleton UnitTest object.  The first time this method\n  // is called, a UnitTest object is constructed and returned.\n  // Consecutive calls will return the same object.\n  static UnitTest* GetInstance();\n\n  // Runs all tests in this UnitTest object and prints the result.\n  // Returns 0 if successful, or 1 otherwise.\n  //\n  // This method can only be called from the main thread.\n  //\n  // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM.\n  int Run() GTEST_MUST_USE_RESULT_;\n\n  // Returns the working directory when the first TEST() or TEST_F()\n  // was executed.  The UnitTest object owns the string.\n  const char* original_working_dir() const;\n\n  // Returns the TestSuite object for the test that's currently running,\n  // or NULL if no test is running.\n  const TestSuite* current_test_suite() const GTEST_LOCK_EXCLUDED_(mutex_);\n\n// Legacy API is still available but deprecated\n#ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_\n  const TestCase* current_test_case() const GTEST_LOCK_EXCLUDED_(mutex_);\n#endif\n\n  // Returns the TestInfo object for the test that's currently running,\n  // or NULL if no test is running.\n  const TestInfo* current_test_info() const\n      GTEST_LOCK_EXCLUDED_(mutex_);\n\n  // Returns the random seed used at the start of the current test run.\n  int random_seed() const;\n\n  // Returns the ParameterizedTestSuiteRegistry object used to keep track of\n  // value-parameterized tests and instantiate and register them.\n  //\n  // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM.\n  internal::ParameterizedTestSuiteRegistry& parameterized_test_registry()\n      GTEST_LOCK_EXCLUDED_(mutex_);\n\n  // Gets the number of successful test suites.\n  int successful_test_suite_count() const;\n\n  // Gets the number of failed test suites.\n  int failed_test_suite_count() const;\n\n  // Gets the number of all test suites.\n  int total_test_suite_count() const;\n\n  // Gets the number of all test suites that contain at least one test\n  // that should run.\n  int test_suite_to_run_count() const;\n\n  //  Legacy API is deprecated but still available\n#ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_\n  int successful_test_case_count() const;\n  int failed_test_case_count() const;\n  int total_test_case_count() const;\n  int test_case_to_run_count() const;\n#endif  //  GTEST_REMOVE_LEGACY_TEST_CASEAPI_\n\n  // Gets the number of successful tests.\n  int successful_test_count() const;\n\n  // Gets the number of skipped tests.\n  int skipped_test_count() const;\n\n  // Gets the number of failed tests.\n  int failed_test_count() const;\n\n  // Gets the number of disabled tests that will be reported in the XML report.\n  int reportable_disabled_test_count() const;\n\n  // Gets the number of disabled tests.\n  int disabled_test_count() const;\n\n  // Gets the number of tests to be printed in the XML report.\n  int reportable_test_count() const;\n\n  // Gets the number of all tests.\n  int total_test_count() const;\n\n  // Gets the number of tests that should run.\n  int test_to_run_count() const;\n\n  // Gets the time of the test program start, in ms from the start of the\n  // UNIX epoch.\n  TimeInMillis start_timestamp() const;\n\n  // Gets the elapsed time, in milliseconds.\n  TimeInMillis elapsed_time() const;\n\n  // Returns true if and only if the unit test passed (i.e. all test suites\n  // passed).\n  bool Passed() const;\n\n  // Returns true if and only if the unit test failed (i.e. some test suite\n  // failed or something outside of all tests failed).\n  bool Failed() const;\n\n  // Gets the i-th test suite among all the test suites. i can range from 0 to\n  // total_test_suite_count() - 1. If i is not in that range, returns NULL.\n  const TestSuite* GetTestSuite(int i) const;\n\n//  Legacy API is deprecated but still available\n#ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_\n  const TestCase* GetTestCase(int i) const;\n#endif  //  GTEST_REMOVE_LEGACY_TEST_CASEAPI_\n\n  // Returns the TestResult containing information on test failures and\n  // properties logged outside of individual test suites.\n  const TestResult& ad_hoc_test_result() const;\n\n  // Returns the list of event listeners that can be used to track events\n  // inside Google Test.\n  TestEventListeners& listeners();\n\n private:\n  // Registers and returns a global test environment.  When a test\n  // program is run, all global test environments will be set-up in\n  // the order they were registered.  After all tests in the program\n  // have finished, all global test environments will be torn-down in\n  // the *reverse* order they were registered.\n  //\n  // The UnitTest object takes ownership of the given environment.\n  //\n  // This method can only be called from the main thread.\n  Environment* AddEnvironment(Environment* env);\n\n  // Adds a TestPartResult to the current TestResult object.  All\n  // Google Test assertion macros (e.g. ASSERT_TRUE, EXPECT_EQ, etc)\n  // eventually call this to report their results.  The user code\n  // should use the assertion macros instead of calling this directly.\n  void AddTestPartResult(TestPartResult::Type result_type,\n                         const char* file_name,\n                         int line_number,\n                         const std::string& message,\n                         const std::string& os_stack_trace)\n      GTEST_LOCK_EXCLUDED_(mutex_);\n\n  // Adds a TestProperty to the current TestResult object when invoked from\n  // inside a test, to current TestSuite's ad_hoc_test_result_ when invoked\n  // from SetUpTestSuite or TearDownTestSuite, or to the global property set\n  // when invoked elsewhere.  If the result already contains a property with\n  // the same key, the value will be updated.\n  void RecordProperty(const std::string& key, const std::string& value);\n\n  // Gets the i-th test suite among all the test suites. i can range from 0 to\n  // total_test_suite_count() - 1. If i is not in that range, returns NULL.\n  TestSuite* GetMutableTestSuite(int i);\n\n  // Accessors for the implementation object.\n  internal::UnitTestImpl* impl() { return impl_; }\n  const internal::UnitTestImpl* impl() const { return impl_; }\n\n  // These classes and functions are friends as they need to access private\n  // members of UnitTest.\n  friend class ScopedTrace;\n  friend class Test;\n  friend class internal::AssertHelper;\n  friend class internal::StreamingListenerTest;\n  friend class internal::UnitTestRecordPropertyTestHelper;\n  friend Environment* AddGlobalTestEnvironment(Environment* env);\n  friend std::set<std::string>* internal::GetIgnoredParameterizedTestSuites();\n  friend internal::UnitTestImpl* internal::GetUnitTestImpl();\n  friend void internal::ReportFailureInUnknownLocation(\n      TestPartResult::Type result_type,\n      const std::string& message);\n\n  // Creates an empty UnitTest.\n  UnitTest();\n\n  // D'tor\n  virtual ~UnitTest();\n\n  // Pushes a trace defined by SCOPED_TRACE() on to the per-thread\n  // Google Test trace stack.\n  void PushGTestTrace(const internal::TraceInfo& trace)\n      GTEST_LOCK_EXCLUDED_(mutex_);\n\n  // Pops a trace from the per-thread Google Test trace stack.\n  void PopGTestTrace()\n      GTEST_LOCK_EXCLUDED_(mutex_);\n\n  // Protects mutable state in *impl_.  This is mutable as some const\n  // methods need to lock it too.\n  mutable internal::Mutex mutex_;\n\n  // Opaque implementation object.  This field is never changed once\n  // the object is constructed.  We don't mark it as const here, as\n  // doing so will cause a warning in the constructor of UnitTest.\n  // Mutable state in *impl_ is protected by mutex_.\n  internal::UnitTestImpl* impl_;\n\n  // We disallow copying UnitTest.\n  GTEST_DISALLOW_COPY_AND_ASSIGN_(UnitTest);\n};\n\n// A convenient wrapper for adding an environment for the test\n// program.\n//\n// You should call this before RUN_ALL_TESTS() is called, probably in\n// main().  If you use gtest_main, you need to call this before main()\n// starts for it to take effect.  For example, you can define a global\n// variable like this:\n//\n//   testing::Environment* const foo_env =\n//       testing::AddGlobalTestEnvironment(new FooEnvironment);\n//\n// However, we strongly recommend you to write your own main() and\n// call AddGlobalTestEnvironment() there, as relying on initialization\n// of global variables makes the code harder to read and may cause\n// problems when you register multiple environments from different\n// translation units and the environments have dependencies among them\n// (remember that the compiler doesn't guarantee the order in which\n// global variables from different translation units are initialized).\ninline Environment* AddGlobalTestEnvironment(Environment* env) {\n  return UnitTest::GetInstance()->AddEnvironment(env);\n}\n\n// Initializes Google Test.  This must be called before calling\n// RUN_ALL_TESTS().  In particular, it parses a command line for the\n// flags that Google Test recognizes.  Whenever a Google Test flag is\n// seen, it is removed from argv, and *argc is decremented.\n//\n// No value is returned.  Instead, the Google Test flag variables are\n// updated.\n//\n// Calling the function for the second time has no user-visible effect.\nGTEST_API_ void InitGoogleTest(int* argc, char** argv);\n\n// This overloaded version can be used in Windows programs compiled in\n// UNICODE mode.\nGTEST_API_ void InitGoogleTest(int* argc, wchar_t** argv);\n\n// This overloaded version can be used on Arduino/embedded platforms where\n// there is no argc/argv.\nGTEST_API_ void InitGoogleTest();\n\nnamespace internal {\n\n// Separate the error generating code from the code path to reduce the stack\n// frame size of CmpHelperEQ. This helps reduce the overhead of some sanitizers\n// when calling EXPECT_* in a tight loop.\ntemplate <typename T1, typename T2>\nAssertionResult CmpHelperEQFailure(const char* lhs_expression,\n                                   const char* rhs_expression,\n                                   const T1& lhs, const T2& rhs) {\n  return EqFailure(lhs_expression,\n                   rhs_expression,\n                   FormatForComparisonFailureMessage(lhs, rhs),\n                   FormatForComparisonFailureMessage(rhs, lhs),\n                   false);\n}\n\n// This block of code defines operator==/!=\n// to block lexical scope lookup.\n// It prevents using invalid operator==/!= defined at namespace scope.\nstruct faketype {};\ninline bool operator==(faketype, faketype) { return true; }\ninline bool operator!=(faketype, faketype) { return false; }\n\n// The helper function for {ASSERT|EXPECT}_EQ.\ntemplate <typename T1, typename T2>\nAssertionResult CmpHelperEQ(const char* lhs_expression,\n                            const char* rhs_expression,\n                            const T1& lhs,\n                            const T2& rhs) {\n  if (lhs == rhs) {\n    return AssertionSuccess();\n  }\n\n  return CmpHelperEQFailure(lhs_expression, rhs_expression, lhs, rhs);\n}\n\nclass EqHelper {\n public:\n  // This templatized version is for the general case.\n  template <\n      typename T1, typename T2,\n      // Disable this overload for cases where one argument is a pointer\n      // and the other is the null pointer constant.\n      typename std::enable_if<!std::is_integral<T1>::value ||\n                              !std::is_pointer<T2>::value>::type* = nullptr>\n  static AssertionResult Compare(const char* lhs_expression,\n                                 const char* rhs_expression, const T1& lhs,\n                                 const T2& rhs) {\n    return CmpHelperEQ(lhs_expression, rhs_expression, lhs, rhs);\n  }\n\n  // With this overloaded version, we allow anonymous enums to be used\n  // in {ASSERT|EXPECT}_EQ when compiled with gcc 4, as anonymous\n  // enums can be implicitly cast to BiggestInt.\n  //\n  // Even though its body looks the same as the above version, we\n  // cannot merge the two, as it will make anonymous enums unhappy.\n  static AssertionResult Compare(const char* lhs_expression,\n                                 const char* rhs_expression,\n                                 BiggestInt lhs,\n                                 BiggestInt rhs) {\n    return CmpHelperEQ(lhs_expression, rhs_expression, lhs, rhs);\n  }\n\n  template <typename T>\n  static AssertionResult Compare(\n      const char* lhs_expression, const char* rhs_expression,\n      // Handle cases where '0' is used as a null pointer literal.\n      std::nullptr_t /* lhs */, T* rhs) {\n    // We already know that 'lhs' is a null pointer.\n    return CmpHelperEQ(lhs_expression, rhs_expression, static_cast<T*>(nullptr),\n                       rhs);\n  }\n};\n\n// Separate the error generating code from the code path to reduce the stack\n// frame size of CmpHelperOP. This helps reduce the overhead of some sanitizers\n// when calling EXPECT_OP in a tight loop.\ntemplate <typename T1, typename T2>\nAssertionResult CmpHelperOpFailure(const char* expr1, const char* expr2,\n                                   const T1& val1, const T2& val2,\n                                   const char* op) {\n  return AssertionFailure()\n         << \"Expected: (\" << expr1 << \") \" << op << \" (\" << expr2\n         << \"), actual: \" << FormatForComparisonFailureMessage(val1, val2)\n         << \" vs \" << FormatForComparisonFailureMessage(val2, val1);\n}\n\n// A macro for implementing the helper functions needed to implement\n// ASSERT_?? and EXPECT_??.  It is here just to avoid copy-and-paste\n// of similar code.\n//\n// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM.\n\n#define GTEST_IMPL_CMP_HELPER_(op_name, op)\\\ntemplate <typename T1, typename T2>\\\nAssertionResult CmpHelper##op_name(const char* expr1, const char* expr2, \\\n                                   const T1& val1, const T2& val2) {\\\n  if (val1 op val2) {\\\n    return AssertionSuccess();\\\n  } else {\\\n    return CmpHelperOpFailure(expr1, expr2, val1, val2, #op);\\\n  }\\\n}\n\n// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM.\n\n// Implements the helper function for {ASSERT|EXPECT}_NE\nGTEST_IMPL_CMP_HELPER_(NE, !=)\n// Implements the helper function for {ASSERT|EXPECT}_LE\nGTEST_IMPL_CMP_HELPER_(LE, <=)\n// Implements the helper function for {ASSERT|EXPECT}_LT\nGTEST_IMPL_CMP_HELPER_(LT, <)\n// Implements the helper function for {ASSERT|EXPECT}_GE\nGTEST_IMPL_CMP_HELPER_(GE, >=)\n// Implements the helper function for {ASSERT|EXPECT}_GT\nGTEST_IMPL_CMP_HELPER_(GT, >)\n\n#undef GTEST_IMPL_CMP_HELPER_\n\n// The helper function for {ASSERT|EXPECT}_STREQ.\n//\n// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM.\nGTEST_API_ AssertionResult CmpHelperSTREQ(const char* s1_expression,\n                                          const char* s2_expression,\n                                          const char* s1,\n                                          const char* s2);\n\n// The helper function for {ASSERT|EXPECT}_STRCASEEQ.\n//\n// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM.\nGTEST_API_ AssertionResult CmpHelperSTRCASEEQ(const char* s1_expression,\n                                              const char* s2_expression,\n                                              const char* s1,\n                                              const char* s2);\n\n// The helper function for {ASSERT|EXPECT}_STRNE.\n//\n// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM.\nGTEST_API_ AssertionResult CmpHelperSTRNE(const char* s1_expression,\n                                          const char* s2_expression,\n                                          const char* s1,\n                                          const char* s2);\n\n// The helper function for {ASSERT|EXPECT}_STRCASENE.\n//\n// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM.\nGTEST_API_ AssertionResult CmpHelperSTRCASENE(const char* s1_expression,\n                                              const char* s2_expression,\n                                              const char* s1,\n                                              const char* s2);\n\n\n// Helper function for *_STREQ on wide strings.\n//\n// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM.\nGTEST_API_ AssertionResult CmpHelperSTREQ(const char* s1_expression,\n                                          const char* s2_expression,\n                                          const wchar_t* s1,\n                                          const wchar_t* s2);\n\n// Helper function for *_STRNE on wide strings.\n//\n// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM.\nGTEST_API_ AssertionResult CmpHelperSTRNE(const char* s1_expression,\n                                          const char* s2_expression,\n                                          const wchar_t* s1,\n                                          const wchar_t* s2);\n\n}  // namespace internal\n\n// IsSubstring() and IsNotSubstring() are intended to be used as the\n// first argument to {EXPECT,ASSERT}_PRED_FORMAT2(), not by\n// themselves.  They check whether needle is a substring of haystack\n// (NULL is considered a substring of itself only), and return an\n// appropriate error message when they fail.\n//\n// The {needle,haystack}_expr arguments are the stringified\n// expressions that generated the two real arguments.\nGTEST_API_ AssertionResult IsSubstring(\n    const char* needle_expr, const char* haystack_expr,\n    const char* needle, const char* haystack);\nGTEST_API_ AssertionResult IsSubstring(\n    const char* needle_expr, const char* haystack_expr,\n    const wchar_t* needle, const wchar_t* haystack);\nGTEST_API_ AssertionResult IsNotSubstring(\n    const char* needle_expr, const char* haystack_expr,\n    const char* needle, const char* haystack);\nGTEST_API_ AssertionResult IsNotSubstring(\n    const char* needle_expr, const char* haystack_expr,\n    const wchar_t* needle, const wchar_t* haystack);\nGTEST_API_ AssertionResult IsSubstring(\n    const char* needle_expr, const char* haystack_expr,\n    const ::std::string& needle, const ::std::string& haystack);\nGTEST_API_ AssertionResult IsNotSubstring(\n    const char* needle_expr, const char* haystack_expr,\n    const ::std::string& needle, const ::std::string& haystack);\n\n#if GTEST_HAS_STD_WSTRING\nGTEST_API_ AssertionResult IsSubstring(\n    const char* needle_expr, const char* haystack_expr,\n    const ::std::wstring& needle, const ::std::wstring& haystack);\nGTEST_API_ AssertionResult IsNotSubstring(\n    const char* needle_expr, const char* haystack_expr,\n    const ::std::wstring& needle, const ::std::wstring& haystack);\n#endif  // GTEST_HAS_STD_WSTRING\n\nnamespace internal {\n\n// Helper template function for comparing floating-points.\n//\n// Template parameter:\n//\n//   RawType: the raw floating-point type (either float or double)\n//\n// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM.\ntemplate <typename RawType>\nAssertionResult CmpHelperFloatingPointEQ(const char* lhs_expression,\n                                         const char* rhs_expression,\n                                         RawType lhs_value,\n                                         RawType rhs_value) {\n  const FloatingPoint<RawType> lhs(lhs_value), rhs(rhs_value);\n\n  if (lhs.AlmostEquals(rhs)) {\n    return AssertionSuccess();\n  }\n\n  ::std::stringstream lhs_ss;\n  lhs_ss << std::setprecision(std::numeric_limits<RawType>::digits10 + 2)\n         << lhs_value;\n\n  ::std::stringstream rhs_ss;\n  rhs_ss << std::setprecision(std::numeric_limits<RawType>::digits10 + 2)\n         << rhs_value;\n\n  return EqFailure(lhs_expression,\n                   rhs_expression,\n                   StringStreamToString(&lhs_ss),\n                   StringStreamToString(&rhs_ss),\n                   false);\n}\n\n// Helper function for implementing ASSERT_NEAR.\n//\n// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM.\nGTEST_API_ AssertionResult DoubleNearPredFormat(const char* expr1,\n                                                const char* expr2,\n                                                const char* abs_error_expr,\n                                                double val1,\n                                                double val2,\n                                                double abs_error);\n\n// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE.\n// A class that enables one to stream messages to assertion macros\nclass GTEST_API_ AssertHelper {\n public:\n  // Constructor.\n  AssertHelper(TestPartResult::Type type,\n               const char* file,\n               int line,\n               const char* message);\n  ~AssertHelper();\n\n  // Message assignment is a semantic trick to enable assertion\n  // streaming; see the GTEST_MESSAGE_ macro below.\n  void operator=(const Message& message) const;\n\n private:\n  // We put our data in a struct so that the size of the AssertHelper class can\n  // be as small as possible.  This is important because gcc is incapable of\n  // re-using stack space even for temporary variables, so every EXPECT_EQ\n  // reserves stack space for another AssertHelper.\n  struct AssertHelperData {\n    AssertHelperData(TestPartResult::Type t,\n                     const char* srcfile,\n                     int line_num,\n                     const char* msg)\n        : type(t), file(srcfile), line(line_num), message(msg) { }\n\n    TestPartResult::Type const type;\n    const char* const file;\n    int const line;\n    std::string const message;\n\n   private:\n    GTEST_DISALLOW_COPY_AND_ASSIGN_(AssertHelperData);\n  };\n\n  AssertHelperData* const data_;\n\n  GTEST_DISALLOW_COPY_AND_ASSIGN_(AssertHelper);\n};\n\n}  // namespace internal\n\n// The pure interface class that all value-parameterized tests inherit from.\n// A value-parameterized class must inherit from both ::testing::Test and\n// ::testing::WithParamInterface. In most cases that just means inheriting\n// from ::testing::TestWithParam, but more complicated test hierarchies\n// may need to inherit from Test and WithParamInterface at different levels.\n//\n// This interface has support for accessing the test parameter value via\n// the GetParam() method.\n//\n// Use it with one of the parameter generator defining functions, like Range(),\n// Values(), ValuesIn(), Bool(), and Combine().\n//\n// class FooTest : public ::testing::TestWithParam<int> {\n//  protected:\n//   FooTest() {\n//     // Can use GetParam() here.\n//   }\n//   ~FooTest() override {\n//     // Can use GetParam() here.\n//   }\n//   void SetUp() override {\n//     // Can use GetParam() here.\n//   }\n//   void TearDown override {\n//     // Can use GetParam() here.\n//   }\n// };\n// TEST_P(FooTest, DoesBar) {\n//   // Can use GetParam() method here.\n//   Foo foo;\n//   ASSERT_TRUE(foo.DoesBar(GetParam()));\n// }\n// INSTANTIATE_TEST_SUITE_P(OneToTenRange, FooTest, ::testing::Range(1, 10));\n\ntemplate <typename T>\nclass WithParamInterface {\n public:\n  typedef T ParamType;\n  virtual ~WithParamInterface() {}\n\n  // The current parameter value. Is also available in the test fixture's\n  // constructor.\n  static const ParamType& GetParam() {\n    GTEST_CHECK_(parameter_ != nullptr)\n        << \"GetParam() can only be called inside a value-parameterized test \"\n        << \"-- did you intend to write TEST_P instead of TEST_F?\";\n    return *parameter_;\n  }\n\n private:\n  // Sets parameter value. The caller is responsible for making sure the value\n  // remains alive and unchanged throughout the current test.\n  static void SetParam(const ParamType* parameter) {\n    parameter_ = parameter;\n  }\n\n  // Static value used for accessing parameter during a test lifetime.\n  static const ParamType* parameter_;\n\n  // TestClass must be a subclass of WithParamInterface<T> and Test.\n  template <class TestClass> friend class internal::ParameterizedTestFactory;\n};\n\ntemplate <typename T>\nconst T* WithParamInterface<T>::parameter_ = nullptr;\n\n// Most value-parameterized classes can ignore the existence of\n// WithParamInterface, and can just inherit from ::testing::TestWithParam.\n\ntemplate <typename T>\nclass TestWithParam : public Test, public WithParamInterface<T> {\n};\n\n// Macros for indicating success/failure in test code.\n\n// Skips test in runtime.\n// Skipping test aborts current function.\n// Skipped tests are neither successful nor failed.\n#define GTEST_SKIP() GTEST_SKIP_(\"\")\n\n// ADD_FAILURE unconditionally adds a failure to the current test.\n// SUCCEED generates a success - it doesn't automatically make the\n// current test successful, as a test is only successful when it has\n// no failure.\n//\n// EXPECT_* verifies that a certain condition is satisfied.  If not,\n// it behaves like ADD_FAILURE.  In particular:\n//\n//   EXPECT_TRUE  verifies that a Boolean condition is true.\n//   EXPECT_FALSE verifies that a Boolean condition is false.\n//\n// FAIL and ASSERT_* are similar to ADD_FAILURE and EXPECT_*, except\n// that they will also abort the current function on failure.  People\n// usually want the fail-fast behavior of FAIL and ASSERT_*, but those\n// writing data-driven tests often find themselves using ADD_FAILURE\n// and EXPECT_* more.\n\n// Generates a nonfatal failure with a generic message.\n#define ADD_FAILURE() GTEST_NONFATAL_FAILURE_(\"Failed\")\n\n// Generates a nonfatal failure at the given source file location with\n// a generic message.\n#define ADD_FAILURE_AT(file, line) \\\n  GTEST_MESSAGE_AT_(file, line, \"Failed\", \\\n                    ::testing::TestPartResult::kNonFatalFailure)\n\n// Generates a fatal failure with a generic message.\n#define GTEST_FAIL() GTEST_FATAL_FAILURE_(\"Failed\")\n\n// Like GTEST_FAIL(), but at the given source file location.\n#define GTEST_FAIL_AT(file, line)         \\\n  GTEST_MESSAGE_AT_(file, line, \"Failed\", \\\n                    ::testing::TestPartResult::kFatalFailure)\n\n// Define this macro to 1 to omit the definition of FAIL(), which is a\n// generic name and clashes with some other libraries.\n#if !GTEST_DONT_DEFINE_FAIL\n# define FAIL() GTEST_FAIL()\n#endif\n\n// Generates a success with a generic message.\n#define GTEST_SUCCEED() GTEST_SUCCESS_(\"Succeeded\")\n\n// Define this macro to 1 to omit the definition of SUCCEED(), which\n// is a generic name and clashes with some other libraries.\n#if !GTEST_DONT_DEFINE_SUCCEED\n# define SUCCEED() GTEST_SUCCEED()\n#endif\n\n// Macros for testing exceptions.\n//\n//    * {ASSERT|EXPECT}_THROW(statement, expected_exception):\n//         Tests that the statement throws the expected exception.\n//    * {ASSERT|EXPECT}_NO_THROW(statement):\n//         Tests that the statement doesn't throw any exception.\n//    * {ASSERT|EXPECT}_ANY_THROW(statement):\n//         Tests that the statement throws an exception.\n\n#define EXPECT_THROW(statement, expected_exception) \\\n  GTEST_TEST_THROW_(statement, expected_exception, GTEST_NONFATAL_FAILURE_)\n#define EXPECT_NO_THROW(statement) \\\n  GTEST_TEST_NO_THROW_(statement, GTEST_NONFATAL_FAILURE_)\n#define EXPECT_ANY_THROW(statement) \\\n  GTEST_TEST_ANY_THROW_(statement, GTEST_NONFATAL_FAILURE_)\n#define ASSERT_THROW(statement, expected_exception) \\\n  GTEST_TEST_THROW_(statement, expected_exception, GTEST_FATAL_FAILURE_)\n#define ASSERT_NO_THROW(statement) \\\n  GTEST_TEST_NO_THROW_(statement, GTEST_FATAL_FAILURE_)\n#define ASSERT_ANY_THROW(statement) \\\n  GTEST_TEST_ANY_THROW_(statement, GTEST_FATAL_FAILURE_)\n\n// Boolean assertions. Condition can be either a Boolean expression or an\n// AssertionResult. For more information on how to use AssertionResult with\n// these macros see comments on that class.\n#define GTEST_EXPECT_TRUE(condition) \\\n  GTEST_TEST_BOOLEAN_(condition, #condition, false, true, \\\n                      GTEST_NONFATAL_FAILURE_)\n#define GTEST_EXPECT_FALSE(condition) \\\n  GTEST_TEST_BOOLEAN_(!(condition), #condition, true, false, \\\n                      GTEST_NONFATAL_FAILURE_)\n#define GTEST_ASSERT_TRUE(condition) \\\n  GTEST_TEST_BOOLEAN_(condition, #condition, false, true, \\\n                      GTEST_FATAL_FAILURE_)\n#define GTEST_ASSERT_FALSE(condition) \\\n  GTEST_TEST_BOOLEAN_(!(condition), #condition, true, false, \\\n                      GTEST_FATAL_FAILURE_)\n\n// Define these macros to 1 to omit the definition of the corresponding\n// EXPECT or ASSERT, which clashes with some users' own code.\n\n#if !GTEST_DONT_DEFINE_EXPECT_TRUE\n#define EXPECT_TRUE(condition) GTEST_EXPECT_TRUE(condition)\n#endif\n\n#if !GTEST_DONT_DEFINE_EXPECT_FALSE\n#define EXPECT_FALSE(condition) GTEST_EXPECT_FALSE(condition)\n#endif\n\n#if !GTEST_DONT_DEFINE_ASSERT_TRUE\n#define ASSERT_TRUE(condition) GTEST_ASSERT_TRUE(condition)\n#endif\n\n#if !GTEST_DONT_DEFINE_ASSERT_FALSE\n#define ASSERT_FALSE(condition) GTEST_ASSERT_FALSE(condition)\n#endif\n\n// Macros for testing equalities and inequalities.\n//\n//    * {ASSERT|EXPECT}_EQ(v1, v2): Tests that v1 == v2\n//    * {ASSERT|EXPECT}_NE(v1, v2): Tests that v1 != v2\n//    * {ASSERT|EXPECT}_LT(v1, v2): Tests that v1 < v2\n//    * {ASSERT|EXPECT}_LE(v1, v2): Tests that v1 <= v2\n//    * {ASSERT|EXPECT}_GT(v1, v2): Tests that v1 > v2\n//    * {ASSERT|EXPECT}_GE(v1, v2): Tests that v1 >= v2\n//\n// When they are not, Google Test prints both the tested expressions and\n// their actual values.  The values must be compatible built-in types,\n// or you will get a compiler error.  By \"compatible\" we mean that the\n// values can be compared by the respective operator.\n//\n// Note:\n//\n//   1. It is possible to make a user-defined type work with\n//   {ASSERT|EXPECT}_??(), but that requires overloading the\n//   comparison operators and is thus discouraged by the Google C++\n//   Usage Guide.  Therefore, you are advised to use the\n//   {ASSERT|EXPECT}_TRUE() macro to assert that two objects are\n//   equal.\n//\n//   2. The {ASSERT|EXPECT}_??() macros do pointer comparisons on\n//   pointers (in particular, C strings).  Therefore, if you use it\n//   with two C strings, you are testing how their locations in memory\n//   are related, not how their content is related.  To compare two C\n//   strings by content, use {ASSERT|EXPECT}_STR*().\n//\n//   3. {ASSERT|EXPECT}_EQ(v1, v2) is preferred to\n//   {ASSERT|EXPECT}_TRUE(v1 == v2), as the former tells you\n//   what the actual value is when it fails, and similarly for the\n//   other comparisons.\n//\n//   4. Do not depend on the order in which {ASSERT|EXPECT}_??()\n//   evaluate their arguments, which is undefined.\n//\n//   5. These macros evaluate their arguments exactly once.\n//\n// Examples:\n//\n//   EXPECT_NE(Foo(), 5);\n//   EXPECT_EQ(a_pointer, NULL);\n//   ASSERT_LT(i, array_size);\n//   ASSERT_GT(records.size(), 0) << \"There is no record left.\";\n\n#define EXPECT_EQ(val1, val2) \\\n  EXPECT_PRED_FORMAT2(::testing::internal::EqHelper::Compare, val1, val2)\n#define EXPECT_NE(val1, val2) \\\n  EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperNE, val1, val2)\n#define EXPECT_LE(val1, val2) \\\n  EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperLE, val1, val2)\n#define EXPECT_LT(val1, val2) \\\n  EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperLT, val1, val2)\n#define EXPECT_GE(val1, val2) \\\n  EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperGE, val1, val2)\n#define EXPECT_GT(val1, val2) \\\n  EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperGT, val1, val2)\n\n#define GTEST_ASSERT_EQ(val1, val2) \\\n  ASSERT_PRED_FORMAT2(::testing::internal::EqHelper::Compare, val1, val2)\n#define GTEST_ASSERT_NE(val1, val2) \\\n  ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperNE, val1, val2)\n#define GTEST_ASSERT_LE(val1, val2) \\\n  ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperLE, val1, val2)\n#define GTEST_ASSERT_LT(val1, val2) \\\n  ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperLT, val1, val2)\n#define GTEST_ASSERT_GE(val1, val2) \\\n  ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperGE, val1, val2)\n#define GTEST_ASSERT_GT(val1, val2) \\\n  ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperGT, val1, val2)\n\n// Define macro GTEST_DONT_DEFINE_ASSERT_XY to 1 to omit the definition of\n// ASSERT_XY(), which clashes with some users' own code.\n\n#if !GTEST_DONT_DEFINE_ASSERT_EQ\n# define ASSERT_EQ(val1, val2) GTEST_ASSERT_EQ(val1, val2)\n#endif\n\n#if !GTEST_DONT_DEFINE_ASSERT_NE\n# define ASSERT_NE(val1, val2) GTEST_ASSERT_NE(val1, val2)\n#endif\n\n#if !GTEST_DONT_DEFINE_ASSERT_LE\n# define ASSERT_LE(val1, val2) GTEST_ASSERT_LE(val1, val2)\n#endif\n\n#if !GTEST_DONT_DEFINE_ASSERT_LT\n# define ASSERT_LT(val1, val2) GTEST_ASSERT_LT(val1, val2)\n#endif\n\n#if !GTEST_DONT_DEFINE_ASSERT_GE\n# define ASSERT_GE(val1, val2) GTEST_ASSERT_GE(val1, val2)\n#endif\n\n#if !GTEST_DONT_DEFINE_ASSERT_GT\n# define ASSERT_GT(val1, val2) GTEST_ASSERT_GT(val1, val2)\n#endif\n\n// C-string Comparisons.  All tests treat NULL and any non-NULL string\n// as different.  Two NULLs are equal.\n//\n//    * {ASSERT|EXPECT}_STREQ(s1, s2):     Tests that s1 == s2\n//    * {ASSERT|EXPECT}_STRNE(s1, s2):     Tests that s1 != s2\n//    * {ASSERT|EXPECT}_STRCASEEQ(s1, s2): Tests that s1 == s2, ignoring case\n//    * {ASSERT|EXPECT}_STRCASENE(s1, s2): Tests that s1 != s2, ignoring case\n//\n// For wide or narrow string objects, you can use the\n// {ASSERT|EXPECT}_??() macros.\n//\n// Don't depend on the order in which the arguments are evaluated,\n// which is undefined.\n//\n// These macros evaluate their arguments exactly once.\n\n#define EXPECT_STREQ(s1, s2) \\\n  EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperSTREQ, s1, s2)\n#define EXPECT_STRNE(s1, s2) \\\n  EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperSTRNE, s1, s2)\n#define EXPECT_STRCASEEQ(s1, s2) \\\n  EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperSTRCASEEQ, s1, s2)\n#define EXPECT_STRCASENE(s1, s2)\\\n  EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperSTRCASENE, s1, s2)\n\n#define ASSERT_STREQ(s1, s2) \\\n  ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperSTREQ, s1, s2)\n#define ASSERT_STRNE(s1, s2) \\\n  ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperSTRNE, s1, s2)\n#define ASSERT_STRCASEEQ(s1, s2) \\\n  ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperSTRCASEEQ, s1, s2)\n#define ASSERT_STRCASENE(s1, s2)\\\n  ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperSTRCASENE, s1, s2)\n\n// Macros for comparing floating-point numbers.\n//\n//    * {ASSERT|EXPECT}_FLOAT_EQ(val1, val2):\n//         Tests that two float values are almost equal.\n//    * {ASSERT|EXPECT}_DOUBLE_EQ(val1, val2):\n//         Tests that two double values are almost equal.\n//    * {ASSERT|EXPECT}_NEAR(v1, v2, abs_error):\n//         Tests that v1 and v2 are within the given distance to each other.\n//\n// Google Test uses ULP-based comparison to automatically pick a default\n// error bound that is appropriate for the operands.  See the\n// FloatingPoint template class in gtest-internal.h if you are\n// interested in the implementation details.\n\n#define EXPECT_FLOAT_EQ(val1, val2)\\\n  EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperFloatingPointEQ<float>, \\\n                      val1, val2)\n\n#define EXPECT_DOUBLE_EQ(val1, val2)\\\n  EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperFloatingPointEQ<double>, \\\n                      val1, val2)\n\n#define ASSERT_FLOAT_EQ(val1, val2)\\\n  ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperFloatingPointEQ<float>, \\\n                      val1, val2)\n\n#define ASSERT_DOUBLE_EQ(val1, val2)\\\n  ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperFloatingPointEQ<double>, \\\n                      val1, val2)\n\n#define EXPECT_NEAR(val1, val2, abs_error)\\\n  EXPECT_PRED_FORMAT3(::testing::internal::DoubleNearPredFormat, \\\n                      val1, val2, abs_error)\n\n#define ASSERT_NEAR(val1, val2, abs_error)\\\n  ASSERT_PRED_FORMAT3(::testing::internal::DoubleNearPredFormat, \\\n                      val1, val2, abs_error)\n\n// These predicate format functions work on floating-point values, and\n// can be used in {ASSERT|EXPECT}_PRED_FORMAT2*(), e.g.\n//\n//   EXPECT_PRED_FORMAT2(testing::DoubleLE, Foo(), 5.0);\n\n// Asserts that val1 is less than, or almost equal to, val2.  Fails\n// otherwise.  In particular, it fails if either val1 or val2 is NaN.\nGTEST_API_ AssertionResult FloatLE(const char* expr1, const char* expr2,\n                                   float val1, float val2);\nGTEST_API_ AssertionResult DoubleLE(const char* expr1, const char* expr2,\n                                    double val1, double val2);\n\n\n#if GTEST_OS_WINDOWS\n\n// Macros that test for HRESULT failure and success, these are only useful\n// on Windows, and rely on Windows SDK macros and APIs to compile.\n//\n//    * {ASSERT|EXPECT}_HRESULT_{SUCCEEDED|FAILED}(expr)\n//\n// When expr unexpectedly fails or succeeds, Google Test prints the\n// expected result and the actual result with both a human-readable\n// string representation of the error, if available, as well as the\n// hex result code.\n# define EXPECT_HRESULT_SUCCEEDED(expr) \\\n    EXPECT_PRED_FORMAT1(::testing::internal::IsHRESULTSuccess, (expr))\n\n# define ASSERT_HRESULT_SUCCEEDED(expr) \\\n    ASSERT_PRED_FORMAT1(::testing::internal::IsHRESULTSuccess, (expr))\n\n# define EXPECT_HRESULT_FAILED(expr) \\\n    EXPECT_PRED_FORMAT1(::testing::internal::IsHRESULTFailure, (expr))\n\n# define ASSERT_HRESULT_FAILED(expr) \\\n    ASSERT_PRED_FORMAT1(::testing::internal::IsHRESULTFailure, (expr))\n\n#endif  // GTEST_OS_WINDOWS\n\n// Macros that execute statement and check that it doesn't generate new fatal\n// failures in the current thread.\n//\n//   * {ASSERT|EXPECT}_NO_FATAL_FAILURE(statement);\n//\n// Examples:\n//\n//   EXPECT_NO_FATAL_FAILURE(Process());\n//   ASSERT_NO_FATAL_FAILURE(Process()) << \"Process() failed\";\n//\n#define ASSERT_NO_FATAL_FAILURE(statement) \\\n    GTEST_TEST_NO_FATAL_FAILURE_(statement, GTEST_FATAL_FAILURE_)\n#define EXPECT_NO_FATAL_FAILURE(statement) \\\n    GTEST_TEST_NO_FATAL_FAILURE_(statement, GTEST_NONFATAL_FAILURE_)\n\n// Causes a trace (including the given source file path and line number,\n// and the given message) to be included in every test failure message generated\n// by code in the scope of the lifetime of an instance of this class. The effect\n// is undone with the destruction of the instance.\n//\n// The message argument can be anything streamable to std::ostream.\n//\n// Example:\n//   testing::ScopedTrace trace(\"file.cc\", 123, \"message\");\n//\nclass GTEST_API_ ScopedTrace {\n public:\n  // The c'tor pushes the given source file location and message onto\n  // a trace stack maintained by Google Test.\n\n  // Template version. Uses Message() to convert the values into strings.\n  // Slow, but flexible.\n  template <typename T>\n  ScopedTrace(const char* file, int line, const T& message) {\n    PushTrace(file, line, (Message() << message).GetString());\n  }\n\n  // Optimize for some known types.\n  ScopedTrace(const char* file, int line, const char* message) {\n    PushTrace(file, line, message ? message : \"(null)\");\n  }\n\n  ScopedTrace(const char* file, int line, const std::string& message) {\n    PushTrace(file, line, message);\n  }\n\n  // The d'tor pops the info pushed by the c'tor.\n  //\n  // Note that the d'tor is not virtual in order to be efficient.\n  // Don't inherit from ScopedTrace!\n  ~ScopedTrace();\n\n private:\n  void PushTrace(const char* file, int line, std::string message);\n\n  GTEST_DISALLOW_COPY_AND_ASSIGN_(ScopedTrace);\n} GTEST_ATTRIBUTE_UNUSED_;  // A ScopedTrace object does its job in its\n                            // c'tor and d'tor.  Therefore it doesn't\n                            // need to be used otherwise.\n\n// Causes a trace (including the source file path, the current line\n// number, and the given message) to be included in every test failure\n// message generated by code in the current scope.  The effect is\n// undone when the control leaves the current scope.\n//\n// The message argument can be anything streamable to std::ostream.\n//\n// In the implementation, we include the current line number as part\n// of the dummy variable name, thus allowing multiple SCOPED_TRACE()s\n// to appear in the same block - as long as they are on different\n// lines.\n//\n// Assuming that each thread maintains its own stack of traces.\n// Therefore, a SCOPED_TRACE() would (correctly) only affect the\n// assertions in its own thread.\n#define SCOPED_TRACE(message) \\\n  ::testing::ScopedTrace GTEST_CONCAT_TOKEN_(gtest_trace_, __LINE__)(\\\n    __FILE__, __LINE__, (message))\n\n// Compile-time assertion for type equality.\n// StaticAssertTypeEq<type1, type2>() compiles if and only if type1 and type2\n// are the same type.  The value it returns is not interesting.\n//\n// Instead of making StaticAssertTypeEq a class template, we make it a\n// function template that invokes a helper class template.  This\n// prevents a user from misusing StaticAssertTypeEq<T1, T2> by\n// defining objects of that type.\n//\n// CAVEAT:\n//\n// When used inside a method of a class template,\n// StaticAssertTypeEq<T1, T2>() is effective ONLY IF the method is\n// instantiated.  For example, given:\n//\n//   template <typename T> class Foo {\n//    public:\n//     void Bar() { testing::StaticAssertTypeEq<int, T>(); }\n//   };\n//\n// the code:\n//\n//   void Test1() { Foo<bool> foo; }\n//\n// will NOT generate a compiler error, as Foo<bool>::Bar() is never\n// actually instantiated.  Instead, you need:\n//\n//   void Test2() { Foo<bool> foo; foo.Bar(); }\n//\n// to cause a compiler error.\ntemplate <typename T1, typename T2>\nconstexpr bool StaticAssertTypeEq() noexcept {\n  static_assert(std::is_same<T1, T2>::value, \"T1 and T2 are not the same type\");\n  return true;\n}\n\n// Defines a test.\n//\n// The first parameter is the name of the test suite, and the second\n// parameter is the name of the test within the test suite.\n//\n// The convention is to end the test suite name with \"Test\".  For\n// example, a test suite for the Foo class can be named FooTest.\n//\n// Test code should appear between braces after an invocation of\n// this macro.  Example:\n//\n//   TEST(FooTest, InitializesCorrectly) {\n//     Foo foo;\n//     EXPECT_TRUE(foo.StatusIsOK());\n//   }\n\n// Note that we call GetTestTypeId() instead of GetTypeId<\n// ::testing::Test>() here to get the type ID of testing::Test.  This\n// is to work around a suspected linker bug when using Google Test as\n// a framework on Mac OS X.  The bug causes GetTypeId<\n// ::testing::Test>() to return different values depending on whether\n// the call is from the Google Test framework itself or from user test\n// code.  GetTestTypeId() is guaranteed to always return the same\n// value, as it always calls GetTypeId<>() from the Google Test\n// framework.\n#define GTEST_TEST(test_suite_name, test_name)             \\\n  GTEST_TEST_(test_suite_name, test_name, ::testing::Test, \\\n              ::testing::internal::GetTestTypeId())\n\n// Define this macro to 1 to omit the definition of TEST(), which\n// is a generic name and clashes with some other libraries.\n#if !GTEST_DONT_DEFINE_TEST\n#define TEST(test_suite_name, test_name) GTEST_TEST(test_suite_name, test_name)\n#endif\n\n// Defines a test that uses a test fixture.\n//\n// The first parameter is the name of the test fixture class, which\n// also doubles as the test suite name.  The second parameter is the\n// name of the test within the test suite.\n//\n// A test fixture class must be declared earlier.  The user should put\n// the test code between braces after using this macro.  Example:\n//\n//   class FooTest : public testing::Test {\n//    protected:\n//     void SetUp() override { b_.AddElement(3); }\n//\n//     Foo a_;\n//     Foo b_;\n//   };\n//\n//   TEST_F(FooTest, InitializesCorrectly) {\n//     EXPECT_TRUE(a_.StatusIsOK());\n//   }\n//\n//   TEST_F(FooTest, ReturnsElementCountCorrectly) {\n//     EXPECT_EQ(a_.size(), 0);\n//     EXPECT_EQ(b_.size(), 1);\n//   }\n//\n// GOOGLETEST_CM0011 DO NOT DELETE\n#if !GTEST_DONT_DEFINE_TEST\n#define TEST_F(test_fixture, test_name)\\\n  GTEST_TEST_(test_fixture, test_name, test_fixture, \\\n              ::testing::internal::GetTypeId<test_fixture>())\n#endif  // !GTEST_DONT_DEFINE_TEST\n\n// Returns a path to temporary directory.\n// Tries to determine an appropriate directory for the platform.\nGTEST_API_ std::string TempDir();\n\n#ifdef _MSC_VER\n#  pragma warning(pop)\n#endif\n\n// Dynamically registers a test with the framework.\n//\n// This is an advanced API only to be used when the `TEST` macros are\n// insufficient. The macros should be preferred when possible, as they avoid\n// most of the complexity of calling this function.\n//\n// The `factory` argument is a factory callable (move-constructible) object or\n// function pointer that creates a new instance of the Test object. It\n// handles ownership to the caller. The signature of the callable is\n// `Fixture*()`, where `Fixture` is the test fixture class for the test. All\n// tests registered with the same `test_suite_name` must return the same\n// fixture type. This is checked at runtime.\n//\n// The framework will infer the fixture class from the factory and will call\n// the `SetUpTestSuite` and `TearDownTestSuite` for it.\n//\n// Must be called before `RUN_ALL_TESTS()` is invoked, otherwise behavior is\n// undefined.\n//\n// Use case example:\n//\n// class MyFixture : public ::testing::Test {\n//  public:\n//   // All of these optional, just like in regular macro usage.\n//   static void SetUpTestSuite() { ... }\n//   static void TearDownTestSuite() { ... }\n//   void SetUp() override { ... }\n//   void TearDown() override { ... }\n// };\n//\n// class MyTest : public MyFixture {\n//  public:\n//   explicit MyTest(int data) : data_(data) {}\n//   void TestBody() override { ... }\n//\n//  private:\n//   int data_;\n// };\n//\n// void RegisterMyTests(const std::vector<int>& values) {\n//   for (int v : values) {\n//     ::testing::RegisterTest(\n//         \"MyFixture\", (\"Test\" + std::to_string(v)).c_str(), nullptr,\n//         std::to_string(v).c_str(),\n//         __FILE__, __LINE__,\n//         // Important to use the fixture type as the return type here.\n//         [=]() -> MyFixture* { return new MyTest(v); });\n//   }\n// }\n// ...\n// int main(int argc, char** argv) {\n//   std::vector<int> values_to_test = LoadValuesFromConfig();\n//   RegisterMyTests(values_to_test);\n//   ...\n//   return RUN_ALL_TESTS();\n// }\n//\ntemplate <int&... ExplicitParameterBarrier, typename Factory>\nTestInfo* RegisterTest(const char* test_suite_name, const char* test_name,\n                       const char* type_param, const char* value_param,\n                       const char* file, int line, Factory factory) {\n  using TestT = typename std::remove_pointer<decltype(factory())>::type;\n\n  class FactoryImpl : public internal::TestFactoryBase {\n   public:\n    explicit FactoryImpl(Factory f) : factory_(std::move(f)) {}\n    Test* CreateTest() override { return factory_(); }\n\n   private:\n    Factory factory_;\n  };\n\n  return internal::MakeAndRegisterTestInfo(\n      test_suite_name, test_name, type_param, value_param,\n      internal::CodeLocation(file, line), internal::GetTypeId<TestT>(),\n      internal::SuiteApiResolver<TestT>::GetSetUpCaseOrSuite(file, line),\n      internal::SuiteApiResolver<TestT>::GetTearDownCaseOrSuite(file, line),\n      new FactoryImpl{std::move(factory)});\n}\n\n}  // namespace testing\n\n// Use this function in main() to run all tests.  It returns 0 if all\n// tests are successful, or 1 otherwise.\n//\n// RUN_ALL_TESTS() should be invoked after the command line has been\n// parsed by InitGoogleTest().\n//\n// This function was formerly a macro; thus, it is in the global\n// namespace and has an all-caps name.\nint RUN_ALL_TESTS() GTEST_MUST_USE_RESULT_;\n\ninline int RUN_ALL_TESTS() {\n  return ::testing::UnitTest::GetInstance()->Run();\n}\n\nGTEST_DISABLE_MSC_WARNINGS_POP_()  //  4251\n\n#endif  // GOOGLETEST_INCLUDE_GTEST_GTEST_H_\n"
  },
  {
    "path": "test/gtest/include/gtest/gtest_pred_impl.h",
    "content": "// Copyright 2006, Google Inc.\n// All rights reserved.\n//\n// Redistribution and use in source and binary forms, with or without\n// modification, are permitted provided that the following conditions are\n// met:\n//\n//     * Redistributions of source code must retain the above copyright\n// notice, this list of conditions and the following disclaimer.\n//     * Redistributions in binary form must reproduce the above\n// copyright notice, this list of conditions and the following disclaimer\n// in the documentation and/or other materials provided with the\n// distribution.\n//     * Neither the name of Google Inc. nor the names of its\n// contributors may be used to endorse or promote products derived from\n// this software without specific prior written permission.\n//\n// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n// \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n// This file is AUTOMATICALLY GENERATED on 01/02/2019 by command\n// 'gen_gtest_pred_impl.py 5'.  DO NOT EDIT BY HAND!\n//\n// Implements a family of generic predicate assertion macros.\n// GOOGLETEST_CM0001 DO NOT DELETE\n\n#ifndef GOOGLETEST_INCLUDE_GTEST_GTEST_PRED_IMPL_H_\n#define GOOGLETEST_INCLUDE_GTEST_GTEST_PRED_IMPL_H_\n\n#include \"gtest/gtest.h\"\n\nnamespace testing {\n\n// This header implements a family of generic predicate assertion\n// macros:\n//\n//   ASSERT_PRED_FORMAT1(pred_format, v1)\n//   ASSERT_PRED_FORMAT2(pred_format, v1, v2)\n//   ...\n//\n// where pred_format is a function or functor that takes n (in the\n// case of ASSERT_PRED_FORMATn) values and their source expression\n// text, and returns a testing::AssertionResult.  See the definition\n// of ASSERT_EQ in gtest.h for an example.\n//\n// If you don't care about formatting, you can use the more\n// restrictive version:\n//\n//   ASSERT_PRED1(pred, v1)\n//   ASSERT_PRED2(pred, v1, v2)\n//   ...\n//\n// where pred is an n-ary function or functor that returns bool,\n// and the values v1, v2, ..., must support the << operator for\n// streaming to std::ostream.\n//\n// We also define the EXPECT_* variations.\n//\n// For now we only support predicates whose arity is at most 5.\n// Please email googletestframework@googlegroups.com if you need\n// support for higher arities.\n\n// GTEST_ASSERT_ is the basic statement to which all of the assertions\n// in this file reduce.  Don't use this in your code.\n\n#define GTEST_ASSERT_(expression, on_failure) \\\n  GTEST_AMBIGUOUS_ELSE_BLOCKER_ \\\n  if (const ::testing::AssertionResult gtest_ar = (expression)) \\\n    ; \\\n  else \\\n    on_failure(gtest_ar.failure_message())\n\n\n// Helper function for implementing {EXPECT|ASSERT}_PRED1.  Don't use\n// this in your code.\ntemplate <typename Pred,\n          typename T1>\nAssertionResult AssertPred1Helper(const char* pred_text,\n                                  const char* e1,\n                                  Pred pred,\n                                  const T1& v1) {\n  if (pred(v1)) return AssertionSuccess();\n\n  return AssertionFailure()\n         << pred_text << \"(\" << e1 << \") evaluates to false, where\"\n         << \"\\n\"\n         << e1 << \" evaluates to \" << ::testing::PrintToString(v1);\n}\n\n// Internal macro for implementing {EXPECT|ASSERT}_PRED_FORMAT1.\n// Don't use this in your code.\n#define GTEST_PRED_FORMAT1_(pred_format, v1, on_failure)\\\n  GTEST_ASSERT_(pred_format(#v1, v1), \\\n                on_failure)\n\n// Internal macro for implementing {EXPECT|ASSERT}_PRED1.  Don't use\n// this in your code.\n#define GTEST_PRED1_(pred, v1, on_failure)\\\n  GTEST_ASSERT_(::testing::AssertPred1Helper(#pred, \\\n                                             #v1, \\\n                                             pred, \\\n                                             v1), on_failure)\n\n// Unary predicate assertion macros.\n#define EXPECT_PRED_FORMAT1(pred_format, v1) \\\n  GTEST_PRED_FORMAT1_(pred_format, v1, GTEST_NONFATAL_FAILURE_)\n#define EXPECT_PRED1(pred, v1) \\\n  GTEST_PRED1_(pred, v1, GTEST_NONFATAL_FAILURE_)\n#define ASSERT_PRED_FORMAT1(pred_format, v1) \\\n  GTEST_PRED_FORMAT1_(pred_format, v1, GTEST_FATAL_FAILURE_)\n#define ASSERT_PRED1(pred, v1) \\\n  GTEST_PRED1_(pred, v1, GTEST_FATAL_FAILURE_)\n\n\n\n// Helper function for implementing {EXPECT|ASSERT}_PRED2.  Don't use\n// this in your code.\ntemplate <typename Pred,\n          typename T1,\n          typename T2>\nAssertionResult AssertPred2Helper(const char* pred_text,\n                                  const char* e1,\n                                  const char* e2,\n                                  Pred pred,\n                                  const T1& v1,\n                                  const T2& v2) {\n  if (pred(v1, v2)) return AssertionSuccess();\n\n  return AssertionFailure()\n         << pred_text << \"(\" << e1 << \", \" << e2\n         << \") evaluates to false, where\"\n         << \"\\n\"\n         << e1 << \" evaluates to \" << ::testing::PrintToString(v1) << \"\\n\"\n         << e2 << \" evaluates to \" << ::testing::PrintToString(v2);\n}\n\n// Internal macro for implementing {EXPECT|ASSERT}_PRED_FORMAT2.\n// Don't use this in your code.\n#define GTEST_PRED_FORMAT2_(pred_format, v1, v2, on_failure)\\\n  GTEST_ASSERT_(pred_format(#v1, #v2, v1, v2), \\\n                on_failure)\n\n// Internal macro for implementing {EXPECT|ASSERT}_PRED2.  Don't use\n// this in your code.\n#define GTEST_PRED2_(pred, v1, v2, on_failure)\\\n  GTEST_ASSERT_(::testing::AssertPred2Helper(#pred, \\\n                                             #v1, \\\n                                             #v2, \\\n                                             pred, \\\n                                             v1, \\\n                                             v2), on_failure)\n\n// Binary predicate assertion macros.\n#define EXPECT_PRED_FORMAT2(pred_format, v1, v2) \\\n  GTEST_PRED_FORMAT2_(pred_format, v1, v2, GTEST_NONFATAL_FAILURE_)\n#define EXPECT_PRED2(pred, v1, v2) \\\n  GTEST_PRED2_(pred, v1, v2, GTEST_NONFATAL_FAILURE_)\n#define ASSERT_PRED_FORMAT2(pred_format, v1, v2) \\\n  GTEST_PRED_FORMAT2_(pred_format, v1, v2, GTEST_FATAL_FAILURE_)\n#define ASSERT_PRED2(pred, v1, v2) \\\n  GTEST_PRED2_(pred, v1, v2, GTEST_FATAL_FAILURE_)\n\n\n\n// Helper function for implementing {EXPECT|ASSERT}_PRED3.  Don't use\n// this in your code.\ntemplate <typename Pred,\n          typename T1,\n          typename T2,\n          typename T3>\nAssertionResult AssertPred3Helper(const char* pred_text,\n                                  const char* e1,\n                                  const char* e2,\n                                  const char* e3,\n                                  Pred pred,\n                                  const T1& v1,\n                                  const T2& v2,\n                                  const T3& v3) {\n  if (pred(v1, v2, v3)) return AssertionSuccess();\n\n  return AssertionFailure()\n         << pred_text << \"(\" << e1 << \", \" << e2 << \", \" << e3\n         << \") evaluates to false, where\"\n         << \"\\n\"\n         << e1 << \" evaluates to \" << ::testing::PrintToString(v1) << \"\\n\"\n         << e2 << \" evaluates to \" << ::testing::PrintToString(v2) << \"\\n\"\n         << e3 << \" evaluates to \" << ::testing::PrintToString(v3);\n}\n\n// Internal macro for implementing {EXPECT|ASSERT}_PRED_FORMAT3.\n// Don't use this in your code.\n#define GTEST_PRED_FORMAT3_(pred_format, v1, v2, v3, on_failure)\\\n  GTEST_ASSERT_(pred_format(#v1, #v2, #v3, v1, v2, v3), \\\n                on_failure)\n\n// Internal macro for implementing {EXPECT|ASSERT}_PRED3.  Don't use\n// this in your code.\n#define GTEST_PRED3_(pred, v1, v2, v3, on_failure)\\\n  GTEST_ASSERT_(::testing::AssertPred3Helper(#pred, \\\n                                             #v1, \\\n                                             #v2, \\\n                                             #v3, \\\n                                             pred, \\\n                                             v1, \\\n                                             v2, \\\n                                             v3), on_failure)\n\n// Ternary predicate assertion macros.\n#define EXPECT_PRED_FORMAT3(pred_format, v1, v2, v3) \\\n  GTEST_PRED_FORMAT3_(pred_format, v1, v2, v3, GTEST_NONFATAL_FAILURE_)\n#define EXPECT_PRED3(pred, v1, v2, v3) \\\n  GTEST_PRED3_(pred, v1, v2, v3, GTEST_NONFATAL_FAILURE_)\n#define ASSERT_PRED_FORMAT3(pred_format, v1, v2, v3) \\\n  GTEST_PRED_FORMAT3_(pred_format, v1, v2, v3, GTEST_FATAL_FAILURE_)\n#define ASSERT_PRED3(pred, v1, v2, v3) \\\n  GTEST_PRED3_(pred, v1, v2, v3, GTEST_FATAL_FAILURE_)\n\n\n\n// Helper function for implementing {EXPECT|ASSERT}_PRED4.  Don't use\n// this in your code.\ntemplate <typename Pred,\n          typename T1,\n          typename T2,\n          typename T3,\n          typename T4>\nAssertionResult AssertPred4Helper(const char* pred_text,\n                                  const char* e1,\n                                  const char* e2,\n                                  const char* e3,\n                                  const char* e4,\n                                  Pred pred,\n                                  const T1& v1,\n                                  const T2& v2,\n                                  const T3& v3,\n                                  const T4& v4) {\n  if (pred(v1, v2, v3, v4)) return AssertionSuccess();\n\n  return AssertionFailure()\n         << pred_text << \"(\" << e1 << \", \" << e2 << \", \" << e3 << \", \" << e4\n         << \") evaluates to false, where\"\n         << \"\\n\"\n         << e1 << \" evaluates to \" << ::testing::PrintToString(v1) << \"\\n\"\n         << e2 << \" evaluates to \" << ::testing::PrintToString(v2) << \"\\n\"\n         << e3 << \" evaluates to \" << ::testing::PrintToString(v3) << \"\\n\"\n         << e4 << \" evaluates to \" << ::testing::PrintToString(v4);\n}\n\n// Internal macro for implementing {EXPECT|ASSERT}_PRED_FORMAT4.\n// Don't use this in your code.\n#define GTEST_PRED_FORMAT4_(pred_format, v1, v2, v3, v4, on_failure)\\\n  GTEST_ASSERT_(pred_format(#v1, #v2, #v3, #v4, v1, v2, v3, v4), \\\n                on_failure)\n\n// Internal macro for implementing {EXPECT|ASSERT}_PRED4.  Don't use\n// this in your code.\n#define GTEST_PRED4_(pred, v1, v2, v3, v4, on_failure)\\\n  GTEST_ASSERT_(::testing::AssertPred4Helper(#pred, \\\n                                             #v1, \\\n                                             #v2, \\\n                                             #v3, \\\n                                             #v4, \\\n                                             pred, \\\n                                             v1, \\\n                                             v2, \\\n                                             v3, \\\n                                             v4), on_failure)\n\n// 4-ary predicate assertion macros.\n#define EXPECT_PRED_FORMAT4(pred_format, v1, v2, v3, v4) \\\n  GTEST_PRED_FORMAT4_(pred_format, v1, v2, v3, v4, GTEST_NONFATAL_FAILURE_)\n#define EXPECT_PRED4(pred, v1, v2, v3, v4) \\\n  GTEST_PRED4_(pred, v1, v2, v3, v4, GTEST_NONFATAL_FAILURE_)\n#define ASSERT_PRED_FORMAT4(pred_format, v1, v2, v3, v4) \\\n  GTEST_PRED_FORMAT4_(pred_format, v1, v2, v3, v4, GTEST_FATAL_FAILURE_)\n#define ASSERT_PRED4(pred, v1, v2, v3, v4) \\\n  GTEST_PRED4_(pred, v1, v2, v3, v4, GTEST_FATAL_FAILURE_)\n\n\n\n// Helper function for implementing {EXPECT|ASSERT}_PRED5.  Don't use\n// this in your code.\ntemplate <typename Pred,\n          typename T1,\n          typename T2,\n          typename T3,\n          typename T4,\n          typename T5>\nAssertionResult AssertPred5Helper(const char* pred_text,\n                                  const char* e1,\n                                  const char* e2,\n                                  const char* e3,\n                                  const char* e4,\n                                  const char* e5,\n                                  Pred pred,\n                                  const T1& v1,\n                                  const T2& v2,\n                                  const T3& v3,\n                                  const T4& v4,\n                                  const T5& v5) {\n  if (pred(v1, v2, v3, v4, v5)) return AssertionSuccess();\n\n  return AssertionFailure()\n         << pred_text << \"(\" << e1 << \", \" << e2 << \", \" << e3 << \", \" << e4\n         << \", \" << e5 << \") evaluates to false, where\"\n         << \"\\n\"\n         << e1 << \" evaluates to \" << ::testing::PrintToString(v1) << \"\\n\"\n         << e2 << \" evaluates to \" << ::testing::PrintToString(v2) << \"\\n\"\n         << e3 << \" evaluates to \" << ::testing::PrintToString(v3) << \"\\n\"\n         << e4 << \" evaluates to \" << ::testing::PrintToString(v4) << \"\\n\"\n         << e5 << \" evaluates to \" << ::testing::PrintToString(v5);\n}\n\n// Internal macro for implementing {EXPECT|ASSERT}_PRED_FORMAT5.\n// Don't use this in your code.\n#define GTEST_PRED_FORMAT5_(pred_format, v1, v2, v3, v4, v5, on_failure)\\\n  GTEST_ASSERT_(pred_format(#v1, #v2, #v3, #v4, #v5, v1, v2, v3, v4, v5), \\\n                on_failure)\n\n// Internal macro for implementing {EXPECT|ASSERT}_PRED5.  Don't use\n// this in your code.\n#define GTEST_PRED5_(pred, v1, v2, v3, v4, v5, on_failure)\\\n  GTEST_ASSERT_(::testing::AssertPred5Helper(#pred, \\\n                                             #v1, \\\n                                             #v2, \\\n                                             #v3, \\\n                                             #v4, \\\n                                             #v5, \\\n                                             pred, \\\n                                             v1, \\\n                                             v2, \\\n                                             v3, \\\n                                             v4, \\\n                                             v5), on_failure)\n\n// 5-ary predicate assertion macros.\n#define EXPECT_PRED_FORMAT5(pred_format, v1, v2, v3, v4, v5) \\\n  GTEST_PRED_FORMAT5_(pred_format, v1, v2, v3, v4, v5, GTEST_NONFATAL_FAILURE_)\n#define EXPECT_PRED5(pred, v1, v2, v3, v4, v5) \\\n  GTEST_PRED5_(pred, v1, v2, v3, v4, v5, GTEST_NONFATAL_FAILURE_)\n#define ASSERT_PRED_FORMAT5(pred_format, v1, v2, v3, v4, v5) \\\n  GTEST_PRED_FORMAT5_(pred_format, v1, v2, v3, v4, v5, GTEST_FATAL_FAILURE_)\n#define ASSERT_PRED5(pred, v1, v2, v3, v4, v5) \\\n  GTEST_PRED5_(pred, v1, v2, v3, v4, v5, GTEST_FATAL_FAILURE_)\n\n\n\n}  // namespace testing\n\n#endif  // GOOGLETEST_INCLUDE_GTEST_GTEST_PRED_IMPL_H_\n"
  },
  {
    "path": "test/gtest/include/gtest/gtest_prod.h",
    "content": "// Copyright 2006, Google Inc.\n// All rights reserved.\n//\n// Redistribution and use in source and binary forms, with or without\n// modification, are permitted provided that the following conditions are\n// met:\n//\n//     * Redistributions of source code must retain the above copyright\n// notice, this list of conditions and the following disclaimer.\n//     * Redistributions in binary form must reproduce the above\n// copyright notice, this list of conditions and the following disclaimer\n// in the documentation and/or other materials provided with the\n// distribution.\n//     * Neither the name of Google Inc. nor the names of its\n// contributors may be used to endorse or promote products derived from\n// this software without specific prior written permission.\n//\n// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n// \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n//\n// Google C++ Testing and Mocking Framework definitions useful in production code.\n// GOOGLETEST_CM0003 DO NOT DELETE\n\n#ifndef GOOGLETEST_INCLUDE_GTEST_GTEST_PROD_H_\n#define GOOGLETEST_INCLUDE_GTEST_GTEST_PROD_H_\n\n// When you need to test the private or protected members of a class,\n// use the FRIEND_TEST macro to declare your tests as friends of the\n// class.  For example:\n//\n// class MyClass {\n//  private:\n//   void PrivateMethod();\n//   FRIEND_TEST(MyClassTest, PrivateMethodWorks);\n// };\n//\n// class MyClassTest : public testing::Test {\n//   // ...\n// };\n//\n// TEST_F(MyClassTest, PrivateMethodWorks) {\n//   // Can call MyClass::PrivateMethod() here.\n// }\n//\n// Note: The test class must be in the same namespace as the class being tested.\n// For example, putting MyClassTest in an anonymous namespace will not work.\n\n#define FRIEND_TEST(test_case_name, test_name)\\\nfriend class test_case_name##_##test_name##_Test\n\n#endif  // GOOGLETEST_INCLUDE_GTEST_GTEST_PROD_H_\n"
  },
  {
    "path": "test/gtest/include/gtest/internal/custom/README.md",
    "content": "# Customization Points\n\nThe custom directory is an injection point for custom user configurations.\n\n## Header `gtest.h`\n\n### The following macros can be defined:\n\n*   `GTEST_OS_STACK_TRACE_GETTER_` - The name of an implementation of\n    `OsStackTraceGetterInterface`.\n*   `GTEST_CUSTOM_TEMPDIR_FUNCTION_` - An override for `testing::TempDir()`. See\n    `testing::TempDir` for semantics and signature.\n\n## Header `gtest-port.h`\n\nThe following macros can be defined:\n\n### Flag related macros:\n\n*   `GTEST_FLAG(flag_name)`\n*   `GTEST_USE_OWN_FLAGFILE_FLAG_` - Define to 0 when the system provides its\n    own flagfile flag parsing.\n*   `GTEST_DECLARE_bool_(name)`\n*   `GTEST_DECLARE_int32_(name)`\n*   `GTEST_DECLARE_string_(name)`\n*   `GTEST_DEFINE_bool_(name, default_val, doc)`\n*   `GTEST_DEFINE_int32_(name, default_val, doc)`\n*   `GTEST_DEFINE_string_(name, default_val, doc)`\n\n### Logging:\n\n*   `GTEST_LOG_(severity)`\n*   `GTEST_CHECK_(condition)`\n*   Functions `LogToStderr()` and `FlushInfoLog()` have to be provided too.\n\n### Threading:\n\n*   `GTEST_HAS_NOTIFICATION_` - Enabled if Notification is already provided.\n*   `GTEST_HAS_MUTEX_AND_THREAD_LOCAL_` - Enabled if `Mutex` and `ThreadLocal`\n    are already provided. Must also provide `GTEST_DECLARE_STATIC_MUTEX_(mutex)`\n    and `GTEST_DEFINE_STATIC_MUTEX_(mutex)`\n*   `GTEST_EXCLUSIVE_LOCK_REQUIRED_(locks)`\n*   `GTEST_LOCK_EXCLUDED_(locks)`\n\n### Underlying library support features\n\n*   `GTEST_HAS_CXXABI_H_`\n\n### Exporting API symbols:\n\n*   `GTEST_API_` - Specifier for exported symbols.\n\n## Header `gtest-printers.h`\n\n*   See documentation at `gtest/gtest-printers.h` for details on how to define a\n    custom printer.\n"
  },
  {
    "path": "test/gtest/include/gtest/internal/custom/gtest-port.h",
    "content": "// Copyright 2015, Google Inc.\n// All rights reserved.\n//\n// Redistribution and use in source and binary forms, with or without\n// modification, are permitted provided that the following conditions are\n// met:\n//\n//     * Redistributions of source code must retain the above copyright\n// notice, this list of conditions and the following disclaimer.\n//     * Redistributions in binary form must reproduce the above\n// copyright notice, this list of conditions and the following disclaimer\n// in the documentation and/or other materials provided with the\n// distribution.\n//     * Neither the name of Google Inc. nor the names of its\n// contributors may be used to endorse or promote products derived from\n// this software without specific prior written permission.\n//\n// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n// \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n//\n// Injection point for custom user configurations. See README for details\n//\n// ** Custom implementation starts here **\n\n#ifndef GOOGLETEST_INCLUDE_GTEST_INTERNAL_CUSTOM_GTEST_PORT_H_\n#define GOOGLETEST_INCLUDE_GTEST_INTERNAL_CUSTOM_GTEST_PORT_H_\n\n#endif  // GOOGLETEST_INCLUDE_GTEST_INTERNAL_CUSTOM_GTEST_PORT_H_\n"
  },
  {
    "path": "test/gtest/include/gtest/internal/custom/gtest-printers.h",
    "content": "// Copyright 2015, Google Inc.\n// All rights reserved.\n//\n// Redistribution and use in source and binary forms, with or without\n// modification, are permitted provided that the following conditions are\n// met:\n//\n//     * Redistributions of source code must retain the above copyright\n// notice, this list of conditions and the following disclaimer.\n//     * Redistributions in binary form must reproduce the above\n// copyright notice, this list of conditions and the following disclaimer\n// in the documentation and/or other materials provided with the\n// distribution.\n//     * Neither the name of Google Inc. nor the names of its\n// contributors may be used to endorse or promote products derived from\n// this software without specific prior written permission.\n//\n// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n// \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n//\n// This file provides an injection point for custom printers in a local\n// installation of gTest.\n// It will be included from gtest-printers.h and the overrides in this file\n// will be visible to everyone.\n//\n// Injection point for custom user configurations. See README for details\n//\n// ** Custom implementation starts here **\n\n#ifndef GOOGLETEST_INCLUDE_GTEST_INTERNAL_CUSTOM_GTEST_PRINTERS_H_\n#define GOOGLETEST_INCLUDE_GTEST_INTERNAL_CUSTOM_GTEST_PRINTERS_H_\n\n#endif  // GOOGLETEST_INCLUDE_GTEST_INTERNAL_CUSTOM_GTEST_PRINTERS_H_\n"
  },
  {
    "path": "test/gtest/include/gtest/internal/custom/gtest.h",
    "content": "// Copyright 2015, Google Inc.\n// All rights reserved.\n//\n// Redistribution and use in source and binary forms, with or without\n// modification, are permitted provided that the following conditions are\n// met:\n//\n//     * Redistributions of source code must retain the above copyright\n// notice, this list of conditions and the following disclaimer.\n//     * Redistributions in binary form must reproduce the above\n// copyright notice, this list of conditions and the following disclaimer\n// in the documentation and/or other materials provided with the\n// distribution.\n//     * Neither the name of Google Inc. nor the names of its\n// contributors may be used to endorse or promote products derived from\n// this software without specific prior written permission.\n//\n// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n// \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n//\n// Injection point for custom user configurations. See README for details\n//\n// ** Custom implementation starts here **\n\n#ifndef GOOGLETEST_INCLUDE_GTEST_INTERNAL_CUSTOM_GTEST_H_\n#define GOOGLETEST_INCLUDE_GTEST_INTERNAL_CUSTOM_GTEST_H_\n\n#endif  // GOOGLETEST_INCLUDE_GTEST_INTERNAL_CUSTOM_GTEST_H_\n"
  },
  {
    "path": "test/gtest/include/gtest/internal/gtest-death-test-internal.h",
    "content": "// Copyright 2005, Google Inc.\n// All rights reserved.\n//\n// Redistribution and use in source and binary forms, with or without\n// modification, are permitted provided that the following conditions are\n// met:\n//\n//     * Redistributions of source code must retain the above copyright\n// notice, this list of conditions and the following disclaimer.\n//     * Redistributions in binary form must reproduce the above\n// copyright notice, this list of conditions and the following disclaimer\n// in the documentation and/or other materials provided with the\n// distribution.\n//     * Neither the name of Google Inc. nor the names of its\n// contributors may be used to endorse or promote products derived from\n// this software without specific prior written permission.\n//\n// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n// \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n//\n// The Google C++ Testing and Mocking Framework (Google Test)\n//\n// This header file defines internal utilities needed for implementing\n// death tests.  They are subject to change without notice.\n// GOOGLETEST_CM0001 DO NOT DELETE\n\n#ifndef GOOGLETEST_INCLUDE_GTEST_INTERNAL_GTEST_DEATH_TEST_INTERNAL_H_\n#define GOOGLETEST_INCLUDE_GTEST_INTERNAL_GTEST_DEATH_TEST_INTERNAL_H_\n\n#include \"gtest/gtest-matchers.h\"\n#include \"gtest/internal/gtest-internal.h\"\n\n#include <stdio.h>\n#include <memory>\n\nnamespace testing {\nnamespace internal {\n\nGTEST_DECLARE_string_(internal_run_death_test);\n\n// Names of the flags (needed for parsing Google Test flags).\nconst char kDeathTestStyleFlag[] = \"death_test_style\";\nconst char kDeathTestUseFork[] = \"death_test_use_fork\";\nconst char kInternalRunDeathTestFlag[] = \"internal_run_death_test\";\n\n#if GTEST_HAS_DEATH_TEST\n\nGTEST_DISABLE_MSC_WARNINGS_PUSH_(4251 \\\n/* class A needs to have dll-interface to be used by clients of class B */)\n\n// DeathTest is a class that hides much of the complexity of the\n// GTEST_DEATH_TEST_ macro.  It is abstract; its static Create method\n// returns a concrete class that depends on the prevailing death test\n// style, as defined by the --gtest_death_test_style and/or\n// --gtest_internal_run_death_test flags.\n\n// In describing the results of death tests, these terms are used with\n// the corresponding definitions:\n//\n// exit status:  The integer exit information in the format specified\n//               by wait(2)\n// exit code:    The integer code passed to exit(3), _exit(2), or\n//               returned from main()\nclass GTEST_API_ DeathTest {\n public:\n  // Create returns false if there was an error determining the\n  // appropriate action to take for the current death test; for example,\n  // if the gtest_death_test_style flag is set to an invalid value.\n  // The LastMessage method will return a more detailed message in that\n  // case.  Otherwise, the DeathTest pointer pointed to by the \"test\"\n  // argument is set.  If the death test should be skipped, the pointer\n  // is set to NULL; otherwise, it is set to the address of a new concrete\n  // DeathTest object that controls the execution of the current test.\n  static bool Create(const char* statement, Matcher<const std::string&> matcher,\n                     const char* file, int line, DeathTest** test);\n  DeathTest();\n  virtual ~DeathTest() { }\n\n  // A helper class that aborts a death test when it's deleted.\n  class ReturnSentinel {\n   public:\n    explicit ReturnSentinel(DeathTest* test) : test_(test) { }\n    ~ReturnSentinel() { test_->Abort(TEST_ENCOUNTERED_RETURN_STATEMENT); }\n   private:\n    DeathTest* const test_;\n    GTEST_DISALLOW_COPY_AND_ASSIGN_(ReturnSentinel);\n  } GTEST_ATTRIBUTE_UNUSED_;\n\n  // An enumeration of possible roles that may be taken when a death\n  // test is encountered.  EXECUTE means that the death test logic should\n  // be executed immediately.  OVERSEE means that the program should prepare\n  // the appropriate environment for a child process to execute the death\n  // test, then wait for it to complete.\n  enum TestRole { OVERSEE_TEST, EXECUTE_TEST };\n\n  // An enumeration of the three reasons that a test might be aborted.\n  enum AbortReason {\n    TEST_ENCOUNTERED_RETURN_STATEMENT,\n    TEST_THREW_EXCEPTION,\n    TEST_DID_NOT_DIE\n  };\n\n  // Assumes one of the above roles.\n  virtual TestRole AssumeRole() = 0;\n\n  // Waits for the death test to finish and returns its status.\n  virtual int Wait() = 0;\n\n  // Returns true if the death test passed; that is, the test process\n  // exited during the test, its exit status matches a user-supplied\n  // predicate, and its stderr output matches a user-supplied regular\n  // expression.\n  // The user-supplied predicate may be a macro expression rather\n  // than a function pointer or functor, or else Wait and Passed could\n  // be combined.\n  virtual bool Passed(bool exit_status_ok) = 0;\n\n  // Signals that the death test did not die as expected.\n  virtual void Abort(AbortReason reason) = 0;\n\n  // Returns a human-readable outcome message regarding the outcome of\n  // the last death test.\n  static const char* LastMessage();\n\n  static void set_last_death_test_message(const std::string& message);\n\n private:\n  // A string containing a description of the outcome of the last death test.\n  static std::string last_death_test_message_;\n\n  GTEST_DISALLOW_COPY_AND_ASSIGN_(DeathTest);\n};\n\nGTEST_DISABLE_MSC_WARNINGS_POP_()  //  4251\n\n// Factory interface for death tests.  May be mocked out for testing.\nclass DeathTestFactory {\n public:\n  virtual ~DeathTestFactory() { }\n  virtual bool Create(const char* statement,\n                      Matcher<const std::string&> matcher, const char* file,\n                      int line, DeathTest** test) = 0;\n};\n\n// A concrete DeathTestFactory implementation for normal use.\nclass DefaultDeathTestFactory : public DeathTestFactory {\n public:\n  bool Create(const char* statement, Matcher<const std::string&> matcher,\n              const char* file, int line, DeathTest** test) override;\n};\n\n// Returns true if exit_status describes a process that was terminated\n// by a signal, or exited normally with a nonzero exit code.\nGTEST_API_ bool ExitedUnsuccessfully(int exit_status);\n\n// A string passed to EXPECT_DEATH (etc.) is caught by one of these overloads\n// and interpreted as a regex (rather than an Eq matcher) for legacy\n// compatibility.\ninline Matcher<const ::std::string&> MakeDeathTestMatcher(\n    ::testing::internal::RE regex) {\n  return ContainsRegex(regex.pattern());\n}\ninline Matcher<const ::std::string&> MakeDeathTestMatcher(const char* regex) {\n  return ContainsRegex(regex);\n}\ninline Matcher<const ::std::string&> MakeDeathTestMatcher(\n    const ::std::string& regex) {\n  return ContainsRegex(regex);\n}\n\n// If a Matcher<const ::std::string&> is passed to EXPECT_DEATH (etc.), it's\n// used directly.\ninline Matcher<const ::std::string&> MakeDeathTestMatcher(\n    Matcher<const ::std::string&> matcher) {\n  return matcher;\n}\n\n// Traps C++ exceptions escaping statement and reports them as test\n// failures. Note that trapping SEH exceptions is not implemented here.\n# if GTEST_HAS_EXCEPTIONS\n#  define GTEST_EXECUTE_DEATH_TEST_STATEMENT_(statement, death_test) \\\n  try { \\\n    GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement); \\\n  } catch (const ::std::exception& gtest_exception) { \\\n    fprintf(\\\n        stderr, \\\n        \"\\n%s: Caught std::exception-derived exception escaping the \" \\\n        \"death test statement. Exception message: %s\\n\", \\\n        ::testing::internal::FormatFileLocation(__FILE__, __LINE__).c_str(), \\\n        gtest_exception.what()); \\\n    fflush(stderr); \\\n    death_test->Abort(::testing::internal::DeathTest::TEST_THREW_EXCEPTION); \\\n  } catch (...) { \\\n    death_test->Abort(::testing::internal::DeathTest::TEST_THREW_EXCEPTION); \\\n  }\n\n# else\n#  define GTEST_EXECUTE_DEATH_TEST_STATEMENT_(statement, death_test) \\\n  GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement)\n\n# endif\n\n// This macro is for implementing ASSERT_DEATH*, EXPECT_DEATH*,\n// ASSERT_EXIT*, and EXPECT_EXIT*.\n#define GTEST_DEATH_TEST_(statement, predicate, regex_or_matcher, fail)        \\\n  GTEST_AMBIGUOUS_ELSE_BLOCKER_                                                \\\n  if (::testing::internal::AlwaysTrue()) {                                     \\\n    ::testing::internal::DeathTest* gtest_dt;                                  \\\n    if (!::testing::internal::DeathTest::Create(                               \\\n            #statement,                                                        \\\n            ::testing::internal::MakeDeathTestMatcher(regex_or_matcher),       \\\n            __FILE__, __LINE__, &gtest_dt)) {                                  \\\n      goto GTEST_CONCAT_TOKEN_(gtest_label_, __LINE__);                        \\\n    }                                                                          \\\n    if (gtest_dt != nullptr) {                                                 \\\n      std::unique_ptr< ::testing::internal::DeathTest> gtest_dt_ptr(gtest_dt); \\\n      switch (gtest_dt->AssumeRole()) {                                        \\\n        case ::testing::internal::DeathTest::OVERSEE_TEST:                     \\\n          if (!gtest_dt->Passed(predicate(gtest_dt->Wait()))) {                \\\n            goto GTEST_CONCAT_TOKEN_(gtest_label_, __LINE__);                  \\\n          }                                                                    \\\n          break;                                                               \\\n        case ::testing::internal::DeathTest::EXECUTE_TEST: {                   \\\n          ::testing::internal::DeathTest::ReturnSentinel gtest_sentinel(       \\\n              gtest_dt);                                                       \\\n          GTEST_EXECUTE_DEATH_TEST_STATEMENT_(statement, gtest_dt);            \\\n          gtest_dt->Abort(::testing::internal::DeathTest::TEST_DID_NOT_DIE);   \\\n          break;                                                               \\\n        }                                                                      \\\n        default:                                                               \\\n          break;                                                               \\\n      }                                                                        \\\n    }                                                                          \\\n  } else                                                                       \\\n    GTEST_CONCAT_TOKEN_(gtest_label_, __LINE__)                                \\\n        : fail(::testing::internal::DeathTest::LastMessage())\n// The symbol \"fail\" here expands to something into which a message\n// can be streamed.\n\n// This macro is for implementing ASSERT/EXPECT_DEBUG_DEATH when compiled in\n// NDEBUG mode. In this case we need the statements to be executed and the macro\n// must accept a streamed message even though the message is never printed.\n// The regex object is not evaluated, but it is used to prevent \"unused\"\n// warnings and to avoid an expression that doesn't compile in debug mode.\n#define GTEST_EXECUTE_STATEMENT_(statement, regex_or_matcher)    \\\n  GTEST_AMBIGUOUS_ELSE_BLOCKER_                                  \\\n  if (::testing::internal::AlwaysTrue()) {                       \\\n    GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement);   \\\n  } else if (!::testing::internal::AlwaysTrue()) {               \\\n    ::testing::internal::MakeDeathTestMatcher(regex_or_matcher); \\\n  } else                                                         \\\n    ::testing::Message()\n\n// A class representing the parsed contents of the\n// --gtest_internal_run_death_test flag, as it existed when\n// RUN_ALL_TESTS was called.\nclass InternalRunDeathTestFlag {\n public:\n  InternalRunDeathTestFlag(const std::string& a_file,\n                           int a_line,\n                           int an_index,\n                           int a_write_fd)\n      : file_(a_file), line_(a_line), index_(an_index),\n        write_fd_(a_write_fd) {}\n\n  ~InternalRunDeathTestFlag() {\n    if (write_fd_ >= 0)\n      posix::Close(write_fd_);\n  }\n\n  const std::string& file() const { return file_; }\n  int line() const { return line_; }\n  int index() const { return index_; }\n  int write_fd() const { return write_fd_; }\n\n private:\n  std::string file_;\n  int line_;\n  int index_;\n  int write_fd_;\n\n  GTEST_DISALLOW_COPY_AND_ASSIGN_(InternalRunDeathTestFlag);\n};\n\n// Returns a newly created InternalRunDeathTestFlag object with fields\n// initialized from the GTEST_FLAG(internal_run_death_test) flag if\n// the flag is specified; otherwise returns NULL.\nInternalRunDeathTestFlag* ParseInternalRunDeathTestFlag();\n\n#endif  // GTEST_HAS_DEATH_TEST\n\n}  // namespace internal\n}  // namespace testing\n\n#endif  // GOOGLETEST_INCLUDE_GTEST_INTERNAL_GTEST_DEATH_TEST_INTERNAL_H_\n"
  },
  {
    "path": "test/gtest/include/gtest/internal/gtest-filepath.h",
    "content": "// Copyright 2008, Google Inc.\n// All rights reserved.\n//\n// Redistribution and use in source and binary forms, with or without\n// modification, are permitted provided that the following conditions are\n// met:\n//\n//     * Redistributions of source code must retain the above copyright\n// notice, this list of conditions and the following disclaimer.\n//     * Redistributions in binary form must reproduce the above\n// copyright notice, this list of conditions and the following disclaimer\n// in the documentation and/or other materials provided with the\n// distribution.\n//     * Neither the name of Google Inc. nor the names of its\n// contributors may be used to endorse or promote products derived from\n// this software without specific prior written permission.\n//\n// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n// \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n//\n// Google Test filepath utilities\n//\n// This header file declares classes and functions used internally by\n// Google Test.  They are subject to change without notice.\n//\n// This file is #included in gtest/internal/gtest-internal.h.\n// Do not include this header file separately!\n\n// GOOGLETEST_CM0001 DO NOT DELETE\n\n#ifndef GOOGLETEST_INCLUDE_GTEST_INTERNAL_GTEST_FILEPATH_H_\n#define GOOGLETEST_INCLUDE_GTEST_INTERNAL_GTEST_FILEPATH_H_\n\n#include \"gtest/internal/gtest-string.h\"\n\nGTEST_DISABLE_MSC_WARNINGS_PUSH_(4251 \\\n/* class A needs to have dll-interface to be used by clients of class B */)\n\nnamespace testing {\nnamespace internal {\n\n// FilePath - a class for file and directory pathname manipulation which\n// handles platform-specific conventions (like the pathname separator).\n// Used for helper functions for naming files in a directory for xml output.\n// Except for Set methods, all methods are const or static, which provides an\n// \"immutable value object\" -- useful for peace of mind.\n// A FilePath with a value ending in a path separator (\"like/this/\") represents\n// a directory, otherwise it is assumed to represent a file. In either case,\n// it may or may not represent an actual file or directory in the file system.\n// Names are NOT checked for syntax correctness -- no checking for illegal\n// characters, malformed paths, etc.\n\nclass GTEST_API_ FilePath {\n public:\n  FilePath() : pathname_(\"\") { }\n  FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) { }\n\n  explicit FilePath(const std::string& pathname) : pathname_(pathname) {\n    Normalize();\n  }\n\n  FilePath& operator=(const FilePath& rhs) {\n    Set(rhs);\n    return *this;\n  }\n\n  void Set(const FilePath& rhs) {\n    pathname_ = rhs.pathname_;\n  }\n\n  const std::string& string() const { return pathname_; }\n  const char* c_str() const { return pathname_.c_str(); }\n\n  // Returns the current working directory, or \"\" if unsuccessful.\n  static FilePath GetCurrentDir();\n\n  // Given directory = \"dir\", base_name = \"test\", number = 0,\n  // extension = \"xml\", returns \"dir/test.xml\". If number is greater\n  // than zero (e.g., 12), returns \"dir/test_12.xml\".\n  // On Windows platform, uses \\ as the separator rather than /.\n  static FilePath MakeFileName(const FilePath& directory,\n                               const FilePath& base_name,\n                               int number,\n                               const char* extension);\n\n  // Given directory = \"dir\", relative_path = \"test.xml\",\n  // returns \"dir/test.xml\".\n  // On Windows, uses \\ as the separator rather than /.\n  static FilePath ConcatPaths(const FilePath& directory,\n                              const FilePath& relative_path);\n\n  // Returns a pathname for a file that does not currently exist. The pathname\n  // will be directory/base_name.extension or\n  // directory/base_name_<number>.extension if directory/base_name.extension\n  // already exists. The number will be incremented until a pathname is found\n  // that does not already exist.\n  // Examples: 'dir/foo_test.xml' or 'dir/foo_test_1.xml'.\n  // There could be a race condition if two or more processes are calling this\n  // function at the same time -- they could both pick the same filename.\n  static FilePath GenerateUniqueFileName(const FilePath& directory,\n                                         const FilePath& base_name,\n                                         const char* extension);\n\n  // Returns true if and only if the path is \"\".\n  bool IsEmpty() const { return pathname_.empty(); }\n\n  // If input name has a trailing separator character, removes it and returns\n  // the name, otherwise return the name string unmodified.\n  // On Windows platform, uses \\ as the separator, other platforms use /.\n  FilePath RemoveTrailingPathSeparator() const;\n\n  // Returns a copy of the FilePath with the directory part removed.\n  // Example: FilePath(\"path/to/file\").RemoveDirectoryName() returns\n  // FilePath(\"file\"). If there is no directory part (\"just_a_file\"), it returns\n  // the FilePath unmodified. If there is no file part (\"just_a_dir/\") it\n  // returns an empty FilePath (\"\").\n  // On Windows platform, '\\' is the path separator, otherwise it is '/'.\n  FilePath RemoveDirectoryName() const;\n\n  // RemoveFileName returns the directory path with the filename removed.\n  // Example: FilePath(\"path/to/file\").RemoveFileName() returns \"path/to/\".\n  // If the FilePath is \"a_file\" or \"/a_file\", RemoveFileName returns\n  // FilePath(\"./\") or, on Windows, FilePath(\".\\\\\"). If the filepath does\n  // not have a file, like \"just/a/dir/\", it returns the FilePath unmodified.\n  // On Windows platform, '\\' is the path separator, otherwise it is '/'.\n  FilePath RemoveFileName() const;\n\n  // Returns a copy of the FilePath with the case-insensitive extension removed.\n  // Example: FilePath(\"dir/file.exe\").RemoveExtension(\"EXE\") returns\n  // FilePath(\"dir/file\"). If a case-insensitive extension is not\n  // found, returns a copy of the original FilePath.\n  FilePath RemoveExtension(const char* extension) const;\n\n  // Creates directories so that path exists. Returns true if successful or if\n  // the directories already exist; returns false if unable to create\n  // directories for any reason. Will also return false if the FilePath does\n  // not represent a directory (that is, it doesn't end with a path separator).\n  bool CreateDirectoriesRecursively() const;\n\n  // Create the directory so that path exists. Returns true if successful or\n  // if the directory already exists; returns false if unable to create the\n  // directory for any reason, including if the parent directory does not\n  // exist. Not named \"CreateDirectory\" because that's a macro on Windows.\n  bool CreateFolder() const;\n\n  // Returns true if FilePath describes something in the file-system,\n  // either a file, directory, or whatever, and that something exists.\n  bool FileOrDirectoryExists() const;\n\n  // Returns true if pathname describes a directory in the file-system\n  // that exists.\n  bool DirectoryExists() const;\n\n  // Returns true if FilePath ends with a path separator, which indicates that\n  // it is intended to represent a directory. Returns false otherwise.\n  // This does NOT check that a directory (or file) actually exists.\n  bool IsDirectory() const;\n\n  // Returns true if pathname describes a root directory. (Windows has one\n  // root directory per disk drive.)\n  bool IsRootDirectory() const;\n\n  // Returns true if pathname describes an absolute path.\n  bool IsAbsolutePath() const;\n\n private:\n  // Replaces multiple consecutive separators with a single separator.\n  // For example, \"bar///foo\" becomes \"bar/foo\". Does not eliminate other\n  // redundancies that might be in a pathname involving \".\" or \"..\".\n  //\n  // A pathname with multiple consecutive separators may occur either through\n  // user error or as a result of some scripts or APIs that generate a pathname\n  // with a trailing separator. On other platforms the same API or script\n  // may NOT generate a pathname with a trailing \"/\". Then elsewhere that\n  // pathname may have another \"/\" and pathname components added to it,\n  // without checking for the separator already being there.\n  // The script language and operating system may allow paths like \"foo//bar\"\n  // but some of the functions in FilePath will not handle that correctly. In\n  // particular, RemoveTrailingPathSeparator() only removes one separator, and\n  // it is called in CreateDirectoriesRecursively() assuming that it will change\n  // a pathname from directory syntax (trailing separator) to filename syntax.\n  //\n  // On Windows this method also replaces the alternate path separator '/' with\n  // the primary path separator '\\\\', so that for example \"bar\\\\/\\\\foo\" becomes\n  // \"bar\\\\foo\".\n\n  void Normalize();\n\n  // Returns a pointer to the last occurrence of a valid path separator in\n  // the FilePath. On Windows, for example, both '/' and '\\' are valid path\n  // separators. Returns NULL if no path separator was found.\n  const char* FindLastPathSeparator() const;\n\n  std::string pathname_;\n};  // class FilePath\n\n}  // namespace internal\n}  // namespace testing\n\nGTEST_DISABLE_MSC_WARNINGS_POP_()  //  4251\n\n#endif  // GOOGLETEST_INCLUDE_GTEST_INTERNAL_GTEST_FILEPATH_H_\n"
  },
  {
    "path": "test/gtest/include/gtest/internal/gtest-internal.h",
    "content": "// Copyright 2005, Google Inc.\n// All rights reserved.\n//\n// Redistribution and use in source and binary forms, with or without\n// modification, are permitted provided that the following conditions are\n// met:\n//\n//     * Redistributions of source code must retain the above copyright\n// notice, this list of conditions and the following disclaimer.\n//     * Redistributions in binary form must reproduce the above\n// copyright notice, this list of conditions and the following disclaimer\n// in the documentation and/or other materials provided with the\n// distribution.\n//     * Neither the name of Google Inc. nor the names of its\n// contributors may be used to endorse or promote products derived from\n// this software without specific prior written permission.\n//\n// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n// \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n//\n// The Google C++ Testing and Mocking Framework (Google Test)\n//\n// This header file declares functions and macros used internally by\n// Google Test.  They are subject to change without notice.\n\n// GOOGLETEST_CM0001 DO NOT DELETE\n\n#ifndef GOOGLETEST_INCLUDE_GTEST_INTERNAL_GTEST_INTERNAL_H_\n#define GOOGLETEST_INCLUDE_GTEST_INTERNAL_GTEST_INTERNAL_H_\n\n#include \"gtest/internal/gtest-port.h\"\n\n#if GTEST_OS_LINUX\n# include <stdlib.h>\n# include <sys/types.h>\n# include <sys/wait.h>\n# include <unistd.h>\n#endif  // GTEST_OS_LINUX\n\n#if GTEST_HAS_EXCEPTIONS\n# include <stdexcept>\n#endif\n\n#include <ctype.h>\n#include <float.h>\n#include <string.h>\n#include <cstdint>\n#include <iomanip>\n#include <limits>\n#include <map>\n#include <set>\n#include <string>\n#include <type_traits>\n#include <vector>\n\n#include \"gtest/gtest-message.h\"\n#include \"gtest/internal/gtest-filepath.h\"\n#include \"gtest/internal/gtest-string.h\"\n#include \"gtest/internal/gtest-type-util.h\"\n\n// Due to C++ preprocessor weirdness, we need double indirection to\n// concatenate two tokens when one of them is __LINE__.  Writing\n//\n//   foo ## __LINE__\n//\n// will result in the token foo__LINE__, instead of foo followed by\n// the current line number.  For more details, see\n// http://www.parashift.com/c++-faq-lite/misc-technical-issues.html#faq-39.6\n#define GTEST_CONCAT_TOKEN_(foo, bar) GTEST_CONCAT_TOKEN_IMPL_(foo, bar)\n#define GTEST_CONCAT_TOKEN_IMPL_(foo, bar) foo ## bar\n\n// Stringifies its argument.\n// Work around a bug in visual studio which doesn't accept code like this:\n//\n//   #define GTEST_STRINGIFY_(name) #name\n//   #define MACRO(a, b, c) ... GTEST_STRINGIFY_(a) ...\n//   MACRO(, x, y)\n//\n// Complaining about the argument to GTEST_STRINGIFY_ being empty.\n// This is allowed by the spec.\n#define GTEST_STRINGIFY_HELPER_(name, ...) #name\n#define GTEST_STRINGIFY_(...) GTEST_STRINGIFY_HELPER_(__VA_ARGS__, )\n\nnamespace proto2 {\nclass MessageLite;\n}\n\nnamespace testing {\n\n// Forward declarations.\n\nclass AssertionResult;                 // Result of an assertion.\nclass Message;                         // Represents a failure message.\nclass Test;                            // Represents a test.\nclass TestInfo;                        // Information about a test.\nclass TestPartResult;                  // Result of a test part.\nclass UnitTest;                        // A collection of test suites.\n\ntemplate <typename T>\n::std::string PrintToString(const T& value);\n\nnamespace internal {\n\nstruct TraceInfo;                      // Information about a trace point.\nclass TestInfoImpl;                    // Opaque implementation of TestInfo\nclass UnitTestImpl;                    // Opaque implementation of UnitTest\n\n// The text used in failure messages to indicate the start of the\n// stack trace.\nGTEST_API_ extern const char kStackTraceMarker[];\n\n// An IgnoredValue object can be implicitly constructed from ANY value.\nclass IgnoredValue {\n  struct Sink {};\n public:\n  // This constructor template allows any value to be implicitly\n  // converted to IgnoredValue.  The object has no data member and\n  // doesn't try to remember anything about the argument.  We\n  // deliberately omit the 'explicit' keyword in order to allow the\n  // conversion to be implicit.\n  // Disable the conversion if T already has a magical conversion operator.\n  // Otherwise we get ambiguity.\n  template <typename T,\n            typename std::enable_if<!std::is_convertible<T, Sink>::value,\n                                    int>::type = 0>\n  IgnoredValue(const T& /* ignored */) {}  // NOLINT(runtime/explicit)\n};\n\n// Appends the user-supplied message to the Google-Test-generated message.\nGTEST_API_ std::string AppendUserMessage(\n    const std::string& gtest_msg, const Message& user_msg);\n\n#if GTEST_HAS_EXCEPTIONS\n\nGTEST_DISABLE_MSC_WARNINGS_PUSH_(4275 \\\n/* an exported class was derived from a class that was not exported */)\n\n// This exception is thrown by (and only by) a failed Google Test\n// assertion when GTEST_FLAG(throw_on_failure) is true (if exceptions\n// are enabled).  We derive it from std::runtime_error, which is for\n// errors presumably detectable only at run time.  Since\n// std::runtime_error inherits from std::exception, many testing\n// frameworks know how to extract and print the message inside it.\nclass GTEST_API_ GoogleTestFailureException : public ::std::runtime_error {\n public:\n  explicit GoogleTestFailureException(const TestPartResult& failure);\n};\n\nGTEST_DISABLE_MSC_WARNINGS_POP_()  //  4275\n\n#endif  // GTEST_HAS_EXCEPTIONS\n\nnamespace edit_distance {\n// Returns the optimal edits to go from 'left' to 'right'.\n// All edits cost the same, with replace having lower priority than\n// add/remove.\n// Simple implementation of the Wagner-Fischer algorithm.\n// See http://en.wikipedia.org/wiki/Wagner-Fischer_algorithm\nenum EditType { kMatch, kAdd, kRemove, kReplace };\nGTEST_API_ std::vector<EditType> CalculateOptimalEdits(\n    const std::vector<size_t>& left, const std::vector<size_t>& right);\n\n// Same as above, but the input is represented as strings.\nGTEST_API_ std::vector<EditType> CalculateOptimalEdits(\n    const std::vector<std::string>& left,\n    const std::vector<std::string>& right);\n\n// Create a diff of the input strings in Unified diff format.\nGTEST_API_ std::string CreateUnifiedDiff(const std::vector<std::string>& left,\n                                         const std::vector<std::string>& right,\n                                         size_t context = 2);\n\n}  // namespace edit_distance\n\n// Calculate the diff between 'left' and 'right' and return it in unified diff\n// format.\n// If not null, stores in 'total_line_count' the total number of lines found\n// in left + right.\nGTEST_API_ std::string DiffStrings(const std::string& left,\n                                   const std::string& right,\n                                   size_t* total_line_count);\n\n// Constructs and returns the message for an equality assertion\n// (e.g. ASSERT_EQ, EXPECT_STREQ, etc) failure.\n//\n// The first four parameters are the expressions used in the assertion\n// and their values, as strings.  For example, for ASSERT_EQ(foo, bar)\n// where foo is 5 and bar is 6, we have:\n//\n//   expected_expression: \"foo\"\n//   actual_expression:   \"bar\"\n//   expected_value:      \"5\"\n//   actual_value:        \"6\"\n//\n// The ignoring_case parameter is true if and only if the assertion is a\n// *_STRCASEEQ*.  When it's true, the string \" (ignoring case)\" will\n// be inserted into the message.\nGTEST_API_ AssertionResult EqFailure(const char* expected_expression,\n                                     const char* actual_expression,\n                                     const std::string& expected_value,\n                                     const std::string& actual_value,\n                                     bool ignoring_case);\n\n// Constructs a failure message for Boolean assertions such as EXPECT_TRUE.\nGTEST_API_ std::string GetBoolAssertionFailureMessage(\n    const AssertionResult& assertion_result,\n    const char* expression_text,\n    const char* actual_predicate_value,\n    const char* expected_predicate_value);\n\n// This template class represents an IEEE floating-point number\n// (either single-precision or double-precision, depending on the\n// template parameters).\n//\n// The purpose of this class is to do more sophisticated number\n// comparison.  (Due to round-off error, etc, it's very unlikely that\n// two floating-points will be equal exactly.  Hence a naive\n// comparison by the == operation often doesn't work.)\n//\n// Format of IEEE floating-point:\n//\n//   The most-significant bit being the leftmost, an IEEE\n//   floating-point looks like\n//\n//     sign_bit exponent_bits fraction_bits\n//\n//   Here, sign_bit is a single bit that designates the sign of the\n//   number.\n//\n//   For float, there are 8 exponent bits and 23 fraction bits.\n//\n//   For double, there are 11 exponent bits and 52 fraction bits.\n//\n//   More details can be found at\n//   http://en.wikipedia.org/wiki/IEEE_floating-point_standard.\n//\n// Template parameter:\n//\n//   RawType: the raw floating-point type (either float or double)\ntemplate <typename RawType>\nclass FloatingPoint {\n public:\n  // Defines the unsigned integer type that has the same size as the\n  // floating point number.\n  typedef typename TypeWithSize<sizeof(RawType)>::UInt Bits;\n\n  // Constants.\n\n  // # of bits in a number.\n  static const size_t kBitCount = 8*sizeof(RawType);\n\n  // # of fraction bits in a number.\n  static const size_t kFractionBitCount =\n    std::numeric_limits<RawType>::digits - 1;\n\n  // # of exponent bits in a number.\n  static const size_t kExponentBitCount = kBitCount - 1 - kFractionBitCount;\n\n  // The mask for the sign bit.\n  static const Bits kSignBitMask = static_cast<Bits>(1) << (kBitCount - 1);\n\n  // The mask for the fraction bits.\n  static const Bits kFractionBitMask =\n    ~static_cast<Bits>(0) >> (kExponentBitCount + 1);\n\n  // The mask for the exponent bits.\n  static const Bits kExponentBitMask = ~(kSignBitMask | kFractionBitMask);\n\n  // How many ULP's (Units in the Last Place) we want to tolerate when\n  // comparing two numbers.  The larger the value, the more error we\n  // allow.  A 0 value means that two numbers must be exactly the same\n  // to be considered equal.\n  //\n  // The maximum error of a single floating-point operation is 0.5\n  // units in the last place.  On Intel CPU's, all floating-point\n  // calculations are done with 80-bit precision, while double has 64\n  // bits.  Therefore, 4 should be enough for ordinary use.\n  //\n  // See the following article for more details on ULP:\n  // http://randomascii.wordpress.com/2012/02/25/comparing-floating-point-numbers-2012-edition/\n  static const uint32_t kMaxUlps = 4;\n\n  // Constructs a FloatingPoint from a raw floating-point number.\n  //\n  // On an Intel CPU, passing a non-normalized NAN (Not a Number)\n  // around may change its bits, although the new value is guaranteed\n  // to be also a NAN.  Therefore, don't expect this constructor to\n  // preserve the bits in x when x is a NAN.\n  explicit FloatingPoint(const RawType& x) { u_.value_ = x; }\n\n  // Static methods\n\n  // Reinterprets a bit pattern as a floating-point number.\n  //\n  // This function is needed to test the AlmostEquals() method.\n  static RawType ReinterpretBits(const Bits bits) {\n    FloatingPoint fp(0);\n    fp.u_.bits_ = bits;\n    return fp.u_.value_;\n  }\n\n  // Returns the floating-point number that represent positive infinity.\n  static RawType Infinity() {\n    return ReinterpretBits(kExponentBitMask);\n  }\n\n  // Returns the maximum representable finite floating-point number.\n  static RawType Max();\n\n  // Non-static methods\n\n  // Returns the bits that represents this number.\n  const Bits &bits() const { return u_.bits_; }\n\n  // Returns the exponent bits of this number.\n  Bits exponent_bits() const { return kExponentBitMask & u_.bits_; }\n\n  // Returns the fraction bits of this number.\n  Bits fraction_bits() const { return kFractionBitMask & u_.bits_; }\n\n  // Returns the sign bit of this number.\n  Bits sign_bit() const { return kSignBitMask & u_.bits_; }\n\n  // Returns true if and only if this is NAN (not a number).\n  bool is_nan() const {\n    // It's a NAN if the exponent bits are all ones and the fraction\n    // bits are not entirely zeros.\n    return (exponent_bits() == kExponentBitMask) && (fraction_bits() != 0);\n  }\n\n  // Returns true if and only if this number is at most kMaxUlps ULP's away\n  // from rhs.  In particular, this function:\n  //\n  //   - returns false if either number is (or both are) NAN.\n  //   - treats really large numbers as almost equal to infinity.\n  //   - thinks +0.0 and -0.0 are 0 DLP's apart.\n  bool AlmostEquals(const FloatingPoint& rhs) const {\n    // The IEEE standard says that any comparison operation involving\n    // a NAN must return false.\n    if (is_nan() || rhs.is_nan()) return false;\n\n    return DistanceBetweenSignAndMagnitudeNumbers(u_.bits_, rhs.u_.bits_)\n        <= kMaxUlps;\n  }\n\n private:\n  // The data type used to store the actual floating-point number.\n  union FloatingPointUnion {\n    RawType value_;  // The raw floating-point number.\n    Bits bits_;      // The bits that represent the number.\n  };\n\n  // Converts an integer from the sign-and-magnitude representation to\n  // the biased representation.  More precisely, let N be 2 to the\n  // power of (kBitCount - 1), an integer x is represented by the\n  // unsigned number x + N.\n  //\n  // For instance,\n  //\n  //   -N + 1 (the most negative number representable using\n  //          sign-and-magnitude) is represented by 1;\n  //   0      is represented by N; and\n  //   N - 1  (the biggest number representable using\n  //          sign-and-magnitude) is represented by 2N - 1.\n  //\n  // Read http://en.wikipedia.org/wiki/Signed_number_representations\n  // for more details on signed number representations.\n  static Bits SignAndMagnitudeToBiased(const Bits &sam) {\n    if (kSignBitMask & sam) {\n      // sam represents a negative number.\n      return ~sam + 1;\n    } else {\n      // sam represents a positive number.\n      return kSignBitMask | sam;\n    }\n  }\n\n  // Given two numbers in the sign-and-magnitude representation,\n  // returns the distance between them as an unsigned number.\n  static Bits DistanceBetweenSignAndMagnitudeNumbers(const Bits &sam1,\n                                                     const Bits &sam2) {\n    const Bits biased1 = SignAndMagnitudeToBiased(sam1);\n    const Bits biased2 = SignAndMagnitudeToBiased(sam2);\n    return (biased1 >= biased2) ? (biased1 - biased2) : (biased2 - biased1);\n  }\n\n  FloatingPointUnion u_;\n};\n\n// We cannot use std::numeric_limits<T>::max() as it clashes with the max()\n// macro defined by <windows.h>.\ntemplate <>\ninline float FloatingPoint<float>::Max() { return FLT_MAX; }\ntemplate <>\ninline double FloatingPoint<double>::Max() { return DBL_MAX; }\n\n// Typedefs the instances of the FloatingPoint template class that we\n// care to use.\ntypedef FloatingPoint<float> Float;\ntypedef FloatingPoint<double> Double;\n\n// In order to catch the mistake of putting tests that use different\n// test fixture classes in the same test suite, we need to assign\n// unique IDs to fixture classes and compare them.  The TypeId type is\n// used to hold such IDs.  The user should treat TypeId as an opaque\n// type: the only operation allowed on TypeId values is to compare\n// them for equality using the == operator.\ntypedef const void* TypeId;\n\ntemplate <typename T>\nclass TypeIdHelper {\n public:\n  // dummy_ must not have a const type.  Otherwise an overly eager\n  // compiler (e.g. MSVC 7.1 & 8.0) may try to merge\n  // TypeIdHelper<T>::dummy_ for different Ts as an \"optimization\".\n  static bool dummy_;\n};\n\ntemplate <typename T>\nbool TypeIdHelper<T>::dummy_ = false;\n\n// GetTypeId<T>() returns the ID of type T.  Different values will be\n// returned for different types.  Calling the function twice with the\n// same type argument is guaranteed to return the same ID.\ntemplate <typename T>\nTypeId GetTypeId() {\n  // The compiler is required to allocate a different\n  // TypeIdHelper<T>::dummy_ variable for each T used to instantiate\n  // the template.  Therefore, the address of dummy_ is guaranteed to\n  // be unique.\n  return &(TypeIdHelper<T>::dummy_);\n}\n\n// Returns the type ID of ::testing::Test.  Always call this instead\n// of GetTypeId< ::testing::Test>() to get the type ID of\n// ::testing::Test, as the latter may give the wrong result due to a\n// suspected linker bug when compiling Google Test as a Mac OS X\n// framework.\nGTEST_API_ TypeId GetTestTypeId();\n\n// Defines the abstract factory interface that creates instances\n// of a Test object.\nclass TestFactoryBase {\n public:\n  virtual ~TestFactoryBase() {}\n\n  // Creates a test instance to run. The instance is both created and destroyed\n  // within TestInfoImpl::Run()\n  virtual Test* CreateTest() = 0;\n\n protected:\n  TestFactoryBase() {}\n\n private:\n  GTEST_DISALLOW_COPY_AND_ASSIGN_(TestFactoryBase);\n};\n\n// This class provides implementation of TeastFactoryBase interface.\n// It is used in TEST and TEST_F macros.\ntemplate <class TestClass>\nclass TestFactoryImpl : public TestFactoryBase {\n public:\n  Test* CreateTest() override { return new TestClass; }\n};\n\n#if GTEST_OS_WINDOWS\n\n// Predicate-formatters for implementing the HRESULT checking macros\n// {ASSERT|EXPECT}_HRESULT_{SUCCEEDED|FAILED}\n// We pass a long instead of HRESULT to avoid causing an\n// include dependency for the HRESULT type.\nGTEST_API_ AssertionResult IsHRESULTSuccess(const char* expr,\n                                            long hr);  // NOLINT\nGTEST_API_ AssertionResult IsHRESULTFailure(const char* expr,\n                                            long hr);  // NOLINT\n\n#endif  // GTEST_OS_WINDOWS\n\n// Types of SetUpTestSuite() and TearDownTestSuite() functions.\nusing SetUpTestSuiteFunc = void (*)();\nusing TearDownTestSuiteFunc = void (*)();\n\nstruct CodeLocation {\n  CodeLocation(const std::string& a_file, int a_line)\n      : file(a_file), line(a_line) {}\n\n  std::string file;\n  int line;\n};\n\n//  Helper to identify which setup function for TestCase / TestSuite to call.\n//  Only one function is allowed, either TestCase or TestSute but not both.\n\n// Utility functions to help SuiteApiResolver\nusing SetUpTearDownSuiteFuncType = void (*)();\n\ninline SetUpTearDownSuiteFuncType GetNotDefaultOrNull(\n    SetUpTearDownSuiteFuncType a, SetUpTearDownSuiteFuncType def) {\n  return a == def ? nullptr : a;\n}\n\ntemplate <typename T>\n//  Note that SuiteApiResolver inherits from T because\n//  SetUpTestSuite()/TearDownTestSuite() could be protected. Ths way\n//  SuiteApiResolver can access them.\nstruct SuiteApiResolver : T {\n  // testing::Test is only forward declared at this point. So we make it a\n  // dependend class for the compiler to be OK with it.\n  using Test =\n      typename std::conditional<sizeof(T) != 0, ::testing::Test, void>::type;\n\n  static SetUpTearDownSuiteFuncType GetSetUpCaseOrSuite(const char* filename,\n                                                        int line_num) {\n#ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_\n    SetUpTearDownSuiteFuncType test_case_fp =\n        GetNotDefaultOrNull(&T::SetUpTestCase, &Test::SetUpTestCase);\n    SetUpTearDownSuiteFuncType test_suite_fp =\n        GetNotDefaultOrNull(&T::SetUpTestSuite, &Test::SetUpTestSuite);\n\n    GTEST_CHECK_(!test_case_fp || !test_suite_fp)\n        << \"Test can not provide both SetUpTestSuite and SetUpTestCase, please \"\n           \"make sure there is only one present at \"\n        << filename << \":\" << line_num;\n\n    return test_case_fp != nullptr ? test_case_fp : test_suite_fp;\n#else\n    (void)(filename);\n    (void)(line_num);\n    return &T::SetUpTestSuite;\n#endif\n  }\n\n  static SetUpTearDownSuiteFuncType GetTearDownCaseOrSuite(const char* filename,\n                                                           int line_num) {\n#ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_\n    SetUpTearDownSuiteFuncType test_case_fp =\n        GetNotDefaultOrNull(&T::TearDownTestCase, &Test::TearDownTestCase);\n    SetUpTearDownSuiteFuncType test_suite_fp =\n        GetNotDefaultOrNull(&T::TearDownTestSuite, &Test::TearDownTestSuite);\n\n    GTEST_CHECK_(!test_case_fp || !test_suite_fp)\n        << \"Test can not provide both TearDownTestSuite and TearDownTestCase,\"\n           \" please make sure there is only one present at\"\n        << filename << \":\" << line_num;\n\n    return test_case_fp != nullptr ? test_case_fp : test_suite_fp;\n#else\n    (void)(filename);\n    (void)(line_num);\n    return &T::TearDownTestSuite;\n#endif\n  }\n};\n\n// Creates a new TestInfo object and registers it with Google Test;\n// returns the created object.\n//\n// Arguments:\n//\n//   test_suite_name:  name of the test suite\n//   name:             name of the test\n//   type_param:       the name of the test's type parameter, or NULL if\n//                     this is not a typed or a type-parameterized test.\n//   value_param:      text representation of the test's value parameter,\n//                     or NULL if this is not a type-parameterized test.\n//   code_location:    code location where the test is defined\n//   fixture_class_id: ID of the test fixture class\n//   set_up_tc:        pointer to the function that sets up the test suite\n//   tear_down_tc:     pointer to the function that tears down the test suite\n//   factory:          pointer to the factory that creates a test object.\n//                     The newly created TestInfo instance will assume\n//                     ownership of the factory object.\nGTEST_API_ TestInfo* MakeAndRegisterTestInfo(\n    const char* test_suite_name, const char* name, const char* type_param,\n    const char* value_param, CodeLocation code_location,\n    TypeId fixture_class_id, SetUpTestSuiteFunc set_up_tc,\n    TearDownTestSuiteFunc tear_down_tc, TestFactoryBase* factory);\n\n// If *pstr starts with the given prefix, modifies *pstr to be right\n// past the prefix and returns true; otherwise leaves *pstr unchanged\n// and returns false.  None of pstr, *pstr, and prefix can be NULL.\nGTEST_API_ bool SkipPrefix(const char* prefix, const char** pstr);\n\nGTEST_DISABLE_MSC_WARNINGS_PUSH_(4251 \\\n/* class A needs to have dll-interface to be used by clients of class B */)\n\n// State of the definition of a type-parameterized test suite.\nclass GTEST_API_ TypedTestSuitePState {\n public:\n  TypedTestSuitePState() : registered_(false) {}\n\n  // Adds the given test name to defined_test_names_ and return true\n  // if the test suite hasn't been registered; otherwise aborts the\n  // program.\n  bool AddTestName(const char* file, int line, const char* case_name,\n                   const char* test_name) {\n    if (registered_) {\n      fprintf(stderr,\n              \"%s Test %s must be defined before \"\n              \"REGISTER_TYPED_TEST_SUITE_P(%s, ...).\\n\",\n              FormatFileLocation(file, line).c_str(), test_name, case_name);\n      fflush(stderr);\n      posix::Abort();\n    }\n    registered_tests_.insert(\n        ::std::make_pair(test_name, CodeLocation(file, line)));\n    return true;\n  }\n\n  bool TestExists(const std::string& test_name) const {\n    return registered_tests_.count(test_name) > 0;\n  }\n\n  const CodeLocation& GetCodeLocation(const std::string& test_name) const {\n    RegisteredTestsMap::const_iterator it = registered_tests_.find(test_name);\n    GTEST_CHECK_(it != registered_tests_.end());\n    return it->second;\n  }\n\n  // Verifies that registered_tests match the test names in\n  // defined_test_names_; returns registered_tests if successful, or\n  // aborts the program otherwise.\n  const char* VerifyRegisteredTestNames(const char* test_suite_name,\n                                        const char* file, int line,\n                                        const char* registered_tests);\n\n private:\n  typedef ::std::map<std::string, CodeLocation> RegisteredTestsMap;\n\n  bool registered_;\n  RegisteredTestsMap registered_tests_;\n};\n\n//  Legacy API is deprecated but still available\n#ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_\nusing TypedTestCasePState = TypedTestSuitePState;\n#endif  //  GTEST_REMOVE_LEGACY_TEST_CASEAPI_\n\nGTEST_DISABLE_MSC_WARNINGS_POP_()  //  4251\n\n// Skips to the first non-space char after the first comma in 'str';\n// returns NULL if no comma is found in 'str'.\ninline const char* SkipComma(const char* str) {\n  const char* comma = strchr(str, ',');\n  if (comma == nullptr) {\n    return nullptr;\n  }\n  while (IsSpace(*(++comma))) {}\n  return comma;\n}\n\n// Returns the prefix of 'str' before the first comma in it; returns\n// the entire string if it contains no comma.\ninline std::string GetPrefixUntilComma(const char* str) {\n  const char* comma = strchr(str, ',');\n  return comma == nullptr ? str : std::string(str, comma);\n}\n\n// Splits a given string on a given delimiter, populating a given\n// vector with the fields.\nvoid SplitString(const ::std::string& str, char delimiter,\n                 ::std::vector< ::std::string>* dest);\n\n// The default argument to the template below for the case when the user does\n// not provide a name generator.\nstruct DefaultNameGenerator {\n  template <typename T>\n  static std::string GetName(int i) {\n    return StreamableToString(i);\n  }\n};\n\ntemplate <typename Provided = DefaultNameGenerator>\nstruct NameGeneratorSelector {\n  typedef Provided type;\n};\n\ntemplate <typename NameGenerator>\nvoid GenerateNamesRecursively(internal::None, std::vector<std::string>*, int) {}\n\ntemplate <typename NameGenerator, typename Types>\nvoid GenerateNamesRecursively(Types, std::vector<std::string>* result, int i) {\n  result->push_back(NameGenerator::template GetName<typename Types::Head>(i));\n  GenerateNamesRecursively<NameGenerator>(typename Types::Tail(), result,\n                                          i + 1);\n}\n\ntemplate <typename NameGenerator, typename Types>\nstd::vector<std::string> GenerateNames() {\n  std::vector<std::string> result;\n  GenerateNamesRecursively<NameGenerator>(Types(), &result, 0);\n  return result;\n}\n\n// TypeParameterizedTest<Fixture, TestSel, Types>::Register()\n// registers a list of type-parameterized tests with Google Test.  The\n// return value is insignificant - we just need to return something\n// such that we can call this function in a namespace scope.\n//\n// Implementation note: The GTEST_TEMPLATE_ macro declares a template\n// template parameter.  It's defined in gtest-type-util.h.\ntemplate <GTEST_TEMPLATE_ Fixture, class TestSel, typename Types>\nclass TypeParameterizedTest {\n public:\n  // 'index' is the index of the test in the type list 'Types'\n  // specified in INSTANTIATE_TYPED_TEST_SUITE_P(Prefix, TestSuite,\n  // Types).  Valid values for 'index' are [0, N - 1] where N is the\n  // length of Types.\n  static bool Register(const char* prefix, const CodeLocation& code_location,\n                       const char* case_name, const char* test_names, int index,\n                       const std::vector<std::string>& type_names =\n                           GenerateNames<DefaultNameGenerator, Types>()) {\n    typedef typename Types::Head Type;\n    typedef Fixture<Type> FixtureClass;\n    typedef typename GTEST_BIND_(TestSel, Type) TestClass;\n\n    // First, registers the first type-parameterized test in the type\n    // list.\n    MakeAndRegisterTestInfo(\n        (std::string(prefix) + (prefix[0] == '\\0' ? \"\" : \"/\") + case_name +\n         \"/\" + type_names[static_cast<size_t>(index)])\n            .c_str(),\n        StripTrailingSpaces(GetPrefixUntilComma(test_names)).c_str(),\n        GetTypeName<Type>().c_str(),\n        nullptr,  // No value parameter.\n        code_location, GetTypeId<FixtureClass>(),\n        SuiteApiResolver<TestClass>::GetSetUpCaseOrSuite(\n            code_location.file.c_str(), code_location.line),\n        SuiteApiResolver<TestClass>::GetTearDownCaseOrSuite(\n            code_location.file.c_str(), code_location.line),\n        new TestFactoryImpl<TestClass>);\n\n    // Next, recurses (at compile time) with the tail of the type list.\n    return TypeParameterizedTest<Fixture, TestSel,\n                                 typename Types::Tail>::Register(prefix,\n                                                                 code_location,\n                                                                 case_name,\n                                                                 test_names,\n                                                                 index + 1,\n                                                                 type_names);\n  }\n};\n\n// The base case for the compile time recursion.\ntemplate <GTEST_TEMPLATE_ Fixture, class TestSel>\nclass TypeParameterizedTest<Fixture, TestSel, internal::None> {\n public:\n  static bool Register(const char* /*prefix*/, const CodeLocation&,\n                       const char* /*case_name*/, const char* /*test_names*/,\n                       int /*index*/,\n                       const std::vector<std::string>& =\n                           std::vector<std::string>() /*type_names*/) {\n    return true;\n  }\n};\n\nGTEST_API_ void RegisterTypeParameterizedTestSuite(const char* test_suite_name,\n                                                   CodeLocation code_location);\nGTEST_API_ void RegisterTypeParameterizedTestSuiteInstantiation(\n    const char* case_name);\n\n// TypeParameterizedTestSuite<Fixture, Tests, Types>::Register()\n// registers *all combinations* of 'Tests' and 'Types' with Google\n// Test.  The return value is insignificant - we just need to return\n// something such that we can call this function in a namespace scope.\ntemplate <GTEST_TEMPLATE_ Fixture, typename Tests, typename Types>\nclass TypeParameterizedTestSuite {\n public:\n  static bool Register(const char* prefix, CodeLocation code_location,\n                       const TypedTestSuitePState* state, const char* case_name,\n                       const char* test_names,\n                       const std::vector<std::string>& type_names =\n                           GenerateNames<DefaultNameGenerator, Types>()) {\n    RegisterTypeParameterizedTestSuiteInstantiation(case_name);\n    std::string test_name = StripTrailingSpaces(\n        GetPrefixUntilComma(test_names));\n    if (!state->TestExists(test_name)) {\n      fprintf(stderr, \"Failed to get code location for test %s.%s at %s.\",\n              case_name, test_name.c_str(),\n              FormatFileLocation(code_location.file.c_str(),\n                                 code_location.line).c_str());\n      fflush(stderr);\n      posix::Abort();\n    }\n    const CodeLocation& test_location = state->GetCodeLocation(test_name);\n\n    typedef typename Tests::Head Head;\n\n    // First, register the first test in 'Test' for each type in 'Types'.\n    TypeParameterizedTest<Fixture, Head, Types>::Register(\n        prefix, test_location, case_name, test_names, 0, type_names);\n\n    // Next, recurses (at compile time) with the tail of the test list.\n    return TypeParameterizedTestSuite<Fixture, typename Tests::Tail,\n                                      Types>::Register(prefix, code_location,\n                                                       state, case_name,\n                                                       SkipComma(test_names),\n                                                       type_names);\n  }\n};\n\n// The base case for the compile time recursion.\ntemplate <GTEST_TEMPLATE_ Fixture, typename Types>\nclass TypeParameterizedTestSuite<Fixture, internal::None, Types> {\n public:\n  static bool Register(const char* /*prefix*/, const CodeLocation&,\n                       const TypedTestSuitePState* /*state*/,\n                       const char* /*case_name*/, const char* /*test_names*/,\n                       const std::vector<std::string>& =\n                           std::vector<std::string>() /*type_names*/) {\n    return true;\n  }\n};\n\n// Returns the current OS stack trace as an std::string.\n//\n// The maximum number of stack frames to be included is specified by\n// the gtest_stack_trace_depth flag.  The skip_count parameter\n// specifies the number of top frames to be skipped, which doesn't\n// count against the number of frames to be included.\n//\n// For example, if Foo() calls Bar(), which in turn calls\n// GetCurrentOsStackTraceExceptTop(..., 1), Foo() will be included in\n// the trace but Bar() and GetCurrentOsStackTraceExceptTop() won't.\nGTEST_API_ std::string GetCurrentOsStackTraceExceptTop(\n    UnitTest* unit_test, int skip_count);\n\n// Helpers for suppressing warnings on unreachable code or constant\n// condition.\n\n// Always returns true.\nGTEST_API_ bool AlwaysTrue();\n\n// Always returns false.\ninline bool AlwaysFalse() { return !AlwaysTrue(); }\n\n// Helper for suppressing false warning from Clang on a const char*\n// variable declared in a conditional expression always being NULL in\n// the else branch.\nstruct GTEST_API_ ConstCharPtr {\n  ConstCharPtr(const char* str) : value(str) {}\n  operator bool() const { return true; }\n  const char* value;\n};\n\n// Helper for declaring std::string within 'if' statement\n// in pre C++17 build environment.\nstruct TrueWithString {\n  TrueWithString() = default;\n  explicit TrueWithString(const char* str) : value(str) {}\n  explicit TrueWithString(const std::string& str) : value(str) {}\n  explicit operator bool() const { return true; }\n  std::string value;\n};\n\n// A simple Linear Congruential Generator for generating random\n// numbers with a uniform distribution.  Unlike rand() and srand(), it\n// doesn't use global state (and therefore can't interfere with user\n// code).  Unlike rand_r(), it's portable.  An LCG isn't very random,\n// but it's good enough for our purposes.\nclass GTEST_API_ Random {\n public:\n  static const uint32_t kMaxRange = 1u << 31;\n\n  explicit Random(uint32_t seed) : state_(seed) {}\n\n  void Reseed(uint32_t seed) { state_ = seed; }\n\n  // Generates a random number from [0, range).  Crashes if 'range' is\n  // 0 or greater than kMaxRange.\n  uint32_t Generate(uint32_t range);\n\n private:\n  uint32_t state_;\n  GTEST_DISALLOW_COPY_AND_ASSIGN_(Random);\n};\n\n// Turns const U&, U&, const U, and U all into U.\n#define GTEST_REMOVE_REFERENCE_AND_CONST_(T) \\\n  typename std::remove_const<typename std::remove_reference<T>::type>::type\n\n// HasDebugStringAndShortDebugString<T>::value is a compile-time bool constant\n// that's true if and only if T has methods DebugString() and ShortDebugString()\n// that return std::string.\ntemplate <typename T>\nclass HasDebugStringAndShortDebugString {\n private:\n  template <typename C>\n  static auto CheckDebugString(C*) -> typename std::is_same<\n      std::string, decltype(std::declval<const C>().DebugString())>::type;\n  template <typename>\n  static std::false_type CheckDebugString(...);\n\n  template <typename C>\n  static auto CheckShortDebugString(C*) -> typename std::is_same<\n      std::string, decltype(std::declval<const C>().ShortDebugString())>::type;\n  template <typename>\n  static std::false_type CheckShortDebugString(...);\n\n  using HasDebugStringType = decltype(CheckDebugString<T>(nullptr));\n  using HasShortDebugStringType = decltype(CheckShortDebugString<T>(nullptr));\n\n public:\n  static constexpr bool value =\n      HasDebugStringType::value && HasShortDebugStringType::value;\n};\n\ntemplate <typename T>\nconstexpr bool HasDebugStringAndShortDebugString<T>::value;\n\n// When the compiler sees expression IsContainerTest<C>(0), if C is an\n// STL-style container class, the first overload of IsContainerTest\n// will be viable (since both C::iterator* and C::const_iterator* are\n// valid types and NULL can be implicitly converted to them).  It will\n// be picked over the second overload as 'int' is a perfect match for\n// the type of argument 0.  If C::iterator or C::const_iterator is not\n// a valid type, the first overload is not viable, and the second\n// overload will be picked.  Therefore, we can determine whether C is\n// a container class by checking the type of IsContainerTest<C>(0).\n// The value of the expression is insignificant.\n//\n// In C++11 mode we check the existence of a const_iterator and that an\n// iterator is properly implemented for the container.\n//\n// For pre-C++11 that we look for both C::iterator and C::const_iterator.\n// The reason is that C++ injects the name of a class as a member of the\n// class itself (e.g. you can refer to class iterator as either\n// 'iterator' or 'iterator::iterator').  If we look for C::iterator\n// only, for example, we would mistakenly think that a class named\n// iterator is an STL container.\n//\n// Also note that the simpler approach of overloading\n// IsContainerTest(typename C::const_iterator*) and\n// IsContainerTest(...) doesn't work with Visual Age C++ and Sun C++.\ntypedef int IsContainer;\ntemplate <class C,\n          class Iterator = decltype(::std::declval<const C&>().begin()),\n          class = decltype(::std::declval<const C&>().end()),\n          class = decltype(++::std::declval<Iterator&>()),\n          class = decltype(*::std::declval<Iterator>()),\n          class = typename C::const_iterator>\nIsContainer IsContainerTest(int /* dummy */) {\n  return 0;\n}\n\ntypedef char IsNotContainer;\ntemplate <class C>\nIsNotContainer IsContainerTest(long /* dummy */) { return '\\0'; }\n\n// Trait to detect whether a type T is a hash table.\n// The heuristic used is that the type contains an inner type `hasher` and does\n// not contain an inner type `reverse_iterator`.\n// If the container is iterable in reverse, then order might actually matter.\ntemplate <typename T>\nstruct IsHashTable {\n private:\n  template <typename U>\n  static char test(typename U::hasher*, typename U::reverse_iterator*);\n  template <typename U>\n  static int test(typename U::hasher*, ...);\n  template <typename U>\n  static char test(...);\n\n public:\n  static const bool value = sizeof(test<T>(nullptr, nullptr)) == sizeof(int);\n};\n\ntemplate <typename T>\nconst bool IsHashTable<T>::value;\n\ntemplate <typename C,\n          bool = sizeof(IsContainerTest<C>(0)) == sizeof(IsContainer)>\nstruct IsRecursiveContainerImpl;\n\ntemplate <typename C>\nstruct IsRecursiveContainerImpl<C, false> : public std::false_type {};\n\n// Since the IsRecursiveContainerImpl depends on the IsContainerTest we need to\n// obey the same inconsistencies as the IsContainerTest, namely check if\n// something is a container is relying on only const_iterator in C++11 and\n// is relying on both const_iterator and iterator otherwise\ntemplate <typename C>\nstruct IsRecursiveContainerImpl<C, true> {\n  using value_type = decltype(*std::declval<typename C::const_iterator>());\n  using type =\n      std::is_same<typename std::remove_const<\n                       typename std::remove_reference<value_type>::type>::type,\n                   C>;\n};\n\n// IsRecursiveContainer<Type> is a unary compile-time predicate that\n// evaluates whether C is a recursive container type. A recursive container\n// type is a container type whose value_type is equal to the container type\n// itself. An example for a recursive container type is\n// boost::filesystem::path, whose iterator has a value_type that is equal to\n// boost::filesystem::path.\ntemplate <typename C>\nstruct IsRecursiveContainer : public IsRecursiveContainerImpl<C>::type {};\n\n// Utilities for native arrays.\n\n// ArrayEq() compares two k-dimensional native arrays using the\n// elements' operator==, where k can be any integer >= 0.  When k is\n// 0, ArrayEq() degenerates into comparing a single pair of values.\n\ntemplate <typename T, typename U>\nbool ArrayEq(const T* lhs, size_t size, const U* rhs);\n\n// This generic version is used when k is 0.\ntemplate <typename T, typename U>\ninline bool ArrayEq(const T& lhs, const U& rhs) { return lhs == rhs; }\n\n// This overload is used when k >= 1.\ntemplate <typename T, typename U, size_t N>\ninline bool ArrayEq(const T(&lhs)[N], const U(&rhs)[N]) {\n  return internal::ArrayEq(lhs, N, rhs);\n}\n\n// This helper reduces code bloat.  If we instead put its logic inside\n// the previous ArrayEq() function, arrays with different sizes would\n// lead to different copies of the template code.\ntemplate <typename T, typename U>\nbool ArrayEq(const T* lhs, size_t size, const U* rhs) {\n  for (size_t i = 0; i != size; i++) {\n    if (!internal::ArrayEq(lhs[i], rhs[i]))\n      return false;\n  }\n  return true;\n}\n\n// Finds the first element in the iterator range [begin, end) that\n// equals elem.  Element may be a native array type itself.\ntemplate <typename Iter, typename Element>\nIter ArrayAwareFind(Iter begin, Iter end, const Element& elem) {\n  for (Iter it = begin; it != end; ++it) {\n    if (internal::ArrayEq(*it, elem))\n      return it;\n  }\n  return end;\n}\n\n// CopyArray() copies a k-dimensional native array using the elements'\n// operator=, where k can be any integer >= 0.  When k is 0,\n// CopyArray() degenerates into copying a single value.\n\ntemplate <typename T, typename U>\nvoid CopyArray(const T* from, size_t size, U* to);\n\n// This generic version is used when k is 0.\ntemplate <typename T, typename U>\ninline void CopyArray(const T& from, U* to) { *to = from; }\n\n// This overload is used when k >= 1.\ntemplate <typename T, typename U, size_t N>\ninline void CopyArray(const T(&from)[N], U(*to)[N]) {\n  internal::CopyArray(from, N, *to);\n}\n\n// This helper reduces code bloat.  If we instead put its logic inside\n// the previous CopyArray() function, arrays with different sizes\n// would lead to different copies of the template code.\ntemplate <typename T, typename U>\nvoid CopyArray(const T* from, size_t size, U* to) {\n  for (size_t i = 0; i != size; i++) {\n    internal::CopyArray(from[i], to + i);\n  }\n}\n\n// The relation between an NativeArray object (see below) and the\n// native array it represents.\n// We use 2 different structs to allow non-copyable types to be used, as long\n// as RelationToSourceReference() is passed.\nstruct RelationToSourceReference {};\nstruct RelationToSourceCopy {};\n\n// Adapts a native array to a read-only STL-style container.  Instead\n// of the complete STL container concept, this adaptor only implements\n// members useful for Google Mock's container matchers.  New members\n// should be added as needed.  To simplify the implementation, we only\n// support Element being a raw type (i.e. having no top-level const or\n// reference modifier).  It's the client's responsibility to satisfy\n// this requirement.  Element can be an array type itself (hence\n// multi-dimensional arrays are supported).\ntemplate <typename Element>\nclass NativeArray {\n public:\n  // STL-style container typedefs.\n  typedef Element value_type;\n  typedef Element* iterator;\n  typedef const Element* const_iterator;\n\n  // Constructs from a native array. References the source.\n  NativeArray(const Element* array, size_t count, RelationToSourceReference) {\n    InitRef(array, count);\n  }\n\n  // Constructs from a native array. Copies the source.\n  NativeArray(const Element* array, size_t count, RelationToSourceCopy) {\n    InitCopy(array, count);\n  }\n\n  // Copy constructor.\n  NativeArray(const NativeArray& rhs) {\n    (this->*rhs.clone_)(rhs.array_, rhs.size_);\n  }\n\n  ~NativeArray() {\n    if (clone_ != &NativeArray::InitRef)\n      delete[] array_;\n  }\n\n  // STL-style container methods.\n  size_t size() const { return size_; }\n  const_iterator begin() const { return array_; }\n  const_iterator end() const { return array_ + size_; }\n  bool operator==(const NativeArray& rhs) const {\n    return size() == rhs.size() &&\n        ArrayEq(begin(), size(), rhs.begin());\n  }\n\n private:\n  static_assert(!std::is_const<Element>::value, \"Type must not be const\");\n  static_assert(!std::is_reference<Element>::value,\n                \"Type must not be a reference\");\n\n  // Initializes this object with a copy of the input.\n  void InitCopy(const Element* array, size_t a_size) {\n    Element* const copy = new Element[a_size];\n    CopyArray(array, a_size, copy);\n    array_ = copy;\n    size_ = a_size;\n    clone_ = &NativeArray::InitCopy;\n  }\n\n  // Initializes this object with a reference of the input.\n  void InitRef(const Element* array, size_t a_size) {\n    array_ = array;\n    size_ = a_size;\n    clone_ = &NativeArray::InitRef;\n  }\n\n  const Element* array_;\n  size_t size_;\n  void (NativeArray::*clone_)(const Element*, size_t);\n};\n\n// Backport of std::index_sequence.\ntemplate <size_t... Is>\nstruct IndexSequence {\n  using type = IndexSequence;\n};\n\n// Double the IndexSequence, and one if plus_one is true.\ntemplate <bool plus_one, typename T, size_t sizeofT>\nstruct DoubleSequence;\ntemplate <size_t... I, size_t sizeofT>\nstruct DoubleSequence<true, IndexSequence<I...>, sizeofT> {\n  using type = IndexSequence<I..., (sizeofT + I)..., 2 * sizeofT>;\n};\ntemplate <size_t... I, size_t sizeofT>\nstruct DoubleSequence<false, IndexSequence<I...>, sizeofT> {\n  using type = IndexSequence<I..., (sizeofT + I)...>;\n};\n\n// Backport of std::make_index_sequence.\n// It uses O(ln(N)) instantiation depth.\ntemplate <size_t N>\nstruct MakeIndexSequenceImpl\n    : DoubleSequence<N % 2 == 1, typename MakeIndexSequenceImpl<N / 2>::type,\n                     N / 2>::type {};\n\ntemplate <>\nstruct MakeIndexSequenceImpl<0> : IndexSequence<> {};\n\ntemplate <size_t N>\nusing MakeIndexSequence = typename MakeIndexSequenceImpl<N>::type;\n\ntemplate <typename... T>\nusing IndexSequenceFor = typename MakeIndexSequence<sizeof...(T)>::type;\n\ntemplate <size_t>\nstruct Ignore {\n  Ignore(...);  // NOLINT\n};\n\ntemplate <typename>\nstruct ElemFromListImpl;\ntemplate <size_t... I>\nstruct ElemFromListImpl<IndexSequence<I...>> {\n  // We make Ignore a template to solve a problem with MSVC.\n  // A non-template Ignore would work fine with `decltype(Ignore(I))...`, but\n  // MSVC doesn't understand how to deal with that pack expansion.\n  // Use `0 * I` to have a single instantiation of Ignore.\n  template <typename R>\n  static R Apply(Ignore<0 * I>..., R (*)(), ...);\n};\n\ntemplate <size_t N, typename... T>\nstruct ElemFromList {\n  using type =\n      decltype(ElemFromListImpl<typename MakeIndexSequence<N>::type>::Apply(\n          static_cast<T (*)()>(nullptr)...));\n};\n\nstruct FlatTupleConstructTag {};\n\ntemplate <typename... T>\nclass FlatTuple;\n\ntemplate <typename Derived, size_t I>\nstruct FlatTupleElemBase;\n\ntemplate <typename... T, size_t I>\nstruct FlatTupleElemBase<FlatTuple<T...>, I> {\n  using value_type = typename ElemFromList<I, T...>::type;\n  FlatTupleElemBase() = default;\n  template <typename Arg>\n  explicit FlatTupleElemBase(FlatTupleConstructTag, Arg&& t)\n      : value(std::forward<Arg>(t)) {}\n  value_type value;\n};\n\ntemplate <typename Derived, typename Idx>\nstruct FlatTupleBase;\n\ntemplate <size_t... Idx, typename... T>\nstruct FlatTupleBase<FlatTuple<T...>, IndexSequence<Idx...>>\n    : FlatTupleElemBase<FlatTuple<T...>, Idx>... {\n  using Indices = IndexSequence<Idx...>;\n  FlatTupleBase() = default;\n  template <typename... Args>\n  explicit FlatTupleBase(FlatTupleConstructTag, Args&&... args)\n      : FlatTupleElemBase<FlatTuple<T...>, Idx>(FlatTupleConstructTag{},\n                                                std::forward<Args>(args))... {}\n\n  template <size_t I>\n  const typename ElemFromList<I, T...>::type& Get() const {\n    return FlatTupleElemBase<FlatTuple<T...>, I>::value;\n  }\n\n  template <size_t I>\n  typename ElemFromList<I, T...>::type& Get() {\n    return FlatTupleElemBase<FlatTuple<T...>, I>::value;\n  }\n\n  template <typename F>\n  auto Apply(F&& f) -> decltype(std::forward<F>(f)(this->Get<Idx>()...)) {\n    return std::forward<F>(f)(Get<Idx>()...);\n  }\n\n  template <typename F>\n  auto Apply(F&& f) const -> decltype(std::forward<F>(f)(this->Get<Idx>()...)) {\n    return std::forward<F>(f)(Get<Idx>()...);\n  }\n};\n\n// Analog to std::tuple but with different tradeoffs.\n// This class minimizes the template instantiation depth, thus allowing more\n// elements than std::tuple would. std::tuple has been seen to require an\n// instantiation depth of more than 10x the number of elements in some\n// implementations.\n// FlatTuple and ElemFromList are not recursive and have a fixed depth\n// regardless of T...\n// MakeIndexSequence, on the other hand, it is recursive but with an\n// instantiation depth of O(ln(N)).\ntemplate <typename... T>\nclass FlatTuple\n    : private FlatTupleBase<FlatTuple<T...>,\n                            typename MakeIndexSequence<sizeof...(T)>::type> {\n  using Indices = typename FlatTupleBase<\n      FlatTuple<T...>, typename MakeIndexSequence<sizeof...(T)>::type>::Indices;\n\n public:\n  FlatTuple() = default;\n  template <typename... Args>\n  explicit FlatTuple(FlatTupleConstructTag tag, Args&&... args)\n      : FlatTuple::FlatTupleBase(tag, std::forward<Args>(args)...) {}\n\n  using FlatTuple::FlatTupleBase::Apply;\n  using FlatTuple::FlatTupleBase::Get;\n};\n\n// Utility functions to be called with static_assert to induce deprecation\n// warnings.\nGTEST_INTERNAL_DEPRECATED(\n    \"INSTANTIATE_TEST_CASE_P is deprecated, please use \"\n    \"INSTANTIATE_TEST_SUITE_P\")\nconstexpr bool InstantiateTestCase_P_IsDeprecated() { return true; }\n\nGTEST_INTERNAL_DEPRECATED(\n    \"TYPED_TEST_CASE_P is deprecated, please use \"\n    \"TYPED_TEST_SUITE_P\")\nconstexpr bool TypedTestCase_P_IsDeprecated() { return true; }\n\nGTEST_INTERNAL_DEPRECATED(\n    \"TYPED_TEST_CASE is deprecated, please use \"\n    \"TYPED_TEST_SUITE\")\nconstexpr bool TypedTestCaseIsDeprecated() { return true; }\n\nGTEST_INTERNAL_DEPRECATED(\n    \"REGISTER_TYPED_TEST_CASE_P is deprecated, please use \"\n    \"REGISTER_TYPED_TEST_SUITE_P\")\nconstexpr bool RegisterTypedTestCase_P_IsDeprecated() { return true; }\n\nGTEST_INTERNAL_DEPRECATED(\n    \"INSTANTIATE_TYPED_TEST_CASE_P is deprecated, please use \"\n    \"INSTANTIATE_TYPED_TEST_SUITE_P\")\nconstexpr bool InstantiateTypedTestCase_P_IsDeprecated() { return true; }\n\n}  // namespace internal\n}  // namespace testing\n\nnamespace std {\n// Some standard library implementations use `struct tuple_size` and some use\n// `class tuple_size`. Clang warns about the mismatch.\n// https://reviews.llvm.org/D55466\n#ifdef __clang__\n#pragma clang diagnostic push\n#pragma clang diagnostic ignored \"-Wmismatched-tags\"\n#endif\ntemplate <typename... Ts>\nstruct tuple_size<testing::internal::FlatTuple<Ts...>>\n    : std::integral_constant<size_t, sizeof...(Ts)> {};\n#ifdef __clang__\n#pragma clang diagnostic pop\n#endif\n}  // namespace std\n\n#define GTEST_MESSAGE_AT_(file, line, message, result_type) \\\n  ::testing::internal::AssertHelper(result_type, file, line, message) \\\n    = ::testing::Message()\n\n#define GTEST_MESSAGE_(message, result_type) \\\n  GTEST_MESSAGE_AT_(__FILE__, __LINE__, message, result_type)\n\n#define GTEST_FATAL_FAILURE_(message) \\\n  return GTEST_MESSAGE_(message, ::testing::TestPartResult::kFatalFailure)\n\n#define GTEST_NONFATAL_FAILURE_(message) \\\n  GTEST_MESSAGE_(message, ::testing::TestPartResult::kNonFatalFailure)\n\n#define GTEST_SUCCESS_(message) \\\n  GTEST_MESSAGE_(message, ::testing::TestPartResult::kSuccess)\n\n#define GTEST_SKIP_(message) \\\n  return GTEST_MESSAGE_(message, ::testing::TestPartResult::kSkip)\n\n// Suppress MSVC warning 4072 (unreachable code) for the code following\n// statement if it returns or throws (or doesn't return or throw in some\n// situations).\n// NOTE: The \"else\" is important to keep this expansion to prevent a top-level\n// \"else\" from attaching to our \"if\".\n#define GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement) \\\n  if (::testing::internal::AlwaysTrue()) {                        \\\n    statement;                                                    \\\n  } else                     /* NOLINT */                         \\\n    static_assert(true, \"\")  // User must have a semicolon after expansion.\n\n#if GTEST_HAS_EXCEPTIONS\n\nnamespace testing {\nnamespace internal {\n\nclass NeverThrown {\n public:\n  const char* what() const noexcept {\n    return \"this exception should never be thrown\";\n  }\n};\n\n}  // namespace internal\n}  // namespace testing\n\n#if GTEST_HAS_RTTI\n\n#define GTEST_EXCEPTION_TYPE_(e) ::testing::internal::GetTypeName(typeid(e))\n\n#else  // GTEST_HAS_RTTI\n\n#define GTEST_EXCEPTION_TYPE_(e) \\\n  std::string { \"an std::exception-derived error\" }\n\n#endif  // GTEST_HAS_RTTI\n\n#define GTEST_TEST_THROW_CATCH_STD_EXCEPTION_(statement, expected_exception)   \\\n  catch (typename std::conditional<                                            \\\n         std::is_same<typename std::remove_cv<typename std::remove_reference<  \\\n                          expected_exception>::type>::type,                    \\\n                      std::exception>::value,                                  \\\n         const ::testing::internal::NeverThrown&, const std::exception&>::type \\\n             e) {                                                              \\\n    gtest_msg.value = \"Expected: \" #statement                                  \\\n                      \" throws an exception of type \" #expected_exception      \\\n                      \".\\n  Actual: it throws \";                               \\\n    gtest_msg.value += GTEST_EXCEPTION_TYPE_(e);                               \\\n    gtest_msg.value += \" with description \\\"\";                                 \\\n    gtest_msg.value += e.what();                                               \\\n    gtest_msg.value += \"\\\".\";                                                  \\\n    goto GTEST_CONCAT_TOKEN_(gtest_label_testthrow_, __LINE__);                \\\n  }\n\n#else  // GTEST_HAS_EXCEPTIONS\n\n#define GTEST_TEST_THROW_CATCH_STD_EXCEPTION_(statement, expected_exception)\n\n#endif  // GTEST_HAS_EXCEPTIONS\n\n#define GTEST_TEST_THROW_(statement, expected_exception, fail)              \\\n  GTEST_AMBIGUOUS_ELSE_BLOCKER_                                             \\\n  if (::testing::internal::TrueWithString gtest_msg{}) {                    \\\n    bool gtest_caught_expected = false;                                     \\\n    try {                                                                   \\\n      GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement);            \\\n    } catch (expected_exception const&) {                                   \\\n      gtest_caught_expected = true;                                         \\\n    }                                                                       \\\n    GTEST_TEST_THROW_CATCH_STD_EXCEPTION_(statement, expected_exception)    \\\n    catch (...) {                                                           \\\n      gtest_msg.value = \"Expected: \" #statement                             \\\n                        \" throws an exception of type \" #expected_exception \\\n                        \".\\n  Actual: it throws a different type.\";         \\\n      goto GTEST_CONCAT_TOKEN_(gtest_label_testthrow_, __LINE__);           \\\n    }                                                                       \\\n    if (!gtest_caught_expected) {                                           \\\n      gtest_msg.value = \"Expected: \" #statement                             \\\n                        \" throws an exception of type \" #expected_exception \\\n                        \".\\n  Actual: it throws nothing.\";                  \\\n      goto GTEST_CONCAT_TOKEN_(gtest_label_testthrow_, __LINE__);           \\\n    }                                                                       \\\n  } else /*NOLINT*/                                                         \\\n    GTEST_CONCAT_TOKEN_(gtest_label_testthrow_, __LINE__)                   \\\n        : fail(gtest_msg.value.c_str())\n\n#if GTEST_HAS_EXCEPTIONS\n\n#define GTEST_TEST_NO_THROW_CATCH_STD_EXCEPTION_()                \\\n  catch (std::exception const& e) {                               \\\n    gtest_msg.value = \"it throws \";                               \\\n    gtest_msg.value += GTEST_EXCEPTION_TYPE_(e);                  \\\n    gtest_msg.value += \" with description \\\"\";                    \\\n    gtest_msg.value += e.what();                                  \\\n    gtest_msg.value += \"\\\".\";                                     \\\n    goto GTEST_CONCAT_TOKEN_(gtest_label_testnothrow_, __LINE__); \\\n  }\n\n#else  // GTEST_HAS_EXCEPTIONS\n\n#define GTEST_TEST_NO_THROW_CATCH_STD_EXCEPTION_()\n\n#endif  // GTEST_HAS_EXCEPTIONS\n\n#define GTEST_TEST_NO_THROW_(statement, fail) \\\n  GTEST_AMBIGUOUS_ELSE_BLOCKER_ \\\n  if (::testing::internal::TrueWithString gtest_msg{}) { \\\n    try { \\\n      GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement); \\\n    } \\\n    GTEST_TEST_NO_THROW_CATCH_STD_EXCEPTION_() \\\n    catch (...) { \\\n      gtest_msg.value = \"it throws.\"; \\\n      goto GTEST_CONCAT_TOKEN_(gtest_label_testnothrow_, __LINE__); \\\n    } \\\n  } else \\\n    GTEST_CONCAT_TOKEN_(gtest_label_testnothrow_, __LINE__): \\\n      fail((\"Expected: \" #statement \" doesn't throw an exception.\\n\" \\\n            \"  Actual: \" + gtest_msg.value).c_str())\n\n#define GTEST_TEST_ANY_THROW_(statement, fail) \\\n  GTEST_AMBIGUOUS_ELSE_BLOCKER_ \\\n  if (::testing::internal::AlwaysTrue()) { \\\n    bool gtest_caught_any = false; \\\n    try { \\\n      GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement); \\\n    } \\\n    catch (...) { \\\n      gtest_caught_any = true; \\\n    } \\\n    if (!gtest_caught_any) { \\\n      goto GTEST_CONCAT_TOKEN_(gtest_label_testanythrow_, __LINE__); \\\n    } \\\n  } else \\\n    GTEST_CONCAT_TOKEN_(gtest_label_testanythrow_, __LINE__): \\\n      fail(\"Expected: \" #statement \" throws an exception.\\n\" \\\n           \"  Actual: it doesn't.\")\n\n\n// Implements Boolean test assertions such as EXPECT_TRUE. expression can be\n// either a boolean expression or an AssertionResult. text is a textual\n// representation of expression as it was passed into the EXPECT_TRUE.\n#define GTEST_TEST_BOOLEAN_(expression, text, actual, expected, fail) \\\n  GTEST_AMBIGUOUS_ELSE_BLOCKER_ \\\n  if (const ::testing::AssertionResult gtest_ar_ = \\\n      ::testing::AssertionResult(expression)) \\\n    ; \\\n  else \\\n    fail(::testing::internal::GetBoolAssertionFailureMessage(\\\n        gtest_ar_, text, #actual, #expected).c_str())\n\n#define GTEST_TEST_NO_FATAL_FAILURE_(statement, fail) \\\n  GTEST_AMBIGUOUS_ELSE_BLOCKER_ \\\n  if (::testing::internal::AlwaysTrue()) { \\\n    ::testing::internal::HasNewFatalFailureHelper gtest_fatal_failure_checker; \\\n    GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement); \\\n    if (gtest_fatal_failure_checker.has_new_fatal_failure()) { \\\n      goto GTEST_CONCAT_TOKEN_(gtest_label_testnofatal_, __LINE__); \\\n    } \\\n  } else \\\n    GTEST_CONCAT_TOKEN_(gtest_label_testnofatal_, __LINE__): \\\n      fail(\"Expected: \" #statement \" doesn't generate new fatal \" \\\n           \"failures in the current thread.\\n\" \\\n           \"  Actual: it does.\")\n\n// Expands to the name of the class that implements the given test.\n#define GTEST_TEST_CLASS_NAME_(test_suite_name, test_name) \\\n  test_suite_name##_##test_name##_Test\n\n// Helper macro for defining tests.\n#define GTEST_TEST_(test_suite_name, test_name, parent_class, parent_id)      \\\n  static_assert(sizeof(GTEST_STRINGIFY_(test_suite_name)) > 1,                \\\n                \"test_suite_name must not be empty\");                         \\\n  static_assert(sizeof(GTEST_STRINGIFY_(test_name)) > 1,                      \\\n                \"test_name must not be empty\");                               \\\n  class GTEST_TEST_CLASS_NAME_(test_suite_name, test_name)                    \\\n      : public parent_class {                                                 \\\n   public:                                                                    \\\n    GTEST_TEST_CLASS_NAME_(test_suite_name, test_name)() = default;           \\\n    ~GTEST_TEST_CLASS_NAME_(test_suite_name, test_name)() override = default; \\\n    GTEST_DISALLOW_COPY_AND_ASSIGN_(GTEST_TEST_CLASS_NAME_(test_suite_name,   \\\n                                                           test_name));       \\\n    GTEST_DISALLOW_MOVE_AND_ASSIGN_(GTEST_TEST_CLASS_NAME_(test_suite_name,   \\\n                                                           test_name));       \\\n                                                                              \\\n   private:                                                                   \\\n    void TestBody() override;                                                 \\\n    static ::testing::TestInfo* const test_info_ GTEST_ATTRIBUTE_UNUSED_;     \\\n  };                                                                          \\\n                                                                              \\\n  ::testing::TestInfo* const GTEST_TEST_CLASS_NAME_(test_suite_name,          \\\n                                                    test_name)::test_info_ =  \\\n      ::testing::internal::MakeAndRegisterTestInfo(                           \\\n          #test_suite_name, #test_name, nullptr, nullptr,                     \\\n          ::testing::internal::CodeLocation(__FILE__, __LINE__), (parent_id), \\\n          ::testing::internal::SuiteApiResolver<                              \\\n              parent_class>::GetSetUpCaseOrSuite(__FILE__, __LINE__),         \\\n          ::testing::internal::SuiteApiResolver<                              \\\n              parent_class>::GetTearDownCaseOrSuite(__FILE__, __LINE__),      \\\n          new ::testing::internal::TestFactoryImpl<GTEST_TEST_CLASS_NAME_(    \\\n              test_suite_name, test_name)>);                                  \\\n  void GTEST_TEST_CLASS_NAME_(test_suite_name, test_name)::TestBody()\n\n#endif  // GOOGLETEST_INCLUDE_GTEST_INTERNAL_GTEST_INTERNAL_H_\n"
  },
  {
    "path": "test/gtest/include/gtest/internal/gtest-linked_ptr.h",
    "content": "// Copyright 2003 Google Inc.\n// All rights reserved.\n//\n// Redistribution and use in source and binary forms, with or without\n// modification, are permitted provided that the following conditions are\n// met:\n//\n//     * Redistributions of source code must retain the above copyright\n// notice, this list of conditions and the following disclaimer.\n//     * Redistributions in binary form must reproduce the above\n// copyright notice, this list of conditions and the following disclaimer\n// in the documentation and/or other materials provided with the\n// distribution.\n//     * Neither the name of Google Inc. nor the names of its\n// contributors may be used to endorse or promote products derived from\n// this software without specific prior written permission.\n//\n// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n// \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n//\n// Authors: Dan Egnor (egnor@google.com)\n//\n// A \"smart\" pointer type with reference tracking.  Every pointer to a\n// particular object is kept on a circular linked list.  When the last pointer\n// to an object is destroyed or reassigned, the object is deleted.\n//\n// Used properly, this deletes the object when the last reference goes away.\n// There are several caveats:\n// - Like all reference counting schemes, cycles lead to leaks.\n// - Each smart pointer is actually two pointers (8 bytes instead of 4).\n// - Every time a pointer is assigned, the entire list of pointers to that\n//   object is traversed.  This class is therefore NOT SUITABLE when there\n//   will often be more than two or three pointers to a particular object.\n// - References are only tracked as long as linked_ptr<> objects are copied.\n//   If a linked_ptr<> is converted to a raw pointer and back, BAD THINGS\n//   will happen (double deletion).\n//\n// A good use of this class is storing object references in STL containers.\n// You can safely put linked_ptr<> in a vector<>.\n// Other uses may not be as good.\n//\n// Note: If you use an incomplete type with linked_ptr<>, the class\n// *containing* linked_ptr<> must have a constructor and destructor (even\n// if they do nothing!).\n//\n// Bill Gibbons suggested we use something like this.\n//\n// Thread Safety:\n//   Unlike other linked_ptr implementations, in this implementation\n//   a linked_ptr object is thread-safe in the sense that:\n//     - it's safe to copy linked_ptr objects concurrently,\n//     - it's safe to copy *from* a linked_ptr and read its underlying\n//       raw pointer (e.g. via get()) concurrently, and\n//     - it's safe to write to two linked_ptrs that point to the same\n//       shared object concurrently.\n// TODO(wan@google.com): rename this to safe_linked_ptr to avoid\n// confusion with normal linked_ptr.\n\n#ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_LINKED_PTR_H_\n#define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_LINKED_PTR_H_\n\n#include <stdlib.h>\n#include <assert.h>\n\n#include \"gtest/internal/gtest-port.h\"\n\nnamespace testing {\nnamespace internal {\n\n// Protects copying of all linked_ptr objects.\nGTEST_API_ GTEST_DECLARE_STATIC_MUTEX_(g_linked_ptr_mutex);\n\n// This is used internally by all instances of linked_ptr<>.  It needs to be\n// a non-template class because different types of linked_ptr<> can refer to\n// the same object (linked_ptr<Superclass>(obj) vs linked_ptr<Subclass>(obj)).\n// So, it needs to be possible for different types of linked_ptr to participate\n// in the same circular linked list, so we need a single class type here.\n//\n// DO NOT USE THIS CLASS DIRECTLY YOURSELF.  Use linked_ptr<T>.\nclass linked_ptr_internal {\n public:\n  // Create a new circle that includes only this instance.\n  void join_new() {\n    next_ = this;\n  }\n\n  // Many linked_ptr operations may change p.link_ for some linked_ptr\n  // variable p in the same circle as this object.  Therefore we need\n  // to prevent two such operations from occurring concurrently.\n  //\n  // Note that different types of linked_ptr objects can coexist in a\n  // circle (e.g. linked_ptr<Base>, linked_ptr<Derived1>, and\n  // linked_ptr<Derived2>).  Therefore we must use a single mutex to\n  // protect all linked_ptr objects.  This can create serious\n  // contention in production code, but is acceptable in a testing\n  // framework.\n\n  // Join an existing circle.\n  void join(linked_ptr_internal const* ptr)\n      GTEST_LOCK_EXCLUDED_(g_linked_ptr_mutex) {\n    MutexLock lock(&g_linked_ptr_mutex);\n\n    linked_ptr_internal const* p = ptr;\n    while (p->next_ != ptr) {\n      assert(p->next_ != this &&\n             \"Trying to join() a linked ring we are already in. \"\n             \"Is GMock thread safety enabled?\");\n      p = p->next_;\n    }\n    p->next_ = this;\n    next_ = ptr;\n  }\n\n  // Leave whatever circle we're part of.  Returns true if we were the\n  // last member of the circle.  Once this is done, you can join() another.\n  bool depart()\n      GTEST_LOCK_EXCLUDED_(g_linked_ptr_mutex) {\n    MutexLock lock(&g_linked_ptr_mutex);\n\n    if (next_ == this) return true;\n    linked_ptr_internal const* p = next_;\n    while (p->next_ != this) {\n      assert(p->next_ != next_ &&\n             \"Trying to depart() a linked ring we are not in. \"\n             \"Is GMock thread safety enabled?\");\n      p = p->next_;\n    }\n    p->next_ = next_;\n    return false;\n  }\n\n private:\n  mutable linked_ptr_internal const* next_;\n};\n\ntemplate <typename T>\nclass linked_ptr {\n public:\n  typedef T element_type;\n\n  // Take over ownership of a raw pointer.  This should happen as soon as\n  // possible after the object is created.\n  explicit linked_ptr(T* ptr = NULL) { capture(ptr); }\n  ~linked_ptr() { depart(); }\n\n  // Copy an existing linked_ptr<>, adding ourselves to the list of references.\n  template <typename U> linked_ptr(linked_ptr<U> const& ptr) { copy(&ptr); }\n  linked_ptr(linked_ptr const& ptr) {  // NOLINT\n    assert(&ptr != this);\n    copy(&ptr);\n  }\n\n  // Assignment releases the old value and acquires the new.\n  template <typename U> linked_ptr& operator=(linked_ptr<U> const& ptr) {\n    depart();\n    copy(&ptr);\n    return *this;\n  }\n\n  linked_ptr& operator=(linked_ptr const& ptr) {\n    if (&ptr != this) {\n      depart();\n      copy(&ptr);\n    }\n    return *this;\n  }\n\n  // Smart pointer members.\n  void reset(T* ptr = NULL) {\n    depart();\n    capture(ptr);\n  }\n  T* get() const { return value_; }\n  T* operator->() const { return value_; }\n  T& operator*() const { return *value_; }\n\n  bool operator==(T* p) const { return value_ == p; }\n  bool operator!=(T* p) const { return value_ != p; }\n  template <typename U>\n  bool operator==(linked_ptr<U> const& ptr) const {\n    return value_ == ptr.get();\n  }\n  template <typename U>\n  bool operator!=(linked_ptr<U> const& ptr) const {\n    return value_ != ptr.get();\n  }\n\n private:\n  template <typename U>\n  friend class linked_ptr;\n\n  T* value_;\n  linked_ptr_internal link_;\n\n  void depart() {\n    if (link_.depart()) delete value_;\n  }\n\n  void capture(T* ptr) {\n    value_ = ptr;\n    link_.join_new();\n  }\n\n  template <typename U> void copy(linked_ptr<U> const* ptr) {\n    value_ = ptr->get();\n    if (value_)\n      link_.join(&ptr->link_);\n    else\n      link_.join_new();\n  }\n};\n\ntemplate<typename T> inline\nbool operator==(T* ptr, const linked_ptr<T>& x) {\n  return ptr == x.get();\n}\n\ntemplate<typename T> inline\nbool operator!=(T* ptr, const linked_ptr<T>& x) {\n  return ptr != x.get();\n}\n\n// A function to convert T* into linked_ptr<T>\n// Doing e.g. make_linked_ptr(new FooBarBaz<type>(arg)) is a shorter notation\n// for linked_ptr<FooBarBaz<type> >(new FooBarBaz<type>(arg))\ntemplate <typename T>\nlinked_ptr<T> make_linked_ptr(T* ptr) {\n  return linked_ptr<T>(ptr);\n}\n\n}  // namespace internal\n}  // namespace testing\n\n#endif  // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_LINKED_PTR_H_\n"
  },
  {
    "path": "test/gtest/include/gtest/internal/gtest-param-util-generated.h",
    "content": "// This file was GENERATED by command:\n//     pump.py gtest-param-util-generated.h.pump\n// DO NOT EDIT BY HAND!!!\n\n// Copyright 2008 Google Inc.\n// All Rights Reserved.\n//\n// Redistribution and use in source and binary forms, with or without\n// modification, are permitted provided that the following conditions are\n// met:\n//\n//     * Redistributions of source code must retain the above copyright\n// notice, this list of conditions and the following disclaimer.\n//     * Redistributions in binary form must reproduce the above\n// copyright notice, this list of conditions and the following disclaimer\n// in the documentation and/or other materials provided with the\n// distribution.\n//     * Neither the name of Google Inc. nor the names of its\n// contributors may be used to endorse or promote products derived from\n// this software without specific prior written permission.\n//\n// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n// \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n//\n// Author: vladl@google.com (Vlad Losev)\n\n// Type and function utilities for implementing parameterized tests.\n// This file is generated by a SCRIPT.  DO NOT EDIT BY HAND!\n//\n// Currently Google Test supports at most 50 arguments in Values,\n// and at most 10 arguments in Combine. Please contact\n// googletestframework@googlegroups.com if you need more.\n// Please note that the number of arguments to Combine is limited\n// by the maximum arity of the implementation of tuple which is\n// currently set at 10.\n\n#ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PARAM_UTIL_GENERATED_H_\n#define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PARAM_UTIL_GENERATED_H_\n\n// scripts/fuse_gtest.py depends on gtest's own header being #included\n// *unconditionally*.  Therefore these #includes cannot be moved\n// inside #if GTEST_HAS_PARAM_TEST.\n#include \"gtest/internal/gtest-param-util.h\"\n#include \"gtest/internal/gtest-port.h\"\n\n#if GTEST_HAS_PARAM_TEST\n\nnamespace testing {\n\n// Forward declarations of ValuesIn(), which is implemented in\n// include/gtest/gtest-param-test.h.\ntemplate <typename ForwardIterator>\ninternal::ParamGenerator<\n  typename ::testing::internal::IteratorTraits<ForwardIterator>::value_type>\nValuesIn(ForwardIterator begin, ForwardIterator end);\n\ntemplate <typename T, size_t N>\ninternal::ParamGenerator<T> ValuesIn(const T (&array)[N]);\n\ntemplate <class Container>\ninternal::ParamGenerator<typename Container::value_type> ValuesIn(\n    const Container& container);\n\nnamespace internal {\n\n// Used in the Values() function to provide polymorphic capabilities.\ntemplate <typename T1>\nclass ValueArray1 {\n public:\n  explicit ValueArray1(T1 v1) : v1_(v1) {}\n\n  template <typename T>\n  operator ParamGenerator<T>() const {\n    const T array[] = {static_cast<T>(v1_)};\n    return ValuesIn(array);\n  }\n\n private:\n  // No implementation - assignment is unsupported.\n  void operator=(const ValueArray1& other);\n\n  const T1 v1_;\n};\n\ntemplate <typename T1, typename T2>\nclass ValueArray2 {\n public:\n  ValueArray2(T1 v1, T2 v2) : v1_(v1), v2_(v2) {}\n\n  template <typename T>\n  operator ParamGenerator<T>() const {\n    const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_)};\n    return ValuesIn(array);\n  }\n\n private:\n  // No implementation - assignment is unsupported.\n  void operator=(const ValueArray2& other);\n\n  const T1 v1_;\n  const T2 v2_;\n};\n\ntemplate <typename T1, typename T2, typename T3>\nclass ValueArray3 {\n public:\n  ValueArray3(T1 v1, T2 v2, T3 v3) : v1_(v1), v2_(v2), v3_(v3) {}\n\n  template <typename T>\n  operator ParamGenerator<T>() const {\n    const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),\n        static_cast<T>(v3_)};\n    return ValuesIn(array);\n  }\n\n private:\n  // No implementation - assignment is unsupported.\n  void operator=(const ValueArray3& other);\n\n  const T1 v1_;\n  const T2 v2_;\n  const T3 v3_;\n};\n\ntemplate <typename T1, typename T2, typename T3, typename T4>\nclass ValueArray4 {\n public:\n  ValueArray4(T1 v1, T2 v2, T3 v3, T4 v4) : v1_(v1), v2_(v2), v3_(v3),\n      v4_(v4) {}\n\n  template <typename T>\n  operator ParamGenerator<T>() const {\n    const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),\n        static_cast<T>(v3_), static_cast<T>(v4_)};\n    return ValuesIn(array);\n  }\n\n private:\n  // No implementation - assignment is unsupported.\n  void operator=(const ValueArray4& other);\n\n  const T1 v1_;\n  const T2 v2_;\n  const T3 v3_;\n  const T4 v4_;\n};\n\ntemplate <typename T1, typename T2, typename T3, typename T4, typename T5>\nclass ValueArray5 {\n public:\n  ValueArray5(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5) : v1_(v1), v2_(v2), v3_(v3),\n      v4_(v4), v5_(v5) {}\n\n  template <typename T>\n  operator ParamGenerator<T>() const {\n    const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),\n        static_cast<T>(v3_), static_cast<T>(v4_), static_cast<T>(v5_)};\n    return ValuesIn(array);\n  }\n\n private:\n  // No implementation - assignment is unsupported.\n  void operator=(const ValueArray5& other);\n\n  const T1 v1_;\n  const T2 v2_;\n  const T3 v3_;\n  const T4 v4_;\n  const T5 v5_;\n};\n\ntemplate <typename T1, typename T2, typename T3, typename T4, typename T5,\n    typename T6>\nclass ValueArray6 {\n public:\n  ValueArray6(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6) : v1_(v1), v2_(v2),\n      v3_(v3), v4_(v4), v5_(v5), v6_(v6) {}\n\n  template <typename T>\n  operator ParamGenerator<T>() const {\n    const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),\n        static_cast<T>(v3_), static_cast<T>(v4_), static_cast<T>(v5_),\n        static_cast<T>(v6_)};\n    return ValuesIn(array);\n  }\n\n private:\n  // No implementation - assignment is unsupported.\n  void operator=(const ValueArray6& other);\n\n  const T1 v1_;\n  const T2 v2_;\n  const T3 v3_;\n  const T4 v4_;\n  const T5 v5_;\n  const T6 v6_;\n};\n\ntemplate <typename T1, typename T2, typename T3, typename T4, typename T5,\n    typename T6, typename T7>\nclass ValueArray7 {\n public:\n  ValueArray7(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7) : v1_(v1),\n      v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7) {}\n\n  template <typename T>\n  operator ParamGenerator<T>() const {\n    const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),\n        static_cast<T>(v3_), static_cast<T>(v4_), static_cast<T>(v5_),\n        static_cast<T>(v6_), static_cast<T>(v7_)};\n    return ValuesIn(array);\n  }\n\n private:\n  // No implementation - assignment is unsupported.\n  void operator=(const ValueArray7& other);\n\n  const T1 v1_;\n  const T2 v2_;\n  const T3 v3_;\n  const T4 v4_;\n  const T5 v5_;\n  const T6 v6_;\n  const T7 v7_;\n};\n\ntemplate <typename T1, typename T2, typename T3, typename T4, typename T5,\n    typename T6, typename T7, typename T8>\nclass ValueArray8 {\n public:\n  ValueArray8(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7,\n      T8 v8) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7),\n      v8_(v8) {}\n\n  template <typename T>\n  operator ParamGenerator<T>() const {\n    const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),\n        static_cast<T>(v3_), static_cast<T>(v4_), static_cast<T>(v5_),\n        static_cast<T>(v6_), static_cast<T>(v7_), static_cast<T>(v8_)};\n    return ValuesIn(array);\n  }\n\n private:\n  // No implementation - assignment is unsupported.\n  void operator=(const ValueArray8& other);\n\n  const T1 v1_;\n  const T2 v2_;\n  const T3 v3_;\n  const T4 v4_;\n  const T5 v5_;\n  const T6 v6_;\n  const T7 v7_;\n  const T8 v8_;\n};\n\ntemplate <typename T1, typename T2, typename T3, typename T4, typename T5,\n    typename T6, typename T7, typename T8, typename T9>\nclass ValueArray9 {\n public:\n  ValueArray9(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8,\n      T9 v9) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7),\n      v8_(v8), v9_(v9) {}\n\n  template <typename T>\n  operator ParamGenerator<T>() const {\n    const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),\n        static_cast<T>(v3_), static_cast<T>(v4_), static_cast<T>(v5_),\n        static_cast<T>(v6_), static_cast<T>(v7_), static_cast<T>(v8_),\n        static_cast<T>(v9_)};\n    return ValuesIn(array);\n  }\n\n private:\n  // No implementation - assignment is unsupported.\n  void operator=(const ValueArray9& other);\n\n  const T1 v1_;\n  const T2 v2_;\n  const T3 v3_;\n  const T4 v4_;\n  const T5 v5_;\n  const T6 v6_;\n  const T7 v7_;\n  const T8 v8_;\n  const T9 v9_;\n};\n\ntemplate <typename T1, typename T2, typename T3, typename T4, typename T5,\n    typename T6, typename T7, typename T8, typename T9, typename T10>\nclass ValueArray10 {\n public:\n  ValueArray10(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,\n      T10 v10) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7),\n      v8_(v8), v9_(v9), v10_(v10) {}\n\n  template <typename T>\n  operator ParamGenerator<T>() const {\n    const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),\n        static_cast<T>(v3_), static_cast<T>(v4_), static_cast<T>(v5_),\n        static_cast<T>(v6_), static_cast<T>(v7_), static_cast<T>(v8_),\n        static_cast<T>(v9_), static_cast<T>(v10_)};\n    return ValuesIn(array);\n  }\n\n private:\n  // No implementation - assignment is unsupported.\n  void operator=(const ValueArray10& other);\n\n  const T1 v1_;\n  const T2 v2_;\n  const T3 v3_;\n  const T4 v4_;\n  const T5 v5_;\n  const T6 v6_;\n  const T7 v7_;\n  const T8 v8_;\n  const T9 v9_;\n  const T10 v10_;\n};\n\ntemplate <typename T1, typename T2, typename T3, typename T4, typename T5,\n    typename T6, typename T7, typename T8, typename T9, typename T10,\n    typename T11>\nclass ValueArray11 {\n public:\n  ValueArray11(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,\n      T10 v10, T11 v11) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6),\n      v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11) {}\n\n  template <typename T>\n  operator ParamGenerator<T>() const {\n    const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),\n        static_cast<T>(v3_), static_cast<T>(v4_), static_cast<T>(v5_),\n        static_cast<T>(v6_), static_cast<T>(v7_), static_cast<T>(v8_),\n        static_cast<T>(v9_), static_cast<T>(v10_), static_cast<T>(v11_)};\n    return ValuesIn(array);\n  }\n\n private:\n  // No implementation - assignment is unsupported.\n  void operator=(const ValueArray11& other);\n\n  const T1 v1_;\n  const T2 v2_;\n  const T3 v3_;\n  const T4 v4_;\n  const T5 v5_;\n  const T6 v6_;\n  const T7 v7_;\n  const T8 v8_;\n  const T9 v9_;\n  const T10 v10_;\n  const T11 v11_;\n};\n\ntemplate <typename T1, typename T2, typename T3, typename T4, typename T5,\n    typename T6, typename T7, typename T8, typename T9, typename T10,\n    typename T11, typename T12>\nclass ValueArray12 {\n public:\n  ValueArray12(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,\n      T10 v10, T11 v11, T12 v12) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5),\n      v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12) {}\n\n  template <typename T>\n  operator ParamGenerator<T>() const {\n    const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),\n        static_cast<T>(v3_), static_cast<T>(v4_), static_cast<T>(v5_),\n        static_cast<T>(v6_), static_cast<T>(v7_), static_cast<T>(v8_),\n        static_cast<T>(v9_), static_cast<T>(v10_), static_cast<T>(v11_),\n        static_cast<T>(v12_)};\n    return ValuesIn(array);\n  }\n\n private:\n  // No implementation - assignment is unsupported.\n  void operator=(const ValueArray12& other);\n\n  const T1 v1_;\n  const T2 v2_;\n  const T3 v3_;\n  const T4 v4_;\n  const T5 v5_;\n  const T6 v6_;\n  const T7 v7_;\n  const T8 v8_;\n  const T9 v9_;\n  const T10 v10_;\n  const T11 v11_;\n  const T12 v12_;\n};\n\ntemplate <typename T1, typename T2, typename T3, typename T4, typename T5,\n    typename T6, typename T7, typename T8, typename T9, typename T10,\n    typename T11, typename T12, typename T13>\nclass ValueArray13 {\n public:\n  ValueArray13(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,\n      T10 v10, T11 v11, T12 v12, T13 v13) : v1_(v1), v2_(v2), v3_(v3), v4_(v4),\n      v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11),\n      v12_(v12), v13_(v13) {}\n\n  template <typename T>\n  operator ParamGenerator<T>() const {\n    const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),\n        static_cast<T>(v3_), static_cast<T>(v4_), static_cast<T>(v5_),\n        static_cast<T>(v6_), static_cast<T>(v7_), static_cast<T>(v8_),\n        static_cast<T>(v9_), static_cast<T>(v10_), static_cast<T>(v11_),\n        static_cast<T>(v12_), static_cast<T>(v13_)};\n    return ValuesIn(array);\n  }\n\n private:\n  // No implementation - assignment is unsupported.\n  void operator=(const ValueArray13& other);\n\n  const T1 v1_;\n  const T2 v2_;\n  const T3 v3_;\n  const T4 v4_;\n  const T5 v5_;\n  const T6 v6_;\n  const T7 v7_;\n  const T8 v8_;\n  const T9 v9_;\n  const T10 v10_;\n  const T11 v11_;\n  const T12 v12_;\n  const T13 v13_;\n};\n\ntemplate <typename T1, typename T2, typename T3, typename T4, typename T5,\n    typename T6, typename T7, typename T8, typename T9, typename T10,\n    typename T11, typename T12, typename T13, typename T14>\nclass ValueArray14 {\n public:\n  ValueArray14(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,\n      T10 v10, T11 v11, T12 v12, T13 v13, T14 v14) : v1_(v1), v2_(v2), v3_(v3),\n      v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10),\n      v11_(v11), v12_(v12), v13_(v13), v14_(v14) {}\n\n  template <typename T>\n  operator ParamGenerator<T>() const {\n    const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),\n        static_cast<T>(v3_), static_cast<T>(v4_), static_cast<T>(v5_),\n        static_cast<T>(v6_), static_cast<T>(v7_), static_cast<T>(v8_),\n        static_cast<T>(v9_), static_cast<T>(v10_), static_cast<T>(v11_),\n        static_cast<T>(v12_), static_cast<T>(v13_), static_cast<T>(v14_)};\n    return ValuesIn(array);\n  }\n\n private:\n  // No implementation - assignment is unsupported.\n  void operator=(const ValueArray14& other);\n\n  const T1 v1_;\n  const T2 v2_;\n  const T3 v3_;\n  const T4 v4_;\n  const T5 v5_;\n  const T6 v6_;\n  const T7 v7_;\n  const T8 v8_;\n  const T9 v9_;\n  const T10 v10_;\n  const T11 v11_;\n  const T12 v12_;\n  const T13 v13_;\n  const T14 v14_;\n};\n\ntemplate <typename T1, typename T2, typename T3, typename T4, typename T5,\n    typename T6, typename T7, typename T8, typename T9, typename T10,\n    typename T11, typename T12, typename T13, typename T14, typename T15>\nclass ValueArray15 {\n public:\n  ValueArray15(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,\n      T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15) : v1_(v1), v2_(v2),\n      v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10),\n      v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15) {}\n\n  template <typename T>\n  operator ParamGenerator<T>() const {\n    const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),\n        static_cast<T>(v3_), static_cast<T>(v4_), static_cast<T>(v5_),\n        static_cast<T>(v6_), static_cast<T>(v7_), static_cast<T>(v8_),\n        static_cast<T>(v9_), static_cast<T>(v10_), static_cast<T>(v11_),\n        static_cast<T>(v12_), static_cast<T>(v13_), static_cast<T>(v14_),\n        static_cast<T>(v15_)};\n    return ValuesIn(array);\n  }\n\n private:\n  // No implementation - assignment is unsupported.\n  void operator=(const ValueArray15& other);\n\n  const T1 v1_;\n  const T2 v2_;\n  const T3 v3_;\n  const T4 v4_;\n  const T5 v5_;\n  const T6 v6_;\n  const T7 v7_;\n  const T8 v8_;\n  const T9 v9_;\n  const T10 v10_;\n  const T11 v11_;\n  const T12 v12_;\n  const T13 v13_;\n  const T14 v14_;\n  const T15 v15_;\n};\n\ntemplate <typename T1, typename T2, typename T3, typename T4, typename T5,\n    typename T6, typename T7, typename T8, typename T9, typename T10,\n    typename T11, typename T12, typename T13, typename T14, typename T15,\n    typename T16>\nclass ValueArray16 {\n public:\n  ValueArray16(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,\n      T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16) : v1_(v1),\n      v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9),\n      v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15),\n      v16_(v16) {}\n\n  template <typename T>\n  operator ParamGenerator<T>() const {\n    const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),\n        static_cast<T>(v3_), static_cast<T>(v4_), static_cast<T>(v5_),\n        static_cast<T>(v6_), static_cast<T>(v7_), static_cast<T>(v8_),\n        static_cast<T>(v9_), static_cast<T>(v10_), static_cast<T>(v11_),\n        static_cast<T>(v12_), static_cast<T>(v13_), static_cast<T>(v14_),\n        static_cast<T>(v15_), static_cast<T>(v16_)};\n    return ValuesIn(array);\n  }\n\n private:\n  // No implementation - assignment is unsupported.\n  void operator=(const ValueArray16& other);\n\n  const T1 v1_;\n  const T2 v2_;\n  const T3 v3_;\n  const T4 v4_;\n  const T5 v5_;\n  const T6 v6_;\n  const T7 v7_;\n  const T8 v8_;\n  const T9 v9_;\n  const T10 v10_;\n  const T11 v11_;\n  const T12 v12_;\n  const T13 v13_;\n  const T14 v14_;\n  const T15 v15_;\n  const T16 v16_;\n};\n\ntemplate <typename T1, typename T2, typename T3, typename T4, typename T5,\n    typename T6, typename T7, typename T8, typename T9, typename T10,\n    typename T11, typename T12, typename T13, typename T14, typename T15,\n    typename T16, typename T17>\nclass ValueArray17 {\n public:\n  ValueArray17(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,\n      T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16,\n      T17 v17) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7),\n      v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14),\n      v15_(v15), v16_(v16), v17_(v17) {}\n\n  template <typename T>\n  operator ParamGenerator<T>() const {\n    const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),\n        static_cast<T>(v3_), static_cast<T>(v4_), static_cast<T>(v5_),\n        static_cast<T>(v6_), static_cast<T>(v7_), static_cast<T>(v8_),\n        static_cast<T>(v9_), static_cast<T>(v10_), static_cast<T>(v11_),\n        static_cast<T>(v12_), static_cast<T>(v13_), static_cast<T>(v14_),\n        static_cast<T>(v15_), static_cast<T>(v16_), static_cast<T>(v17_)};\n    return ValuesIn(array);\n  }\n\n private:\n  // No implementation - assignment is unsupported.\n  void operator=(const ValueArray17& other);\n\n  const T1 v1_;\n  const T2 v2_;\n  const T3 v3_;\n  const T4 v4_;\n  const T5 v5_;\n  const T6 v6_;\n  const T7 v7_;\n  const T8 v8_;\n  const T9 v9_;\n  const T10 v10_;\n  const T11 v11_;\n  const T12 v12_;\n  const T13 v13_;\n  const T14 v14_;\n  const T15 v15_;\n  const T16 v16_;\n  const T17 v17_;\n};\n\ntemplate <typename T1, typename T2, typename T3, typename T4, typename T5,\n    typename T6, typename T7, typename T8, typename T9, typename T10,\n    typename T11, typename T12, typename T13, typename T14, typename T15,\n    typename T16, typename T17, typename T18>\nclass ValueArray18 {\n public:\n  ValueArray18(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,\n      T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17,\n      T18 v18) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7),\n      v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14),\n      v15_(v15), v16_(v16), v17_(v17), v18_(v18) {}\n\n  template <typename T>\n  operator ParamGenerator<T>() const {\n    const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),\n        static_cast<T>(v3_), static_cast<T>(v4_), static_cast<T>(v5_),\n        static_cast<T>(v6_), static_cast<T>(v7_), static_cast<T>(v8_),\n        static_cast<T>(v9_), static_cast<T>(v10_), static_cast<T>(v11_),\n        static_cast<T>(v12_), static_cast<T>(v13_), static_cast<T>(v14_),\n        static_cast<T>(v15_), static_cast<T>(v16_), static_cast<T>(v17_),\n        static_cast<T>(v18_)};\n    return ValuesIn(array);\n  }\n\n private:\n  // No implementation - assignment is unsupported.\n  void operator=(const ValueArray18& other);\n\n  const T1 v1_;\n  const T2 v2_;\n  const T3 v3_;\n  const T4 v4_;\n  const T5 v5_;\n  const T6 v6_;\n  const T7 v7_;\n  const T8 v8_;\n  const T9 v9_;\n  const T10 v10_;\n  const T11 v11_;\n  const T12 v12_;\n  const T13 v13_;\n  const T14 v14_;\n  const T15 v15_;\n  const T16 v16_;\n  const T17 v17_;\n  const T18 v18_;\n};\n\ntemplate <typename T1, typename T2, typename T3, typename T4, typename T5,\n    typename T6, typename T7, typename T8, typename T9, typename T10,\n    typename T11, typename T12, typename T13, typename T14, typename T15,\n    typename T16, typename T17, typename T18, typename T19>\nclass ValueArray19 {\n public:\n  ValueArray19(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,\n      T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17,\n      T18 v18, T19 v19) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6),\n      v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13),\n      v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19) {}\n\n  template <typename T>\n  operator ParamGenerator<T>() const {\n    const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),\n        static_cast<T>(v3_), static_cast<T>(v4_), static_cast<T>(v5_),\n        static_cast<T>(v6_), static_cast<T>(v7_), static_cast<T>(v8_),\n        static_cast<T>(v9_), static_cast<T>(v10_), static_cast<T>(v11_),\n        static_cast<T>(v12_), static_cast<T>(v13_), static_cast<T>(v14_),\n        static_cast<T>(v15_), static_cast<T>(v16_), static_cast<T>(v17_),\n        static_cast<T>(v18_), static_cast<T>(v19_)};\n    return ValuesIn(array);\n  }\n\n private:\n  // No implementation - assignment is unsupported.\n  void operator=(const ValueArray19& other);\n\n  const T1 v1_;\n  const T2 v2_;\n  const T3 v3_;\n  const T4 v4_;\n  const T5 v5_;\n  const T6 v6_;\n  const T7 v7_;\n  const T8 v8_;\n  const T9 v9_;\n  const T10 v10_;\n  const T11 v11_;\n  const T12 v12_;\n  const T13 v13_;\n  const T14 v14_;\n  const T15 v15_;\n  const T16 v16_;\n  const T17 v17_;\n  const T18 v18_;\n  const T19 v19_;\n};\n\ntemplate <typename T1, typename T2, typename T3, typename T4, typename T5,\n    typename T6, typename T7, typename T8, typename T9, typename T10,\n    typename T11, typename T12, typename T13, typename T14, typename T15,\n    typename T16, typename T17, typename T18, typename T19, typename T20>\nclass ValueArray20 {\n public:\n  ValueArray20(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,\n      T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17,\n      T18 v18, T19 v19, T20 v20) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5),\n      v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12),\n      v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18),\n      v19_(v19), v20_(v20) {}\n\n  template <typename T>\n  operator ParamGenerator<T>() const {\n    const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),\n        static_cast<T>(v3_), static_cast<T>(v4_), static_cast<T>(v5_),\n        static_cast<T>(v6_), static_cast<T>(v7_), static_cast<T>(v8_),\n        static_cast<T>(v9_), static_cast<T>(v10_), static_cast<T>(v11_),\n        static_cast<T>(v12_), static_cast<T>(v13_), static_cast<T>(v14_),\n        static_cast<T>(v15_), static_cast<T>(v16_), static_cast<T>(v17_),\n        static_cast<T>(v18_), static_cast<T>(v19_), static_cast<T>(v20_)};\n    return ValuesIn(array);\n  }\n\n private:\n  // No implementation - assignment is unsupported.\n  void operator=(const ValueArray20& other);\n\n  const T1 v1_;\n  const T2 v2_;\n  const T3 v3_;\n  const T4 v4_;\n  const T5 v5_;\n  const T6 v6_;\n  const T7 v7_;\n  const T8 v8_;\n  const T9 v9_;\n  const T10 v10_;\n  const T11 v11_;\n  const T12 v12_;\n  const T13 v13_;\n  const T14 v14_;\n  const T15 v15_;\n  const T16 v16_;\n  const T17 v17_;\n  const T18 v18_;\n  const T19 v19_;\n  const T20 v20_;\n};\n\ntemplate <typename T1, typename T2, typename T3, typename T4, typename T5,\n    typename T6, typename T7, typename T8, typename T9, typename T10,\n    typename T11, typename T12, typename T13, typename T14, typename T15,\n    typename T16, typename T17, typename T18, typename T19, typename T20,\n    typename T21>\nclass ValueArray21 {\n public:\n  ValueArray21(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,\n      T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17,\n      T18 v18, T19 v19, T20 v20, T21 v21) : v1_(v1), v2_(v2), v3_(v3), v4_(v4),\n      v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11),\n      v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17),\n      v18_(v18), v19_(v19), v20_(v20), v21_(v21) {}\n\n  template <typename T>\n  operator ParamGenerator<T>() const {\n    const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),\n        static_cast<T>(v3_), static_cast<T>(v4_), static_cast<T>(v5_),\n        static_cast<T>(v6_), static_cast<T>(v7_), static_cast<T>(v8_),\n        static_cast<T>(v9_), static_cast<T>(v10_), static_cast<T>(v11_),\n        static_cast<T>(v12_), static_cast<T>(v13_), static_cast<T>(v14_),\n        static_cast<T>(v15_), static_cast<T>(v16_), static_cast<T>(v17_),\n        static_cast<T>(v18_), static_cast<T>(v19_), static_cast<T>(v20_),\n        static_cast<T>(v21_)};\n    return ValuesIn(array);\n  }\n\n private:\n  // No implementation - assignment is unsupported.\n  void operator=(const ValueArray21& other);\n\n  const T1 v1_;\n  const T2 v2_;\n  const T3 v3_;\n  const T4 v4_;\n  const T5 v5_;\n  const T6 v6_;\n  const T7 v7_;\n  const T8 v8_;\n  const T9 v9_;\n  const T10 v10_;\n  const T11 v11_;\n  const T12 v12_;\n  const T13 v13_;\n  const T14 v14_;\n  const T15 v15_;\n  const T16 v16_;\n  const T17 v17_;\n  const T18 v18_;\n  const T19 v19_;\n  const T20 v20_;\n  const T21 v21_;\n};\n\ntemplate <typename T1, typename T2, typename T3, typename T4, typename T5,\n    typename T6, typename T7, typename T8, typename T9, typename T10,\n    typename T11, typename T12, typename T13, typename T14, typename T15,\n    typename T16, typename T17, typename T18, typename T19, typename T20,\n    typename T21, typename T22>\nclass ValueArray22 {\n public:\n  ValueArray22(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,\n      T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17,\n      T18 v18, T19 v19, T20 v20, T21 v21, T22 v22) : v1_(v1), v2_(v2), v3_(v3),\n      v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10),\n      v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16),\n      v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22) {}\n\n  template <typename T>\n  operator ParamGenerator<T>() const {\n    const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),\n        static_cast<T>(v3_), static_cast<T>(v4_), static_cast<T>(v5_),\n        static_cast<T>(v6_), static_cast<T>(v7_), static_cast<T>(v8_),\n        static_cast<T>(v9_), static_cast<T>(v10_), static_cast<T>(v11_),\n        static_cast<T>(v12_), static_cast<T>(v13_), static_cast<T>(v14_),\n        static_cast<T>(v15_), static_cast<T>(v16_), static_cast<T>(v17_),\n        static_cast<T>(v18_), static_cast<T>(v19_), static_cast<T>(v20_),\n        static_cast<T>(v21_), static_cast<T>(v22_)};\n    return ValuesIn(array);\n  }\n\n private:\n  // No implementation - assignment is unsupported.\n  void operator=(const ValueArray22& other);\n\n  const T1 v1_;\n  const T2 v2_;\n  const T3 v3_;\n  const T4 v4_;\n  const T5 v5_;\n  const T6 v6_;\n  const T7 v7_;\n  const T8 v8_;\n  const T9 v9_;\n  const T10 v10_;\n  const T11 v11_;\n  const T12 v12_;\n  const T13 v13_;\n  const T14 v14_;\n  const T15 v15_;\n  const T16 v16_;\n  const T17 v17_;\n  const T18 v18_;\n  const T19 v19_;\n  const T20 v20_;\n  const T21 v21_;\n  const T22 v22_;\n};\n\ntemplate <typename T1, typename T2, typename T3, typename T4, typename T5,\n    typename T6, typename T7, typename T8, typename T9, typename T10,\n    typename T11, typename T12, typename T13, typename T14, typename T15,\n    typename T16, typename T17, typename T18, typename T19, typename T20,\n    typename T21, typename T22, typename T23>\nclass ValueArray23 {\n public:\n  ValueArray23(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,\n      T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17,\n      T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23) : v1_(v1), v2_(v2),\n      v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10),\n      v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16),\n      v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22),\n      v23_(v23) {}\n\n  template <typename T>\n  operator ParamGenerator<T>() const {\n    const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),\n        static_cast<T>(v3_), static_cast<T>(v4_), static_cast<T>(v5_),\n        static_cast<T>(v6_), static_cast<T>(v7_), static_cast<T>(v8_),\n        static_cast<T>(v9_), static_cast<T>(v10_), static_cast<T>(v11_),\n        static_cast<T>(v12_), static_cast<T>(v13_), static_cast<T>(v14_),\n        static_cast<T>(v15_), static_cast<T>(v16_), static_cast<T>(v17_),\n        static_cast<T>(v18_), static_cast<T>(v19_), static_cast<T>(v20_),\n        static_cast<T>(v21_), static_cast<T>(v22_), static_cast<T>(v23_)};\n    return ValuesIn(array);\n  }\n\n private:\n  // No implementation - assignment is unsupported.\n  void operator=(const ValueArray23& other);\n\n  const T1 v1_;\n  const T2 v2_;\n  const T3 v3_;\n  const T4 v4_;\n  const T5 v5_;\n  const T6 v6_;\n  const T7 v7_;\n  const T8 v8_;\n  const T9 v9_;\n  const T10 v10_;\n  const T11 v11_;\n  const T12 v12_;\n  const T13 v13_;\n  const T14 v14_;\n  const T15 v15_;\n  const T16 v16_;\n  const T17 v17_;\n  const T18 v18_;\n  const T19 v19_;\n  const T20 v20_;\n  const T21 v21_;\n  const T22 v22_;\n  const T23 v23_;\n};\n\ntemplate <typename T1, typename T2, typename T3, typename T4, typename T5,\n    typename T6, typename T7, typename T8, typename T9, typename T10,\n    typename T11, typename T12, typename T13, typename T14, typename T15,\n    typename T16, typename T17, typename T18, typename T19, typename T20,\n    typename T21, typename T22, typename T23, typename T24>\nclass ValueArray24 {\n public:\n  ValueArray24(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,\n      T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17,\n      T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24) : v1_(v1),\n      v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9),\n      v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15),\n      v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21),\n      v22_(v22), v23_(v23), v24_(v24) {}\n\n  template <typename T>\n  operator ParamGenerator<T>() const {\n    const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),\n        static_cast<T>(v3_), static_cast<T>(v4_), static_cast<T>(v5_),\n        static_cast<T>(v6_), static_cast<T>(v7_), static_cast<T>(v8_),\n        static_cast<T>(v9_), static_cast<T>(v10_), static_cast<T>(v11_),\n        static_cast<T>(v12_), static_cast<T>(v13_), static_cast<T>(v14_),\n        static_cast<T>(v15_), static_cast<T>(v16_), static_cast<T>(v17_),\n        static_cast<T>(v18_), static_cast<T>(v19_), static_cast<T>(v20_),\n        static_cast<T>(v21_), static_cast<T>(v22_), static_cast<T>(v23_),\n        static_cast<T>(v24_)};\n    return ValuesIn(array);\n  }\n\n private:\n  // No implementation - assignment is unsupported.\n  void operator=(const ValueArray24& other);\n\n  const T1 v1_;\n  const T2 v2_;\n  const T3 v3_;\n  const T4 v4_;\n  const T5 v5_;\n  const T6 v6_;\n  const T7 v7_;\n  const T8 v8_;\n  const T9 v9_;\n  const T10 v10_;\n  const T11 v11_;\n  const T12 v12_;\n  const T13 v13_;\n  const T14 v14_;\n  const T15 v15_;\n  const T16 v16_;\n  const T17 v17_;\n  const T18 v18_;\n  const T19 v19_;\n  const T20 v20_;\n  const T21 v21_;\n  const T22 v22_;\n  const T23 v23_;\n  const T24 v24_;\n};\n\ntemplate <typename T1, typename T2, typename T3, typename T4, typename T5,\n    typename T6, typename T7, typename T8, typename T9, typename T10,\n    typename T11, typename T12, typename T13, typename T14, typename T15,\n    typename T16, typename T17, typename T18, typename T19, typename T20,\n    typename T21, typename T22, typename T23, typename T24, typename T25>\nclass ValueArray25 {\n public:\n  ValueArray25(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,\n      T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17,\n      T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24,\n      T25 v25) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7),\n      v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14),\n      v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20),\n      v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25) {}\n\n  template <typename T>\n  operator ParamGenerator<T>() const {\n    const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),\n        static_cast<T>(v3_), static_cast<T>(v4_), static_cast<T>(v5_),\n        static_cast<T>(v6_), static_cast<T>(v7_), static_cast<T>(v8_),\n        static_cast<T>(v9_), static_cast<T>(v10_), static_cast<T>(v11_),\n        static_cast<T>(v12_), static_cast<T>(v13_), static_cast<T>(v14_),\n        static_cast<T>(v15_), static_cast<T>(v16_), static_cast<T>(v17_),\n        static_cast<T>(v18_), static_cast<T>(v19_), static_cast<T>(v20_),\n        static_cast<T>(v21_), static_cast<T>(v22_), static_cast<T>(v23_),\n        static_cast<T>(v24_), static_cast<T>(v25_)};\n    return ValuesIn(array);\n  }\n\n private:\n  // No implementation - assignment is unsupported.\n  void operator=(const ValueArray25& other);\n\n  const T1 v1_;\n  const T2 v2_;\n  const T3 v3_;\n  const T4 v4_;\n  const T5 v5_;\n  const T6 v6_;\n  const T7 v7_;\n  const T8 v8_;\n  const T9 v9_;\n  const T10 v10_;\n  const T11 v11_;\n  const T12 v12_;\n  const T13 v13_;\n  const T14 v14_;\n  const T15 v15_;\n  const T16 v16_;\n  const T17 v17_;\n  const T18 v18_;\n  const T19 v19_;\n  const T20 v20_;\n  const T21 v21_;\n  const T22 v22_;\n  const T23 v23_;\n  const T24 v24_;\n  const T25 v25_;\n};\n\ntemplate <typename T1, typename T2, typename T3, typename T4, typename T5,\n    typename T6, typename T7, typename T8, typename T9, typename T10,\n    typename T11, typename T12, typename T13, typename T14, typename T15,\n    typename T16, typename T17, typename T18, typename T19, typename T20,\n    typename T21, typename T22, typename T23, typename T24, typename T25,\n    typename T26>\nclass ValueArray26 {\n public:\n  ValueArray26(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,\n      T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17,\n      T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25,\n      T26 v26) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7),\n      v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14),\n      v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20),\n      v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26) {}\n\n  template <typename T>\n  operator ParamGenerator<T>() const {\n    const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),\n        static_cast<T>(v3_), static_cast<T>(v4_), static_cast<T>(v5_),\n        static_cast<T>(v6_), static_cast<T>(v7_), static_cast<T>(v8_),\n        static_cast<T>(v9_), static_cast<T>(v10_), static_cast<T>(v11_),\n        static_cast<T>(v12_), static_cast<T>(v13_), static_cast<T>(v14_),\n        static_cast<T>(v15_), static_cast<T>(v16_), static_cast<T>(v17_),\n        static_cast<T>(v18_), static_cast<T>(v19_), static_cast<T>(v20_),\n        static_cast<T>(v21_), static_cast<T>(v22_), static_cast<T>(v23_),\n        static_cast<T>(v24_), static_cast<T>(v25_), static_cast<T>(v26_)};\n    return ValuesIn(array);\n  }\n\n private:\n  // No implementation - assignment is unsupported.\n  void operator=(const ValueArray26& other);\n\n  const T1 v1_;\n  const T2 v2_;\n  const T3 v3_;\n  const T4 v4_;\n  const T5 v5_;\n  const T6 v6_;\n  const T7 v7_;\n  const T8 v8_;\n  const T9 v9_;\n  const T10 v10_;\n  const T11 v11_;\n  const T12 v12_;\n  const T13 v13_;\n  const T14 v14_;\n  const T15 v15_;\n  const T16 v16_;\n  const T17 v17_;\n  const T18 v18_;\n  const T19 v19_;\n  const T20 v20_;\n  const T21 v21_;\n  const T22 v22_;\n  const T23 v23_;\n  const T24 v24_;\n  const T25 v25_;\n  const T26 v26_;\n};\n\ntemplate <typename T1, typename T2, typename T3, typename T4, typename T5,\n    typename T6, typename T7, typename T8, typename T9, typename T10,\n    typename T11, typename T12, typename T13, typename T14, typename T15,\n    typename T16, typename T17, typename T18, typename T19, typename T20,\n    typename T21, typename T22, typename T23, typename T24, typename T25,\n    typename T26, typename T27>\nclass ValueArray27 {\n public:\n  ValueArray27(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,\n      T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17,\n      T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25,\n      T26 v26, T27 v27) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6),\n      v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13),\n      v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19),\n      v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25),\n      v26_(v26), v27_(v27) {}\n\n  template <typename T>\n  operator ParamGenerator<T>() const {\n    const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),\n        static_cast<T>(v3_), static_cast<T>(v4_), static_cast<T>(v5_),\n        static_cast<T>(v6_), static_cast<T>(v7_), static_cast<T>(v8_),\n        static_cast<T>(v9_), static_cast<T>(v10_), static_cast<T>(v11_),\n        static_cast<T>(v12_), static_cast<T>(v13_), static_cast<T>(v14_),\n        static_cast<T>(v15_), static_cast<T>(v16_), static_cast<T>(v17_),\n        static_cast<T>(v18_), static_cast<T>(v19_), static_cast<T>(v20_),\n        static_cast<T>(v21_), static_cast<T>(v22_), static_cast<T>(v23_),\n        static_cast<T>(v24_), static_cast<T>(v25_), static_cast<T>(v26_),\n        static_cast<T>(v27_)};\n    return ValuesIn(array);\n  }\n\n private:\n  // No implementation - assignment is unsupported.\n  void operator=(const ValueArray27& other);\n\n  const T1 v1_;\n  const T2 v2_;\n  const T3 v3_;\n  const T4 v4_;\n  const T5 v5_;\n  const T6 v6_;\n  const T7 v7_;\n  const T8 v8_;\n  const T9 v9_;\n  const T10 v10_;\n  const T11 v11_;\n  const T12 v12_;\n  const T13 v13_;\n  const T14 v14_;\n  const T15 v15_;\n  const T16 v16_;\n  const T17 v17_;\n  const T18 v18_;\n  const T19 v19_;\n  const T20 v20_;\n  const T21 v21_;\n  const T22 v22_;\n  const T23 v23_;\n  const T24 v24_;\n  const T25 v25_;\n  const T26 v26_;\n  const T27 v27_;\n};\n\ntemplate <typename T1, typename T2, typename T3, typename T4, typename T5,\n    typename T6, typename T7, typename T8, typename T9, typename T10,\n    typename T11, typename T12, typename T13, typename T14, typename T15,\n    typename T16, typename T17, typename T18, typename T19, typename T20,\n    typename T21, typename T22, typename T23, typename T24, typename T25,\n    typename T26, typename T27, typename T28>\nclass ValueArray28 {\n public:\n  ValueArray28(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,\n      T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17,\n      T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25,\n      T26 v26, T27 v27, T28 v28) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5),\n      v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12),\n      v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18),\n      v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24),\n      v25_(v25), v26_(v26), v27_(v27), v28_(v28) {}\n\n  template <typename T>\n  operator ParamGenerator<T>() const {\n    const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),\n        static_cast<T>(v3_), static_cast<T>(v4_), static_cast<T>(v5_),\n        static_cast<T>(v6_), static_cast<T>(v7_), static_cast<T>(v8_),\n        static_cast<T>(v9_), static_cast<T>(v10_), static_cast<T>(v11_),\n        static_cast<T>(v12_), static_cast<T>(v13_), static_cast<T>(v14_),\n        static_cast<T>(v15_), static_cast<T>(v16_), static_cast<T>(v17_),\n        static_cast<T>(v18_), static_cast<T>(v19_), static_cast<T>(v20_),\n        static_cast<T>(v21_), static_cast<T>(v22_), static_cast<T>(v23_),\n        static_cast<T>(v24_), static_cast<T>(v25_), static_cast<T>(v26_),\n        static_cast<T>(v27_), static_cast<T>(v28_)};\n    return ValuesIn(array);\n  }\n\n private:\n  // No implementation - assignment is unsupported.\n  void operator=(const ValueArray28& other);\n\n  const T1 v1_;\n  const T2 v2_;\n  const T3 v3_;\n  const T4 v4_;\n  const T5 v5_;\n  const T6 v6_;\n  const T7 v7_;\n  const T8 v8_;\n  const T9 v9_;\n  const T10 v10_;\n  const T11 v11_;\n  const T12 v12_;\n  const T13 v13_;\n  const T14 v14_;\n  const T15 v15_;\n  const T16 v16_;\n  const T17 v17_;\n  const T18 v18_;\n  const T19 v19_;\n  const T20 v20_;\n  const T21 v21_;\n  const T22 v22_;\n  const T23 v23_;\n  const T24 v24_;\n  const T25 v25_;\n  const T26 v26_;\n  const T27 v27_;\n  const T28 v28_;\n};\n\ntemplate <typename T1, typename T2, typename T3, typename T4, typename T5,\n    typename T6, typename T7, typename T8, typename T9, typename T10,\n    typename T11, typename T12, typename T13, typename T14, typename T15,\n    typename T16, typename T17, typename T18, typename T19, typename T20,\n    typename T21, typename T22, typename T23, typename T24, typename T25,\n    typename T26, typename T27, typename T28, typename T29>\nclass ValueArray29 {\n public:\n  ValueArray29(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,\n      T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17,\n      T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25,\n      T26 v26, T27 v27, T28 v28, T29 v29) : v1_(v1), v2_(v2), v3_(v3), v4_(v4),\n      v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11),\n      v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17),\n      v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23),\n      v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), v29_(v29) {}\n\n  template <typename T>\n  operator ParamGenerator<T>() const {\n    const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),\n        static_cast<T>(v3_), static_cast<T>(v4_), static_cast<T>(v5_),\n        static_cast<T>(v6_), static_cast<T>(v7_), static_cast<T>(v8_),\n        static_cast<T>(v9_), static_cast<T>(v10_), static_cast<T>(v11_),\n        static_cast<T>(v12_), static_cast<T>(v13_), static_cast<T>(v14_),\n        static_cast<T>(v15_), static_cast<T>(v16_), static_cast<T>(v17_),\n        static_cast<T>(v18_), static_cast<T>(v19_), static_cast<T>(v20_),\n        static_cast<T>(v21_), static_cast<T>(v22_), static_cast<T>(v23_),\n        static_cast<T>(v24_), static_cast<T>(v25_), static_cast<T>(v26_),\n        static_cast<T>(v27_), static_cast<T>(v28_), static_cast<T>(v29_)};\n    return ValuesIn(array);\n  }\n\n private:\n  // No implementation - assignment is unsupported.\n  void operator=(const ValueArray29& other);\n\n  const T1 v1_;\n  const T2 v2_;\n  const T3 v3_;\n  const T4 v4_;\n  const T5 v5_;\n  const T6 v6_;\n  const T7 v7_;\n  const T8 v8_;\n  const T9 v9_;\n  const T10 v10_;\n  const T11 v11_;\n  const T12 v12_;\n  const T13 v13_;\n  const T14 v14_;\n  const T15 v15_;\n  const T16 v16_;\n  const T17 v17_;\n  const T18 v18_;\n  const T19 v19_;\n  const T20 v20_;\n  const T21 v21_;\n  const T22 v22_;\n  const T23 v23_;\n  const T24 v24_;\n  const T25 v25_;\n  const T26 v26_;\n  const T27 v27_;\n  const T28 v28_;\n  const T29 v29_;\n};\n\ntemplate <typename T1, typename T2, typename T3, typename T4, typename T5,\n    typename T6, typename T7, typename T8, typename T9, typename T10,\n    typename T11, typename T12, typename T13, typename T14, typename T15,\n    typename T16, typename T17, typename T18, typename T19, typename T20,\n    typename T21, typename T22, typename T23, typename T24, typename T25,\n    typename T26, typename T27, typename T28, typename T29, typename T30>\nclass ValueArray30 {\n public:\n  ValueArray30(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,\n      T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17,\n      T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25,\n      T26 v26, T27 v27, T28 v28, T29 v29, T30 v30) : v1_(v1), v2_(v2), v3_(v3),\n      v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10),\n      v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16),\n      v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22),\n      v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28),\n      v29_(v29), v30_(v30) {}\n\n  template <typename T>\n  operator ParamGenerator<T>() const {\n    const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),\n        static_cast<T>(v3_), static_cast<T>(v4_), static_cast<T>(v5_),\n        static_cast<T>(v6_), static_cast<T>(v7_), static_cast<T>(v8_),\n        static_cast<T>(v9_), static_cast<T>(v10_), static_cast<T>(v11_),\n        static_cast<T>(v12_), static_cast<T>(v13_), static_cast<T>(v14_),\n        static_cast<T>(v15_), static_cast<T>(v16_), static_cast<T>(v17_),\n        static_cast<T>(v18_), static_cast<T>(v19_), static_cast<T>(v20_),\n        static_cast<T>(v21_), static_cast<T>(v22_), static_cast<T>(v23_),\n        static_cast<T>(v24_), static_cast<T>(v25_), static_cast<T>(v26_),\n        static_cast<T>(v27_), static_cast<T>(v28_), static_cast<T>(v29_),\n        static_cast<T>(v30_)};\n    return ValuesIn(array);\n  }\n\n private:\n  // No implementation - assignment is unsupported.\n  void operator=(const ValueArray30& other);\n\n  const T1 v1_;\n  const T2 v2_;\n  const T3 v3_;\n  const T4 v4_;\n  const T5 v5_;\n  const T6 v6_;\n  const T7 v7_;\n  const T8 v8_;\n  const T9 v9_;\n  const T10 v10_;\n  const T11 v11_;\n  const T12 v12_;\n  const T13 v13_;\n  const T14 v14_;\n  const T15 v15_;\n  const T16 v16_;\n  const T17 v17_;\n  const T18 v18_;\n  const T19 v19_;\n  const T20 v20_;\n  const T21 v21_;\n  const T22 v22_;\n  const T23 v23_;\n  const T24 v24_;\n  const T25 v25_;\n  const T26 v26_;\n  const T27 v27_;\n  const T28 v28_;\n  const T29 v29_;\n  const T30 v30_;\n};\n\ntemplate <typename T1, typename T2, typename T3, typename T4, typename T5,\n    typename T6, typename T7, typename T8, typename T9, typename T10,\n    typename T11, typename T12, typename T13, typename T14, typename T15,\n    typename T16, typename T17, typename T18, typename T19, typename T20,\n    typename T21, typename T22, typename T23, typename T24, typename T25,\n    typename T26, typename T27, typename T28, typename T29, typename T30,\n    typename T31>\nclass ValueArray31 {\n public:\n  ValueArray31(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,\n      T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17,\n      T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25,\n      T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31) : v1_(v1), v2_(v2),\n      v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10),\n      v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16),\n      v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22),\n      v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28),\n      v29_(v29), v30_(v30), v31_(v31) {}\n\n  template <typename T>\n  operator ParamGenerator<T>() const {\n    const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),\n        static_cast<T>(v3_), static_cast<T>(v4_), static_cast<T>(v5_),\n        static_cast<T>(v6_), static_cast<T>(v7_), static_cast<T>(v8_),\n        static_cast<T>(v9_), static_cast<T>(v10_), static_cast<T>(v11_),\n        static_cast<T>(v12_), static_cast<T>(v13_), static_cast<T>(v14_),\n        static_cast<T>(v15_), static_cast<T>(v16_), static_cast<T>(v17_),\n        static_cast<T>(v18_), static_cast<T>(v19_), static_cast<T>(v20_),\n        static_cast<T>(v21_), static_cast<T>(v22_), static_cast<T>(v23_),\n        static_cast<T>(v24_), static_cast<T>(v25_), static_cast<T>(v26_),\n        static_cast<T>(v27_), static_cast<T>(v28_), static_cast<T>(v29_),\n        static_cast<T>(v30_), static_cast<T>(v31_)};\n    return ValuesIn(array);\n  }\n\n private:\n  // No implementation - assignment is unsupported.\n  void operator=(const ValueArray31& other);\n\n  const T1 v1_;\n  const T2 v2_;\n  const T3 v3_;\n  const T4 v4_;\n  const T5 v5_;\n  const T6 v6_;\n  const T7 v7_;\n  const T8 v8_;\n  const T9 v9_;\n  const T10 v10_;\n  const T11 v11_;\n  const T12 v12_;\n  const T13 v13_;\n  const T14 v14_;\n  const T15 v15_;\n  const T16 v16_;\n  const T17 v17_;\n  const T18 v18_;\n  const T19 v19_;\n  const T20 v20_;\n  const T21 v21_;\n  const T22 v22_;\n  const T23 v23_;\n  const T24 v24_;\n  const T25 v25_;\n  const T26 v26_;\n  const T27 v27_;\n  const T28 v28_;\n  const T29 v29_;\n  const T30 v30_;\n  const T31 v31_;\n};\n\ntemplate <typename T1, typename T2, typename T3, typename T4, typename T5,\n    typename T6, typename T7, typename T8, typename T9, typename T10,\n    typename T11, typename T12, typename T13, typename T14, typename T15,\n    typename T16, typename T17, typename T18, typename T19, typename T20,\n    typename T21, typename T22, typename T23, typename T24, typename T25,\n    typename T26, typename T27, typename T28, typename T29, typename T30,\n    typename T31, typename T32>\nclass ValueArray32 {\n public:\n  ValueArray32(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,\n      T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17,\n      T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25,\n      T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32) : v1_(v1),\n      v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9),\n      v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15),\n      v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21),\n      v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27),\n      v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32) {}\n\n  template <typename T>\n  operator ParamGenerator<T>() const {\n    const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),\n        static_cast<T>(v3_), static_cast<T>(v4_), static_cast<T>(v5_),\n        static_cast<T>(v6_), static_cast<T>(v7_), static_cast<T>(v8_),\n        static_cast<T>(v9_), static_cast<T>(v10_), static_cast<T>(v11_),\n        static_cast<T>(v12_), static_cast<T>(v13_), static_cast<T>(v14_),\n        static_cast<T>(v15_), static_cast<T>(v16_), static_cast<T>(v17_),\n        static_cast<T>(v18_), static_cast<T>(v19_), static_cast<T>(v20_),\n        static_cast<T>(v21_), static_cast<T>(v22_), static_cast<T>(v23_),\n        static_cast<T>(v24_), static_cast<T>(v25_), static_cast<T>(v26_),\n        static_cast<T>(v27_), static_cast<T>(v28_), static_cast<T>(v29_),\n        static_cast<T>(v30_), static_cast<T>(v31_), static_cast<T>(v32_)};\n    return ValuesIn(array);\n  }\n\n private:\n  // No implementation - assignment is unsupported.\n  void operator=(const ValueArray32& other);\n\n  const T1 v1_;\n  const T2 v2_;\n  const T3 v3_;\n  const T4 v4_;\n  const T5 v5_;\n  const T6 v6_;\n  const T7 v7_;\n  const T8 v8_;\n  const T9 v9_;\n  const T10 v10_;\n  const T11 v11_;\n  const T12 v12_;\n  const T13 v13_;\n  const T14 v14_;\n  const T15 v15_;\n  const T16 v16_;\n  const T17 v17_;\n  const T18 v18_;\n  const T19 v19_;\n  const T20 v20_;\n  const T21 v21_;\n  const T22 v22_;\n  const T23 v23_;\n  const T24 v24_;\n  const T25 v25_;\n  const T26 v26_;\n  const T27 v27_;\n  const T28 v28_;\n  const T29 v29_;\n  const T30 v30_;\n  const T31 v31_;\n  const T32 v32_;\n};\n\ntemplate <typename T1, typename T2, typename T3, typename T4, typename T5,\n    typename T6, typename T7, typename T8, typename T9, typename T10,\n    typename T11, typename T12, typename T13, typename T14, typename T15,\n    typename T16, typename T17, typename T18, typename T19, typename T20,\n    typename T21, typename T22, typename T23, typename T24, typename T25,\n    typename T26, typename T27, typename T28, typename T29, typename T30,\n    typename T31, typename T32, typename T33>\nclass ValueArray33 {\n public:\n  ValueArray33(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,\n      T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17,\n      T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25,\n      T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32,\n      T33 v33) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7),\n      v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14),\n      v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20),\n      v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26),\n      v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32),\n      v33_(v33) {}\n\n  template <typename T>\n  operator ParamGenerator<T>() const {\n    const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),\n        static_cast<T>(v3_), static_cast<T>(v4_), static_cast<T>(v5_),\n        static_cast<T>(v6_), static_cast<T>(v7_), static_cast<T>(v8_),\n        static_cast<T>(v9_), static_cast<T>(v10_), static_cast<T>(v11_),\n        static_cast<T>(v12_), static_cast<T>(v13_), static_cast<T>(v14_),\n        static_cast<T>(v15_), static_cast<T>(v16_), static_cast<T>(v17_),\n        static_cast<T>(v18_), static_cast<T>(v19_), static_cast<T>(v20_),\n        static_cast<T>(v21_), static_cast<T>(v22_), static_cast<T>(v23_),\n        static_cast<T>(v24_), static_cast<T>(v25_), static_cast<T>(v26_),\n        static_cast<T>(v27_), static_cast<T>(v28_), static_cast<T>(v29_),\n        static_cast<T>(v30_), static_cast<T>(v31_), static_cast<T>(v32_),\n        static_cast<T>(v33_)};\n    return ValuesIn(array);\n  }\n\n private:\n  // No implementation - assignment is unsupported.\n  void operator=(const ValueArray33& other);\n\n  const T1 v1_;\n  const T2 v2_;\n  const T3 v3_;\n  const T4 v4_;\n  const T5 v5_;\n  const T6 v6_;\n  const T7 v7_;\n  const T8 v8_;\n  const T9 v9_;\n  const T10 v10_;\n  const T11 v11_;\n  const T12 v12_;\n  const T13 v13_;\n  const T14 v14_;\n  const T15 v15_;\n  const T16 v16_;\n  const T17 v17_;\n  const T18 v18_;\n  const T19 v19_;\n  const T20 v20_;\n  const T21 v21_;\n  const T22 v22_;\n  const T23 v23_;\n  const T24 v24_;\n  const T25 v25_;\n  const T26 v26_;\n  const T27 v27_;\n  const T28 v28_;\n  const T29 v29_;\n  const T30 v30_;\n  const T31 v31_;\n  const T32 v32_;\n  const T33 v33_;\n};\n\ntemplate <typename T1, typename T2, typename T3, typename T4, typename T5,\n    typename T6, typename T7, typename T8, typename T9, typename T10,\n    typename T11, typename T12, typename T13, typename T14, typename T15,\n    typename T16, typename T17, typename T18, typename T19, typename T20,\n    typename T21, typename T22, typename T23, typename T24, typename T25,\n    typename T26, typename T27, typename T28, typename T29, typename T30,\n    typename T31, typename T32, typename T33, typename T34>\nclass ValueArray34 {\n public:\n  ValueArray34(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,\n      T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17,\n      T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25,\n      T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33,\n      T34 v34) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7),\n      v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14),\n      v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20),\n      v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26),\n      v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32),\n      v33_(v33), v34_(v34) {}\n\n  template <typename T>\n  operator ParamGenerator<T>() const {\n    const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),\n        static_cast<T>(v3_), static_cast<T>(v4_), static_cast<T>(v5_),\n        static_cast<T>(v6_), static_cast<T>(v7_), static_cast<T>(v8_),\n        static_cast<T>(v9_), static_cast<T>(v10_), static_cast<T>(v11_),\n        static_cast<T>(v12_), static_cast<T>(v13_), static_cast<T>(v14_),\n        static_cast<T>(v15_), static_cast<T>(v16_), static_cast<T>(v17_),\n        static_cast<T>(v18_), static_cast<T>(v19_), static_cast<T>(v20_),\n        static_cast<T>(v21_), static_cast<T>(v22_), static_cast<T>(v23_),\n        static_cast<T>(v24_), static_cast<T>(v25_), static_cast<T>(v26_),\n        static_cast<T>(v27_), static_cast<T>(v28_), static_cast<T>(v29_),\n        static_cast<T>(v30_), static_cast<T>(v31_), static_cast<T>(v32_),\n        static_cast<T>(v33_), static_cast<T>(v34_)};\n    return ValuesIn(array);\n  }\n\n private:\n  // No implementation - assignment is unsupported.\n  void operator=(const ValueArray34& other);\n\n  const T1 v1_;\n  const T2 v2_;\n  const T3 v3_;\n  const T4 v4_;\n  const T5 v5_;\n  const T6 v6_;\n  const T7 v7_;\n  const T8 v8_;\n  const T9 v9_;\n  const T10 v10_;\n  const T11 v11_;\n  const T12 v12_;\n  const T13 v13_;\n  const T14 v14_;\n  const T15 v15_;\n  const T16 v16_;\n  const T17 v17_;\n  const T18 v18_;\n  const T19 v19_;\n  const T20 v20_;\n  const T21 v21_;\n  const T22 v22_;\n  const T23 v23_;\n  const T24 v24_;\n  const T25 v25_;\n  const T26 v26_;\n  const T27 v27_;\n  const T28 v28_;\n  const T29 v29_;\n  const T30 v30_;\n  const T31 v31_;\n  const T32 v32_;\n  const T33 v33_;\n  const T34 v34_;\n};\n\ntemplate <typename T1, typename T2, typename T3, typename T4, typename T5,\n    typename T6, typename T7, typename T8, typename T9, typename T10,\n    typename T11, typename T12, typename T13, typename T14, typename T15,\n    typename T16, typename T17, typename T18, typename T19, typename T20,\n    typename T21, typename T22, typename T23, typename T24, typename T25,\n    typename T26, typename T27, typename T28, typename T29, typename T30,\n    typename T31, typename T32, typename T33, typename T34, typename T35>\nclass ValueArray35 {\n public:\n  ValueArray35(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,\n      T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17,\n      T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25,\n      T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33,\n      T34 v34, T35 v35) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6),\n      v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13),\n      v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19),\n      v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25),\n      v26_(v26), v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31),\n      v32_(v32), v33_(v33), v34_(v34), v35_(v35) {}\n\n  template <typename T>\n  operator ParamGenerator<T>() const {\n    const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),\n        static_cast<T>(v3_), static_cast<T>(v4_), static_cast<T>(v5_),\n        static_cast<T>(v6_), static_cast<T>(v7_), static_cast<T>(v8_),\n        static_cast<T>(v9_), static_cast<T>(v10_), static_cast<T>(v11_),\n        static_cast<T>(v12_), static_cast<T>(v13_), static_cast<T>(v14_),\n        static_cast<T>(v15_), static_cast<T>(v16_), static_cast<T>(v17_),\n        static_cast<T>(v18_), static_cast<T>(v19_), static_cast<T>(v20_),\n        static_cast<T>(v21_), static_cast<T>(v22_), static_cast<T>(v23_),\n        static_cast<T>(v24_), static_cast<T>(v25_), static_cast<T>(v26_),\n        static_cast<T>(v27_), static_cast<T>(v28_), static_cast<T>(v29_),\n        static_cast<T>(v30_), static_cast<T>(v31_), static_cast<T>(v32_),\n        static_cast<T>(v33_), static_cast<T>(v34_), static_cast<T>(v35_)};\n    return ValuesIn(array);\n  }\n\n private:\n  // No implementation - assignment is unsupported.\n  void operator=(const ValueArray35& other);\n\n  const T1 v1_;\n  const T2 v2_;\n  const T3 v3_;\n  const T4 v4_;\n  const T5 v5_;\n  const T6 v6_;\n  const T7 v7_;\n  const T8 v8_;\n  const T9 v9_;\n  const T10 v10_;\n  const T11 v11_;\n  const T12 v12_;\n  const T13 v13_;\n  const T14 v14_;\n  const T15 v15_;\n  const T16 v16_;\n  const T17 v17_;\n  const T18 v18_;\n  const T19 v19_;\n  const T20 v20_;\n  const T21 v21_;\n  const T22 v22_;\n  const T23 v23_;\n  const T24 v24_;\n  const T25 v25_;\n  const T26 v26_;\n  const T27 v27_;\n  const T28 v28_;\n  const T29 v29_;\n  const T30 v30_;\n  const T31 v31_;\n  const T32 v32_;\n  const T33 v33_;\n  const T34 v34_;\n  const T35 v35_;\n};\n\ntemplate <typename T1, typename T2, typename T3, typename T4, typename T5,\n    typename T6, typename T7, typename T8, typename T9, typename T10,\n    typename T11, typename T12, typename T13, typename T14, typename T15,\n    typename T16, typename T17, typename T18, typename T19, typename T20,\n    typename T21, typename T22, typename T23, typename T24, typename T25,\n    typename T26, typename T27, typename T28, typename T29, typename T30,\n    typename T31, typename T32, typename T33, typename T34, typename T35,\n    typename T36>\nclass ValueArray36 {\n public:\n  ValueArray36(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,\n      T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17,\n      T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25,\n      T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33,\n      T34 v34, T35 v35, T36 v36) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5),\n      v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12),\n      v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18),\n      v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24),\n      v25_(v25), v26_(v26), v27_(v27), v28_(v28), v29_(v29), v30_(v30),\n      v31_(v31), v32_(v32), v33_(v33), v34_(v34), v35_(v35), v36_(v36) {}\n\n  template <typename T>\n  operator ParamGenerator<T>() const {\n    const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),\n        static_cast<T>(v3_), static_cast<T>(v4_), static_cast<T>(v5_),\n        static_cast<T>(v6_), static_cast<T>(v7_), static_cast<T>(v8_),\n        static_cast<T>(v9_), static_cast<T>(v10_), static_cast<T>(v11_),\n        static_cast<T>(v12_), static_cast<T>(v13_), static_cast<T>(v14_),\n        static_cast<T>(v15_), static_cast<T>(v16_), static_cast<T>(v17_),\n        static_cast<T>(v18_), static_cast<T>(v19_), static_cast<T>(v20_),\n        static_cast<T>(v21_), static_cast<T>(v22_), static_cast<T>(v23_),\n        static_cast<T>(v24_), static_cast<T>(v25_), static_cast<T>(v26_),\n        static_cast<T>(v27_), static_cast<T>(v28_), static_cast<T>(v29_),\n        static_cast<T>(v30_), static_cast<T>(v31_), static_cast<T>(v32_),\n        static_cast<T>(v33_), static_cast<T>(v34_), static_cast<T>(v35_),\n        static_cast<T>(v36_)};\n    return ValuesIn(array);\n  }\n\n private:\n  // No implementation - assignment is unsupported.\n  void operator=(const ValueArray36& other);\n\n  const T1 v1_;\n  const T2 v2_;\n  const T3 v3_;\n  const T4 v4_;\n  const T5 v5_;\n  const T6 v6_;\n  const T7 v7_;\n  const T8 v8_;\n  const T9 v9_;\n  const T10 v10_;\n  const T11 v11_;\n  const T12 v12_;\n  const T13 v13_;\n  const T14 v14_;\n  const T15 v15_;\n  const T16 v16_;\n  const T17 v17_;\n  const T18 v18_;\n  const T19 v19_;\n  const T20 v20_;\n  const T21 v21_;\n  const T22 v22_;\n  const T23 v23_;\n  const T24 v24_;\n  const T25 v25_;\n  const T26 v26_;\n  const T27 v27_;\n  const T28 v28_;\n  const T29 v29_;\n  const T30 v30_;\n  const T31 v31_;\n  const T32 v32_;\n  const T33 v33_;\n  const T34 v34_;\n  const T35 v35_;\n  const T36 v36_;\n};\n\ntemplate <typename T1, typename T2, typename T3, typename T4, typename T5,\n    typename T6, typename T7, typename T8, typename T9, typename T10,\n    typename T11, typename T12, typename T13, typename T14, typename T15,\n    typename T16, typename T17, typename T18, typename T19, typename T20,\n    typename T21, typename T22, typename T23, typename T24, typename T25,\n    typename T26, typename T27, typename T28, typename T29, typename T30,\n    typename T31, typename T32, typename T33, typename T34, typename T35,\n    typename T36, typename T37>\nclass ValueArray37 {\n public:\n  ValueArray37(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,\n      T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17,\n      T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25,\n      T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33,\n      T34 v34, T35 v35, T36 v36, T37 v37) : v1_(v1), v2_(v2), v3_(v3), v4_(v4),\n      v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11),\n      v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17),\n      v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23),\n      v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), v29_(v29),\n      v30_(v30), v31_(v31), v32_(v32), v33_(v33), v34_(v34), v35_(v35),\n      v36_(v36), v37_(v37) {}\n\n  template <typename T>\n  operator ParamGenerator<T>() const {\n    const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),\n        static_cast<T>(v3_), static_cast<T>(v4_), static_cast<T>(v5_),\n        static_cast<T>(v6_), static_cast<T>(v7_), static_cast<T>(v8_),\n        static_cast<T>(v9_), static_cast<T>(v10_), static_cast<T>(v11_),\n        static_cast<T>(v12_), static_cast<T>(v13_), static_cast<T>(v14_),\n        static_cast<T>(v15_), static_cast<T>(v16_), static_cast<T>(v17_),\n        static_cast<T>(v18_), static_cast<T>(v19_), static_cast<T>(v20_),\n        static_cast<T>(v21_), static_cast<T>(v22_), static_cast<T>(v23_),\n        static_cast<T>(v24_), static_cast<T>(v25_), static_cast<T>(v26_),\n        static_cast<T>(v27_), static_cast<T>(v28_), static_cast<T>(v29_),\n        static_cast<T>(v30_), static_cast<T>(v31_), static_cast<T>(v32_),\n        static_cast<T>(v33_), static_cast<T>(v34_), static_cast<T>(v35_),\n        static_cast<T>(v36_), static_cast<T>(v37_)};\n    return ValuesIn(array);\n  }\n\n private:\n  // No implementation - assignment is unsupported.\n  void operator=(const ValueArray37& other);\n\n  const T1 v1_;\n  const T2 v2_;\n  const T3 v3_;\n  const T4 v4_;\n  const T5 v5_;\n  const T6 v6_;\n  const T7 v7_;\n  const T8 v8_;\n  const T9 v9_;\n  const T10 v10_;\n  const T11 v11_;\n  const T12 v12_;\n  const T13 v13_;\n  const T14 v14_;\n  const T15 v15_;\n  const T16 v16_;\n  const T17 v17_;\n  const T18 v18_;\n  const T19 v19_;\n  const T20 v20_;\n  const T21 v21_;\n  const T22 v22_;\n  const T23 v23_;\n  const T24 v24_;\n  const T25 v25_;\n  const T26 v26_;\n  const T27 v27_;\n  const T28 v28_;\n  const T29 v29_;\n  const T30 v30_;\n  const T31 v31_;\n  const T32 v32_;\n  const T33 v33_;\n  const T34 v34_;\n  const T35 v35_;\n  const T36 v36_;\n  const T37 v37_;\n};\n\ntemplate <typename T1, typename T2, typename T3, typename T4, typename T5,\n    typename T6, typename T7, typename T8, typename T9, typename T10,\n    typename T11, typename T12, typename T13, typename T14, typename T15,\n    typename T16, typename T17, typename T18, typename T19, typename T20,\n    typename T21, typename T22, typename T23, typename T24, typename T25,\n    typename T26, typename T27, typename T28, typename T29, typename T30,\n    typename T31, typename T32, typename T33, typename T34, typename T35,\n    typename T36, typename T37, typename T38>\nclass ValueArray38 {\n public:\n  ValueArray38(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,\n      T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17,\n      T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25,\n      T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33,\n      T34 v34, T35 v35, T36 v36, T37 v37, T38 v38) : v1_(v1), v2_(v2), v3_(v3),\n      v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10),\n      v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16),\n      v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22),\n      v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28),\n      v29_(v29), v30_(v30), v31_(v31), v32_(v32), v33_(v33), v34_(v34),\n      v35_(v35), v36_(v36), v37_(v37), v38_(v38) {}\n\n  template <typename T>\n  operator ParamGenerator<T>() const {\n    const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),\n        static_cast<T>(v3_), static_cast<T>(v4_), static_cast<T>(v5_),\n        static_cast<T>(v6_), static_cast<T>(v7_), static_cast<T>(v8_),\n        static_cast<T>(v9_), static_cast<T>(v10_), static_cast<T>(v11_),\n        static_cast<T>(v12_), static_cast<T>(v13_), static_cast<T>(v14_),\n        static_cast<T>(v15_), static_cast<T>(v16_), static_cast<T>(v17_),\n        static_cast<T>(v18_), static_cast<T>(v19_), static_cast<T>(v20_),\n        static_cast<T>(v21_), static_cast<T>(v22_), static_cast<T>(v23_),\n        static_cast<T>(v24_), static_cast<T>(v25_), static_cast<T>(v26_),\n        static_cast<T>(v27_), static_cast<T>(v28_), static_cast<T>(v29_),\n        static_cast<T>(v30_), static_cast<T>(v31_), static_cast<T>(v32_),\n        static_cast<T>(v33_), static_cast<T>(v34_), static_cast<T>(v35_),\n        static_cast<T>(v36_), static_cast<T>(v37_), static_cast<T>(v38_)};\n    return ValuesIn(array);\n  }\n\n private:\n  // No implementation - assignment is unsupported.\n  void operator=(const ValueArray38& other);\n\n  const T1 v1_;\n  const T2 v2_;\n  const T3 v3_;\n  const T4 v4_;\n  const T5 v5_;\n  const T6 v6_;\n  const T7 v7_;\n  const T8 v8_;\n  const T9 v9_;\n  const T10 v10_;\n  const T11 v11_;\n  const T12 v12_;\n  const T13 v13_;\n  const T14 v14_;\n  const T15 v15_;\n  const T16 v16_;\n  const T17 v17_;\n  const T18 v18_;\n  const T19 v19_;\n  const T20 v20_;\n  const T21 v21_;\n  const T22 v22_;\n  const T23 v23_;\n  const T24 v24_;\n  const T25 v25_;\n  const T26 v26_;\n  const T27 v27_;\n  const T28 v28_;\n  const T29 v29_;\n  const T30 v30_;\n  const T31 v31_;\n  const T32 v32_;\n  const T33 v33_;\n  const T34 v34_;\n  const T35 v35_;\n  const T36 v36_;\n  const T37 v37_;\n  const T38 v38_;\n};\n\ntemplate <typename T1, typename T2, typename T3, typename T4, typename T5,\n    typename T6, typename T7, typename T8, typename T9, typename T10,\n    typename T11, typename T12, typename T13, typename T14, typename T15,\n    typename T16, typename T17, typename T18, typename T19, typename T20,\n    typename T21, typename T22, typename T23, typename T24, typename T25,\n    typename T26, typename T27, typename T28, typename T29, typename T30,\n    typename T31, typename T32, typename T33, typename T34, typename T35,\n    typename T36, typename T37, typename T38, typename T39>\nclass ValueArray39 {\n public:\n  ValueArray39(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,\n      T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17,\n      T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25,\n      T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33,\n      T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39) : v1_(v1), v2_(v2),\n      v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10),\n      v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16),\n      v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22),\n      v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28),\n      v29_(v29), v30_(v30), v31_(v31), v32_(v32), v33_(v33), v34_(v34),\n      v35_(v35), v36_(v36), v37_(v37), v38_(v38), v39_(v39) {}\n\n  template <typename T>\n  operator ParamGenerator<T>() const {\n    const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),\n        static_cast<T>(v3_), static_cast<T>(v4_), static_cast<T>(v5_),\n        static_cast<T>(v6_), static_cast<T>(v7_), static_cast<T>(v8_),\n        static_cast<T>(v9_), static_cast<T>(v10_), static_cast<T>(v11_),\n        static_cast<T>(v12_), static_cast<T>(v13_), static_cast<T>(v14_),\n        static_cast<T>(v15_), static_cast<T>(v16_), static_cast<T>(v17_),\n        static_cast<T>(v18_), static_cast<T>(v19_), static_cast<T>(v20_),\n        static_cast<T>(v21_), static_cast<T>(v22_), static_cast<T>(v23_),\n        static_cast<T>(v24_), static_cast<T>(v25_), static_cast<T>(v26_),\n        static_cast<T>(v27_), static_cast<T>(v28_), static_cast<T>(v29_),\n        static_cast<T>(v30_), static_cast<T>(v31_), static_cast<T>(v32_),\n        static_cast<T>(v33_), static_cast<T>(v34_), static_cast<T>(v35_),\n        static_cast<T>(v36_), static_cast<T>(v37_), static_cast<T>(v38_),\n        static_cast<T>(v39_)};\n    return ValuesIn(array);\n  }\n\n private:\n  // No implementation - assignment is unsupported.\n  void operator=(const ValueArray39& other);\n\n  const T1 v1_;\n  const T2 v2_;\n  const T3 v3_;\n  const T4 v4_;\n  const T5 v5_;\n  const T6 v6_;\n  const T7 v7_;\n  const T8 v8_;\n  const T9 v9_;\n  const T10 v10_;\n  const T11 v11_;\n  const T12 v12_;\n  const T13 v13_;\n  const T14 v14_;\n  const T15 v15_;\n  const T16 v16_;\n  const T17 v17_;\n  const T18 v18_;\n  const T19 v19_;\n  const T20 v20_;\n  const T21 v21_;\n  const T22 v22_;\n  const T23 v23_;\n  const T24 v24_;\n  const T25 v25_;\n  const T26 v26_;\n  const T27 v27_;\n  const T28 v28_;\n  const T29 v29_;\n  const T30 v30_;\n  const T31 v31_;\n  const T32 v32_;\n  const T33 v33_;\n  const T34 v34_;\n  const T35 v35_;\n  const T36 v36_;\n  const T37 v37_;\n  const T38 v38_;\n  const T39 v39_;\n};\n\ntemplate <typename T1, typename T2, typename T3, typename T4, typename T5,\n    typename T6, typename T7, typename T8, typename T9, typename T10,\n    typename T11, typename T12, typename T13, typename T14, typename T15,\n    typename T16, typename T17, typename T18, typename T19, typename T20,\n    typename T21, typename T22, typename T23, typename T24, typename T25,\n    typename T26, typename T27, typename T28, typename T29, typename T30,\n    typename T31, typename T32, typename T33, typename T34, typename T35,\n    typename T36, typename T37, typename T38, typename T39, typename T40>\nclass ValueArray40 {\n public:\n  ValueArray40(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,\n      T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17,\n      T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25,\n      T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33,\n      T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40) : v1_(v1),\n      v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9),\n      v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15),\n      v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21),\n      v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27),\n      v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32), v33_(v33),\n      v34_(v34), v35_(v35), v36_(v36), v37_(v37), v38_(v38), v39_(v39),\n      v40_(v40) {}\n\n  template <typename T>\n  operator ParamGenerator<T>() const {\n    const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),\n        static_cast<T>(v3_), static_cast<T>(v4_), static_cast<T>(v5_),\n        static_cast<T>(v6_), static_cast<T>(v7_), static_cast<T>(v8_),\n        static_cast<T>(v9_), static_cast<T>(v10_), static_cast<T>(v11_),\n        static_cast<T>(v12_), static_cast<T>(v13_), static_cast<T>(v14_),\n        static_cast<T>(v15_), static_cast<T>(v16_), static_cast<T>(v17_),\n        static_cast<T>(v18_), static_cast<T>(v19_), static_cast<T>(v20_),\n        static_cast<T>(v21_), static_cast<T>(v22_), static_cast<T>(v23_),\n        static_cast<T>(v24_), static_cast<T>(v25_), static_cast<T>(v26_),\n        static_cast<T>(v27_), static_cast<T>(v28_), static_cast<T>(v29_),\n        static_cast<T>(v30_), static_cast<T>(v31_), static_cast<T>(v32_),\n        static_cast<T>(v33_), static_cast<T>(v34_), static_cast<T>(v35_),\n        static_cast<T>(v36_), static_cast<T>(v37_), static_cast<T>(v38_),\n        static_cast<T>(v39_), static_cast<T>(v40_)};\n    return ValuesIn(array);\n  }\n\n private:\n  // No implementation - assignment is unsupported.\n  void operator=(const ValueArray40& other);\n\n  const T1 v1_;\n  const T2 v2_;\n  const T3 v3_;\n  const T4 v4_;\n  const T5 v5_;\n  const T6 v6_;\n  const T7 v7_;\n  const T8 v8_;\n  const T9 v9_;\n  const T10 v10_;\n  const T11 v11_;\n  const T12 v12_;\n  const T13 v13_;\n  const T14 v14_;\n  const T15 v15_;\n  const T16 v16_;\n  const T17 v17_;\n  const T18 v18_;\n  const T19 v19_;\n  const T20 v20_;\n  const T21 v21_;\n  const T22 v22_;\n  const T23 v23_;\n  const T24 v24_;\n  const T25 v25_;\n  const T26 v26_;\n  const T27 v27_;\n  const T28 v28_;\n  const T29 v29_;\n  const T30 v30_;\n  const T31 v31_;\n  const T32 v32_;\n  const T33 v33_;\n  const T34 v34_;\n  const T35 v35_;\n  const T36 v36_;\n  const T37 v37_;\n  const T38 v38_;\n  const T39 v39_;\n  const T40 v40_;\n};\n\ntemplate <typename T1, typename T2, typename T3, typename T4, typename T5,\n    typename T6, typename T7, typename T8, typename T9, typename T10,\n    typename T11, typename T12, typename T13, typename T14, typename T15,\n    typename T16, typename T17, typename T18, typename T19, typename T20,\n    typename T21, typename T22, typename T23, typename T24, typename T25,\n    typename T26, typename T27, typename T28, typename T29, typename T30,\n    typename T31, typename T32, typename T33, typename T34, typename T35,\n    typename T36, typename T37, typename T38, typename T39, typename T40,\n    typename T41>\nclass ValueArray41 {\n public:\n  ValueArray41(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,\n      T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17,\n      T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25,\n      T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33,\n      T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40,\n      T41 v41) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7),\n      v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14),\n      v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20),\n      v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26),\n      v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32),\n      v33_(v33), v34_(v34), v35_(v35), v36_(v36), v37_(v37), v38_(v38),\n      v39_(v39), v40_(v40), v41_(v41) {}\n\n  template <typename T>\n  operator ParamGenerator<T>() const {\n    const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),\n        static_cast<T>(v3_), static_cast<T>(v4_), static_cast<T>(v5_),\n        static_cast<T>(v6_), static_cast<T>(v7_), static_cast<T>(v8_),\n        static_cast<T>(v9_), static_cast<T>(v10_), static_cast<T>(v11_),\n        static_cast<T>(v12_), static_cast<T>(v13_), static_cast<T>(v14_),\n        static_cast<T>(v15_), static_cast<T>(v16_), static_cast<T>(v17_),\n        static_cast<T>(v18_), static_cast<T>(v19_), static_cast<T>(v20_),\n        static_cast<T>(v21_), static_cast<T>(v22_), static_cast<T>(v23_),\n        static_cast<T>(v24_), static_cast<T>(v25_), static_cast<T>(v26_),\n        static_cast<T>(v27_), static_cast<T>(v28_), static_cast<T>(v29_),\n        static_cast<T>(v30_), static_cast<T>(v31_), static_cast<T>(v32_),\n        static_cast<T>(v33_), static_cast<T>(v34_), static_cast<T>(v35_),\n        static_cast<T>(v36_), static_cast<T>(v37_), static_cast<T>(v38_),\n        static_cast<T>(v39_), static_cast<T>(v40_), static_cast<T>(v41_)};\n    return ValuesIn(array);\n  }\n\n private:\n  // No implementation - assignment is unsupported.\n  void operator=(const ValueArray41& other);\n\n  const T1 v1_;\n  const T2 v2_;\n  const T3 v3_;\n  const T4 v4_;\n  const T5 v5_;\n  const T6 v6_;\n  const T7 v7_;\n  const T8 v8_;\n  const T9 v9_;\n  const T10 v10_;\n  const T11 v11_;\n  const T12 v12_;\n  const T13 v13_;\n  const T14 v14_;\n  const T15 v15_;\n  const T16 v16_;\n  const T17 v17_;\n  const T18 v18_;\n  const T19 v19_;\n  const T20 v20_;\n  const T21 v21_;\n  const T22 v22_;\n  const T23 v23_;\n  const T24 v24_;\n  const T25 v25_;\n  const T26 v26_;\n  const T27 v27_;\n  const T28 v28_;\n  const T29 v29_;\n  const T30 v30_;\n  const T31 v31_;\n  const T32 v32_;\n  const T33 v33_;\n  const T34 v34_;\n  const T35 v35_;\n  const T36 v36_;\n  const T37 v37_;\n  const T38 v38_;\n  const T39 v39_;\n  const T40 v40_;\n  const T41 v41_;\n};\n\ntemplate <typename T1, typename T2, typename T3, typename T4, typename T5,\n    typename T6, typename T7, typename T8, typename T9, typename T10,\n    typename T11, typename T12, typename T13, typename T14, typename T15,\n    typename T16, typename T17, typename T18, typename T19, typename T20,\n    typename T21, typename T22, typename T23, typename T24, typename T25,\n    typename T26, typename T27, typename T28, typename T29, typename T30,\n    typename T31, typename T32, typename T33, typename T34, typename T35,\n    typename T36, typename T37, typename T38, typename T39, typename T40,\n    typename T41, typename T42>\nclass ValueArray42 {\n public:\n  ValueArray42(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,\n      T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17,\n      T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25,\n      T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33,\n      T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41,\n      T42 v42) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7),\n      v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14),\n      v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20),\n      v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26),\n      v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32),\n      v33_(v33), v34_(v34), v35_(v35), v36_(v36), v37_(v37), v38_(v38),\n      v39_(v39), v40_(v40), v41_(v41), v42_(v42) {}\n\n  template <typename T>\n  operator ParamGenerator<T>() const {\n    const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),\n        static_cast<T>(v3_), static_cast<T>(v4_), static_cast<T>(v5_),\n        static_cast<T>(v6_), static_cast<T>(v7_), static_cast<T>(v8_),\n        static_cast<T>(v9_), static_cast<T>(v10_), static_cast<T>(v11_),\n        static_cast<T>(v12_), static_cast<T>(v13_), static_cast<T>(v14_),\n        static_cast<T>(v15_), static_cast<T>(v16_), static_cast<T>(v17_),\n        static_cast<T>(v18_), static_cast<T>(v19_), static_cast<T>(v20_),\n        static_cast<T>(v21_), static_cast<T>(v22_), static_cast<T>(v23_),\n        static_cast<T>(v24_), static_cast<T>(v25_), static_cast<T>(v26_),\n        static_cast<T>(v27_), static_cast<T>(v28_), static_cast<T>(v29_),\n        static_cast<T>(v30_), static_cast<T>(v31_), static_cast<T>(v32_),\n        static_cast<T>(v33_), static_cast<T>(v34_), static_cast<T>(v35_),\n        static_cast<T>(v36_), static_cast<T>(v37_), static_cast<T>(v38_),\n        static_cast<T>(v39_), static_cast<T>(v40_), static_cast<T>(v41_),\n        static_cast<T>(v42_)};\n    return ValuesIn(array);\n  }\n\n private:\n  // No implementation - assignment is unsupported.\n  void operator=(const ValueArray42& other);\n\n  const T1 v1_;\n  const T2 v2_;\n  const T3 v3_;\n  const T4 v4_;\n  const T5 v5_;\n  const T6 v6_;\n  const T7 v7_;\n  const T8 v8_;\n  const T9 v9_;\n  const T10 v10_;\n  const T11 v11_;\n  const T12 v12_;\n  const T13 v13_;\n  const T14 v14_;\n  const T15 v15_;\n  const T16 v16_;\n  const T17 v17_;\n  const T18 v18_;\n  const T19 v19_;\n  const T20 v20_;\n  const T21 v21_;\n  const T22 v22_;\n  const T23 v23_;\n  const T24 v24_;\n  const T25 v25_;\n  const T26 v26_;\n  const T27 v27_;\n  const T28 v28_;\n  const T29 v29_;\n  const T30 v30_;\n  const T31 v31_;\n  const T32 v32_;\n  const T33 v33_;\n  const T34 v34_;\n  const T35 v35_;\n  const T36 v36_;\n  const T37 v37_;\n  const T38 v38_;\n  const T39 v39_;\n  const T40 v40_;\n  const T41 v41_;\n  const T42 v42_;\n};\n\ntemplate <typename T1, typename T2, typename T3, typename T4, typename T5,\n    typename T6, typename T7, typename T8, typename T9, typename T10,\n    typename T11, typename T12, typename T13, typename T14, typename T15,\n    typename T16, typename T17, typename T18, typename T19, typename T20,\n    typename T21, typename T22, typename T23, typename T24, typename T25,\n    typename T26, typename T27, typename T28, typename T29, typename T30,\n    typename T31, typename T32, typename T33, typename T34, typename T35,\n    typename T36, typename T37, typename T38, typename T39, typename T40,\n    typename T41, typename T42, typename T43>\nclass ValueArray43 {\n public:\n  ValueArray43(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,\n      T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17,\n      T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25,\n      T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33,\n      T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41,\n      T42 v42, T43 v43) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6),\n      v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13),\n      v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19),\n      v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25),\n      v26_(v26), v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31),\n      v32_(v32), v33_(v33), v34_(v34), v35_(v35), v36_(v36), v37_(v37),\n      v38_(v38), v39_(v39), v40_(v40), v41_(v41), v42_(v42), v43_(v43) {}\n\n  template <typename T>\n  operator ParamGenerator<T>() const {\n    const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),\n        static_cast<T>(v3_), static_cast<T>(v4_), static_cast<T>(v5_),\n        static_cast<T>(v6_), static_cast<T>(v7_), static_cast<T>(v8_),\n        static_cast<T>(v9_), static_cast<T>(v10_), static_cast<T>(v11_),\n        static_cast<T>(v12_), static_cast<T>(v13_), static_cast<T>(v14_),\n        static_cast<T>(v15_), static_cast<T>(v16_), static_cast<T>(v17_),\n        static_cast<T>(v18_), static_cast<T>(v19_), static_cast<T>(v20_),\n        static_cast<T>(v21_), static_cast<T>(v22_), static_cast<T>(v23_),\n        static_cast<T>(v24_), static_cast<T>(v25_), static_cast<T>(v26_),\n        static_cast<T>(v27_), static_cast<T>(v28_), static_cast<T>(v29_),\n        static_cast<T>(v30_), static_cast<T>(v31_), static_cast<T>(v32_),\n        static_cast<T>(v33_), static_cast<T>(v34_), static_cast<T>(v35_),\n        static_cast<T>(v36_), static_cast<T>(v37_), static_cast<T>(v38_),\n        static_cast<T>(v39_), static_cast<T>(v40_), static_cast<T>(v41_),\n        static_cast<T>(v42_), static_cast<T>(v43_)};\n    return ValuesIn(array);\n  }\n\n private:\n  // No implementation - assignment is unsupported.\n  void operator=(const ValueArray43& other);\n\n  const T1 v1_;\n  const T2 v2_;\n  const T3 v3_;\n  const T4 v4_;\n  const T5 v5_;\n  const T6 v6_;\n  const T7 v7_;\n  const T8 v8_;\n  const T9 v9_;\n  const T10 v10_;\n  const T11 v11_;\n  const T12 v12_;\n  const T13 v13_;\n  const T14 v14_;\n  const T15 v15_;\n  const T16 v16_;\n  const T17 v17_;\n  const T18 v18_;\n  const T19 v19_;\n  const T20 v20_;\n  const T21 v21_;\n  const T22 v22_;\n  const T23 v23_;\n  const T24 v24_;\n  const T25 v25_;\n  const T26 v26_;\n  const T27 v27_;\n  const T28 v28_;\n  const T29 v29_;\n  const T30 v30_;\n  const T31 v31_;\n  const T32 v32_;\n  const T33 v33_;\n  const T34 v34_;\n  const T35 v35_;\n  const T36 v36_;\n  const T37 v37_;\n  const T38 v38_;\n  const T39 v39_;\n  const T40 v40_;\n  const T41 v41_;\n  const T42 v42_;\n  const T43 v43_;\n};\n\ntemplate <typename T1, typename T2, typename T3, typename T4, typename T5,\n    typename T6, typename T7, typename T8, typename T9, typename T10,\n    typename T11, typename T12, typename T13, typename T14, typename T15,\n    typename T16, typename T17, typename T18, typename T19, typename T20,\n    typename T21, typename T22, typename T23, typename T24, typename T25,\n    typename T26, typename T27, typename T28, typename T29, typename T30,\n    typename T31, typename T32, typename T33, typename T34, typename T35,\n    typename T36, typename T37, typename T38, typename T39, typename T40,\n    typename T41, typename T42, typename T43, typename T44>\nclass ValueArray44 {\n public:\n  ValueArray44(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,\n      T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17,\n      T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25,\n      T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33,\n      T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41,\n      T42 v42, T43 v43, T44 v44) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5),\n      v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12),\n      v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18),\n      v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24),\n      v25_(v25), v26_(v26), v27_(v27), v28_(v28), v29_(v29), v30_(v30),\n      v31_(v31), v32_(v32), v33_(v33), v34_(v34), v35_(v35), v36_(v36),\n      v37_(v37), v38_(v38), v39_(v39), v40_(v40), v41_(v41), v42_(v42),\n      v43_(v43), v44_(v44) {}\n\n  template <typename T>\n  operator ParamGenerator<T>() const {\n    const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),\n        static_cast<T>(v3_), static_cast<T>(v4_), static_cast<T>(v5_),\n        static_cast<T>(v6_), static_cast<T>(v7_), static_cast<T>(v8_),\n        static_cast<T>(v9_), static_cast<T>(v10_), static_cast<T>(v11_),\n        static_cast<T>(v12_), static_cast<T>(v13_), static_cast<T>(v14_),\n        static_cast<T>(v15_), static_cast<T>(v16_), static_cast<T>(v17_),\n        static_cast<T>(v18_), static_cast<T>(v19_), static_cast<T>(v20_),\n        static_cast<T>(v21_), static_cast<T>(v22_), static_cast<T>(v23_),\n        static_cast<T>(v24_), static_cast<T>(v25_), static_cast<T>(v26_),\n        static_cast<T>(v27_), static_cast<T>(v28_), static_cast<T>(v29_),\n        static_cast<T>(v30_), static_cast<T>(v31_), static_cast<T>(v32_),\n        static_cast<T>(v33_), static_cast<T>(v34_), static_cast<T>(v35_),\n        static_cast<T>(v36_), static_cast<T>(v37_), static_cast<T>(v38_),\n        static_cast<T>(v39_), static_cast<T>(v40_), static_cast<T>(v41_),\n        static_cast<T>(v42_), static_cast<T>(v43_), static_cast<T>(v44_)};\n    return ValuesIn(array);\n  }\n\n private:\n  // No implementation - assignment is unsupported.\n  void operator=(const ValueArray44& other);\n\n  const T1 v1_;\n  const T2 v2_;\n  const T3 v3_;\n  const T4 v4_;\n  const T5 v5_;\n  const T6 v6_;\n  const T7 v7_;\n  const T8 v8_;\n  const T9 v9_;\n  const T10 v10_;\n  const T11 v11_;\n  const T12 v12_;\n  const T13 v13_;\n  const T14 v14_;\n  const T15 v15_;\n  const T16 v16_;\n  const T17 v17_;\n  const T18 v18_;\n  const T19 v19_;\n  const T20 v20_;\n  const T21 v21_;\n  const T22 v22_;\n  const T23 v23_;\n  const T24 v24_;\n  const T25 v25_;\n  const T26 v26_;\n  const T27 v27_;\n  const T28 v28_;\n  const T29 v29_;\n  const T30 v30_;\n  const T31 v31_;\n  const T32 v32_;\n  const T33 v33_;\n  const T34 v34_;\n  const T35 v35_;\n  const T36 v36_;\n  const T37 v37_;\n  const T38 v38_;\n  const T39 v39_;\n  const T40 v40_;\n  const T41 v41_;\n  const T42 v42_;\n  const T43 v43_;\n  const T44 v44_;\n};\n\ntemplate <typename T1, typename T2, typename T3, typename T4, typename T5,\n    typename T6, typename T7, typename T8, typename T9, typename T10,\n    typename T11, typename T12, typename T13, typename T14, typename T15,\n    typename T16, typename T17, typename T18, typename T19, typename T20,\n    typename T21, typename T22, typename T23, typename T24, typename T25,\n    typename T26, typename T27, typename T28, typename T29, typename T30,\n    typename T31, typename T32, typename T33, typename T34, typename T35,\n    typename T36, typename T37, typename T38, typename T39, typename T40,\n    typename T41, typename T42, typename T43, typename T44, typename T45>\nclass ValueArray45 {\n public:\n  ValueArray45(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,\n      T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17,\n      T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25,\n      T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33,\n      T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41,\n      T42 v42, T43 v43, T44 v44, T45 v45) : v1_(v1), v2_(v2), v3_(v3), v4_(v4),\n      v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11),\n      v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17),\n      v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23),\n      v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), v29_(v29),\n      v30_(v30), v31_(v31), v32_(v32), v33_(v33), v34_(v34), v35_(v35),\n      v36_(v36), v37_(v37), v38_(v38), v39_(v39), v40_(v40), v41_(v41),\n      v42_(v42), v43_(v43), v44_(v44), v45_(v45) {}\n\n  template <typename T>\n  operator ParamGenerator<T>() const {\n    const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),\n        static_cast<T>(v3_), static_cast<T>(v4_), static_cast<T>(v5_),\n        static_cast<T>(v6_), static_cast<T>(v7_), static_cast<T>(v8_),\n        static_cast<T>(v9_), static_cast<T>(v10_), static_cast<T>(v11_),\n        static_cast<T>(v12_), static_cast<T>(v13_), static_cast<T>(v14_),\n        static_cast<T>(v15_), static_cast<T>(v16_), static_cast<T>(v17_),\n        static_cast<T>(v18_), static_cast<T>(v19_), static_cast<T>(v20_),\n        static_cast<T>(v21_), static_cast<T>(v22_), static_cast<T>(v23_),\n        static_cast<T>(v24_), static_cast<T>(v25_), static_cast<T>(v26_),\n        static_cast<T>(v27_), static_cast<T>(v28_), static_cast<T>(v29_),\n        static_cast<T>(v30_), static_cast<T>(v31_), static_cast<T>(v32_),\n        static_cast<T>(v33_), static_cast<T>(v34_), static_cast<T>(v35_),\n        static_cast<T>(v36_), static_cast<T>(v37_), static_cast<T>(v38_),\n        static_cast<T>(v39_), static_cast<T>(v40_), static_cast<T>(v41_),\n        static_cast<T>(v42_), static_cast<T>(v43_), static_cast<T>(v44_),\n        static_cast<T>(v45_)};\n    return ValuesIn(array);\n  }\n\n private:\n  // No implementation - assignment is unsupported.\n  void operator=(const ValueArray45& other);\n\n  const T1 v1_;\n  const T2 v2_;\n  const T3 v3_;\n  const T4 v4_;\n  const T5 v5_;\n  const T6 v6_;\n  const T7 v7_;\n  const T8 v8_;\n  const T9 v9_;\n  const T10 v10_;\n  const T11 v11_;\n  const T12 v12_;\n  const T13 v13_;\n  const T14 v14_;\n  const T15 v15_;\n  const T16 v16_;\n  const T17 v17_;\n  const T18 v18_;\n  const T19 v19_;\n  const T20 v20_;\n  const T21 v21_;\n  const T22 v22_;\n  const T23 v23_;\n  const T24 v24_;\n  const T25 v25_;\n  const T26 v26_;\n  const T27 v27_;\n  const T28 v28_;\n  const T29 v29_;\n  const T30 v30_;\n  const T31 v31_;\n  const T32 v32_;\n  const T33 v33_;\n  const T34 v34_;\n  const T35 v35_;\n  const T36 v36_;\n  const T37 v37_;\n  const T38 v38_;\n  const T39 v39_;\n  const T40 v40_;\n  const T41 v41_;\n  const T42 v42_;\n  const T43 v43_;\n  const T44 v44_;\n  const T45 v45_;\n};\n\ntemplate <typename T1, typename T2, typename T3, typename T4, typename T5,\n    typename T6, typename T7, typename T8, typename T9, typename T10,\n    typename T11, typename T12, typename T13, typename T14, typename T15,\n    typename T16, typename T17, typename T18, typename T19, typename T20,\n    typename T21, typename T22, typename T23, typename T24, typename T25,\n    typename T26, typename T27, typename T28, typename T29, typename T30,\n    typename T31, typename T32, typename T33, typename T34, typename T35,\n    typename T36, typename T37, typename T38, typename T39, typename T40,\n    typename T41, typename T42, typename T43, typename T44, typename T45,\n    typename T46>\nclass ValueArray46 {\n public:\n  ValueArray46(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,\n      T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17,\n      T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25,\n      T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33,\n      T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41,\n      T42 v42, T43 v43, T44 v44, T45 v45, T46 v46) : v1_(v1), v2_(v2), v3_(v3),\n      v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10),\n      v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16),\n      v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22),\n      v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28),\n      v29_(v29), v30_(v30), v31_(v31), v32_(v32), v33_(v33), v34_(v34),\n      v35_(v35), v36_(v36), v37_(v37), v38_(v38), v39_(v39), v40_(v40),\n      v41_(v41), v42_(v42), v43_(v43), v44_(v44), v45_(v45), v46_(v46) {}\n\n  template <typename T>\n  operator ParamGenerator<T>() const {\n    const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),\n        static_cast<T>(v3_), static_cast<T>(v4_), static_cast<T>(v5_),\n        static_cast<T>(v6_), static_cast<T>(v7_), static_cast<T>(v8_),\n        static_cast<T>(v9_), static_cast<T>(v10_), static_cast<T>(v11_),\n        static_cast<T>(v12_), static_cast<T>(v13_), static_cast<T>(v14_),\n        static_cast<T>(v15_), static_cast<T>(v16_), static_cast<T>(v17_),\n        static_cast<T>(v18_), static_cast<T>(v19_), static_cast<T>(v20_),\n        static_cast<T>(v21_), static_cast<T>(v22_), static_cast<T>(v23_),\n        static_cast<T>(v24_), static_cast<T>(v25_), static_cast<T>(v26_),\n        static_cast<T>(v27_), static_cast<T>(v28_), static_cast<T>(v29_),\n        static_cast<T>(v30_), static_cast<T>(v31_), static_cast<T>(v32_),\n        static_cast<T>(v33_), static_cast<T>(v34_), static_cast<T>(v35_),\n        static_cast<T>(v36_), static_cast<T>(v37_), static_cast<T>(v38_),\n        static_cast<T>(v39_), static_cast<T>(v40_), static_cast<T>(v41_),\n        static_cast<T>(v42_), static_cast<T>(v43_), static_cast<T>(v44_),\n        static_cast<T>(v45_), static_cast<T>(v46_)};\n    return ValuesIn(array);\n  }\n\n private:\n  // No implementation - assignment is unsupported.\n  void operator=(const ValueArray46& other);\n\n  const T1 v1_;\n  const T2 v2_;\n  const T3 v3_;\n  const T4 v4_;\n  const T5 v5_;\n  const T6 v6_;\n  const T7 v7_;\n  const T8 v8_;\n  const T9 v9_;\n  const T10 v10_;\n  const T11 v11_;\n  const T12 v12_;\n  const T13 v13_;\n  const T14 v14_;\n  const T15 v15_;\n  const T16 v16_;\n  const T17 v17_;\n  const T18 v18_;\n  const T19 v19_;\n  const T20 v20_;\n  const T21 v21_;\n  const T22 v22_;\n  const T23 v23_;\n  const T24 v24_;\n  const T25 v25_;\n  const T26 v26_;\n  const T27 v27_;\n  const T28 v28_;\n  const T29 v29_;\n  const T30 v30_;\n  const T31 v31_;\n  const T32 v32_;\n  const T33 v33_;\n  const T34 v34_;\n  const T35 v35_;\n  const T36 v36_;\n  const T37 v37_;\n  const T38 v38_;\n  const T39 v39_;\n  const T40 v40_;\n  const T41 v41_;\n  const T42 v42_;\n  const T43 v43_;\n  const T44 v44_;\n  const T45 v45_;\n  const T46 v46_;\n};\n\ntemplate <typename T1, typename T2, typename T3, typename T4, typename T5,\n    typename T6, typename T7, typename T8, typename T9, typename T10,\n    typename T11, typename T12, typename T13, typename T14, typename T15,\n    typename T16, typename T17, typename T18, typename T19, typename T20,\n    typename T21, typename T22, typename T23, typename T24, typename T25,\n    typename T26, typename T27, typename T28, typename T29, typename T30,\n    typename T31, typename T32, typename T33, typename T34, typename T35,\n    typename T36, typename T37, typename T38, typename T39, typename T40,\n    typename T41, typename T42, typename T43, typename T44, typename T45,\n    typename T46, typename T47>\nclass ValueArray47 {\n public:\n  ValueArray47(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,\n      T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17,\n      T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25,\n      T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33,\n      T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41,\n      T42 v42, T43 v43, T44 v44, T45 v45, T46 v46, T47 v47) : v1_(v1), v2_(v2),\n      v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10),\n      v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16),\n      v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22),\n      v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28),\n      v29_(v29), v30_(v30), v31_(v31), v32_(v32), v33_(v33), v34_(v34),\n      v35_(v35), v36_(v36), v37_(v37), v38_(v38), v39_(v39), v40_(v40),\n      v41_(v41), v42_(v42), v43_(v43), v44_(v44), v45_(v45), v46_(v46),\n      v47_(v47) {}\n\n  template <typename T>\n  operator ParamGenerator<T>() const {\n    const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),\n        static_cast<T>(v3_), static_cast<T>(v4_), static_cast<T>(v5_),\n        static_cast<T>(v6_), static_cast<T>(v7_), static_cast<T>(v8_),\n        static_cast<T>(v9_), static_cast<T>(v10_), static_cast<T>(v11_),\n        static_cast<T>(v12_), static_cast<T>(v13_), static_cast<T>(v14_),\n        static_cast<T>(v15_), static_cast<T>(v16_), static_cast<T>(v17_),\n        static_cast<T>(v18_), static_cast<T>(v19_), static_cast<T>(v20_),\n        static_cast<T>(v21_), static_cast<T>(v22_), static_cast<T>(v23_),\n        static_cast<T>(v24_), static_cast<T>(v25_), static_cast<T>(v26_),\n        static_cast<T>(v27_), static_cast<T>(v28_), static_cast<T>(v29_),\n        static_cast<T>(v30_), static_cast<T>(v31_), static_cast<T>(v32_),\n        static_cast<T>(v33_), static_cast<T>(v34_), static_cast<T>(v35_),\n        static_cast<T>(v36_), static_cast<T>(v37_), static_cast<T>(v38_),\n        static_cast<T>(v39_), static_cast<T>(v40_), static_cast<T>(v41_),\n        static_cast<T>(v42_), static_cast<T>(v43_), static_cast<T>(v44_),\n        static_cast<T>(v45_), static_cast<T>(v46_), static_cast<T>(v47_)};\n    return ValuesIn(array);\n  }\n\n private:\n  // No implementation - assignment is unsupported.\n  void operator=(const ValueArray47& other);\n\n  const T1 v1_;\n  const T2 v2_;\n  const T3 v3_;\n  const T4 v4_;\n  const T5 v5_;\n  const T6 v6_;\n  const T7 v7_;\n  const T8 v8_;\n  const T9 v9_;\n  const T10 v10_;\n  const T11 v11_;\n  const T12 v12_;\n  const T13 v13_;\n  const T14 v14_;\n  const T15 v15_;\n  const T16 v16_;\n  const T17 v17_;\n  const T18 v18_;\n  const T19 v19_;\n  const T20 v20_;\n  const T21 v21_;\n  const T22 v22_;\n  const T23 v23_;\n  const T24 v24_;\n  const T25 v25_;\n  const T26 v26_;\n  const T27 v27_;\n  const T28 v28_;\n  const T29 v29_;\n  const T30 v30_;\n  const T31 v31_;\n  const T32 v32_;\n  const T33 v33_;\n  const T34 v34_;\n  const T35 v35_;\n  const T36 v36_;\n  const T37 v37_;\n  const T38 v38_;\n  const T39 v39_;\n  const T40 v40_;\n  const T41 v41_;\n  const T42 v42_;\n  const T43 v43_;\n  const T44 v44_;\n  const T45 v45_;\n  const T46 v46_;\n  const T47 v47_;\n};\n\ntemplate <typename T1, typename T2, typename T3, typename T4, typename T5,\n    typename T6, typename T7, typename T8, typename T9, typename T10,\n    typename T11, typename T12, typename T13, typename T14, typename T15,\n    typename T16, typename T17, typename T18, typename T19, typename T20,\n    typename T21, typename T22, typename T23, typename T24, typename T25,\n    typename T26, typename T27, typename T28, typename T29, typename T30,\n    typename T31, typename T32, typename T33, typename T34, typename T35,\n    typename T36, typename T37, typename T38, typename T39, typename T40,\n    typename T41, typename T42, typename T43, typename T44, typename T45,\n    typename T46, typename T47, typename T48>\nclass ValueArray48 {\n public:\n  ValueArray48(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,\n      T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17,\n      T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25,\n      T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33,\n      T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41,\n      T42 v42, T43 v43, T44 v44, T45 v45, T46 v46, T47 v47, T48 v48) : v1_(v1),\n      v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9),\n      v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15),\n      v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21),\n      v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27),\n      v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32), v33_(v33),\n      v34_(v34), v35_(v35), v36_(v36), v37_(v37), v38_(v38), v39_(v39),\n      v40_(v40), v41_(v41), v42_(v42), v43_(v43), v44_(v44), v45_(v45),\n      v46_(v46), v47_(v47), v48_(v48) {}\n\n  template <typename T>\n  operator ParamGenerator<T>() const {\n    const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),\n        static_cast<T>(v3_), static_cast<T>(v4_), static_cast<T>(v5_),\n        static_cast<T>(v6_), static_cast<T>(v7_), static_cast<T>(v8_),\n        static_cast<T>(v9_), static_cast<T>(v10_), static_cast<T>(v11_),\n        static_cast<T>(v12_), static_cast<T>(v13_), static_cast<T>(v14_),\n        static_cast<T>(v15_), static_cast<T>(v16_), static_cast<T>(v17_),\n        static_cast<T>(v18_), static_cast<T>(v19_), static_cast<T>(v20_),\n        static_cast<T>(v21_), static_cast<T>(v22_), static_cast<T>(v23_),\n        static_cast<T>(v24_), static_cast<T>(v25_), static_cast<T>(v26_),\n        static_cast<T>(v27_), static_cast<T>(v28_), static_cast<T>(v29_),\n        static_cast<T>(v30_), static_cast<T>(v31_), static_cast<T>(v32_),\n        static_cast<T>(v33_), static_cast<T>(v34_), static_cast<T>(v35_),\n        static_cast<T>(v36_), static_cast<T>(v37_), static_cast<T>(v38_),\n        static_cast<T>(v39_), static_cast<T>(v40_), static_cast<T>(v41_),\n        static_cast<T>(v42_), static_cast<T>(v43_), static_cast<T>(v44_),\n        static_cast<T>(v45_), static_cast<T>(v46_), static_cast<T>(v47_),\n        static_cast<T>(v48_)};\n    return ValuesIn(array);\n  }\n\n private:\n  // No implementation - assignment is unsupported.\n  void operator=(const ValueArray48& other);\n\n  const T1 v1_;\n  const T2 v2_;\n  const T3 v3_;\n  const T4 v4_;\n  const T5 v5_;\n  const T6 v6_;\n  const T7 v7_;\n  const T8 v8_;\n  const T9 v9_;\n  const T10 v10_;\n  const T11 v11_;\n  const T12 v12_;\n  const T13 v13_;\n  const T14 v14_;\n  const T15 v15_;\n  const T16 v16_;\n  const T17 v17_;\n  const T18 v18_;\n  const T19 v19_;\n  const T20 v20_;\n  const T21 v21_;\n  const T22 v22_;\n  const T23 v23_;\n  const T24 v24_;\n  const T25 v25_;\n  const T26 v26_;\n  const T27 v27_;\n  const T28 v28_;\n  const T29 v29_;\n  const T30 v30_;\n  const T31 v31_;\n  const T32 v32_;\n  const T33 v33_;\n  const T34 v34_;\n  const T35 v35_;\n  const T36 v36_;\n  const T37 v37_;\n  const T38 v38_;\n  const T39 v39_;\n  const T40 v40_;\n  const T41 v41_;\n  const T42 v42_;\n  const T43 v43_;\n  const T44 v44_;\n  const T45 v45_;\n  const T46 v46_;\n  const T47 v47_;\n  const T48 v48_;\n};\n\ntemplate <typename T1, typename T2, typename T3, typename T4, typename T5,\n    typename T6, typename T7, typename T8, typename T9, typename T10,\n    typename T11, typename T12, typename T13, typename T14, typename T15,\n    typename T16, typename T17, typename T18, typename T19, typename T20,\n    typename T21, typename T22, typename T23, typename T24, typename T25,\n    typename T26, typename T27, typename T28, typename T29, typename T30,\n    typename T31, typename T32, typename T33, typename T34, typename T35,\n    typename T36, typename T37, typename T38, typename T39, typename T40,\n    typename T41, typename T42, typename T43, typename T44, typename T45,\n    typename T46, typename T47, typename T48, typename T49>\nclass ValueArray49 {\n public:\n  ValueArray49(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,\n      T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17,\n      T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25,\n      T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33,\n      T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41,\n      T42 v42, T43 v43, T44 v44, T45 v45, T46 v46, T47 v47, T48 v48,\n      T49 v49) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7),\n      v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14),\n      v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20),\n      v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26),\n      v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32),\n      v33_(v33), v34_(v34), v35_(v35), v36_(v36), v37_(v37), v38_(v38),\n      v39_(v39), v40_(v40), v41_(v41), v42_(v42), v43_(v43), v44_(v44),\n      v45_(v45), v46_(v46), v47_(v47), v48_(v48), v49_(v49) {}\n\n  template <typename T>\n  operator ParamGenerator<T>() const {\n    const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),\n        static_cast<T>(v3_), static_cast<T>(v4_), static_cast<T>(v5_),\n        static_cast<T>(v6_), static_cast<T>(v7_), static_cast<T>(v8_),\n        static_cast<T>(v9_), static_cast<T>(v10_), static_cast<T>(v11_),\n        static_cast<T>(v12_), static_cast<T>(v13_), static_cast<T>(v14_),\n        static_cast<T>(v15_), static_cast<T>(v16_), static_cast<T>(v17_),\n        static_cast<T>(v18_), static_cast<T>(v19_), static_cast<T>(v20_),\n        static_cast<T>(v21_), static_cast<T>(v22_), static_cast<T>(v23_),\n        static_cast<T>(v24_), static_cast<T>(v25_), static_cast<T>(v26_),\n        static_cast<T>(v27_), static_cast<T>(v28_), static_cast<T>(v29_),\n        static_cast<T>(v30_), static_cast<T>(v31_), static_cast<T>(v32_),\n        static_cast<T>(v33_), static_cast<T>(v34_), static_cast<T>(v35_),\n        static_cast<T>(v36_), static_cast<T>(v37_), static_cast<T>(v38_),\n        static_cast<T>(v39_), static_cast<T>(v40_), static_cast<T>(v41_),\n        static_cast<T>(v42_), static_cast<T>(v43_), static_cast<T>(v44_),\n        static_cast<T>(v45_), static_cast<T>(v46_), static_cast<T>(v47_),\n        static_cast<T>(v48_), static_cast<T>(v49_)};\n    return ValuesIn(array);\n  }\n\n private:\n  // No implementation - assignment is unsupported.\n  void operator=(const ValueArray49& other);\n\n  const T1 v1_;\n  const T2 v2_;\n  const T3 v3_;\n  const T4 v4_;\n  const T5 v5_;\n  const T6 v6_;\n  const T7 v7_;\n  const T8 v8_;\n  const T9 v9_;\n  const T10 v10_;\n  const T11 v11_;\n  const T12 v12_;\n  const T13 v13_;\n  const T14 v14_;\n  const T15 v15_;\n  const T16 v16_;\n  const T17 v17_;\n  const T18 v18_;\n  const T19 v19_;\n  const T20 v20_;\n  const T21 v21_;\n  const T22 v22_;\n  const T23 v23_;\n  const T24 v24_;\n  const T25 v25_;\n  const T26 v26_;\n  const T27 v27_;\n  const T28 v28_;\n  const T29 v29_;\n  const T30 v30_;\n  const T31 v31_;\n  const T32 v32_;\n  const T33 v33_;\n  const T34 v34_;\n  const T35 v35_;\n  const T36 v36_;\n  const T37 v37_;\n  const T38 v38_;\n  const T39 v39_;\n  const T40 v40_;\n  const T41 v41_;\n  const T42 v42_;\n  const T43 v43_;\n  const T44 v44_;\n  const T45 v45_;\n  const T46 v46_;\n  const T47 v47_;\n  const T48 v48_;\n  const T49 v49_;\n};\n\ntemplate <typename T1, typename T2, typename T3, typename T4, typename T5,\n    typename T6, typename T7, typename T8, typename T9, typename T10,\n    typename T11, typename T12, typename T13, typename T14, typename T15,\n    typename T16, typename T17, typename T18, typename T19, typename T20,\n    typename T21, typename T22, typename T23, typename T24, typename T25,\n    typename T26, typename T27, typename T28, typename T29, typename T30,\n    typename T31, typename T32, typename T33, typename T34, typename T35,\n    typename T36, typename T37, typename T38, typename T39, typename T40,\n    typename T41, typename T42, typename T43, typename T44, typename T45,\n    typename T46, typename T47, typename T48, typename T49, typename T50>\nclass ValueArray50 {\n public:\n  ValueArray50(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,\n      T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17,\n      T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25,\n      T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33,\n      T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41,\n      T42 v42, T43 v43, T44 v44, T45 v45, T46 v46, T47 v47, T48 v48, T49 v49,\n      T50 v50) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7),\n      v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14),\n      v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20),\n      v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26),\n      v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32),\n      v33_(v33), v34_(v34), v35_(v35), v36_(v36), v37_(v37), v38_(v38),\n      v39_(v39), v40_(v40), v41_(v41), v42_(v42), v43_(v43), v44_(v44),\n      v45_(v45), v46_(v46), v47_(v47), v48_(v48), v49_(v49), v50_(v50) {}\n\n  template <typename T>\n  operator ParamGenerator<T>() const {\n    const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),\n        static_cast<T>(v3_), static_cast<T>(v4_), static_cast<T>(v5_),\n        static_cast<T>(v6_), static_cast<T>(v7_), static_cast<T>(v8_),\n        static_cast<T>(v9_), static_cast<T>(v10_), static_cast<T>(v11_),\n        static_cast<T>(v12_), static_cast<T>(v13_), static_cast<T>(v14_),\n        static_cast<T>(v15_), static_cast<T>(v16_), static_cast<T>(v17_),\n        static_cast<T>(v18_), static_cast<T>(v19_), static_cast<T>(v20_),\n        static_cast<T>(v21_), static_cast<T>(v22_), static_cast<T>(v23_),\n        static_cast<T>(v24_), static_cast<T>(v25_), static_cast<T>(v26_),\n        static_cast<T>(v27_), static_cast<T>(v28_), static_cast<T>(v29_),\n        static_cast<T>(v30_), static_cast<T>(v31_), static_cast<T>(v32_),\n        static_cast<T>(v33_), static_cast<T>(v34_), static_cast<T>(v35_),\n        static_cast<T>(v36_), static_cast<T>(v37_), static_cast<T>(v38_),\n        static_cast<T>(v39_), static_cast<T>(v40_), static_cast<T>(v41_),\n        static_cast<T>(v42_), static_cast<T>(v43_), static_cast<T>(v44_),\n        static_cast<T>(v45_), static_cast<T>(v46_), static_cast<T>(v47_),\n        static_cast<T>(v48_), static_cast<T>(v49_), static_cast<T>(v50_)};\n    return ValuesIn(array);\n  }\n\n private:\n  // No implementation - assignment is unsupported.\n  void operator=(const ValueArray50& other);\n\n  const T1 v1_;\n  const T2 v2_;\n  const T3 v3_;\n  const T4 v4_;\n  const T5 v5_;\n  const T6 v6_;\n  const T7 v7_;\n  const T8 v8_;\n  const T9 v9_;\n  const T10 v10_;\n  const T11 v11_;\n  const T12 v12_;\n  const T13 v13_;\n  const T14 v14_;\n  const T15 v15_;\n  const T16 v16_;\n  const T17 v17_;\n  const T18 v18_;\n  const T19 v19_;\n  const T20 v20_;\n  const T21 v21_;\n  const T22 v22_;\n  const T23 v23_;\n  const T24 v24_;\n  const T25 v25_;\n  const T26 v26_;\n  const T27 v27_;\n  const T28 v28_;\n  const T29 v29_;\n  const T30 v30_;\n  const T31 v31_;\n  const T32 v32_;\n  const T33 v33_;\n  const T34 v34_;\n  const T35 v35_;\n  const T36 v36_;\n  const T37 v37_;\n  const T38 v38_;\n  const T39 v39_;\n  const T40 v40_;\n  const T41 v41_;\n  const T42 v42_;\n  const T43 v43_;\n  const T44 v44_;\n  const T45 v45_;\n  const T46 v46_;\n  const T47 v47_;\n  const T48 v48_;\n  const T49 v49_;\n  const T50 v50_;\n};\n\n# if GTEST_HAS_COMBINE\n// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE.\n//\n// Generates values from the Cartesian product of values produced\n// by the argument generators.\n//\ntemplate <typename T1, typename T2>\nclass CartesianProductGenerator2\n    : public ParamGeneratorInterface< ::testing::tuple<T1, T2> > {\n public:\n  typedef ::testing::tuple<T1, T2> ParamType;\n\n  CartesianProductGenerator2(const ParamGenerator<T1>& g1,\n      const ParamGenerator<T2>& g2)\n      : g1_(g1), g2_(g2) {}\n  virtual ~CartesianProductGenerator2() {}\n\n  virtual ParamIteratorInterface<ParamType>* Begin() const {\n    return new Iterator(this, g1_, g1_.begin(), g2_, g2_.begin());\n  }\n  virtual ParamIteratorInterface<ParamType>* End() const {\n    return new Iterator(this, g1_, g1_.end(), g2_, g2_.end());\n  }\n\n private:\n  class Iterator : public ParamIteratorInterface<ParamType> {\n   public:\n    Iterator(const ParamGeneratorInterface<ParamType>* base,\n      const ParamGenerator<T1>& g1,\n      const typename ParamGenerator<T1>::iterator& current1,\n      const ParamGenerator<T2>& g2,\n      const typename ParamGenerator<T2>::iterator& current2)\n        : base_(base),\n          begin1_(g1.begin()), end1_(g1.end()), current1_(current1),\n          begin2_(g2.begin()), end2_(g2.end()), current2_(current2)    {\n      ComputeCurrentValue();\n    }\n    virtual ~Iterator() {}\n\n    virtual const ParamGeneratorInterface<ParamType>* BaseGenerator() const {\n      return base_;\n    }\n    // Advance should not be called on beyond-of-range iterators\n    // so no component iterators must be beyond end of range, either.\n    virtual void Advance() {\n      assert(!AtEnd());\n      ++current2_;\n      if (current2_ == end2_) {\n        current2_ = begin2_;\n        ++current1_;\n      }\n      ComputeCurrentValue();\n    }\n    virtual ParamIteratorInterface<ParamType>* Clone() const {\n      return new Iterator(*this);\n    }\n    virtual const ParamType* Current() const { return &current_value_; }\n    virtual bool Equals(const ParamIteratorInterface<ParamType>& other) const {\n      // Having the same base generator guarantees that the other\n      // iterator is of the same type and we can downcast.\n      GTEST_CHECK_(BaseGenerator() == other.BaseGenerator())\n          << \"The program attempted to compare iterators \"\n          << \"from different generators.\" << std::endl;\n      const Iterator* typed_other =\n          CheckedDowncastToActualType<const Iterator>(&other);\n      // We must report iterators equal if they both point beyond their\n      // respective ranges. That can happen in a variety of fashions,\n      // so we have to consult AtEnd().\n      return (AtEnd() && typed_other->AtEnd()) ||\n         (\n          current1_ == typed_other->current1_ &&\n          current2_ == typed_other->current2_);\n    }\n\n   private:\n    Iterator(const Iterator& other)\n        : base_(other.base_),\n        begin1_(other.begin1_),\n        end1_(other.end1_),\n        current1_(other.current1_),\n        begin2_(other.begin2_),\n        end2_(other.end2_),\n        current2_(other.current2_) {\n      ComputeCurrentValue();\n    }\n\n    void ComputeCurrentValue() {\n      if (!AtEnd())\n        current_value_ = ParamType(*current1_, *current2_);\n    }\n    bool AtEnd() const {\n      // We must report iterator past the end of the range when either of the\n      // component iterators has reached the end of its range.\n      return\n          current1_ == end1_ ||\n          current2_ == end2_;\n    }\n\n    // No implementation - assignment is unsupported.\n    void operator=(const Iterator& other);\n\n    const ParamGeneratorInterface<ParamType>* const base_;\n    // begin[i]_ and end[i]_ define the i-th range that Iterator traverses.\n    // current[i]_ is the actual traversing iterator.\n    const typename ParamGenerator<T1>::iterator begin1_;\n    const typename ParamGenerator<T1>::iterator end1_;\n    typename ParamGenerator<T1>::iterator current1_;\n    const typename ParamGenerator<T2>::iterator begin2_;\n    const typename ParamGenerator<T2>::iterator end2_;\n    typename ParamGenerator<T2>::iterator current2_;\n    ParamType current_value_;\n  };  // class CartesianProductGenerator2::Iterator\n\n  // No implementation - assignment is unsupported.\n  void operator=(const CartesianProductGenerator2& other);\n\n  const ParamGenerator<T1> g1_;\n  const ParamGenerator<T2> g2_;\n};  // class CartesianProductGenerator2\n\n\ntemplate <typename T1, typename T2, typename T3>\nclass CartesianProductGenerator3\n    : public ParamGeneratorInterface< ::testing::tuple<T1, T2, T3> > {\n public:\n  typedef ::testing::tuple<T1, T2, T3> ParamType;\n\n  CartesianProductGenerator3(const ParamGenerator<T1>& g1,\n      const ParamGenerator<T2>& g2, const ParamGenerator<T3>& g3)\n      : g1_(g1), g2_(g2), g3_(g3) {}\n  virtual ~CartesianProductGenerator3() {}\n\n  virtual ParamIteratorInterface<ParamType>* Begin() const {\n    return new Iterator(this, g1_, g1_.begin(), g2_, g2_.begin(), g3_,\n        g3_.begin());\n  }\n  virtual ParamIteratorInterface<ParamType>* End() const {\n    return new Iterator(this, g1_, g1_.end(), g2_, g2_.end(), g3_, g3_.end());\n  }\n\n private:\n  class Iterator : public ParamIteratorInterface<ParamType> {\n   public:\n    Iterator(const ParamGeneratorInterface<ParamType>* base,\n      const ParamGenerator<T1>& g1,\n      const typename ParamGenerator<T1>::iterator& current1,\n      const ParamGenerator<T2>& g2,\n      const typename ParamGenerator<T2>::iterator& current2,\n      const ParamGenerator<T3>& g3,\n      const typename ParamGenerator<T3>::iterator& current3)\n        : base_(base),\n          begin1_(g1.begin()), end1_(g1.end()), current1_(current1),\n          begin2_(g2.begin()), end2_(g2.end()), current2_(current2),\n          begin3_(g3.begin()), end3_(g3.end()), current3_(current3)    {\n      ComputeCurrentValue();\n    }\n    virtual ~Iterator() {}\n\n    virtual const ParamGeneratorInterface<ParamType>* BaseGenerator() const {\n      return base_;\n    }\n    // Advance should not be called on beyond-of-range iterators\n    // so no component iterators must be beyond end of range, either.\n    virtual void Advance() {\n      assert(!AtEnd());\n      ++current3_;\n      if (current3_ == end3_) {\n        current3_ = begin3_;\n        ++current2_;\n      }\n      if (current2_ == end2_) {\n        current2_ = begin2_;\n        ++current1_;\n      }\n      ComputeCurrentValue();\n    }\n    virtual ParamIteratorInterface<ParamType>* Clone() const {\n      return new Iterator(*this);\n    }\n    virtual const ParamType* Current() const { return &current_value_; }\n    virtual bool Equals(const ParamIteratorInterface<ParamType>& other) const {\n      // Having the same base generator guarantees that the other\n      // iterator is of the same type and we can downcast.\n      GTEST_CHECK_(BaseGenerator() == other.BaseGenerator())\n          << \"The program attempted to compare iterators \"\n          << \"from different generators.\" << std::endl;\n      const Iterator* typed_other =\n          CheckedDowncastToActualType<const Iterator>(&other);\n      // We must report iterators equal if they both point beyond their\n      // respective ranges. That can happen in a variety of fashions,\n      // so we have to consult AtEnd().\n      return (AtEnd() && typed_other->AtEnd()) ||\n         (\n          current1_ == typed_other->current1_ &&\n          current2_ == typed_other->current2_ &&\n          current3_ == typed_other->current3_);\n    }\n\n   private:\n    Iterator(const Iterator& other)\n        : base_(other.base_),\n        begin1_(other.begin1_),\n        end1_(other.end1_),\n        current1_(other.current1_),\n        begin2_(other.begin2_),\n        end2_(other.end2_),\n        current2_(other.current2_),\n        begin3_(other.begin3_),\n        end3_(other.end3_),\n        current3_(other.current3_) {\n      ComputeCurrentValue();\n    }\n\n    void ComputeCurrentValue() {\n      if (!AtEnd())\n        current_value_ = ParamType(*current1_, *current2_, *current3_);\n    }\n    bool AtEnd() const {\n      // We must report iterator past the end of the range when either of the\n      // component iterators has reached the end of its range.\n      return\n          current1_ == end1_ ||\n          current2_ == end2_ ||\n          current3_ == end3_;\n    }\n\n    // No implementation - assignment is unsupported.\n    void operator=(const Iterator& other);\n\n    const ParamGeneratorInterface<ParamType>* const base_;\n    // begin[i]_ and end[i]_ define the i-th range that Iterator traverses.\n    // current[i]_ is the actual traversing iterator.\n    const typename ParamGenerator<T1>::iterator begin1_;\n    const typename ParamGenerator<T1>::iterator end1_;\n    typename ParamGenerator<T1>::iterator current1_;\n    const typename ParamGenerator<T2>::iterator begin2_;\n    const typename ParamGenerator<T2>::iterator end2_;\n    typename ParamGenerator<T2>::iterator current2_;\n    const typename ParamGenerator<T3>::iterator begin3_;\n    const typename ParamGenerator<T3>::iterator end3_;\n    typename ParamGenerator<T3>::iterator current3_;\n    ParamType current_value_;\n  };  // class CartesianProductGenerator3::Iterator\n\n  // No implementation - assignment is unsupported.\n  void operator=(const CartesianProductGenerator3& other);\n\n  const ParamGenerator<T1> g1_;\n  const ParamGenerator<T2> g2_;\n  const ParamGenerator<T3> g3_;\n};  // class CartesianProductGenerator3\n\n\ntemplate <typename T1, typename T2, typename T3, typename T4>\nclass CartesianProductGenerator4\n    : public ParamGeneratorInterface< ::testing::tuple<T1, T2, T3, T4> > {\n public:\n  typedef ::testing::tuple<T1, T2, T3, T4> ParamType;\n\n  CartesianProductGenerator4(const ParamGenerator<T1>& g1,\n      const ParamGenerator<T2>& g2, const ParamGenerator<T3>& g3,\n      const ParamGenerator<T4>& g4)\n      : g1_(g1), g2_(g2), g3_(g3), g4_(g4) {}\n  virtual ~CartesianProductGenerator4() {}\n\n  virtual ParamIteratorInterface<ParamType>* Begin() const {\n    return new Iterator(this, g1_, g1_.begin(), g2_, g2_.begin(), g3_,\n        g3_.begin(), g4_, g4_.begin());\n  }\n  virtual ParamIteratorInterface<ParamType>* End() const {\n    return new Iterator(this, g1_, g1_.end(), g2_, g2_.end(), g3_, g3_.end(),\n        g4_, g4_.end());\n  }\n\n private:\n  class Iterator : public ParamIteratorInterface<ParamType> {\n   public:\n    Iterator(const ParamGeneratorInterface<ParamType>* base,\n      const ParamGenerator<T1>& g1,\n      const typename ParamGenerator<T1>::iterator& current1,\n      const ParamGenerator<T2>& g2,\n      const typename ParamGenerator<T2>::iterator& current2,\n      const ParamGenerator<T3>& g3,\n      const typename ParamGenerator<T3>::iterator& current3,\n      const ParamGenerator<T4>& g4,\n      const typename ParamGenerator<T4>::iterator& current4)\n        : base_(base),\n          begin1_(g1.begin()), end1_(g1.end()), current1_(current1),\n          begin2_(g2.begin()), end2_(g2.end()), current2_(current2),\n          begin3_(g3.begin()), end3_(g3.end()), current3_(current3),\n          begin4_(g4.begin()), end4_(g4.end()), current4_(current4)    {\n      ComputeCurrentValue();\n    }\n    virtual ~Iterator() {}\n\n    virtual const ParamGeneratorInterface<ParamType>* BaseGenerator() const {\n      return base_;\n    }\n    // Advance should not be called on beyond-of-range iterators\n    // so no component iterators must be beyond end of range, either.\n    virtual void Advance() {\n      assert(!AtEnd());\n      ++current4_;\n      if (current4_ == end4_) {\n        current4_ = begin4_;\n        ++current3_;\n      }\n      if (current3_ == end3_) {\n        current3_ = begin3_;\n        ++current2_;\n      }\n      if (current2_ == end2_) {\n        current2_ = begin2_;\n        ++current1_;\n      }\n      ComputeCurrentValue();\n    }\n    virtual ParamIteratorInterface<ParamType>* Clone() const {\n      return new Iterator(*this);\n    }\n    virtual const ParamType* Current() const { return &current_value_; }\n    virtual bool Equals(const ParamIteratorInterface<ParamType>& other) const {\n      // Having the same base generator guarantees that the other\n      // iterator is of the same type and we can downcast.\n      GTEST_CHECK_(BaseGenerator() == other.BaseGenerator())\n          << \"The program attempted to compare iterators \"\n          << \"from different generators.\" << std::endl;\n      const Iterator* typed_other =\n          CheckedDowncastToActualType<const Iterator>(&other);\n      // We must report iterators equal if they both point beyond their\n      // respective ranges. That can happen in a variety of fashions,\n      // so we have to consult AtEnd().\n      return (AtEnd() && typed_other->AtEnd()) ||\n         (\n          current1_ == typed_other->current1_ &&\n          current2_ == typed_other->current2_ &&\n          current3_ == typed_other->current3_ &&\n          current4_ == typed_other->current4_);\n    }\n\n   private:\n    Iterator(const Iterator& other)\n        : base_(other.base_),\n        begin1_(other.begin1_),\n        end1_(other.end1_),\n        current1_(other.current1_),\n        begin2_(other.begin2_),\n        end2_(other.end2_),\n        current2_(other.current2_),\n        begin3_(other.begin3_),\n        end3_(other.end3_),\n        current3_(other.current3_),\n        begin4_(other.begin4_),\n        end4_(other.end4_),\n        current4_(other.current4_) {\n      ComputeCurrentValue();\n    }\n\n    void ComputeCurrentValue() {\n      if (!AtEnd())\n        current_value_ = ParamType(*current1_, *current2_, *current3_,\n            *current4_);\n    }\n    bool AtEnd() const {\n      // We must report iterator past the end of the range when either of the\n      // component iterators has reached the end of its range.\n      return\n          current1_ == end1_ ||\n          current2_ == end2_ ||\n          current3_ == end3_ ||\n          current4_ == end4_;\n    }\n\n    // No implementation - assignment is unsupported.\n    void operator=(const Iterator& other);\n\n    const ParamGeneratorInterface<ParamType>* const base_;\n    // begin[i]_ and end[i]_ define the i-th range that Iterator traverses.\n    // current[i]_ is the actual traversing iterator.\n    const typename ParamGenerator<T1>::iterator begin1_;\n    const typename ParamGenerator<T1>::iterator end1_;\n    typename ParamGenerator<T1>::iterator current1_;\n    const typename ParamGenerator<T2>::iterator begin2_;\n    const typename ParamGenerator<T2>::iterator end2_;\n    typename ParamGenerator<T2>::iterator current2_;\n    const typename ParamGenerator<T3>::iterator begin3_;\n    const typename ParamGenerator<T3>::iterator end3_;\n    typename ParamGenerator<T3>::iterator current3_;\n    const typename ParamGenerator<T4>::iterator begin4_;\n    const typename ParamGenerator<T4>::iterator end4_;\n    typename ParamGenerator<T4>::iterator current4_;\n    ParamType current_value_;\n  };  // class CartesianProductGenerator4::Iterator\n\n  // No implementation - assignment is unsupported.\n  void operator=(const CartesianProductGenerator4& other);\n\n  const ParamGenerator<T1> g1_;\n  const ParamGenerator<T2> g2_;\n  const ParamGenerator<T3> g3_;\n  const ParamGenerator<T4> g4_;\n};  // class CartesianProductGenerator4\n\n\ntemplate <typename T1, typename T2, typename T3, typename T4, typename T5>\nclass CartesianProductGenerator5\n    : public ParamGeneratorInterface< ::testing::tuple<T1, T2, T3, T4, T5> > {\n public:\n  typedef ::testing::tuple<T1, T2, T3, T4, T5> ParamType;\n\n  CartesianProductGenerator5(const ParamGenerator<T1>& g1,\n      const ParamGenerator<T2>& g2, const ParamGenerator<T3>& g3,\n      const ParamGenerator<T4>& g4, const ParamGenerator<T5>& g5)\n      : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5) {}\n  virtual ~CartesianProductGenerator5() {}\n\n  virtual ParamIteratorInterface<ParamType>* Begin() const {\n    return new Iterator(this, g1_, g1_.begin(), g2_, g2_.begin(), g3_,\n        g3_.begin(), g4_, g4_.begin(), g5_, g5_.begin());\n  }\n  virtual ParamIteratorInterface<ParamType>* End() const {\n    return new Iterator(this, g1_, g1_.end(), g2_, g2_.end(), g3_, g3_.end(),\n        g4_, g4_.end(), g5_, g5_.end());\n  }\n\n private:\n  class Iterator : public ParamIteratorInterface<ParamType> {\n   public:\n    Iterator(const ParamGeneratorInterface<ParamType>* base,\n      const ParamGenerator<T1>& g1,\n      const typename ParamGenerator<T1>::iterator& current1,\n      const ParamGenerator<T2>& g2,\n      const typename ParamGenerator<T2>::iterator& current2,\n      const ParamGenerator<T3>& g3,\n      const typename ParamGenerator<T3>::iterator& current3,\n      const ParamGenerator<T4>& g4,\n      const typename ParamGenerator<T4>::iterator& current4,\n      const ParamGenerator<T5>& g5,\n      const typename ParamGenerator<T5>::iterator& current5)\n        : base_(base),\n          begin1_(g1.begin()), end1_(g1.end()), current1_(current1),\n          begin2_(g2.begin()), end2_(g2.end()), current2_(current2),\n          begin3_(g3.begin()), end3_(g3.end()), current3_(current3),\n          begin4_(g4.begin()), end4_(g4.end()), current4_(current4),\n          begin5_(g5.begin()), end5_(g5.end()), current5_(current5)    {\n      ComputeCurrentValue();\n    }\n    virtual ~Iterator() {}\n\n    virtual const ParamGeneratorInterface<ParamType>* BaseGenerator() const {\n      return base_;\n    }\n    // Advance should not be called on beyond-of-range iterators\n    // so no component iterators must be beyond end of range, either.\n    virtual void Advance() {\n      assert(!AtEnd());\n      ++current5_;\n      if (current5_ == end5_) {\n        current5_ = begin5_;\n        ++current4_;\n      }\n      if (current4_ == end4_) {\n        current4_ = begin4_;\n        ++current3_;\n      }\n      if (current3_ == end3_) {\n        current3_ = begin3_;\n        ++current2_;\n      }\n      if (current2_ == end2_) {\n        current2_ = begin2_;\n        ++current1_;\n      }\n      ComputeCurrentValue();\n    }\n    virtual ParamIteratorInterface<ParamType>* Clone() const {\n      return new Iterator(*this);\n    }\n    virtual const ParamType* Current() const { return &current_value_; }\n    virtual bool Equals(const ParamIteratorInterface<ParamType>& other) const {\n      // Having the same base generator guarantees that the other\n      // iterator is of the same type and we can downcast.\n      GTEST_CHECK_(BaseGenerator() == other.BaseGenerator())\n          << \"The program attempted to compare iterators \"\n          << \"from different generators.\" << std::endl;\n      const Iterator* typed_other =\n          CheckedDowncastToActualType<const Iterator>(&other);\n      // We must report iterators equal if they both point beyond their\n      // respective ranges. That can happen in a variety of fashions,\n      // so we have to consult AtEnd().\n      return (AtEnd() && typed_other->AtEnd()) ||\n         (\n          current1_ == typed_other->current1_ &&\n          current2_ == typed_other->current2_ &&\n          current3_ == typed_other->current3_ &&\n          current4_ == typed_other->current4_ &&\n          current5_ == typed_other->current5_);\n    }\n\n   private:\n    Iterator(const Iterator& other)\n        : base_(other.base_),\n        begin1_(other.begin1_),\n        end1_(other.end1_),\n        current1_(other.current1_),\n        begin2_(other.begin2_),\n        end2_(other.end2_),\n        current2_(other.current2_),\n        begin3_(other.begin3_),\n        end3_(other.end3_),\n        current3_(other.current3_),\n        begin4_(other.begin4_),\n        end4_(other.end4_),\n        current4_(other.current4_),\n        begin5_(other.begin5_),\n        end5_(other.end5_),\n        current5_(other.current5_) {\n      ComputeCurrentValue();\n    }\n\n    void ComputeCurrentValue() {\n      if (!AtEnd())\n        current_value_ = ParamType(*current1_, *current2_, *current3_,\n            *current4_, *current5_);\n    }\n    bool AtEnd() const {\n      // We must report iterator past the end of the range when either of the\n      // component iterators has reached the end of its range.\n      return\n          current1_ == end1_ ||\n          current2_ == end2_ ||\n          current3_ == end3_ ||\n          current4_ == end4_ ||\n          current5_ == end5_;\n    }\n\n    // No implementation - assignment is unsupported.\n    void operator=(const Iterator& other);\n\n    const ParamGeneratorInterface<ParamType>* const base_;\n    // begin[i]_ and end[i]_ define the i-th range that Iterator traverses.\n    // current[i]_ is the actual traversing iterator.\n    const typename ParamGenerator<T1>::iterator begin1_;\n    const typename ParamGenerator<T1>::iterator end1_;\n    typename ParamGenerator<T1>::iterator current1_;\n    const typename ParamGenerator<T2>::iterator begin2_;\n    const typename ParamGenerator<T2>::iterator end2_;\n    typename ParamGenerator<T2>::iterator current2_;\n    const typename ParamGenerator<T3>::iterator begin3_;\n    const typename ParamGenerator<T3>::iterator end3_;\n    typename ParamGenerator<T3>::iterator current3_;\n    const typename ParamGenerator<T4>::iterator begin4_;\n    const typename ParamGenerator<T4>::iterator end4_;\n    typename ParamGenerator<T4>::iterator current4_;\n    const typename ParamGenerator<T5>::iterator begin5_;\n    const typename ParamGenerator<T5>::iterator end5_;\n    typename ParamGenerator<T5>::iterator current5_;\n    ParamType current_value_;\n  };  // class CartesianProductGenerator5::Iterator\n\n  // No implementation - assignment is unsupported.\n  void operator=(const CartesianProductGenerator5& other);\n\n  const ParamGenerator<T1> g1_;\n  const ParamGenerator<T2> g2_;\n  const ParamGenerator<T3> g3_;\n  const ParamGenerator<T4> g4_;\n  const ParamGenerator<T5> g5_;\n};  // class CartesianProductGenerator5\n\n\ntemplate <typename T1, typename T2, typename T3, typename T4, typename T5,\n    typename T6>\nclass CartesianProductGenerator6\n    : public ParamGeneratorInterface< ::testing::tuple<T1, T2, T3, T4, T5,\n        T6> > {\n public:\n  typedef ::testing::tuple<T1, T2, T3, T4, T5, T6> ParamType;\n\n  CartesianProductGenerator6(const ParamGenerator<T1>& g1,\n      const ParamGenerator<T2>& g2, const ParamGenerator<T3>& g3,\n      const ParamGenerator<T4>& g4, const ParamGenerator<T5>& g5,\n      const ParamGenerator<T6>& g6)\n      : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5), g6_(g6) {}\n  virtual ~CartesianProductGenerator6() {}\n\n  virtual ParamIteratorInterface<ParamType>* Begin() const {\n    return new Iterator(this, g1_, g1_.begin(), g2_, g2_.begin(), g3_,\n        g3_.begin(), g4_, g4_.begin(), g5_, g5_.begin(), g6_, g6_.begin());\n  }\n  virtual ParamIteratorInterface<ParamType>* End() const {\n    return new Iterator(this, g1_, g1_.end(), g2_, g2_.end(), g3_, g3_.end(),\n        g4_, g4_.end(), g5_, g5_.end(), g6_, g6_.end());\n  }\n\n private:\n  class Iterator : public ParamIteratorInterface<ParamType> {\n   public:\n    Iterator(const ParamGeneratorInterface<ParamType>* base,\n      const ParamGenerator<T1>& g1,\n      const typename ParamGenerator<T1>::iterator& current1,\n      const ParamGenerator<T2>& g2,\n      const typename ParamGenerator<T2>::iterator& current2,\n      const ParamGenerator<T3>& g3,\n      const typename ParamGenerator<T3>::iterator& current3,\n      const ParamGenerator<T4>& g4,\n      const typename ParamGenerator<T4>::iterator& current4,\n      const ParamGenerator<T5>& g5,\n      const typename ParamGenerator<T5>::iterator& current5,\n      const ParamGenerator<T6>& g6,\n      const typename ParamGenerator<T6>::iterator& current6)\n        : base_(base),\n          begin1_(g1.begin()), end1_(g1.end()), current1_(current1),\n          begin2_(g2.begin()), end2_(g2.end()), current2_(current2),\n          begin3_(g3.begin()), end3_(g3.end()), current3_(current3),\n          begin4_(g4.begin()), end4_(g4.end()), current4_(current4),\n          begin5_(g5.begin()), end5_(g5.end()), current5_(current5),\n          begin6_(g6.begin()), end6_(g6.end()), current6_(current6)    {\n      ComputeCurrentValue();\n    }\n    virtual ~Iterator() {}\n\n    virtual const ParamGeneratorInterface<ParamType>* BaseGenerator() const {\n      return base_;\n    }\n    // Advance should not be called on beyond-of-range iterators\n    // so no component iterators must be beyond end of range, either.\n    virtual void Advance() {\n      assert(!AtEnd());\n      ++current6_;\n      if (current6_ == end6_) {\n        current6_ = begin6_;\n        ++current5_;\n      }\n      if (current5_ == end5_) {\n        current5_ = begin5_;\n        ++current4_;\n      }\n      if (current4_ == end4_) {\n        current4_ = begin4_;\n        ++current3_;\n      }\n      if (current3_ == end3_) {\n        current3_ = begin3_;\n        ++current2_;\n      }\n      if (current2_ == end2_) {\n        current2_ = begin2_;\n        ++current1_;\n      }\n      ComputeCurrentValue();\n    }\n    virtual ParamIteratorInterface<ParamType>* Clone() const {\n      return new Iterator(*this);\n    }\n    virtual const ParamType* Current() const { return &current_value_; }\n    virtual bool Equals(const ParamIteratorInterface<ParamType>& other) const {\n      // Having the same base generator guarantees that the other\n      // iterator is of the same type and we can downcast.\n      GTEST_CHECK_(BaseGenerator() == other.BaseGenerator())\n          << \"The program attempted to compare iterators \"\n          << \"from different generators.\" << std::endl;\n      const Iterator* typed_other =\n          CheckedDowncastToActualType<const Iterator>(&other);\n      // We must report iterators equal if they both point beyond their\n      // respective ranges. That can happen in a variety of fashions,\n      // so we have to consult AtEnd().\n      return (AtEnd() && typed_other->AtEnd()) ||\n         (\n          current1_ == typed_other->current1_ &&\n          current2_ == typed_other->current2_ &&\n          current3_ == typed_other->current3_ &&\n          current4_ == typed_other->current4_ &&\n          current5_ == typed_other->current5_ &&\n          current6_ == typed_other->current6_);\n    }\n\n   private:\n    Iterator(const Iterator& other)\n        : base_(other.base_),\n        begin1_(other.begin1_),\n        end1_(other.end1_),\n        current1_(other.current1_),\n        begin2_(other.begin2_),\n        end2_(other.end2_),\n        current2_(other.current2_),\n        begin3_(other.begin3_),\n        end3_(other.end3_),\n        current3_(other.current3_),\n        begin4_(other.begin4_),\n        end4_(other.end4_),\n        current4_(other.current4_),\n        begin5_(other.begin5_),\n        end5_(other.end5_),\n        current5_(other.current5_),\n        begin6_(other.begin6_),\n        end6_(other.end6_),\n        current6_(other.current6_) {\n      ComputeCurrentValue();\n    }\n\n    void ComputeCurrentValue() {\n      if (!AtEnd())\n        current_value_ = ParamType(*current1_, *current2_, *current3_,\n            *current4_, *current5_, *current6_);\n    }\n    bool AtEnd() const {\n      // We must report iterator past the end of the range when either of the\n      // component iterators has reached the end of its range.\n      return\n          current1_ == end1_ ||\n          current2_ == end2_ ||\n          current3_ == end3_ ||\n          current4_ == end4_ ||\n          current5_ == end5_ ||\n          current6_ == end6_;\n    }\n\n    // No implementation - assignment is unsupported.\n    void operator=(const Iterator& other);\n\n    const ParamGeneratorInterface<ParamType>* const base_;\n    // begin[i]_ and end[i]_ define the i-th range that Iterator traverses.\n    // current[i]_ is the actual traversing iterator.\n    const typename ParamGenerator<T1>::iterator begin1_;\n    const typename ParamGenerator<T1>::iterator end1_;\n    typename ParamGenerator<T1>::iterator current1_;\n    const typename ParamGenerator<T2>::iterator begin2_;\n    const typename ParamGenerator<T2>::iterator end2_;\n    typename ParamGenerator<T2>::iterator current2_;\n    const typename ParamGenerator<T3>::iterator begin3_;\n    const typename ParamGenerator<T3>::iterator end3_;\n    typename ParamGenerator<T3>::iterator current3_;\n    const typename ParamGenerator<T4>::iterator begin4_;\n    const typename ParamGenerator<T4>::iterator end4_;\n    typename ParamGenerator<T4>::iterator current4_;\n    const typename ParamGenerator<T5>::iterator begin5_;\n    const typename ParamGenerator<T5>::iterator end5_;\n    typename ParamGenerator<T5>::iterator current5_;\n    const typename ParamGenerator<T6>::iterator begin6_;\n    const typename ParamGenerator<T6>::iterator end6_;\n    typename ParamGenerator<T6>::iterator current6_;\n    ParamType current_value_;\n  };  // class CartesianProductGenerator6::Iterator\n\n  // No implementation - assignment is unsupported.\n  void operator=(const CartesianProductGenerator6& other);\n\n  const ParamGenerator<T1> g1_;\n  const ParamGenerator<T2> g2_;\n  const ParamGenerator<T3> g3_;\n  const ParamGenerator<T4> g4_;\n  const ParamGenerator<T5> g5_;\n  const ParamGenerator<T6> g6_;\n};  // class CartesianProductGenerator6\n\n\ntemplate <typename T1, typename T2, typename T3, typename T4, typename T5,\n    typename T6, typename T7>\nclass CartesianProductGenerator7\n    : public ParamGeneratorInterface< ::testing::tuple<T1, T2, T3, T4, T5, T6,\n        T7> > {\n public:\n  typedef ::testing::tuple<T1, T2, T3, T4, T5, T6, T7> ParamType;\n\n  CartesianProductGenerator7(const ParamGenerator<T1>& g1,\n      const ParamGenerator<T2>& g2, const ParamGenerator<T3>& g3,\n      const ParamGenerator<T4>& g4, const ParamGenerator<T5>& g5,\n      const ParamGenerator<T6>& g6, const ParamGenerator<T7>& g7)\n      : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5), g6_(g6), g7_(g7) {}\n  virtual ~CartesianProductGenerator7() {}\n\n  virtual ParamIteratorInterface<ParamType>* Begin() const {\n    return new Iterator(this, g1_, g1_.begin(), g2_, g2_.begin(), g3_,\n        g3_.begin(), g4_, g4_.begin(), g5_, g5_.begin(), g6_, g6_.begin(), g7_,\n        g7_.begin());\n  }\n  virtual ParamIteratorInterface<ParamType>* End() const {\n    return new Iterator(this, g1_, g1_.end(), g2_, g2_.end(), g3_, g3_.end(),\n        g4_, g4_.end(), g5_, g5_.end(), g6_, g6_.end(), g7_, g7_.end());\n  }\n\n private:\n  class Iterator : public ParamIteratorInterface<ParamType> {\n   public:\n    Iterator(const ParamGeneratorInterface<ParamType>* base,\n      const ParamGenerator<T1>& g1,\n      const typename ParamGenerator<T1>::iterator& current1,\n      const ParamGenerator<T2>& g2,\n      const typename ParamGenerator<T2>::iterator& current2,\n      const ParamGenerator<T3>& g3,\n      const typename ParamGenerator<T3>::iterator& current3,\n      const ParamGenerator<T4>& g4,\n      const typename ParamGenerator<T4>::iterator& current4,\n      const ParamGenerator<T5>& g5,\n      const typename ParamGenerator<T5>::iterator& current5,\n      const ParamGenerator<T6>& g6,\n      const typename ParamGenerator<T6>::iterator& current6,\n      const ParamGenerator<T7>& g7,\n      const typename ParamGenerator<T7>::iterator& current7)\n        : base_(base),\n          begin1_(g1.begin()), end1_(g1.end()), current1_(current1),\n          begin2_(g2.begin()), end2_(g2.end()), current2_(current2),\n          begin3_(g3.begin()), end3_(g3.end()), current3_(current3),\n          begin4_(g4.begin()), end4_(g4.end()), current4_(current4),\n          begin5_(g5.begin()), end5_(g5.end()), current5_(current5),\n          begin6_(g6.begin()), end6_(g6.end()), current6_(current6),\n          begin7_(g7.begin()), end7_(g7.end()), current7_(current7)    {\n      ComputeCurrentValue();\n    }\n    virtual ~Iterator() {}\n\n    virtual const ParamGeneratorInterface<ParamType>* BaseGenerator() const {\n      return base_;\n    }\n    // Advance should not be called on beyond-of-range iterators\n    // so no component iterators must be beyond end of range, either.\n    virtual void Advance() {\n      assert(!AtEnd());\n      ++current7_;\n      if (current7_ == end7_) {\n        current7_ = begin7_;\n        ++current6_;\n      }\n      if (current6_ == end6_) {\n        current6_ = begin6_;\n        ++current5_;\n      }\n      if (current5_ == end5_) {\n        current5_ = begin5_;\n        ++current4_;\n      }\n      if (current4_ == end4_) {\n        current4_ = begin4_;\n        ++current3_;\n      }\n      if (current3_ == end3_) {\n        current3_ = begin3_;\n        ++current2_;\n      }\n      if (current2_ == end2_) {\n        current2_ = begin2_;\n        ++current1_;\n      }\n      ComputeCurrentValue();\n    }\n    virtual ParamIteratorInterface<ParamType>* Clone() const {\n      return new Iterator(*this);\n    }\n    virtual const ParamType* Current() const { return &current_value_; }\n    virtual bool Equals(const ParamIteratorInterface<ParamType>& other) const {\n      // Having the same base generator guarantees that the other\n      // iterator is of the same type and we can downcast.\n      GTEST_CHECK_(BaseGenerator() == other.BaseGenerator())\n          << \"The program attempted to compare iterators \"\n          << \"from different generators.\" << std::endl;\n      const Iterator* typed_other =\n          CheckedDowncastToActualType<const Iterator>(&other);\n      // We must report iterators equal if they both point beyond their\n      // respective ranges. That can happen in a variety of fashions,\n      // so we have to consult AtEnd().\n      return (AtEnd() && typed_other->AtEnd()) ||\n         (\n          current1_ == typed_other->current1_ &&\n          current2_ == typed_other->current2_ &&\n          current3_ == typed_other->current3_ &&\n          current4_ == typed_other->current4_ &&\n          current5_ == typed_other->current5_ &&\n          current6_ == typed_other->current6_ &&\n          current7_ == typed_other->current7_);\n    }\n\n   private:\n    Iterator(const Iterator& other)\n        : base_(other.base_),\n        begin1_(other.begin1_),\n        end1_(other.end1_),\n        current1_(other.current1_),\n        begin2_(other.begin2_),\n        end2_(other.end2_),\n        current2_(other.current2_),\n        begin3_(other.begin3_),\n        end3_(other.end3_),\n        current3_(other.current3_),\n        begin4_(other.begin4_),\n        end4_(other.end4_),\n        current4_(other.current4_),\n        begin5_(other.begin5_),\n        end5_(other.end5_),\n        current5_(other.current5_),\n        begin6_(other.begin6_),\n        end6_(other.end6_),\n        current6_(other.current6_),\n        begin7_(other.begin7_),\n        end7_(other.end7_),\n        current7_(other.current7_) {\n      ComputeCurrentValue();\n    }\n\n    void ComputeCurrentValue() {\n      if (!AtEnd())\n        current_value_ = ParamType(*current1_, *current2_, *current3_,\n            *current4_, *current5_, *current6_, *current7_);\n    }\n    bool AtEnd() const {\n      // We must report iterator past the end of the range when either of the\n      // component iterators has reached the end of its range.\n      return\n          current1_ == end1_ ||\n          current2_ == end2_ ||\n          current3_ == end3_ ||\n          current4_ == end4_ ||\n          current5_ == end5_ ||\n          current6_ == end6_ ||\n          current7_ == end7_;\n    }\n\n    // No implementation - assignment is unsupported.\n    void operator=(const Iterator& other);\n\n    const ParamGeneratorInterface<ParamType>* const base_;\n    // begin[i]_ and end[i]_ define the i-th range that Iterator traverses.\n    // current[i]_ is the actual traversing iterator.\n    const typename ParamGenerator<T1>::iterator begin1_;\n    const typename ParamGenerator<T1>::iterator end1_;\n    typename ParamGenerator<T1>::iterator current1_;\n    const typename ParamGenerator<T2>::iterator begin2_;\n    const typename ParamGenerator<T2>::iterator end2_;\n    typename ParamGenerator<T2>::iterator current2_;\n    const typename ParamGenerator<T3>::iterator begin3_;\n    const typename ParamGenerator<T3>::iterator end3_;\n    typename ParamGenerator<T3>::iterator current3_;\n    const typename ParamGenerator<T4>::iterator begin4_;\n    const typename ParamGenerator<T4>::iterator end4_;\n    typename ParamGenerator<T4>::iterator current4_;\n    const typename ParamGenerator<T5>::iterator begin5_;\n    const typename ParamGenerator<T5>::iterator end5_;\n    typename ParamGenerator<T5>::iterator current5_;\n    const typename ParamGenerator<T6>::iterator begin6_;\n    const typename ParamGenerator<T6>::iterator end6_;\n    typename ParamGenerator<T6>::iterator current6_;\n    const typename ParamGenerator<T7>::iterator begin7_;\n    const typename ParamGenerator<T7>::iterator end7_;\n    typename ParamGenerator<T7>::iterator current7_;\n    ParamType current_value_;\n  };  // class CartesianProductGenerator7::Iterator\n\n  // No implementation - assignment is unsupported.\n  void operator=(const CartesianProductGenerator7& other);\n\n  const ParamGenerator<T1> g1_;\n  const ParamGenerator<T2> g2_;\n  const ParamGenerator<T3> g3_;\n  const ParamGenerator<T4> g4_;\n  const ParamGenerator<T5> g5_;\n  const ParamGenerator<T6> g6_;\n  const ParamGenerator<T7> g7_;\n};  // class CartesianProductGenerator7\n\n\ntemplate <typename T1, typename T2, typename T3, typename T4, typename T5,\n    typename T6, typename T7, typename T8>\nclass CartesianProductGenerator8\n    : public ParamGeneratorInterface< ::testing::tuple<T1, T2, T3, T4, T5, T6,\n        T7, T8> > {\n public:\n  typedef ::testing::tuple<T1, T2, T3, T4, T5, T6, T7, T8> ParamType;\n\n  CartesianProductGenerator8(const ParamGenerator<T1>& g1,\n      const ParamGenerator<T2>& g2, const ParamGenerator<T3>& g3,\n      const ParamGenerator<T4>& g4, const ParamGenerator<T5>& g5,\n      const ParamGenerator<T6>& g6, const ParamGenerator<T7>& g7,\n      const ParamGenerator<T8>& g8)\n      : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5), g6_(g6), g7_(g7),\n          g8_(g8) {}\n  virtual ~CartesianProductGenerator8() {}\n\n  virtual ParamIteratorInterface<ParamType>* Begin() const {\n    return new Iterator(this, g1_, g1_.begin(), g2_, g2_.begin(), g3_,\n        g3_.begin(), g4_, g4_.begin(), g5_, g5_.begin(), g6_, g6_.begin(), g7_,\n        g7_.begin(), g8_, g8_.begin());\n  }\n  virtual ParamIteratorInterface<ParamType>* End() const {\n    return new Iterator(this, g1_, g1_.end(), g2_, g2_.end(), g3_, g3_.end(),\n        g4_, g4_.end(), g5_, g5_.end(), g6_, g6_.end(), g7_, g7_.end(), g8_,\n        g8_.end());\n  }\n\n private:\n  class Iterator : public ParamIteratorInterface<ParamType> {\n   public:\n    Iterator(const ParamGeneratorInterface<ParamType>* base,\n      const ParamGenerator<T1>& g1,\n      const typename ParamGenerator<T1>::iterator& current1,\n      const ParamGenerator<T2>& g2,\n      const typename ParamGenerator<T2>::iterator& current2,\n      const ParamGenerator<T3>& g3,\n      const typename ParamGenerator<T3>::iterator& current3,\n      const ParamGenerator<T4>& g4,\n      const typename ParamGenerator<T4>::iterator& current4,\n      const ParamGenerator<T5>& g5,\n      const typename ParamGenerator<T5>::iterator& current5,\n      const ParamGenerator<T6>& g6,\n      const typename ParamGenerator<T6>::iterator& current6,\n      const ParamGenerator<T7>& g7,\n      const typename ParamGenerator<T7>::iterator& current7,\n      const ParamGenerator<T8>& g8,\n      const typename ParamGenerator<T8>::iterator& current8)\n        : base_(base),\n          begin1_(g1.begin()), end1_(g1.end()), current1_(current1),\n          begin2_(g2.begin()), end2_(g2.end()), current2_(current2),\n          begin3_(g3.begin()), end3_(g3.end()), current3_(current3),\n          begin4_(g4.begin()), end4_(g4.end()), current4_(current4),\n          begin5_(g5.begin()), end5_(g5.end()), current5_(current5),\n          begin6_(g6.begin()), end6_(g6.end()), current6_(current6),\n          begin7_(g7.begin()), end7_(g7.end()), current7_(current7),\n          begin8_(g8.begin()), end8_(g8.end()), current8_(current8)    {\n      ComputeCurrentValue();\n    }\n    virtual ~Iterator() {}\n\n    virtual const ParamGeneratorInterface<ParamType>* BaseGenerator() const {\n      return base_;\n    }\n    // Advance should not be called on beyond-of-range iterators\n    // so no component iterators must be beyond end of range, either.\n    virtual void Advance() {\n      assert(!AtEnd());\n      ++current8_;\n      if (current8_ == end8_) {\n        current8_ = begin8_;\n        ++current7_;\n      }\n      if (current7_ == end7_) {\n        current7_ = begin7_;\n        ++current6_;\n      }\n      if (current6_ == end6_) {\n        current6_ = begin6_;\n        ++current5_;\n      }\n      if (current5_ == end5_) {\n        current5_ = begin5_;\n        ++current4_;\n      }\n      if (current4_ == end4_) {\n        current4_ = begin4_;\n        ++current3_;\n      }\n      if (current3_ == end3_) {\n        current3_ = begin3_;\n        ++current2_;\n      }\n      if (current2_ == end2_) {\n        current2_ = begin2_;\n        ++current1_;\n      }\n      ComputeCurrentValue();\n    }\n    virtual ParamIteratorInterface<ParamType>* Clone() const {\n      return new Iterator(*this);\n    }\n    virtual const ParamType* Current() const { return &current_value_; }\n    virtual bool Equals(const ParamIteratorInterface<ParamType>& other) const {\n      // Having the same base generator guarantees that the other\n      // iterator is of the same type and we can downcast.\n      GTEST_CHECK_(BaseGenerator() == other.BaseGenerator())\n          << \"The program attempted to compare iterators \"\n          << \"from different generators.\" << std::endl;\n      const Iterator* typed_other =\n          CheckedDowncastToActualType<const Iterator>(&other);\n      // We must report iterators equal if they both point beyond their\n      // respective ranges. That can happen in a variety of fashions,\n      // so we have to consult AtEnd().\n      return (AtEnd() && typed_other->AtEnd()) ||\n         (\n          current1_ == typed_other->current1_ &&\n          current2_ == typed_other->current2_ &&\n          current3_ == typed_other->current3_ &&\n          current4_ == typed_other->current4_ &&\n          current5_ == typed_other->current5_ &&\n          current6_ == typed_other->current6_ &&\n          current7_ == typed_other->current7_ &&\n          current8_ == typed_other->current8_);\n    }\n\n   private:\n    Iterator(const Iterator& other)\n        : base_(other.base_),\n        begin1_(other.begin1_),\n        end1_(other.end1_),\n        current1_(other.current1_),\n        begin2_(other.begin2_),\n        end2_(other.end2_),\n        current2_(other.current2_),\n        begin3_(other.begin3_),\n        end3_(other.end3_),\n        current3_(other.current3_),\n        begin4_(other.begin4_),\n        end4_(other.end4_),\n        current4_(other.current4_),\n        begin5_(other.begin5_),\n        end5_(other.end5_),\n        current5_(other.current5_),\n        begin6_(other.begin6_),\n        end6_(other.end6_),\n        current6_(other.current6_),\n        begin7_(other.begin7_),\n        end7_(other.end7_),\n        current7_(other.current7_),\n        begin8_(other.begin8_),\n        end8_(other.end8_),\n        current8_(other.current8_) {\n      ComputeCurrentValue();\n    }\n\n    void ComputeCurrentValue() {\n      if (!AtEnd())\n        current_value_ = ParamType(*current1_, *current2_, *current3_,\n            *current4_, *current5_, *current6_, *current7_, *current8_);\n    }\n    bool AtEnd() const {\n      // We must report iterator past the end of the range when either of the\n      // component iterators has reached the end of its range.\n      return\n          current1_ == end1_ ||\n          current2_ == end2_ ||\n          current3_ == end3_ ||\n          current4_ == end4_ ||\n          current5_ == end5_ ||\n          current6_ == end6_ ||\n          current7_ == end7_ ||\n          current8_ == end8_;\n    }\n\n    // No implementation - assignment is unsupported.\n    void operator=(const Iterator& other);\n\n    const ParamGeneratorInterface<ParamType>* const base_;\n    // begin[i]_ and end[i]_ define the i-th range that Iterator traverses.\n    // current[i]_ is the actual traversing iterator.\n    const typename ParamGenerator<T1>::iterator begin1_;\n    const typename ParamGenerator<T1>::iterator end1_;\n    typename ParamGenerator<T1>::iterator current1_;\n    const typename ParamGenerator<T2>::iterator begin2_;\n    const typename ParamGenerator<T2>::iterator end2_;\n    typename ParamGenerator<T2>::iterator current2_;\n    const typename ParamGenerator<T3>::iterator begin3_;\n    const typename ParamGenerator<T3>::iterator end3_;\n    typename ParamGenerator<T3>::iterator current3_;\n    const typename ParamGenerator<T4>::iterator begin4_;\n    const typename ParamGenerator<T4>::iterator end4_;\n    typename ParamGenerator<T4>::iterator current4_;\n    const typename ParamGenerator<T5>::iterator begin5_;\n    const typename ParamGenerator<T5>::iterator end5_;\n    typename ParamGenerator<T5>::iterator current5_;\n    const typename ParamGenerator<T6>::iterator begin6_;\n    const typename ParamGenerator<T6>::iterator end6_;\n    typename ParamGenerator<T6>::iterator current6_;\n    const typename ParamGenerator<T7>::iterator begin7_;\n    const typename ParamGenerator<T7>::iterator end7_;\n    typename ParamGenerator<T7>::iterator current7_;\n    const typename ParamGenerator<T8>::iterator begin8_;\n    const typename ParamGenerator<T8>::iterator end8_;\n    typename ParamGenerator<T8>::iterator current8_;\n    ParamType current_value_;\n  };  // class CartesianProductGenerator8::Iterator\n\n  // No implementation - assignment is unsupported.\n  void operator=(const CartesianProductGenerator8& other);\n\n  const ParamGenerator<T1> g1_;\n  const ParamGenerator<T2> g2_;\n  const ParamGenerator<T3> g3_;\n  const ParamGenerator<T4> g4_;\n  const ParamGenerator<T5> g5_;\n  const ParamGenerator<T6> g6_;\n  const ParamGenerator<T7> g7_;\n  const ParamGenerator<T8> g8_;\n};  // class CartesianProductGenerator8\n\n\ntemplate <typename T1, typename T2, typename T3, typename T4, typename T5,\n    typename T6, typename T7, typename T8, typename T9>\nclass CartesianProductGenerator9\n    : public ParamGeneratorInterface< ::testing::tuple<T1, T2, T3, T4, T5, T6,\n        T7, T8, T9> > {\n public:\n  typedef ::testing::tuple<T1, T2, T3, T4, T5, T6, T7, T8, T9> ParamType;\n\n  CartesianProductGenerator9(const ParamGenerator<T1>& g1,\n      const ParamGenerator<T2>& g2, const ParamGenerator<T3>& g3,\n      const ParamGenerator<T4>& g4, const ParamGenerator<T5>& g5,\n      const ParamGenerator<T6>& g6, const ParamGenerator<T7>& g7,\n      const ParamGenerator<T8>& g8, const ParamGenerator<T9>& g9)\n      : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5), g6_(g6), g7_(g7), g8_(g8),\n          g9_(g9) {}\n  virtual ~CartesianProductGenerator9() {}\n\n  virtual ParamIteratorInterface<ParamType>* Begin() const {\n    return new Iterator(this, g1_, g1_.begin(), g2_, g2_.begin(), g3_,\n        g3_.begin(), g4_, g4_.begin(), g5_, g5_.begin(), g6_, g6_.begin(), g7_,\n        g7_.begin(), g8_, g8_.begin(), g9_, g9_.begin());\n  }\n  virtual ParamIteratorInterface<ParamType>* End() const {\n    return new Iterator(this, g1_, g1_.end(), g2_, g2_.end(), g3_, g3_.end(),\n        g4_, g4_.end(), g5_, g5_.end(), g6_, g6_.end(), g7_, g7_.end(), g8_,\n        g8_.end(), g9_, g9_.end());\n  }\n\n private:\n  class Iterator : public ParamIteratorInterface<ParamType> {\n   public:\n    Iterator(const ParamGeneratorInterface<ParamType>* base,\n      const ParamGenerator<T1>& g1,\n      const typename ParamGenerator<T1>::iterator& current1,\n      const ParamGenerator<T2>& g2,\n      const typename ParamGenerator<T2>::iterator& current2,\n      const ParamGenerator<T3>& g3,\n      const typename ParamGenerator<T3>::iterator& current3,\n      const ParamGenerator<T4>& g4,\n      const typename ParamGenerator<T4>::iterator& current4,\n      const ParamGenerator<T5>& g5,\n      const typename ParamGenerator<T5>::iterator& current5,\n      const ParamGenerator<T6>& g6,\n      const typename ParamGenerator<T6>::iterator& current6,\n      const ParamGenerator<T7>& g7,\n      const typename ParamGenerator<T7>::iterator& current7,\n      const ParamGenerator<T8>& g8,\n      const typename ParamGenerator<T8>::iterator& current8,\n      const ParamGenerator<T9>& g9,\n      const typename ParamGenerator<T9>::iterator& current9)\n        : base_(base),\n          begin1_(g1.begin()), end1_(g1.end()), current1_(current1),\n          begin2_(g2.begin()), end2_(g2.end()), current2_(current2),\n          begin3_(g3.begin()), end3_(g3.end()), current3_(current3),\n          begin4_(g4.begin()), end4_(g4.end()), current4_(current4),\n          begin5_(g5.begin()), end5_(g5.end()), current5_(current5),\n          begin6_(g6.begin()), end6_(g6.end()), current6_(current6),\n          begin7_(g7.begin()), end7_(g7.end()), current7_(current7),\n          begin8_(g8.begin()), end8_(g8.end()), current8_(current8),\n          begin9_(g9.begin()), end9_(g9.end()), current9_(current9)    {\n      ComputeCurrentValue();\n    }\n    virtual ~Iterator() {}\n\n    virtual const ParamGeneratorInterface<ParamType>* BaseGenerator() const {\n      return base_;\n    }\n    // Advance should not be called on beyond-of-range iterators\n    // so no component iterators must be beyond end of range, either.\n    virtual void Advance() {\n      assert(!AtEnd());\n      ++current9_;\n      if (current9_ == end9_) {\n        current9_ = begin9_;\n        ++current8_;\n      }\n      if (current8_ == end8_) {\n        current8_ = begin8_;\n        ++current7_;\n      }\n      if (current7_ == end7_) {\n        current7_ = begin7_;\n        ++current6_;\n      }\n      if (current6_ == end6_) {\n        current6_ = begin6_;\n        ++current5_;\n      }\n      if (current5_ == end5_) {\n        current5_ = begin5_;\n        ++current4_;\n      }\n      if (current4_ == end4_) {\n        current4_ = begin4_;\n        ++current3_;\n      }\n      if (current3_ == end3_) {\n        current3_ = begin3_;\n        ++current2_;\n      }\n      if (current2_ == end2_) {\n        current2_ = begin2_;\n        ++current1_;\n      }\n      ComputeCurrentValue();\n    }\n    virtual ParamIteratorInterface<ParamType>* Clone() const {\n      return new Iterator(*this);\n    }\n    virtual const ParamType* Current() const { return &current_value_; }\n    virtual bool Equals(const ParamIteratorInterface<ParamType>& other) const {\n      // Having the same base generator guarantees that the other\n      // iterator is of the same type and we can downcast.\n      GTEST_CHECK_(BaseGenerator() == other.BaseGenerator())\n          << \"The program attempted to compare iterators \"\n          << \"from different generators.\" << std::endl;\n      const Iterator* typed_other =\n          CheckedDowncastToActualType<const Iterator>(&other);\n      // We must report iterators equal if they both point beyond their\n      // respective ranges. That can happen in a variety of fashions,\n      // so we have to consult AtEnd().\n      return (AtEnd() && typed_other->AtEnd()) ||\n         (\n          current1_ == typed_other->current1_ &&\n          current2_ == typed_other->current2_ &&\n          current3_ == typed_other->current3_ &&\n          current4_ == typed_other->current4_ &&\n          current5_ == typed_other->current5_ &&\n          current6_ == typed_other->current6_ &&\n          current7_ == typed_other->current7_ &&\n          current8_ == typed_other->current8_ &&\n          current9_ == typed_other->current9_);\n    }\n\n   private:\n    Iterator(const Iterator& other)\n        : base_(other.base_),\n        begin1_(other.begin1_),\n        end1_(other.end1_),\n        current1_(other.current1_),\n        begin2_(other.begin2_),\n        end2_(other.end2_),\n        current2_(other.current2_),\n        begin3_(other.begin3_),\n        end3_(other.end3_),\n        current3_(other.current3_),\n        begin4_(other.begin4_),\n        end4_(other.end4_),\n        current4_(other.current4_),\n        begin5_(other.begin5_),\n        end5_(other.end5_),\n        current5_(other.current5_),\n        begin6_(other.begin6_),\n        end6_(other.end6_),\n        current6_(other.current6_),\n        begin7_(other.begin7_),\n        end7_(other.end7_),\n        current7_(other.current7_),\n        begin8_(other.begin8_),\n        end8_(other.end8_),\n        current8_(other.current8_),\n        begin9_(other.begin9_),\n        end9_(other.end9_),\n        current9_(other.current9_) {\n      ComputeCurrentValue();\n    }\n\n    void ComputeCurrentValue() {\n      if (!AtEnd())\n        current_value_ = ParamType(*current1_, *current2_, *current3_,\n            *current4_, *current5_, *current6_, *current7_, *current8_,\n            *current9_);\n    }\n    bool AtEnd() const {\n      // We must report iterator past the end of the range when either of the\n      // component iterators has reached the end of its range.\n      return\n          current1_ == end1_ ||\n          current2_ == end2_ ||\n          current3_ == end3_ ||\n          current4_ == end4_ ||\n          current5_ == end5_ ||\n          current6_ == end6_ ||\n          current7_ == end7_ ||\n          current8_ == end8_ ||\n          current9_ == end9_;\n    }\n\n    // No implementation - assignment is unsupported.\n    void operator=(const Iterator& other);\n\n    const ParamGeneratorInterface<ParamType>* const base_;\n    // begin[i]_ and end[i]_ define the i-th range that Iterator traverses.\n    // current[i]_ is the actual traversing iterator.\n    const typename ParamGenerator<T1>::iterator begin1_;\n    const typename ParamGenerator<T1>::iterator end1_;\n    typename ParamGenerator<T1>::iterator current1_;\n    const typename ParamGenerator<T2>::iterator begin2_;\n    const typename ParamGenerator<T2>::iterator end2_;\n    typename ParamGenerator<T2>::iterator current2_;\n    const typename ParamGenerator<T3>::iterator begin3_;\n    const typename ParamGenerator<T3>::iterator end3_;\n    typename ParamGenerator<T3>::iterator current3_;\n    const typename ParamGenerator<T4>::iterator begin4_;\n    const typename ParamGenerator<T4>::iterator end4_;\n    typename ParamGenerator<T4>::iterator current4_;\n    const typename ParamGenerator<T5>::iterator begin5_;\n    const typename ParamGenerator<T5>::iterator end5_;\n    typename ParamGenerator<T5>::iterator current5_;\n    const typename ParamGenerator<T6>::iterator begin6_;\n    const typename ParamGenerator<T6>::iterator end6_;\n    typename ParamGenerator<T6>::iterator current6_;\n    const typename ParamGenerator<T7>::iterator begin7_;\n    const typename ParamGenerator<T7>::iterator end7_;\n    typename ParamGenerator<T7>::iterator current7_;\n    const typename ParamGenerator<T8>::iterator begin8_;\n    const typename ParamGenerator<T8>::iterator end8_;\n    typename ParamGenerator<T8>::iterator current8_;\n    const typename ParamGenerator<T9>::iterator begin9_;\n    const typename ParamGenerator<T9>::iterator end9_;\n    typename ParamGenerator<T9>::iterator current9_;\n    ParamType current_value_;\n  };  // class CartesianProductGenerator9::Iterator\n\n  // No implementation - assignment is unsupported.\n  void operator=(const CartesianProductGenerator9& other);\n\n  const ParamGenerator<T1> g1_;\n  const ParamGenerator<T2> g2_;\n  const ParamGenerator<T3> g3_;\n  const ParamGenerator<T4> g4_;\n  const ParamGenerator<T5> g5_;\n  const ParamGenerator<T6> g6_;\n  const ParamGenerator<T7> g7_;\n  const ParamGenerator<T8> g8_;\n  const ParamGenerator<T9> g9_;\n};  // class CartesianProductGenerator9\n\n\ntemplate <typename T1, typename T2, typename T3, typename T4, typename T5,\n    typename T6, typename T7, typename T8, typename T9, typename T10>\nclass CartesianProductGenerator10\n    : public ParamGeneratorInterface< ::testing::tuple<T1, T2, T3, T4, T5, T6,\n        T7, T8, T9, T10> > {\n public:\n  typedef ::testing::tuple<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10> ParamType;\n\n  CartesianProductGenerator10(const ParamGenerator<T1>& g1,\n      const ParamGenerator<T2>& g2, const ParamGenerator<T3>& g3,\n      const ParamGenerator<T4>& g4, const ParamGenerator<T5>& g5,\n      const ParamGenerator<T6>& g6, const ParamGenerator<T7>& g7,\n      const ParamGenerator<T8>& g8, const ParamGenerator<T9>& g9,\n      const ParamGenerator<T10>& g10)\n      : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5), g6_(g6), g7_(g7), g8_(g8),\n          g9_(g9), g10_(g10) {}\n  virtual ~CartesianProductGenerator10() {}\n\n  virtual ParamIteratorInterface<ParamType>* Begin() const {\n    return new Iterator(this, g1_, g1_.begin(), g2_, g2_.begin(), g3_,\n        g3_.begin(), g4_, g4_.begin(), g5_, g5_.begin(), g6_, g6_.begin(), g7_,\n        g7_.begin(), g8_, g8_.begin(), g9_, g9_.begin(), g10_, g10_.begin());\n  }\n  virtual ParamIteratorInterface<ParamType>* End() const {\n    return new Iterator(this, g1_, g1_.end(), g2_, g2_.end(), g3_, g3_.end(),\n        g4_, g4_.end(), g5_, g5_.end(), g6_, g6_.end(), g7_, g7_.end(), g8_,\n        g8_.end(), g9_, g9_.end(), g10_, g10_.end());\n  }\n\n private:\n  class Iterator : public ParamIteratorInterface<ParamType> {\n   public:\n    Iterator(const ParamGeneratorInterface<ParamType>* base,\n      const ParamGenerator<T1>& g1,\n      const typename ParamGenerator<T1>::iterator& current1,\n      const ParamGenerator<T2>& g2,\n      const typename ParamGenerator<T2>::iterator& current2,\n      const ParamGenerator<T3>& g3,\n      const typename ParamGenerator<T3>::iterator& current3,\n      const ParamGenerator<T4>& g4,\n      const typename ParamGenerator<T4>::iterator& current4,\n      const ParamGenerator<T5>& g5,\n      const typename ParamGenerator<T5>::iterator& current5,\n      const ParamGenerator<T6>& g6,\n      const typename ParamGenerator<T6>::iterator& current6,\n      const ParamGenerator<T7>& g7,\n      const typename ParamGenerator<T7>::iterator& current7,\n      const ParamGenerator<T8>& g8,\n      const typename ParamGenerator<T8>::iterator& current8,\n      const ParamGenerator<T9>& g9,\n      const typename ParamGenerator<T9>::iterator& current9,\n      const ParamGenerator<T10>& g10,\n      const typename ParamGenerator<T10>::iterator& current10)\n        : base_(base),\n          begin1_(g1.begin()), end1_(g1.end()), current1_(current1),\n          begin2_(g2.begin()), end2_(g2.end()), current2_(current2),\n          begin3_(g3.begin()), end3_(g3.end()), current3_(current3),\n          begin4_(g4.begin()), end4_(g4.end()), current4_(current4),\n          begin5_(g5.begin()), end5_(g5.end()), current5_(current5),\n          begin6_(g6.begin()), end6_(g6.end()), current6_(current6),\n          begin7_(g7.begin()), end7_(g7.end()), current7_(current7),\n          begin8_(g8.begin()), end8_(g8.end()), current8_(current8),\n          begin9_(g9.begin()), end9_(g9.end()), current9_(current9),\n          begin10_(g10.begin()), end10_(g10.end()), current10_(current10)    {\n      ComputeCurrentValue();\n    }\n    virtual ~Iterator() {}\n\n    virtual const ParamGeneratorInterface<ParamType>* BaseGenerator() const {\n      return base_;\n    }\n    // Advance should not be called on beyond-of-range iterators\n    // so no component iterators must be beyond end of range, either.\n    virtual void Advance() {\n      assert(!AtEnd());\n      ++current10_;\n      if (current10_ == end10_) {\n        current10_ = begin10_;\n        ++current9_;\n      }\n      if (current9_ == end9_) {\n        current9_ = begin9_;\n        ++current8_;\n      }\n      if (current8_ == end8_) {\n        current8_ = begin8_;\n        ++current7_;\n      }\n      if (current7_ == end7_) {\n        current7_ = begin7_;\n        ++current6_;\n      }\n      if (current6_ == end6_) {\n        current6_ = begin6_;\n        ++current5_;\n      }\n      if (current5_ == end5_) {\n        current5_ = begin5_;\n        ++current4_;\n      }\n      if (current4_ == end4_) {\n        current4_ = begin4_;\n        ++current3_;\n      }\n      if (current3_ == end3_) {\n        current3_ = begin3_;\n        ++current2_;\n      }\n      if (current2_ == end2_) {\n        current2_ = begin2_;\n        ++current1_;\n      }\n      ComputeCurrentValue();\n    }\n    virtual ParamIteratorInterface<ParamType>* Clone() const {\n      return new Iterator(*this);\n    }\n    virtual const ParamType* Current() const { return &current_value_; }\n    virtual bool Equals(const ParamIteratorInterface<ParamType>& other) const {\n      // Having the same base generator guarantees that the other\n      // iterator is of the same type and we can downcast.\n      GTEST_CHECK_(BaseGenerator() == other.BaseGenerator())\n          << \"The program attempted to compare iterators \"\n          << \"from different generators.\" << std::endl;\n      const Iterator* typed_other =\n          CheckedDowncastToActualType<const Iterator>(&other);\n      // We must report iterators equal if they both point beyond their\n      // respective ranges. That can happen in a variety of fashions,\n      // so we have to consult AtEnd().\n      return (AtEnd() && typed_other->AtEnd()) ||\n         (\n          current1_ == typed_other->current1_ &&\n          current2_ == typed_other->current2_ &&\n          current3_ == typed_other->current3_ &&\n          current4_ == typed_other->current4_ &&\n          current5_ == typed_other->current5_ &&\n          current6_ == typed_other->current6_ &&\n          current7_ == typed_other->current7_ &&\n          current8_ == typed_other->current8_ &&\n          current9_ == typed_other->current9_ &&\n          current10_ == typed_other->current10_);\n    }\n\n   private:\n    Iterator(const Iterator& other)\n        : base_(other.base_),\n        begin1_(other.begin1_),\n        end1_(other.end1_),\n        current1_(other.current1_),\n        begin2_(other.begin2_),\n        end2_(other.end2_),\n        current2_(other.current2_),\n        begin3_(other.begin3_),\n        end3_(other.end3_),\n        current3_(other.current3_),\n        begin4_(other.begin4_),\n        end4_(other.end4_),\n        current4_(other.current4_),\n        begin5_(other.begin5_),\n        end5_(other.end5_),\n        current5_(other.current5_),\n        begin6_(other.begin6_),\n        end6_(other.end6_),\n        current6_(other.current6_),\n        begin7_(other.begin7_),\n        end7_(other.end7_),\n        current7_(other.current7_),\n        begin8_(other.begin8_),\n        end8_(other.end8_),\n        current8_(other.current8_),\n        begin9_(other.begin9_),\n        end9_(other.end9_),\n        current9_(other.current9_),\n        begin10_(other.begin10_),\n        end10_(other.end10_),\n        current10_(other.current10_) {\n      ComputeCurrentValue();\n    }\n\n    void ComputeCurrentValue() {\n      if (!AtEnd())\n        current_value_ = ParamType(*current1_, *current2_, *current3_,\n            *current4_, *current5_, *current6_, *current7_, *current8_,\n            *current9_, *current10_);\n    }\n    bool AtEnd() const {\n      // We must report iterator past the end of the range when either of the\n      // component iterators has reached the end of its range.\n      return\n          current1_ == end1_ ||\n          current2_ == end2_ ||\n          current3_ == end3_ ||\n          current4_ == end4_ ||\n          current5_ == end5_ ||\n          current6_ == end6_ ||\n          current7_ == end7_ ||\n          current8_ == end8_ ||\n          current9_ == end9_ ||\n          current10_ == end10_;\n    }\n\n    // No implementation - assignment is unsupported.\n    void operator=(const Iterator& other);\n\n    const ParamGeneratorInterface<ParamType>* const base_;\n    // begin[i]_ and end[i]_ define the i-th range that Iterator traverses.\n    // current[i]_ is the actual traversing iterator.\n    const typename ParamGenerator<T1>::iterator begin1_;\n    const typename ParamGenerator<T1>::iterator end1_;\n    typename ParamGenerator<T1>::iterator current1_;\n    const typename ParamGenerator<T2>::iterator begin2_;\n    const typename ParamGenerator<T2>::iterator end2_;\n    typename ParamGenerator<T2>::iterator current2_;\n    const typename ParamGenerator<T3>::iterator begin3_;\n    const typename ParamGenerator<T3>::iterator end3_;\n    typename ParamGenerator<T3>::iterator current3_;\n    const typename ParamGenerator<T4>::iterator begin4_;\n    const typename ParamGenerator<T4>::iterator end4_;\n    typename ParamGenerator<T4>::iterator current4_;\n    const typename ParamGenerator<T5>::iterator begin5_;\n    const typename ParamGenerator<T5>::iterator end5_;\n    typename ParamGenerator<T5>::iterator current5_;\n    const typename ParamGenerator<T6>::iterator begin6_;\n    const typename ParamGenerator<T6>::iterator end6_;\n    typename ParamGenerator<T6>::iterator current6_;\n    const typename ParamGenerator<T7>::iterator begin7_;\n    const typename ParamGenerator<T7>::iterator end7_;\n    typename ParamGenerator<T7>::iterator current7_;\n    const typename ParamGenerator<T8>::iterator begin8_;\n    const typename ParamGenerator<T8>::iterator end8_;\n    typename ParamGenerator<T8>::iterator current8_;\n    const typename ParamGenerator<T9>::iterator begin9_;\n    const typename ParamGenerator<T9>::iterator end9_;\n    typename ParamGenerator<T9>::iterator current9_;\n    const typename ParamGenerator<T10>::iterator begin10_;\n    const typename ParamGenerator<T10>::iterator end10_;\n    typename ParamGenerator<T10>::iterator current10_;\n    ParamType current_value_;\n  };  // class CartesianProductGenerator10::Iterator\n\n  // No implementation - assignment is unsupported.\n  void operator=(const CartesianProductGenerator10& other);\n\n  const ParamGenerator<T1> g1_;\n  const ParamGenerator<T2> g2_;\n  const ParamGenerator<T3> g3_;\n  const ParamGenerator<T4> g4_;\n  const ParamGenerator<T5> g5_;\n  const ParamGenerator<T6> g6_;\n  const ParamGenerator<T7> g7_;\n  const ParamGenerator<T8> g8_;\n  const ParamGenerator<T9> g9_;\n  const ParamGenerator<T10> g10_;\n};  // class CartesianProductGenerator10\n\n\n// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE.\n//\n// Helper classes providing Combine() with polymorphic features. They allow\n// casting CartesianProductGeneratorN<T> to ParamGenerator<U> if T is\n// convertible to U.\n//\ntemplate <class Generator1, class Generator2>\nclass CartesianProductHolder2 {\n public:\nCartesianProductHolder2(const Generator1& g1, const Generator2& g2)\n      : g1_(g1), g2_(g2) {}\n  template <typename T1, typename T2>\n  operator ParamGenerator< ::testing::tuple<T1, T2> >() const {\n    return ParamGenerator< ::testing::tuple<T1, T2> >(\n        new CartesianProductGenerator2<T1, T2>(\n        static_cast<ParamGenerator<T1> >(g1_),\n        static_cast<ParamGenerator<T2> >(g2_)));\n  }\n\n private:\n  // No implementation - assignment is unsupported.\n  void operator=(const CartesianProductHolder2& other);\n\n  const Generator1 g1_;\n  const Generator2 g2_;\n};  // class CartesianProductHolder2\n\ntemplate <class Generator1, class Generator2, class Generator3>\nclass CartesianProductHolder3 {\n public:\nCartesianProductHolder3(const Generator1& g1, const Generator2& g2,\n    const Generator3& g3)\n      : g1_(g1), g2_(g2), g3_(g3) {}\n  template <typename T1, typename T2, typename T3>\n  operator ParamGenerator< ::testing::tuple<T1, T2, T3> >() const {\n    return ParamGenerator< ::testing::tuple<T1, T2, T3> >(\n        new CartesianProductGenerator3<T1, T2, T3>(\n        static_cast<ParamGenerator<T1> >(g1_),\n        static_cast<ParamGenerator<T2> >(g2_),\n        static_cast<ParamGenerator<T3> >(g3_)));\n  }\n\n private:\n  // No implementation - assignment is unsupported.\n  void operator=(const CartesianProductHolder3& other);\n\n  const Generator1 g1_;\n  const Generator2 g2_;\n  const Generator3 g3_;\n};  // class CartesianProductHolder3\n\ntemplate <class Generator1, class Generator2, class Generator3,\n    class Generator4>\nclass CartesianProductHolder4 {\n public:\nCartesianProductHolder4(const Generator1& g1, const Generator2& g2,\n    const Generator3& g3, const Generator4& g4)\n      : g1_(g1), g2_(g2), g3_(g3), g4_(g4) {}\n  template <typename T1, typename T2, typename T3, typename T4>\n  operator ParamGenerator< ::testing::tuple<T1, T2, T3, T4> >() const {\n    return ParamGenerator< ::testing::tuple<T1, T2, T3, T4> >(\n        new CartesianProductGenerator4<T1, T2, T3, T4>(\n        static_cast<ParamGenerator<T1> >(g1_),\n        static_cast<ParamGenerator<T2> >(g2_),\n        static_cast<ParamGenerator<T3> >(g3_),\n        static_cast<ParamGenerator<T4> >(g4_)));\n  }\n\n private:\n  // No implementation - assignment is unsupported.\n  void operator=(const CartesianProductHolder4& other);\n\n  const Generator1 g1_;\n  const Generator2 g2_;\n  const Generator3 g3_;\n  const Generator4 g4_;\n};  // class CartesianProductHolder4\n\ntemplate <class Generator1, class Generator2, class Generator3,\n    class Generator4, class Generator5>\nclass CartesianProductHolder5 {\n public:\nCartesianProductHolder5(const Generator1& g1, const Generator2& g2,\n    const Generator3& g3, const Generator4& g4, const Generator5& g5)\n      : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5) {}\n  template <typename T1, typename T2, typename T3, typename T4, typename T5>\n  operator ParamGenerator< ::testing::tuple<T1, T2, T3, T4, T5> >() const {\n    return ParamGenerator< ::testing::tuple<T1, T2, T3, T4, T5> >(\n        new CartesianProductGenerator5<T1, T2, T3, T4, T5>(\n        static_cast<ParamGenerator<T1> >(g1_),\n        static_cast<ParamGenerator<T2> >(g2_),\n        static_cast<ParamGenerator<T3> >(g3_),\n        static_cast<ParamGenerator<T4> >(g4_),\n        static_cast<ParamGenerator<T5> >(g5_)));\n  }\n\n private:\n  // No implementation - assignment is unsupported.\n  void operator=(const CartesianProductHolder5& other);\n\n  const Generator1 g1_;\n  const Generator2 g2_;\n  const Generator3 g3_;\n  const Generator4 g4_;\n  const Generator5 g5_;\n};  // class CartesianProductHolder5\n\ntemplate <class Generator1, class Generator2, class Generator3,\n    class Generator4, class Generator5, class Generator6>\nclass CartesianProductHolder6 {\n public:\nCartesianProductHolder6(const Generator1& g1, const Generator2& g2,\n    const Generator3& g3, const Generator4& g4, const Generator5& g5,\n    const Generator6& g6)\n      : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5), g6_(g6) {}\n  template <typename T1, typename T2, typename T3, typename T4, typename T5,\n      typename T6>\n  operator ParamGenerator< ::testing::tuple<T1, T2, T3, T4, T5, T6> >() const {\n    return ParamGenerator< ::testing::tuple<T1, T2, T3, T4, T5, T6> >(\n        new CartesianProductGenerator6<T1, T2, T3, T4, T5, T6>(\n        static_cast<ParamGenerator<T1> >(g1_),\n        static_cast<ParamGenerator<T2> >(g2_),\n        static_cast<ParamGenerator<T3> >(g3_),\n        static_cast<ParamGenerator<T4> >(g4_),\n        static_cast<ParamGenerator<T5> >(g5_),\n        static_cast<ParamGenerator<T6> >(g6_)));\n  }\n\n private:\n  // No implementation - assignment is unsupported.\n  void operator=(const CartesianProductHolder6& other);\n\n  const Generator1 g1_;\n  const Generator2 g2_;\n  const Generator3 g3_;\n  const Generator4 g4_;\n  const Generator5 g5_;\n  const Generator6 g6_;\n};  // class CartesianProductHolder6\n\ntemplate <class Generator1, class Generator2, class Generator3,\n    class Generator4, class Generator5, class Generator6, class Generator7>\nclass CartesianProductHolder7 {\n public:\nCartesianProductHolder7(const Generator1& g1, const Generator2& g2,\n    const Generator3& g3, const Generator4& g4, const Generator5& g5,\n    const Generator6& g6, const Generator7& g7)\n      : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5), g6_(g6), g7_(g7) {}\n  template <typename T1, typename T2, typename T3, typename T4, typename T5,\n      typename T6, typename T7>\n  operator ParamGenerator< ::testing::tuple<T1, T2, T3, T4, T5, T6,\n      T7> >() const {\n    return ParamGenerator< ::testing::tuple<T1, T2, T3, T4, T5, T6, T7> >(\n        new CartesianProductGenerator7<T1, T2, T3, T4, T5, T6, T7>(\n        static_cast<ParamGenerator<T1> >(g1_),\n        static_cast<ParamGenerator<T2> >(g2_),\n        static_cast<ParamGenerator<T3> >(g3_),\n        static_cast<ParamGenerator<T4> >(g4_),\n        static_cast<ParamGenerator<T5> >(g5_),\n        static_cast<ParamGenerator<T6> >(g6_),\n        static_cast<ParamGenerator<T7> >(g7_)));\n  }\n\n private:\n  // No implementation - assignment is unsupported.\n  void operator=(const CartesianProductHolder7& other);\n\n  const Generator1 g1_;\n  const Generator2 g2_;\n  const Generator3 g3_;\n  const Generator4 g4_;\n  const Generator5 g5_;\n  const Generator6 g6_;\n  const Generator7 g7_;\n};  // class CartesianProductHolder7\n\ntemplate <class Generator1, class Generator2, class Generator3,\n    class Generator4, class Generator5, class Generator6, class Generator7,\n    class Generator8>\nclass CartesianProductHolder8 {\n public:\nCartesianProductHolder8(const Generator1& g1, const Generator2& g2,\n    const Generator3& g3, const Generator4& g4, const Generator5& g5,\n    const Generator6& g6, const Generator7& g7, const Generator8& g8)\n      : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5), g6_(g6), g7_(g7),\n          g8_(g8) {}\n  template <typename T1, typename T2, typename T3, typename T4, typename T5,\n      typename T6, typename T7, typename T8>\n  operator ParamGenerator< ::testing::tuple<T1, T2, T3, T4, T5, T6, T7,\n      T8> >() const {\n    return ParamGenerator< ::testing::tuple<T1, T2, T3, T4, T5, T6, T7, T8> >(\n        new CartesianProductGenerator8<T1, T2, T3, T4, T5, T6, T7, T8>(\n        static_cast<ParamGenerator<T1> >(g1_),\n        static_cast<ParamGenerator<T2> >(g2_),\n        static_cast<ParamGenerator<T3> >(g3_),\n        static_cast<ParamGenerator<T4> >(g4_),\n        static_cast<ParamGenerator<T5> >(g5_),\n        static_cast<ParamGenerator<T6> >(g6_),\n        static_cast<ParamGenerator<T7> >(g7_),\n        static_cast<ParamGenerator<T8> >(g8_)));\n  }\n\n private:\n  // No implementation - assignment is unsupported.\n  void operator=(const CartesianProductHolder8& other);\n\n  const Generator1 g1_;\n  const Generator2 g2_;\n  const Generator3 g3_;\n  const Generator4 g4_;\n  const Generator5 g5_;\n  const Generator6 g6_;\n  const Generator7 g7_;\n  const Generator8 g8_;\n};  // class CartesianProductHolder8\n\ntemplate <class Generator1, class Generator2, class Generator3,\n    class Generator4, class Generator5, class Generator6, class Generator7,\n    class Generator8, class Generator9>\nclass CartesianProductHolder9 {\n public:\nCartesianProductHolder9(const Generator1& g1, const Generator2& g2,\n    const Generator3& g3, const Generator4& g4, const Generator5& g5,\n    const Generator6& g6, const Generator7& g7, const Generator8& g8,\n    const Generator9& g9)\n      : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5), g6_(g6), g7_(g7), g8_(g8),\n          g9_(g9) {}\n  template <typename T1, typename T2, typename T3, typename T4, typename T5,\n      typename T6, typename T7, typename T8, typename T9>\n  operator ParamGenerator< ::testing::tuple<T1, T2, T3, T4, T5, T6, T7, T8,\n      T9> >() const {\n    return ParamGenerator< ::testing::tuple<T1, T2, T3, T4, T5, T6, T7, T8,\n        T9> >(\n        new CartesianProductGenerator9<T1, T2, T3, T4, T5, T6, T7, T8, T9>(\n        static_cast<ParamGenerator<T1> >(g1_),\n        static_cast<ParamGenerator<T2> >(g2_),\n        static_cast<ParamGenerator<T3> >(g3_),\n        static_cast<ParamGenerator<T4> >(g4_),\n        static_cast<ParamGenerator<T5> >(g5_),\n        static_cast<ParamGenerator<T6> >(g6_),\n        static_cast<ParamGenerator<T7> >(g7_),\n        static_cast<ParamGenerator<T8> >(g8_),\n        static_cast<ParamGenerator<T9> >(g9_)));\n  }\n\n private:\n  // No implementation - assignment is unsupported.\n  void operator=(const CartesianProductHolder9& other);\n\n  const Generator1 g1_;\n  const Generator2 g2_;\n  const Generator3 g3_;\n  const Generator4 g4_;\n  const Generator5 g5_;\n  const Generator6 g6_;\n  const Generator7 g7_;\n  const Generator8 g8_;\n  const Generator9 g9_;\n};  // class CartesianProductHolder9\n\ntemplate <class Generator1, class Generator2, class Generator3,\n    class Generator4, class Generator5, class Generator6, class Generator7,\n    class Generator8, class Generator9, class Generator10>\nclass CartesianProductHolder10 {\n public:\nCartesianProductHolder10(const Generator1& g1, const Generator2& g2,\n    const Generator3& g3, const Generator4& g4, const Generator5& g5,\n    const Generator6& g6, const Generator7& g7, const Generator8& g8,\n    const Generator9& g9, const Generator10& g10)\n      : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5), g6_(g6), g7_(g7), g8_(g8),\n          g9_(g9), g10_(g10) {}\n  template <typename T1, typename T2, typename T3, typename T4, typename T5,\n      typename T6, typename T7, typename T8, typename T9, typename T10>\n  operator ParamGenerator< ::testing::tuple<T1, T2, T3, T4, T5, T6, T7, T8, T9,\n      T10> >() const {\n    return ParamGenerator< ::testing::tuple<T1, T2, T3, T4, T5, T6, T7, T8, T9,\n        T10> >(\n        new CartesianProductGenerator10<T1, T2, T3, T4, T5, T6, T7, T8, T9,\n            T10>(\n        static_cast<ParamGenerator<T1> >(g1_),\n        static_cast<ParamGenerator<T2> >(g2_),\n        static_cast<ParamGenerator<T3> >(g3_),\n        static_cast<ParamGenerator<T4> >(g4_),\n        static_cast<ParamGenerator<T5> >(g5_),\n        static_cast<ParamGenerator<T6> >(g6_),\n        static_cast<ParamGenerator<T7> >(g7_),\n        static_cast<ParamGenerator<T8> >(g8_),\n        static_cast<ParamGenerator<T9> >(g9_),\n        static_cast<ParamGenerator<T10> >(g10_)));\n  }\n\n private:\n  // No implementation - assignment is unsupported.\n  void operator=(const CartesianProductHolder10& other);\n\n  const Generator1 g1_;\n  const Generator2 g2_;\n  const Generator3 g3_;\n  const Generator4 g4_;\n  const Generator5 g5_;\n  const Generator6 g6_;\n  const Generator7 g7_;\n  const Generator8 g8_;\n  const Generator9 g9_;\n  const Generator10 g10_;\n};  // class CartesianProductHolder10\n\n# endif  // GTEST_HAS_COMBINE\n\n}  // namespace internal\n}  // namespace testing\n\n#endif  //  GTEST_HAS_PARAM_TEST\n\n#endif  // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PARAM_UTIL_GENERATED_H_\n"
  },
  {
    "path": "test/gtest/include/gtest/internal/gtest-param-util-generated.h.pump",
    "content": "$$ -*- mode: c++; -*-\n$var n = 50  $$ Maximum length of Values arguments we want to support.\n$var maxtuple = 10  $$ Maximum number of Combine arguments we want to support.\n// Copyright 2008 Google Inc.\n// All Rights Reserved.\n//\n// Redistribution and use in source and binary forms, with or without\n// modification, are permitted provided that the following conditions are\n// met:\n//\n//     * Redistributions of source code must retain the above copyright\n// notice, this list of conditions and the following disclaimer.\n//     * Redistributions in binary form must reproduce the above\n// copyright notice, this list of conditions and the following disclaimer\n// in the documentation and/or other materials provided with the\n// distribution.\n//     * Neither the name of Google Inc. nor the names of its\n// contributors may be used to endorse or promote products derived from\n// this software without specific prior written permission.\n//\n// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n// \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n//\n// Author: vladl@google.com (Vlad Losev)\n\n// Type and function utilities for implementing parameterized tests.\n// This file is generated by a SCRIPT.  DO NOT EDIT BY HAND!\n//\n// Currently Google Test supports at most $n arguments in Values,\n// and at most $maxtuple arguments in Combine. Please contact\n// googletestframework@googlegroups.com if you need more.\n// Please note that the number of arguments to Combine is limited\n// by the maximum arity of the implementation of tuple which is\n// currently set at $maxtuple.\n\n#ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PARAM_UTIL_GENERATED_H_\n#define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PARAM_UTIL_GENERATED_H_\n\n// scripts/fuse_gtest.py depends on gtest's own header being #included\n// *unconditionally*.  Therefore these #includes cannot be moved\n// inside #if GTEST_HAS_PARAM_TEST.\n#include \"gtest/internal/gtest-param-util.h\"\n#include \"gtest/internal/gtest-port.h\"\n\n#if GTEST_HAS_PARAM_TEST\n\nnamespace testing {\n\n// Forward declarations of ValuesIn(), which is implemented in\n// include/gtest/gtest-param-test.h.\ntemplate <typename ForwardIterator>\ninternal::ParamGenerator<\n  typename ::testing::internal::IteratorTraits<ForwardIterator>::value_type>\nValuesIn(ForwardIterator begin, ForwardIterator end);\n\ntemplate <typename T, size_t N>\ninternal::ParamGenerator<T> ValuesIn(const T (&array)[N]);\n\ntemplate <class Container>\ninternal::ParamGenerator<typename Container::value_type> ValuesIn(\n    const Container& container);\n\nnamespace internal {\n\n// Used in the Values() function to provide polymorphic capabilities.\n$range i 1..n\n$for i [[\n$range j 1..i\n\ntemplate <$for j, [[typename T$j]]>\nclass ValueArray$i {\n public:\n  $if i==1 [[explicit ]]ValueArray$i($for j, [[T$j v$j]]) : $for j, [[v$(j)_(v$j)]] {}\n\n  template <typename T>\n  operator ParamGenerator<T>() const {\n    const T array[] = {$for j, [[static_cast<T>(v$(j)_)]]};\n    return ValuesIn(array);\n  }\n\n private:\n  // No implementation - assignment is unsupported.\n  void operator=(const ValueArray$i& other);\n\n$for j [[\n\n  const T$j v$(j)_;\n]]\n\n};\n\n]]\n\n# if GTEST_HAS_COMBINE\n// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE.\n//\n// Generates values from the Cartesian product of values produced\n// by the argument generators.\n//\n$range i 2..maxtuple\n$for i [[\n$range j 1..i\n$range k 2..i\n\ntemplate <$for j, [[typename T$j]]>\nclass CartesianProductGenerator$i\n    : public ParamGeneratorInterface< ::testing::tuple<$for j, [[T$j]]> > {\n public:\n  typedef ::testing::tuple<$for j, [[T$j]]> ParamType;\n\n  CartesianProductGenerator$i($for j, [[const ParamGenerator<T$j>& g$j]])\n      : $for j, [[g$(j)_(g$j)]] {}\n  virtual ~CartesianProductGenerator$i() {}\n\n  virtual ParamIteratorInterface<ParamType>* Begin() const {\n    return new Iterator(this, $for j, [[g$(j)_, g$(j)_.begin()]]);\n  }\n  virtual ParamIteratorInterface<ParamType>* End() const {\n    return new Iterator(this, $for j, [[g$(j)_, g$(j)_.end()]]);\n  }\n\n private:\n  class Iterator : public ParamIteratorInterface<ParamType> {\n   public:\n    Iterator(const ParamGeneratorInterface<ParamType>* base, $for j, [[\n\n      const ParamGenerator<T$j>& g$j,\n      const typename ParamGenerator<T$j>::iterator& current$(j)]])\n        : base_(base),\n$for j, [[\n\n          begin$(j)_(g$j.begin()), end$(j)_(g$j.end()), current$(j)_(current$j)\n]]    {\n      ComputeCurrentValue();\n    }\n    virtual ~Iterator() {}\n\n    virtual const ParamGeneratorInterface<ParamType>* BaseGenerator() const {\n      return base_;\n    }\n    // Advance should not be called on beyond-of-range iterators\n    // so no component iterators must be beyond end of range, either.\n    virtual void Advance() {\n      assert(!AtEnd());\n      ++current$(i)_;\n\n$for k [[\n      if (current$(i+2-k)_ == end$(i+2-k)_) {\n        current$(i+2-k)_ = begin$(i+2-k)_;\n        ++current$(i+2-k-1)_;\n      }\n\n]]\n      ComputeCurrentValue();\n    }\n    virtual ParamIteratorInterface<ParamType>* Clone() const {\n      return new Iterator(*this);\n    }\n    virtual const ParamType* Current() const { return &current_value_; }\n    virtual bool Equals(const ParamIteratorInterface<ParamType>& other) const {\n      // Having the same base generator guarantees that the other\n      // iterator is of the same type and we can downcast.\n      GTEST_CHECK_(BaseGenerator() == other.BaseGenerator())\n          << \"The program attempted to compare iterators \"\n          << \"from different generators.\" << std::endl;\n      const Iterator* typed_other =\n          CheckedDowncastToActualType<const Iterator>(&other);\n      // We must report iterators equal if they both point beyond their\n      // respective ranges. That can happen in a variety of fashions,\n      // so we have to consult AtEnd().\n      return (AtEnd() && typed_other->AtEnd()) ||\n         ($for j  && [[\n\n          current$(j)_ == typed_other->current$(j)_\n]]);\n    }\n\n   private:\n    Iterator(const Iterator& other)\n        : base_(other.base_), $for j, [[\n\n        begin$(j)_(other.begin$(j)_),\n        end$(j)_(other.end$(j)_),\n        current$(j)_(other.current$(j)_)\n]] {\n      ComputeCurrentValue();\n    }\n\n    void ComputeCurrentValue() {\n      if (!AtEnd())\n        current_value_ = ParamType($for j, [[*current$(j)_]]);\n    }\n    bool AtEnd() const {\n      // We must report iterator past the end of the range when either of the\n      // component iterators has reached the end of its range.\n      return\n$for j  || [[\n\n          current$(j)_ == end$(j)_\n]];\n    }\n\n    // No implementation - assignment is unsupported.\n    void operator=(const Iterator& other);\n\n    const ParamGeneratorInterface<ParamType>* const base_;\n    // begin[i]_ and end[i]_ define the i-th range that Iterator traverses.\n    // current[i]_ is the actual traversing iterator.\n$for j [[\n\n    const typename ParamGenerator<T$j>::iterator begin$(j)_;\n    const typename ParamGenerator<T$j>::iterator end$(j)_;\n    typename ParamGenerator<T$j>::iterator current$(j)_;\n]]\n\n    ParamType current_value_;\n  };  // class CartesianProductGenerator$i::Iterator\n\n  // No implementation - assignment is unsupported.\n  void operator=(const CartesianProductGenerator$i& other);\n\n\n$for j [[\n  const ParamGenerator<T$j> g$(j)_;\n\n]]\n};  // class CartesianProductGenerator$i\n\n\n]]\n\n// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE.\n//\n// Helper classes providing Combine() with polymorphic features. They allow\n// casting CartesianProductGeneratorN<T> to ParamGenerator<U> if T is\n// convertible to U.\n//\n$range i 2..maxtuple\n$for i [[\n$range j 1..i\n\ntemplate <$for j, [[class Generator$j]]>\nclass CartesianProductHolder$i {\n public:\nCartesianProductHolder$i($for j, [[const Generator$j& g$j]])\n      : $for j, [[g$(j)_(g$j)]] {}\n  template <$for j, [[typename T$j]]>\n  operator ParamGenerator< ::testing::tuple<$for j, [[T$j]]> >() const {\n    return ParamGenerator< ::testing::tuple<$for j, [[T$j]]> >(\n        new CartesianProductGenerator$i<$for j, [[T$j]]>(\n$for j,[[\n\n        static_cast<ParamGenerator<T$j> >(g$(j)_)\n]]));\n  }\n\n private:\n  // No implementation - assignment is unsupported.\n  void operator=(const CartesianProductHolder$i& other);\n\n\n$for j [[\n  const Generator$j g$(j)_;\n\n]]\n};  // class CartesianProductHolder$i\n\n]]\n\n# endif  // GTEST_HAS_COMBINE\n\n}  // namespace internal\n}  // namespace testing\n\n#endif  //  GTEST_HAS_PARAM_TEST\n\n#endif  // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PARAM_UTIL_GENERATED_H_\n"
  },
  {
    "path": "test/gtest/include/gtest/internal/gtest-param-util.h",
    "content": "// Copyright 2008 Google Inc.\n// All Rights Reserved.\n//\n// Redistribution and use in source and binary forms, with or without\n// modification, are permitted provided that the following conditions are\n// met:\n//\n//     * Redistributions of source code must retain the above copyright\n// notice, this list of conditions and the following disclaimer.\n//     * Redistributions in binary form must reproduce the above\n// copyright notice, this list of conditions and the following disclaimer\n// in the documentation and/or other materials provided with the\n// distribution.\n//     * Neither the name of Google Inc. nor the names of its\n// contributors may be used to endorse or promote products derived from\n// this software without specific prior written permission.\n//\n// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n// \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n\n// Type and function utilities for implementing parameterized tests.\n\n// GOOGLETEST_CM0001 DO NOT DELETE\n\n#ifndef GOOGLETEST_INCLUDE_GTEST_INTERNAL_GTEST_PARAM_UTIL_H_\n#define GOOGLETEST_INCLUDE_GTEST_INTERNAL_GTEST_PARAM_UTIL_H_\n\n#include <ctype.h>\n\n#include <cassert>\n#include <iterator>\n#include <memory>\n#include <set>\n#include <tuple>\n#include <type_traits>\n#include <utility>\n#include <vector>\n\n#include \"gtest/internal/gtest-internal.h\"\n#include \"gtest/internal/gtest-port.h\"\n#include \"gtest/gtest-printers.h\"\n#include \"gtest/gtest-test-part.h\"\n\nnamespace testing {\n// Input to a parameterized test name generator, describing a test parameter.\n// Consists of the parameter value and the integer parameter index.\ntemplate <class ParamType>\nstruct TestParamInfo {\n  TestParamInfo(const ParamType& a_param, size_t an_index) :\n    param(a_param),\n    index(an_index) {}\n  ParamType param;\n  size_t index;\n};\n\n// A builtin parameterized test name generator which returns the result of\n// testing::PrintToString.\nstruct PrintToStringParamName {\n  template <class ParamType>\n  std::string operator()(const TestParamInfo<ParamType>& info) const {\n    return PrintToString(info.param);\n  }\n};\n\nnamespace internal {\n\n// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE.\n// Utility Functions\n\n// Outputs a message explaining invalid registration of different\n// fixture class for the same test suite. This may happen when\n// TEST_P macro is used to define two tests with the same name\n// but in different namespaces.\nGTEST_API_ void ReportInvalidTestSuiteType(const char* test_suite_name,\n                                           CodeLocation code_location);\n\ntemplate <typename> class ParamGeneratorInterface;\ntemplate <typename> class ParamGenerator;\n\n// Interface for iterating over elements provided by an implementation\n// of ParamGeneratorInterface<T>.\ntemplate <typename T>\nclass ParamIteratorInterface {\n public:\n  virtual ~ParamIteratorInterface() {}\n  // A pointer to the base generator instance.\n  // Used only for the purposes of iterator comparison\n  // to make sure that two iterators belong to the same generator.\n  virtual const ParamGeneratorInterface<T>* BaseGenerator() const = 0;\n  // Advances iterator to point to the next element\n  // provided by the generator. The caller is responsible\n  // for not calling Advance() on an iterator equal to\n  // BaseGenerator()->End().\n  virtual void Advance() = 0;\n  // Clones the iterator object. Used for implementing copy semantics\n  // of ParamIterator<T>.\n  virtual ParamIteratorInterface* Clone() const = 0;\n  // Dereferences the current iterator and provides (read-only) access\n  // to the pointed value. It is the caller's responsibility not to call\n  // Current() on an iterator equal to BaseGenerator()->End().\n  // Used for implementing ParamGenerator<T>::operator*().\n  virtual const T* Current() const = 0;\n  // Determines whether the given iterator and other point to the same\n  // element in the sequence generated by the generator.\n  // Used for implementing ParamGenerator<T>::operator==().\n  virtual bool Equals(const ParamIteratorInterface& other) const = 0;\n};\n\n// Class iterating over elements provided by an implementation of\n// ParamGeneratorInterface<T>. It wraps ParamIteratorInterface<T>\n// and implements the const forward iterator concept.\ntemplate <typename T>\nclass ParamIterator {\n public:\n  typedef T value_type;\n  typedef const T& reference;\n  typedef ptrdiff_t difference_type;\n\n  // ParamIterator assumes ownership of the impl_ pointer.\n  ParamIterator(const ParamIterator& other) : impl_(other.impl_->Clone()) {}\n  ParamIterator& operator=(const ParamIterator& other) {\n    if (this != &other)\n      impl_.reset(other.impl_->Clone());\n    return *this;\n  }\n\n  const T& operator*() const { return *impl_->Current(); }\n  const T* operator->() const { return impl_->Current(); }\n  // Prefix version of operator++.\n  ParamIterator& operator++() {\n    impl_->Advance();\n    return *this;\n  }\n  // Postfix version of operator++.\n  ParamIterator operator++(int /*unused*/) {\n    ParamIteratorInterface<T>* clone = impl_->Clone();\n    impl_->Advance();\n    return ParamIterator(clone);\n  }\n  bool operator==(const ParamIterator& other) const {\n    return impl_.get() == other.impl_.get() || impl_->Equals(*other.impl_);\n  }\n  bool operator!=(const ParamIterator& other) const {\n    return !(*this == other);\n  }\n\n private:\n  friend class ParamGenerator<T>;\n  explicit ParamIterator(ParamIteratorInterface<T>* impl) : impl_(impl) {}\n  std::unique_ptr<ParamIteratorInterface<T> > impl_;\n};\n\n// ParamGeneratorInterface<T> is the binary interface to access generators\n// defined in other translation units.\ntemplate <typename T>\nclass ParamGeneratorInterface {\n public:\n  typedef T ParamType;\n\n  virtual ~ParamGeneratorInterface() {}\n\n  // Generator interface definition\n  virtual ParamIteratorInterface<T>* Begin() const = 0;\n  virtual ParamIteratorInterface<T>* End() const = 0;\n};\n\n// Wraps ParamGeneratorInterface<T> and provides general generator syntax\n// compatible with the STL Container concept.\n// This class implements copy initialization semantics and the contained\n// ParamGeneratorInterface<T> instance is shared among all copies\n// of the original object. This is possible because that instance is immutable.\ntemplate<typename T>\nclass ParamGenerator {\n public:\n  typedef ParamIterator<T> iterator;\n\n  explicit ParamGenerator(ParamGeneratorInterface<T>* impl) : impl_(impl) {}\n  ParamGenerator(const ParamGenerator& other) : impl_(other.impl_) {}\n\n  ParamGenerator& operator=(const ParamGenerator& other) {\n    impl_ = other.impl_;\n    return *this;\n  }\n\n  iterator begin() const { return iterator(impl_->Begin()); }\n  iterator end() const { return iterator(impl_->End()); }\n\n private:\n  std::shared_ptr<const ParamGeneratorInterface<T> > impl_;\n};\n\n// Generates values from a range of two comparable values. Can be used to\n// generate sequences of user-defined types that implement operator+() and\n// operator<().\n// This class is used in the Range() function.\ntemplate <typename T, typename IncrementT>\nclass RangeGenerator : public ParamGeneratorInterface<T> {\n public:\n  RangeGenerator(T begin, T end, IncrementT step)\n      : begin_(begin), end_(end),\n        step_(step), end_index_(CalculateEndIndex(begin, end, step)) {}\n  ~RangeGenerator() override {}\n\n  ParamIteratorInterface<T>* Begin() const override {\n    return new Iterator(this, begin_, 0, step_);\n  }\n  ParamIteratorInterface<T>* End() const override {\n    return new Iterator(this, end_, end_index_, step_);\n  }\n\n private:\n  class Iterator : public ParamIteratorInterface<T> {\n   public:\n    Iterator(const ParamGeneratorInterface<T>* base, T value, int index,\n             IncrementT step)\n        : base_(base), value_(value), index_(index), step_(step) {}\n    ~Iterator() override {}\n\n    const ParamGeneratorInterface<T>* BaseGenerator() const override {\n      return base_;\n    }\n    void Advance() override {\n      value_ = static_cast<T>(value_ + step_);\n      index_++;\n    }\n    ParamIteratorInterface<T>* Clone() const override {\n      return new Iterator(*this);\n    }\n    const T* Current() const override { return &value_; }\n    bool Equals(const ParamIteratorInterface<T>& other) const override {\n      // Having the same base generator guarantees that the other\n      // iterator is of the same type and we can downcast.\n      GTEST_CHECK_(BaseGenerator() == other.BaseGenerator())\n          << \"The program attempted to compare iterators \"\n          << \"from different generators.\" << std::endl;\n      const int other_index =\n          CheckedDowncastToActualType<const Iterator>(&other)->index_;\n      return index_ == other_index;\n    }\n\n   private:\n    Iterator(const Iterator& other)\n        : ParamIteratorInterface<T>(),\n          base_(other.base_), value_(other.value_), index_(other.index_),\n          step_(other.step_) {}\n\n    // No implementation - assignment is unsupported.\n    void operator=(const Iterator& other);\n\n    const ParamGeneratorInterface<T>* const base_;\n    T value_;\n    int index_;\n    const IncrementT step_;\n  };  // class RangeGenerator::Iterator\n\n  static int CalculateEndIndex(const T& begin,\n                               const T& end,\n                               const IncrementT& step) {\n    int end_index = 0;\n    for (T i = begin; i < end; i = static_cast<T>(i + step))\n      end_index++;\n    return end_index;\n  }\n\n  // No implementation - assignment is unsupported.\n  void operator=(const RangeGenerator& other);\n\n  const T begin_;\n  const T end_;\n  const IncrementT step_;\n  // The index for the end() iterator. All the elements in the generated\n  // sequence are indexed (0-based) to aid iterator comparison.\n  const int end_index_;\n};  // class RangeGenerator\n\n\n// Generates values from a pair of STL-style iterators. Used in the\n// ValuesIn() function. The elements are copied from the source range\n// since the source can be located on the stack, and the generator\n// is likely to persist beyond that stack frame.\ntemplate <typename T>\nclass ValuesInIteratorRangeGenerator : public ParamGeneratorInterface<T> {\n public:\n  template <typename ForwardIterator>\n  ValuesInIteratorRangeGenerator(ForwardIterator begin, ForwardIterator end)\n      : container_(begin, end) {}\n  ~ValuesInIteratorRangeGenerator() override {}\n\n  ParamIteratorInterface<T>* Begin() const override {\n    return new Iterator(this, container_.begin());\n  }\n  ParamIteratorInterface<T>* End() const override {\n    return new Iterator(this, container_.end());\n  }\n\n private:\n  typedef typename ::std::vector<T> ContainerType;\n\n  class Iterator : public ParamIteratorInterface<T> {\n   public:\n    Iterator(const ParamGeneratorInterface<T>* base,\n             typename ContainerType::const_iterator iterator)\n        : base_(base), iterator_(iterator) {}\n    ~Iterator() override {}\n\n    const ParamGeneratorInterface<T>* BaseGenerator() const override {\n      return base_;\n    }\n    void Advance() override {\n      ++iterator_;\n      value_.reset();\n    }\n    ParamIteratorInterface<T>* Clone() const override {\n      return new Iterator(*this);\n    }\n    // We need to use cached value referenced by iterator_ because *iterator_\n    // can return a temporary object (and of type other then T), so just\n    // having \"return &*iterator_;\" doesn't work.\n    // value_ is updated here and not in Advance() because Advance()\n    // can advance iterator_ beyond the end of the range, and we cannot\n    // detect that fact. The client code, on the other hand, is\n    // responsible for not calling Current() on an out-of-range iterator.\n    const T* Current() const override {\n      if (value_.get() == nullptr) value_.reset(new T(*iterator_));\n      return value_.get();\n    }\n    bool Equals(const ParamIteratorInterface<T>& other) const override {\n      // Having the same base generator guarantees that the other\n      // iterator is of the same type and we can downcast.\n      GTEST_CHECK_(BaseGenerator() == other.BaseGenerator())\n          << \"The program attempted to compare iterators \"\n          << \"from different generators.\" << std::endl;\n      return iterator_ ==\n          CheckedDowncastToActualType<const Iterator>(&other)->iterator_;\n    }\n\n   private:\n    Iterator(const Iterator& other)\n          // The explicit constructor call suppresses a false warning\n          // emitted by gcc when supplied with the -Wextra option.\n        : ParamIteratorInterface<T>(),\n          base_(other.base_),\n          iterator_(other.iterator_) {}\n\n    const ParamGeneratorInterface<T>* const base_;\n    typename ContainerType::const_iterator iterator_;\n    // A cached value of *iterator_. We keep it here to allow access by\n    // pointer in the wrapping iterator's operator->().\n    // value_ needs to be mutable to be accessed in Current().\n    // Use of std::unique_ptr helps manage cached value's lifetime,\n    // which is bound by the lifespan of the iterator itself.\n    mutable std::unique_ptr<const T> value_;\n  };  // class ValuesInIteratorRangeGenerator::Iterator\n\n  // No implementation - assignment is unsupported.\n  void operator=(const ValuesInIteratorRangeGenerator& other);\n\n  const ContainerType container_;\n};  // class ValuesInIteratorRangeGenerator\n\n// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE.\n//\n// Default parameterized test name generator, returns a string containing the\n// integer test parameter index.\ntemplate <class ParamType>\nstd::string DefaultParamName(const TestParamInfo<ParamType>& info) {\n  Message name_stream;\n  name_stream << info.index;\n  return name_stream.GetString();\n}\n\ntemplate <typename T = int>\nvoid TestNotEmpty() {\n  static_assert(sizeof(T) == 0, \"Empty arguments are not allowed.\");\n}\ntemplate <typename T = int>\nvoid TestNotEmpty(const T&) {}\n\n// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE.\n//\n// Stores a parameter value and later creates tests parameterized with that\n// value.\ntemplate <class TestClass>\nclass ParameterizedTestFactory : public TestFactoryBase {\n public:\n  typedef typename TestClass::ParamType ParamType;\n  explicit ParameterizedTestFactory(ParamType parameter) :\n      parameter_(parameter) {}\n  Test* CreateTest() override {\n    TestClass::SetParam(&parameter_);\n    return new TestClass();\n  }\n\n private:\n  const ParamType parameter_;\n\n  GTEST_DISALLOW_COPY_AND_ASSIGN_(ParameterizedTestFactory);\n};\n\n// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE.\n//\n// TestMetaFactoryBase is a base class for meta-factories that create\n// test factories for passing into MakeAndRegisterTestInfo function.\ntemplate <class ParamType>\nclass TestMetaFactoryBase {\n public:\n  virtual ~TestMetaFactoryBase() {}\n\n  virtual TestFactoryBase* CreateTestFactory(ParamType parameter) = 0;\n};\n\n// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE.\n//\n// TestMetaFactory creates test factories for passing into\n// MakeAndRegisterTestInfo function. Since MakeAndRegisterTestInfo receives\n// ownership of test factory pointer, same factory object cannot be passed\n// into that method twice. But ParameterizedTestSuiteInfo is going to call\n// it for each Test/Parameter value combination. Thus it needs meta factory\n// creator class.\ntemplate <class TestSuite>\nclass TestMetaFactory\n    : public TestMetaFactoryBase<typename TestSuite::ParamType> {\n public:\n  using ParamType = typename TestSuite::ParamType;\n\n  TestMetaFactory() {}\n\n  TestFactoryBase* CreateTestFactory(ParamType parameter) override {\n    return new ParameterizedTestFactory<TestSuite>(parameter);\n  }\n\n private:\n  GTEST_DISALLOW_COPY_AND_ASSIGN_(TestMetaFactory);\n};\n\n// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE.\n//\n// ParameterizedTestSuiteInfoBase is a generic interface\n// to ParameterizedTestSuiteInfo classes. ParameterizedTestSuiteInfoBase\n// accumulates test information provided by TEST_P macro invocations\n// and generators provided by INSTANTIATE_TEST_SUITE_P macro invocations\n// and uses that information to register all resulting test instances\n// in RegisterTests method. The ParameterizeTestSuiteRegistry class holds\n// a collection of pointers to the ParameterizedTestSuiteInfo objects\n// and calls RegisterTests() on each of them when asked.\nclass ParameterizedTestSuiteInfoBase {\n public:\n  virtual ~ParameterizedTestSuiteInfoBase() {}\n\n  // Base part of test suite name for display purposes.\n  virtual const std::string& GetTestSuiteName() const = 0;\n  // Test suite id to verify identity.\n  virtual TypeId GetTestSuiteTypeId() const = 0;\n  // UnitTest class invokes this method to register tests in this\n  // test suite right before running them in RUN_ALL_TESTS macro.\n  // This method should not be called more than once on any single\n  // instance of a ParameterizedTestSuiteInfoBase derived class.\n  virtual void RegisterTests() = 0;\n\n protected:\n  ParameterizedTestSuiteInfoBase() {}\n\n private:\n  GTEST_DISALLOW_COPY_AND_ASSIGN_(ParameterizedTestSuiteInfoBase);\n};\n\n// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE.\n//\n// Report a the name of a test_suit as safe to ignore\n// as the side effect of construction of this type.\nstruct GTEST_API_ MarkAsIgnored {\n  explicit MarkAsIgnored(const char* test_suite);\n};\n\nGTEST_API_ void InsertSyntheticTestCase(const std::string& name,\n                                        CodeLocation location, bool has_test_p);\n\n// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE.\n//\n// ParameterizedTestSuiteInfo accumulates tests obtained from TEST_P\n// macro invocations for a particular test suite and generators\n// obtained from INSTANTIATE_TEST_SUITE_P macro invocations for that\n// test suite. It registers tests with all values generated by all\n// generators when asked.\ntemplate <class TestSuite>\nclass ParameterizedTestSuiteInfo : public ParameterizedTestSuiteInfoBase {\n public:\n  // ParamType and GeneratorCreationFunc are private types but are required\n  // for declarations of public methods AddTestPattern() and\n  // AddTestSuiteInstantiation().\n  using ParamType = typename TestSuite::ParamType;\n  // A function that returns an instance of appropriate generator type.\n  typedef ParamGenerator<ParamType>(GeneratorCreationFunc)();\n  using ParamNameGeneratorFunc = std::string(const TestParamInfo<ParamType>&);\n\n  explicit ParameterizedTestSuiteInfo(const char* name,\n                                      CodeLocation code_location)\n      : test_suite_name_(name), code_location_(code_location) {}\n\n  // Test suite base name for display purposes.\n  const std::string& GetTestSuiteName() const override {\n    return test_suite_name_;\n  }\n  // Test suite id to verify identity.\n  TypeId GetTestSuiteTypeId() const override { return GetTypeId<TestSuite>(); }\n  // TEST_P macro uses AddTestPattern() to record information\n  // about a single test in a LocalTestInfo structure.\n  // test_suite_name is the base name of the test suite (without invocation\n  // prefix). test_base_name is the name of an individual test without\n  // parameter index. For the test SequenceA/FooTest.DoBar/1 FooTest is\n  // test suite base name and DoBar is test base name.\n  void AddTestPattern(const char* test_suite_name, const char* test_base_name,\n                      TestMetaFactoryBase<ParamType>* meta_factory,\n                      CodeLocation code_location) {\n    tests_.push_back(std::shared_ptr<TestInfo>(new TestInfo(\n        test_suite_name, test_base_name, meta_factory, code_location)));\n  }\n  // INSTANTIATE_TEST_SUITE_P macro uses AddGenerator() to record information\n  // about a generator.\n  int AddTestSuiteInstantiation(const std::string& instantiation_name,\n                                GeneratorCreationFunc* func,\n                                ParamNameGeneratorFunc* name_func,\n                                const char* file, int line) {\n    instantiations_.push_back(\n        InstantiationInfo(instantiation_name, func, name_func, file, line));\n    return 0;  // Return value used only to run this method in namespace scope.\n  }\n  // UnitTest class invokes this method to register tests in this test suite\n  // right before running tests in RUN_ALL_TESTS macro.\n  // This method should not be called more than once on any single\n  // instance of a ParameterizedTestSuiteInfoBase derived class.\n  // UnitTest has a guard to prevent from calling this method more than once.\n  void RegisterTests() override {\n    bool generated_instantiations = false;\n\n    for (typename TestInfoContainer::iterator test_it = tests_.begin();\n         test_it != tests_.end(); ++test_it) {\n      std::shared_ptr<TestInfo> test_info = *test_it;\n      for (typename InstantiationContainer::iterator gen_it =\n               instantiations_.begin(); gen_it != instantiations_.end();\n               ++gen_it) {\n        const std::string& instantiation_name = gen_it->name;\n        ParamGenerator<ParamType> generator((*gen_it->generator)());\n        ParamNameGeneratorFunc* name_func = gen_it->name_func;\n        const char* file = gen_it->file;\n        int line = gen_it->line;\n\n        std::string test_suite_name;\n        if ( !instantiation_name.empty() )\n          test_suite_name = instantiation_name + \"/\";\n        test_suite_name += test_info->test_suite_base_name;\n\n        size_t i = 0;\n        std::set<std::string> test_param_names;\n        for (typename ParamGenerator<ParamType>::iterator param_it =\n                 generator.begin();\n             param_it != generator.end(); ++param_it, ++i) {\n          generated_instantiations = true;\n\n          Message test_name_stream;\n\n          std::string param_name = name_func(\n              TestParamInfo<ParamType>(*param_it, i));\n\n          GTEST_CHECK_(IsValidParamName(param_name))\n              << \"Parameterized test name '\" << param_name\n              << \"' is invalid, in \" << file\n              << \" line \" << line << std::endl;\n\n          GTEST_CHECK_(test_param_names.count(param_name) == 0)\n              << \"Duplicate parameterized test name '\" << param_name\n              << \"', in \" << file << \" line \" << line << std::endl;\n\n          test_param_names.insert(param_name);\n\n          if (!test_info->test_base_name.empty()) {\n            test_name_stream << test_info->test_base_name << \"/\";\n          }\n          test_name_stream << param_name;\n          MakeAndRegisterTestInfo(\n              test_suite_name.c_str(), test_name_stream.GetString().c_str(),\n              nullptr,  // No type parameter.\n              PrintToString(*param_it).c_str(), test_info->code_location,\n              GetTestSuiteTypeId(),\n              SuiteApiResolver<TestSuite>::GetSetUpCaseOrSuite(file, line),\n              SuiteApiResolver<TestSuite>::GetTearDownCaseOrSuite(file, line),\n              test_info->test_meta_factory->CreateTestFactory(*param_it));\n        }  // for param_it\n      }  // for gen_it\n    }  // for test_it\n\n    if (!generated_instantiations) {\n      // There are no generaotrs, or they all generate nothing ...\n      InsertSyntheticTestCase(GetTestSuiteName(), code_location_,\n                              !tests_.empty());\n    }\n  }    // RegisterTests\n\n private:\n  // LocalTestInfo structure keeps information about a single test registered\n  // with TEST_P macro.\n  struct TestInfo {\n    TestInfo(const char* a_test_suite_base_name, const char* a_test_base_name,\n             TestMetaFactoryBase<ParamType>* a_test_meta_factory,\n             CodeLocation a_code_location)\n        : test_suite_base_name(a_test_suite_base_name),\n          test_base_name(a_test_base_name),\n          test_meta_factory(a_test_meta_factory),\n          code_location(a_code_location) {}\n\n    const std::string test_suite_base_name;\n    const std::string test_base_name;\n    const std::unique_ptr<TestMetaFactoryBase<ParamType> > test_meta_factory;\n    const CodeLocation code_location;\n  };\n  using TestInfoContainer = ::std::vector<std::shared_ptr<TestInfo> >;\n  // Records data received from INSTANTIATE_TEST_SUITE_P macros:\n  //  <Instantiation name, Sequence generator creation function,\n  //     Name generator function, Source file, Source line>\n  struct InstantiationInfo {\n      InstantiationInfo(const std::string &name_in,\n                        GeneratorCreationFunc* generator_in,\n                        ParamNameGeneratorFunc* name_func_in,\n                        const char* file_in,\n                        int line_in)\n          : name(name_in),\n            generator(generator_in),\n            name_func(name_func_in),\n            file(file_in),\n            line(line_in) {}\n\n      std::string name;\n      GeneratorCreationFunc* generator;\n      ParamNameGeneratorFunc* name_func;\n      const char* file;\n      int line;\n  };\n  typedef ::std::vector<InstantiationInfo> InstantiationContainer;\n\n  static bool IsValidParamName(const std::string& name) {\n    // Check for empty string\n    if (name.empty())\n      return false;\n\n    // Check for invalid characters\n    for (std::string::size_type index = 0; index < name.size(); ++index) {\n      if (!IsAlNum(name[index]) && name[index] != '_')\n        return false;\n    }\n\n    return true;\n  }\n\n  const std::string test_suite_name_;\n  CodeLocation code_location_;\n  TestInfoContainer tests_;\n  InstantiationContainer instantiations_;\n\n  GTEST_DISALLOW_COPY_AND_ASSIGN_(ParameterizedTestSuiteInfo);\n};  // class ParameterizedTestSuiteInfo\n\n//  Legacy API is deprecated but still available\n#ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_\ntemplate <class TestCase>\nusing ParameterizedTestCaseInfo = ParameterizedTestSuiteInfo<TestCase>;\n#endif  //  GTEST_REMOVE_LEGACY_TEST_CASEAPI_\n\n// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE.\n//\n// ParameterizedTestSuiteRegistry contains a map of\n// ParameterizedTestSuiteInfoBase classes accessed by test suite names. TEST_P\n// and INSTANTIATE_TEST_SUITE_P macros use it to locate their corresponding\n// ParameterizedTestSuiteInfo descriptors.\nclass ParameterizedTestSuiteRegistry {\n public:\n  ParameterizedTestSuiteRegistry() {}\n  ~ParameterizedTestSuiteRegistry() {\n    for (auto& test_suite_info : test_suite_infos_) {\n      delete test_suite_info;\n    }\n  }\n\n  // Looks up or creates and returns a structure containing information about\n  // tests and instantiations of a particular test suite.\n  template <class TestSuite>\n  ParameterizedTestSuiteInfo<TestSuite>* GetTestSuitePatternHolder(\n      const char* test_suite_name, CodeLocation code_location) {\n    ParameterizedTestSuiteInfo<TestSuite>* typed_test_info = nullptr;\n    for (auto& test_suite_info : test_suite_infos_) {\n      if (test_suite_info->GetTestSuiteName() == test_suite_name) {\n        if (test_suite_info->GetTestSuiteTypeId() != GetTypeId<TestSuite>()) {\n          // Complain about incorrect usage of Google Test facilities\n          // and terminate the program since we cannot guaranty correct\n          // test suite setup and tear-down in this case.\n          ReportInvalidTestSuiteType(test_suite_name, code_location);\n          posix::Abort();\n        } else {\n          // At this point we are sure that the object we found is of the same\n          // type we are looking for, so we downcast it to that type\n          // without further checks.\n          typed_test_info = CheckedDowncastToActualType<\n              ParameterizedTestSuiteInfo<TestSuite> >(test_suite_info);\n        }\n        break;\n      }\n    }\n    if (typed_test_info == nullptr) {\n      typed_test_info = new ParameterizedTestSuiteInfo<TestSuite>(\n          test_suite_name, code_location);\n      test_suite_infos_.push_back(typed_test_info);\n    }\n    return typed_test_info;\n  }\n  void RegisterTests() {\n    for (auto& test_suite_info : test_suite_infos_) {\n      test_suite_info->RegisterTests();\n    }\n  }\n//  Legacy API is deprecated but still available\n#ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_\n  template <class TestCase>\n  ParameterizedTestCaseInfo<TestCase>* GetTestCasePatternHolder(\n      const char* test_case_name, CodeLocation code_location) {\n    return GetTestSuitePatternHolder<TestCase>(test_case_name, code_location);\n  }\n\n#endif  //  GTEST_REMOVE_LEGACY_TEST_CASEAPI_\n\n private:\n  using TestSuiteInfoContainer = ::std::vector<ParameterizedTestSuiteInfoBase*>;\n\n  TestSuiteInfoContainer test_suite_infos_;\n\n  GTEST_DISALLOW_COPY_AND_ASSIGN_(ParameterizedTestSuiteRegistry);\n};\n\n// Keep track of what type-parameterized test suite are defined and\n// where as well as which are intatiated. This allows susequently\n// identifying suits that are defined but never used.\nclass TypeParameterizedTestSuiteRegistry {\n public:\n  // Add a suite definition\n  void RegisterTestSuite(const char* test_suite_name,\n                         CodeLocation code_location);\n\n  // Add an instantiation of a suit.\n  void RegisterInstantiation(const char* test_suite_name);\n\n  // For each suit repored as defined but not reported as instantiation,\n  // emit a test that reports that fact (configurably, as an error).\n  void CheckForInstantiations();\n\n private:\n  struct TypeParameterizedTestSuiteInfo {\n    explicit TypeParameterizedTestSuiteInfo(CodeLocation c)\n        : code_location(c), instantiated(false) {}\n\n    CodeLocation code_location;\n    bool instantiated;\n  };\n\n  std::map<std::string, TypeParameterizedTestSuiteInfo> suites_;\n};\n\n}  // namespace internal\n\n// Forward declarations of ValuesIn(), which is implemented in\n// include/gtest/gtest-param-test.h.\ntemplate <class Container>\ninternal::ParamGenerator<typename Container::value_type> ValuesIn(\n    const Container& container);\n\nnamespace internal {\n// Used in the Values() function to provide polymorphic capabilities.\n\n#ifdef _MSC_VER\n#pragma warning(push)\n#pragma warning(disable : 4100)\n#endif\n\ntemplate <typename... Ts>\nclass ValueArray {\n public:\n  explicit ValueArray(Ts... v) : v_(FlatTupleConstructTag{}, std::move(v)...) {}\n\n  template <typename T>\n  operator ParamGenerator<T>() const {  // NOLINT\n    return ValuesIn(MakeVector<T>(MakeIndexSequence<sizeof...(Ts)>()));\n  }\n\n private:\n  template <typename T, size_t... I>\n  std::vector<T> MakeVector(IndexSequence<I...>) const {\n    return std::vector<T>{static_cast<T>(v_.template Get<I>())...};\n  }\n\n  FlatTuple<Ts...> v_;\n};\n\n#ifdef _MSC_VER\n#pragma warning(pop)\n#endif\n\ntemplate <typename... T>\nclass CartesianProductGenerator\n    : public ParamGeneratorInterface<::std::tuple<T...>> {\n public:\n  typedef ::std::tuple<T...> ParamType;\n\n  CartesianProductGenerator(const std::tuple<ParamGenerator<T>...>& g)\n      : generators_(g) {}\n  ~CartesianProductGenerator() override {}\n\n  ParamIteratorInterface<ParamType>* Begin() const override {\n    return new Iterator(this, generators_, false);\n  }\n  ParamIteratorInterface<ParamType>* End() const override {\n    return new Iterator(this, generators_, true);\n  }\n\n private:\n  template <class I>\n  class IteratorImpl;\n  template <size_t... I>\n  class IteratorImpl<IndexSequence<I...>>\n      : public ParamIteratorInterface<ParamType> {\n   public:\n    IteratorImpl(const ParamGeneratorInterface<ParamType>* base,\n             const std::tuple<ParamGenerator<T>...>& generators, bool is_end)\n        : base_(base),\n          begin_(std::get<I>(generators).begin()...),\n          end_(std::get<I>(generators).end()...),\n          current_(is_end ? end_ : begin_) {\n      ComputeCurrentValue();\n    }\n    ~IteratorImpl() override {}\n\n    const ParamGeneratorInterface<ParamType>* BaseGenerator() const override {\n      return base_;\n    }\n    // Advance should not be called on beyond-of-range iterators\n    // so no component iterators must be beyond end of range, either.\n    void Advance() override {\n      assert(!AtEnd());\n      // Advance the last iterator.\n      ++std::get<sizeof...(T) - 1>(current_);\n      // if that reaches end, propagate that up.\n      AdvanceIfEnd<sizeof...(T) - 1>();\n      ComputeCurrentValue();\n    }\n    ParamIteratorInterface<ParamType>* Clone() const override {\n      return new IteratorImpl(*this);\n    }\n\n    const ParamType* Current() const override { return current_value_.get(); }\n\n    bool Equals(const ParamIteratorInterface<ParamType>& other) const override {\n      // Having the same base generator guarantees that the other\n      // iterator is of the same type and we can downcast.\n      GTEST_CHECK_(BaseGenerator() == other.BaseGenerator())\n          << \"The program attempted to compare iterators \"\n          << \"from different generators.\" << std::endl;\n      const IteratorImpl* typed_other =\n          CheckedDowncastToActualType<const IteratorImpl>(&other);\n\n      // We must report iterators equal if they both point beyond their\n      // respective ranges. That can happen in a variety of fashions,\n      // so we have to consult AtEnd().\n      if (AtEnd() && typed_other->AtEnd()) return true;\n\n      bool same = true;\n      bool dummy[] = {\n          (same = same && std::get<I>(current_) ==\n                              std::get<I>(typed_other->current_))...};\n      (void)dummy;\n      return same;\n    }\n\n   private:\n    template <size_t ThisI>\n    void AdvanceIfEnd() {\n      if (std::get<ThisI>(current_) != std::get<ThisI>(end_)) return;\n\n      bool last = ThisI == 0;\n      if (last) {\n        // We are done. Nothing else to propagate.\n        return;\n      }\n\n      constexpr size_t NextI = ThisI - (ThisI != 0);\n      std::get<ThisI>(current_) = std::get<ThisI>(begin_);\n      ++std::get<NextI>(current_);\n      AdvanceIfEnd<NextI>();\n    }\n\n    void ComputeCurrentValue() {\n      if (!AtEnd())\n        current_value_ = std::make_shared<ParamType>(*std::get<I>(current_)...);\n    }\n    bool AtEnd() const {\n      bool at_end = false;\n      bool dummy[] = {\n          (at_end = at_end || std::get<I>(current_) == std::get<I>(end_))...};\n      (void)dummy;\n      return at_end;\n    }\n\n    const ParamGeneratorInterface<ParamType>* const base_;\n    std::tuple<typename ParamGenerator<T>::iterator...> begin_;\n    std::tuple<typename ParamGenerator<T>::iterator...> end_;\n    std::tuple<typename ParamGenerator<T>::iterator...> current_;\n    std::shared_ptr<ParamType> current_value_;\n  };\n\n  using Iterator = IteratorImpl<typename MakeIndexSequence<sizeof...(T)>::type>;\n\n  std::tuple<ParamGenerator<T>...> generators_;\n};\n\ntemplate <class... Gen>\nclass CartesianProductHolder {\n public:\n  CartesianProductHolder(const Gen&... g) : generators_(g...) {}\n  template <typename... T>\n  operator ParamGenerator<::std::tuple<T...>>() const {\n    return ParamGenerator<::std::tuple<T...>>(\n        new CartesianProductGenerator<T...>(generators_));\n  }\n\n private:\n  std::tuple<Gen...> generators_;\n};\n\n}  // namespace internal\n}  // namespace testing\n\n#endif  // GOOGLETEST_INCLUDE_GTEST_INTERNAL_GTEST_PARAM_UTIL_H_\n"
  },
  {
    "path": "test/gtest/include/gtest/internal/gtest-port-arch.h",
    "content": "// Copyright 2015, Google Inc.\n// All rights reserved.\n//\n// Redistribution and use in source and binary forms, with or without\n// modification, are permitted provided that the following conditions are\n// met:\n//\n//     * Redistributions of source code must retain the above copyright\n// notice, this list of conditions and the following disclaimer.\n//     * Redistributions in binary form must reproduce the above\n// copyright notice, this list of conditions and the following disclaimer\n// in the documentation and/or other materials provided with the\n// distribution.\n//     * Neither the name of Google Inc. nor the names of its\n// contributors may be used to endorse or promote products derived from\n// this software without specific prior written permission.\n//\n// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n// \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n//\n// The Google C++ Testing and Mocking Framework (Google Test)\n//\n// This header file defines the GTEST_OS_* macro.\n// It is separate from gtest-port.h so that custom/gtest-port.h can include it.\n\n#ifndef GOOGLETEST_INCLUDE_GTEST_INTERNAL_GTEST_PORT_ARCH_H_\n#define GOOGLETEST_INCLUDE_GTEST_INTERNAL_GTEST_PORT_ARCH_H_\n\n// Determines the platform on which Google Test is compiled.\n#ifdef __CYGWIN__\n# define GTEST_OS_CYGWIN 1\n# elif defined(__MINGW__) || defined(__MINGW32__) || defined(__MINGW64__)\n#  define GTEST_OS_WINDOWS_MINGW 1\n#  define GTEST_OS_WINDOWS 1\n#elif defined _WIN32\n# define GTEST_OS_WINDOWS 1\n# ifdef _WIN32_WCE\n#  define GTEST_OS_WINDOWS_MOBILE 1\n# elif defined(WINAPI_FAMILY)\n#  include <winapifamily.h>\n#  if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP)\n#   define GTEST_OS_WINDOWS_DESKTOP 1\n#  elif WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_PHONE_APP)\n#   define GTEST_OS_WINDOWS_PHONE 1\n#  elif WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_APP)\n#   define GTEST_OS_WINDOWS_RT 1\n#  elif WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_TV_TITLE)\n#   define GTEST_OS_WINDOWS_PHONE 1\n#   define GTEST_OS_WINDOWS_TV_TITLE 1\n#  else\n    // WINAPI_FAMILY defined but no known partition matched.\n    // Default to desktop.\n#   define GTEST_OS_WINDOWS_DESKTOP 1\n#  endif\n# else\n#  define GTEST_OS_WINDOWS_DESKTOP 1\n# endif  // _WIN32_WCE\n#elif defined __OS2__\n# define GTEST_OS_OS2 1\n#elif defined __APPLE__\n# define GTEST_OS_MAC 1\n# include <TargetConditionals.h>\n# if TARGET_OS_IPHONE\n#  define GTEST_OS_IOS 1\n# endif\n#elif defined __DragonFly__\n# define GTEST_OS_DRAGONFLY 1\n#elif defined __FreeBSD__\n# define GTEST_OS_FREEBSD 1\n#elif defined __Fuchsia__\n# define GTEST_OS_FUCHSIA 1\n#elif defined(__GLIBC__) && defined(__FreeBSD_kernel__)\n# define GTEST_OS_GNU_KFREEBSD 1\n#elif defined __linux__\n# define GTEST_OS_LINUX 1\n# if defined __ANDROID__\n#  define GTEST_OS_LINUX_ANDROID 1\n# endif\n#elif defined __MVS__\n# define GTEST_OS_ZOS 1\n#elif defined(__sun) && defined(__SVR4)\n# define GTEST_OS_SOLARIS 1\n#elif defined(_AIX)\n# define GTEST_OS_AIX 1\n#elif defined(__hpux)\n# define GTEST_OS_HPUX 1\n#elif defined __native_client__\n# define GTEST_OS_NACL 1\n#elif defined __NetBSD__\n# define GTEST_OS_NETBSD 1\n#elif defined __OpenBSD__\n# define GTEST_OS_OPENBSD 1\n#elif defined __QNX__\n# define GTEST_OS_QNX 1\n#elif defined(__HAIKU__)\n#define GTEST_OS_HAIKU 1\n#elif defined ESP8266\n#define GTEST_OS_ESP8266 1\n#elif defined ESP32\n#define GTEST_OS_ESP32 1\n#elif defined(__XTENSA__)\n#define GTEST_OS_XTENSA 1\n#endif  // __CYGWIN__\n\n#endif  // GOOGLETEST_INCLUDE_GTEST_INTERNAL_GTEST_PORT_ARCH_H_\n"
  },
  {
    "path": "test/gtest/include/gtest/internal/gtest-port.h",
    "content": "// Copyright 2005, Google Inc.\n// All rights reserved.\n//\n// Redistribution and use in source and binary forms, with or without\n// modification, are permitted provided that the following conditions are\n// met:\n//\n//     * Redistributions of source code must retain the above copyright\n// notice, this list of conditions and the following disclaimer.\n//     * Redistributions in binary form must reproduce the above\n// copyright notice, this list of conditions and the following disclaimer\n// in the documentation and/or other materials provided with the\n// distribution.\n//     * Neither the name of Google Inc. nor the names of its\n// contributors may be used to endorse or promote products derived from\n// this software without specific prior written permission.\n//\n// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n// \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n//\n// Low-level types and utilities for porting Google Test to various\n// platforms.  All macros ending with _ and symbols defined in an\n// internal namespace are subject to change without notice.  Code\n// outside Google Test MUST NOT USE THEM DIRECTLY.  Macros that don't\n// end with _ are part of Google Test's public API and can be used by\n// code outside Google Test.\n//\n// This file is fundamental to Google Test.  All other Google Test source\n// files are expected to #include this.  Therefore, it cannot #include\n// any other Google Test header.\n\n// GOOGLETEST_CM0001 DO NOT DELETE\n\n#ifndef GOOGLETEST_INCLUDE_GTEST_INTERNAL_GTEST_PORT_H_\n#define GOOGLETEST_INCLUDE_GTEST_INTERNAL_GTEST_PORT_H_\n\n// Environment-describing macros\n// -----------------------------\n//\n// Google Test can be used in many different environments.  Macros in\n// this section tell Google Test what kind of environment it is being\n// used in, such that Google Test can provide environment-specific\n// features and implementations.\n//\n// Google Test tries to automatically detect the properties of its\n// environment, so users usually don't need to worry about these\n// macros.  However, the automatic detection is not perfect.\n// Sometimes it's necessary for a user to define some of the following\n// macros in the build script to override Google Test's decisions.\n//\n// If the user doesn't define a macro in the list, Google Test will\n// provide a default definition.  After this header is #included, all\n// macros in this list will be defined to either 1 or 0.\n//\n// Notes to maintainers:\n//   - Each macro here is a user-tweakable knob; do not grow the list\n//     lightly.\n//   - Use #if to key off these macros.  Don't use #ifdef or \"#if\n//     defined(...)\", which will not work as these macros are ALWAYS\n//     defined.\n//\n//   GTEST_HAS_CLONE          - Define it to 1/0 to indicate that clone(2)\n//                              is/isn't available.\n//   GTEST_HAS_EXCEPTIONS     - Define it to 1/0 to indicate that exceptions\n//                              are enabled.\n//   GTEST_HAS_POSIX_RE       - Define it to 1/0 to indicate that POSIX regular\n//                              expressions are/aren't available.\n//   GTEST_HAS_PTHREAD        - Define it to 1/0 to indicate that <pthread.h>\n//                              is/isn't available.\n//   GTEST_HAS_RTTI           - Define it to 1/0 to indicate that RTTI is/isn't\n//                              enabled.\n//   GTEST_HAS_STD_WSTRING    - Define it to 1/0 to indicate that\n//                              std::wstring does/doesn't work (Google Test can\n//                              be used where std::wstring is unavailable).\n//   GTEST_HAS_SEH            - Define it to 1/0 to indicate whether the\n//                              compiler supports Microsoft's \"Structured\n//                              Exception Handling\".\n//   GTEST_HAS_STREAM_REDIRECTION\n//                            - Define it to 1/0 to indicate whether the\n//                              platform supports I/O stream redirection using\n//                              dup() and dup2().\n//   GTEST_LINKED_AS_SHARED_LIBRARY\n//                            - Define to 1 when compiling tests that use\n//                              Google Test as a shared library (known as\n//                              DLL on Windows).\n//   GTEST_CREATE_SHARED_LIBRARY\n//                            - Define to 1 when compiling Google Test itself\n//                              as a shared library.\n//   GTEST_DEFAULT_DEATH_TEST_STYLE\n//                            - The default value of --gtest_death_test_style.\n//                              The legacy default has been \"fast\" in the open\n//                              source version since 2008. The recommended value\n//                              is \"threadsafe\", and can be set in\n//                              custom/gtest-port.h.\n\n// Platform-indicating macros\n// --------------------------\n//\n// Macros indicating the platform on which Google Test is being used\n// (a macro is defined to 1 if compiled on the given platform;\n// otherwise UNDEFINED -- it's never defined to 0.).  Google Test\n// defines these macros automatically.  Code outside Google Test MUST\n// NOT define them.\n//\n//   GTEST_OS_AIX      - IBM AIX\n//   GTEST_OS_CYGWIN   - Cygwin\n//   GTEST_OS_DRAGONFLY - DragonFlyBSD\n//   GTEST_OS_FREEBSD  - FreeBSD\n//   GTEST_OS_FUCHSIA  - Fuchsia\n//   GTEST_OS_GNU_KFREEBSD - GNU/kFreeBSD\n//   GTEST_OS_HAIKU    - Haiku\n//   GTEST_OS_HPUX     - HP-UX\n//   GTEST_OS_LINUX    - Linux\n//     GTEST_OS_LINUX_ANDROID - Google Android\n//   GTEST_OS_MAC      - Mac OS X\n//     GTEST_OS_IOS    - iOS\n//   GTEST_OS_NACL     - Google Native Client (NaCl)\n//   GTEST_OS_NETBSD   - NetBSD\n//   GTEST_OS_OPENBSD  - OpenBSD\n//   GTEST_OS_OS2      - OS/2\n//   GTEST_OS_QNX      - QNX\n//   GTEST_OS_SOLARIS  - Sun Solaris\n//   GTEST_OS_WINDOWS  - Windows (Desktop, MinGW, or Mobile)\n//     GTEST_OS_WINDOWS_DESKTOP  - Windows Desktop\n//     GTEST_OS_WINDOWS_MINGW    - MinGW\n//     GTEST_OS_WINDOWS_MOBILE   - Windows Mobile\n//     GTEST_OS_WINDOWS_PHONE    - Windows Phone\n//     GTEST_OS_WINDOWS_RT       - Windows Store App/WinRT\n//   GTEST_OS_ZOS      - z/OS\n//\n// Among the platforms, Cygwin, Linux, Mac OS X, and Windows have the\n// most stable support.  Since core members of the Google Test project\n// don't have access to other platforms, support for them may be less\n// stable.  If you notice any problems on your platform, please notify\n// googletestframework@googlegroups.com (patches for fixing them are\n// even more welcome!).\n//\n// It is possible that none of the GTEST_OS_* macros are defined.\n\n// Feature-indicating macros\n// -------------------------\n//\n// Macros indicating which Google Test features are available (a macro\n// is defined to 1 if the corresponding feature is supported;\n// otherwise UNDEFINED -- it's never defined to 0.).  Google Test\n// defines these macros automatically.  Code outside Google Test MUST\n// NOT define them.\n//\n// These macros are public so that portable tests can be written.\n// Such tests typically surround code using a feature with an #if\n// which controls that code.  For example:\n//\n// #if GTEST_HAS_DEATH_TEST\n//   EXPECT_DEATH(DoSomethingDeadly());\n// #endif\n//\n//   GTEST_HAS_DEATH_TEST   - death tests\n//   GTEST_HAS_TYPED_TEST   - typed tests\n//   GTEST_HAS_TYPED_TEST_P - type-parameterized tests\n//   GTEST_IS_THREADSAFE    - Google Test is thread-safe.\n//   GOOGLETEST_CM0007 DO NOT DELETE\n//   GTEST_USES_POSIX_RE    - enhanced POSIX regex is used. Do not confuse with\n//                            GTEST_HAS_POSIX_RE (see above) which users can\n//                            define themselves.\n//   GTEST_USES_SIMPLE_RE   - our own simple regex is used;\n//                            the above RE\\b(s) are mutually exclusive.\n\n// Misc public macros\n// ------------------\n//\n//   GTEST_FLAG(flag_name)  - references the variable corresponding to\n//                            the given Google Test flag.\n\n// Internal utilities\n// ------------------\n//\n// The following macros and utilities are for Google Test's INTERNAL\n// use only.  Code outside Google Test MUST NOT USE THEM DIRECTLY.\n//\n// Macros for basic C++ coding:\n//   GTEST_AMBIGUOUS_ELSE_BLOCKER_ - for disabling a gcc warning.\n//   GTEST_ATTRIBUTE_UNUSED_  - declares that a class' instances or a\n//                              variable don't have to be used.\n//   GTEST_DISALLOW_ASSIGN_   - disables copy operator=.\n//   GTEST_DISALLOW_COPY_AND_ASSIGN_ - disables copy ctor and operator=.\n//   GTEST_DISALLOW_MOVE_ASSIGN_   - disables move operator=.\n//   GTEST_DISALLOW_MOVE_AND_ASSIGN_ - disables move ctor and operator=.\n//   GTEST_MUST_USE_RESULT_   - declares that a function's result must be used.\n//   GTEST_INTENTIONAL_CONST_COND_PUSH_ - start code section where MSVC C4127 is\n//                                        suppressed (constant conditional).\n//   GTEST_INTENTIONAL_CONST_COND_POP_  - finish code section where MSVC C4127\n//                                        is suppressed.\n//   GTEST_INTERNAL_HAS_ANY - for enabling UniversalPrinter<std::any> or\n//                            UniversalPrinter<absl::any> specializations.\n//   GTEST_INTERNAL_HAS_OPTIONAL - for enabling UniversalPrinter<std::optional>\n//   or\n//                                 UniversalPrinter<absl::optional>\n//                                 specializations.\n//   GTEST_INTERNAL_HAS_STRING_VIEW - for enabling Matcher<std::string_view> or\n//                                    Matcher<absl::string_view>\n//                                    specializations.\n//   GTEST_INTERNAL_HAS_VARIANT - for enabling UniversalPrinter<std::variant> or\n//                                UniversalPrinter<absl::variant>\n//                                specializations.\n//\n// Synchronization:\n//   Mutex, MutexLock, ThreadLocal, GetThreadCount()\n//                            - synchronization primitives.\n//\n// Regular expressions:\n//   RE             - a simple regular expression class using the POSIX\n//                    Extended Regular Expression syntax on UNIX-like platforms\n//                    GOOGLETEST_CM0008 DO NOT DELETE\n//                    or a reduced regular exception syntax on other\n//                    platforms, including Windows.\n// Logging:\n//   GTEST_LOG_()   - logs messages at the specified severity level.\n//   LogToStderr()  - directs all log messages to stderr.\n//   FlushInfoLog() - flushes informational log messages.\n//\n// Stdout and stderr capturing:\n//   CaptureStdout()     - starts capturing stdout.\n//   GetCapturedStdout() - stops capturing stdout and returns the captured\n//                         string.\n//   CaptureStderr()     - starts capturing stderr.\n//   GetCapturedStderr() - stops capturing stderr and returns the captured\n//                         string.\n//\n// Integer types:\n//   TypeWithSize   - maps an integer to a int type.\n//   TimeInMillis   - integers of known sizes.\n//   BiggestInt     - the biggest signed integer type.\n//\n// Command-line utilities:\n//   GTEST_DECLARE_*()  - declares a flag.\n//   GTEST_DEFINE_*()   - defines a flag.\n//   GetInjectableArgvs() - returns the command line as a vector of strings.\n//\n// Environment variable utilities:\n//   GetEnv()             - gets the value of an environment variable.\n//   BoolFromGTestEnv()   - parses a bool environment variable.\n//   Int32FromGTestEnv()  - parses an int32_t environment variable.\n//   StringFromGTestEnv() - parses a string environment variable.\n//\n// Deprecation warnings:\n//   GTEST_INTERNAL_DEPRECATED(message) - attribute marking a function as\n//                                        deprecated; calling a marked function\n//                                        should generate a compiler warning\n\n#include <ctype.h>   // for isspace, etc\n#include <stddef.h>  // for ptrdiff_t\n#include <stdio.h>\n#include <stdlib.h>\n#include <string.h>\n\n#include <cerrno>\n#include <cstdint>\n#include <limits>\n#include <type_traits>\n\n#ifndef _WIN32_WCE\n# include <sys/types.h>\n# include <sys/stat.h>\n#endif  // !_WIN32_WCE\n\n#if defined __APPLE__\n# include <AvailabilityMacros.h>\n# include <TargetConditionals.h>\n#endif\n\n#include <iostream>  // NOLINT\n#include <locale>\n#include <memory>\n#include <string>  // NOLINT\n#include <tuple>\n#include <vector>  // NOLINT\n\n#include \"gtest/internal/custom/gtest-port.h\"\n#include \"gtest/internal/gtest-port-arch.h\"\n\n#if !defined(GTEST_DEV_EMAIL_)\n# define GTEST_DEV_EMAIL_ \"googletestframework@@googlegroups.com\"\n# define GTEST_FLAG_PREFIX_ \"gtest_\"\n# define GTEST_FLAG_PREFIX_DASH_ \"gtest-\"\n# define GTEST_FLAG_PREFIX_UPPER_ \"GTEST_\"\n# define GTEST_NAME_ \"Google Test\"\n# define GTEST_PROJECT_URL_ \"https://github.com/google/googletest/\"\n#endif  // !defined(GTEST_DEV_EMAIL_)\n\n#if !defined(GTEST_INIT_GOOGLE_TEST_NAME_)\n# define GTEST_INIT_GOOGLE_TEST_NAME_ \"testing::InitGoogleTest\"\n#endif  // !defined(GTEST_INIT_GOOGLE_TEST_NAME_)\n\n// Determines the version of gcc that is used to compile this.\n#ifdef __GNUC__\n// 40302 means version 4.3.2.\n# define GTEST_GCC_VER_ \\\n    (__GNUC__*10000 + __GNUC_MINOR__*100 + __GNUC_PATCHLEVEL__)\n#endif  // __GNUC__\n\n// Macros for disabling Microsoft Visual C++ warnings.\n//\n//   GTEST_DISABLE_MSC_WARNINGS_PUSH_(4800 4385)\n//   /* code that triggers warnings C4800 and C4385 */\n//   GTEST_DISABLE_MSC_WARNINGS_POP_()\n#if defined(_MSC_VER)\n# define GTEST_DISABLE_MSC_WARNINGS_PUSH_(warnings) \\\n    __pragma(warning(push))                        \\\n    __pragma(warning(disable: warnings))\n# define GTEST_DISABLE_MSC_WARNINGS_POP_()          \\\n    __pragma(warning(pop))\n#else\n// Not all compilers are MSVC\n# define GTEST_DISABLE_MSC_WARNINGS_PUSH_(warnings)\n# define GTEST_DISABLE_MSC_WARNINGS_POP_()\n#endif\n\n// Clang on Windows does not understand MSVC's pragma warning.\n// We need clang-specific way to disable function deprecation warning.\n#ifdef __clang__\n# define GTEST_DISABLE_MSC_DEPRECATED_PUSH_()                         \\\n    _Pragma(\"clang diagnostic push\")                                  \\\n    _Pragma(\"clang diagnostic ignored \\\"-Wdeprecated-declarations\\\"\") \\\n    _Pragma(\"clang diagnostic ignored \\\"-Wdeprecated-implementations\\\"\")\n#define GTEST_DISABLE_MSC_DEPRECATED_POP_() \\\n    _Pragma(\"clang diagnostic pop\")\n#else\n# define GTEST_DISABLE_MSC_DEPRECATED_PUSH_() \\\n    GTEST_DISABLE_MSC_WARNINGS_PUSH_(4996)\n# define GTEST_DISABLE_MSC_DEPRECATED_POP_() \\\n    GTEST_DISABLE_MSC_WARNINGS_POP_()\n#endif\n\n// Brings in definitions for functions used in the testing::internal::posix\n// namespace (read, write, close, chdir, isatty, stat). We do not currently\n// use them on Windows Mobile.\n#if GTEST_OS_WINDOWS\n# if !GTEST_OS_WINDOWS_MOBILE\n#  include <direct.h>\n#  include <io.h>\n# endif\n// In order to avoid having to include <windows.h>, use forward declaration\n#if GTEST_OS_WINDOWS_MINGW && !defined(__MINGW64_VERSION_MAJOR)\n// MinGW defined _CRITICAL_SECTION and _RTL_CRITICAL_SECTION as two\n// separate (equivalent) structs, instead of using typedef\ntypedef struct _CRITICAL_SECTION GTEST_CRITICAL_SECTION;\n#else\n// Assume CRITICAL_SECTION is a typedef of _RTL_CRITICAL_SECTION.\n// This assumption is verified by\n// WindowsTypesTest.CRITICAL_SECTIONIs_RTL_CRITICAL_SECTION.\ntypedef struct _RTL_CRITICAL_SECTION GTEST_CRITICAL_SECTION;\n#endif\n#elif GTEST_OS_XTENSA\n#include <unistd.h>\n// Xtensa toolchains define strcasecmp in the string.h header instead of\n// strings.h. string.h is already included.\n#else\n// This assumes that non-Windows OSes provide unistd.h. For OSes where this\n// is not the case, we need to include headers that provide the functions\n// mentioned above.\n# include <unistd.h>\n# include <strings.h>\n#endif  // GTEST_OS_WINDOWS\n\n#if GTEST_OS_LINUX_ANDROID\n// Used to define __ANDROID_API__ matching the target NDK API level.\n#  include <android/api-level.h>  // NOLINT\n#endif\n\n// Defines this to true if and only if Google Test can use POSIX regular\n// expressions.\n#ifndef GTEST_HAS_POSIX_RE\n# if GTEST_OS_LINUX_ANDROID\n// On Android, <regex.h> is only available starting with Gingerbread.\n#  define GTEST_HAS_POSIX_RE (__ANDROID_API__ >= 9)\n# else\n#define GTEST_HAS_POSIX_RE (!GTEST_OS_WINDOWS && !GTEST_OS_XTENSA)\n# endif\n#endif\n\n#if GTEST_USES_PCRE\n// The appropriate headers have already been included.\n\n#elif GTEST_HAS_POSIX_RE\n\n// On some platforms, <regex.h> needs someone to define size_t, and\n// won't compile otherwise.  We can #include it here as we already\n// included <stdlib.h>, which is guaranteed to define size_t through\n// <stddef.h>.\n# include <regex.h>  // NOLINT\n\n# define GTEST_USES_POSIX_RE 1\n\n#elif GTEST_OS_WINDOWS\n\n// <regex.h> is not available on Windows.  Use our own simple regex\n// implementation instead.\n# define GTEST_USES_SIMPLE_RE 1\n\n#else\n\n// <regex.h> may not be available on this platform.  Use our own\n// simple regex implementation instead.\n# define GTEST_USES_SIMPLE_RE 1\n\n#endif  // GTEST_USES_PCRE\n\n#ifndef GTEST_HAS_EXCEPTIONS\n// The user didn't tell us whether exceptions are enabled, so we need\n// to figure it out.\n# if defined(_MSC_VER) && defined(_CPPUNWIND)\n// MSVC defines _CPPUNWIND to 1 if and only if exceptions are enabled.\n#  define GTEST_HAS_EXCEPTIONS 1\n# elif defined(__BORLANDC__)\n// C++Builder's implementation of the STL uses the _HAS_EXCEPTIONS\n// macro to enable exceptions, so we'll do the same.\n// Assumes that exceptions are enabled by default.\n#  ifndef _HAS_EXCEPTIONS\n#   define _HAS_EXCEPTIONS 1\n#  endif  // _HAS_EXCEPTIONS\n#  define GTEST_HAS_EXCEPTIONS _HAS_EXCEPTIONS\n# elif defined(__clang__)\n// clang defines __EXCEPTIONS if and only if exceptions are enabled before clang\n// 220714, but if and only if cleanups are enabled after that. In Obj-C++ files,\n// there can be cleanups for ObjC exceptions which also need cleanups, even if\n// C++ exceptions are disabled. clang has __has_feature(cxx_exceptions) which\n// checks for C++ exceptions starting at clang r206352, but which checked for\n// cleanups prior to that. To reliably check for C++ exception availability with\n// clang, check for\n// __EXCEPTIONS && __has_feature(cxx_exceptions).\n#  define GTEST_HAS_EXCEPTIONS (__EXCEPTIONS && __has_feature(cxx_exceptions))\n# elif defined(__GNUC__) && __EXCEPTIONS\n// gcc defines __EXCEPTIONS to 1 if and only if exceptions are enabled.\n#  define GTEST_HAS_EXCEPTIONS 1\n# elif defined(__SUNPRO_CC)\n// Sun Pro CC supports exceptions.  However, there is no compile-time way of\n// detecting whether they are enabled or not.  Therefore, we assume that\n// they are enabled unless the user tells us otherwise.\n#  define GTEST_HAS_EXCEPTIONS 1\n# elif defined(__IBMCPP__) && __EXCEPTIONS\n// xlC defines __EXCEPTIONS to 1 if and only if exceptions are enabled.\n#  define GTEST_HAS_EXCEPTIONS 1\n# elif defined(__HP_aCC)\n// Exception handling is in effect by default in HP aCC compiler. It has to\n// be turned of by +noeh compiler option if desired.\n#  define GTEST_HAS_EXCEPTIONS 1\n# else\n// For other compilers, we assume exceptions are disabled to be\n// conservative.\n#  define GTEST_HAS_EXCEPTIONS 0\n# endif  // defined(_MSC_VER) || defined(__BORLANDC__)\n#endif  // GTEST_HAS_EXCEPTIONS\n\n#ifndef GTEST_HAS_STD_WSTRING\n// The user didn't tell us whether ::std::wstring is available, so we need\n// to figure it out.\n// Cygwin 1.7 and below doesn't support ::std::wstring.\n// Solaris' libc++ doesn't support it either.  Android has\n// no support for it at least as recent as Froyo (2.2).\n#define GTEST_HAS_STD_WSTRING                                         \\\n  (!(GTEST_OS_LINUX_ANDROID || GTEST_OS_CYGWIN || GTEST_OS_SOLARIS || \\\n     GTEST_OS_HAIKU || GTEST_OS_ESP32 || GTEST_OS_ESP8266 || GTEST_OS_XTENSA))\n\n#endif  // GTEST_HAS_STD_WSTRING\n\n// Determines whether RTTI is available.\n#ifndef GTEST_HAS_RTTI\n// The user didn't tell us whether RTTI is enabled, so we need to\n// figure it out.\n\n# ifdef _MSC_VER\n\n#ifdef _CPPRTTI  // MSVC defines this macro if and only if RTTI is enabled.\n#   define GTEST_HAS_RTTI 1\n#  else\n#   define GTEST_HAS_RTTI 0\n#  endif\n\n// Starting with version 4.3.2, gcc defines __GXX_RTTI if and only if RTTI is\n// enabled.\n# elif defined(__GNUC__)\n\n#  ifdef __GXX_RTTI\n// When building against STLport with the Android NDK and with\n// -frtti -fno-exceptions, the build fails at link time with undefined\n// references to __cxa_bad_typeid. Note sure if STL or toolchain bug,\n// so disable RTTI when detected.\n#   if GTEST_OS_LINUX_ANDROID && defined(_STLPORT_MAJOR) && \\\n       !defined(__EXCEPTIONS)\n#    define GTEST_HAS_RTTI 0\n#   else\n#    define GTEST_HAS_RTTI 1\n#   endif  // GTEST_OS_LINUX_ANDROID && __STLPORT_MAJOR && !__EXCEPTIONS\n#  else\n#   define GTEST_HAS_RTTI 0\n#  endif  // __GXX_RTTI\n\n// Clang defines __GXX_RTTI starting with version 3.0, but its manual recommends\n// using has_feature instead. has_feature(cxx_rtti) is supported since 2.7, the\n// first version with C++ support.\n# elif defined(__clang__)\n\n#  define GTEST_HAS_RTTI __has_feature(cxx_rtti)\n\n// Starting with version 9.0 IBM Visual Age defines __RTTI_ALL__ to 1 if\n// both the typeid and dynamic_cast features are present.\n# elif defined(__IBMCPP__) && (__IBMCPP__ >= 900)\n\n#  ifdef __RTTI_ALL__\n#   define GTEST_HAS_RTTI 1\n#  else\n#   define GTEST_HAS_RTTI 0\n#  endif\n\n# else\n\n// For all other compilers, we assume RTTI is enabled.\n#  define GTEST_HAS_RTTI 1\n\n# endif  // _MSC_VER\n\n#endif  // GTEST_HAS_RTTI\n\n// It's this header's responsibility to #include <typeinfo> when RTTI\n// is enabled.\n#if GTEST_HAS_RTTI\n# include <typeinfo>\n#endif\n\n// Determines whether Google Test can use the pthreads library.\n#ifndef GTEST_HAS_PTHREAD\n// The user didn't tell us explicitly, so we make reasonable assumptions about\n// which platforms have pthreads support.\n//\n// To disable threading support in Google Test, add -DGTEST_HAS_PTHREAD=0\n// to your compiler flags.\n#define GTEST_HAS_PTHREAD                                                      \\\n  (GTEST_OS_LINUX || GTEST_OS_MAC || GTEST_OS_HPUX || GTEST_OS_QNX ||          \\\n   GTEST_OS_FREEBSD || GTEST_OS_NACL || GTEST_OS_NETBSD || GTEST_OS_FUCHSIA || \\\n   GTEST_OS_DRAGONFLY || GTEST_OS_GNU_KFREEBSD || GTEST_OS_OPENBSD ||          \\\n   GTEST_OS_HAIKU)\n#endif  // GTEST_HAS_PTHREAD\n\n#if GTEST_HAS_PTHREAD\n// gtest-port.h guarantees to #include <pthread.h> when GTEST_HAS_PTHREAD is\n// true.\n# include <pthread.h>  // NOLINT\n\n// For timespec and nanosleep, used below.\n# include <time.h>  // NOLINT\n#endif\n\n// Determines whether clone(2) is supported.\n// Usually it will only be available on Linux, excluding\n// Linux on the Itanium architecture.\n// Also see http://linux.die.net/man/2/clone.\n#ifndef GTEST_HAS_CLONE\n// The user didn't tell us, so we need to figure it out.\n\n# if GTEST_OS_LINUX && !defined(__ia64__)\n#  if GTEST_OS_LINUX_ANDROID\n// On Android, clone() became available at different API levels for each 32-bit\n// architecture.\n#    if defined(__LP64__) || \\\n        (defined(__arm__) && __ANDROID_API__ >= 9) || \\\n        (defined(__mips__) && __ANDROID_API__ >= 12) || \\\n        (defined(__i386__) && __ANDROID_API__ >= 17)\n#     define GTEST_HAS_CLONE 1\n#    else\n#     define GTEST_HAS_CLONE 0\n#    endif\n#  else\n#   define GTEST_HAS_CLONE 1\n#  endif\n# else\n#  define GTEST_HAS_CLONE 0\n# endif  // GTEST_OS_LINUX && !defined(__ia64__)\n\n#endif  // GTEST_HAS_CLONE\n\n// Determines whether to support stream redirection. This is used to test\n// output correctness and to implement death tests.\n#ifndef GTEST_HAS_STREAM_REDIRECTION\n// By default, we assume that stream redirection is supported on all\n// platforms except known mobile ones.\n#if GTEST_OS_WINDOWS_MOBILE || GTEST_OS_WINDOWS_PHONE || \\\n    GTEST_OS_WINDOWS_RT || GTEST_OS_ESP8266 || GTEST_OS_XTENSA\n#  define GTEST_HAS_STREAM_REDIRECTION 0\n# else\n#  define GTEST_HAS_STREAM_REDIRECTION 1\n# endif  // !GTEST_OS_WINDOWS_MOBILE\n#endif  // GTEST_HAS_STREAM_REDIRECTION\n\n// Determines whether to support death tests.\n// pops up a dialog window that cannot be suppressed programmatically.\n#if (GTEST_OS_LINUX || GTEST_OS_CYGWIN || GTEST_OS_SOLARIS ||             \\\n     (GTEST_OS_MAC && !GTEST_OS_IOS) ||                                   \\\n     (GTEST_OS_WINDOWS_DESKTOP && _MSC_VER) || GTEST_OS_WINDOWS_MINGW ||  \\\n     GTEST_OS_AIX || GTEST_OS_HPUX || GTEST_OS_OPENBSD || GTEST_OS_QNX || \\\n     GTEST_OS_FREEBSD || GTEST_OS_NETBSD || GTEST_OS_FUCHSIA ||           \\\n     GTEST_OS_DRAGONFLY || GTEST_OS_GNU_KFREEBSD || GTEST_OS_HAIKU)\n# define GTEST_HAS_DEATH_TEST 1\n#endif\n\n// Determines whether to support type-driven tests.\n\n// Typed tests need <typeinfo> and variadic macros, which GCC, VC++ 8.0,\n// Sun Pro CC, IBM Visual Age, and HP aCC support.\n#if defined(__GNUC__) || defined(_MSC_VER) || defined(__SUNPRO_CC) || \\\n    defined(__IBMCPP__) || defined(__HP_aCC)\n# define GTEST_HAS_TYPED_TEST 1\n# define GTEST_HAS_TYPED_TEST_P 1\n#endif\n\n// Determines whether the system compiler uses UTF-16 for encoding wide strings.\n#define GTEST_WIDE_STRING_USES_UTF16_ \\\n  (GTEST_OS_WINDOWS || GTEST_OS_CYGWIN || GTEST_OS_AIX || GTEST_OS_OS2)\n\n// Determines whether test results can be streamed to a socket.\n#if GTEST_OS_LINUX || GTEST_OS_GNU_KFREEBSD || GTEST_OS_DRAGONFLY || \\\n    GTEST_OS_FREEBSD || GTEST_OS_NETBSD || GTEST_OS_OPENBSD\n# define GTEST_CAN_STREAM_RESULTS_ 1\n#endif\n\n// Defines some utility macros.\n\n// The GNU compiler emits a warning if nested \"if\" statements are followed by\n// an \"else\" statement and braces are not used to explicitly disambiguate the\n// \"else\" binding.  This leads to problems with code like:\n//\n//   if (gate)\n//     ASSERT_*(condition) << \"Some message\";\n//\n// The \"switch (0) case 0:\" idiom is used to suppress this.\n#ifdef __INTEL_COMPILER\n# define GTEST_AMBIGUOUS_ELSE_BLOCKER_\n#else\n# define GTEST_AMBIGUOUS_ELSE_BLOCKER_ switch (0) case 0: default:  // NOLINT\n#endif\n\n// Use this annotation at the end of a struct/class definition to\n// prevent the compiler from optimizing away instances that are never\n// used.  This is useful when all interesting logic happens inside the\n// c'tor and / or d'tor.  Example:\n//\n//   struct Foo {\n//     Foo() { ... }\n//   } GTEST_ATTRIBUTE_UNUSED_;\n//\n// Also use it after a variable or parameter declaration to tell the\n// compiler the variable/parameter does not have to be used.\n#if defined(__GNUC__) && !defined(COMPILER_ICC)\n# define GTEST_ATTRIBUTE_UNUSED_ __attribute__ ((unused))\n#elif defined(__clang__)\n# if __has_attribute(unused)\n#  define GTEST_ATTRIBUTE_UNUSED_ __attribute__ ((unused))\n# endif\n#endif\n#ifndef GTEST_ATTRIBUTE_UNUSED_\n# define GTEST_ATTRIBUTE_UNUSED_\n#endif\n\n// Use this annotation before a function that takes a printf format string.\n#if (defined(__GNUC__) || defined(__clang__)) && !defined(COMPILER_ICC)\n# if defined(__MINGW_PRINTF_FORMAT)\n// MinGW has two different printf implementations. Ensure the format macro\n// matches the selected implementation. See\n// https://sourceforge.net/p/mingw-w64/wiki2/gnu%20printf/.\n#  define GTEST_ATTRIBUTE_PRINTF_(string_index, first_to_check) \\\n       __attribute__((__format__(__MINGW_PRINTF_FORMAT, string_index, \\\n                                 first_to_check)))\n# else\n#  define GTEST_ATTRIBUTE_PRINTF_(string_index, first_to_check) \\\n       __attribute__((__format__(__printf__, string_index, first_to_check)))\n# endif\n#else\n# define GTEST_ATTRIBUTE_PRINTF_(string_index, first_to_check)\n#endif\n\n\n// A macro to disallow copy operator=\n// This should be used in the private: declarations for a class.\n#define GTEST_DISALLOW_ASSIGN_(type) \\\n  type& operator=(type const &) = delete\n\n// A macro to disallow copy constructor and operator=\n// This should be used in the private: declarations for a class.\n#define GTEST_DISALLOW_COPY_AND_ASSIGN_(type) \\\n  type(type const&) = delete;                 \\\n  type& operator=(type const&) = delete\n\n// A macro to disallow move operator=\n// This should be used in the private: declarations for a class.\n#define GTEST_DISALLOW_MOVE_ASSIGN_(type) \\\n  type& operator=(type &&) noexcept = delete\n\n// A macro to disallow move constructor and operator=\n// This should be used in the private: declarations for a class.\n#define GTEST_DISALLOW_MOVE_AND_ASSIGN_(type) \\\n  type(type&&) noexcept = delete;             \\\n  type& operator=(type&&) noexcept = delete\n\n// Tell the compiler to warn about unused return values for functions declared\n// with this macro.  The macro should be used on function declarations\n// following the argument list:\n//\n//   Sprocket* AllocateSprocket() GTEST_MUST_USE_RESULT_;\n#if defined(__GNUC__) && !defined(COMPILER_ICC)\n# define GTEST_MUST_USE_RESULT_ __attribute__ ((warn_unused_result))\n#else\n# define GTEST_MUST_USE_RESULT_\n#endif  // __GNUC__ && !COMPILER_ICC\n\n// MS C++ compiler emits warning when a conditional expression is compile time\n// constant. In some contexts this warning is false positive and needs to be\n// suppressed. Use the following two macros in such cases:\n//\n// GTEST_INTENTIONAL_CONST_COND_PUSH_()\n// while (true) {\n// GTEST_INTENTIONAL_CONST_COND_POP_()\n// }\n# define GTEST_INTENTIONAL_CONST_COND_PUSH_() \\\n    GTEST_DISABLE_MSC_WARNINGS_PUSH_(4127)\n# define GTEST_INTENTIONAL_CONST_COND_POP_() \\\n    GTEST_DISABLE_MSC_WARNINGS_POP_()\n\n// Determine whether the compiler supports Microsoft's Structured Exception\n// Handling.  This is supported by several Windows compilers but generally\n// does not exist on any other system.\n#ifndef GTEST_HAS_SEH\n// The user didn't tell us, so we need to figure it out.\n\n# if defined(_MSC_VER) || defined(__BORLANDC__)\n// These two compilers are known to support SEH.\n#  define GTEST_HAS_SEH 1\n# else\n// Assume no SEH.\n#  define GTEST_HAS_SEH 0\n# endif\n\n#endif  // GTEST_HAS_SEH\n\n#ifndef GTEST_IS_THREADSAFE\n\n#define GTEST_IS_THREADSAFE                                                 \\\n  (GTEST_HAS_MUTEX_AND_THREAD_LOCAL_ ||                                     \\\n   (GTEST_OS_WINDOWS && !GTEST_OS_WINDOWS_PHONE && !GTEST_OS_WINDOWS_RT) || \\\n   GTEST_HAS_PTHREAD)\n\n#endif  // GTEST_IS_THREADSAFE\n\n// GTEST_API_ qualifies all symbols that must be exported. The definitions below\n// are guarded by #ifndef to give embedders a chance to define GTEST_API_ in\n// gtest/internal/custom/gtest-port.h\n#ifndef GTEST_API_\n\n#ifdef _MSC_VER\n# if GTEST_LINKED_AS_SHARED_LIBRARY\n#  define GTEST_API_ __declspec(dllimport)\n# elif GTEST_CREATE_SHARED_LIBRARY\n#  define GTEST_API_ __declspec(dllexport)\n# endif\n#elif __GNUC__ >= 4 || defined(__clang__)\n# define GTEST_API_ __attribute__((visibility (\"default\")))\n#endif  // _MSC_VER\n\n#endif  // GTEST_API_\n\n#ifndef GTEST_API_\n# define GTEST_API_\n#endif  // GTEST_API_\n\n#ifndef GTEST_DEFAULT_DEATH_TEST_STYLE\n# define GTEST_DEFAULT_DEATH_TEST_STYLE  \"fast\"\n#endif  // GTEST_DEFAULT_DEATH_TEST_STYLE\n\n#ifdef __GNUC__\n// Ask the compiler to never inline a given function.\n# define GTEST_NO_INLINE_ __attribute__((noinline))\n#else\n# define GTEST_NO_INLINE_\n#endif\n\n// _LIBCPP_VERSION is defined by the libc++ library from the LLVM project.\n#if !defined(GTEST_HAS_CXXABI_H_)\n# if defined(__GLIBCXX__) || (defined(_LIBCPP_VERSION) && !defined(_MSC_VER))\n#  define GTEST_HAS_CXXABI_H_ 1\n# else\n#  define GTEST_HAS_CXXABI_H_ 0\n# endif\n#endif\n\n// A function level attribute to disable checking for use of uninitialized\n// memory when built with MemorySanitizer.\n#if defined(__clang__)\n# if __has_feature(memory_sanitizer)\n#  define GTEST_ATTRIBUTE_NO_SANITIZE_MEMORY_ \\\n       __attribute__((no_sanitize_memory))\n# else\n#  define GTEST_ATTRIBUTE_NO_SANITIZE_MEMORY_\n# endif  // __has_feature(memory_sanitizer)\n#else\n# define GTEST_ATTRIBUTE_NO_SANITIZE_MEMORY_\n#endif  // __clang__\n\n// A function level attribute to disable AddressSanitizer instrumentation.\n#if defined(__clang__)\n# if __has_feature(address_sanitizer)\n#  define GTEST_ATTRIBUTE_NO_SANITIZE_ADDRESS_ \\\n       __attribute__((no_sanitize_address))\n# else\n#  define GTEST_ATTRIBUTE_NO_SANITIZE_ADDRESS_\n# endif  // __has_feature(address_sanitizer)\n#else\n# define GTEST_ATTRIBUTE_NO_SANITIZE_ADDRESS_\n#endif  // __clang__\n\n// A function level attribute to disable HWAddressSanitizer instrumentation.\n#if defined(__clang__)\n# if __has_feature(hwaddress_sanitizer)\n#  define GTEST_ATTRIBUTE_NO_SANITIZE_HWADDRESS_ \\\n       __attribute__((no_sanitize(\"hwaddress\")))\n# else\n#  define GTEST_ATTRIBUTE_NO_SANITIZE_HWADDRESS_\n# endif  // __has_feature(hwaddress_sanitizer)\n#else\n# define GTEST_ATTRIBUTE_NO_SANITIZE_HWADDRESS_\n#endif  // __clang__\n\n// A function level attribute to disable ThreadSanitizer instrumentation.\n#if defined(__clang__)\n# if __has_feature(thread_sanitizer)\n#  define GTEST_ATTRIBUTE_NO_SANITIZE_THREAD_ \\\n       __attribute__((no_sanitize_thread))\n# else\n#  define GTEST_ATTRIBUTE_NO_SANITIZE_THREAD_\n# endif  // __has_feature(thread_sanitizer)\n#else\n# define GTEST_ATTRIBUTE_NO_SANITIZE_THREAD_\n#endif  // __clang__\n\nnamespace testing {\n\nclass Message;\n\n// Legacy imports for backwards compatibility.\n// New code should use std:: names directly.\nusing std::get;\nusing std::make_tuple;\nusing std::tuple;\nusing std::tuple_element;\nusing std::tuple_size;\n\nnamespace internal {\n\n// A secret type that Google Test users don't know about.  It has no\n// definition on purpose.  Therefore it's impossible to create a\n// Secret object, which is what we want.\nclass Secret;\n\n// The GTEST_COMPILE_ASSERT_ is a legacy macro used to verify that a compile\n// time expression is true (in new code, use static_assert instead). For\n// example, you could use it to verify the size of a static array:\n//\n//   GTEST_COMPILE_ASSERT_(GTEST_ARRAY_SIZE_(names) == NUM_NAMES,\n//                         names_incorrect_size);\n//\n// The second argument to the macro must be a valid C++ identifier. If the\n// expression is false, compiler will issue an error containing this identifier.\n#define GTEST_COMPILE_ASSERT_(expr, msg) static_assert(expr, #msg)\n\n// A helper for suppressing warnings on constant condition.  It just\n// returns 'condition'.\nGTEST_API_ bool IsTrue(bool condition);\n\n// Defines RE.\n\n#if GTEST_USES_PCRE\n// if used, PCRE is injected by custom/gtest-port.h\n#elif GTEST_USES_POSIX_RE || GTEST_USES_SIMPLE_RE\n\n// A simple C++ wrapper for <regex.h>.  It uses the POSIX Extended\n// Regular Expression syntax.\nclass GTEST_API_ RE {\n public:\n  // A copy constructor is required by the Standard to initialize object\n  // references from r-values.\n  RE(const RE& other) { Init(other.pattern()); }\n\n  // Constructs an RE from a string.\n  RE(const ::std::string& regex) { Init(regex.c_str()); }  // NOLINT\n\n  RE(const char* regex) { Init(regex); }  // NOLINT\n  ~RE();\n\n  // Returns the string representation of the regex.\n  const char* pattern() const { return pattern_; }\n\n  // FullMatch(str, re) returns true if and only if regular expression re\n  // matches the entire str.\n  // PartialMatch(str, re) returns true if and only if regular expression re\n  // matches a substring of str (including str itself).\n  static bool FullMatch(const ::std::string& str, const RE& re) {\n    return FullMatch(str.c_str(), re);\n  }\n  static bool PartialMatch(const ::std::string& str, const RE& re) {\n    return PartialMatch(str.c_str(), re);\n  }\n\n  static bool FullMatch(const char* str, const RE& re);\n  static bool PartialMatch(const char* str, const RE& re);\n\n private:\n  void Init(const char* regex);\n  const char* pattern_;\n  bool is_valid_;\n\n# if GTEST_USES_POSIX_RE\n\n  regex_t full_regex_;     // For FullMatch().\n  regex_t partial_regex_;  // For PartialMatch().\n\n# else  // GTEST_USES_SIMPLE_RE\n\n  const char* full_pattern_;  // For FullMatch();\n\n# endif\n};\n\n#endif  // GTEST_USES_PCRE\n\n// Formats a source file path and a line number as they would appear\n// in an error message from the compiler used to compile this code.\nGTEST_API_ ::std::string FormatFileLocation(const char* file, int line);\n\n// Formats a file location for compiler-independent XML output.\n// Although this function is not platform dependent, we put it next to\n// FormatFileLocation in order to contrast the two functions.\nGTEST_API_ ::std::string FormatCompilerIndependentFileLocation(const char* file,\n                                                               int line);\n\n// Defines logging utilities:\n//   GTEST_LOG_(severity) - logs messages at the specified severity level. The\n//                          message itself is streamed into the macro.\n//   LogToStderr()  - directs all log messages to stderr.\n//   FlushInfoLog() - flushes informational log messages.\n\nenum GTestLogSeverity {\n  GTEST_INFO,\n  GTEST_WARNING,\n  GTEST_ERROR,\n  GTEST_FATAL\n};\n\n// Formats log entry severity, provides a stream object for streaming the\n// log message, and terminates the message with a newline when going out of\n// scope.\nclass GTEST_API_ GTestLog {\n public:\n  GTestLog(GTestLogSeverity severity, const char* file, int line);\n\n  // Flushes the buffers and, if severity is GTEST_FATAL, aborts the program.\n  ~GTestLog();\n\n  ::std::ostream& GetStream() { return ::std::cerr; }\n\n private:\n  const GTestLogSeverity severity_;\n\n  GTEST_DISALLOW_COPY_AND_ASSIGN_(GTestLog);\n};\n\n#if !defined(GTEST_LOG_)\n\n# define GTEST_LOG_(severity) \\\n    ::testing::internal::GTestLog(::testing::internal::GTEST_##severity, \\\n                                  __FILE__, __LINE__).GetStream()\n\ninline void LogToStderr() {}\ninline void FlushInfoLog() { fflush(nullptr); }\n\n#endif  // !defined(GTEST_LOG_)\n\n#if !defined(GTEST_CHECK_)\n// INTERNAL IMPLEMENTATION - DO NOT USE.\n//\n// GTEST_CHECK_ is an all-mode assert. It aborts the program if the condition\n// is not satisfied.\n//  Synopsys:\n//    GTEST_CHECK_(boolean_condition);\n//     or\n//    GTEST_CHECK_(boolean_condition) << \"Additional message\";\n//\n//    This checks the condition and if the condition is not satisfied\n//    it prints message about the condition violation, including the\n//    condition itself, plus additional message streamed into it, if any,\n//    and then it aborts the program. It aborts the program irrespective of\n//    whether it is built in the debug mode or not.\n# define GTEST_CHECK_(condition) \\\n    GTEST_AMBIGUOUS_ELSE_BLOCKER_ \\\n    if (::testing::internal::IsTrue(condition)) \\\n      ; \\\n    else \\\n      GTEST_LOG_(FATAL) << \"Condition \" #condition \" failed. \"\n#endif  // !defined(GTEST_CHECK_)\n\n// An all-mode assert to verify that the given POSIX-style function\n// call returns 0 (indicating success).  Known limitation: this\n// doesn't expand to a balanced 'if' statement, so enclose the macro\n// in {} if you need to use it as the only statement in an 'if'\n// branch.\n#define GTEST_CHECK_POSIX_SUCCESS_(posix_call) \\\n  if (const int gtest_error = (posix_call)) \\\n    GTEST_LOG_(FATAL) << #posix_call << \"failed with error \" \\\n                      << gtest_error\n\n// Transforms \"T\" into \"const T&\" according to standard reference collapsing\n// rules (this is only needed as a backport for C++98 compilers that do not\n// support reference collapsing). Specifically, it transforms:\n//\n//   char         ==> const char&\n//   const char   ==> const char&\n//   char&        ==> char&\n//   const char&  ==> const char&\n//\n// Note that the non-const reference will not have \"const\" added. This is\n// standard, and necessary so that \"T\" can always bind to \"const T&\".\ntemplate <typename T>\nstruct ConstRef { typedef const T& type; };\ntemplate <typename T>\nstruct ConstRef<T&> { typedef T& type; };\n\n// The argument T must depend on some template parameters.\n#define GTEST_REFERENCE_TO_CONST_(T) \\\n  typename ::testing::internal::ConstRef<T>::type\n\n// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE.\n//\n// Use ImplicitCast_ as a safe version of static_cast for upcasting in\n// the type hierarchy (e.g. casting a Foo* to a SuperclassOfFoo* or a\n// const Foo*).  When you use ImplicitCast_, the compiler checks that\n// the cast is safe.  Such explicit ImplicitCast_s are necessary in\n// surprisingly many situations where C++ demands an exact type match\n// instead of an argument type convertable to a target type.\n//\n// The syntax for using ImplicitCast_ is the same as for static_cast:\n//\n//   ImplicitCast_<ToType>(expr)\n//\n// ImplicitCast_ would have been part of the C++ standard library,\n// but the proposal was submitted too late.  It will probably make\n// its way into the language in the future.\n//\n// This relatively ugly name is intentional. It prevents clashes with\n// similar functions users may have (e.g., implicit_cast). The internal\n// namespace alone is not enough because the function can be found by ADL.\ntemplate<typename To>\ninline To ImplicitCast_(To x) { return x; }\n\n// When you upcast (that is, cast a pointer from type Foo to type\n// SuperclassOfFoo), it's fine to use ImplicitCast_<>, since upcasts\n// always succeed.  When you downcast (that is, cast a pointer from\n// type Foo to type SubclassOfFoo), static_cast<> isn't safe, because\n// how do you know the pointer is really of type SubclassOfFoo?  It\n// could be a bare Foo, or of type DifferentSubclassOfFoo.  Thus,\n// when you downcast, you should use this macro.  In debug mode, we\n// use dynamic_cast<> to double-check the downcast is legal (we die\n// if it's not).  In normal mode, we do the efficient static_cast<>\n// instead.  Thus, it's important to test in debug mode to make sure\n// the cast is legal!\n//    This is the only place in the code we should use dynamic_cast<>.\n// In particular, you SHOULDN'T be using dynamic_cast<> in order to\n// do RTTI (eg code like this:\n//    if (dynamic_cast<Subclass1>(foo)) HandleASubclass1Object(foo);\n//    if (dynamic_cast<Subclass2>(foo)) HandleASubclass2Object(foo);\n// You should design the code some other way not to need this.\n//\n// This relatively ugly name is intentional. It prevents clashes with\n// similar functions users may have (e.g., down_cast). The internal\n// namespace alone is not enough because the function can be found by ADL.\ntemplate<typename To, typename From>  // use like this: DownCast_<T*>(foo);\ninline To DownCast_(From* f) {  // so we only accept pointers\n  // Ensures that To is a sub-type of From *.  This test is here only\n  // for compile-time type checking, and has no overhead in an\n  // optimized build at run-time, as it will be optimized away\n  // completely.\n  GTEST_INTENTIONAL_CONST_COND_PUSH_()\n  if (false) {\n  GTEST_INTENTIONAL_CONST_COND_POP_()\n  const To to = nullptr;\n  ::testing::internal::ImplicitCast_<From*>(to);\n  }\n\n#if GTEST_HAS_RTTI\n  // RTTI: debug mode only!\n  GTEST_CHECK_(f == nullptr || dynamic_cast<To>(f) != nullptr);\n#endif\n  return static_cast<To>(f);\n}\n\n// Downcasts the pointer of type Base to Derived.\n// Derived must be a subclass of Base. The parameter MUST\n// point to a class of type Derived, not any subclass of it.\n// When RTTI is available, the function performs a runtime\n// check to enforce this.\ntemplate <class Derived, class Base>\nDerived* CheckedDowncastToActualType(Base* base) {\n#if GTEST_HAS_RTTI\n  GTEST_CHECK_(typeid(*base) == typeid(Derived));\n#endif\n\n#if GTEST_HAS_DOWNCAST_\n  return ::down_cast<Derived*>(base);\n#elif GTEST_HAS_RTTI\n  return dynamic_cast<Derived*>(base);  // NOLINT\n#else\n  return static_cast<Derived*>(base);  // Poor man's downcast.\n#endif\n}\n\n#if GTEST_HAS_STREAM_REDIRECTION\n\n// Defines the stderr capturer:\n//   CaptureStdout     - starts capturing stdout.\n//   GetCapturedStdout - stops capturing stdout and returns the captured string.\n//   CaptureStderr     - starts capturing stderr.\n//   GetCapturedStderr - stops capturing stderr and returns the captured string.\n//\nGTEST_API_ void CaptureStdout();\nGTEST_API_ std::string GetCapturedStdout();\nGTEST_API_ void CaptureStderr();\nGTEST_API_ std::string GetCapturedStderr();\n\n#endif  // GTEST_HAS_STREAM_REDIRECTION\n// Returns the size (in bytes) of a file.\nGTEST_API_ size_t GetFileSize(FILE* file);\n\n// Reads the entire content of a file as a string.\nGTEST_API_ std::string ReadEntireFile(FILE* file);\n\n// All command line arguments.\nGTEST_API_ std::vector<std::string> GetArgvs();\n\n#if GTEST_HAS_DEATH_TEST\n\nstd::vector<std::string> GetInjectableArgvs();\n// Deprecated: pass the args vector by value instead.\nvoid SetInjectableArgvs(const std::vector<std::string>* new_argvs);\nvoid SetInjectableArgvs(const std::vector<std::string>& new_argvs);\nvoid ClearInjectableArgvs();\n\n#endif  // GTEST_HAS_DEATH_TEST\n\n// Defines synchronization primitives.\n#if GTEST_IS_THREADSAFE\n# if GTEST_HAS_PTHREAD\n// Sleeps for (roughly) n milliseconds.  This function is only for testing\n// Google Test's own constructs.  Don't use it in user tests, either\n// directly or indirectly.\ninline void SleepMilliseconds(int n) {\n  const timespec time = {\n    0,                  // 0 seconds.\n    n * 1000L * 1000L,  // And n ms.\n  };\n  nanosleep(&time, nullptr);\n}\n# endif  // GTEST_HAS_PTHREAD\n\n# if GTEST_HAS_NOTIFICATION_\n// Notification has already been imported into the namespace.\n// Nothing to do here.\n\n# elif GTEST_HAS_PTHREAD\n// Allows a controller thread to pause execution of newly created\n// threads until notified.  Instances of this class must be created\n// and destroyed in the controller thread.\n//\n// This class is only for testing Google Test's own constructs. Do not\n// use it in user tests, either directly or indirectly.\nclass Notification {\n public:\n  Notification() : notified_(false) {\n    GTEST_CHECK_POSIX_SUCCESS_(pthread_mutex_init(&mutex_, nullptr));\n  }\n  ~Notification() {\n    pthread_mutex_destroy(&mutex_);\n  }\n\n  // Notifies all threads created with this notification to start. Must\n  // be called from the controller thread.\n  void Notify() {\n    pthread_mutex_lock(&mutex_);\n    notified_ = true;\n    pthread_mutex_unlock(&mutex_);\n  }\n\n  // Blocks until the controller thread notifies. Must be called from a test\n  // thread.\n  void WaitForNotification() {\n    for (;;) {\n      pthread_mutex_lock(&mutex_);\n      const bool notified = notified_;\n      pthread_mutex_unlock(&mutex_);\n      if (notified)\n        break;\n      SleepMilliseconds(10);\n    }\n  }\n\n private:\n  pthread_mutex_t mutex_;\n  bool notified_;\n\n  GTEST_DISALLOW_COPY_AND_ASSIGN_(Notification);\n};\n\n# elif GTEST_OS_WINDOWS && !GTEST_OS_WINDOWS_PHONE && !GTEST_OS_WINDOWS_RT\n\nGTEST_API_ void SleepMilliseconds(int n);\n\n// Provides leak-safe Windows kernel handle ownership.\n// Used in death tests and in threading support.\nclass GTEST_API_ AutoHandle {\n public:\n  // Assume that Win32 HANDLE type is equivalent to void*. Doing so allows us to\n  // avoid including <windows.h> in this header file. Including <windows.h> is\n  // undesirable because it defines a lot of symbols and macros that tend to\n  // conflict with client code. This assumption is verified by\n  // WindowsTypesTest.HANDLEIsVoidStar.\n  typedef void* Handle;\n  AutoHandle();\n  explicit AutoHandle(Handle handle);\n\n  ~AutoHandle();\n\n  Handle Get() const;\n  void Reset();\n  void Reset(Handle handle);\n\n private:\n  // Returns true if and only if the handle is a valid handle object that can be\n  // closed.\n  bool IsCloseable() const;\n\n  Handle handle_;\n\n  GTEST_DISALLOW_COPY_AND_ASSIGN_(AutoHandle);\n};\n\n// Allows a controller thread to pause execution of newly created\n// threads until notified.  Instances of this class must be created\n// and destroyed in the controller thread.\n//\n// This class is only for testing Google Test's own constructs. Do not\n// use it in user tests, either directly or indirectly.\nclass GTEST_API_ Notification {\n public:\n  Notification();\n  void Notify();\n  void WaitForNotification();\n\n private:\n  AutoHandle event_;\n\n  GTEST_DISALLOW_COPY_AND_ASSIGN_(Notification);\n};\n# endif  // GTEST_HAS_NOTIFICATION_\n\n// On MinGW, we can have both GTEST_OS_WINDOWS and GTEST_HAS_PTHREAD\n// defined, but we don't want to use MinGW's pthreads implementation, which\n// has conformance problems with some versions of the POSIX standard.\n# if GTEST_HAS_PTHREAD && !GTEST_OS_WINDOWS_MINGW\n\n// As a C-function, ThreadFuncWithCLinkage cannot be templated itself.\n// Consequently, it cannot select a correct instantiation of ThreadWithParam\n// in order to call its Run(). Introducing ThreadWithParamBase as a\n// non-templated base class for ThreadWithParam allows us to bypass this\n// problem.\nclass ThreadWithParamBase {\n public:\n  virtual ~ThreadWithParamBase() {}\n  virtual void Run() = 0;\n};\n\n// pthread_create() accepts a pointer to a function type with the C linkage.\n// According to the Standard (7.5/1), function types with different linkages\n// are different even if they are otherwise identical.  Some compilers (for\n// example, SunStudio) treat them as different types.  Since class methods\n// cannot be defined with C-linkage we need to define a free C-function to\n// pass into pthread_create().\nextern \"C\" inline void* ThreadFuncWithCLinkage(void* thread) {\n  static_cast<ThreadWithParamBase*>(thread)->Run();\n  return nullptr;\n}\n\n// Helper class for testing Google Test's multi-threading constructs.\n// To use it, write:\n//\n//   void ThreadFunc(int param) { /* Do things with param */ }\n//   Notification thread_can_start;\n//   ...\n//   // The thread_can_start parameter is optional; you can supply NULL.\n//   ThreadWithParam<int> thread(&ThreadFunc, 5, &thread_can_start);\n//   thread_can_start.Notify();\n//\n// These classes are only for testing Google Test's own constructs. Do\n// not use them in user tests, either directly or indirectly.\ntemplate <typename T>\nclass ThreadWithParam : public ThreadWithParamBase {\n public:\n  typedef void UserThreadFunc(T);\n\n  ThreadWithParam(UserThreadFunc* func, T param, Notification* thread_can_start)\n      : func_(func),\n        param_(param),\n        thread_can_start_(thread_can_start),\n        finished_(false) {\n    ThreadWithParamBase* const base = this;\n    // The thread can be created only after all fields except thread_\n    // have been initialized.\n    GTEST_CHECK_POSIX_SUCCESS_(\n        pthread_create(&thread_, nullptr, &ThreadFuncWithCLinkage, base));\n  }\n  ~ThreadWithParam() override { Join(); }\n\n  void Join() {\n    if (!finished_) {\n      GTEST_CHECK_POSIX_SUCCESS_(pthread_join(thread_, nullptr));\n      finished_ = true;\n    }\n  }\n\n  void Run() override {\n    if (thread_can_start_ != nullptr) thread_can_start_->WaitForNotification();\n    func_(param_);\n  }\n\n private:\n  UserThreadFunc* const func_;  // User-supplied thread function.\n  const T param_;  // User-supplied parameter to the thread function.\n  // When non-NULL, used to block execution until the controller thread\n  // notifies.\n  Notification* const thread_can_start_;\n  bool finished_;  // true if and only if we know that the thread function has\n                   // finished.\n  pthread_t thread_;  // The native thread object.\n\n  GTEST_DISALLOW_COPY_AND_ASSIGN_(ThreadWithParam);\n};\n# endif  // !GTEST_OS_WINDOWS && GTEST_HAS_PTHREAD ||\n         // GTEST_HAS_MUTEX_AND_THREAD_LOCAL_\n\n# if GTEST_HAS_MUTEX_AND_THREAD_LOCAL_\n// Mutex and ThreadLocal have already been imported into the namespace.\n// Nothing to do here.\n\n# elif GTEST_OS_WINDOWS && !GTEST_OS_WINDOWS_PHONE && !GTEST_OS_WINDOWS_RT\n\n// Mutex implements mutex on Windows platforms.  It is used in conjunction\n// with class MutexLock:\n//\n//   Mutex mutex;\n//   ...\n//   MutexLock lock(&mutex);  // Acquires the mutex and releases it at the\n//                            // end of the current scope.\n//\n// A static Mutex *must* be defined or declared using one of the following\n// macros:\n//   GTEST_DEFINE_STATIC_MUTEX_(g_some_mutex);\n//   GTEST_DECLARE_STATIC_MUTEX_(g_some_mutex);\n//\n// (A non-static Mutex is defined/declared in the usual way).\nclass GTEST_API_ Mutex {\n public:\n  enum MutexType { kStatic = 0, kDynamic = 1 };\n  // We rely on kStaticMutex being 0 as it is to what the linker initializes\n  // type_ in static mutexes.  critical_section_ will be initialized lazily\n  // in ThreadSafeLazyInit().\n  enum StaticConstructorSelector { kStaticMutex = 0 };\n\n  // This constructor intentionally does nothing.  It relies on type_ being\n  // statically initialized to 0 (effectively setting it to kStatic) and on\n  // ThreadSafeLazyInit() to lazily initialize the rest of the members.\n  explicit Mutex(StaticConstructorSelector /*dummy*/) {}\n\n  Mutex();\n  ~Mutex();\n\n  void Lock();\n\n  void Unlock();\n\n  // Does nothing if the current thread holds the mutex. Otherwise, crashes\n  // with high probability.\n  void AssertHeld();\n\n private:\n  // Initializes owner_thread_id_ and critical_section_ in static mutexes.\n  void ThreadSafeLazyInit();\n\n  // Per https://blogs.msdn.microsoft.com/oldnewthing/20040223-00/?p=40503,\n  // we assume that 0 is an invalid value for thread IDs.\n  unsigned int owner_thread_id_;\n\n  // For static mutexes, we rely on these members being initialized to zeros\n  // by the linker.\n  MutexType type_;\n  long critical_section_init_phase_;  // NOLINT\n  GTEST_CRITICAL_SECTION* critical_section_;\n\n  GTEST_DISALLOW_COPY_AND_ASSIGN_(Mutex);\n};\n\n# define GTEST_DECLARE_STATIC_MUTEX_(mutex) \\\n    extern ::testing::internal::Mutex mutex\n\n# define GTEST_DEFINE_STATIC_MUTEX_(mutex) \\\n    ::testing::internal::Mutex mutex(::testing::internal::Mutex::kStaticMutex)\n\n// We cannot name this class MutexLock because the ctor declaration would\n// conflict with a macro named MutexLock, which is defined on some\n// platforms. That macro is used as a defensive measure to prevent against\n// inadvertent misuses of MutexLock like \"MutexLock(&mu)\" rather than\n// \"MutexLock l(&mu)\".  Hence the typedef trick below.\nclass GTestMutexLock {\n public:\n  explicit GTestMutexLock(Mutex* mutex)\n      : mutex_(mutex) { mutex_->Lock(); }\n\n  ~GTestMutexLock() { mutex_->Unlock(); }\n\n private:\n  Mutex* const mutex_;\n\n  GTEST_DISALLOW_COPY_AND_ASSIGN_(GTestMutexLock);\n};\n\ntypedef GTestMutexLock MutexLock;\n\n// Base class for ValueHolder<T>.  Allows a caller to hold and delete a value\n// without knowing its type.\nclass ThreadLocalValueHolderBase {\n public:\n  virtual ~ThreadLocalValueHolderBase() {}\n};\n\n// Provides a way for a thread to send notifications to a ThreadLocal\n// regardless of its parameter type.\nclass ThreadLocalBase {\n public:\n  // Creates a new ValueHolder<T> object holding a default value passed to\n  // this ThreadLocal<T>'s constructor and returns it.  It is the caller's\n  // responsibility not to call this when the ThreadLocal<T> instance already\n  // has a value on the current thread.\n  virtual ThreadLocalValueHolderBase* NewValueForCurrentThread() const = 0;\n\n protected:\n  ThreadLocalBase() {}\n  virtual ~ThreadLocalBase() {}\n\n private:\n  GTEST_DISALLOW_COPY_AND_ASSIGN_(ThreadLocalBase);\n};\n\n// Maps a thread to a set of ThreadLocals that have values instantiated on that\n// thread and notifies them when the thread exits.  A ThreadLocal instance is\n// expected to persist until all threads it has values on have terminated.\nclass GTEST_API_ ThreadLocalRegistry {\n public:\n  // Registers thread_local_instance as having value on the current thread.\n  // Returns a value that can be used to identify the thread from other threads.\n  static ThreadLocalValueHolderBase* GetValueOnCurrentThread(\n      const ThreadLocalBase* thread_local_instance);\n\n  // Invoked when a ThreadLocal instance is destroyed.\n  static void OnThreadLocalDestroyed(\n      const ThreadLocalBase* thread_local_instance);\n};\n\nclass GTEST_API_ ThreadWithParamBase {\n public:\n  void Join();\n\n protected:\n  class Runnable {\n   public:\n    virtual ~Runnable() {}\n    virtual void Run() = 0;\n  };\n\n  ThreadWithParamBase(Runnable *runnable, Notification* thread_can_start);\n  virtual ~ThreadWithParamBase();\n\n private:\n  AutoHandle thread_;\n};\n\n// Helper class for testing Google Test's multi-threading constructs.\ntemplate <typename T>\nclass ThreadWithParam : public ThreadWithParamBase {\n public:\n  typedef void UserThreadFunc(T);\n\n  ThreadWithParam(UserThreadFunc* func, T param, Notification* thread_can_start)\n      : ThreadWithParamBase(new RunnableImpl(func, param), thread_can_start) {\n  }\n  virtual ~ThreadWithParam() {}\n\n private:\n  class RunnableImpl : public Runnable {\n   public:\n    RunnableImpl(UserThreadFunc* func, T param)\n        : func_(func),\n          param_(param) {\n    }\n    virtual ~RunnableImpl() {}\n    virtual void Run() {\n      func_(param_);\n    }\n\n   private:\n    UserThreadFunc* const func_;\n    const T param_;\n\n    GTEST_DISALLOW_COPY_AND_ASSIGN_(RunnableImpl);\n  };\n\n  GTEST_DISALLOW_COPY_AND_ASSIGN_(ThreadWithParam);\n};\n\n// Implements thread-local storage on Windows systems.\n//\n//   // Thread 1\n//   ThreadLocal<int> tl(100);  // 100 is the default value for each thread.\n//\n//   // Thread 2\n//   tl.set(150);  // Changes the value for thread 2 only.\n//   EXPECT_EQ(150, tl.get());\n//\n//   // Thread 1\n//   EXPECT_EQ(100, tl.get());  // In thread 1, tl has the original value.\n//   tl.set(200);\n//   EXPECT_EQ(200, tl.get());\n//\n// The template type argument T must have a public copy constructor.\n// In addition, the default ThreadLocal constructor requires T to have\n// a public default constructor.\n//\n// The users of a TheadLocal instance have to make sure that all but one\n// threads (including the main one) using that instance have exited before\n// destroying it. Otherwise, the per-thread objects managed for them by the\n// ThreadLocal instance are not guaranteed to be destroyed on all platforms.\n//\n// Google Test only uses global ThreadLocal objects.  That means they\n// will die after main() has returned.  Therefore, no per-thread\n// object managed by Google Test will be leaked as long as all threads\n// using Google Test have exited when main() returns.\ntemplate <typename T>\nclass ThreadLocal : public ThreadLocalBase {\n public:\n  ThreadLocal() : default_factory_(new DefaultValueHolderFactory()) {}\n  explicit ThreadLocal(const T& value)\n      : default_factory_(new InstanceValueHolderFactory(value)) {}\n\n  ~ThreadLocal() { ThreadLocalRegistry::OnThreadLocalDestroyed(this); }\n\n  T* pointer() { return GetOrCreateValue(); }\n  const T* pointer() const { return GetOrCreateValue(); }\n  const T& get() const { return *pointer(); }\n  void set(const T& value) { *pointer() = value; }\n\n private:\n  // Holds a value of T.  Can be deleted via its base class without the caller\n  // knowing the type of T.\n  class ValueHolder : public ThreadLocalValueHolderBase {\n   public:\n    ValueHolder() : value_() {}\n    explicit ValueHolder(const T& value) : value_(value) {}\n\n    T* pointer() { return &value_; }\n\n   private:\n    T value_;\n    GTEST_DISALLOW_COPY_AND_ASSIGN_(ValueHolder);\n  };\n\n\n  T* GetOrCreateValue() const {\n    return static_cast<ValueHolder*>(\n        ThreadLocalRegistry::GetValueOnCurrentThread(this))->pointer();\n  }\n\n  virtual ThreadLocalValueHolderBase* NewValueForCurrentThread() const {\n    return default_factory_->MakeNewHolder();\n  }\n\n  class ValueHolderFactory {\n   public:\n    ValueHolderFactory() {}\n    virtual ~ValueHolderFactory() {}\n    virtual ValueHolder* MakeNewHolder() const = 0;\n\n   private:\n    GTEST_DISALLOW_COPY_AND_ASSIGN_(ValueHolderFactory);\n  };\n\n  class DefaultValueHolderFactory : public ValueHolderFactory {\n   public:\n    DefaultValueHolderFactory() {}\n    ValueHolder* MakeNewHolder() const override { return new ValueHolder(); }\n\n   private:\n    GTEST_DISALLOW_COPY_AND_ASSIGN_(DefaultValueHolderFactory);\n  };\n\n  class InstanceValueHolderFactory : public ValueHolderFactory {\n   public:\n    explicit InstanceValueHolderFactory(const T& value) : value_(value) {}\n    ValueHolder* MakeNewHolder() const override {\n      return new ValueHolder(value_);\n    }\n\n   private:\n    const T value_;  // The value for each thread.\n\n    GTEST_DISALLOW_COPY_AND_ASSIGN_(InstanceValueHolderFactory);\n  };\n\n  std::unique_ptr<ValueHolderFactory> default_factory_;\n\n  GTEST_DISALLOW_COPY_AND_ASSIGN_(ThreadLocal);\n};\n\n# elif GTEST_HAS_PTHREAD\n\n// MutexBase and Mutex implement mutex on pthreads-based platforms.\nclass MutexBase {\n public:\n  // Acquires this mutex.\n  void Lock() {\n    GTEST_CHECK_POSIX_SUCCESS_(pthread_mutex_lock(&mutex_));\n    owner_ = pthread_self();\n    has_owner_ = true;\n  }\n\n  // Releases this mutex.\n  void Unlock() {\n    // Since the lock is being released the owner_ field should no longer be\n    // considered valid. We don't protect writing to has_owner_ here, as it's\n    // the caller's responsibility to ensure that the current thread holds the\n    // mutex when this is called.\n    has_owner_ = false;\n    GTEST_CHECK_POSIX_SUCCESS_(pthread_mutex_unlock(&mutex_));\n  }\n\n  // Does nothing if the current thread holds the mutex. Otherwise, crashes\n  // with high probability.\n  void AssertHeld() const {\n    GTEST_CHECK_(has_owner_ && pthread_equal(owner_, pthread_self()))\n        << \"The current thread is not holding the mutex @\" << this;\n  }\n\n  // A static mutex may be used before main() is entered.  It may even\n  // be used before the dynamic initialization stage.  Therefore we\n  // must be able to initialize a static mutex object at link time.\n  // This means MutexBase has to be a POD and its member variables\n  // have to be public.\n public:\n  pthread_mutex_t mutex_;  // The underlying pthread mutex.\n  // has_owner_ indicates whether the owner_ field below contains a valid thread\n  // ID and is therefore safe to inspect (e.g., to use in pthread_equal()). All\n  // accesses to the owner_ field should be protected by a check of this field.\n  // An alternative might be to memset() owner_ to all zeros, but there's no\n  // guarantee that a zero'd pthread_t is necessarily invalid or even different\n  // from pthread_self().\n  bool has_owner_;\n  pthread_t owner_;  // The thread holding the mutex.\n};\n\n// Forward-declares a static mutex.\n#  define GTEST_DECLARE_STATIC_MUTEX_(mutex) \\\n     extern ::testing::internal::MutexBase mutex\n\n// Defines and statically (i.e. at link time) initializes a static mutex.\n// The initialization list here does not explicitly initialize each field,\n// instead relying on default initialization for the unspecified fields. In\n// particular, the owner_ field (a pthread_t) is not explicitly initialized.\n// This allows initialization to work whether pthread_t is a scalar or struct.\n// The flag -Wmissing-field-initializers must not be specified for this to work.\n#define GTEST_DEFINE_STATIC_MUTEX_(mutex) \\\n  ::testing::internal::MutexBase mutex = {PTHREAD_MUTEX_INITIALIZER, false, 0}\n\n// The Mutex class can only be used for mutexes created at runtime. It\n// shares its API with MutexBase otherwise.\nclass Mutex : public MutexBase {\n public:\n  Mutex() {\n    GTEST_CHECK_POSIX_SUCCESS_(pthread_mutex_init(&mutex_, nullptr));\n    has_owner_ = false;\n  }\n  ~Mutex() {\n    GTEST_CHECK_POSIX_SUCCESS_(pthread_mutex_destroy(&mutex_));\n  }\n\n private:\n  GTEST_DISALLOW_COPY_AND_ASSIGN_(Mutex);\n};\n\n// We cannot name this class MutexLock because the ctor declaration would\n// conflict with a macro named MutexLock, which is defined on some\n// platforms. That macro is used as a defensive measure to prevent against\n// inadvertent misuses of MutexLock like \"MutexLock(&mu)\" rather than\n// \"MutexLock l(&mu)\".  Hence the typedef trick below.\nclass GTestMutexLock {\n public:\n  explicit GTestMutexLock(MutexBase* mutex)\n      : mutex_(mutex) { mutex_->Lock(); }\n\n  ~GTestMutexLock() { mutex_->Unlock(); }\n\n private:\n  MutexBase* const mutex_;\n\n  GTEST_DISALLOW_COPY_AND_ASSIGN_(GTestMutexLock);\n};\n\ntypedef GTestMutexLock MutexLock;\n\n// Helpers for ThreadLocal.\n\n// pthread_key_create() requires DeleteThreadLocalValue() to have\n// C-linkage.  Therefore it cannot be templatized to access\n// ThreadLocal<T>.  Hence the need for class\n// ThreadLocalValueHolderBase.\nclass ThreadLocalValueHolderBase {\n public:\n  virtual ~ThreadLocalValueHolderBase() {}\n};\n\n// Called by pthread to delete thread-local data stored by\n// pthread_setspecific().\nextern \"C\" inline void DeleteThreadLocalValue(void* value_holder) {\n  delete static_cast<ThreadLocalValueHolderBase*>(value_holder);\n}\n\n// Implements thread-local storage on pthreads-based systems.\ntemplate <typename T>\nclass GTEST_API_ ThreadLocal {\n public:\n  ThreadLocal()\n      : key_(CreateKey()), default_factory_(new DefaultValueHolderFactory()) {}\n  explicit ThreadLocal(const T& value)\n      : key_(CreateKey()),\n        default_factory_(new InstanceValueHolderFactory(value)) {}\n\n  ~ThreadLocal() {\n    // Destroys the managed object for the current thread, if any.\n    DeleteThreadLocalValue(pthread_getspecific(key_));\n\n    // Releases resources associated with the key.  This will *not*\n    // delete managed objects for other threads.\n    GTEST_CHECK_POSIX_SUCCESS_(pthread_key_delete(key_));\n  }\n\n  T* pointer() { return GetOrCreateValue(); }\n  const T* pointer() const { return GetOrCreateValue(); }\n  const T& get() const { return *pointer(); }\n  void set(const T& value) { *pointer() = value; }\n\n private:\n  // Holds a value of type T.\n  class ValueHolder : public ThreadLocalValueHolderBase {\n   public:\n    ValueHolder() : value_() {}\n    explicit ValueHolder(const T& value) : value_(value) {}\n\n    T* pointer() { return &value_; }\n\n   private:\n    T value_;\n    GTEST_DISALLOW_COPY_AND_ASSIGN_(ValueHolder);\n  };\n\n  static pthread_key_t CreateKey() {\n    pthread_key_t key;\n    // When a thread exits, DeleteThreadLocalValue() will be called on\n    // the object managed for that thread.\n    GTEST_CHECK_POSIX_SUCCESS_(\n        pthread_key_create(&key, &DeleteThreadLocalValue));\n    return key;\n  }\n\n  T* GetOrCreateValue() const {\n    ThreadLocalValueHolderBase* const holder =\n        static_cast<ThreadLocalValueHolderBase*>(pthread_getspecific(key_));\n    if (holder != nullptr) {\n      return CheckedDowncastToActualType<ValueHolder>(holder)->pointer();\n    }\n\n    ValueHolder* const new_holder = default_factory_->MakeNewHolder();\n    ThreadLocalValueHolderBase* const holder_base = new_holder;\n    GTEST_CHECK_POSIX_SUCCESS_(pthread_setspecific(key_, holder_base));\n    return new_holder->pointer();\n  }\n\n  class ValueHolderFactory {\n   public:\n    ValueHolderFactory() {}\n    virtual ~ValueHolderFactory() {}\n    virtual ValueHolder* MakeNewHolder() const = 0;\n\n   private:\n    GTEST_DISALLOW_COPY_AND_ASSIGN_(ValueHolderFactory);\n  };\n\n  class DefaultValueHolderFactory : public ValueHolderFactory {\n   public:\n    DefaultValueHolderFactory() {}\n    ValueHolder* MakeNewHolder() const override { return new ValueHolder(); }\n\n   private:\n    GTEST_DISALLOW_COPY_AND_ASSIGN_(DefaultValueHolderFactory);\n  };\n\n  class InstanceValueHolderFactory : public ValueHolderFactory {\n   public:\n    explicit InstanceValueHolderFactory(const T& value) : value_(value) {}\n    ValueHolder* MakeNewHolder() const override {\n      return new ValueHolder(value_);\n    }\n\n   private:\n    const T value_;  // The value for each thread.\n\n    GTEST_DISALLOW_COPY_AND_ASSIGN_(InstanceValueHolderFactory);\n  };\n\n  // A key pthreads uses for looking up per-thread values.\n  const pthread_key_t key_;\n  std::unique_ptr<ValueHolderFactory> default_factory_;\n\n  GTEST_DISALLOW_COPY_AND_ASSIGN_(ThreadLocal);\n};\n\n# endif  // GTEST_HAS_MUTEX_AND_THREAD_LOCAL_\n\n#else  // GTEST_IS_THREADSAFE\n\n// A dummy implementation of synchronization primitives (mutex, lock,\n// and thread-local variable).  Necessary for compiling Google Test where\n// mutex is not supported - using Google Test in multiple threads is not\n// supported on such platforms.\n\nclass Mutex {\n public:\n  Mutex() {}\n  void Lock() {}\n  void Unlock() {}\n  void AssertHeld() const {}\n};\n\n# define GTEST_DECLARE_STATIC_MUTEX_(mutex) \\\n  extern ::testing::internal::Mutex mutex\n\n# define GTEST_DEFINE_STATIC_MUTEX_(mutex) ::testing::internal::Mutex mutex\n\n// We cannot name this class MutexLock because the ctor declaration would\n// conflict with a macro named MutexLock, which is defined on some\n// platforms. That macro is used as a defensive measure to prevent against\n// inadvertent misuses of MutexLock like \"MutexLock(&mu)\" rather than\n// \"MutexLock l(&mu)\".  Hence the typedef trick below.\nclass GTestMutexLock {\n public:\n  explicit GTestMutexLock(Mutex*) {}  // NOLINT\n};\n\ntypedef GTestMutexLock MutexLock;\n\ntemplate <typename T>\nclass GTEST_API_ ThreadLocal {\n public:\n  ThreadLocal() : value_() {}\n  explicit ThreadLocal(const T& value) : value_(value) {}\n  T* pointer() { return &value_; }\n  const T* pointer() const { return &value_; }\n  const T& get() const { return value_; }\n  void set(const T& value) { value_ = value; }\n private:\n  T value_;\n};\n\n#endif  // GTEST_IS_THREADSAFE\n\n// Returns the number of threads running in the process, or 0 to indicate that\n// we cannot detect it.\nGTEST_API_ size_t GetThreadCount();\n\n#if GTEST_OS_WINDOWS\n# define GTEST_PATH_SEP_ \"\\\\\"\n# define GTEST_HAS_ALT_PATH_SEP_ 1\n#else\n# define GTEST_PATH_SEP_ \"/\"\n# define GTEST_HAS_ALT_PATH_SEP_ 0\n#endif  // GTEST_OS_WINDOWS\n\n// Utilities for char.\n\n// isspace(int ch) and friends accept an unsigned char or EOF.  char\n// may be signed, depending on the compiler (or compiler flags).\n// Therefore we need to cast a char to unsigned char before calling\n// isspace(), etc.\n\ninline bool IsAlpha(char ch) {\n  return isalpha(static_cast<unsigned char>(ch)) != 0;\n}\ninline bool IsAlNum(char ch) {\n  return isalnum(static_cast<unsigned char>(ch)) != 0;\n}\ninline bool IsDigit(char ch) {\n  return isdigit(static_cast<unsigned char>(ch)) != 0;\n}\ninline bool IsLower(char ch) {\n  return islower(static_cast<unsigned char>(ch)) != 0;\n}\ninline bool IsSpace(char ch) {\n  return isspace(static_cast<unsigned char>(ch)) != 0;\n}\ninline bool IsUpper(char ch) {\n  return isupper(static_cast<unsigned char>(ch)) != 0;\n}\ninline bool IsXDigit(char ch) {\n  return isxdigit(static_cast<unsigned char>(ch)) != 0;\n}\n#ifdef __cpp_char8_t\ninline bool IsXDigit(char8_t ch) {\n  return isxdigit(static_cast<unsigned char>(ch)) != 0;\n}\n#endif\ninline bool IsXDigit(char16_t ch) {\n  const unsigned char low_byte = static_cast<unsigned char>(ch);\n  return ch == low_byte && isxdigit(low_byte) != 0;\n}\ninline bool IsXDigit(char32_t ch) {\n  const unsigned char low_byte = static_cast<unsigned char>(ch);\n  return ch == low_byte && isxdigit(low_byte) != 0;\n}\ninline bool IsXDigit(wchar_t ch) {\n  const unsigned char low_byte = static_cast<unsigned char>(ch);\n  return ch == low_byte && isxdigit(low_byte) != 0;\n}\n\ninline char ToLower(char ch) {\n  return static_cast<char>(tolower(static_cast<unsigned char>(ch)));\n}\ninline char ToUpper(char ch) {\n  return static_cast<char>(toupper(static_cast<unsigned char>(ch)));\n}\n\ninline std::string StripTrailingSpaces(std::string str) {\n  std::string::iterator it = str.end();\n  while (it != str.begin() && IsSpace(*--it))\n    it = str.erase(it);\n  return str;\n}\n\n// The testing::internal::posix namespace holds wrappers for common\n// POSIX functions.  These wrappers hide the differences between\n// Windows/MSVC and POSIX systems.  Since some compilers define these\n// standard functions as macros, the wrapper cannot have the same name\n// as the wrapped function.\n\nnamespace posix {\n\n// Functions with a different name on Windows.\n\n#if GTEST_OS_WINDOWS\n\ntypedef struct _stat StatStruct;\n\n# ifdef __BORLANDC__\ninline int DoIsATTY(int fd) { return isatty(fd); }\ninline int StrCaseCmp(const char* s1, const char* s2) {\n  return stricmp(s1, s2);\n}\ninline char* StrDup(const char* src) { return strdup(src); }\n# else  // !__BORLANDC__\n#  if GTEST_OS_WINDOWS_MOBILE\ninline int DoIsATTY(int /* fd */) { return 0; }\n#  else\ninline int DoIsATTY(int fd) { return _isatty(fd); }\n#  endif  // GTEST_OS_WINDOWS_MOBILE\ninline int StrCaseCmp(const char* s1, const char* s2) {\n  return _stricmp(s1, s2);\n}\ninline char* StrDup(const char* src) { return _strdup(src); }\n# endif  // __BORLANDC__\n\n# if GTEST_OS_WINDOWS_MOBILE\ninline int FileNo(FILE* file) { return reinterpret_cast<int>(_fileno(file)); }\n// Stat(), RmDir(), and IsDir() are not needed on Windows CE at this\n// time and thus not defined there.\n# else\ninline int FileNo(FILE* file) { return _fileno(file); }\ninline int Stat(const char* path, StatStruct* buf) { return _stat(path, buf); }\ninline int RmDir(const char* dir) { return _rmdir(dir); }\ninline bool IsDir(const StatStruct& st) {\n  return (_S_IFDIR & st.st_mode) != 0;\n}\n# endif  // GTEST_OS_WINDOWS_MOBILE\n\n#elif GTEST_OS_ESP8266\ntypedef struct stat StatStruct;\n\ninline int FileNo(FILE* file) { return fileno(file); }\ninline int DoIsATTY(int fd) { return isatty(fd); }\ninline int Stat(const char* path, StatStruct* buf) {\n  // stat function not implemented on ESP8266\n  return 0;\n}\ninline int StrCaseCmp(const char* s1, const char* s2) {\n  return strcasecmp(s1, s2);\n}\ninline char* StrDup(const char* src) { return strdup(src); }\ninline int RmDir(const char* dir) { return rmdir(dir); }\ninline bool IsDir(const StatStruct& st) { return S_ISDIR(st.st_mode); }\n\n#else\n\ntypedef struct stat StatStruct;\n\ninline int FileNo(FILE* file) { return fileno(file); }\ninline int DoIsATTY(int fd) { return isatty(fd); }\ninline int Stat(const char* path, StatStruct* buf) { return stat(path, buf); }\ninline int StrCaseCmp(const char* s1, const char* s2) {\n  return strcasecmp(s1, s2);\n}\ninline char* StrDup(const char* src) { return strdup(src); }\ninline int RmDir(const char* dir) { return rmdir(dir); }\ninline bool IsDir(const StatStruct& st) { return S_ISDIR(st.st_mode); }\n\n#endif  // GTEST_OS_WINDOWS\n\ninline int IsATTY(int fd) {\n  // DoIsATTY might change errno (for example ENOTTY in case you redirect stdout\n  // to a file on Linux), which is unexpected, so save the previous value, and\n  // restore it after the call.\n  int savedErrno = errno;\n  int isAttyValue = DoIsATTY(fd);\n  errno = savedErrno;\n\n  return isAttyValue;\n}\n\n// Functions deprecated by MSVC 8.0.\n\nGTEST_DISABLE_MSC_DEPRECATED_PUSH_()\n\n// ChDir(), FReopen(), FDOpen(), Read(), Write(), Close(), and\n// StrError() aren't needed on Windows CE at this time and thus not\n// defined there.\n\n#if !GTEST_OS_WINDOWS_MOBILE && !GTEST_OS_WINDOWS_PHONE && \\\n    !GTEST_OS_WINDOWS_RT && !GTEST_OS_ESP8266 && !GTEST_OS_XTENSA\ninline int ChDir(const char* dir) { return chdir(dir); }\n#endif\ninline FILE* FOpen(const char* path, const char* mode) {\n#if GTEST_OS_WINDOWS && !GTEST_OS_WINDOWS_MINGW\n  struct wchar_codecvt : public std::codecvt<wchar_t, char, std::mbstate_t> {};\n  std::wstring_convert<wchar_codecvt> converter;\n  std::wstring wide_path = converter.from_bytes(path);\n  std::wstring wide_mode = converter.from_bytes(mode);\n  return _wfopen(wide_path.c_str(), wide_mode.c_str());\n#else  // GTEST_OS_WINDOWS && !GTEST_OS_WINDOWS_MINGW\n  return fopen(path, mode);\n#endif  // GTEST_OS_WINDOWS && !GTEST_OS_WINDOWS_MINGW\n}\n#if !GTEST_OS_WINDOWS_MOBILE\ninline FILE *FReopen(const char* path, const char* mode, FILE* stream) {\n  return freopen(path, mode, stream);\n}\ninline FILE* FDOpen(int fd, const char* mode) { return fdopen(fd, mode); }\n#endif\ninline int FClose(FILE* fp) { return fclose(fp); }\n#if !GTEST_OS_WINDOWS_MOBILE\ninline int Read(int fd, void* buf, unsigned int count) {\n  return static_cast<int>(read(fd, buf, count));\n}\ninline int Write(int fd, const void* buf, unsigned int count) {\n  return static_cast<int>(write(fd, buf, count));\n}\ninline int Close(int fd) { return close(fd); }\ninline const char* StrError(int errnum) { return strerror(errnum); }\n#endif\ninline const char* GetEnv(const char* name) {\n#if GTEST_OS_WINDOWS_MOBILE || GTEST_OS_WINDOWS_PHONE || \\\n    GTEST_OS_WINDOWS_RT || GTEST_OS_ESP8266 || GTEST_OS_XTENSA\n  // We are on an embedded platform, which has no environment variables.\n  static_cast<void>(name);  // To prevent 'unused argument' warning.\n  return nullptr;\n#elif defined(__BORLANDC__) || defined(__SunOS_5_8) || defined(__SunOS_5_9)\n  // Environment variables which we programmatically clear will be set to the\n  // empty string rather than unset (NULL).  Handle that case.\n  const char* const env = getenv(name);\n  return (env != nullptr && env[0] != '\\0') ? env : nullptr;\n#else\n  return getenv(name);\n#endif\n}\n\nGTEST_DISABLE_MSC_DEPRECATED_POP_()\n\n#if GTEST_OS_WINDOWS_MOBILE\n// Windows CE has no C library. The abort() function is used in\n// several places in Google Test. This implementation provides a reasonable\n// imitation of standard behaviour.\n[[noreturn]] void Abort();\n#else\n[[noreturn]] inline void Abort() { abort(); }\n#endif  // GTEST_OS_WINDOWS_MOBILE\n\n}  // namespace posix\n\n// MSVC \"deprecates\" snprintf and issues warnings wherever it is used.  In\n// order to avoid these warnings, we need to use _snprintf or _snprintf_s on\n// MSVC-based platforms.  We map the GTEST_SNPRINTF_ macro to the appropriate\n// function in order to achieve that.  We use macro definition here because\n// snprintf is a variadic function.\n#if _MSC_VER && !GTEST_OS_WINDOWS_MOBILE\n// MSVC 2005 and above support variadic macros.\n# define GTEST_SNPRINTF_(buffer, size, format, ...) \\\n     _snprintf_s(buffer, size, size, format, __VA_ARGS__)\n#elif defined(_MSC_VER)\n// Windows CE does not define _snprintf_s\n# define GTEST_SNPRINTF_ _snprintf\n#else\n# define GTEST_SNPRINTF_ snprintf\n#endif\n\n// The biggest signed integer type the compiler supports.\n//\n// long long is guaranteed to be at least 64-bits in C++11.\nusing BiggestInt = long long;  // NOLINT\n\n// The maximum number a BiggestInt can represent.\nconstexpr BiggestInt kMaxBiggestInt = (std::numeric_limits<BiggestInt>::max)();\n\n// This template class serves as a compile-time function from size to\n// type.  It maps a size in bytes to a primitive type with that\n// size. e.g.\n//\n//   TypeWithSize<4>::UInt\n//\n// is typedef-ed to be unsigned int (unsigned integer made up of 4\n// bytes).\n//\n// Such functionality should belong to STL, but I cannot find it\n// there.\n//\n// Google Test uses this class in the implementation of floating-point\n// comparison.\n//\n// For now it only handles UInt (unsigned int) as that's all Google Test\n// needs.  Other types can be easily added in the future if need\n// arises.\ntemplate <size_t size>\nclass TypeWithSize {\n public:\n  // This prevents the user from using TypeWithSize<N> with incorrect\n  // values of N.\n  using UInt = void;\n};\n\n// The specialization for size 4.\ntemplate <>\nclass TypeWithSize<4> {\n public:\n  using Int = std::int32_t;\n  using UInt = std::uint32_t;\n};\n\n// The specialization for size 8.\ntemplate <>\nclass TypeWithSize<8> {\n public:\n  using Int = std::int64_t;\n  using UInt = std::uint64_t;\n};\n\n// Integer types of known sizes.\nusing TimeInMillis = int64_t;  // Represents time in milliseconds.\n\n// Utilities for command line flags and environment variables.\n\n// Macro for referencing flags.\n#if !defined(GTEST_FLAG)\n# define GTEST_FLAG(name) FLAGS_gtest_##name\n#endif  // !defined(GTEST_FLAG)\n\n#if !defined(GTEST_USE_OWN_FLAGFILE_FLAG_)\n# define GTEST_USE_OWN_FLAGFILE_FLAG_ 1\n#endif  // !defined(GTEST_USE_OWN_FLAGFILE_FLAG_)\n\n#if !defined(GTEST_DECLARE_bool_)\n# define GTEST_FLAG_SAVER_ ::testing::internal::GTestFlagSaver\n\n// Macros for declaring flags.\n# define GTEST_DECLARE_bool_(name) GTEST_API_ extern bool GTEST_FLAG(name)\n# define GTEST_DECLARE_int32_(name) \\\n    GTEST_API_ extern std::int32_t GTEST_FLAG(name)\n# define GTEST_DECLARE_string_(name) \\\n    GTEST_API_ extern ::std::string GTEST_FLAG(name)\n\n// Macros for defining flags.\n# define GTEST_DEFINE_bool_(name, default_val, doc) \\\n    GTEST_API_ bool GTEST_FLAG(name) = (default_val)\n# define GTEST_DEFINE_int32_(name, default_val, doc) \\\n    GTEST_API_ std::int32_t GTEST_FLAG(name) = (default_val)\n# define GTEST_DEFINE_string_(name, default_val, doc) \\\n    GTEST_API_ ::std::string GTEST_FLAG(name) = (default_val)\n\n#endif  // !defined(GTEST_DECLARE_bool_)\n\n// Thread annotations\n#if !defined(GTEST_EXCLUSIVE_LOCK_REQUIRED_)\n# define GTEST_EXCLUSIVE_LOCK_REQUIRED_(locks)\n# define GTEST_LOCK_EXCLUDED_(locks)\n#endif  // !defined(GTEST_EXCLUSIVE_LOCK_REQUIRED_)\n\n// Parses 'str' for a 32-bit signed integer.  If successful, writes the result\n// to *value and returns true; otherwise leaves *value unchanged and returns\n// false.\nGTEST_API_ bool ParseInt32(const Message& src_text, const char* str,\n                           int32_t* value);\n\n// Parses a bool/int32_t/string from the environment variable\n// corresponding to the given Google Test flag.\nbool BoolFromGTestEnv(const char* flag, bool default_val);\nGTEST_API_ int32_t Int32FromGTestEnv(const char* flag, int32_t default_val);\nstd::string OutputFlagAlsoCheckEnvVar();\nconst char* StringFromGTestEnv(const char* flag, const char* default_val);\n\n}  // namespace internal\n}  // namespace testing\n\n#if !defined(GTEST_INTERNAL_DEPRECATED)\n\n// Internal Macro to mark an API deprecated, for googletest usage only\n// Usage: class GTEST_INTERNAL_DEPRECATED(message) MyClass or\n// GTEST_INTERNAL_DEPRECATED(message) <return_type> myFunction(); Every usage of\n// a deprecated entity will trigger a warning when compiled with\n// `-Wdeprecated-declarations` option (clang, gcc, any __GNUC__ compiler).\n// For msvc /W3 option will need to be used\n// Note that for 'other' compilers this macro evaluates to nothing to prevent\n// compilations errors.\n#if defined(_MSC_VER)\n#define GTEST_INTERNAL_DEPRECATED(message) __declspec(deprecated(message))\n#elif defined(__GNUC__)\n#define GTEST_INTERNAL_DEPRECATED(message) __attribute__((deprecated(message)))\n#else\n#define GTEST_INTERNAL_DEPRECATED(message)\n#endif\n\n#endif  // !defined(GTEST_INTERNAL_DEPRECATED)\n\n#if GTEST_HAS_ABSL\n// Always use absl::any for UniversalPrinter<> specializations if googletest\n// is built with absl support.\n#define GTEST_INTERNAL_HAS_ANY 1\n#include \"absl/types/any.h\"\nnamespace testing {\nnamespace internal {\nusing Any = ::absl::any;\n}  // namespace internal\n}  // namespace testing\n#else\n#ifdef __has_include\n#if __has_include(<any>) && __cplusplus >= 201703L\n// Otherwise for C++17 and higher use std::any for UniversalPrinter<>\n// specializations.\n#define GTEST_INTERNAL_HAS_ANY 1\n#include <any>\nnamespace testing {\nnamespace internal {\nusing Any = ::std::any;\n}  // namespace internal\n}  // namespace testing\n// The case where absl is configured NOT to alias std::any is not\n// supported.\n#endif  // __has_include(<any>) && __cplusplus >= 201703L\n#endif  // __has_include\n#endif  // GTEST_HAS_ABSL\n\n#if GTEST_HAS_ABSL\n// Always use absl::optional for UniversalPrinter<> specializations if\n// googletest is built with absl support.\n#define GTEST_INTERNAL_HAS_OPTIONAL 1\n#include \"absl/types/optional.h\"\nnamespace testing {\nnamespace internal {\ntemplate <typename T>\nusing Optional = ::absl::optional<T>;\n}  // namespace internal\n}  // namespace testing\n#else\n#ifdef __has_include\n#if __has_include(<optional>) && __cplusplus >= 201703L\n// Otherwise for C++17 and higher use std::optional for UniversalPrinter<>\n// specializations.\n#define GTEST_INTERNAL_HAS_OPTIONAL 1\n#include <optional>\nnamespace testing {\nnamespace internal {\ntemplate <typename T>\nusing Optional = ::std::optional<T>;\n}  // namespace internal\n}  // namespace testing\n// The case where absl is configured NOT to alias std::optional is not\n// supported.\n#endif  // __has_include(<optional>) && __cplusplus >= 201703L\n#endif  // __has_include\n#endif  // GTEST_HAS_ABSL\n\n#if GTEST_HAS_ABSL\n// Always use absl::string_view for Matcher<> specializations if googletest\n// is built with absl support.\n# define GTEST_INTERNAL_HAS_STRING_VIEW 1\n#include \"absl/strings/string_view.h\"\nnamespace testing {\nnamespace internal {\nusing StringView = ::absl::string_view;\n}  // namespace internal\n}  // namespace testing\n#else\n# ifdef __has_include\n#   if __has_include(<string_view>) && __cplusplus >= 201703L\n// Otherwise for C++17 and higher use std::string_view for Matcher<>\n// specializations.\n#   define GTEST_INTERNAL_HAS_STRING_VIEW 1\n#include <string_view>\nnamespace testing {\nnamespace internal {\nusing StringView = ::std::string_view;\n}  // namespace internal\n}  // namespace testing\n// The case where absl is configured NOT to alias std::string_view is not\n// supported.\n#  endif  // __has_include(<string_view>) && __cplusplus >= 201703L\n# endif  // __has_include\n#endif  // GTEST_HAS_ABSL\n\n#if GTEST_HAS_ABSL\n// Always use absl::variant for UniversalPrinter<> specializations if googletest\n// is built with absl support.\n#define GTEST_INTERNAL_HAS_VARIANT 1\n#include \"absl/types/variant.h\"\nnamespace testing {\nnamespace internal {\ntemplate <typename... T>\nusing Variant = ::absl::variant<T...>;\n}  // namespace internal\n}  // namespace testing\n#else\n#ifdef __has_include\n#if __has_include(<variant>) && __cplusplus >= 201703L\n// Otherwise for C++17 and higher use std::variant for UniversalPrinter<>\n// specializations.\n#define GTEST_INTERNAL_HAS_VARIANT 1\n#include <variant>\nnamespace testing {\nnamespace internal {\ntemplate <typename... T>\nusing Variant = ::std::variant<T...>;\n}  // namespace internal\n}  // namespace testing\n// The case where absl is configured NOT to alias std::variant is not supported.\n#endif  // __has_include(<variant>) && __cplusplus >= 201703L\n#endif  // __has_include\n#endif  // GTEST_HAS_ABSL\n\n#endif  // GOOGLETEST_INCLUDE_GTEST_INTERNAL_GTEST_PORT_H_\n"
  },
  {
    "path": "test/gtest/include/gtest/internal/gtest-string.h",
    "content": "// Copyright 2005, Google Inc.\n// All rights reserved.\n//\n// Redistribution and use in source and binary forms, with or without\n// modification, are permitted provided that the following conditions are\n// met:\n//\n//     * Redistributions of source code must retain the above copyright\n// notice, this list of conditions and the following disclaimer.\n//     * Redistributions in binary form must reproduce the above\n// copyright notice, this list of conditions and the following disclaimer\n// in the documentation and/or other materials provided with the\n// distribution.\n//     * Neither the name of Google Inc. nor the names of its\n// contributors may be used to endorse or promote products derived from\n// this software without specific prior written permission.\n//\n// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n// \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n//\n// The Google C++ Testing and Mocking Framework (Google Test)\n//\n// This header file declares the String class and functions used internally by\n// Google Test.  They are subject to change without notice. They should not used\n// by code external to Google Test.\n//\n// This header file is #included by gtest-internal.h.\n// It should not be #included by other files.\n\n// GOOGLETEST_CM0001 DO NOT DELETE\n\n#ifndef GOOGLETEST_INCLUDE_GTEST_INTERNAL_GTEST_STRING_H_\n#define GOOGLETEST_INCLUDE_GTEST_INTERNAL_GTEST_STRING_H_\n\n#ifdef __BORLANDC__\n// string.h is not guaranteed to provide strcpy on C++ Builder.\n# include <mem.h>\n#endif\n\n#include <string.h>\n#include <cstdint>\n#include <string>\n\n#include \"gtest/internal/gtest-port.h\"\n\nnamespace testing {\nnamespace internal {\n\n// String - an abstract class holding static string utilities.\nclass GTEST_API_ String {\n public:\n  // Static utility methods\n\n  // Clones a 0-terminated C string, allocating memory using new.  The\n  // caller is responsible for deleting the return value using\n  // delete[].  Returns the cloned string, or NULL if the input is\n  // NULL.\n  //\n  // This is different from strdup() in string.h, which allocates\n  // memory using malloc().\n  static const char* CloneCString(const char* c_str);\n\n#if GTEST_OS_WINDOWS_MOBILE\n  // Windows CE does not have the 'ANSI' versions of Win32 APIs. To be\n  // able to pass strings to Win32 APIs on CE we need to convert them\n  // to 'Unicode', UTF-16.\n\n  // Creates a UTF-16 wide string from the given ANSI string, allocating\n  // memory using new. The caller is responsible for deleting the return\n  // value using delete[]. Returns the wide string, or NULL if the\n  // input is NULL.\n  //\n  // The wide string is created using the ANSI codepage (CP_ACP) to\n  // match the behaviour of the ANSI versions of Win32 calls and the\n  // C runtime.\n  static LPCWSTR AnsiToUtf16(const char* c_str);\n\n  // Creates an ANSI string from the given wide string, allocating\n  // memory using new. The caller is responsible for deleting the return\n  // value using delete[]. Returns the ANSI string, or NULL if the\n  // input is NULL.\n  //\n  // The returned string is created using the ANSI codepage (CP_ACP) to\n  // match the behaviour of the ANSI versions of Win32 calls and the\n  // C runtime.\n  static const char* Utf16ToAnsi(LPCWSTR utf16_str);\n#endif\n\n  // Compares two C strings.  Returns true if and only if they have the same\n  // content.\n  //\n  // Unlike strcmp(), this function can handle NULL argument(s).  A\n  // NULL C string is considered different to any non-NULL C string,\n  // including the empty string.\n  static bool CStringEquals(const char* lhs, const char* rhs);\n\n  // Converts a wide C string to a String using the UTF-8 encoding.\n  // NULL will be converted to \"(null)\".  If an error occurred during\n  // the conversion, \"(failed to convert from wide string)\" is\n  // returned.\n  static std::string ShowWideCString(const wchar_t* wide_c_str);\n\n  // Compares two wide C strings.  Returns true if and only if they have the\n  // same content.\n  //\n  // Unlike wcscmp(), this function can handle NULL argument(s).  A\n  // NULL C string is considered different to any non-NULL C string,\n  // including the empty string.\n  static bool WideCStringEquals(const wchar_t* lhs, const wchar_t* rhs);\n\n  // Compares two C strings, ignoring case.  Returns true if and only if\n  // they have the same content.\n  //\n  // Unlike strcasecmp(), this function can handle NULL argument(s).\n  // A NULL C string is considered different to any non-NULL C string,\n  // including the empty string.\n  static bool CaseInsensitiveCStringEquals(const char* lhs,\n                                           const char* rhs);\n\n  // Compares two wide C strings, ignoring case.  Returns true if and only if\n  // they have the same content.\n  //\n  // Unlike wcscasecmp(), this function can handle NULL argument(s).\n  // A NULL C string is considered different to any non-NULL wide C string,\n  // including the empty string.\n  // NB: The implementations on different platforms slightly differ.\n  // On windows, this method uses _wcsicmp which compares according to LC_CTYPE\n  // environment variable. On GNU platform this method uses wcscasecmp\n  // which compares according to LC_CTYPE category of the current locale.\n  // On MacOS X, it uses towlower, which also uses LC_CTYPE category of the\n  // current locale.\n  static bool CaseInsensitiveWideCStringEquals(const wchar_t* lhs,\n                                               const wchar_t* rhs);\n\n  // Returns true if and only if the given string ends with the given suffix,\n  // ignoring case. Any string is considered to end with an empty suffix.\n  static bool EndsWithCaseInsensitive(\n      const std::string& str, const std::string& suffix);\n\n  // Formats an int value as \"%02d\".\n  static std::string FormatIntWidth2(int value);  // \"%02d\" for width == 2\n\n  // Formats an int value to given width with leading zeros.\n  static std::string FormatIntWidthN(int value, int width);\n\n  // Formats an int value as \"%X\".\n  static std::string FormatHexInt(int value);\n\n  // Formats an int value as \"%X\".\n  static std::string FormatHexUInt32(uint32_t value);\n\n  // Formats a byte as \"%02X\".\n  static std::string FormatByte(unsigned char value);\n\n private:\n  String();  // Not meant to be instantiated.\n};  // class String\n\n// Gets the content of the stringstream's buffer as an std::string.  Each '\\0'\n// character in the buffer is replaced with \"\\\\0\".\nGTEST_API_ std::string StringStreamToString(::std::stringstream* stream);\n\n}  // namespace internal\n}  // namespace testing\n\n#endif  // GOOGLETEST_INCLUDE_GTEST_INTERNAL_GTEST_STRING_H_\n"
  },
  {
    "path": "test/gtest/include/gtest/internal/gtest-tuple.h",
    "content": "// This file was GENERATED by command:\n//     pump.py gtest-tuple.h.pump\n// DO NOT EDIT BY HAND!!!\n\n// Copyright 2009 Google Inc.\n// All Rights Reserved.\n//\n// Redistribution and use in source and binary forms, with or without\n// modification, are permitted provided that the following conditions are\n// met:\n//\n//     * Redistributions of source code must retain the above copyright\n// notice, this list of conditions and the following disclaimer.\n//     * Redistributions in binary form must reproduce the above\n// copyright notice, this list of conditions and the following disclaimer\n// in the documentation and/or other materials provided with the\n// distribution.\n//     * Neither the name of Google Inc. nor the names of its\n// contributors may be used to endorse or promote products derived from\n// this software without specific prior written permission.\n//\n// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n// \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n//\n// Author: wan@google.com (Zhanyong Wan)\n\n// Implements a subset of TR1 tuple needed by Google Test and Google Mock.\n\n#ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_TUPLE_H_\n#define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_TUPLE_H_\n\n#include <utility>  // For ::std::pair.\n\n// The compiler used in Symbian has a bug that prevents us from declaring the\n// tuple template as a friend (it complains that tuple is redefined).  This\n// hack bypasses the bug by declaring the members that should otherwise be\n// private as public.\n// Sun Studio versions < 12 also have the above bug.\n#if defined(__SYMBIAN32__) || (defined(__SUNPRO_CC) && __SUNPRO_CC < 0x590)\n# define GTEST_DECLARE_TUPLE_AS_FRIEND_ public:\n#else\n# define GTEST_DECLARE_TUPLE_AS_FRIEND_ \\\n    template <GTEST_10_TYPENAMES_(U)> friend class tuple; \\\n   private:\n#endif\n\n// Visual Studio 2010, 2012, and 2013 define symbols in std::tr1 that conflict\n// with our own definitions. Therefore using our own tuple does not work on\n// those compilers.\n#if defined(_MSC_VER) && _MSC_VER >= 1600  /* 1600 is Visual Studio 2010 */\n# error \"gtest's tuple doesn't compile on Visual Studio 2010 or later. \\\nGTEST_USE_OWN_TR1_TUPLE must be set to 0 on those compilers.\"\n#endif\n\n// GTEST_n_TUPLE_(T) is the type of an n-tuple.\n#define GTEST_0_TUPLE_(T) tuple<>\n#define GTEST_1_TUPLE_(T) tuple<T##0, void, void, void, void, void, void, \\\n    void, void, void>\n#define GTEST_2_TUPLE_(T) tuple<T##0, T##1, void, void, void, void, void, \\\n    void, void, void>\n#define GTEST_3_TUPLE_(T) tuple<T##0, T##1, T##2, void, void, void, void, \\\n    void, void, void>\n#define GTEST_4_TUPLE_(T) tuple<T##0, T##1, T##2, T##3, void, void, void, \\\n    void, void, void>\n#define GTEST_5_TUPLE_(T) tuple<T##0, T##1, T##2, T##3, T##4, void, void, \\\n    void, void, void>\n#define GTEST_6_TUPLE_(T) tuple<T##0, T##1, T##2, T##3, T##4, T##5, void, \\\n    void, void, void>\n#define GTEST_7_TUPLE_(T) tuple<T##0, T##1, T##2, T##3, T##4, T##5, T##6, \\\n    void, void, void>\n#define GTEST_8_TUPLE_(T) tuple<T##0, T##1, T##2, T##3, T##4, T##5, T##6, \\\n    T##7, void, void>\n#define GTEST_9_TUPLE_(T) tuple<T##0, T##1, T##2, T##3, T##4, T##5, T##6, \\\n    T##7, T##8, void>\n#define GTEST_10_TUPLE_(T) tuple<T##0, T##1, T##2, T##3, T##4, T##5, T##6, \\\n    T##7, T##8, T##9>\n\n// GTEST_n_TYPENAMES_(T) declares a list of n typenames.\n#define GTEST_0_TYPENAMES_(T)\n#define GTEST_1_TYPENAMES_(T) typename T##0\n#define GTEST_2_TYPENAMES_(T) typename T##0, typename T##1\n#define GTEST_3_TYPENAMES_(T) typename T##0, typename T##1, typename T##2\n#define GTEST_4_TYPENAMES_(T) typename T##0, typename T##1, typename T##2, \\\n    typename T##3\n#define GTEST_5_TYPENAMES_(T) typename T##0, typename T##1, typename T##2, \\\n    typename T##3, typename T##4\n#define GTEST_6_TYPENAMES_(T) typename T##0, typename T##1, typename T##2, \\\n    typename T##3, typename T##4, typename T##5\n#define GTEST_7_TYPENAMES_(T) typename T##0, typename T##1, typename T##2, \\\n    typename T##3, typename T##4, typename T##5, typename T##6\n#define GTEST_8_TYPENAMES_(T) typename T##0, typename T##1, typename T##2, \\\n    typename T##3, typename T##4, typename T##5, typename T##6, typename T##7\n#define GTEST_9_TYPENAMES_(T) typename T##0, typename T##1, typename T##2, \\\n    typename T##3, typename T##4, typename T##5, typename T##6, \\\n    typename T##7, typename T##8\n#define GTEST_10_TYPENAMES_(T) typename T##0, typename T##1, typename T##2, \\\n    typename T##3, typename T##4, typename T##5, typename T##6, \\\n    typename T##7, typename T##8, typename T##9\n\n// In theory, defining stuff in the ::std namespace is undefined\n// behavior.  We can do this as we are playing the role of a standard\n// library vendor.\nnamespace std {\nnamespace tr1 {\n\ntemplate <typename T0 = void, typename T1 = void, typename T2 = void,\n    typename T3 = void, typename T4 = void, typename T5 = void,\n    typename T6 = void, typename T7 = void, typename T8 = void,\n    typename T9 = void>\nclass tuple;\n\n// Anything in namespace gtest_internal is Google Test's INTERNAL\n// IMPLEMENTATION DETAIL and MUST NOT BE USED DIRECTLY in user code.\nnamespace gtest_internal {\n\n// ByRef<T>::type is T if T is a reference; otherwise it's const T&.\ntemplate <typename T>\nstruct ByRef { typedef const T& type; };  // NOLINT\ntemplate <typename T>\nstruct ByRef<T&> { typedef T& type; };  // NOLINT\n\n// A handy wrapper for ByRef.\n#define GTEST_BY_REF_(T) typename ::std::tr1::gtest_internal::ByRef<T>::type\n\n// AddRef<T>::type is T if T is a reference; otherwise it's T&.  This\n// is the same as tr1::add_reference<T>::type.\ntemplate <typename T>\nstruct AddRef { typedef T& type; };  // NOLINT\ntemplate <typename T>\nstruct AddRef<T&> { typedef T& type; };  // NOLINT\n\n// A handy wrapper for AddRef.\n#define GTEST_ADD_REF_(T) typename ::std::tr1::gtest_internal::AddRef<T>::type\n\n// A helper for implementing get<k>().\ntemplate <int k> class Get;\n\n// A helper for implementing tuple_element<k, T>.  kIndexValid is true\n// iff k < the number of fields in tuple type T.\ntemplate <bool kIndexValid, int kIndex, class Tuple>\nstruct TupleElement;\n\ntemplate <GTEST_10_TYPENAMES_(T)>\nstruct TupleElement<true, 0, GTEST_10_TUPLE_(T) > {\n  typedef T0 type;\n};\n\ntemplate <GTEST_10_TYPENAMES_(T)>\nstruct TupleElement<true, 1, GTEST_10_TUPLE_(T) > {\n  typedef T1 type;\n};\n\ntemplate <GTEST_10_TYPENAMES_(T)>\nstruct TupleElement<true, 2, GTEST_10_TUPLE_(T) > {\n  typedef T2 type;\n};\n\ntemplate <GTEST_10_TYPENAMES_(T)>\nstruct TupleElement<true, 3, GTEST_10_TUPLE_(T) > {\n  typedef T3 type;\n};\n\ntemplate <GTEST_10_TYPENAMES_(T)>\nstruct TupleElement<true, 4, GTEST_10_TUPLE_(T) > {\n  typedef T4 type;\n};\n\ntemplate <GTEST_10_TYPENAMES_(T)>\nstruct TupleElement<true, 5, GTEST_10_TUPLE_(T) > {\n  typedef T5 type;\n};\n\ntemplate <GTEST_10_TYPENAMES_(T)>\nstruct TupleElement<true, 6, GTEST_10_TUPLE_(T) > {\n  typedef T6 type;\n};\n\ntemplate <GTEST_10_TYPENAMES_(T)>\nstruct TupleElement<true, 7, GTEST_10_TUPLE_(T) > {\n  typedef T7 type;\n};\n\ntemplate <GTEST_10_TYPENAMES_(T)>\nstruct TupleElement<true, 8, GTEST_10_TUPLE_(T) > {\n  typedef T8 type;\n};\n\ntemplate <GTEST_10_TYPENAMES_(T)>\nstruct TupleElement<true, 9, GTEST_10_TUPLE_(T) > {\n  typedef T9 type;\n};\n\n}  // namespace gtest_internal\n\ntemplate <>\nclass tuple<> {\n public:\n  tuple() {}\n  tuple(const tuple& /* t */)  {}\n  tuple& operator=(const tuple& /* t */) { return *this; }\n};\n\ntemplate <GTEST_1_TYPENAMES_(T)>\nclass GTEST_1_TUPLE_(T) {\n public:\n  template <int k> friend class gtest_internal::Get;\n\n  tuple() : f0_() {}\n\n  explicit tuple(GTEST_BY_REF_(T0) f0) : f0_(f0) {}\n\n  tuple(const tuple& t) : f0_(t.f0_) {}\n\n  template <GTEST_1_TYPENAMES_(U)>\n  tuple(const GTEST_1_TUPLE_(U)& t) : f0_(t.f0_) {}\n\n  tuple& operator=(const tuple& t) { return CopyFrom(t); }\n\n  template <GTEST_1_TYPENAMES_(U)>\n  tuple& operator=(const GTEST_1_TUPLE_(U)& t) {\n    return CopyFrom(t);\n  }\n\n  GTEST_DECLARE_TUPLE_AS_FRIEND_\n\n  template <GTEST_1_TYPENAMES_(U)>\n  tuple& CopyFrom(const GTEST_1_TUPLE_(U)& t) {\n    f0_ = t.f0_;\n    return *this;\n  }\n\n  T0 f0_;\n};\n\ntemplate <GTEST_2_TYPENAMES_(T)>\nclass GTEST_2_TUPLE_(T) {\n public:\n  template <int k> friend class gtest_internal::Get;\n\n  tuple() : f0_(), f1_() {}\n\n  explicit tuple(GTEST_BY_REF_(T0) f0, GTEST_BY_REF_(T1) f1) : f0_(f0),\n      f1_(f1) {}\n\n  tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_) {}\n\n  template <GTEST_2_TYPENAMES_(U)>\n  tuple(const GTEST_2_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_) {}\n  template <typename U0, typename U1>\n  tuple(const ::std::pair<U0, U1>& p) : f0_(p.first), f1_(p.second) {}\n\n  tuple& operator=(const tuple& t) { return CopyFrom(t); }\n\n  template <GTEST_2_TYPENAMES_(U)>\n  tuple& operator=(const GTEST_2_TUPLE_(U)& t) {\n    return CopyFrom(t);\n  }\n  template <typename U0, typename U1>\n  tuple& operator=(const ::std::pair<U0, U1>& p) {\n    f0_ = p.first;\n    f1_ = p.second;\n    return *this;\n  }\n\n  GTEST_DECLARE_TUPLE_AS_FRIEND_\n\n  template <GTEST_2_TYPENAMES_(U)>\n  tuple& CopyFrom(const GTEST_2_TUPLE_(U)& t) {\n    f0_ = t.f0_;\n    f1_ = t.f1_;\n    return *this;\n  }\n\n  T0 f0_;\n  T1 f1_;\n};\n\ntemplate <GTEST_3_TYPENAMES_(T)>\nclass GTEST_3_TUPLE_(T) {\n public:\n  template <int k> friend class gtest_internal::Get;\n\n  tuple() : f0_(), f1_(), f2_() {}\n\n  explicit tuple(GTEST_BY_REF_(T0) f0, GTEST_BY_REF_(T1) f1,\n      GTEST_BY_REF_(T2) f2) : f0_(f0), f1_(f1), f2_(f2) {}\n\n  tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_) {}\n\n  template <GTEST_3_TYPENAMES_(U)>\n  tuple(const GTEST_3_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_) {}\n\n  tuple& operator=(const tuple& t) { return CopyFrom(t); }\n\n  template <GTEST_3_TYPENAMES_(U)>\n  tuple& operator=(const GTEST_3_TUPLE_(U)& t) {\n    return CopyFrom(t);\n  }\n\n  GTEST_DECLARE_TUPLE_AS_FRIEND_\n\n  template <GTEST_3_TYPENAMES_(U)>\n  tuple& CopyFrom(const GTEST_3_TUPLE_(U)& t) {\n    f0_ = t.f0_;\n    f1_ = t.f1_;\n    f2_ = t.f2_;\n    return *this;\n  }\n\n  T0 f0_;\n  T1 f1_;\n  T2 f2_;\n};\n\ntemplate <GTEST_4_TYPENAMES_(T)>\nclass GTEST_4_TUPLE_(T) {\n public:\n  template <int k> friend class gtest_internal::Get;\n\n  tuple() : f0_(), f1_(), f2_(), f3_() {}\n\n  explicit tuple(GTEST_BY_REF_(T0) f0, GTEST_BY_REF_(T1) f1,\n      GTEST_BY_REF_(T2) f2, GTEST_BY_REF_(T3) f3) : f0_(f0), f1_(f1), f2_(f2),\n      f3_(f3) {}\n\n  tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_) {}\n\n  template <GTEST_4_TYPENAMES_(U)>\n  tuple(const GTEST_4_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_),\n      f3_(t.f3_) {}\n\n  tuple& operator=(const tuple& t) { return CopyFrom(t); }\n\n  template <GTEST_4_TYPENAMES_(U)>\n  tuple& operator=(const GTEST_4_TUPLE_(U)& t) {\n    return CopyFrom(t);\n  }\n\n  GTEST_DECLARE_TUPLE_AS_FRIEND_\n\n  template <GTEST_4_TYPENAMES_(U)>\n  tuple& CopyFrom(const GTEST_4_TUPLE_(U)& t) {\n    f0_ = t.f0_;\n    f1_ = t.f1_;\n    f2_ = t.f2_;\n    f3_ = t.f3_;\n    return *this;\n  }\n\n  T0 f0_;\n  T1 f1_;\n  T2 f2_;\n  T3 f3_;\n};\n\ntemplate <GTEST_5_TYPENAMES_(T)>\nclass GTEST_5_TUPLE_(T) {\n public:\n  template <int k> friend class gtest_internal::Get;\n\n  tuple() : f0_(), f1_(), f2_(), f3_(), f4_() {}\n\n  explicit tuple(GTEST_BY_REF_(T0) f0, GTEST_BY_REF_(T1) f1,\n      GTEST_BY_REF_(T2) f2, GTEST_BY_REF_(T3) f3,\n      GTEST_BY_REF_(T4) f4) : f0_(f0), f1_(f1), f2_(f2), f3_(f3), f4_(f4) {}\n\n  tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_),\n      f4_(t.f4_) {}\n\n  template <GTEST_5_TYPENAMES_(U)>\n  tuple(const GTEST_5_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_),\n      f3_(t.f3_), f4_(t.f4_) {}\n\n  tuple& operator=(const tuple& t) { return CopyFrom(t); }\n\n  template <GTEST_5_TYPENAMES_(U)>\n  tuple& operator=(const GTEST_5_TUPLE_(U)& t) {\n    return CopyFrom(t);\n  }\n\n  GTEST_DECLARE_TUPLE_AS_FRIEND_\n\n  template <GTEST_5_TYPENAMES_(U)>\n  tuple& CopyFrom(const GTEST_5_TUPLE_(U)& t) {\n    f0_ = t.f0_;\n    f1_ = t.f1_;\n    f2_ = t.f2_;\n    f3_ = t.f3_;\n    f4_ = t.f4_;\n    return *this;\n  }\n\n  T0 f0_;\n  T1 f1_;\n  T2 f2_;\n  T3 f3_;\n  T4 f4_;\n};\n\ntemplate <GTEST_6_TYPENAMES_(T)>\nclass GTEST_6_TUPLE_(T) {\n public:\n  template <int k> friend class gtest_internal::Get;\n\n  tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_() {}\n\n  explicit tuple(GTEST_BY_REF_(T0) f0, GTEST_BY_REF_(T1) f1,\n      GTEST_BY_REF_(T2) f2, GTEST_BY_REF_(T3) f3, GTEST_BY_REF_(T4) f4,\n      GTEST_BY_REF_(T5) f5) : f0_(f0), f1_(f1), f2_(f2), f3_(f3), f4_(f4),\n      f5_(f5) {}\n\n  tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_),\n      f4_(t.f4_), f5_(t.f5_) {}\n\n  template <GTEST_6_TYPENAMES_(U)>\n  tuple(const GTEST_6_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_),\n      f3_(t.f3_), f4_(t.f4_), f5_(t.f5_) {}\n\n  tuple& operator=(const tuple& t) { return CopyFrom(t); }\n\n  template <GTEST_6_TYPENAMES_(U)>\n  tuple& operator=(const GTEST_6_TUPLE_(U)& t) {\n    return CopyFrom(t);\n  }\n\n  GTEST_DECLARE_TUPLE_AS_FRIEND_\n\n  template <GTEST_6_TYPENAMES_(U)>\n  tuple& CopyFrom(const GTEST_6_TUPLE_(U)& t) {\n    f0_ = t.f0_;\n    f1_ = t.f1_;\n    f2_ = t.f2_;\n    f3_ = t.f3_;\n    f4_ = t.f4_;\n    f5_ = t.f5_;\n    return *this;\n  }\n\n  T0 f0_;\n  T1 f1_;\n  T2 f2_;\n  T3 f3_;\n  T4 f4_;\n  T5 f5_;\n};\n\ntemplate <GTEST_7_TYPENAMES_(T)>\nclass GTEST_7_TUPLE_(T) {\n public:\n  template <int k> friend class gtest_internal::Get;\n\n  tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_(), f6_() {}\n\n  explicit tuple(GTEST_BY_REF_(T0) f0, GTEST_BY_REF_(T1) f1,\n      GTEST_BY_REF_(T2) f2, GTEST_BY_REF_(T3) f3, GTEST_BY_REF_(T4) f4,\n      GTEST_BY_REF_(T5) f5, GTEST_BY_REF_(T6) f6) : f0_(f0), f1_(f1), f2_(f2),\n      f3_(f3), f4_(f4), f5_(f5), f6_(f6) {}\n\n  tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_),\n      f4_(t.f4_), f5_(t.f5_), f6_(t.f6_) {}\n\n  template <GTEST_7_TYPENAMES_(U)>\n  tuple(const GTEST_7_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_),\n      f3_(t.f3_), f4_(t.f4_), f5_(t.f5_), f6_(t.f6_) {}\n\n  tuple& operator=(const tuple& t) { return CopyFrom(t); }\n\n  template <GTEST_7_TYPENAMES_(U)>\n  tuple& operator=(const GTEST_7_TUPLE_(U)& t) {\n    return CopyFrom(t);\n  }\n\n  GTEST_DECLARE_TUPLE_AS_FRIEND_\n\n  template <GTEST_7_TYPENAMES_(U)>\n  tuple& CopyFrom(const GTEST_7_TUPLE_(U)& t) {\n    f0_ = t.f0_;\n    f1_ = t.f1_;\n    f2_ = t.f2_;\n    f3_ = t.f3_;\n    f4_ = t.f4_;\n    f5_ = t.f5_;\n    f6_ = t.f6_;\n    return *this;\n  }\n\n  T0 f0_;\n  T1 f1_;\n  T2 f2_;\n  T3 f3_;\n  T4 f4_;\n  T5 f5_;\n  T6 f6_;\n};\n\ntemplate <GTEST_8_TYPENAMES_(T)>\nclass GTEST_8_TUPLE_(T) {\n public:\n  template <int k> friend class gtest_internal::Get;\n\n  tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_(), f6_(), f7_() {}\n\n  explicit tuple(GTEST_BY_REF_(T0) f0, GTEST_BY_REF_(T1) f1,\n      GTEST_BY_REF_(T2) f2, GTEST_BY_REF_(T3) f3, GTEST_BY_REF_(T4) f4,\n      GTEST_BY_REF_(T5) f5, GTEST_BY_REF_(T6) f6,\n      GTEST_BY_REF_(T7) f7) : f0_(f0), f1_(f1), f2_(f2), f3_(f3), f4_(f4),\n      f5_(f5), f6_(f6), f7_(f7) {}\n\n  tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_),\n      f4_(t.f4_), f5_(t.f5_), f6_(t.f6_), f7_(t.f7_) {}\n\n  template <GTEST_8_TYPENAMES_(U)>\n  tuple(const GTEST_8_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_),\n      f3_(t.f3_), f4_(t.f4_), f5_(t.f5_), f6_(t.f6_), f7_(t.f7_) {}\n\n  tuple& operator=(const tuple& t) { return CopyFrom(t); }\n\n  template <GTEST_8_TYPENAMES_(U)>\n  tuple& operator=(const GTEST_8_TUPLE_(U)& t) {\n    return CopyFrom(t);\n  }\n\n  GTEST_DECLARE_TUPLE_AS_FRIEND_\n\n  template <GTEST_8_TYPENAMES_(U)>\n  tuple& CopyFrom(const GTEST_8_TUPLE_(U)& t) {\n    f0_ = t.f0_;\n    f1_ = t.f1_;\n    f2_ = t.f2_;\n    f3_ = t.f3_;\n    f4_ = t.f4_;\n    f5_ = t.f5_;\n    f6_ = t.f6_;\n    f7_ = t.f7_;\n    return *this;\n  }\n\n  T0 f0_;\n  T1 f1_;\n  T2 f2_;\n  T3 f3_;\n  T4 f4_;\n  T5 f5_;\n  T6 f6_;\n  T7 f7_;\n};\n\ntemplate <GTEST_9_TYPENAMES_(T)>\nclass GTEST_9_TUPLE_(T) {\n public:\n  template <int k> friend class gtest_internal::Get;\n\n  tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_(), f6_(), f7_(), f8_() {}\n\n  explicit tuple(GTEST_BY_REF_(T0) f0, GTEST_BY_REF_(T1) f1,\n      GTEST_BY_REF_(T2) f2, GTEST_BY_REF_(T3) f3, GTEST_BY_REF_(T4) f4,\n      GTEST_BY_REF_(T5) f5, GTEST_BY_REF_(T6) f6, GTEST_BY_REF_(T7) f7,\n      GTEST_BY_REF_(T8) f8) : f0_(f0), f1_(f1), f2_(f2), f3_(f3), f4_(f4),\n      f5_(f5), f6_(f6), f7_(f7), f8_(f8) {}\n\n  tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_),\n      f4_(t.f4_), f5_(t.f5_), f6_(t.f6_), f7_(t.f7_), f8_(t.f8_) {}\n\n  template <GTEST_9_TYPENAMES_(U)>\n  tuple(const GTEST_9_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_),\n      f3_(t.f3_), f4_(t.f4_), f5_(t.f5_), f6_(t.f6_), f7_(t.f7_), f8_(t.f8_) {}\n\n  tuple& operator=(const tuple& t) { return CopyFrom(t); }\n\n  template <GTEST_9_TYPENAMES_(U)>\n  tuple& operator=(const GTEST_9_TUPLE_(U)& t) {\n    return CopyFrom(t);\n  }\n\n  GTEST_DECLARE_TUPLE_AS_FRIEND_\n\n  template <GTEST_9_TYPENAMES_(U)>\n  tuple& CopyFrom(const GTEST_9_TUPLE_(U)& t) {\n    f0_ = t.f0_;\n    f1_ = t.f1_;\n    f2_ = t.f2_;\n    f3_ = t.f3_;\n    f4_ = t.f4_;\n    f5_ = t.f5_;\n    f6_ = t.f6_;\n    f7_ = t.f7_;\n    f8_ = t.f8_;\n    return *this;\n  }\n\n  T0 f0_;\n  T1 f1_;\n  T2 f2_;\n  T3 f3_;\n  T4 f4_;\n  T5 f5_;\n  T6 f6_;\n  T7 f7_;\n  T8 f8_;\n};\n\ntemplate <GTEST_10_TYPENAMES_(T)>\nclass tuple {\n public:\n  template <int k> friend class gtest_internal::Get;\n\n  tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_(), f6_(), f7_(), f8_(),\n      f9_() {}\n\n  explicit tuple(GTEST_BY_REF_(T0) f0, GTEST_BY_REF_(T1) f1,\n      GTEST_BY_REF_(T2) f2, GTEST_BY_REF_(T3) f3, GTEST_BY_REF_(T4) f4,\n      GTEST_BY_REF_(T5) f5, GTEST_BY_REF_(T6) f6, GTEST_BY_REF_(T7) f7,\n      GTEST_BY_REF_(T8) f8, GTEST_BY_REF_(T9) f9) : f0_(f0), f1_(f1), f2_(f2),\n      f3_(f3), f4_(f4), f5_(f5), f6_(f6), f7_(f7), f8_(f8), f9_(f9) {}\n\n  tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_),\n      f4_(t.f4_), f5_(t.f5_), f6_(t.f6_), f7_(t.f7_), f8_(t.f8_), f9_(t.f9_) {}\n\n  template <GTEST_10_TYPENAMES_(U)>\n  tuple(const GTEST_10_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_),\n      f3_(t.f3_), f4_(t.f4_), f5_(t.f5_), f6_(t.f6_), f7_(t.f7_), f8_(t.f8_),\n      f9_(t.f9_) {}\n\n  tuple& operator=(const tuple& t) { return CopyFrom(t); }\n\n  template <GTEST_10_TYPENAMES_(U)>\n  tuple& operator=(const GTEST_10_TUPLE_(U)& t) {\n    return CopyFrom(t);\n  }\n\n  GTEST_DECLARE_TUPLE_AS_FRIEND_\n\n  template <GTEST_10_TYPENAMES_(U)>\n  tuple& CopyFrom(const GTEST_10_TUPLE_(U)& t) {\n    f0_ = t.f0_;\n    f1_ = t.f1_;\n    f2_ = t.f2_;\n    f3_ = t.f3_;\n    f4_ = t.f4_;\n    f5_ = t.f5_;\n    f6_ = t.f6_;\n    f7_ = t.f7_;\n    f8_ = t.f8_;\n    f9_ = t.f9_;\n    return *this;\n  }\n\n  T0 f0_;\n  T1 f1_;\n  T2 f2_;\n  T3 f3_;\n  T4 f4_;\n  T5 f5_;\n  T6 f6_;\n  T7 f7_;\n  T8 f8_;\n  T9 f9_;\n};\n\n// 6.1.3.2 Tuple creation functions.\n\n// Known limitations: we don't support passing an\n// std::tr1::reference_wrapper<T> to make_tuple().  And we don't\n// implement tie().\n\ninline tuple<> make_tuple() { return tuple<>(); }\n\ntemplate <GTEST_1_TYPENAMES_(T)>\ninline GTEST_1_TUPLE_(T) make_tuple(const T0& f0) {\n  return GTEST_1_TUPLE_(T)(f0);\n}\n\ntemplate <GTEST_2_TYPENAMES_(T)>\ninline GTEST_2_TUPLE_(T) make_tuple(const T0& f0, const T1& f1) {\n  return GTEST_2_TUPLE_(T)(f0, f1);\n}\n\ntemplate <GTEST_3_TYPENAMES_(T)>\ninline GTEST_3_TUPLE_(T) make_tuple(const T0& f0, const T1& f1, const T2& f2) {\n  return GTEST_3_TUPLE_(T)(f0, f1, f2);\n}\n\ntemplate <GTEST_4_TYPENAMES_(T)>\ninline GTEST_4_TUPLE_(T) make_tuple(const T0& f0, const T1& f1, const T2& f2,\n    const T3& f3) {\n  return GTEST_4_TUPLE_(T)(f0, f1, f2, f3);\n}\n\ntemplate <GTEST_5_TYPENAMES_(T)>\ninline GTEST_5_TUPLE_(T) make_tuple(const T0& f0, const T1& f1, const T2& f2,\n    const T3& f3, const T4& f4) {\n  return GTEST_5_TUPLE_(T)(f0, f1, f2, f3, f4);\n}\n\ntemplate <GTEST_6_TYPENAMES_(T)>\ninline GTEST_6_TUPLE_(T) make_tuple(const T0& f0, const T1& f1, const T2& f2,\n    const T3& f3, const T4& f4, const T5& f5) {\n  return GTEST_6_TUPLE_(T)(f0, f1, f2, f3, f4, f5);\n}\n\ntemplate <GTEST_7_TYPENAMES_(T)>\ninline GTEST_7_TUPLE_(T) make_tuple(const T0& f0, const T1& f1, const T2& f2,\n    const T3& f3, const T4& f4, const T5& f5, const T6& f6) {\n  return GTEST_7_TUPLE_(T)(f0, f1, f2, f3, f4, f5, f6);\n}\n\ntemplate <GTEST_8_TYPENAMES_(T)>\ninline GTEST_8_TUPLE_(T) make_tuple(const T0& f0, const T1& f1, const T2& f2,\n    const T3& f3, const T4& f4, const T5& f5, const T6& f6, const T7& f7) {\n  return GTEST_8_TUPLE_(T)(f0, f1, f2, f3, f4, f5, f6, f7);\n}\n\ntemplate <GTEST_9_TYPENAMES_(T)>\ninline GTEST_9_TUPLE_(T) make_tuple(const T0& f0, const T1& f1, const T2& f2,\n    const T3& f3, const T4& f4, const T5& f5, const T6& f6, const T7& f7,\n    const T8& f8) {\n  return GTEST_9_TUPLE_(T)(f0, f1, f2, f3, f4, f5, f6, f7, f8);\n}\n\ntemplate <GTEST_10_TYPENAMES_(T)>\ninline GTEST_10_TUPLE_(T) make_tuple(const T0& f0, const T1& f1, const T2& f2,\n    const T3& f3, const T4& f4, const T5& f5, const T6& f6, const T7& f7,\n    const T8& f8, const T9& f9) {\n  return GTEST_10_TUPLE_(T)(f0, f1, f2, f3, f4, f5, f6, f7, f8, f9);\n}\n\n// 6.1.3.3 Tuple helper classes.\n\ntemplate <typename Tuple> struct tuple_size;\n\ntemplate <GTEST_0_TYPENAMES_(T)>\nstruct tuple_size<GTEST_0_TUPLE_(T) > {\n  static const int value = 0;\n};\n\ntemplate <GTEST_1_TYPENAMES_(T)>\nstruct tuple_size<GTEST_1_TUPLE_(T) > {\n  static const int value = 1;\n};\n\ntemplate <GTEST_2_TYPENAMES_(T)>\nstruct tuple_size<GTEST_2_TUPLE_(T) > {\n  static const int value = 2;\n};\n\ntemplate <GTEST_3_TYPENAMES_(T)>\nstruct tuple_size<GTEST_3_TUPLE_(T) > {\n  static const int value = 3;\n};\n\ntemplate <GTEST_4_TYPENAMES_(T)>\nstruct tuple_size<GTEST_4_TUPLE_(T) > {\n  static const int value = 4;\n};\n\ntemplate <GTEST_5_TYPENAMES_(T)>\nstruct tuple_size<GTEST_5_TUPLE_(T) > {\n  static const int value = 5;\n};\n\ntemplate <GTEST_6_TYPENAMES_(T)>\nstruct tuple_size<GTEST_6_TUPLE_(T) > {\n  static const int value = 6;\n};\n\ntemplate <GTEST_7_TYPENAMES_(T)>\nstruct tuple_size<GTEST_7_TUPLE_(T) > {\n  static const int value = 7;\n};\n\ntemplate <GTEST_8_TYPENAMES_(T)>\nstruct tuple_size<GTEST_8_TUPLE_(T) > {\n  static const int value = 8;\n};\n\ntemplate <GTEST_9_TYPENAMES_(T)>\nstruct tuple_size<GTEST_9_TUPLE_(T) > {\n  static const int value = 9;\n};\n\ntemplate <GTEST_10_TYPENAMES_(T)>\nstruct tuple_size<GTEST_10_TUPLE_(T) > {\n  static const int value = 10;\n};\n\ntemplate <int k, class Tuple>\nstruct tuple_element {\n  typedef typename gtest_internal::TupleElement<\n      k < (tuple_size<Tuple>::value), k, Tuple>::type type;\n};\n\n#define GTEST_TUPLE_ELEMENT_(k, Tuple) typename tuple_element<k, Tuple >::type\n\n// 6.1.3.4 Element access.\n\nnamespace gtest_internal {\n\ntemplate <>\nclass Get<0> {\n public:\n  template <class Tuple>\n  static GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(0, Tuple))\n  Field(Tuple& t) { return t.f0_; }  // NOLINT\n\n  template <class Tuple>\n  static GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(0, Tuple))\n  ConstField(const Tuple& t) { return t.f0_; }\n};\n\ntemplate <>\nclass Get<1> {\n public:\n  template <class Tuple>\n  static GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(1, Tuple))\n  Field(Tuple& t) { return t.f1_; }  // NOLINT\n\n  template <class Tuple>\n  static GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(1, Tuple))\n  ConstField(const Tuple& t) { return t.f1_; }\n};\n\ntemplate <>\nclass Get<2> {\n public:\n  template <class Tuple>\n  static GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(2, Tuple))\n  Field(Tuple& t) { return t.f2_; }  // NOLINT\n\n  template <class Tuple>\n  static GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(2, Tuple))\n  ConstField(const Tuple& t) { return t.f2_; }\n};\n\ntemplate <>\nclass Get<3> {\n public:\n  template <class Tuple>\n  static GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(3, Tuple))\n  Field(Tuple& t) { return t.f3_; }  // NOLINT\n\n  template <class Tuple>\n  static GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(3, Tuple))\n  ConstField(const Tuple& t) { return t.f3_; }\n};\n\ntemplate <>\nclass Get<4> {\n public:\n  template <class Tuple>\n  static GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(4, Tuple))\n  Field(Tuple& t) { return t.f4_; }  // NOLINT\n\n  template <class Tuple>\n  static GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(4, Tuple))\n  ConstField(const Tuple& t) { return t.f4_; }\n};\n\ntemplate <>\nclass Get<5> {\n public:\n  template <class Tuple>\n  static GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(5, Tuple))\n  Field(Tuple& t) { return t.f5_; }  // NOLINT\n\n  template <class Tuple>\n  static GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(5, Tuple))\n  ConstField(const Tuple& t) { return t.f5_; }\n};\n\ntemplate <>\nclass Get<6> {\n public:\n  template <class Tuple>\n  static GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(6, Tuple))\n  Field(Tuple& t) { return t.f6_; }  // NOLINT\n\n  template <class Tuple>\n  static GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(6, Tuple))\n  ConstField(const Tuple& t) { return t.f6_; }\n};\n\ntemplate <>\nclass Get<7> {\n public:\n  template <class Tuple>\n  static GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(7, Tuple))\n  Field(Tuple& t) { return t.f7_; }  // NOLINT\n\n  template <class Tuple>\n  static GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(7, Tuple))\n  ConstField(const Tuple& t) { return t.f7_; }\n};\n\ntemplate <>\nclass Get<8> {\n public:\n  template <class Tuple>\n  static GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(8, Tuple))\n  Field(Tuple& t) { return t.f8_; }  // NOLINT\n\n  template <class Tuple>\n  static GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(8, Tuple))\n  ConstField(const Tuple& t) { return t.f8_; }\n};\n\ntemplate <>\nclass Get<9> {\n public:\n  template <class Tuple>\n  static GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(9, Tuple))\n  Field(Tuple& t) { return t.f9_; }  // NOLINT\n\n  template <class Tuple>\n  static GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(9, Tuple))\n  ConstField(const Tuple& t) { return t.f9_; }\n};\n\n}  // namespace gtest_internal\n\ntemplate <int k, GTEST_10_TYPENAMES_(T)>\nGTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(k, GTEST_10_TUPLE_(T)))\nget(GTEST_10_TUPLE_(T)& t) {\n  return gtest_internal::Get<k>::Field(t);\n}\n\ntemplate <int k, GTEST_10_TYPENAMES_(T)>\nGTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(k,  GTEST_10_TUPLE_(T)))\nget(const GTEST_10_TUPLE_(T)& t) {\n  return gtest_internal::Get<k>::ConstField(t);\n}\n\n// 6.1.3.5 Relational operators\n\n// We only implement == and !=, as we don't have a need for the rest yet.\n\nnamespace gtest_internal {\n\n// SameSizeTuplePrefixComparator<k, k>::Eq(t1, t2) returns true if the\n// first k fields of t1 equals the first k fields of t2.\n// SameSizeTuplePrefixComparator(k1, k2) would be a compiler error if\n// k1 != k2.\ntemplate <int kSize1, int kSize2>\nstruct SameSizeTuplePrefixComparator;\n\ntemplate <>\nstruct SameSizeTuplePrefixComparator<0, 0> {\n  template <class Tuple1, class Tuple2>\n  static bool Eq(const Tuple1& /* t1 */, const Tuple2& /* t2 */) {\n    return true;\n  }\n};\n\ntemplate <int k>\nstruct SameSizeTuplePrefixComparator<k, k> {\n  template <class Tuple1, class Tuple2>\n  static bool Eq(const Tuple1& t1, const Tuple2& t2) {\n    return SameSizeTuplePrefixComparator<k - 1, k - 1>::Eq(t1, t2) &&\n        ::std::tr1::get<k - 1>(t1) == ::std::tr1::get<k - 1>(t2);\n  }\n};\n\n}  // namespace gtest_internal\n\ntemplate <GTEST_10_TYPENAMES_(T), GTEST_10_TYPENAMES_(U)>\ninline bool operator==(const GTEST_10_TUPLE_(T)& t,\n                       const GTEST_10_TUPLE_(U)& u) {\n  return gtest_internal::SameSizeTuplePrefixComparator<\n      tuple_size<GTEST_10_TUPLE_(T) >::value,\n      tuple_size<GTEST_10_TUPLE_(U) >::value>::Eq(t, u);\n}\n\ntemplate <GTEST_10_TYPENAMES_(T), GTEST_10_TYPENAMES_(U)>\ninline bool operator!=(const GTEST_10_TUPLE_(T)& t,\n                       const GTEST_10_TUPLE_(U)& u) { return !(t == u); }\n\n// 6.1.4 Pairs.\n// Unimplemented.\n\n}  // namespace tr1\n}  // namespace std\n\n#undef GTEST_0_TUPLE_\n#undef GTEST_1_TUPLE_\n#undef GTEST_2_TUPLE_\n#undef GTEST_3_TUPLE_\n#undef GTEST_4_TUPLE_\n#undef GTEST_5_TUPLE_\n#undef GTEST_6_TUPLE_\n#undef GTEST_7_TUPLE_\n#undef GTEST_8_TUPLE_\n#undef GTEST_9_TUPLE_\n#undef GTEST_10_TUPLE_\n\n#undef GTEST_0_TYPENAMES_\n#undef GTEST_1_TYPENAMES_\n#undef GTEST_2_TYPENAMES_\n#undef GTEST_3_TYPENAMES_\n#undef GTEST_4_TYPENAMES_\n#undef GTEST_5_TYPENAMES_\n#undef GTEST_6_TYPENAMES_\n#undef GTEST_7_TYPENAMES_\n#undef GTEST_8_TYPENAMES_\n#undef GTEST_9_TYPENAMES_\n#undef GTEST_10_TYPENAMES_\n\n#undef GTEST_DECLARE_TUPLE_AS_FRIEND_\n#undef GTEST_BY_REF_\n#undef GTEST_ADD_REF_\n#undef GTEST_TUPLE_ELEMENT_\n\n#endif  // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_TUPLE_H_\n"
  },
  {
    "path": "test/gtest/include/gtest/internal/gtest-tuple.h.pump",
    "content": "$$ -*- mode: c++; -*-\n$var n = 10  $$ Maximum number of tuple fields we want to support.\n$$ This meta comment fixes auto-indentation in Emacs. }}\n// Copyright 2009 Google Inc.\n// All Rights Reserved.\n//\n// Redistribution and use in source and binary forms, with or without\n// modification, are permitted provided that the following conditions are\n// met:\n//\n//     * Redistributions of source code must retain the above copyright\n// notice, this list of conditions and the following disclaimer.\n//     * Redistributions in binary form must reproduce the above\n// copyright notice, this list of conditions and the following disclaimer\n// in the documentation and/or other materials provided with the\n// distribution.\n//     * Neither the name of Google Inc. nor the names of its\n// contributors may be used to endorse or promote products derived from\n// this software without specific prior written permission.\n//\n// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n// \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n//\n// Author: wan@google.com (Zhanyong Wan)\n\n// Implements a subset of TR1 tuple needed by Google Test and Google Mock.\n\n#ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_TUPLE_H_\n#define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_TUPLE_H_\n\n#include <utility>  // For ::std::pair.\n\n// The compiler used in Symbian has a bug that prevents us from declaring the\n// tuple template as a friend (it complains that tuple is redefined).  This\n// hack bypasses the bug by declaring the members that should otherwise be\n// private as public.\n// Sun Studio versions < 12 also have the above bug.\n#if defined(__SYMBIAN32__) || (defined(__SUNPRO_CC) && __SUNPRO_CC < 0x590)\n# define GTEST_DECLARE_TUPLE_AS_FRIEND_ public:\n#else\n# define GTEST_DECLARE_TUPLE_AS_FRIEND_ \\\n    template <GTEST_$(n)_TYPENAMES_(U)> friend class tuple; \\\n   private:\n#endif\n\n// Visual Studio 2010, 2012, and 2013 define symbols in std::tr1 that conflict\n// with our own definitions. Therefore using our own tuple does not work on\n// those compilers.\n#if defined(_MSC_VER) && _MSC_VER >= 1600  /* 1600 is Visual Studio 2010 */\n# error \"gtest's tuple doesn't compile on Visual Studio 2010 or later. \\\nGTEST_USE_OWN_TR1_TUPLE must be set to 0 on those compilers.\"\n#endif\n\n\n$range i 0..n-1\n$range j 0..n\n$range k 1..n\n// GTEST_n_TUPLE_(T) is the type of an n-tuple.\n#define GTEST_0_TUPLE_(T) tuple<>\n\n$for k [[\n$range m 0..k-1\n$range m2 k..n-1\n#define GTEST_$(k)_TUPLE_(T) tuple<$for m, [[T##$m]]$for m2 [[, void]]>\n\n]]\n\n// GTEST_n_TYPENAMES_(T) declares a list of n typenames.\n\n$for j [[\n$range m 0..j-1\n#define GTEST_$(j)_TYPENAMES_(T) $for m, [[typename T##$m]]\n\n\n]]\n\n// In theory, defining stuff in the ::std namespace is undefined\n// behavior.  We can do this as we are playing the role of a standard\n// library vendor.\nnamespace std {\nnamespace tr1 {\n\ntemplate <$for i, [[typename T$i = void]]>\nclass tuple;\n\n// Anything in namespace gtest_internal is Google Test's INTERNAL\n// IMPLEMENTATION DETAIL and MUST NOT BE USED DIRECTLY in user code.\nnamespace gtest_internal {\n\n// ByRef<T>::type is T if T is a reference; otherwise it's const T&.\ntemplate <typename T>\nstruct ByRef { typedef const T& type; };  // NOLINT\ntemplate <typename T>\nstruct ByRef<T&> { typedef T& type; };  // NOLINT\n\n// A handy wrapper for ByRef.\n#define GTEST_BY_REF_(T) typename ::std::tr1::gtest_internal::ByRef<T>::type\n\n// AddRef<T>::type is T if T is a reference; otherwise it's T&.  This\n// is the same as tr1::add_reference<T>::type.\ntemplate <typename T>\nstruct AddRef { typedef T& type; };  // NOLINT\ntemplate <typename T>\nstruct AddRef<T&> { typedef T& type; };  // NOLINT\n\n// A handy wrapper for AddRef.\n#define GTEST_ADD_REF_(T) typename ::std::tr1::gtest_internal::AddRef<T>::type\n\n// A helper for implementing get<k>().\ntemplate <int k> class Get;\n\n// A helper for implementing tuple_element<k, T>.  kIndexValid is true\n// iff k < the number of fields in tuple type T.\ntemplate <bool kIndexValid, int kIndex, class Tuple>\nstruct TupleElement;\n\n\n$for i [[\ntemplate <GTEST_$(n)_TYPENAMES_(T)>\nstruct TupleElement<true, $i, GTEST_$(n)_TUPLE_(T) > {\n  typedef T$i type;\n};\n\n\n]]\n}  // namespace gtest_internal\n\ntemplate <>\nclass tuple<> {\n public:\n  tuple() {}\n  tuple(const tuple& /* t */)  {}\n  tuple& operator=(const tuple& /* t */) { return *this; }\n};\n\n\n$for k [[\n$range m 0..k-1\ntemplate <GTEST_$(k)_TYPENAMES_(T)>\nclass $if k < n [[GTEST_$(k)_TUPLE_(T)]] $else [[tuple]] {\n public:\n  template <int k> friend class gtest_internal::Get;\n\n  tuple() : $for m, [[f$(m)_()]] {}\n\n  explicit tuple($for m, [[GTEST_BY_REF_(T$m) f$m]]) : [[]]\n$for m, [[f$(m)_(f$m)]] {}\n\n  tuple(const tuple& t) : $for m, [[f$(m)_(t.f$(m)_)]] {}\n\n  template <GTEST_$(k)_TYPENAMES_(U)>\n  tuple(const GTEST_$(k)_TUPLE_(U)& t) : $for m, [[f$(m)_(t.f$(m)_)]] {}\n\n$if k == 2 [[\n  template <typename U0, typename U1>\n  tuple(const ::std::pair<U0, U1>& p) : f0_(p.first), f1_(p.second) {}\n\n]]\n\n  tuple& operator=(const tuple& t) { return CopyFrom(t); }\n\n  template <GTEST_$(k)_TYPENAMES_(U)>\n  tuple& operator=(const GTEST_$(k)_TUPLE_(U)& t) {\n    return CopyFrom(t);\n  }\n\n$if k == 2 [[\n  template <typename U0, typename U1>\n  tuple& operator=(const ::std::pair<U0, U1>& p) {\n    f0_ = p.first;\n    f1_ = p.second;\n    return *this;\n  }\n\n]]\n\n  GTEST_DECLARE_TUPLE_AS_FRIEND_\n\n  template <GTEST_$(k)_TYPENAMES_(U)>\n  tuple& CopyFrom(const GTEST_$(k)_TUPLE_(U)& t) {\n\n$for m [[\n    f$(m)_ = t.f$(m)_;\n\n]]\n    return *this;\n  }\n\n\n$for m [[\n  T$m f$(m)_;\n\n]]\n};\n\n\n]]\n// 6.1.3.2 Tuple creation functions.\n\n// Known limitations: we don't support passing an\n// std::tr1::reference_wrapper<T> to make_tuple().  And we don't\n// implement tie().\n\ninline tuple<> make_tuple() { return tuple<>(); }\n\n$for k [[\n$range m 0..k-1\n\ntemplate <GTEST_$(k)_TYPENAMES_(T)>\ninline GTEST_$(k)_TUPLE_(T) make_tuple($for m, [[const T$m& f$m]]) {\n  return GTEST_$(k)_TUPLE_(T)($for m, [[f$m]]);\n}\n\n]]\n\n// 6.1.3.3 Tuple helper classes.\n\ntemplate <typename Tuple> struct tuple_size;\n\n\n$for j [[\ntemplate <GTEST_$(j)_TYPENAMES_(T)>\nstruct tuple_size<GTEST_$(j)_TUPLE_(T) > {\n  static const int value = $j;\n};\n\n\n]]\ntemplate <int k, class Tuple>\nstruct tuple_element {\n  typedef typename gtest_internal::TupleElement<\n      k < (tuple_size<Tuple>::value), k, Tuple>::type type;\n};\n\n#define GTEST_TUPLE_ELEMENT_(k, Tuple) typename tuple_element<k, Tuple >::type\n\n// 6.1.3.4 Element access.\n\nnamespace gtest_internal {\n\n\n$for i [[\ntemplate <>\nclass Get<$i> {\n public:\n  template <class Tuple>\n  static GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_($i, Tuple))\n  Field(Tuple& t) { return t.f$(i)_; }  // NOLINT\n\n  template <class Tuple>\n  static GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_($i, Tuple))\n  ConstField(const Tuple& t) { return t.f$(i)_; }\n};\n\n\n]]\n}  // namespace gtest_internal\n\ntemplate <int k, GTEST_$(n)_TYPENAMES_(T)>\nGTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(k, GTEST_$(n)_TUPLE_(T)))\nget(GTEST_$(n)_TUPLE_(T)& t) {\n  return gtest_internal::Get<k>::Field(t);\n}\n\ntemplate <int k, GTEST_$(n)_TYPENAMES_(T)>\nGTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(k,  GTEST_$(n)_TUPLE_(T)))\nget(const GTEST_$(n)_TUPLE_(T)& t) {\n  return gtest_internal::Get<k>::ConstField(t);\n}\n\n// 6.1.3.5 Relational operators\n\n// We only implement == and !=, as we don't have a need for the rest yet.\n\nnamespace gtest_internal {\n\n// SameSizeTuplePrefixComparator<k, k>::Eq(t1, t2) returns true if the\n// first k fields of t1 equals the first k fields of t2.\n// SameSizeTuplePrefixComparator(k1, k2) would be a compiler error if\n// k1 != k2.\ntemplate <int kSize1, int kSize2>\nstruct SameSizeTuplePrefixComparator;\n\ntemplate <>\nstruct SameSizeTuplePrefixComparator<0, 0> {\n  template <class Tuple1, class Tuple2>\n  static bool Eq(const Tuple1& /* t1 */, const Tuple2& /* t2 */) {\n    return true;\n  }\n};\n\ntemplate <int k>\nstruct SameSizeTuplePrefixComparator<k, k> {\n  template <class Tuple1, class Tuple2>\n  static bool Eq(const Tuple1& t1, const Tuple2& t2) {\n    return SameSizeTuplePrefixComparator<k - 1, k - 1>::Eq(t1, t2) &&\n        ::std::tr1::get<k - 1>(t1) == ::std::tr1::get<k - 1>(t2);\n  }\n};\n\n}  // namespace gtest_internal\n\ntemplate <GTEST_$(n)_TYPENAMES_(T), GTEST_$(n)_TYPENAMES_(U)>\ninline bool operator==(const GTEST_$(n)_TUPLE_(T)& t,\n                       const GTEST_$(n)_TUPLE_(U)& u) {\n  return gtest_internal::SameSizeTuplePrefixComparator<\n      tuple_size<GTEST_$(n)_TUPLE_(T) >::value,\n      tuple_size<GTEST_$(n)_TUPLE_(U) >::value>::Eq(t, u);\n}\n\ntemplate <GTEST_$(n)_TYPENAMES_(T), GTEST_$(n)_TYPENAMES_(U)>\ninline bool operator!=(const GTEST_$(n)_TUPLE_(T)& t,\n                       const GTEST_$(n)_TUPLE_(U)& u) { return !(t == u); }\n\n// 6.1.4 Pairs.\n// Unimplemented.\n\n}  // namespace tr1\n}  // namespace std\n\n\n$for j [[\n#undef GTEST_$(j)_TUPLE_\n\n]]\n\n\n$for j [[\n#undef GTEST_$(j)_TYPENAMES_\n\n]]\n\n#undef GTEST_DECLARE_TUPLE_AS_FRIEND_\n#undef GTEST_BY_REF_\n#undef GTEST_ADD_REF_\n#undef GTEST_TUPLE_ELEMENT_\n\n#endif  // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_TUPLE_H_\n"
  },
  {
    "path": "test/gtest/include/gtest/internal/gtest-type-util.h",
    "content": "// Copyright 2008 Google Inc.\n// All Rights Reserved.\n//\n// Redistribution and use in source and binary forms, with or without\n// modification, are permitted provided that the following conditions are\n// met:\n//\n//     * Redistributions of source code must retain the above copyright\n// notice, this list of conditions and the following disclaimer.\n//     * Redistributions in binary form must reproduce the above\n// copyright notice, this list of conditions and the following disclaimer\n// in the documentation and/or other materials provided with the\n// distribution.\n//     * Neither the name of Google Inc. nor the names of its\n// contributors may be used to endorse or promote products derived from\n// this software without specific prior written permission.\n//\n// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n// \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n// Type utilities needed for implementing typed and type-parameterized\n// tests.\n\n// GOOGLETEST_CM0001 DO NOT DELETE\n\n#ifndef GOOGLETEST_INCLUDE_GTEST_INTERNAL_GTEST_TYPE_UTIL_H_\n#define GOOGLETEST_INCLUDE_GTEST_INTERNAL_GTEST_TYPE_UTIL_H_\n\n#include \"gtest/internal/gtest-port.h\"\n\n// #ifdef __GNUC__ is too general here.  It is possible to use gcc without using\n// libstdc++ (which is where cxxabi.h comes from).\n# if GTEST_HAS_CXXABI_H_\n#  include <cxxabi.h>\n# elif defined(__HP_aCC)\n#  include <acxx_demangle.h>\n# endif  // GTEST_HASH_CXXABI_H_\n\nnamespace testing {\nnamespace internal {\n\n// Canonicalizes a given name with respect to the Standard C++ Library.\n// This handles removing the inline namespace within `std` that is\n// used by various standard libraries (e.g., `std::__1`).  Names outside\n// of namespace std are returned unmodified.\ninline std::string CanonicalizeForStdLibVersioning(std::string s) {\n  static const char prefix[] = \"std::__\";\n  if (s.compare(0, strlen(prefix), prefix) == 0) {\n    std::string::size_type end = s.find(\"::\", strlen(prefix));\n    if (end != s.npos) {\n      // Erase everything between the initial `std` and the second `::`.\n      s.erase(strlen(\"std\"), end - strlen(\"std\"));\n    }\n  }\n  return s;\n}\n\n#if GTEST_HAS_RTTI\n// GetTypeName(const std::type_info&) returns a human-readable name of type T.\ninline std::string GetTypeName(const std::type_info& type) {\n  const char* const name = type.name();\n#if GTEST_HAS_CXXABI_H_ || defined(__HP_aCC)\n  int status = 0;\n  // gcc's implementation of typeid(T).name() mangles the type name,\n  // so we have to demangle it.\n#if GTEST_HAS_CXXABI_H_\n  using abi::__cxa_demangle;\n#endif  // GTEST_HAS_CXXABI_H_\n  char* const readable_name = __cxa_demangle(name, nullptr, nullptr, &status);\n  const std::string name_str(status == 0 ? readable_name : name);\n  free(readable_name);\n  return CanonicalizeForStdLibVersioning(name_str);\n#else\n  return name;\n#endif  // GTEST_HAS_CXXABI_H_ || __HP_aCC\n}\n#endif  // GTEST_HAS_RTTI\n\n// GetTypeName<T>() returns a human-readable name of type T if and only if\n// RTTI is enabled, otherwise it returns a dummy type name.\n// NB: This function is also used in Google Mock, so don't move it inside of\n// the typed-test-only section below.\ntemplate <typename T>\nstd::string GetTypeName() {\n#if GTEST_HAS_RTTI\n  return GetTypeName(typeid(T));\n#else\n  return \"<type>\";\n#endif  // GTEST_HAS_RTTI\n}\n\n// A unique type indicating an empty node\nstruct None {};\n\n# define GTEST_TEMPLATE_ template <typename T> class\n\n// The template \"selector\" struct TemplateSel<Tmpl> is used to\n// represent Tmpl, which must be a class template with one type\n// parameter, as a type.  TemplateSel<Tmpl>::Bind<T>::type is defined\n// as the type Tmpl<T>.  This allows us to actually instantiate the\n// template \"selected\" by TemplateSel<Tmpl>.\n//\n// This trick is necessary for simulating typedef for class templates,\n// which C++ doesn't support directly.\ntemplate <GTEST_TEMPLATE_ Tmpl>\nstruct TemplateSel {\n  template <typename T>\n  struct Bind {\n    typedef Tmpl<T> type;\n  };\n};\n\n# define GTEST_BIND_(TmplSel, T) \\\n  TmplSel::template Bind<T>::type\n\ntemplate <GTEST_TEMPLATE_ Head_, GTEST_TEMPLATE_... Tail_>\nstruct Templates {\n  using Head = TemplateSel<Head_>;\n  using Tail = Templates<Tail_...>;\n};\n\ntemplate <GTEST_TEMPLATE_ Head_>\nstruct Templates<Head_> {\n  using Head = TemplateSel<Head_>;\n  using Tail = None;\n};\n\n// Tuple-like type lists\ntemplate <typename Head_, typename... Tail_>\nstruct Types {\n  using Head = Head_;\n  using Tail = Types<Tail_...>;\n};\n\ntemplate <typename Head_>\nstruct Types<Head_> {\n  using Head = Head_;\n  using Tail = None;\n};\n\n// Helper metafunctions to tell apart a single type from types\n// generated by ::testing::Types\ntemplate <typename... Ts>\nstruct ProxyTypeList {\n  using type = Types<Ts...>;\n};\n\ntemplate <typename>\nstruct is_proxy_type_list : std::false_type {};\n\ntemplate <typename... Ts>\nstruct is_proxy_type_list<ProxyTypeList<Ts...>> : std::true_type {};\n\n// Generator which conditionally creates type lists.\n// It recognizes if a requested type list should be created\n// and prevents creating a new type list nested within another one.\ntemplate <typename T>\nstruct GenerateTypeList {\n private:\n  using proxy = typename std::conditional<is_proxy_type_list<T>::value, T,\n                                          ProxyTypeList<T>>::type;\n\n public:\n  using type = typename proxy::type;\n};\n\n}  // namespace internal\n\ntemplate <typename... Ts>\nusing Types = internal::ProxyTypeList<Ts...>;\n\n}  // namespace testing\n\n#endif  // GOOGLETEST_INCLUDE_GTEST_INTERNAL_GTEST_TYPE_UTIL_H_\n"
  },
  {
    "path": "test/gtest/include/gtest/internal/gtest-type-util.h.pump",
    "content": "$$ -*- mode: c++; -*-\n$var n = 50  $$ Maximum length of type lists we want to support.\n// Copyright 2008 Google Inc.\n// All Rights Reserved.\n//\n// Redistribution and use in source and binary forms, with or without\n// modification, are permitted provided that the following conditions are\n// met:\n//\n//     * Redistributions of source code must retain the above copyright\n// notice, this list of conditions and the following disclaimer.\n//     * Redistributions in binary form must reproduce the above\n// copyright notice, this list of conditions and the following disclaimer\n// in the documentation and/or other materials provided with the\n// distribution.\n//     * Neither the name of Google Inc. nor the names of its\n// contributors may be used to endorse or promote products derived from\n// this software without specific prior written permission.\n//\n// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n// \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n//\n// Author: wan@google.com (Zhanyong Wan)\n\n// Type utilities needed for implementing typed and type-parameterized\n// tests.  This file is generated by a SCRIPT.  DO NOT EDIT BY HAND!\n//\n// Currently we support at most $n types in a list, and at most $n\n// type-parameterized tests in one type-parameterized test case.\n// Please contact googletestframework@googlegroups.com if you need\n// more.\n\n#ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_TYPE_UTIL_H_\n#define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_TYPE_UTIL_H_\n\n#include \"gtest/internal/gtest-port.h\"\n\n// #ifdef __GNUC__ is too general here.  It is possible to use gcc without using\n// libstdc++ (which is where cxxabi.h comes from).\n# if GTEST_HAS_CXXABI_H_\n#  include <cxxabi.h>\n# elif defined(__HP_aCC)\n#  include <acxx_demangle.h>\n# endif  // GTEST_HASH_CXXABI_H_\n\nnamespace testing {\nnamespace internal {\n\n// GetTypeName<T>() returns a human-readable name of type T.\n// NB: This function is also used in Google Mock, so don't move it inside of\n// the typed-test-only section below.\ntemplate <typename T>\nstd::string GetTypeName() {\n# if GTEST_HAS_RTTI\n\n  const char* const name = typeid(T).name();\n#  if GTEST_HAS_CXXABI_H_ || defined(__HP_aCC)\n  int status = 0;\n  // gcc's implementation of typeid(T).name() mangles the type name,\n  // so we have to demangle it.\n#   if GTEST_HAS_CXXABI_H_\n  using abi::__cxa_demangle;\n#   endif  // GTEST_HAS_CXXABI_H_\n  char* const readable_name = __cxa_demangle(name, 0, 0, &status);\n  const std::string name_str(status == 0 ? readable_name : name);\n  free(readable_name);\n  return name_str;\n#  else\n  return name;\n#  endif  // GTEST_HAS_CXXABI_H_ || __HP_aCC\n\n# else\n\n  return \"<type>\";\n\n# endif  // GTEST_HAS_RTTI\n}\n\n#if GTEST_HAS_TYPED_TEST || GTEST_HAS_TYPED_TEST_P\n\n// AssertyTypeEq<T1, T2>::type is defined iff T1 and T2 are the same\n// type.  This can be used as a compile-time assertion to ensure that\n// two types are equal.\n\ntemplate <typename T1, typename T2>\nstruct AssertTypeEq;\n\ntemplate <typename T>\nstruct AssertTypeEq<T, T> {\n  typedef bool type;\n};\n\n// A unique type used as the default value for the arguments of class\n// template Types.  This allows us to simulate variadic templates\n// (e.g. Types<int>, Type<int, double>, and etc), which C++ doesn't\n// support directly.\nstruct None {};\n\n// The following family of struct and struct templates are used to\n// represent type lists.  In particular, TypesN<T1, T2, ..., TN>\n// represents a type list with N types (T1, T2, ..., and TN) in it.\n// Except for Types0, every struct in the family has two member types:\n// Head for the first type in the list, and Tail for the rest of the\n// list.\n\n// The empty type list.\nstruct Types0 {};\n\n// Type lists of length 1, 2, 3, and so on.\n\ntemplate <typename T1>\nstruct Types1 {\n  typedef T1 Head;\n  typedef Types0 Tail;\n};\n\n$range i 2..n\n\n$for i [[\n$range j 1..i\n$range k 2..i\ntemplate <$for j, [[typename T$j]]>\nstruct Types$i {\n  typedef T1 Head;\n  typedef Types$(i-1)<$for k, [[T$k]]> Tail;\n};\n\n\n]]\n\n}  // namespace internal\n\n// We don't want to require the users to write TypesN<...> directly,\n// as that would require them to count the length.  Types<...> is much\n// easier to write, but generates horrible messages when there is a\n// compiler error, as gcc insists on printing out each template\n// argument, even if it has the default value (this means Types<int>\n// will appear as Types<int, None, None, ..., None> in the compiler\n// errors).\n//\n// Our solution is to combine the best part of the two approaches: a\n// user would write Types<T1, ..., TN>, and Google Test will translate\n// that to TypesN<T1, ..., TN> internally to make error messages\n// readable.  The translation is done by the 'type' member of the\n// Types template.\n\n$range i 1..n\ntemplate <$for i, [[typename T$i = internal::None]]>\nstruct Types {\n  typedef internal::Types$n<$for i, [[T$i]]> type;\n};\n\ntemplate <>\nstruct Types<$for i, [[internal::None]]> {\n  typedef internal::Types0 type;\n};\n\n$range i 1..n-1\n$for i [[\n$range j 1..i\n$range k i+1..n\ntemplate <$for j, [[typename T$j]]>\nstruct Types<$for j, [[T$j]]$for k[[, internal::None]]> {\n  typedef internal::Types$i<$for j, [[T$j]]> type;\n};\n\n]]\n\nnamespace internal {\n\n# define GTEST_TEMPLATE_ template <typename T> class\n\n// The template \"selector\" struct TemplateSel<Tmpl> is used to\n// represent Tmpl, which must be a class template with one type\n// parameter, as a type.  TemplateSel<Tmpl>::Bind<T>::type is defined\n// as the type Tmpl<T>.  This allows us to actually instantiate the\n// template \"selected\" by TemplateSel<Tmpl>.\n//\n// This trick is necessary for simulating typedef for class templates,\n// which C++ doesn't support directly.\ntemplate <GTEST_TEMPLATE_ Tmpl>\nstruct TemplateSel {\n  template <typename T>\n  struct Bind {\n    typedef Tmpl<T> type;\n  };\n};\n\n# define GTEST_BIND_(TmplSel, T) \\\n  TmplSel::template Bind<T>::type\n\n// A unique struct template used as the default value for the\n// arguments of class template Templates.  This allows us to simulate\n// variadic templates (e.g. Templates<int>, Templates<int, double>,\n// and etc), which C++ doesn't support directly.\ntemplate <typename T>\nstruct NoneT {};\n\n// The following family of struct and struct templates are used to\n// represent template lists.  In particular, TemplatesN<T1, T2, ...,\n// TN> represents a list of N templates (T1, T2, ..., and TN).  Except\n// for Templates0, every struct in the family has two member types:\n// Head for the selector of the first template in the list, and Tail\n// for the rest of the list.\n\n// The empty template list.\nstruct Templates0 {};\n\n// Template lists of length 1, 2, 3, and so on.\n\ntemplate <GTEST_TEMPLATE_ T1>\nstruct Templates1 {\n  typedef TemplateSel<T1> Head;\n  typedef Templates0 Tail;\n};\n\n$range i 2..n\n\n$for i [[\n$range j 1..i\n$range k 2..i\ntemplate <$for j, [[GTEST_TEMPLATE_ T$j]]>\nstruct Templates$i {\n  typedef TemplateSel<T1> Head;\n  typedef Templates$(i-1)<$for k, [[T$k]]> Tail;\n};\n\n\n]]\n\n// We don't want to require the users to write TemplatesN<...> directly,\n// as that would require them to count the length.  Templates<...> is much\n// easier to write, but generates horrible messages when there is a\n// compiler error, as gcc insists on printing out each template\n// argument, even if it has the default value (this means Templates<list>\n// will appear as Templates<list, NoneT, NoneT, ..., NoneT> in the compiler\n// errors).\n//\n// Our solution is to combine the best part of the two approaches: a\n// user would write Templates<T1, ..., TN>, and Google Test will translate\n// that to TemplatesN<T1, ..., TN> internally to make error messages\n// readable.  The translation is done by the 'type' member of the\n// Templates template.\n\n$range i 1..n\ntemplate <$for i, [[GTEST_TEMPLATE_ T$i = NoneT]]>\nstruct Templates {\n  typedef Templates$n<$for i, [[T$i]]> type;\n};\n\ntemplate <>\nstruct Templates<$for i, [[NoneT]]> {\n  typedef Templates0 type;\n};\n\n$range i 1..n-1\n$for i [[\n$range j 1..i\n$range k i+1..n\ntemplate <$for j, [[GTEST_TEMPLATE_ T$j]]>\nstruct Templates<$for j, [[T$j]]$for k[[, NoneT]]> {\n  typedef Templates$i<$for j, [[T$j]]> type;\n};\n\n]]\n\n// The TypeList template makes it possible to use either a single type\n// or a Types<...> list in TYPED_TEST_CASE() and\n// INSTANTIATE_TYPED_TEST_CASE_P().\n\ntemplate <typename T>\nstruct TypeList {\n  typedef Types1<T> type;\n};\n\n\n$range i 1..n\ntemplate <$for i, [[typename T$i]]>\nstruct TypeList<Types<$for i, [[T$i]]> > {\n  typedef typename Types<$for i, [[T$i]]>::type type;\n};\n\n#endif  // GTEST_HAS_TYPED_TEST || GTEST_HAS_TYPED_TEST_P\n\n}  // namespace internal\n}  // namespace testing\n\n#endif  // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_TYPE_UTIL_H_\n"
  },
  {
    "path": "test/gtest/src/gtest-all.cc",
    "content": "// Copyright 2008, Google Inc.\n// All rights reserved.\n//\n// Redistribution and use in source and binary forms, with or without\n// modification, are permitted provided that the following conditions are\n// met:\n//\n//     * Redistributions of source code must retain the above copyright\n// notice, this list of conditions and the following disclaimer.\n//     * Redistributions in binary form must reproduce the above\n// copyright notice, this list of conditions and the following disclaimer\n// in the documentation and/or other materials provided with the\n// distribution.\n//     * Neither the name of Google Inc. nor the names of its\n// contributors may be used to endorse or promote products derived from\n// this software without specific prior written permission.\n//\n// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n// \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n//\n// Google C++ Testing and Mocking Framework (Google Test)\n//\n// Sometimes it's desirable to build Google Test by compiling a single file.\n// This file serves this purpose.\n\n// This line ensures that gtest.h can be compiled on its own, even\n// when it's fused.\n#include \"gtest/gtest.h\"\n\n// The following lines pull in the real gtest *.cc files.\n#include \"src/gtest.cc\"\n#include \"src/gtest-death-test.cc\"\n#include \"src/gtest-filepath.cc\"\n#include \"src/gtest-matchers.cc\"\n#include \"src/gtest-port.cc\"\n#include \"src/gtest-printers.cc\"\n#include \"src/gtest-test-part.cc\"\n#include \"src/gtest-typed-test.cc\"\n"
  },
  {
    "path": "test/gtest/src/gtest-death-test.cc",
    "content": "// Copyright 2005, Google Inc.\n// All rights reserved.\n//\n// Redistribution and use in source and binary forms, with or without\n// modification, are permitted provided that the following conditions are\n// met:\n//\n//     * Redistributions of source code must retain the above copyright\n// notice, this list of conditions and the following disclaimer.\n//     * Redistributions in binary form must reproduce the above\n// copyright notice, this list of conditions and the following disclaimer\n// in the documentation and/or other materials provided with the\n// distribution.\n//     * Neither the name of Google Inc. nor the names of its\n// contributors may be used to endorse or promote products derived from\n// this software without specific prior written permission.\n//\n// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n// \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n//\n// This file implements death tests.\n\n#include \"gtest/gtest-death-test.h\"\n\n#include <functional>\n#include <utility>\n\n#include \"gtest/internal/gtest-port.h\"\n#include \"gtest/internal/custom/gtest.h\"\n\n#if GTEST_HAS_DEATH_TEST\n\n# if GTEST_OS_MAC\n#  include <crt_externs.h>\n# endif  // GTEST_OS_MAC\n\n# include <errno.h>\n# include <fcntl.h>\n# include <limits.h>\n\n# if GTEST_OS_LINUX\n#  include <signal.h>\n# endif  // GTEST_OS_LINUX\n\n# include <stdarg.h>\n\n# if GTEST_OS_WINDOWS\n#  include <windows.h>\n# else\n#  include <sys/mman.h>\n#  include <sys/wait.h>\n# endif  // GTEST_OS_WINDOWS\n\n# if GTEST_OS_QNX\n#  include <spawn.h>\n# endif  // GTEST_OS_QNX\n\n# if GTEST_OS_FUCHSIA\n#  include <lib/fdio/fd.h>\n#  include <lib/fdio/io.h>\n#  include <lib/fdio/spawn.h>\n#  include <lib/zx/channel.h>\n#  include <lib/zx/port.h>\n#  include <lib/zx/process.h>\n#  include <lib/zx/socket.h>\n#  include <zircon/processargs.h>\n#  include <zircon/syscalls.h>\n#  include <zircon/syscalls/policy.h>\n#  include <zircon/syscalls/port.h>\n# endif  // GTEST_OS_FUCHSIA\n\n#endif  // GTEST_HAS_DEATH_TEST\n\n#include \"gtest/gtest-message.h\"\n#include \"gtest/internal/gtest-string.h\"\n#include \"src/gtest-internal-inl.h\"\n\nnamespace testing {\n\n// Constants.\n\n// The default death test style.\n//\n// This is defined in internal/gtest-port.h as \"fast\", but can be overridden by\n// a definition in internal/custom/gtest-port.h. The recommended value, which is\n// used internally at Google, is \"threadsafe\".\nstatic const char kDefaultDeathTestStyle[] = GTEST_DEFAULT_DEATH_TEST_STYLE;\n\nGTEST_DEFINE_string_(\n    death_test_style,\n    internal::StringFromGTestEnv(\"death_test_style\", kDefaultDeathTestStyle),\n    \"Indicates how to run a death test in a forked child process: \"\n    \"\\\"threadsafe\\\" (child process re-executes the test binary \"\n    \"from the beginning, running only the specific death test) or \"\n    \"\\\"fast\\\" (child process runs the death test immediately \"\n    \"after forking).\");\n\nGTEST_DEFINE_bool_(\n    death_test_use_fork,\n    internal::BoolFromGTestEnv(\"death_test_use_fork\", false),\n    \"Instructs to use fork()/_exit() instead of clone() in death tests. \"\n    \"Ignored and always uses fork() on POSIX systems where clone() is not \"\n    \"implemented. Useful when running under valgrind or similar tools if \"\n    \"those do not support clone(). Valgrind 3.3.1 will just fail if \"\n    \"it sees an unsupported combination of clone() flags. \"\n    \"It is not recommended to use this flag w/o valgrind though it will \"\n    \"work in 99% of the cases. Once valgrind is fixed, this flag will \"\n    \"most likely be removed.\");\n\nnamespace internal {\nGTEST_DEFINE_string_(\n    internal_run_death_test, \"\",\n    \"Indicates the file, line number, temporal index of \"\n    \"the single death test to run, and a file descriptor to \"\n    \"which a success code may be sent, all separated by \"\n    \"the '|' characters.  This flag is specified if and only if the \"\n    \"current process is a sub-process launched for running a thread-safe \"\n    \"death test.  FOR INTERNAL USE ONLY.\");\n}  // namespace internal\n\n#if GTEST_HAS_DEATH_TEST\n\nnamespace internal {\n\n// Valid only for fast death tests. Indicates the code is running in the\n// child process of a fast style death test.\n# if !GTEST_OS_WINDOWS && !GTEST_OS_FUCHSIA\nstatic bool g_in_fast_death_test_child = false;\n# endif\n\n// Returns a Boolean value indicating whether the caller is currently\n// executing in the context of the death test child process.  Tools such as\n// Valgrind heap checkers may need this to modify their behavior in death\n// tests.  IMPORTANT: This is an internal utility.  Using it may break the\n// implementation of death tests.  User code MUST NOT use it.\nbool InDeathTestChild() {\n# if GTEST_OS_WINDOWS || GTEST_OS_FUCHSIA\n\n  // On Windows and Fuchsia, death tests are thread-safe regardless of the value\n  // of the death_test_style flag.\n  return !GTEST_FLAG(internal_run_death_test).empty();\n\n# else\n\n  if (GTEST_FLAG(death_test_style) == \"threadsafe\")\n    return !GTEST_FLAG(internal_run_death_test).empty();\n  else\n    return g_in_fast_death_test_child;\n#endif\n}\n\n}  // namespace internal\n\n// ExitedWithCode constructor.\nExitedWithCode::ExitedWithCode(int exit_code) : exit_code_(exit_code) {\n}\n\n// ExitedWithCode function-call operator.\nbool ExitedWithCode::operator()(int exit_status) const {\n# if GTEST_OS_WINDOWS || GTEST_OS_FUCHSIA\n\n  return exit_status == exit_code_;\n\n# else\n\n  return WIFEXITED(exit_status) && WEXITSTATUS(exit_status) == exit_code_;\n\n# endif  // GTEST_OS_WINDOWS || GTEST_OS_FUCHSIA\n}\n\n# if !GTEST_OS_WINDOWS && !GTEST_OS_FUCHSIA\n// KilledBySignal constructor.\nKilledBySignal::KilledBySignal(int signum) : signum_(signum) {\n}\n\n// KilledBySignal function-call operator.\nbool KilledBySignal::operator()(int exit_status) const {\n#  if defined(GTEST_KILLED_BY_SIGNAL_OVERRIDE_)\n  {\n    bool result;\n    if (GTEST_KILLED_BY_SIGNAL_OVERRIDE_(signum_, exit_status, &result)) {\n      return result;\n    }\n  }\n#  endif  // defined(GTEST_KILLED_BY_SIGNAL_OVERRIDE_)\n  return WIFSIGNALED(exit_status) && WTERMSIG(exit_status) == signum_;\n}\n# endif  // !GTEST_OS_WINDOWS && !GTEST_OS_FUCHSIA\n\nnamespace internal {\n\n// Utilities needed for death tests.\n\n// Generates a textual description of a given exit code, in the format\n// specified by wait(2).\nstatic std::string ExitSummary(int exit_code) {\n  Message m;\n\n# if GTEST_OS_WINDOWS || GTEST_OS_FUCHSIA\n\n  m << \"Exited with exit status \" << exit_code;\n\n# else\n\n  if (WIFEXITED(exit_code)) {\n    m << \"Exited with exit status \" << WEXITSTATUS(exit_code);\n  } else if (WIFSIGNALED(exit_code)) {\n    m << \"Terminated by signal \" << WTERMSIG(exit_code);\n  }\n#  ifdef WCOREDUMP\n  if (WCOREDUMP(exit_code)) {\n    m << \" (core dumped)\";\n  }\n#  endif\n# endif  // GTEST_OS_WINDOWS || GTEST_OS_FUCHSIA\n\n  return m.GetString();\n}\n\n// Returns true if exit_status describes a process that was terminated\n// by a signal, or exited normally with a nonzero exit code.\nbool ExitedUnsuccessfully(int exit_status) {\n  return !ExitedWithCode(0)(exit_status);\n}\n\n# if !GTEST_OS_WINDOWS && !GTEST_OS_FUCHSIA\n// Generates a textual failure message when a death test finds more than\n// one thread running, or cannot determine the number of threads, prior\n// to executing the given statement.  It is the responsibility of the\n// caller not to pass a thread_count of 1.\nstatic std::string DeathTestThreadWarning(size_t thread_count) {\n  Message msg;\n  msg << \"Death tests use fork(), which is unsafe particularly\"\n      << \" in a threaded context. For this test, \" << GTEST_NAME_ << \" \";\n  if (thread_count == 0) {\n    msg << \"couldn't detect the number of threads.\";\n  } else {\n    msg << \"detected \" << thread_count << \" threads.\";\n  }\n  msg << \" See \"\n         \"https://github.com/google/googletest/blob/master/docs/\"\n         \"advanced.md#death-tests-and-threads\"\n      << \" for more explanation and suggested solutions, especially if\"\n      << \" this is the last message you see before your test times out.\";\n  return msg.GetString();\n}\n# endif  // !GTEST_OS_WINDOWS && !GTEST_OS_FUCHSIA\n\n// Flag characters for reporting a death test that did not die.\nstatic const char kDeathTestLived = 'L';\nstatic const char kDeathTestReturned = 'R';\nstatic const char kDeathTestThrew = 'T';\nstatic const char kDeathTestInternalError = 'I';\n\n#if GTEST_OS_FUCHSIA\n\n// File descriptor used for the pipe in the child process.\nstatic const int kFuchsiaReadPipeFd = 3;\n\n#endif\n\n// An enumeration describing all of the possible ways that a death test can\n// conclude.  DIED means that the process died while executing the test\n// code; LIVED means that process lived beyond the end of the test code;\n// RETURNED means that the test statement attempted to execute a return\n// statement, which is not allowed; THREW means that the test statement\n// returned control by throwing an exception.  IN_PROGRESS means the test\n// has not yet concluded.\nenum DeathTestOutcome { IN_PROGRESS, DIED, LIVED, RETURNED, THREW };\n\n// Routine for aborting the program which is safe to call from an\n// exec-style death test child process, in which case the error\n// message is propagated back to the parent process.  Otherwise, the\n// message is simply printed to stderr.  In either case, the program\n// then exits with status 1.\nstatic void DeathTestAbort(const std::string& message) {\n  // On a POSIX system, this function may be called from a threadsafe-style\n  // death test child process, which operates on a very small stack.  Use\n  // the heap for any additional non-minuscule memory requirements.\n  const InternalRunDeathTestFlag* const flag =\n      GetUnitTestImpl()->internal_run_death_test_flag();\n  if (flag != nullptr) {\n    FILE* parent = posix::FDOpen(flag->write_fd(), \"w\");\n    fputc(kDeathTestInternalError, parent);\n    fprintf(parent, \"%s\", message.c_str());\n    fflush(parent);\n    _exit(1);\n  } else {\n    fprintf(stderr, \"%s\", message.c_str());\n    fflush(stderr);\n    posix::Abort();\n  }\n}\n\n// A replacement for CHECK that calls DeathTestAbort if the assertion\n// fails.\n# define GTEST_DEATH_TEST_CHECK_(expression) \\\n  do { \\\n    if (!::testing::internal::IsTrue(expression)) { \\\n      DeathTestAbort( \\\n          ::std::string(\"CHECK failed: File \") + __FILE__ +  \", line \" \\\n          + ::testing::internal::StreamableToString(__LINE__) + \": \" \\\n          + #expression); \\\n    } \\\n  } while (::testing::internal::AlwaysFalse())\n\n// This macro is similar to GTEST_DEATH_TEST_CHECK_, but it is meant for\n// evaluating any system call that fulfills two conditions: it must return\n// -1 on failure, and set errno to EINTR when it is interrupted and\n// should be tried again.  The macro expands to a loop that repeatedly\n// evaluates the expression as long as it evaluates to -1 and sets\n// errno to EINTR.  If the expression evaluates to -1 but errno is\n// something other than EINTR, DeathTestAbort is called.\n# define GTEST_DEATH_TEST_CHECK_SYSCALL_(expression) \\\n  do { \\\n    int gtest_retval; \\\n    do { \\\n      gtest_retval = (expression); \\\n    } while (gtest_retval == -1 && errno == EINTR); \\\n    if (gtest_retval == -1) { \\\n      DeathTestAbort( \\\n          ::std::string(\"CHECK failed: File \") + __FILE__ + \", line \" \\\n          + ::testing::internal::StreamableToString(__LINE__) + \": \" \\\n          + #expression + \" != -1\"); \\\n    } \\\n  } while (::testing::internal::AlwaysFalse())\n\n// Returns the message describing the last system error in errno.\nstd::string GetLastErrnoDescription() {\n    return errno == 0 ? \"\" : posix::StrError(errno);\n}\n\n// This is called from a death test parent process to read a failure\n// message from the death test child process and log it with the FATAL\n// severity. On Windows, the message is read from a pipe handle. On other\n// platforms, it is read from a file descriptor.\nstatic void FailFromInternalError(int fd) {\n  Message error;\n  char buffer[256];\n  int num_read;\n\n  do {\n    while ((num_read = posix::Read(fd, buffer, 255)) > 0) {\n      buffer[num_read] = '\\0';\n      error << buffer;\n    }\n  } while (num_read == -1 && errno == EINTR);\n\n  if (num_read == 0) {\n    GTEST_LOG_(FATAL) << error.GetString();\n  } else {\n    const int last_error = errno;\n    GTEST_LOG_(FATAL) << \"Error while reading death test internal: \"\n                      << GetLastErrnoDescription() << \" [\" << last_error << \"]\";\n  }\n}\n\n// Death test constructor.  Increments the running death test count\n// for the current test.\nDeathTest::DeathTest() {\n  TestInfo* const info = GetUnitTestImpl()->current_test_info();\n  if (info == nullptr) {\n    DeathTestAbort(\"Cannot run a death test outside of a TEST or \"\n                   \"TEST_F construct\");\n  }\n}\n\n// Creates and returns a death test by dispatching to the current\n// death test factory.\nbool DeathTest::Create(const char* statement,\n                       Matcher<const std::string&> matcher, const char* file,\n                       int line, DeathTest** test) {\n  return GetUnitTestImpl()->death_test_factory()->Create(\n      statement, std::move(matcher), file, line, test);\n}\n\nconst char* DeathTest::LastMessage() {\n  return last_death_test_message_.c_str();\n}\n\nvoid DeathTest::set_last_death_test_message(const std::string& message) {\n  last_death_test_message_ = message;\n}\n\nstd::string DeathTest::last_death_test_message_;\n\n// Provides cross platform implementation for some death functionality.\nclass DeathTestImpl : public DeathTest {\n protected:\n  DeathTestImpl(const char* a_statement, Matcher<const std::string&> matcher)\n      : statement_(a_statement),\n        matcher_(std::move(matcher)),\n        spawned_(false),\n        status_(-1),\n        outcome_(IN_PROGRESS),\n        read_fd_(-1),\n        write_fd_(-1) {}\n\n  // read_fd_ is expected to be closed and cleared by a derived class.\n  ~DeathTestImpl() override { GTEST_DEATH_TEST_CHECK_(read_fd_ == -1); }\n\n  void Abort(AbortReason reason) override;\n  bool Passed(bool status_ok) override;\n\n  const char* statement() const { return statement_; }\n  bool spawned() const { return spawned_; }\n  void set_spawned(bool is_spawned) { spawned_ = is_spawned; }\n  int status() const { return status_; }\n  void set_status(int a_status) { status_ = a_status; }\n  DeathTestOutcome outcome() const { return outcome_; }\n  void set_outcome(DeathTestOutcome an_outcome) { outcome_ = an_outcome; }\n  int read_fd() const { return read_fd_; }\n  void set_read_fd(int fd) { read_fd_ = fd; }\n  int write_fd() const { return write_fd_; }\n  void set_write_fd(int fd) { write_fd_ = fd; }\n\n  // Called in the parent process only. Reads the result code of the death\n  // test child process via a pipe, interprets it to set the outcome_\n  // member, and closes read_fd_.  Outputs diagnostics and terminates in\n  // case of unexpected codes.\n  void ReadAndInterpretStatusByte();\n\n  // Returns stderr output from the child process.\n  virtual std::string GetErrorLogs();\n\n private:\n  // The textual content of the code this object is testing.  This class\n  // doesn't own this string and should not attempt to delete it.\n  const char* const statement_;\n  // A matcher that's expected to match the stderr output by the child process.\n  Matcher<const std::string&> matcher_;\n  // True if the death test child process has been successfully spawned.\n  bool spawned_;\n  // The exit status of the child process.\n  int status_;\n  // How the death test concluded.\n  DeathTestOutcome outcome_;\n  // Descriptor to the read end of the pipe to the child process.  It is\n  // always -1 in the child process.  The child keeps its write end of the\n  // pipe in write_fd_.\n  int read_fd_;\n  // Descriptor to the child's write end of the pipe to the parent process.\n  // It is always -1 in the parent process.  The parent keeps its end of the\n  // pipe in read_fd_.\n  int write_fd_;\n};\n\n// Called in the parent process only. Reads the result code of the death\n// test child process via a pipe, interprets it to set the outcome_\n// member, and closes read_fd_.  Outputs diagnostics and terminates in\n// case of unexpected codes.\nvoid DeathTestImpl::ReadAndInterpretStatusByte() {\n  char flag;\n  int bytes_read;\n\n  // The read() here blocks until data is available (signifying the\n  // failure of the death test) or until the pipe is closed (signifying\n  // its success), so it's okay to call this in the parent before\n  // the child process has exited.\n  do {\n    bytes_read = posix::Read(read_fd(), &flag, 1);\n  } while (bytes_read == -1 && errno == EINTR);\n\n  if (bytes_read == 0) {\n    set_outcome(DIED);\n  } else if (bytes_read == 1) {\n    switch (flag) {\n      case kDeathTestReturned:\n        set_outcome(RETURNED);\n        break;\n      case kDeathTestThrew:\n        set_outcome(THREW);\n        break;\n      case kDeathTestLived:\n        set_outcome(LIVED);\n        break;\n      case kDeathTestInternalError:\n        FailFromInternalError(read_fd());  // Does not return.\n        break;\n      default:\n        GTEST_LOG_(FATAL) << \"Death test child process reported \"\n                          << \"unexpected status byte (\"\n                          << static_cast<unsigned int>(flag) << \")\";\n    }\n  } else {\n    GTEST_LOG_(FATAL) << \"Read from death test child process failed: \"\n                      << GetLastErrnoDescription();\n  }\n  GTEST_DEATH_TEST_CHECK_SYSCALL_(posix::Close(read_fd()));\n  set_read_fd(-1);\n}\n\nstd::string DeathTestImpl::GetErrorLogs() {\n  return GetCapturedStderr();\n}\n\n// Signals that the death test code which should have exited, didn't.\n// Should be called only in a death test child process.\n// Writes a status byte to the child's status file descriptor, then\n// calls _exit(1).\nvoid DeathTestImpl::Abort(AbortReason reason) {\n  // The parent process considers the death test to be a failure if\n  // it finds any data in our pipe.  So, here we write a single flag byte\n  // to the pipe, then exit.\n  const char status_ch =\n      reason == TEST_DID_NOT_DIE ? kDeathTestLived :\n      reason == TEST_THREW_EXCEPTION ? kDeathTestThrew : kDeathTestReturned;\n\n  GTEST_DEATH_TEST_CHECK_SYSCALL_(posix::Write(write_fd(), &status_ch, 1));\n  // We are leaking the descriptor here because on some platforms (i.e.,\n  // when built as Windows DLL), destructors of global objects will still\n  // run after calling _exit(). On such systems, write_fd_ will be\n  // indirectly closed from the destructor of UnitTestImpl, causing double\n  // close if it is also closed here. On debug configurations, double close\n  // may assert. As there are no in-process buffers to flush here, we are\n  // relying on the OS to close the descriptor after the process terminates\n  // when the destructors are not run.\n  _exit(1);  // Exits w/o any normal exit hooks (we were supposed to crash)\n}\n\n// Returns an indented copy of stderr output for a death test.\n// This makes distinguishing death test output lines from regular log lines\n// much easier.\nstatic ::std::string FormatDeathTestOutput(const ::std::string& output) {\n  ::std::string ret;\n  for (size_t at = 0; ; ) {\n    const size_t line_end = output.find('\\n', at);\n    ret += \"[  DEATH   ] \";\n    if (line_end == ::std::string::npos) {\n      ret += output.substr(at);\n      break;\n    }\n    ret += output.substr(at, line_end + 1 - at);\n    at = line_end + 1;\n  }\n  return ret;\n}\n\n// Assesses the success or failure of a death test, using both private\n// members which have previously been set, and one argument:\n//\n// Private data members:\n//   outcome:  An enumeration describing how the death test\n//             concluded: DIED, LIVED, THREW, or RETURNED.  The death test\n//             fails in the latter three cases.\n//   status:   The exit status of the child process. On *nix, it is in the\n//             in the format specified by wait(2). On Windows, this is the\n//             value supplied to the ExitProcess() API or a numeric code\n//             of the exception that terminated the program.\n//   matcher_: A matcher that's expected to match the stderr output by the child\n//             process.\n//\n// Argument:\n//   status_ok: true if exit_status is acceptable in the context of\n//              this particular death test, which fails if it is false\n//\n// Returns true if and only if all of the above conditions are met.  Otherwise,\n// the first failing condition, in the order given above, is the one that is\n// reported. Also sets the last death test message string.\nbool DeathTestImpl::Passed(bool status_ok) {\n  if (!spawned())\n    return false;\n\n  const std::string error_message = GetErrorLogs();\n\n  bool success = false;\n  Message buffer;\n\n  buffer << \"Death test: \" << statement() << \"\\n\";\n  switch (outcome()) {\n    case LIVED:\n      buffer << \"    Result: failed to die.\\n\"\n             << \" Error msg:\\n\" << FormatDeathTestOutput(error_message);\n      break;\n    case THREW:\n      buffer << \"    Result: threw an exception.\\n\"\n             << \" Error msg:\\n\" << FormatDeathTestOutput(error_message);\n      break;\n    case RETURNED:\n      buffer << \"    Result: illegal return in test statement.\\n\"\n             << \" Error msg:\\n\" << FormatDeathTestOutput(error_message);\n      break;\n    case DIED:\n      if (status_ok) {\n        if (matcher_.Matches(error_message)) {\n          success = true;\n        } else {\n          std::ostringstream stream;\n          matcher_.DescribeTo(&stream);\n          buffer << \"    Result: died but not with expected error.\\n\"\n                 << \"  Expected: \" << stream.str() << \"\\n\"\n                 << \"Actual msg:\\n\"\n                 << FormatDeathTestOutput(error_message);\n        }\n      } else {\n        buffer << \"    Result: died but not with expected exit code:\\n\"\n               << \"            \" << ExitSummary(status()) << \"\\n\"\n               << \"Actual msg:\\n\" << FormatDeathTestOutput(error_message);\n      }\n      break;\n    case IN_PROGRESS:\n    default:\n      GTEST_LOG_(FATAL)\n          << \"DeathTest::Passed somehow called before conclusion of test\";\n  }\n\n  DeathTest::set_last_death_test_message(buffer.GetString());\n  return success;\n}\n\n# if GTEST_OS_WINDOWS\n// WindowsDeathTest implements death tests on Windows. Due to the\n// specifics of starting new processes on Windows, death tests there are\n// always threadsafe, and Google Test considers the\n// --gtest_death_test_style=fast setting to be equivalent to\n// --gtest_death_test_style=threadsafe there.\n//\n// A few implementation notes:  Like the Linux version, the Windows\n// implementation uses pipes for child-to-parent communication. But due to\n// the specifics of pipes on Windows, some extra steps are required:\n//\n// 1. The parent creates a communication pipe and stores handles to both\n//    ends of it.\n// 2. The parent starts the child and provides it with the information\n//    necessary to acquire the handle to the write end of the pipe.\n// 3. The child acquires the write end of the pipe and signals the parent\n//    using a Windows event.\n// 4. Now the parent can release the write end of the pipe on its side. If\n//    this is done before step 3, the object's reference count goes down to\n//    0 and it is destroyed, preventing the child from acquiring it. The\n//    parent now has to release it, or read operations on the read end of\n//    the pipe will not return when the child terminates.\n// 5. The parent reads child's output through the pipe (outcome code and\n//    any possible error messages) from the pipe, and its stderr and then\n//    determines whether to fail the test.\n//\n// Note: to distinguish Win32 API calls from the local method and function\n// calls, the former are explicitly resolved in the global namespace.\n//\nclass WindowsDeathTest : public DeathTestImpl {\n public:\n  WindowsDeathTest(const char* a_statement, Matcher<const std::string&> matcher,\n                   const char* file, int line)\n      : DeathTestImpl(a_statement, std::move(matcher)),\n        file_(file),\n        line_(line) {}\n\n  // All of these virtual functions are inherited from DeathTest.\n  virtual int Wait();\n  virtual TestRole AssumeRole();\n\n private:\n  // The name of the file in which the death test is located.\n  const char* const file_;\n  // The line number on which the death test is located.\n  const int line_;\n  // Handle to the write end of the pipe to the child process.\n  AutoHandle write_handle_;\n  // Child process handle.\n  AutoHandle child_handle_;\n  // Event the child process uses to signal the parent that it has\n  // acquired the handle to the write end of the pipe. After seeing this\n  // event the parent can release its own handles to make sure its\n  // ReadFile() calls return when the child terminates.\n  AutoHandle event_handle_;\n};\n\n// Waits for the child in a death test to exit, returning its exit\n// status, or 0 if no child process exists.  As a side effect, sets the\n// outcome data member.\nint WindowsDeathTest::Wait() {\n  if (!spawned())\n    return 0;\n\n  // Wait until the child either signals that it has acquired the write end\n  // of the pipe or it dies.\n  const HANDLE wait_handles[2] = { child_handle_.Get(), event_handle_.Get() };\n  switch (::WaitForMultipleObjects(2,\n                                   wait_handles,\n                                   FALSE,  // Waits for any of the handles.\n                                   INFINITE)) {\n    case WAIT_OBJECT_0:\n    case WAIT_OBJECT_0 + 1:\n      break;\n    default:\n      GTEST_DEATH_TEST_CHECK_(false);  // Should not get here.\n  }\n\n  // The child has acquired the write end of the pipe or exited.\n  // We release the handle on our side and continue.\n  write_handle_.Reset();\n  event_handle_.Reset();\n\n  ReadAndInterpretStatusByte();\n\n  // Waits for the child process to exit if it haven't already. This\n  // returns immediately if the child has already exited, regardless of\n  // whether previous calls to WaitForMultipleObjects synchronized on this\n  // handle or not.\n  GTEST_DEATH_TEST_CHECK_(\n      WAIT_OBJECT_0 == ::WaitForSingleObject(child_handle_.Get(),\n                                             INFINITE));\n  DWORD status_code;\n  GTEST_DEATH_TEST_CHECK_(\n      ::GetExitCodeProcess(child_handle_.Get(), &status_code) != FALSE);\n  child_handle_.Reset();\n  set_status(static_cast<int>(status_code));\n  return status();\n}\n\n// The AssumeRole process for a Windows death test.  It creates a child\n// process with the same executable as the current process to run the\n// death test.  The child process is given the --gtest_filter and\n// --gtest_internal_run_death_test flags such that it knows to run the\n// current death test only.\nDeathTest::TestRole WindowsDeathTest::AssumeRole() {\n  const UnitTestImpl* const impl = GetUnitTestImpl();\n  const InternalRunDeathTestFlag* const flag =\n      impl->internal_run_death_test_flag();\n  const TestInfo* const info = impl->current_test_info();\n  const int death_test_index = info->result()->death_test_count();\n\n  if (flag != nullptr) {\n    // ParseInternalRunDeathTestFlag() has performed all the necessary\n    // processing.\n    set_write_fd(flag->write_fd());\n    return EXECUTE_TEST;\n  }\n\n  // WindowsDeathTest uses an anonymous pipe to communicate results of\n  // a death test.\n  SECURITY_ATTRIBUTES handles_are_inheritable = {sizeof(SECURITY_ATTRIBUTES),\n                                                 nullptr, TRUE};\n  HANDLE read_handle, write_handle;\n  GTEST_DEATH_TEST_CHECK_(\n      ::CreatePipe(&read_handle, &write_handle, &handles_are_inheritable,\n                   0)  // Default buffer size.\n      != FALSE);\n  set_read_fd(::_open_osfhandle(reinterpret_cast<intptr_t>(read_handle),\n                                O_RDONLY));\n  write_handle_.Reset(write_handle);\n  event_handle_.Reset(::CreateEvent(\n      &handles_are_inheritable,\n      TRUE,       // The event will automatically reset to non-signaled state.\n      FALSE,      // The initial state is non-signalled.\n      nullptr));  // The even is unnamed.\n  GTEST_DEATH_TEST_CHECK_(event_handle_.Get() != nullptr);\n  const std::string filter_flag = std::string(\"--\") + GTEST_FLAG_PREFIX_ +\n                                  kFilterFlag + \"=\" + info->test_suite_name() +\n                                  \".\" + info->name();\n  const std::string internal_flag =\n      std::string(\"--\") + GTEST_FLAG_PREFIX_ + kInternalRunDeathTestFlag +\n      \"=\" + file_ + \"|\" + StreamableToString(line_) + \"|\" +\n      StreamableToString(death_test_index) + \"|\" +\n      StreamableToString(static_cast<unsigned int>(::GetCurrentProcessId())) +\n      // size_t has the same width as pointers on both 32-bit and 64-bit\n      // Windows platforms.\n      // See http://msdn.microsoft.com/en-us/library/tcxf1dw6.aspx.\n      \"|\" + StreamableToString(reinterpret_cast<size_t>(write_handle)) +\n      \"|\" + StreamableToString(reinterpret_cast<size_t>(event_handle_.Get()));\n\n  char executable_path[_MAX_PATH + 1];  // NOLINT\n  GTEST_DEATH_TEST_CHECK_(_MAX_PATH + 1 != ::GetModuleFileNameA(nullptr,\n                                                                executable_path,\n                                                                _MAX_PATH));\n\n  std::string command_line =\n      std::string(::GetCommandLineA()) + \" \" + filter_flag + \" \\\"\" +\n      internal_flag + \"\\\"\";\n\n  DeathTest::set_last_death_test_message(\"\");\n\n  CaptureStderr();\n  // Flush the log buffers since the log streams are shared with the child.\n  FlushInfoLog();\n\n  // The child process will share the standard handles with the parent.\n  STARTUPINFOA startup_info;\n  memset(&startup_info, 0, sizeof(STARTUPINFO));\n  startup_info.dwFlags = STARTF_USESTDHANDLES;\n  startup_info.hStdInput = ::GetStdHandle(STD_INPUT_HANDLE);\n  startup_info.hStdOutput = ::GetStdHandle(STD_OUTPUT_HANDLE);\n  startup_info.hStdError = ::GetStdHandle(STD_ERROR_HANDLE);\n\n  PROCESS_INFORMATION process_info;\n  GTEST_DEATH_TEST_CHECK_(\n      ::CreateProcessA(\n          executable_path, const_cast<char*>(command_line.c_str()),\n          nullptr,  // Retuned process handle is not inheritable.\n          nullptr,  // Retuned thread handle is not inheritable.\n          TRUE,  // Child inherits all inheritable handles (for write_handle_).\n          0x0,   // Default creation flags.\n          nullptr,  // Inherit the parent's environment.\n          UnitTest::GetInstance()->original_working_dir(), &startup_info,\n          &process_info) != FALSE);\n  child_handle_.Reset(process_info.hProcess);\n  ::CloseHandle(process_info.hThread);\n  set_spawned(true);\n  return OVERSEE_TEST;\n}\n\n# elif GTEST_OS_FUCHSIA\n\nclass FuchsiaDeathTest : public DeathTestImpl {\n public:\n  FuchsiaDeathTest(const char* a_statement, Matcher<const std::string&> matcher,\n                   const char* file, int line)\n      : DeathTestImpl(a_statement, std::move(matcher)),\n        file_(file),\n        line_(line) {}\n\n  // All of these virtual functions are inherited from DeathTest.\n  int Wait() override;\n  TestRole AssumeRole() override;\n  std::string GetErrorLogs() override;\n\n private:\n  // The name of the file in which the death test is located.\n  const char* const file_;\n  // The line number on which the death test is located.\n  const int line_;\n  // The stderr data captured by the child process.\n  std::string captured_stderr_;\n\n  zx::process child_process_;\n  zx::channel exception_channel_;\n  zx::socket stderr_socket_;\n};\n\n// Utility class for accumulating command-line arguments.\nclass Arguments {\n public:\n  Arguments() { args_.push_back(nullptr); }\n\n  ~Arguments() {\n    for (std::vector<char*>::iterator i = args_.begin(); i != args_.end();\n         ++i) {\n      free(*i);\n    }\n  }\n  void AddArgument(const char* argument) {\n    args_.insert(args_.end() - 1, posix::StrDup(argument));\n  }\n\n  template <typename Str>\n  void AddArguments(const ::std::vector<Str>& arguments) {\n    for (typename ::std::vector<Str>::const_iterator i = arguments.begin();\n         i != arguments.end();\n         ++i) {\n      args_.insert(args_.end() - 1, posix::StrDup(i->c_str()));\n    }\n  }\n  char* const* Argv() {\n    return &args_[0];\n  }\n\n  int size() {\n    return static_cast<int>(args_.size()) - 1;\n  }\n\n private:\n  std::vector<char*> args_;\n};\n\n// Waits for the child in a death test to exit, returning its exit\n// status, or 0 if no child process exists.  As a side effect, sets the\n// outcome data member.\nint FuchsiaDeathTest::Wait() {\n  const int kProcessKey = 0;\n  const int kSocketKey = 1;\n  const int kExceptionKey = 2;\n\n  if (!spawned())\n    return 0;\n\n  // Create a port to wait for socket/task/exception events.\n  zx_status_t status_zx;\n  zx::port port;\n  status_zx = zx::port::create(0, &port);\n  GTEST_DEATH_TEST_CHECK_(status_zx == ZX_OK);\n\n  // Register to wait for the child process to terminate.\n  status_zx = child_process_.wait_async(\n      port, kProcessKey, ZX_PROCESS_TERMINATED, 0);\n  GTEST_DEATH_TEST_CHECK_(status_zx == ZX_OK);\n\n  // Register to wait for the socket to be readable or closed.\n  status_zx = stderr_socket_.wait_async(\n      port, kSocketKey, ZX_SOCKET_READABLE | ZX_SOCKET_PEER_CLOSED, 0);\n  GTEST_DEATH_TEST_CHECK_(status_zx == ZX_OK);\n\n  // Register to wait for an exception.\n  status_zx = exception_channel_.wait_async(\n      port, kExceptionKey, ZX_CHANNEL_READABLE, 0);\n  GTEST_DEATH_TEST_CHECK_(status_zx == ZX_OK);\n\n  bool process_terminated = false;\n  bool socket_closed = false;\n  do {\n    zx_port_packet_t packet = {};\n    status_zx = port.wait(zx::time::infinite(), &packet);\n    GTEST_DEATH_TEST_CHECK_(status_zx == ZX_OK);\n\n    if (packet.key == kExceptionKey) {\n      // Process encountered an exception. Kill it directly rather than\n      // letting other handlers process the event. We will get a kProcessKey\n      // event when the process actually terminates.\n      status_zx = child_process_.kill();\n      GTEST_DEATH_TEST_CHECK_(status_zx == ZX_OK);\n    } else if (packet.key == kProcessKey) {\n      // Process terminated.\n      GTEST_DEATH_TEST_CHECK_(ZX_PKT_IS_SIGNAL_ONE(packet.type));\n      GTEST_DEATH_TEST_CHECK_(packet.signal.observed & ZX_PROCESS_TERMINATED);\n      process_terminated = true;\n    } else if (packet.key == kSocketKey) {\n      GTEST_DEATH_TEST_CHECK_(ZX_PKT_IS_SIGNAL_ONE(packet.type));\n      if (packet.signal.observed & ZX_SOCKET_READABLE) {\n        // Read data from the socket.\n        constexpr size_t kBufferSize = 1024;\n        do {\n          size_t old_length = captured_stderr_.length();\n          size_t bytes_read = 0;\n          captured_stderr_.resize(old_length + kBufferSize);\n          status_zx = stderr_socket_.read(\n              0, &captured_stderr_.front() + old_length, kBufferSize,\n              &bytes_read);\n          captured_stderr_.resize(old_length + bytes_read);\n        } while (status_zx == ZX_OK);\n        if (status_zx == ZX_ERR_PEER_CLOSED) {\n          socket_closed = true;\n        } else {\n          GTEST_DEATH_TEST_CHECK_(status_zx == ZX_ERR_SHOULD_WAIT);\n          status_zx = stderr_socket_.wait_async(\n              port, kSocketKey, ZX_SOCKET_READABLE | ZX_SOCKET_PEER_CLOSED, 0);\n          GTEST_DEATH_TEST_CHECK_(status_zx == ZX_OK);\n        }\n      } else {\n        GTEST_DEATH_TEST_CHECK_(packet.signal.observed & ZX_SOCKET_PEER_CLOSED);\n        socket_closed = true;\n      }\n    }\n  } while (!process_terminated && !socket_closed);\n\n  ReadAndInterpretStatusByte();\n\n  zx_info_process_t buffer;\n  status_zx = child_process_.get_info(ZX_INFO_PROCESS, &buffer, sizeof(buffer),\n                                      nullptr, nullptr);\n  GTEST_DEATH_TEST_CHECK_(status_zx == ZX_OK);\n\n  GTEST_DEATH_TEST_CHECK_(buffer.flags & ZX_INFO_PROCESS_FLAG_EXITED);\n  set_status(static_cast<int>(buffer.return_code));\n  return status();\n}\n\n// The AssumeRole process for a Fuchsia death test.  It creates a child\n// process with the same executable as the current process to run the\n// death test.  The child process is given the --gtest_filter and\n// --gtest_internal_run_death_test flags such that it knows to run the\n// current death test only.\nDeathTest::TestRole FuchsiaDeathTest::AssumeRole() {\n  const UnitTestImpl* const impl = GetUnitTestImpl();\n  const InternalRunDeathTestFlag* const flag =\n      impl->internal_run_death_test_flag();\n  const TestInfo* const info = impl->current_test_info();\n  const int death_test_index = info->result()->death_test_count();\n\n  if (flag != nullptr) {\n    // ParseInternalRunDeathTestFlag() has performed all the necessary\n    // processing.\n    set_write_fd(kFuchsiaReadPipeFd);\n    return EXECUTE_TEST;\n  }\n\n  // Flush the log buffers since the log streams are shared with the child.\n  FlushInfoLog();\n\n  // Build the child process command line.\n  const std::string filter_flag = std::string(\"--\") + GTEST_FLAG_PREFIX_ +\n                                  kFilterFlag + \"=\" + info->test_suite_name() +\n                                  \".\" + info->name();\n  const std::string internal_flag =\n      std::string(\"--\") + GTEST_FLAG_PREFIX_ + kInternalRunDeathTestFlag + \"=\"\n      + file_ + \"|\"\n      + StreamableToString(line_) + \"|\"\n      + StreamableToString(death_test_index);\n  Arguments args;\n  args.AddArguments(GetInjectableArgvs());\n  args.AddArgument(filter_flag.c_str());\n  args.AddArgument(internal_flag.c_str());\n\n  // Build the pipe for communication with the child.\n  zx_status_t status;\n  zx_handle_t child_pipe_handle;\n  int child_pipe_fd;\n  status = fdio_pipe_half(&child_pipe_fd, &child_pipe_handle);\n  GTEST_DEATH_TEST_CHECK_(status == ZX_OK);\n  set_read_fd(child_pipe_fd);\n\n  // Set the pipe handle for the child.\n  fdio_spawn_action_t spawn_actions[2] = {};\n  fdio_spawn_action_t* add_handle_action = &spawn_actions[0];\n  add_handle_action->action = FDIO_SPAWN_ACTION_ADD_HANDLE;\n  add_handle_action->h.id = PA_HND(PA_FD, kFuchsiaReadPipeFd);\n  add_handle_action->h.handle = child_pipe_handle;\n\n  // Create a socket pair will be used to receive the child process' stderr.\n  zx::socket stderr_producer_socket;\n  status =\n      zx::socket::create(0, &stderr_producer_socket, &stderr_socket_);\n  GTEST_DEATH_TEST_CHECK_(status >= 0);\n  int stderr_producer_fd = -1;\n  status =\n      fdio_fd_create(stderr_producer_socket.release(), &stderr_producer_fd);\n  GTEST_DEATH_TEST_CHECK_(status >= 0);\n\n  // Make the stderr socket nonblocking.\n  GTEST_DEATH_TEST_CHECK_(fcntl(stderr_producer_fd, F_SETFL, 0) == 0);\n\n  fdio_spawn_action_t* add_stderr_action = &spawn_actions[1];\n  add_stderr_action->action = FDIO_SPAWN_ACTION_CLONE_FD;\n  add_stderr_action->fd.local_fd = stderr_producer_fd;\n  add_stderr_action->fd.target_fd = STDERR_FILENO;\n\n  // Create a child job.\n  zx_handle_t child_job = ZX_HANDLE_INVALID;\n  status = zx_job_create(zx_job_default(), 0, & child_job);\n  GTEST_DEATH_TEST_CHECK_(status == ZX_OK);\n  zx_policy_basic_t policy;\n  policy.condition = ZX_POL_NEW_ANY;\n  policy.policy = ZX_POL_ACTION_ALLOW;\n  status = zx_job_set_policy(\n      child_job, ZX_JOB_POL_RELATIVE, ZX_JOB_POL_BASIC, &policy, 1);\n  GTEST_DEATH_TEST_CHECK_(status == ZX_OK);\n\n  // Create an exception channel attached to the |child_job|, to allow\n  // us to suppress the system default exception handler from firing.\n  status =\n      zx_task_create_exception_channel(\n          child_job, 0, exception_channel_.reset_and_get_address());\n  GTEST_DEATH_TEST_CHECK_(status == ZX_OK);\n\n  // Spawn the child process.\n  status = fdio_spawn_etc(\n      child_job, FDIO_SPAWN_CLONE_ALL, args.Argv()[0], args.Argv(), nullptr,\n      2, spawn_actions, child_process_.reset_and_get_address(), nullptr);\n  GTEST_DEATH_TEST_CHECK_(status == ZX_OK);\n\n  set_spawned(true);\n  return OVERSEE_TEST;\n}\n\nstd::string FuchsiaDeathTest::GetErrorLogs() {\n  return captured_stderr_;\n}\n\n#else  // We are neither on Windows, nor on Fuchsia.\n\n// ForkingDeathTest provides implementations for most of the abstract\n// methods of the DeathTest interface.  Only the AssumeRole method is\n// left undefined.\nclass ForkingDeathTest : public DeathTestImpl {\n public:\n  ForkingDeathTest(const char* statement, Matcher<const std::string&> matcher);\n\n  // All of these virtual functions are inherited from DeathTest.\n  int Wait() override;\n\n protected:\n  void set_child_pid(pid_t child_pid) { child_pid_ = child_pid; }\n\n private:\n  // PID of child process during death test; 0 in the child process itself.\n  pid_t child_pid_;\n};\n\n// Constructs a ForkingDeathTest.\nForkingDeathTest::ForkingDeathTest(const char* a_statement,\n                                   Matcher<const std::string&> matcher)\n    : DeathTestImpl(a_statement, std::move(matcher)), child_pid_(-1) {}\n\n// Waits for the child in a death test to exit, returning its exit\n// status, or 0 if no child process exists.  As a side effect, sets the\n// outcome data member.\nint ForkingDeathTest::Wait() {\n  if (!spawned())\n    return 0;\n\n  ReadAndInterpretStatusByte();\n\n  int status_value;\n  GTEST_DEATH_TEST_CHECK_SYSCALL_(waitpid(child_pid_, &status_value, 0));\n  set_status(status_value);\n  return status_value;\n}\n\n// A concrete death test class that forks, then immediately runs the test\n// in the child process.\nclass NoExecDeathTest : public ForkingDeathTest {\n public:\n  NoExecDeathTest(const char* a_statement, Matcher<const std::string&> matcher)\n      : ForkingDeathTest(a_statement, std::move(matcher)) {}\n  TestRole AssumeRole() override;\n};\n\n// The AssumeRole process for a fork-and-run death test.  It implements a\n// straightforward fork, with a simple pipe to transmit the status byte.\nDeathTest::TestRole NoExecDeathTest::AssumeRole() {\n  const size_t thread_count = GetThreadCount();\n  if (thread_count != 1) {\n    GTEST_LOG_(WARNING) << DeathTestThreadWarning(thread_count);\n  }\n\n  int pipe_fd[2];\n  GTEST_DEATH_TEST_CHECK_(pipe(pipe_fd) != -1);\n\n  DeathTest::set_last_death_test_message(\"\");\n  CaptureStderr();\n  // When we fork the process below, the log file buffers are copied, but the\n  // file descriptors are shared.  We flush all log files here so that closing\n  // the file descriptors in the child process doesn't throw off the\n  // synchronization between descriptors and buffers in the parent process.\n  // This is as close to the fork as possible to avoid a race condition in case\n  // there are multiple threads running before the death test, and another\n  // thread writes to the log file.\n  FlushInfoLog();\n\n  const pid_t child_pid = fork();\n  GTEST_DEATH_TEST_CHECK_(child_pid != -1);\n  set_child_pid(child_pid);\n  if (child_pid == 0) {\n    GTEST_DEATH_TEST_CHECK_SYSCALL_(close(pipe_fd[0]));\n    set_write_fd(pipe_fd[1]);\n    // Redirects all logging to stderr in the child process to prevent\n    // concurrent writes to the log files.  We capture stderr in the parent\n    // process and append the child process' output to a log.\n    LogToStderr();\n    // Event forwarding to the listeners of event listener API mush be shut\n    // down in death test subprocesses.\n    GetUnitTestImpl()->listeners()->SuppressEventForwarding();\n    g_in_fast_death_test_child = true;\n    return EXECUTE_TEST;\n  } else {\n    GTEST_DEATH_TEST_CHECK_SYSCALL_(close(pipe_fd[1]));\n    set_read_fd(pipe_fd[0]);\n    set_spawned(true);\n    return OVERSEE_TEST;\n  }\n}\n\n// A concrete death test class that forks and re-executes the main\n// program from the beginning, with command-line flags set that cause\n// only this specific death test to be run.\nclass ExecDeathTest : public ForkingDeathTest {\n public:\n  ExecDeathTest(const char* a_statement, Matcher<const std::string&> matcher,\n                const char* file, int line)\n      : ForkingDeathTest(a_statement, std::move(matcher)),\n        file_(file),\n        line_(line) {}\n  TestRole AssumeRole() override;\n\n private:\n  static ::std::vector<std::string> GetArgvsForDeathTestChildProcess() {\n    ::std::vector<std::string> args = GetInjectableArgvs();\n#  if defined(GTEST_EXTRA_DEATH_TEST_COMMAND_LINE_ARGS_)\n    ::std::vector<std::string> extra_args =\n        GTEST_EXTRA_DEATH_TEST_COMMAND_LINE_ARGS_();\n    args.insert(args.end(), extra_args.begin(), extra_args.end());\n#  endif  // defined(GTEST_EXTRA_DEATH_TEST_COMMAND_LINE_ARGS_)\n    return args;\n  }\n  // The name of the file in which the death test is located.\n  const char* const file_;\n  // The line number on which the death test is located.\n  const int line_;\n};\n\n// Utility class for accumulating command-line arguments.\nclass Arguments {\n public:\n  Arguments() { args_.push_back(nullptr); }\n\n  ~Arguments() {\n    for (std::vector<char*>::iterator i = args_.begin(); i != args_.end();\n         ++i) {\n      free(*i);\n    }\n  }\n  void AddArgument(const char* argument) {\n    args_.insert(args_.end() - 1, posix::StrDup(argument));\n  }\n\n  template <typename Str>\n  void AddArguments(const ::std::vector<Str>& arguments) {\n    for (typename ::std::vector<Str>::const_iterator i = arguments.begin();\n         i != arguments.end();\n         ++i) {\n      args_.insert(args_.end() - 1, posix::StrDup(i->c_str()));\n    }\n  }\n  char* const* Argv() {\n    return &args_[0];\n  }\n\n private:\n  std::vector<char*> args_;\n};\n\n// A struct that encompasses the arguments to the child process of a\n// threadsafe-style death test process.\nstruct ExecDeathTestArgs {\n  char* const* argv;  // Command-line arguments for the child's call to exec\n  int close_fd;       // File descriptor to close; the read end of a pipe\n};\n\n#  if GTEST_OS_QNX\nextern \"C\" char** environ;\n#  else  // GTEST_OS_QNX\n// The main function for a threadsafe-style death test child process.\n// This function is called in a clone()-ed process and thus must avoid\n// any potentially unsafe operations like malloc or libc functions.\nstatic int ExecDeathTestChildMain(void* child_arg) {\n  ExecDeathTestArgs* const args = static_cast<ExecDeathTestArgs*>(child_arg);\n  GTEST_DEATH_TEST_CHECK_SYSCALL_(close(args->close_fd));\n\n  // We need to execute the test program in the same environment where\n  // it was originally invoked.  Therefore we change to the original\n  // working directory first.\n  const char* const original_dir =\n      UnitTest::GetInstance()->original_working_dir();\n  // We can safely call chdir() as it's a direct system call.\n  if (chdir(original_dir) != 0) {\n    DeathTestAbort(std::string(\"chdir(\\\"\") + original_dir + \"\\\") failed: \" +\n                   GetLastErrnoDescription());\n    return EXIT_FAILURE;\n  }\n\n  // We can safely call execv() as it's almost a direct system call. We\n  // cannot use execvp() as it's a libc function and thus potentially\n  // unsafe.  Since execv() doesn't search the PATH, the user must\n  // invoke the test program via a valid path that contains at least\n  // one path separator.\n  execv(args->argv[0], args->argv);\n  DeathTestAbort(std::string(\"execv(\") + args->argv[0] + \", ...) in \" +\n                 original_dir + \" failed: \" +\n                 GetLastErrnoDescription());\n  return EXIT_FAILURE;\n}\n#  endif  // GTEST_OS_QNX\n\n#  if GTEST_HAS_CLONE\n// Two utility routines that together determine the direction the stack\n// grows.\n// This could be accomplished more elegantly by a single recursive\n// function, but we want to guard against the unlikely possibility of\n// a smart compiler optimizing the recursion away.\n//\n// GTEST_NO_INLINE_ is required to prevent GCC 4.6 from inlining\n// StackLowerThanAddress into StackGrowsDown, which then doesn't give\n// correct answer.\nstatic void StackLowerThanAddress(const void* ptr,\n                                  bool* result) GTEST_NO_INLINE_;\n// Make sure sanitizers do not tamper with the stack here.\n// Ideally, we want to use `__builtin_frame_address` instead of a local variable\n// address with sanitizer disabled, but it does not work when the\n// compiler optimizes the stack frame out, which happens on PowerPC targets.\n// HWAddressSanitizer add a random tag to the MSB of the local variable address,\n// making comparison result unpredictable.\nGTEST_ATTRIBUTE_NO_SANITIZE_ADDRESS_\nGTEST_ATTRIBUTE_NO_SANITIZE_HWADDRESS_\nstatic void StackLowerThanAddress(const void* ptr, bool* result) {\n  int dummy = 0;\n  *result = std::less<const void*>()(&dummy, ptr);\n}\n\n// Make sure AddressSanitizer does not tamper with the stack here.\nGTEST_ATTRIBUTE_NO_SANITIZE_ADDRESS_\nGTEST_ATTRIBUTE_NO_SANITIZE_HWADDRESS_\nstatic bool StackGrowsDown() {\n  int dummy = 0;\n  bool result;\n  StackLowerThanAddress(&dummy, &result);\n  return result;\n}\n#  endif  // GTEST_HAS_CLONE\n\n// Spawns a child process with the same executable as the current process in\n// a thread-safe manner and instructs it to run the death test.  The\n// implementation uses fork(2) + exec.  On systems where clone(2) is\n// available, it is used instead, being slightly more thread-safe.  On QNX,\n// fork supports only single-threaded environments, so this function uses\n// spawn(2) there instead.  The function dies with an error message if\n// anything goes wrong.\nstatic pid_t ExecDeathTestSpawnChild(char* const* argv, int close_fd) {\n  ExecDeathTestArgs args = { argv, close_fd };\n  pid_t child_pid = -1;\n\n#  if GTEST_OS_QNX\n  // Obtains the current directory and sets it to be closed in the child\n  // process.\n  const int cwd_fd = open(\".\", O_RDONLY);\n  GTEST_DEATH_TEST_CHECK_(cwd_fd != -1);\n  GTEST_DEATH_TEST_CHECK_SYSCALL_(fcntl(cwd_fd, F_SETFD, FD_CLOEXEC));\n  // We need to execute the test program in the same environment where\n  // it was originally invoked.  Therefore we change to the original\n  // working directory first.\n  const char* const original_dir =\n      UnitTest::GetInstance()->original_working_dir();\n  // We can safely call chdir() as it's a direct system call.\n  if (chdir(original_dir) != 0) {\n    DeathTestAbort(std::string(\"chdir(\\\"\") + original_dir + \"\\\") failed: \" +\n                   GetLastErrnoDescription());\n    return EXIT_FAILURE;\n  }\n\n  int fd_flags;\n  // Set close_fd to be closed after spawn.\n  GTEST_DEATH_TEST_CHECK_SYSCALL_(fd_flags = fcntl(close_fd, F_GETFD));\n  GTEST_DEATH_TEST_CHECK_SYSCALL_(fcntl(close_fd, F_SETFD,\n                                        fd_flags | FD_CLOEXEC));\n  struct inheritance inherit = {0};\n  // spawn is a system call.\n  child_pid = spawn(args.argv[0], 0, nullptr, &inherit, args.argv, environ);\n  // Restores the current working directory.\n  GTEST_DEATH_TEST_CHECK_(fchdir(cwd_fd) != -1);\n  GTEST_DEATH_TEST_CHECK_SYSCALL_(close(cwd_fd));\n\n#  else   // GTEST_OS_QNX\n#   if GTEST_OS_LINUX\n  // When a SIGPROF signal is received while fork() or clone() are executing,\n  // the process may hang. To avoid this, we ignore SIGPROF here and re-enable\n  // it after the call to fork()/clone() is complete.\n  struct sigaction saved_sigprof_action;\n  struct sigaction ignore_sigprof_action;\n  memset(&ignore_sigprof_action, 0, sizeof(ignore_sigprof_action));\n  sigemptyset(&ignore_sigprof_action.sa_mask);\n  ignore_sigprof_action.sa_handler = SIG_IGN;\n  GTEST_DEATH_TEST_CHECK_SYSCALL_(sigaction(\n      SIGPROF, &ignore_sigprof_action, &saved_sigprof_action));\n#   endif  // GTEST_OS_LINUX\n\n#   if GTEST_HAS_CLONE\n  const bool use_fork = GTEST_FLAG(death_test_use_fork);\n\n  if (!use_fork) {\n    static const bool stack_grows_down = StackGrowsDown();\n    const auto stack_size = static_cast<size_t>(getpagesize() * 2);\n    // MMAP_ANONYMOUS is not defined on Mac, so we use MAP_ANON instead.\n    void* const stack = mmap(nullptr, stack_size, PROT_READ | PROT_WRITE,\n                             MAP_ANON | MAP_PRIVATE, -1, 0);\n    GTEST_DEATH_TEST_CHECK_(stack != MAP_FAILED);\n\n    // Maximum stack alignment in bytes:  For a downward-growing stack, this\n    // amount is subtracted from size of the stack space to get an address\n    // that is within the stack space and is aligned on all systems we care\n    // about.  As far as I know there is no ABI with stack alignment greater\n    // than 64.  We assume stack and stack_size already have alignment of\n    // kMaxStackAlignment.\n    const size_t kMaxStackAlignment = 64;\n    void* const stack_top =\n        static_cast<char*>(stack) +\n            (stack_grows_down ? stack_size - kMaxStackAlignment : 0);\n    GTEST_DEATH_TEST_CHECK_(\n        static_cast<size_t>(stack_size) > kMaxStackAlignment &&\n        reinterpret_cast<uintptr_t>(stack_top) % kMaxStackAlignment == 0);\n\n    child_pid = clone(&ExecDeathTestChildMain, stack_top, SIGCHLD, &args);\n\n    GTEST_DEATH_TEST_CHECK_(munmap(stack, stack_size) != -1);\n  }\n#   else\n  const bool use_fork = true;\n#   endif  // GTEST_HAS_CLONE\n\n  if (use_fork && (child_pid = fork()) == 0) {\n      ExecDeathTestChildMain(&args);\n      _exit(0);\n  }\n#  endif  // GTEST_OS_QNX\n#  if GTEST_OS_LINUX\n  GTEST_DEATH_TEST_CHECK_SYSCALL_(\n      sigaction(SIGPROF, &saved_sigprof_action, nullptr));\n#  endif  // GTEST_OS_LINUX\n\n  GTEST_DEATH_TEST_CHECK_(child_pid != -1);\n  return child_pid;\n}\n\n// The AssumeRole process for a fork-and-exec death test.  It re-executes the\n// main program from the beginning, setting the --gtest_filter\n// and --gtest_internal_run_death_test flags to cause only the current\n// death test to be re-run.\nDeathTest::TestRole ExecDeathTest::AssumeRole() {\n  const UnitTestImpl* const impl = GetUnitTestImpl();\n  const InternalRunDeathTestFlag* const flag =\n      impl->internal_run_death_test_flag();\n  const TestInfo* const info = impl->current_test_info();\n  const int death_test_index = info->result()->death_test_count();\n\n  if (flag != nullptr) {\n    set_write_fd(flag->write_fd());\n    return EXECUTE_TEST;\n  }\n\n  int pipe_fd[2];\n  GTEST_DEATH_TEST_CHECK_(pipe(pipe_fd) != -1);\n  // Clear the close-on-exec flag on the write end of the pipe, lest\n  // it be closed when the child process does an exec:\n  GTEST_DEATH_TEST_CHECK_(fcntl(pipe_fd[1], F_SETFD, 0) != -1);\n\n  const std::string filter_flag = std::string(\"--\") + GTEST_FLAG_PREFIX_ +\n                                  kFilterFlag + \"=\" + info->test_suite_name() +\n                                  \".\" + info->name();\n  const std::string internal_flag =\n      std::string(\"--\") + GTEST_FLAG_PREFIX_ + kInternalRunDeathTestFlag + \"=\"\n      + file_ + \"|\" + StreamableToString(line_) + \"|\"\n      + StreamableToString(death_test_index) + \"|\"\n      + StreamableToString(pipe_fd[1]);\n  Arguments args;\n  args.AddArguments(GetArgvsForDeathTestChildProcess());\n  args.AddArgument(filter_flag.c_str());\n  args.AddArgument(internal_flag.c_str());\n\n  DeathTest::set_last_death_test_message(\"\");\n\n  CaptureStderr();\n  // See the comment in NoExecDeathTest::AssumeRole for why the next line\n  // is necessary.\n  FlushInfoLog();\n\n  const pid_t child_pid = ExecDeathTestSpawnChild(args.Argv(), pipe_fd[0]);\n  GTEST_DEATH_TEST_CHECK_SYSCALL_(close(pipe_fd[1]));\n  set_child_pid(child_pid);\n  set_read_fd(pipe_fd[0]);\n  set_spawned(true);\n  return OVERSEE_TEST;\n}\n\n# endif  // !GTEST_OS_WINDOWS\n\n// Creates a concrete DeathTest-derived class that depends on the\n// --gtest_death_test_style flag, and sets the pointer pointed to\n// by the \"test\" argument to its address.  If the test should be\n// skipped, sets that pointer to NULL.  Returns true, unless the\n// flag is set to an invalid value.\nbool DefaultDeathTestFactory::Create(const char* statement,\n                                     Matcher<const std::string&> matcher,\n                                     const char* file, int line,\n                                     DeathTest** test) {\n  UnitTestImpl* const impl = GetUnitTestImpl();\n  const InternalRunDeathTestFlag* const flag =\n      impl->internal_run_death_test_flag();\n  const int death_test_index = impl->current_test_info()\n      ->increment_death_test_count();\n\n  if (flag != nullptr) {\n    if (death_test_index > flag->index()) {\n      DeathTest::set_last_death_test_message(\n          \"Death test count (\" + StreamableToString(death_test_index)\n          + \") somehow exceeded expected maximum (\"\n          + StreamableToString(flag->index()) + \")\");\n      return false;\n    }\n\n    if (!(flag->file() == file && flag->line() == line &&\n          flag->index() == death_test_index)) {\n      *test = nullptr;\n      return true;\n    }\n  }\n\n# if GTEST_OS_WINDOWS\n\n  if (GTEST_FLAG(death_test_style) == \"threadsafe\" ||\n      GTEST_FLAG(death_test_style) == \"fast\") {\n    *test = new WindowsDeathTest(statement, std::move(matcher), file, line);\n  }\n\n# elif GTEST_OS_FUCHSIA\n\n  if (GTEST_FLAG(death_test_style) == \"threadsafe\" ||\n      GTEST_FLAG(death_test_style) == \"fast\") {\n    *test = new FuchsiaDeathTest(statement, std::move(matcher), file, line);\n  }\n\n# else\n\n  if (GTEST_FLAG(death_test_style) == \"threadsafe\") {\n    *test = new ExecDeathTest(statement, std::move(matcher), file, line);\n  } else if (GTEST_FLAG(death_test_style) == \"fast\") {\n    *test = new NoExecDeathTest(statement, std::move(matcher));\n  }\n\n# endif  // GTEST_OS_WINDOWS\n\n  else {  // NOLINT - this is more readable than unbalanced brackets inside #if.\n    DeathTest::set_last_death_test_message(\n        \"Unknown death test style \\\"\" + GTEST_FLAG(death_test_style)\n        + \"\\\" encountered\");\n    return false;\n  }\n\n  return true;\n}\n\n# if GTEST_OS_WINDOWS\n// Recreates the pipe and event handles from the provided parameters,\n// signals the event, and returns a file descriptor wrapped around the pipe\n// handle. This function is called in the child process only.\nstatic int GetStatusFileDescriptor(unsigned int parent_process_id,\n                            size_t write_handle_as_size_t,\n                            size_t event_handle_as_size_t) {\n  AutoHandle parent_process_handle(::OpenProcess(PROCESS_DUP_HANDLE,\n                                                   FALSE,  // Non-inheritable.\n                                                   parent_process_id));\n  if (parent_process_handle.Get() == INVALID_HANDLE_VALUE) {\n    DeathTestAbort(\"Unable to open parent process \" +\n                   StreamableToString(parent_process_id));\n  }\n\n  GTEST_CHECK_(sizeof(HANDLE) <= sizeof(size_t));\n\n  const HANDLE write_handle =\n      reinterpret_cast<HANDLE>(write_handle_as_size_t);\n  HANDLE dup_write_handle;\n\n  // The newly initialized handle is accessible only in the parent\n  // process. To obtain one accessible within the child, we need to use\n  // DuplicateHandle.\n  if (!::DuplicateHandle(parent_process_handle.Get(), write_handle,\n                         ::GetCurrentProcess(), &dup_write_handle,\n                         0x0,    // Requested privileges ignored since\n                                 // DUPLICATE_SAME_ACCESS is used.\n                         FALSE,  // Request non-inheritable handler.\n                         DUPLICATE_SAME_ACCESS)) {\n    DeathTestAbort(\"Unable to duplicate the pipe handle \" +\n                   StreamableToString(write_handle_as_size_t) +\n                   \" from the parent process \" +\n                   StreamableToString(parent_process_id));\n  }\n\n  const HANDLE event_handle = reinterpret_cast<HANDLE>(event_handle_as_size_t);\n  HANDLE dup_event_handle;\n\n  if (!::DuplicateHandle(parent_process_handle.Get(), event_handle,\n                         ::GetCurrentProcess(), &dup_event_handle,\n                         0x0,\n                         FALSE,\n                         DUPLICATE_SAME_ACCESS)) {\n    DeathTestAbort(\"Unable to duplicate the event handle \" +\n                   StreamableToString(event_handle_as_size_t) +\n                   \" from the parent process \" +\n                   StreamableToString(parent_process_id));\n  }\n\n  const int write_fd =\n      ::_open_osfhandle(reinterpret_cast<intptr_t>(dup_write_handle), O_APPEND);\n  if (write_fd == -1) {\n    DeathTestAbort(\"Unable to convert pipe handle \" +\n                   StreamableToString(write_handle_as_size_t) +\n                   \" to a file descriptor\");\n  }\n\n  // Signals the parent that the write end of the pipe has been acquired\n  // so the parent can release its own write end.\n  ::SetEvent(dup_event_handle);\n\n  return write_fd;\n}\n# endif  // GTEST_OS_WINDOWS\n\n// Returns a newly created InternalRunDeathTestFlag object with fields\n// initialized from the GTEST_FLAG(internal_run_death_test) flag if\n// the flag is specified; otherwise returns NULL.\nInternalRunDeathTestFlag* ParseInternalRunDeathTestFlag() {\n  if (GTEST_FLAG(internal_run_death_test) == \"\") return nullptr;\n\n  // GTEST_HAS_DEATH_TEST implies that we have ::std::string, so we\n  // can use it here.\n  int line = -1;\n  int index = -1;\n  ::std::vector< ::std::string> fields;\n  SplitString(GTEST_FLAG(internal_run_death_test).c_str(), '|', &fields);\n  int write_fd = -1;\n\n# if GTEST_OS_WINDOWS\n\n  unsigned int parent_process_id = 0;\n  size_t write_handle_as_size_t = 0;\n  size_t event_handle_as_size_t = 0;\n\n  if (fields.size() != 6\n      || !ParseNaturalNumber(fields[1], &line)\n      || !ParseNaturalNumber(fields[2], &index)\n      || !ParseNaturalNumber(fields[3], &parent_process_id)\n      || !ParseNaturalNumber(fields[4], &write_handle_as_size_t)\n      || !ParseNaturalNumber(fields[5], &event_handle_as_size_t)) {\n    DeathTestAbort(\"Bad --gtest_internal_run_death_test flag: \" +\n                   GTEST_FLAG(internal_run_death_test));\n  }\n  write_fd = GetStatusFileDescriptor(parent_process_id,\n                                     write_handle_as_size_t,\n                                     event_handle_as_size_t);\n\n# elif GTEST_OS_FUCHSIA\n\n  if (fields.size() != 3\n      || !ParseNaturalNumber(fields[1], &line)\n      || !ParseNaturalNumber(fields[2], &index)) {\n    DeathTestAbort(\"Bad --gtest_internal_run_death_test flag: \"\n        + GTEST_FLAG(internal_run_death_test));\n  }\n\n# else\n\n  if (fields.size() != 4\n      || !ParseNaturalNumber(fields[1], &line)\n      || !ParseNaturalNumber(fields[2], &index)\n      || !ParseNaturalNumber(fields[3], &write_fd)) {\n    DeathTestAbort(\"Bad --gtest_internal_run_death_test flag: \"\n        + GTEST_FLAG(internal_run_death_test));\n  }\n\n# endif  // GTEST_OS_WINDOWS\n\n  return new InternalRunDeathTestFlag(fields[0], line, index, write_fd);\n}\n\n}  // namespace internal\n\n#endif  // GTEST_HAS_DEATH_TEST\n\n}  // namespace testing\n"
  },
  {
    "path": "test/gtest/src/gtest-filepath.cc",
    "content": "// Copyright 2008, Google Inc.\n// All rights reserved.\n//\n// Redistribution and use in source and binary forms, with or without\n// modification, are permitted provided that the following conditions are\n// met:\n//\n//     * Redistributions of source code must retain the above copyright\n// notice, this list of conditions and the following disclaimer.\n//     * Redistributions in binary form must reproduce the above\n// copyright notice, this list of conditions and the following disclaimer\n// in the documentation and/or other materials provided with the\n// distribution.\n//     * Neither the name of Google Inc. nor the names of its\n// contributors may be used to endorse or promote products derived from\n// this software without specific prior written permission.\n//\n// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n// \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n#include \"gtest/internal/gtest-filepath.h\"\n\n#include <stdlib.h>\n#include \"gtest/internal/gtest-port.h\"\n#include \"gtest/gtest-message.h\"\n\n#if GTEST_OS_WINDOWS_MOBILE\n# include <windows.h>\n#elif GTEST_OS_WINDOWS\n# include <direct.h>\n# include <io.h>\n#else\n# include <limits.h>\n# include <climits>  // Some Linux distributions define PATH_MAX here.\n#endif  // GTEST_OS_WINDOWS_MOBILE\n\n#include \"gtest/internal/gtest-string.h\"\n\n#if GTEST_OS_WINDOWS\n# define GTEST_PATH_MAX_ _MAX_PATH\n#elif defined(PATH_MAX)\n# define GTEST_PATH_MAX_ PATH_MAX\n#elif defined(_XOPEN_PATH_MAX)\n# define GTEST_PATH_MAX_ _XOPEN_PATH_MAX\n#else\n# define GTEST_PATH_MAX_ _POSIX_PATH_MAX\n#endif  // GTEST_OS_WINDOWS\n\nnamespace testing {\nnamespace internal {\n\n#if GTEST_OS_WINDOWS\n// On Windows, '\\\\' is the standard path separator, but many tools and the\n// Windows API also accept '/' as an alternate path separator. Unless otherwise\n// noted, a file path can contain either kind of path separators, or a mixture\n// of them.\nconst char kPathSeparator = '\\\\';\nconst char kAlternatePathSeparator = '/';\nconst char kAlternatePathSeparatorString[] = \"/\";\n# if GTEST_OS_WINDOWS_MOBILE\n// Windows CE doesn't have a current directory. You should not use\n// the current directory in tests on Windows CE, but this at least\n// provides a reasonable fallback.\nconst char kCurrentDirectoryString[] = \"\\\\\";\n// Windows CE doesn't define INVALID_FILE_ATTRIBUTES\nconst DWORD kInvalidFileAttributes = 0xffffffff;\n# else\nconst char kCurrentDirectoryString[] = \".\\\\\";\n# endif  // GTEST_OS_WINDOWS_MOBILE\n#else\nconst char kPathSeparator = '/';\nconst char kCurrentDirectoryString[] = \"./\";\n#endif  // GTEST_OS_WINDOWS\n\n// Returns whether the given character is a valid path separator.\nstatic bool IsPathSeparator(char c) {\n#if GTEST_HAS_ALT_PATH_SEP_\n  return (c == kPathSeparator) || (c == kAlternatePathSeparator);\n#else\n  return c == kPathSeparator;\n#endif\n}\n\n// Returns the current working directory, or \"\" if unsuccessful.\nFilePath FilePath::GetCurrentDir() {\n#if GTEST_OS_WINDOWS_MOBILE || GTEST_OS_WINDOWS_PHONE ||         \\\n    GTEST_OS_WINDOWS_RT || GTEST_OS_ESP8266 || GTEST_OS_ESP32 || \\\n    GTEST_OS_XTENSA\n  // These platforms do not have a current directory, so we just return\n  // something reasonable.\n  return FilePath(kCurrentDirectoryString);\n#elif GTEST_OS_WINDOWS\n  char cwd[GTEST_PATH_MAX_ + 1] = { '\\0' };\n  return FilePath(_getcwd(cwd, sizeof(cwd)) == nullptr ? \"\" : cwd);\n#else\n  char cwd[GTEST_PATH_MAX_ + 1] = { '\\0' };\n  char* result = getcwd(cwd, sizeof(cwd));\n# if GTEST_OS_NACL\n  // getcwd will likely fail in NaCl due to the sandbox, so return something\n  // reasonable. The user may have provided a shim implementation for getcwd,\n  // however, so fallback only when failure is detected.\n  return FilePath(result == nullptr ? kCurrentDirectoryString : cwd);\n# endif  // GTEST_OS_NACL\n  return FilePath(result == nullptr ? \"\" : cwd);\n#endif  // GTEST_OS_WINDOWS_MOBILE\n}\n\n// Returns a copy of the FilePath with the case-insensitive extension removed.\n// Example: FilePath(\"dir/file.exe\").RemoveExtension(\"EXE\") returns\n// FilePath(\"dir/file\"). If a case-insensitive extension is not\n// found, returns a copy of the original FilePath.\nFilePath FilePath::RemoveExtension(const char* extension) const {\n  const std::string dot_extension = std::string(\".\") + extension;\n  if (String::EndsWithCaseInsensitive(pathname_, dot_extension)) {\n    return FilePath(pathname_.substr(\n        0, pathname_.length() - dot_extension.length()));\n  }\n  return *this;\n}\n\n// Returns a pointer to the last occurrence of a valid path separator in\n// the FilePath. On Windows, for example, both '/' and '\\' are valid path\n// separators. Returns NULL if no path separator was found.\nconst char* FilePath::FindLastPathSeparator() const {\n  const char* const last_sep = strrchr(c_str(), kPathSeparator);\n#if GTEST_HAS_ALT_PATH_SEP_\n  const char* const last_alt_sep = strrchr(c_str(), kAlternatePathSeparator);\n  // Comparing two pointers of which only one is NULL is undefined.\n  if (last_alt_sep != nullptr &&\n      (last_sep == nullptr || last_alt_sep > last_sep)) {\n    return last_alt_sep;\n  }\n#endif\n  return last_sep;\n}\n\n// Returns a copy of the FilePath with the directory part removed.\n// Example: FilePath(\"path/to/file\").RemoveDirectoryName() returns\n// FilePath(\"file\"). If there is no directory part (\"just_a_file\"), it returns\n// the FilePath unmodified. If there is no file part (\"just_a_dir/\") it\n// returns an empty FilePath (\"\").\n// On Windows platform, '\\' is the path separator, otherwise it is '/'.\nFilePath FilePath::RemoveDirectoryName() const {\n  const char* const last_sep = FindLastPathSeparator();\n  return last_sep ? FilePath(last_sep + 1) : *this;\n}\n\n// RemoveFileName returns the directory path with the filename removed.\n// Example: FilePath(\"path/to/file\").RemoveFileName() returns \"path/to/\".\n// If the FilePath is \"a_file\" or \"/a_file\", RemoveFileName returns\n// FilePath(\"./\") or, on Windows, FilePath(\".\\\\\"). If the filepath does\n// not have a file, like \"just/a/dir/\", it returns the FilePath unmodified.\n// On Windows platform, '\\' is the path separator, otherwise it is '/'.\nFilePath FilePath::RemoveFileName() const {\n  const char* const last_sep = FindLastPathSeparator();\n  std::string dir;\n  if (last_sep) {\n    dir = std::string(c_str(), static_cast<size_t>(last_sep + 1 - c_str()));\n  } else {\n    dir = kCurrentDirectoryString;\n  }\n  return FilePath(dir);\n}\n\n// Helper functions for naming files in a directory for xml output.\n\n// Given directory = \"dir\", base_name = \"test\", number = 0,\n// extension = \"xml\", returns \"dir/test.xml\". If number is greater\n// than zero (e.g., 12), returns \"dir/test_12.xml\".\n// On Windows platform, uses \\ as the separator rather than /.\nFilePath FilePath::MakeFileName(const FilePath& directory,\n                                const FilePath& base_name,\n                                int number,\n                                const char* extension) {\n  std::string file;\n  if (number == 0) {\n    file = base_name.string() + \".\" + extension;\n  } else {\n    file = base_name.string() + \"_\" + StreamableToString(number)\n        + \".\" + extension;\n  }\n  return ConcatPaths(directory, FilePath(file));\n}\n\n// Given directory = \"dir\", relative_path = \"test.xml\", returns \"dir/test.xml\".\n// On Windows, uses \\ as the separator rather than /.\nFilePath FilePath::ConcatPaths(const FilePath& directory,\n                               const FilePath& relative_path) {\n  if (directory.IsEmpty())\n    return relative_path;\n  const FilePath dir(directory.RemoveTrailingPathSeparator());\n  return FilePath(dir.string() + kPathSeparator + relative_path.string());\n}\n\n// Returns true if pathname describes something findable in the file-system,\n// either a file, directory, or whatever.\nbool FilePath::FileOrDirectoryExists() const {\n#if GTEST_OS_WINDOWS_MOBILE\n  LPCWSTR unicode = String::AnsiToUtf16(pathname_.c_str());\n  const DWORD attributes = GetFileAttributes(unicode);\n  delete [] unicode;\n  return attributes != kInvalidFileAttributes;\n#else\n  posix::StatStruct file_stat{};\n  return posix::Stat(pathname_.c_str(), &file_stat) == 0;\n#endif  // GTEST_OS_WINDOWS_MOBILE\n}\n\n// Returns true if pathname describes a directory in the file-system\n// that exists.\nbool FilePath::DirectoryExists() const {\n  bool result = false;\n#if GTEST_OS_WINDOWS\n  // Don't strip off trailing separator if path is a root directory on\n  // Windows (like \"C:\\\\\").\n  const FilePath& path(IsRootDirectory() ? *this :\n                                           RemoveTrailingPathSeparator());\n#else\n  const FilePath& path(*this);\n#endif\n\n#if GTEST_OS_WINDOWS_MOBILE\n  LPCWSTR unicode = String::AnsiToUtf16(path.c_str());\n  const DWORD attributes = GetFileAttributes(unicode);\n  delete [] unicode;\n  if ((attributes != kInvalidFileAttributes) &&\n      (attributes & FILE_ATTRIBUTE_DIRECTORY)) {\n    result = true;\n  }\n#else\n  posix::StatStruct file_stat{};\n  result = posix::Stat(path.c_str(), &file_stat) == 0 &&\n      posix::IsDir(file_stat);\n#endif  // GTEST_OS_WINDOWS_MOBILE\n\n  return result;\n}\n\n// Returns true if pathname describes a root directory. (Windows has one\n// root directory per disk drive.)\nbool FilePath::IsRootDirectory() const {\n#if GTEST_OS_WINDOWS\n  return pathname_.length() == 3 && IsAbsolutePath();\n#else\n  return pathname_.length() == 1 && IsPathSeparator(pathname_.c_str()[0]);\n#endif\n}\n\n// Returns true if pathname describes an absolute path.\nbool FilePath::IsAbsolutePath() const {\n  const char* const name = pathname_.c_str();\n#if GTEST_OS_WINDOWS\n  return pathname_.length() >= 3 &&\n     ((name[0] >= 'a' && name[0] <= 'z') ||\n      (name[0] >= 'A' && name[0] <= 'Z')) &&\n     name[1] == ':' &&\n     IsPathSeparator(name[2]);\n#else\n  return IsPathSeparator(name[0]);\n#endif\n}\n\n// Returns a pathname for a file that does not currently exist. The pathname\n// will be directory/base_name.extension or\n// directory/base_name_<number>.extension if directory/base_name.extension\n// already exists. The number will be incremented until a pathname is found\n// that does not already exist.\n// Examples: 'dir/foo_test.xml' or 'dir/foo_test_1.xml'.\n// There could be a race condition if two or more processes are calling this\n// function at the same time -- they could both pick the same filename.\nFilePath FilePath::GenerateUniqueFileName(const FilePath& directory,\n                                          const FilePath& base_name,\n                                          const char* extension) {\n  FilePath full_pathname;\n  int number = 0;\n  do {\n    full_pathname.Set(MakeFileName(directory, base_name, number++, extension));\n  } while (full_pathname.FileOrDirectoryExists());\n  return full_pathname;\n}\n\n// Returns true if FilePath ends with a path separator, which indicates that\n// it is intended to represent a directory. Returns false otherwise.\n// This does NOT check that a directory (or file) actually exists.\nbool FilePath::IsDirectory() const {\n  return !pathname_.empty() &&\n         IsPathSeparator(pathname_.c_str()[pathname_.length() - 1]);\n}\n\n// Create directories so that path exists. Returns true if successful or if\n// the directories already exist; returns false if unable to create directories\n// for any reason.\nbool FilePath::CreateDirectoriesRecursively() const {\n  if (!this->IsDirectory()) {\n    return false;\n  }\n\n  if (pathname_.length() == 0 || this->DirectoryExists()) {\n    return true;\n  }\n\n  const FilePath parent(this->RemoveTrailingPathSeparator().RemoveFileName());\n  return parent.CreateDirectoriesRecursively() && this->CreateFolder();\n}\n\n// Create the directory so that path exists. Returns true if successful or\n// if the directory already exists; returns false if unable to create the\n// directory for any reason, including if the parent directory does not\n// exist. Not named \"CreateDirectory\" because that's a macro on Windows.\nbool FilePath::CreateFolder() const {\n#if GTEST_OS_WINDOWS_MOBILE\n  FilePath removed_sep(this->RemoveTrailingPathSeparator());\n  LPCWSTR unicode = String::AnsiToUtf16(removed_sep.c_str());\n  int result = CreateDirectory(unicode, nullptr) ? 0 : -1;\n  delete [] unicode;\n#elif GTEST_OS_WINDOWS\n  int result = _mkdir(pathname_.c_str());\n#elif GTEST_OS_ESP8266 || GTEST_OS_XTENSA\n  // do nothing\n  int result = 0;\n#else\n  int result = mkdir(pathname_.c_str(), 0777);\n#endif  // GTEST_OS_WINDOWS_MOBILE\n\n  if (result == -1) {\n    return this->DirectoryExists();  // An error is OK if the directory exists.\n  }\n  return true;  // No error.\n}\n\n// If input name has a trailing separator character, remove it and return the\n// name, otherwise return the name string unmodified.\n// On Windows platform, uses \\ as the separator, other platforms use /.\nFilePath FilePath::RemoveTrailingPathSeparator() const {\n  return IsDirectory()\n      ? FilePath(pathname_.substr(0, pathname_.length() - 1))\n      : *this;\n}\n\n// Removes any redundant separators that might be in the pathname.\n// For example, \"bar///foo\" becomes \"bar/foo\". Does not eliminate other\n// redundancies that might be in a pathname involving \".\" or \"..\".\nvoid FilePath::Normalize() {\n  auto out = pathname_.begin();\n\n  for (const char character : pathname_) {\n    if (!IsPathSeparator(character)) {\n      *(out++) = character;\n    } else if (out == pathname_.begin() || *std::prev(out) != kPathSeparator) {\n      *(out++) = kPathSeparator;\n    } else {\n      continue;\n    }\n  }\n\n  pathname_.erase(out, pathname_.end());\n}\n\n}  // namespace internal\n}  // namespace testing\n"
  },
  {
    "path": "test/gtest/src/gtest-internal-inl.h",
    "content": "// Copyright 2005, Google Inc.\n// All rights reserved.\n//\n// Redistribution and use in source and binary forms, with or without\n// modification, are permitted provided that the following conditions are\n// met:\n//\n//     * Redistributions of source code must retain the above copyright\n// notice, this list of conditions and the following disclaimer.\n//     * Redistributions in binary form must reproduce the above\n// copyright notice, this list of conditions and the following disclaimer\n// in the documentation and/or other materials provided with the\n// distribution.\n//     * Neither the name of Google Inc. nor the names of its\n// contributors may be used to endorse or promote products derived from\n// this software without specific prior written permission.\n//\n// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n// \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n// Utility functions and classes used by the Google C++ testing framework.//\n// This file contains purely Google Test's internal implementation.  Please\n// DO NOT #INCLUDE IT IN A USER PROGRAM.\n\n#ifndef GOOGLETEST_SRC_GTEST_INTERNAL_INL_H_\n#define GOOGLETEST_SRC_GTEST_INTERNAL_INL_H_\n\n#ifndef _WIN32_WCE\n# include <errno.h>\n#endif  // !_WIN32_WCE\n#include <stddef.h>\n#include <stdlib.h>  // For strtoll/_strtoul64/malloc/free.\n#include <string.h>  // For memmove.\n\n#include <algorithm>\n#include <cstdint>\n#include <memory>\n#include <string>\n#include <vector>\n\n#include \"gtest/internal/gtest-port.h\"\n\n#if GTEST_CAN_STREAM_RESULTS_\n# include <arpa/inet.h>  // NOLINT\n# include <netdb.h>  // NOLINT\n#endif\n\n#if GTEST_OS_WINDOWS\n# include <windows.h>  // NOLINT\n#endif  // GTEST_OS_WINDOWS\n\n#include \"gtest/gtest.h\"\n#include \"gtest/gtest-spi.h\"\n\nGTEST_DISABLE_MSC_WARNINGS_PUSH_(4251 \\\n/* class A needs to have dll-interface to be used by clients of class B */)\n\nnamespace testing {\n\n// Declares the flags.\n//\n// We don't want the users to modify this flag in the code, but want\n// Google Test's own unit tests to be able to access it. Therefore we\n// declare it here as opposed to in gtest.h.\nGTEST_DECLARE_bool_(death_test_use_fork);\n\nnamespace internal {\n\n// The value of GetTestTypeId() as seen from within the Google Test\n// library.  This is solely for testing GetTestTypeId().\nGTEST_API_ extern const TypeId kTestTypeIdInGoogleTest;\n\n// Names of the flags (needed for parsing Google Test flags).\nconst char kAlsoRunDisabledTestsFlag[] = \"also_run_disabled_tests\";\nconst char kBreakOnFailureFlag[] = \"break_on_failure\";\nconst char kCatchExceptionsFlag[] = \"catch_exceptions\";\nconst char kColorFlag[] = \"color\";\nconst char kFailFast[] = \"fail_fast\";\nconst char kFilterFlag[] = \"filter\";\nconst char kListTestsFlag[] = \"list_tests\";\nconst char kOutputFlag[] = \"output\";\nconst char kBriefFlag[] = \"brief\";\nconst char kPrintTimeFlag[] = \"print_time\";\nconst char kPrintUTF8Flag[] = \"print_utf8\";\nconst char kRandomSeedFlag[] = \"random_seed\";\nconst char kRepeatFlag[] = \"repeat\";\nconst char kShuffleFlag[] = \"shuffle\";\nconst char kStackTraceDepthFlag[] = \"stack_trace_depth\";\nconst char kStreamResultToFlag[] = \"stream_result_to\";\nconst char kThrowOnFailureFlag[] = \"throw_on_failure\";\nconst char kFlagfileFlag[] = \"flagfile\";\n\n// A valid random seed must be in [1, kMaxRandomSeed].\nconst int kMaxRandomSeed = 99999;\n\n// g_help_flag is true if and only if the --help flag or an equivalent form\n// is specified on the command line.\nGTEST_API_ extern bool g_help_flag;\n\n// Returns the current time in milliseconds.\nGTEST_API_ TimeInMillis GetTimeInMillis();\n\n// Returns true if and only if Google Test should use colors in the output.\nGTEST_API_ bool ShouldUseColor(bool stdout_is_tty);\n\n// Formats the given time in milliseconds as seconds.\nGTEST_API_ std::string FormatTimeInMillisAsSeconds(TimeInMillis ms);\n\n// Converts the given time in milliseconds to a date string in the ISO 8601\n// format, without the timezone information.  N.B.: due to the use the\n// non-reentrant localtime() function, this function is not thread safe.  Do\n// not use it in any code that can be called from multiple threads.\nGTEST_API_ std::string FormatEpochTimeInMillisAsIso8601(TimeInMillis ms);\n\n// Parses a string for an Int32 flag, in the form of \"--flag=value\".\n//\n// On success, stores the value of the flag in *value, and returns\n// true.  On failure, returns false without changing *value.\nGTEST_API_ bool ParseInt32Flag(\n    const char* str, const char* flag, int32_t* value);\n\n// Returns a random seed in range [1, kMaxRandomSeed] based on the\n// given --gtest_random_seed flag value.\ninline int GetRandomSeedFromFlag(int32_t random_seed_flag) {\n  const unsigned int raw_seed = (random_seed_flag == 0) ?\n      static_cast<unsigned int>(GetTimeInMillis()) :\n      static_cast<unsigned int>(random_seed_flag);\n\n  // Normalizes the actual seed to range [1, kMaxRandomSeed] such that\n  // it's easy to type.\n  const int normalized_seed =\n      static_cast<int>((raw_seed - 1U) %\n                       static_cast<unsigned int>(kMaxRandomSeed)) + 1;\n  return normalized_seed;\n}\n\n// Returns the first valid random seed after 'seed'.  The behavior is\n// undefined if 'seed' is invalid.  The seed after kMaxRandomSeed is\n// considered to be 1.\ninline int GetNextRandomSeed(int seed) {\n  GTEST_CHECK_(1 <= seed && seed <= kMaxRandomSeed)\n      << \"Invalid random seed \" << seed << \" - must be in [1, \"\n      << kMaxRandomSeed << \"].\";\n  const int next_seed = seed + 1;\n  return (next_seed > kMaxRandomSeed) ? 1 : next_seed;\n}\n\n// This class saves the values of all Google Test flags in its c'tor, and\n// restores them in its d'tor.\nclass GTestFlagSaver {\n public:\n  // The c'tor.\n  GTestFlagSaver() {\n    also_run_disabled_tests_ = GTEST_FLAG(also_run_disabled_tests);\n    break_on_failure_ = GTEST_FLAG(break_on_failure);\n    catch_exceptions_ = GTEST_FLAG(catch_exceptions);\n    color_ = GTEST_FLAG(color);\n    death_test_style_ = GTEST_FLAG(death_test_style);\n    death_test_use_fork_ = GTEST_FLAG(death_test_use_fork);\n    fail_fast_ = GTEST_FLAG(fail_fast);\n    filter_ = GTEST_FLAG(filter);\n    internal_run_death_test_ = GTEST_FLAG(internal_run_death_test);\n    list_tests_ = GTEST_FLAG(list_tests);\n    output_ = GTEST_FLAG(output);\n    brief_ = GTEST_FLAG(brief);\n    print_time_ = GTEST_FLAG(print_time);\n    print_utf8_ = GTEST_FLAG(print_utf8);\n    random_seed_ = GTEST_FLAG(random_seed);\n    repeat_ = GTEST_FLAG(repeat);\n    shuffle_ = GTEST_FLAG(shuffle);\n    stack_trace_depth_ = GTEST_FLAG(stack_trace_depth);\n    stream_result_to_ = GTEST_FLAG(stream_result_to);\n    throw_on_failure_ = GTEST_FLAG(throw_on_failure);\n  }\n\n  // The d'tor is not virtual.  DO NOT INHERIT FROM THIS CLASS.\n  ~GTestFlagSaver() {\n    GTEST_FLAG(also_run_disabled_tests) = also_run_disabled_tests_;\n    GTEST_FLAG(break_on_failure) = break_on_failure_;\n    GTEST_FLAG(catch_exceptions) = catch_exceptions_;\n    GTEST_FLAG(color) = color_;\n    GTEST_FLAG(death_test_style) = death_test_style_;\n    GTEST_FLAG(death_test_use_fork) = death_test_use_fork_;\n    GTEST_FLAG(filter) = filter_;\n    GTEST_FLAG(fail_fast) = fail_fast_;\n    GTEST_FLAG(internal_run_death_test) = internal_run_death_test_;\n    GTEST_FLAG(list_tests) = list_tests_;\n    GTEST_FLAG(output) = output_;\n    GTEST_FLAG(brief) = brief_;\n    GTEST_FLAG(print_time) = print_time_;\n    GTEST_FLAG(print_utf8) = print_utf8_;\n    GTEST_FLAG(random_seed) = random_seed_;\n    GTEST_FLAG(repeat) = repeat_;\n    GTEST_FLAG(shuffle) = shuffle_;\n    GTEST_FLAG(stack_trace_depth) = stack_trace_depth_;\n    GTEST_FLAG(stream_result_to) = stream_result_to_;\n    GTEST_FLAG(throw_on_failure) = throw_on_failure_;\n  }\n\n private:\n  // Fields for saving the original values of flags.\n  bool also_run_disabled_tests_;\n  bool break_on_failure_;\n  bool catch_exceptions_;\n  std::string color_;\n  std::string death_test_style_;\n  bool death_test_use_fork_;\n  bool fail_fast_;\n  std::string filter_;\n  std::string internal_run_death_test_;\n  bool list_tests_;\n  std::string output_;\n  bool brief_;\n  bool print_time_;\n  bool print_utf8_;\n  int32_t random_seed_;\n  int32_t repeat_;\n  bool shuffle_;\n  int32_t stack_trace_depth_;\n  std::string stream_result_to_;\n  bool throw_on_failure_;\n} GTEST_ATTRIBUTE_UNUSED_;\n\n// Converts a Unicode code point to a narrow string in UTF-8 encoding.\n// code_point parameter is of type UInt32 because wchar_t may not be\n// wide enough to contain a code point.\n// If the code_point is not a valid Unicode code point\n// (i.e. outside of Unicode range U+0 to U+10FFFF) it will be converted\n// to \"(Invalid Unicode 0xXXXXXXXX)\".\nGTEST_API_ std::string CodePointToUtf8(uint32_t code_point);\n\n// Converts a wide string to a narrow string in UTF-8 encoding.\n// The wide string is assumed to have the following encoding:\n//   UTF-16 if sizeof(wchar_t) == 2 (on Windows, Cygwin)\n//   UTF-32 if sizeof(wchar_t) == 4 (on Linux)\n// Parameter str points to a null-terminated wide string.\n// Parameter num_chars may additionally limit the number\n// of wchar_t characters processed. -1 is used when the entire string\n// should be processed.\n// If the string contains code points that are not valid Unicode code points\n// (i.e. outside of Unicode range U+0 to U+10FFFF) they will be output\n// as '(Invalid Unicode 0xXXXXXXXX)'. If the string is in UTF16 encoding\n// and contains invalid UTF-16 surrogate pairs, values in those pairs\n// will be encoded as individual Unicode characters from Basic Normal Plane.\nGTEST_API_ std::string WideStringToUtf8(const wchar_t* str, int num_chars);\n\n// Reads the GTEST_SHARD_STATUS_FILE environment variable, and creates the file\n// if the variable is present. If a file already exists at this location, this\n// function will write over it. If the variable is present, but the file cannot\n// be created, prints an error and exits.\nvoid WriteToShardStatusFileIfNeeded();\n\n// Checks whether sharding is enabled by examining the relevant\n// environment variable values. If the variables are present,\n// but inconsistent (e.g., shard_index >= total_shards), prints\n// an error and exits. If in_subprocess_for_death_test, sharding is\n// disabled because it must only be applied to the original test\n// process. Otherwise, we could filter out death tests we intended to execute.\nGTEST_API_ bool ShouldShard(const char* total_shards_str,\n                            const char* shard_index_str,\n                            bool in_subprocess_for_death_test);\n\n// Parses the environment variable var as a 32-bit integer. If it is unset,\n// returns default_val. If it is not a 32-bit integer, prints an error and\n// and aborts.\nGTEST_API_ int32_t Int32FromEnvOrDie(const char* env_var, int32_t default_val);\n\n// Given the total number of shards, the shard index, and the test id,\n// returns true if and only if the test should be run on this shard. The test id\n// is some arbitrary but unique non-negative integer assigned to each test\n// method. Assumes that 0 <= shard_index < total_shards.\nGTEST_API_ bool ShouldRunTestOnShard(\n    int total_shards, int shard_index, int test_id);\n\n// STL container utilities.\n\n// Returns the number of elements in the given container that satisfy\n// the given predicate.\ntemplate <class Container, typename Predicate>\ninline int CountIf(const Container& c, Predicate predicate) {\n  // Implemented as an explicit loop since std::count_if() in libCstd on\n  // Solaris has a non-standard signature.\n  int count = 0;\n  for (typename Container::const_iterator it = c.begin(); it != c.end(); ++it) {\n    if (predicate(*it))\n      ++count;\n  }\n  return count;\n}\n\n// Applies a function/functor to each element in the container.\ntemplate <class Container, typename Functor>\nvoid ForEach(const Container& c, Functor functor) {\n  std::for_each(c.begin(), c.end(), functor);\n}\n\n// Returns the i-th element of the vector, or default_value if i is not\n// in range [0, v.size()).\ntemplate <typename E>\ninline E GetElementOr(const std::vector<E>& v, int i, E default_value) {\n  return (i < 0 || i >= static_cast<int>(v.size())) ? default_value\n                                                    : v[static_cast<size_t>(i)];\n}\n\n// Performs an in-place shuffle of a range of the vector's elements.\n// 'begin' and 'end' are element indices as an STL-style range;\n// i.e. [begin, end) are shuffled, where 'end' == size() means to\n// shuffle to the end of the vector.\ntemplate <typename E>\nvoid ShuffleRange(internal::Random* random, int begin, int end,\n                  std::vector<E>* v) {\n  const int size = static_cast<int>(v->size());\n  GTEST_CHECK_(0 <= begin && begin <= size)\n      << \"Invalid shuffle range start \" << begin << \": must be in range [0, \"\n      << size << \"].\";\n  GTEST_CHECK_(begin <= end && end <= size)\n      << \"Invalid shuffle range finish \" << end << \": must be in range [\"\n      << begin << \", \" << size << \"].\";\n\n  // Fisher-Yates shuffle, from\n  // http://en.wikipedia.org/wiki/Fisher-Yates_shuffle\n  for (int range_width = end - begin; range_width >= 2; range_width--) {\n    const int last_in_range = begin + range_width - 1;\n    const int selected =\n        begin +\n        static_cast<int>(random->Generate(static_cast<uint32_t>(range_width)));\n    std::swap((*v)[static_cast<size_t>(selected)],\n              (*v)[static_cast<size_t>(last_in_range)]);\n  }\n}\n\n// Performs an in-place shuffle of the vector's elements.\ntemplate <typename E>\ninline void Shuffle(internal::Random* random, std::vector<E>* v) {\n  ShuffleRange(random, 0, static_cast<int>(v->size()), v);\n}\n\n// A function for deleting an object.  Handy for being used as a\n// functor.\ntemplate <typename T>\nstatic void Delete(T* x) {\n  delete x;\n}\n\n// A predicate that checks the key of a TestProperty against a known key.\n//\n// TestPropertyKeyIs is copyable.\nclass TestPropertyKeyIs {\n public:\n  // Constructor.\n  //\n  // TestPropertyKeyIs has NO default constructor.\n  explicit TestPropertyKeyIs(const std::string& key) : key_(key) {}\n\n  // Returns true if and only if the test name of test property matches on key_.\n  bool operator()(const TestProperty& test_property) const {\n    return test_property.key() == key_;\n  }\n\n private:\n  std::string key_;\n};\n\n// Class UnitTestOptions.\n//\n// This class contains functions for processing options the user\n// specifies when running the tests.  It has only static members.\n//\n// In most cases, the user can specify an option using either an\n// environment variable or a command line flag.  E.g. you can set the\n// test filter using either GTEST_FILTER or --gtest_filter.  If both\n// the variable and the flag are present, the latter overrides the\n// former.\nclass GTEST_API_ UnitTestOptions {\n public:\n  // Functions for processing the gtest_output flag.\n\n  // Returns the output format, or \"\" for normal printed output.\n  static std::string GetOutputFormat();\n\n  // Returns the absolute path of the requested output file, or the\n  // default (test_detail.xml in the original working directory) if\n  // none was explicitly specified.\n  static std::string GetAbsolutePathToOutputFile();\n\n  // Functions for processing the gtest_filter flag.\n\n  // Returns true if and only if the user-specified filter matches the test\n  // suite name and the test name.\n  static bool FilterMatchesTest(const std::string& test_suite_name,\n                                const std::string& test_name);\n\n#if GTEST_OS_WINDOWS\n  // Function for supporting the gtest_catch_exception flag.\n\n  // Returns EXCEPTION_EXECUTE_HANDLER if Google Test should handle the\n  // given SEH exception, or EXCEPTION_CONTINUE_SEARCH otherwise.\n  // This function is useful as an __except condition.\n  static int GTestShouldProcessSEH(DWORD exception_code);\n#endif  // GTEST_OS_WINDOWS\n\n  // Returns true if \"name\" matches the ':' separated list of glob-style\n  // filters in \"filter\".\n  static bool MatchesFilter(const std::string& name, const char* filter);\n};\n\n// Returns the current application's name, removing directory path if that\n// is present.  Used by UnitTestOptions::GetOutputFile.\nGTEST_API_ FilePath GetCurrentExecutableName();\n\n// The role interface for getting the OS stack trace as a string.\nclass OsStackTraceGetterInterface {\n public:\n  OsStackTraceGetterInterface() {}\n  virtual ~OsStackTraceGetterInterface() {}\n\n  // Returns the current OS stack trace as an std::string.  Parameters:\n  //\n  //   max_depth  - the maximum number of stack frames to be included\n  //                in the trace.\n  //   skip_count - the number of top frames to be skipped; doesn't count\n  //                against max_depth.\n  virtual std::string CurrentStackTrace(int max_depth, int skip_count) = 0;\n\n  // UponLeavingGTest() should be called immediately before Google Test calls\n  // user code. It saves some information about the current stack that\n  // CurrentStackTrace() will use to find and hide Google Test stack frames.\n  virtual void UponLeavingGTest() = 0;\n\n  // This string is inserted in place of stack frames that are part of\n  // Google Test's implementation.\n  static const char* const kElidedFramesMarker;\n\n private:\n  GTEST_DISALLOW_COPY_AND_ASSIGN_(OsStackTraceGetterInterface);\n};\n\n// A working implementation of the OsStackTraceGetterInterface interface.\nclass OsStackTraceGetter : public OsStackTraceGetterInterface {\n public:\n  OsStackTraceGetter() {}\n\n  std::string CurrentStackTrace(int max_depth, int skip_count) override;\n  void UponLeavingGTest() override;\n\n private:\n#if GTEST_HAS_ABSL\n  Mutex mutex_;  // Protects all internal state.\n\n  // We save the stack frame below the frame that calls user code.\n  // We do this because the address of the frame immediately below\n  // the user code changes between the call to UponLeavingGTest()\n  // and any calls to the stack trace code from within the user code.\n  void* caller_frame_ = nullptr;\n#endif  // GTEST_HAS_ABSL\n\n  GTEST_DISALLOW_COPY_AND_ASSIGN_(OsStackTraceGetter);\n};\n\n// Information about a Google Test trace point.\nstruct TraceInfo {\n  const char* file;\n  int line;\n  std::string message;\n};\n\n// This is the default global test part result reporter used in UnitTestImpl.\n// This class should only be used by UnitTestImpl.\nclass DefaultGlobalTestPartResultReporter\n  : public TestPartResultReporterInterface {\n public:\n  explicit DefaultGlobalTestPartResultReporter(UnitTestImpl* unit_test);\n  // Implements the TestPartResultReporterInterface. Reports the test part\n  // result in the current test.\n  void ReportTestPartResult(const TestPartResult& result) override;\n\n private:\n  UnitTestImpl* const unit_test_;\n\n  GTEST_DISALLOW_COPY_AND_ASSIGN_(DefaultGlobalTestPartResultReporter);\n};\n\n// This is the default per thread test part result reporter used in\n// UnitTestImpl. This class should only be used by UnitTestImpl.\nclass DefaultPerThreadTestPartResultReporter\n    : public TestPartResultReporterInterface {\n public:\n  explicit DefaultPerThreadTestPartResultReporter(UnitTestImpl* unit_test);\n  // Implements the TestPartResultReporterInterface. The implementation just\n  // delegates to the current global test part result reporter of *unit_test_.\n  void ReportTestPartResult(const TestPartResult& result) override;\n\n private:\n  UnitTestImpl* const unit_test_;\n\n  GTEST_DISALLOW_COPY_AND_ASSIGN_(DefaultPerThreadTestPartResultReporter);\n};\n\n// The private implementation of the UnitTest class.  We don't protect\n// the methods under a mutex, as this class is not accessible by a\n// user and the UnitTest class that delegates work to this class does\n// proper locking.\nclass GTEST_API_ UnitTestImpl {\n public:\n  explicit UnitTestImpl(UnitTest* parent);\n  virtual ~UnitTestImpl();\n\n  // There are two different ways to register your own TestPartResultReporter.\n  // You can register your own repoter to listen either only for test results\n  // from the current thread or for results from all threads.\n  // By default, each per-thread test result repoter just passes a new\n  // TestPartResult to the global test result reporter, which registers the\n  // test part result for the currently running test.\n\n  // Returns the global test part result reporter.\n  TestPartResultReporterInterface* GetGlobalTestPartResultReporter();\n\n  // Sets the global test part result reporter.\n  void SetGlobalTestPartResultReporter(\n      TestPartResultReporterInterface* reporter);\n\n  // Returns the test part result reporter for the current thread.\n  TestPartResultReporterInterface* GetTestPartResultReporterForCurrentThread();\n\n  // Sets the test part result reporter for the current thread.\n  void SetTestPartResultReporterForCurrentThread(\n      TestPartResultReporterInterface* reporter);\n\n  // Gets the number of successful test suites.\n  int successful_test_suite_count() const;\n\n  // Gets the number of failed test suites.\n  int failed_test_suite_count() const;\n\n  // Gets the number of all test suites.\n  int total_test_suite_count() const;\n\n  // Gets the number of all test suites that contain at least one test\n  // that should run.\n  int test_suite_to_run_count() const;\n\n  // Gets the number of successful tests.\n  int successful_test_count() const;\n\n  // Gets the number of skipped tests.\n  int skipped_test_count() const;\n\n  // Gets the number of failed tests.\n  int failed_test_count() const;\n\n  // Gets the number of disabled tests that will be reported in the XML report.\n  int reportable_disabled_test_count() const;\n\n  // Gets the number of disabled tests.\n  int disabled_test_count() const;\n\n  // Gets the number of tests to be printed in the XML report.\n  int reportable_test_count() const;\n\n  // Gets the number of all tests.\n  int total_test_count() const;\n\n  // Gets the number of tests that should run.\n  int test_to_run_count() const;\n\n  // Gets the time of the test program start, in ms from the start of the\n  // UNIX epoch.\n  TimeInMillis start_timestamp() const { return start_timestamp_; }\n\n  // Gets the elapsed time, in milliseconds.\n  TimeInMillis elapsed_time() const { return elapsed_time_; }\n\n  // Returns true if and only if the unit test passed (i.e. all test suites\n  // passed).\n  bool Passed() const { return !Failed(); }\n\n  // Returns true if and only if the unit test failed (i.e. some test suite\n  // failed or something outside of all tests failed).\n  bool Failed() const {\n    return failed_test_suite_count() > 0 || ad_hoc_test_result()->Failed();\n  }\n\n  // Gets the i-th test suite among all the test suites. i can range from 0 to\n  // total_test_suite_count() - 1. If i is not in that range, returns NULL.\n  const TestSuite* GetTestSuite(int i) const {\n    const int index = GetElementOr(test_suite_indices_, i, -1);\n    return index < 0 ? nullptr : test_suites_[static_cast<size_t>(i)];\n  }\n\n  //  Legacy API is deprecated but still available\n#ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_\n  const TestCase* GetTestCase(int i) const { return GetTestSuite(i); }\n#endif  //  GTEST_REMOVE_LEGACY_TEST_CASEAPI_\n\n  // Gets the i-th test suite among all the test suites. i can range from 0 to\n  // total_test_suite_count() - 1. If i is not in that range, returns NULL.\n  TestSuite* GetMutableSuiteCase(int i) {\n    const int index = GetElementOr(test_suite_indices_, i, -1);\n    return index < 0 ? nullptr : test_suites_[static_cast<size_t>(index)];\n  }\n\n  // Provides access to the event listener list.\n  TestEventListeners* listeners() { return &listeners_; }\n\n  // Returns the TestResult for the test that's currently running, or\n  // the TestResult for the ad hoc test if no test is running.\n  TestResult* current_test_result();\n\n  // Returns the TestResult for the ad hoc test.\n  const TestResult* ad_hoc_test_result() const { return &ad_hoc_test_result_; }\n\n  // Sets the OS stack trace getter.\n  //\n  // Does nothing if the input and the current OS stack trace getter\n  // are the same; otherwise, deletes the old getter and makes the\n  // input the current getter.\n  void set_os_stack_trace_getter(OsStackTraceGetterInterface* getter);\n\n  // Returns the current OS stack trace getter if it is not NULL;\n  // otherwise, creates an OsStackTraceGetter, makes it the current\n  // getter, and returns it.\n  OsStackTraceGetterInterface* os_stack_trace_getter();\n\n  // Returns the current OS stack trace as an std::string.\n  //\n  // The maximum number of stack frames to be included is specified by\n  // the gtest_stack_trace_depth flag.  The skip_count parameter\n  // specifies the number of top frames to be skipped, which doesn't\n  // count against the number of frames to be included.\n  //\n  // For example, if Foo() calls Bar(), which in turn calls\n  // CurrentOsStackTraceExceptTop(1), Foo() will be included in the\n  // trace but Bar() and CurrentOsStackTraceExceptTop() won't.\n  std::string CurrentOsStackTraceExceptTop(int skip_count) GTEST_NO_INLINE_;\n\n  // Finds and returns a TestSuite with the given name.  If one doesn't\n  // exist, creates one and returns it.\n  //\n  // Arguments:\n  //\n  //   test_suite_name: name of the test suite\n  //   type_param:      the name of the test's type parameter, or NULL if\n  //                    this is not a typed or a type-parameterized test.\n  //   set_up_tc:       pointer to the function that sets up the test suite\n  //   tear_down_tc:    pointer to the function that tears down the test suite\n  TestSuite* GetTestSuite(const char* test_suite_name, const char* type_param,\n                          internal::SetUpTestSuiteFunc set_up_tc,\n                          internal::TearDownTestSuiteFunc tear_down_tc);\n\n//  Legacy API is deprecated but still available\n#ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_\n  TestCase* GetTestCase(const char* test_case_name, const char* type_param,\n                        internal::SetUpTestSuiteFunc set_up_tc,\n                        internal::TearDownTestSuiteFunc tear_down_tc) {\n    return GetTestSuite(test_case_name, type_param, set_up_tc, tear_down_tc);\n  }\n#endif  //  GTEST_REMOVE_LEGACY_TEST_CASEAPI_\n\n  // Adds a TestInfo to the unit test.\n  //\n  // Arguments:\n  //\n  //   set_up_tc:    pointer to the function that sets up the test suite\n  //   tear_down_tc: pointer to the function that tears down the test suite\n  //   test_info:    the TestInfo object\n  void AddTestInfo(internal::SetUpTestSuiteFunc set_up_tc,\n                   internal::TearDownTestSuiteFunc tear_down_tc,\n                   TestInfo* test_info) {\n#if GTEST_HAS_DEATH_TEST\n    // In order to support thread-safe death tests, we need to\n    // remember the original working directory when the test program\n    // was first invoked.  We cannot do this in RUN_ALL_TESTS(), as\n    // the user may have changed the current directory before calling\n    // RUN_ALL_TESTS().  Therefore we capture the current directory in\n    // AddTestInfo(), which is called to register a TEST or TEST_F\n    // before main() is reached.\n    if (original_working_dir_.IsEmpty()) {\n      original_working_dir_.Set(FilePath::GetCurrentDir());\n      GTEST_CHECK_(!original_working_dir_.IsEmpty())\n          << \"Failed to get the current working directory.\";\n    }\n#endif  // GTEST_HAS_DEATH_TEST\n\n    GetTestSuite(test_info->test_suite_name(), test_info->type_param(),\n                 set_up_tc, tear_down_tc)\n        ->AddTestInfo(test_info);\n  }\n\n  // Returns ParameterizedTestSuiteRegistry object used to keep track of\n  // value-parameterized tests and instantiate and register them.\n  internal::ParameterizedTestSuiteRegistry& parameterized_test_registry() {\n    return parameterized_test_registry_;\n  }\n\n  std::set<std::string>* ignored_parameterized_test_suites() {\n    return &ignored_parameterized_test_suites_;\n  }\n\n  // Returns TypeParameterizedTestSuiteRegistry object used to keep track of\n  // type-parameterized tests and instantiations of them.\n  internal::TypeParameterizedTestSuiteRegistry&\n  type_parameterized_test_registry() {\n    return type_parameterized_test_registry_;\n  }\n\n  // Sets the TestSuite object for the test that's currently running.\n  void set_current_test_suite(TestSuite* a_current_test_suite) {\n    current_test_suite_ = a_current_test_suite;\n  }\n\n  // Sets the TestInfo object for the test that's currently running.  If\n  // current_test_info is NULL, the assertion results will be stored in\n  // ad_hoc_test_result_.\n  void set_current_test_info(TestInfo* a_current_test_info) {\n    current_test_info_ = a_current_test_info;\n  }\n\n  // Registers all parameterized tests defined using TEST_P and\n  // INSTANTIATE_TEST_SUITE_P, creating regular tests for each test/parameter\n  // combination. This method can be called more then once; it has guards\n  // protecting from registering the tests more then once.  If\n  // value-parameterized tests are disabled, RegisterParameterizedTests is\n  // present but does nothing.\n  void RegisterParameterizedTests();\n\n  // Runs all tests in this UnitTest object, prints the result, and\n  // returns true if all tests are successful.  If any exception is\n  // thrown during a test, this test is considered to be failed, but\n  // the rest of the tests will still be run.\n  bool RunAllTests();\n\n  // Clears the results of all tests, except the ad hoc tests.\n  void ClearNonAdHocTestResult() {\n    ForEach(test_suites_, TestSuite::ClearTestSuiteResult);\n  }\n\n  // Clears the results of ad-hoc test assertions.\n  void ClearAdHocTestResult() {\n    ad_hoc_test_result_.Clear();\n  }\n\n  // Adds a TestProperty to the current TestResult object when invoked in a\n  // context of a test or a test suite, or to the global property set. If the\n  // result already contains a property with the same key, the value will be\n  // updated.\n  void RecordProperty(const TestProperty& test_property);\n\n  enum ReactionToSharding {\n    HONOR_SHARDING_PROTOCOL,\n    IGNORE_SHARDING_PROTOCOL\n  };\n\n  // Matches the full name of each test against the user-specified\n  // filter to decide whether the test should run, then records the\n  // result in each TestSuite and TestInfo object.\n  // If shard_tests == HONOR_SHARDING_PROTOCOL, further filters tests\n  // based on sharding variables in the environment.\n  // Returns the number of tests that should run.\n  int FilterTests(ReactionToSharding shard_tests);\n\n  // Prints the names of the tests matching the user-specified filter flag.\n  void ListTestsMatchingFilter();\n\n  const TestSuite* current_test_suite() const { return current_test_suite_; }\n  TestInfo* current_test_info() { return current_test_info_; }\n  const TestInfo* current_test_info() const { return current_test_info_; }\n\n  // Returns the vector of environments that need to be set-up/torn-down\n  // before/after the tests are run.\n  std::vector<Environment*>& environments() { return environments_; }\n\n  // Getters for the per-thread Google Test trace stack.\n  std::vector<TraceInfo>& gtest_trace_stack() {\n    return *(gtest_trace_stack_.pointer());\n  }\n  const std::vector<TraceInfo>& gtest_trace_stack() const {\n    return gtest_trace_stack_.get();\n  }\n\n#if GTEST_HAS_DEATH_TEST\n  void InitDeathTestSubprocessControlInfo() {\n    internal_run_death_test_flag_.reset(ParseInternalRunDeathTestFlag());\n  }\n  // Returns a pointer to the parsed --gtest_internal_run_death_test\n  // flag, or NULL if that flag was not specified.\n  // This information is useful only in a death test child process.\n  // Must not be called before a call to InitGoogleTest.\n  const InternalRunDeathTestFlag* internal_run_death_test_flag() const {\n    return internal_run_death_test_flag_.get();\n  }\n\n  // Returns a pointer to the current death test factory.\n  internal::DeathTestFactory* death_test_factory() {\n    return death_test_factory_.get();\n  }\n\n  void SuppressTestEventsIfInSubprocess();\n\n  friend class ReplaceDeathTestFactory;\n#endif  // GTEST_HAS_DEATH_TEST\n\n  // Initializes the event listener performing XML output as specified by\n  // UnitTestOptions. Must not be called before InitGoogleTest.\n  void ConfigureXmlOutput();\n\n#if GTEST_CAN_STREAM_RESULTS_\n  // Initializes the event listener for streaming test results to a socket.\n  // Must not be called before InitGoogleTest.\n  void ConfigureStreamingOutput();\n#endif\n\n  // Performs initialization dependent upon flag values obtained in\n  // ParseGoogleTestFlagsOnly.  Is called from InitGoogleTest after the call to\n  // ParseGoogleTestFlagsOnly.  In case a user neglects to call InitGoogleTest\n  // this function is also called from RunAllTests.  Since this function can be\n  // called more than once, it has to be idempotent.\n  void PostFlagParsingInit();\n\n  // Gets the random seed used at the start of the current test iteration.\n  int random_seed() const { return random_seed_; }\n\n  // Gets the random number generator.\n  internal::Random* random() { return &random_; }\n\n  // Shuffles all test suites, and the tests within each test suite,\n  // making sure that death tests are still run first.\n  void ShuffleTests();\n\n  // Restores the test suites and tests to their order before the first shuffle.\n  void UnshuffleTests();\n\n  // Returns the value of GTEST_FLAG(catch_exceptions) at the moment\n  // UnitTest::Run() starts.\n  bool catch_exceptions() const { return catch_exceptions_; }\n\n private:\n  friend class ::testing::UnitTest;\n\n  // Used by UnitTest::Run() to capture the state of\n  // GTEST_FLAG(catch_exceptions) at the moment it starts.\n  void set_catch_exceptions(bool value) { catch_exceptions_ = value; }\n\n  // The UnitTest object that owns this implementation object.\n  UnitTest* const parent_;\n\n  // The working directory when the first TEST() or TEST_F() was\n  // executed.\n  internal::FilePath original_working_dir_;\n\n  // The default test part result reporters.\n  DefaultGlobalTestPartResultReporter default_global_test_part_result_reporter_;\n  DefaultPerThreadTestPartResultReporter\n      default_per_thread_test_part_result_reporter_;\n\n  // Points to (but doesn't own) the global test part result reporter.\n  TestPartResultReporterInterface* global_test_part_result_repoter_;\n\n  // Protects read and write access to global_test_part_result_reporter_.\n  internal::Mutex global_test_part_result_reporter_mutex_;\n\n  // Points to (but doesn't own) the per-thread test part result reporter.\n  internal::ThreadLocal<TestPartResultReporterInterface*>\n      per_thread_test_part_result_reporter_;\n\n  // The vector of environments that need to be set-up/torn-down\n  // before/after the tests are run.\n  std::vector<Environment*> environments_;\n\n  // The vector of TestSuites in their original order.  It owns the\n  // elements in the vector.\n  std::vector<TestSuite*> test_suites_;\n\n  // Provides a level of indirection for the test suite list to allow\n  // easy shuffling and restoring the test suite order.  The i-th\n  // element of this vector is the index of the i-th test suite in the\n  // shuffled order.\n  std::vector<int> test_suite_indices_;\n\n  // ParameterizedTestRegistry object used to register value-parameterized\n  // tests.\n  internal::ParameterizedTestSuiteRegistry parameterized_test_registry_;\n  internal::TypeParameterizedTestSuiteRegistry\n      type_parameterized_test_registry_;\n\n  // The set holding the name of parameterized\n  // test suites that may go uninstantiated.\n  std::set<std::string> ignored_parameterized_test_suites_;\n\n  // Indicates whether RegisterParameterizedTests() has been called already.\n  bool parameterized_tests_registered_;\n\n  // Index of the last death test suite registered.  Initially -1.\n  int last_death_test_suite_;\n\n  // This points to the TestSuite for the currently running test.  It\n  // changes as Google Test goes through one test suite after another.\n  // When no test is running, this is set to NULL and Google Test\n  // stores assertion results in ad_hoc_test_result_.  Initially NULL.\n  TestSuite* current_test_suite_;\n\n  // This points to the TestInfo for the currently running test.  It\n  // changes as Google Test goes through one test after another.  When\n  // no test is running, this is set to NULL and Google Test stores\n  // assertion results in ad_hoc_test_result_.  Initially NULL.\n  TestInfo* current_test_info_;\n\n  // Normally, a user only writes assertions inside a TEST or TEST_F,\n  // or inside a function called by a TEST or TEST_F.  Since Google\n  // Test keeps track of which test is current running, it can\n  // associate such an assertion with the test it belongs to.\n  //\n  // If an assertion is encountered when no TEST or TEST_F is running,\n  // Google Test attributes the assertion result to an imaginary \"ad hoc\"\n  // test, and records the result in ad_hoc_test_result_.\n  TestResult ad_hoc_test_result_;\n\n  // The list of event listeners that can be used to track events inside\n  // Google Test.\n  TestEventListeners listeners_;\n\n  // The OS stack trace getter.  Will be deleted when the UnitTest\n  // object is destructed.  By default, an OsStackTraceGetter is used,\n  // but the user can set this field to use a custom getter if that is\n  // desired.\n  OsStackTraceGetterInterface* os_stack_trace_getter_;\n\n  // True if and only if PostFlagParsingInit() has been called.\n  bool post_flag_parse_init_performed_;\n\n  // The random number seed used at the beginning of the test run.\n  int random_seed_;\n\n  // Our random number generator.\n  internal::Random random_;\n\n  // The time of the test program start, in ms from the start of the\n  // UNIX epoch.\n  TimeInMillis start_timestamp_;\n\n  // How long the test took to run, in milliseconds.\n  TimeInMillis elapsed_time_;\n\n#if GTEST_HAS_DEATH_TEST\n  // The decomposed components of the gtest_internal_run_death_test flag,\n  // parsed when RUN_ALL_TESTS is called.\n  std::unique_ptr<InternalRunDeathTestFlag> internal_run_death_test_flag_;\n  std::unique_ptr<internal::DeathTestFactory> death_test_factory_;\n#endif  // GTEST_HAS_DEATH_TEST\n\n  // A per-thread stack of traces created by the SCOPED_TRACE() macro.\n  internal::ThreadLocal<std::vector<TraceInfo> > gtest_trace_stack_;\n\n  // The value of GTEST_FLAG(catch_exceptions) at the moment RunAllTests()\n  // starts.\n  bool catch_exceptions_;\n\n  GTEST_DISALLOW_COPY_AND_ASSIGN_(UnitTestImpl);\n};  // class UnitTestImpl\n\n// Convenience function for accessing the global UnitTest\n// implementation object.\ninline UnitTestImpl* GetUnitTestImpl() {\n  return UnitTest::GetInstance()->impl();\n}\n\n#if GTEST_USES_SIMPLE_RE\n\n// Internal helper functions for implementing the simple regular\n// expression matcher.\nGTEST_API_ bool IsInSet(char ch, const char* str);\nGTEST_API_ bool IsAsciiDigit(char ch);\nGTEST_API_ bool IsAsciiPunct(char ch);\nGTEST_API_ bool IsRepeat(char ch);\nGTEST_API_ bool IsAsciiWhiteSpace(char ch);\nGTEST_API_ bool IsAsciiWordChar(char ch);\nGTEST_API_ bool IsValidEscape(char ch);\nGTEST_API_ bool AtomMatchesChar(bool escaped, char pattern, char ch);\nGTEST_API_ bool ValidateRegex(const char* regex);\nGTEST_API_ bool MatchRegexAtHead(const char* regex, const char* str);\nGTEST_API_ bool MatchRepetitionAndRegexAtHead(\n    bool escaped, char ch, char repeat, const char* regex, const char* str);\nGTEST_API_ bool MatchRegexAnywhere(const char* regex, const char* str);\n\n#endif  // GTEST_USES_SIMPLE_RE\n\n// Parses the command line for Google Test flags, without initializing\n// other parts of Google Test.\nGTEST_API_ void ParseGoogleTestFlagsOnly(int* argc, char** argv);\nGTEST_API_ void ParseGoogleTestFlagsOnly(int* argc, wchar_t** argv);\n\n#if GTEST_HAS_DEATH_TEST\n\n// Returns the message describing the last system error, regardless of the\n// platform.\nGTEST_API_ std::string GetLastErrnoDescription();\n\n// Attempts to parse a string into a positive integer pointed to by the\n// number parameter.  Returns true if that is possible.\n// GTEST_HAS_DEATH_TEST implies that we have ::std::string, so we can use\n// it here.\ntemplate <typename Integer>\nbool ParseNaturalNumber(const ::std::string& str, Integer* number) {\n  // Fail fast if the given string does not begin with a digit;\n  // this bypasses strtoXXX's \"optional leading whitespace and plus\n  // or minus sign\" semantics, which are undesirable here.\n  if (str.empty() || !IsDigit(str[0])) {\n    return false;\n  }\n  errno = 0;\n\n  char* end;\n  // BiggestConvertible is the largest integer type that system-provided\n  // string-to-number conversion routines can return.\n  using BiggestConvertible = unsigned long long;  // NOLINT\n\n  const BiggestConvertible parsed = strtoull(str.c_str(), &end, 10);  // NOLINT\n  const bool parse_success = *end == '\\0' && errno == 0;\n\n  GTEST_CHECK_(sizeof(Integer) <= sizeof(parsed));\n\n  const Integer result = static_cast<Integer>(parsed);\n  if (parse_success && static_cast<BiggestConvertible>(result) == parsed) {\n    *number = result;\n    return true;\n  }\n  return false;\n}\n#endif  // GTEST_HAS_DEATH_TEST\n\n// TestResult contains some private methods that should be hidden from\n// Google Test user but are required for testing. This class allow our tests\n// to access them.\n//\n// This class is supplied only for the purpose of testing Google Test's own\n// constructs. Do not use it in user tests, either directly or indirectly.\nclass TestResultAccessor {\n public:\n  static void RecordProperty(TestResult* test_result,\n                             const std::string& xml_element,\n                             const TestProperty& property) {\n    test_result->RecordProperty(xml_element, property);\n  }\n\n  static void ClearTestPartResults(TestResult* test_result) {\n    test_result->ClearTestPartResults();\n  }\n\n  static const std::vector<testing::TestPartResult>& test_part_results(\n      const TestResult& test_result) {\n    return test_result.test_part_results();\n  }\n};\n\n#if GTEST_CAN_STREAM_RESULTS_\n\n// Streams test results to the given port on the given host machine.\nclass StreamingListener : public EmptyTestEventListener {\n public:\n  // Abstract base class for writing strings to a socket.\n  class AbstractSocketWriter {\n   public:\n    virtual ~AbstractSocketWriter() {}\n\n    // Sends a string to the socket.\n    virtual void Send(const std::string& message) = 0;\n\n    // Closes the socket.\n    virtual void CloseConnection() {}\n\n    // Sends a string and a newline to the socket.\n    void SendLn(const std::string& message) { Send(message + \"\\n\"); }\n  };\n\n  // Concrete class for actually writing strings to a socket.\n  class SocketWriter : public AbstractSocketWriter {\n   public:\n    SocketWriter(const std::string& host, const std::string& port)\n        : sockfd_(-1), host_name_(host), port_num_(port) {\n      MakeConnection();\n    }\n\n    ~SocketWriter() override {\n      if (sockfd_ != -1)\n        CloseConnection();\n    }\n\n    // Sends a string to the socket.\n    void Send(const std::string& message) override {\n      GTEST_CHECK_(sockfd_ != -1)\n          << \"Send() can be called only when there is a connection.\";\n\n      const auto len = static_cast<size_t>(message.length());\n      if (write(sockfd_, message.c_str(), len) != static_cast<ssize_t>(len)) {\n        GTEST_LOG_(WARNING)\n            << \"stream_result_to: failed to stream to \"\n            << host_name_ << \":\" << port_num_;\n      }\n    }\n\n   private:\n    // Creates a client socket and connects to the server.\n    void MakeConnection();\n\n    // Closes the socket.\n    void CloseConnection() override {\n      GTEST_CHECK_(sockfd_ != -1)\n          << \"CloseConnection() can be called only when there is a connection.\";\n\n      close(sockfd_);\n      sockfd_ = -1;\n    }\n\n    int sockfd_;  // socket file descriptor\n    const std::string host_name_;\n    const std::string port_num_;\n\n    GTEST_DISALLOW_COPY_AND_ASSIGN_(SocketWriter);\n  };  // class SocketWriter\n\n  // Escapes '=', '&', '%', and '\\n' characters in str as \"%xx\".\n  static std::string UrlEncode(const char* str);\n\n  StreamingListener(const std::string& host, const std::string& port)\n      : socket_writer_(new SocketWriter(host, port)) {\n    Start();\n  }\n\n  explicit StreamingListener(AbstractSocketWriter* socket_writer)\n      : socket_writer_(socket_writer) { Start(); }\n\n  void OnTestProgramStart(const UnitTest& /* unit_test */) override {\n    SendLn(\"event=TestProgramStart\");\n  }\n\n  void OnTestProgramEnd(const UnitTest& unit_test) override {\n    // Note that Google Test current only report elapsed time for each\n    // test iteration, not for the entire test program.\n    SendLn(\"event=TestProgramEnd&passed=\" + FormatBool(unit_test.Passed()));\n\n    // Notify the streaming server to stop.\n    socket_writer_->CloseConnection();\n  }\n\n  void OnTestIterationStart(const UnitTest& /* unit_test */,\n                            int iteration) override {\n    SendLn(\"event=TestIterationStart&iteration=\" +\n           StreamableToString(iteration));\n  }\n\n  void OnTestIterationEnd(const UnitTest& unit_test,\n                          int /* iteration */) override {\n    SendLn(\"event=TestIterationEnd&passed=\" +\n           FormatBool(unit_test.Passed()) + \"&elapsed_time=\" +\n           StreamableToString(unit_test.elapsed_time()) + \"ms\");\n  }\n\n  // Note that \"event=TestCaseStart\" is a wire format and has to remain\n  // \"case\" for compatibility\n  void OnTestCaseStart(const TestCase& test_case) override {\n    SendLn(std::string(\"event=TestCaseStart&name=\") + test_case.name());\n  }\n\n  // Note that \"event=TestCaseEnd\" is a wire format and has to remain\n  // \"case\" for compatibility\n  void OnTestCaseEnd(const TestCase& test_case) override {\n    SendLn(\"event=TestCaseEnd&passed=\" + FormatBool(test_case.Passed()) +\n           \"&elapsed_time=\" + StreamableToString(test_case.elapsed_time()) +\n           \"ms\");\n  }\n\n  void OnTestStart(const TestInfo& test_info) override {\n    SendLn(std::string(\"event=TestStart&name=\") + test_info.name());\n  }\n\n  void OnTestEnd(const TestInfo& test_info) override {\n    SendLn(\"event=TestEnd&passed=\" +\n           FormatBool((test_info.result())->Passed()) +\n           \"&elapsed_time=\" +\n           StreamableToString((test_info.result())->elapsed_time()) + \"ms\");\n  }\n\n  void OnTestPartResult(const TestPartResult& test_part_result) override {\n    const char* file_name = test_part_result.file_name();\n    if (file_name == nullptr) file_name = \"\";\n    SendLn(\"event=TestPartResult&file=\" + UrlEncode(file_name) +\n           \"&line=\" + StreamableToString(test_part_result.line_number()) +\n           \"&message=\" + UrlEncode(test_part_result.message()));\n  }\n\n private:\n  // Sends the given message and a newline to the socket.\n  void SendLn(const std::string& message) { socket_writer_->SendLn(message); }\n\n  // Called at the start of streaming to notify the receiver what\n  // protocol we are using.\n  void Start() { SendLn(\"gtest_streaming_protocol_version=1.0\"); }\n\n  std::string FormatBool(bool value) { return value ? \"1\" : \"0\"; }\n\n  const std::unique_ptr<AbstractSocketWriter> socket_writer_;\n\n  GTEST_DISALLOW_COPY_AND_ASSIGN_(StreamingListener);\n};  // class StreamingListener\n\n#endif  // GTEST_CAN_STREAM_RESULTS_\n\n}  // namespace internal\n}  // namespace testing\n\nGTEST_DISABLE_MSC_WARNINGS_POP_()  //  4251\n\n#endif  // GOOGLETEST_SRC_GTEST_INTERNAL_INL_H_\n"
  },
  {
    "path": "test/gtest/src/gtest-matchers.cc",
    "content": "// Copyright 2007, Google Inc.\n// All rights reserved.\n//\n// Redistribution and use in source and binary forms, with or without\n// modification, are permitted provided that the following conditions are\n// met:\n//\n//     * Redistributions of source code must retain the above copyright\n// notice, this list of conditions and the following disclaimer.\n//     * Redistributions in binary form must reproduce the above\n// copyright notice, this list of conditions and the following disclaimer\n// in the documentation and/or other materials provided with the\n// distribution.\n//     * Neither the name of Google Inc. nor the names of its\n// contributors may be used to endorse or promote products derived from\n// this software without specific prior written permission.\n//\n// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n// \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n// The Google C++ Testing and Mocking Framework (Google Test)\n//\n// This file implements just enough of the matcher interface to allow\n// EXPECT_DEATH and friends to accept a matcher argument.\n\n#include \"gtest/internal/gtest-internal.h\"\n#include \"gtest/internal/gtest-port.h\"\n#include \"gtest/gtest-matchers.h\"\n\n#include <string>\n\nnamespace testing {\n\n// Constructs a matcher that matches a const std::string& whose value is\n// equal to s.\nMatcher<const std::string&>::Matcher(const std::string& s) { *this = Eq(s); }\n\n// Constructs a matcher that matches a const std::string& whose value is\n// equal to s.\nMatcher<const std::string&>::Matcher(const char* s) {\n  *this = Eq(std::string(s));\n}\n\n// Constructs a matcher that matches a std::string whose value is equal to\n// s.\nMatcher<std::string>::Matcher(const std::string& s) { *this = Eq(s); }\n\n// Constructs a matcher that matches a std::string whose value is equal to\n// s.\nMatcher<std::string>::Matcher(const char* s) { *this = Eq(std::string(s)); }\n\n#if GTEST_INTERNAL_HAS_STRING_VIEW\n// Constructs a matcher that matches a const StringView& whose value is\n// equal to s.\nMatcher<const internal::StringView&>::Matcher(const std::string& s) {\n  *this = Eq(s);\n}\n\n// Constructs a matcher that matches a const StringView& whose value is\n// equal to s.\nMatcher<const internal::StringView&>::Matcher(const char* s) {\n  *this = Eq(std::string(s));\n}\n\n// Constructs a matcher that matches a const StringView& whose value is\n// equal to s.\nMatcher<const internal::StringView&>::Matcher(internal::StringView s) {\n  *this = Eq(std::string(s));\n}\n\n// Constructs a matcher that matches a StringView whose value is equal to\n// s.\nMatcher<internal::StringView>::Matcher(const std::string& s) { *this = Eq(s); }\n\n// Constructs a matcher that matches a StringView whose value is equal to\n// s.\nMatcher<internal::StringView>::Matcher(const char* s) {\n  *this = Eq(std::string(s));\n}\n\n// Constructs a matcher that matches a StringView whose value is equal to\n// s.\nMatcher<internal::StringView>::Matcher(internal::StringView s) {\n  *this = Eq(std::string(s));\n}\n#endif  // GTEST_INTERNAL_HAS_STRING_VIEW\n\n}  // namespace testing\n"
  },
  {
    "path": "test/gtest/src/gtest-port.cc",
    "content": "// Copyright 2008, Google Inc.\n// All rights reserved.\n//\n// Redistribution and use in source and binary forms, with or without\n// modification, are permitted provided that the following conditions are\n// met:\n//\n//     * Redistributions of source code must retain the above copyright\n// notice, this list of conditions and the following disclaimer.\n//     * Redistributions in binary form must reproduce the above\n// copyright notice, this list of conditions and the following disclaimer\n// in the documentation and/or other materials provided with the\n// distribution.\n//     * Neither the name of Google Inc. nor the names of its\n// contributors may be used to endorse or promote products derived from\n// this software without specific prior written permission.\n//\n// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n// \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n\n#include \"gtest/internal/gtest-port.h\"\n\n#include <limits.h>\n#include <stdio.h>\n#include <stdlib.h>\n#include <string.h>\n#include <cstdint>\n#include <fstream>\n#include <memory>\n\n#if GTEST_OS_WINDOWS\n# include <windows.h>\n# include <io.h>\n# include <sys/stat.h>\n# include <map>  // Used in ThreadLocal.\n# ifdef _MSC_VER\n#  include <crtdbg.h>\n# endif  // _MSC_VER\n#else\n# include <unistd.h>\n#endif  // GTEST_OS_WINDOWS\n\n#if GTEST_OS_MAC\n# include <mach/mach_init.h>\n# include <mach/task.h>\n# include <mach/vm_map.h>\n#endif  // GTEST_OS_MAC\n\n#if GTEST_OS_DRAGONFLY || GTEST_OS_FREEBSD || GTEST_OS_GNU_KFREEBSD || \\\n    GTEST_OS_NETBSD || GTEST_OS_OPENBSD\n# include <sys/sysctl.h>\n# if GTEST_OS_DRAGONFLY || GTEST_OS_FREEBSD || GTEST_OS_GNU_KFREEBSD\n#  include <sys/user.h>\n# endif\n#endif\n\n#if GTEST_OS_QNX\n# include <devctl.h>\n# include <fcntl.h>\n# include <sys/procfs.h>\n#endif  // GTEST_OS_QNX\n\n#if GTEST_OS_AIX\n# include <procinfo.h>\n# include <sys/types.h>\n#endif  // GTEST_OS_AIX\n\n#if GTEST_OS_FUCHSIA\n# include <zircon/process.h>\n# include <zircon/syscalls.h>\n#endif  // GTEST_OS_FUCHSIA\n\n#include \"gtest/gtest-spi.h\"\n#include \"gtest/gtest-message.h\"\n#include \"gtest/internal/gtest-internal.h\"\n#include \"gtest/internal/gtest-string.h\"\n#include \"src/gtest-internal-inl.h\"\n\nnamespace testing {\nnamespace internal {\n\n#if defined(_MSC_VER) || defined(__BORLANDC__)\n// MSVC and C++Builder do not provide a definition of STDERR_FILENO.\nconst int kStdOutFileno = 1;\nconst int kStdErrFileno = 2;\n#else\nconst int kStdOutFileno = STDOUT_FILENO;\nconst int kStdErrFileno = STDERR_FILENO;\n#endif  // _MSC_VER\n\n#if GTEST_OS_LINUX\n\nnamespace {\ntemplate <typename T>\nT ReadProcFileField(const std::string& filename, int field) {\n  std::string dummy;\n  std::ifstream file(filename.c_str());\n  while (field-- > 0) {\n    file >> dummy;\n  }\n  T output = 0;\n  file >> output;\n  return output;\n}\n}  // namespace\n\n// Returns the number of active threads, or 0 when there is an error.\nsize_t GetThreadCount() {\n  const std::string filename =\n      (Message() << \"/proc/\" << getpid() << \"/stat\").GetString();\n  return ReadProcFileField<size_t>(filename, 19);\n}\n\n#elif GTEST_OS_MAC\n\nsize_t GetThreadCount() {\n  const task_t task = mach_task_self();\n  mach_msg_type_number_t thread_count;\n  thread_act_array_t thread_list;\n  const kern_return_t status = task_threads(task, &thread_list, &thread_count);\n  if (status == KERN_SUCCESS) {\n    // task_threads allocates resources in thread_list and we need to free them\n    // to avoid leaks.\n    vm_deallocate(task,\n                  reinterpret_cast<vm_address_t>(thread_list),\n                  sizeof(thread_t) * thread_count);\n    return static_cast<size_t>(thread_count);\n  } else {\n    return 0;\n  }\n}\n\n#elif GTEST_OS_DRAGONFLY || GTEST_OS_FREEBSD || GTEST_OS_GNU_KFREEBSD || \\\n      GTEST_OS_NETBSD\n\n#if GTEST_OS_NETBSD\n#undef KERN_PROC\n#define KERN_PROC KERN_PROC2\n#define kinfo_proc kinfo_proc2\n#endif\n\n#if GTEST_OS_DRAGONFLY\n#define KP_NLWP(kp) (kp.kp_nthreads)\n#elif GTEST_OS_FREEBSD || GTEST_OS_GNU_KFREEBSD\n#define KP_NLWP(kp) (kp.ki_numthreads)\n#elif GTEST_OS_NETBSD\n#define KP_NLWP(kp) (kp.p_nlwps)\n#endif\n\n// Returns the number of threads running in the process, or 0 to indicate that\n// we cannot detect it.\nsize_t GetThreadCount() {\n  int mib[] = {\n    CTL_KERN,\n    KERN_PROC,\n    KERN_PROC_PID,\n    getpid(),\n#if GTEST_OS_NETBSD\n    sizeof(struct kinfo_proc),\n    1,\n#endif\n  };\n  u_int miblen = sizeof(mib) / sizeof(mib[0]);\n  struct kinfo_proc info;\n  size_t size = sizeof(info);\n  if (sysctl(mib, miblen, &info, &size, NULL, 0)) {\n    return 0;\n  }\n  return static_cast<size_t>(KP_NLWP(info));\n}\n#elif GTEST_OS_OPENBSD\n\n// Returns the number of threads running in the process, or 0 to indicate that\n// we cannot detect it.\nsize_t GetThreadCount() {\n  int mib[] = {\n    CTL_KERN,\n    KERN_PROC,\n    KERN_PROC_PID | KERN_PROC_SHOW_THREADS,\n    getpid(),\n    sizeof(struct kinfo_proc),\n    0,\n  };\n  u_int miblen = sizeof(mib) / sizeof(mib[0]);\n\n  // get number of structs\n  size_t size;\n  if (sysctl(mib, miblen, NULL, &size, NULL, 0)) {\n    return 0;\n  }\n\n  mib[5] = static_cast<int>(size / static_cast<size_t>(mib[4]));\n\n  // populate array of structs\n  struct kinfo_proc info[mib[5]];\n  if (sysctl(mib, miblen, &info, &size, NULL, 0)) {\n    return 0;\n  }\n\n  // exclude empty members\n  size_t nthreads = 0;\n  for (size_t i = 0; i < size / static_cast<size_t>(mib[4]); i++) {\n    if (info[i].p_tid != -1)\n      nthreads++;\n  }\n  return nthreads;\n}\n\n#elif GTEST_OS_QNX\n\n// Returns the number of threads running in the process, or 0 to indicate that\n// we cannot detect it.\nsize_t GetThreadCount() {\n  const int fd = open(\"/proc/self/as\", O_RDONLY);\n  if (fd < 0) {\n    return 0;\n  }\n  procfs_info process_info;\n  const int status =\n      devctl(fd, DCMD_PROC_INFO, &process_info, sizeof(process_info), nullptr);\n  close(fd);\n  if (status == EOK) {\n    return static_cast<size_t>(process_info.num_threads);\n  } else {\n    return 0;\n  }\n}\n\n#elif GTEST_OS_AIX\n\nsize_t GetThreadCount() {\n  struct procentry64 entry;\n  pid_t pid = getpid();\n  int status = getprocs64(&entry, sizeof(entry), nullptr, 0, &pid, 1);\n  if (status == 1) {\n    return entry.pi_thcount;\n  } else {\n    return 0;\n  }\n}\n\n#elif GTEST_OS_FUCHSIA\n\nsize_t GetThreadCount() {\n  int dummy_buffer;\n  size_t avail;\n  zx_status_t status = zx_object_get_info(\n      zx_process_self(),\n      ZX_INFO_PROCESS_THREADS,\n      &dummy_buffer,\n      0,\n      nullptr,\n      &avail);\n  if (status == ZX_OK) {\n    return avail;\n  } else {\n    return 0;\n  }\n}\n\n#else\n\nsize_t GetThreadCount() {\n  // There's no portable way to detect the number of threads, so we just\n  // return 0 to indicate that we cannot detect it.\n  return 0;\n}\n\n#endif  // GTEST_OS_LINUX\n\n#if GTEST_IS_THREADSAFE && GTEST_OS_WINDOWS\n\nvoid SleepMilliseconds(int n) {\n  ::Sleep(static_cast<DWORD>(n));\n}\n\nAutoHandle::AutoHandle()\n    : handle_(INVALID_HANDLE_VALUE) {}\n\nAutoHandle::AutoHandle(Handle handle)\n    : handle_(handle) {}\n\nAutoHandle::~AutoHandle() {\n  Reset();\n}\n\nAutoHandle::Handle AutoHandle::Get() const {\n  return handle_;\n}\n\nvoid AutoHandle::Reset() {\n  Reset(INVALID_HANDLE_VALUE);\n}\n\nvoid AutoHandle::Reset(HANDLE handle) {\n  // Resetting with the same handle we already own is invalid.\n  if (handle_ != handle) {\n    if (IsCloseable()) {\n      ::CloseHandle(handle_);\n    }\n    handle_ = handle;\n  } else {\n    GTEST_CHECK_(!IsCloseable())\n        << \"Resetting a valid handle to itself is likely a programmer error \"\n            \"and thus not allowed.\";\n  }\n}\n\nbool AutoHandle::IsCloseable() const {\n  // Different Windows APIs may use either of these values to represent an\n  // invalid handle.\n  return handle_ != nullptr && handle_ != INVALID_HANDLE_VALUE;\n}\n\nNotification::Notification()\n    : event_(::CreateEvent(nullptr,     // Default security attributes.\n                           TRUE,        // Do not reset automatically.\n                           FALSE,       // Initially unset.\n                           nullptr)) {  // Anonymous event.\n  GTEST_CHECK_(event_.Get() != nullptr);\n}\n\nvoid Notification::Notify() {\n  GTEST_CHECK_(::SetEvent(event_.Get()) != FALSE);\n}\n\nvoid Notification::WaitForNotification() {\n  GTEST_CHECK_(\n      ::WaitForSingleObject(event_.Get(), INFINITE) == WAIT_OBJECT_0);\n}\n\nMutex::Mutex()\n    : owner_thread_id_(0),\n      type_(kDynamic),\n      critical_section_init_phase_(0),\n      critical_section_(new CRITICAL_SECTION) {\n  ::InitializeCriticalSection(critical_section_);\n}\n\nMutex::~Mutex() {\n  // Static mutexes are leaked intentionally. It is not thread-safe to try\n  // to clean them up.\n  if (type_ == kDynamic) {\n    ::DeleteCriticalSection(critical_section_);\n    delete critical_section_;\n    critical_section_ = nullptr;\n  }\n}\n\nvoid Mutex::Lock() {\n  ThreadSafeLazyInit();\n  ::EnterCriticalSection(critical_section_);\n  owner_thread_id_ = ::GetCurrentThreadId();\n}\n\nvoid Mutex::Unlock() {\n  ThreadSafeLazyInit();\n  // We don't protect writing to owner_thread_id_ here, as it's the\n  // caller's responsibility to ensure that the current thread holds the\n  // mutex when this is called.\n  owner_thread_id_ = 0;\n  ::LeaveCriticalSection(critical_section_);\n}\n\n// Does nothing if the current thread holds the mutex. Otherwise, crashes\n// with high probability.\nvoid Mutex::AssertHeld() {\n  ThreadSafeLazyInit();\n  GTEST_CHECK_(owner_thread_id_ == ::GetCurrentThreadId())\n      << \"The current thread is not holding the mutex @\" << this;\n}\n\nnamespace {\n\n#ifdef _MSC_VER\n// Use the RAII idiom to flag mem allocs that are intentionally never\n// deallocated. The motivation is to silence the false positive mem leaks\n// that are reported by the debug version of MS's CRT which can only detect\n// if an alloc is missing a matching deallocation.\n// Example:\n//    MemoryIsNotDeallocated memory_is_not_deallocated;\n//    critical_section_ = new CRITICAL_SECTION;\n//\nclass MemoryIsNotDeallocated\n{\n public:\n  MemoryIsNotDeallocated() : old_crtdbg_flag_(0) {\n    old_crtdbg_flag_ = _CrtSetDbgFlag(_CRTDBG_REPORT_FLAG);\n    // Set heap allocation block type to _IGNORE_BLOCK so that MS debug CRT\n    // doesn't report mem leak if there's no matching deallocation.\n    _CrtSetDbgFlag(old_crtdbg_flag_ & ~_CRTDBG_ALLOC_MEM_DF);\n  }\n\n  ~MemoryIsNotDeallocated() {\n    // Restore the original _CRTDBG_ALLOC_MEM_DF flag\n    _CrtSetDbgFlag(old_crtdbg_flag_);\n  }\n\n private:\n  int old_crtdbg_flag_;\n\n  GTEST_DISALLOW_COPY_AND_ASSIGN_(MemoryIsNotDeallocated);\n};\n#endif  // _MSC_VER\n\n}  // namespace\n\n// Initializes owner_thread_id_ and critical_section_ in static mutexes.\nvoid Mutex::ThreadSafeLazyInit() {\n  // Dynamic mutexes are initialized in the constructor.\n  if (type_ == kStatic) {\n    switch (\n        ::InterlockedCompareExchange(&critical_section_init_phase_, 1L, 0L)) {\n      case 0:\n        // If critical_section_init_phase_ was 0 before the exchange, we\n        // are the first to test it and need to perform the initialization.\n        owner_thread_id_ = 0;\n        {\n          // Use RAII to flag that following mem alloc is never deallocated.\n#ifdef _MSC_VER\n          MemoryIsNotDeallocated memory_is_not_deallocated;\n#endif  // _MSC_VER\n          critical_section_ = new CRITICAL_SECTION;\n        }\n        ::InitializeCriticalSection(critical_section_);\n        // Updates the critical_section_init_phase_ to 2 to signal\n        // initialization complete.\n        GTEST_CHECK_(::InterlockedCompareExchange(\n                          &critical_section_init_phase_, 2L, 1L) ==\n                      1L);\n        break;\n      case 1:\n        // Somebody else is already initializing the mutex; spin until they\n        // are done.\n        while (::InterlockedCompareExchange(&critical_section_init_phase_,\n                                            2L,\n                                            2L) != 2L) {\n          // Possibly yields the rest of the thread's time slice to other\n          // threads.\n          ::Sleep(0);\n        }\n        break;\n\n      case 2:\n        break;  // The mutex is already initialized and ready for use.\n\n      default:\n        GTEST_CHECK_(false)\n            << \"Unexpected value of critical_section_init_phase_ \"\n            << \"while initializing a static mutex.\";\n    }\n  }\n}\n\nnamespace {\n\nclass ThreadWithParamSupport : public ThreadWithParamBase {\n public:\n  static HANDLE CreateThread(Runnable* runnable,\n                             Notification* thread_can_start) {\n    ThreadMainParam* param = new ThreadMainParam(runnable, thread_can_start);\n    DWORD thread_id;\n    HANDLE thread_handle = ::CreateThread(\n        nullptr,  // Default security.\n        0,        // Default stack size.\n        &ThreadWithParamSupport::ThreadMain,\n        param,        // Parameter to ThreadMainStatic\n        0x0,          // Default creation flags.\n        &thread_id);  // Need a valid pointer for the call to work under Win98.\n    GTEST_CHECK_(thread_handle != nullptr)\n        << \"CreateThread failed with error \" << ::GetLastError() << \".\";\n    if (thread_handle == nullptr) {\n      delete param;\n    }\n    return thread_handle;\n  }\n\n private:\n  struct ThreadMainParam {\n    ThreadMainParam(Runnable* runnable, Notification* thread_can_start)\n        : runnable_(runnable),\n          thread_can_start_(thread_can_start) {\n    }\n    std::unique_ptr<Runnable> runnable_;\n    // Does not own.\n    Notification* thread_can_start_;\n  };\n\n  static DWORD WINAPI ThreadMain(void* ptr) {\n    // Transfers ownership.\n    std::unique_ptr<ThreadMainParam> param(static_cast<ThreadMainParam*>(ptr));\n    if (param->thread_can_start_ != nullptr)\n      param->thread_can_start_->WaitForNotification();\n    param->runnable_->Run();\n    return 0;\n  }\n\n  // Prohibit instantiation.\n  ThreadWithParamSupport();\n\n  GTEST_DISALLOW_COPY_AND_ASSIGN_(ThreadWithParamSupport);\n};\n\n}  // namespace\n\nThreadWithParamBase::ThreadWithParamBase(Runnable *runnable,\n                                         Notification* thread_can_start)\n      : thread_(ThreadWithParamSupport::CreateThread(runnable,\n                                                     thread_can_start)) {\n}\n\nThreadWithParamBase::~ThreadWithParamBase() {\n  Join();\n}\n\nvoid ThreadWithParamBase::Join() {\n  GTEST_CHECK_(::WaitForSingleObject(thread_.Get(), INFINITE) == WAIT_OBJECT_0)\n      << \"Failed to join the thread with error \" << ::GetLastError() << \".\";\n}\n\n// Maps a thread to a set of ThreadIdToThreadLocals that have values\n// instantiated on that thread and notifies them when the thread exits.  A\n// ThreadLocal instance is expected to persist until all threads it has\n// values on have terminated.\nclass ThreadLocalRegistryImpl {\n public:\n  // Registers thread_local_instance as having value on the current thread.\n  // Returns a value that can be used to identify the thread from other threads.\n  static ThreadLocalValueHolderBase* GetValueOnCurrentThread(\n      const ThreadLocalBase* thread_local_instance) {\n#ifdef _MSC_VER\n    MemoryIsNotDeallocated memory_is_not_deallocated;\n#endif  // _MSC_VER\n    DWORD current_thread = ::GetCurrentThreadId();\n    MutexLock lock(&mutex_);\n    ThreadIdToThreadLocals* const thread_to_thread_locals =\n        GetThreadLocalsMapLocked();\n    ThreadIdToThreadLocals::iterator thread_local_pos =\n        thread_to_thread_locals->find(current_thread);\n    if (thread_local_pos == thread_to_thread_locals->end()) {\n      thread_local_pos = thread_to_thread_locals->insert(\n          std::make_pair(current_thread, ThreadLocalValues())).first;\n      StartWatcherThreadFor(current_thread);\n    }\n    ThreadLocalValues& thread_local_values = thread_local_pos->second;\n    ThreadLocalValues::iterator value_pos =\n        thread_local_values.find(thread_local_instance);\n    if (value_pos == thread_local_values.end()) {\n      value_pos =\n          thread_local_values\n              .insert(std::make_pair(\n                  thread_local_instance,\n                  std::shared_ptr<ThreadLocalValueHolderBase>(\n                      thread_local_instance->NewValueForCurrentThread())))\n              .first;\n    }\n    return value_pos->second.get();\n  }\n\n  static void OnThreadLocalDestroyed(\n      const ThreadLocalBase* thread_local_instance) {\n    std::vector<std::shared_ptr<ThreadLocalValueHolderBase> > value_holders;\n    // Clean up the ThreadLocalValues data structure while holding the lock, but\n    // defer the destruction of the ThreadLocalValueHolderBases.\n    {\n      MutexLock lock(&mutex_);\n      ThreadIdToThreadLocals* const thread_to_thread_locals =\n          GetThreadLocalsMapLocked();\n      for (ThreadIdToThreadLocals::iterator it =\n          thread_to_thread_locals->begin();\n          it != thread_to_thread_locals->end();\n          ++it) {\n        ThreadLocalValues& thread_local_values = it->second;\n        ThreadLocalValues::iterator value_pos =\n            thread_local_values.find(thread_local_instance);\n        if (value_pos != thread_local_values.end()) {\n          value_holders.push_back(value_pos->second);\n          thread_local_values.erase(value_pos);\n          // This 'if' can only be successful at most once, so theoretically we\n          // could break out of the loop here, but we don't bother doing so.\n        }\n      }\n    }\n    // Outside the lock, let the destructor for 'value_holders' deallocate the\n    // ThreadLocalValueHolderBases.\n  }\n\n  static void OnThreadExit(DWORD thread_id) {\n    GTEST_CHECK_(thread_id != 0) << ::GetLastError();\n    std::vector<std::shared_ptr<ThreadLocalValueHolderBase> > value_holders;\n    // Clean up the ThreadIdToThreadLocals data structure while holding the\n    // lock, but defer the destruction of the ThreadLocalValueHolderBases.\n    {\n      MutexLock lock(&mutex_);\n      ThreadIdToThreadLocals* const thread_to_thread_locals =\n          GetThreadLocalsMapLocked();\n      ThreadIdToThreadLocals::iterator thread_local_pos =\n          thread_to_thread_locals->find(thread_id);\n      if (thread_local_pos != thread_to_thread_locals->end()) {\n        ThreadLocalValues& thread_local_values = thread_local_pos->second;\n        for (ThreadLocalValues::iterator value_pos =\n            thread_local_values.begin();\n            value_pos != thread_local_values.end();\n            ++value_pos) {\n          value_holders.push_back(value_pos->second);\n        }\n        thread_to_thread_locals->erase(thread_local_pos);\n      }\n    }\n    // Outside the lock, let the destructor for 'value_holders' deallocate the\n    // ThreadLocalValueHolderBases.\n  }\n\n private:\n  // In a particular thread, maps a ThreadLocal object to its value.\n  typedef std::map<const ThreadLocalBase*,\n                   std::shared_ptr<ThreadLocalValueHolderBase> >\n      ThreadLocalValues;\n  // Stores all ThreadIdToThreadLocals having values in a thread, indexed by\n  // thread's ID.\n  typedef std::map<DWORD, ThreadLocalValues> ThreadIdToThreadLocals;\n\n  // Holds the thread id and thread handle that we pass from\n  // StartWatcherThreadFor to WatcherThreadFunc.\n  typedef std::pair<DWORD, HANDLE> ThreadIdAndHandle;\n\n  static void StartWatcherThreadFor(DWORD thread_id) {\n    // The returned handle will be kept in thread_map and closed by\n    // watcher_thread in WatcherThreadFunc.\n    HANDLE thread = ::OpenThread(SYNCHRONIZE | THREAD_QUERY_INFORMATION,\n                                 FALSE,\n                                 thread_id);\n    GTEST_CHECK_(thread != nullptr);\n    // We need to pass a valid thread ID pointer into CreateThread for it\n    // to work correctly under Win98.\n    DWORD watcher_thread_id;\n    HANDLE watcher_thread = ::CreateThread(\n        nullptr,  // Default security.\n        0,        // Default stack size\n        &ThreadLocalRegistryImpl::WatcherThreadFunc,\n        reinterpret_cast<LPVOID>(new ThreadIdAndHandle(thread_id, thread)),\n        CREATE_SUSPENDED, &watcher_thread_id);\n    GTEST_CHECK_(watcher_thread != nullptr);\n    // Give the watcher thread the same priority as ours to avoid being\n    // blocked by it.\n    ::SetThreadPriority(watcher_thread,\n                        ::GetThreadPriority(::GetCurrentThread()));\n    ::ResumeThread(watcher_thread);\n    ::CloseHandle(watcher_thread);\n  }\n\n  // Monitors exit from a given thread and notifies those\n  // ThreadIdToThreadLocals about thread termination.\n  static DWORD WINAPI WatcherThreadFunc(LPVOID param) {\n    const ThreadIdAndHandle* tah =\n        reinterpret_cast<const ThreadIdAndHandle*>(param);\n    GTEST_CHECK_(\n        ::WaitForSingleObject(tah->second, INFINITE) == WAIT_OBJECT_0);\n    OnThreadExit(tah->first);\n    ::CloseHandle(tah->second);\n    delete tah;\n    return 0;\n  }\n\n  // Returns map of thread local instances.\n  static ThreadIdToThreadLocals* GetThreadLocalsMapLocked() {\n    mutex_.AssertHeld();\n#ifdef _MSC_VER\n    MemoryIsNotDeallocated memory_is_not_deallocated;\n#endif  // _MSC_VER\n    static ThreadIdToThreadLocals* map = new ThreadIdToThreadLocals();\n    return map;\n  }\n\n  // Protects access to GetThreadLocalsMapLocked() and its return value.\n  static Mutex mutex_;\n  // Protects access to GetThreadMapLocked() and its return value.\n  static Mutex thread_map_mutex_;\n};\n\nMutex ThreadLocalRegistryImpl::mutex_(Mutex::kStaticMutex);  // NOLINT\nMutex ThreadLocalRegistryImpl::thread_map_mutex_(Mutex::kStaticMutex);  // NOLINT\n\nThreadLocalValueHolderBase* ThreadLocalRegistry::GetValueOnCurrentThread(\n      const ThreadLocalBase* thread_local_instance) {\n  return ThreadLocalRegistryImpl::GetValueOnCurrentThread(\n      thread_local_instance);\n}\n\nvoid ThreadLocalRegistry::OnThreadLocalDestroyed(\n      const ThreadLocalBase* thread_local_instance) {\n  ThreadLocalRegistryImpl::OnThreadLocalDestroyed(thread_local_instance);\n}\n\n#endif  // GTEST_IS_THREADSAFE && GTEST_OS_WINDOWS\n\n#if GTEST_USES_POSIX_RE\n\n// Implements RE.  Currently only needed for death tests.\n\nRE::~RE() {\n  if (is_valid_) {\n    // regfree'ing an invalid regex might crash because the content\n    // of the regex is undefined. Since the regex's are essentially\n    // the same, one cannot be valid (or invalid) without the other\n    // being so too.\n    regfree(&partial_regex_);\n    regfree(&full_regex_);\n  }\n  free(const_cast<char*>(pattern_));\n}\n\n// Returns true if and only if regular expression re matches the entire str.\nbool RE::FullMatch(const char* str, const RE& re) {\n  if (!re.is_valid_) return false;\n\n  regmatch_t match;\n  return regexec(&re.full_regex_, str, 1, &match, 0) == 0;\n}\n\n// Returns true if and only if regular expression re matches a substring of\n// str (including str itself).\nbool RE::PartialMatch(const char* str, const RE& re) {\n  if (!re.is_valid_) return false;\n\n  regmatch_t match;\n  return regexec(&re.partial_regex_, str, 1, &match, 0) == 0;\n}\n\n// Initializes an RE from its string representation.\nvoid RE::Init(const char* regex) {\n  pattern_ = posix::StrDup(regex);\n\n  // Reserves enough bytes to hold the regular expression used for a\n  // full match.\n  const size_t full_regex_len = strlen(regex) + 10;\n  char* const full_pattern = new char[full_regex_len];\n\n  snprintf(full_pattern, full_regex_len, \"^(%s)$\", regex);\n  is_valid_ = regcomp(&full_regex_, full_pattern, REG_EXTENDED) == 0;\n  // We want to call regcomp(&partial_regex_, ...) even if the\n  // previous expression returns false.  Otherwise partial_regex_ may\n  // not be properly initialized can may cause trouble when it's\n  // freed.\n  //\n  // Some implementation of POSIX regex (e.g. on at least some\n  // versions of Cygwin) doesn't accept the empty string as a valid\n  // regex.  We change it to an equivalent form \"()\" to be safe.\n  if (is_valid_) {\n    const char* const partial_regex = (*regex == '\\0') ? \"()\" : regex;\n    is_valid_ = regcomp(&partial_regex_, partial_regex, REG_EXTENDED) == 0;\n  }\n  EXPECT_TRUE(is_valid_)\n      << \"Regular expression \\\"\" << regex\n      << \"\\\" is not a valid POSIX Extended regular expression.\";\n\n  delete[] full_pattern;\n}\n\n#elif GTEST_USES_SIMPLE_RE\n\n// Returns true if and only if ch appears anywhere in str (excluding the\n// terminating '\\0' character).\nbool IsInSet(char ch, const char* str) {\n  return ch != '\\0' && strchr(str, ch) != nullptr;\n}\n\n// Returns true if and only if ch belongs to the given classification.\n// Unlike similar functions in <ctype.h>, these aren't affected by the\n// current locale.\nbool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; }\nbool IsAsciiPunct(char ch) {\n  return IsInSet(ch, \"^-!\\\"#$%&'()*+,./:;<=>?@[\\\\]_`{|}~\");\n}\nbool IsRepeat(char ch) { return IsInSet(ch, \"?*+\"); }\nbool IsAsciiWhiteSpace(char ch) { return IsInSet(ch, \" \\f\\n\\r\\t\\v\"); }\nbool IsAsciiWordChar(char ch) {\n  return ('a' <= ch && ch <= 'z') || ('A' <= ch && ch <= 'Z') ||\n      ('0' <= ch && ch <= '9') || ch == '_';\n}\n\n// Returns true if and only if \"\\\\c\" is a supported escape sequence.\nbool IsValidEscape(char c) {\n  return (IsAsciiPunct(c) || IsInSet(c, \"dDfnrsStvwW\"));\n}\n\n// Returns true if and only if the given atom (specified by escaped and\n// pattern) matches ch.  The result is undefined if the atom is invalid.\nbool AtomMatchesChar(bool escaped, char pattern_char, char ch) {\n  if (escaped) {  // \"\\\\p\" where p is pattern_char.\n    switch (pattern_char) {\n      case 'd': return IsAsciiDigit(ch);\n      case 'D': return !IsAsciiDigit(ch);\n      case 'f': return ch == '\\f';\n      case 'n': return ch == '\\n';\n      case 'r': return ch == '\\r';\n      case 's': return IsAsciiWhiteSpace(ch);\n      case 'S': return !IsAsciiWhiteSpace(ch);\n      case 't': return ch == '\\t';\n      case 'v': return ch == '\\v';\n      case 'w': return IsAsciiWordChar(ch);\n      case 'W': return !IsAsciiWordChar(ch);\n    }\n    return IsAsciiPunct(pattern_char) && pattern_char == ch;\n  }\n\n  return (pattern_char == '.' && ch != '\\n') || pattern_char == ch;\n}\n\n// Helper function used by ValidateRegex() to format error messages.\nstatic std::string FormatRegexSyntaxError(const char* regex, int index) {\n  return (Message() << \"Syntax error at index \" << index\n          << \" in simple regular expression \\\"\" << regex << \"\\\": \").GetString();\n}\n\n// Generates non-fatal failures and returns false if regex is invalid;\n// otherwise returns true.\nbool ValidateRegex(const char* regex) {\n  if (regex == nullptr) {\n    ADD_FAILURE() << \"NULL is not a valid simple regular expression.\";\n    return false;\n  }\n\n  bool is_valid = true;\n\n  // True if and only if ?, *, or + can follow the previous atom.\n  bool prev_repeatable = false;\n  for (int i = 0; regex[i]; i++) {\n    if (regex[i] == '\\\\') {  // An escape sequence\n      i++;\n      if (regex[i] == '\\0') {\n        ADD_FAILURE() << FormatRegexSyntaxError(regex, i - 1)\n                      << \"'\\\\' cannot appear at the end.\";\n        return false;\n      }\n\n      if (!IsValidEscape(regex[i])) {\n        ADD_FAILURE() << FormatRegexSyntaxError(regex, i - 1)\n                      << \"invalid escape sequence \\\"\\\\\" << regex[i] << \"\\\".\";\n        is_valid = false;\n      }\n      prev_repeatable = true;\n    } else {  // Not an escape sequence.\n      const char ch = regex[i];\n\n      if (ch == '^' && i > 0) {\n        ADD_FAILURE() << FormatRegexSyntaxError(regex, i)\n                      << \"'^' can only appear at the beginning.\";\n        is_valid = false;\n      } else if (ch == '$' && regex[i + 1] != '\\0') {\n        ADD_FAILURE() << FormatRegexSyntaxError(regex, i)\n                      << \"'$' can only appear at the end.\";\n        is_valid = false;\n      } else if (IsInSet(ch, \"()[]{}|\")) {\n        ADD_FAILURE() << FormatRegexSyntaxError(regex, i)\n                      << \"'\" << ch << \"' is unsupported.\";\n        is_valid = false;\n      } else if (IsRepeat(ch) && !prev_repeatable) {\n        ADD_FAILURE() << FormatRegexSyntaxError(regex, i)\n                      << \"'\" << ch << \"' can only follow a repeatable token.\";\n        is_valid = false;\n      }\n\n      prev_repeatable = !IsInSet(ch, \"^$?*+\");\n    }\n  }\n\n  return is_valid;\n}\n\n// Matches a repeated regex atom followed by a valid simple regular\n// expression.  The regex atom is defined as c if escaped is false,\n// or \\c otherwise.  repeat is the repetition meta character (?, *,\n// or +).  The behavior is undefined if str contains too many\n// characters to be indexable by size_t, in which case the test will\n// probably time out anyway.  We are fine with this limitation as\n// std::string has it too.\nbool MatchRepetitionAndRegexAtHead(\n    bool escaped, char c, char repeat, const char* regex,\n    const char* str) {\n  const size_t min_count = (repeat == '+') ? 1 : 0;\n  const size_t max_count = (repeat == '?') ? 1 :\n      static_cast<size_t>(-1) - 1;\n  // We cannot call numeric_limits::max() as it conflicts with the\n  // max() macro on Windows.\n\n  for (size_t i = 0; i <= max_count; ++i) {\n    // We know that the atom matches each of the first i characters in str.\n    if (i >= min_count && MatchRegexAtHead(regex, str + i)) {\n      // We have enough matches at the head, and the tail matches too.\n      // Since we only care about *whether* the pattern matches str\n      // (as opposed to *how* it matches), there is no need to find a\n      // greedy match.\n      return true;\n    }\n    if (str[i] == '\\0' || !AtomMatchesChar(escaped, c, str[i]))\n      return false;\n  }\n  return false;\n}\n\n// Returns true if and only if regex matches a prefix of str. regex must\n// be a valid simple regular expression and not start with \"^\", or the\n// result is undefined.\nbool MatchRegexAtHead(const char* regex, const char* str) {\n  if (*regex == '\\0')  // An empty regex matches a prefix of anything.\n    return true;\n\n  // \"$\" only matches the end of a string.  Note that regex being\n  // valid guarantees that there's nothing after \"$\" in it.\n  if (*regex == '$')\n    return *str == '\\0';\n\n  // Is the first thing in regex an escape sequence?\n  const bool escaped = *regex == '\\\\';\n  if (escaped)\n    ++regex;\n  if (IsRepeat(regex[1])) {\n    // MatchRepetitionAndRegexAtHead() calls MatchRegexAtHead(), so\n    // here's an indirect recursion.  It terminates as the regex gets\n    // shorter in each recursion.\n    return MatchRepetitionAndRegexAtHead(\n        escaped, regex[0], regex[1], regex + 2, str);\n  } else {\n    // regex isn't empty, isn't \"$\", and doesn't start with a\n    // repetition.  We match the first atom of regex with the first\n    // character of str and recurse.\n    return (*str != '\\0') && AtomMatchesChar(escaped, *regex, *str) &&\n        MatchRegexAtHead(regex + 1, str + 1);\n  }\n}\n\n// Returns true if and only if regex matches any substring of str.  regex must\n// be a valid simple regular expression, or the result is undefined.\n//\n// The algorithm is recursive, but the recursion depth doesn't exceed\n// the regex length, so we won't need to worry about running out of\n// stack space normally.  In rare cases the time complexity can be\n// exponential with respect to the regex length + the string length,\n// but usually it's must faster (often close to linear).\nbool MatchRegexAnywhere(const char* regex, const char* str) {\n  if (regex == nullptr || str == nullptr) return false;\n\n  if (*regex == '^')\n    return MatchRegexAtHead(regex + 1, str);\n\n  // A successful match can be anywhere in str.\n  do {\n    if (MatchRegexAtHead(regex, str))\n      return true;\n  } while (*str++ != '\\0');\n  return false;\n}\n\n// Implements the RE class.\n\nRE::~RE() {\n  free(const_cast<char*>(pattern_));\n  free(const_cast<char*>(full_pattern_));\n}\n\n// Returns true if and only if regular expression re matches the entire str.\nbool RE::FullMatch(const char* str, const RE& re) {\n  return re.is_valid_ && MatchRegexAnywhere(re.full_pattern_, str);\n}\n\n// Returns true if and only if regular expression re matches a substring of\n// str (including str itself).\nbool RE::PartialMatch(const char* str, const RE& re) {\n  return re.is_valid_ && MatchRegexAnywhere(re.pattern_, str);\n}\n\n// Initializes an RE from its string representation.\nvoid RE::Init(const char* regex) {\n  pattern_ = full_pattern_ = nullptr;\n  if (regex != nullptr) {\n    pattern_ = posix::StrDup(regex);\n  }\n\n  is_valid_ = ValidateRegex(regex);\n  if (!is_valid_) {\n    // No need to calculate the full pattern when the regex is invalid.\n    return;\n  }\n\n  const size_t len = strlen(regex);\n  // Reserves enough bytes to hold the regular expression used for a\n  // full match: we need space to prepend a '^', append a '$', and\n  // terminate the string with '\\0'.\n  char* buffer = static_cast<char*>(malloc(len + 3));\n  full_pattern_ = buffer;\n\n  if (*regex != '^')\n    *buffer++ = '^';  // Makes sure full_pattern_ starts with '^'.\n\n  // We don't use snprintf or strncpy, as they trigger a warning when\n  // compiled with VC++ 8.0.\n  memcpy(buffer, regex, len);\n  buffer += len;\n\n  if (len == 0 || regex[len - 1] != '$')\n    *buffer++ = '$';  // Makes sure full_pattern_ ends with '$'.\n\n  *buffer = '\\0';\n}\n\n#endif  // GTEST_USES_POSIX_RE\n\nconst char kUnknownFile[] = \"unknown file\";\n\n// Formats a source file path and a line number as they would appear\n// in an error message from the compiler used to compile this code.\nGTEST_API_ ::std::string FormatFileLocation(const char* file, int line) {\n  const std::string file_name(file == nullptr ? kUnknownFile : file);\n\n  if (line < 0) {\n    return file_name + \":\";\n  }\n#ifdef _MSC_VER\n  return file_name + \"(\" + StreamableToString(line) + \"):\";\n#else\n  return file_name + \":\" + StreamableToString(line) + \":\";\n#endif  // _MSC_VER\n}\n\n// Formats a file location for compiler-independent XML output.\n// Although this function is not platform dependent, we put it next to\n// FormatFileLocation in order to contrast the two functions.\n// Note that FormatCompilerIndependentFileLocation() does NOT append colon\n// to the file location it produces, unlike FormatFileLocation().\nGTEST_API_ ::std::string FormatCompilerIndependentFileLocation(\n    const char* file, int line) {\n  const std::string file_name(file == nullptr ? kUnknownFile : file);\n\n  if (line < 0)\n    return file_name;\n  else\n    return file_name + \":\" + StreamableToString(line);\n}\n\nGTestLog::GTestLog(GTestLogSeverity severity, const char* file, int line)\n    : severity_(severity) {\n  const char* const marker =\n      severity == GTEST_INFO ?    \"[  INFO ]\" :\n      severity == GTEST_WARNING ? \"[WARNING]\" :\n      severity == GTEST_ERROR ?   \"[ ERROR ]\" : \"[ FATAL ]\";\n  GetStream() << ::std::endl << marker << \" \"\n              << FormatFileLocation(file, line).c_str() << \": \";\n}\n\n// Flushes the buffers and, if severity is GTEST_FATAL, aborts the program.\nGTestLog::~GTestLog() {\n  GetStream() << ::std::endl;\n  if (severity_ == GTEST_FATAL) {\n    fflush(stderr);\n    posix::Abort();\n  }\n}\n\n// Disable Microsoft deprecation warnings for POSIX functions called from\n// this class (creat, dup, dup2, and close)\nGTEST_DISABLE_MSC_DEPRECATED_PUSH_()\n\n#if GTEST_HAS_STREAM_REDIRECTION\n\n// Object that captures an output stream (stdout/stderr).\nclass CapturedStream {\n public:\n  // The ctor redirects the stream to a temporary file.\n  explicit CapturedStream(int fd) : fd_(fd), uncaptured_fd_(dup(fd)) {\n# if GTEST_OS_WINDOWS\n    char temp_dir_path[MAX_PATH + 1] = { '\\0' };  // NOLINT\n    char temp_file_path[MAX_PATH + 1] = { '\\0' };  // NOLINT\n\n    ::GetTempPathA(sizeof(temp_dir_path), temp_dir_path);\n    const UINT success = ::GetTempFileNameA(temp_dir_path,\n                                            \"gtest_redir\",\n                                            0,  // Generate unique file name.\n                                            temp_file_path);\n    GTEST_CHECK_(success != 0)\n        << \"Unable to create a temporary file in \" << temp_dir_path;\n    const int captured_fd = creat(temp_file_path, _S_IREAD | _S_IWRITE);\n    GTEST_CHECK_(captured_fd != -1) << \"Unable to open temporary file \"\n                                    << temp_file_path;\n    filename_ = temp_file_path;\n# else\n    // There's no guarantee that a test has write access to the current\n    // directory, so we create the temporary file in a temporary directory.\n    std::string name_template;\n\n#  if GTEST_OS_LINUX_ANDROID\n    // Note: Android applications are expected to call the framework's\n    // Context.getExternalStorageDirectory() method through JNI to get\n    // the location of the world-writable SD Card directory. However,\n    // this requires a Context handle, which cannot be retrieved\n    // globally from native code. Doing so also precludes running the\n    // code as part of a regular standalone executable, which doesn't\n    // run in a Dalvik process (e.g. when running it through 'adb shell').\n    //\n    // The location /data/local/tmp is directly accessible from native code.\n    // '/sdcard' and other variants cannot be relied on, as they are not\n    // guaranteed to be mounted, or may have a delay in mounting.\n    name_template = \"/data/local/tmp/\";\n#  elif GTEST_OS_IOS\n    char user_temp_dir[PATH_MAX + 1];\n\n    // Documented alternative to NSTemporaryDirectory() (for obtaining creating\n    // a temporary directory) at\n    // https://developer.apple.com/library/archive/documentation/Security/Conceptual/SecureCodingGuide/Articles/RaceConditions.html#//apple_ref/doc/uid/TP40002585-SW10\n    //\n    // _CS_DARWIN_USER_TEMP_DIR (as well as _CS_DARWIN_USER_CACHE_DIR) is not\n    // documented in the confstr() man page at\n    // https://developer.apple.com/library/archive/documentation/System/Conceptual/ManPages_iPhoneOS/man3/confstr.3.html#//apple_ref/doc/man/3/confstr\n    // but are still available, according to the WebKit patches at\n    // https://trac.webkit.org/changeset/262004/webkit\n    // https://trac.webkit.org/changeset/263705/webkit\n    //\n    // The confstr() implementation falls back to getenv(\"TMPDIR\"). See\n    // https://opensource.apple.com/source/Libc/Libc-1439.100.3/gen/confstr.c.auto.html\n    ::confstr(_CS_DARWIN_USER_TEMP_DIR, user_temp_dir, sizeof(user_temp_dir));\n\n    name_template = user_temp_dir;\n    if (name_template.back() != GTEST_PATH_SEP_[0])\n      name_template.push_back(GTEST_PATH_SEP_[0]);\n#  else\n    name_template = \"/tmp/\";\n#  endif\n    name_template.append(\"gtest_captured_stream.XXXXXX\");\n\n    // mkstemp() modifies the string bytes in place, and does not go beyond the\n    // string's length. This results in well-defined behavior in C++17.\n    //\n    // The const_cast is needed below C++17. The constraints on std::string\n    // implementations in C++11 and above make assumption behind the const_cast\n    // fairly safe.\n    const int captured_fd = ::mkstemp(const_cast<char*>(name_template.data()));\n    if (captured_fd == -1) {\n      GTEST_LOG_(WARNING)\n          << \"Failed to create tmp file \" << name_template\n          << \" for test; does the test have access to the /tmp directory?\";\n    }\n    filename_ = std::move(name_template);\n# endif  // GTEST_OS_WINDOWS\n    fflush(nullptr);\n    dup2(captured_fd, fd_);\n    close(captured_fd);\n  }\n\n  ~CapturedStream() {\n    remove(filename_.c_str());\n  }\n\n  std::string GetCapturedString() {\n    if (uncaptured_fd_ != -1) {\n      // Restores the original stream.\n      fflush(nullptr);\n      dup2(uncaptured_fd_, fd_);\n      close(uncaptured_fd_);\n      uncaptured_fd_ = -1;\n    }\n\n    FILE* const file = posix::FOpen(filename_.c_str(), \"r\");\n    if (file == nullptr) {\n      GTEST_LOG_(FATAL) << \"Failed to open tmp file \" << filename_\n                        << \" for capturing stream.\";\n    }\n    const std::string content = ReadEntireFile(file);\n    posix::FClose(file);\n    return content;\n  }\n\n private:\n  const int fd_;  // A stream to capture.\n  int uncaptured_fd_;\n  // Name of the temporary file holding the stderr output.\n  ::std::string filename_;\n\n  GTEST_DISALLOW_COPY_AND_ASSIGN_(CapturedStream);\n};\n\nGTEST_DISABLE_MSC_DEPRECATED_POP_()\n\nstatic CapturedStream* g_captured_stderr = nullptr;\nstatic CapturedStream* g_captured_stdout = nullptr;\n\n// Starts capturing an output stream (stdout/stderr).\nstatic void CaptureStream(int fd, const char* stream_name,\n                          CapturedStream** stream) {\n  if (*stream != nullptr) {\n    GTEST_LOG_(FATAL) << \"Only one \" << stream_name\n                      << \" capturer can exist at a time.\";\n  }\n  *stream = new CapturedStream(fd);\n}\n\n// Stops capturing the output stream and returns the captured string.\nstatic std::string GetCapturedStream(CapturedStream** captured_stream) {\n  const std::string content = (*captured_stream)->GetCapturedString();\n\n  delete *captured_stream;\n  *captured_stream = nullptr;\n\n  return content;\n}\n\n// Starts capturing stdout.\nvoid CaptureStdout() {\n  CaptureStream(kStdOutFileno, \"stdout\", &g_captured_stdout);\n}\n\n// Starts capturing stderr.\nvoid CaptureStderr() {\n  CaptureStream(kStdErrFileno, \"stderr\", &g_captured_stderr);\n}\n\n// Stops capturing stdout and returns the captured string.\nstd::string GetCapturedStdout() {\n  return GetCapturedStream(&g_captured_stdout);\n}\n\n// Stops capturing stderr and returns the captured string.\nstd::string GetCapturedStderr() {\n  return GetCapturedStream(&g_captured_stderr);\n}\n\n#endif  // GTEST_HAS_STREAM_REDIRECTION\n\n\n\n\n\nsize_t GetFileSize(FILE* file) {\n  fseek(file, 0, SEEK_END);\n  return static_cast<size_t>(ftell(file));\n}\n\nstd::string ReadEntireFile(FILE* file) {\n  const size_t file_size = GetFileSize(file);\n  char* const buffer = new char[file_size];\n\n  size_t bytes_last_read = 0;  // # of bytes read in the last fread()\n  size_t bytes_read = 0;       // # of bytes read so far\n\n  fseek(file, 0, SEEK_SET);\n\n  // Keeps reading the file until we cannot read further or the\n  // pre-determined file size is reached.\n  do {\n    bytes_last_read = fread(buffer+bytes_read, 1, file_size-bytes_read, file);\n    bytes_read += bytes_last_read;\n  } while (bytes_last_read > 0 && bytes_read < file_size);\n\n  const std::string content(buffer, bytes_read);\n  delete[] buffer;\n\n  return content;\n}\n\n#if GTEST_HAS_DEATH_TEST\nstatic const std::vector<std::string>* g_injected_test_argvs =\n    nullptr;  // Owned.\n\nstd::vector<std::string> GetInjectableArgvs() {\n  if (g_injected_test_argvs != nullptr) {\n    return *g_injected_test_argvs;\n  }\n  return GetArgvs();\n}\n\nvoid SetInjectableArgvs(const std::vector<std::string>* new_argvs) {\n  if (g_injected_test_argvs != new_argvs) delete g_injected_test_argvs;\n  g_injected_test_argvs = new_argvs;\n}\n\nvoid SetInjectableArgvs(const std::vector<std::string>& new_argvs) {\n  SetInjectableArgvs(\n      new std::vector<std::string>(new_argvs.begin(), new_argvs.end()));\n}\n\nvoid ClearInjectableArgvs() {\n  delete g_injected_test_argvs;\n  g_injected_test_argvs = nullptr;\n}\n#endif  // GTEST_HAS_DEATH_TEST\n\n#if GTEST_OS_WINDOWS_MOBILE\nnamespace posix {\nvoid Abort() {\n  DebugBreak();\n  TerminateProcess(GetCurrentProcess(), 1);\n}\n}  // namespace posix\n#endif  // GTEST_OS_WINDOWS_MOBILE\n\n// Returns the name of the environment variable corresponding to the\n// given flag.  For example, FlagToEnvVar(\"foo\") will return\n// \"GTEST_FOO\" in the open-source version.\nstatic std::string FlagToEnvVar(const char* flag) {\n  const std::string full_flag =\n      (Message() << GTEST_FLAG_PREFIX_ << flag).GetString();\n\n  Message env_var;\n  for (size_t i = 0; i != full_flag.length(); i++) {\n    env_var << ToUpper(full_flag.c_str()[i]);\n  }\n\n  return env_var.GetString();\n}\n\n// Parses 'str' for a 32-bit signed integer.  If successful, writes\n// the result to *value and returns true; otherwise leaves *value\n// unchanged and returns false.\nbool ParseInt32(const Message& src_text, const char* str, int32_t* value) {\n  // Parses the environment variable as a decimal integer.\n  char* end = nullptr;\n  const long long_value = strtol(str, &end, 10);  // NOLINT\n\n  // Has strtol() consumed all characters in the string?\n  if (*end != '\\0') {\n    // No - an invalid character was encountered.\n    Message msg;\n    msg << \"WARNING: \" << src_text\n        << \" is expected to be a 32-bit integer, but actually\"\n        << \" has value \\\"\" << str << \"\\\".\\n\";\n    printf(\"%s\", msg.GetString().c_str());\n    fflush(stdout);\n    return false;\n  }\n\n  // Is the parsed value in the range of an int32_t?\n  const auto result = static_cast<int32_t>(long_value);\n  if (long_value == LONG_MAX || long_value == LONG_MIN ||\n      // The parsed value overflows as a long.  (strtol() returns\n      // LONG_MAX or LONG_MIN when the input overflows.)\n      result != long_value\n      // The parsed value overflows as an int32_t.\n      ) {\n    Message msg;\n    msg << \"WARNING: \" << src_text\n        << \" is expected to be a 32-bit integer, but actually\"\n        << \" has value \" << str << \", which overflows.\\n\";\n    printf(\"%s\", msg.GetString().c_str());\n    fflush(stdout);\n    return false;\n  }\n\n  *value = result;\n  return true;\n}\n\n// Reads and returns the Boolean environment variable corresponding to\n// the given flag; if it's not set, returns default_value.\n//\n// The value is considered true if and only if it's not \"0\".\nbool BoolFromGTestEnv(const char* flag, bool default_value) {\n#if defined(GTEST_GET_BOOL_FROM_ENV_)\n  return GTEST_GET_BOOL_FROM_ENV_(flag, default_value);\n#else\n  const std::string env_var = FlagToEnvVar(flag);\n  const char* const string_value = posix::GetEnv(env_var.c_str());\n  return string_value == nullptr ? default_value\n                                 : strcmp(string_value, \"0\") != 0;\n#endif  // defined(GTEST_GET_BOOL_FROM_ENV_)\n}\n\n// Reads and returns a 32-bit integer stored in the environment\n// variable corresponding to the given flag; if it isn't set or\n// doesn't represent a valid 32-bit integer, returns default_value.\nint32_t Int32FromGTestEnv(const char* flag, int32_t default_value) {\n#if defined(GTEST_GET_INT32_FROM_ENV_)\n  return GTEST_GET_INT32_FROM_ENV_(flag, default_value);\n#else\n  const std::string env_var = FlagToEnvVar(flag);\n  const char* const string_value = posix::GetEnv(env_var.c_str());\n  if (string_value == nullptr) {\n    // The environment variable is not set.\n    return default_value;\n  }\n\n  int32_t result = default_value;\n  if (!ParseInt32(Message() << \"Environment variable \" << env_var,\n                  string_value, &result)) {\n    printf(\"The default value %s is used.\\n\",\n           (Message() << default_value).GetString().c_str());\n    fflush(stdout);\n    return default_value;\n  }\n\n  return result;\n#endif  // defined(GTEST_GET_INT32_FROM_ENV_)\n}\n\n// As a special case for the 'output' flag, if GTEST_OUTPUT is not\n// set, we look for XML_OUTPUT_FILE, which is set by the Bazel build\n// system.  The value of XML_OUTPUT_FILE is a filename without the\n// \"xml:\" prefix of GTEST_OUTPUT.\n// Note that this is meant to be called at the call site so it does\n// not check that the flag is 'output'\n// In essence this checks an env variable called XML_OUTPUT_FILE\n// and if it is set we prepend \"xml:\" to its value, if it not set we return \"\"\nstd::string OutputFlagAlsoCheckEnvVar(){\n  std::string default_value_for_output_flag = \"\";\n  const char* xml_output_file_env = posix::GetEnv(\"XML_OUTPUT_FILE\");\n  if (nullptr != xml_output_file_env) {\n    default_value_for_output_flag = std::string(\"xml:\") + xml_output_file_env;\n  }\n  return default_value_for_output_flag;\n}\n\n// Reads and returns the string environment variable corresponding to\n// the given flag; if it's not set, returns default_value.\nconst char* StringFromGTestEnv(const char* flag, const char* default_value) {\n#if defined(GTEST_GET_STRING_FROM_ENV_)\n  return GTEST_GET_STRING_FROM_ENV_(flag, default_value);\n#else\n  const std::string env_var = FlagToEnvVar(flag);\n  const char* const value = posix::GetEnv(env_var.c_str());\n  return value == nullptr ? default_value : value;\n#endif  // defined(GTEST_GET_STRING_FROM_ENV_)\n}\n\n}  // namespace internal\n}  // namespace testing\n"
  },
  {
    "path": "test/gtest/src/gtest-printers.cc",
    "content": "// Copyright 2007, Google Inc.\n// All rights reserved.\n//\n// Redistribution and use in source and binary forms, with or without\n// modification, are permitted provided that the following conditions are\n// met:\n//\n//     * Redistributions of source code must retain the above copyright\n// notice, this list of conditions and the following disclaimer.\n//     * Redistributions in binary form must reproduce the above\n// copyright notice, this list of conditions and the following disclaimer\n// in the documentation and/or other materials provided with the\n// distribution.\n//     * Neither the name of Google Inc. nor the names of its\n// contributors may be used to endorse or promote products derived from\n// this software without specific prior written permission.\n//\n// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n// \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n\n// Google Test - The Google C++ Testing and Mocking Framework\n//\n// This file implements a universal value printer that can print a\n// value of any type T:\n//\n//   void ::testing::internal::UniversalPrinter<T>::Print(value, ostream_ptr);\n//\n// It uses the << operator when possible, and prints the bytes in the\n// object otherwise.  A user can override its behavior for a class\n// type Foo by defining either operator<<(::std::ostream&, const Foo&)\n// or void PrintTo(const Foo&, ::std::ostream*) in the namespace that\n// defines Foo.\n\n#include \"gtest/gtest-printers.h\"\n\n#include <stdio.h>\n\n#include <cctype>\n#include <cstdint>\n#include <cwchar>\n#include <ostream>  // NOLINT\n#include <string>\n#include <type_traits>\n\n#include \"gtest/internal/gtest-port.h\"\n#include \"src/gtest-internal-inl.h\"\n\nnamespace testing {\n\nnamespace {\n\nusing ::std::ostream;\n\n// Prints a segment of bytes in the given object.\nGTEST_ATTRIBUTE_NO_SANITIZE_MEMORY_\nGTEST_ATTRIBUTE_NO_SANITIZE_ADDRESS_\nGTEST_ATTRIBUTE_NO_SANITIZE_HWADDRESS_\nGTEST_ATTRIBUTE_NO_SANITIZE_THREAD_\nvoid PrintByteSegmentInObjectTo(const unsigned char* obj_bytes, size_t start,\n                                size_t count, ostream* os) {\n  char text[5] = \"\";\n  for (size_t i = 0; i != count; i++) {\n    const size_t j = start + i;\n    if (i != 0) {\n      // Organizes the bytes into groups of 2 for easy parsing by\n      // human.\n      if ((j % 2) == 0)\n        *os << ' ';\n      else\n        *os << '-';\n    }\n    GTEST_SNPRINTF_(text, sizeof(text), \"%02X\", obj_bytes[j]);\n    *os << text;\n  }\n}\n\n// Prints the bytes in the given value to the given ostream.\nvoid PrintBytesInObjectToImpl(const unsigned char* obj_bytes, size_t count,\n                              ostream* os) {\n  // Tells the user how big the object is.\n  *os << count << \"-byte object <\";\n\n  const size_t kThreshold = 132;\n  const size_t kChunkSize = 64;\n  // If the object size is bigger than kThreshold, we'll have to omit\n  // some details by printing only the first and the last kChunkSize\n  // bytes.\n  if (count < kThreshold) {\n    PrintByteSegmentInObjectTo(obj_bytes, 0, count, os);\n  } else {\n    PrintByteSegmentInObjectTo(obj_bytes, 0, kChunkSize, os);\n    *os << \" ... \";\n    // Rounds up to 2-byte boundary.\n    const size_t resume_pos = (count - kChunkSize + 1)/2*2;\n    PrintByteSegmentInObjectTo(obj_bytes, resume_pos, count - resume_pos, os);\n  }\n  *os << \">\";\n}\n\n// Helpers for widening a character to char32_t. Since the standard does not\n// specify if char / wchar_t is signed or unsigned, it is important to first\n// convert it to the unsigned type of the same width before widening it to\n// char32_t.\ntemplate <typename CharType>\nchar32_t ToChar32(CharType in) {\n  return static_cast<char32_t>(\n      static_cast<typename std::make_unsigned<CharType>::type>(in));\n}\n\n}  // namespace\n\nnamespace internal {\n\n// Delegates to PrintBytesInObjectToImpl() to print the bytes in the\n// given object.  The delegation simplifies the implementation, which\n// uses the << operator and thus is easier done outside of the\n// ::testing::internal namespace, which contains a << operator that\n// sometimes conflicts with the one in STL.\nvoid PrintBytesInObjectTo(const unsigned char* obj_bytes, size_t count,\n                          ostream* os) {\n  PrintBytesInObjectToImpl(obj_bytes, count, os);\n}\n\n// Depending on the value of a char (or wchar_t), we print it in one\n// of three formats:\n//   - as is if it's a printable ASCII (e.g. 'a', '2', ' '),\n//   - as a hexadecimal escape sequence (e.g. '\\x7F'), or\n//   - as a special escape sequence (e.g. '\\r', '\\n').\nenum CharFormat {\n  kAsIs,\n  kHexEscape,\n  kSpecialEscape\n};\n\n// Returns true if c is a printable ASCII character.  We test the\n// value of c directly instead of calling isprint(), which is buggy on\n// Windows Mobile.\ninline bool IsPrintableAscii(char32_t c) { return 0x20 <= c && c <= 0x7E; }\n\n// Prints c (of type char, char8_t, char16_t, char32_t, or wchar_t) as a\n// character literal without the quotes, escaping it when necessary; returns how\n// c was formatted.\ntemplate <typename Char>\nstatic CharFormat PrintAsCharLiteralTo(Char c, ostream* os) {\n  const char32_t u_c = ToChar32(c);\n  switch (u_c) {\n    case L'\\0':\n      *os << \"\\\\0\";\n      break;\n    case L'\\'':\n      *os << \"\\\\'\";\n      break;\n    case L'\\\\':\n      *os << \"\\\\\\\\\";\n      break;\n    case L'\\a':\n      *os << \"\\\\a\";\n      break;\n    case L'\\b':\n      *os << \"\\\\b\";\n      break;\n    case L'\\f':\n      *os << \"\\\\f\";\n      break;\n    case L'\\n':\n      *os << \"\\\\n\";\n      break;\n    case L'\\r':\n      *os << \"\\\\r\";\n      break;\n    case L'\\t':\n      *os << \"\\\\t\";\n      break;\n    case L'\\v':\n      *os << \"\\\\v\";\n      break;\n    default:\n      if (IsPrintableAscii(u_c)) {\n        *os << static_cast<char>(c);\n        return kAsIs;\n      } else {\n        ostream::fmtflags flags = os->flags();\n        *os << \"\\\\x\" << std::hex << std::uppercase << static_cast<int>(u_c);\n        os->flags(flags);\n        return kHexEscape;\n      }\n  }\n  return kSpecialEscape;\n}\n\n// Prints a char32_t c as if it's part of a string literal, escaping it when\n// necessary; returns how c was formatted.\nstatic CharFormat PrintAsStringLiteralTo(char32_t c, ostream* os) {\n  switch (c) {\n    case L'\\'':\n      *os << \"'\";\n      return kAsIs;\n    case L'\"':\n      *os << \"\\\\\\\"\";\n      return kSpecialEscape;\n    default:\n      return PrintAsCharLiteralTo(c, os);\n  }\n}\n\nstatic const char* GetCharWidthPrefix(char) {\n  return \"\";\n}\n\nstatic const char* GetCharWidthPrefix(signed char) {\n  return \"\";\n}\n\nstatic const char* GetCharWidthPrefix(unsigned char) {\n  return \"\";\n}\n\n#ifdef __cpp_char8_t\nstatic const char* GetCharWidthPrefix(char8_t) {\n  return \"u8\";\n}\n#endif\n\nstatic const char* GetCharWidthPrefix(char16_t) {\n  return \"u\";\n}\n\nstatic const char* GetCharWidthPrefix(char32_t) {\n  return \"U\";\n}\n\nstatic const char* GetCharWidthPrefix(wchar_t) {\n  return \"L\";\n}\n\n// Prints a char c as if it's part of a string literal, escaping it when\n// necessary; returns how c was formatted.\nstatic CharFormat PrintAsStringLiteralTo(char c, ostream* os) {\n  return PrintAsStringLiteralTo(ToChar32(c), os);\n}\n\n#ifdef __cpp_char8_t\nstatic CharFormat PrintAsStringLiteralTo(char8_t c, ostream* os) {\n  return PrintAsStringLiteralTo(ToChar32(c), os);\n}\n#endif\n\nstatic CharFormat PrintAsStringLiteralTo(char16_t c, ostream* os) {\n  return PrintAsStringLiteralTo(ToChar32(c), os);\n}\n\nstatic CharFormat PrintAsStringLiteralTo(wchar_t c, ostream* os) {\n  return PrintAsStringLiteralTo(ToChar32(c), os);\n}\n\n// Prints a character c (of type char, char8_t, char16_t, char32_t, or wchar_t)\n// and its code. '\\0' is printed as \"'\\\\0'\", other unprintable characters are\n// also properly escaped using the standard C++ escape sequence.\ntemplate <typename Char>\nvoid PrintCharAndCodeTo(Char c, ostream* os) {\n  // First, print c as a literal in the most readable form we can find.\n  *os << GetCharWidthPrefix(c) << \"'\";\n  const CharFormat format = PrintAsCharLiteralTo(c, os);\n  *os << \"'\";\n\n  // To aid user debugging, we also print c's code in decimal, unless\n  // it's 0 (in which case c was printed as '\\\\0', making the code\n  // obvious).\n  if (c == 0)\n    return;\n  *os << \" (\" << static_cast<int>(c);\n\n  // For more convenience, we print c's code again in hexadecimal,\n  // unless c was already printed in the form '\\x##' or the code is in\n  // [1, 9].\n  if (format == kHexEscape || (1 <= c && c <= 9)) {\n    // Do nothing.\n  } else {\n    *os << \", 0x\" << String::FormatHexInt(static_cast<int>(c));\n  }\n  *os << \")\";\n}\n\nvoid PrintTo(unsigned char c, ::std::ostream* os) { PrintCharAndCodeTo(c, os); }\nvoid PrintTo(signed char c, ::std::ostream* os) { PrintCharAndCodeTo(c, os); }\n\n// Prints a wchar_t as a symbol if it is printable or as its internal\n// code otherwise and also as its code.  L'\\0' is printed as \"L'\\\\0'\".\nvoid PrintTo(wchar_t wc, ostream* os) { PrintCharAndCodeTo(wc, os); }\n\n// TODO(dcheng): Consider making this delegate to PrintCharAndCodeTo() as well.\nvoid PrintTo(char32_t c, ::std::ostream* os) {\n  *os << std::hex << \"U+\" << std::uppercase << std::setfill('0') << std::setw(4)\n      << static_cast<uint32_t>(c);\n}\n\n// Prints the given array of characters to the ostream.  CharType must be either\n// char, char8_t, char16_t, char32_t, or wchar_t.\n// The array starts at begin, the length is len, it may include '\\0' characters\n// and may not be NUL-terminated.\ntemplate <typename CharType>\nGTEST_ATTRIBUTE_NO_SANITIZE_MEMORY_\nGTEST_ATTRIBUTE_NO_SANITIZE_ADDRESS_\nGTEST_ATTRIBUTE_NO_SANITIZE_HWADDRESS_\nGTEST_ATTRIBUTE_NO_SANITIZE_THREAD_\nstatic CharFormat PrintCharsAsStringTo(\n    const CharType* begin, size_t len, ostream* os) {\n  const char* const quote_prefix = GetCharWidthPrefix(*begin);\n  *os << quote_prefix << \"\\\"\";\n  bool is_previous_hex = false;\n  CharFormat print_format = kAsIs;\n  for (size_t index = 0; index < len; ++index) {\n    const CharType cur = begin[index];\n    if (is_previous_hex && IsXDigit(cur)) {\n      // Previous character is of '\\x..' form and this character can be\n      // interpreted as another hexadecimal digit in its number. Break string to\n      // disambiguate.\n      *os << \"\\\" \" << quote_prefix << \"\\\"\";\n    }\n    is_previous_hex = PrintAsStringLiteralTo(cur, os) == kHexEscape;\n    // Remember if any characters required hex escaping.\n    if (is_previous_hex) {\n      print_format = kHexEscape;\n    }\n  }\n  *os << \"\\\"\";\n  return print_format;\n}\n\n// Prints a (const) char/wchar_t array of 'len' elements, starting at address\n// 'begin'.  CharType must be either char or wchar_t.\ntemplate <typename CharType>\nGTEST_ATTRIBUTE_NO_SANITIZE_MEMORY_\nGTEST_ATTRIBUTE_NO_SANITIZE_ADDRESS_\nGTEST_ATTRIBUTE_NO_SANITIZE_HWADDRESS_\nGTEST_ATTRIBUTE_NO_SANITIZE_THREAD_\nstatic void UniversalPrintCharArray(\n    const CharType* begin, size_t len, ostream* os) {\n  // The code\n  //   const char kFoo[] = \"foo\";\n  // generates an array of 4, not 3, elements, with the last one being '\\0'.\n  //\n  // Therefore when printing a char array, we don't print the last element if\n  // it's '\\0', such that the output matches the string literal as it's\n  // written in the source code.\n  if (len > 0 && begin[len - 1] == '\\0') {\n    PrintCharsAsStringTo(begin, len - 1, os);\n    return;\n  }\n\n  // If, however, the last element in the array is not '\\0', e.g.\n  //    const char kFoo[] = { 'f', 'o', 'o' };\n  // we must print the entire array.  We also print a message to indicate\n  // that the array is not NUL-terminated.\n  PrintCharsAsStringTo(begin, len, os);\n  *os << \" (no terminating NUL)\";\n}\n\n// Prints a (const) char array of 'len' elements, starting at address 'begin'.\nvoid UniversalPrintArray(const char* begin, size_t len, ostream* os) {\n  UniversalPrintCharArray(begin, len, os);\n}\n\n#ifdef __cpp_char8_t\n// Prints a (const) char8_t array of 'len' elements, starting at address\n// 'begin'.\nvoid UniversalPrintArray(const char8_t* begin, size_t len, ostream* os) {\n  UniversalPrintCharArray(begin, len, os);\n}\n#endif\n\n// Prints a (const) char16_t array of 'len' elements, starting at address\n// 'begin'.\nvoid UniversalPrintArray(const char16_t* begin, size_t len, ostream* os) {\n  UniversalPrintCharArray(begin, len, os);\n}\n\n// Prints a (const) char32_t array of 'len' elements, starting at address\n// 'begin'.\nvoid UniversalPrintArray(const char32_t* begin, size_t len, ostream* os) {\n  UniversalPrintCharArray(begin, len, os);\n}\n\n// Prints a (const) wchar_t array of 'len' elements, starting at address\n// 'begin'.\nvoid UniversalPrintArray(const wchar_t* begin, size_t len, ostream* os) {\n  UniversalPrintCharArray(begin, len, os);\n}\n\nnamespace {\n\n// Prints a null-terminated C-style string to the ostream.\ntemplate <typename Char>\nvoid PrintCStringTo(const Char* s, ostream* os) {\n  if (s == nullptr) {\n    *os << \"NULL\";\n  } else {\n    *os << ImplicitCast_<const void*>(s) << \" pointing to \";\n    PrintCharsAsStringTo(s, std::char_traits<Char>::length(s), os);\n  }\n}\n\n}  // anonymous namespace\n\nvoid PrintTo(const char* s, ostream* os) { PrintCStringTo(s, os); }\n\n#ifdef __cpp_char8_t\nvoid PrintTo(const char8_t* s, ostream* os) { PrintCStringTo(s, os); }\n#endif\n\nvoid PrintTo(const char16_t* s, ostream* os) { PrintCStringTo(s, os); }\n\nvoid PrintTo(const char32_t* s, ostream* os) { PrintCStringTo(s, os); }\n\n// MSVC compiler can be configured to define whar_t as a typedef\n// of unsigned short. Defining an overload for const wchar_t* in that case\n// would cause pointers to unsigned shorts be printed as wide strings,\n// possibly accessing more memory than intended and causing invalid\n// memory accesses. MSVC defines _NATIVE_WCHAR_T_DEFINED symbol when\n// wchar_t is implemented as a native type.\n#if !defined(_MSC_VER) || defined(_NATIVE_WCHAR_T_DEFINED)\n// Prints the given wide C string to the ostream.\nvoid PrintTo(const wchar_t* s, ostream* os) { PrintCStringTo(s, os); }\n#endif  // wchar_t is native\n\nnamespace {\n\nbool ContainsUnprintableControlCodes(const char* str, size_t length) {\n  const unsigned char *s = reinterpret_cast<const unsigned char *>(str);\n\n  for (size_t i = 0; i < length; i++) {\n    unsigned char ch = *s++;\n    if (std::iscntrl(ch)) {\n        switch (ch) {\n        case '\\t':\n        case '\\n':\n        case '\\r':\n          break;\n        default:\n          return true;\n        }\n      }\n  }\n  return false;\n}\n\nbool IsUTF8TrailByte(unsigned char t) { return 0x80 <= t && t<= 0xbf; }\n\nbool IsValidUTF8(const char* str, size_t length) {\n  const unsigned char *s = reinterpret_cast<const unsigned char *>(str);\n\n  for (size_t i = 0; i < length;) {\n    unsigned char lead = s[i++];\n\n    if (lead <= 0x7f) {\n      continue;  // single-byte character (ASCII) 0..7F\n    }\n    if (lead < 0xc2) {\n      return false;  // trail byte or non-shortest form\n    } else if (lead <= 0xdf && (i + 1) <= length && IsUTF8TrailByte(s[i])) {\n      ++i;  // 2-byte character\n    } else if (0xe0 <= lead && lead <= 0xef && (i + 2) <= length &&\n               IsUTF8TrailByte(s[i]) &&\n               IsUTF8TrailByte(s[i + 1]) &&\n               // check for non-shortest form and surrogate\n               (lead != 0xe0 || s[i] >= 0xa0) &&\n               (lead != 0xed || s[i] < 0xa0)) {\n      i += 2;  // 3-byte character\n    } else if (0xf0 <= lead && lead <= 0xf4 && (i + 3) <= length &&\n               IsUTF8TrailByte(s[i]) &&\n               IsUTF8TrailByte(s[i + 1]) &&\n               IsUTF8TrailByte(s[i + 2]) &&\n               // check for non-shortest form\n               (lead != 0xf0 || s[i] >= 0x90) &&\n               (lead != 0xf4 || s[i] < 0x90)) {\n      i += 3;  // 4-byte character\n    } else {\n      return false;\n    }\n  }\n  return true;\n}\n\nvoid ConditionalPrintAsText(const char* str, size_t length, ostream* os) {\n  if (!ContainsUnprintableControlCodes(str, length) &&\n      IsValidUTF8(str, length)) {\n    *os << \"\\n    As Text: \\\"\" << str << \"\\\"\";\n  }\n}\n\n}  // anonymous namespace\n\nvoid PrintStringTo(const ::std::string& s, ostream* os) {\n  if (PrintCharsAsStringTo(s.data(), s.size(), os) == kHexEscape) {\n    if (GTEST_FLAG(print_utf8)) {\n      ConditionalPrintAsText(s.data(), s.size(), os);\n    }\n  }\n}\n\n#ifdef __cpp_char8_t\nvoid PrintU8StringTo(const ::std::u8string& s, ostream* os) {\n  PrintCharsAsStringTo(s.data(), s.size(), os);\n}\n#endif\n\nvoid PrintU16StringTo(const ::std::u16string& s, ostream* os) {\n  PrintCharsAsStringTo(s.data(), s.size(), os);\n}\n\nvoid PrintU32StringTo(const ::std::u32string& s, ostream* os) {\n  PrintCharsAsStringTo(s.data(), s.size(), os);\n}\n\n#if GTEST_HAS_STD_WSTRING\nvoid PrintWideStringTo(const ::std::wstring& s, ostream* os) {\n  PrintCharsAsStringTo(s.data(), s.size(), os);\n}\n#endif  // GTEST_HAS_STD_WSTRING\n\n}  // namespace internal\n\n}  // namespace testing\n"
  },
  {
    "path": "test/gtest/src/gtest-test-part.cc",
    "content": "// Copyright 2008, Google Inc.\n// All rights reserved.\n//\n// Redistribution and use in source and binary forms, with or without\n// modification, are permitted provided that the following conditions are\n// met:\n//\n//     * Redistributions of source code must retain the above copyright\n// notice, this list of conditions and the following disclaimer.\n//     * Redistributions in binary form must reproduce the above\n// copyright notice, this list of conditions and the following disclaimer\n// in the documentation and/or other materials provided with the\n// distribution.\n//     * Neither the name of Google Inc. nor the names of its\n// contributors may be used to endorse or promote products derived from\n// this software without specific prior written permission.\n//\n// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n// \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n//\n// The Google C++ Testing and Mocking Framework (Google Test)\n\n#include \"gtest/gtest-test-part.h\"\n\n#include \"gtest/internal/gtest-port.h\"\n#include \"src/gtest-internal-inl.h\"\n\nnamespace testing {\n\nusing internal::GetUnitTestImpl;\n\n// Gets the summary of the failure message by omitting the stack trace\n// in it.\nstd::string TestPartResult::ExtractSummary(const char* message) {\n  const char* const stack_trace = strstr(message, internal::kStackTraceMarker);\n  return stack_trace == nullptr ? message : std::string(message, stack_trace);\n}\n\n// Prints a TestPartResult object.\nstd::ostream& operator<<(std::ostream& os, const TestPartResult& result) {\n  return os << internal::FormatFileLocation(result.file_name(),\n                                            result.line_number())\n            << \" \"\n            << (result.type() == TestPartResult::kSuccess\n                    ? \"Success\"\n                    : result.type() == TestPartResult::kSkip\n                          ? \"Skipped\"\n                          : result.type() == TestPartResult::kFatalFailure\n                                ? \"Fatal failure\"\n                                : \"Non-fatal failure\")\n            << \":\\n\"\n            << result.message() << std::endl;\n}\n\n// Appends a TestPartResult to the array.\nvoid TestPartResultArray::Append(const TestPartResult& result) {\n  array_.push_back(result);\n}\n\n// Returns the TestPartResult at the given index (0-based).\nconst TestPartResult& TestPartResultArray::GetTestPartResult(int index) const {\n  if (index < 0 || index >= size()) {\n    printf(\"\\nInvalid index (%d) into TestPartResultArray.\\n\", index);\n    internal::posix::Abort();\n  }\n\n  return array_[static_cast<size_t>(index)];\n}\n\n// Returns the number of TestPartResult objects in the array.\nint TestPartResultArray::size() const {\n  return static_cast<int>(array_.size());\n}\n\nnamespace internal {\n\nHasNewFatalFailureHelper::HasNewFatalFailureHelper()\n    : has_new_fatal_failure_(false),\n      original_reporter_(GetUnitTestImpl()->\n                         GetTestPartResultReporterForCurrentThread()) {\n  GetUnitTestImpl()->SetTestPartResultReporterForCurrentThread(this);\n}\n\nHasNewFatalFailureHelper::~HasNewFatalFailureHelper() {\n  GetUnitTestImpl()->SetTestPartResultReporterForCurrentThread(\n      original_reporter_);\n}\n\nvoid HasNewFatalFailureHelper::ReportTestPartResult(\n    const TestPartResult& result) {\n  if (result.fatally_failed())\n    has_new_fatal_failure_ = true;\n  original_reporter_->ReportTestPartResult(result);\n}\n\n}  // namespace internal\n\n}  // namespace testing\n"
  },
  {
    "path": "test/gtest/src/gtest-typed-test.cc",
    "content": "// Copyright 2008 Google Inc.\n// All Rights Reserved.\n//\n// Redistribution and use in source and binary forms, with or without\n// modification, are permitted provided that the following conditions are\n// met:\n//\n//     * Redistributions of source code must retain the above copyright\n// notice, this list of conditions and the following disclaimer.\n//     * Redistributions in binary form must reproduce the above\n// copyright notice, this list of conditions and the following disclaimer\n// in the documentation and/or other materials provided with the\n// distribution.\n//     * Neither the name of Google Inc. nor the names of its\n// contributors may be used to endorse or promote products derived from\n// this software without specific prior written permission.\n//\n// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n// \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n\n#include \"gtest/gtest-typed-test.h\"\n\n#include \"gtest/gtest.h\"\n\nnamespace testing {\nnamespace internal {\n\n// Skips to the first non-space char in str. Returns an empty string if str\n// contains only whitespace characters.\nstatic const char* SkipSpaces(const char* str) {\n  while (IsSpace(*str))\n    str++;\n  return str;\n}\n\nstatic std::vector<std::string> SplitIntoTestNames(const char* src) {\n  std::vector<std::string> name_vec;\n  src = SkipSpaces(src);\n  for (; src != nullptr; src = SkipComma(src)) {\n    name_vec.push_back(StripTrailingSpaces(GetPrefixUntilComma(src)));\n  }\n  return name_vec;\n}\n\n// Verifies that registered_tests match the test names in\n// registered_tests_; returns registered_tests if successful, or\n// aborts the program otherwise.\nconst char* TypedTestSuitePState::VerifyRegisteredTestNames(\n    const char* test_suite_name, const char* file, int line,\n    const char* registered_tests) {\n  RegisterTypeParameterizedTestSuite(test_suite_name, CodeLocation(file, line));\n\n  typedef RegisteredTestsMap::const_iterator RegisteredTestIter;\n  registered_ = true;\n\n  std::vector<std::string> name_vec = SplitIntoTestNames(registered_tests);\n\n  Message errors;\n\n  std::set<std::string> tests;\n  for (std::vector<std::string>::const_iterator name_it = name_vec.begin();\n       name_it != name_vec.end(); ++name_it) {\n    const std::string& name = *name_it;\n    if (tests.count(name) != 0) {\n      errors << \"Test \" << name << \" is listed more than once.\\n\";\n      continue;\n    }\n\n    if (registered_tests_.count(name) != 0) {\n      tests.insert(name);\n    } else {\n      errors << \"No test named \" << name\n             << \" can be found in this test suite.\\n\";\n    }\n  }\n\n  for (RegisteredTestIter it = registered_tests_.begin();\n       it != registered_tests_.end();\n       ++it) {\n    if (tests.count(it->first) == 0) {\n      errors << \"You forgot to list test \" << it->first << \".\\n\";\n    }\n  }\n\n  const std::string& errors_str = errors.GetString();\n  if (errors_str != \"\") {\n    fprintf(stderr, \"%s %s\", FormatFileLocation(file, line).c_str(),\n            errors_str.c_str());\n    fflush(stderr);\n    posix::Abort();\n  }\n\n  return registered_tests;\n}\n\n}  // namespace internal\n}  // namespace testing\n"
  },
  {
    "path": "test/gtest/src/gtest.cc",
    "content": "// Copyright 2005, Google Inc.\n// All rights reserved.\n//\n// Redistribution and use in source and binary forms, with or without\n// modification, are permitted provided that the following conditions are\n// met:\n//\n//     * Redistributions of source code must retain the above copyright\n// notice, this list of conditions and the following disclaimer.\n//     * Redistributions in binary form must reproduce the above\n// copyright notice, this list of conditions and the following disclaimer\n// in the documentation and/or other materials provided with the\n// distribution.\n//     * Neither the name of Google Inc. nor the names of its\n// contributors may be used to endorse or promote products derived from\n// this software without specific prior written permission.\n//\n// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n// \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n//\n// The Google C++ Testing and Mocking Framework (Google Test)\n\n#include \"gtest/gtest.h\"\n#include \"gtest/internal/custom/gtest.h\"\n#include \"gtest/gtest-spi.h\"\n\n#include <ctype.h>\n#include <stdarg.h>\n#include <stdio.h>\n#include <stdlib.h>\n#include <time.h>\n#include <wchar.h>\n#include <wctype.h>\n\n#include <algorithm>\n#include <chrono>  // NOLINT\n#include <cmath>\n#include <cstdint>\n#include <iomanip>\n#include <limits>\n#include <list>\n#include <map>\n#include <ostream>  // NOLINT\n#include <sstream>\n#include <vector>\n\n#if GTEST_OS_LINUX\n\n# include <fcntl.h>  // NOLINT\n# include <limits.h>  // NOLINT\n# include <sched.h>  // NOLINT\n// Declares vsnprintf().  This header is not available on Windows.\n# include <strings.h>  // NOLINT\n# include <sys/mman.h>  // NOLINT\n# include <sys/time.h>  // NOLINT\n# include <unistd.h>  // NOLINT\n# include <string>\n\n#elif GTEST_OS_ZOS\n# include <sys/time.h>  // NOLINT\n\n// On z/OS we additionally need strings.h for strcasecmp.\n# include <strings.h>  // NOLINT\n\n#elif GTEST_OS_WINDOWS_MOBILE  // We are on Windows CE.\n\n# include <windows.h>  // NOLINT\n# undef min\n\n#elif GTEST_OS_WINDOWS  // We are on Windows proper.\n\n# include <windows.h>  // NOLINT\n# undef min\n\n#ifdef _MSC_VER\n# include <crtdbg.h>  // NOLINT\n#endif\n\n# include <io.h>  // NOLINT\n# include <sys/timeb.h>  // NOLINT\n# include <sys/types.h>  // NOLINT\n# include <sys/stat.h>  // NOLINT\n\n# if GTEST_OS_WINDOWS_MINGW\n#  include <sys/time.h>  // NOLINT\n# endif  // GTEST_OS_WINDOWS_MINGW\n\n#else\n\n// cpplint thinks that the header is already included, so we want to\n// silence it.\n# include <sys/time.h>  // NOLINT\n# include <unistd.h>  // NOLINT\n\n#endif  // GTEST_OS_LINUX\n\n#if GTEST_HAS_EXCEPTIONS\n# include <stdexcept>\n#endif\n\n#if GTEST_CAN_STREAM_RESULTS_\n# include <arpa/inet.h>  // NOLINT\n# include <netdb.h>  // NOLINT\n# include <sys/socket.h>  // NOLINT\n# include <sys/types.h>  // NOLINT\n#endif\n\n#include \"src/gtest-internal-inl.h\"\n\n#if GTEST_OS_WINDOWS\n# define vsnprintf _vsnprintf\n#endif  // GTEST_OS_WINDOWS\n\n#if GTEST_OS_MAC\n#ifndef GTEST_OS_IOS\n#include <crt_externs.h>\n#endif\n#endif\n\n#if GTEST_HAS_ABSL\n#include \"absl/debugging/failure_signal_handler.h\"\n#include \"absl/debugging/stacktrace.h\"\n#include \"absl/debugging/symbolize.h\"\n#include \"absl/strings/str_cat.h\"\n#endif  // GTEST_HAS_ABSL\n\nnamespace testing {\n\nusing internal::CountIf;\nusing internal::ForEach;\nusing internal::GetElementOr;\nusing internal::Shuffle;\n\n// Constants.\n\n// A test whose test suite name or test name matches this filter is\n// disabled and not run.\nstatic const char kDisableTestFilter[] = \"DISABLED_*:*/DISABLED_*\";\n\n// A test suite whose name matches this filter is considered a death\n// test suite and will be run before test suites whose name doesn't\n// match this filter.\nstatic const char kDeathTestSuiteFilter[] = \"*DeathTest:*DeathTest/*\";\n\n// A test filter that matches everything.\nstatic const char kUniversalFilter[] = \"*\";\n\n// The default output format.\nstatic const char kDefaultOutputFormat[] = \"xml\";\n// The default output file.\nstatic const char kDefaultOutputFile[] = \"test_detail\";\n\n// The environment variable name for the test shard index.\nstatic const char kTestShardIndex[] = \"GTEST_SHARD_INDEX\";\n// The environment variable name for the total number of test shards.\nstatic const char kTestTotalShards[] = \"GTEST_TOTAL_SHARDS\";\n// The environment variable name for the test shard status file.\nstatic const char kTestShardStatusFile[] = \"GTEST_SHARD_STATUS_FILE\";\n\nnamespace internal {\n\n// The text used in failure messages to indicate the start of the\n// stack trace.\nconst char kStackTraceMarker[] = \"\\nStack trace:\\n\";\n\n// g_help_flag is true if and only if the --help flag or an equivalent form\n// is specified on the command line.\nbool g_help_flag = false;\n\n// Utilty function to Open File for Writing\nstatic FILE* OpenFileForWriting(const std::string& output_file) {\n  FILE* fileout = nullptr;\n  FilePath output_file_path(output_file);\n  FilePath output_dir(output_file_path.RemoveFileName());\n\n  if (output_dir.CreateDirectoriesRecursively()) {\n    fileout = posix::FOpen(output_file.c_str(), \"w\");\n  }\n  if (fileout == nullptr) {\n    GTEST_LOG_(FATAL) << \"Unable to open file \\\"\" << output_file << \"\\\"\";\n  }\n  return fileout;\n}\n\n}  // namespace internal\n\n// Bazel passes in the argument to '--test_filter' via the TESTBRIDGE_TEST_ONLY\n// environment variable.\nstatic const char* GetDefaultFilter() {\n  const char* const testbridge_test_only =\n      internal::posix::GetEnv(\"TESTBRIDGE_TEST_ONLY\");\n  if (testbridge_test_only != nullptr) {\n    return testbridge_test_only;\n  }\n  return kUniversalFilter;\n}\n\n// Bazel passes in the argument to '--test_runner_fail_fast' via the\n// TESTBRIDGE_TEST_RUNNER_FAIL_FAST environment variable.\nstatic bool GetDefaultFailFast() {\n  const char* const testbridge_test_runner_fail_fast =\n      internal::posix::GetEnv(\"TESTBRIDGE_TEST_RUNNER_FAIL_FAST\");\n  if (testbridge_test_runner_fail_fast != nullptr) {\n    return strcmp(testbridge_test_runner_fail_fast, \"1\") == 0;\n  }\n  return false;\n}\n\nGTEST_DEFINE_bool_(\n    fail_fast, internal::BoolFromGTestEnv(\"fail_fast\", GetDefaultFailFast()),\n    \"True if and only if a test failure should stop further test execution.\");\n\nGTEST_DEFINE_bool_(\n    also_run_disabled_tests,\n    internal::BoolFromGTestEnv(\"also_run_disabled_tests\", false),\n    \"Run disabled tests too, in addition to the tests normally being run.\");\n\nGTEST_DEFINE_bool_(\n    break_on_failure, internal::BoolFromGTestEnv(\"break_on_failure\", false),\n    \"True if and only if a failed assertion should be a debugger \"\n    \"break-point.\");\n\nGTEST_DEFINE_bool_(catch_exceptions,\n                   internal::BoolFromGTestEnv(\"catch_exceptions\", true),\n                   \"True if and only if \" GTEST_NAME_\n                   \" should catch exceptions and treat them as test failures.\");\n\nGTEST_DEFINE_string_(\n    color,\n    internal::StringFromGTestEnv(\"color\", \"auto\"),\n    \"Whether to use colors in the output.  Valid values: yes, no, \"\n    \"and auto.  'auto' means to use colors if the output is \"\n    \"being sent to a terminal and the TERM environment variable \"\n    \"is set to a terminal type that supports colors.\");\n\nGTEST_DEFINE_string_(\n    filter,\n    internal::StringFromGTestEnv(\"filter\", GetDefaultFilter()),\n    \"A colon-separated list of glob (not regex) patterns \"\n    \"for filtering the tests to run, optionally followed by a \"\n    \"'-' and a : separated list of negative patterns (tests to \"\n    \"exclude).  A test is run if it matches one of the positive \"\n    \"patterns and does not match any of the negative patterns.\");\n\nGTEST_DEFINE_bool_(\n    install_failure_signal_handler,\n    internal::BoolFromGTestEnv(\"install_failure_signal_handler\", false),\n    \"If true and supported on the current platform, \" GTEST_NAME_ \" should \"\n    \"install a signal handler that dumps debugging information when fatal \"\n    \"signals are raised.\");\n\nGTEST_DEFINE_bool_(list_tests, false,\n                   \"List all tests without running them.\");\n\n// The net priority order after flag processing is thus:\n//   --gtest_output command line flag\n//   GTEST_OUTPUT environment variable\n//   XML_OUTPUT_FILE environment variable\n//   ''\nGTEST_DEFINE_string_(\n    output,\n    internal::StringFromGTestEnv(\"output\",\n      internal::OutputFlagAlsoCheckEnvVar().c_str()),\n    \"A format (defaults to \\\"xml\\\" but can be specified to be \\\"json\\\"), \"\n    \"optionally followed by a colon and an output file name or directory. \"\n    \"A directory is indicated by a trailing pathname separator. \"\n    \"Examples: \\\"xml:filename.xml\\\", \\\"xml::directoryname/\\\". \"\n    \"If a directory is specified, output files will be created \"\n    \"within that directory, with file-names based on the test \"\n    \"executable's name and, if necessary, made unique by adding \"\n    \"digits.\");\n\nGTEST_DEFINE_bool_(\n    brief, internal::BoolFromGTestEnv(\"brief\", false),\n    \"True if only test failures should be displayed in text output.\");\n\nGTEST_DEFINE_bool_(print_time, internal::BoolFromGTestEnv(\"print_time\", true),\n                   \"True if and only if \" GTEST_NAME_\n                   \" should display elapsed time in text output.\");\n\nGTEST_DEFINE_bool_(print_utf8, internal::BoolFromGTestEnv(\"print_utf8\", true),\n                   \"True if and only if \" GTEST_NAME_\n                   \" prints UTF8 characters as text.\");\n\nGTEST_DEFINE_int32_(\n    random_seed,\n    internal::Int32FromGTestEnv(\"random_seed\", 0),\n    \"Random number seed to use when shuffling test orders.  Must be in range \"\n    \"[1, 99999], or 0 to use a seed based on the current time.\");\n\nGTEST_DEFINE_int32_(\n    repeat,\n    internal::Int32FromGTestEnv(\"repeat\", 1),\n    \"How many times to repeat each test.  Specify a negative number \"\n    \"for repeating forever.  Useful for shaking out flaky tests.\");\n\nGTEST_DEFINE_bool_(show_internal_stack_frames, false,\n                   \"True if and only if \" GTEST_NAME_\n                   \" should include internal stack frames when \"\n                   \"printing test failure stack traces.\");\n\nGTEST_DEFINE_bool_(shuffle, internal::BoolFromGTestEnv(\"shuffle\", false),\n                   \"True if and only if \" GTEST_NAME_\n                   \" should randomize tests' order on every run.\");\n\nGTEST_DEFINE_int32_(\n    stack_trace_depth,\n    internal::Int32FromGTestEnv(\"stack_trace_depth\", kMaxStackTraceDepth),\n    \"The maximum number of stack frames to print when an \"\n    \"assertion fails.  The valid range is 0 through 100, inclusive.\");\n\nGTEST_DEFINE_string_(\n    stream_result_to,\n    internal::StringFromGTestEnv(\"stream_result_to\", \"\"),\n    \"This flag specifies the host name and the port number on which to stream \"\n    \"test results. Example: \\\"localhost:555\\\". The flag is effective only on \"\n    \"Linux.\");\n\nGTEST_DEFINE_bool_(\n    throw_on_failure,\n    internal::BoolFromGTestEnv(\"throw_on_failure\", false),\n    \"When this flag is specified, a failed assertion will throw an exception \"\n    \"if exceptions are enabled or exit the program with a non-zero code \"\n    \"otherwise. For use with an external test framework.\");\n\n#if GTEST_USE_OWN_FLAGFILE_FLAG_\nGTEST_DEFINE_string_(\n    flagfile,\n    internal::StringFromGTestEnv(\"flagfile\", \"\"),\n    \"This flag specifies the flagfile to read command-line flags from.\");\n#endif  // GTEST_USE_OWN_FLAGFILE_FLAG_\n\nnamespace internal {\n\n// Generates a random number from [0, range), using a Linear\n// Congruential Generator (LCG).  Crashes if 'range' is 0 or greater\n// than kMaxRange.\nuint32_t Random::Generate(uint32_t range) {\n  // These constants are the same as are used in glibc's rand(3).\n  // Use wider types than necessary to prevent unsigned overflow diagnostics.\n  state_ = static_cast<uint32_t>(1103515245ULL*state_ + 12345U) % kMaxRange;\n\n  GTEST_CHECK_(range > 0)\n      << \"Cannot generate a number in the range [0, 0).\";\n  GTEST_CHECK_(range <= kMaxRange)\n      << \"Generation of a number in [0, \" << range << \") was requested, \"\n      << \"but this can only generate numbers in [0, \" << kMaxRange << \").\";\n\n  // Converting via modulus introduces a bit of downward bias, but\n  // it's simple, and a linear congruential generator isn't too good\n  // to begin with.\n  return state_ % range;\n}\n\n// GTestIsInitialized() returns true if and only if the user has initialized\n// Google Test.  Useful for catching the user mistake of not initializing\n// Google Test before calling RUN_ALL_TESTS().\nstatic bool GTestIsInitialized() { return GetArgvs().size() > 0; }\n\n// Iterates over a vector of TestSuites, keeping a running sum of the\n// results of calling a given int-returning method on each.\n// Returns the sum.\nstatic int SumOverTestSuiteList(const std::vector<TestSuite*>& case_list,\n                                int (TestSuite::*method)() const) {\n  int sum = 0;\n  for (size_t i = 0; i < case_list.size(); i++) {\n    sum += (case_list[i]->*method)();\n  }\n  return sum;\n}\n\n// Returns true if and only if the test suite passed.\nstatic bool TestSuitePassed(const TestSuite* test_suite) {\n  return test_suite->should_run() && test_suite->Passed();\n}\n\n// Returns true if and only if the test suite failed.\nstatic bool TestSuiteFailed(const TestSuite* test_suite) {\n  return test_suite->should_run() && test_suite->Failed();\n}\n\n// Returns true if and only if test_suite contains at least one test that\n// should run.\nstatic bool ShouldRunTestSuite(const TestSuite* test_suite) {\n  return test_suite->should_run();\n}\n\n// AssertHelper constructor.\nAssertHelper::AssertHelper(TestPartResult::Type type,\n                           const char* file,\n                           int line,\n                           const char* message)\n    : data_(new AssertHelperData(type, file, line, message)) {\n}\n\nAssertHelper::~AssertHelper() {\n  delete data_;\n}\n\n// Message assignment, for assertion streaming support.\nvoid AssertHelper::operator=(const Message& message) const {\n  UnitTest::GetInstance()->\n    AddTestPartResult(data_->type, data_->file, data_->line,\n                      AppendUserMessage(data_->message, message),\n                      UnitTest::GetInstance()->impl()\n                      ->CurrentOsStackTraceExceptTop(1)\n                      // Skips the stack frame for this function itself.\n                      );  // NOLINT\n}\n\nnamespace {\n\n// When TEST_P is found without a matching INSTANTIATE_TEST_SUITE_P\n// to creates test cases for it, a syntetic test case is\n// inserted to report ether an error or a log message.\n//\n// This configuration bit will likely be removed at some point.\nconstexpr bool kErrorOnUninstantiatedParameterizedTest = true;\nconstexpr bool kErrorOnUninstantiatedTypeParameterizedTest = true;\n\n// A test that fails at a given file/line location with a given message.\nclass FailureTest : public Test {\n public:\n  explicit FailureTest(const CodeLocation& loc, std::string error_message,\n                       bool as_error)\n      : loc_(loc),\n        error_message_(std::move(error_message)),\n        as_error_(as_error) {}\n\n  void TestBody() override {\n    if (as_error_) {\n      AssertHelper(TestPartResult::kNonFatalFailure, loc_.file.c_str(),\n                   loc_.line, \"\") = Message() << error_message_;\n    } else {\n      std::cout << error_message_ << std::endl;\n    }\n  }\n\n private:\n  const CodeLocation loc_;\n  const std::string error_message_;\n  const bool as_error_;\n};\n\n\n}  // namespace\n\nstd::set<std::string>* GetIgnoredParameterizedTestSuites() {\n  return UnitTest::GetInstance()->impl()->ignored_parameterized_test_suites();\n}\n\n// Add a given test_suit to the list of them allow to go un-instantiated.\nMarkAsIgnored::MarkAsIgnored(const char* test_suite) {\n  GetIgnoredParameterizedTestSuites()->insert(test_suite);\n}\n\n// If this parameterized test suite has no instantiations (and that\n// has not been marked as okay), emit a test case reporting that.\nvoid InsertSyntheticTestCase(const std::string& name, CodeLocation location,\n                             bool has_test_p) {\n  const auto& ignored = *GetIgnoredParameterizedTestSuites();\n  if (ignored.find(name) != ignored.end()) return;\n\n  const char kMissingInstantiation[] =  //\n      \" is defined via TEST_P, but never instantiated. None of the test cases \"\n      \"will run. Either no INSTANTIATE_TEST_SUITE_P is provided or the only \"\n      \"ones provided expand to nothing.\"\n      \"\\n\\n\"\n      \"Ideally, TEST_P definitions should only ever be included as part of \"\n      \"binaries that intend to use them. (As opposed to, for example, being \"\n      \"placed in a library that may be linked in to get other utilities.)\";\n\n  const char kMissingTestCase[] =  //\n      \" is instantiated via INSTANTIATE_TEST_SUITE_P, but no tests are \"\n      \"defined via TEST_P . No test cases will run.\"\n      \"\\n\\n\"\n      \"Ideally, INSTANTIATE_TEST_SUITE_P should only ever be invoked from \"\n      \"code that always depend on code that provides TEST_P. Failing to do \"\n      \"so is often an indication of dead code, e.g. the last TEST_P was \"\n      \"removed but the rest got left behind.\";\n\n  std::string message =\n      \"Parameterized test suite \" + name +\n      (has_test_p ? kMissingInstantiation : kMissingTestCase) +\n      \"\\n\\n\"\n      \"To suppress this error for this test suite, insert the following line \"\n      \"(in a non-header) in the namespace it is defined in:\"\n      \"\\n\\n\"\n      \"GTEST_ALLOW_UNINSTANTIATED_PARAMETERIZED_TEST(\" + name + \");\";\n\n  std::string full_name = \"UninstantiatedParameterizedTestSuite<\" + name + \">\";\n  RegisterTest(  //\n      \"GoogleTestVerification\", full_name.c_str(),\n      nullptr,  // No type parameter.\n      nullptr,  // No value parameter.\n      location.file.c_str(), location.line, [message, location] {\n        return new FailureTest(location, message,\n                               kErrorOnUninstantiatedParameterizedTest);\n      });\n}\n\nvoid RegisterTypeParameterizedTestSuite(const char* test_suite_name,\n                                        CodeLocation code_location) {\n  GetUnitTestImpl()->type_parameterized_test_registry().RegisterTestSuite(\n      test_suite_name, code_location);\n}\n\nvoid RegisterTypeParameterizedTestSuiteInstantiation(const char* case_name) {\n  GetUnitTestImpl()\n      ->type_parameterized_test_registry()\n      .RegisterInstantiation(case_name);\n}\n\nvoid TypeParameterizedTestSuiteRegistry::RegisterTestSuite(\n    const char* test_suite_name, CodeLocation code_location) {\n  suites_.emplace(std::string(test_suite_name),\n                 TypeParameterizedTestSuiteInfo(code_location));\n}\n\nvoid TypeParameterizedTestSuiteRegistry::RegisterInstantiation(\n        const char* test_suite_name) {\n  auto it = suites_.find(std::string(test_suite_name));\n  if (it != suites_.end()) {\n    it->second.instantiated = true;\n  } else {\n    GTEST_LOG_(ERROR) << \"Unknown type parameterized test suit '\"\n                      << test_suite_name << \"'\";\n  }\n}\n\nvoid TypeParameterizedTestSuiteRegistry::CheckForInstantiations() {\n  const auto& ignored = *GetIgnoredParameterizedTestSuites();\n  for (const auto& testcase : suites_) {\n    if (testcase.second.instantiated) continue;\n    if (ignored.find(testcase.first) != ignored.end()) continue;\n\n    std::string message =\n        \"Type parameterized test suite \" + testcase.first +\n        \" is defined via REGISTER_TYPED_TEST_SUITE_P, but never instantiated \"\n        \"via INSTANTIATE_TYPED_TEST_SUITE_P. None of the test cases will run.\"\n        \"\\n\\n\"\n        \"Ideally, TYPED_TEST_P definitions should only ever be included as \"\n        \"part of binaries that intend to use them. (As opposed to, for \"\n        \"example, being placed in a library that may be linked in to get other \"\n        \"utilities.)\"\n        \"\\n\\n\"\n        \"To suppress this error for this test suite, insert the following line \"\n        \"(in a non-header) in the namespace it is defined in:\"\n        \"\\n\\n\"\n        \"GTEST_ALLOW_UNINSTANTIATED_PARAMETERIZED_TEST(\" +\n        testcase.first + \");\";\n\n    std::string full_name =\n        \"UninstantiatedTypeParameterizedTestSuite<\" + testcase.first + \">\";\n    RegisterTest(  //\n        \"GoogleTestVerification\", full_name.c_str(),\n        nullptr,  // No type parameter.\n        nullptr,  // No value parameter.\n        testcase.second.code_location.file.c_str(),\n        testcase.second.code_location.line, [message, testcase] {\n          return new FailureTest(testcase.second.code_location, message,\n                                 kErrorOnUninstantiatedTypeParameterizedTest);\n        });\n  }\n}\n\n// A copy of all command line arguments.  Set by InitGoogleTest().\nstatic ::std::vector<std::string> g_argvs;\n\n::std::vector<std::string> GetArgvs() {\n#if defined(GTEST_CUSTOM_GET_ARGVS_)\n  // GTEST_CUSTOM_GET_ARGVS_() may return a container of std::string or\n  // ::string. This code converts it to the appropriate type.\n  const auto& custom = GTEST_CUSTOM_GET_ARGVS_();\n  return ::std::vector<std::string>(custom.begin(), custom.end());\n#else   // defined(GTEST_CUSTOM_GET_ARGVS_)\n  return g_argvs;\n#endif  // defined(GTEST_CUSTOM_GET_ARGVS_)\n}\n\n// Returns the current application's name, removing directory path if that\n// is present.\nFilePath GetCurrentExecutableName() {\n  FilePath result;\n\n#if GTEST_OS_WINDOWS || GTEST_OS_OS2\n  result.Set(FilePath(GetArgvs()[0]).RemoveExtension(\"exe\"));\n#else\n  result.Set(FilePath(GetArgvs()[0]));\n#endif  // GTEST_OS_WINDOWS\n\n  return result.RemoveDirectoryName();\n}\n\n// Functions for processing the gtest_output flag.\n\n// Returns the output format, or \"\" for normal printed output.\nstd::string UnitTestOptions::GetOutputFormat() {\n  const char* const gtest_output_flag = GTEST_FLAG(output).c_str();\n  const char* const colon = strchr(gtest_output_flag, ':');\n  return (colon == nullptr)\n             ? std::string(gtest_output_flag)\n             : std::string(gtest_output_flag,\n                           static_cast<size_t>(colon - gtest_output_flag));\n}\n\n// Returns the name of the requested output file, or the default if none\n// was explicitly specified.\nstd::string UnitTestOptions::GetAbsolutePathToOutputFile() {\n  const char* const gtest_output_flag = GTEST_FLAG(output).c_str();\n\n  std::string format = GetOutputFormat();\n  if (format.empty())\n    format = std::string(kDefaultOutputFormat);\n\n  const char* const colon = strchr(gtest_output_flag, ':');\n  if (colon == nullptr)\n    return internal::FilePath::MakeFileName(\n        internal::FilePath(\n            UnitTest::GetInstance()->original_working_dir()),\n        internal::FilePath(kDefaultOutputFile), 0,\n        format.c_str()).string();\n\n  internal::FilePath output_name(colon + 1);\n  if (!output_name.IsAbsolutePath())\n    output_name = internal::FilePath::ConcatPaths(\n        internal::FilePath(UnitTest::GetInstance()->original_working_dir()),\n        internal::FilePath(colon + 1));\n\n  if (!output_name.IsDirectory())\n    return output_name.string();\n\n  internal::FilePath result(internal::FilePath::GenerateUniqueFileName(\n      output_name, internal::GetCurrentExecutableName(),\n      GetOutputFormat().c_str()));\n  return result.string();\n}\n\n// Returns true if and only if the wildcard pattern matches the string. Each\n// pattern consists of regular characters, single-character wildcards (?), and\n// multi-character wildcards (*).\n//\n// This function implements a linear-time string globbing algorithm based on\n// https://research.swtch.com/glob.\nstatic bool PatternMatchesString(const std::string& name_str,\n                                 const char* pattern, const char* pattern_end) {\n  const char* name = name_str.c_str();\n  const char* const name_begin = name;\n  const char* const name_end = name + name_str.size();\n\n  const char* pattern_next = pattern;\n  const char* name_next = name;\n\n  while (pattern < pattern_end || name < name_end) {\n    if (pattern < pattern_end) {\n      switch (*pattern) {\n        default:  // Match an ordinary character.\n          if (name < name_end && *name == *pattern) {\n            ++pattern;\n            ++name;\n            continue;\n          }\n          break;\n        case '?':  // Match any single character.\n          if (name < name_end) {\n            ++pattern;\n            ++name;\n            continue;\n          }\n          break;\n        case '*':\n          // Match zero or more characters. Start by skipping over the wildcard\n          // and matching zero characters from name. If that fails, restart and\n          // match one more character than the last attempt.\n          pattern_next = pattern;\n          name_next = name + 1;\n          ++pattern;\n          continue;\n      }\n    }\n    // Failed to match a character. Restart if possible.\n    if (name_begin < name_next && name_next <= name_end) {\n      pattern = pattern_next;\n      name = name_next;\n      continue;\n    }\n    return false;\n  }\n  return true;\n}\n\nbool UnitTestOptions::MatchesFilter(const std::string& name_str,\n                                    const char* filter) {\n  // The filter is a list of patterns separated by colons (:).\n  const char* pattern = filter;\n  while (true) {\n    // Find the bounds of this pattern.\n    const char* const next_sep = strchr(pattern, ':');\n    const char* const pattern_end =\n        next_sep != nullptr ? next_sep : pattern + strlen(pattern);\n\n    // Check if this pattern matches name_str.\n    if (PatternMatchesString(name_str, pattern, pattern_end)) {\n      return true;\n    }\n\n    // Give up on this pattern. However, if we found a pattern separator (:),\n    // advance to the next pattern (skipping over the separator) and restart.\n    if (next_sep == nullptr) {\n      return false;\n    }\n    pattern = next_sep + 1;\n  }\n  return true;\n}\n\n// Returns true if and only if the user-specified filter matches the test\n// suite name and the test name.\nbool UnitTestOptions::FilterMatchesTest(const std::string& test_suite_name,\n                                        const std::string& test_name) {\n  const std::string& full_name = test_suite_name + \".\" + test_name.c_str();\n\n  // Split --gtest_filter at '-', if there is one, to separate into\n  // positive filter and negative filter portions\n  const char* const p = GTEST_FLAG(filter).c_str();\n  const char* const dash = strchr(p, '-');\n  std::string positive;\n  std::string negative;\n  if (dash == nullptr) {\n    positive = GTEST_FLAG(filter).c_str();  // Whole string is a positive filter\n    negative = \"\";\n  } else {\n    positive = std::string(p, dash);   // Everything up to the dash\n    negative = std::string(dash + 1);  // Everything after the dash\n    if (positive.empty()) {\n      // Treat '-test1' as the same as '*-test1'\n      positive = kUniversalFilter;\n    }\n  }\n\n  // A filter is a colon-separated list of patterns.  It matches a\n  // test if any pattern in it matches the test.\n  return (MatchesFilter(full_name, positive.c_str()) &&\n          !MatchesFilter(full_name, negative.c_str()));\n}\n\n#if GTEST_HAS_SEH\n// Returns EXCEPTION_EXECUTE_HANDLER if Google Test should handle the\n// given SEH exception, or EXCEPTION_CONTINUE_SEARCH otherwise.\n// This function is useful as an __except condition.\nint UnitTestOptions::GTestShouldProcessSEH(DWORD exception_code) {\n  // Google Test should handle a SEH exception if:\n  //   1. the user wants it to, AND\n  //   2. this is not a breakpoint exception, AND\n  //   3. this is not a C++ exception (VC++ implements them via SEH,\n  //      apparently).\n  //\n  // SEH exception code for C++ exceptions.\n  // (see http://support.microsoft.com/kb/185294 for more information).\n  const DWORD kCxxExceptionCode = 0xe06d7363;\n\n  bool should_handle = true;\n\n  if (!GTEST_FLAG(catch_exceptions))\n    should_handle = false;\n  else if (exception_code == EXCEPTION_BREAKPOINT)\n    should_handle = false;\n  else if (exception_code == kCxxExceptionCode)\n    should_handle = false;\n\n  return should_handle ? EXCEPTION_EXECUTE_HANDLER : EXCEPTION_CONTINUE_SEARCH;\n}\n#endif  // GTEST_HAS_SEH\n\n}  // namespace internal\n\n// The c'tor sets this object as the test part result reporter used by\n// Google Test.  The 'result' parameter specifies where to report the\n// results. Intercepts only failures from the current thread.\nScopedFakeTestPartResultReporter::ScopedFakeTestPartResultReporter(\n    TestPartResultArray* result)\n    : intercept_mode_(INTERCEPT_ONLY_CURRENT_THREAD),\n      result_(result) {\n  Init();\n}\n\n// The c'tor sets this object as the test part result reporter used by\n// Google Test.  The 'result' parameter specifies where to report the\n// results.\nScopedFakeTestPartResultReporter::ScopedFakeTestPartResultReporter(\n    InterceptMode intercept_mode, TestPartResultArray* result)\n    : intercept_mode_(intercept_mode),\n      result_(result) {\n  Init();\n}\n\nvoid ScopedFakeTestPartResultReporter::Init() {\n  internal::UnitTestImpl* const impl = internal::GetUnitTestImpl();\n  if (intercept_mode_ == INTERCEPT_ALL_THREADS) {\n    old_reporter_ = impl->GetGlobalTestPartResultReporter();\n    impl->SetGlobalTestPartResultReporter(this);\n  } else {\n    old_reporter_ = impl->GetTestPartResultReporterForCurrentThread();\n    impl->SetTestPartResultReporterForCurrentThread(this);\n  }\n}\n\n// The d'tor restores the test part result reporter used by Google Test\n// before.\nScopedFakeTestPartResultReporter::~ScopedFakeTestPartResultReporter() {\n  internal::UnitTestImpl* const impl = internal::GetUnitTestImpl();\n  if (intercept_mode_ == INTERCEPT_ALL_THREADS) {\n    impl->SetGlobalTestPartResultReporter(old_reporter_);\n  } else {\n    impl->SetTestPartResultReporterForCurrentThread(old_reporter_);\n  }\n}\n\n// Increments the test part result count and remembers the result.\n// This method is from the TestPartResultReporterInterface interface.\nvoid ScopedFakeTestPartResultReporter::ReportTestPartResult(\n    const TestPartResult& result) {\n  result_->Append(result);\n}\n\nnamespace internal {\n\n// Returns the type ID of ::testing::Test.  We should always call this\n// instead of GetTypeId< ::testing::Test>() to get the type ID of\n// testing::Test.  This is to work around a suspected linker bug when\n// using Google Test as a framework on Mac OS X.  The bug causes\n// GetTypeId< ::testing::Test>() to return different values depending\n// on whether the call is from the Google Test framework itself or\n// from user test code.  GetTestTypeId() is guaranteed to always\n// return the same value, as it always calls GetTypeId<>() from the\n// gtest.cc, which is within the Google Test framework.\nTypeId GetTestTypeId() {\n  return GetTypeId<Test>();\n}\n\n// The value of GetTestTypeId() as seen from within the Google Test\n// library.  This is solely for testing GetTestTypeId().\nextern const TypeId kTestTypeIdInGoogleTest = GetTestTypeId();\n\n// This predicate-formatter checks that 'results' contains a test part\n// failure of the given type and that the failure message contains the\n// given substring.\nstatic AssertionResult HasOneFailure(const char* /* results_expr */,\n                                     const char* /* type_expr */,\n                                     const char* /* substr_expr */,\n                                     const TestPartResultArray& results,\n                                     TestPartResult::Type type,\n                                     const std::string& substr) {\n  const std::string expected(type == TestPartResult::kFatalFailure ?\n                        \"1 fatal failure\" :\n                        \"1 non-fatal failure\");\n  Message msg;\n  if (results.size() != 1) {\n    msg << \"Expected: \" << expected << \"\\n\"\n        << \"  Actual: \" << results.size() << \" failures\";\n    for (int i = 0; i < results.size(); i++) {\n      msg << \"\\n\" << results.GetTestPartResult(i);\n    }\n    return AssertionFailure() << msg;\n  }\n\n  const TestPartResult& r = results.GetTestPartResult(0);\n  if (r.type() != type) {\n    return AssertionFailure() << \"Expected: \" << expected << \"\\n\"\n                              << \"  Actual:\\n\"\n                              << r;\n  }\n\n  if (strstr(r.message(), substr.c_str()) == nullptr) {\n    return AssertionFailure() << \"Expected: \" << expected << \" containing \\\"\"\n                              << substr << \"\\\"\\n\"\n                              << \"  Actual:\\n\"\n                              << r;\n  }\n\n  return AssertionSuccess();\n}\n\n// The constructor of SingleFailureChecker remembers where to look up\n// test part results, what type of failure we expect, and what\n// substring the failure message should contain.\nSingleFailureChecker::SingleFailureChecker(const TestPartResultArray* results,\n                                           TestPartResult::Type type,\n                                           const std::string& substr)\n    : results_(results), type_(type), substr_(substr) {}\n\n// The destructor of SingleFailureChecker verifies that the given\n// TestPartResultArray contains exactly one failure that has the given\n// type and contains the given substring.  If that's not the case, a\n// non-fatal failure will be generated.\nSingleFailureChecker::~SingleFailureChecker() {\n  EXPECT_PRED_FORMAT3(HasOneFailure, *results_, type_, substr_);\n}\n\nDefaultGlobalTestPartResultReporter::DefaultGlobalTestPartResultReporter(\n    UnitTestImpl* unit_test) : unit_test_(unit_test) {}\n\nvoid DefaultGlobalTestPartResultReporter::ReportTestPartResult(\n    const TestPartResult& result) {\n  unit_test_->current_test_result()->AddTestPartResult(result);\n  unit_test_->listeners()->repeater()->OnTestPartResult(result);\n}\n\nDefaultPerThreadTestPartResultReporter::DefaultPerThreadTestPartResultReporter(\n    UnitTestImpl* unit_test) : unit_test_(unit_test) {}\n\nvoid DefaultPerThreadTestPartResultReporter::ReportTestPartResult(\n    const TestPartResult& result) {\n  unit_test_->GetGlobalTestPartResultReporter()->ReportTestPartResult(result);\n}\n\n// Returns the global test part result reporter.\nTestPartResultReporterInterface*\nUnitTestImpl::GetGlobalTestPartResultReporter() {\n  internal::MutexLock lock(&global_test_part_result_reporter_mutex_);\n  return global_test_part_result_repoter_;\n}\n\n// Sets the global test part result reporter.\nvoid UnitTestImpl::SetGlobalTestPartResultReporter(\n    TestPartResultReporterInterface* reporter) {\n  internal::MutexLock lock(&global_test_part_result_reporter_mutex_);\n  global_test_part_result_repoter_ = reporter;\n}\n\n// Returns the test part result reporter for the current thread.\nTestPartResultReporterInterface*\nUnitTestImpl::GetTestPartResultReporterForCurrentThread() {\n  return per_thread_test_part_result_reporter_.get();\n}\n\n// Sets the test part result reporter for the current thread.\nvoid UnitTestImpl::SetTestPartResultReporterForCurrentThread(\n    TestPartResultReporterInterface* reporter) {\n  per_thread_test_part_result_reporter_.set(reporter);\n}\n\n// Gets the number of successful test suites.\nint UnitTestImpl::successful_test_suite_count() const {\n  return CountIf(test_suites_, TestSuitePassed);\n}\n\n// Gets the number of failed test suites.\nint UnitTestImpl::failed_test_suite_count() const {\n  return CountIf(test_suites_, TestSuiteFailed);\n}\n\n// Gets the number of all test suites.\nint UnitTestImpl::total_test_suite_count() const {\n  return static_cast<int>(test_suites_.size());\n}\n\n// Gets the number of all test suites that contain at least one test\n// that should run.\nint UnitTestImpl::test_suite_to_run_count() const {\n  return CountIf(test_suites_, ShouldRunTestSuite);\n}\n\n// Gets the number of successful tests.\nint UnitTestImpl::successful_test_count() const {\n  return SumOverTestSuiteList(test_suites_, &TestSuite::successful_test_count);\n}\n\n// Gets the number of skipped tests.\nint UnitTestImpl::skipped_test_count() const {\n  return SumOverTestSuiteList(test_suites_, &TestSuite::skipped_test_count);\n}\n\n// Gets the number of failed tests.\nint UnitTestImpl::failed_test_count() const {\n  return SumOverTestSuiteList(test_suites_, &TestSuite::failed_test_count);\n}\n\n// Gets the number of disabled tests that will be reported in the XML report.\nint UnitTestImpl::reportable_disabled_test_count() const {\n  return SumOverTestSuiteList(test_suites_,\n                              &TestSuite::reportable_disabled_test_count);\n}\n\n// Gets the number of disabled tests.\nint UnitTestImpl::disabled_test_count() const {\n  return SumOverTestSuiteList(test_suites_, &TestSuite::disabled_test_count);\n}\n\n// Gets the number of tests to be printed in the XML report.\nint UnitTestImpl::reportable_test_count() const {\n  return SumOverTestSuiteList(test_suites_, &TestSuite::reportable_test_count);\n}\n\n// Gets the number of all tests.\nint UnitTestImpl::total_test_count() const {\n  return SumOverTestSuiteList(test_suites_, &TestSuite::total_test_count);\n}\n\n// Gets the number of tests that should run.\nint UnitTestImpl::test_to_run_count() const {\n  return SumOverTestSuiteList(test_suites_, &TestSuite::test_to_run_count);\n}\n\n// Returns the current OS stack trace as an std::string.\n//\n// The maximum number of stack frames to be included is specified by\n// the gtest_stack_trace_depth flag.  The skip_count parameter\n// specifies the number of top frames to be skipped, which doesn't\n// count against the number of frames to be included.\n//\n// For example, if Foo() calls Bar(), which in turn calls\n// CurrentOsStackTraceExceptTop(1), Foo() will be included in the\n// trace but Bar() and CurrentOsStackTraceExceptTop() won't.\nstd::string UnitTestImpl::CurrentOsStackTraceExceptTop(int skip_count) {\n  return os_stack_trace_getter()->CurrentStackTrace(\n      static_cast<int>(GTEST_FLAG(stack_trace_depth)),\n      skip_count + 1\n      // Skips the user-specified number of frames plus this function\n      // itself.\n      );  // NOLINT\n}\n\n// A helper class for measuring elapsed times.\nclass Timer {\n public:\n  Timer() : start_(std::chrono::steady_clock::now()) {}\n\n  // Return time elapsed in milliseconds since the timer was created.\n  TimeInMillis Elapsed() {\n    return std::chrono::duration_cast<std::chrono::milliseconds>(\n               std::chrono::steady_clock::now() - start_)\n        .count();\n  }\n\n private:\n  std::chrono::steady_clock::time_point start_;\n};\n\n// Returns a timestamp as milliseconds since the epoch. Note this time may jump\n// around subject to adjustments by the system, to measure elapsed time use\n// Timer instead.\nTimeInMillis GetTimeInMillis() {\n  return std::chrono::duration_cast<std::chrono::milliseconds>(\n             std::chrono::system_clock::now() -\n             std::chrono::system_clock::from_time_t(0))\n      .count();\n}\n\n// Utilities\n\n// class String.\n\n#if GTEST_OS_WINDOWS_MOBILE\n// Creates a UTF-16 wide string from the given ANSI string, allocating\n// memory using new. The caller is responsible for deleting the return\n// value using delete[]. Returns the wide string, or NULL if the\n// input is NULL.\nLPCWSTR String::AnsiToUtf16(const char* ansi) {\n  if (!ansi) return nullptr;\n  const int length = strlen(ansi);\n  const int unicode_length =\n      MultiByteToWideChar(CP_ACP, 0, ansi, length, nullptr, 0);\n  WCHAR* unicode = new WCHAR[unicode_length + 1];\n  MultiByteToWideChar(CP_ACP, 0, ansi, length,\n                      unicode, unicode_length);\n  unicode[unicode_length] = 0;\n  return unicode;\n}\n\n// Creates an ANSI string from the given wide string, allocating\n// memory using new. The caller is responsible for deleting the return\n// value using delete[]. Returns the ANSI string, or NULL if the\n// input is NULL.\nconst char* String::Utf16ToAnsi(LPCWSTR utf16_str)  {\n  if (!utf16_str) return nullptr;\n  const int ansi_length = WideCharToMultiByte(CP_ACP, 0, utf16_str, -1, nullptr,\n                                              0, nullptr, nullptr);\n  char* ansi = new char[ansi_length + 1];\n  WideCharToMultiByte(CP_ACP, 0, utf16_str, -1, ansi, ansi_length, nullptr,\n                      nullptr);\n  ansi[ansi_length] = 0;\n  return ansi;\n}\n\n#endif  // GTEST_OS_WINDOWS_MOBILE\n\n// Compares two C strings.  Returns true if and only if they have the same\n// content.\n//\n// Unlike strcmp(), this function can handle NULL argument(s).  A NULL\n// C string is considered different to any non-NULL C string,\n// including the empty string.\nbool String::CStringEquals(const char * lhs, const char * rhs) {\n  if (lhs == nullptr) return rhs == nullptr;\n\n  if (rhs == nullptr) return false;\n\n  return strcmp(lhs, rhs) == 0;\n}\n\n#if GTEST_HAS_STD_WSTRING\n\n// Converts an array of wide chars to a narrow string using the UTF-8\n// encoding, and streams the result to the given Message object.\nstatic void StreamWideCharsToMessage(const wchar_t* wstr, size_t length,\n                                     Message* msg) {\n  for (size_t i = 0; i != length; ) {  // NOLINT\n    if (wstr[i] != L'\\0') {\n      *msg << WideStringToUtf8(wstr + i, static_cast<int>(length - i));\n      while (i != length && wstr[i] != L'\\0')\n        i++;\n    } else {\n      *msg << '\\0';\n      i++;\n    }\n  }\n}\n\n#endif  // GTEST_HAS_STD_WSTRING\n\nvoid SplitString(const ::std::string& str, char delimiter,\n                 ::std::vector< ::std::string>* dest) {\n  ::std::vector< ::std::string> parsed;\n  ::std::string::size_type pos = 0;\n  while (::testing::internal::AlwaysTrue()) {\n    const ::std::string::size_type colon = str.find(delimiter, pos);\n    if (colon == ::std::string::npos) {\n      parsed.push_back(str.substr(pos));\n      break;\n    } else {\n      parsed.push_back(str.substr(pos, colon - pos));\n      pos = colon + 1;\n    }\n  }\n  dest->swap(parsed);\n}\n\n}  // namespace internal\n\n// Constructs an empty Message.\n// We allocate the stringstream separately because otherwise each use of\n// ASSERT/EXPECT in a procedure adds over 200 bytes to the procedure's\n// stack frame leading to huge stack frames in some cases; gcc does not reuse\n// the stack space.\nMessage::Message() : ss_(new ::std::stringstream) {\n  // By default, we want there to be enough precision when printing\n  // a double to a Message.\n  *ss_ << std::setprecision(std::numeric_limits<double>::digits10 + 2);\n}\n\n// These two overloads allow streaming a wide C string to a Message\n// using the UTF-8 encoding.\nMessage& Message::operator <<(const wchar_t* wide_c_str) {\n  return *this << internal::String::ShowWideCString(wide_c_str);\n}\nMessage& Message::operator <<(wchar_t* wide_c_str) {\n  return *this << internal::String::ShowWideCString(wide_c_str);\n}\n\n#if GTEST_HAS_STD_WSTRING\n// Converts the given wide string to a narrow string using the UTF-8\n// encoding, and streams the result to this Message object.\nMessage& Message::operator <<(const ::std::wstring& wstr) {\n  internal::StreamWideCharsToMessage(wstr.c_str(), wstr.length(), this);\n  return *this;\n}\n#endif  // GTEST_HAS_STD_WSTRING\n\n// Gets the text streamed to this object so far as an std::string.\n// Each '\\0' character in the buffer is replaced with \"\\\\0\".\nstd::string Message::GetString() const {\n  return internal::StringStreamToString(ss_.get());\n}\n\n// AssertionResult constructors.\n// Used in EXPECT_TRUE/FALSE(assertion_result).\nAssertionResult::AssertionResult(const AssertionResult& other)\n    : success_(other.success_),\n      message_(other.message_.get() != nullptr\n                   ? new ::std::string(*other.message_)\n                   : static_cast< ::std::string*>(nullptr)) {}\n\n// Swaps two AssertionResults.\nvoid AssertionResult::swap(AssertionResult& other) {\n  using std::swap;\n  swap(success_, other.success_);\n  swap(message_, other.message_);\n}\n\n// Returns the assertion's negation. Used with EXPECT/ASSERT_FALSE.\nAssertionResult AssertionResult::operator!() const {\n  AssertionResult negation(!success_);\n  if (message_.get() != nullptr) negation << *message_;\n  return negation;\n}\n\n// Makes a successful assertion result.\nAssertionResult AssertionSuccess() {\n  return AssertionResult(true);\n}\n\n// Makes a failed assertion result.\nAssertionResult AssertionFailure() {\n  return AssertionResult(false);\n}\n\n// Makes a failed assertion result with the given failure message.\n// Deprecated; use AssertionFailure() << message.\nAssertionResult AssertionFailure(const Message& message) {\n  return AssertionFailure() << message;\n}\n\nnamespace internal {\n\nnamespace edit_distance {\nstd::vector<EditType> CalculateOptimalEdits(const std::vector<size_t>& left,\n                                            const std::vector<size_t>& right) {\n  std::vector<std::vector<double> > costs(\n      left.size() + 1, std::vector<double>(right.size() + 1));\n  std::vector<std::vector<EditType> > best_move(\n      left.size() + 1, std::vector<EditType>(right.size() + 1));\n\n  // Populate for empty right.\n  for (size_t l_i = 0; l_i < costs.size(); ++l_i) {\n    costs[l_i][0] = static_cast<double>(l_i);\n    best_move[l_i][0] = kRemove;\n  }\n  // Populate for empty left.\n  for (size_t r_i = 1; r_i < costs[0].size(); ++r_i) {\n    costs[0][r_i] = static_cast<double>(r_i);\n    best_move[0][r_i] = kAdd;\n  }\n\n  for (size_t l_i = 0; l_i < left.size(); ++l_i) {\n    for (size_t r_i = 0; r_i < right.size(); ++r_i) {\n      if (left[l_i] == right[r_i]) {\n        // Found a match. Consume it.\n        costs[l_i + 1][r_i + 1] = costs[l_i][r_i];\n        best_move[l_i + 1][r_i + 1] = kMatch;\n        continue;\n      }\n\n      const double add = costs[l_i + 1][r_i];\n      const double remove = costs[l_i][r_i + 1];\n      const double replace = costs[l_i][r_i];\n      if (add < remove && add < replace) {\n        costs[l_i + 1][r_i + 1] = add + 1;\n        best_move[l_i + 1][r_i + 1] = kAdd;\n      } else if (remove < add && remove < replace) {\n        costs[l_i + 1][r_i + 1] = remove + 1;\n        best_move[l_i + 1][r_i + 1] = kRemove;\n      } else {\n        // We make replace a little more expensive than add/remove to lower\n        // their priority.\n        costs[l_i + 1][r_i + 1] = replace + 1.00001;\n        best_move[l_i + 1][r_i + 1] = kReplace;\n      }\n    }\n  }\n\n  // Reconstruct the best path. We do it in reverse order.\n  std::vector<EditType> best_path;\n  for (size_t l_i = left.size(), r_i = right.size(); l_i > 0 || r_i > 0;) {\n    EditType move = best_move[l_i][r_i];\n    best_path.push_back(move);\n    l_i -= move != kAdd;\n    r_i -= move != kRemove;\n  }\n  std::reverse(best_path.begin(), best_path.end());\n  return best_path;\n}\n\nnamespace {\n\n// Helper class to convert string into ids with deduplication.\nclass InternalStrings {\n public:\n  size_t GetId(const std::string& str) {\n    IdMap::iterator it = ids_.find(str);\n    if (it != ids_.end()) return it->second;\n    size_t id = ids_.size();\n    return ids_[str] = id;\n  }\n\n private:\n  typedef std::map<std::string, size_t> IdMap;\n  IdMap ids_;\n};\n\n}  // namespace\n\nstd::vector<EditType> CalculateOptimalEdits(\n    const std::vector<std::string>& left,\n    const std::vector<std::string>& right) {\n  std::vector<size_t> left_ids, right_ids;\n  {\n    InternalStrings intern_table;\n    for (size_t i = 0; i < left.size(); ++i) {\n      left_ids.push_back(intern_table.GetId(left[i]));\n    }\n    for (size_t i = 0; i < right.size(); ++i) {\n      right_ids.push_back(intern_table.GetId(right[i]));\n    }\n  }\n  return CalculateOptimalEdits(left_ids, right_ids);\n}\n\nnamespace {\n\n// Helper class that holds the state for one hunk and prints it out to the\n// stream.\n// It reorders adds/removes when possible to group all removes before all\n// adds. It also adds the hunk header before printint into the stream.\nclass Hunk {\n public:\n  Hunk(size_t left_start, size_t right_start)\n      : left_start_(left_start),\n        right_start_(right_start),\n        adds_(),\n        removes_(),\n        common_() {}\n\n  void PushLine(char edit, const char* line) {\n    switch (edit) {\n      case ' ':\n        ++common_;\n        FlushEdits();\n        hunk_.push_back(std::make_pair(' ', line));\n        break;\n      case '-':\n        ++removes_;\n        hunk_removes_.push_back(std::make_pair('-', line));\n        break;\n      case '+':\n        ++adds_;\n        hunk_adds_.push_back(std::make_pair('+', line));\n        break;\n    }\n  }\n\n  void PrintTo(std::ostream* os) {\n    PrintHeader(os);\n    FlushEdits();\n    for (std::list<std::pair<char, const char*> >::const_iterator it =\n             hunk_.begin();\n         it != hunk_.end(); ++it) {\n      *os << it->first << it->second << \"\\n\";\n    }\n  }\n\n  bool has_edits() const { return adds_ || removes_; }\n\n private:\n  void FlushEdits() {\n    hunk_.splice(hunk_.end(), hunk_removes_);\n    hunk_.splice(hunk_.end(), hunk_adds_);\n  }\n\n  // Print a unified diff header for one hunk.\n  // The format is\n  //   \"@@ -<left_start>,<left_length> +<right_start>,<right_length> @@\"\n  // where the left/right parts are omitted if unnecessary.\n  void PrintHeader(std::ostream* ss) const {\n    *ss << \"@@ \";\n    if (removes_) {\n      *ss << \"-\" << left_start_ << \",\" << (removes_ + common_);\n    }\n    if (removes_ && adds_) {\n      *ss << \" \";\n    }\n    if (adds_) {\n      *ss << \"+\" << right_start_ << \",\" << (adds_ + common_);\n    }\n    *ss << \" @@\\n\";\n  }\n\n  size_t left_start_, right_start_;\n  size_t adds_, removes_, common_;\n  std::list<std::pair<char, const char*> > hunk_, hunk_adds_, hunk_removes_;\n};\n\n}  // namespace\n\n// Create a list of diff hunks in Unified diff format.\n// Each hunk has a header generated by PrintHeader above plus a body with\n// lines prefixed with ' ' for no change, '-' for deletion and '+' for\n// addition.\n// 'context' represents the desired unchanged prefix/suffix around the diff.\n// If two hunks are close enough that their contexts overlap, then they are\n// joined into one hunk.\nstd::string CreateUnifiedDiff(const std::vector<std::string>& left,\n                              const std::vector<std::string>& right,\n                              size_t context) {\n  const std::vector<EditType> edits = CalculateOptimalEdits(left, right);\n\n  size_t l_i = 0, r_i = 0, edit_i = 0;\n  std::stringstream ss;\n  while (edit_i < edits.size()) {\n    // Find first edit.\n    while (edit_i < edits.size() && edits[edit_i] == kMatch) {\n      ++l_i;\n      ++r_i;\n      ++edit_i;\n    }\n\n    // Find the first line to include in the hunk.\n    const size_t prefix_context = std::min(l_i, context);\n    Hunk hunk(l_i - prefix_context + 1, r_i - prefix_context + 1);\n    for (size_t i = prefix_context; i > 0; --i) {\n      hunk.PushLine(' ', left[l_i - i].c_str());\n    }\n\n    // Iterate the edits until we found enough suffix for the hunk or the input\n    // is over.\n    size_t n_suffix = 0;\n    for (; edit_i < edits.size(); ++edit_i) {\n      if (n_suffix >= context) {\n        // Continue only if the next hunk is very close.\n        auto it = edits.begin() + static_cast<int>(edit_i);\n        while (it != edits.end() && *it == kMatch) ++it;\n        if (it == edits.end() ||\n            static_cast<size_t>(it - edits.begin()) - edit_i >= context) {\n          // There is no next edit or it is too far away.\n          break;\n        }\n      }\n\n      EditType edit = edits[edit_i];\n      // Reset count when a non match is found.\n      n_suffix = edit == kMatch ? n_suffix + 1 : 0;\n\n      if (edit == kMatch || edit == kRemove || edit == kReplace) {\n        hunk.PushLine(edit == kMatch ? ' ' : '-', left[l_i].c_str());\n      }\n      if (edit == kAdd || edit == kReplace) {\n        hunk.PushLine('+', right[r_i].c_str());\n      }\n\n      // Advance indices, depending on edit type.\n      l_i += edit != kAdd;\n      r_i += edit != kRemove;\n    }\n\n    if (!hunk.has_edits()) {\n      // We are done. We don't want this hunk.\n      break;\n    }\n\n    hunk.PrintTo(&ss);\n  }\n  return ss.str();\n}\n\n}  // namespace edit_distance\n\nnamespace {\n\n// The string representation of the values received in EqFailure() are already\n// escaped. Split them on escaped '\\n' boundaries. Leave all other escaped\n// characters the same.\nstd::vector<std::string> SplitEscapedString(const std::string& str) {\n  std::vector<std::string> lines;\n  size_t start = 0, end = str.size();\n  if (end > 2 && str[0] == '\"' && str[end - 1] == '\"') {\n    ++start;\n    --end;\n  }\n  bool escaped = false;\n  for (size_t i = start; i + 1 < end; ++i) {\n    if (escaped) {\n      escaped = false;\n      if (str[i] == 'n') {\n        lines.push_back(str.substr(start, i - start - 1));\n        start = i + 1;\n      }\n    } else {\n      escaped = str[i] == '\\\\';\n    }\n  }\n  lines.push_back(str.substr(start, end - start));\n  return lines;\n}\n\n}  // namespace\n\n// Constructs and returns the message for an equality assertion\n// (e.g. ASSERT_EQ, EXPECT_STREQ, etc) failure.\n//\n// The first four parameters are the expressions used in the assertion\n// and their values, as strings.  For example, for ASSERT_EQ(foo, bar)\n// where foo is 5 and bar is 6, we have:\n//\n//   lhs_expression: \"foo\"\n//   rhs_expression: \"bar\"\n//   lhs_value:      \"5\"\n//   rhs_value:      \"6\"\n//\n// The ignoring_case parameter is true if and only if the assertion is a\n// *_STRCASEEQ*.  When it's true, the string \"Ignoring case\" will\n// be inserted into the message.\nAssertionResult EqFailure(const char* lhs_expression,\n                          const char* rhs_expression,\n                          const std::string& lhs_value,\n                          const std::string& rhs_value,\n                          bool ignoring_case) {\n  Message msg;\n  msg << \"Expected equality of these values:\";\n  msg << \"\\n  \" << lhs_expression;\n  if (lhs_value != lhs_expression) {\n    msg << \"\\n    Which is: \" << lhs_value;\n  }\n  msg << \"\\n  \" << rhs_expression;\n  if (rhs_value != rhs_expression) {\n    msg << \"\\n    Which is: \" << rhs_value;\n  }\n\n  if (ignoring_case) {\n    msg << \"\\nIgnoring case\";\n  }\n\n  if (!lhs_value.empty() && !rhs_value.empty()) {\n    const std::vector<std::string> lhs_lines =\n        SplitEscapedString(lhs_value);\n    const std::vector<std::string> rhs_lines =\n        SplitEscapedString(rhs_value);\n    if (lhs_lines.size() > 1 || rhs_lines.size() > 1) {\n      msg << \"\\nWith diff:\\n\"\n          << edit_distance::CreateUnifiedDiff(lhs_lines, rhs_lines);\n    }\n  }\n\n  return AssertionFailure() << msg;\n}\n\n// Constructs a failure message for Boolean assertions such as EXPECT_TRUE.\nstd::string GetBoolAssertionFailureMessage(\n    const AssertionResult& assertion_result,\n    const char* expression_text,\n    const char* actual_predicate_value,\n    const char* expected_predicate_value) {\n  const char* actual_message = assertion_result.message();\n  Message msg;\n  msg << \"Value of: \" << expression_text\n      << \"\\n  Actual: \" << actual_predicate_value;\n  if (actual_message[0] != '\\0')\n    msg << \" (\" << actual_message << \")\";\n  msg << \"\\nExpected: \" << expected_predicate_value;\n  return msg.GetString();\n}\n\n// Helper function for implementing ASSERT_NEAR.\nAssertionResult DoubleNearPredFormat(const char* expr1,\n                                     const char* expr2,\n                                     const char* abs_error_expr,\n                                     double val1,\n                                     double val2,\n                                     double abs_error) {\n  const double diff = fabs(val1 - val2);\n  if (diff <= abs_error) return AssertionSuccess();\n\n  // Find the value which is closest to zero.\n  const double min_abs = std::min(fabs(val1), fabs(val2));\n  // Find the distance to the next double from that value.\n  const double epsilon =\n      nextafter(min_abs, std::numeric_limits<double>::infinity()) - min_abs;\n  // Detect the case where abs_error is so small that EXPECT_NEAR is\n  // effectively the same as EXPECT_EQUAL, and give an informative error\n  // message so that the situation can be more easily understood without\n  // requiring exotic floating-point knowledge.\n  // Don't do an epsilon check if abs_error is zero because that implies\n  // that an equality check was actually intended.\n  if (!(std::isnan)(val1) && !(std::isnan)(val2) && abs_error > 0 &&\n      abs_error < epsilon) {\n    return AssertionFailure()\n           << \"The difference between \" << expr1 << \" and \" << expr2 << \" is \"\n           << diff << \", where\\n\"\n           << expr1 << \" evaluates to \" << val1 << \",\\n\"\n           << expr2 << \" evaluates to \" << val2 << \".\\nThe abs_error parameter \"\n           << abs_error_expr << \" evaluates to \" << abs_error\n           << \" which is smaller than the minimum distance between doubles for \"\n              \"numbers of this magnitude which is \"\n           << epsilon\n           << \", thus making this EXPECT_NEAR check equivalent to \"\n              \"EXPECT_EQUAL. Consider using EXPECT_DOUBLE_EQ instead.\";\n  }\n  return AssertionFailure()\n      << \"The difference between \" << expr1 << \" and \" << expr2\n      << \" is \" << diff << \", which exceeds \" << abs_error_expr << \", where\\n\"\n      << expr1 << \" evaluates to \" << val1 << \",\\n\"\n      << expr2 << \" evaluates to \" << val2 << \", and\\n\"\n      << abs_error_expr << \" evaluates to \" << abs_error << \".\";\n}\n\n\n// Helper template for implementing FloatLE() and DoubleLE().\ntemplate <typename RawType>\nAssertionResult FloatingPointLE(const char* expr1,\n                                const char* expr2,\n                                RawType val1,\n                                RawType val2) {\n  // Returns success if val1 is less than val2,\n  if (val1 < val2) {\n    return AssertionSuccess();\n  }\n\n  // or if val1 is almost equal to val2.\n  const FloatingPoint<RawType> lhs(val1), rhs(val2);\n  if (lhs.AlmostEquals(rhs)) {\n    return AssertionSuccess();\n  }\n\n  // Note that the above two checks will both fail if either val1 or\n  // val2 is NaN, as the IEEE floating-point standard requires that\n  // any predicate involving a NaN must return false.\n\n  ::std::stringstream val1_ss;\n  val1_ss << std::setprecision(std::numeric_limits<RawType>::digits10 + 2)\n          << val1;\n\n  ::std::stringstream val2_ss;\n  val2_ss << std::setprecision(std::numeric_limits<RawType>::digits10 + 2)\n          << val2;\n\n  return AssertionFailure()\n      << \"Expected: (\" << expr1 << \") <= (\" << expr2 << \")\\n\"\n      << \"  Actual: \" << StringStreamToString(&val1_ss) << \" vs \"\n      << StringStreamToString(&val2_ss);\n}\n\n}  // namespace internal\n\n// Asserts that val1 is less than, or almost equal to, val2.  Fails\n// otherwise.  In particular, it fails if either val1 or val2 is NaN.\nAssertionResult FloatLE(const char* expr1, const char* expr2,\n                        float val1, float val2) {\n  return internal::FloatingPointLE<float>(expr1, expr2, val1, val2);\n}\n\n// Asserts that val1 is less than, or almost equal to, val2.  Fails\n// otherwise.  In particular, it fails if either val1 or val2 is NaN.\nAssertionResult DoubleLE(const char* expr1, const char* expr2,\n                         double val1, double val2) {\n  return internal::FloatingPointLE<double>(expr1, expr2, val1, val2);\n}\n\nnamespace internal {\n\n// The helper function for {ASSERT|EXPECT}_STREQ.\nAssertionResult CmpHelperSTREQ(const char* lhs_expression,\n                               const char* rhs_expression,\n                               const char* lhs,\n                               const char* rhs) {\n  if (String::CStringEquals(lhs, rhs)) {\n    return AssertionSuccess();\n  }\n\n  return EqFailure(lhs_expression,\n                   rhs_expression,\n                   PrintToString(lhs),\n                   PrintToString(rhs),\n                   false);\n}\n\n// The helper function for {ASSERT|EXPECT}_STRCASEEQ.\nAssertionResult CmpHelperSTRCASEEQ(const char* lhs_expression,\n                                   const char* rhs_expression,\n                                   const char* lhs,\n                                   const char* rhs) {\n  if (String::CaseInsensitiveCStringEquals(lhs, rhs)) {\n    return AssertionSuccess();\n  }\n\n  return EqFailure(lhs_expression,\n                   rhs_expression,\n                   PrintToString(lhs),\n                   PrintToString(rhs),\n                   true);\n}\n\n// The helper function for {ASSERT|EXPECT}_STRNE.\nAssertionResult CmpHelperSTRNE(const char* s1_expression,\n                               const char* s2_expression,\n                               const char* s1,\n                               const char* s2) {\n  if (!String::CStringEquals(s1, s2)) {\n    return AssertionSuccess();\n  } else {\n    return AssertionFailure() << \"Expected: (\" << s1_expression << \") != (\"\n                              << s2_expression << \"), actual: \\\"\"\n                              << s1 << \"\\\" vs \\\"\" << s2 << \"\\\"\";\n  }\n}\n\n// The helper function for {ASSERT|EXPECT}_STRCASENE.\nAssertionResult CmpHelperSTRCASENE(const char* s1_expression,\n                                   const char* s2_expression,\n                                   const char* s1,\n                                   const char* s2) {\n  if (!String::CaseInsensitiveCStringEquals(s1, s2)) {\n    return AssertionSuccess();\n  } else {\n    return AssertionFailure()\n        << \"Expected: (\" << s1_expression << \") != (\"\n        << s2_expression << \") (ignoring case), actual: \\\"\"\n        << s1 << \"\\\" vs \\\"\" << s2 << \"\\\"\";\n  }\n}\n\n}  // namespace internal\n\nnamespace {\n\n// Helper functions for implementing IsSubString() and IsNotSubstring().\n\n// This group of overloaded functions return true if and only if needle\n// is a substring of haystack.  NULL is considered a substring of\n// itself only.\n\nbool IsSubstringPred(const char* needle, const char* haystack) {\n  if (needle == nullptr || haystack == nullptr) return needle == haystack;\n\n  return strstr(haystack, needle) != nullptr;\n}\n\nbool IsSubstringPred(const wchar_t* needle, const wchar_t* haystack) {\n  if (needle == nullptr || haystack == nullptr) return needle == haystack;\n\n  return wcsstr(haystack, needle) != nullptr;\n}\n\n// StringType here can be either ::std::string or ::std::wstring.\ntemplate <typename StringType>\nbool IsSubstringPred(const StringType& needle,\n                     const StringType& haystack) {\n  return haystack.find(needle) != StringType::npos;\n}\n\n// This function implements either IsSubstring() or IsNotSubstring(),\n// depending on the value of the expected_to_be_substring parameter.\n// StringType here can be const char*, const wchar_t*, ::std::string,\n// or ::std::wstring.\ntemplate <typename StringType>\nAssertionResult IsSubstringImpl(\n    bool expected_to_be_substring,\n    const char* needle_expr, const char* haystack_expr,\n    const StringType& needle, const StringType& haystack) {\n  if (IsSubstringPred(needle, haystack) == expected_to_be_substring)\n    return AssertionSuccess();\n\n  const bool is_wide_string = sizeof(needle[0]) > 1;\n  const char* const begin_string_quote = is_wide_string ? \"L\\\"\" : \"\\\"\";\n  return AssertionFailure()\n      << \"Value of: \" << needle_expr << \"\\n\"\n      << \"  Actual: \" << begin_string_quote << needle << \"\\\"\\n\"\n      << \"Expected: \" << (expected_to_be_substring ? \"\" : \"not \")\n      << \"a substring of \" << haystack_expr << \"\\n\"\n      << \"Which is: \" << begin_string_quote << haystack << \"\\\"\";\n}\n\n}  // namespace\n\n// IsSubstring() and IsNotSubstring() check whether needle is a\n// substring of haystack (NULL is considered a substring of itself\n// only), and return an appropriate error message when they fail.\n\nAssertionResult IsSubstring(\n    const char* needle_expr, const char* haystack_expr,\n    const char* needle, const char* haystack) {\n  return IsSubstringImpl(true, needle_expr, haystack_expr, needle, haystack);\n}\n\nAssertionResult IsSubstring(\n    const char* needle_expr, const char* haystack_expr,\n    const wchar_t* needle, const wchar_t* haystack) {\n  return IsSubstringImpl(true, needle_expr, haystack_expr, needle, haystack);\n}\n\nAssertionResult IsNotSubstring(\n    const char* needle_expr, const char* haystack_expr,\n    const char* needle, const char* haystack) {\n  return IsSubstringImpl(false, needle_expr, haystack_expr, needle, haystack);\n}\n\nAssertionResult IsNotSubstring(\n    const char* needle_expr, const char* haystack_expr,\n    const wchar_t* needle, const wchar_t* haystack) {\n  return IsSubstringImpl(false, needle_expr, haystack_expr, needle, haystack);\n}\n\nAssertionResult IsSubstring(\n    const char* needle_expr, const char* haystack_expr,\n    const ::std::string& needle, const ::std::string& haystack) {\n  return IsSubstringImpl(true, needle_expr, haystack_expr, needle, haystack);\n}\n\nAssertionResult IsNotSubstring(\n    const char* needle_expr, const char* haystack_expr,\n    const ::std::string& needle, const ::std::string& haystack) {\n  return IsSubstringImpl(false, needle_expr, haystack_expr, needle, haystack);\n}\n\n#if GTEST_HAS_STD_WSTRING\nAssertionResult IsSubstring(\n    const char* needle_expr, const char* haystack_expr,\n    const ::std::wstring& needle, const ::std::wstring& haystack) {\n  return IsSubstringImpl(true, needle_expr, haystack_expr, needle, haystack);\n}\n\nAssertionResult IsNotSubstring(\n    const char* needle_expr, const char* haystack_expr,\n    const ::std::wstring& needle, const ::std::wstring& haystack) {\n  return IsSubstringImpl(false, needle_expr, haystack_expr, needle, haystack);\n}\n#endif  // GTEST_HAS_STD_WSTRING\n\nnamespace internal {\n\n#if GTEST_OS_WINDOWS\n\nnamespace {\n\n// Helper function for IsHRESULT{SuccessFailure} predicates\nAssertionResult HRESULTFailureHelper(const char* expr,\n                                     const char* expected,\n                                     long hr) {  // NOLINT\n# if GTEST_OS_WINDOWS_MOBILE || GTEST_OS_WINDOWS_TV_TITLE\n\n  // Windows CE doesn't support FormatMessage.\n  const char error_text[] = \"\";\n\n# else\n\n  // Looks up the human-readable system message for the HRESULT code\n  // and since we're not passing any params to FormatMessage, we don't\n  // want inserts expanded.\n  const DWORD kFlags = FORMAT_MESSAGE_FROM_SYSTEM |\n                       FORMAT_MESSAGE_IGNORE_INSERTS;\n  const DWORD kBufSize = 4096;\n  // Gets the system's human readable message string for this HRESULT.\n  char error_text[kBufSize] = { '\\0' };\n  DWORD message_length = ::FormatMessageA(kFlags,\n                                          0,   // no source, we're asking system\n                                          static_cast<DWORD>(hr),  // the error\n                                          0,   // no line width restrictions\n                                          error_text,  // output buffer\n                                          kBufSize,    // buf size\n                                          nullptr);  // no arguments for inserts\n  // Trims tailing white space (FormatMessage leaves a trailing CR-LF)\n  for (; message_length && IsSpace(error_text[message_length - 1]);\n          --message_length) {\n    error_text[message_length - 1] = '\\0';\n  }\n\n# endif  // GTEST_OS_WINDOWS_MOBILE\n\n  const std::string error_hex(\"0x\" + String::FormatHexInt(hr));\n  return ::testing::AssertionFailure()\n      << \"Expected: \" << expr << \" \" << expected << \".\\n\"\n      << \"  Actual: \" << error_hex << \" \" << error_text << \"\\n\";\n}\n\n}  // namespace\n\nAssertionResult IsHRESULTSuccess(const char* expr, long hr) {  // NOLINT\n  if (SUCCEEDED(hr)) {\n    return AssertionSuccess();\n  }\n  return HRESULTFailureHelper(expr, \"succeeds\", hr);\n}\n\nAssertionResult IsHRESULTFailure(const char* expr, long hr) {  // NOLINT\n  if (FAILED(hr)) {\n    return AssertionSuccess();\n  }\n  return HRESULTFailureHelper(expr, \"fails\", hr);\n}\n\n#endif  // GTEST_OS_WINDOWS\n\n// Utility functions for encoding Unicode text (wide strings) in\n// UTF-8.\n\n// A Unicode code-point can have up to 21 bits, and is encoded in UTF-8\n// like this:\n//\n// Code-point length   Encoding\n//   0 -  7 bits       0xxxxxxx\n//   8 - 11 bits       110xxxxx 10xxxxxx\n//  12 - 16 bits       1110xxxx 10xxxxxx 10xxxxxx\n//  17 - 21 bits       11110xxx 10xxxxxx 10xxxxxx 10xxxxxx\n\n// The maximum code-point a one-byte UTF-8 sequence can represent.\nconstexpr uint32_t kMaxCodePoint1 = (static_cast<uint32_t>(1) <<  7) - 1;\n\n// The maximum code-point a two-byte UTF-8 sequence can represent.\nconstexpr uint32_t kMaxCodePoint2 = (static_cast<uint32_t>(1) << (5 + 6)) - 1;\n\n// The maximum code-point a three-byte UTF-8 sequence can represent.\nconstexpr uint32_t kMaxCodePoint3 = (static_cast<uint32_t>(1) << (4 + 2*6)) - 1;\n\n// The maximum code-point a four-byte UTF-8 sequence can represent.\nconstexpr uint32_t kMaxCodePoint4 = (static_cast<uint32_t>(1) << (3 + 3*6)) - 1;\n\n// Chops off the n lowest bits from a bit pattern.  Returns the n\n// lowest bits.  As a side effect, the original bit pattern will be\n// shifted to the right by n bits.\ninline uint32_t ChopLowBits(uint32_t* bits, int n) {\n  const uint32_t low_bits = *bits & ((static_cast<uint32_t>(1) << n) - 1);\n  *bits >>= n;\n  return low_bits;\n}\n\n// Converts a Unicode code point to a narrow string in UTF-8 encoding.\n// code_point parameter is of type uint32_t because wchar_t may not be\n// wide enough to contain a code point.\n// If the code_point is not a valid Unicode code point\n// (i.e. outside of Unicode range U+0 to U+10FFFF) it will be converted\n// to \"(Invalid Unicode 0xXXXXXXXX)\".\nstd::string CodePointToUtf8(uint32_t code_point) {\n  if (code_point > kMaxCodePoint4) {\n    return \"(Invalid Unicode 0x\" + String::FormatHexUInt32(code_point) + \")\";\n  }\n\n  char str[5];  // Big enough for the largest valid code point.\n  if (code_point <= kMaxCodePoint1) {\n    str[1] = '\\0';\n    str[0] = static_cast<char>(code_point);                          // 0xxxxxxx\n  } else if (code_point <= kMaxCodePoint2) {\n    str[2] = '\\0';\n    str[1] = static_cast<char>(0x80 | ChopLowBits(&code_point, 6));  // 10xxxxxx\n    str[0] = static_cast<char>(0xC0 | code_point);                   // 110xxxxx\n  } else if (code_point <= kMaxCodePoint3) {\n    str[3] = '\\0';\n    str[2] = static_cast<char>(0x80 | ChopLowBits(&code_point, 6));  // 10xxxxxx\n    str[1] = static_cast<char>(0x80 | ChopLowBits(&code_point, 6));  // 10xxxxxx\n    str[0] = static_cast<char>(0xE0 | code_point);                   // 1110xxxx\n  } else {  // code_point <= kMaxCodePoint4\n    str[4] = '\\0';\n    str[3] = static_cast<char>(0x80 | ChopLowBits(&code_point, 6));  // 10xxxxxx\n    str[2] = static_cast<char>(0x80 | ChopLowBits(&code_point, 6));  // 10xxxxxx\n    str[1] = static_cast<char>(0x80 | ChopLowBits(&code_point, 6));  // 10xxxxxx\n    str[0] = static_cast<char>(0xF0 | code_point);                   // 11110xxx\n  }\n  return str;\n}\n\n// The following two functions only make sense if the system\n// uses UTF-16 for wide string encoding. All supported systems\n// with 16 bit wchar_t (Windows, Cygwin) do use UTF-16.\n\n// Determines if the arguments constitute UTF-16 surrogate pair\n// and thus should be combined into a single Unicode code point\n// using CreateCodePointFromUtf16SurrogatePair.\ninline bool IsUtf16SurrogatePair(wchar_t first, wchar_t second) {\n  return sizeof(wchar_t) == 2 &&\n      (first & 0xFC00) == 0xD800 && (second & 0xFC00) == 0xDC00;\n}\n\n// Creates a Unicode code point from UTF16 surrogate pair.\ninline uint32_t CreateCodePointFromUtf16SurrogatePair(wchar_t first,\n                                                      wchar_t second) {\n  const auto first_u = static_cast<uint32_t>(first);\n  const auto second_u = static_cast<uint32_t>(second);\n  const uint32_t mask = (1 << 10) - 1;\n  return (sizeof(wchar_t) == 2)\n             ? (((first_u & mask) << 10) | (second_u & mask)) + 0x10000\n             :\n             // This function should not be called when the condition is\n             // false, but we provide a sensible default in case it is.\n             first_u;\n}\n\n// Converts a wide string to a narrow string in UTF-8 encoding.\n// The wide string is assumed to have the following encoding:\n//   UTF-16 if sizeof(wchar_t) == 2 (on Windows, Cygwin)\n//   UTF-32 if sizeof(wchar_t) == 4 (on Linux)\n// Parameter str points to a null-terminated wide string.\n// Parameter num_chars may additionally limit the number\n// of wchar_t characters processed. -1 is used when the entire string\n// should be processed.\n// If the string contains code points that are not valid Unicode code points\n// (i.e. outside of Unicode range U+0 to U+10FFFF) they will be output\n// as '(Invalid Unicode 0xXXXXXXXX)'. If the string is in UTF16 encoding\n// and contains invalid UTF-16 surrogate pairs, values in those pairs\n// will be encoded as individual Unicode characters from Basic Normal Plane.\nstd::string WideStringToUtf8(const wchar_t* str, int num_chars) {\n  if (num_chars == -1)\n    num_chars = static_cast<int>(wcslen(str));\n\n  ::std::stringstream stream;\n  for (int i = 0; i < num_chars; ++i) {\n    uint32_t unicode_code_point;\n\n    if (str[i] == L'\\0') {\n      break;\n    } else if (i + 1 < num_chars && IsUtf16SurrogatePair(str[i], str[i + 1])) {\n      unicode_code_point = CreateCodePointFromUtf16SurrogatePair(str[i],\n                                                                 str[i + 1]);\n      i++;\n    } else {\n      unicode_code_point = static_cast<uint32_t>(str[i]);\n    }\n\n    stream << CodePointToUtf8(unicode_code_point);\n  }\n  return StringStreamToString(&stream);\n}\n\n// Converts a wide C string to an std::string using the UTF-8 encoding.\n// NULL will be converted to \"(null)\".\nstd::string String::ShowWideCString(const wchar_t * wide_c_str) {\n  if (wide_c_str == nullptr) return \"(null)\";\n\n  return internal::WideStringToUtf8(wide_c_str, -1);\n}\n\n// Compares two wide C strings.  Returns true if and only if they have the\n// same content.\n//\n// Unlike wcscmp(), this function can handle NULL argument(s).  A NULL\n// C string is considered different to any non-NULL C string,\n// including the empty string.\nbool String::WideCStringEquals(const wchar_t * lhs, const wchar_t * rhs) {\n  if (lhs == nullptr) return rhs == nullptr;\n\n  if (rhs == nullptr) return false;\n\n  return wcscmp(lhs, rhs) == 0;\n}\n\n// Helper function for *_STREQ on wide strings.\nAssertionResult CmpHelperSTREQ(const char* lhs_expression,\n                               const char* rhs_expression,\n                               const wchar_t* lhs,\n                               const wchar_t* rhs) {\n  if (String::WideCStringEquals(lhs, rhs)) {\n    return AssertionSuccess();\n  }\n\n  return EqFailure(lhs_expression,\n                   rhs_expression,\n                   PrintToString(lhs),\n                   PrintToString(rhs),\n                   false);\n}\n\n// Helper function for *_STRNE on wide strings.\nAssertionResult CmpHelperSTRNE(const char* s1_expression,\n                               const char* s2_expression,\n                               const wchar_t* s1,\n                               const wchar_t* s2) {\n  if (!String::WideCStringEquals(s1, s2)) {\n    return AssertionSuccess();\n  }\n\n  return AssertionFailure() << \"Expected: (\" << s1_expression << \") != (\"\n                            << s2_expression << \"), actual: \"\n                            << PrintToString(s1)\n                            << \" vs \" << PrintToString(s2);\n}\n\n// Compares two C strings, ignoring case.  Returns true if and only if they have\n// the same content.\n//\n// Unlike strcasecmp(), this function can handle NULL argument(s).  A\n// NULL C string is considered different to any non-NULL C string,\n// including the empty string.\nbool String::CaseInsensitiveCStringEquals(const char * lhs, const char * rhs) {\n  if (lhs == nullptr) return rhs == nullptr;\n  if (rhs == nullptr) return false;\n  return posix::StrCaseCmp(lhs, rhs) == 0;\n}\n\n// Compares two wide C strings, ignoring case.  Returns true if and only if they\n// have the same content.\n//\n// Unlike wcscasecmp(), this function can handle NULL argument(s).\n// A NULL C string is considered different to any non-NULL wide C string,\n// including the empty string.\n// NB: The implementations on different platforms slightly differ.\n// On windows, this method uses _wcsicmp which compares according to LC_CTYPE\n// environment variable. On GNU platform this method uses wcscasecmp\n// which compares according to LC_CTYPE category of the current locale.\n// On MacOS X, it uses towlower, which also uses LC_CTYPE category of the\n// current locale.\nbool String::CaseInsensitiveWideCStringEquals(const wchar_t* lhs,\n                                              const wchar_t* rhs) {\n  if (lhs == nullptr) return rhs == nullptr;\n\n  if (rhs == nullptr) return false;\n\n#if GTEST_OS_WINDOWS\n  return _wcsicmp(lhs, rhs) == 0;\n#elif GTEST_OS_LINUX && !GTEST_OS_LINUX_ANDROID\n  return wcscasecmp(lhs, rhs) == 0;\n#else\n  // Android, Mac OS X and Cygwin don't define wcscasecmp.\n  // Other unknown OSes may not define it either.\n  wint_t left, right;\n  do {\n    left = towlower(static_cast<wint_t>(*lhs++));\n    right = towlower(static_cast<wint_t>(*rhs++));\n  } while (left && left == right);\n  return left == right;\n#endif  // OS selector\n}\n\n// Returns true if and only if str ends with the given suffix, ignoring case.\n// Any string is considered to end with an empty suffix.\nbool String::EndsWithCaseInsensitive(\n    const std::string& str, const std::string& suffix) {\n  const size_t str_len = str.length();\n  const size_t suffix_len = suffix.length();\n  return (str_len >= suffix_len) &&\n         CaseInsensitiveCStringEquals(str.c_str() + str_len - suffix_len,\n                                      suffix.c_str());\n}\n\n// Formats an int value as \"%02d\".\nstd::string String::FormatIntWidth2(int value) {\n  return FormatIntWidthN(value, 2);\n}\n\n// Formats an int value to given width with leading zeros.\nstd::string String::FormatIntWidthN(int value, int width) {\n  std::stringstream ss;\n  ss << std::setfill('0') << std::setw(width) << value;\n  return ss.str();\n}\n\n// Formats an int value as \"%X\".\nstd::string String::FormatHexUInt32(uint32_t value) {\n  std::stringstream ss;\n  ss << std::hex << std::uppercase << value;\n  return ss.str();\n}\n\n// Formats an int value as \"%X\".\nstd::string String::FormatHexInt(int value) {\n  return FormatHexUInt32(static_cast<uint32_t>(value));\n}\n\n// Formats a byte as \"%02X\".\nstd::string String::FormatByte(unsigned char value) {\n  std::stringstream ss;\n  ss << std::setfill('0') << std::setw(2) << std::hex << std::uppercase\n     << static_cast<unsigned int>(value);\n  return ss.str();\n}\n\n// Converts the buffer in a stringstream to an std::string, converting NUL\n// bytes to \"\\\\0\" along the way.\nstd::string StringStreamToString(::std::stringstream* ss) {\n  const ::std::string& str = ss->str();\n  const char* const start = str.c_str();\n  const char* const end = start + str.length();\n\n  std::string result;\n  result.reserve(static_cast<size_t>(2 * (end - start)));\n  for (const char* ch = start; ch != end; ++ch) {\n    if (*ch == '\\0') {\n      result += \"\\\\0\";  // Replaces NUL with \"\\\\0\";\n    } else {\n      result += *ch;\n    }\n  }\n\n  return result;\n}\n\n// Appends the user-supplied message to the Google-Test-generated message.\nstd::string AppendUserMessage(const std::string& gtest_msg,\n                              const Message& user_msg) {\n  // Appends the user message if it's non-empty.\n  const std::string user_msg_string = user_msg.GetString();\n  if (user_msg_string.empty()) {\n    return gtest_msg;\n  }\n  if (gtest_msg.empty()) {\n    return user_msg_string;\n  }\n  return gtest_msg + \"\\n\" + user_msg_string;\n}\n\n}  // namespace internal\n\n// class TestResult\n\n// Creates an empty TestResult.\nTestResult::TestResult()\n    : death_test_count_(0), start_timestamp_(0), elapsed_time_(0) {}\n\n// D'tor.\nTestResult::~TestResult() {\n}\n\n// Returns the i-th test part result among all the results. i can\n// range from 0 to total_part_count() - 1. If i is not in that range,\n// aborts the program.\nconst TestPartResult& TestResult::GetTestPartResult(int i) const {\n  if (i < 0 || i >= total_part_count())\n    internal::posix::Abort();\n  return test_part_results_.at(static_cast<size_t>(i));\n}\n\n// Returns the i-th test property. i can range from 0 to\n// test_property_count() - 1. If i is not in that range, aborts the\n// program.\nconst TestProperty& TestResult::GetTestProperty(int i) const {\n  if (i < 0 || i >= test_property_count())\n    internal::posix::Abort();\n  return test_properties_.at(static_cast<size_t>(i));\n}\n\n// Clears the test part results.\nvoid TestResult::ClearTestPartResults() {\n  test_part_results_.clear();\n}\n\n// Adds a test part result to the list.\nvoid TestResult::AddTestPartResult(const TestPartResult& test_part_result) {\n  test_part_results_.push_back(test_part_result);\n}\n\n// Adds a test property to the list. If a property with the same key as the\n// supplied property is already represented, the value of this test_property\n// replaces the old value for that key.\nvoid TestResult::RecordProperty(const std::string& xml_element,\n                                const TestProperty& test_property) {\n  if (!ValidateTestProperty(xml_element, test_property)) {\n    return;\n  }\n  internal::MutexLock lock(&test_properties_mutex_);\n  const std::vector<TestProperty>::iterator property_with_matching_key =\n      std::find_if(test_properties_.begin(), test_properties_.end(),\n                   internal::TestPropertyKeyIs(test_property.key()));\n  if (property_with_matching_key == test_properties_.end()) {\n    test_properties_.push_back(test_property);\n    return;\n  }\n  property_with_matching_key->SetValue(test_property.value());\n}\n\n// The list of reserved attributes used in the <testsuites> element of XML\n// output.\nstatic const char* const kReservedTestSuitesAttributes[] = {\n  \"disabled\",\n  \"errors\",\n  \"failures\",\n  \"name\",\n  \"random_seed\",\n  \"tests\",\n  \"time\",\n  \"timestamp\"\n};\n\n// The list of reserved attributes used in the <testsuite> element of XML\n// output.\nstatic const char* const kReservedTestSuiteAttributes[] = {\n    \"disabled\", \"errors\", \"failures\",  \"name\",\n    \"tests\",    \"time\",   \"timestamp\", \"skipped\"};\n\n// The list of reserved attributes used in the <testcase> element of XML output.\nstatic const char* const kReservedTestCaseAttributes[] = {\n    \"classname\",   \"name\", \"status\", \"time\",  \"type_param\",\n    \"value_param\", \"file\", \"line\"};\n\n// Use a slightly different set for allowed output to ensure existing tests can\n// still RecordProperty(\"result\") or \"RecordProperty(timestamp\")\nstatic const char* const kReservedOutputTestCaseAttributes[] = {\n    \"classname\",   \"name\", \"status\", \"time\",   \"type_param\",\n    \"value_param\", \"file\", \"line\",   \"result\", \"timestamp\"};\n\ntemplate <size_t kSize>\nstd::vector<std::string> ArrayAsVector(const char* const (&array)[kSize]) {\n  return std::vector<std::string>(array, array + kSize);\n}\n\nstatic std::vector<std::string> GetReservedAttributesForElement(\n    const std::string& xml_element) {\n  if (xml_element == \"testsuites\") {\n    return ArrayAsVector(kReservedTestSuitesAttributes);\n  } else if (xml_element == \"testsuite\") {\n    return ArrayAsVector(kReservedTestSuiteAttributes);\n  } else if (xml_element == \"testcase\") {\n    return ArrayAsVector(kReservedTestCaseAttributes);\n  } else {\n    GTEST_CHECK_(false) << \"Unrecognized xml_element provided: \" << xml_element;\n  }\n  // This code is unreachable but some compilers may not realizes that.\n  return std::vector<std::string>();\n}\n\n// TODO(jdesprez): Merge the two getReserved attributes once skip is improved\nstatic std::vector<std::string> GetReservedOutputAttributesForElement(\n    const std::string& xml_element) {\n  if (xml_element == \"testsuites\") {\n    return ArrayAsVector(kReservedTestSuitesAttributes);\n  } else if (xml_element == \"testsuite\") {\n    return ArrayAsVector(kReservedTestSuiteAttributes);\n  } else if (xml_element == \"testcase\") {\n    return ArrayAsVector(kReservedOutputTestCaseAttributes);\n  } else {\n    GTEST_CHECK_(false) << \"Unrecognized xml_element provided: \" << xml_element;\n  }\n  // This code is unreachable but some compilers may not realizes that.\n  return std::vector<std::string>();\n}\n\nstatic std::string FormatWordList(const std::vector<std::string>& words) {\n  Message word_list;\n  for (size_t i = 0; i < words.size(); ++i) {\n    if (i > 0 && words.size() > 2) {\n      word_list << \", \";\n    }\n    if (i == words.size() - 1) {\n      word_list << \"and \";\n    }\n    word_list << \"'\" << words[i] << \"'\";\n  }\n  return word_list.GetString();\n}\n\nstatic bool ValidateTestPropertyName(\n    const std::string& property_name,\n    const std::vector<std::string>& reserved_names) {\n  if (std::find(reserved_names.begin(), reserved_names.end(), property_name) !=\n          reserved_names.end()) {\n    ADD_FAILURE() << \"Reserved key used in RecordProperty(): \" << property_name\n                  << \" (\" << FormatWordList(reserved_names)\n                  << \" are reserved by \" << GTEST_NAME_ << \")\";\n    return false;\n  }\n  return true;\n}\n\n// Adds a failure if the key is a reserved attribute of the element named\n// xml_element.  Returns true if the property is valid.\nbool TestResult::ValidateTestProperty(const std::string& xml_element,\n                                      const TestProperty& test_property) {\n  return ValidateTestPropertyName(test_property.key(),\n                                  GetReservedAttributesForElement(xml_element));\n}\n\n// Clears the object.\nvoid TestResult::Clear() {\n  test_part_results_.clear();\n  test_properties_.clear();\n  death_test_count_ = 0;\n  elapsed_time_ = 0;\n}\n\n// Returns true off the test part was skipped.\nstatic bool TestPartSkipped(const TestPartResult& result) {\n  return result.skipped();\n}\n\n// Returns true if and only if the test was skipped.\nbool TestResult::Skipped() const {\n  return !Failed() && CountIf(test_part_results_, TestPartSkipped) > 0;\n}\n\n// Returns true if and only if the test failed.\nbool TestResult::Failed() const {\n  for (int i = 0; i < total_part_count(); ++i) {\n    if (GetTestPartResult(i).failed())\n      return true;\n  }\n  return false;\n}\n\n// Returns true if and only if the test part fatally failed.\nstatic bool TestPartFatallyFailed(const TestPartResult& result) {\n  return result.fatally_failed();\n}\n\n// Returns true if and only if the test fatally failed.\nbool TestResult::HasFatalFailure() const {\n  return CountIf(test_part_results_, TestPartFatallyFailed) > 0;\n}\n\n// Returns true if and only if the test part non-fatally failed.\nstatic bool TestPartNonfatallyFailed(const TestPartResult& result) {\n  return result.nonfatally_failed();\n}\n\n// Returns true if and only if the test has a non-fatal failure.\nbool TestResult::HasNonfatalFailure() const {\n  return CountIf(test_part_results_, TestPartNonfatallyFailed) > 0;\n}\n\n// Gets the number of all test parts.  This is the sum of the number\n// of successful test parts and the number of failed test parts.\nint TestResult::total_part_count() const {\n  return static_cast<int>(test_part_results_.size());\n}\n\n// Returns the number of the test properties.\nint TestResult::test_property_count() const {\n  return static_cast<int>(test_properties_.size());\n}\n\n// class Test\n\n// Creates a Test object.\n\n// The c'tor saves the states of all flags.\nTest::Test()\n    : gtest_flag_saver_(new GTEST_FLAG_SAVER_) {\n}\n\n// The d'tor restores the states of all flags.  The actual work is\n// done by the d'tor of the gtest_flag_saver_ field, and thus not\n// visible here.\nTest::~Test() {\n}\n\n// Sets up the test fixture.\n//\n// A sub-class may override this.\nvoid Test::SetUp() {\n}\n\n// Tears down the test fixture.\n//\n// A sub-class may override this.\nvoid Test::TearDown() {\n}\n\n// Allows user supplied key value pairs to be recorded for later output.\nvoid Test::RecordProperty(const std::string& key, const std::string& value) {\n  UnitTest::GetInstance()->RecordProperty(key, value);\n}\n\n// Allows user supplied key value pairs to be recorded for later output.\nvoid Test::RecordProperty(const std::string& key, int value) {\n  Message value_message;\n  value_message << value;\n  RecordProperty(key, value_message.GetString().c_str());\n}\n\nnamespace internal {\n\nvoid ReportFailureInUnknownLocation(TestPartResult::Type result_type,\n                                    const std::string& message) {\n  // This function is a friend of UnitTest and as such has access to\n  // AddTestPartResult.\n  UnitTest::GetInstance()->AddTestPartResult(\n      result_type,\n      nullptr,  // No info about the source file where the exception occurred.\n      -1,       // We have no info on which line caused the exception.\n      message,\n      \"\");  // No stack trace, either.\n}\n\n}  // namespace internal\n\n// Google Test requires all tests in the same test suite to use the same test\n// fixture class.  This function checks if the current test has the\n// same fixture class as the first test in the current test suite.  If\n// yes, it returns true; otherwise it generates a Google Test failure and\n// returns false.\nbool Test::HasSameFixtureClass() {\n  internal::UnitTestImpl* const impl = internal::GetUnitTestImpl();\n  const TestSuite* const test_suite = impl->current_test_suite();\n\n  // Info about the first test in the current test suite.\n  const TestInfo* const first_test_info = test_suite->test_info_list()[0];\n  const internal::TypeId first_fixture_id = first_test_info->fixture_class_id_;\n  const char* const first_test_name = first_test_info->name();\n\n  // Info about the current test.\n  const TestInfo* const this_test_info = impl->current_test_info();\n  const internal::TypeId this_fixture_id = this_test_info->fixture_class_id_;\n  const char* const this_test_name = this_test_info->name();\n\n  if (this_fixture_id != first_fixture_id) {\n    // Is the first test defined using TEST?\n    const bool first_is_TEST = first_fixture_id == internal::GetTestTypeId();\n    // Is this test defined using TEST?\n    const bool this_is_TEST = this_fixture_id == internal::GetTestTypeId();\n\n    if (first_is_TEST || this_is_TEST) {\n      // Both TEST and TEST_F appear in same test suite, which is incorrect.\n      // Tell the user how to fix this.\n\n      // Gets the name of the TEST and the name of the TEST_F.  Note\n      // that first_is_TEST and this_is_TEST cannot both be true, as\n      // the fixture IDs are different for the two tests.\n      const char* const TEST_name =\n          first_is_TEST ? first_test_name : this_test_name;\n      const char* const TEST_F_name =\n          first_is_TEST ? this_test_name : first_test_name;\n\n      ADD_FAILURE()\n          << \"All tests in the same test suite must use the same test fixture\\n\"\n          << \"class, so mixing TEST_F and TEST in the same test suite is\\n\"\n          << \"illegal.  In test suite \" << this_test_info->test_suite_name()\n          << \",\\n\"\n          << \"test \" << TEST_F_name << \" is defined using TEST_F but\\n\"\n          << \"test \" << TEST_name << \" is defined using TEST.  You probably\\n\"\n          << \"want to change the TEST to TEST_F or move it to another test\\n\"\n          << \"case.\";\n    } else {\n      // Two fixture classes with the same name appear in two different\n      // namespaces, which is not allowed. Tell the user how to fix this.\n      ADD_FAILURE()\n          << \"All tests in the same test suite must use the same test fixture\\n\"\n          << \"class.  However, in test suite \"\n          << this_test_info->test_suite_name() << \",\\n\"\n          << \"you defined test \" << first_test_name << \" and test \"\n          << this_test_name << \"\\n\"\n          << \"using two different test fixture classes.  This can happen if\\n\"\n          << \"the two classes are from different namespaces or translation\\n\"\n          << \"units and have the same name.  You should probably rename one\\n\"\n          << \"of the classes to put the tests into different test suites.\";\n    }\n    return false;\n  }\n\n  return true;\n}\n\n#if GTEST_HAS_SEH\n\n// Adds an \"exception thrown\" fatal failure to the current test.  This\n// function returns its result via an output parameter pointer because VC++\n// prohibits creation of objects with destructors on stack in functions\n// using __try (see error C2712).\nstatic std::string* FormatSehExceptionMessage(DWORD exception_code,\n                                              const char* location) {\n  Message message;\n  message << \"SEH exception with code 0x\" << std::setbase(16) <<\n    exception_code << std::setbase(10) << \" thrown in \" << location << \".\";\n\n  return new std::string(message.GetString());\n}\n\n#endif  // GTEST_HAS_SEH\n\nnamespace internal {\n\n#if GTEST_HAS_EXCEPTIONS\n\n// Adds an \"exception thrown\" fatal failure to the current test.\nstatic std::string FormatCxxExceptionMessage(const char* description,\n                                             const char* location) {\n  Message message;\n  if (description != nullptr) {\n    message << \"C++ exception with description \\\"\" << description << \"\\\"\";\n  } else {\n    message << \"Unknown C++ exception\";\n  }\n  message << \" thrown in \" << location << \".\";\n\n  return message.GetString();\n}\n\nstatic std::string PrintTestPartResultToString(\n    const TestPartResult& test_part_result);\n\nGoogleTestFailureException::GoogleTestFailureException(\n    const TestPartResult& failure)\n    : ::std::runtime_error(PrintTestPartResultToString(failure).c_str()) {}\n\n#endif  // GTEST_HAS_EXCEPTIONS\n\n// We put these helper functions in the internal namespace as IBM's xlC\n// compiler rejects the code if they were declared static.\n\n// Runs the given method and handles SEH exceptions it throws, when\n// SEH is supported; returns the 0-value for type Result in case of an\n// SEH exception.  (Microsoft compilers cannot handle SEH and C++\n// exceptions in the same function.  Therefore, we provide a separate\n// wrapper function for handling SEH exceptions.)\ntemplate <class T, typename Result>\nResult HandleSehExceptionsInMethodIfSupported(\n    T* object, Result (T::*method)(), const char* location) {\n#if GTEST_HAS_SEH\n  __try {\n    return (object->*method)();\n  } __except (internal::UnitTestOptions::GTestShouldProcessSEH(  // NOLINT\n      GetExceptionCode())) {\n    // We create the exception message on the heap because VC++ prohibits\n    // creation of objects with destructors on stack in functions using __try\n    // (see error C2712).\n    std::string* exception_message = FormatSehExceptionMessage(\n        GetExceptionCode(), location);\n    internal::ReportFailureInUnknownLocation(TestPartResult::kFatalFailure,\n                                             *exception_message);\n    delete exception_message;\n    return static_cast<Result>(0);\n  }\n#else\n  (void)location;\n  return (object->*method)();\n#endif  // GTEST_HAS_SEH\n}\n\n// Runs the given method and catches and reports C++ and/or SEH-style\n// exceptions, if they are supported; returns the 0-value for type\n// Result in case of an SEH exception.\ntemplate <class T, typename Result>\nResult HandleExceptionsInMethodIfSupported(\n    T* object, Result (T::*method)(), const char* location) {\n  // NOTE: The user code can affect the way in which Google Test handles\n  // exceptions by setting GTEST_FLAG(catch_exceptions), but only before\n  // RUN_ALL_TESTS() starts. It is technically possible to check the flag\n  // after the exception is caught and either report or re-throw the\n  // exception based on the flag's value:\n  //\n  // try {\n  //   // Perform the test method.\n  // } catch (...) {\n  //   if (GTEST_FLAG(catch_exceptions))\n  //     // Report the exception as failure.\n  //   else\n  //     throw;  // Re-throws the original exception.\n  // }\n  //\n  // However, the purpose of this flag is to allow the program to drop into\n  // the debugger when the exception is thrown. On most platforms, once the\n  // control enters the catch block, the exception origin information is\n  // lost and the debugger will stop the program at the point of the\n  // re-throw in this function -- instead of at the point of the original\n  // throw statement in the code under test.  For this reason, we perform\n  // the check early, sacrificing the ability to affect Google Test's\n  // exception handling in the method where the exception is thrown.\n  if (internal::GetUnitTestImpl()->catch_exceptions()) {\n#if GTEST_HAS_EXCEPTIONS\n    try {\n      return HandleSehExceptionsInMethodIfSupported(object, method, location);\n    } catch (const AssertionException&) {  // NOLINT\n      // This failure was reported already.\n    } catch (const internal::GoogleTestFailureException&) {  // NOLINT\n      // This exception type can only be thrown by a failed Google\n      // Test assertion with the intention of letting another testing\n      // framework catch it.  Therefore we just re-throw it.\n      throw;\n    } catch (const std::exception& e) {  // NOLINT\n      internal::ReportFailureInUnknownLocation(\n          TestPartResult::kFatalFailure,\n          FormatCxxExceptionMessage(e.what(), location));\n    } catch (...) {  // NOLINT\n      internal::ReportFailureInUnknownLocation(\n          TestPartResult::kFatalFailure,\n          FormatCxxExceptionMessage(nullptr, location));\n    }\n    return static_cast<Result>(0);\n#else\n    return HandleSehExceptionsInMethodIfSupported(object, method, location);\n#endif  // GTEST_HAS_EXCEPTIONS\n  } else {\n    return (object->*method)();\n  }\n}\n\n}  // namespace internal\n\n// Runs the test and updates the test result.\nvoid Test::Run() {\n  if (!HasSameFixtureClass()) return;\n\n  internal::UnitTestImpl* const impl = internal::GetUnitTestImpl();\n  impl->os_stack_trace_getter()->UponLeavingGTest();\n  internal::HandleExceptionsInMethodIfSupported(this, &Test::SetUp, \"SetUp()\");\n  // We will run the test only if SetUp() was successful and didn't call\n  // GTEST_SKIP().\n  if (!HasFatalFailure() && !IsSkipped()) {\n    impl->os_stack_trace_getter()->UponLeavingGTest();\n    internal::HandleExceptionsInMethodIfSupported(\n        this, &Test::TestBody, \"the test body\");\n  }\n\n  // However, we want to clean up as much as possible.  Hence we will\n  // always call TearDown(), even if SetUp() or the test body has\n  // failed.\n  impl->os_stack_trace_getter()->UponLeavingGTest();\n  internal::HandleExceptionsInMethodIfSupported(\n      this, &Test::TearDown, \"TearDown()\");\n}\n\n// Returns true if and only if the current test has a fatal failure.\nbool Test::HasFatalFailure() {\n  return internal::GetUnitTestImpl()->current_test_result()->HasFatalFailure();\n}\n\n// Returns true if and only if the current test has a non-fatal failure.\nbool Test::HasNonfatalFailure() {\n  return internal::GetUnitTestImpl()->current_test_result()->\n      HasNonfatalFailure();\n}\n\n// Returns true if and only if the current test was skipped.\nbool Test::IsSkipped() {\n  return internal::GetUnitTestImpl()->current_test_result()->Skipped();\n}\n\n// class TestInfo\n\n// Constructs a TestInfo object. It assumes ownership of the test factory\n// object.\nTestInfo::TestInfo(const std::string& a_test_suite_name,\n                   const std::string& a_name, const char* a_type_param,\n                   const char* a_value_param,\n                   internal::CodeLocation a_code_location,\n                   internal::TypeId fixture_class_id,\n                   internal::TestFactoryBase* factory)\n    : test_suite_name_(a_test_suite_name),\n      name_(a_name),\n      type_param_(a_type_param ? new std::string(a_type_param) : nullptr),\n      value_param_(a_value_param ? new std::string(a_value_param) : nullptr),\n      location_(a_code_location),\n      fixture_class_id_(fixture_class_id),\n      should_run_(false),\n      is_disabled_(false),\n      matches_filter_(false),\n      is_in_another_shard_(false),\n      factory_(factory),\n      result_() {}\n\n// Destructs a TestInfo object.\nTestInfo::~TestInfo() { delete factory_; }\n\nnamespace internal {\n\n// Creates a new TestInfo object and registers it with Google Test;\n// returns the created object.\n//\n// Arguments:\n//\n//   test_suite_name:  name of the test suite\n//   name:             name of the test\n//   type_param:       the name of the test's type parameter, or NULL if\n//                     this is not a typed or a type-parameterized test.\n//   value_param:      text representation of the test's value parameter,\n//                     or NULL if this is not a value-parameterized test.\n//   code_location:    code location where the test is defined\n//   fixture_class_id: ID of the test fixture class\n//   set_up_tc:        pointer to the function that sets up the test suite\n//   tear_down_tc:     pointer to the function that tears down the test suite\n//   factory:          pointer to the factory that creates a test object.\n//                     The newly created TestInfo instance will assume\n//                     ownership of the factory object.\nTestInfo* MakeAndRegisterTestInfo(\n    const char* test_suite_name, const char* name, const char* type_param,\n    const char* value_param, CodeLocation code_location,\n    TypeId fixture_class_id, SetUpTestSuiteFunc set_up_tc,\n    TearDownTestSuiteFunc tear_down_tc, TestFactoryBase* factory) {\n  TestInfo* const test_info =\n      new TestInfo(test_suite_name, name, type_param, value_param,\n                   code_location, fixture_class_id, factory);\n  GetUnitTestImpl()->AddTestInfo(set_up_tc, tear_down_tc, test_info);\n  return test_info;\n}\n\nvoid ReportInvalidTestSuiteType(const char* test_suite_name,\n                                CodeLocation code_location) {\n  Message errors;\n  errors\n      << \"Attempted redefinition of test suite \" << test_suite_name << \".\\n\"\n      << \"All tests in the same test suite must use the same test fixture\\n\"\n      << \"class.  However, in test suite \" << test_suite_name << \", you tried\\n\"\n      << \"to define a test using a fixture class different from the one\\n\"\n      << \"used earlier. This can happen if the two fixture classes are\\n\"\n      << \"from different namespaces and have the same name. You should\\n\"\n      << \"probably rename one of the classes to put the tests into different\\n\"\n      << \"test suites.\";\n\n  GTEST_LOG_(ERROR) << FormatFileLocation(code_location.file.c_str(),\n                                          code_location.line)\n                    << \" \" << errors.GetString();\n}\n}  // namespace internal\n\nnamespace {\n\n// A predicate that checks the test name of a TestInfo against a known\n// value.\n//\n// This is used for implementation of the TestSuite class only.  We put\n// it in the anonymous namespace to prevent polluting the outer\n// namespace.\n//\n// TestNameIs is copyable.\nclass TestNameIs {\n public:\n  // Constructor.\n  //\n  // TestNameIs has NO default constructor.\n  explicit TestNameIs(const char* name)\n      : name_(name) {}\n\n  // Returns true if and only if the test name of test_info matches name_.\n  bool operator()(const TestInfo * test_info) const {\n    return test_info && test_info->name() == name_;\n  }\n\n private:\n  std::string name_;\n};\n\n}  // namespace\n\nnamespace internal {\n\n// This method expands all parameterized tests registered with macros TEST_P\n// and INSTANTIATE_TEST_SUITE_P into regular tests and registers those.\n// This will be done just once during the program runtime.\nvoid UnitTestImpl::RegisterParameterizedTests() {\n  if (!parameterized_tests_registered_) {\n    parameterized_test_registry_.RegisterTests();\n    type_parameterized_test_registry_.CheckForInstantiations();\n    parameterized_tests_registered_ = true;\n  }\n}\n\n}  // namespace internal\n\n// Creates the test object, runs it, records its result, and then\n// deletes it.\nvoid TestInfo::Run() {\n  if (!should_run_) return;\n\n  // Tells UnitTest where to store test result.\n  internal::UnitTestImpl* const impl = internal::GetUnitTestImpl();\n  impl->set_current_test_info(this);\n\n  TestEventListener* repeater = UnitTest::GetInstance()->listeners().repeater();\n\n  // Notifies the unit test event listeners that a test is about to start.\n  repeater->OnTestStart(*this);\n\n  result_.set_start_timestamp(internal::GetTimeInMillis());\n  internal::Timer timer;\n\n  impl->os_stack_trace_getter()->UponLeavingGTest();\n\n  // Creates the test object.\n  Test* const test = internal::HandleExceptionsInMethodIfSupported(\n      factory_, &internal::TestFactoryBase::CreateTest,\n      \"the test fixture's constructor\");\n\n  // Runs the test if the constructor didn't generate a fatal failure or invoke\n  // GTEST_SKIP().\n  // Note that the object will not be null\n  if (!Test::HasFatalFailure() && !Test::IsSkipped()) {\n    // This doesn't throw as all user code that can throw are wrapped into\n    // exception handling code.\n    test->Run();\n  }\n\n  if (test != nullptr) {\n    // Deletes the test object.\n    impl->os_stack_trace_getter()->UponLeavingGTest();\n    internal::HandleExceptionsInMethodIfSupported(\n        test, &Test::DeleteSelf_, \"the test fixture's destructor\");\n  }\n\n  result_.set_elapsed_time(timer.Elapsed());\n\n  // Notifies the unit test event listener that a test has just finished.\n  repeater->OnTestEnd(*this);\n\n  // Tells UnitTest to stop associating assertion results to this\n  // test.\n  impl->set_current_test_info(nullptr);\n}\n\n// Skip and records a skipped test result for this object.\nvoid TestInfo::Skip() {\n  if (!should_run_) return;\n\n  internal::UnitTestImpl* const impl = internal::GetUnitTestImpl();\n  impl->set_current_test_info(this);\n\n  TestEventListener* repeater = UnitTest::GetInstance()->listeners().repeater();\n\n  // Notifies the unit test event listeners that a test is about to start.\n  repeater->OnTestStart(*this);\n\n  const TestPartResult test_part_result =\n      TestPartResult(TestPartResult::kSkip, this->file(), this->line(), \"\");\n  impl->GetTestPartResultReporterForCurrentThread()->ReportTestPartResult(\n      test_part_result);\n\n  // Notifies the unit test event listener that a test has just finished.\n  repeater->OnTestEnd(*this);\n  impl->set_current_test_info(nullptr);\n}\n\n// class TestSuite\n\n// Gets the number of successful tests in this test suite.\nint TestSuite::successful_test_count() const {\n  return CountIf(test_info_list_, TestPassed);\n}\n\n// Gets the number of successful tests in this test suite.\nint TestSuite::skipped_test_count() const {\n  return CountIf(test_info_list_, TestSkipped);\n}\n\n// Gets the number of failed tests in this test suite.\nint TestSuite::failed_test_count() const {\n  return CountIf(test_info_list_, TestFailed);\n}\n\n// Gets the number of disabled tests that will be reported in the XML report.\nint TestSuite::reportable_disabled_test_count() const {\n  return CountIf(test_info_list_, TestReportableDisabled);\n}\n\n// Gets the number of disabled tests in this test suite.\nint TestSuite::disabled_test_count() const {\n  return CountIf(test_info_list_, TestDisabled);\n}\n\n// Gets the number of tests to be printed in the XML report.\nint TestSuite::reportable_test_count() const {\n  return CountIf(test_info_list_, TestReportable);\n}\n\n// Get the number of tests in this test suite that should run.\nint TestSuite::test_to_run_count() const {\n  return CountIf(test_info_list_, ShouldRunTest);\n}\n\n// Gets the number of all tests.\nint TestSuite::total_test_count() const {\n  return static_cast<int>(test_info_list_.size());\n}\n\n// Creates a TestSuite with the given name.\n//\n// Arguments:\n//\n//   a_name:       name of the test suite\n//   a_type_param: the name of the test suite's type parameter, or NULL if\n//                 this is not a typed or a type-parameterized test suite.\n//   set_up_tc:    pointer to the function that sets up the test suite\n//   tear_down_tc: pointer to the function that tears down the test suite\nTestSuite::TestSuite(const char* a_name, const char* a_type_param,\n                     internal::SetUpTestSuiteFunc set_up_tc,\n                     internal::TearDownTestSuiteFunc tear_down_tc)\n    : name_(a_name),\n      type_param_(a_type_param ? new std::string(a_type_param) : nullptr),\n      set_up_tc_(set_up_tc),\n      tear_down_tc_(tear_down_tc),\n      should_run_(false),\n      start_timestamp_(0),\n      elapsed_time_(0) {}\n\n// Destructor of TestSuite.\nTestSuite::~TestSuite() {\n  // Deletes every Test in the collection.\n  ForEach(test_info_list_, internal::Delete<TestInfo>);\n}\n\n// Returns the i-th test among all the tests. i can range from 0 to\n// total_test_count() - 1. If i is not in that range, returns NULL.\nconst TestInfo* TestSuite::GetTestInfo(int i) const {\n  const int index = GetElementOr(test_indices_, i, -1);\n  return index < 0 ? nullptr : test_info_list_[static_cast<size_t>(index)];\n}\n\n// Returns the i-th test among all the tests. i can range from 0 to\n// total_test_count() - 1. If i is not in that range, returns NULL.\nTestInfo* TestSuite::GetMutableTestInfo(int i) {\n  const int index = GetElementOr(test_indices_, i, -1);\n  return index < 0 ? nullptr : test_info_list_[static_cast<size_t>(index)];\n}\n\n// Adds a test to this test suite.  Will delete the test upon\n// destruction of the TestSuite object.\nvoid TestSuite::AddTestInfo(TestInfo* test_info) {\n  test_info_list_.push_back(test_info);\n  test_indices_.push_back(static_cast<int>(test_indices_.size()));\n}\n\n// Runs every test in this TestSuite.\nvoid TestSuite::Run() {\n  if (!should_run_) return;\n\n  internal::UnitTestImpl* const impl = internal::GetUnitTestImpl();\n  impl->set_current_test_suite(this);\n\n  TestEventListener* repeater = UnitTest::GetInstance()->listeners().repeater();\n\n  // Call both legacy and the new API\n  repeater->OnTestSuiteStart(*this);\n//  Legacy API is deprecated but still available\n#ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_\n  repeater->OnTestCaseStart(*this);\n#endif  //  GTEST_REMOVE_LEGACY_TEST_CASEAPI_\n\n  impl->os_stack_trace_getter()->UponLeavingGTest();\n  internal::HandleExceptionsInMethodIfSupported(\n      this, &TestSuite::RunSetUpTestSuite, \"SetUpTestSuite()\");\n\n  start_timestamp_ = internal::GetTimeInMillis();\n  internal::Timer timer;\n  for (int i = 0; i < total_test_count(); i++) {\n    GetMutableTestInfo(i)->Run();\n    if (GTEST_FLAG(fail_fast) && GetMutableTestInfo(i)->result()->Failed()) {\n      for (int j = i + 1; j < total_test_count(); j++) {\n        GetMutableTestInfo(j)->Skip();\n      }\n      break;\n    }\n  }\n  elapsed_time_ = timer.Elapsed();\n\n  impl->os_stack_trace_getter()->UponLeavingGTest();\n  internal::HandleExceptionsInMethodIfSupported(\n      this, &TestSuite::RunTearDownTestSuite, \"TearDownTestSuite()\");\n\n  // Call both legacy and the new API\n  repeater->OnTestSuiteEnd(*this);\n//  Legacy API is deprecated but still available\n#ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_\n  repeater->OnTestCaseEnd(*this);\n#endif  //  GTEST_REMOVE_LEGACY_TEST_CASEAPI_\n\n  impl->set_current_test_suite(nullptr);\n}\n\n// Skips all tests under this TestSuite.\nvoid TestSuite::Skip() {\n  if (!should_run_) return;\n\n  internal::UnitTestImpl* const impl = internal::GetUnitTestImpl();\n  impl->set_current_test_suite(this);\n\n  TestEventListener* repeater = UnitTest::GetInstance()->listeners().repeater();\n\n  // Call both legacy and the new API\n  repeater->OnTestSuiteStart(*this);\n//  Legacy API is deprecated but still available\n#ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_\n  repeater->OnTestCaseStart(*this);\n#endif  //  GTEST_REMOVE_LEGACY_TEST_CASEAPI_\n\n  for (int i = 0; i < total_test_count(); i++) {\n    GetMutableTestInfo(i)->Skip();\n  }\n\n  // Call both legacy and the new API\n  repeater->OnTestSuiteEnd(*this);\n  // Legacy API is deprecated but still available\n#ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_\n  repeater->OnTestCaseEnd(*this);\n#endif  //  GTEST_REMOVE_LEGACY_TEST_CASEAPI_\n\n  impl->set_current_test_suite(nullptr);\n}\n\n// Clears the results of all tests in this test suite.\nvoid TestSuite::ClearResult() {\n  ad_hoc_test_result_.Clear();\n  ForEach(test_info_list_, TestInfo::ClearTestResult);\n}\n\n// Shuffles the tests in this test suite.\nvoid TestSuite::ShuffleTests(internal::Random* random) {\n  Shuffle(random, &test_indices_);\n}\n\n// Restores the test order to before the first shuffle.\nvoid TestSuite::UnshuffleTests() {\n  for (size_t i = 0; i < test_indices_.size(); i++) {\n    test_indices_[i] = static_cast<int>(i);\n  }\n}\n\n// Formats a countable noun.  Depending on its quantity, either the\n// singular form or the plural form is used. e.g.\n//\n// FormatCountableNoun(1, \"formula\", \"formuli\") returns \"1 formula\".\n// FormatCountableNoun(5, \"book\", \"books\") returns \"5 books\".\nstatic std::string FormatCountableNoun(int count,\n                                       const char * singular_form,\n                                       const char * plural_form) {\n  return internal::StreamableToString(count) + \" \" +\n      (count == 1 ? singular_form : plural_form);\n}\n\n// Formats the count of tests.\nstatic std::string FormatTestCount(int test_count) {\n  return FormatCountableNoun(test_count, \"test\", \"tests\");\n}\n\n// Formats the count of test suites.\nstatic std::string FormatTestSuiteCount(int test_suite_count) {\n  return FormatCountableNoun(test_suite_count, \"test suite\", \"test suites\");\n}\n\n// Converts a TestPartResult::Type enum to human-friendly string\n// representation.  Both kNonFatalFailure and kFatalFailure are translated\n// to \"Failure\", as the user usually doesn't care about the difference\n// between the two when viewing the test result.\nstatic const char * TestPartResultTypeToString(TestPartResult::Type type) {\n  switch (type) {\n    case TestPartResult::kSkip:\n      return \"Skipped\\n\";\n    case TestPartResult::kSuccess:\n      return \"Success\";\n\n    case TestPartResult::kNonFatalFailure:\n    case TestPartResult::kFatalFailure:\n#ifdef _MSC_VER\n      return \"error: \";\n#else\n      return \"Failure\\n\";\n#endif\n    default:\n      return \"Unknown result type\";\n  }\n}\n\nnamespace internal {\nnamespace {\nenum class GTestColor { kDefault, kRed, kGreen, kYellow };\n}  // namespace\n\n// Prints a TestPartResult to an std::string.\nstatic std::string PrintTestPartResultToString(\n    const TestPartResult& test_part_result) {\n  return (Message()\n          << internal::FormatFileLocation(test_part_result.file_name(),\n                                          test_part_result.line_number())\n          << \" \" << TestPartResultTypeToString(test_part_result.type())\n          << test_part_result.message()).GetString();\n}\n\n// Prints a TestPartResult.\nstatic void PrintTestPartResult(const TestPartResult& test_part_result) {\n  const std::string& result =\n      PrintTestPartResultToString(test_part_result);\n  printf(\"%s\\n\", result.c_str());\n  fflush(stdout);\n  // If the test program runs in Visual Studio or a debugger, the\n  // following statements add the test part result message to the Output\n  // window such that the user can double-click on it to jump to the\n  // corresponding source code location; otherwise they do nothing.\n#if GTEST_OS_WINDOWS && !GTEST_OS_WINDOWS_MOBILE\n  // We don't call OutputDebugString*() on Windows Mobile, as printing\n  // to stdout is done by OutputDebugString() there already - we don't\n  // want the same message printed twice.\n  ::OutputDebugStringA(result.c_str());\n  ::OutputDebugStringA(\"\\n\");\n#endif\n}\n\n// class PrettyUnitTestResultPrinter\n#if GTEST_OS_WINDOWS && !GTEST_OS_WINDOWS_MOBILE && \\\n    !GTEST_OS_WINDOWS_PHONE && !GTEST_OS_WINDOWS_RT && !GTEST_OS_WINDOWS_MINGW\n\n// Returns the character attribute for the given color.\nstatic WORD GetColorAttribute(GTestColor color) {\n  switch (color) {\n    case GTestColor::kRed:\n      return FOREGROUND_RED;\n    case GTestColor::kGreen:\n      return FOREGROUND_GREEN;\n    case GTestColor::kYellow:\n      return FOREGROUND_RED | FOREGROUND_GREEN;\n    default:           return 0;\n  }\n}\n\nstatic int GetBitOffset(WORD color_mask) {\n  if (color_mask == 0) return 0;\n\n  int bitOffset = 0;\n  while ((color_mask & 1) == 0) {\n    color_mask >>= 1;\n    ++bitOffset;\n  }\n  return bitOffset;\n}\n\nstatic WORD GetNewColor(GTestColor color, WORD old_color_attrs) {\n  // Let's reuse the BG\n  static const WORD background_mask = BACKGROUND_BLUE | BACKGROUND_GREEN |\n                                      BACKGROUND_RED | BACKGROUND_INTENSITY;\n  static const WORD foreground_mask = FOREGROUND_BLUE | FOREGROUND_GREEN |\n                                      FOREGROUND_RED | FOREGROUND_INTENSITY;\n  const WORD existing_bg = old_color_attrs & background_mask;\n\n  WORD new_color =\n      GetColorAttribute(color) | existing_bg | FOREGROUND_INTENSITY;\n  static const int bg_bitOffset = GetBitOffset(background_mask);\n  static const int fg_bitOffset = GetBitOffset(foreground_mask);\n\n  if (((new_color & background_mask) >> bg_bitOffset) ==\n      ((new_color & foreground_mask) >> fg_bitOffset)) {\n    new_color ^= FOREGROUND_INTENSITY;  // invert intensity\n  }\n  return new_color;\n}\n\n#else\n\n// Returns the ANSI color code for the given color. GTestColor::kDefault is\n// an invalid input.\nstatic const char* GetAnsiColorCode(GTestColor color) {\n  switch (color) {\n    case GTestColor::kRed:\n      return \"1\";\n    case GTestColor::kGreen:\n      return \"2\";\n    case GTestColor::kYellow:\n      return \"3\";\n    default:\n      return nullptr;\n  }\n}\n\n#endif  // GTEST_OS_WINDOWS && !GTEST_OS_WINDOWS_MOBILE\n\n// Returns true if and only if Google Test should use colors in the output.\nbool ShouldUseColor(bool stdout_is_tty) {\n  const char* const gtest_color = GTEST_FLAG(color).c_str();\n\n  if (String::CaseInsensitiveCStringEquals(gtest_color, \"auto\")) {\n#if GTEST_OS_WINDOWS && !GTEST_OS_WINDOWS_MINGW\n    // On Windows the TERM variable is usually not set, but the\n    // console there does support colors.\n    return stdout_is_tty;\n#else\n    // On non-Windows platforms, we rely on the TERM variable.\n    const char* const term = posix::GetEnv(\"TERM\");\n    const bool term_supports_color =\n        String::CStringEquals(term, \"xterm\") ||\n        String::CStringEquals(term, \"xterm-color\") ||\n        String::CStringEquals(term, \"xterm-256color\") ||\n        String::CStringEquals(term, \"screen\") ||\n        String::CStringEquals(term, \"screen-256color\") ||\n        String::CStringEquals(term, \"tmux\") ||\n        String::CStringEquals(term, \"tmux-256color\") ||\n        String::CStringEquals(term, \"rxvt-unicode\") ||\n        String::CStringEquals(term, \"rxvt-unicode-256color\") ||\n        String::CStringEquals(term, \"linux\") ||\n        String::CStringEquals(term, \"cygwin\");\n    return stdout_is_tty && term_supports_color;\n#endif  // GTEST_OS_WINDOWS\n  }\n\n  return String::CaseInsensitiveCStringEquals(gtest_color, \"yes\") ||\n      String::CaseInsensitiveCStringEquals(gtest_color, \"true\") ||\n      String::CaseInsensitiveCStringEquals(gtest_color, \"t\") ||\n      String::CStringEquals(gtest_color, \"1\");\n  // We take \"yes\", \"true\", \"t\", and \"1\" as meaning \"yes\".  If the\n  // value is neither one of these nor \"auto\", we treat it as \"no\" to\n  // be conservative.\n}\n\n// Helpers for printing colored strings to stdout. Note that on Windows, we\n// cannot simply emit special characters and have the terminal change colors.\n// This routine must actually emit the characters rather than return a string\n// that would be colored when printed, as can be done on Linux.\n\nGTEST_ATTRIBUTE_PRINTF_(2, 3)\nstatic void ColoredPrintf(GTestColor color, const char *fmt, ...) {\n  va_list args;\n  va_start(args, fmt);\n\n#if GTEST_OS_WINDOWS_MOBILE || GTEST_OS_ZOS || GTEST_OS_IOS || \\\n    GTEST_OS_WINDOWS_PHONE || GTEST_OS_WINDOWS_RT || defined(ESP_PLATFORM)\n  const bool use_color = AlwaysFalse();\n#else\n  static const bool in_color_mode =\n      ShouldUseColor(posix::IsATTY(posix::FileNo(stdout)) != 0);\n  const bool use_color = in_color_mode && (color != GTestColor::kDefault);\n#endif  // GTEST_OS_WINDOWS_MOBILE || GTEST_OS_ZOS\n\n  if (!use_color) {\n    vprintf(fmt, args);\n    va_end(args);\n    return;\n  }\n\n#if GTEST_OS_WINDOWS && !GTEST_OS_WINDOWS_MOBILE && \\\n    !GTEST_OS_WINDOWS_PHONE && !GTEST_OS_WINDOWS_RT && !GTEST_OS_WINDOWS_MINGW\n  const HANDLE stdout_handle = GetStdHandle(STD_OUTPUT_HANDLE);\n\n  // Gets the current text color.\n  CONSOLE_SCREEN_BUFFER_INFO buffer_info;\n  GetConsoleScreenBufferInfo(stdout_handle, &buffer_info);\n  const WORD old_color_attrs = buffer_info.wAttributes;\n  const WORD new_color = GetNewColor(color, old_color_attrs);\n\n  // We need to flush the stream buffers into the console before each\n  // SetConsoleTextAttribute call lest it affect the text that is already\n  // printed but has not yet reached the console.\n  fflush(stdout);\n  SetConsoleTextAttribute(stdout_handle, new_color);\n\n  vprintf(fmt, args);\n\n  fflush(stdout);\n  // Restores the text color.\n  SetConsoleTextAttribute(stdout_handle, old_color_attrs);\n#else\n  printf(\"\\033[0;3%sm\", GetAnsiColorCode(color));\n  vprintf(fmt, args);\n  printf(\"\\033[m\");  // Resets the terminal to default.\n#endif  // GTEST_OS_WINDOWS && !GTEST_OS_WINDOWS_MOBILE\n  va_end(args);\n}\n\n// Text printed in Google Test's text output and --gtest_list_tests\n// output to label the type parameter and value parameter for a test.\nstatic const char kTypeParamLabel[] = \"TypeParam\";\nstatic const char kValueParamLabel[] = \"GetParam()\";\n\nstatic void PrintFullTestCommentIfPresent(const TestInfo& test_info) {\n  const char* const type_param = test_info.type_param();\n  const char* const value_param = test_info.value_param();\n\n  if (type_param != nullptr || value_param != nullptr) {\n    printf(\", where \");\n    if (type_param != nullptr) {\n      printf(\"%s = %s\", kTypeParamLabel, type_param);\n      if (value_param != nullptr) printf(\" and \");\n    }\n    if (value_param != nullptr) {\n      printf(\"%s = %s\", kValueParamLabel, value_param);\n    }\n  }\n}\n\n// This class implements the TestEventListener interface.\n//\n// Class PrettyUnitTestResultPrinter is copyable.\nclass PrettyUnitTestResultPrinter : public TestEventListener {\n public:\n  PrettyUnitTestResultPrinter() {}\n  static void PrintTestName(const char* test_suite, const char* test) {\n    printf(\"%s.%s\", test_suite, test);\n  }\n\n  // The following methods override what's in the TestEventListener class.\n  void OnTestProgramStart(const UnitTest& /*unit_test*/) override {}\n  void OnTestIterationStart(const UnitTest& unit_test, int iteration) override;\n  void OnEnvironmentsSetUpStart(const UnitTest& unit_test) override;\n  void OnEnvironmentsSetUpEnd(const UnitTest& /*unit_test*/) override {}\n#ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_\n  void OnTestCaseStart(const TestCase& test_case) override;\n#else\n  void OnTestSuiteStart(const TestSuite& test_suite) override;\n#endif  // OnTestCaseStart\n\n  void OnTestStart(const TestInfo& test_info) override;\n\n  void OnTestPartResult(const TestPartResult& result) override;\n  void OnTestEnd(const TestInfo& test_info) override;\n#ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_\n  void OnTestCaseEnd(const TestCase& test_case) override;\n#else\n  void OnTestSuiteEnd(const TestSuite& test_suite) override;\n#endif  // GTEST_REMOVE_LEGACY_TEST_CASEAPI_\n\n  void OnEnvironmentsTearDownStart(const UnitTest& unit_test) override;\n  void OnEnvironmentsTearDownEnd(const UnitTest& /*unit_test*/) override {}\n  void OnTestIterationEnd(const UnitTest& unit_test, int iteration) override;\n  void OnTestProgramEnd(const UnitTest& /*unit_test*/) override {}\n\n private:\n  static void PrintFailedTests(const UnitTest& unit_test);\n  static void PrintFailedTestSuites(const UnitTest& unit_test);\n  static void PrintSkippedTests(const UnitTest& unit_test);\n};\n\n  // Fired before each iteration of tests starts.\nvoid PrettyUnitTestResultPrinter::OnTestIterationStart(\n    const UnitTest& unit_test, int iteration) {\n  if (GTEST_FLAG(repeat) != 1)\n    printf(\"\\nRepeating all tests (iteration %d) . . .\\n\\n\", iteration + 1);\n\n  const char* const filter = GTEST_FLAG(filter).c_str();\n\n  // Prints the filter if it's not *.  This reminds the user that some\n  // tests may be skipped.\n  if (!String::CStringEquals(filter, kUniversalFilter)) {\n    ColoredPrintf(GTestColor::kYellow, \"Note: %s filter = %s\\n\", GTEST_NAME_,\n                  filter);\n  }\n\n  if (internal::ShouldShard(kTestTotalShards, kTestShardIndex, false)) {\n    const int32_t shard_index = Int32FromEnvOrDie(kTestShardIndex, -1);\n    ColoredPrintf(GTestColor::kYellow, \"Note: This is test shard %d of %s.\\n\",\n                  static_cast<int>(shard_index) + 1,\n                  internal::posix::GetEnv(kTestTotalShards));\n  }\n\n  if (GTEST_FLAG(shuffle)) {\n    ColoredPrintf(GTestColor::kYellow,\n                  \"Note: Randomizing tests' orders with a seed of %d .\\n\",\n                  unit_test.random_seed());\n  }\n\n  ColoredPrintf(GTestColor::kGreen, \"[==========] \");\n  printf(\"Running %s from %s.\\n\",\n         FormatTestCount(unit_test.test_to_run_count()).c_str(),\n         FormatTestSuiteCount(unit_test.test_suite_to_run_count()).c_str());\n  fflush(stdout);\n}\n\nvoid PrettyUnitTestResultPrinter::OnEnvironmentsSetUpStart(\n    const UnitTest& /*unit_test*/) {\n  ColoredPrintf(GTestColor::kGreen, \"[----------] \");\n  printf(\"Global test environment set-up.\\n\");\n  fflush(stdout);\n}\n\n#ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_\nvoid PrettyUnitTestResultPrinter::OnTestCaseStart(const TestCase& test_case) {\n  const std::string counts =\n      FormatCountableNoun(test_case.test_to_run_count(), \"test\", \"tests\");\n  ColoredPrintf(GTestColor::kGreen, \"[----------] \");\n  printf(\"%s from %s\", counts.c_str(), test_case.name());\n  if (test_case.type_param() == nullptr) {\n    printf(\"\\n\");\n  } else {\n    printf(\", where %s = %s\\n\", kTypeParamLabel, test_case.type_param());\n  }\n  fflush(stdout);\n}\n#else\nvoid PrettyUnitTestResultPrinter::OnTestSuiteStart(\n    const TestSuite& test_suite) {\n  const std::string counts =\n      FormatCountableNoun(test_suite.test_to_run_count(), \"test\", \"tests\");\n  ColoredPrintf(GTestColor::kGreen, \"[----------] \");\n  printf(\"%s from %s\", counts.c_str(), test_suite.name());\n  if (test_suite.type_param() == nullptr) {\n    printf(\"\\n\");\n  } else {\n    printf(\", where %s = %s\\n\", kTypeParamLabel, test_suite.type_param());\n  }\n  fflush(stdout);\n}\n#endif  // GTEST_REMOVE_LEGACY_TEST_CASEAPI_\n\nvoid PrettyUnitTestResultPrinter::OnTestStart(const TestInfo& test_info) {\n  ColoredPrintf(GTestColor::kGreen, \"[ RUN      ] \");\n  PrintTestName(test_info.test_suite_name(), test_info.name());\n  printf(\"\\n\");\n  fflush(stdout);\n}\n\n// Called after an assertion failure.\nvoid PrettyUnitTestResultPrinter::OnTestPartResult(\n    const TestPartResult& result) {\n  switch (result.type()) {\n    // If the test part succeeded, we don't need to do anything.\n    case TestPartResult::kSuccess:\n      return;\n    default:\n      // Print failure message from the assertion\n      // (e.g. expected this and got that).\n      PrintTestPartResult(result);\n      fflush(stdout);\n  }\n}\n\nvoid PrettyUnitTestResultPrinter::OnTestEnd(const TestInfo& test_info) {\n  if (test_info.result()->Passed()) {\n    ColoredPrintf(GTestColor::kGreen, \"[       OK ] \");\n  } else if (test_info.result()->Skipped()) {\n    ColoredPrintf(GTestColor::kGreen, \"[  SKIPPED ] \");\n  } else {\n    ColoredPrintf(GTestColor::kRed, \"[  FAILED  ] \");\n  }\n  PrintTestName(test_info.test_suite_name(), test_info.name());\n  if (test_info.result()->Failed())\n    PrintFullTestCommentIfPresent(test_info);\n\n  if (GTEST_FLAG(print_time)) {\n    printf(\" (%s ms)\\n\", internal::StreamableToString(\n           test_info.result()->elapsed_time()).c_str());\n  } else {\n    printf(\"\\n\");\n  }\n  fflush(stdout);\n}\n\n#ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_\nvoid PrettyUnitTestResultPrinter::OnTestCaseEnd(const TestCase& test_case) {\n  if (!GTEST_FLAG(print_time)) return;\n\n  const std::string counts =\n      FormatCountableNoun(test_case.test_to_run_count(), \"test\", \"tests\");\n  ColoredPrintf(GTestColor::kGreen, \"[----------] \");\n  printf(\"%s from %s (%s ms total)\\n\\n\", counts.c_str(), test_case.name(),\n         internal::StreamableToString(test_case.elapsed_time()).c_str());\n  fflush(stdout);\n}\n#else\nvoid PrettyUnitTestResultPrinter::OnTestSuiteEnd(const TestSuite& test_suite) {\n  if (!GTEST_FLAG(print_time)) return;\n\n  const std::string counts =\n      FormatCountableNoun(test_suite.test_to_run_count(), \"test\", \"tests\");\n  ColoredPrintf(GTestColor::kGreen, \"[----------] \");\n  printf(\"%s from %s (%s ms total)\\n\\n\", counts.c_str(), test_suite.name(),\n         internal::StreamableToString(test_suite.elapsed_time()).c_str());\n  fflush(stdout);\n}\n#endif  // GTEST_REMOVE_LEGACY_TEST_CASEAPI_\n\nvoid PrettyUnitTestResultPrinter::OnEnvironmentsTearDownStart(\n    const UnitTest& /*unit_test*/) {\n  ColoredPrintf(GTestColor::kGreen, \"[----------] \");\n  printf(\"Global test environment tear-down\\n\");\n  fflush(stdout);\n}\n\n// Internal helper for printing the list of failed tests.\nvoid PrettyUnitTestResultPrinter::PrintFailedTests(const UnitTest& unit_test) {\n  const int failed_test_count = unit_test.failed_test_count();\n  ColoredPrintf(GTestColor::kRed, \"[  FAILED  ] \");\n  printf(\"%s, listed below:\\n\", FormatTestCount(failed_test_count).c_str());\n\n  for (int i = 0; i < unit_test.total_test_suite_count(); ++i) {\n    const TestSuite& test_suite = *unit_test.GetTestSuite(i);\n    if (!test_suite.should_run() || (test_suite.failed_test_count() == 0)) {\n      continue;\n    }\n    for (int j = 0; j < test_suite.total_test_count(); ++j) {\n      const TestInfo& test_info = *test_suite.GetTestInfo(j);\n      if (!test_info.should_run() || !test_info.result()->Failed()) {\n        continue;\n      }\n      ColoredPrintf(GTestColor::kRed, \"[  FAILED  ] \");\n      printf(\"%s.%s\", test_suite.name(), test_info.name());\n      PrintFullTestCommentIfPresent(test_info);\n      printf(\"\\n\");\n    }\n  }\n  printf(\"\\n%2d FAILED %s\\n\", failed_test_count,\n         failed_test_count == 1 ? \"TEST\" : \"TESTS\");\n}\n\n// Internal helper for printing the list of test suite failures not covered by\n// PrintFailedTests.\nvoid PrettyUnitTestResultPrinter::PrintFailedTestSuites(\n    const UnitTest& unit_test) {\n  int suite_failure_count = 0;\n  for (int i = 0; i < unit_test.total_test_suite_count(); ++i) {\n    const TestSuite& test_suite = *unit_test.GetTestSuite(i);\n    if (!test_suite.should_run()) {\n      continue;\n    }\n    if (test_suite.ad_hoc_test_result().Failed()) {\n      ColoredPrintf(GTestColor::kRed, \"[  FAILED  ] \");\n      printf(\"%s: SetUpTestSuite or TearDownTestSuite\\n\", test_suite.name());\n      ++suite_failure_count;\n    }\n  }\n  if (suite_failure_count > 0) {\n    printf(\"\\n%2d FAILED TEST %s\\n\", suite_failure_count,\n           suite_failure_count == 1 ? \"SUITE\" : \"SUITES\");\n  }\n}\n\n// Internal helper for printing the list of skipped tests.\nvoid PrettyUnitTestResultPrinter::PrintSkippedTests(const UnitTest& unit_test) {\n  const int skipped_test_count = unit_test.skipped_test_count();\n  if (skipped_test_count == 0) {\n    return;\n  }\n\n  for (int i = 0; i < unit_test.total_test_suite_count(); ++i) {\n    const TestSuite& test_suite = *unit_test.GetTestSuite(i);\n    if (!test_suite.should_run() || (test_suite.skipped_test_count() == 0)) {\n      continue;\n    }\n    for (int j = 0; j < test_suite.total_test_count(); ++j) {\n      const TestInfo& test_info = *test_suite.GetTestInfo(j);\n      if (!test_info.should_run() || !test_info.result()->Skipped()) {\n        continue;\n      }\n      ColoredPrintf(GTestColor::kGreen, \"[  SKIPPED ] \");\n      printf(\"%s.%s\", test_suite.name(), test_info.name());\n      printf(\"\\n\");\n    }\n  }\n}\n\nvoid PrettyUnitTestResultPrinter::OnTestIterationEnd(const UnitTest& unit_test,\n                                                     int /*iteration*/) {\n  ColoredPrintf(GTestColor::kGreen, \"[==========] \");\n  printf(\"%s from %s ran.\",\n         FormatTestCount(unit_test.test_to_run_count()).c_str(),\n         FormatTestSuiteCount(unit_test.test_suite_to_run_count()).c_str());\n  if (GTEST_FLAG(print_time)) {\n    printf(\" (%s ms total)\",\n           internal::StreamableToString(unit_test.elapsed_time()).c_str());\n  }\n  printf(\"\\n\");\n  ColoredPrintf(GTestColor::kGreen, \"[  PASSED  ] \");\n  printf(\"%s.\\n\", FormatTestCount(unit_test.successful_test_count()).c_str());\n\n  const int skipped_test_count = unit_test.skipped_test_count();\n  if (skipped_test_count > 0) {\n    ColoredPrintf(GTestColor::kGreen, \"[  SKIPPED ] \");\n    printf(\"%s, listed below:\\n\", FormatTestCount(skipped_test_count).c_str());\n    PrintSkippedTests(unit_test);\n  }\n\n  if (!unit_test.Passed()) {\n    PrintFailedTests(unit_test);\n    PrintFailedTestSuites(unit_test);\n  }\n\n  int num_disabled = unit_test.reportable_disabled_test_count();\n  if (num_disabled && !GTEST_FLAG(also_run_disabled_tests)) {\n    if (unit_test.Passed()) {\n      printf(\"\\n\");  // Add a spacer if no FAILURE banner is displayed.\n    }\n    ColoredPrintf(GTestColor::kYellow, \"  YOU HAVE %d DISABLED %s\\n\\n\",\n                  num_disabled, num_disabled == 1 ? \"TEST\" : \"TESTS\");\n  }\n  // Ensure that Google Test output is printed before, e.g., heapchecker output.\n  fflush(stdout);\n}\n\n// End PrettyUnitTestResultPrinter\n\n// This class implements the TestEventListener interface.\n//\n// Class BriefUnitTestResultPrinter is copyable.\nclass BriefUnitTestResultPrinter : public TestEventListener {\n public:\n  BriefUnitTestResultPrinter() {}\n  static void PrintTestName(const char* test_suite, const char* test) {\n    printf(\"%s.%s\", test_suite, test);\n  }\n\n  // The following methods override what's in the TestEventListener class.\n  void OnTestProgramStart(const UnitTest& /*unit_test*/) override {}\n  void OnTestIterationStart(const UnitTest& /*unit_test*/,\n                            int /*iteration*/) override {}\n  void OnEnvironmentsSetUpStart(const UnitTest& /*unit_test*/) override {}\n  void OnEnvironmentsSetUpEnd(const UnitTest& /*unit_test*/) override {}\n#ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_\n  void OnTestCaseStart(const TestCase& /*test_case*/) override {}\n#else\n  void OnTestSuiteStart(const TestSuite& /*test_suite*/) override {}\n#endif  // OnTestCaseStart\n\n  void OnTestStart(const TestInfo& /*test_info*/) override {}\n\n  void OnTestPartResult(const TestPartResult& result) override;\n  void OnTestEnd(const TestInfo& test_info) override;\n#ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_\n  void OnTestCaseEnd(const TestCase& /*test_case*/) override {}\n#else\n  void OnTestSuiteEnd(const TestSuite& /*test_suite*/) override {}\n#endif  // GTEST_REMOVE_LEGACY_TEST_CASEAPI_\n\n  void OnEnvironmentsTearDownStart(const UnitTest& /*unit_test*/) override {}\n  void OnEnvironmentsTearDownEnd(const UnitTest& /*unit_test*/) override {}\n  void OnTestIterationEnd(const UnitTest& unit_test, int iteration) override;\n  void OnTestProgramEnd(const UnitTest& /*unit_test*/) override {}\n};\n\n// Called after an assertion failure.\nvoid BriefUnitTestResultPrinter::OnTestPartResult(\n    const TestPartResult& result) {\n  switch (result.type()) {\n    // If the test part succeeded, we don't need to do anything.\n    case TestPartResult::kSuccess:\n      return;\n    default:\n      // Print failure message from the assertion\n      // (e.g. expected this and got that).\n      PrintTestPartResult(result);\n      fflush(stdout);\n  }\n}\n\nvoid BriefUnitTestResultPrinter::OnTestEnd(const TestInfo& test_info) {\n  if (test_info.result()->Failed()) {\n    ColoredPrintf(GTestColor::kRed, \"[  FAILED  ] \");\n    PrintTestName(test_info.test_suite_name(), test_info.name());\n    PrintFullTestCommentIfPresent(test_info);\n\n    if (GTEST_FLAG(print_time)) {\n      printf(\" (%s ms)\\n\",\n             internal::StreamableToString(test_info.result()->elapsed_time())\n                 .c_str());\n    } else {\n      printf(\"\\n\");\n    }\n    fflush(stdout);\n  }\n}\n\nvoid BriefUnitTestResultPrinter::OnTestIterationEnd(const UnitTest& unit_test,\n                                                    int /*iteration*/) {\n  ColoredPrintf(GTestColor::kGreen, \"[==========] \");\n  printf(\"%s from %s ran.\",\n         FormatTestCount(unit_test.test_to_run_count()).c_str(),\n         FormatTestSuiteCount(unit_test.test_suite_to_run_count()).c_str());\n  if (GTEST_FLAG(print_time)) {\n    printf(\" (%s ms total)\",\n           internal::StreamableToString(unit_test.elapsed_time()).c_str());\n  }\n  printf(\"\\n\");\n  ColoredPrintf(GTestColor::kGreen, \"[  PASSED  ] \");\n  printf(\"%s.\\n\", FormatTestCount(unit_test.successful_test_count()).c_str());\n\n  const int skipped_test_count = unit_test.skipped_test_count();\n  if (skipped_test_count > 0) {\n    ColoredPrintf(GTestColor::kGreen, \"[  SKIPPED ] \");\n    printf(\"%s.\\n\", FormatTestCount(skipped_test_count).c_str());\n  }\n\n  int num_disabled = unit_test.reportable_disabled_test_count();\n  if (num_disabled && !GTEST_FLAG(also_run_disabled_tests)) {\n    if (unit_test.Passed()) {\n      printf(\"\\n\");  // Add a spacer if no FAILURE banner is displayed.\n    }\n    ColoredPrintf(GTestColor::kYellow, \"  YOU HAVE %d DISABLED %s\\n\\n\",\n                  num_disabled, num_disabled == 1 ? \"TEST\" : \"TESTS\");\n  }\n  // Ensure that Google Test output is printed before, e.g., heapchecker output.\n  fflush(stdout);\n}\n\n// End BriefUnitTestResultPrinter\n\n// class TestEventRepeater\n//\n// This class forwards events to other event listeners.\nclass TestEventRepeater : public TestEventListener {\n public:\n  TestEventRepeater() : forwarding_enabled_(true) {}\n  ~TestEventRepeater() override;\n  void Append(TestEventListener *listener);\n  TestEventListener* Release(TestEventListener* listener);\n\n  // Controls whether events will be forwarded to listeners_. Set to false\n  // in death test child processes.\n  bool forwarding_enabled() const { return forwarding_enabled_; }\n  void set_forwarding_enabled(bool enable) { forwarding_enabled_ = enable; }\n\n  void OnTestProgramStart(const UnitTest& unit_test) override;\n  void OnTestIterationStart(const UnitTest& unit_test, int iteration) override;\n  void OnEnvironmentsSetUpStart(const UnitTest& unit_test) override;\n  void OnEnvironmentsSetUpEnd(const UnitTest& unit_test) override;\n//  Legacy API is deprecated but still available\n#ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_\n  void OnTestCaseStart(const TestSuite& parameter) override;\n#endif  //  GTEST_REMOVE_LEGACY_TEST_CASEAPI_\n  void OnTestSuiteStart(const TestSuite& parameter) override;\n  void OnTestStart(const TestInfo& test_info) override;\n  void OnTestPartResult(const TestPartResult& result) override;\n  void OnTestEnd(const TestInfo& test_info) override;\n//  Legacy API is deprecated but still available\n#ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_\n  void OnTestCaseEnd(const TestCase& parameter) override;\n#endif  //  GTEST_REMOVE_LEGACY_TEST_CASEAPI_\n  void OnTestSuiteEnd(const TestSuite& parameter) override;\n  void OnEnvironmentsTearDownStart(const UnitTest& unit_test) override;\n  void OnEnvironmentsTearDownEnd(const UnitTest& unit_test) override;\n  void OnTestIterationEnd(const UnitTest& unit_test, int iteration) override;\n  void OnTestProgramEnd(const UnitTest& unit_test) override;\n\n private:\n  // Controls whether events will be forwarded to listeners_. Set to false\n  // in death test child processes.\n  bool forwarding_enabled_;\n  // The list of listeners that receive events.\n  std::vector<TestEventListener*> listeners_;\n\n  GTEST_DISALLOW_COPY_AND_ASSIGN_(TestEventRepeater);\n};\n\nTestEventRepeater::~TestEventRepeater() {\n  ForEach(listeners_, Delete<TestEventListener>);\n}\n\nvoid TestEventRepeater::Append(TestEventListener *listener) {\n  listeners_.push_back(listener);\n}\n\nTestEventListener* TestEventRepeater::Release(TestEventListener *listener) {\n  for (size_t i = 0; i < listeners_.size(); ++i) {\n    if (listeners_[i] == listener) {\n      listeners_.erase(listeners_.begin() + static_cast<int>(i));\n      return listener;\n    }\n  }\n\n  return nullptr;\n}\n\n// Since most methods are very similar, use macros to reduce boilerplate.\n// This defines a member that forwards the call to all listeners.\n#define GTEST_REPEATER_METHOD_(Name, Type) \\\nvoid TestEventRepeater::Name(const Type& parameter) { \\\n  if (forwarding_enabled_) { \\\n    for (size_t i = 0; i < listeners_.size(); i++) { \\\n      listeners_[i]->Name(parameter); \\\n    } \\\n  } \\\n}\n// This defines a member that forwards the call to all listeners in reverse\n// order.\n#define GTEST_REVERSE_REPEATER_METHOD_(Name, Type)      \\\n  void TestEventRepeater::Name(const Type& parameter) { \\\n    if (forwarding_enabled_) {                          \\\n      for (size_t i = listeners_.size(); i != 0; i--) { \\\n        listeners_[i - 1]->Name(parameter);             \\\n      }                                                 \\\n    }                                                   \\\n  }\n\nGTEST_REPEATER_METHOD_(OnTestProgramStart, UnitTest)\nGTEST_REPEATER_METHOD_(OnEnvironmentsSetUpStart, UnitTest)\n//  Legacy API is deprecated but still available\n#ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_\nGTEST_REPEATER_METHOD_(OnTestCaseStart, TestSuite)\n#endif  //  GTEST_REMOVE_LEGACY_TEST_CASEAPI_\nGTEST_REPEATER_METHOD_(OnTestSuiteStart, TestSuite)\nGTEST_REPEATER_METHOD_(OnTestStart, TestInfo)\nGTEST_REPEATER_METHOD_(OnTestPartResult, TestPartResult)\nGTEST_REPEATER_METHOD_(OnEnvironmentsTearDownStart, UnitTest)\nGTEST_REVERSE_REPEATER_METHOD_(OnEnvironmentsSetUpEnd, UnitTest)\nGTEST_REVERSE_REPEATER_METHOD_(OnEnvironmentsTearDownEnd, UnitTest)\nGTEST_REVERSE_REPEATER_METHOD_(OnTestEnd, TestInfo)\n//  Legacy API is deprecated but still available\n#ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_\nGTEST_REVERSE_REPEATER_METHOD_(OnTestCaseEnd, TestSuite)\n#endif  //  GTEST_REMOVE_LEGACY_TEST_CASEAPI_\nGTEST_REVERSE_REPEATER_METHOD_(OnTestSuiteEnd, TestSuite)\nGTEST_REVERSE_REPEATER_METHOD_(OnTestProgramEnd, UnitTest)\n\n#undef GTEST_REPEATER_METHOD_\n#undef GTEST_REVERSE_REPEATER_METHOD_\n\nvoid TestEventRepeater::OnTestIterationStart(const UnitTest& unit_test,\n                                             int iteration) {\n  if (forwarding_enabled_) {\n    for (size_t i = 0; i < listeners_.size(); i++) {\n      listeners_[i]->OnTestIterationStart(unit_test, iteration);\n    }\n  }\n}\n\nvoid TestEventRepeater::OnTestIterationEnd(const UnitTest& unit_test,\n                                           int iteration) {\n  if (forwarding_enabled_) {\n    for (size_t i = listeners_.size(); i > 0; i--) {\n      listeners_[i - 1]->OnTestIterationEnd(unit_test, iteration);\n    }\n  }\n}\n\n// End TestEventRepeater\n\n// This class generates an XML output file.\nclass XmlUnitTestResultPrinter : public EmptyTestEventListener {\n public:\n  explicit XmlUnitTestResultPrinter(const char* output_file);\n\n  void OnTestIterationEnd(const UnitTest& unit_test, int iteration) override;\n  void ListTestsMatchingFilter(const std::vector<TestSuite*>& test_suites);\n\n  // Prints an XML summary of all unit tests.\n  static void PrintXmlTestsList(std::ostream* stream,\n                                const std::vector<TestSuite*>& test_suites);\n\n private:\n  // Is c a whitespace character that is normalized to a space character\n  // when it appears in an XML attribute value?\n  static bool IsNormalizableWhitespace(char c) {\n    return c == 0x9 || c == 0xA || c == 0xD;\n  }\n\n  // May c appear in a well-formed XML document?\n  static bool IsValidXmlCharacter(char c) {\n    return IsNormalizableWhitespace(c) || c >= 0x20;\n  }\n\n  // Returns an XML-escaped copy of the input string str.  If\n  // is_attribute is true, the text is meant to appear as an attribute\n  // value, and normalizable whitespace is preserved by replacing it\n  // with character references.\n  static std::string EscapeXml(const std::string& str, bool is_attribute);\n\n  // Returns the given string with all characters invalid in XML removed.\n  static std::string RemoveInvalidXmlCharacters(const std::string& str);\n\n  // Convenience wrapper around EscapeXml when str is an attribute value.\n  static std::string EscapeXmlAttribute(const std::string& str) {\n    return EscapeXml(str, true);\n  }\n\n  // Convenience wrapper around EscapeXml when str is not an attribute value.\n  static std::string EscapeXmlText(const char* str) {\n    return EscapeXml(str, false);\n  }\n\n  // Verifies that the given attribute belongs to the given element and\n  // streams the attribute as XML.\n  static void OutputXmlAttribute(std::ostream* stream,\n                                 const std::string& element_name,\n                                 const std::string& name,\n                                 const std::string& value);\n\n  // Streams an XML CDATA section, escaping invalid CDATA sequences as needed.\n  static void OutputXmlCDataSection(::std::ostream* stream, const char* data);\n\n  // Streams a test suite XML stanza containing the given test result.\n  //\n  // Requires: result.Failed()\n  static void OutputXmlTestSuiteForTestResult(::std::ostream* stream,\n                                              const TestResult& result);\n\n  // Streams an XML representation of a TestResult object.\n  static void OutputXmlTestResult(::std::ostream* stream,\n                                  const TestResult& result);\n\n  // Streams an XML representation of a TestInfo object.\n  static void OutputXmlTestInfo(::std::ostream* stream,\n                                const char* test_suite_name,\n                                const TestInfo& test_info);\n\n  // Prints an XML representation of a TestSuite object\n  static void PrintXmlTestSuite(::std::ostream* stream,\n                                const TestSuite& test_suite);\n\n  // Prints an XML summary of unit_test to output stream out.\n  static void PrintXmlUnitTest(::std::ostream* stream,\n                               const UnitTest& unit_test);\n\n  // Produces a string representing the test properties in a result as space\n  // delimited XML attributes based on the property key=\"value\" pairs.\n  // When the std::string is not empty, it includes a space at the beginning,\n  // to delimit this attribute from prior attributes.\n  static std::string TestPropertiesAsXmlAttributes(const TestResult& result);\n\n  // Streams an XML representation of the test properties of a TestResult\n  // object.\n  static void OutputXmlTestProperties(std::ostream* stream,\n                                      const TestResult& result);\n\n  // The output file.\n  const std::string output_file_;\n\n  GTEST_DISALLOW_COPY_AND_ASSIGN_(XmlUnitTestResultPrinter);\n};\n\n// Creates a new XmlUnitTestResultPrinter.\nXmlUnitTestResultPrinter::XmlUnitTestResultPrinter(const char* output_file)\n    : output_file_(output_file) {\n  if (output_file_.empty()) {\n    GTEST_LOG_(FATAL) << \"XML output file may not be null\";\n  }\n}\n\n// Called after the unit test ends.\nvoid XmlUnitTestResultPrinter::OnTestIterationEnd(const UnitTest& unit_test,\n                                                  int /*iteration*/) {\n  FILE* xmlout = OpenFileForWriting(output_file_);\n  std::stringstream stream;\n  PrintXmlUnitTest(&stream, unit_test);\n  fprintf(xmlout, \"%s\", StringStreamToString(&stream).c_str());\n  fclose(xmlout);\n}\n\nvoid XmlUnitTestResultPrinter::ListTestsMatchingFilter(\n    const std::vector<TestSuite*>& test_suites) {\n  FILE* xmlout = OpenFileForWriting(output_file_);\n  std::stringstream stream;\n  PrintXmlTestsList(&stream, test_suites);\n  fprintf(xmlout, \"%s\", StringStreamToString(&stream).c_str());\n  fclose(xmlout);\n}\n\n// Returns an XML-escaped copy of the input string str.  If is_attribute\n// is true, the text is meant to appear as an attribute value, and\n// normalizable whitespace is preserved by replacing it with character\n// references.\n//\n// Invalid XML characters in str, if any, are stripped from the output.\n// It is expected that most, if not all, of the text processed by this\n// module will consist of ordinary English text.\n// If this module is ever modified to produce version 1.1 XML output,\n// most invalid characters can be retained using character references.\nstd::string XmlUnitTestResultPrinter::EscapeXml(\n    const std::string& str, bool is_attribute) {\n  Message m;\n\n  for (size_t i = 0; i < str.size(); ++i) {\n    const char ch = str[i];\n    switch (ch) {\n      case '<':\n        m << \"&lt;\";\n        break;\n      case '>':\n        m << \"&gt;\";\n        break;\n      case '&':\n        m << \"&amp;\";\n        break;\n      case '\\'':\n        if (is_attribute)\n          m << \"&apos;\";\n        else\n          m << '\\'';\n        break;\n      case '\"':\n        if (is_attribute)\n          m << \"&quot;\";\n        else\n          m << '\"';\n        break;\n      default:\n        if (IsValidXmlCharacter(ch)) {\n          if (is_attribute && IsNormalizableWhitespace(ch))\n            m << \"&#x\" << String::FormatByte(static_cast<unsigned char>(ch))\n              << \";\";\n          else\n            m << ch;\n        }\n        break;\n    }\n  }\n\n  return m.GetString();\n}\n\n// Returns the given string with all characters invalid in XML removed.\n// Currently invalid characters are dropped from the string. An\n// alternative is to replace them with certain characters such as . or ?.\nstd::string XmlUnitTestResultPrinter::RemoveInvalidXmlCharacters(\n    const std::string& str) {\n  std::string output;\n  output.reserve(str.size());\n  for (std::string::const_iterator it = str.begin(); it != str.end(); ++it)\n    if (IsValidXmlCharacter(*it))\n      output.push_back(*it);\n\n  return output;\n}\n\n// The following routines generate an XML representation of a UnitTest\n// object.\n// GOOGLETEST_CM0009 DO NOT DELETE\n//\n// This is how Google Test concepts map to the DTD:\n//\n// <testsuites name=\"AllTests\">        <-- corresponds to a UnitTest object\n//   <testsuite name=\"testcase-name\">  <-- corresponds to a TestSuite object\n//     <testcase name=\"test-name\">     <-- corresponds to a TestInfo object\n//       <failure message=\"...\">...</failure>\n//       <failure message=\"...\">...</failure>\n//       <failure message=\"...\">...</failure>\n//                                     <-- individual assertion failures\n//     </testcase>\n//   </testsuite>\n// </testsuites>\n\n// Formats the given time in milliseconds as seconds.\nstd::string FormatTimeInMillisAsSeconds(TimeInMillis ms) {\n  ::std::stringstream ss;\n  ss << (static_cast<double>(ms) * 1e-3);\n  return ss.str();\n}\n\nstatic bool PortableLocaltime(time_t seconds, struct tm* out) {\n#if defined(_MSC_VER)\n  return localtime_s(out, &seconds) == 0;\n#elif defined(__MINGW32__) || defined(__MINGW64__)\n  // MINGW <time.h> provides neither localtime_r nor localtime_s, but uses\n  // Windows' localtime(), which has a thread-local tm buffer.\n  struct tm* tm_ptr = localtime(&seconds);  // NOLINT\n  if (tm_ptr == nullptr) return false;\n  *out = *tm_ptr;\n  return true;\n#elif defined(__STDC_LIB_EXT1__)\n  // Uses localtime_s when available as localtime_r is only available from\n  // C23 standard.\n  return localtime_s(&seconds, out) != nullptr;\n#else\n  return localtime_r(&seconds, out) != nullptr;\n#endif\n}\n\n// Converts the given epoch time in milliseconds to a date string in the ISO\n// 8601 format, without the timezone information.\nstd::string FormatEpochTimeInMillisAsIso8601(TimeInMillis ms) {\n  struct tm time_struct;\n  if (!PortableLocaltime(static_cast<time_t>(ms / 1000), &time_struct))\n    return \"\";\n  // YYYY-MM-DDThh:mm:ss.sss\n  return StreamableToString(time_struct.tm_year + 1900) + \"-\" +\n      String::FormatIntWidth2(time_struct.tm_mon + 1) + \"-\" +\n      String::FormatIntWidth2(time_struct.tm_mday) + \"T\" +\n      String::FormatIntWidth2(time_struct.tm_hour) + \":\" +\n      String::FormatIntWidth2(time_struct.tm_min) + \":\" +\n      String::FormatIntWidth2(time_struct.tm_sec) + \".\" +\n      String::FormatIntWidthN(static_cast<int>(ms % 1000), 3);\n}\n\n// Streams an XML CDATA section, escaping invalid CDATA sequences as needed.\nvoid XmlUnitTestResultPrinter::OutputXmlCDataSection(::std::ostream* stream,\n                                                     const char* data) {\n  const char* segment = data;\n  *stream << \"<![CDATA[\";\n  for (;;) {\n    const char* const next_segment = strstr(segment, \"]]>\");\n    if (next_segment != nullptr) {\n      stream->write(\n          segment, static_cast<std::streamsize>(next_segment - segment));\n      *stream << \"]]>]]&gt;<![CDATA[\";\n      segment = next_segment + strlen(\"]]>\");\n    } else {\n      *stream << segment;\n      break;\n    }\n  }\n  *stream << \"]]>\";\n}\n\nvoid XmlUnitTestResultPrinter::OutputXmlAttribute(\n    std::ostream* stream,\n    const std::string& element_name,\n    const std::string& name,\n    const std::string& value) {\n  const std::vector<std::string>& allowed_names =\n      GetReservedOutputAttributesForElement(element_name);\n\n  GTEST_CHECK_(std::find(allowed_names.begin(), allowed_names.end(), name) !=\n                   allowed_names.end())\n      << \"Attribute \" << name << \" is not allowed for element <\" << element_name\n      << \">.\";\n\n  *stream << \" \" << name << \"=\\\"\" << EscapeXmlAttribute(value) << \"\\\"\";\n}\n\n// Streams a test suite XML stanza containing the given test result.\nvoid XmlUnitTestResultPrinter::OutputXmlTestSuiteForTestResult(\n    ::std::ostream* stream, const TestResult& result) {\n  // Output the boilerplate for a minimal test suite with one test.\n  *stream << \"  <testsuite\";\n  OutputXmlAttribute(stream, \"testsuite\", \"name\", \"NonTestSuiteFailure\");\n  OutputXmlAttribute(stream, \"testsuite\", \"tests\", \"1\");\n  OutputXmlAttribute(stream, \"testsuite\", \"failures\", \"1\");\n  OutputXmlAttribute(stream, \"testsuite\", \"disabled\", \"0\");\n  OutputXmlAttribute(stream, \"testsuite\", \"skipped\", \"0\");\n  OutputXmlAttribute(stream, \"testsuite\", \"errors\", \"0\");\n  OutputXmlAttribute(stream, \"testsuite\", \"time\",\n                     FormatTimeInMillisAsSeconds(result.elapsed_time()));\n  OutputXmlAttribute(\n      stream, \"testsuite\", \"timestamp\",\n      FormatEpochTimeInMillisAsIso8601(result.start_timestamp()));\n  *stream << \">\";\n\n  // Output the boilerplate for a minimal test case with a single test.\n  *stream << \"    <testcase\";\n  OutputXmlAttribute(stream, \"testcase\", \"name\", \"\");\n  OutputXmlAttribute(stream, \"testcase\", \"status\", \"run\");\n  OutputXmlAttribute(stream, \"testcase\", \"result\", \"completed\");\n  OutputXmlAttribute(stream, \"testcase\", \"classname\", \"\");\n  OutputXmlAttribute(stream, \"testcase\", \"time\",\n                     FormatTimeInMillisAsSeconds(result.elapsed_time()));\n  OutputXmlAttribute(\n      stream, \"testcase\", \"timestamp\",\n      FormatEpochTimeInMillisAsIso8601(result.start_timestamp()));\n\n  // Output the actual test result.\n  OutputXmlTestResult(stream, result);\n\n  // Complete the test suite.\n  *stream << \"  </testsuite>\\n\";\n}\n\n// Prints an XML representation of a TestInfo object.\nvoid XmlUnitTestResultPrinter::OutputXmlTestInfo(::std::ostream* stream,\n                                                 const char* test_suite_name,\n                                                 const TestInfo& test_info) {\n  const TestResult& result = *test_info.result();\n  const std::string kTestsuite = \"testcase\";\n\n  if (test_info.is_in_another_shard()) {\n    return;\n  }\n\n  *stream << \"    <testcase\";\n  OutputXmlAttribute(stream, kTestsuite, \"name\", test_info.name());\n\n  if (test_info.value_param() != nullptr) {\n    OutputXmlAttribute(stream, kTestsuite, \"value_param\",\n                       test_info.value_param());\n  }\n  if (test_info.type_param() != nullptr) {\n    OutputXmlAttribute(stream, kTestsuite, \"type_param\",\n                       test_info.type_param());\n  }\n  if (GTEST_FLAG(list_tests)) {\n    OutputXmlAttribute(stream, kTestsuite, \"file\", test_info.file());\n    OutputXmlAttribute(stream, kTestsuite, \"line\",\n                       StreamableToString(test_info.line()));\n    *stream << \" />\\n\";\n    return;\n  }\n\n  OutputXmlAttribute(stream, kTestsuite, \"status\",\n                     test_info.should_run() ? \"run\" : \"notrun\");\n  OutputXmlAttribute(stream, kTestsuite, \"result\",\n                     test_info.should_run()\n                         ? (result.Skipped() ? \"skipped\" : \"completed\")\n                         : \"suppressed\");\n  OutputXmlAttribute(stream, kTestsuite, \"time\",\n                     FormatTimeInMillisAsSeconds(result.elapsed_time()));\n  OutputXmlAttribute(\n      stream, kTestsuite, \"timestamp\",\n      FormatEpochTimeInMillisAsIso8601(result.start_timestamp()));\n  OutputXmlAttribute(stream, kTestsuite, \"classname\", test_suite_name);\n\n  OutputXmlTestResult(stream, result);\n}\n\nvoid XmlUnitTestResultPrinter::OutputXmlTestResult(::std::ostream* stream,\n                                                   const TestResult& result) {\n  int failures = 0;\n  int skips = 0;\n  for (int i = 0; i < result.total_part_count(); ++i) {\n    const TestPartResult& part = result.GetTestPartResult(i);\n    if (part.failed()) {\n      if (++failures == 1 && skips == 0) {\n        *stream << \">\\n\";\n      }\n      const std::string location =\n          internal::FormatCompilerIndependentFileLocation(part.file_name(),\n                                                          part.line_number());\n      const std::string summary = location + \"\\n\" + part.summary();\n      *stream << \"      <failure message=\\\"\"\n              << EscapeXmlAttribute(summary)\n              << \"\\\" type=\\\"\\\">\";\n      const std::string detail = location + \"\\n\" + part.message();\n      OutputXmlCDataSection(stream, RemoveInvalidXmlCharacters(detail).c_str());\n      *stream << \"</failure>\\n\";\n    } else if (part.skipped()) {\n      if (++skips == 1 && failures == 0) {\n        *stream << \">\\n\";\n      }\n      const std::string location =\n          internal::FormatCompilerIndependentFileLocation(part.file_name(),\n                                                          part.line_number());\n      const std::string summary = location + \"\\n\" + part.summary();\n      *stream << \"      <skipped message=\\\"\"\n              << EscapeXmlAttribute(summary.c_str()) << \"\\\">\";\n      const std::string detail = location + \"\\n\" + part.message();\n      OutputXmlCDataSection(stream, RemoveInvalidXmlCharacters(detail).c_str());\n      *stream << \"</skipped>\\n\";\n    }\n  }\n\n  if (failures == 0 && skips == 0 && result.test_property_count() == 0) {\n    *stream << \" />\\n\";\n  } else {\n    if (failures == 0 && skips == 0) {\n      *stream << \">\\n\";\n    }\n    OutputXmlTestProperties(stream, result);\n    *stream << \"    </testcase>\\n\";\n  }\n}\n\n// Prints an XML representation of a TestSuite object\nvoid XmlUnitTestResultPrinter::PrintXmlTestSuite(std::ostream* stream,\n                                                 const TestSuite& test_suite) {\n  const std::string kTestsuite = \"testsuite\";\n  *stream << \"  <\" << kTestsuite;\n  OutputXmlAttribute(stream, kTestsuite, \"name\", test_suite.name());\n  OutputXmlAttribute(stream, kTestsuite, \"tests\",\n                     StreamableToString(test_suite.reportable_test_count()));\n  if (!GTEST_FLAG(list_tests)) {\n    OutputXmlAttribute(stream, kTestsuite, \"failures\",\n                       StreamableToString(test_suite.failed_test_count()));\n    OutputXmlAttribute(\n        stream, kTestsuite, \"disabled\",\n        StreamableToString(test_suite.reportable_disabled_test_count()));\n    OutputXmlAttribute(stream, kTestsuite, \"skipped\",\n                       StreamableToString(test_suite.skipped_test_count()));\n\n    OutputXmlAttribute(stream, kTestsuite, \"errors\", \"0\");\n\n    OutputXmlAttribute(stream, kTestsuite, \"time\",\n                       FormatTimeInMillisAsSeconds(test_suite.elapsed_time()));\n    OutputXmlAttribute(\n        stream, kTestsuite, \"timestamp\",\n        FormatEpochTimeInMillisAsIso8601(test_suite.start_timestamp()));\n    *stream << TestPropertiesAsXmlAttributes(test_suite.ad_hoc_test_result());\n  }\n  *stream << \">\\n\";\n  for (int i = 0; i < test_suite.total_test_count(); ++i) {\n    if (test_suite.GetTestInfo(i)->is_reportable())\n      OutputXmlTestInfo(stream, test_suite.name(), *test_suite.GetTestInfo(i));\n  }\n  *stream << \"  </\" << kTestsuite << \">\\n\";\n}\n\n// Prints an XML summary of unit_test to output stream out.\nvoid XmlUnitTestResultPrinter::PrintXmlUnitTest(std::ostream* stream,\n                                                const UnitTest& unit_test) {\n  const std::string kTestsuites = \"testsuites\";\n\n  *stream << \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\\n\";\n  *stream << \"<\" << kTestsuites;\n\n  OutputXmlAttribute(stream, kTestsuites, \"tests\",\n                     StreamableToString(unit_test.reportable_test_count()));\n  OutputXmlAttribute(stream, kTestsuites, \"failures\",\n                     StreamableToString(unit_test.failed_test_count()));\n  OutputXmlAttribute(\n      stream, kTestsuites, \"disabled\",\n      StreamableToString(unit_test.reportable_disabled_test_count()));\n  OutputXmlAttribute(stream, kTestsuites, \"errors\", \"0\");\n  OutputXmlAttribute(stream, kTestsuites, \"time\",\n                     FormatTimeInMillisAsSeconds(unit_test.elapsed_time()));\n  OutputXmlAttribute(\n      stream, kTestsuites, \"timestamp\",\n      FormatEpochTimeInMillisAsIso8601(unit_test.start_timestamp()));\n\n  if (GTEST_FLAG(shuffle)) {\n    OutputXmlAttribute(stream, kTestsuites, \"random_seed\",\n                       StreamableToString(unit_test.random_seed()));\n  }\n  *stream << TestPropertiesAsXmlAttributes(unit_test.ad_hoc_test_result());\n\n  OutputXmlAttribute(stream, kTestsuites, \"name\", \"AllTests\");\n  *stream << \">\\n\";\n\n  for (int i = 0; i < unit_test.total_test_suite_count(); ++i) {\n    if (unit_test.GetTestSuite(i)->reportable_test_count() > 0)\n      PrintXmlTestSuite(stream, *unit_test.GetTestSuite(i));\n  }\n\n  // If there was a test failure outside of one of the test suites (like in a\n  // test environment) include that in the output.\n  if (unit_test.ad_hoc_test_result().Failed()) {\n    OutputXmlTestSuiteForTestResult(stream, unit_test.ad_hoc_test_result());\n  }\n\n  *stream << \"</\" << kTestsuites << \">\\n\";\n}\n\nvoid XmlUnitTestResultPrinter::PrintXmlTestsList(\n    std::ostream* stream, const std::vector<TestSuite*>& test_suites) {\n  const std::string kTestsuites = \"testsuites\";\n\n  *stream << \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\\n\";\n  *stream << \"<\" << kTestsuites;\n\n  int total_tests = 0;\n  for (auto test_suite : test_suites) {\n    total_tests += test_suite->total_test_count();\n  }\n  OutputXmlAttribute(stream, kTestsuites, \"tests\",\n                     StreamableToString(total_tests));\n  OutputXmlAttribute(stream, kTestsuites, \"name\", \"AllTests\");\n  *stream << \">\\n\";\n\n  for (auto test_suite : test_suites) {\n    PrintXmlTestSuite(stream, *test_suite);\n  }\n  *stream << \"</\" << kTestsuites << \">\\n\";\n}\n\n// Produces a string representing the test properties in a result as space\n// delimited XML attributes based on the property key=\"value\" pairs.\nstd::string XmlUnitTestResultPrinter::TestPropertiesAsXmlAttributes(\n    const TestResult& result) {\n  Message attributes;\n  for (int i = 0; i < result.test_property_count(); ++i) {\n    const TestProperty& property = result.GetTestProperty(i);\n    attributes << \" \" << property.key() << \"=\"\n        << \"\\\"\" << EscapeXmlAttribute(property.value()) << \"\\\"\";\n  }\n  return attributes.GetString();\n}\n\nvoid XmlUnitTestResultPrinter::OutputXmlTestProperties(\n    std::ostream* stream, const TestResult& result) {\n  const std::string kProperties = \"properties\";\n  const std::string kProperty = \"property\";\n\n  if (result.test_property_count() <= 0) {\n    return;\n  }\n\n  *stream << \"<\" << kProperties << \">\\n\";\n  for (int i = 0; i < result.test_property_count(); ++i) {\n    const TestProperty& property = result.GetTestProperty(i);\n    *stream << \"<\" << kProperty;\n    *stream << \" name=\\\"\" << EscapeXmlAttribute(property.key()) << \"\\\"\";\n    *stream << \" value=\\\"\" << EscapeXmlAttribute(property.value()) << \"\\\"\";\n    *stream << \"/>\\n\";\n  }\n  *stream << \"</\" << kProperties << \">\\n\";\n}\n\n// End XmlUnitTestResultPrinter\n\n// This class generates an JSON output file.\nclass JsonUnitTestResultPrinter : public EmptyTestEventListener {\n public:\n  explicit JsonUnitTestResultPrinter(const char* output_file);\n\n  void OnTestIterationEnd(const UnitTest& unit_test, int iteration) override;\n\n  // Prints an JSON summary of all unit tests.\n  static void PrintJsonTestList(::std::ostream* stream,\n                                const std::vector<TestSuite*>& test_suites);\n\n private:\n  // Returns an JSON-escaped copy of the input string str.\n  static std::string EscapeJson(const std::string& str);\n\n  //// Verifies that the given attribute belongs to the given element and\n  //// streams the attribute as JSON.\n  static void OutputJsonKey(std::ostream* stream,\n                            const std::string& element_name,\n                            const std::string& name,\n                            const std::string& value,\n                            const std::string& indent,\n                            bool comma = true);\n  static void OutputJsonKey(std::ostream* stream,\n                            const std::string& element_name,\n                            const std::string& name,\n                            int value,\n                            const std::string& indent,\n                            bool comma = true);\n\n  // Streams a test suite JSON stanza containing the given test result.\n  //\n  // Requires: result.Failed()\n  static void OutputJsonTestSuiteForTestResult(::std::ostream* stream,\n                                               const TestResult& result);\n\n  // Streams a JSON representation of a TestResult object.\n  static void OutputJsonTestResult(::std::ostream* stream,\n                                   const TestResult& result);\n\n  // Streams a JSON representation of a TestInfo object.\n  static void OutputJsonTestInfo(::std::ostream* stream,\n                                 const char* test_suite_name,\n                                 const TestInfo& test_info);\n\n  // Prints a JSON representation of a TestSuite object\n  static void PrintJsonTestSuite(::std::ostream* stream,\n                                 const TestSuite& test_suite);\n\n  // Prints a JSON summary of unit_test to output stream out.\n  static void PrintJsonUnitTest(::std::ostream* stream,\n                                const UnitTest& unit_test);\n\n  // Produces a string representing the test properties in a result as\n  // a JSON dictionary.\n  static std::string TestPropertiesAsJson(const TestResult& result,\n                                          const std::string& indent);\n\n  // The output file.\n  const std::string output_file_;\n\n  GTEST_DISALLOW_COPY_AND_ASSIGN_(JsonUnitTestResultPrinter);\n};\n\n// Creates a new JsonUnitTestResultPrinter.\nJsonUnitTestResultPrinter::JsonUnitTestResultPrinter(const char* output_file)\n    : output_file_(output_file) {\n  if (output_file_.empty()) {\n    GTEST_LOG_(FATAL) << \"JSON output file may not be null\";\n  }\n}\n\nvoid JsonUnitTestResultPrinter::OnTestIterationEnd(const UnitTest& unit_test,\n                                                  int /*iteration*/) {\n  FILE* jsonout = OpenFileForWriting(output_file_);\n  std::stringstream stream;\n  PrintJsonUnitTest(&stream, unit_test);\n  fprintf(jsonout, \"%s\", StringStreamToString(&stream).c_str());\n  fclose(jsonout);\n}\n\n// Returns an JSON-escaped copy of the input string str.\nstd::string JsonUnitTestResultPrinter::EscapeJson(const std::string& str) {\n  Message m;\n\n  for (size_t i = 0; i < str.size(); ++i) {\n    const char ch = str[i];\n    switch (ch) {\n      case '\\\\':\n      case '\"':\n      case '/':\n        m << '\\\\' << ch;\n        break;\n      case '\\b':\n        m << \"\\\\b\";\n        break;\n      case '\\t':\n        m << \"\\\\t\";\n        break;\n      case '\\n':\n        m << \"\\\\n\";\n        break;\n      case '\\f':\n        m << \"\\\\f\";\n        break;\n      case '\\r':\n        m << \"\\\\r\";\n        break;\n      default:\n        if (ch < ' ') {\n          m << \"\\\\u00\" << String::FormatByte(static_cast<unsigned char>(ch));\n        } else {\n          m << ch;\n        }\n        break;\n    }\n  }\n\n  return m.GetString();\n}\n\n// The following routines generate an JSON representation of a UnitTest\n// object.\n\n// Formats the given time in milliseconds as seconds.\nstatic std::string FormatTimeInMillisAsDuration(TimeInMillis ms) {\n  ::std::stringstream ss;\n  ss << (static_cast<double>(ms) * 1e-3) << \"s\";\n  return ss.str();\n}\n\n// Converts the given epoch time in milliseconds to a date string in the\n// RFC3339 format, without the timezone information.\nstatic std::string FormatEpochTimeInMillisAsRFC3339(TimeInMillis ms) {\n  struct tm time_struct;\n  if (!PortableLocaltime(static_cast<time_t>(ms / 1000), &time_struct))\n    return \"\";\n  // YYYY-MM-DDThh:mm:ss\n  return StreamableToString(time_struct.tm_year + 1900) + \"-\" +\n      String::FormatIntWidth2(time_struct.tm_mon + 1) + \"-\" +\n      String::FormatIntWidth2(time_struct.tm_mday) + \"T\" +\n      String::FormatIntWidth2(time_struct.tm_hour) + \":\" +\n      String::FormatIntWidth2(time_struct.tm_min) + \":\" +\n      String::FormatIntWidth2(time_struct.tm_sec) + \"Z\";\n}\n\nstatic inline std::string Indent(size_t width) {\n  return std::string(width, ' ');\n}\n\nvoid JsonUnitTestResultPrinter::OutputJsonKey(\n    std::ostream* stream,\n    const std::string& element_name,\n    const std::string& name,\n    const std::string& value,\n    const std::string& indent,\n    bool comma) {\n  const std::vector<std::string>& allowed_names =\n      GetReservedOutputAttributesForElement(element_name);\n\n  GTEST_CHECK_(std::find(allowed_names.begin(), allowed_names.end(), name) !=\n                   allowed_names.end())\n      << \"Key \\\"\" << name << \"\\\" is not allowed for value \\\"\" << element_name\n      << \"\\\".\";\n\n  *stream << indent << \"\\\"\" << name << \"\\\": \\\"\" << EscapeJson(value) << \"\\\"\";\n  if (comma)\n    *stream << \",\\n\";\n}\n\nvoid JsonUnitTestResultPrinter::OutputJsonKey(\n    std::ostream* stream,\n    const std::string& element_name,\n    const std::string& name,\n    int value,\n    const std::string& indent,\n    bool comma) {\n  const std::vector<std::string>& allowed_names =\n      GetReservedOutputAttributesForElement(element_name);\n\n  GTEST_CHECK_(std::find(allowed_names.begin(), allowed_names.end(), name) !=\n                   allowed_names.end())\n      << \"Key \\\"\" << name << \"\\\" is not allowed for value \\\"\" << element_name\n      << \"\\\".\";\n\n  *stream << indent << \"\\\"\" << name << \"\\\": \" << StreamableToString(value);\n  if (comma)\n    *stream << \",\\n\";\n}\n\n// Streams a test suite JSON stanza containing the given test result.\nvoid JsonUnitTestResultPrinter::OutputJsonTestSuiteForTestResult(\n    ::std::ostream* stream, const TestResult& result) {\n  // Output the boilerplate for a new test suite.\n  *stream << Indent(4) << \"{\\n\";\n  OutputJsonKey(stream, \"testsuite\", \"name\", \"NonTestSuiteFailure\", Indent(6));\n  OutputJsonKey(stream, \"testsuite\", \"tests\", 1, Indent(6));\n  if (!GTEST_FLAG(list_tests)) {\n    OutputJsonKey(stream, \"testsuite\", \"failures\", 1, Indent(6));\n    OutputJsonKey(stream, \"testsuite\", \"disabled\", 0, Indent(6));\n    OutputJsonKey(stream, \"testsuite\", \"skipped\", 0, Indent(6));\n    OutputJsonKey(stream, \"testsuite\", \"errors\", 0, Indent(6));\n    OutputJsonKey(stream, \"testsuite\", \"time\",\n                  FormatTimeInMillisAsDuration(result.elapsed_time()),\n                  Indent(6));\n    OutputJsonKey(stream, \"testsuite\", \"timestamp\",\n                  FormatEpochTimeInMillisAsRFC3339(result.start_timestamp()),\n                  Indent(6));\n  }\n  *stream << Indent(6) << \"\\\"testsuite\\\": [\\n\";\n\n  // Output the boilerplate for a new test case.\n  *stream << Indent(8) << \"{\\n\";\n  OutputJsonKey(stream, \"testcase\", \"name\", \"\", Indent(10));\n  OutputJsonKey(stream, \"testcase\", \"status\", \"RUN\", Indent(10));\n  OutputJsonKey(stream, \"testcase\", \"result\", \"COMPLETED\", Indent(10));\n  OutputJsonKey(stream, \"testcase\", \"timestamp\",\n                FormatEpochTimeInMillisAsRFC3339(result.start_timestamp()),\n                Indent(10));\n  OutputJsonKey(stream, \"testcase\", \"time\",\n                FormatTimeInMillisAsDuration(result.elapsed_time()),\n                Indent(10));\n  OutputJsonKey(stream, \"testcase\", \"classname\", \"\", Indent(10), false);\n  *stream << TestPropertiesAsJson(result, Indent(10));\n\n  // Output the actual test result.\n  OutputJsonTestResult(stream, result);\n\n  // Finish the test suite.\n  *stream << \"\\n\" << Indent(6) << \"]\\n\" << Indent(4) << \"}\";\n}\n\n// Prints a JSON representation of a TestInfo object.\nvoid JsonUnitTestResultPrinter::OutputJsonTestInfo(::std::ostream* stream,\n                                                   const char* test_suite_name,\n                                                   const TestInfo& test_info) {\n  const TestResult& result = *test_info.result();\n  const std::string kTestsuite = \"testcase\";\n  const std::string kIndent = Indent(10);\n\n  *stream << Indent(8) << \"{\\n\";\n  OutputJsonKey(stream, kTestsuite, \"name\", test_info.name(), kIndent);\n\n  if (test_info.value_param() != nullptr) {\n    OutputJsonKey(stream, kTestsuite, \"value_param\", test_info.value_param(),\n                  kIndent);\n  }\n  if (test_info.type_param() != nullptr) {\n    OutputJsonKey(stream, kTestsuite, \"type_param\", test_info.type_param(),\n                  kIndent);\n  }\n  if (GTEST_FLAG(list_tests)) {\n    OutputJsonKey(stream, kTestsuite, \"file\", test_info.file(), kIndent);\n    OutputJsonKey(stream, kTestsuite, \"line\", test_info.line(), kIndent, false);\n    *stream << \"\\n\" << Indent(8) << \"}\";\n    return;\n  }\n\n  OutputJsonKey(stream, kTestsuite, \"status\",\n                test_info.should_run() ? \"RUN\" : \"NOTRUN\", kIndent);\n  OutputJsonKey(stream, kTestsuite, \"result\",\n                test_info.should_run()\n                    ? (result.Skipped() ? \"SKIPPED\" : \"COMPLETED\")\n                    : \"SUPPRESSED\",\n                kIndent);\n  OutputJsonKey(stream, kTestsuite, \"timestamp\",\n                FormatEpochTimeInMillisAsRFC3339(result.start_timestamp()),\n                kIndent);\n  OutputJsonKey(stream, kTestsuite, \"time\",\n                FormatTimeInMillisAsDuration(result.elapsed_time()), kIndent);\n  OutputJsonKey(stream, kTestsuite, \"classname\", test_suite_name, kIndent,\n                false);\n  *stream << TestPropertiesAsJson(result, kIndent);\n\n  OutputJsonTestResult(stream, result);\n}\n\nvoid JsonUnitTestResultPrinter::OutputJsonTestResult(::std::ostream* stream,\n                                                     const TestResult& result) {\n  const std::string kIndent = Indent(10);\n\n  int failures = 0;\n  for (int i = 0; i < result.total_part_count(); ++i) {\n    const TestPartResult& part = result.GetTestPartResult(i);\n    if (part.failed()) {\n      *stream << \",\\n\";\n      if (++failures == 1) {\n        *stream << kIndent << \"\\\"\" << \"failures\" << \"\\\": [\\n\";\n      }\n      const std::string location =\n          internal::FormatCompilerIndependentFileLocation(part.file_name(),\n                                                          part.line_number());\n      const std::string message = EscapeJson(location + \"\\n\" + part.message());\n      *stream << kIndent << \"  {\\n\"\n              << kIndent << \"    \\\"failure\\\": \\\"\" << message << \"\\\",\\n\"\n              << kIndent << \"    \\\"type\\\": \\\"\\\"\\n\"\n              << kIndent << \"  }\";\n    }\n  }\n\n  if (failures > 0)\n    *stream << \"\\n\" << kIndent << \"]\";\n  *stream << \"\\n\" << Indent(8) << \"}\";\n}\n\n// Prints an JSON representation of a TestSuite object\nvoid JsonUnitTestResultPrinter::PrintJsonTestSuite(\n    std::ostream* stream, const TestSuite& test_suite) {\n  const std::string kTestsuite = \"testsuite\";\n  const std::string kIndent = Indent(6);\n\n  *stream << Indent(4) << \"{\\n\";\n  OutputJsonKey(stream, kTestsuite, \"name\", test_suite.name(), kIndent);\n  OutputJsonKey(stream, kTestsuite, \"tests\", test_suite.reportable_test_count(),\n                kIndent);\n  if (!GTEST_FLAG(list_tests)) {\n    OutputJsonKey(stream, kTestsuite, \"failures\",\n                  test_suite.failed_test_count(), kIndent);\n    OutputJsonKey(stream, kTestsuite, \"disabled\",\n                  test_suite.reportable_disabled_test_count(), kIndent);\n    OutputJsonKey(stream, kTestsuite, \"errors\", 0, kIndent);\n    OutputJsonKey(\n        stream, kTestsuite, \"timestamp\",\n        FormatEpochTimeInMillisAsRFC3339(test_suite.start_timestamp()),\n        kIndent);\n    OutputJsonKey(stream, kTestsuite, \"time\",\n                  FormatTimeInMillisAsDuration(test_suite.elapsed_time()),\n                  kIndent, false);\n    *stream << TestPropertiesAsJson(test_suite.ad_hoc_test_result(), kIndent)\n            << \",\\n\";\n  }\n\n  *stream << kIndent << \"\\\"\" << kTestsuite << \"\\\": [\\n\";\n\n  bool comma = false;\n  for (int i = 0; i < test_suite.total_test_count(); ++i) {\n    if (test_suite.GetTestInfo(i)->is_reportable()) {\n      if (comma) {\n        *stream << \",\\n\";\n      } else {\n        comma = true;\n      }\n      OutputJsonTestInfo(stream, test_suite.name(), *test_suite.GetTestInfo(i));\n    }\n  }\n  *stream << \"\\n\" << kIndent << \"]\\n\" << Indent(4) << \"}\";\n}\n\n// Prints a JSON summary of unit_test to output stream out.\nvoid JsonUnitTestResultPrinter::PrintJsonUnitTest(std::ostream* stream,\n                                                  const UnitTest& unit_test) {\n  const std::string kTestsuites = \"testsuites\";\n  const std::string kIndent = Indent(2);\n  *stream << \"{\\n\";\n\n  OutputJsonKey(stream, kTestsuites, \"tests\", unit_test.reportable_test_count(),\n                kIndent);\n  OutputJsonKey(stream, kTestsuites, \"failures\", unit_test.failed_test_count(),\n                kIndent);\n  OutputJsonKey(stream, kTestsuites, \"disabled\",\n                unit_test.reportable_disabled_test_count(), kIndent);\n  OutputJsonKey(stream, kTestsuites, \"errors\", 0, kIndent);\n  if (GTEST_FLAG(shuffle)) {\n    OutputJsonKey(stream, kTestsuites, \"random_seed\", unit_test.random_seed(),\n                  kIndent);\n  }\n  OutputJsonKey(stream, kTestsuites, \"timestamp\",\n                FormatEpochTimeInMillisAsRFC3339(unit_test.start_timestamp()),\n                kIndent);\n  OutputJsonKey(stream, kTestsuites, \"time\",\n                FormatTimeInMillisAsDuration(unit_test.elapsed_time()), kIndent,\n                false);\n\n  *stream << TestPropertiesAsJson(unit_test.ad_hoc_test_result(), kIndent)\n          << \",\\n\";\n\n  OutputJsonKey(stream, kTestsuites, \"name\", \"AllTests\", kIndent);\n  *stream << kIndent << \"\\\"\" << kTestsuites << \"\\\": [\\n\";\n\n  bool comma = false;\n  for (int i = 0; i < unit_test.total_test_suite_count(); ++i) {\n    if (unit_test.GetTestSuite(i)->reportable_test_count() > 0) {\n      if (comma) {\n        *stream << \",\\n\";\n      } else {\n        comma = true;\n      }\n      PrintJsonTestSuite(stream, *unit_test.GetTestSuite(i));\n    }\n  }\n\n  // If there was a test failure outside of one of the test suites (like in a\n  // test environment) include that in the output.\n  if (unit_test.ad_hoc_test_result().Failed()) {\n    OutputJsonTestSuiteForTestResult(stream, unit_test.ad_hoc_test_result());\n  }\n\n  *stream << \"\\n\" << kIndent << \"]\\n\" << \"}\\n\";\n}\n\nvoid JsonUnitTestResultPrinter::PrintJsonTestList(\n    std::ostream* stream, const std::vector<TestSuite*>& test_suites) {\n  const std::string kTestsuites = \"testsuites\";\n  const std::string kIndent = Indent(2);\n  *stream << \"{\\n\";\n  int total_tests = 0;\n  for (auto test_suite : test_suites) {\n    total_tests += test_suite->total_test_count();\n  }\n  OutputJsonKey(stream, kTestsuites, \"tests\", total_tests, kIndent);\n\n  OutputJsonKey(stream, kTestsuites, \"name\", \"AllTests\", kIndent);\n  *stream << kIndent << \"\\\"\" << kTestsuites << \"\\\": [\\n\";\n\n  for (size_t i = 0; i < test_suites.size(); ++i) {\n    if (i != 0) {\n      *stream << \",\\n\";\n    }\n    PrintJsonTestSuite(stream, *test_suites[i]);\n  }\n\n  *stream << \"\\n\"\n          << kIndent << \"]\\n\"\n          << \"}\\n\";\n}\n// Produces a string representing the test properties in a result as\n// a JSON dictionary.\nstd::string JsonUnitTestResultPrinter::TestPropertiesAsJson(\n    const TestResult& result, const std::string& indent) {\n  Message attributes;\n  for (int i = 0; i < result.test_property_count(); ++i) {\n    const TestProperty& property = result.GetTestProperty(i);\n    attributes << \",\\n\" << indent << \"\\\"\" << property.key() << \"\\\": \"\n               << \"\\\"\" << EscapeJson(property.value()) << \"\\\"\";\n  }\n  return attributes.GetString();\n}\n\n// End JsonUnitTestResultPrinter\n\n#if GTEST_CAN_STREAM_RESULTS_\n\n// Checks if str contains '=', '&', '%' or '\\n' characters. If yes,\n// replaces them by \"%xx\" where xx is their hexadecimal value. For\n// example, replaces \"=\" with \"%3D\".  This algorithm is O(strlen(str))\n// in both time and space -- important as the input str may contain an\n// arbitrarily long test failure message and stack trace.\nstd::string StreamingListener::UrlEncode(const char* str) {\n  std::string result;\n  result.reserve(strlen(str) + 1);\n  for (char ch = *str; ch != '\\0'; ch = *++str) {\n    switch (ch) {\n      case '%':\n      case '=':\n      case '&':\n      case '\\n':\n        result.append(\"%\" + String::FormatByte(static_cast<unsigned char>(ch)));\n        break;\n      default:\n        result.push_back(ch);\n        break;\n    }\n  }\n  return result;\n}\n\nvoid StreamingListener::SocketWriter::MakeConnection() {\n  GTEST_CHECK_(sockfd_ == -1)\n      << \"MakeConnection() can't be called when there is already a connection.\";\n\n  addrinfo hints;\n  memset(&hints, 0, sizeof(hints));\n  hints.ai_family = AF_UNSPEC;    // To allow both IPv4 and IPv6 addresses.\n  hints.ai_socktype = SOCK_STREAM;\n  addrinfo* servinfo = nullptr;\n\n  // Use the getaddrinfo() to get a linked list of IP addresses for\n  // the given host name.\n  const int error_num = getaddrinfo(\n      host_name_.c_str(), port_num_.c_str(), &hints, &servinfo);\n  if (error_num != 0) {\n    GTEST_LOG_(WARNING) << \"stream_result_to: getaddrinfo() failed: \"\n                        << gai_strerror(error_num);\n  }\n\n  // Loop through all the results and connect to the first we can.\n  for (addrinfo* cur_addr = servinfo; sockfd_ == -1 && cur_addr != nullptr;\n       cur_addr = cur_addr->ai_next) {\n    sockfd_ = socket(\n        cur_addr->ai_family, cur_addr->ai_socktype, cur_addr->ai_protocol);\n    if (sockfd_ != -1) {\n      // Connect the client socket to the server socket.\n      if (connect(sockfd_, cur_addr->ai_addr, cur_addr->ai_addrlen) == -1) {\n        close(sockfd_);\n        sockfd_ = -1;\n      }\n    }\n  }\n\n  freeaddrinfo(servinfo);  // all done with this structure\n\n  if (sockfd_ == -1) {\n    GTEST_LOG_(WARNING) << \"stream_result_to: failed to connect to \"\n                        << host_name_ << \":\" << port_num_;\n  }\n}\n\n// End of class Streaming Listener\n#endif  // GTEST_CAN_STREAM_RESULTS__\n\n// class OsStackTraceGetter\n\nconst char* const OsStackTraceGetterInterface::kElidedFramesMarker =\n    \"... \" GTEST_NAME_ \" internal frames ...\";\n\nstd::string OsStackTraceGetter::CurrentStackTrace(int max_depth, int skip_count)\n    GTEST_LOCK_EXCLUDED_(mutex_) {\n#if GTEST_HAS_ABSL\n  std::string result;\n\n  if (max_depth <= 0) {\n    return result;\n  }\n\n  max_depth = std::min(max_depth, kMaxStackTraceDepth);\n\n  std::vector<void*> raw_stack(max_depth);\n  // Skips the frames requested by the caller, plus this function.\n  const int raw_stack_size =\n      absl::GetStackTrace(&raw_stack[0], max_depth, skip_count + 1);\n\n  void* caller_frame = nullptr;\n  {\n    MutexLock lock(&mutex_);\n    caller_frame = caller_frame_;\n  }\n\n  for (int i = 0; i < raw_stack_size; ++i) {\n    if (raw_stack[i] == caller_frame &&\n        !GTEST_FLAG(show_internal_stack_frames)) {\n      // Add a marker to the trace and stop adding frames.\n      absl::StrAppend(&result, kElidedFramesMarker, \"\\n\");\n      break;\n    }\n\n    char tmp[1024];\n    const char* symbol = \"(unknown)\";\n    if (absl::Symbolize(raw_stack[i], tmp, sizeof(tmp))) {\n      symbol = tmp;\n    }\n\n    char line[1024];\n    snprintf(line, sizeof(line), \"  %p: %s\\n\", raw_stack[i], symbol);\n    result += line;\n  }\n\n  return result;\n\n#else  // !GTEST_HAS_ABSL\n  static_cast<void>(max_depth);\n  static_cast<void>(skip_count);\n  return \"\";\n#endif  // GTEST_HAS_ABSL\n}\n\nvoid OsStackTraceGetter::UponLeavingGTest() GTEST_LOCK_EXCLUDED_(mutex_) {\n#if GTEST_HAS_ABSL\n  void* caller_frame = nullptr;\n  if (absl::GetStackTrace(&caller_frame, 1, 3) <= 0) {\n    caller_frame = nullptr;\n  }\n\n  MutexLock lock(&mutex_);\n  caller_frame_ = caller_frame;\n#endif  // GTEST_HAS_ABSL\n}\n\n// A helper class that creates the premature-exit file in its\n// constructor and deletes the file in its destructor.\nclass ScopedPrematureExitFile {\n public:\n  explicit ScopedPrematureExitFile(const char* premature_exit_filepath)\n      : premature_exit_filepath_(premature_exit_filepath ?\n                                 premature_exit_filepath : \"\") {\n    // If a path to the premature-exit file is specified...\n    if (!premature_exit_filepath_.empty()) {\n      // create the file with a single \"0\" character in it.  I/O\n      // errors are ignored as there's nothing better we can do and we\n      // don't want to fail the test because of this.\n      FILE* pfile = posix::FOpen(premature_exit_filepath, \"w\");\n      fwrite(\"0\", 1, 1, pfile);\n      fclose(pfile);\n    }\n  }\n\n  ~ScopedPrematureExitFile() {\n#if !defined GTEST_OS_ESP8266\n    if (!premature_exit_filepath_.empty()) {\n      int retval = remove(premature_exit_filepath_.c_str());\n      if (retval) {\n        GTEST_LOG_(ERROR) << \"Failed to remove premature exit filepath \\\"\"\n                          << premature_exit_filepath_ << \"\\\" with error \"\n                          << retval;\n      }\n    }\n#endif\n  }\n\n private:\n  const std::string premature_exit_filepath_;\n\n  GTEST_DISALLOW_COPY_AND_ASSIGN_(ScopedPrematureExitFile);\n};\n\n}  // namespace internal\n\n// class TestEventListeners\n\nTestEventListeners::TestEventListeners()\n    : repeater_(new internal::TestEventRepeater()),\n      default_result_printer_(nullptr),\n      default_xml_generator_(nullptr) {}\n\nTestEventListeners::~TestEventListeners() { delete repeater_; }\n\n// Returns the standard listener responsible for the default console\n// output.  Can be removed from the listeners list to shut down default\n// console output.  Note that removing this object from the listener list\n// with Release transfers its ownership to the user.\nvoid TestEventListeners::Append(TestEventListener* listener) {\n  repeater_->Append(listener);\n}\n\n// Removes the given event listener from the list and returns it.  It then\n// becomes the caller's responsibility to delete the listener. Returns\n// NULL if the listener is not found in the list.\nTestEventListener* TestEventListeners::Release(TestEventListener* listener) {\n  if (listener == default_result_printer_)\n    default_result_printer_ = nullptr;\n  else if (listener == default_xml_generator_)\n    default_xml_generator_ = nullptr;\n  return repeater_->Release(listener);\n}\n\n// Returns repeater that broadcasts the TestEventListener events to all\n// subscribers.\nTestEventListener* TestEventListeners::repeater() { return repeater_; }\n\n// Sets the default_result_printer attribute to the provided listener.\n// The listener is also added to the listener list and previous\n// default_result_printer is removed from it and deleted. The listener can\n// also be NULL in which case it will not be added to the list. Does\n// nothing if the previous and the current listener objects are the same.\nvoid TestEventListeners::SetDefaultResultPrinter(TestEventListener* listener) {\n  if (default_result_printer_ != listener) {\n    // It is an error to pass this method a listener that is already in the\n    // list.\n    delete Release(default_result_printer_);\n    default_result_printer_ = listener;\n    if (listener != nullptr) Append(listener);\n  }\n}\n\n// Sets the default_xml_generator attribute to the provided listener.  The\n// listener is also added to the listener list and previous\n// default_xml_generator is removed from it and deleted. The listener can\n// also be NULL in which case it will not be added to the list. Does\n// nothing if the previous and the current listener objects are the same.\nvoid TestEventListeners::SetDefaultXmlGenerator(TestEventListener* listener) {\n  if (default_xml_generator_ != listener) {\n    // It is an error to pass this method a listener that is already in the\n    // list.\n    delete Release(default_xml_generator_);\n    default_xml_generator_ = listener;\n    if (listener != nullptr) Append(listener);\n  }\n}\n\n// Controls whether events will be forwarded by the repeater to the\n// listeners in the list.\nbool TestEventListeners::EventForwardingEnabled() const {\n  return repeater_->forwarding_enabled();\n}\n\nvoid TestEventListeners::SuppressEventForwarding() {\n  repeater_->set_forwarding_enabled(false);\n}\n\n// class UnitTest\n\n// Gets the singleton UnitTest object.  The first time this method is\n// called, a UnitTest object is constructed and returned.  Consecutive\n// calls will return the same object.\n//\n// We don't protect this under mutex_ as a user is not supposed to\n// call this before main() starts, from which point on the return\n// value will never change.\nUnitTest* UnitTest::GetInstance() {\n  // CodeGear C++Builder insists on a public destructor for the\n  // default implementation.  Use this implementation to keep good OO\n  // design with private destructor.\n\n#if defined(__BORLANDC__)\n  static UnitTest* const instance = new UnitTest;\n  return instance;\n#else\n  static UnitTest instance;\n  return &instance;\n#endif  // defined(__BORLANDC__)\n}\n\n// Gets the number of successful test suites.\nint UnitTest::successful_test_suite_count() const {\n  return impl()->successful_test_suite_count();\n}\n\n// Gets the number of failed test suites.\nint UnitTest::failed_test_suite_count() const {\n  return impl()->failed_test_suite_count();\n}\n\n// Gets the number of all test suites.\nint UnitTest::total_test_suite_count() const {\n  return impl()->total_test_suite_count();\n}\n\n// Gets the number of all test suites that contain at least one test\n// that should run.\nint UnitTest::test_suite_to_run_count() const {\n  return impl()->test_suite_to_run_count();\n}\n\n//  Legacy API is deprecated but still available\n#ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_\nint UnitTest::successful_test_case_count() const {\n  return impl()->successful_test_suite_count();\n}\nint UnitTest::failed_test_case_count() const {\n  return impl()->failed_test_suite_count();\n}\nint UnitTest::total_test_case_count() const {\n  return impl()->total_test_suite_count();\n}\nint UnitTest::test_case_to_run_count() const {\n  return impl()->test_suite_to_run_count();\n}\n#endif  //  GTEST_REMOVE_LEGACY_TEST_CASEAPI_\n\n// Gets the number of successful tests.\nint UnitTest::successful_test_count() const {\n  return impl()->successful_test_count();\n}\n\n// Gets the number of skipped tests.\nint UnitTest::skipped_test_count() const {\n  return impl()->skipped_test_count();\n}\n\n// Gets the number of failed tests.\nint UnitTest::failed_test_count() const { return impl()->failed_test_count(); }\n\n// Gets the number of disabled tests that will be reported in the XML report.\nint UnitTest::reportable_disabled_test_count() const {\n  return impl()->reportable_disabled_test_count();\n}\n\n// Gets the number of disabled tests.\nint UnitTest::disabled_test_count() const {\n  return impl()->disabled_test_count();\n}\n\n// Gets the number of tests to be printed in the XML report.\nint UnitTest::reportable_test_count() const {\n  return impl()->reportable_test_count();\n}\n\n// Gets the number of all tests.\nint UnitTest::total_test_count() const { return impl()->total_test_count(); }\n\n// Gets the number of tests that should run.\nint UnitTest::test_to_run_count() const { return impl()->test_to_run_count(); }\n\n// Gets the time of the test program start, in ms from the start of the\n// UNIX epoch.\ninternal::TimeInMillis UnitTest::start_timestamp() const {\n    return impl()->start_timestamp();\n}\n\n// Gets the elapsed time, in milliseconds.\ninternal::TimeInMillis UnitTest::elapsed_time() const {\n  return impl()->elapsed_time();\n}\n\n// Returns true if and only if the unit test passed (i.e. all test suites\n// passed).\nbool UnitTest::Passed() const { return impl()->Passed(); }\n\n// Returns true if and only if the unit test failed (i.e. some test suite\n// failed or something outside of all tests failed).\nbool UnitTest::Failed() const { return impl()->Failed(); }\n\n// Gets the i-th test suite among all the test suites. i can range from 0 to\n// total_test_suite_count() - 1. If i is not in that range, returns NULL.\nconst TestSuite* UnitTest::GetTestSuite(int i) const {\n  return impl()->GetTestSuite(i);\n}\n\n//  Legacy API is deprecated but still available\n#ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_\nconst TestCase* UnitTest::GetTestCase(int i) const {\n  return impl()->GetTestCase(i);\n}\n#endif  //  GTEST_REMOVE_LEGACY_TEST_CASEAPI_\n\n// Returns the TestResult containing information on test failures and\n// properties logged outside of individual test suites.\nconst TestResult& UnitTest::ad_hoc_test_result() const {\n  return *impl()->ad_hoc_test_result();\n}\n\n// Gets the i-th test suite among all the test suites. i can range from 0 to\n// total_test_suite_count() - 1. If i is not in that range, returns NULL.\nTestSuite* UnitTest::GetMutableTestSuite(int i) {\n  return impl()->GetMutableSuiteCase(i);\n}\n\n// Returns the list of event listeners that can be used to track events\n// inside Google Test.\nTestEventListeners& UnitTest::listeners() {\n  return *impl()->listeners();\n}\n\n// Registers and returns a global test environment.  When a test\n// program is run, all global test environments will be set-up in the\n// order they were registered.  After all tests in the program have\n// finished, all global test environments will be torn-down in the\n// *reverse* order they were registered.\n//\n// The UnitTest object takes ownership of the given environment.\n//\n// We don't protect this under mutex_, as we only support calling it\n// from the main thread.\nEnvironment* UnitTest::AddEnvironment(Environment* env) {\n  if (env == nullptr) {\n    return nullptr;\n  }\n\n  impl_->environments().push_back(env);\n  return env;\n}\n\n// Adds a TestPartResult to the current TestResult object.  All Google Test\n// assertion macros (e.g. ASSERT_TRUE, EXPECT_EQ, etc) eventually call\n// this to report their results.  The user code should use the\n// assertion macros instead of calling this directly.\nvoid UnitTest::AddTestPartResult(\n    TestPartResult::Type result_type,\n    const char* file_name,\n    int line_number,\n    const std::string& message,\n    const std::string& os_stack_trace) GTEST_LOCK_EXCLUDED_(mutex_) {\n  Message msg;\n  msg << message;\n\n  internal::MutexLock lock(&mutex_);\n  if (impl_->gtest_trace_stack().size() > 0) {\n    msg << \"\\n\" << GTEST_NAME_ << \" trace:\";\n\n    for (size_t i = impl_->gtest_trace_stack().size(); i > 0; --i) {\n      const internal::TraceInfo& trace = impl_->gtest_trace_stack()[i - 1];\n      msg << \"\\n\" << internal::FormatFileLocation(trace.file, trace.line)\n          << \" \" << trace.message;\n    }\n  }\n\n  if (os_stack_trace.c_str() != nullptr && !os_stack_trace.empty()) {\n    msg << internal::kStackTraceMarker << os_stack_trace;\n  }\n\n  const TestPartResult result = TestPartResult(\n      result_type, file_name, line_number, msg.GetString().c_str());\n  impl_->GetTestPartResultReporterForCurrentThread()->\n      ReportTestPartResult(result);\n\n  if (result_type != TestPartResult::kSuccess &&\n      result_type != TestPartResult::kSkip) {\n    // gtest_break_on_failure takes precedence over\n    // gtest_throw_on_failure.  This allows a user to set the latter\n    // in the code (perhaps in order to use Google Test assertions\n    // with another testing framework) and specify the former on the\n    // command line for debugging.\n    if (GTEST_FLAG(break_on_failure)) {\n#if GTEST_OS_WINDOWS && !GTEST_OS_WINDOWS_PHONE && !GTEST_OS_WINDOWS_RT\n      // Using DebugBreak on Windows allows gtest to still break into a debugger\n      // when a failure happens and both the --gtest_break_on_failure and\n      // the --gtest_catch_exceptions flags are specified.\n      DebugBreak();\n#elif (!defined(__native_client__)) &&            \\\n    ((defined(__clang__) || defined(__GNUC__)) && \\\n     (defined(__x86_64__) || defined(__i386__)))\n      // with clang/gcc we can achieve the same effect on x86 by invoking int3\n      asm(\"int3\");\n#else\n      // Dereference nullptr through a volatile pointer to prevent the compiler\n      // from removing. We use this rather than abort() or __builtin_trap() for\n      // portability: some debuggers don't correctly trap abort().\n      *static_cast<volatile int*>(nullptr) = 1;\n#endif  // GTEST_OS_WINDOWS\n    } else if (GTEST_FLAG(throw_on_failure)) {\n#if GTEST_HAS_EXCEPTIONS\n      throw internal::GoogleTestFailureException(result);\n#else\n      // We cannot call abort() as it generates a pop-up in debug mode\n      // that cannot be suppressed in VC 7.1 or below.\n      exit(1);\n#endif\n    }\n  }\n}\n\n// Adds a TestProperty to the current TestResult object when invoked from\n// inside a test, to current TestSuite's ad_hoc_test_result_ when invoked\n// from SetUpTestSuite or TearDownTestSuite, or to the global property set\n// when invoked elsewhere.  If the result already contains a property with\n// the same key, the value will be updated.\nvoid UnitTest::RecordProperty(const std::string& key,\n                              const std::string& value) {\n  impl_->RecordProperty(TestProperty(key, value));\n}\n\n// Runs all tests in this UnitTest object and prints the result.\n// Returns 0 if successful, or 1 otherwise.\n//\n// We don't protect this under mutex_, as we only support calling it\n// from the main thread.\nint UnitTest::Run() {\n  const bool in_death_test_child_process =\n      internal::GTEST_FLAG(internal_run_death_test).length() > 0;\n\n  // Google Test implements this protocol for catching that a test\n  // program exits before returning control to Google Test:\n  //\n  //   1. Upon start, Google Test creates a file whose absolute path\n  //      is specified by the environment variable\n  //      TEST_PREMATURE_EXIT_FILE.\n  //   2. When Google Test has finished its work, it deletes the file.\n  //\n  // This allows a test runner to set TEST_PREMATURE_EXIT_FILE before\n  // running a Google-Test-based test program and check the existence\n  // of the file at the end of the test execution to see if it has\n  // exited prematurely.\n\n  // If we are in the child process of a death test, don't\n  // create/delete the premature exit file, as doing so is unnecessary\n  // and will confuse the parent process.  Otherwise, create/delete\n  // the file upon entering/leaving this function.  If the program\n  // somehow exits before this function has a chance to return, the\n  // premature-exit file will be left undeleted, causing a test runner\n  // that understands the premature-exit-file protocol to report the\n  // test as having failed.\n  const internal::ScopedPrematureExitFile premature_exit_file(\n      in_death_test_child_process\n          ? nullptr\n          : internal::posix::GetEnv(\"TEST_PREMATURE_EXIT_FILE\"));\n\n  // Captures the value of GTEST_FLAG(catch_exceptions).  This value will be\n  // used for the duration of the program.\n  impl()->set_catch_exceptions(GTEST_FLAG(catch_exceptions));\n\n#if GTEST_OS_WINDOWS\n  // Either the user wants Google Test to catch exceptions thrown by the\n  // tests or this is executing in the context of death test child\n  // process. In either case the user does not want to see pop-up dialogs\n  // about crashes - they are expected.\n  if (impl()->catch_exceptions() || in_death_test_child_process) {\n# if !GTEST_OS_WINDOWS_MOBILE && !GTEST_OS_WINDOWS_PHONE && !GTEST_OS_WINDOWS_RT\n    // SetErrorMode doesn't exist on CE.\n    SetErrorMode(SEM_FAILCRITICALERRORS | SEM_NOALIGNMENTFAULTEXCEPT |\n                 SEM_NOGPFAULTERRORBOX | SEM_NOOPENFILEERRORBOX);\n# endif  // !GTEST_OS_WINDOWS_MOBILE\n\n# if (defined(_MSC_VER) || GTEST_OS_WINDOWS_MINGW) && !GTEST_OS_WINDOWS_MOBILE\n    // Death test children can be terminated with _abort().  On Windows,\n    // _abort() can show a dialog with a warning message.  This forces the\n    // abort message to go to stderr instead.\n    _set_error_mode(_OUT_TO_STDERR);\n# endif\n\n# if defined(_MSC_VER) && !GTEST_OS_WINDOWS_MOBILE\n    // In the debug version, Visual Studio pops up a separate dialog\n    // offering a choice to debug the aborted program. We need to suppress\n    // this dialog or it will pop up for every EXPECT/ASSERT_DEATH statement\n    // executed. Google Test will notify the user of any unexpected\n    // failure via stderr.\n    if (!GTEST_FLAG(break_on_failure))\n      _set_abort_behavior(\n          0x0,                                    // Clear the following flags:\n          _WRITE_ABORT_MSG | _CALL_REPORTFAULT);  // pop-up window, core dump.\n\n    // In debug mode, the Windows CRT can crash with an assertion over invalid\n    // input (e.g. passing an invalid file descriptor).  The default handling\n    // for these assertions is to pop up a dialog and wait for user input.\n    // Instead ask the CRT to dump such assertions to stderr non-interactively.\n    if (!IsDebuggerPresent()) {\n      (void)_CrtSetReportMode(_CRT_ASSERT,\n                              _CRTDBG_MODE_FILE | _CRTDBG_MODE_DEBUG);\n      (void)_CrtSetReportFile(_CRT_ASSERT, _CRTDBG_FILE_STDERR);\n    }\n# endif\n  }\n#endif  // GTEST_OS_WINDOWS\n\n  return internal::HandleExceptionsInMethodIfSupported(\n      impl(),\n      &internal::UnitTestImpl::RunAllTests,\n      \"auxiliary test code (environments or event listeners)\") ? 0 : 1;\n}\n\n// Returns the working directory when the first TEST() or TEST_F() was\n// executed.\nconst char* UnitTest::original_working_dir() const {\n  return impl_->original_working_dir_.c_str();\n}\n\n// Returns the TestSuite object for the test that's currently running,\n// or NULL if no test is running.\nconst TestSuite* UnitTest::current_test_suite() const\n    GTEST_LOCK_EXCLUDED_(mutex_) {\n  internal::MutexLock lock(&mutex_);\n  return impl_->current_test_suite();\n}\n\n// Legacy API is still available but deprecated\n#ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_\nconst TestCase* UnitTest::current_test_case() const\n    GTEST_LOCK_EXCLUDED_(mutex_) {\n  internal::MutexLock lock(&mutex_);\n  return impl_->current_test_suite();\n}\n#endif\n\n// Returns the TestInfo object for the test that's currently running,\n// or NULL if no test is running.\nconst TestInfo* UnitTest::current_test_info() const\n    GTEST_LOCK_EXCLUDED_(mutex_) {\n  internal::MutexLock lock(&mutex_);\n  return impl_->current_test_info();\n}\n\n// Returns the random seed used at the start of the current test run.\nint UnitTest::random_seed() const { return impl_->random_seed(); }\n\n// Returns ParameterizedTestSuiteRegistry object used to keep track of\n// value-parameterized tests and instantiate and register them.\ninternal::ParameterizedTestSuiteRegistry&\nUnitTest::parameterized_test_registry() GTEST_LOCK_EXCLUDED_(mutex_) {\n  return impl_->parameterized_test_registry();\n}\n\n// Creates an empty UnitTest.\nUnitTest::UnitTest() {\n  impl_ = new internal::UnitTestImpl(this);\n}\n\n// Destructor of UnitTest.\nUnitTest::~UnitTest() {\n  delete impl_;\n}\n\n// Pushes a trace defined by SCOPED_TRACE() on to the per-thread\n// Google Test trace stack.\nvoid UnitTest::PushGTestTrace(const internal::TraceInfo& trace)\n    GTEST_LOCK_EXCLUDED_(mutex_) {\n  internal::MutexLock lock(&mutex_);\n  impl_->gtest_trace_stack().push_back(trace);\n}\n\n// Pops a trace from the per-thread Google Test trace stack.\nvoid UnitTest::PopGTestTrace()\n    GTEST_LOCK_EXCLUDED_(mutex_) {\n  internal::MutexLock lock(&mutex_);\n  impl_->gtest_trace_stack().pop_back();\n}\n\nnamespace internal {\n\nUnitTestImpl::UnitTestImpl(UnitTest* parent)\n    : parent_(parent),\n      GTEST_DISABLE_MSC_WARNINGS_PUSH_(4355 /* using this in initializer */)\n          default_global_test_part_result_reporter_(this),\n      default_per_thread_test_part_result_reporter_(this),\n      GTEST_DISABLE_MSC_WARNINGS_POP_() global_test_part_result_repoter_(\n          &default_global_test_part_result_reporter_),\n      per_thread_test_part_result_reporter_(\n          &default_per_thread_test_part_result_reporter_),\n      parameterized_test_registry_(),\n      parameterized_tests_registered_(false),\n      last_death_test_suite_(-1),\n      current_test_suite_(nullptr),\n      current_test_info_(nullptr),\n      ad_hoc_test_result_(),\n      os_stack_trace_getter_(nullptr),\n      post_flag_parse_init_performed_(false),\n      random_seed_(0),  // Will be overridden by the flag before first use.\n      random_(0),       // Will be reseeded before first use.\n      start_timestamp_(0),\n      elapsed_time_(0),\n#if GTEST_HAS_DEATH_TEST\n      death_test_factory_(new DefaultDeathTestFactory),\n#endif\n      // Will be overridden by the flag before first use.\n      catch_exceptions_(false) {\n  listeners()->SetDefaultResultPrinter(new PrettyUnitTestResultPrinter);\n}\n\nUnitTestImpl::~UnitTestImpl() {\n  // Deletes every TestSuite.\n  ForEach(test_suites_, internal::Delete<TestSuite>);\n\n  // Deletes every Environment.\n  ForEach(environments_, internal::Delete<Environment>);\n\n  delete os_stack_trace_getter_;\n}\n\n// Adds a TestProperty to the current TestResult object when invoked in a\n// context of a test, to current test suite's ad_hoc_test_result when invoke\n// from SetUpTestSuite/TearDownTestSuite, or to the global property set\n// otherwise.  If the result already contains a property with the same key,\n// the value will be updated.\nvoid UnitTestImpl::RecordProperty(const TestProperty& test_property) {\n  std::string xml_element;\n  TestResult* test_result;  // TestResult appropriate for property recording.\n\n  if (current_test_info_ != nullptr) {\n    xml_element = \"testcase\";\n    test_result = &(current_test_info_->result_);\n  } else if (current_test_suite_ != nullptr) {\n    xml_element = \"testsuite\";\n    test_result = &(current_test_suite_->ad_hoc_test_result_);\n  } else {\n    xml_element = \"testsuites\";\n    test_result = &ad_hoc_test_result_;\n  }\n  test_result->RecordProperty(xml_element, test_property);\n}\n\n#if GTEST_HAS_DEATH_TEST\n// Disables event forwarding if the control is currently in a death test\n// subprocess. Must not be called before InitGoogleTest.\nvoid UnitTestImpl::SuppressTestEventsIfInSubprocess() {\n  if (internal_run_death_test_flag_.get() != nullptr)\n    listeners()->SuppressEventForwarding();\n}\n#endif  // GTEST_HAS_DEATH_TEST\n\n// Initializes event listeners performing XML output as specified by\n// UnitTestOptions. Must not be called before InitGoogleTest.\nvoid UnitTestImpl::ConfigureXmlOutput() {\n  const std::string& output_format = UnitTestOptions::GetOutputFormat();\n  if (output_format == \"xml\") {\n    listeners()->SetDefaultXmlGenerator(new XmlUnitTestResultPrinter(\n        UnitTestOptions::GetAbsolutePathToOutputFile().c_str()));\n  } else if (output_format == \"json\") {\n    listeners()->SetDefaultXmlGenerator(new JsonUnitTestResultPrinter(\n        UnitTestOptions::GetAbsolutePathToOutputFile().c_str()));\n  } else if (output_format != \"\") {\n    GTEST_LOG_(WARNING) << \"WARNING: unrecognized output format \\\"\"\n                        << output_format << \"\\\" ignored.\";\n  }\n}\n\n#if GTEST_CAN_STREAM_RESULTS_\n// Initializes event listeners for streaming test results in string form.\n// Must not be called before InitGoogleTest.\nvoid UnitTestImpl::ConfigureStreamingOutput() {\n  const std::string& target = GTEST_FLAG(stream_result_to);\n  if (!target.empty()) {\n    const size_t pos = target.find(':');\n    if (pos != std::string::npos) {\n      listeners()->Append(new StreamingListener(target.substr(0, pos),\n                                                target.substr(pos+1)));\n    } else {\n      GTEST_LOG_(WARNING) << \"unrecognized streaming target \\\"\" << target\n                          << \"\\\" ignored.\";\n    }\n  }\n}\n#endif  // GTEST_CAN_STREAM_RESULTS_\n\n// Performs initialization dependent upon flag values obtained in\n// ParseGoogleTestFlagsOnly.  Is called from InitGoogleTest after the call to\n// ParseGoogleTestFlagsOnly.  In case a user neglects to call InitGoogleTest\n// this function is also called from RunAllTests.  Since this function can be\n// called more than once, it has to be idempotent.\nvoid UnitTestImpl::PostFlagParsingInit() {\n  // Ensures that this function does not execute more than once.\n  if (!post_flag_parse_init_performed_) {\n    post_flag_parse_init_performed_ = true;\n\n#if defined(GTEST_CUSTOM_TEST_EVENT_LISTENER_)\n    // Register to send notifications about key process state changes.\n    listeners()->Append(new GTEST_CUSTOM_TEST_EVENT_LISTENER_());\n#endif  // defined(GTEST_CUSTOM_TEST_EVENT_LISTENER_)\n\n#if GTEST_HAS_DEATH_TEST\n    InitDeathTestSubprocessControlInfo();\n    SuppressTestEventsIfInSubprocess();\n#endif  // GTEST_HAS_DEATH_TEST\n\n    // Registers parameterized tests. This makes parameterized tests\n    // available to the UnitTest reflection API without running\n    // RUN_ALL_TESTS.\n    RegisterParameterizedTests();\n\n    // Configures listeners for XML output. This makes it possible for users\n    // to shut down the default XML output before invoking RUN_ALL_TESTS.\n    ConfigureXmlOutput();\n\n    if (GTEST_FLAG(brief)) {\n      listeners()->SetDefaultResultPrinter(new BriefUnitTestResultPrinter);\n    }\n\n#if GTEST_CAN_STREAM_RESULTS_\n    // Configures listeners for streaming test results to the specified server.\n    ConfigureStreamingOutput();\n#endif  // GTEST_CAN_STREAM_RESULTS_\n\n#if GTEST_HAS_ABSL\n    if (GTEST_FLAG(install_failure_signal_handler)) {\n      absl::FailureSignalHandlerOptions options;\n      absl::InstallFailureSignalHandler(options);\n    }\n#endif  // GTEST_HAS_ABSL\n  }\n}\n\n// A predicate that checks the name of a TestSuite against a known\n// value.\n//\n// This is used for implementation of the UnitTest class only.  We put\n// it in the anonymous namespace to prevent polluting the outer\n// namespace.\n//\n// TestSuiteNameIs is copyable.\nclass TestSuiteNameIs {\n public:\n  // Constructor.\n  explicit TestSuiteNameIs(const std::string& name) : name_(name) {}\n\n  // Returns true if and only if the name of test_suite matches name_.\n  bool operator()(const TestSuite* test_suite) const {\n    return test_suite != nullptr &&\n           strcmp(test_suite->name(), name_.c_str()) == 0;\n  }\n\n private:\n  std::string name_;\n};\n\n// Finds and returns a TestSuite with the given name.  If one doesn't\n// exist, creates one and returns it.  It's the CALLER'S\n// RESPONSIBILITY to ensure that this function is only called WHEN THE\n// TESTS ARE NOT SHUFFLED.\n//\n// Arguments:\n//\n//   test_suite_name: name of the test suite\n//   type_param:      the name of the test suite's type parameter, or NULL if\n//                    this is not a typed or a type-parameterized test suite.\n//   set_up_tc:       pointer to the function that sets up the test suite\n//   tear_down_tc:    pointer to the function that tears down the test suite\nTestSuite* UnitTestImpl::GetTestSuite(\n    const char* test_suite_name, const char* type_param,\n    internal::SetUpTestSuiteFunc set_up_tc,\n    internal::TearDownTestSuiteFunc tear_down_tc) {\n  // Can we find a TestSuite with the given name?\n  const auto test_suite =\n      std::find_if(test_suites_.rbegin(), test_suites_.rend(),\n                   TestSuiteNameIs(test_suite_name));\n\n  if (test_suite != test_suites_.rend()) return *test_suite;\n\n  // No.  Let's create one.\n  auto* const new_test_suite =\n      new TestSuite(test_suite_name, type_param, set_up_tc, tear_down_tc);\n\n  // Is this a death test suite?\n  if (internal::UnitTestOptions::MatchesFilter(test_suite_name,\n                                               kDeathTestSuiteFilter)) {\n    // Yes.  Inserts the test suite after the last death test suite\n    // defined so far.  This only works when the test suites haven't\n    // been shuffled.  Otherwise we may end up running a death test\n    // after a non-death test.\n    ++last_death_test_suite_;\n    test_suites_.insert(test_suites_.begin() + last_death_test_suite_,\n                        new_test_suite);\n  } else {\n    // No.  Appends to the end of the list.\n    test_suites_.push_back(new_test_suite);\n  }\n\n  test_suite_indices_.push_back(static_cast<int>(test_suite_indices_.size()));\n  return new_test_suite;\n}\n\n// Helpers for setting up / tearing down the given environment.  They\n// are for use in the ForEach() function.\nstatic void SetUpEnvironment(Environment* env) { env->SetUp(); }\nstatic void TearDownEnvironment(Environment* env) { env->TearDown(); }\n\n// Runs all tests in this UnitTest object, prints the result, and\n// returns true if all tests are successful.  If any exception is\n// thrown during a test, the test is considered to be failed, but the\n// rest of the tests will still be run.\n//\n// When parameterized tests are enabled, it expands and registers\n// parameterized tests first in RegisterParameterizedTests().\n// All other functions called from RunAllTests() may safely assume that\n// parameterized tests are ready to be counted and run.\nbool UnitTestImpl::RunAllTests() {\n  // True if and only if Google Test is initialized before RUN_ALL_TESTS() is\n  // called.\n  const bool gtest_is_initialized_before_run_all_tests = GTestIsInitialized();\n\n  // Do not run any test if the --help flag was specified.\n  if (g_help_flag)\n    return true;\n\n  // Repeats the call to the post-flag parsing initialization in case the\n  // user didn't call InitGoogleTest.\n  PostFlagParsingInit();\n\n  // Even if sharding is not on, test runners may want to use the\n  // GTEST_SHARD_STATUS_FILE to query whether the test supports the sharding\n  // protocol.\n  internal::WriteToShardStatusFileIfNeeded();\n\n  // True if and only if we are in a subprocess for running a thread-safe-style\n  // death test.\n  bool in_subprocess_for_death_test = false;\n\n#if GTEST_HAS_DEATH_TEST\n  in_subprocess_for_death_test =\n      (internal_run_death_test_flag_.get() != nullptr);\n# if defined(GTEST_EXTRA_DEATH_TEST_CHILD_SETUP_)\n  if (in_subprocess_for_death_test) {\n    GTEST_EXTRA_DEATH_TEST_CHILD_SETUP_();\n  }\n# endif  // defined(GTEST_EXTRA_DEATH_TEST_CHILD_SETUP_)\n#endif  // GTEST_HAS_DEATH_TEST\n\n  const bool should_shard = ShouldShard(kTestTotalShards, kTestShardIndex,\n                                        in_subprocess_for_death_test);\n\n  // Compares the full test names with the filter to decide which\n  // tests to run.\n  const bool has_tests_to_run = FilterTests(should_shard\n                                              ? HONOR_SHARDING_PROTOCOL\n                                              : IGNORE_SHARDING_PROTOCOL) > 0;\n\n  // Lists the tests and exits if the --gtest_list_tests flag was specified.\n  if (GTEST_FLAG(list_tests)) {\n    // This must be called *after* FilterTests() has been called.\n    ListTestsMatchingFilter();\n    return true;\n  }\n\n  random_seed_ = GTEST_FLAG(shuffle) ?\n      GetRandomSeedFromFlag(GTEST_FLAG(random_seed)) : 0;\n\n  // True if and only if at least one test has failed.\n  bool failed = false;\n\n  TestEventListener* repeater = listeners()->repeater();\n\n  start_timestamp_ = GetTimeInMillis();\n  repeater->OnTestProgramStart(*parent_);\n\n  // How many times to repeat the tests?  We don't want to repeat them\n  // when we are inside the subprocess of a death test.\n  const int repeat = in_subprocess_for_death_test ? 1 : GTEST_FLAG(repeat);\n  // Repeats forever if the repeat count is negative.\n  const bool gtest_repeat_forever = repeat < 0;\n  for (int i = 0; gtest_repeat_forever || i != repeat; i++) {\n    // We want to preserve failures generated by ad-hoc test\n    // assertions executed before RUN_ALL_TESTS().\n    ClearNonAdHocTestResult();\n\n    Timer timer;\n\n    // Shuffles test suites and tests if requested.\n    if (has_tests_to_run && GTEST_FLAG(shuffle)) {\n      random()->Reseed(static_cast<uint32_t>(random_seed_));\n      // This should be done before calling OnTestIterationStart(),\n      // such that a test event listener can see the actual test order\n      // in the event.\n      ShuffleTests();\n    }\n\n    // Tells the unit test event listeners that the tests are about to start.\n    repeater->OnTestIterationStart(*parent_, i);\n\n    // Runs each test suite if there is at least one test to run.\n    if (has_tests_to_run) {\n      // Sets up all environments beforehand.\n      repeater->OnEnvironmentsSetUpStart(*parent_);\n      ForEach(environments_, SetUpEnvironment);\n      repeater->OnEnvironmentsSetUpEnd(*parent_);\n\n      // Runs the tests only if there was no fatal failure or skip triggered\n      // during global set-up.\n      if (Test::IsSkipped()) {\n        // Emit diagnostics when global set-up calls skip, as it will not be\n        // emitted by default.\n        TestResult& test_result =\n            *internal::GetUnitTestImpl()->current_test_result();\n        for (int j = 0; j < test_result.total_part_count(); ++j) {\n          const TestPartResult& test_part_result =\n              test_result.GetTestPartResult(j);\n          if (test_part_result.type() == TestPartResult::kSkip) {\n            const std::string& result = test_part_result.message();\n            printf(\"%s\\n\", result.c_str());\n          }\n        }\n        fflush(stdout);\n      } else if (!Test::HasFatalFailure()) {\n        for (int test_index = 0; test_index < total_test_suite_count();\n             test_index++) {\n          GetMutableSuiteCase(test_index)->Run();\n          if (GTEST_FLAG(fail_fast) &&\n              GetMutableSuiteCase(test_index)->Failed()) {\n            for (int j = test_index + 1; j < total_test_suite_count(); j++) {\n              GetMutableSuiteCase(j)->Skip();\n            }\n            break;\n          }\n        }\n      } else if (Test::HasFatalFailure()) {\n        // If there was a fatal failure during the global setup then we know we\n        // aren't going to run any tests. Explicitly mark all of the tests as\n        // skipped to make this obvious in the output.\n        for (int test_index = 0; test_index < total_test_suite_count();\n             test_index++) {\n          GetMutableSuiteCase(test_index)->Skip();\n        }\n      }\n\n      // Tears down all environments in reverse order afterwards.\n      repeater->OnEnvironmentsTearDownStart(*parent_);\n      std::for_each(environments_.rbegin(), environments_.rend(),\n                    TearDownEnvironment);\n      repeater->OnEnvironmentsTearDownEnd(*parent_);\n    }\n\n    elapsed_time_ = timer.Elapsed();\n\n    // Tells the unit test event listener that the tests have just finished.\n    repeater->OnTestIterationEnd(*parent_, i);\n\n    // Gets the result and clears it.\n    if (!Passed()) {\n      failed = true;\n    }\n\n    // Restores the original test order after the iteration.  This\n    // allows the user to quickly repro a failure that happens in the\n    // N-th iteration without repeating the first (N - 1) iterations.\n    // This is not enclosed in \"if (GTEST_FLAG(shuffle)) { ... }\", in\n    // case the user somehow changes the value of the flag somewhere\n    // (it's always safe to unshuffle the tests).\n    UnshuffleTests();\n\n    if (GTEST_FLAG(shuffle)) {\n      // Picks a new random seed for each iteration.\n      random_seed_ = GetNextRandomSeed(random_seed_);\n    }\n  }\n\n  repeater->OnTestProgramEnd(*parent_);\n\n  if (!gtest_is_initialized_before_run_all_tests) {\n    ColoredPrintf(\n        GTestColor::kRed,\n        \"\\nIMPORTANT NOTICE - DO NOT IGNORE:\\n\"\n        \"This test program did NOT call \" GTEST_INIT_GOOGLE_TEST_NAME_\n        \"() before calling RUN_ALL_TESTS(). This is INVALID. Soon \" GTEST_NAME_\n        \" will start to enforce the valid usage. \"\n        \"Please fix it ASAP, or IT WILL START TO FAIL.\\n\");  // NOLINT\n#if GTEST_FOR_GOOGLE_\n    ColoredPrintf(GTestColor::kRed,\n                  \"For more details, see http://wiki/Main/ValidGUnitMain.\\n\");\n#endif  // GTEST_FOR_GOOGLE_\n  }\n\n  return !failed;\n}\n\n// Reads the GTEST_SHARD_STATUS_FILE environment variable, and creates the file\n// if the variable is present. If a file already exists at this location, this\n// function will write over it. If the variable is present, but the file cannot\n// be created, prints an error and exits.\nvoid WriteToShardStatusFileIfNeeded() {\n  const char* const test_shard_file = posix::GetEnv(kTestShardStatusFile);\n  if (test_shard_file != nullptr) {\n    FILE* const file = posix::FOpen(test_shard_file, \"w\");\n    if (file == nullptr) {\n      ColoredPrintf(GTestColor::kRed,\n                    \"Could not write to the test shard status file \\\"%s\\\" \"\n                    \"specified by the %s environment variable.\\n\",\n                    test_shard_file, kTestShardStatusFile);\n      fflush(stdout);\n      exit(EXIT_FAILURE);\n    }\n    fclose(file);\n  }\n}\n\n// Checks whether sharding is enabled by examining the relevant\n// environment variable values. If the variables are present,\n// but inconsistent (i.e., shard_index >= total_shards), prints\n// an error and exits. If in_subprocess_for_death_test, sharding is\n// disabled because it must only be applied to the original test\n// process. Otherwise, we could filter out death tests we intended to execute.\nbool ShouldShard(const char* total_shards_env,\n                 const char* shard_index_env,\n                 bool in_subprocess_for_death_test) {\n  if (in_subprocess_for_death_test) {\n    return false;\n  }\n\n  const int32_t total_shards = Int32FromEnvOrDie(total_shards_env, -1);\n  const int32_t shard_index = Int32FromEnvOrDie(shard_index_env, -1);\n\n  if (total_shards == -1 && shard_index == -1) {\n    return false;\n  } else if (total_shards == -1 && shard_index != -1) {\n    const Message msg = Message()\n      << \"Invalid environment variables: you have \"\n      << kTestShardIndex << \" = \" << shard_index\n      << \", but have left \" << kTestTotalShards << \" unset.\\n\";\n    ColoredPrintf(GTestColor::kRed, \"%s\", msg.GetString().c_str());\n    fflush(stdout);\n    exit(EXIT_FAILURE);\n  } else if (total_shards != -1 && shard_index == -1) {\n    const Message msg = Message()\n      << \"Invalid environment variables: you have \"\n      << kTestTotalShards << \" = \" << total_shards\n      << \", but have left \" << kTestShardIndex << \" unset.\\n\";\n    ColoredPrintf(GTestColor::kRed, \"%s\", msg.GetString().c_str());\n    fflush(stdout);\n    exit(EXIT_FAILURE);\n  } else if (shard_index < 0 || shard_index >= total_shards) {\n    const Message msg = Message()\n      << \"Invalid environment variables: we require 0 <= \"\n      << kTestShardIndex << \" < \" << kTestTotalShards\n      << \", but you have \" << kTestShardIndex << \"=\" << shard_index\n      << \", \" << kTestTotalShards << \"=\" << total_shards << \".\\n\";\n    ColoredPrintf(GTestColor::kRed, \"%s\", msg.GetString().c_str());\n    fflush(stdout);\n    exit(EXIT_FAILURE);\n  }\n\n  return total_shards > 1;\n}\n\n// Parses the environment variable var as an Int32. If it is unset,\n// returns default_val. If it is not an Int32, prints an error\n// and aborts.\nint32_t Int32FromEnvOrDie(const char* var, int32_t default_val) {\n  const char* str_val = posix::GetEnv(var);\n  if (str_val == nullptr) {\n    return default_val;\n  }\n\n  int32_t result;\n  if (!ParseInt32(Message() << \"The value of environment variable \" << var,\n                  str_val, &result)) {\n    exit(EXIT_FAILURE);\n  }\n  return result;\n}\n\n// Given the total number of shards, the shard index, and the test id,\n// returns true if and only if the test should be run on this shard. The test id\n// is some arbitrary but unique non-negative integer assigned to each test\n// method. Assumes that 0 <= shard_index < total_shards.\nbool ShouldRunTestOnShard(int total_shards, int shard_index, int test_id) {\n  return (test_id % total_shards) == shard_index;\n}\n\n// Compares the name of each test with the user-specified filter to\n// decide whether the test should be run, then records the result in\n// each TestSuite and TestInfo object.\n// If shard_tests == true, further filters tests based on sharding\n// variables in the environment - see\n// https://github.com/google/googletest/blob/master/googletest/docs/advanced.md\n// . Returns the number of tests that should run.\nint UnitTestImpl::FilterTests(ReactionToSharding shard_tests) {\n  const int32_t total_shards = shard_tests == HONOR_SHARDING_PROTOCOL ?\n      Int32FromEnvOrDie(kTestTotalShards, -1) : -1;\n  const int32_t shard_index = shard_tests == HONOR_SHARDING_PROTOCOL ?\n      Int32FromEnvOrDie(kTestShardIndex, -1) : -1;\n\n  // num_runnable_tests are the number of tests that will\n  // run across all shards (i.e., match filter and are not disabled).\n  // num_selected_tests are the number of tests to be run on\n  // this shard.\n  int num_runnable_tests = 0;\n  int num_selected_tests = 0;\n  for (auto* test_suite : test_suites_) {\n    const std::string& test_suite_name = test_suite->name();\n    test_suite->set_should_run(false);\n\n    for (size_t j = 0; j < test_suite->test_info_list().size(); j++) {\n      TestInfo* const test_info = test_suite->test_info_list()[j];\n      const std::string test_name(test_info->name());\n      // A test is disabled if test suite name or test name matches\n      // kDisableTestFilter.\n      const bool is_disabled = internal::UnitTestOptions::MatchesFilter(\n                                   test_suite_name, kDisableTestFilter) ||\n                               internal::UnitTestOptions::MatchesFilter(\n                                   test_name, kDisableTestFilter);\n      test_info->is_disabled_ = is_disabled;\n\n      const bool matches_filter = internal::UnitTestOptions::FilterMatchesTest(\n          test_suite_name, test_name);\n      test_info->matches_filter_ = matches_filter;\n\n      const bool is_runnable =\n          (GTEST_FLAG(also_run_disabled_tests) || !is_disabled) &&\n          matches_filter;\n\n      const bool is_in_another_shard =\n          shard_tests != IGNORE_SHARDING_PROTOCOL &&\n          !ShouldRunTestOnShard(total_shards, shard_index, num_runnable_tests);\n      test_info->is_in_another_shard_ = is_in_another_shard;\n      const bool is_selected = is_runnable && !is_in_another_shard;\n\n      num_runnable_tests += is_runnable;\n      num_selected_tests += is_selected;\n\n      test_info->should_run_ = is_selected;\n      test_suite->set_should_run(test_suite->should_run() || is_selected);\n    }\n  }\n  return num_selected_tests;\n}\n\n// Prints the given C-string on a single line by replacing all '\\n'\n// characters with string \"\\\\n\".  If the output takes more than\n// max_length characters, only prints the first max_length characters\n// and \"...\".\nstatic void PrintOnOneLine(const char* str, int max_length) {\n  if (str != nullptr) {\n    for (int i = 0; *str != '\\0'; ++str) {\n      if (i >= max_length) {\n        printf(\"...\");\n        break;\n      }\n      if (*str == '\\n') {\n        printf(\"\\\\n\");\n        i += 2;\n      } else {\n        printf(\"%c\", *str);\n        ++i;\n      }\n    }\n  }\n}\n\n// Prints the names of the tests matching the user-specified filter flag.\nvoid UnitTestImpl::ListTestsMatchingFilter() {\n  // Print at most this many characters for each type/value parameter.\n  const int kMaxParamLength = 250;\n\n  for (auto* test_suite : test_suites_) {\n    bool printed_test_suite_name = false;\n\n    for (size_t j = 0; j < test_suite->test_info_list().size(); j++) {\n      const TestInfo* const test_info = test_suite->test_info_list()[j];\n      if (test_info->matches_filter_) {\n        if (!printed_test_suite_name) {\n          printed_test_suite_name = true;\n          printf(\"%s.\", test_suite->name());\n          if (test_suite->type_param() != nullptr) {\n            printf(\"  # %s = \", kTypeParamLabel);\n            // We print the type parameter on a single line to make\n            // the output easy to parse by a program.\n            PrintOnOneLine(test_suite->type_param(), kMaxParamLength);\n          }\n          printf(\"\\n\");\n        }\n        printf(\"  %s\", test_info->name());\n        if (test_info->value_param() != nullptr) {\n          printf(\"  # %s = \", kValueParamLabel);\n          // We print the value parameter on a single line to make the\n          // output easy to parse by a program.\n          PrintOnOneLine(test_info->value_param(), kMaxParamLength);\n        }\n        printf(\"\\n\");\n      }\n    }\n  }\n  fflush(stdout);\n  const std::string& output_format = UnitTestOptions::GetOutputFormat();\n  if (output_format == \"xml\" || output_format == \"json\") {\n    FILE* fileout = OpenFileForWriting(\n        UnitTestOptions::GetAbsolutePathToOutputFile().c_str());\n    std::stringstream stream;\n    if (output_format == \"xml\") {\n      XmlUnitTestResultPrinter(\n          UnitTestOptions::GetAbsolutePathToOutputFile().c_str())\n          .PrintXmlTestsList(&stream, test_suites_);\n    } else if (output_format == \"json\") {\n      JsonUnitTestResultPrinter(\n          UnitTestOptions::GetAbsolutePathToOutputFile().c_str())\n          .PrintJsonTestList(&stream, test_suites_);\n    }\n    fprintf(fileout, \"%s\", StringStreamToString(&stream).c_str());\n    fclose(fileout);\n  }\n}\n\n// Sets the OS stack trace getter.\n//\n// Does nothing if the input and the current OS stack trace getter are\n// the same; otherwise, deletes the old getter and makes the input the\n// current getter.\nvoid UnitTestImpl::set_os_stack_trace_getter(\n    OsStackTraceGetterInterface* getter) {\n  if (os_stack_trace_getter_ != getter) {\n    delete os_stack_trace_getter_;\n    os_stack_trace_getter_ = getter;\n  }\n}\n\n// Returns the current OS stack trace getter if it is not NULL;\n// otherwise, creates an OsStackTraceGetter, makes it the current\n// getter, and returns it.\nOsStackTraceGetterInterface* UnitTestImpl::os_stack_trace_getter() {\n  if (os_stack_trace_getter_ == nullptr) {\n#ifdef GTEST_OS_STACK_TRACE_GETTER_\n    os_stack_trace_getter_ = new GTEST_OS_STACK_TRACE_GETTER_;\n#else\n    os_stack_trace_getter_ = new OsStackTraceGetter;\n#endif  // GTEST_OS_STACK_TRACE_GETTER_\n  }\n\n  return os_stack_trace_getter_;\n}\n\n// Returns the most specific TestResult currently running.\nTestResult* UnitTestImpl::current_test_result() {\n  if (current_test_info_ != nullptr) {\n    return &current_test_info_->result_;\n  }\n  if (current_test_suite_ != nullptr) {\n    return &current_test_suite_->ad_hoc_test_result_;\n  }\n  return &ad_hoc_test_result_;\n}\n\n// Shuffles all test suites, and the tests within each test suite,\n// making sure that death tests are still run first.\nvoid UnitTestImpl::ShuffleTests() {\n  // Shuffles the death test suites.\n  ShuffleRange(random(), 0, last_death_test_suite_ + 1, &test_suite_indices_);\n\n  // Shuffles the non-death test suites.\n  ShuffleRange(random(), last_death_test_suite_ + 1,\n               static_cast<int>(test_suites_.size()), &test_suite_indices_);\n\n  // Shuffles the tests inside each test suite.\n  for (auto& test_suite : test_suites_) {\n    test_suite->ShuffleTests(random());\n  }\n}\n\n// Restores the test suites and tests to their order before the first shuffle.\nvoid UnitTestImpl::UnshuffleTests() {\n  for (size_t i = 0; i < test_suites_.size(); i++) {\n    // Unshuffles the tests in each test suite.\n    test_suites_[i]->UnshuffleTests();\n    // Resets the index of each test suite.\n    test_suite_indices_[i] = static_cast<int>(i);\n  }\n}\n\n// Returns the current OS stack trace as an std::string.\n//\n// The maximum number of stack frames to be included is specified by\n// the gtest_stack_trace_depth flag.  The skip_count parameter\n// specifies the number of top frames to be skipped, which doesn't\n// count against the number of frames to be included.\n//\n// For example, if Foo() calls Bar(), which in turn calls\n// GetCurrentOsStackTraceExceptTop(..., 1), Foo() will be included in\n// the trace but Bar() and GetCurrentOsStackTraceExceptTop() won't.\nstd::string GetCurrentOsStackTraceExceptTop(UnitTest* /*unit_test*/,\n                                            int skip_count) {\n  // We pass skip_count + 1 to skip this wrapper function in addition\n  // to what the user really wants to skip.\n  return GetUnitTestImpl()->CurrentOsStackTraceExceptTop(skip_count + 1);\n}\n\n// Used by the GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_ macro to\n// suppress unreachable code warnings.\nnamespace {\nclass ClassUniqueToAlwaysTrue {};\n}\n\nbool IsTrue(bool condition) { return condition; }\n\nbool AlwaysTrue() {\n#if GTEST_HAS_EXCEPTIONS\n  // This condition is always false so AlwaysTrue() never actually throws,\n  // but it makes the compiler think that it may throw.\n  if (IsTrue(false))\n    throw ClassUniqueToAlwaysTrue();\n#endif  // GTEST_HAS_EXCEPTIONS\n  return true;\n}\n\n// If *pstr starts with the given prefix, modifies *pstr to be right\n// past the prefix and returns true; otherwise leaves *pstr unchanged\n// and returns false.  None of pstr, *pstr, and prefix can be NULL.\nbool SkipPrefix(const char* prefix, const char** pstr) {\n  const size_t prefix_len = strlen(prefix);\n  if (strncmp(*pstr, prefix, prefix_len) == 0) {\n    *pstr += prefix_len;\n    return true;\n  }\n  return false;\n}\n\n// Parses a string as a command line flag.  The string should have\n// the format \"--flag=value\".  When def_optional is true, the \"=value\"\n// part can be omitted.\n//\n// Returns the value of the flag, or NULL if the parsing failed.\nstatic const char* ParseFlagValue(const char* str, const char* flag,\n                                  bool def_optional) {\n  // str and flag must not be NULL.\n  if (str == nullptr || flag == nullptr) return nullptr;\n\n  // The flag must start with \"--\" followed by GTEST_FLAG_PREFIX_.\n  const std::string flag_str = std::string(\"--\") + GTEST_FLAG_PREFIX_ + flag;\n  const size_t flag_len = flag_str.length();\n  if (strncmp(str, flag_str.c_str(), flag_len) != 0) return nullptr;\n\n  // Skips the flag name.\n  const char* flag_end = str + flag_len;\n\n  // When def_optional is true, it's OK to not have a \"=value\" part.\n  if (def_optional && (flag_end[0] == '\\0')) {\n    return flag_end;\n  }\n\n  // If def_optional is true and there are more characters after the\n  // flag name, or if def_optional is false, there must be a '=' after\n  // the flag name.\n  if (flag_end[0] != '=') return nullptr;\n\n  // Returns the string after \"=\".\n  return flag_end + 1;\n}\n\n// Parses a string for a bool flag, in the form of either\n// \"--flag=value\" or \"--flag\".\n//\n// In the former case, the value is taken as true as long as it does\n// not start with '0', 'f', or 'F'.\n//\n// In the latter case, the value is taken as true.\n//\n// On success, stores the value of the flag in *value, and returns\n// true.  On failure, returns false without changing *value.\nstatic bool ParseBoolFlag(const char* str, const char* flag, bool* value) {\n  // Gets the value of the flag as a string.\n  const char* const value_str = ParseFlagValue(str, flag, true);\n\n  // Aborts if the parsing failed.\n  if (value_str == nullptr) return false;\n\n  // Converts the string value to a bool.\n  *value = !(*value_str == '0' || *value_str == 'f' || *value_str == 'F');\n  return true;\n}\n\n// Parses a string for an int32_t flag, in the form of \"--flag=value\".\n//\n// On success, stores the value of the flag in *value, and returns\n// true.  On failure, returns false without changing *value.\nbool ParseInt32Flag(const char* str, const char* flag, int32_t* value) {\n  // Gets the value of the flag as a string.\n  const char* const value_str = ParseFlagValue(str, flag, false);\n\n  // Aborts if the parsing failed.\n  if (value_str == nullptr) return false;\n\n  // Sets *value to the value of the flag.\n  return ParseInt32(Message() << \"The value of flag --\" << flag,\n                    value_str, value);\n}\n\n// Parses a string for a string flag, in the form of \"--flag=value\".\n//\n// On success, stores the value of the flag in *value, and returns\n// true.  On failure, returns false without changing *value.\ntemplate <typename String>\nstatic bool ParseStringFlag(const char* str, const char* flag, String* value) {\n  // Gets the value of the flag as a string.\n  const char* const value_str = ParseFlagValue(str, flag, false);\n\n  // Aborts if the parsing failed.\n  if (value_str == nullptr) return false;\n\n  // Sets *value to the value of the flag.\n  *value = value_str;\n  return true;\n}\n\n// Determines whether a string has a prefix that Google Test uses for its\n// flags, i.e., starts with GTEST_FLAG_PREFIX_ or GTEST_FLAG_PREFIX_DASH_.\n// If Google Test detects that a command line flag has its prefix but is not\n// recognized, it will print its help message. Flags starting with\n// GTEST_INTERNAL_PREFIX_ followed by \"internal_\" are considered Google Test\n// internal flags and do not trigger the help message.\nstatic bool HasGoogleTestFlagPrefix(const char* str) {\n  return (SkipPrefix(\"--\", &str) ||\n          SkipPrefix(\"-\", &str) ||\n          SkipPrefix(\"/\", &str)) &&\n         !SkipPrefix(GTEST_FLAG_PREFIX_ \"internal_\", &str) &&\n         (SkipPrefix(GTEST_FLAG_PREFIX_, &str) ||\n          SkipPrefix(GTEST_FLAG_PREFIX_DASH_, &str));\n}\n\n// Prints a string containing code-encoded text.  The following escape\n// sequences can be used in the string to control the text color:\n//\n//   @@    prints a single '@' character.\n//   @R    changes the color to red.\n//   @G    changes the color to green.\n//   @Y    changes the color to yellow.\n//   @D    changes to the default terminal text color.\n//\nstatic void PrintColorEncoded(const char* str) {\n  GTestColor color = GTestColor::kDefault;  // The current color.\n\n  // Conceptually, we split the string into segments divided by escape\n  // sequences.  Then we print one segment at a time.  At the end of\n  // each iteration, the str pointer advances to the beginning of the\n  // next segment.\n  for (;;) {\n    const char* p = strchr(str, '@');\n    if (p == nullptr) {\n      ColoredPrintf(color, \"%s\", str);\n      return;\n    }\n\n    ColoredPrintf(color, \"%s\", std::string(str, p).c_str());\n\n    const char ch = p[1];\n    str = p + 2;\n    if (ch == '@') {\n      ColoredPrintf(color, \"@\");\n    } else if (ch == 'D') {\n      color = GTestColor::kDefault;\n    } else if (ch == 'R') {\n      color = GTestColor::kRed;\n    } else if (ch == 'G') {\n      color = GTestColor::kGreen;\n    } else if (ch == 'Y') {\n      color = GTestColor::kYellow;\n    } else {\n      --str;\n    }\n  }\n}\n\nstatic const char kColorEncodedHelpMessage[] =\n    \"This program contains tests written using \" GTEST_NAME_\n    \". You can use the\\n\"\n    \"following command line flags to control its behavior:\\n\"\n    \"\\n\"\n    \"Test Selection:\\n\"\n    \"  @G--\" GTEST_FLAG_PREFIX_\n    \"list_tests@D\\n\"\n    \"      List the names of all tests instead of running them. The name of\\n\"\n    \"      TEST(Foo, Bar) is \\\"Foo.Bar\\\".\\n\"\n    \"  @G--\" GTEST_FLAG_PREFIX_\n    \"filter=@YPOSITIVE_PATTERNS\"\n    \"[@G-@YNEGATIVE_PATTERNS]@D\\n\"\n    \"      Run only the tests whose name matches one of the positive patterns \"\n    \"but\\n\"\n    \"      none of the negative patterns. '?' matches any single character; \"\n    \"'*'\\n\"\n    \"      matches any substring; ':' separates two patterns.\\n\"\n    \"  @G--\" GTEST_FLAG_PREFIX_\n    \"also_run_disabled_tests@D\\n\"\n    \"      Run all disabled tests too.\\n\"\n    \"\\n\"\n    \"Test Execution:\\n\"\n    \"  @G--\" GTEST_FLAG_PREFIX_\n    \"repeat=@Y[COUNT]@D\\n\"\n    \"      Run the tests repeatedly; use a negative count to repeat forever.\\n\"\n    \"  @G--\" GTEST_FLAG_PREFIX_\n    \"shuffle@D\\n\"\n    \"      Randomize tests' orders on every iteration.\\n\"\n    \"  @G--\" GTEST_FLAG_PREFIX_\n    \"random_seed=@Y[NUMBER]@D\\n\"\n    \"      Random number seed to use for shuffling test orders (between 1 and\\n\"\n    \"      99999, or 0 to use a seed based on the current time).\\n\"\n    \"\\n\"\n    \"Test Output:\\n\"\n    \"  @G--\" GTEST_FLAG_PREFIX_\n    \"color=@Y(@Gyes@Y|@Gno@Y|@Gauto@Y)@D\\n\"\n    \"      Enable/disable colored output. The default is @Gauto@D.\\n\"\n    \"  @G--\" GTEST_FLAG_PREFIX_\n    \"brief=1@D\\n\"\n    \"      Only print test failures.\\n\"\n    \"  @G--\" GTEST_FLAG_PREFIX_\n    \"print_time=0@D\\n\"\n    \"      Don't print the elapsed time of each test.\\n\"\n    \"  @G--\" GTEST_FLAG_PREFIX_\n    \"output=@Y(@Gjson@Y|@Gxml@Y)[@G:@YDIRECTORY_PATH@G\" GTEST_PATH_SEP_\n    \"@Y|@G:@YFILE_PATH]@D\\n\"\n    \"      Generate a JSON or XML report in the given directory or with the \"\n    \"given\\n\"\n    \"      file name. @YFILE_PATH@D defaults to @Gtest_detail.xml@D.\\n\"\n# if GTEST_CAN_STREAM_RESULTS_\n    \"  @G--\" GTEST_FLAG_PREFIX_\n    \"stream_result_to=@YHOST@G:@YPORT@D\\n\"\n    \"      Stream test results to the given server.\\n\"\n# endif  // GTEST_CAN_STREAM_RESULTS_\n    \"\\n\"\n    \"Assertion Behavior:\\n\"\n# if GTEST_HAS_DEATH_TEST && !GTEST_OS_WINDOWS\n    \"  @G--\" GTEST_FLAG_PREFIX_\n    \"death_test_style=@Y(@Gfast@Y|@Gthreadsafe@Y)@D\\n\"\n    \"      Set the default death test style.\\n\"\n# endif  // GTEST_HAS_DEATH_TEST && !GTEST_OS_WINDOWS\n    \"  @G--\" GTEST_FLAG_PREFIX_\n    \"break_on_failure@D\\n\"\n    \"      Turn assertion failures into debugger break-points.\\n\"\n    \"  @G--\" GTEST_FLAG_PREFIX_\n    \"throw_on_failure@D\\n\"\n    \"      Turn assertion failures into C++ exceptions for use by an external\\n\"\n    \"      test framework.\\n\"\n    \"  @G--\" GTEST_FLAG_PREFIX_\n    \"catch_exceptions=0@D\\n\"\n    \"      Do not report exceptions as test failures. Instead, allow them\\n\"\n    \"      to crash the program or throw a pop-up (on Windows).\\n\"\n    \"\\n\"\n    \"Except for @G--\" GTEST_FLAG_PREFIX_\n    \"list_tests@D, you can alternatively set \"\n    \"the corresponding\\n\"\n    \"environment variable of a flag (all letters in upper-case). For example, \"\n    \"to\\n\"\n    \"disable colored text output, you can either specify \"\n    \"@G--\" GTEST_FLAG_PREFIX_\n    \"color=no@D or set\\n\"\n    \"the @G\" GTEST_FLAG_PREFIX_UPPER_\n    \"COLOR@D environment variable to @Gno@D.\\n\"\n    \"\\n\"\n    \"For more information, please read the \" GTEST_NAME_\n    \" documentation at\\n\"\n    \"@G\" GTEST_PROJECT_URL_ \"@D. If you find a bug in \" GTEST_NAME_\n    \"\\n\"\n    \"(not one in your own code or tests), please report it to\\n\"\n    \"@G<\" GTEST_DEV_EMAIL_ \">@D.\\n\";\n\nstatic bool ParseGoogleTestFlag(const char* const arg) {\n  return ParseBoolFlag(arg, kAlsoRunDisabledTestsFlag,\n                       &GTEST_FLAG(also_run_disabled_tests)) ||\n         ParseBoolFlag(arg, kBreakOnFailureFlag,\n                       &GTEST_FLAG(break_on_failure)) ||\n         ParseBoolFlag(arg, kCatchExceptionsFlag,\n                       &GTEST_FLAG(catch_exceptions)) ||\n         ParseStringFlag(arg, kColorFlag, &GTEST_FLAG(color)) ||\n         ParseStringFlag(arg, kDeathTestStyleFlag,\n                         &GTEST_FLAG(death_test_style)) ||\n         ParseBoolFlag(arg, kDeathTestUseFork,\n                       &GTEST_FLAG(death_test_use_fork)) ||\n         ParseBoolFlag(arg, kFailFast, &GTEST_FLAG(fail_fast)) ||\n         ParseStringFlag(arg, kFilterFlag, &GTEST_FLAG(filter)) ||\n         ParseStringFlag(arg, kInternalRunDeathTestFlag,\n                         &GTEST_FLAG(internal_run_death_test)) ||\n         ParseBoolFlag(arg, kListTestsFlag, &GTEST_FLAG(list_tests)) ||\n         ParseStringFlag(arg, kOutputFlag, &GTEST_FLAG(output)) ||\n         ParseBoolFlag(arg, kBriefFlag, &GTEST_FLAG(brief)) ||\n         ParseBoolFlag(arg, kPrintTimeFlag, &GTEST_FLAG(print_time)) ||\n         ParseBoolFlag(arg, kPrintUTF8Flag, &GTEST_FLAG(print_utf8)) ||\n         ParseInt32Flag(arg, kRandomSeedFlag, &GTEST_FLAG(random_seed)) ||\n         ParseInt32Flag(arg, kRepeatFlag, &GTEST_FLAG(repeat)) ||\n         ParseBoolFlag(arg, kShuffleFlag, &GTEST_FLAG(shuffle)) ||\n         ParseInt32Flag(arg, kStackTraceDepthFlag,\n                        &GTEST_FLAG(stack_trace_depth)) ||\n         ParseStringFlag(arg, kStreamResultToFlag,\n                         &GTEST_FLAG(stream_result_to)) ||\n         ParseBoolFlag(arg, kThrowOnFailureFlag, &GTEST_FLAG(throw_on_failure));\n}\n\n#if GTEST_USE_OWN_FLAGFILE_FLAG_\nstatic void LoadFlagsFromFile(const std::string& path) {\n  FILE* flagfile = posix::FOpen(path.c_str(), \"r\");\n  if (!flagfile) {\n    GTEST_LOG_(FATAL) << \"Unable to open file \\\"\" << GTEST_FLAG(flagfile)\n                      << \"\\\"\";\n  }\n  std::string contents(ReadEntireFile(flagfile));\n  posix::FClose(flagfile);\n  std::vector<std::string> lines;\n  SplitString(contents, '\\n', &lines);\n  for (size_t i = 0; i < lines.size(); ++i) {\n    if (lines[i].empty())\n      continue;\n    if (!ParseGoogleTestFlag(lines[i].c_str()))\n      g_help_flag = true;\n  }\n}\n#endif  // GTEST_USE_OWN_FLAGFILE_FLAG_\n\n// Parses the command line for Google Test flags, without initializing\n// other parts of Google Test.  The type parameter CharType can be\n// instantiated to either char or wchar_t.\ntemplate <typename CharType>\nvoid ParseGoogleTestFlagsOnlyImpl(int* argc, CharType** argv) {\n  for (int i = 1; i < *argc; i++) {\n    const std::string arg_string = StreamableToString(argv[i]);\n    const char* const arg = arg_string.c_str();\n\n    using internal::ParseBoolFlag;\n    using internal::ParseInt32Flag;\n    using internal::ParseStringFlag;\n\n    bool remove_flag = false;\n    if (ParseGoogleTestFlag(arg)) {\n      remove_flag = true;\n#if GTEST_USE_OWN_FLAGFILE_FLAG_\n    } else if (ParseStringFlag(arg, kFlagfileFlag, &GTEST_FLAG(flagfile))) {\n      LoadFlagsFromFile(GTEST_FLAG(flagfile));\n      remove_flag = true;\n#endif  // GTEST_USE_OWN_FLAGFILE_FLAG_\n    } else if (arg_string == \"--help\" || arg_string == \"-h\" ||\n               arg_string == \"-?\" || arg_string == \"/?\" ||\n               HasGoogleTestFlagPrefix(arg)) {\n      // Both help flag and unrecognized Google Test flags (excluding\n      // internal ones) trigger help display.\n      g_help_flag = true;\n    }\n\n    if (remove_flag) {\n      // Shift the remainder of the argv list left by one.  Note\n      // that argv has (*argc + 1) elements, the last one always being\n      // NULL.  The following loop moves the trailing NULL element as\n      // well.\n      for (int j = i; j != *argc; j++) {\n        argv[j] = argv[j + 1];\n      }\n\n      // Decrements the argument count.\n      (*argc)--;\n\n      // We also need to decrement the iterator as we just removed\n      // an element.\n      i--;\n    }\n  }\n\n  if (g_help_flag) {\n    // We print the help here instead of in RUN_ALL_TESTS(), as the\n    // latter may not be called at all if the user is using Google\n    // Test with another testing framework.\n    PrintColorEncoded(kColorEncodedHelpMessage);\n  }\n}\n\n// Parses the command line for Google Test flags, without initializing\n// other parts of Google Test.\nvoid ParseGoogleTestFlagsOnly(int* argc, char** argv) {\n  ParseGoogleTestFlagsOnlyImpl(argc, argv);\n\n  // Fix the value of *_NSGetArgc() on macOS, but if and only if\n  // *_NSGetArgv() == argv\n  // Only applicable to char** version of argv\n#if GTEST_OS_MAC\n#ifndef GTEST_OS_IOS\n  if (*_NSGetArgv() == argv) {\n    *_NSGetArgc() = *argc;\n  }\n#endif\n#endif\n}\nvoid ParseGoogleTestFlagsOnly(int* argc, wchar_t** argv) {\n  ParseGoogleTestFlagsOnlyImpl(argc, argv);\n}\n\n// The internal implementation of InitGoogleTest().\n//\n// The type parameter CharType can be instantiated to either char or\n// wchar_t.\ntemplate <typename CharType>\nvoid InitGoogleTestImpl(int* argc, CharType** argv) {\n  // We don't want to run the initialization code twice.\n  if (GTestIsInitialized()) return;\n\n  if (*argc <= 0) return;\n\n  g_argvs.clear();\n  for (int i = 0; i != *argc; i++) {\n    g_argvs.push_back(StreamableToString(argv[i]));\n  }\n\n#if GTEST_HAS_ABSL\n  absl::InitializeSymbolizer(g_argvs[0].c_str());\n#endif  // GTEST_HAS_ABSL\n\n  ParseGoogleTestFlagsOnly(argc, argv);\n  GetUnitTestImpl()->PostFlagParsingInit();\n}\n\n}  // namespace internal\n\n// Initializes Google Test.  This must be called before calling\n// RUN_ALL_TESTS().  In particular, it parses a command line for the\n// flags that Google Test recognizes.  Whenever a Google Test flag is\n// seen, it is removed from argv, and *argc is decremented.\n//\n// No value is returned.  Instead, the Google Test flag variables are\n// updated.\n//\n// Calling the function for the second time has no user-visible effect.\nvoid InitGoogleTest(int* argc, char** argv) {\n#if defined(GTEST_CUSTOM_INIT_GOOGLE_TEST_FUNCTION_)\n  GTEST_CUSTOM_INIT_GOOGLE_TEST_FUNCTION_(argc, argv);\n#else  // defined(GTEST_CUSTOM_INIT_GOOGLE_TEST_FUNCTION_)\n  internal::InitGoogleTestImpl(argc, argv);\n#endif  // defined(GTEST_CUSTOM_INIT_GOOGLE_TEST_FUNCTION_)\n}\n\n// This overloaded version can be used in Windows programs compiled in\n// UNICODE mode.\nvoid InitGoogleTest(int* argc, wchar_t** argv) {\n#if defined(GTEST_CUSTOM_INIT_GOOGLE_TEST_FUNCTION_)\n  GTEST_CUSTOM_INIT_GOOGLE_TEST_FUNCTION_(argc, argv);\n#else  // defined(GTEST_CUSTOM_INIT_GOOGLE_TEST_FUNCTION_)\n  internal::InitGoogleTestImpl(argc, argv);\n#endif  // defined(GTEST_CUSTOM_INIT_GOOGLE_TEST_FUNCTION_)\n}\n\n// This overloaded version can be used on Arduino/embedded platforms where\n// there is no argc/argv.\nvoid InitGoogleTest() {\n  // Since Arduino doesn't have a command line, fake out the argc/argv arguments\n  int argc = 1;\n  const auto arg0 = \"dummy\";\n  char* argv0 = const_cast<char*>(arg0);\n  char** argv = &argv0;\n\n#if defined(GTEST_CUSTOM_INIT_GOOGLE_TEST_FUNCTION_)\n  GTEST_CUSTOM_INIT_GOOGLE_TEST_FUNCTION_(&argc, argv);\n#else  // defined(GTEST_CUSTOM_INIT_GOOGLE_TEST_FUNCTION_)\n  internal::InitGoogleTestImpl(&argc, argv);\n#endif  // defined(GTEST_CUSTOM_INIT_GOOGLE_TEST_FUNCTION_)\n}\n\nstd::string TempDir() {\n#if defined(GTEST_CUSTOM_TEMPDIR_FUNCTION_)\n  return GTEST_CUSTOM_TEMPDIR_FUNCTION_();\n#elif GTEST_OS_WINDOWS_MOBILE\n  return \"\\\\temp\\\\\";\n#elif GTEST_OS_WINDOWS\n  const char* temp_dir = internal::posix::GetEnv(\"TEMP\");\n  if (temp_dir == nullptr || temp_dir[0] == '\\0') {\n    return \"\\\\temp\\\\\";\n  } else if (temp_dir[strlen(temp_dir) - 1] == '\\\\') {\n    return temp_dir;\n  } else {\n    return std::string(temp_dir) + \"\\\\\";\n  }\n#elif GTEST_OS_LINUX_ANDROID\n  const char* temp_dir = internal::posix::GetEnv(\"TEST_TMPDIR\");\n  if (temp_dir == nullptr || temp_dir[0] == '\\0') {\n    return \"/data/local/tmp/\";\n  } else {\n    return temp_dir;\n  }\n#elif GTEST_OS_LINUX\n  const char* temp_dir = internal::posix::GetEnv(\"TEST_TMPDIR\");\n  if (temp_dir == nullptr || temp_dir[0] == '\\0') {\n    return \"/tmp/\";\n  } else {\n    return temp_dir;\n  }\n#else\n  return \"/tmp/\";\n#endif  // GTEST_OS_WINDOWS_MOBILE\n}\n\n// Class ScopedTrace\n\n// Pushes the given source file location and message onto a per-thread\n// trace stack maintained by Google Test.\nvoid ScopedTrace::PushTrace(const char* file, int line, std::string message) {\n  internal::TraceInfo trace;\n  trace.file = file;\n  trace.line = line;\n  trace.message.swap(message);\n\n  UnitTest::GetInstance()->PushGTestTrace(trace);\n}\n\n// Pops the info pushed by the c'tor.\nScopedTrace::~ScopedTrace()\n    GTEST_LOCK_EXCLUDED_(&UnitTest::mutex_) {\n  UnitTest::GetInstance()->PopGTestTrace();\n}\n\n}  // namespace testing\n"
  },
  {
    "path": "test/gtest/src/gtest_main.cc",
    "content": "// Copyright 2006, Google Inc.\n// All rights reserved.\n//\n// Redistribution and use in source and binary forms, with or without\n// modification, are permitted provided that the following conditions are\n// met:\n//\n//     * Redistributions of source code must retain the above copyright\n// notice, this list of conditions and the following disclaimer.\n//     * Redistributions in binary form must reproduce the above\n// copyright notice, this list of conditions and the following disclaimer\n// in the documentation and/or other materials provided with the\n// distribution.\n//     * Neither the name of Google Inc. nor the names of its\n// contributors may be used to endorse or promote products derived from\n// this software without specific prior written permission.\n//\n// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n// \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n#include <cstdio>\n#include \"gtest/gtest.h\"\n\n#if GTEST_OS_ESP8266 || GTEST_OS_ESP32\n#if GTEST_OS_ESP8266\nextern \"C\" {\n#endif\nvoid setup() {\n  testing::InitGoogleTest();\n}\n\nvoid loop() { RUN_ALL_TESTS(); }\n\n#if GTEST_OS_ESP8266\n}\n#endif\n\n#else\n\nGTEST_API_ int main(int argc, char **argv) {\n  printf(\"Running main() from %s\\n\", __FILE__);\n  testing::InitGoogleTest(&argc, argv);\n  return RUN_ALL_TESTS();\n}\n#endif\n"
  },
  {
    "path": "test/meson.build",
    "content": "gtest_src = [\n  'gtest/src/gtest-all.cc',\n  'gtest/src/gtest_main.cc',\n]\ngtest_inc = include_directories('gtest', 'gtest/include')\n\ntest_flags = [\n  '-DGTEST_USE_OWN_TR1_TUPLE=0',\n  '-DGTEST_LANG_CXX11=1',\n  '-DGTEST_HAS_TR1_TUPLE=1',\n  '-std=c++11',\n]\n\nif not use_win32\n  test_flags += [\n    '-DGTEST_HAS_PTHREAD=1',\n    '-DPTHREADS',\n  ]\nendif\n\ngtest = static_library('gtest', gtest_src,\n                       cpp_args: test_flags,\n                       include_directories: gtest_inc)\ngtest_dep = declare_dependency(link_with: gtest,\n                               include_directories: gtest_inc)\n\ntest_src = [\n  'test_main.cpp',\n  'test_internal.cpp',\n  'test_va_api_fixture.cpp',\n  'test_va_api_get_create_config.cpp',\n  'test_va_api_config_attribs.cpp',\n  'test_va_api_createsurfaces.cpp',\n  'test_va_api_createcontext.cpp',\n  'test_va_api_createbuffer.cpp',\n  'test_va_api_display_attribs.cpp',\n  'test_va_api_get_max_values.cpp',\n  'test_va_api_init_terminate.cpp',\n  'test_va_api_query_config.cpp',\n  'test_va_api_query_vendor.cpp',\n]\n\ntests_deps = [gtest_dep, dependency('threads')]\n\nif use_win32\n  tests_deps += [ win32_deps ]\nelse\n  tests_deps += [ drm_deps ]\nendif\n\ntests = executable('test_va_api', test_src,\n                   cpp_args: test_flags,\n                   dependencies: tests_deps,\n                   install: true)\n\ntest('test_va', tests)\n"
  },
  {
    "path": "test/test.h",
    "content": "/*\n * Copyright (C) 2016 Intel Corporation. All Rights Reserved.\n *\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the\n * \"Software\"), to deal in the Software without restriction, including\n * without limitation the rights to use, copy, modify, merge, publish,\n * distribute, sub license, and/or sell copies of the Software, and to\n * permit persons to whom the Software is furnished to do so, subject to\n * the following conditions:\n *\n * The above copyright notice and this permission notice (including the\n * next paragraph) shall be included in all copies or substantial portions\n * of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR\n * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n#ifndef TESTVAAPI_test_h\n#define TESTVAAPI_test_h\n\n#include <gtest/gtest.h>\n#include <algorithm>\n#include <iostream>\n#include <string>\n#include <va/va.h>\n\n#define EXPECT_STATUS(status) \\\n    EXPECT_EQ(VaapiStatus(VA_STATUS_SUCCESS), VaapiStatus(status))\n\n#define ASSERT_STATUS(status) \\\n    ASSERT_EQ(VaapiStatus(VA_STATUS_SUCCESS), VaapiStatus(status))\n\n#define EXPECT_STATUS_EQ(expect, status) \\\n    EXPECT_EQ(VaapiStatus(expect), VaapiStatus(status))\n\n#define ASSERT_STATUS_EQ(expect, status) \\\n    ASSERT_EQ(VaapiStatus(expect), VaapiStatus(status))\n\n#define EXPECT_ID(id) \\\n    EXPECT_NE(VA_INVALID_ID, (id))\n\n#define ASSERT_ID(id) \\\n    ASSERT_NE(VA_INVALID_ID, (id))\n\n#define EXPECT_INVALID_ID(id) \\\n    EXPECT_EQ(VA_INVALID_ID, (id))\n\n#define ASSERT_INVALID_ID(id) \\\n    ASSERT_EQ(VA_INVALID_ID, (id))\n\n#define EXPECT_PTR(ptr) \\\n    EXPECT_FALSE(NULL == (ptr))\n\n#define ASSERT_PTR(ptr) \\\n    ASSERT_FALSE(NULL == (ptr))\n\n#define EXPECT_PTR_NULL(ptr) \\\n    EXPECT_TRUE(NULL == (ptr))\n\n#define ASSERT_PTR_NULL(ptr) \\\n    ASSERT_TRUE(NULL == (ptr))\n\nclass VaapiStatus\n{\npublic:\n    explicit VaapiStatus(VAStatus status)\n        : m_status(status)\n    { }\n\n    bool operator ==(const VaapiStatus& other) const\n    {\n        return m_status == other.m_status;\n    }\n\n    friend std::ostream& operator <<(std::ostream& os, const VaapiStatus& t)\n    {\n        std::string status;\n        switch (t.m_status) {\n        case VA_STATUS_SUCCESS:\n            status = \"VA_STATUS_SUCCESS\";\n            break;\n        case VA_STATUS_ERROR_OPERATION_FAILED:\n            status = \"VA_STATUS_ERROR_OPERATION_FAILED\";\n            break;\n        case VA_STATUS_ERROR_ALLOCATION_FAILED:\n            status = \"VA_STATUS_ERROR_ALLOCATION_FAILED\";\n            break;\n        case VA_STATUS_ERROR_INVALID_DISPLAY:\n            status = \"VA_STATUS_ERROR_INVALID_DISPLAY\";\n            break;\n        case VA_STATUS_ERROR_INVALID_CONFIG:\n            status = \"VA_STATUS_ERROR_INVALID_CONFIG\";\n            break;\n        case VA_STATUS_ERROR_INVALID_CONTEXT:\n            status = \"VA_STATUS_ERROR_INVALID_CONTEXT\";\n            break;\n        case VA_STATUS_ERROR_INVALID_SURFACE:\n            status = \"VA_STATUS_ERROR_INVALID_SURFACE\";\n            break;\n        case VA_STATUS_ERROR_INVALID_BUFFER:\n            status = \"VA_STATUS_ERROR_INVALID_BUFFER\";\n            break;\n        case VA_STATUS_ERROR_INVALID_IMAGE:\n            status = \"VA_STATUS_ERROR_INVALID_IMAGE\";\n            break;\n        case VA_STATUS_ERROR_INVALID_SUBPICTURE:\n            status = \"VA_STATUS_ERROR_INVALID_SUBPICTURE\";\n            break;\n        case VA_STATUS_ERROR_ATTR_NOT_SUPPORTED:\n            status = \"VA_STATUS_ERROR_ATTR_NOT_SUPPORTED\";\n            break;\n        case VA_STATUS_ERROR_MAX_NUM_EXCEEDED:\n            status = \"VA_STATUS_ERROR_MAX_NUM_EXCEEDED\";\n            break;\n        case VA_STATUS_ERROR_UNSUPPORTED_PROFILE:\n            status = \"VA_STATUS_ERROR_UNSUPPORTED_PROFILE\";\n            break;\n        case VA_STATUS_ERROR_UNSUPPORTED_ENTRYPOINT:\n            status = \"VA_STATUS_ERROR_UNSUPPORTED_ENTRYPOINT\";\n            break;\n        case VA_STATUS_ERROR_UNSUPPORTED_RT_FORMAT:\n            status = \"VA_STATUS_ERROR_UNSUPPORTED_RT_FORMAT\";\n            break;\n        case VA_STATUS_ERROR_UNSUPPORTED_BUFFERTYPE:\n            status = \"VA_STATUS_ERROR_UNSUPPORTED_BUFFERTYPE\";\n            break;\n        case VA_STATUS_ERROR_SURFACE_BUSY:\n            status = \"VA_STATUS_ERROR_SURFACE_BUSY\";\n            break;\n        case VA_STATUS_ERROR_FLAG_NOT_SUPPORTED:\n            status = \"VA_STATUS_ERROR_FLAG_NOT_SUPPORTED\";\n            break;\n        case VA_STATUS_ERROR_INVALID_PARAMETER:\n            status = \"VA_STATUS_ERROR_INVALID_PARAMETER\";\n            break;\n        case VA_STATUS_ERROR_RESOLUTION_NOT_SUPPORTED:\n            status = \"VA_STATUS_ERROR_RESOLUTION_NOT_SUPPORTED\";\n            break;\n        case VA_STATUS_ERROR_UNIMPLEMENTED:\n            status = \"VA_STATUS_ERROR_UNIMPLEMENTED\";\n            break;\n        case VA_STATUS_ERROR_SURFACE_IN_DISPLAYING:\n            status = \"VA_STATUS_ERROR_SURFACE_IN_DISPLAYING\";\n            break;\n        case VA_STATUS_ERROR_INVALID_IMAGE_FORMAT:\n            status = \"VA_STATUS_ERROR_INVALID_IMAGE_FORMAT\";\n            break;\n        case VA_STATUS_ERROR_DECODING_ERROR:\n            status = \"VA_STATUS_ERROR_DECODING_ERROR\";\n            break;\n        case VA_STATUS_ERROR_ENCODING_ERROR:\n            status = \"VA_STATUS_ERROR_ENCODING_ERROR\";\n            break;\n        case VA_STATUS_ERROR_INVALID_VALUE:\n            status = \"VA_STATUS_ERROR_INVALID_VALUE\";\n            break;\n        case VA_STATUS_ERROR_UNSUPPORTED_FILTER:\n            status = \"VA_STATUS_ERROR_UNSUPPORTED_FILTER\";\n            break;\n        case VA_STATUS_ERROR_INVALID_FILTER_CHAIN:\n            status = \"VA_STATUS_ERROR_INVALID_FILTER_CHAIN\";\n            break;\n        case VA_STATUS_ERROR_HW_BUSY:\n            status = \"VA_STATUS_ERROR_HW_BUSY\";\n            break;\n        case VA_STATUS_ERROR_UNSUPPORTED_MEMORY_TYPE:\n            status = \"VA_STATUS_ERROR_UNSUPPORTED_MEMORY_TYPE\";\n            break;\n        case VAStatus(VA_STATUS_ERROR_UNKNOWN):\n            status = \"VA_STATUS_ERROR_UNKNOWN\";\n            break;\n        default:\n            status = \"Unknown VAStatus\";\n        }\n        os << status;\n        return os;\n    }\n\n    VAStatus m_status;\n};\n\n#endif // TEST_H\n"
  },
  {
    "path": "test/test_data.h",
    "content": "/*\n * Copyright (C) 2016 Intel Corporation. All Rights Reserved.\n *\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the\n * \"Software\"), to deal in the Software without restriction, including\n * without limitation the rights to use, copy, modify, merge, publish,\n * distribute, sub license, and/or sell copies of the Software, and to\n * permit persons to whom the Software is furnished to do so, subject to\n * the following conditions:\n *\n * The above copyright notice and this permission notice (including the\n * next paragraph) shall be included in all copies or substantial portions\n * of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR\n * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n#ifndef TESTVAAPI_test_data_h\n#define TESTVAAPI_test_data_h\n\n#include \"test_defs.h\"\n#include \"test_utils.h\"\n\n#include <map>\n#include <va/va.h>\n#include <va/va_drmcommon.h>\n\nnamespace VAAPI\n{\n\nstatic const Profiles g_vaProfiles = {\n    VAProfileNone,\n    VAProfileMPEG2Simple,\n    VAProfileMPEG2Main,\n    VAProfileMPEG4Simple,\n    VAProfileMPEG4AdvancedSimple,\n    VAProfileMPEG4Main,\n    VAProfileH264Main,\n    VAProfileH264High,\n    VAProfileVC1Simple,\n    VAProfileVC1Main,\n    VAProfileVC1Advanced,\n    VAProfileH263Baseline,\n    VAProfileJPEGBaseline,\n    VAProfileH264ConstrainedBaseline,\n    VAProfileVP8Version0_3,\n    VAProfileH264MultiviewHigh,\n    VAProfileH264StereoHigh,\n    VAProfileHEVCMain,\n    VAProfileHEVCMain10,\n    VAProfileVP9Profile0,\n    VAProfileVP9Profile1,\n    VAProfileVP9Profile2,\n    VAProfileVP9Profile3,\n#if VA_CHECK_VERSION(1,8,0)\n    VAProfileAV1Profile0,\n    VAProfileAV1Profile1,\n#endif\n#if VA_CHECK_VERSION(1,18,0)\n    VAProfileH264High10,\n#endif\n};\n\nstatic const Profiles g_vaNoneProfiles = {\n    VAProfileNone,\n};\n\nstatic const Profiles g_vaMPEG2Profiles = {\n    VAProfileMPEG2Main, VAProfileMPEG2Simple,\n};\n\nstatic const Profiles g_vaMPEG4Profiles = {\n    VAProfileMPEG4Simple, VAProfileMPEG4Simple, VAProfileMPEG4AdvancedSimple,\n    VAProfileMPEG4Main,\n};\n\nstatic const Profiles g_vaH263Profiles = {\n    VAProfileH263Baseline,\n};\n\nstatic const Profiles g_vaH264Profiles = {\n    VAProfileH264Main, VAProfileH264High, VAProfileH264ConstrainedBaseline,\n    VAProfileH264MultiviewHigh, VAProfileH264StereoHigh,\n#if VA_CHECK_VERSION(1,18,0)\n    VAProfileH264High10,\n#endif\n};\n\nstatic const Profiles g_vaVC1Profiles = {\n    VAProfileVC1Simple, VAProfileVC1Main, VAProfileVC1Advanced,\n};\n\nstatic const Profiles g_vaJPEGProfiles = {\n    VAProfileJPEGBaseline,\n};\n\nstatic const Profiles g_vaVP8Profiles = {\n    VAProfileVP8Version0_3,\n};\n\nstatic const Profiles g_vaHEVCProfiles = {\n    VAProfileHEVCMain, VAProfileHEVCMain10,\n};\n\nstatic const Profiles g_vaVP9Profiles = {\n    VAProfileVP9Profile0, VAProfileVP9Profile1, VAProfileVP9Profile2,\n    VAProfileVP9Profile3,\n};\n\nstatic const Profiles g_vaAV1Profiles = {\n#if VA_CHECK_VERSION(1,8,0)\n    VAProfileAV1Profile0, VAProfileAV1Profile1,\n#endif\n};\n\nstatic const Entrypoints g_vaEntrypoints = {\n    VAEntrypointVLD,\n    VAEntrypointIZZ,\n    VAEntrypointIDCT,\n    VAEntrypointMoComp,\n    VAEntrypointDeblocking,\n    VAEntrypointEncSlice,\n    VAEntrypointEncPicture,\n    VAEntrypointEncSliceLP,\n    VAEntrypointVideoProc,\n    VAEntrypointFEI,\n};\n\nstatic const ConfigAttribTypes g_vaConfigAttribTypes = {\n    VAConfigAttribRTFormat,\n    VAConfigAttribSpatialResidual,\n    VAConfigAttribSpatialClipping,\n    VAConfigAttribIntraResidual,\n    VAConfigAttribEncryption,\n    VAConfigAttribRateControl,\n    VAConfigAttribDecSliceMode,\n    VAConfigAttribEncPackedHeaders,\n    VAConfigAttribEncInterlaced,\n    VAConfigAttribEncMaxRefFrames,\n    VAConfigAttribEncMaxSlices,\n    VAConfigAttribEncSliceStructure,\n    VAConfigAttribEncMacroblockInfo,\n    VAConfigAttribEncJPEG,\n    VAConfigAttribEncQualityRange,\n    VAConfigAttribEncSkipFrame,\n    VAConfigAttribEncROI,\n    VAConfigAttribEncRateControlExt,\n    VAConfigAttribFEIFunctionType,\n    VAConfigAttribFEIMVPredictors,\n};\n\nstatic const SurfaceAttribTypes g_vaSurfaceAttribTypes = {\n    VASurfaceAttribNone,\n    VASurfaceAttribPixelFormat,\n    VASurfaceAttribMinWidth,\n    VASurfaceAttribMaxWidth,\n    VASurfaceAttribMinHeight,\n    VASurfaceAttribMaxHeight,\n    VASurfaceAttribMemoryType,\n    VASurfaceAttribExternalBufferDescriptor,\n    VASurfaceAttribUsageHint,\n    VASurfaceAttribCount,\n};\n\nstatic const Resolutions g_vaResolutions = {\n    { 16, 16 },      { 32, 32 },     { 176, 120 },   { 352, 240 },\n    { 352, 288 },    { 480, 320 },   { 720, 480 },   { 720, 576 },\n    { 768, 576 },    { 800, 480 },   { 854, 480 },   { 1280, 720 },\n    { 1920, 1080 },  { 2048, 1080 }, { 4096, 2160 }, { 8192, 8192 },\n    { 10240, 10240 }\n};\n\nstatic const BitMasks g_vaRTFormats = {\n    VA_RT_FORMAT_YUV420, VA_RT_FORMAT_YUV422, VA_RT_FORMAT_YUV444,\n    VA_RT_FORMAT_YUV411, VA_RT_FORMAT_YUV400, VA_RT_FORMAT_YUV420_10BPP,\n    VA_RT_FORMAT_YUV422_10, VA_RT_FORMAT_YUV444_10, VA_RT_FORMAT_YUV420_12,\n    VA_RT_FORMAT_YUV422_12, VA_RT_FORMAT_YUV444_12,\n    VA_RT_FORMAT_RGB16, VA_RT_FORMAT_RGB32, VA_RT_FORMAT_RGBP,\n    VA_RT_FORMAT_RGB32_10BPP, VA_RT_FORMAT_PROTECTED,\n};\n\nstatic const BufferTypes g_vaBufferTypes = {\n    VAPictureParameterBufferType,\n    VAIQMatrixBufferType,\n    VABitPlaneBufferType,\n    VASliceGroupMapBufferType,\n    VASliceParameterBufferType,\n    VASliceDataBufferType,\n    VAMacroblockParameterBufferType,\n    VAResidualDataBufferType,\n    VADeblockingParameterBufferType,\n    VAImageBufferType,\n    VAProtectedSliceDataBufferType,\n    VAQMatrixBufferType,\n    VAHuffmanTableBufferType,\n    VAProbabilityBufferType,\n    VAEncCodedBufferType,\n    VAEncSequenceParameterBufferType,\n    VAEncPictureParameterBufferType,\n    VAEncSliceParameterBufferType,\n    VAEncPackedHeaderParameterBufferType,\n    VAEncPackedHeaderDataBufferType,\n    VAEncMiscParameterBufferType,\n    VAEncMacroblockParameterBufferType,\n    VAEncMacroblockMapBufferType,\n    VAProcPipelineParameterBufferType,\n    VAProcFilterParameterBufferType,\n    VAEncFEIMVBufferType,\n    VAEncFEIMBCodeBufferType,\n    VAEncFEIDistortionBufferType,\n    VAEncFEIMBControlBufferType,\n    VAEncFEIMVPredictorBufferType,\n};\n\nstatic const BitMasks g_vaRateControls = {\n    VA_RC_NONE, VA_RC_CBR, VA_RC_VBR, VA_RC_VCM, VA_RC_CQP,\n    VA_RC_VBR_CONSTRAINED, VA_RC_ICQ, VA_RC_MB, VA_RC_CFS,\n    VA_RC_PARALLEL, VA_RC_QVBR, VA_RC_AVBR,\n#if VA_CHECK_VERSION(1, 10, 0)\n    VA_RC_TCBRC,\n#endif\n};\n\nstatic const BitMasks g_vaDecSliceModes = {\n    VA_DEC_SLICE_MODE_NORMAL, VA_DEC_SLICE_MODE_BASE,\n};\n\nstatic const BitMasks g_vaEncPackedHeaders = {\n    VA_ENC_PACKED_HEADER_SEQUENCE, VA_ENC_PACKED_HEADER_PICTURE,\n    VA_ENC_PACKED_HEADER_SLICE, VA_ENC_PACKED_HEADER_MISC,\n    VA_ENC_PACKED_HEADER_RAW_DATA,\n};\n\nstatic const BitMasks g_vaEncInterlaced = {\n    VA_ENC_INTERLACED_FRAME, VA_ENC_INTERLACED_FIELD, VA_ENC_INTERLACED_MBAFF,\n    VA_ENC_INTERLACED_PAFF,\n};\n\nstatic const BitMasks g_vaFEIFunctionTypes = {\n    VA_FEI_FUNCTION_ENC, VA_FEI_FUNCTION_PAK, VA_FEI_FUNCTION_ENC_PAK,\n};\n\n#if VA_CHECK_VERSION(1, 11, 0)\nstatic const BitMasks g_vaEncryptionTypes = {\n    VA_ENCRYPTION_TYPE_FULLSAMPLE_CTR,\n    VA_ENCRYPTION_TYPE_FULLSAMPLE_CBC,\n    VA_ENCRYPTION_TYPE_SUBSAMPLE_CTR,\n    VA_ENCRYPTION_TYPE_SUBSAMPLE_CBC,\n};\n#endif\n\nstatic const std::map<VAConfigAttribType, const BitMasks&>\ng_vaConfigAttribBitMasks = {\n    {VAConfigAttribRTFormat, g_vaRTFormats},\n    {VAConfigAttribRateControl, g_vaRateControls},\n    {VAConfigAttribDecSliceMode, g_vaDecSliceModes},\n    {VAConfigAttribEncPackedHeaders, g_vaEncPackedHeaders},\n    {VAConfigAttribEncInterlaced, g_vaEncInterlaced},\n    {VAConfigAttribFEIFunctionType, g_vaFEIFunctionTypes},\n#if VA_CHECK_VERSION(1, 11, 0)\n    {VAConfigAttribEncryption, g_vaEncryptionTypes},\n#endif\n};\n\nstatic const BitMasks g_vaSurfaceMemTypes = {\n    VA_SURFACE_ATTRIB_MEM_TYPE_VA, VA_SURFACE_ATTRIB_MEM_TYPE_V4L2,\n    VA_SURFACE_ATTRIB_MEM_TYPE_USER_PTR, VA_SURFACE_ATTRIB_MEM_TYPE_KERNEL_DRM,\n    VA_SURFACE_ATTRIB_MEM_TYPE_DRM_PRIME,\n    VA_SURFACE_ATTRIB_MEM_TYPE_DRM_PRIME_2,\n#if VA_CHECK_VERSION(1, 21, 0)\n    VA_SURFACE_ATTRIB_MEM_TYPE_DRM_PRIME_3,\n#endif\n};\n\nstatic const std::map<VASurfaceAttribType, const BitMasks&>\ng_vaSurfaceAttribBitMasks = {\n    {VASurfaceAttribMemoryType, g_vaSurfaceMemTypes},\n};\n\n} // namespace VAAPI\n#endif\n"
  },
  {
    "path": "test/test_defs.h",
    "content": "/*\n * Copyright (C) 2018 Intel Corporation. All Rights Reserved.\n *\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the\n * \"Software\"), to deal in the Software without restriction, including\n * without limitation the rights to use, copy, modify, merge, publish,\n * distribute, sub license, and/or sell copies of the Software, and to\n * permit persons to whom the Software is furnished to do so, subject to\n * the following conditions:\n *\n * The above copyright notice and this permission notice (including the\n * next paragraph) shall be included in all copies or substantial portions\n * of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR\n * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n#ifndef TESTVAAPI_test_defs_h\n#define TESTVAAPI_test_defs_h\n\n#include \"test_utils.h\"\n\n#include <va/va.h>\n#include <vector>\n\nnamespace VAAPI\n{\n\ntypedef std::vector<VAProfile>            Profiles;\ntypedef std::vector<VAEntrypoint>         Entrypoints;\ntypedef std::vector<VAConfigAttribType>   ConfigAttribTypes;\ntypedef std::vector<VAConfigAttrib>       ConfigAttributes;\ntypedef std::vector<VASurfaceAttribType>  SurfaceAttribTypes;\ntypedef std::vector<VASurfaceAttrib>      SurfaceAttributes;\ntypedef std::vector<VASurfaceID>          Surfaces;\ntypedef std::vector<VABufferType>         BufferTypes;\ntypedef std::vector<VABufferID>           Buffers;\ntypedef std::vector<VADisplayAttribType>  DisplayAttribTypes;\ntypedef std::vector<VADisplayAttribute>   DisplayAttributes;\ntypedef std::vector<Resolution>           Resolutions;\ntypedef std::vector<uint32_t>             BitMasks;\n\n} // namespace VAAPI\n\n#endif\n"
  },
  {
    "path": "test/test_internal.cpp",
    "content": "/*\n * Copyright (C) 2017 Intel Corporation. All Rights Reserved.\n *\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the\n * \"Software\"), to deal in the Software without restriction, including\n * without limitation the rights to use, copy, modify, merge, publish,\n * distribute, sub license, and/or sell copies of the Software, and to\n * permit persons to whom the Software is furnished to do so, subject to\n * the following conditions:\n *\n * The above copyright notice and this permission notice (including the\n * next paragraph) shall be included in all copies or substantial portions\n * of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR\n * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n#include \"test.h\"\n#include \"test_utils.h\"\n\n#include <vector>\n\nTEST(Internal, Resolution)\n{\n    using VAAPI::Resolution;\n\n    Resolution res(2, 7);\n\n    ASSERT_EQ(res.width, Resolution::DataType(2));\n    ASSERT_EQ(res.height, Resolution::DataType(7));\n\n    EXPECT_LE(res, res);\n    EXPECT_LE(res, Resolution(res.width + 1, res.height));\n    EXPECT_LE(res, Resolution(res.width, res.height + 1));\n\n    EXPECT_FALSE(res <= Resolution(res.width - 1, res.height));\n    EXPECT_FALSE(res <= Resolution(res.width, res.height - 1));\n\n    EXPECT_GE(res, res);\n    EXPECT_GE(res, Resolution(res.width - 1, res.height));\n    EXPECT_GE(res, Resolution(res.width, res.height - 1));\n\n    EXPECT_FALSE(res >= Resolution(res.width + 1, res.height));\n    EXPECT_FALSE(res >= Resolution(res.width, res.height + 1));\n\n    EXPECT_TRUE(res.isWithin(res, res));\n    EXPECT_TRUE(res.isWithin(Resolution(res.width - 1, res.height), res));\n    EXPECT_TRUE(res.isWithin(Resolution(res.width, res.height - 1), res));\n    EXPECT_TRUE(res.isWithin(res, Resolution(res.width + 1, res.height)));\n    EXPECT_TRUE(res.isWithin(res, Resolution(res.width, res.height + 1)));\n\n    EXPECT_FALSE(res.isWithin(\n                     Resolution(res.width + 1, res.height),\n                     Resolution(res.width + 1, res.height + 1)));\n    EXPECT_FALSE(res.isWithin(\n                     Resolution(res.width, res.height + 1),\n                     Resolution(res.width + 1, res.height + 1)));\n    EXPECT_FALSE(res.isWithin(\n                     Resolution(res.width - 1, res.height - 1),\n                     Resolution(res.width - 1, res.height)));\n    EXPECT_FALSE(res.isWithin(\n                     Resolution(res.width - 1, res.height - 1),\n                     Resolution(res.width, res.height - 1)));\n\n    // Verify different initializers\n    {\n        Resolution resolution{10, 100};\n        EXPECT_EQ(resolution.width, Resolution::DataType(10));\n        EXPECT_EQ(resolution.height, Resolution::DataType(100));\n    }\n    {\n        Resolution resolution = {10, 100};\n        EXPECT_EQ(resolution.width, Resolution::DataType(10));\n        EXPECT_EQ(resolution.height, Resolution::DataType(100));\n    }\n    {\n        std::vector<Resolution> resolutions{{10, 100}, {12, 15}};\n        ASSERT_EQ(resolutions.size(), 2u);\n        EXPECT_EQ(resolutions[0].width, Resolution::DataType(10));\n        EXPECT_EQ(resolutions[0].height, Resolution::DataType(100));\n        EXPECT_EQ(resolutions[1].width, Resolution::DataType(12));\n        EXPECT_EQ(resolutions[1].height, Resolution::DataType(15));\n    }\n    {\n        std::vector<Resolution> resolutions = {{10, 100}, {12, 15}};\n        ASSERT_EQ(resolutions.size(), 2u);\n        EXPECT_EQ(resolutions[0].width, Resolution::DataType(10));\n        EXPECT_EQ(resolutions[0].height, Resolution::DataType(100));\n        EXPECT_EQ(resolutions[1].width, Resolution::DataType(12));\n        EXPECT_EQ(resolutions[1].height, Resolution::DataType(15));\n    }\n}\n"
  },
  {
    "path": "test/test_main.cpp",
    "content": "/*\n * Copyright (C) 2016 Intel Corporation. All Rights Reserved.\n *\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the\n * \"Software\"), to deal in the Software without restriction, including\n * without limitation the rights to use, copy, modify, merge, publish,\n * distribute, sub license, and/or sell copies of the Software, and to\n * permit persons to whom the Software is furnished to do so, subject to\n * the following conditions:\n *\n * The above copyright notice and this permission notice (including the\n * next paragraph) shall be included in all copies or substantial portions\n * of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR\n * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n#include \"test.h\"\n\nint main(int argc, char **argv)\n{\n    ::testing::InitGoogleTest(&argc, argv);\n\n    return RUN_ALL_TESTS();\n}\n"
  },
  {
    "path": "test/test_streamable.h",
    "content": "/*\n * Copyright (C) 2016 Intel Corporation. All Rights Reserved.\n *\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the\n * \"Software\"), to deal in the Software without restriction, including\n * without limitation the rights to use, copy, modify, merge, publish,\n * distribute, sub license, and/or sell copies of the Software, and to\n * permit persons to whom the Software is furnished to do so, subject to\n * the following conditions:\n *\n * The above copyright notice and this permission notice (including the\n * next paragraph) shall be included in all copies or substantial portions\n * of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR\n * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n#ifndef TESTVAAPI_test_streamable_h\n#define TESTVAAPI_test_streamable_h\n\n#include <iostream>\n#include <va/va.h>\n#include <va/va_str.h>\n\n#define CASE_ENUM_TO_STREAM(caseEnum) case caseEnum: os << #caseEnum; break;\n\ninline std::ostream&\noperator<<(std::ostream& os, const VAProfile& profile)\n{\n    return os << static_cast<int>(profile)\n           << \":\" << vaProfileStr(profile);\n}\n\ninline std::ostream&\noperator<<(std::ostream& os, const VAEntrypoint& entrypoint)\n{\n    return os << static_cast<int>(entrypoint)\n           << \":\" << vaEntrypointStr(entrypoint);\n}\n\ninline std::ostream&\noperator<<(std::ostream& os, const VABufferType& type)\n{\n    return os << static_cast<int>(type)\n           << \":\" << vaBufferTypeStr(type);\n}\n\ninline std::ostream&\noperator<<(std::ostream& os, const VAGenericValueType& type)\n{\n    switch (type) {\n        CASE_ENUM_TO_STREAM(VAGenericValueTypeInteger)\n        CASE_ENUM_TO_STREAM(VAGenericValueTypeFloat)\n        CASE_ENUM_TO_STREAM(VAGenericValueTypePointer)\n        CASE_ENUM_TO_STREAM(VAGenericValueTypeFunc)\n    default:\n        break;\n    }\n    return os << \"(\" << static_cast<int>(type) << \")\";\n}\n\ninline std::ostream&\noperator<<(std::ostream& os, const VAGenericValue& value)\n{\n#define TOSTR(enumCase, field) case enumCase: return os << value.value.field; break\n    os << value.type << \":\";\n    switch (value.type) {\n        TOSTR(VAGenericValueTypeInteger, i);\n        TOSTR(VAGenericValueTypeFloat, f);\n        TOSTR(VAGenericValueTypePointer, p);\n        TOSTR(VAGenericValueTypeFunc, fn);\n    default:\n        return os << \"?\";\n    }\n#undef TOSTR\n}\n\ninline std::ostream&\noperator <<(std::ostream& os, const VASurfaceAttribType& type)\n{\n    switch (type) {\n        CASE_ENUM_TO_STREAM(VASurfaceAttribNone)\n        CASE_ENUM_TO_STREAM(VASurfaceAttribPixelFormat)\n        CASE_ENUM_TO_STREAM(VASurfaceAttribMinWidth)\n        CASE_ENUM_TO_STREAM(VASurfaceAttribMaxWidth)\n        CASE_ENUM_TO_STREAM(VASurfaceAttribMinHeight)\n        CASE_ENUM_TO_STREAM(VASurfaceAttribMaxHeight)\n        CASE_ENUM_TO_STREAM(VASurfaceAttribMemoryType)\n        CASE_ENUM_TO_STREAM(VASurfaceAttribExternalBufferDescriptor)\n        CASE_ENUM_TO_STREAM(VASurfaceAttribUsageHint)\n        CASE_ENUM_TO_STREAM(VASurfaceAttribCount)\n    default:\n        break;\n    }\n    return os << \"(\" << static_cast<int>(type) << \")\";\n}\n\ninline std::ostream&\noperator<<(std::ostream& os, const VASurfaceAttrib& attrib)\n{\n    return os << \"VASurfaceAttrib(\"\n           << \"type = \" << attrib.type\n           << \", \"\n           << \"flags = \" << attrib.flags\n           << \", \"\n           << \"value = \" << attrib.value\n           << \")\"\n           ;\n}\n\ninline std::ostream&\noperator <<(std::ostream& os, const VAConfigAttribType& type)\n{\n    switch (type) {\n        CASE_ENUM_TO_STREAM(VAConfigAttribRTFormat)\n        CASE_ENUM_TO_STREAM(VAConfigAttribSpatialResidual)\n        CASE_ENUM_TO_STREAM(VAConfigAttribSpatialClipping)\n        CASE_ENUM_TO_STREAM(VAConfigAttribIntraResidual)\n        CASE_ENUM_TO_STREAM(VAConfigAttribEncryption)\n        CASE_ENUM_TO_STREAM(VAConfigAttribRateControl)\n        CASE_ENUM_TO_STREAM(VAConfigAttribDecSliceMode)\n        CASE_ENUM_TO_STREAM(VAConfigAttribDecJPEG)\n        CASE_ENUM_TO_STREAM(VAConfigAttribDecProcessing)\n        CASE_ENUM_TO_STREAM(VAConfigAttribEncPackedHeaders)\n        CASE_ENUM_TO_STREAM(VAConfigAttribEncInterlaced)\n        CASE_ENUM_TO_STREAM(VAConfigAttribEncMaxRefFrames)\n        CASE_ENUM_TO_STREAM(VAConfigAttribEncMaxSlices)\n        CASE_ENUM_TO_STREAM(VAConfigAttribEncSliceStructure)\n        CASE_ENUM_TO_STREAM(VAConfigAttribEncMacroblockInfo)\n        CASE_ENUM_TO_STREAM(VAConfigAttribMaxPictureWidth)\n        CASE_ENUM_TO_STREAM(VAConfigAttribMaxPictureHeight)\n        CASE_ENUM_TO_STREAM(VAConfigAttribEncJPEG)\n        CASE_ENUM_TO_STREAM(VAConfigAttribEncQualityRange)\n        CASE_ENUM_TO_STREAM(VAConfigAttribEncQuantization)\n        CASE_ENUM_TO_STREAM(VAConfigAttribEncIntraRefresh)\n        CASE_ENUM_TO_STREAM(VAConfigAttribEncSkipFrame)\n        CASE_ENUM_TO_STREAM(VAConfigAttribEncROI)\n        CASE_ENUM_TO_STREAM(VAConfigAttribEncRateControlExt)\n        CASE_ENUM_TO_STREAM(VAConfigAttribProcessingRate)\n        CASE_ENUM_TO_STREAM(VAConfigAttribEncDirtyRect)\n        CASE_ENUM_TO_STREAM(VAConfigAttribEncParallelRateControl)\n        CASE_ENUM_TO_STREAM(VAConfigAttribEncDynamicScaling)\n        CASE_ENUM_TO_STREAM(VAConfigAttribFrameSizeToleranceSupport)\n        CASE_ENUM_TO_STREAM(VAConfigAttribFEIFunctionType)\n        CASE_ENUM_TO_STREAM(VAConfigAttribFEIMVPredictors)\n        CASE_ENUM_TO_STREAM(VAConfigAttribStats)\n        CASE_ENUM_TO_STREAM(VAConfigAttribEncTileSupport)\n        CASE_ENUM_TO_STREAM(VAConfigAttribCustomRoundingControl)\n        CASE_ENUM_TO_STREAM(VAConfigAttribQPBlockSize)\n        CASE_ENUM_TO_STREAM(VAConfigAttribMaxFrameSize)\n        CASE_ENUM_TO_STREAM(VAConfigAttribPredictionDirection)\n        CASE_ENUM_TO_STREAM(VAConfigAttribTypeMax)\n    default:\n        break;\n    }\n    return os << \"(\" << static_cast<int>(type) << \")\";\n}\n\ninline std::ostream&\noperator <<(std::ostream& os, const VAConfigAttrib& attrib)\n{\n    return os << \"VAConfigAttrib(\"\n           << \"type = \" << attrib.type\n           << \", \"\n           << \"value = 0x\" << std::hex << attrib.value << std::dec\n           << \")\"\n           ;\n}\n\n#undef CASE_ENUM_TO_STREAM\n\n#endif\n"
  },
  {
    "path": "test/test_utils.h",
    "content": "/*\n * Copyright (C) 2017 Intel Corporation. All Rights Reserved.\n *\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the\n * \"Software\"), to deal in the Software without restriction, including\n * without limitation the rights to use, copy, modify, merge, publish,\n * distribute, sub license, and/or sell copies of the Software, and to\n * permit persons to whom the Software is furnished to do so, subject to\n * the following conditions:\n *\n * The above copyright notice and this permission notice (including the\n * next paragraph) shall be included in all copies or substantial portions\n * of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR\n * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n#ifndef TESTVAAPI_test_utils_h\n#define TESTVAAPI_test_utils_h\n\n#include <iostream>\n\nnamespace VAAPI\n{\n\nstruct Resolution {\n    typedef uint32_t DataType;\n\n    Resolution(const DataType w = 1, const DataType h = 1)\n        : width(w), height(h)\n    { }\n\n    inline bool operator <=(const Resolution& other) const\n    {\n        return (width <= other.width) && (height <= other.height);\n    }\n\n    inline bool operator >=(const Resolution& other) const\n    {\n        return (width >= other.width) && (height >= other.height);\n    }\n\n    inline bool isWithin(\n        const Resolution& minRes, const Resolution& maxRes) const\n    {\n        return (*this >= minRes) && (*this <= maxRes);\n    }\n\n    friend std::ostream& operator <<(std::ostream& os, const Resolution& res)\n    {\n        return os << res.width << \"x\" << res.height;\n    }\n\n    DataType width;\n    DataType height;\n};\n\n} // namespace VAAPI\n\n#endif\n"
  },
  {
    "path": "test/test_va_api_config_attribs.cpp",
    "content": "/*\n * Copyright (C) 2016 Intel Corporation. All Rights Reserved.\n *\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the\n * \"Software\"), to deal in the Software without restriction, including\n * without limitation the rights to use, copy, modify, merge, publish,\n * distribute, sub license, and/or sell copies of the Software, and to\n * permit persons to whom the Software is furnished to do so, subject to\n * the following conditions:\n *\n * The above copyright notice and this permission notice (including the\n * next paragraph) shall be included in all copies or substantial portions\n * of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR\n * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n#include \"test_va_api_fixture.h\"\n\nnamespace VAAPI\n{\n\nclass VAAPIConfigAttribs\n    : public VAAPIFixtureSharedDisplay\n    , public ::testing::WithParamInterface<std::tuple<VAProfile, VAEntrypoint> >\n{\npublic:\n    VAAPIConfigAttribs()\n        : profile(::testing::get<0>(GetParam()))\n        , entrypoint(::testing::get<1>(GetParam()))\n    { }\n\nprotected:\n    const VAProfile& profile;\n    const VAEntrypoint& entrypoint;\n\n    void validateConfigAttributes(const ConfigAttributes& actual,\n                                  const ConfigAttributes& supported) const\n    {\n        const size_t size(actual.size());\n        ASSERT_EQ(size, supported.size());\n\n        // Require that actual and supported are in the same order, by type\n        for (size_t i(0); i < size; ++i) {\n            const VAConfigAttrib& aAttrib = actual[i];\n            const VAConfigAttrib& sAttrib = supported[i];\n\n            ASSERT_EQ(aAttrib.type, sAttrib.type);\n\n            // NOTE: If an attribute was not explicitly set by user/app during\n            // createConfig (as is the case for GetConfigAttribs test), then\n            // all known drivers currently return the same value from\n            // vaQueryConfigAttributes as returned from vaGetConfigAttributes.\n            // However, there are several bitfield-type attributes that can\n            // only take on \"one\" choice from the supported value relayed in the\n            // bitfield from vaGetConfigAttributes.  It still remains to be\n            // clarified whether drivers should actually return the \"default\"\n            // chosen value from vaQueryConfigAttributes when it is not\n            // specified by user/app during createConfig.  Hence, for now, for\n            // bitfield-type attributes we only require that the actual value\n            // is equal-to or a \"subset\" of the supported value.\n\n            switch (aAttrib.type) {\n            // Read/write bitfield attribute can be a subset of supported values\n            case VAConfigAttribRTFormat:\n            case VAConfigAttribRateControl:\n            case VAConfigAttribDecSliceMode:\n            case VAConfigAttribEncPackedHeaders:\n            case VAConfigAttribEncInterlaced:\n            case VAConfigAttribFEIFunctionType:\n                EXPECT_EQ(sAttrib.value & aAttrib.value, aAttrib.value);\n                break;\n\n            // read-only and/or non-bitfield attributes\n            default:\n                EXPECT_EQ(sAttrib.value, aAttrib.value);\n            }\n        }\n    }\n};\n\nTEST_P(VAAPIConfigAttribs, GetConfigAttribs)\n{\n    // The driver must support creating a config without any user specified\n    // attributes, in which case the driver will use it's own defaults.  The\n    // app should be able to query those default attributes for such created\n    // config via vaQueryConfigAttributes.  Those default attribute values\n    // should be consistent with supported attribute values returned by\n    // vaGetConfigAttributes.\n\n    if (!isSupported(profile, entrypoint)) {\n        skipTest(profile, entrypoint);\n        return;\n    }\n\n    // create config without attributes (i.e. use driver defaults)\n    createConfig(profile, entrypoint);\n\n    // query default attributes from the config we just created\n    ConfigAttributes actual;\n    queryConfigAttributes(profile, entrypoint, actual);\n\n    // we're done with the config\n    destroyConfig();\n\n    // copy the actual attributes and reset their values so we\n    // can get the supported values for them.\n    ConfigAttributes supported = actual;\n    std::for_each(supported.begin(), supported.end(),\n    [](VAConfigAttrib & s) {\n        s.value = 0;\n    });\n\n    // get supported config attribute values\n    getConfigAttributes(profile, entrypoint, supported);\n\n    // verify actual config attribute values are supported values\n    validateConfigAttributes(actual, supported);\n}\n\nINSTANTIATE_TEST_SUITE_P(\n    Attributes, VAAPIConfigAttribs,\n    ::testing::Combine(::testing::ValuesIn(g_vaProfiles),\n                       ::testing::ValuesIn(g_vaEntrypoints)));\n\n} // namespace VAAPI\n"
  },
  {
    "path": "test/test_va_api_createbuffer.cpp",
    "content": "/*\n * Copyright (C) 2016 Intel Corporation. All Rights Reserved.\n *\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the\n * \"Software\"), to deal in the Software without restriction, including\n * without limitation the rights to use, copy, modify, merge, publish,\n * distribute, sub license, and/or sell copies of the Software, and to\n * permit persons to whom the Software is furnished to do so, subject to\n * the following conditions:\n *\n * The above copyright notice and this permission notice (including the\n * next paragraph) shall be included in all copies or substantial portions\n * of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR\n * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n#include \"test_va_api_fixture.h\"\n\nnamespace VAAPI\n{\n\n// Testing VABufferType in groups that will be associated with VAProfile and\n// VAEntrypoint. vaCreateBuffer doesn't require these itself but its input\n// parameter do care about them.\n\ntypedef ::testing::WithParamInterface<std::tuple<VAProfile, VAEntrypoint,\n        VABufferType, size_t>> CreateBufferParamInterface;\n\nclass VAAPICreateBuffer\n    : public VAAPIFixture\n    , public CreateBufferParamInterface\n{\npublic:\n    VAAPICreateBuffer()\n        : profile(::testing::get<0>(GetParam()))\n        , entrypoint(::testing::get<1>(GetParam()))\n        , bufferType(::testing::get<2>(GetParam()))\n        , bufferSize(::testing::get<3>(GetParam()))\n    { }\n\nprotected:\n    const VAProfile& profile;\n    const VAEntrypoint& entrypoint;\n    const VABufferType& bufferType;\n    const size_t bufferSize;\n\n    virtual void SetUp()\n    {\n        VAAPIFixture::SetUp();\n        doInitialize();\n        ASSERT_FALSE(HasFailure());\n    }\n\n    virtual void TearDown()\n    {\n        doTerminate();\n        VAAPIFixture::TearDown();\n    }\n};\n\ntypedef std::tuple<Profiles, size_t> BufferSpec;\ntypedef std::vector<BufferSpec> BufferSpecs;\ntypedef std::map<VABufferType, BufferSpecs> BufferSpecsMap;\n\nusing std::make_tuple;\n\nstatic const BufferSpecsMap decodeBufferSpecs = {\n    {\n        VAPictureParameterBufferType, {\n            make_tuple(g_vaMPEG2Profiles, sizeof(VAPictureParameterBufferMPEG2)),\n            make_tuple(g_vaMPEG4Profiles, sizeof(VAPictureParameterBufferMPEG4)),\n            make_tuple(g_vaH264Profiles, sizeof(VAPictureParameterBufferH264)),\n            make_tuple(g_vaVC1Profiles, sizeof(VAPictureParameterBufferVC1)),\n            make_tuple(g_vaJPEGProfiles,\n                       sizeof(VAPictureParameterBufferJPEGBaseline)),\n            make_tuple(g_vaVP8Profiles, sizeof(VAPictureParameterBufferVP8)),\n            make_tuple(g_vaHEVCProfiles, sizeof(VAPictureParameterBufferHEVC)),\n            make_tuple(g_vaVP9Profiles, sizeof(VADecPictureParameterBufferVP9)),\n        }\n    },\n    {\n        VAIQMatrixBufferType, {\n            make_tuple(g_vaMPEG2Profiles, sizeof(VAIQMatrixBufferMPEG2)),\n            make_tuple(g_vaMPEG4Profiles, sizeof(VAIQMatrixBufferMPEG4)),\n            make_tuple(g_vaH264Profiles, sizeof(VAIQMatrixBufferH264)),\n            make_tuple(g_vaJPEGProfiles, sizeof(VAIQMatrixBufferJPEGBaseline)),\n            make_tuple(g_vaVP8Profiles, sizeof(VAIQMatrixBufferVP8)),\n            make_tuple(g_vaHEVCProfiles, sizeof(VAIQMatrixBufferHEVC)),\n        }\n    },\n    {\n        VASliceParameterBufferType, {\n            make_tuple(g_vaMPEG2Profiles, sizeof(VASliceParameterBufferMPEG2)),\n            make_tuple(g_vaMPEG4Profiles, sizeof(VASliceParameterBufferMPEG4)),\n            make_tuple(g_vaH264Profiles, sizeof(VASliceParameterBufferH264)),\n            make_tuple(g_vaVC1Profiles, sizeof(VASliceParameterBufferVC1)),\n            make_tuple(g_vaJPEGProfiles,\n                       sizeof(VASliceParameterBufferJPEGBaseline)),\n            make_tuple(g_vaVP8Profiles, sizeof(VASliceParameterBufferVP8)),\n            make_tuple(g_vaHEVCProfiles, sizeof(VASliceParameterBufferHEVC)),\n            make_tuple(g_vaVP9Profiles, sizeof(VASliceParameterBufferVP9)),\n        }\n    },\n    {\n        VAMacroblockParameterBufferType, {\n            make_tuple(g_vaMPEG2Profiles, sizeof(VAMacroblockParameterBufferMPEG2)),\n        }\n    },\n    {\n        VAQMatrixBufferType, {\n            make_tuple(g_vaJPEGProfiles, sizeof(VAQMatrixBufferJPEG)),\n            make_tuple(g_vaVP8Profiles, sizeof(VAQMatrixBufferVP8)),\n            make_tuple(g_vaHEVCProfiles, sizeof(VAQMatrixBufferHEVC)),\n        }\n    },\n    {\n        VAHuffmanTableBufferType, {\n            make_tuple(g_vaJPEGProfiles, sizeof(VAHuffmanTableBufferJPEGBaseline)),\n        }\n    },\n    {\n        VAProbabilityBufferType, {\n            make_tuple(g_vaVP8Profiles, sizeof(VAProbabilityDataBufferVP8)),\n        }\n    },\n};\n\nstatic const BufferSpecsMap encodeBufferSpecs = {\n    {\n        VAEncSequenceParameterBufferType, {\n            make_tuple(g_vaMPEG2Profiles,\n                       sizeof(VAEncSequenceParameterBufferMPEG2)),\n            make_tuple(g_vaMPEG4Profiles,\n                       sizeof(VAEncSequenceParameterBufferMPEG4)),\n            make_tuple(g_vaH263Profiles, sizeof(VAEncSequenceParameterBufferH263)),\n            make_tuple(g_vaH264Profiles, sizeof(VAEncSequenceParameterBufferH264)),\n            make_tuple(g_vaVP8Profiles, sizeof(VAEncSequenceParameterBufferVP8)),\n            make_tuple(g_vaHEVCProfiles, sizeof(VAEncSequenceParameterBufferHEVC)),\n            make_tuple(g_vaVP9Profiles, sizeof(VAEncSequenceParameterBufferVP9)),\n            make_tuple(g_vaAV1Profiles, sizeof(VAEncSequenceParameterBufferAV1)),\n        }\n    },\n    {\n        VAEncPictureParameterBufferType, {\n            make_tuple(g_vaMPEG2Profiles, sizeof(VAEncPictureParameterBufferMPEG2)),\n            make_tuple(g_vaMPEG4Profiles, sizeof(VAEncPictureParameterBufferMPEG4)),\n            make_tuple(g_vaH263Profiles, sizeof(VAEncPictureParameterBufferH263)),\n            make_tuple(g_vaH264Profiles, sizeof(VAEncPictureParameterBufferH264)),\n            make_tuple(g_vaJPEGProfiles, sizeof(VAEncPictureParameterBufferJPEG)),\n            make_tuple(g_vaVP8Profiles, sizeof(VAEncPictureParameterBufferVP8)),\n            make_tuple(g_vaHEVCProfiles, sizeof(VAEncPictureParameterBufferHEVC)),\n            make_tuple(g_vaVP9Profiles, sizeof(VAEncPictureParameterBufferVP9)),\n            make_tuple(g_vaAV1Profiles, sizeof(VAEncPictureParameterBufferAV1)),\n        }\n    },\n    {\n        VAEncSliceParameterBufferType, {\n            make_tuple(g_vaMPEG2Profiles, sizeof(VAEncSliceParameterBufferMPEG2)),\n            make_tuple(g_vaH264Profiles, sizeof(VAEncSliceParameterBufferH264)),\n            make_tuple(g_vaJPEGProfiles, sizeof(VAEncSliceParameterBufferJPEG)),\n            make_tuple(g_vaHEVCProfiles, sizeof(VAEncSliceParameterBufferHEVC)),\n            make_tuple(g_vaAV1Profiles, sizeof(VAEncPictureParameterBufferAV1)),\n        }\n    },\n    {\n        VAEncPackedHeaderParameterBufferType, {\n            make_tuple(g_vaProfiles, sizeof(VAEncPackedHeaderParameterBuffer)),\n            make_tuple(g_vaAV1Profiles, sizeof(VAEncPictureParameterBufferAV1)),\n        }\n    },\n    {\n        VAEncMiscParameterBufferType, {\n            make_tuple(g_vaProfiles, sizeof(VAEncMiscParameterBuffer)),\n            make_tuple(g_vaAV1Profiles, sizeof(VAEncPictureParameterBufferAV1)),\n        }\n    },\n};\n\nstatic const BufferSpecsMap vppBufferSpecs = {\n    {\n        VAProcPipelineParameterBufferType, {\n            make_tuple(g_vaNoneProfiles, sizeof(VAProcPipelineParameterBuffer)),\n        }\n    },\n    {\n        VAProcFilterParameterBufferType, {\n            make_tuple(g_vaNoneProfiles, sizeof(VAProcFilterParameterBuffer)),\n            make_tuple(g_vaNoneProfiles,\n                       sizeof(VAProcFilterParameterBufferDeinterlacing)),\n            make_tuple(g_vaNoneProfiles,\n                       sizeof(VAProcFilterParameterBufferColorBalance)),\n            make_tuple(g_vaNoneProfiles,\n                       sizeof(VAProcFilterParameterBufferTotalColorCorrection)),\n        }\n    },\n};\n\nTEST_P(VAAPICreateBuffer, CreateBufferWithOutData)\n{\n    // vaCreateBuffer uses a VAContextID as an input.  This VAContextID requires\n    // a VAConfigID to be created.  VAConfigID requires VAProfile and\n    // VAEntrypoint to be given.  As such, to test vaCreateBuffer these are\n    // the minimum requirements.  There's no need to create surfaces or attach\n    // them to a VAConfigID.\n\n    if (!isSupported(profile, entrypoint)) {\n        skipTest(profile, entrypoint);\n        return;\n    }\n\n    // profile and entrypoint are supported\n    createConfig(profile, entrypoint);\n\n    // vaCreateContext input requires resolution, since this test\n    // doesn't create surfaces, passing min resolution should provide\n    // the desired result.\n    Resolution minRes, maxRes;\n    getMinMaxSurfaceResolution(minRes, maxRes);\n    doCreateContext(minRes);\n\n    createBuffer(bufferType, bufferSize);\n    destroyBuffer();\n\n    doDestroyContext();\n    destroyConfig();\n}\n\nstd::vector<CreateBufferParamInterface::ParamType> generateInput()\n{\n    std::vector<CreateBufferParamInterface::ParamType> inputs;\n\n    const auto addBufferSpecs = [&](\n    const BufferSpecsMap & bsm, const Entrypoints & entrypoints) {\n        for (const auto& specs : bsm) {\n            const auto& bufferType = std::get<0>(specs);\n            for (const auto& spec : std::get<1>(specs)) {\n                const auto& bufferSize = std::get<1>(spec);\n                for (const auto& profile : std::get<0>(spec)) {\n                    for (const auto& entrypoint : entrypoints) {\n                        inputs.push_back(\n                            make_tuple(\n                                profile, entrypoint, bufferType, bufferSize));\n                    }\n                }\n            }\n        }\n    };\n\n    addBufferSpecs(decodeBufferSpecs, {VAEntrypointVLD,});\n    addBufferSpecs(encodeBufferSpecs, {VAEntrypointEncSlice,\n                                       VAEntrypointEncSliceLP, VAEntrypointEncPicture,\n                                      });\n    addBufferSpecs(vppBufferSpecs, {VAEntrypointVideoProc,});\n\n    return inputs;\n}\n\nINSTANTIATE_TEST_SUITE_P(\n    CreateBuffer, VAAPICreateBuffer,\n    ::testing::ValuesIn(generateInput()));\n\n} // namespace VAAPI\n"
  },
  {
    "path": "test/test_va_api_createcontext.cpp",
    "content": "/*\n * Copyright (C) 2016 Intel Corporation. All Rights Reserved.\n *\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the\n * \"Software\"), to deal in the Software without restriction, including\n * without limitation the rights to use, copy, modify, merge, publish,\n * distribute, sub license, and/or sell copies of the Software, and to\n * permit persons to whom the Software is furnished to do so, subject to\n * the following conditions:\n *\n * The above copyright notice and this permission notice (including the\n * next paragraph) shall be included in all copies or substantial portions\n * of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR\n * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n#include \"test_va_api_fixture.h\"\n\n#include <sstream>\n\nnamespace VAAPI\n{\n\ntypedef VAAPIFixture VAAPICreateContextToFail;\n\nTEST_F(VAAPICreateContextToFail, CreateContextWithNoConfig)\n{\n    // There's no need to test all inputs for this to be a good test\n    // as long as there's no config the expected error should be\n    // returned\n    doInitialize();\n    ASSERT_FALSE(HasFailure());\n    doCreateContext({1920, 1080}, VA_STATUS_ERROR_INVALID_CONFIG);\n    doTerminate();\n}\n\nclass VAAPICreateContext\n    : public VAAPIFixture\n    , public ::testing::WithParamInterface <\n      std::tuple<VAProfile, VAEntrypoint, Resolution> >\n{\npublic:\n    VAAPICreateContext()\n        : profile(::testing::get<0>(GetParam()))\n        , entrypoint(::testing::get<1>(GetParam()))\n        , resolution(::testing::get<2>(GetParam()))\n    { }\n\nprotected:\n    const VAProfile& profile;\n    const VAEntrypoint& entrypoint;\n    const Resolution& resolution;\n\n    virtual void SetUp()\n    {\n        VAAPIFixture::SetUp();\n        doInitialize();\n        ASSERT_FALSE(HasFailure());\n    }\n\n    virtual void TearDown()\n    {\n        doTerminate();\n        VAAPIFixture::TearDown();\n    }\n};\n\nTEST_P(VAAPICreateContext, CreateContext)\n{\n    // vaCreateContext requires a valid VAConfigID, vaCreateConfig requires a\n    // supported profile and entrypoint\n\n    if (!isSupported(profile, entrypoint)) {\n        skipTest(profile, entrypoint);\n        return;\n    }\n\n    // profile and entrypoint are supported\n    createConfig(profile, entrypoint);\n\n    Resolution minRes, maxRes;\n    getMinMaxSurfaceResolution(minRes, maxRes);\n\n    std::ostringstream oss;\n    oss << \"resolution: min=\" << minRes << \"; max=\" << maxRes\n        << \"; current=\" << resolution;\n    SCOPED_TRACE(oss.str());\n\n    if (!resolution.isWithin(minRes, maxRes)) {\n        doCreateContext(resolution, VA_STATUS_ERROR_RESOLUTION_NOT_SUPPORTED);\n        doDestroyContext(VA_STATUS_ERROR_INVALID_CONTEXT);\n    } else {\n        doCreateContext(resolution);\n        doDestroyContext();\n    }\n\n    destroyConfig();\n}\n\nINSTANTIATE_TEST_SUITE_P(\n    CreateContext, VAAPICreateContext,\n    ::testing::Combine(::testing::ValuesIn(g_vaProfiles),\n                       ::testing::ValuesIn(g_vaEntrypoints),\n                       ::testing::ValuesIn(g_vaResolutions)));\n\n} // namespace VAAPI\n"
  },
  {
    "path": "test/test_va_api_createsurfaces.cpp",
    "content": "/*\n * Copyright (C) 2016 Intel Corporation. All Rights Reserved.\n *\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the\n * \"Software\"), to deal in the Software without restriction, including\n * without limitation the rights to use, copy, modify, merge, publish,\n * distribute, sub license, and/or sell copies of the Software, and to\n * permit persons to whom the Software is furnished to do so, subject to\n * the following conditions:\n *\n * The above copyright notice and this permission notice (including the\n * next paragraph) shall be included in all copies or substantial portions\n * of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR\n * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n#include \"test_va_api_fixture.h\"\n\n#include <functional>\n#include <sstream>\n\nnamespace VAAPI\n{\n\n// The following tests will operate on supported profile/entrypoint\n// combinations that the driver does support.\n\nclass VAAPISurfaceFixture\n    : public VAAPIFixtureSharedDisplay\n{\npublic:\n    VAAPISurfaceFixture(const VAProfile& p, const VAEntrypoint& e)\n        : VAAPIFixtureSharedDisplay()\n        , profile(p)\n        , entrypoint(e)\n    { }\n\nprotected:\n    const VAProfile& profile;\n    const VAEntrypoint& entrypoint;\n\n    void testWithSupportedConfigAttributes(\n        const std::function<void (const ConfigAttributes&)>& test)\n    {\n        ConfigAttributes supported;\n        getConfigAttributes(profile, entrypoint, supported);\n\n        // create config with each individual supported attribute\n        for (const auto& attrib : supported) {\n            const auto match = g_vaConfigAttribBitMasks.find(attrib.type);\n            if (match != g_vaConfigAttribBitMasks.end()) {\n                // it's a bitfield attribute\n                const BitMasks& masks = match->second;\n                for (const auto mask : masks) { // for all bitmasks\n                    if ((attrib.value & mask) == mask) { // supported value\n                        const ConfigAttributes attribs(\n                            1, {/*type :*/ attrib.type, /*value :*/ mask });\n                        SCOPED_TRACE(attribs.front());\n                        createConfig(profile, entrypoint, attribs);\n                        test(attribs);\n                        destroyConfig();\n                    }\n                }\n            } else {\n                // it's a standard attribute\n                const ConfigAttributes attribs(1, attrib);\n                SCOPED_TRACE(attribs.front());\n                createConfig(profile, entrypoint, attribs);\n                test(attribs);\n                destroyConfig();\n            }\n        }\n    }\n\n    void testWithSupportedSurfaceAttributes(\n        const std::function<void (const SurfaceAttributes&)>& test)\n    {\n        SurfaceAttributes supported;\n        querySurfaceAttributes(supported);\n\n        const uint32_t drmMemMask = VA_SURFACE_ATTRIB_MEM_TYPE_KERNEL_DRM\n                                    | VA_SURFACE_ATTRIB_MEM_TYPE_DRM_PRIME\n#if VA_CHECK_VERSION(1, 21, 0)\n                                    | VA_SURFACE_ATTRIB_MEM_TYPE_DRM_PRIME_3\n#endif\n                                    | VA_SURFACE_ATTRIB_MEM_TYPE_DRM_PRIME_2;\n\n        // create surfaces for each supported attribute\n        for (const auto& attrib : supported) {\n            const auto match = g_vaSurfaceAttribBitMasks.find(attrib.type);\n            if (match != g_vaSurfaceAttribBitMasks.end()) {\n                // it's a bitfield attribute\n                ASSERT_EQ(attrib.value.type, VAGenericValueTypeInteger);\n                uint32_t bitfield(0);\n                const BitMasks& masks = match->second;\n                for (const auto mask : masks) { // for all bitmasks\n                    if ((attrib.value.value.i & mask) == mask) {\n                        // supported value\n                        bitfield |= mask;\n\n                        if ((attrib.type == VASurfaceAttribMemoryType)\n                            && (drmMemMask & mask) == mask) {\n                            // skip drm memory types for now as it requires much\n                            // more setup\n                            continue;\n                        } else {\n                            VASurfaceAttrib maskAttrib = attrib;\n                            maskAttrib.value.value.i = mask;\n                            const SurfaceAttributes attribs = {maskAttrib,};\n                            SCOPED_TRACE(attribs.front());\n                            test(attribs);\n                        }\n                    }\n                }\n                // ensure we processed all supported values\n                EXPECT_EQ(bitfield, (uint32_t)attrib.value.value.i);\n            } else {\n                // it's a standard attribute\n                const SurfaceAttributes attribs = {attrib,};\n                SCOPED_TRACE(attribs.front());\n                test(attribs);\n            }\n        }\n    }\n};\n\ntypedef ::testing::WithParamInterface <\nstd::tuple<VAProfile, VAEntrypoint> > QuerySurfacesParamInterface;\n\nclass VAAPIQuerySurfaces\n    : public QuerySurfacesParamInterface\n    , public VAAPISurfaceFixture\n{\npublic:\n    VAAPIQuerySurfaces()\n        : QuerySurfacesParamInterface()\n        , VAAPISurfaceFixture(\n              ::testing::get<0>(GetParam()),\n              ::testing::get<1>(GetParam()))\n    { }\n};\n\nTEST_P(VAAPIQuerySurfaces, QuerySurfacesWithConfigAttribs)\n{\n    if (!isSupported(profile, entrypoint)) {\n        skipTest(profile, entrypoint);\n        return;\n    }\n\n    const auto test = [&](const ConfigAttributes & ca) {\n        SurfaceAttributes attribs;\n        querySurfaceAttributes(attribs);\n    };\n\n    testWithSupportedConfigAttributes(test);\n}\n\nTEST_P(VAAPIQuerySurfaces, QuerySurfacesNoConfigAttribs)\n{\n    if (!isSupported(profile, entrypoint)) {\n        skipTest(profile, entrypoint);\n        return;\n    }\n\n    createConfig(profile, entrypoint);\n    SurfaceAttributes attribs;\n    querySurfaceAttributes(attribs);\n    destroyConfig();\n}\n\nINSTANTIATE_TEST_SUITE_P(\n    QuerySurfaces, VAAPIQuerySurfaces,\n    ::testing::Combine(::testing::ValuesIn(g_vaProfiles),\n                       ::testing::ValuesIn(g_vaEntrypoints)));\n\ntypedef typename ::testing::WithParamInterface<std::tuple<\nVAProfile, VAEntrypoint, Resolution>> CreateSurfacesParamInterface;\n\nclass VAAPICreateSurfaces\n    : public CreateSurfacesParamInterface\n    , public VAAPISurfaceFixture\n{\npublic:\n    VAAPICreateSurfaces()\n        : CreateSurfacesParamInterface()\n        , VAAPISurfaceFixture(\n              ::testing::get<0>(GetParam()),\n              ::testing::get<1>(GetParam()))\n        , resolution(::testing::get<2>(GetParam()))\n    { }\n\nprotected:\n    const Resolution& resolution;\n};\n\nTEST_P(VAAPICreateSurfaces, CreateSurfacesWithConfigAttribs)\n{\n    if (!isSupported(profile, entrypoint)) {\n        skipTest(profile, entrypoint);\n        return;\n    }\n\n    // VA_RT_FORMAT_YUV420 is considered the universal supported format by\n    // drivers\n    unsigned format = VA_RT_FORMAT_YUV420;\n\n    const auto testSurfaces = [&](const SurfaceAttributes & attribs) {\n        Surfaces surfaces(10, VA_INVALID_SURFACE);\n        createSurfaces(surfaces, format, resolution, attribs);\n        destroySurfaces(surfaces);\n    };\n\n    const auto test = [&](const ConfigAttributes & attribs) {\n        const auto match = std::find_if(attribs.begin(), attribs.end(),\n        [](const VAConfigAttrib & a) {\n            return a.type == VAConfigAttribRTFormat;\n        });\n        if (match != attribs.end()) {\n            format = match->value;\n        }\n        testWithSupportedSurfaceAttributes(testSurfaces);\n\n        // reset format to default\n        format = VA_RT_FORMAT_YUV420;\n    };\n\n    testWithSupportedConfigAttributes(test);\n}\n\nTEST_P(VAAPICreateSurfaces, CreateSurfacesNoConfigAttrib)\n{\n    if (!isSupported(profile, entrypoint)) {\n        skipTest(profile, entrypoint);\n        return;\n    }\n\n    const auto test = [&](const SurfaceAttributes & attribs) {\n        Surfaces surfaces(10, VA_INVALID_SURFACE);\n        createSurfaces(surfaces, VA_RT_FORMAT_YUV420, resolution, attribs);\n        destroySurfaces(surfaces);\n    };\n\n    createConfig(profile, entrypoint);\n    testWithSupportedSurfaceAttributes(test);\n    destroyConfig();\n}\n\nTEST_P(VAAPICreateSurfaces, CreateSurfacesNoAttrib)\n{\n    if (!isSupported(profile, entrypoint)) {\n        skipTest(profile, entrypoint);\n        return;\n    }\n\n    createConfig(profile, entrypoint);\n    Surfaces surfaces(10, VA_INVALID_SURFACE);\n    createSurfaces(surfaces, VA_RT_FORMAT_YUV420, resolution);\n    destroySurfaces(surfaces);\n    destroyConfig();\n}\n\nINSTANTIATE_TEST_SUITE_P(\n    CreateSurfaces, VAAPICreateSurfaces,\n    ::testing::Combine(::testing::ValuesIn(g_vaProfiles),\n                       ::testing::ValuesIn(g_vaEntrypoints),\n                       ::testing::ValuesIn(g_vaResolutions)));\n\n} // namespace VAAPI\n"
  },
  {
    "path": "test/test_va_api_display_attribs.cpp",
    "content": "/*\n * Copyright (C) 2016 Intel Corporation. All Rights Reserved.\n *\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the\n * \"Software\"), to deal in the Software without restriction, including\n * without limitation the rights to use, copy, modify, merge, publish,\n * distribute, sub license, and/or sell copies of the Software, and to\n * permit persons to whom the Software is furnished to do so, subject to\n * the following conditions:\n *\n * The above copyright notice and this permission notice (including the\n * next paragraph) shall be included in all copies or substantial portions\n * of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR\n * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n#include \"test_va_api_fixture.h\"\n\n#include <functional>\n\nnamespace VAAPI\n{\n\nclass VAAPIDisplayAttribs\n    : public VAAPIFixture\n{\nprotected:\n    void SetUp()\n    {\n        VAAPIFixture::SetUp();\n        doInitialize();\n        ASSERT_FALSE(HasFailure());\n    }\n\n    void TearDown()\n    {\n        doTerminate();\n        VAAPIFixture::TearDown();\n    }\n\n    bool findDisplayAttribInQueryList(const VADisplayAttribType& type)\n    {\n        const DisplayAttributes::const_iterator begin = m_attribs.begin();\n        const DisplayAttributes::const_iterator end = m_attribs.end();\n        auto predicate = [&](const VADisplayAttribute & a) {\n            return a.type == type;\n        };\n\n        return std::find_if(begin, end, predicate) != end;\n    }\n\nprotected:\n    DisplayAttributes m_attribs;\n};\n\nstatic const DisplayAttribTypes types = {\n    VADisplayAttribBrightness,\n    VADisplayAttribContrast,\n    VADisplayAttribHue,\n    VADisplayAttribSaturation,\n    VADisplayAttribBackgroundColor,\n    VADisplayAttribDirectSurface,\n    VADisplayAttribRotation,\n    VADisplayAttribOutofLoopDeblock,\n    VADisplayAttribBLEBlackMode,\n    VADisplayAttribBLEWhiteMode,\n    VADisplayAttribBlueStretch,\n    VADisplayAttribSkinColorCorrection,\n    VADisplayAttribCSCMatrix,\n    VADisplayAttribBlendColor,\n    VADisplayAttribOverlayAutoPaintColorKey,\n    VADisplayAttribOverlayColorKey,\n    VADisplayAttribRenderMode,\n    VADisplayAttribRenderDevice,\n    VADisplayAttribRenderRect\n};\n\nTEST_F(VAAPIDisplayAttribs, MaxNumDisplayAttribs)\n{\n    EXPECT_GE(vaMaxNumDisplayAttributes(m_vaDisplay), 0);\n}\n\nTEST_F(VAAPIDisplayAttribs, QueryDisplayAttribs)\n{\n    const int maxAttribs(vaMaxNumDisplayAttributes(m_vaDisplay));\n    int numAttribs(0);\n\n    if (maxAttribs <= 0) {\n        numAttribs = 256;\n        const VaapiStatus status(\n            vaQueryDisplayAttributes(m_vaDisplay, NULL, &numAttribs));\n\n        EXPECT_TRUE(\n            status == VaapiStatus(VA_STATUS_SUCCESS) ||\n            status == VaapiStatus(VA_STATUS_ERROR_UNIMPLEMENTED));\n\n        if (status == VaapiStatus(VA_STATUS_SUCCESS)) {\n            EXPECT_EQ(numAttribs, 0);\n        }\n    } else {\n        m_attribs.resize(maxAttribs);\n        EXPECT_STATUS(vaQueryDisplayAttributes(m_vaDisplay, m_attribs.data(),\n                                               &numAttribs));\n        EXPECT_GT(numAttribs, 0);\n        EXPECT_LE(numAttribs, maxAttribs);\n    }\n}\n\nTEST_F(VAAPIDisplayAttribs, GetDisplayAttribs)\n{\n    const int maxAttribs(vaMaxNumDisplayAttributes(m_vaDisplay));\n\n    if (maxAttribs <= 0) {\n        EXPECT_STATUS_EQ(VA_STATUS_ERROR_UNIMPLEMENTED,\n                         vaGetDisplayAttributes(m_vaDisplay, NULL, 0));\n        return;\n    }\n\n    m_attribs.resize(maxAttribs);\n\n    int numAttribs(0);\n    ASSERT_STATUS(vaQueryDisplayAttributes(m_vaDisplay, m_attribs.data(),\n                                           &numAttribs));\n\n    ASSERT_GT(numAttribs, 0);\n    ASSERT_LE(numAttribs, maxAttribs);\n    m_attribs.resize(numAttribs);\n\n    for (const auto& type : types) {\n        VADisplayAttribute attrib{/*type:*/ type};\n        ASSERT_STATUS(vaGetDisplayAttributes(m_vaDisplay, &attrib, 1));\n\n        if (findDisplayAttribInQueryList(attrib.type)) {\n            EXPECT_TRUE((attrib.flags & VA_DISPLAY_ATTRIB_GETTABLE)\n                        || (attrib.flags & VA_DISPLAY_ATTRIB_SETTABLE));\n        } else {\n            EXPECT_FALSE(attrib.flags & VA_DISPLAY_ATTRIB_NOT_SUPPORTED);\n        }\n    }\n}\n\nTEST_F(VAAPIDisplayAttribs, SetDisplayAttribs)\n{\n    const int maxAttribs(vaMaxNumDisplayAttributes(m_vaDisplay));\n\n    if (maxAttribs <= 0) {\n        EXPECT_STATUS_EQ(VA_STATUS_ERROR_UNIMPLEMENTED,\n                         vaSetDisplayAttributes(m_vaDisplay, NULL, 0));\n        return;\n    }\n\n    m_attribs.resize(maxAttribs);\n\n    int numAttribs(0);\n    ASSERT_STATUS(vaQueryDisplayAttributes(m_vaDisplay, m_attribs.data(),\n                                           &numAttribs));\n\n    ASSERT_GT(numAttribs, 0);\n    ASSERT_LE(numAttribs, maxAttribs);\n    m_attribs.resize(numAttribs);\n\n    ASSERT_STATUS(vaGetDisplayAttributes(m_vaDisplay, m_attribs.data(),\n                                         m_attribs.size()));\n\n    for (auto attrib : m_attribs) {\n        if (attrib.flags & VA_DISPLAY_ATTRIB_SETTABLE) {\n            ASSERT_LE(attrib.min_value, attrib.max_value);\n\n            attrib.value = (attrib.min_value + attrib.max_value) / 2;\n            EXPECT_STATUS(vaSetDisplayAttributes(m_vaDisplay, &attrib, 1));\n\n            attrib.value = attrib.min_value - 1;\n            EXPECT_STATUS_EQ(VA_STATUS_ERROR_INVALID_PARAMETER,\n                             vaSetDisplayAttributes(m_vaDisplay, &attrib, 1));\n\n            attrib.value = attrib.max_value + 1;\n            EXPECT_STATUS_EQ(VA_STATUS_ERROR_INVALID_PARAMETER,\n                             vaSetDisplayAttributes(m_vaDisplay, &attrib, 1));\n        }\n    }\n}\n\n} // namespace VAAPI\n"
  },
  {
    "path": "test/test_va_api_fixture.cpp",
    "content": "/*\n * Copyright (C) 2016 Intel Corporation. All Rights Reserved.\n *\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the\n * \"Software\"), to deal in the Software without restriction, including\n * without limitation the rights to use, copy, modify, merge, publish,\n * distribute, sub license, and/or sell copies of the Software, and to\n * permit persons to whom the Software is furnished to do so, subject to\n * the following conditions:\n *\n * The above copyright notice and this permission notice (including the\n * next paragraph) shall be included in all copies or substantial portions\n * of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR\n * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n#include \"test_va_api_fixture.h\"\n\n#include <algorithm>\n#include <functional>\n\n#include <fcntl.h> // for O_RDWR\n#include <limits>\n#include <string.h>\n\n#if defined(_WIN32)\n#include <va/va_win32.h>\n#include <compat_win32.h>\n#else\n#include <unistd.h> // for close()\n#include <va/va_drm.h>\n#include <xf86drm.h>\n#endif\n\nnamespace VAAPI\n{\n\nint VAAPIFixtureSharedDisplay::s_drmHandle = -1;\nVADisplay VAAPIFixtureSharedDisplay::s_vaDisplay = nullptr;\nVAStatus VAAPIFixtureSharedDisplay::s_initStatus = VA_STATUS_SUCCESS;\n\nVAAPIFixture::VAAPIFixture()\n    : ::testing::Test::Test()\n    , m_vaDisplay(NULL)\n    , m_drmHandle(-1)\n    , m_configID(VA_INVALID_ID)\n    , m_contextID(VA_INVALID_ID)\n    , m_bufferID(VA_INVALID_ID)\n    , m_skip(\"\")\n{\n    // If we do not copy the value and use the same pointer returned by getenv to restore the value\n    // in ~VAAPIFixture with setenv, we see garbage memory being set on Windows platforms.\n    char* libva_driver = getenv(\"LIBVA_DRIVER_NAME\");\n    if (libva_driver) m_restoreDriverName = libva_driver;\n}\n\nVAAPIFixture::~VAAPIFixture()\n{\n    m_vaDisplay = NULL;\n    if (m_drmHandle >= 0)\n        close(m_drmHandle);\n    m_drmHandle = -1;\n\n    // Ensure LIBVA_DRIVER_NAME environment is restored to its original\n    // setting so successive tests use the expected driver.\n    unsetenv(\"LIBVA_DRIVER_NAME\");\n    if (!m_restoreDriverName.empty())\n        setenv(\"LIBVA_DRIVER_NAME\", m_restoreDriverName.c_str(), 1);\n\n    if (!m_skip.empty()) {\n        EXPECT_FALSE(HasFailure())\n                << \"skip message is set, but something failed\";\n        if (!HasFailure()) {\n            RecordProperty(\"skipped\", true);\n            std::cout << \"[ SKIPPED ] \" << m_skip << std::endl;\n        }\n    }\n}\n\n#if defined(_WIN32)\nstatic VADisplay getWin32Display(LUID* adapter)\n{\n    return vaGetDisplayWin32(adapter);\n}\n#else\nstatic VADisplay getDrmDisplay(int &fd)\n{\n    drmDevicePtr devices[32];\n    int ret, max_devices = sizeof(devices) / sizeof(devices[0]);\n\n    ret = drmGetDevices2(0, devices, max_devices);\n    EXPECT_TRUE(ret >= 0);\n    if (ret < 0)\n        return NULL;\n    max_devices = ret;\n\n    for (int i = 0; i < max_devices; i++) {\n        for (int j = DRM_NODE_MAX - 1; j >= 0; j--) {\n            drmVersionPtr version;\n\n            if (!(devices[i]->available_nodes & 1 << j))\n                continue;\n\n            fd = open(devices[i]->nodes[j], O_RDWR);\n            if (fd < 0)\n                continue;\n\n            version = drmGetVersion(fd);\n            if (!version) {\n                close(fd);\n                continue;\n            }\n            if (!strncmp(version->name, \"vgem\", 4)) {\n                drmFreeVersion(version);\n                close(fd);\n                continue;\n            }\n            drmFreeVersion(version);\n\n            VADisplay disp = vaGetDisplayDRM(fd);\n\n            if (disp)\n                return disp;\n\n            close(fd);\n        }\n    }\n\n    return NULL;\n}\n#endif\nVADisplay VAAPIFixture::getDisplay()\n{\n#if defined(_WIN32)\n    m_vaDisplay = getWin32Display(NULL);\n#else\n    m_vaDisplay = getDrmDisplay(m_drmHandle);\n#endif\n    return m_vaDisplay;\n}\n\nVADisplay VAAPIFixture::doInitialize()\n{\n    VADisplay vaDisplay;\n    VAStatus status;\n    int majorVersion, minorVersion;\n\n    vaDisplay = getDisplay();\n    EXPECT_TRUE(vaDisplay);\n    if (!vaDisplay) {\n        return NULL;\n    }\n\n    status = vaInitialize(vaDisplay, &majorVersion, &minorVersion);\n    EXPECT_STATUS(status) << \"failed to initialize vaapi\";\n    if (status != VA_STATUS_SUCCESS) {\n        return NULL;\n    }\n\n    return vaDisplay;\n}\n\nvoid VAAPIFixture::queryConfigProfiles(Profiles& profiles) const\n{\n    const int maxProfiles = vaMaxNumProfiles(m_vaDisplay);\n    ASSERT_GT(maxProfiles, 0);\n    profiles.resize(maxProfiles);\n\n    int numProfiles(0);\n    EXPECT_STATUS(\n        vaQueryConfigProfiles(m_vaDisplay, profiles.data(), &numProfiles));\n\n    if (!HasFailure()) {\n        ASSERT_LE(numProfiles, maxProfiles);\n        ASSERT_GT(numProfiles, 0);\n        profiles.resize(numProfiles);\n    } else {\n        profiles.clear();\n    }\n}\n\nvoid VAAPIFixture::queryConfigEntrypoints(const VAProfile& profile,\n        Entrypoints& entrypoints, const VAStatus& expectation) const\n{\n    const int maxEntrypoints = vaMaxNumEntrypoints(m_vaDisplay);\n    ASSERT_GT(maxEntrypoints, 0);\n    entrypoints.resize(maxEntrypoints);\n\n    int numEntrypoints(0);\n    EXPECT_STATUS_EQ(\n        expectation,\n        vaQueryConfigEntrypoints(m_vaDisplay, profile, entrypoints.data(),\n                                 &numEntrypoints));\n\n    if ((VA_STATUS_SUCCESS == expectation) && !HasFailure()) {\n        ASSERT_LE(numEntrypoints, maxEntrypoints);\n        ASSERT_GT(numEntrypoints, 0);\n        entrypoints.resize(numEntrypoints);\n    } else {\n        entrypoints.clear();\n    }\n}\n\nVAStatus VAAPIFixture::getSupportStatus(const VAProfile& profile,\n                                        const VAEntrypoint& entrypoint) const\n{\n    Profiles profiles;\n    queryConfigProfiles(profiles);\n\n    const auto pBegin(profiles.begin());\n    const auto pEnd(profiles.end());\n    if (std::find(pBegin, pEnd, profile) != pEnd) {\n        Entrypoints entrypoints;\n        queryConfigEntrypoints(profile, entrypoints);\n\n        const auto eBegin(entrypoints.begin());\n        const auto eEnd(entrypoints.end());\n        return (std::find(eBegin, eEnd, entrypoint) != eEnd) ?\n               VA_STATUS_SUCCESS : VA_STATUS_ERROR_UNSUPPORTED_ENTRYPOINT;\n    }\n\n    return VA_STATUS_ERROR_UNSUPPORTED_PROFILE;\n}\n\nbool VAAPIFixture::isSupported(const VAProfile& profile,\n                               const VAEntrypoint& entrypoint) const\n{\n    return VA_STATUS_SUCCESS == getSupportStatus(profile, entrypoint);\n}\n\nvoid VAAPIFixture::getConfigAttributes(const VAProfile& profile,\n                                       const VAEntrypoint& entrypoint, ConfigAttributes& attribs,\n                                       const VAStatus& expectation) const\n{\n    const bool defaults(attribs.empty());\n\n    if (defaults) {\n        // fill config attributes with default config attributes\n        const auto op = [](const VAConfigAttribType & t) {\n            return VAConfigAttrib{/*type:*/ t, /*value:*/ VA_ATTRIB_NOT_SUPPORTED};\n        };\n        std::transform(g_vaConfigAttribTypes.begin(),\n                       g_vaConfigAttribTypes.end(), std::back_inserter(attribs), op);\n    }\n\n    ASSERT_FALSE(attribs.empty());\n\n    EXPECT_STATUS_EQ(\n        expectation,\n        vaGetConfigAttributes(\n            m_vaDisplay, profile, entrypoint, attribs.data(), attribs.size()));\n\n    if (defaults) {\n        // remove unsupported config attributes\n        const auto begin(attribs.begin());\n        const auto end(attribs.end());\n        const auto predicate = [](const VAConfigAttrib & a) {\n            return a.value == VA_ATTRIB_NOT_SUPPORTED;\n        };\n        attribs.erase(std::remove_if(begin, end, predicate), end);\n    }\n}\n\nvoid VAAPIFixture::createConfig(const VAProfile& profile,\n                                const VAEntrypoint& entrypoint, const ConfigAttributes& attribs,\n                                const VAStatus& expectation)\n{\n    ASSERT_INVALID_ID(m_configID)\n            << \"test logic error: did you forget to call destroyConfig?\";\n\n    EXPECT_STATUS_EQ(\n        expectation,\n        vaCreateConfig(m_vaDisplay, profile, entrypoint,\n                       (attribs.size() != 0 ?\n                        const_cast<VAConfigAttrib*>(attribs.data()) : NULL),\n                       attribs.size(), &m_configID))\n            << \"profile    = \" << profile << std::endl\n            << \"entrypoint = \" << entrypoint << std::endl\n            << \"numAttribs = \" << attribs.size();\n\n    if (expectation == VA_STATUS_SUCCESS) {\n        EXPECT_ID(m_configID);\n    } else {\n        EXPECT_INVALID_ID(m_configID);\n    }\n}\n\nvoid VAAPIFixture::queryConfigAttributes(\n    const VAProfile& expectedProfile, const VAEntrypoint& expectedEntrypoint,\n    ConfigAttributes& attributes, const VAStatus& expectedStatus) const\n{\n    VAProfile actualProfile;\n    VAEntrypoint actualEntrypoint;\n    int numAttributes(0);\n\n    ASSERT_TRUE(attributes.empty())\n            << \"test logic error: attributes must be empty\";\n\n    const int maxAttributes = vaMaxNumConfigAttributes(m_vaDisplay);\n\n    ASSERT_GT(maxAttributes, 0);\n\n    attributes.resize(maxAttributes);\n\n    EXPECT_STATUS_EQ(\n        expectedStatus,\n        vaQueryConfigAttributes(m_vaDisplay, m_configID, &actualProfile,\n                                &actualEntrypoint, attributes.data(), &numAttributes));\n\n    if (expectedStatus == VA_STATUS_SUCCESS) {\n        EXPECT_EQ(expectedProfile, actualProfile);\n        EXPECT_EQ(expectedEntrypoint, actualEntrypoint);\n        ASSERT_LE(numAttributes, maxAttributes);\n        ASSERT_GT(numAttributes, 0);\n\n        attributes.resize(numAttributes);\n\n        // reported config attributes should be supported\n        for (const auto& attribute : attributes) {\n            EXPECT_NE(VA_ATTRIB_NOT_SUPPORTED, attribute.value);\n        }\n    } else {\n        attributes.clear();\n    }\n}\n\nvoid VAAPIFixture::destroyConfig(const VAStatus& expectation)\n{\n    EXPECT_STATUS_EQ(expectation, vaDestroyConfig(m_vaDisplay, m_configID));\n    m_configID = VA_INVALID_ID;\n}\n\nvoid VAAPIFixture::querySurfaceAttributes(SurfaceAttributes& attribs) const\n{\n    ASSERT_TRUE(attribs.empty())\n            << \"test logic error: surface attributes must be empty\";\n\n    unsigned numAttribs(0);\n\n    ASSERT_STATUS(vaQuerySurfaceAttributes(m_vaDisplay, m_configID, NULL,\n                                           &numAttribs));\n\n    ASSERT_GT(numAttribs, 0u);\n\n    attribs.resize(numAttribs);\n\n    ASSERT_STATUS(vaQuerySurfaceAttributes(m_vaDisplay, m_configID,\n                                           attribs.data(), &numAttribs));\n\n    ASSERT_GT(numAttribs, 0u);\n    EXPECT_GE(attribs.size(), numAttribs);\n\n    attribs.resize(numAttribs);\n\n    const uint32_t flags = 0x0 | VA_SURFACE_ATTRIB_GETTABLE\n                           | VA_SURFACE_ATTRIB_SETTABLE;\n\n    for (const auto& attrib : attribs) {\n        EXPECT_NE(attrib.flags & flags,\n                  (uint32_t)VA_SURFACE_ATTRIB_NOT_SUPPORTED);\n        EXPECT_GE(attrib.value.type, VAGenericValueTypeInteger);\n        EXPECT_LE(attrib.value.type, VAGenericValueTypeFunc);\n    }\n}\n\nvoid VAAPIFixture::getMinMaxSurfaceResolution(\n    Resolution& minRes, Resolution& maxRes) const\n{\n    const Resolution::DataType maxVal =\n        std::numeric_limits<Resolution::DataType>::max();\n\n    // set default resolutions\n    minRes.width = 1;\n    minRes.height = 1;\n    maxRes.width = maxVal;\n    maxRes.height = maxVal;\n\n    SurfaceAttributes attribs;\n    querySurfaceAttributes(attribs);\n\n    SurfaceAttributes::const_iterator match;\n    const SurfaceAttributes::const_iterator begin(attribs.begin());\n    const SurfaceAttributes::const_iterator end(attribs.end());\n\n    // minimum surface width\n    match = std::find_if(begin, end, [](const VASurfaceAttrib & a) {\n        return a.type == VASurfaceAttribMinWidth;\n    });\n    if (match != end) {\n        EXPECT_EQ(VAGenericValueTypeInteger, match->value.type);\n        ASSERT_GE(match->value.value.i, 1);\n        ASSERT_LE((Resolution::DataType)match->value.value.i, maxVal);\n        minRes.width = match->value.value.i;\n    }\n\n    // minimum surface height\n    match = std::find_if(begin, end, [](const VASurfaceAttrib & a) {\n        return a.type == VASurfaceAttribMinHeight;\n    });\n    if (match != end) {\n        EXPECT_EQ(VAGenericValueTypeInteger, match->value.type);\n        ASSERT_GE(match->value.value.i, 1);\n        ASSERT_LE((Resolution::DataType)match->value.value.i, maxVal);\n        minRes.height = match->value.value.i;\n    }\n\n    // maximum surface width\n    match = std::find_if(begin, end, [](const VASurfaceAttrib & a) {\n        return a.type == VASurfaceAttribMaxWidth;\n    });\n    if (match != end) {\n        EXPECT_EQ(VAGenericValueTypeInteger, match->value.type);\n        ASSERT_GE(match->value.value.i, 1);\n        ASSERT_LE((Resolution::DataType)match->value.value.i, maxVal);\n        maxRes.width = match->value.value.i;\n    }\n\n    // maximum surface height\n    match = std::find_if(begin, end, [](const VASurfaceAttrib & a) {\n        return a.type == VASurfaceAttribMaxHeight;\n    });\n    if (match != end) {\n        EXPECT_EQ(VAGenericValueTypeInteger, match->value.type);\n        ASSERT_GE(match->value.value.i, 1);\n        ASSERT_LE((Resolution::DataType)match->value.value.i, maxVal);\n        maxRes.height = match->value.value.i;\n    }\n\n    EXPECT_LE(minRes, maxRes);\n}\n\nvoid VAAPIFixture::createSurfaces(Surfaces& surfaces, const unsigned format,\n                                  const Resolution& resolution, const SurfaceAttributes& attribs,\n                                  const VAStatus& expectation) const\n{\n    ASSERT_GT(surfaces.size(), 0u)\n            << \"test logic error: surfaces must not be emtpy\";\n    for (const auto& surface : surfaces) {\n        ASSERT_INVALID_ID(surface)\n                << \"test logic error: surfaces must all be VA_INVALID_SURFACE\";\n    }\n\n    ASSERT_STATUS_EQ(\n        expectation,\n        vaCreateSurfaces(m_vaDisplay, format, resolution.width,\n                         resolution.height, surfaces.data(), surfaces.size(),\n                         (attribs.size() != 0 ?\n                          const_cast<VASurfaceAttrib*>(attribs.data()) : NULL),\n                         attribs.size()));\n\n    if (expectation == VA_STATUS_SUCCESS) {\n        for (const auto& surface : surfaces) {\n            ASSERT_ID(surface);\n        }\n    }\n}\n\nvoid VAAPIFixture::destroySurfaces(Surfaces& surfaces) const\n{\n    if (surfaces.size() != 0) {\n        EXPECT_STATUS(vaDestroySurfaces(m_vaDisplay, surfaces.data(),\n                                        surfaces.size()));\n    }\n}\n\nvoid VAAPIFixture::createBuffer(const VABufferType& bufferType,\n                                const size_t bufferSize, const VAStatus& expectation)\n{\n    ASSERT_INVALID_ID(m_bufferID)\n            << \"test logic error: did you forget to call destroyBuffer?\";\n\n    EXPECT_STATUS_EQ(\n        expectation,\n        vaCreateBuffer(m_vaDisplay, m_contextID, bufferType, bufferSize,\n                       1, NULL, &m_bufferID));\n}\n\nvoid VAAPIFixture::destroyBuffer(const VAStatus& expectation)\n{\n    EXPECT_STATUS_EQ(expectation, vaDestroyBuffer(m_vaDisplay, m_bufferID));\n    m_bufferID = VA_INVALID_ID;\n}\n\nvoid VAAPIFixture::doCreateContext(const Resolution& resolution,\n                                   const VAStatus& expectation)\n{\n    m_contextID = 0;\n    ASSERT_STATUS_EQ(expectation,\n                     vaCreateContext(m_vaDisplay, m_configID, resolution.width,\n                                     resolution.height, VA_PROGRESSIVE,\n                                     NULL, 0, &m_contextID));\n}\n\nvoid VAAPIFixture::doDestroyContext(const VAStatus& expectation)\n{\n    ASSERT_STATUS_EQ(expectation, vaDestroyContext(m_vaDisplay, m_contextID));\n}\n\nvoid VAAPIFixture::doTerminate()\n{\n    EXPECT_STATUS(vaTerminate(m_vaDisplay));\n}\n\nvoid VAAPIFixture::skipTest(const std::string& message)\n{\n    ASSERT_FALSE(message.empty())\n            << \"test logic error: skip message cannot be empty\";\n    ASSERT_TRUE(m_skip.empty())\n            << \"test logic error: test already marked as skipped\";\n\n    m_skip = message;\n}\n\nvoid VAAPIFixture::skipTest(const VAProfile& profile,\n                            const VAEntrypoint& entrypoint)\n{\n    std::ostringstream oss;\n    oss << profile << \" / \" << entrypoint << \" not supported on this hardware\";\n    skipTest(oss.str());\n}\n\nTEST_F(VAAPIFixture, getDisplay)\n{\n    VADisplay vaDisplay;\n\n    vaDisplay = getDisplay();\n    ASSERT_TRUE(vaDisplay);\n    EXPECT_STATUS(vaTerminate(vaDisplay));\n}\n\nVAAPIFixtureSharedDisplay::VAAPIFixtureSharedDisplay() : VAAPIFixture() { }\n\nvoid VAAPIFixtureSharedDisplay::SetUpTestSuite()\n{\n    if (s_drmHandle < 0) {\n#if defined(_WIN32)\n        s_vaDisplay = getWin32Display(NULL);\n#else\n        s_vaDisplay = getDrmDisplay(s_drmHandle);\n#endif\n        int majorVersion, minorVersion;\n        s_initStatus = vaInitialize(s_vaDisplay, &majorVersion, &minorVersion);\n    }\n}\n\nvoid VAAPIFixtureSharedDisplay::TearDownTestSuite()\n{\n    if (s_vaDisplay) {\n        if (s_initStatus == VA_STATUS_SUCCESS) {\n            vaTerminate(s_vaDisplay);\n            s_vaDisplay = nullptr;\n        } else {\n            s_initStatus = VA_STATUS_SUCCESS;\n        }\n    }\n    if (s_drmHandle >= 0) {\n        close(s_drmHandle);\n        s_drmHandle = -1;\n    }\n}\n\nvoid VAAPIFixtureSharedDisplay::SetUp()\n{\n    EXPECT_STATUS(s_initStatus) << \"failed to initialize vaapi\";\n\n    m_vaDisplay = s_vaDisplay;\n}\n\n} // namespace VAAPI\n"
  },
  {
    "path": "test/test_va_api_fixture.h",
    "content": "/*\n * Copyright (C) 2016 Intel Corporation. All Rights Reserved.\n *\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the\n * \"Software\"), to deal in the Software without restriction, including\n * without limitation the rights to use, copy, modify, merge, publish,\n * distribute, sub license, and/or sell copies of the Software, and to\n * permit persons to whom the Software is furnished to do so, subject to\n * the following conditions:\n *\n * The above copyright notice and this permission notice (including the\n * next paragraph) shall be included in all copies or substantial portions\n * of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR\n * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n#ifndef TESTVAAPI_test_va_api_fixture_h\n#define TESTVAAPI_test_va_api_fixture_h\n\n#include \"test.h\"\n#include \"test_data.h\"\n#include \"test_defs.h\"\n#include \"test_streamable.h\"\n\nnamespace VAAPI\n{\n\n// The fixture for testing class Foo.\nclass VAAPIFixture : public ::testing::Test\n{\npublic:\n    VAAPIFixture();\n\n    virtual ~VAAPIFixture();\n\n    VADisplay getDisplay();\n    VADisplay doInitialize();\n    void doTerminate();\n\n    void doCreateContext(const Resolution&,\n                         const VAStatus& expectation = VA_STATUS_SUCCESS);\n    void doDestroyContext(const VAStatus& expectation = VA_STATUS_SUCCESS);\n\n    void queryConfigProfiles(Profiles&) const;\n    void queryConfigEntrypoints(const VAProfile&, Entrypoints&,\n                                const VAStatus& = VA_STATUS_SUCCESS) const;\n    VAStatus getSupportStatus(const VAProfile&, const VAEntrypoint&) const;\n    bool isSupported(const VAProfile&, const VAEntrypoint&) const;\n\n    void getConfigAttributes(const VAProfile&, const VAEntrypoint&,\n                             ConfigAttributes&, const VAStatus& = VA_STATUS_SUCCESS) const;\n    void createConfig(const VAProfile&, const VAEntrypoint&,\n                      const ConfigAttributes& = ConfigAttributes(),\n                      const VAStatus& = VA_STATUS_SUCCESS);\n    void queryConfigAttributes(const VAProfile&, const VAEntrypoint&,\n                               ConfigAttributes&, const VAStatus& = VA_STATUS_SUCCESS) const;\n    void destroyConfig(const VAStatus& = VA_STATUS_SUCCESS);\n\n    void querySurfaceAttributes(SurfaceAttributes&) const;\n    void getMinMaxSurfaceResolution(Resolution&, Resolution&) const;\n    void createSurfaces(Surfaces&, const unsigned format, const Resolution&,\n                        const SurfaceAttributes& = SurfaceAttributes(),\n                        const VAStatus& = VA_STATUS_SUCCESS) const;\n    void destroySurfaces(Surfaces&) const;\n\n    void createBuffer(const VABufferType&, const size_t,\n                      const VAStatus& = VA_STATUS_SUCCESS);\n    void destroyBuffer(const VAStatus& = VA_STATUS_SUCCESS);\n\n    void skipTest(const std::string& message);\n    void skipTest(const VAProfile&, const VAEntrypoint&);\n\nprotected:\n    // You can remove any or all of the following functions if its body\n    // is empty.\n\n    // If the constructor and destructor are not enough for setting up\n    // and cleaning up each test, you can define the following methods:\n\n    virtual void SetUp()\n    {\n        // Code here will be called immediately after the constructor (right\n        // before each test).\n    }\n\n    virtual void TearDown()\n    {\n        // Code here will be called immediately after each test (right\n        // before the destructor).\n    }\n\n    // Objects declared here can be used by all tests in the test case for\n    // VAAPIFixture.\n    VADisplay m_vaDisplay;\n\nprivate:\n    std::string m_restoreDriverName;\n    int m_drmHandle;\n\n    VAConfigID m_configID;\n    VAContextID m_contextID;\n    VABufferID m_bufferID;\n\n    std::string m_skip;\n};\n\n/* Test fixture that initializes a shared display once per test suite, and\n * provides it to you in m_vaDisplay from its SetUp() routine.\n */\nclass VAAPIFixtureSharedDisplay : public VAAPIFixture\n{\npublic:\n    VAAPIFixtureSharedDisplay();\n\n    virtual void SetUp();\n\n    static void SetUpTestSuite();\n    static void TearDownTestSuite();\n\nprivate:\n    static int s_drmHandle;\n    static VADisplay s_vaDisplay;\n    static VAStatus s_initStatus;\n};\n\n} // namespace VAAPI\n\n#endif\n"
  },
  {
    "path": "test/test_va_api_get_create_config.cpp",
    "content": "/*\n * Copyright (C) 2016 Intel Corporation. All Rights Reserved.\n *\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the\n * \"Software\"), to deal in the Software without restriction, including\n * without limitation the rights to use, copy, modify, merge, publish,\n * distribute, sub license, and/or sell copies of the Software, and to\n * permit persons to whom the Software is furnished to do so, subject to\n * the following conditions:\n *\n * The above copyright notice and this permission notice (including the\n * next paragraph) shall be included in all copies or substantial portions\n * of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR\n * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n#include \"test_va_api_fixture.h\"\n\n#include <sstream>\n\nnamespace VAAPI\n{\n\nclass VAAPIGetCreateConfig\n    : public VAAPIFixture\n    , public ::testing::WithParamInterface<std::tuple<VAProfile, VAEntrypoint> >\n{\npublic:\n    VAAPIGetCreateConfig()\n        : profile(::testing::get<0>(GetParam()))\n        , entrypoint(::testing::get<1>(GetParam()))\n    { }\n\nprotected:\n    const VAProfile& profile;\n    const VAEntrypoint& entrypoint;\n\n    virtual void SetUp()\n    {\n        VAAPIFixture::SetUp();\n        doInitialize();\n        ASSERT_FALSE(HasFailure());\n    }\n\n    virtual void TearDown()\n    {\n        doTerminate();\n        VAAPIFixture::TearDown();\n    }\n};\n\nTEST_P(VAAPIGetCreateConfig, CreateConfigWithAttributes)\n{\n    const VAStatus expectedStatus = getSupportStatus(profile, entrypoint);\n\n    if (VA_STATUS_SUCCESS != expectedStatus) {\n        createConfig(profile, entrypoint, ConfigAttributes(), expectedStatus);\n        destroyConfig(VA_STATUS_ERROR_INVALID_CONFIG);\n        return;\n    }\n\n    // profile and entrypoint are supported\n    ConfigAttributes attribs;\n    getConfigAttributes(profile, entrypoint, attribs);\n\n    // create config with each individual supported attribute\n    for (const auto& attrib : attribs) {\n        const auto match = g_vaConfigAttribBitMasks.find(attrib.type);\n        if (match != g_vaConfigAttribBitMasks.end()) {\n            // it's a bitfield attribute\n            uint32_t bitfield(0);\n            const BitMasks& masks = match->second;\n            for (const auto mask : masks) { // for all bitmasks\n                const bool isSet((attrib.value & mask) == mask);\n\n                std::ostringstream oss;\n                oss << std::hex << \"0x\" << attrib.type\n                    << \":0x\" << attrib.value\n                    << \":0x\" << mask << \":\" << isSet;\n                SCOPED_TRACE(oss.str());\n\n                if (isSet) {\n                    // supported value\n                    bitfield |= mask;\n                    createConfig(profile, entrypoint,\n                                 ConfigAttributes(\n                                     1, {/*type :*/ attrib.type, /*value :*/ mask }));\n                    destroyConfig();\n                } else {\n                    // unsupported value\n                    const VAStatus expectation(\n                        (attrib.type == VAConfigAttribRTFormat) ?\n                        VA_STATUS_ERROR_UNSUPPORTED_RT_FORMAT :\n                        VA_STATUS_ERROR_INVALID_VALUE);\n                    createConfig(profile, entrypoint,\n                                 ConfigAttributes(\n                                     1, {/*type :*/ attrib.type, /*value :*/ mask}),\n                                 expectation);\n                    destroyConfig(VA_STATUS_ERROR_INVALID_CONFIG);\n                }\n            }\n            // ensure we processed all supported values\n            EXPECT_EQ(bitfield, attrib.value);\n        } else {\n            // it's a standard attribute\n            std::ostringstream oss;\n            oss << std::hex << \"0x\" << attrib.type\n                << \":0x\" << attrib.value;\n            SCOPED_TRACE(oss.str());\n\n            createConfig(profile, entrypoint, ConfigAttributes(1, attrib));\n            destroyConfig();\n        }\n    }\n}\n\nTEST_P(VAAPIGetCreateConfig, CreateConfigNoAttributes)\n{\n    const VAStatus expectedStatus = getSupportStatus(profile, entrypoint);\n\n    if (VA_STATUS_SUCCESS != expectedStatus) {\n        createConfig(profile, entrypoint, ConfigAttributes(), expectedStatus);\n        destroyConfig(VA_STATUS_ERROR_INVALID_CONFIG);\n        return;\n    }\n\n    // profile and entrypoint are supported\n    createConfig(profile, entrypoint);\n    destroyConfig();\n}\n\nTEST_P(VAAPIGetCreateConfig, CreateConfigPackedHeaders)\n{\n    if (!isSupported(profile, entrypoint)) {\n        skipTest(profile, entrypoint);\n        return;\n    }\n\n    ConfigAttributes packedHeaders{{/*.type = */VAConfigAttribEncPackedHeaders}};\n    getConfigAttributes(profile, entrypoint, packedHeaders);\n\n    for (uint32_t v(0x00); v < 0xff; ++v) {\n        ConfigAttributes attribs = {{\n                /*.type = */VAConfigAttribEncPackedHeaders,\n                /*.value = */v\n            }\n        };\n        if ((VA_ATTRIB_NOT_SUPPORTED == packedHeaders.front().value)\n            || (v & ~packedHeaders.front().value)) {\n            // Creating a config should fail if attribute is not supported\n            // or for values that are not in the set of supported values.\n            createConfig(\n                profile, entrypoint, attribs, VA_STATUS_ERROR_INVALID_VALUE);\n            destroyConfig(VA_STATUS_ERROR_INVALID_CONFIG);\n        } else {\n            // Creating a config should succeed for any value within the set of\n            // supported values, including 0x0 (i.e. VA_ENC_PACKED_HEADER_NONE).\n            createConfig(profile, entrypoint, attribs, VA_STATUS_SUCCESS);\n            destroyConfig(VA_STATUS_SUCCESS);\n        }\n    }\n}\n\nINSTANTIATE_TEST_SUITE_P(\n    GetCreateConfig, VAAPIGetCreateConfig,\n    ::testing::Combine(::testing::ValuesIn(g_vaProfiles),\n                       ::testing::ValuesIn(g_vaEntrypoints)));\n\n} // namespace VAAPI\n"
  },
  {
    "path": "test/test_va_api_get_max_values.cpp",
    "content": "/*\n * Copyright (C) 2016 Intel Corporation. All Rights Reserved.\n *\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the\n * \"Software\"), to deal in the Software without restriction, including\n * without limitation the rights to use, copy, modify, merge, publish,\n * distribute, sub license, and/or sell copies of the Software, and to\n * permit persons to whom the Software is furnished to do so, subject to\n * the following conditions:\n *\n * The above copyright notice and this permission notice (including the\n * next paragraph) shall be included in all copies or substantial portions\n * of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR\n * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n#include \"test_va_api_fixture.h\"\n\nnamespace VAAPI\n{\n\nclass VAAPIGetMaxValues\n    : public VAAPIFixtureSharedDisplay\n{\n};\n\nTEST_F(VAAPIGetMaxValues, CheckMaxProfile)\n{\n    EXPECT_GT(vaMaxNumProfiles(m_vaDisplay), 0);\n}\n\nTEST_F(VAAPIGetMaxValues, CheckMaxEntrypoints)\n{\n    EXPECT_GT(vaMaxNumEntrypoints(m_vaDisplay), 0);\n}\n\nTEST_F(VAAPIGetMaxValues, CheckMaxConfigAttributes)\n{\n    EXPECT_GT(vaMaxNumConfigAttributes(m_vaDisplay), 0);\n}\n\n} // namespace VAAPI\n"
  },
  {
    "path": "test/test_va_api_init_terminate.cpp",
    "content": "/*\n * Copyright (C) 2016 Intel Corporation. All Rights Reserved.\n *\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the\n * \"Software\"), to deal in the Software without restriction, including\n * without limitation the rights to use, copy, modify, merge, publish,\n * distribute, sub license, and/or sell copies of the Software, and to\n * permit persons to whom the Software is furnished to do so, subject to\n * the following conditions:\n *\n * The above copyright notice and this permission notice (including the\n * next paragraph) shall be included in all copies or substantial portions\n * of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR\n * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n#include \"test_va_api_fixture.h\"\n#include <stdio.h>\n#include <stdlib.h>\n\n#if defined(_WIN32)\n#include<compat_win32.h>\n#endif\n\nnamespace VAAPI\n{\n\nclass VAAPIInitTerminate\n    : public VAAPIFixture\n{\nprotected:\n    // call vaInitialize and vaTerminate expecting success\n    void doInitTerminate()\n    {\n        int major, minor;\n\n        VADisplay display = getDisplay();\n        ASSERT_TRUE(display);\n\n        ASSERT_STATUS(vaInitialize(display, &major, &minor));\n\n        EXPECT_EQ(VA_MAJOR_VERSION, major)\n                << \"Check installed driver version\";\n        EXPECT_LE(VA_MINOR_VERSION, minor)\n                << \"Check installed driver version\";\n\n        ASSERT_STATUS(vaTerminate(display));\n    }\n};\n\nTEST_F(VAAPIInitTerminate, vaInitialize_vaTerminate)\n{\n    doInitTerminate();\n}\n\nTEST_F(VAAPIInitTerminate, vaInitialize_vaTerminate_Bad_Environment)\n{\n    int major, minor;\n\n    VADisplay display = getDisplay();\n    ASSERT_TRUE(display);\n\n    ASSERT_EQ(0, setenv(\"LIBVA_DRIVER_NAME\", \"bad\", 1));\n\n    EXPECT_STATUS_EQ(\n        VA_STATUS_ERROR_UNKNOWN, vaInitialize(display, &major, &minor));\n\n    EXPECT_EQ(0, unsetenv(\"LIBVA_DRIVER_NAME\"));\n\n    EXPECT_STATUS(vaTerminate(display));\n}\n\nTEST_F(VAAPIInitTerminate, vaInitialize_vaTerminate_Bad_vaSetDriverName)\n{\n    int major, minor;\n\n    VADisplay display = getDisplay();\n    ASSERT_TRUE(display);\n\n    {\n        // driver name length == 0 invalid\n        char driver[1] = \"\";\n        EXPECT_STATUS_EQ(\n            VA_STATUS_ERROR_INVALID_PARAMETER, vaSetDriverName(display, driver));\n    }\n\n    {\n        // driver name length >= 256 invalid\n        char driver[257];\n        driver[256] = '\\0';\n        std::string(256, 'x').copy(driver, 256);\n        EXPECT_STATUS_EQ(\n            VA_STATUS_ERROR_INVALID_PARAMETER, vaSetDriverName(display, driver));\n    }\n\n    {\n        // acceptable driver name, but does not exist\n        char driver[4] = \"bad\";\n        EXPECT_STATUS(vaSetDriverName(display, driver));\n\n        EXPECT_STATUS_EQ(\n            VA_STATUS_ERROR_UNKNOWN, vaInitialize(display, &major, &minor));\n    }\n\n    EXPECT_STATUS(vaTerminate(display));\n}\n\nTEST_F(VAAPIInitTerminate, InitTermWithoutDisplay)\n{\n    VADisplay display = 0; // no display\n    int major, minor;\n\n    EXPECT_STATUS_EQ(\n        VA_STATUS_ERROR_INVALID_DISPLAY, vaInitialize(display, &major, &minor));\n\n    EXPECT_STATUS_EQ(VA_STATUS_ERROR_INVALID_DISPLAY, vaTerminate(display));\n}\n\n} // namespace VAAPI\n"
  },
  {
    "path": "test/test_va_api_query_config.cpp",
    "content": "/*\n * Copyright (C) 2016 Intel Corporation. All Rights Reserved.\n *\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the\n * \"Software\"), to deal in the Software without restriction, including\n * without limitation the rights to use, copy, modify, merge, publish,\n * distribute, sub license, and/or sell copies of the Software, and to\n * permit persons to whom the Software is furnished to do so, subject to\n * the following conditions:\n *\n * The above copyright notice and this permission notice (including the\n * next paragraph) shall be included in all copies or substantial portions\n * of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR\n * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n#include \"test_va_api_fixture.h\"\n\nnamespace VAAPI\n{\n\nclass VAAPIQueryConfig\n    : public VAAPIFixtureSharedDisplay\n    , public ::testing::WithParamInterface<VAProfile>\n{\n};\n\nTEST_P(VAAPIQueryConfig, CheckEntrypointsForProfile)\n{\n    int numEntrypoints = 0, numProfiles = 0;\n    const VAProfile& profile = GetParam();\n\n    const int maxProfiles = vaMaxNumProfiles(m_vaDisplay);\n    EXPECT_TRUE(maxProfiles > 0)\n            << maxProfiles << \" profiles are reported\";\n\n    Profiles profiles(maxProfiles, VAProfileNone);\n\n    EXPECT_STATUS(\n        vaQueryConfigProfiles(m_vaDisplay, profiles.data(), &numProfiles));\n\n    EXPECT_TRUE(numProfiles > 0)\n            << numProfiles << \" profiles are supported by driver\";\n\n    profiles.resize(numProfiles);\n\n    const int maxEntrypoints = vaMaxNumEntrypoints(m_vaDisplay);\n    EXPECT_TRUE(maxEntrypoints > 0)\n            << maxEntrypoints << \" entrypoints are reported\";\n\n    Entrypoints entrypoints(maxEntrypoints);\n\n    const Profiles::const_iterator begin = profiles.begin();\n    const Profiles::const_iterator end = profiles.end();\n\n    if (std::find(begin, end, profile) != end) {\n        EXPECT_STATUS(vaQueryConfigEntrypoints(m_vaDisplay,\n                                               profile, entrypoints.data(), &numEntrypoints))\n                << \" profile used is \" << profile;\n\n        EXPECT_TRUE(numEntrypoints > 0)\n                << profile << \" is supported but no entrypoints are reported\";\n    } else {\n        EXPECT_STATUS_EQ(\n            VA_STATUS_ERROR_UNSUPPORTED_PROFILE, vaQueryConfigEntrypoints(\n                m_vaDisplay, profile, entrypoints.data(), &numEntrypoints))\n                << \" profile used is \" << profile;\n\n        EXPECT_FALSE(numEntrypoints > 0)\n                << profile << \" profile is not supported but \\\n            valid entrypoints are reported \";\n    }\n}\n\nINSTANTIATE_TEST_SUITE_P(\n    QueryConfig, VAAPIQueryConfig, ::testing::ValuesIn(g_vaProfiles));\n\n} // namespace VAAPI\n"
  },
  {
    "path": "test/test_va_api_query_vendor.cpp",
    "content": "/*\n * Copyright (C) 2016 Intel Corporation. All Rights Reserved.\n *\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the\n * \"Software\"), to deal in the Software without restriction, including\n * without limitation the rights to use, copy, modify, merge, publish,\n * distribute, sub license, and/or sell copies of the Software, and to\n * permit persons to whom the Software is furnished to do so, subject to\n * the following conditions:\n *\n * The above copyright notice and this permission notice (including the\n * next paragraph) shall be included in all copies or substantial portions\n * of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR\n * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n#include \"test_va_api_fixture.h\"\n\nnamespace VAAPI\n{\n\n// Inheriting from VAAPIFixture is not necessary as this test is not\n// overriding or extending any functionality defined in fixture.\n// Thus, a typedef is sufficient for getting a unique test name for gtest.\n\ntypedef VAAPIFixture VAAPIQueryVendor;\n\nTEST_F(VAAPIQueryVendor, NotEmpty)\n{\n    int major, minor;\n\n    VADisplay display = getDisplay();\n    ASSERT_TRUE(display);\n\n    ASSERT_STATUS(vaInitialize(display, &major, &minor));\n    const std::string vendor(vaQueryVendorString(display));\n    EXPECT_GT(vendor.size(), 0u);\n    ASSERT_STATUS(vaTerminate(display));\n}\n\n} // namespace VAAPI\n"
  },
  {
    "path": "vainfo/Makefile.am",
    "content": "# Copyright (c) 2007 Intel Corporation. All Rights Reserved.\n#\n# Permission is hereby granted, free of charge, to any person obtaining a\n# copy of this software and associated documentation files (the\n# \"Software\"), to deal in the Software without restriction, including\n# without limitation the rights to use, copy, modify, merge, publish,\n# distribute, sub license, and/or sell copies of the Software, and to\n# permit persons to whom the Software is furnished to do so, subject to\n# the following conditions:\n# \n# The above copyright notice and this permission notice (including the\n# next paragraph) shall be included in all copies or substantial portions\n# of the Software.\n# \n# THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n# IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR\n# ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\nbin_PROGRAMS = vainfo\n\nvainfo_cflags = \\\n\t-I$(top_srcdir)/common \\\n\t$(LIBVA_CFLAGS) \\\n\t-DLIBVA_VERSION_S=\"\\\"$(LIBVA_VERSION)\\\"\" \\\n\t-Wall \\\n\t$(NULL)\n\nif USE_SSP\nvainfo_cflags += -fstack-protector\nendif\n\nvainfo_libs = \\\n       \t$(LIBVA_LIBS) \\\n\t$(top_builddir)/common/libva-display.la\t\\\n\t$(NULL)\n\nvainfo_SOURCES\t= vainfo.c\nnoinst_HEADERS\t= $(source_h)\nvainfo_CFLAGS\t= $(vainfo_cflags)\nvainfo_LDADD\t= $(vainfo_libs)\n\nvalgrind:\tvainfo\n\tvalgrind --leak-check=full --show-reachable=yes .libs/vainfo; \n"
  },
  {
    "path": "vainfo/meson.build",
    "content": "executable('vainfo', [ 'vainfo.c' ],\n           c_args: [ '-DLIBVA_VERSION_S=\"' + meson.project_version() + '\"' ],\n           dependencies: [ libva_display_dep, dependency('threads'), ],\n           install: true)\n"
  },
  {
    "path": "vainfo/vainfo.c",
    "content": "/*\n * Copyright (c) 2007 Intel Corporation. All Rights Reserved.\n *\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the\n * \"Software\"), to deal in the Software without restriction, including\n * without limitation the rights to use, copy, modify, merge, publish,\n * distribute, sub license, and/or sell copies of the Software, and to\n * permit persons to whom the Software is furnished to do so, subject to\n * the following conditions:\n *\n * The above copyright notice and this permission notice (including the\n * next paragraph) shall be included in all copies or substantial portions\n * of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR\n * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n#include <stdarg.h>\n#include <stdio.h>\n#include <string.h>\n#include <stdlib.h>\n#if !defined(_WIN32)\n#include <unistd.h>\n#endif\n#include <getopt.h>\n#include <va/va_str.h>\n\n#include \"va_display.h\"\n\n#define CHECK_VASTATUS(va_status,func, ret)                             \\\nif (va_status != VA_STATUS_SUCCESS) {                                   \\\n    fprintf(stderr,\"%s failed with error code %d (%s),exit\\n\",func, va_status, vaErrorStr(va_status)); \\\n    ret_val = ret;                                                      \\\n    goto error;                                                         \\\n}\nstatic int show_all_opt = 0;\n\nstatic void\nusage_exit(const char *program)\n{\n    fprintf(stdout, \"Show information from VA-API driver\\n\");\n    fprintf(stdout, \"Usage: %s --help\\n\", program);\n    fprintf(stdout, \"\\t--help print this message\\n\\n\");\n    fprintf(stdout, \"Usage: %s [options]\\n\", program);\n    fprintf(stdout, \"  -a, --all                              Show all supported attributes\\n\");\n    va_print_display_options(stdout);\n\n    exit(0);\n}\n\nstatic void\nparse_args(const char *name, int argc, char **argv)\n{\n    int c;\n    int option_index = 0;\n\n    static struct option long_options[] = {\n        {\"help\", no_argument, 0,     'h'},\n        {\"all\",  no_argument, 0,     'a'},\n        { NULL,  0,           NULL,   0 }\n    };\n\n    va_init_display_args(&argc, argv);\n\n    while ((c = getopt_long(argc, argv,\n                            \"a\",\n                            long_options,\n                            &option_index)) != -1) {\n\n        switch (c) {\n        case 'a':\n            show_all_opt = 1;\n            break;\n        case 'h':\n        default:\n            usage_exit(name);\n            break;\n        }\n    }\n}\n\nstatic int show_config_attributes(VADisplay va_dpy, VAProfile profile, VAEntrypoint entrypoint)\n{\n    struct str_format {\n        int format;\n        char *name;\n    };\n\n    VAStatus va_status;\n    int i, n;\n\n    VAConfigAttrib attrib_list[VAConfigAttribTypeMax];\n    int max_num_attributes = VAConfigAttribTypeMax;\n\n    for (i = 0; i < max_num_attributes; i++) {\n        attrib_list[i].type = i;\n    }\n\n    va_status = vaGetConfigAttributes(va_dpy,\n                                      profile, entrypoint,\n                                      attrib_list, max_num_attributes);\n    if (VA_STATUS_ERROR_UNSUPPORTED_PROFILE == va_status ||\n        VA_STATUS_ERROR_UNSUPPORTED_ENTRYPOINT == va_status)\n        return 0;\n\n    printf(\"%s/%s\\n\", vaProfileStr(profile), vaEntrypointStr(entrypoint));\n\n    if (attrib_list[VAConfigAttribRTFormat].value != VA_ATTRIB_NOT_SUPPORTED) {\n        static struct str_format list[] = {\n            {VA_RT_FORMAT_YUV420,        \"VA_RT_FORMAT_YUV420\"},\n            {VA_RT_FORMAT_YUV422,        \"VA_RT_FORMAT_YUV422\"},\n            {VA_RT_FORMAT_YUV444,        \"VA_RT_FORMAT_YUV444\"},\n            {VA_RT_FORMAT_YUV411,        \"VA_RT_FORMAT_YUV411\"},\n            {VA_RT_FORMAT_YUV400,        \"VA_RT_FORMAT_YUV400\"},\n            {VA_RT_FORMAT_YUV420_10,     \"VA_RT_FORMAT_YUV420_10\"},\n            {VA_RT_FORMAT_YUV422_10,     \"VA_RT_FORMAT_YUV422_10\"},\n            {VA_RT_FORMAT_YUV444_10,     \"VA_RT_FORMAT_YUV444_10\"},\n            {VA_RT_FORMAT_YUV420_12,     \"VA_RT_FORMAT_YUV420_12\"},\n            {VA_RT_FORMAT_YUV422_12,     \"VA_RT_FORMAT_YUV422_12\"},\n            {VA_RT_FORMAT_YUV444_12,     \"VA_RT_FORMAT_YUV444_12\"},\n            {VA_RT_FORMAT_RGB16,         \"VA_RT_FORMAT_RGB16\"},\n            {VA_RT_FORMAT_RGB32,         \"VA_RT_FORMAT_RGB32\"},\n            {VA_RT_FORMAT_RGBP,          \"VA_RT_FORMAT_RGBP\"},\n            {VA_RT_FORMAT_RGB32_10,      \"VA_RT_FORMAT_RGB32_10\"},\n            {VA_RT_FORMAT_RGB32_10BPP,   \"VA_RT_FORMAT_RGB32_10BPP\"},\n            {VA_RT_FORMAT_YUV420_10BPP,  \"VA_RT_FORMAT_YUV420_10BPP\"},\n            {VA_RT_FORMAT_PROTECTED,     \"VA_RT_FORMAT_PROTECTED\"},\n        };\n\n        printf(\"    %-39s: \", vaConfigAttribTypeStr(attrib_list[VAConfigAttribRTFormat].type));\n        for (i = 0, n = 0; i < sizeof(list) / sizeof(list[0]); i++) {\n            if (attrib_list[VAConfigAttribRTFormat].value & list[i].format) {\n                printf(\"%-*s%s\\n\", 0 == n ? 0 : 45, \"\", list[i].name);\n                n++;\n            }\n        }\n    }\n\n    if (attrib_list[VAConfigAttribSpatialResidual].value != VA_ATTRIB_NOT_SUPPORTED) {\n        printf(\"    %-39s: %x\\n\", vaConfigAttribTypeStr(attrib_list[VAConfigAttribSpatialResidual].type),\n               attrib_list[VAConfigAttribSpatialResidual].value);\n    }\n\n    if (attrib_list[VAConfigAttribSpatialClipping].value != VA_ATTRIB_NOT_SUPPORTED) {\n        printf(\"    %-39s: %x\\n\", vaConfigAttribTypeStr(attrib_list[VAConfigAttribSpatialClipping].type),\n               attrib_list[VAConfigAttribSpatialClipping].value);\n    }\n\n    if (attrib_list[VAConfigAttribIntraResidual].value != VA_ATTRIB_NOT_SUPPORTED) {\n        printf(\"    %-39s: %x\\n\", vaConfigAttribTypeStr(attrib_list[VAConfigAttribIntraResidual].type),\n               attrib_list[VAConfigAttribIntraResidual].value);\n    }\n\n    if (attrib_list[VAConfigAttribEncryption].value != VA_ATTRIB_NOT_SUPPORTED) {\n        printf(\"    %-39s: %x\\n\", vaConfigAttribTypeStr(attrib_list[VAConfigAttribEncryption].type),\n               attrib_list[VAConfigAttribEncryption].value);\n    }\n\n    if (attrib_list[VAConfigAttribRateControl].value != VA_ATTRIB_NOT_SUPPORTED) {\n        static struct str_format list[] = {\n            {VA_RC_NONE,            \"VA_RC_NONE\"},\n            {VA_RC_CBR,             \"VA_RC_CBR\"},\n            {VA_RC_VBR,             \"VA_RC_VBR\"},\n            {VA_RC_VCM,             \"VA_RC_VCM\"},\n            {VA_RC_CQP,             \"VA_RC_CQP\"},\n            {VA_RC_VBR_CONSTRAINED, \"VA_RC_VBR_CONSTRAINED\"},\n            {VA_RC_ICQ,             \"VA_RC_ICQ\"},\n            {VA_RC_MB,              \"VA_RC_MB\"},\n            {VA_RC_CFS,             \"VA_RC_CFS\"},\n            {VA_RC_PARALLEL,        \"VA_RC_PARALLEL\"},\n            {VA_RC_QVBR,            \"VA_RC_QVBR\"},\n            {VA_RC_AVBR,            \"VA_RC_AVBR\"},\n            {VA_RC_TCBRC,           \"VA_RC_TCBRC\"},\n        };\n        printf(\"    %-39s: \", vaConfigAttribTypeStr(attrib_list[VAConfigAttribRateControl].type));\n        for (i = 0, n = 0; i < sizeof(list) / sizeof(list[0]); i++) {\n            if (attrib_list[VAConfigAttribRateControl].value & list[i].format) {\n                printf(\"%-*s%s\\n\", 0 == n ? 0 : 45, \"\", list[i].name);\n                n++;\n            }\n        }\n    }\n\n    if (attrib_list[VAConfigAttribDecSliceMode].value != VA_ATTRIB_NOT_SUPPORTED) {\n        static struct str_format list[] = {\n            {VA_DEC_SLICE_MODE_NORMAL, \"VA_DEC_SLICE_MODE_NORMAL\"},\n            {VA_DEC_SLICE_MODE_BASE,   \"VA_DEC_SLICE_MODE_BASE\"},\n        };\n        printf(\"    %-39s: \", vaConfigAttribTypeStr(attrib_list[VAConfigAttribDecSliceMode].type));\n        for (i = 0, n = 0; i < sizeof(list) / sizeof(list[0]); i++) {\n            if (attrib_list[VAConfigAttribDecSliceMode].value & list[i].format) {\n                printf(\"%-*s%s\\n\", 0 == n ? 0 : 45, \"\", list[i].name);\n                n++;\n            }\n        }\n    }\n\n    if (attrib_list[VAConfigAttribDecJPEG].value & (~VA_ATTRIB_NOT_SUPPORTED)) {\n        static struct str_format list[] = {\n            {1 << VA_ROTATION_NONE, \"VA_ROTATION_NONE\"},\n            {1 << VA_ROTATION_90,   \"VA_ROTATION_90\"},\n            {1 << VA_ROTATION_180,  \"VA_ROTATION_180\"},\n            {1 << VA_ROTATION_270,  \"VA_ROTATION_270\"},\n        };\n\n        VAConfigAttribValDecJPEG *config = (VAConfigAttribValDecJPEG*)&attrib_list[VAConfigAttribDecJPEG].value;\n        printf(\"    %-39s: \", vaConfigAttribTypeStr(attrib_list[VAConfigAttribDecJPEG].type));\n        for (i = 0, n = 0; i < sizeof(list) / sizeof(list[0]); i++) {\n            if (config->bits.rotation & list[i].format) {\n                printf(\"%-*s%s\\n\", 0 == n ? 0 : 45, \"\", list[i].name);\n                n++;\n            }\n        }\n    }\n\n    if (attrib_list[VAConfigAttribDecProcessing].value != VA_ATTRIB_NOT_SUPPORTED) {\n        printf(\"    %-39s:\", vaConfigAttribTypeStr(attrib_list[VAConfigAttribDecProcessing].type));\n        if (VA_DEC_PROCESSING_NONE == attrib_list[VAConfigAttribDecProcessing].value)\n            printf(\" VA_DEC_PROCESSING_NONE\\n\");\n        else if (VA_DEC_PROCESSING == attrib_list[VAConfigAttribDecProcessing].value)\n            printf(\" VA_DEC_PROCESSING\\n\");\n    }\n\n    if (attrib_list[VAConfigAttribEncPackedHeaders].value != VA_ATTRIB_NOT_SUPPORTED) {\n        printf(\"    %-39s: \", vaConfigAttribTypeStr(attrib_list[VAConfigAttribEncPackedHeaders].type));\n        if (VA_ENC_PACKED_HEADER_NONE == attrib_list[VAConfigAttribEncPackedHeaders].value)\n            printf(\"VA_ENC_PACKED_HEADER_NONE\\n\");\n        else {\n            static struct str_format list[] = {\n                {VA_ENC_PACKED_HEADER_SEQUENCE, \"VA_ENC_PACKED_HEADER_SEQUENCE\"},\n                {VA_ENC_PACKED_HEADER_PICTURE,  \"VA_ENC_PACKED_HEADER_PICTURE\"},\n                {VA_ENC_PACKED_HEADER_SLICE,    \"VA_ENC_PACKED_HEADER_SLICE\"},\n                {VA_ENC_PACKED_HEADER_MISC,     \"VA_ENC_PACKED_HEADER_MISC\"},\n                {VA_ENC_PACKED_HEADER_RAW_DATA, \"VA_ENC_PACKED_HEADER_RAW_DATA\"},\n            };\n            for (i = 0, n = 0; i < sizeof(list) / sizeof(list[0]); i++) {\n                if (attrib_list[VAConfigAttribEncPackedHeaders].value & list[i].format) {\n                    printf(\"%-*s%s\\n\", 0 == n ? 0 : 45, \"\", list[i].name);\n                    n++;\n                }\n            }\n        }\n    }\n\n    if (attrib_list[VAConfigAttribEncInterlaced].value != VA_ATTRIB_NOT_SUPPORTED) {\n        printf(\"    %-39s: \", vaConfigAttribTypeStr(attrib_list[VAConfigAttribEncInterlaced].type));\n        if (VA_ENC_INTERLACED_NONE == attrib_list[VAConfigAttribEncInterlaced].value)\n            printf(\"VA_ENC_INTERLACED_NONE\\n\");\n        else {\n            static struct str_format list[] = {\n                {VA_ENC_INTERLACED_FRAME,       \"VA_ENC_INTERLACED_FRAME\"},\n                {VA_ENC_INTERLACED_FIELD,       \"VA_ENC_INTERLACED_FIELD\"},\n                {VA_ENC_INTERLACED_MBAFF,       \"VA_ENC_INTERLACED_MBAFF\"},\n                {VA_ENC_INTERLACED_PAFF,        \"VA_ENC_INTERLACED_PAFF\"},\n                {VA_ENC_PACKED_HEADER_RAW_DATA, \"VA_ENC_PACKED_HEADER_RAW_DATA\"},\n            };\n            for (i = 0, n = 0; i < sizeof(list) / sizeof(list[0]); i++) {\n                if (attrib_list[VAConfigAttribEncInterlaced].value & list[i].format) {\n                    printf(\"%-*s%s\\n\", 0 == n ? 0 : 45, \"\", list[i].name);\n                    n++;\n                }\n            }\n        }\n    }\n\n    if (attrib_list[VAConfigAttribEncMaxRefFrames].value & (~VA_ATTRIB_NOT_SUPPORTED)) {\n        printf(\"    %-39s: \", vaConfigAttribTypeStr(attrib_list[VAConfigAttribEncMaxRefFrames].type));\n        printf(\"l0=%d\\n\", attrib_list[VAConfigAttribEncMaxRefFrames].value & 0xffff);\n        printf(\"%-*sl1=%d\\n\", 45, \"\", (attrib_list[VAConfigAttribEncMaxRefFrames].value >> 16) & 0xffff);\n    }\n\n #if VA_CHECK_VERSION(1, 21, 0)\n    if (attrib_list[VAConfigAttribEncMaxTileRows].value & (~VA_ATTRIB_NOT_SUPPORTED)) {\n        printf(\"    %-39s: %d\\n\", vaConfigAttribTypeStr(attrib_list[VAConfigAttribEncMaxTileRows].type),\n               attrib_list[VAConfigAttribEncMaxTileRows].value);\n    }\n\n    if (attrib_list[VAConfigAttribEncMaxTileCols].value & (~VA_ATTRIB_NOT_SUPPORTED)) {\n        printf(\"    %-39s: %d\\n\", vaConfigAttribTypeStr(attrib_list[VAConfigAttribEncMaxTileCols].type),\n               attrib_list[VAConfigAttribEncMaxTileCols].value);\n    }\n#endif\n\n    if (attrib_list[VAConfigAttribEncMaxSlices].value & (~VA_ATTRIB_NOT_SUPPORTED)) {\n        printf(\"    %-39s: %d\\n\", vaConfigAttribTypeStr(attrib_list[VAConfigAttribEncMaxSlices].type),\n               attrib_list[VAConfigAttribEncMaxSlices].value);\n    }\n\n    if (attrib_list[VAConfigAttribEncSliceStructure].value != VA_ATTRIB_NOT_SUPPORTED) {\n        static struct str_format list[] = {\n            {VA_ENC_SLICE_STRUCTURE_POWER_OF_TWO_ROWS,     \"VA_ENC_SLICE_STRUCTURE_POWER_OF_TWO_ROWS\"},\n            {VA_ENC_SLICE_STRUCTURE_ARBITRARY_MACROBLOCKS, \"VA_ENC_SLICE_STRUCTURE_ARBITRARY_MACROBLOCKS\"},\n            {VA_ENC_SLICE_STRUCTURE_EQUAL_ROWS,            \"VA_ENC_SLICE_STRUCTURE_EQUAL_ROWS\"},\n            {VA_ENC_SLICE_STRUCTURE_MAX_SLICE_SIZE,        \"VA_ENC_SLICE_STRUCTURE_MAX_SLICE_SIZE\"},\n            {VA_ENC_SLICE_STRUCTURE_ARBITRARY_ROWS,        \"VA_ENC_SLICE_STRUCTURE_ARBITRARY_ROWS\"},\n        };\n        printf(\"    %-39s: \", vaConfigAttribTypeStr(attrib_list[VAConfigAttribEncSliceStructure].type));\n        for (i = 0, n = 0; i < sizeof(list) / sizeof(list[0]); i++) {\n            if (attrib_list[VAConfigAttribEncSliceStructure].value & list[i].format) {\n                printf(\"%-*s%s\\n\", 0 == n ? 0 : 45, \"\", list[i].name);\n                n++;\n            }\n        }\n    }\n\n    if (attrib_list[VAConfigAttribEncMacroblockInfo].value & (~VA_ATTRIB_NOT_SUPPORTED)) {\n        printf(\"    %-39s: supported\\n\", vaConfigAttribTypeStr(attrib_list[VAConfigAttribEncMacroblockInfo].type));\n    }\n\n    if (attrib_list[VAConfigAttribMaxPictureWidth].value != VA_ATTRIB_NOT_SUPPORTED) {\n        printf(\"    %-39s: %d\\n\", vaConfigAttribTypeStr(attrib_list[VAConfigAttribMaxPictureWidth].type),\n               attrib_list[VAConfigAttribMaxPictureWidth].value);\n    }\n\n    if (attrib_list[VAConfigAttribMaxPictureHeight].value != VA_ATTRIB_NOT_SUPPORTED) {\n        printf(\"    %-39s: %d\\n\", vaConfigAttribTypeStr(attrib_list[VAConfigAttribMaxPictureHeight].type),\n               attrib_list[VAConfigAttribMaxPictureHeight].value);\n    }\n\n    if (attrib_list[VAConfigAttribEncJPEG].value & (~VA_ATTRIB_NOT_SUPPORTED)) {\n        VAConfigAttribValEncJPEG *config = (VAConfigAttribValEncJPEG*)&attrib_list[VAConfigAttribEncJPEG].value;\n        printf(\"    %-39s: \", vaConfigAttribTypeStr(attrib_list[VAConfigAttribEncJPEG].type));\n        printf(\"arithmatic_coding_mode=%d\\n\", config->bits.arithmatic_coding_mode);\n        printf(\"%-*sprogressive_dct_mode=%d\\n\", 45, \"\", config->bits.progressive_dct_mode);\n        printf(\"%-*snon_interleaved_mode=%d\\n\", 45, \"\", config->bits.non_interleaved_mode);\n        printf(\"%-*sdifferential_mode=%d\\n\", 45, \"\", config->bits.differential_mode);\n        printf(\"%-*sdifferential_mode=%d\\n\", 45, \"\", config->bits.differential_mode);\n        printf(\"%-*smax_num_components=%d\\n\", 45, \"\", config->bits.max_num_components);\n        printf(\"%-*smax_num_scans=%d\\n\", 45, \"\", config->bits.max_num_scans);\n        printf(\"%-*smax_num_huffman_tables=%d\\n\", 45, \"\", config->bits.max_num_huffman_tables);\n        printf(\"%-*smax_num_quantization_tables=%d\\n\", 45, \"\", config->bits.max_num_quantization_tables);\n    }\n\n    if (attrib_list[VAConfigAttribEncQualityRange].value != VA_ATTRIB_NOT_SUPPORTED) {\n        printf(\"    %-39s: number of supported quality levels is %d\\n\", vaConfigAttribTypeStr(attrib_list[VAConfigAttribEncQualityRange].type),\n               attrib_list[VAConfigAttribEncQualityRange].value <= 1 ? 1 : attrib_list[VAConfigAttribEncQualityRange].value);\n    }\n\n    if (attrib_list[VAConfigAttribEncQuantization].value != VA_ATTRIB_NOT_SUPPORTED) {\n        printf(\"    %-39s:\", vaConfigAttribTypeStr(attrib_list[VAConfigAttribEncQuantization].type));\n        if (VA_ENC_QUANTIZATION_NONE == attrib_list[VAConfigAttribEncQuantization].value)\n            printf(\" VA_ENC_QUANTIZATION_NONE\\n\");\n        else if (VA_ENC_QUANTIZATION_TRELLIS_SUPPORTED == attrib_list[VAConfigAttribEncQuantization].value)\n            printf(\" VA_ENC_QUANTIZATION_TRELLIS_SUPPORTED\\n\");\n    }\n\n    if (attrib_list[VAConfigAttribEncIntraRefresh].value != VA_ATTRIB_NOT_SUPPORTED) {\n        printf(\"    %-39s: \", vaConfigAttribTypeStr(attrib_list[VAConfigAttribEncIntraRefresh].type));\n        if (VA_ENC_INTRA_REFRESH_NONE == attrib_list[VAConfigAttribEncIntraRefresh].value)\n            printf(\"VA_ENC_INTRA_REFRESH_NONE\\n\");\n        else {\n            static struct str_format list[] = {\n                {VA_ENC_INTRA_REFRESH_ROLLING_COLUMN, \"VA_ENC_INTRA_REFRESH_ROLLING_COLUMN\"},\n                {VA_ENC_INTRA_REFRESH_ROLLING_ROW,    \"VA_ENC_INTRA_REFRESH_ROLLING_ROW\"},\n                {VA_ENC_INTRA_REFRESH_ADAPTIVE,       \"VA_ENC_INTRA_REFRESH_ADAPTIVE\"},\n                {VA_ENC_INTRA_REFRESH_CYCLIC,         \"VA_ENC_INTRA_REFRESH_CYCLIC\"},\n                {VA_ENC_INTRA_REFRESH_P_FRAME,        \"VA_ENC_INTRA_REFRESH_P_FRAME\"},\n                {VA_ENC_INTRA_REFRESH_B_FRAME,        \"VA_ENC_INTRA_REFRESH_B_FRAME\"},\n                {VA_ENC_INTRA_REFRESH_MULTI_REF,      \"VA_ENC_INTRA_REFRESH_MULTI_REF\"},\n            };\n            for (i = 0, n = 0; i < sizeof(list) / sizeof(list[0]); i++) {\n                if (attrib_list[VAConfigAttribEncIntraRefresh].value & list[i].format) {\n                    printf(\"%-*s%s\\n\", 0 == n ? 0 : 45, \"\", list[i].name);\n                    n++;\n                }\n            }\n        }\n    }\n\n    if (attrib_list[VAConfigAttribEncSkipFrame].value & (~VA_ATTRIB_NOT_SUPPORTED)) {\n        printf(\"    %-39s: supported\\n\", vaConfigAttribTypeStr(attrib_list[VAConfigAttribEncSkipFrame].type));\n    }\n\n    if (attrib_list[VAConfigAttribEncROI].value & (~VA_ATTRIB_NOT_SUPPORTED)) {\n        VAConfigAttribValEncROI *config = (VAConfigAttribValEncROI*)&attrib_list[VAConfigAttribEncROI].value;\n        printf(\"    %-39s: \", vaConfigAttribTypeStr(attrib_list[VAConfigAttribEncROI].type));\n        printf(\"num_roi_regions=%d\\n\", config->bits.num_roi_regions);\n        printf(\"%-*sroi_rc_priority_support=%d\\n\", 45, \"\", config->bits.roi_rc_priority_support);\n        printf(\"%-*sroi_rc_qp_delta_support=%d\\n\", 45, \"\", config->bits.roi_rc_qp_delta_support);\n    }\n\n    if (attrib_list[VAConfigAttribEncRateControlExt].value & (~VA_ATTRIB_NOT_SUPPORTED)) {\n        VAConfigAttribValEncRateControlExt *config = (VAConfigAttribValEncRateControlExt*)&attrib_list[VAConfigAttribEncRateControlExt].value;\n        printf(\"    %-39s: \", vaConfigAttribTypeStr(attrib_list[VAConfigAttribEncRateControlExt].type));\n        printf(\"max_num_temporal_layers_minus1=%d \",       config->bits.max_num_temporal_layers_minus1);\n        printf(\"temporal_layer_bitrate_control_flag=%d\\n\", config->bits.temporal_layer_bitrate_control_flag);\n    }\n\n    if (attrib_list[VAConfigAttribProcessingRate].value & (~VA_ATTRIB_NOT_SUPPORTED)) {\n        printf(\"    %-39s: \", vaConfigAttribTypeStr(attrib_list[VAConfigAttribProcessingRate].type));\n        static struct str_format list[] = {\n            {VA_PROCESSING_RATE_ENCODE, \"VA_PROCESSING_RATE_ENCODE\"},\n            {VA_PROCESSING_RATE_DECODE, \"VA_PROCESSING_RATE_DECODE\"},\n        };\n        for (i = 0, n = 0; i < sizeof(list) / sizeof(list[0]); i++) {\n            if (attrib_list[VAConfigAttribProcessingRate].value & list[i].format) {\n                printf(\"%-*s%s\\n\", 0 == n ? 0 : 45, \"\", list[i].name);\n                n++;\n            }\n        }\n    }\n\n    if (attrib_list[VAConfigAttribEncDirtyRect].value & (~VA_ATTRIB_NOT_SUPPORTED)) {\n        printf(\"    %-39s: number of supported regions is %d\\n\", vaConfigAttribTypeStr(attrib_list[VAConfigAttribEncDirtyRect].type),\n               attrib_list[VAConfigAttribEncDirtyRect].value);\n    }\n\n    if (attrib_list[VAConfigAttribEncParallelRateControl].value & (~VA_ATTRIB_NOT_SUPPORTED)) {\n        printf(\"    %-39s: number of supported layers is %d\\n\", vaConfigAttribTypeStr(attrib_list[VAConfigAttribEncParallelRateControl].type),\n               attrib_list[VAConfigAttribEncParallelRateControl].value);\n    }\n\n    if (attrib_list[VAConfigAttribEncDynamicScaling].value & (~VA_ATTRIB_NOT_SUPPORTED)) {\n        printf(\"    %-39s: supported\\n\", vaConfigAttribTypeStr(attrib_list[VAConfigAttribEncDynamicScaling].type));\n    }\n\n    if (attrib_list[VAConfigAttribFrameSizeToleranceSupport].value & (~VA_ATTRIB_NOT_SUPPORTED)) {\n        printf(\"    %-39s: %d\\n\", vaConfigAttribTypeStr(attrib_list[VAConfigAttribFrameSizeToleranceSupport].type),\n               attrib_list[VAConfigAttribFrameSizeToleranceSupport].value);\n    }\n\n    if (attrib_list[VAConfigAttribFEIFunctionType].value != VA_ATTRIB_NOT_SUPPORTED) {\n        printf(\"    %-39s: \", vaConfigAttribTypeStr(attrib_list[VAConfigAttribFEIFunctionType].type));\n        static struct str_format list[] = {\n            {VA_FEI_FUNCTION_ENC,     \"VA_FEI_FUNCTION_ENC\"},\n            {VA_FEI_FUNCTION_PAK,     \"VA_FEI_FUNCTION_PAK\"},\n            {VA_FEI_FUNCTION_ENC_PAK, \"VA_FEI_FUNCTION_ENC_PAK\"},\n        };\n        for (i = 0, n = 0; i < sizeof(list) / sizeof(list[0]); i++) {\n            if (attrib_list[VAConfigAttribFEIFunctionType].value & list[i].format) {\n                printf(\"%-*s%s\\n\", 0 == n ? 0 : 45, \"\", list[i].name);\n                n++;\n            }\n        }\n    }\n\n    if (attrib_list[VAConfigAttribFEIMVPredictors].value & (~VA_ATTRIB_NOT_SUPPORTED)) {\n        printf(\"    %-39s: number of supported MV predictors is %d\\n\", vaConfigAttribTypeStr(attrib_list[VAConfigAttribFEIMVPredictors].type),\n               attrib_list[VAConfigAttribFEIMVPredictors].value);\n    }\n\n    if (attrib_list[VAConfigAttribStats].value & (~VA_ATTRIB_NOT_SUPPORTED)) {\n        VAConfigAttribValStats *config = (VAConfigAttribValStats*)&attrib_list[VAConfigAttribStats].value;\n        printf(\"    %-39s: \", vaConfigAttribTypeStr(attrib_list[VAConfigAttribStats].type));\n        printf(\"max_num_past_references=%d\\n\", config->bits.max_num_past_references);\n        printf(\"%-*smax_num_future_references=%d\\n\", 45, \"\", config->bits.max_num_future_references);\n        printf(\"%-*snum_outputs=%d\\n\", 45, \"\", config->bits.num_outputs);\n        printf(\"%-*sinterlaced=%d\\n\", 45, \"\", config->bits.interlaced);\n    }\n\n    if (attrib_list[VAConfigAttribEncTileSupport].value & (~VA_ATTRIB_NOT_SUPPORTED)) {\n        printf(\"    %-39s: supported\\n\", vaConfigAttribTypeStr(attrib_list[VAConfigAttribEncTileSupport].type));\n    }\n\n    if (attrib_list[VAConfigAttribQPBlockSize].value & (~VA_ATTRIB_NOT_SUPPORTED)) {\n        printf(\"    %-39s: supported\\n\", vaConfigAttribTypeStr(attrib_list[VAConfigAttribQPBlockSize].type));\n    }\n\n    if (attrib_list[VAConfigAttribMaxFrameSize].value & (~VA_ATTRIB_NOT_SUPPORTED)) {\n        VAConfigAttribValMaxFrameSize *config = (VAConfigAttribValMaxFrameSize*)&attrib_list[VAConfigAttribMaxFrameSize].value;\n        printf(\"    %-39s: \", vaConfigAttribTypeStr(attrib_list[VAConfigAttribMaxFrameSize].type));\n        printf(\"max_frame_size=%d\\n\", config->bits.max_frame_size);\n        printf(\"%-*smultiple_pass=%d\\n\", 45, \"\", config->bits.multiple_pass);\n    }\n\n    if (attrib_list[VAConfigAttribPredictionDirection].value & (~VA_ATTRIB_NOT_SUPPORTED)) {\n        printf(\"    %-39s: \", vaConfigAttribTypeStr(attrib_list[VAConfigAttribPredictionDirection].type));\n        static struct str_format list[] = {\n            {VA_PREDICTION_DIRECTION_PREVIOUS, \"VA_PREDICTION_DIRECTION_PREVIOUS\"},\n            {VA_PREDICTION_DIRECTION_FUTURE,  \"VA_PREDICTION_DIRECTION_FUTURE\"},\n        };\n        for (i = 0, n = 0; i < sizeof(list) / sizeof(list[0]); i++) {\n            if (attrib_list[VAConfigAttribPredictionDirection].value & list[i].format) {\n                printf(\"%-*s%s\\n\", 0 == n ? 0 : 45, \"\", list[i].name);\n                n++;\n            }\n        }\n    }\n\n    if (attrib_list[VAConfigAttribMultipleFrame].value & (~VA_ATTRIB_NOT_SUPPORTED)) {\n        VAConfigAttribValMultipleFrame *config = (VAConfigAttribValMultipleFrame*)&attrib_list[VAConfigAttribMultipleFrame].value;\n        printf(\"    %-39s: \", vaConfigAttribTypeStr(attrib_list[VAConfigAttribMultipleFrame].type));\n        printf(\"max_num_concurrent_frames=%d\\n\", config->bits.max_num_concurrent_frames);\n        printf(\"%-*smixed_quality_level=%d\\n\", 45, \"\", config->bits.mixed_quality_level);\n    }\n\n    printf(\"\\n\");\n\n    return 0;\n}\n\nint main(int argc, const char* argv[])\n{\n    VADisplay va_dpy;\n    VAStatus va_status;\n    int major_version, minor_version;\n    const char *driver;\n    const char *name = strrchr(argv[0], '/');\n    VAProfile profile, *profile_list = NULL;\n    int num_profiles, max_num_profiles, i;\n    VAEntrypoint entrypoint, *entrypoints = NULL;\n    int num_entrypoint = 0;\n    int ret_val = 0;\n\n    if (name)\n        name++;\n    else\n        name = argv[0];\n\n    parse_args(name, argc, (char **)argv);\n\n    va_dpy = va_open_display();\n    if (NULL == va_dpy) {\n        fprintf(stderr, \"%s: vaGetDisplay() failed\\n\", name);\n        return 2;\n    }\n\n    va_status = vaInitialize(va_dpy, &major_version, &minor_version);\n    CHECK_VASTATUS(va_status, \"vaInitialize\", 3);\n\n    printf(\"%s: VA-API version: %d.%d\",\n           name, major_version, minor_version);\n#ifdef ANDROID\n    printf(\"\\n\");\n#else\n    printf(\" (libva %s)\\n\", LIBVA_VERSION_S);\n#endif // ANDROID\n\n    driver = vaQueryVendorString(va_dpy);\n    printf(\"%s: Driver version: %s\\n\", name, driver ? driver : \"<unknown>\");\n\n    num_entrypoint = vaMaxNumEntrypoints(va_dpy);\n    entrypoints = malloc(num_entrypoint * sizeof(VAEntrypoint));\n    if (!entrypoints) {\n        printf(\"Failed to allocate memory for entrypoint list\\n\");\n        ret_val = -1;\n        goto error;\n    }\n\n    max_num_profiles = vaMaxNumProfiles(va_dpy);\n    profile_list = malloc(max_num_profiles * sizeof(VAProfile));\n\n    if (!profile_list) {\n        printf(\"Failed to allocate memory for profile list\\n\");\n        ret_val = 5;\n        goto error;\n    }\n\n    va_status = vaQueryConfigProfiles(va_dpy, profile_list, &num_profiles);\n    CHECK_VASTATUS(va_status, \"vaQueryConfigProfiles\", 6);\n\n    if (show_all_opt) {\n        printf(\"%s: Supported config attributes per profile/entrypoint pair\\n\", name);\n        for (i = 0; i < num_profiles; i++) {\n            profile = profile_list[i];\n            va_status = vaQueryConfigEntrypoints(va_dpy, profile, entrypoints,\n                                                 &num_entrypoint);\n            if (va_status == VA_STATUS_ERROR_UNSUPPORTED_PROFILE)\n                continue;\n\n            CHECK_VASTATUS(va_status, \"vaQueryConfigEntrypoints\", 4);\n\n            for (entrypoint = 0; entrypoint < num_entrypoint; entrypoint++) {\n                ret_val = show_config_attributes(va_dpy, profile_list[i], entrypoints[entrypoint]);\n                if (ret_val) {\n                    printf(\"Failed to get config attributes\\n\");\n                    goto error;\n                }\n            }\n        }\n    } else {\n        printf(\"%s: Supported profile and entrypoints\\n\", name);\n        for (i = 0; i < num_profiles; i++) {\n            profile = profile_list[i];\n            va_status = vaQueryConfigEntrypoints(va_dpy, profile, entrypoints,\n                                                 &num_entrypoint);\n            if (va_status == VA_STATUS_ERROR_UNSUPPORTED_PROFILE)\n                continue;\n\n            CHECK_VASTATUS(va_status, \"vaQueryConfigEntrypoints\", 4);\n\n            for (entrypoint = 0; entrypoint < num_entrypoint; entrypoint++) {\n                printf(\"      %-32s:\t%s\\n\",\n                       vaProfileStr(profile),\n                       vaEntrypointStr(entrypoints[entrypoint]));\n            }\n        }\n    }\n\nerror:\n    free(entrypoints);\n    free(profile_list);\n    vaTerminate(va_dpy);\n    va_close_display(va_dpy);\n\n    return ret_val;\n}\n"
  },
  {
    "path": "vendor/intel/Makefile.am",
    "content": "# Copyright (c) 2018 Intel Corporation. All Rights Reserved.\n#\n# Permission is hereby granted, free of charge, to any person obtaining a\n# copy of this software and associated documentation files (the\n# \"Software\"), to deal in the Software without restriction, including\n# without limitation the rights to use, copy, modify, merge, publish,\n# distribute, sub license, and/or sell copies of the Software, and to\n# permit persons to whom the Software is furnished to do so, subject to\n# the following conditions:\n# \n# The above copyright notice and this permission notice (including the\n# next paragraph) shall be included in all copies or substantial portions\n# of the Software.\n# \n# THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n# IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR\n# ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\nbin_PROGRAMS = avcstreamoutdemo\n\nAM_CPPFLAGS = \\\n\t-Wall\t\t\t\t\t\\\n\t-fstack-protector\t\t\t\\\n\t$(LIBVA_CFLAGS)\t\t\t\t\\\n\t-I$(top_srcdir)/common\t\t\t\\\n\t-I$(top_srcdir)/vendor/intel\t\t\\\n\t$(NULL)\n\nTEST_LIBS = \\\n\t$(LIBVA_LIBS)\t\t\t\t\\\n\t$(top_builddir)/common/libva-display.la\t\\\n\t$(NULL)\n\navcstreamoutdemo_LDADD\t= $(TEST_LIBS)\navcstreamoutdemo_SOURCES = avcstreamoutdemo.c\n\nvalgrind:\t$(bin_PROGRAMS)\n\tfor a in $(bin_PROGRAMS); do \\\n\t\tvalgrind --leak-check=full --show-reachable=yes .libs/$$a; \\\n\tdone\n\nEXTRA_DIST = \t\t\t\\\n\tavcstreamoutdemo.h \t\\\n\t$(NULL)\n"
  },
  {
    "path": "vendor/intel/avcstreamoutdemo.c",
    "content": "/*\n * Copyright (c) 2018 Intel Corporation. All Rights Reserved.\n *\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the\n * \"Software\"), to deal in the Software without restriction, including\n * without limitation the rights to use, copy, modify, merge, publish,\n * distribute, sub license, and/or sell copies of the Software, and to\n * permit persons to whom the Software is furnished to do so, subject to\n * the following conditions:\n *\n * The above copyright notice and this permission notice (including the\n * next paragraph) shall be included in all copies or substantial portions\n * of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR\n * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n/*\n * it is a real program to show how VAAPI decode work,\n * It does VLD decode for a simple AVC clip.\n * The bitstream and VA parameters are hardcoded into avcstreamoutdemo.cpp,\n *\n * ./avcstreamoutdemo  : only do decode\n * ./avcstreamoutdemo <any parameter >: do decode and dump mv info\n *\n */\n\n#include <stdio.h>\n#include <string.h>\n#include <stdlib.h>\n#include <getopt.h>\n#include <unistd.h>\n#include <sys/types.h>\n#include <sys/stat.h>\n#include <fcntl.h>\n#include <assert.h>\n#include <va/va.h>\n#include \"va_display.h\"\n#include \"avcstreamoutdemo.h\"\n\n\n#define CHECK_VASTATUS(va_status,func)                                  \\\nif (va_status != VA_STATUS_SUCCESS) {                                   \\\n    fprintf(stderr,\"%s:%s (%d) failed,exit\\n\", __func__, func, __LINE__); \\\n    exit(1);                                                            \\\n}\n\n/* Data dump of a 176x144 AVC video clip,it has one I frame and one P frame\n */\nstatic unsigned int avc_clip[] = {\n    0xce20b865, 0xe2201c0f, 0x9a80c737, 0xd10130c0,\n    0x73f8f26f, 0xfe2e0af8, 0x04bd8666, 0x333fbfb3,\n    0x901da37e, 0x870d050c, 0x5f46568d, 0x2fe68e2c,\n    0xbf626f46, 0x7c4802a3, 0x67b0548c, 0x22681c1e,\n    0x463bc0f9, 0x815f2161, 0xd6c26c9b, 0xb2c4947a,\n    0xf3f7a999, 0x96d4baca, 0x25cd0004, 0x8fbf7436,\n    0xfecb7777, 0xecf7effb, 0x0d601808, 0xc86f92ad,\n    0x6f696b03, 0x2c7dfec0, 0xd2e474bf, 0x0712e10f,\n    0xfd73d1bb, 0xe8ac0192, 0x5402e397, 0xefb811a8,\n    0x2fdc9380, 0xed7889f5, 0xffef7fa7, 0x5845ebdd,\n    0x6d4a203b, 0xd20170f2, 0xebfb6c61, 0x34a81afd,\n    0x67d9621f, 0xf2479fb8, 0x9fb91701, 0x336d9ca9,\n    0xc0f33b12, 0x30f5b60d, 0x7d46b674, 0xdc37fa2a,\n    0x77f74f31, 0xf9777272, 0xba7f8417, 0xc65e0a90,\n    0xdee83735, 0x037fb352, 0x5e8ac257, 0xf09bae14,\n    0x23045f14, 0x98f017ef, 0xe89c3716, 0xab6ed611,\n    0xe1bd7afe, 0xcb981698, 0x4d2a8484, 0xbbffa532,\n    0x01fcf2ef, 0xc7c61893, 0x24fcd3af, 0xc44d6102,\n    0xe331fac2, 0x90c48fe4, 0x2afe651f, 0x687883b8,\n    0xc1081535, 0x6dd11ffd, 0x34d17afe, 0x4bfb259d,\n    0x9d668b08, 0x1ee539b1, 0x702e67e7, 0x3ec8165f,\n    0xffc7ffdf, 0xdca08c1b, 0x814dcc2a, 0x558175a4,\n    0xce4d0478, 0x4b7edf3c, 0xdc6754ae, 0xb6ee10f9,\n    0xe7ccebff, 0x1180fde7, 0x029bcc24, 0x969de939,\n    0xc82154b4, 0x8956a0b3, 0x23b417c8, 0x33ad0fc4,\n    0xf600c2fa, 0xebc01f2c, 0x75329274, 0x746784bf,\n    0x82b7f83f, 0x7bbc6334, 0x9ee79fbf, 0x04803e75,\n    0xf768ca7d, 0x2f31e193, 0x863f9705, 0x403723bc,\n    0x8f7de430, 0xd952d29f, 0xcb5664b7, 0x2f0b837d,\n    0xd1dbf1b1, 0x8aa719e1, 0xaf0f3b6e, 0x33ef4fab,\n    0x427dbece, 0x6a411576, 0xb52ab370, 0x117076b1,\n    0xc6cd9fb2, 0xdf0d735a, 0xd62dc750, 0x867f7d77,\n    0xc0ddd65c, 0x88add368, 0x2f69188b, 0xc3042484,\n    0xf51de774, 0xe7f4bccc, 0x09c03d33, 0x3a4892e1,\n    0x56e7ed85, 0x10812358, 0xc8c93b1e, 0x4081bd67,\n    0x53041322, 0xa768c215, 0xdf387cbb, 0xfcf85fe3,\n    0x33c8e4ed, 0xcc6affa6, 0x0e901eef, 0xf23b9d0d,\n    0xfdfc7ce6, 0x72c45266, 0xd81f810e, 0xda1ad42d,\n    0xc34e8cac, 0xf7d16413, 0x993d01d0, 0x0dc2404a,\n    0x0ad3ae3a, 0xff632898, 0x4c99ac02, 0x3cc161e8,\n    0x744a1c0a, 0x26af3299, 0x40aeda72, 0xb90b7b6c,\n    0x0ee97185, 0x30d4f777, 0xf73fd6dd, 0xe1160a36,\n    0x6a97bb07, 0x9e8601ec, 0x6f2db153, 0x8e8f0fb2,\n    0xfa296973, 0xfd2fd1f6, 0xab289081, 0x0460f415,\n    0x1019999e, 0xe709e77e, 0x09985e94, 0x0eeeb71f,\n    0x1716b05f, 0xaf9102e9, 0x10dea4e4, 0xe897ea85,\n    0x3964c91b, 0xeef1ff19, 0xff1777ef, 0x6d004ae4,\n    0x1d2460b6, 0x097c827f, 0x74486026, 0xb4da67d8,\n    0xf10993fe, 0x76becf26, 0xad78198a, 0xeb661d02,\n    0xe61d8d6f, 0x4dc6706f, 0xdd0e4844, 0xfae17f21,\n    0xd2b13a4a, 0x77ff7ed2, 0x1bfff2c9, 0x40fbd645,\n    0xf3d667f9, 0x92bc91ee, 0x0cdfac03, 0xaa7ffa3b,\n    0x20568aad, 0x76dcaa3e, 0x5fe050f3, 0x414722f7,\n    0x7eff8356, 0xc81a7e3b, 0x04e007d3, 0x2e5df61f,\n    0xe06e17ac, 0xe8596902, 0xf16f4262, 0x031c78b9,\n    0x019e293c, 0xfffffbeb, 0xc74d76f4, 0xf94cafe0,\n    0xfefcbf2f, 0xacf17f7a, 0xffef675f, 0xd69e3925,\n    0x81f8d945, 0x7fe0ffed, 0x475b91a5, 0xe06d6ae2,\n    0x9e78df7b, 0xdfba91f9, 0xb1afc0cf, 0x35a2a66a,\n    0xd73fffff, 0xdd3a2dec, 0x36ae9de1, 0x7fa517ec,\n    0x810e9a72, 0x19c4d939, 0x38db0ddc, 0x780af7c0,\n    0x867dee5a, 0xba02b876, 0xbb3beb56, 0x5cc67f9a,\n    0xd24fd0dd, 0x2744f71c, 0xc300cac5, 0xf8dbbaef,\n    0xab12c7c0, 0xdbedecca, 0x9c5fee7f, 0x57c5e472,\n    0xcf76bdbc, 0x0ac3988d, 0x7f78bb65, 0xbdc8edfe,\n    0x3fbd0b18, 0xff4fc78f, 0x99bb40fd, 0xe13b3e1f,\n    0x78694f71, 0x708f2607, 0x871cbf1f, 0xbdaf871b,\n    0xfe9aab6f, 0x18dc1966, 0x34c5e7fb, 0xf5e0e074,\n    0x33b039d5, 0x233335d8, 0xc3d0b980, 0xb80b65e0,\n    0x3822dc23, 0x003ade43, 0x01d8ac36, 0xdf5b05c8,\n    0x8398b04d, 0x64f897ca, 0x7326c561, 0x78693f52,\n    0x6a3c9944, 0x2ab7b794, 0x46d9da00, 0x657f14fc,\n    0x4081f3a7, 0xe24f6f25, 0x70178f38, 0x93bfd777,\n    0xfadb0c20, 0x2680fb3e, 0x4d6732c6, 0x4da23e83,\n    0xd1918b7f, 0xc0a9c69a, 0xa179e658, 0xbf06b5d5,\n    0x447cdb01, 0x8f444fd9, 0xefdf22e8, 0xbd8bd81d,\n    0xf58b2bdf, 0xfcc281cf, 0x0afa47c1, 0xfd49d1da,\n    0x31a31d70, 0xa81c7e67, 0xe7c8a72f, 0xab47e77f,\n    0x8474712b, 0x1d227828, 0x1fc5fb57, 0x2e3d71ff,\n    0x1462a01b, 0xfccb751f, 0x3fffbe5d, 0x9311d216,\n    0x3f8cb07c, 0xf0b2d2ce, 0xb0a47e0e, 0xf0678201,\n    0x7d0864a5, 0x35667c52, 0xdeef637b, 0x5efc1ac0,\n    0x80ffff85, 0x0274ca62, 0xfffbe743, 0x11e0bbff,\n    0xd570faf5, 0xa94be585, 0x3a48fb01, 0xc0395410,\n    0x3d719e39, 0x15db1d12, 0x0003fc7f, 0xa6b16687,\n    0xa3ca61aa, 0x2535153a, 0x51c37db5, 0xc232f1e9,\n    0x5e3659c6, 0x2f64ca2a, 0x163d0780, 0xfd2a286d,\n    0xc540fdf7, 0x25463f4b, 0x1265a928, 0x2ab51d96,\n    0xb5728bf2, 0xd8eee02c, 0xd491feab, 0x68f8ee63,\n    0x2c8f1500, 0x6a34f537, 0x6c36c895, 0x5c26c2f1,\n    0xfe87e52e, 0xe787f91b, 0xb29f838a, 0xfc6fabb8,\n    0x126cfdf5, 0x0175743c, 0x06707ac0, 0x853476fc,\n    0xef97c00e, 0xf040a1a8, 0x0000c78b, 0x9fed36c4,\n    0xc8873faf, 0xc142e469, 0xcca3c8e7, 0xebaf33f3,\n    0x2393b97a, 0x8a1f0200, 0x5e338d95, 0x186cbc1f,\n    0xf87d5e1a, 0xa8e13f6b, 0xd7ba4939, 0x9256cd3f,\n    0xf7e82b1b, 0x31c0e7c2, 0xab29c0bb, 0x7dfd2dd7,\n    0x55bc0597, 0xbb76a3a4, 0xe9aebd0f, 0x67de1caa,\n    0x81fad799, 0x78ec09df, 0x0080b663, 0x775e930d,\n    0x609fa261, 0x6085fc7e, 0x4e85f507, 0xfe63dc41,\n    0xaf0cb8b3, 0xbbfe6196, 0xa05f50b9, 0x8773e430,\n    0xd9cae9c5, 0xf89410d0, 0x60c7bd0f, 0x00ef20e0,\n    0x42c0c60f, 0x5c0b6386, 0x0bf94687, 0x47d9caf3,\n    0x08e4a0b0, 0xe2bd962d, 0xbe396c0d, 0x192d9d1e,\n    0x762b0f6d, 0x54fac4bf, 0xd0217f05, 0x707815e1,\n    0x8d019a22, 0x1bb568fc, 0xff8fff6b, 0x0b4131ab,\n    0xc634f068, 0xfb10ab38, 0x7e594aed, 0x076809c1,\n    0x60463d03, 0x9ecbdd35, 0x831f29a3, 0x19c9ab6f,\n    0xccfef7ba, 0x70f39baa, 0x820468cf, 0xfdb7cba4,\n    0x102ede81, 0x5b08f7b8, 0x07e52b6d, 0x01117874,\n    0x224f60d3, 0x131afe40, 0xcff0170a, 0x990b8a4f,\n    0x84301f81, 0x73f0f96e, 0xc0e47ac0, 0x327aa40b,\n    0x58e0c4f9, 0x40f06018, 0x4118a1dd, 0x6e20b440,\n    0x245599e2, 0x9f5a302b, 0xff1dffbf, 0xbe2bc7bb,\n    0xd4e45524, 0x828a07c5, 0xad4acee9, 0x99464a3c,\n    0xdbd7c8f2, 0xa278f036, 0xbe5d8e0f, 0x216281d7,\n    0xa7e34032, 0xfe7ff547, 0x2ecfea3f, 0x0cfa8e9c,\n    0x351707b5, 0xeb6e8bd8, 0xfa65f513, 0xfa450a54,\n    0x9cbac6f0, 0xd42d43f0, 0xcb789f9f, 0xafa0065a,\n    0x88f28df2, 0xc987941f, 0xb04fad8f, 0x56b14071,\n    0xe045a7aa, 0x3b21fcd7, 0x965ba86b, 0x69b0d76c,\n    0xd470cba5, 0x8cf09d70, 0x57b940f1, 0xcbd47c99,\n    0x199e0eca, 0x8c33706b, 0x0567c5b7, 0xae6f25c4,\n    0xf9e47feb, 0xd63307dd, 0xb83a9f40, 0x1399d904,\n    0xa44dab8f, 0xddfd1d0e, 0x1156dcbf, 0xfbc5ce3d,\n    0xc0b7cdf4, 0xff9c274c, 0x3fff5bad, 0x1b47900d,\n    0x6b6580b9, 0x0b360507, 0x8a163f9a, 0x64f4de35,\n    0xf33c5f31, 0x6dfbb9fc, 0xe06a1a87, 0x45a38eff,\n    0xf0e81958, 0x43ab8b18, 0x0ff3eee1, 0xee0e449a,\n    0x3c4fdf0a, 0xd11ea5fe, 0x9a7ee9ac, 0xfa3a357d,\n    0x277a5a1a, 0x77c33953, 0x39670426, 0xebf40750,\n    0x6aebf480, 0x7ebec755, 0x21b0ba22, 0xbedd8cee,\n    0xa331dfc7, 0x20c85bf5, 0x800f6178, 0xdfbf8300,\n    0x24e0452e, 0x1ff84d1d, 0xfc8e85fd, 0x82403363,\n    0x257b44d1, 0x808be3b9, 0x4e2053bc, 0xaf03ef8a,\n    0xf3cf13a0, 0x462a2382, 0x15fbff83, 0xbbff562b,\n    0xba9ee3ee, 0x63da06e0, 0x35751d32, 0xa0d865b9,\n    0xfca61624, 0x93644586, 0x91391564, 0xd740e40b,\n    0xb63413fc, 0x58fecab5, 0x614b4355, 0x425f5fd8,\n    0xff21d271, 0x3ee7cf1c, 0x0565b01d, 0xb8f708ee,\n    0x00ea1f8f, 0x811ac6bb, 0xe8dd030e, 0x82477eb2,\n    0xe3057f87, 0x73198c0c, 0x8b8c25b8, 0xaebe5b07,\n    0x62c37b70, 0x310038e6, 0xf387abfe, 0x2f56d0f0,\n    0x62973951, 0xf5d7e120, 0x9ef0ad03, 0x0300ae73,\n    0x1200d8a1, 0xb9de1fa5, 0xec6e1b49, 0xaf6a474d,\n    0x8f6e73a9, 0x2f3c1ea4, 0xf17b338d, 0x7c84fdbe,\n    0x304b3dd4, 0xb18c353d, 0xf480c296, 0x021dd212,\n    0xcba1311e, 0xe6704130, 0x2a746867, 0xceb1837b,\n    0xf7a6083a, 0x31b7ea0b, 0x16e85c87, 0x2a3b6f8b,\n    0xd32ceafc, 0x6c65b50c, 0x0fbbbc9f, 0xb8989bf9,\n    0x5d8ff430, 0x8d2fe056, 0x1db5dc41, 0xe889e100,\n    0x0b213b54, 0xa5df3135, 0x0a1ea40e, 0xc2d2e58c,\n    0xfd0f97a3, 0x0ff398a5, 0x2ad4a9c3, 0x21a09658,\n    0x589b651e, 0x00bb23bc, 0xedaa0001, 0x66d4d424,\n    0xfe3c2d7d, 0xe9984611, 0x1695af96, 0xd42e03c9,\n    0x9d53f081, 0x3fe78443, 0x66ebb469, 0x118f10b1,\n    0x90d5ffc7, 0x6ca5c66e, 0x4863b900, 0xbe78d881,\n    0x6cc0ead5, 0x04ce834b, 0xf54a17ca, 0xa7f3cceb,\n    0x3e57ef99, 0xfadb00bb, 0x90c9a3f4, 0x7fa12804,\n    0x26ba3ee8, 0xd927fd8d, 0x01c0fffb, 0x22291ead,\n    0xf3df78fd, 0x4b9b4740, 0xc03f69a8, 0x6e99757a,\n    0x19d687a1, 0xb4e3f46b, 0x173f7e59, 0xc69f67fe,\n    0x6f200840, 0xe7b983d0, 0x2ff4d5ee, 0xff834946,\n    0xbabb60c7, 0x77feded7, 0x8084a0d3, 0xe1c3fd97,\n    0x0c80ba0c, 0xca03a602, 0x05e403e0, 0x79047705,\n    0x787bf9f0, 0xb75155d5, 0x0123773e, 0x83fed0bf,\n    0x6d38c0ab, 0x2f42e2c4, 0x1bd8ecec, 0x860198aa,\n    0x009f070d, 0x8172f029, 0xedbb259d, 0x2e34fda6,\n    0xc99aaa5e, 0xd5ddb1f2, 0xb552aa7a, 0xef9a83d4,\n    0x4f68c803, 0x55abf304, 0x3a5cacdc, 0x623a76dc,\n    0xe81a81be, 0xfd16f994, 0x38225b1c, 0x2a23f299,\n    0x17ff0056, 0x18440add, 0xd63ab951, 0xc84961b5,\n    0x2c9e145a, 0xe63c49f0, 0xff5f470b, 0xb79ddaf5,\n    0x43489f15, 0x2dcb65cb, 0x3fc16188, 0xbf60c2ed,\n    0x403db2b4, 0x55e162c1, 0x03d1f128, 0x53438d80,\n    0x9377cbf9, 0x6b25eced, 0xa9e782e3, 0xfaf31770,\n    0x17f34571, 0x71757eb9, 0xb0684b05, 0x4c05217c,\n    0xc0610f4f, 0x3d241f61, 0x2a1d22b4, 0x6e2dcd9a,\n    0x5cdaa1c2, 0x944fd6c7, 0x8dffaf33, 0xaba5f39d,\n    0xbbec1176, 0x5b2d30fd, 0xc548d759, 0x8de1706e,\n    0x2f944eff, 0x2d7a9d21, 0x5ccfb55e, 0x98bae6eb,\n    0xce30644f, 0xbba7ecea, 0x1795612b, 0x79f8a0bb,\n    0x47590d1e, 0xdddb1fbd, 0x2285fa64, 0xa887d19c,\n    0xa366d6db, 0xa7f5115d, 0xf3eb77f1, 0x87e975fd,\n    0x1b37e3be, 0xf1b28fd7, 0x0cca3c84, 0x3b585b77,\n    0xffed0f84, 0xcffafb4d, 0x55eef939, 0x1913d09c,\n    0x3cbb015d, 0x3c711405, 0xb7d1eb83, 0x351b2977,\n    0x3c29ffc6, 0xcfe17f08, 0x9933e8c9, 0xe1e977af,\n    0x7cd0abde, 0x217c089d, 0x3d984aff, 0x8e0d84b1,\n    0x14b65cbf, 0x5fc78204, 0xf887301b, 0x29fc5a95,\n    0xca461180, 0xc95e57cc, 0xf3a8ae43, 0x7fa419ee,\n    0xd23f4dfb, 0x9613aa9a, 0x2a4832bb, 0x45c673cf,\n    0xf98c0964, 0xf12b2536, 0xae5f23b6, 0xade10f3a,\n    0xbf83df4d, 0xeb624887, 0x3ca49513, 0xa42c323e,\n    0xcc947d79, 0xa6995591, 0x3acba047, 0x5e18a52a,\n    0x7ffff7af, 0xf51af0f8, 0xcd4cf1ad, 0x57aa1e87,\n    0xe5a4e2b6, 0x6293f3a8, 0x8e55277b, 0x00867b3a,\n    0x7091fff8, 0xe6a1b028, 0x6242f52e, 0x743134aa,\n    0xa2dea374, 0xfe6a50b2, 0x4fcc01d1, 0x5b1747c2,\n    0x123a6b54, 0x0a0ef5ff, 0x657521b2, 0x1573ba20,\n    0xf95f20e2, 0xdffe0d52, 0xa13efd9d, 0x850c7355,\n    0x97a7a984, 0xaab1ef1c, 0x7cffc97b, 0xf07d161a,\n    0xfea255e9, 0x7063ae85, 0x638b1bd6, 0xe42de373,\n    0xe768dfed, 0xcc3f36fc, 0x2f49c9a1, 0x0c3f835a,\n    0xf0c2d154, 0x09fe486b, 0xa671fc31, 0x2cc6e185,\n    0x58ebcf87, 0xddfd014f, 0xd34f5b9c, 0x38b03e4d,\n    0xe30f4aa9, 0x3d8d2b95, 0xc653e7a9, 0x8d1bb0be,\n    0x39b48e3b, 0x75db048a, 0xfd271719, 0xc6aee30b,\n    0x764f3b5f, 0x49af5dc6, 0x5b0ad27e, 0xdf5c4f48,\n    0xa37a5960, 0x6b0265fb, 0xeb1f3e82, 0x0080a29e,\n    0xc9ddb580, 0x03e0f58e, 0x015b824b, 0xd7ef3c1a,\n    0xcac0ba6a, 0x5fd637c0, 0x5e788dcc, 0xb1f357f7,\n    0x7c8c00c0, 0x00358029, 0x01b00001, 0x04c04362,\n    0x0034300c, 0x720f8009, 0x0018a0c3, 0xa7ed30b7,\n    0xcf4656e1, 0xc0001d4a, 0x4087b907, 0x7fee0130,\n    0x30850e18, 0x581f04f7, 0xf7ff4fe2, 0xa7eafffc,\n    0x1a1abe05, 0x05c28450, 0xb55b9d5d, 0x5f68e3be,\n    0x0efd89fb, 0x1d1ede9f, 0xc279a19a, 0xad84a7a3,\n    0x286e25db, 0xa4355b05, 0x87d8929d, 0xe55a7c2c,\n    0xdc6df083, 0x88660cfd, 0x7fc07f80, 0xe8d62196,\n    0x826e2e98, 0x3f2bfb39, 0xb8a9f3ef, 0x2260845d,\n    0x3423e62e, 0x66e4fe31, 0x7f906912, 0x8bd7457d,\n    0xb7cdf7d3, 0xfcdaf6a6, 0x9ee86b3d, 0x1f5ffff7,\n    0x780b18cc, 0x65a00148, 0x3bbf9458, 0x0aefa58a,\n    0xae667dab, 0x67c55f4f, 0x8179beae, 0xe6540dd2,\n    0x1ccf7242, 0xea6ecb03, 0xc28c9c31, 0xbb9c572e,\n    0xc01f2e2f, 0x9a25437b, 0x558cb675, 0xc63b4ed3,\n    0xe06e27df, 0x4e2e9860, 0x17acea7d, 0x06b3ba66,\n    0xebd649d3, 0xe4e1e154, 0xd8136b0d, 0x03271324,\n    0x9312523a, 0x156fb44c, 0xc373a266, 0x160e75fd,\n    0x78901c88, 0x4886060d, 0x5eb9cc39, 0xa9638e64,\n    0xcff5459c, 0x19e27288, 0xe1ff3086, 0x7e3c8237,\n    0x05360904, 0xf85bfdc5, 0xfc8e5a87, 0x00308555,\n    0x7769e6db, 0x20ecf60f, 0x1b86a7ab, 0xed75ab8d,\n    0xeb7f9dfa, 0x08e2a968, 0x4bb34bc7, 0xf8d9196d,\n    0x31d38fed, 0x46eae5cc, 0x66e1307f, 0xfd06d5c1,\n    0x850cb4bd, 0x241b2ca1, 0x8f165563, 0xf54153f6,\n    0x70859632, 0x253fd04a, 0x1d92ff52, 0x7cfff1ff,\n    0xdbc68964, 0x0f529b8f, 0xeb87f565, 0x8d0e4fc1,\n    0x8a6794c8, 0xa009a7bf, 0x1d7fcab8, 0x75366b1c,\n    0x262d12a6, 0xd6bb8ea6, 0xc0d04d04, 0xcae9372f,\n    0x4bfd620f, 0x784fcd03, 0x5fc381e7, 0x5407a7cb,\n    0xf53ef71a, 0x3ea5444f, 0x63ebab0a, 0x9a0a235c,\n    0x87d06a9d, 0x80083f84, 0x7f78b799, 0x6dbcd25d,\n    0x2931eca4, 0xb8207992, 0x9b977ef8, 0xceb13371,\n    0x5eea7b95, 0x98a645d1, 0x3c95803a, 0x4214b96b,\n    0x3579f578, 0x359face1, 0xafa271ff, 0x3711867d,\n    0xdaa6fe67, 0x47c9327a, 0x4dd2f2c7, 0x064ecee6,\n    0xf3ef46c9, 0xfb68220e, 0x2fac397e, 0x1ee4833b,\n    0x0fb095d4, 0x99783a34, 0xbaea518d, 0x7e3ca108,\n    0xac7f78ed, 0xb01d3047, 0xf604f3f0, 0x4a94c55a,\n    0xfd79eeee, 0xc67ca16e, 0xe6f5135f, 0x16e9b79f,\n    0x1adcdf96, 0xfaac3832, 0x0002d8e6, 0xebe827dc,\n    0x1c9a05fd, 0x7b9a31b0, 0x21b0ab43, 0x655a804d,\n    0x4009c0de, 0x00a78220, 0x2b0b1e82, 0xdca9f261,\n    0x2bd0600d, 0xff108c07, 0x255f71fa, 0xb4c6ebaa,\n    0xb6369990, 0xbe3f6734, 0xe18825e2, 0x68d703fa,\n    0xf375a581, 0x59958df1, 0x0bf5d392, 0xad198111,\n    0x721ec4a1, 0x3eebdeab, 0x05c70fd8, 0x065c4714,\n    0x02a0700f, 0x1e921f28, 0xf8ff9482, 0x00cdff8e,\n    0x081faaaa, 0x4b975aed, 0x2b6614b8, 0xdd153273,\n    0x317c31fd, 0x53db04ef, 0x619dfd21, 0x726bbca3,\n    0x644edce2, 0x80427a3a, 0x82678020, 0x30ed6e49,\n    0xf19f7347, 0x777d8c71, 0x8dc3798e, 0x3ddaa2ce,\n    0x5a8e0701, 0xf3fd63ce, 0xc5ebcc81, 0xc58fecd1,\n    0x2e0e8159, 0xe51825ed, 0xeb90026f, 0xb60a23c4,\n    0x2c4bf31d, 0xa01a8ecf, 0x5190fdcc, 0x252a333a,\n    0xc0f788b6, 0x89389863, 0x923d4460, 0xfce7d02e,\n    0xe2fb27c1, 0xe26b6c4e, 0x80e70ea1, 0x00000000,\n    0x00000000, 0x00000000, 0x00000000, 0x00000000,\n    0x00000000, 0x00000000, 0x00000000, 0x00000000,\n    0x00000000, 0x00000000, 0x00000000, 0x00000000\n};\n\nstatic unsigned int avc_clip1[] = {\n    0xbbd2e141, 0xe764a8bc, 0x0c0880d5, 0x38bb0a6e,\n    0x0a6b07f7, 0x77ac6065, 0x040c94ff, 0xce15704a,\n    0xc989f061, 0xfaf82117, 0xcbad5945, 0x6d9daaa6,\n    0xdd878959, 0x1a5f2e3b, 0x1e5ec361, 0x8b007c0f,\n    0xbf471eed, 0x90b139ae, 0xc600f07a, 0x85ee5242,\n    0xed995482, 0xff6f5b9d, 0x010bc02d, 0x40256504,\n    0xd810fd3f, 0x30bef589, 0xadf21133, 0x0f66f6fa,\n    0x51c215c2, 0x872e3481, 0x000bf079, 0xa6e50c33,\n    0xb81cdddc, 0x95404536, 0xd7e8c5f7, 0x84186434,\n    0xa9cf3bac, 0xdc387cd1, 0x53823ab3, 0xa005736c,\n    0x290c7fac, 0x5864641d, 0xebcc3506, 0xedbb5d60,\n    0xc75c5efc, 0xa5b71787, 0xee7b5ebd, 0xf734ef39,\n    0xa67e78da, 0x82fa42de, 0x3810868d, 0x2c7a38c8,\n    0xc65f96ff, 0x72673187, 0x07d7a30a, 0x16ff9818,\n    0x507ce850, 0x1b24d0be, 0xc3e3509e, 0x09f625ec,\n    0xfee00bc5, 0xfee0208d, 0x256524c4, 0x830b1383,\n    0x7c3f40c7, 0x5ca61d8d, 0x7134c076, 0x957b0e0c,\n    0xc6c758cf, 0x610b8f5f, 0x47814301, 0xf8c6c05b,\n    0x5a6c2fa6, 0x4f78c2ca, 0xeec6d9c0, 0x23b7843b,\n    0x72f1eff5, 0x80760900, 0x3f1df421, 0xf12fc10f,\n    0x3a38121e, 0xeeb89aed, 0x1f1913eb, 0xcbb31871,\n    0xd4d5fd78, 0xce3f5aa3, 0x5334bea8, 0x7094c330,\n    0xff019653, 0x61e02683, 0x3f855c97, 0x1e7e1e7e,\n    0xc7189434, 0xf0f221da, 0xd408b533, 0x84edd41e,\n    0x3b840ec4, 0x216f3ff7, 0xc43ea988, 0x732310c5,\n    0x774d0ed2, 0xc7da7677, 0xbb99751c, 0xdef758ea,\n    0xa08030c5, 0x194fb88c, 0x5d2cdf01, 0x31883f9e,\n    0xd88040da, 0xca5193f2, 0xe14b4d4a, 0x121a8a03,\n    0xa6fe32ce, 0xc76f64e6, 0xf72b760b, 0x32b1ca76,\n    0xde807e6c, 0x0bc27b7f, 0xd14d0204, 0xe4d7f39d,\n    0xb2d40890, 0x2c7b0080, 0x01640a31, 0x7828377f,\n    0xd0b57923, 0x7a8e81ee, 0x1ea59e1d, 0xd32905e5,\n    0x51103cf9, 0x0822a87d, 0x9fc886b9, 0x27aaa526,\n    0xc4c25a0c, 0x39eff6d1, 0x42be2114, 0xb1e0be80,\n    0x71551a96, 0x65ec526e, 0x5254683a, 0x2f53a761,\n    0x817c79c5, 0x22605079, 0x7b32b62b, 0xf94d4576,\n    0xf83c836d, 0xf35ca5ae, 0x48385aa1, 0x03ec899f,\n    0xbf3cb34a, 0x28292c12, 0x2b322a70, 0x3a8920e1,\n    0x0d04313b, 0x92b96796, 0x2264d217, 0xa175f3dd,\n    0x477af378, 0xf3d7cc31, 0x742867ff, 0xe04c2a32,\n    0xbfbdf54c, 0x78c04b0c, 0x8887a4f1, 0x77b63003,\n    0x7d45a0df, 0x41ec95db, 0xa6508183, 0x58343aaa,\n    0xca8380c1, 0x8bda0563, 0x853a1b72, 0x0525d346,\n    0x9790cbe7, 0x30881bb6, 0xaa6fc729, 0xd36cfbd4,\n    0x8d76b7fa, 0x29a871d5, 0xdae527bd, 0x3030e020,\n    0x8bcf8ab7, 0x61cb2f97, 0x13846041, 0x4ecde00c,\n    0xdef0ff00, 0xb71fa71b, 0xec2f31be, 0xe9520c24,\n    0x80459473, 0x30300658, 0xa3805ad8, 0xb47eafd2,\n    0x04375a5f, 0x06092cf1, 0x6894ac58, 0xfdfec525,\n    0x0d0889b2, 0x1b804608, 0x1f1f142c, 0xf87ba8c9,\n    0x26800347, 0xf26f3d19, 0xe558e220, 0x145dfa14,\n    0xba317016, 0x3bb06f65, 0x07cf7309, 0xa429c442,\n    0xcce3604d, 0x727f694c, 0x28371b89, 0xd86d80a6,\n    0x2c77943e, 0x60cc8df9, 0x84e9e09c, 0xf31b7067,\n    0xd0158393, 0x29bc8cd8, 0xd88bc6a1, 0xa33f98a8,\n    0xf2340773, 0xab695f5f, 0x28c4f872, 0xcd486133,\n    0x167f7cdf, 0x531faf43, 0xa0847374, 0xd5004438,\n    0xbf6e3c3c, 0x2e720484, 0xb75eee52, 0x10fef2a7,\n    0x63e38812, 0xba96765b, 0x8a244e41, 0xa6120d37,\n    0x15154a10, 0x117869f5, 0x199f5d1c, 0xd6a89007,\n    0x08182d25, 0x48151314, 0xbef97a60, 0xa9f8c8e8,\n    0xf5b1d037, 0x913062cd, 0x8b1d5f46, 0x81eee004,\n    0x12f85444, 0xafb969ab, 0xde74a38f, 0x1287118d,\n    0x8c654586, 0xd0c0a92c, 0x42c7e3b6, 0x6c59f1de,\n    0xc7c22556, 0x1aca992f, 0x0583a104, 0x424053a5,\n    0x53232a5d, 0x2e9907f8, 0x9031a20b, 0x146267d7,\n    0x8af06791, 0x4abffacd, 0x688f40e6, 0x80e8d8f4,\n    0x976b02b3, 0x33de017b, 0x479c8943, 0xd8a744cb,\n    0x412c7311, 0x2b1dee02, 0x649429ba, 0x191d3111,\n    0x041743de, 0x0c67c2a4, 0x4140e20f, 0x350b9685,\n    0xc7c2eea9, 0x16847488, 0xb3027037, 0x38c81979,\n    0x166164a7, 0x7198e5a1, 0x0414241b, 0xb92b29bf,\n    0xe50dbeb4, 0xb711c032, 0xbf398b73, 0x0abed4a6,\n    0x9a048545, 0x94cdafe3, 0x54659149, 0x20ec4cdf,\n    0x6d0a8b14, 0x271b812f, 0xdbee2ab6, 0x811a8a74,\n    0xc5449582, 0x855cdd1e, 0x12b06e17, 0x345a572b,\n    0xbad98795, 0xcdc7038c, 0x1b8d0e61, 0x000000a5,\n    0x00000000, 0x00000000, 0x00000000, 0x00000000,\n    0x00000000, 0x00000000, 0x00000000, 0x00000000,\n    0x00000000, 0x00000000, 0x00000000, 0x00000000,\n};\n\n/* hardcoded here without a bitstream parser helper\n */\nstatic VAPictureParameterBufferH264 pic_param[2] = {\n    {\nCurrPic:\n        {\n            0, 0, 8, 0, 0\n        },\nReferenceFrames:\n        {\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0}\n        },\n        picture_width_in_mbs_minus1: 10,\n        picture_height_in_mbs_minus1: 8,\n        bit_depth_luma_minus8: 0,\n        bit_depth_chroma_minus8: 0,\n        num_ref_frames: 7,\n        {\n            {\n                chroma_format_idc: 1,\n                residual_colour_transform_flag: 0,\n                gaps_in_frame_num_value_allowed_flag: 0,\n                frame_mbs_only_flag: 1,\n                mb_adaptive_frame_field_flag: 0,\n                direct_8x8_inference_flag: 1,\n                MinLumaBiPredSize8x8: 0,\n                log2_max_frame_num_minus4: 1,\n                pic_order_cnt_type: 1,\n                log2_max_pic_order_cnt_lsb_minus4: 0,\n                delta_pic_order_always_zero_flag: 1,\n            }\n        },\n        num_slice_groups_minus1: 0,\n        slice_group_map_type: 0,\n        slice_group_change_rate_minus1: 0,\n        pic_init_qp_minus26: 0,\n        pic_init_qs_minus26: 0,\n        chroma_qp_index_offset: 0,\n        second_chroma_qp_index_offset: 0,\n        {\n            {\n                entropy_coding_mode_flag: 0,\n                weighted_pred_flag: 0,\n                weighted_bipred_idc: 0,\n                transform_8x8_mode_flag: 0,\n                field_pic_flag: 0,\n                constrained_intra_pred_flag: 0,\n                pic_order_present_flag: 0,\n                deblocking_filter_control_present_flag: 0,\n                redundant_pic_cnt_present_flag: 0,\n                reference_pic_flag: 1,\n            }\n        },\n        frame_num: 0\n    },\n    {\nCurrPic:\n        {\n            1, 1, 8, 1, 1\n        },\nReferenceFrames:\n        {\n            {0, 0, 8, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0}\n        },\n        picture_width_in_mbs_minus1: 10,\n        picture_height_in_mbs_minus1: 8,\n        bit_depth_luma_minus8: 0,\n        bit_depth_chroma_minus8: 0,\n        num_ref_frames: 7,\n        {\n            {\n                chroma_format_idc: 1,\n                residual_colour_transform_flag: 0,\n                gaps_in_frame_num_value_allowed_flag: 0,\n                frame_mbs_only_flag: 1,\n                mb_adaptive_frame_field_flag: 0,\n                direct_8x8_inference_flag: 1,\n                MinLumaBiPredSize8x8: 0,\n                log2_max_frame_num_minus4: 1,\n                pic_order_cnt_type: 1,\n                log2_max_pic_order_cnt_lsb_minus4: 0,\n                delta_pic_order_always_zero_flag: 1,\n            }\n        },\n        num_slice_groups_minus1: 0,\n        slice_group_map_type: 0,\n        slice_group_change_rate_minus1: 0,\n        pic_init_qp_minus26: 0,\n        pic_init_qs_minus26: 0,\n        chroma_qp_index_offset: 0,\n        second_chroma_qp_index_offset: 0,\n        {\n            {\n                entropy_coding_mode_flag: 0,\n                weighted_pred_flag: 0,\n                weighted_bipred_idc: 0,\n                transform_8x8_mode_flag: 0,\n                field_pic_flag: 0,\n                constrained_intra_pred_flag: 0,\n                pic_order_present_flag: 0,\n                deblocking_filter_control_present_flag: 0,\n                redundant_pic_cnt_present_flag: 0,\n                reference_pic_flag: 1,\n            }\n        },\n        frame_num: 1\n    }\n};\n\nstatic VAIQMatrixBufferH264 iq_matrix[2] = {\n    {\nScalingList4x4:\n        {\n            {0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10},\n            {0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10},\n            {0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10},\n            {0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10},\n            {0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10},\n            {0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10}\n        },\nScalingList8x8:\n        {{0}}\n    },\n    {\nScalingList4x4:\n        {\n            {0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10},\n            {0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10},\n            {0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10},\n            {0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10},\n            {0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10},\n            {0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10}\n        },\nScalingList8x8:\n        {{0}}\n    }\n};\n\nstatic VASliceParameterBufferH264 slice_param_surface0[4] = {\n    {\n        slice_data_size: 1101,\n        slice_data_offset: 0,\n        slice_data_flag: 0,\n        slice_data_bit_offset: 28,\n        first_mb_in_slice: 0,\n        slice_type: 2,\n        direct_spatial_mv_pred_flag: 0,\n        num_ref_idx_l0_active_minus1: 0,\n        num_ref_idx_l1_active_minus1: 0,\n        cabac_init_idc: 0,\n        slice_qp_delta: 6,\n        disable_deblocking_filter_idc: 0,\n        slice_alpha_c0_offset_div2: 0,\n        slice_beta_offset_div2: 0,\nRefPicList0:\n        {\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0}\n        },\nRefPicList1:\n        {\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0}\n        },\n        luma_log2_weight_denom: 0,\n        chroma_log2_weight_denom: 0,\n        luma_weight_l0_flag: 0,\nluma_weight_l0:\n        {0},\nluma_offset_l0:\n        {0},\n        chroma_weight_l0_flag: 0,\nchroma_weight_l0:\n        {{0, 0}},\nchroma_offset_l0:\n        {{0, 0}},\n        luma_weight_l1_flag: 0,\nluma_weight_l1:\n        {0},\nluma_offset_l1:\n        {0},\n        chroma_weight_l1_flag: 0,\nchroma_weight_l1:\n        {{0, 0}},\nchroma_offset_l1:\n        {{0, 0}}\n    },\n    {\n        slice_data_size: 1133,\n        slice_data_offset: 1101,\n        slice_data_flag: 0,\n        slice_data_bit_offset: 32,\n        first_mb_in_slice: 22,\n        slice_type: 2,\n        direct_spatial_mv_pred_flag: 0,\n        num_ref_idx_l0_active_minus1: 0,\n        num_ref_idx_l1_active_minus1: 0,\n        cabac_init_idc: 0,\nslice_qp_delta:\n        -1,\n            disable_deblocking_filter_idc: 0,\n            slice_alpha_c0_offset_div2: 0,\n            slice_beta_offset_div2: 0,\n    RefPicList0:\n        {\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0}\n        },\nRefPicList1:\n        {\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0}\n        },\n        luma_log2_weight_denom: 0,\n        chroma_log2_weight_denom: 0,\n        luma_weight_l0_flag: 0,\nluma_weight_l0:\n        {0},\nluma_offset_l0:\n        {0},\n        chroma_weight_l0_flag: 0,\nchroma_weight_l0:\n        {{0, 0}},\nchroma_offset_l0:\n        {{0, 0}},\n        luma_weight_l1_flag: 0,\nluma_weight_l1:\n        {0},\nluma_offset_l1:\n        {0},\n        chroma_weight_l1_flag: 0,\nchroma_weight_l1:\n        {{0, 0}},\nchroma_offset_l1:\n        {{0, 0}}\n    },\n    {\n        slice_data_size: 1115,\n        slice_data_offset: 2234,\n        slice_data_flag: 0,\n        slice_data_bit_offset: 34,\n        first_mb_in_slice: 46,\n        slice_type: 2,\n        direct_spatial_mv_pred_flag: 0,\n        num_ref_idx_l0_active_minus1: 0,\n        num_ref_idx_l1_active_minus1: 0,\n        cabac_init_idc: 0,\nslice_qp_delta:\n        -1,\n            disable_deblocking_filter_idc: 0,\n            slice_alpha_c0_offset_div2: 0,\n            slice_beta_offset_div2: 0,\n    RefPicList0:\n        {\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0}\n        },\nRefPicList1:\n        {\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0}\n        },\n        luma_log2_weight_denom: 0,\n        chroma_log2_weight_denom: 0,\n        luma_weight_l0_flag: 0,\nluma_weight_l0:\n        {0},\nluma_offset_l0:\n        {0},\n        chroma_weight_l0_flag: 0,\nchroma_weight_l0:\n        {{0, 0}},\nchroma_offset_l0:\n        {{0, 0}},\n        luma_weight_l1_flag: 0,\nluma_weight_l1:\n        {0},\nluma_offset_l1:\n        {0},\n        chroma_weight_l1_flag: 0,\nchroma_weight_l1:\n        {{0, 0}},\nchroma_offset_l1:\n        {{0, 0}}\n    },\n    {\n        slice_data_size: 951,\n        slice_data_offset: 3349,\n        slice_data_flag: 0,\n        slice_data_bit_offset: 36,\n        first_mb_in_slice: 76,\n        slice_type: 2,\n        direct_spatial_mv_pred_flag: 0,\n        num_ref_idx_l0_active_minus1: 0,\n        num_ref_idx_l1_active_minus1: 0,\n        cabac_init_idc: 0,\nslice_qp_delta:\n        -1,\n            disable_deblocking_filter_idc: 0,\n            slice_alpha_c0_offset_div2: 0,\n            slice_beta_offset_div2: 0,\n    RefPicList0:\n        {\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0}\n        },\nRefPicList1:\n        {\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0}\n        },\n        luma_log2_weight_denom: 0,\n        chroma_log2_weight_denom: 0,\n        luma_weight_l0_flag: 0,\nluma_weight_l0:\n        {0},\nluma_offset_l0:\n        {0},\n        chroma_weight_l0_flag: 0,\nchroma_weight_l0:\n        {{0, 0}},\nchroma_offset_l0:\n        {{0, 0}},\n        luma_weight_l1_flag: 0,\nluma_weight_l1:\n        {0},\nluma_offset_l1:\n        {0},\n        chroma_weight_l1_flag: 0,\nchroma_weight_l1:\n        {{0, 0}},\nchroma_offset_l1:\n        {{0, 0}}\n    }\n};\n\nstatic VASliceParameterBufferH264 slice_param_surface1[2] = {\n    {\n        slice_data_size: 1091,\n        slice_data_offset: 0,\n        slice_data_flag: 0,\n        slice_data_bit_offset: 32,\n        first_mb_in_slice: 0,\n        slice_type: 0,\n        direct_spatial_mv_pred_flag: 0,\n        num_ref_idx_l0_active_minus1: 0,\n        num_ref_idx_l1_active_minus1: 0,\n        cabac_init_idc: 0,\nslice_qp_delta:\n        -1,\n            disable_deblocking_filter_idc: 0,\n            slice_alpha_c0_offset_div2: 0,\n            slice_beta_offset_div2: 0,\n    RefPicList0:\n        {\n            {0, 0, 8, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0}\n        },\nRefPicList1:\n        {\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0}\n        },\n        luma_log2_weight_denom: 0,\n        chroma_log2_weight_denom: 0,\n        luma_weight_l0_flag: 0,\nluma_weight_l0:\n        {0},\nluma_offset_l0:\n        {0},\n        chroma_weight_l0_flag: 0,\nchroma_weight_l0:\n        {{0, 0}},\nchroma_offset_l0:\n        {{0, 0}},\n        luma_weight_l1_flag: 0,\nluma_weight_l1:\n        {0},\nluma_offset_l1:\n        {0},\n        chroma_weight_l1_flag: 0,\nchroma_weight_l1:\n        {{0, 0}},\nchroma_offset_l1:\n        {{0, 0}}\n    },\n    {\n        slice_data_size: 138,\n        slice_data_offset: 1091,\n        slice_data_flag: 0,\n        slice_data_bit_offset: 44,\n        first_mb_in_slice: 92,\n        slice_type: 0,\n        direct_spatial_mv_pred_flag: 0,\n        num_ref_idx_l0_active_minus1: 0,\n        num_ref_idx_l1_active_minus1: 0,\n        cabac_init_idc: 0,\nslice_qp_delta:\n        -1,\n            disable_deblocking_filter_idc: 0,\n            slice_alpha_c0_offset_div2: 0,\n            slice_beta_offset_div2: 0,\n    RefPicList0:\n        {\n            {0, 0, 8, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0}\n        },\nRefPicList1:\n        {\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0},\n            {VA_INVALID_SURFACE, 0, 1, 0, 0}\n        },\n        luma_log2_weight_denom: 0,\n        chroma_log2_weight_denom: 0,\n        luma_weight_l0_flag: 0,\nluma_weight_l0:\n        {0},\nluma_offset_l0:\n        {0},\n        chroma_weight_l0_flag: 0,\nchroma_weight_l0:\n        {{0, 0}},\nchroma_offset_l0:\n        {{0, 0}},\n        luma_weight_l1_flag: 0,\nluma_weight_l1:\n        {0},\nluma_offset_l1:\n        {0},\n        chroma_weight_l1_flag: 0,\nchroma_weight_l1:\n        {{0, 0}},\nchroma_offset_l1:\n        {{0, 0}}\n    }\n};\n\n\n#define CLIP_WIDTH  176\n#define CLIP_HEIGHT 144\n\n#define AVC_SURFACE_NUM 2\n\n#define IF_EQUAL(a, b)         (a == b)\n#define IF_EQUAL_M(a, b, c, d) (a == b && a == c && a == d && b == c && b == d && c == d)\n\nvoid dumpMvs(VADecStreamOutData *streamout, int mbIndex)\n{\n    if (IF_EQUAL_M(streamout->QW8[0].MvFwd_x, streamout->QW8[1].MvFwd_x, streamout->QW8[2].MvFwd_x, streamout->QW8[2].MvFwd_x)\n        && IF_EQUAL_M(streamout->QW8[0].MvFwd_y, streamout->QW8[1].MvFwd_y, streamout->QW8[2].MvFwd_y, streamout->QW8[2].MvFwd_y)) {\n        printf(\"*************MB:%2d*********\\n\", mbIndex);\n        printf(\"*                          *\\n\");\n        printf(\"*                          *\\n\");\n        printf(\"*                          *\\n\");\n        printf(\"*                          *\\n\");\n        printf(\"*                          *\\n\");\n        printf(\"*          %3s            *\\n\", streamout->DW0.MbSkipFlag != 0 ? \"Skip\" : \"    \");\n        printf(\"*                          *\\n\");\n        printf(\"*                          *\\n\");\n        printf(\"*                          *\\n\");\n        printf(\"*                          *\\n\");\n        printf(\"*                          *\\n\");\n        printf(\"*%3d,%3d->0                *\\n\", streamout->QW8[0].MvFwd_x, streamout->QW8[0].MvFwd_y);\n        printf(\"*                          *\\n\");\n        printf(\"****************************\\n\\n\");\n    } else if ((IF_EQUAL(streamout->QW8[1].MvFwd_x, streamout->QW8[3].MvFwd_x)\n                && IF_EQUAL(streamout->QW8[1].MvFwd_y, streamout->QW8[3].MvFwd_y))\n               && (IF_EQUAL(streamout->QW8[0].MvFwd_x, streamout->QW8[2].MvFwd_x)\n                   && IF_EQUAL(streamout->QW8[0].MvFwd_y, streamout->QW8[2].MvFwd_y))\n               && !(IF_EQUAL(streamout->QW8[0].MvFwd_x, streamout->QW8[1].MvFwd_x)\n                    && IF_EQUAL(streamout->QW8[0].MvFwd_y, streamout->QW8[1].MvFwd_y))) {\n        printf(\"*************MB:%2d*********\\n\", mbIndex);\n        printf(\"*            *             *\\n\");\n        printf(\"*            *             *\\n\");\n        printf(\"*            *             *\\n\");\n        printf(\"*            *             *\\n\");\n        printf(\"*            *             *\\n\");\n        printf(\"*            *             *\\n\");\n        printf(\"*            *             *\\n\");\n        printf(\"*            *             *\\n\");\n        printf(\"*            *             *\\n\");\n        printf(\"*            *             *\\n\");\n        printf(\"*            *             *\\n\");\n        printf(\"*%3d,%3d->0  * %3d,%3d->0  *\\n\", streamout->QW8[0].MvFwd_x, streamout->QW8[0].MvFwd_y, streamout->QW8[1].MvFwd_x, streamout->QW8[1].MvFwd_y);\n        printf(\"*            *             *\\n\");\n        printf(\"****************************\\n\\n\");\n    } else if ((IF_EQUAL(streamout->QW8[0].MvFwd_x, streamout->QW8[1].MvFwd_x)\n                && IF_EQUAL(streamout->QW8[0].MvFwd_y, streamout->QW8[1].MvFwd_y))\n               && (IF_EQUAL(streamout->QW8[2].MvFwd_x, streamout->QW8[3].MvFwd_x)\n                   && IF_EQUAL(streamout->QW8[2].MvFwd_y, streamout->QW8[3].MvFwd_y))\n               && !(IF_EQUAL(streamout->QW8[0].MvFwd_x, streamout->QW8[2].MvFwd_x)\n                    && IF_EQUAL(streamout->QW8[0].MvFwd_y, streamout->QW8[2].MvFwd_y))) {\n        printf(\"*************MB:%2d*********\\n\", mbIndex);\n        printf(\"*                          *\\n\");\n        printf(\"*                          *\\n\");\n        printf(\"*                          *\\n\");\n        printf(\"*                          *\\n\");\n        printf(\"*%3d,%3d->0                *\\n\", streamout->QW8[0].MvFwd_x, streamout->QW8[0].MvFwd_y);\n        printf(\"*                          *\\n\");\n        printf(\"****************************\\n\");\n        printf(\"*                          *\\n\");\n        printf(\"*                          *\\n\");\n        printf(\"*                          *\\n\");\n        printf(\"*                          *\\n\");\n        printf(\"*%3d,%3d->0                *\\n\", streamout->QW8[2].MvFwd_x, streamout->QW8[2].MvFwd_y);\n        printf(\"*                          *\\n\");\n        printf(\"****************************\\n\\n\");\n    } else {\n        printf(\"*************MB:%2d*********\\n\", mbIndex);\n        printf(\"*            *             *\\n\");\n        printf(\"*            *             *\\n\");\n        printf(\"*            *             *\\n\");\n        printf(\"*            *             *\\n\");\n        printf(\"*%3d,%3d->0  * %3d,%3d->0  *\\n\", streamout->QW8[0].MvFwd_x, streamout->QW8[0].MvFwd_y, streamout->QW8[1].MvFwd_x, streamout->QW8[1].MvFwd_y);\n        printf(\"*            *             *\\n\");\n        printf(\"***************************\\n\");\n        printf(\"*            *             *\\n\");\n        printf(\"*            *             *\\n\");\n        printf(\"*            *             *\\n\");\n        printf(\"*            *             *\\n\");\n        printf(\"*%3d,%3d->0  * %3d,%3d->0  *\\n\", streamout->QW8[2].MvFwd_x, streamout->QW8[2].MvFwd_y, streamout->QW8[3].MvFwd_x, streamout->QW8[3].MvFwd_y);\n        printf(\"*            *             *\\n\");\n        printf(\"****************************\\n\\n\");\n    }\n}\n\nint main(int argc, char **argv)\n{\n    VAEntrypoint entrypoints[5];\n    int num_entrypoints, vld_entrypoint;\n    VAConfigAttrib attrib;\n    VAConfigID config_id;\n    VASurfaceID surface_ids[AVC_SURFACE_NUM];\n    VAContextID context_id;\n    VABufferID pic_param_buf, iqmatrix_buf, slice_param_buf, slice_data_buf, streamout_buf;\n    VABufferID tmp_buff_ids[5];\n    int major_ver, minor_ver;\n    VADisplay   va_dpy;\n    VAStatus va_status;\n    int is_dump_streamout = 0;\n    int surface_index;\n    VASurfaceStatus surface_status;\n    unsigned char *pbuf;\n    unsigned int mb_counts = ((CLIP_WIDTH + 15) / 16) * ((CLIP_HEIGHT + 15) / 16);\n    unsigned int streamout_buffsize = mb_counts * sizeof(VADecStreamOutData);\n\n    va_init_display_args(&argc, argv);\n\n    if (argc > 1)\n        is_dump_streamout = 1;\n\n    va_dpy = va_open_display();\n    va_status = vaInitialize(va_dpy, &major_ver, &minor_ver);\n    assert(va_status == VA_STATUS_SUCCESS);\n\n    va_status = vaQueryConfigEntrypoints(va_dpy, VAProfileH264Main, entrypoints,\n                                         &num_entrypoints);\n    CHECK_VASTATUS(va_status, \"vaQueryConfigEntrypoints\");\n\n    for (vld_entrypoint = 0; vld_entrypoint < num_entrypoints; vld_entrypoint++) {\n        if (entrypoints[vld_entrypoint] == VAEntrypointVLD)\n            break;\n    }\n    if (vld_entrypoint == num_entrypoints) {\n        /* not find VLD entry point */\n        assert(0);\n    }\n\n    /* Assuming finding VLD, find out the format for the render target */\n    attrib.type = VAConfigAttribRTFormat;\n    vaGetConfigAttributes(va_dpy, VAProfileH264Main, VAEntrypointVLD,\n                          &attrib, 1);\n    if ((attrib.value & VA_RT_FORMAT_YUV420) == 0) {\n        /* not find desired YUV420 RT format */\n        assert(0);\n    }\n\n    va_status = vaCreateConfig(va_dpy, VAProfileH264Main, VAEntrypointVLD,\n                               &attrib, 1, &config_id);\n    CHECK_VASTATUS(va_status, \"vaQueryConfigEntrypoints\");\n\n    va_status = vaCreateSurfaces(\n                    va_dpy,\n                    VA_RT_FORMAT_YUV420, CLIP_WIDTH, CLIP_HEIGHT,\n                    &surface_ids[0], 2,\n                    NULL, 0\n                );\n    CHECK_VASTATUS(va_status, \"vaCreateSurfaces\");\n\n    /* Create a context for this decode pipe */\n    va_status = vaCreateContext(va_dpy, config_id,\n                                CLIP_WIDTH,\n                                ((CLIP_HEIGHT + 15) / 16) * 16,\n                                VA_PROGRESSIVE,\n                                &surface_ids[0],\n                                2,\n                                &context_id);\n    CHECK_VASTATUS(va_status, \"vaCreateContext\");\n\n    for (surface_index = 0 ; surface_index < AVC_SURFACE_NUM; surface_index++) {\n        va_status = vaCreateBuffer(va_dpy, context_id,\n                                   VAPictureParameterBufferType,\n                                   sizeof(VAPictureParameterBufferH264),\n                                   1, &pic_param[surface_index],\n                                   &pic_param_buf);\n        CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n        va_status = vaCreateBuffer(va_dpy, context_id,\n                                   VAIQMatrixBufferType,\n                                   sizeof(VAIQMatrixBufferH264),\n                                   1, &iq_matrix[surface_index],\n                                   &iqmatrix_buf);\n        CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n        if (surface_index == 0) {\n            va_status = vaCreateBuffer(va_dpy, context_id,\n                                       VASliceParameterBufferType,\n                                       sizeof(VASliceParameterBufferH264),\n                                       4,\n                                       &slice_param_surface0[0], &slice_param_buf);\n        } else {\n            va_status = vaCreateBuffer(va_dpy, context_id,\n                                       VASliceParameterBufferType,\n                                       sizeof(VASliceParameterBufferH264),\n                                       2,\n                                       &slice_param_surface1[0], &slice_param_buf);\n        }\n        CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n        va_status = vaCreateBuffer(va_dpy, context_id,\n                                   VASliceDataBufferType,\n                                   surface_index == 0 ? sizeof(avc_clip) : sizeof(avc_clip1),\n                                   1,\n                                   surface_index == 0 ? avc_clip : avc_clip1,\n                                   &slice_data_buf);\n        CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n        /* Create StreamOut va buffer */\n        va_status = vaCreateBuffer(va_dpy, context_id,\n                                   VADecodeStreamoutBufferType,\n                                   streamout_buffsize,\n                                   1, NULL, &streamout_buf);\n        CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n        tmp_buff_ids[0] = pic_param_buf;\n        tmp_buff_ids[1] = iqmatrix_buf;\n        tmp_buff_ids[2] = slice_param_buf;\n        tmp_buff_ids[3] = slice_data_buf;\n        tmp_buff_ids[4] = streamout_buf;\n\n        va_status = vaBeginPicture(va_dpy, context_id, surface_ids[surface_index]);\n        CHECK_VASTATUS(va_status, \"vaBeginPicture\");\n\n        va_status = vaRenderPicture(va_dpy, context_id, tmp_buff_ids, 5);\n        CHECK_VASTATUS(va_status, \"vaRenderPicture\");\n\n        va_status = vaEndPicture(va_dpy, context_id);\n        CHECK_VASTATUS(va_status, \"vaEndPicture\");\n\n        va_status = vaSyncSurface(va_dpy, surface_ids[surface_index]);\n        CHECK_VASTATUS(va_status, \"vaSyncSurface\");\n\n        va_status = vaQuerySurfaceStatus(va_dpy, surface_ids[surface_index], &surface_status);//to check surface_status if needed\n        CHECK_VASTATUS(va_status, \"vaQuerySurfaceStatus\");\n\n        /*map streamout buffer to dump*/\n        VADecStreamOutData *dec_streamout_buf = (VADecStreamOutData *)malloc(streamout_buffsize);\n        if (NULL == dec_streamout_buf) {\n            printf(\"Failed to malloc for dec streamout buf.\\n\");\n            assert(0);\n        }\n        va_status = vaMapBuffer(va_dpy, streamout_buf, (void **)(&pbuf));\n        CHECK_VASTATUS(va_status, \"vaMapBuffer\");\n        memcpy(dec_streamout_buf, pbuf, streamout_buffsize);// to check streamout data for usage\n        va_status = vaUnmapBuffer(va_dpy, streamout_buf);\n        CHECK_VASTATUS(va_status, \"vaUnmapBuffer\");\n\n        if (is_dump_streamout && surface_index != 0) {\n            //dump streamout buffer to local file\n            VADecStreamOutData *temp_dec_streamout_buf = dec_streamout_buf;\n            unsigned int i;\n            for (i = 0; i < mb_counts && temp_dec_streamout_buf != NULL; i++) {\n                dumpMvs(temp_dec_streamout_buf++, i);\n            }\n        }\n\n        if (dec_streamout_buf) {\n            free(dec_streamout_buf);\n        }\n    }\n\n    printf(\"press any key to exit\\n\");\n    getchar();\n\n    vaDestroySurfaces(va_dpy, surface_ids, 2);\n    vaDestroyConfig(va_dpy, config_id);\n    vaDestroyContext(va_dpy, context_id);\n\n    vaTerminate(va_dpy);\n    va_close_display(va_dpy);\n    return 0;\n}\n"
  },
  {
    "path": "vendor/intel/avcstreamoutdemo.h",
    "content": "/*\n * Copyright (c) 2018 Intel Corporation. All Rights Reserved.\n *\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the\n * \"Software\"), to deal in the Software without restriction, including\n * without limitation the rights to use, copy, modify, merge, publish,\n * distribute, sub license, and/or sell copies of the Software, and to\n * permit persons to whom the Software is furnished to do so, subject to\n * the following conditions:\n *\n * The above copyright notice and this permission notice (including the\n * next paragraph) shall be included in all copies or substantial portions\n * of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR\n * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n/**\n* \\file avcstreamoutdemo.h\n*\n* This file contains the decode streamout layout.\n*/\n\n#ifndef _AVC_STREAMOUT_DEMO_H_\n#define _AVC_STREAMOUT_DEMO_H_\n\ntypedef signed dw;\n\n/*\n * avc streamout layout\n*/\ntypedef struct {\n    // dw 0\n    union {\n        struct {\n            dw   InterMbMode             : 2;    // Valid only if IntraMbFlag is inter.\n            dw   MbSkipFlag              : 1;    // Cuurently always set to 0\n            dw                           : 1;    // MBZ\n            dw   IntraMbMode             : 2;    // Valid for Inter MB, Used in conjunction with MbType\n            dw                           : 1;    // MBZ\n            dw   MbPolarity              : 1;    // FieldMB polarity\n            dw   MbType5Bits             : 5;    // Matches best MB mode. In H.264 spec: Table 7-11 for Intra; Table 7-14 for Inter.\n            dw   IntraMbFlag             : 1;    // Set if MB is intra, unset if MB is inter\n            dw   MbFieldFlag             : 1;    // Set if field MB, unset if frame MB\n            dw   Transform8x8Flag        : 1;    // Set if current MB uses 8x8 transforms\n            dw                           : 1;    // MBZ\n            dw   CodedPatternDC          : 3;    // AVC Only. Indicates whether DC coeffs are sent. Y is most significant bit.\n            dw   EdgeFilterFlag          : 3;    // AVC.\n            dw                           : 1;    // MBZ\n            dw   PackedMvNum             : 8;    // Debug only. Specifies number of MVs in packed motion vector form\n        };\n        struct {\n            dw   Value;\n        };\n    } DW0;\n\n    // dw 1\n    union {\n        struct {\n            dw   MbXCnt                  : 16;   // Horizontal Origin of MB in dest piture in units of MBs\n            dw   MbYCnt                  : 16;   // Vertical Origin of MB in dest piture in units of MBs\n        };\n        struct {\n            dw   Value;\n        };\n    } DW1;\n\n    // dw 2\n    union {\n        struct {\n            dw   CbpAcY                  : 16;   // Coded block pattern for Y.\n            dw   CbpAcU                  : 4;    // Coded block pattern for U\n            dw   CbpAcV                  : 4;    // Coded block pattern for V\n            dw                           : 6;    // Reserved\n            dw   LastMBOfSliceFlag       : 1;    // Indicates current MB is last in slice. Data not right\n            dw   ConcealMBFlag           : 1;    // Specifies in MB is a conceal MB.\n        };\n        struct {\n            dw   Value;\n        };\n    } DW2;\n\n    // dw 3\n    union {\n        struct {\n            dw   QpPrimeY                : 7;    // AVC: Per-MB QP for luma.\n            dw   QScaleType              : 1;    // MPEG2 only\n            dw   MbClock16               : 8;    // MB compute clocks in 16-clock units\n            dw   NzCoefCountMB           : 9;    // All coded coefficients in MB\n            dw                           : 3;    // Reserved\n            dw   Skip8x8Pattern          : 4;    // AVC Only. Indicates which of the 8x8 sub-blocks uses predicted MVs\n        };\n        struct {\n            dw   Value;\n        };\n    } DW3;\n\n\n    // dw 4\n    union {\n        struct {\n            dw   LumaIntraPredModes0     : 16;   // AVC only\n            dw   LumaIntraPredModes1     : 16;   // AVC only\n        } Intra;\n        struct {\n            dw   SubMbShape              : 8;    // Indicates sub-block partitioning for each 8x8 sub-block\n            dw   SubMbPredModes          : 8;    // Indicates prediction mode for each 8x8 sub-block\n            dw                           : 16;   // Reserved\n        } Inter;\n        struct {\n            dw   Value;\n        };\n    } DW4;\n\n    // dw 5\n    union {\n        struct {\n            dw   LumaIntraPredModes2     : 16;   // AVC only\n            dw   LumaIntraPredModes3     : 16;   // AVC only\n        } Intra;\n        struct {\n            dw   FrameStorIDL0_0     : 8;\n            dw   FrameStorIDL0_1     : 8;\n            dw   FrameStorIDL0_2     : 8;\n            dw   FrameStorIDL0_3     : 8;\n        } Inter;\n        struct {\n            dw   Value;\n        };\n    } DW5;\n\n    // dw 6\n    union {\n        struct {\n            dw   MbIntraStruct           : 8;    // Indicates which neighbours can be used for intra-prediction\n            dw                           : 24;   // Reserved\n        } Intra;\n        struct {\n            dw   FrameStorIDL1_0     : 8;\n            dw   FrameStorIDL1_1     : 8;\n            dw   FrameStorIDL1_2     : 8;\n            dw   FrameStorIDL1_3     : 8;\n        } Inter;\n        struct {\n            dw   Value;\n        };\n    } DW6;\n\n    // dw 7\n    union {\n        struct {\n            dw   SubBlockCodeTypeY0      : 2;    // VC-1. Specifies if 8x8, 8x4, 4x8, 4x4\n            dw   SubBlockCodeTypeY1      : 2;    // VC-1. Specifies if 8x8, 8x4, 4x8, 4x4\n            dw   SubBlockCodeTypeY2      : 2;    // VC-1. Specifies if 8x8, 8x4, 4x8, 4x4\n            dw   SubBlockCodeTypeY3      : 2;    // VC-1. Specifies if 8x8, 8x4, 4x8, 4x4\n            dw   SubBlockCodeTypeU       : 2;    // VC-1. Specifies if 8x8, 8x4, 4x8, 4x4\n            dw   SubBlockCodeTypeV       : 2;    // VC-1. Specifies if 8x8, 8x4, 4x8, 4x4\n            dw                           : 8;\n            dw   MvFieldSelect           : 4;    // Field polatity for VC-1 and MPEG2\n            dw                           : 8;\n        };\n        struct {\n            dw   Value;\n        };\n    } DW7;\n\n    // dw 8-15 for inter MBs only\n    union {\n        struct {\n            dw   MvFwd_x                : 16;   // x-component of fwd MV for 8x8 or 4x4 sub-block\n            dw   MvFwd_y                : 16;   // y-component of fwd MV for 8x8 or 4x4 sub-block\n            dw   MvBwd_x                : 16;   // x-component of bwd MV for 8x8 or 4x4 sub-block\n            dw   MvBwd_y                : 16;   // y-component of bwd MV for 8x8 or 4x4 sub-block\n        };\n        struct {\n            dw   Value[2];\n        };\n    } QW8[4];\n\n} VADecStreamOutData;\n#endif /*_AVC_STREAMOUT_DEMO_H_*/\n"
  },
  {
    "path": "vendor/intel/meson.build",
    "content": "executable('avcstreamoutdemo', [ 'avcstreamoutdemo.c' ],\n           dependencies: libva_display_dep,\n           install: true)\n"
  },
  {
    "path": "vendor/intel/sfcsample/DecodeParamBuffer.h",
    "content": "/*\n * * Copyright (C) 2018 Intel Corporation. All Rights Reserved.\n * *\n ** Permission is hereby granted, free of charge, to any person obtaining a\n * * copy of this software and associated documentation files (the\n * * \"Software\"), to deal in the Software without restriction, including\n * * without limitation the rights to use, copy, modify, merge, publish,\n * * distribute, sub license, and/or sell copies of the Software, and to\n * * permit persons to whom the Software is furnished to do so, subject to\n * * the following conditions:\n * *\n * * The above copyright notice and this permission notice (including the\n * * next paragraph) shall be included in all copies or substantial portions\n * * of the Software.\n * *\n * * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n * * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n * * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n * * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR\n * * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n * * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n * */\n\n#pragma once\n\ntypedef unsigned int VA_RT_Format;\n\n// AVC Picture Parameters\nconst uint8_t g_PicParams_AVC[] = {\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00,\n    0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF,\n    0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00,\n    0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF,\n    0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00,\n    0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF,\n    0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00,\n    0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF,\n    0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x15, 0x00, 0x11, 0x00, 0x00, 0x00, 0x05, 0x00, 0x11, 0x80, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00\n};\n\n// AVC slice Parameters\nconst uint8_t g_SlcParams_AVC[] = {\n    0xD8, 0x87, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0x00, 0x00, 0x00,\n    0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF,\n    0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00,\n    0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF,\n    0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00,\n    0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF,\n    0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00,\n    0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF,\n    0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00,\n    0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF,\n    0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00,\n    0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF,\n    0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00,\n    0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF,\n    0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00,\n    0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF,\n    0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00,\n    0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF,\n    0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00,\n    0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF,\n    0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00,\n    0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF,\n    0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00,\n    0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF,\n    0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00,\n    0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF,\n    0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00,\n    0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF,\n    0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00,\n    0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF,\n    0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00,\n    0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF,\n    0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00,\n    0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00\n};\n\n// AVC Qmatrix Parameters\nconst uint8_t g_Qmatrix_AVC[] = {\n    0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10,\n    0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10,\n    0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10,\n    0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10,\n    0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10,\n    0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00\n};\n\n// AVC Bitstream Parameters\nconst uint8_t g_Bitstream_AVC[] = {\n    0x25, 0x88, 0x84, 0x0B, 0xC0, 0xB5, 0x80, 0xC4, 0x6A, 0xBC, 0x32, 0x00, 0x02, 0x00, 0x7C, 0xBA,\n    0xD4, 0xBA, 0x03, 0x76, 0x65, 0x9B, 0xE8, 0x48, 0x2A, 0x6F, 0xF4, 0xC5, 0x58, 0x01, 0xC4, 0x81,\n    0xBA, 0x0D, 0xFA, 0x9F, 0xCF, 0x31, 0x18, 0x0C, 0xC2, 0x29, 0xA9, 0x1B, 0xF3, 0x70, 0xC7, 0x00,\n    0x03, 0x70, 0xA5, 0x00, 0x00, 0x81, 0xD7, 0x81, 0xD9, 0x6B, 0x81, 0x23, 0xFA, 0x80, 0x74, 0x3B,\n    0xB8, 0x70, 0x3A, 0x32, 0xDA, 0xEB, 0x7A, 0x63, 0x33, 0x09, 0x28, 0x9C, 0xF6, 0xF9, 0xFC, 0x67,\n    0xA0, 0x02, 0x18, 0xC1, 0x2B, 0x86, 0x72, 0x5A, 0x25, 0x6B, 0x80, 0x2D, 0x29, 0x9A, 0x77, 0x2F,\n    0xAA, 0x69, 0x5D, 0xA9, 0x8E, 0x3F, 0xCB, 0xA7, 0x86, 0x59, 0x19, 0xD0, 0xC1, 0x0C, 0x91, 0xD0,\n    0xC5, 0x08, 0x91, 0xC1, 0x7A, 0x62, 0x06, 0xA7, 0x17, 0x01, 0x48, 0x5F, 0x5D, 0xF5, 0xF7, 0xF8,\n    0x6D, 0x04, 0x94, 0x0F, 0x09, 0x7C, 0x36, 0x06, 0xED, 0x77, 0x60, 0x0C, 0x0B, 0x9D, 0xA3, 0x7E,\n    0x11, 0xCC, 0xE6, 0x18, 0x6F, 0xF4, 0x25, 0x68, 0xAA, 0xAA, 0xC6, 0x27, 0x21, 0x68, 0x8D, 0x53,\n    0xEC, 0x53, 0xC0, 0x3A, 0x15, 0x3A, 0x76, 0x65, 0x53, 0xEF, 0x9C, 0x01, 0xED, 0x2C, 0xCD, 0x60,\n    0xD2, 0xA0, 0x05, 0xEC, 0x22, 0xAF, 0xC8, 0xCF, 0x72, 0x49, 0xEC, 0x64, 0x7A, 0x15, 0x01, 0xD9,\n    0x53, 0xFF, 0x74, 0xC0, 0x35, 0xBE, 0x98, 0xCC, 0x80, 0x1B, 0xEC, 0x2A, 0x00, 0x46, 0x8C, 0xDD,\n    0xCF, 0xA7, 0x9A, 0x64, 0x02, 0x51, 0x0A, 0x33, 0xC3, 0x89, 0x03, 0x00, 0x1E, 0x5D, 0x0B, 0x53,\n    0x1A, 0xEB, 0xDC, 0xF2, 0x0A, 0x6C, 0x06, 0xCA, 0x08, 0xA1, 0x7F, 0x98, 0x61, 0xB1, 0x75, 0xD7,\n    0x8F, 0xB0, 0xF4, 0xBB, 0xBA, 0x95, 0xFF, 0x2C, 0xAD, 0x38, 0x01, 0x92, 0xC7, 0x92, 0x5A, 0xEF,\n    0x6F, 0x04, 0x8C, 0x1F, 0xCD, 0x15, 0x26, 0x74, 0x61, 0xDF, 0x78, 0x04, 0x42, 0x01, 0x11, 0x1F,\n    0xE1, 0xE3, 0xEF, 0x00, 0x1B, 0x57, 0xC6, 0x0E, 0x8C, 0x50, 0xE8, 0xDA, 0x37, 0x32, 0xFF, 0x1B,\n    0x09, 0xFF, 0x2B, 0xE6, 0x62, 0xD7, 0x41, 0xEB, 0x92, 0xA3, 0x30, 0x6A, 0x0C, 0x91, 0x9C, 0xAC,\n    0x27, 0x6D, 0x4F, 0x72, 0xD0, 0xAA, 0x08, 0xEC, 0xFD, 0x9C, 0x15, 0x48, 0x7C, 0x03, 0x40, 0x70,\n    0xE3, 0x2C, 0x14, 0xA1, 0x45, 0x43, 0xAC, 0x56, 0xED, 0x6C, 0x98, 0xAF, 0x77, 0x80, 0xDF, 0xB2,\n    0x01, 0xEE, 0x36, 0x3F, 0xC7, 0xFA, 0xDF, 0xFA, 0x18, 0x3C, 0x1C, 0x8D, 0x04, 0x00, 0x10, 0xA4,\n    0x00, 0x12, 0x11, 0x02, 0x28, 0x5A, 0x70, 0xC8, 0x17, 0x14, 0xDF, 0x80, 0x18, 0x04, 0x7A, 0x2D,\n    0x06, 0x20, 0x8D, 0xC0, 0x50, 0x04, 0x57, 0x11, 0x8D, 0x55, 0xEC, 0x1E, 0xE6, 0xB9, 0xCD, 0x4E,\n    0xA8, 0xAB, 0xDD, 0x80, 0x27, 0xB1, 0x0A, 0x00, 0x02, 0x04, 0x42, 0xCE, 0xC5, 0xCD, 0x03, 0x16,\n    0x6A, 0x16, 0xFF, 0xD5, 0x76, 0xBE, 0x30, 0x09, 0x75, 0x09, 0xB6, 0x0E, 0x94, 0xC2, 0x73, 0x81,\n    0x85, 0xDB, 0x25, 0x5F, 0x9F, 0xC8, 0x8E, 0x80, 0x00, 0x40, 0x00, 0xF0, 0x1D, 0x39, 0x72, 0xC9,\n    0x77, 0x5E, 0xE8, 0x60, 0x1C, 0x71, 0x61, 0xC5, 0x4C, 0x06, 0xA4, 0xD4, 0xA0, 0x3D, 0x3D, 0x02,\n    0x25, 0xF3, 0x43, 0x8B, 0x9F, 0x29, 0xF5, 0x7D, 0x28, 0x6D, 0xA9, 0xF4, 0x08, 0xF5, 0xC6, 0x8C,\n    0x4E, 0xC5, 0x7B, 0xE3, 0x00, 0x00, 0xCF, 0x8A, 0xF7, 0x73, 0xB1, 0x51, 0xA3, 0x9C, 0x4C, 0xD3,\n    0xFF, 0xF5, 0x82, 0x09, 0x5C, 0x02, 0x04, 0x41, 0x9C, 0x09, 0x45, 0xB9, 0x9D, 0x30, 0x04, 0x8E,\n    0xE0, 0x4A, 0x36, 0x82, 0x16, 0x2E, 0xEC, 0x41, 0x49, 0xEF, 0x04, 0x98, 0x88, 0x4D, 0xB0, 0x3A,\n    0x82, 0x51, 0xA1, 0xC1, 0x2C, 0x9D, 0xC1, 0xC4, 0xAC, 0xCE, 0xF9, 0x0F, 0x03, 0x6B, 0x60, 0x49,\n    0x2E, 0x0A, 0x4E, 0x7E, 0xB1, 0x43, 0x0F, 0x2F, 0x5A, 0x82, 0x2B, 0x98, 0xBE, 0xDD, 0xA2, 0x41,\n    0x97, 0xE6, 0xE1, 0xF5, 0xFD, 0x2E, 0xDE, 0x09, 0x57, 0x6A, 0x67, 0xF4, 0xCE, 0x00, 0x3D, 0xE5,\n    0x62, 0x98, 0x82, 0xF9, 0x76, 0x72, 0x00, 0xE7, 0x2C, 0x46, 0xD8, 0x33, 0xFE, 0xC7, 0xA9, 0x8C,\n    0xD0, 0xAF, 0xC8, 0xDD, 0x18, 0x15, 0x73, 0x36, 0xB2, 0x78, 0x96, 0x3A, 0x82, 0x17, 0x0A, 0xFF,\n    0x66, 0x50, 0x29, 0x84, 0x8E, 0xD1, 0x34, 0x9B, 0x77, 0xFD, 0x21, 0xC8, 0x37, 0x98, 0x06, 0x41,\n    0x2D, 0xB2, 0x31, 0xB7, 0xFF, 0x53, 0xFC, 0x38, 0x29, 0xCD, 0xBA, 0xCC, 0x72, 0x52, 0xC1, 0xE1,\n    0x0C, 0x08, 0xA1, 0x01, 0x01, 0xDE, 0x10, 0x05, 0xD9, 0x83, 0x8F, 0xE5, 0x2F, 0xB9, 0xD9, 0x94,\n    0x7A, 0x02, 0x6A, 0xB8, 0xE3, 0xD2, 0x86, 0xA5, 0x57, 0x4F, 0x53, 0x3E, 0x28, 0x0D, 0x47, 0xC6,\n    0xF5, 0xED, 0x8E, 0xE8, 0x97, 0x07, 0xB8, 0xC8, 0x95, 0x7E, 0xB2, 0xA4, 0x92, 0xB0, 0x51, 0x51,\n    0x5B, 0xE2, 0x4F, 0xF1, 0xF6, 0x91, 0xCF, 0x22, 0x0E, 0x40, 0xA5, 0x5F, 0x3C, 0x8A, 0xFF, 0xFD,\n    0x14, 0x28, 0xBC, 0xE3, 0xF5, 0xD8, 0x58, 0xD8, 0x00, 0x08, 0x04, 0x34, 0x32, 0x80, 0x16, 0x14,\n    0x90, 0x96, 0x21, 0x03, 0x8F, 0xA7, 0x77, 0x35, 0xE9, 0x60, 0xB0, 0x5F, 0x22, 0x13, 0xDF, 0xD1,\n    0xA6, 0x13, 0xFF, 0x5E, 0x45, 0xFD, 0xF2, 0x4D, 0xF7, 0xDF, 0x03, 0x10, 0xE2, 0xA9, 0x37, 0xBB,\n    0xDC, 0x60, 0xEE, 0xC1, 0xAB, 0x3A, 0x34, 0x9F, 0x03, 0x9D, 0x6E, 0xCA, 0xD9, 0x2F, 0x6C, 0x90,\n    0x31, 0x70, 0x80, 0x00, 0x88, 0x21, 0xC1, 0x78, 0x92, 0xC2, 0xA2, 0xAF, 0x0D, 0xE5, 0xB7, 0x4C,\n    0xDD, 0x8F, 0x28, 0x70, 0xB4, 0xF8, 0xA1, 0xCC, 0x57, 0x03, 0x28, 0xD4, 0xC8, 0x00, 0xC8, 0x17,\n    0x11, 0x27, 0x9B, 0x41, 0x51, 0x15, 0x8B, 0xDF, 0x0A, 0x06, 0x52, 0x9B, 0x38, 0x71, 0xFA, 0x56,\n    0xC6, 0xF6, 0x98, 0x00, 0x5B, 0xD8, 0x6C, 0xEB, 0x9A, 0xDA, 0xC0, 0x8E, 0xD3, 0x65, 0x23, 0x70,\n    0xB9, 0x81, 0xC8, 0xF4, 0x7E, 0xF4, 0x21, 0x6C, 0x2D, 0x68, 0x40, 0xC6, 0xEB, 0x9A, 0x0A, 0x57,\n    0xCE, 0x2B, 0xBF, 0xBF, 0xAE, 0xE4, 0xC7, 0x55, 0xFD, 0xED, 0xFF, 0x69, 0xC8, 0x68, 0x5D, 0xF8,\n    0x28, 0xF7, 0x67, 0x05, 0xEF, 0x32, 0x0E, 0x25, 0xDF, 0xF3, 0xB1, 0xD7, 0x86, 0xFD, 0xD1, 0x08,\n    0xFD, 0x5C, 0x8D, 0x22, 0xE5, 0x9F, 0xAB, 0xF0, 0x7C, 0x2A, 0x16, 0x6E, 0x8D, 0x5B, 0xBB, 0x06,\n    0x2A, 0x3B, 0x2A, 0x1D, 0xB8, 0x18, 0x01, 0xA2, 0x05, 0x19, 0xC4, 0x57, 0xAC, 0x7D, 0x39, 0x60,\n    0x36, 0x40, 0x7F, 0x12, 0x8F, 0x55, 0x2F, 0xEB, 0x98, 0x61, 0xCE, 0xFA, 0x1E, 0x10, 0x33, 0x03,\n    0x14, 0x2F, 0x4E, 0x03, 0x93, 0x15, 0x90, 0x10, 0x4B, 0x7F, 0x4A, 0xD0, 0x30, 0x3F, 0x66, 0x04,\n    0xB4, 0xFA, 0x13, 0x24, 0x68, 0x1D, 0x74, 0xED, 0xC1, 0xD9, 0x71, 0x7D, 0xFA, 0xA4, 0x72, 0x00,\n    0x02, 0x25, 0xA8, 0xAF, 0x80, 0x01, 0xA7, 0xE4, 0xB8, 0xD1, 0x7C, 0xD9, 0x79, 0xA2, 0x01, 0x4B,\n    0xA8, 0x42, 0xCE, 0xB7, 0x53, 0x5B, 0x98, 0x5D, 0xA9, 0xED, 0x4F, 0x7C, 0x1D, 0xB9, 0xEE, 0xB3,\n    0x3E, 0x07, 0xDD, 0xA2, 0xCF, 0xBF, 0xFD, 0x83, 0xD4, 0xD4, 0xE7, 0x76, 0xB9, 0x07, 0x95, 0xAA,\n    0x9E, 0x15, 0x04, 0xBD, 0x93, 0x1B, 0x1D, 0xF1, 0xCA, 0x4B, 0xF5, 0x6E, 0xEC, 0x87, 0x4B, 0x10,\n    0x4F, 0x6F, 0xAF, 0xA4, 0x1E, 0xB2, 0x07, 0x96, 0x9F, 0xF7, 0xC1, 0xB4, 0x44, 0x7B, 0x06, 0xC0,\n    0xB6, 0x73, 0x07, 0x42, 0x94, 0xB2, 0xBE, 0xB8, 0x56, 0x6E, 0xA7, 0x5E, 0x1E, 0xD8, 0x14, 0xB7,\n    0x67, 0x14, 0x06, 0xA8, 0xD8, 0xAE, 0x4E, 0xD7, 0x83, 0x8A, 0x40, 0xFB, 0x1A, 0x99, 0x80, 0x25,\n    0x8B, 0x59, 0x80, 0xF1, 0xFA, 0xE2, 0x6B, 0x46, 0x66, 0x00, 0x6C, 0xE5, 0xF6, 0xD7, 0x46, 0xB7,\n    0x7F, 0x8A, 0x04, 0xCA, 0xED, 0xAA, 0x32, 0x2D, 0x01, 0x3D, 0xEA, 0xFB, 0x50, 0x8B, 0x12, 0xFD,\n    0xD1, 0xAE, 0x73, 0x08, 0x36, 0xF9, 0xB2, 0xD6, 0x45, 0x48, 0x40, 0x2C, 0x32, 0xFF, 0xFA, 0xF6,\n    0x51, 0x30, 0x87, 0xFE, 0xF8, 0x18, 0x84, 0x4E, 0xF4, 0x9E, 0x6E, 0xCD, 0x4D, 0xEC, 0x5B, 0x11,\n    0x19, 0x20, 0x76, 0xB1, 0x59, 0xBC, 0xA0, 0x44, 0x0E, 0xDF, 0x21, 0xA0, 0x0E, 0x97, 0xB2, 0x2F,\n    0x3A, 0x17, 0xBA, 0xC7, 0x3E, 0xA0, 0x8A, 0xAC, 0xB5, 0xE8, 0x42, 0xB4, 0x0E, 0x7C, 0x0B, 0xA6,\n    0x12, 0x47, 0x53, 0xDA, 0x09, 0x72, 0x4D, 0x7E, 0xE4, 0x78, 0x2D, 0x14, 0xA4, 0x59, 0xEF, 0x59,\n    0x94, 0x25, 0x21, 0x7B, 0x45, 0x71, 0xD4, 0xB9, 0x78, 0x1E, 0x51, 0xB4, 0x7F, 0xF6, 0x5E, 0x20,\n    0x4A, 0x3E, 0x52, 0x97, 0x38, 0x1E, 0x58, 0xA9, 0xE6, 0x64, 0x23, 0x37, 0x44, 0xA5, 0xD4, 0xEC,\n    0xF8, 0x50, 0xAC, 0xAA, 0xFD, 0x1F, 0x57, 0xC1, 0x43, 0x53, 0x60, 0x0B, 0x55, 0xFE, 0xDB, 0x4F,\n    0xCB, 0x65, 0x65, 0x00, 0x36, 0x46, 0xDC, 0x87, 0xC1, 0x2C, 0x78, 0xBC, 0x27, 0x7F, 0x5A, 0xC7,\n    0xEE, 0x79, 0x08, 0x41, 0xFD, 0xEF, 0x64, 0xBC, 0x04, 0xD6, 0xF3, 0x26, 0x2F, 0x29, 0x6E, 0x5A,\n    0x41, 0x20, 0xAA, 0xEE, 0x04, 0x86, 0x49, 0xE1, 0xA6, 0x67, 0x9A, 0x1A, 0xD2, 0x41, 0xF9, 0xDD,\n    0x49, 0x88, 0x05, 0x8C, 0x97, 0xBE, 0x80, 0x65, 0xA2, 0x13, 0xE4, 0x47, 0x00, 0x35, 0xF4, 0x94,\n    0xDB, 0xC0, 0x69, 0x2D, 0xFD, 0xD4, 0xF4, 0xEE, 0x80, 0x3E, 0xE7, 0x0D, 0x64, 0x15, 0xE3, 0xCB,\n    0xC8, 0xCB, 0x0D, 0xE0, 0x2D, 0xDD, 0xAB, 0x71, 0x64, 0x1C, 0x62, 0xCF, 0x5E, 0xFF, 0x94, 0xCD,\n    0x16, 0x9B, 0xB6, 0xAA, 0x27, 0xC3, 0x49, 0x55, 0xEF, 0x7E, 0x81, 0xE4, 0xDD, 0xD6, 0xEA, 0xB4,\n    0x28, 0xD6, 0x24, 0xBD, 0x50, 0xFB, 0x78, 0x9B, 0xAF, 0xFE, 0xB5, 0xE2, 0x62, 0x11, 0xB3, 0x06,\n    0x37, 0x11, 0xB0, 0x39, 0x2F, 0x3D, 0x9B, 0x0E, 0xDF, 0x18, 0x17, 0x88, 0x81, 0x7B, 0xA3, 0x6A,\n    0xD5, 0xDB, 0xB4, 0x99, 0x6F, 0x64, 0xEC, 0x9F, 0x10, 0xBE, 0x26, 0x24, 0xC7, 0x8F, 0xA8, 0x69,\n    0x0E, 0xDF, 0x55, 0x44, 0xAB, 0xCC, 0xB4, 0x41, 0x22, 0xCE, 0x14, 0xA9, 0x6A, 0xE5, 0xAE, 0xA4,\n    0xAD, 0x60, 0x0E, 0xC9, 0x6B, 0x9E, 0x6B, 0x01, 0xF8, 0x23, 0x96, 0xB0, 0x52, 0x06, 0xE4, 0xAC,\n    0x48, 0xFD, 0x0F, 0x3D, 0xA1, 0x39, 0xDF, 0xF8, 0x88, 0x18, 0x93, 0x19, 0xF8, 0xE5, 0x80, 0x1C,\n    0xDA, 0xB3, 0xF6, 0x06, 0x33, 0xB3, 0xFD, 0xF5, 0xD2, 0x8D, 0xE9, 0xA0, 0xE5, 0x7A, 0xDE, 0x80,\n    0xC6, 0x83, 0xF9, 0x67, 0xBD, 0x92, 0xA3, 0xCC, 0xEC, 0x73, 0xDA, 0x32, 0xCF, 0x12, 0x0D, 0xEA,\n    0x2D, 0x6F, 0xC4, 0xED, 0x97, 0xF3, 0xEA, 0xD8, 0xF0, 0xA6, 0x9B, 0xFD, 0xE5, 0x1D, 0xE6, 0x9F,\n    0x22, 0xC8, 0xB8, 0x0D, 0xCE, 0x08, 0x88, 0xE8, 0x9F, 0x4F, 0x27, 0xBF, 0x5C, 0xBD, 0xEB, 0x2C,\n    0x53, 0x9A, 0x1C, 0x6B, 0x20, 0xA7, 0x7F, 0x23, 0x17, 0x47, 0x92, 0xBE, 0xD5, 0xDD, 0xED, 0xA7,\n    0xC3, 0xCC, 0x88, 0x02, 0x91, 0xB0, 0x6B, 0xDE, 0xFA, 0xE0, 0x3D, 0xF8, 0x0A, 0x9D, 0x27, 0x6F,\n    0xC5, 0x70, 0x33, 0x2E, 0xCE, 0xF8, 0x5E, 0xEB, 0x1F, 0x2A, 0x09, 0xE1, 0x7D, 0x67, 0xFF, 0x7D,\n    0x65, 0xBD, 0xAD, 0x91, 0x81, 0x6D, 0xD5, 0x1F, 0x94, 0x44, 0x99, 0xC2, 0x9C, 0x83, 0x3B, 0xFF,\n    0x6A, 0x77, 0x32, 0xBA, 0x0B, 0x70, 0xB0, 0x2C, 0x48, 0xD6, 0x81, 0x56, 0x3A, 0x9A, 0x0F, 0x81,\n    0xA1, 0x09, 0x11, 0xBA, 0x2E, 0x22, 0xA7, 0x10, 0x95, 0x4C, 0xC4, 0x97, 0xCB, 0x3C, 0x28, 0x10,\n    0xC7, 0x69, 0x23, 0xDF, 0x0E, 0x37, 0xCB, 0x4A, 0x3F, 0x6F, 0xE3, 0xB6, 0xE0, 0xED, 0x4C, 0x0F,\n    0x11, 0x1F, 0x15, 0xBD, 0xBC, 0xE2, 0xC0, 0x89, 0x1A, 0x30, 0xD7, 0xD4, 0x5F, 0x85, 0x1B, 0xFD,\n    0x97, 0xBF, 0x42, 0x09, 0xD9, 0xF6, 0x2B, 0x86, 0xEB, 0x53, 0xD6, 0x9C, 0x38, 0xF3, 0x7D, 0xBA,\n    0x69, 0x1A, 0x7D, 0x53, 0x13, 0xE0, 0x87, 0xA1, 0x4E, 0xB7, 0xD6, 0xDD, 0x24, 0x64, 0x3B, 0x64,\n    0xCA, 0x47, 0xF3, 0x33, 0x10, 0x92, 0xEE, 0xF8, 0xF8, 0x13, 0x23, 0xAF, 0xAE, 0x24, 0x1B, 0x24,\n    0x24, 0x21, 0x9F, 0x70, 0x2F, 0x0F, 0x3E, 0x66, 0x3D, 0x17, 0x79, 0xA7, 0x99, 0xA1, 0x03, 0x17,\n    0xD6, 0x40, 0xCE, 0x62, 0xD3, 0x7F, 0xFD, 0xFA, 0xA6, 0x4C, 0xFF, 0x29, 0x6D, 0x1D, 0x7B, 0xFA,\n    0xA8, 0x73, 0x52, 0xBA, 0x2F, 0x6F, 0x99, 0xF6, 0x08, 0x5A, 0x29, 0xF9, 0xD9, 0x88, 0x97, 0x7A,\n    0x2C, 0x2E, 0x11, 0x04, 0x79, 0x4B, 0x14, 0xBD, 0x22, 0x6F, 0xFE, 0xB8, 0xBF, 0x39, 0x54, 0x89,\n    0x9E, 0x84, 0xD3, 0xEC, 0x99, 0x00, 0x61, 0xD9, 0x12, 0x5B, 0xDF, 0x54, 0xBF, 0x9A, 0x82, 0xA7,\n    0x77, 0x77, 0x6F, 0x0F, 0x0D, 0x4A, 0x06, 0xBE, 0xCA, 0x26, 0xE5, 0x73, 0xEE, 0xF6, 0x71, 0x7A,\n    0xD3, 0xEF, 0x5B, 0x8D, 0xDA, 0x09, 0x2A, 0x6D, 0xAF, 0x40, 0x62, 0x17, 0x79, 0x8A, 0x6F, 0xBE,\n    0xE4, 0x2E, 0x60, 0xFD, 0x69, 0x6F, 0xAD, 0xF4, 0x11, 0x1B, 0x9D, 0xBF, 0xE6, 0xFB, 0x33, 0xA8,\n    0x0B, 0x18, 0x1F, 0xA0, 0xB4, 0xEB, 0x47, 0xAA, 0x8E, 0x5C, 0x49, 0x7C, 0x00, 0x78, 0x88, 0x2C,\n    0xFD, 0xEA, 0x88, 0x3B, 0x26, 0xCB, 0x6E, 0xBB, 0xED, 0x2C, 0xE9, 0xE2, 0xE8, 0x26, 0xF8, 0x4B,\n    0xAD, 0xEE, 0x60, 0xFA, 0x6C, 0x45, 0x37, 0x3A, 0x92, 0xB0, 0x7A, 0x04, 0x84, 0x4B, 0x97, 0xFC,\n    0x50, 0x1A, 0x8B, 0xD6, 0xB8, 0x7F, 0xEE, 0x38, 0x84, 0x93, 0xC0, 0xFF, 0xA4, 0x16, 0xB5, 0xAC,\n    0xF8, 0x35, 0x2C, 0xC9, 0x8B, 0x7D, 0x22, 0x8E, 0x07, 0x6E, 0xB1, 0xBA, 0x7F, 0xCF, 0xC9, 0x2A,\n    0x71, 0x80, 0xF1, 0x59, 0x14, 0x4A, 0x1C, 0x5D, 0xD7, 0xD2, 0xDF, 0x31, 0x74, 0xB4, 0x8C, 0x3F,\n    0xDF, 0xF2, 0x2C, 0xA2, 0x5D, 0x41, 0x3A, 0xE6, 0xCE, 0x5F, 0x54, 0x72, 0x40, 0x0D, 0x5F, 0xFF,\n    0x9E, 0xB9, 0x64, 0x40, 0x15, 0xA7, 0x4A, 0x08, 0x7B, 0xD8, 0x8B, 0x2F, 0x67, 0x34, 0xE9, 0x07,\n    0x7E, 0xAF, 0x90, 0x68, 0x01, 0x17, 0x76, 0x7F, 0xB3, 0x63, 0xDA, 0x3B, 0xA6, 0xD4, 0xDE, 0x6E,\n    0x00, 0xB2, 0x33, 0x85, 0x7C, 0x5B, 0x27, 0xE6, 0x41, 0x4F, 0x7A, 0x32, 0x45, 0xAD, 0x7E, 0xBF,\n    0x9C, 0x85, 0x99, 0x0E, 0x7F, 0xFC, 0xE5, 0xA0, 0x2D, 0xA0, 0xBD, 0x86, 0x86, 0x04, 0x0B, 0xAC,\n    0xBE, 0x3D, 0xF8, 0x49, 0x2F, 0xF2, 0xA3, 0x6F, 0x43, 0x66, 0xD5, 0x60, 0x92, 0x85, 0x43, 0x8D,\n    0xFF, 0xF7, 0x97, 0x11, 0xB4, 0x4A, 0xCD, 0x7A, 0x59, 0x94, 0xC0, 0x05, 0xA2, 0xD2, 0x7E, 0x57,\n    0xFA, 0xAC, 0x4C, 0x91, 0x47, 0xB4, 0x90, 0xEB, 0xFA, 0xF6, 0x9B, 0xCE, 0x94, 0xA1, 0x6D, 0xFC,\n    0x9B, 0x62, 0x8F, 0xA1, 0x0B, 0xEA, 0x12, 0x86, 0xFF, 0xBE, 0x0D, 0xD7, 0x02, 0x8B, 0xE0, 0x02,\n    0xF8, 0x67, 0x15, 0x68, 0xE2, 0x06, 0x10, 0x69, 0x45, 0x71, 0x8A, 0x39, 0x1C, 0x50, 0x81, 0x9A,\n    0x6E, 0x0D, 0xC7, 0x89, 0x79, 0x3E, 0x0A, 0x50, 0x05, 0x73, 0x55, 0x00, 0x01, 0x00, 0x05, 0xCF,\n    0x83, 0x91, 0x8B, 0x10, 0xA9, 0xD7, 0x5E, 0xA8, 0x72, 0x99, 0x01, 0xF1, 0xF9, 0x8B, 0xDE, 0xB8,\n    0x4C, 0x05, 0xB9, 0xE1, 0xEB, 0xFC, 0xA3, 0xCD, 0x11, 0xE4, 0x28, 0x03, 0xAF, 0xEB, 0xDA, 0x64,\n    0x1F, 0xB1, 0x9E, 0x5F, 0xC8, 0xAF, 0xD9, 0x28, 0xFC, 0x6F, 0x8C, 0x46, 0x5F, 0xFE, 0xC2, 0xA9,\n    0x24, 0x79, 0x96, 0xFB, 0xF8, 0xD3, 0x86, 0x4D, 0xFF, 0x62, 0x93, 0x8D, 0x8F, 0xB3, 0x45, 0x1C,\n    0x00, 0x85, 0xF8, 0x87, 0xE6, 0x45, 0x17, 0x02, 0x7F, 0x22, 0xEE, 0xE7, 0x20, 0x0B, 0xC8, 0xDF,\n    0xD0, 0x59, 0x8C, 0x69, 0x60, 0xAF, 0x28, 0x59, 0xDB, 0x57, 0x72, 0x96, 0x71, 0x64, 0x8C, 0xB0,\n    0xE6, 0x7F, 0x2F, 0x63, 0x8A, 0x23, 0x91, 0x27, 0xFF, 0x01, 0x8B, 0x83, 0xAC, 0x2A, 0x6E, 0xA2,\n    0x23, 0xBC, 0x70, 0xF6, 0x88, 0x4D, 0x42, 0x44, 0x68, 0x67, 0x28, 0xEF, 0x40, 0x1B, 0x0B, 0xB0,\n    0x1D, 0xCF, 0xD7, 0x61, 0x08, 0x56, 0x00, 0x5E, 0x0A, 0x1F, 0xF0, 0x05, 0x03, 0x2C, 0xF5, 0x27,\n    0x2B, 0x22, 0x7F, 0xBF, 0xB5, 0x96, 0xAB, 0xED, 0x1A, 0xBC, 0xBF, 0xD0, 0x6E, 0x16, 0xE8, 0xE4,\n    0x8D, 0x21, 0xF4, 0x26, 0x41, 0xA9, 0x7F, 0x3D, 0xA4, 0x6E, 0x30, 0x0D, 0x7D, 0x40, 0x84, 0xC0,\n    0x81, 0xC4, 0x82, 0x63, 0xF2, 0x88, 0xFC, 0xE7, 0x04, 0x4C, 0xA3, 0xAE, 0x1A, 0x9D, 0x54, 0x67,\n    0xCE, 0x2F, 0x4C, 0x8B, 0x5E, 0xD5, 0x64, 0x16, 0x12, 0x32, 0x72, 0xBD, 0x92, 0x80, 0x17, 0x9E,\n    0x82, 0x3A, 0xE6, 0xFE, 0xB5, 0x6A, 0xB5, 0xEC, 0x69, 0xBB, 0xFB, 0xE9, 0x52, 0x9E, 0xBA, 0xE3,\n    0x49, 0xFF, 0x6C, 0xC0, 0x73, 0x00, 0x90, 0x42, 0xBC, 0xB1, 0x8C, 0x29, 0xE3, 0x0C, 0xB5, 0x40,\n    0x0D, 0x0B, 0xC3, 0xAA, 0x8A, 0x0B, 0xFF, 0xD5, 0xEA, 0x75, 0x2A, 0xB8, 0xB7, 0x8A, 0x1E, 0xC5,\n    0xCE, 0x8D, 0xCC, 0xF2, 0x3B, 0xD9, 0xBF, 0xDA, 0x59, 0xC3, 0x85, 0x6C, 0x41, 0x4F, 0x33, 0xAE,\n    0x44, 0xC1, 0x91, 0xD4, 0xC7, 0xF5, 0x7B, 0x4E, 0x6D, 0xB9, 0x7F, 0xC7, 0x41, 0x51, 0x19, 0x45,\n    0x59, 0xAE, 0x3E, 0xD7, 0xBE, 0xAB, 0xB0, 0xF6, 0x43, 0x39, 0x4F, 0xBF, 0x6E, 0xB7, 0x3F, 0x34,\n    0xD9, 0x2F, 0xAA, 0x17, 0xD7, 0xFF, 0xEA, 0xA9, 0x01, 0x54, 0x0A, 0xBD, 0x77, 0x7E, 0xFC, 0x87,\n    0x0B, 0x48, 0x70, 0x3D, 0xF7, 0xB3, 0xFF, 0x6B, 0xE7, 0x8C, 0x1A, 0x8B, 0x8C, 0x7F, 0x72, 0x11,\n    0xC0, 0x20, 0x00, 0x28, 0x0A, 0xC6, 0xB1, 0x37, 0x8D, 0x23, 0x33, 0x19, 0xCD, 0x05, 0x02, 0x0F,\n    0x9D, 0x49, 0x8B, 0xA5, 0x62, 0xA8, 0x26, 0xC8, 0x3E, 0xF3, 0x72, 0x46, 0x61, 0xEC, 0xE4, 0xE1,\n    0x18, 0xE6, 0x46, 0x5C, 0x03, 0x6E, 0xB0, 0xEE, 0xB9, 0xE8, 0xC1, 0xE5, 0x38, 0xC4, 0x4C, 0x40,\n    0xD8, 0x28, 0x84, 0x02, 0xF1, 0x3E, 0x78, 0x21, 0xD9, 0xA9, 0x9E, 0x4B, 0x7E, 0x5C, 0x4B, 0xB9,\n    0x95, 0x6F, 0xB0, 0x14, 0x80, 0x5E, 0x8D, 0x30, 0x41, 0x40, 0x9C, 0xA8, 0xFF, 0x6B, 0x5A, 0x2C,\n    0x01, 0xB8, 0x7A, 0x3C, 0x45, 0x52, 0x7F, 0xB4, 0xF7, 0xA1, 0x26, 0x2B, 0xC1, 0x18, 0xB7, 0xA0,\n    0x43, 0x92, 0x09, 0xF4, 0x34, 0x7A, 0x54, 0x3C, 0x50, 0xCF, 0x25, 0xC4, 0x80, 0x00, 0x40, 0x9A,\n    0x47, 0x62, 0xD6, 0xB8, 0x02, 0xDA, 0xCF, 0x1F, 0xCD, 0x75, 0xF4, 0xE0, 0x24, 0xCF, 0xEB, 0xE2,\n    0x80, 0xE9, 0x9E, 0x3B, 0x73, 0x9F, 0x9C, 0xAF, 0xFF, 0xA1, 0x04, 0x10, 0x06, 0x00, 0x12, 0x01,\n    0x40, 0x55, 0x93, 0xA2, 0x83, 0xEC, 0x1E, 0x2C, 0x18, 0xFA, 0xBD, 0xD1, 0xE6, 0x0A, 0xCB, 0xBC,\n    0x55, 0x39, 0x01, 0x69, 0x41, 0x40, 0x01, 0xD0, 0xBE, 0x5A, 0x21, 0xDE, 0x24, 0x99, 0x8E, 0xC1,\n    0x60, 0x46, 0xFF, 0x92, 0x02, 0xD5, 0xCB, 0x4A, 0x07, 0x2C, 0xA0, 0x23, 0x7F, 0xD8, 0x97, 0x7D,\n    0x09, 0x16, 0xA7, 0x5B, 0x79, 0x0A, 0x6A, 0xEF, 0x2F, 0xFF, 0x29, 0x20, 0x8D, 0xC0, 0xE6, 0xC2,\n    0x54, 0xEF, 0xE4, 0xE2, 0x7C, 0x0A, 0xA2, 0xCB, 0x7C, 0x5C, 0xF9, 0x64, 0x7D, 0xBC, 0xAE, 0x98,\n    0x32, 0x7A, 0xAD, 0xA2, 0x51, 0x63, 0xBB, 0x57, 0x3A, 0x41, 0x3E, 0x49, 0x66, 0xBE, 0xD9, 0xCC,\n    0x81, 0x64, 0x82, 0xC9, 0xD8, 0xB7, 0x19, 0x00, 0x31, 0xFE, 0xC5, 0x4B, 0x97, 0xE8, 0x11, 0xAC,\n    0xCA, 0x84, 0x36, 0x96, 0xA1, 0x61, 0x16, 0x81, 0x4E, 0xA2, 0x51, 0xCF, 0x04, 0x9A, 0x0A, 0xAF,\n    0x17, 0xA4, 0xFB, 0xEB, 0x5D, 0x0F, 0x3E, 0xAE, 0xC4, 0x1F, 0xF8, 0x34, 0x6C, 0x82, 0x08, 0xD4,\n    0x7C, 0xED, 0x3D, 0xF1, 0x8C, 0x68, 0xA7, 0x1E, 0xFC, 0x94, 0x5A, 0x4F, 0x1D, 0x54, 0xD8, 0xED,\n    0xFB, 0xE0, 0xC7, 0x22, 0x72, 0x2E, 0xF0, 0x0A, 0x6B, 0xC7, 0x41, 0x08, 0x28, 0x5D, 0x72, 0x8A,\n    0x89, 0x69, 0x24, 0xCD, 0xDB, 0xFA, 0xD5, 0x2F, 0x49, 0x20, 0x6F, 0x3F, 0xEF, 0x58, 0xA0, 0x19,\n    0x2D, 0xA0, 0xAE, 0x25, 0x19, 0xB5, 0x86, 0x88, 0x7F, 0x93, 0x3D, 0x28, 0x46, 0x7B, 0xAF, 0xC0,\n    0x00, 0xCB, 0x60, 0xB5, 0xF0, 0x7B, 0xDE, 0xB5, 0x9A, 0x03, 0xD0, 0xC2, 0xA7, 0x54, 0xBF, 0x42,\n    0x1A, 0xBA, 0x48, 0xBF, 0xF1, 0x8F, 0x40, 0x96, 0x1D, 0xE0, 0x3C, 0x0E, 0xCF, 0xEB, 0x19, 0x24,\n    0xBC, 0xEB, 0x36, 0xFA, 0xFF, 0xEB, 0x51, 0x1A, 0xC8, 0x3A, 0xB4, 0x1B, 0xFF, 0xDD, 0x5B, 0xE1,\n    0x0F, 0x15, 0x73, 0x13, 0xFE, 0x31, 0xA3, 0x93, 0x00, 0x34, 0x1E, 0x70, 0x88, 0x7F, 0xE7, 0xF8,\n    0xE4, 0x2B, 0xF6, 0xBF, 0xEE, 0xDC, 0xFC, 0x85, 0x2F, 0xB7, 0xFF, 0xFD, 0x31, 0xB8, 0xAC, 0xA0,\n    0x38, 0x34, 0xEB, 0x7B, 0x4E, 0xC1, 0x49, 0x6D, 0x08, 0xF7, 0xA3, 0xE1, 0x10, 0x50, 0x62, 0x04,\n    0xA0, 0x60, 0x80, 0x85, 0xA5, 0x1B, 0xDC, 0x3A, 0xA4, 0x4A, 0x62, 0x8C, 0x94, 0x22, 0x91, 0xB1,\n    0x44, 0x2E, 0x95, 0x12, 0xB1, 0xC0, 0xCF, 0x45, 0xFE, 0x05, 0x8F, 0x49, 0x91, 0x83, 0x1A, 0x7A,\n    0x05, 0xE5, 0x0C, 0x63, 0xB9, 0x58, 0xA9, 0x46, 0xF7, 0x75, 0x08, 0x2C, 0x19, 0x19, 0x04, 0xFA,\n    0x8E, 0x9E, 0x3F, 0xB7, 0x23, 0x87, 0xC4, 0x0F, 0xDB, 0xF0, 0x7E, 0x05, 0x09, 0xA1, 0x96, 0x11,\n    0x62, 0x1F, 0x41, 0xBB, 0x41, 0x5E, 0xBE, 0xFB, 0x78, 0x10, 0xEB, 0x36, 0x60, 0x48, 0x2D, 0xD5,\n    0xF0, 0x70, 0x3C, 0xF0, 0xDB, 0x38, 0x64, 0x60, 0xC0, 0x88, 0x4F, 0x4F, 0x9B, 0x0D, 0xC1, 0xCA,\n    0x44, 0x3F, 0xFE, 0x3F, 0x8A, 0x9D, 0x5E, 0x60, 0x40, 0x9E, 0x43, 0x95, 0x29, 0xE1, 0x20, 0x72,\n    0x17, 0x83, 0xE1, 0xEA, 0xC4, 0x3C, 0x08, 0x21, 0xA8, 0x64, 0x89, 0x9B, 0x7F, 0xFF, 0xAC, 0x20,\n    0x8F, 0x7E, 0x18, 0x04, 0x00, 0x0E, 0x06, 0xA1, 0x62, 0xAC, 0x54, 0x8C, 0x6E, 0xC2, 0xF8, 0x8B,\n    0xEE, 0x1C, 0x2E, 0x03, 0x32, 0xA4, 0x01, 0x2A, 0x73, 0xE7, 0x8C, 0x23, 0x1F, 0x3E, 0x83, 0x74,\n    0x96, 0x0D, 0xC8, 0xA6, 0x1E, 0x06, 0xEE, 0x43, 0x3D, 0xF9, 0x0A, 0x45, 0x84, 0xDC, 0x02, 0xB7,\n    0x36, 0x51, 0x84, 0x10, 0x01, 0x89, 0xCD, 0xDC, 0x00, 0x20, 0xBD, 0xFE, 0xF0, 0x5A, 0xC5, 0xA4,\n    0x2F, 0x21, 0x5B, 0x5F, 0x65, 0xCF, 0xA6, 0xAF, 0xF1, 0x4C, 0xDF, 0xC1, 0x89, 0x30, 0x08, 0x35,\n    0x47, 0xFE, 0x93, 0xB4, 0x81, 0xD2, 0x8D, 0x36, 0xE8, 0x48, 0x3E, 0x14, 0x37, 0x11, 0x18, 0x8F,\n    0x8D, 0xC7, 0x4E, 0xDF, 0x9D, 0x3F, 0x64, 0x0C, 0xAB, 0x46, 0xAC, 0x4F, 0x66, 0x01, 0xAA, 0x89,\n    0xCC, 0xD1, 0x56, 0xBE, 0xC8, 0x94, 0xAA, 0xBE, 0x2F, 0xFD, 0xEE, 0x00, 0x0A, 0xCC, 0xAA, 0x39,\n    0x33, 0x14, 0xE3, 0xCB, 0x13, 0x9E, 0x1B, 0x92, 0x63, 0xBE, 0x79, 0xEE, 0x07, 0x6F, 0x65, 0x1C,\n    0xE2, 0xFB, 0x8E, 0x2D, 0x39, 0x7B, 0xA7, 0x96, 0xB5, 0x63, 0x12, 0xBA, 0x97, 0xB9, 0xFF, 0x47,\n    0x06, 0xB3, 0x13, 0x8F, 0xF5, 0x4E, 0x32, 0x82, 0x29, 0x75, 0x66, 0x8C, 0xBC, 0xE0, 0xC0, 0x00,\n    0x8C, 0x1A, 0x10, 0x10, 0x15, 0xA1, 0x5A, 0xEE, 0x4F, 0xC5, 0x09, 0x8F, 0x86, 0x51, 0x00, 0xE0,\n    0xF5, 0xD9, 0xC9, 0x35, 0x27, 0x44, 0x9B, 0x35, 0x32, 0x3B, 0xD0, 0xC6, 0xD2, 0xBC, 0x3C, 0x47,\n    0x37, 0x7F, 0x3A, 0x04, 0x78, 0x74, 0xC5, 0xBF, 0xA6, 0x0E, 0x38, 0x5B, 0x49, 0x5F, 0xCA, 0x1F,\n    0x5A, 0x6D, 0x63, 0x4A, 0x38, 0x89, 0x50, 0x81, 0xF1, 0xAF, 0xC5, 0x26, 0x72, 0xC0, 0x05, 0xBA,\n    0xEF, 0x56, 0xF1, 0x14, 0x00, 0x1B, 0x02, 0x5C, 0x3F, 0x38, 0x1F, 0x48, 0x94, 0x7E, 0x00, 0xCF,\n    0xBC, 0x68, 0xAE, 0x5C, 0x33, 0x36, 0x06, 0x00, 0x02, 0x00, 0xC8, 0xCB, 0x8C, 0xB9, 0xE8, 0x30,\n    0x73, 0x0C, 0x49, 0x87, 0x10, 0x76, 0xBC, 0x18, 0x82, 0x01, 0x68, 0x07, 0x68, 0x02, 0xDD, 0x7C,\n    0xDF, 0x05, 0x7A, 0xEA, 0x87, 0xF6, 0x39, 0x8C, 0xA6, 0xE2, 0x4F, 0xE7, 0x8B, 0xEC, 0x8E, 0x9C,\n    0x2A, 0x63, 0xA2, 0x16, 0xFF, 0x08, 0x17, 0x6C, 0x1B, 0x38, 0xDF, 0xEA, 0xB8, 0x33, 0x75, 0x42,\n    0x53, 0xF2, 0x7F, 0x86, 0x70, 0x48, 0x04, 0x7E, 0xC6, 0xB0, 0x69, 0x21, 0x90, 0x3A, 0xDF, 0x88,\n    0x1B, 0xA5, 0xF3, 0xE3, 0x1F, 0xC0, 0x28, 0x00, 0xAD, 0xC3, 0x6D, 0x0C, 0x28, 0xE2, 0x1F, 0xC8,\n    0xAD, 0xDC, 0x4D, 0xD6, 0x66, 0x33, 0x69, 0xBC, 0xF6, 0x01, 0x16, 0x0A, 0x25, 0xAC, 0x70, 0x03,\n    0xCD, 0x09, 0x94, 0x65, 0x5A, 0x42, 0xE8, 0x7E, 0x99, 0xC1, 0xA1, 0xEE, 0x58, 0x93, 0xF0, 0xFC,\n    0x23, 0x68, 0x7E, 0xF4, 0x0F, 0x1A, 0x00, 0x18, 0x35, 0xBA, 0xFF, 0x10, 0x6F, 0x8D, 0x9D, 0x83,\n    0x14, 0x92, 0x44, 0x7F, 0x94, 0x7A, 0x7C, 0xBB, 0x7D, 0x02, 0x2F, 0x95, 0x7B, 0xA5, 0x89, 0xF9,\n    0x07, 0x49, 0x80, 0xD4, 0x12, 0xFE, 0x5C, 0x0D, 0x11, 0x52, 0x02, 0xDE, 0x67, 0x86, 0x60, 0x01,\n    0xD7, 0xA8, 0x5C, 0xCE, 0xE3, 0x05, 0xAD, 0xB1, 0xE1, 0x7E, 0x0C, 0xE1, 0x40, 0xC1, 0x83, 0x86,\n    0xC1, 0x9B, 0x07, 0x63, 0x39, 0x7C, 0xE8, 0xBB, 0x00, 0x02, 0x07, 0x06, 0x1A, 0x86, 0x17, 0x02,\n    0x91, 0x74, 0x6A, 0x77, 0x4D, 0x0B, 0xFD, 0x11, 0x6B, 0x0A, 0x3C, 0xAE, 0x95, 0x5B, 0xE9, 0xB2,\n    0xB7, 0x64, 0xA0, 0xBA, 0xFA, 0x73, 0xCB, 0x04, 0x5A, 0xEF, 0xCA, 0xDF, 0xB8, 0xA5, 0xF9, 0xD4,\n    0xEB, 0x50, 0xE7, 0xCF, 0xAD, 0xD3, 0xE1, 0x3A, 0xC0, 0xBB, 0xBF, 0xEC, 0x9E, 0x8C, 0xC0, 0x22,\n    0x45, 0xEE, 0x6A, 0x8F, 0x70, 0x0E, 0x93, 0x04, 0xEB, 0xFF, 0xEE, 0xBE, 0xA8, 0x0C, 0xC2, 0xC3,\n    0x19, 0x66, 0xEE, 0xFC, 0xF9, 0x00, 0xD6, 0x4E, 0x11, 0x73, 0xA2, 0x81, 0x19, 0x91, 0x13, 0x71,\n    0xFA, 0xE3, 0x2C, 0x1A, 0x90, 0xE8, 0x81, 0x0F, 0xF9, 0xF4, 0xAB, 0x20, 0x3A, 0x63, 0x99, 0x05,\n    0xDF, 0x58, 0x41, 0xD6, 0xB0, 0x3D, 0xD5, 0x27, 0x6F, 0xED, 0x48, 0xC6, 0xBF, 0xAB, 0x64, 0x62,\n    0xD7, 0xEF, 0xE0, 0xC3, 0x21, 0xC9, 0xC0, 0xFF, 0x96, 0x8A, 0x2C, 0x7A, 0x2A, 0x5B, 0x5B, 0x6B,\n    0x55, 0x83, 0xAC, 0xA0, 0x8B, 0x45, 0x51, 0xA9, 0x3B, 0xF9, 0x1A, 0x5D, 0x81, 0x6F, 0xC7, 0xA1,\n    0x25, 0xC9, 0x30, 0x35, 0x7E, 0x54, 0xD8, 0x50, 0xA4, 0x44, 0xF7, 0xC5, 0xE1, 0xD0, 0x0C, 0x08,\n    0x48, 0xED, 0xBE, 0x18, 0xFE, 0x52, 0xDB, 0x82, 0x72, 0x01, 0x62, 0xAF, 0x8F, 0xD3, 0xE4, 0xBE,\n    0xAA, 0x6E, 0x07, 0x01, 0xD8, 0xC4, 0x84, 0xB5, 0x36, 0xD5, 0xB0, 0x8F, 0xB0, 0xB4, 0x44, 0x9B,\n    0xD5, 0x39, 0xA4, 0x01, 0xC8, 0x5B, 0xFD, 0xFA, 0x86, 0x18, 0x35, 0xCD, 0x56, 0x39, 0x7A, 0xAD,\n    0x80, 0x0E, 0xBB, 0xAC, 0x87, 0x6C, 0xC0, 0x9C, 0x34, 0xE8, 0xB2, 0xFD, 0xFB, 0x30, 0x02, 0x2C,\n    0xA6, 0x9B, 0x29, 0x5D, 0x3F, 0x2A, 0x8C, 0x3A, 0x6F, 0x1A, 0x4F, 0xF7, 0x96, 0x79, 0x0F, 0x73,\n    0x57, 0xC9, 0xCD, 0xF8, 0x08, 0xC6, 0xA2, 0x8C, 0x60, 0x34, 0x2E, 0xA3, 0x42, 0x77, 0x0C, 0x4A,\n    0x35, 0xBC, 0xDA, 0xCD, 0xE7, 0x6E, 0x35, 0x15, 0x96, 0x6A, 0x91, 0x5A, 0x13, 0x8F, 0xC9, 0x48,\n    0x32, 0xEB, 0xA4, 0x6D, 0xD8, 0x82, 0x68, 0xDF, 0xD4, 0xDA, 0x0B, 0x20, 0x7E, 0xDC, 0x6D, 0xAB,\n    0x8E, 0xB0, 0x94, 0x56, 0x49, 0x6B, 0xA8, 0x92, 0xF8, 0x81, 0x84, 0xFC, 0x4A, 0x99, 0xF8, 0xEC,\n    0x63, 0x02, 0x89, 0xB2, 0xE7, 0xFE, 0xE8, 0x46, 0xCB, 0x84, 0xBD, 0x9D, 0x9D, 0xFB, 0x70, 0xA6,\n    0xC8, 0x0A, 0x67, 0x47, 0xEF, 0x53, 0x43, 0xA4, 0xC2, 0x26, 0x7A, 0x17, 0xDB, 0x36, 0xC5, 0x83,\n    0x04, 0x43, 0x8C, 0xCD, 0x2C, 0xA3, 0x1E, 0xB4, 0x39, 0xCD, 0x3C, 0x4A, 0xFC, 0xCE, 0xCC, 0x84,\n    0x54, 0x73, 0xB1, 0xEB, 0x40, 0x69, 0x2A, 0x0C, 0x94, 0x9F, 0xFE, 0x8D, 0x57, 0x6A, 0xE9, 0xE8,\n    0xA9, 0xC2, 0x82, 0xF1, 0xD7, 0x82, 0x64, 0x05, 0xAB, 0x64, 0x4B, 0xA4, 0x4C, 0x71, 0x98, 0x3A,\n    0x8A, 0xFC, 0x11, 0x34, 0x4A, 0x63, 0xF0, 0x85, 0xCB, 0x94, 0x99, 0x1A, 0x4C, 0x62, 0xCB, 0x7F,\n    0x7D, 0xB2, 0x4C, 0x83, 0xA1, 0x75, 0xD9, 0xB5, 0x19, 0x1A, 0xE2, 0x00, 0x19, 0xFF, 0xEB, 0x9F,\n    0x8D, 0x09, 0x6A, 0x4B, 0xFD, 0x4A, 0x5B, 0xF3, 0xD8, 0xCF, 0x7D, 0x06, 0x72, 0x34, 0x82, 0x71,\n    0xD7, 0xD4, 0xC7, 0x38, 0x94, 0xE9, 0x8C, 0x4D, 0x7E, 0xD7, 0xCC, 0x84, 0xB5, 0x46, 0x4F, 0xEA,\n    0x16, 0x78, 0x19, 0x1C, 0xF1, 0x8D, 0x1F, 0xF2, 0x10, 0x07, 0xAA, 0x10, 0x9E, 0x93, 0x5D, 0xCB,\n    0x4B, 0x00, 0x06, 0xE0, 0xDC, 0xFE, 0xF4, 0xD9, 0x38, 0xBD, 0x1D, 0x3F, 0xE2, 0xF0, 0x53, 0x0F,\n    0x56, 0xAC, 0x70, 0xA6, 0xD9, 0x39, 0x73, 0x07, 0x6B, 0xFD, 0x4F, 0x35, 0x34, 0x18, 0xF1, 0xEE,\n    0xED, 0xAF, 0x83, 0x10, 0xC9, 0x56, 0x97, 0xFE, 0xF4, 0xB6, 0x88, 0x00, 0x25, 0x5A, 0x75, 0xBF,\n    0x19, 0x0A, 0x57, 0x18, 0x96, 0x90, 0x44, 0x67, 0xE2, 0x7F, 0xAD, 0xF0, 0x54, 0x82, 0xAD, 0xAF,\n    0x2A, 0x08, 0x22, 0x6E, 0xB7, 0x70, 0x70, 0xA7, 0x90, 0x6C, 0x20, 0xB4, 0x98, 0x73, 0x6F, 0x7D,\n    0xDA, 0xEF, 0x34, 0x2D, 0xCB, 0xF6, 0xD6, 0xF9, 0x85, 0x69, 0xD9, 0x3C, 0x5D, 0x69, 0x73, 0x44,\n    0x24, 0x44, 0x15, 0xBF, 0xE8, 0x0D, 0xD0, 0xF9, 0x67, 0x3A, 0x46, 0xE4, 0xF6, 0x82, 0xBF, 0xBB,\n    0x63, 0x43, 0x3C, 0x7D, 0x76, 0x4D, 0xE9, 0x8A, 0x45, 0xBB, 0xB5, 0x5B, 0x15, 0x0C, 0xED, 0x11,\n    0xEE, 0xFF, 0x9F, 0xF9, 0xC4, 0x65, 0x04, 0xFF, 0xD6, 0xB3, 0x75, 0x2E, 0x37, 0x4E, 0xF4, 0xE3,\n    0xEC, 0x28, 0x96, 0xB3, 0xAF, 0xB3, 0x47, 0xBC, 0x74, 0xBB, 0x87, 0xC3, 0xBD, 0x1D, 0x4B, 0x2B,\n    0x3A, 0xA7, 0x4B, 0x42, 0xC9, 0x77, 0x80, 0xD3, 0x40, 0x3D, 0x12, 0x2C, 0x9D, 0xD1, 0x0C, 0x98,\n    0xEF, 0x8C, 0xD5, 0x0D, 0xC2, 0x0A, 0x62, 0x2C, 0x3E, 0xBB, 0xEF, 0x85, 0x0F, 0xFC, 0xCA, 0xE4,\n    0x07, 0x8B, 0xA1, 0x30, 0x96, 0xAC, 0xB5, 0xB0, 0x4D, 0x97, 0xFF, 0xFB, 0x9C, 0xD9, 0x13, 0x22,\n    0x7A, 0x9D, 0x6E, 0xDC, 0xDC, 0xF8, 0x25, 0xD0, 0xF1, 0xB1, 0xEB, 0x2D, 0xBA, 0xCF, 0xAD, 0xA2,\n    0xD4, 0x21, 0xA5, 0x8F, 0x52, 0x12, 0xEF, 0xFF, 0xBE, 0x57, 0x91, 0xCE, 0x2E, 0x06, 0x51, 0xAE,\n    0xA1, 0xB1, 0xFE, 0xFA, 0xA1, 0xD6, 0x08, 0xB1, 0x03, 0x54, 0x9E, 0xF4, 0x04, 0xE1, 0x67, 0x33,\n    0x2F, 0x8F, 0x86, 0xE0, 0xFA, 0xB9, 0xFB, 0xB1, 0xC3, 0x8F, 0x9D, 0xEA, 0x4C, 0x1D, 0x87, 0x6E,\n    0x1F, 0x5C, 0xA3, 0x35, 0xBE, 0x01, 0x91, 0x13, 0x0A, 0x43, 0x39, 0xBE, 0xC8, 0x32, 0x2D, 0xF6,\n    0x61, 0x81, 0x0B, 0xAB, 0x9B, 0x13, 0x18, 0xBC, 0x61, 0x1F, 0x20, 0x92, 0xFF, 0x7F, 0x7B, 0x00,\n    0xFD, 0x95, 0x96, 0xF2, 0x6C, 0x59, 0x32, 0x34, 0x89, 0xE0, 0xDB, 0x75, 0xA9, 0xA4, 0x46, 0xC9,\n    0x84, 0xE6, 0xFF, 0x79, 0xFE, 0x90, 0x4A, 0xBF, 0x7D, 0xDA, 0x9C, 0xC7, 0x6E, 0xEA, 0x4F, 0xCF,\n    0xAA, 0xBC, 0xBC, 0x25, 0x13, 0x17, 0x7E, 0x4A, 0x66, 0xB1, 0x7B, 0xEA, 0xB4, 0x49, 0xD7, 0x39,\n    0x1B, 0xEB, 0xAC, 0x91, 0xCF, 0xA6, 0x8E, 0xF7, 0xD4, 0x60, 0x75, 0x97, 0x75, 0x91, 0xE6, 0xD3,\n    0x47, 0x7C, 0xFB, 0xF6, 0x68, 0x09, 0xAC, 0xC7, 0x5F, 0xD2, 0x8B, 0x66, 0xD6, 0x98, 0x89, 0xEF,\n    0x7A, 0x64, 0x5E, 0x43, 0x2B, 0x6B, 0x9A, 0x9D, 0x8D, 0xF5, 0xFF, 0xF7, 0xA0, 0x84, 0x17, 0x13,\n    0x08, 0xF7, 0x1E, 0x32, 0x5A, 0x41, 0x34, 0xFD, 0x8E, 0x5B, 0x95, 0x08, 0x00, 0x4D, 0xC6, 0x3D,\n    0x6C, 0xFE, 0x46, 0x4C, 0xE8, 0x0D, 0xF7, 0xE7, 0x6F, 0x06, 0x9A, 0x1A, 0xBD, 0x7A, 0x9F, 0xCD,\n    0x17, 0x8E, 0xCC, 0x34, 0x8D, 0x4E, 0x3B, 0x2F, 0x6C, 0xDE, 0x4F, 0x7B, 0x7F, 0x4E, 0x98, 0xA4,\n    0x41, 0xAE, 0xB4, 0xD2, 0x8A, 0xDE, 0x9F, 0xDC, 0xEB, 0x33, 0x78, 0x10, 0x99, 0xB5, 0x7A, 0xEF,\n    0x3E, 0xB3, 0x6B, 0x1B, 0x65, 0xB4, 0xC4, 0xFB, 0xFA, 0xC8, 0x69, 0xE3, 0x95, 0x27, 0xA8, 0xE4,\n    0xBF, 0xE5, 0x82, 0x5F, 0x5F, 0x3D, 0x82, 0x20, 0x3F, 0x48, 0x9C, 0xCF, 0x56, 0x1F, 0xFD, 0xB2,\n    0x52, 0x54, 0x5A, 0x45, 0x97, 0xBF, 0xFF, 0xB0, 0xEF, 0x93, 0xF4, 0xDA, 0xFF, 0xEF, 0xD4, 0xB1,\n    0xCB, 0x99, 0x65, 0x7F, 0x5E, 0xCC, 0x1D, 0xC8, 0x78, 0xF4, 0xF0, 0x6E, 0x46, 0x40, 0x0A, 0xA6,\n    0x51, 0x32, 0x25, 0x9D, 0x72, 0xBC, 0x3B, 0x7D, 0x57, 0xDF, 0xAA, 0x6C, 0xA6, 0x8F, 0x48, 0x0B,\n    0xFD, 0xCD, 0x4D, 0x0F, 0xEE, 0xA7, 0x69, 0xF7, 0x3E, 0xC3, 0xB4, 0xB3, 0xD2, 0xF0, 0x13, 0xDE,\n    0xF6, 0xC5, 0x7E, 0x84, 0xED, 0x93, 0x12, 0xC0, 0xD9, 0x3E, 0x5C, 0x0A, 0xBF, 0x9A, 0xD9, 0x0D,\n    0x97, 0x31, 0xBF, 0x39, 0xE5, 0xDF, 0xF8, 0x69, 0x84, 0xD8, 0x92, 0x3A, 0xEF, 0xF7, 0xED, 0x3B,\n    0xAE, 0x1A, 0x2B, 0x81, 0x29, 0x4F, 0xF5, 0x64, 0x12, 0xD0, 0xA4, 0xFB, 0xED, 0xF9, 0xD8, 0x0A,\n    0x05, 0x44, 0xDA, 0xE1, 0xCF, 0xFE, 0xF4, 0xA4, 0x7B, 0xFB, 0x25, 0xBF, 0x76, 0xB3, 0x89, 0xF8,\n    0x4C, 0x2A, 0xB7, 0x5F, 0xDA, 0xC0, 0x8D, 0x36, 0xB4, 0x0B, 0xBB, 0x14, 0x3D, 0x22, 0xFB, 0x01,\n    0x61, 0xAA, 0x7A, 0xD0, 0x3D, 0x00, 0x28, 0x2B, 0x68, 0xFD, 0xE5, 0x0C, 0x76, 0x5A, 0x39, 0xA9,\n    0x09, 0xA0, 0x82, 0xB5, 0x89, 0xD9, 0x09, 0xFF, 0x34, 0x85, 0x93, 0xBE, 0xA8, 0xCA, 0x77, 0x62,\n    0x8F, 0xC0, 0xDD, 0x10, 0x5E, 0xAD, 0xFB, 0x71, 0x76, 0x34, 0x43, 0x52, 0x0D, 0x86, 0xBD, 0xBD,\n    0xD3, 0xE0, 0x6B, 0xC9, 0xBB, 0x7A, 0xAD, 0xFC, 0xD5, 0xCA, 0x69, 0x11, 0x79, 0x79, 0x36, 0xEC,\n    0xF8, 0xE4, 0x81, 0xB1, 0x4F, 0x00, 0x6E, 0xB1, 0x67, 0x31, 0x2A, 0x57, 0x1A, 0x69, 0xB6, 0xD3,\n    0xF0, 0x4D, 0x82, 0xA7, 0xE2, 0xE1, 0x5E, 0xFF, 0x69, 0xA4, 0xC8, 0x2B, 0xC7, 0xBA, 0x5D, 0xCB,\n    0xB0, 0x98, 0xA7, 0x70, 0xE9, 0xE8, 0xA7, 0x7F, 0xFB, 0xD5, 0x88, 0xD8, 0x3D, 0xEA, 0x0F, 0xFE,\n    0x52, 0xE9, 0xE7, 0xE8, 0x00, 0xFE, 0xBE, 0x66, 0xC9, 0x03, 0x53, 0xF7, 0x79, 0x9E, 0x2D, 0x1C,\n    0x2E, 0xF6, 0xFB, 0xF5, 0xF1, 0xCD, 0x19, 0x3B, 0x3F, 0xD5, 0x8C, 0x84, 0x53, 0x95, 0x8E, 0xDD,\n    0x0F, 0x12, 0x21, 0x67, 0x55, 0x79, 0xB2, 0xBA, 0x87, 0xD1, 0x9E, 0xBC, 0x00, 0x84, 0x8A, 0xF8,\n    0xA9, 0x7F, 0xE9, 0x7C, 0x29, 0x2F, 0xC7, 0x13, 0x2C, 0xF7, 0x22, 0x81, 0x68, 0xC2, 0x36, 0xFD,\n    0x73, 0x79, 0x16, 0x3B, 0x10, 0xFD, 0xFE, 0xEA, 0x29, 0xE0, 0x6F, 0xD9, 0xC6, 0xC7, 0xCF, 0xBD,\n    0xF1, 0x62, 0x8A, 0x55, 0x54, 0xDF, 0x35, 0xEC, 0x69, 0x74, 0xDF, 0xC2, 0xD7, 0x59, 0x5C, 0x43,\n    0x9C, 0x71, 0xD4, 0x97, 0xFF, 0xA7, 0x5C, 0xAE, 0x1F, 0x49, 0xBA, 0xED, 0xBF, 0x90, 0x57, 0x24,\n    0x3F, 0x3D, 0xDD, 0x64, 0xF7, 0xC5, 0x42, 0x8F, 0xFF, 0xB7, 0xEA, 0xA5, 0x23, 0x49, 0xC1, 0xD9,\n    0xF7, 0xD3, 0x47, 0x02, 0x42, 0xC1, 0xD3, 0x7F, 0x76, 0xCE, 0x82, 0xDE, 0x60, 0x6D, 0xB2, 0x83,\n    0xBC, 0x04, 0x89, 0xF8, 0x87, 0x70, 0x7B, 0x30, 0x8A, 0x21, 0x9D, 0x15, 0x93, 0xF8, 0x71, 0x55,\n    0x5C, 0x7A, 0xBB, 0x8F, 0xD2, 0xEC, 0xC2, 0x3B, 0xAE, 0x1E, 0x4E, 0x8F, 0xA0, 0x56, 0x1E, 0xC2,\n    0x2F, 0xAF, 0x44, 0x13, 0x40, 0x0C, 0x69, 0x6B, 0xB9, 0x57, 0xDE, 0x84, 0x46, 0x2F, 0xBF, 0xD1,\n    0xEC, 0xA8, 0x92, 0x84, 0xB8, 0xE9, 0xC0, 0x12, 0xEB, 0x9D, 0x75, 0x9A, 0xB0, 0x3B, 0x29, 0xAE,\n    0xD8, 0x51, 0xA2, 0xFF, 0x9C, 0xC2, 0x25, 0x6A, 0x42, 0xA0, 0xAE, 0xBE, 0x0B, 0xA6, 0x19, 0x0E,\n    0xBD, 0x98, 0x1D, 0xCD, 0x70, 0x2C, 0x30, 0x30, 0x08, 0xA2, 0x22, 0xEA, 0x4A, 0x95, 0x0C, 0x92,\n    0xB0, 0x32, 0x66, 0x06, 0x90, 0x10, 0x80, 0x4E, 0xFA, 0x63, 0x80, 0x00, 0xA9, 0x96, 0xE9, 0xC0,\n    0x25, 0x04, 0xB8, 0x00, 0xB6, 0xA2, 0x38, 0x4B, 0xEB, 0x35, 0x8A, 0x03, 0xA2, 0xCC, 0x06, 0xA7,\n    0x23, 0xD7, 0x3D, 0x74, 0x23, 0xA5, 0x2D, 0x18, 0x3D, 0x96, 0x03, 0x25, 0xED, 0xEF, 0xBE, 0x17,\n    0x64, 0x91, 0x32, 0xC0, 0x34, 0x7B, 0xA2, 0xFE, 0x58, 0x10, 0xC3, 0xD6, 0xE6, 0x27, 0xFC, 0x1C,\n    0x6D, 0x40, 0xCB, 0xE6, 0xF8, 0x33, 0x88, 0xF0, 0xCC, 0x59, 0x13, 0xA7, 0xF8, 0xA6, 0x06, 0x01,\n    0x76, 0xA8, 0xC4, 0x15, 0x83, 0x76, 0xAE, 0xD9, 0xC5, 0xA2, 0xB2, 0x34, 0x22, 0xD5, 0x51, 0x56,\n    0x17, 0x72, 0x86, 0x81, 0xD1, 0x54, 0x0E, 0x16, 0x2F, 0xC2, 0xDC, 0x0A, 0x51, 0x07, 0x5C, 0xAF,\n    0x69, 0xA9, 0xFE, 0xB5, 0xDB, 0xCB, 0xE3, 0xC4, 0x41, 0xB3, 0x78, 0x6D, 0x8E, 0xCE, 0x69, 0xF6,\n    0x1A, 0x40, 0x79, 0x71, 0xD2, 0x1A, 0x29, 0xFA, 0xDF, 0xFD, 0x74, 0x03, 0xB5, 0x27, 0x15, 0xAB,\n    0xD6, 0xC6, 0x7F, 0x21, 0x26, 0xB5, 0x5E, 0x8C, 0xAB, 0x00, 0x58, 0xEE, 0x2D, 0x55, 0x18, 0x35,\n    0x9C, 0x4F, 0x76, 0x3B, 0x3F, 0xC3, 0xF7, 0x0A, 0x80, 0x00, 0x40, 0x04, 0xE1, 0xA0, 0x00, 0x20,\n    0x18, 0xE0, 0x02, 0x9E, 0x50, 0x22, 0xE6, 0xB3, 0xC4, 0x94, 0x58, 0x76, 0x4F, 0x01, 0xEA, 0xDE,\n    0x19, 0x83, 0x2D, 0x32, 0x7E, 0x1B, 0xB8, 0x8D, 0xEB, 0xEB, 0x57, 0x71, 0x15, 0x18, 0x45, 0x6A,\n    0xB9, 0xF9, 0xAD, 0x82, 0xEF, 0x77, 0x74, 0x60, 0xCA, 0x80, 0x5E, 0xA1, 0x0A, 0x5B, 0xB7, 0x8B,\n    0x01, 0x4C, 0x16, 0xEE, 0xB2, 0xB0, 0x4B, 0x38, 0xD3, 0xB5, 0xB4, 0xA4, 0x0B, 0x01, 0xBC, 0x9E,\n    0xA0, 0x78, 0xAD, 0x73, 0xF0, 0x32, 0x24, 0x7B, 0xE9, 0xFF, 0x3E, 0xA6, 0xDD, 0x88, 0x0C, 0x0E,\n    0x28, 0x60, 0x1A, 0x4B, 0x0C, 0xB4, 0xC3, 0x1B, 0xBD, 0x69, 0x78, 0x35, 0xF3, 0x29, 0xD9, 0xFD,\n    0xEE, 0x32, 0xF2, 0xFF, 0xBD, 0x0E, 0xFA, 0x99, 0x79, 0xFD, 0x36, 0x18, 0xD5, 0xFC, 0x46, 0xFB,\n    0x57, 0xDB, 0x7E, 0x0C, 0x34, 0xC1, 0xEF, 0x72, 0xEA, 0x3B, 0x39, 0x45, 0xC0, 0xAF, 0xCA, 0x6B,\n    0x58, 0xE0, 0xEA, 0xFD, 0x58, 0x15, 0x30, 0xCC, 0x50, 0x9D, 0xC6, 0x7D, 0x01, 0xC7, 0x7E, 0x5F,\n    0xB6, 0x42, 0x92, 0xE7, 0xCC, 0x3D, 0x61, 0x69, 0x6E, 0xE2, 0x03, 0x00, 0x25, 0xA1, 0x02, 0x02,\n    0x96, 0x5C, 0xFA, 0x57, 0xC7, 0x93, 0xB2, 0xCA, 0xA7, 0x2D, 0xFF, 0x11, 0x01, 0x14, 0xF6, 0x0F,\n    0xA8, 0x1A, 0xB9, 0x71, 0x08, 0x0A, 0xD7, 0x1F, 0xAF, 0xA6, 0x1A, 0x62, 0x5E, 0x98, 0x03, 0x55,\n    0x4D, 0xCF, 0xCC, 0x5E, 0x75, 0x12, 0xB3, 0x7D, 0xE1, 0x26, 0x8F, 0x22, 0x0F, 0x73, 0xF0, 0x59,\n    0xC2, 0x51, 0x6E, 0x6F, 0x00, 0xDC, 0x29, 0xCE, 0xF9, 0x2A, 0xDA, 0x7D, 0x7C, 0x63, 0x27, 0xA2,\n    0xEF, 0xE3, 0xB1, 0x35, 0x36, 0x60, 0x00, 0x57, 0x27, 0x3B, 0x90, 0x93, 0x78, 0xE8, 0x7A, 0x4F,\n    0x80, 0x29, 0xEB, 0xBD, 0x5B, 0xF8, 0xAA, 0xD3, 0x2F, 0x01, 0x03, 0xC3, 0x1F, 0x2D, 0x7E, 0xE4,\n    0x80, 0xA8, 0x2D, 0x06, 0xE4, 0x44, 0xD2, 0xA8, 0x0D, 0x1D, 0xF4, 0x46, 0x36, 0xA2, 0x5E, 0xFB,\n    0x5D, 0xFC, 0xD3, 0x13, 0x3C, 0x7E, 0xDA, 0x53, 0x56, 0xB0, 0x06, 0x7C, 0x0F, 0xF0, 0xBC, 0x9A,\n    0x3A, 0x8C, 0xC6, 0xFF, 0xFF, 0xE7, 0x0D, 0xFC, 0xD6, 0x4F, 0xED, 0xF0, 0xA3, 0x5C, 0x07, 0x00,\n    0x6D, 0x1B, 0x9F, 0xC7, 0xD1, 0x55, 0xCC, 0x25, 0xD4, 0x3E, 0xE5, 0x94, 0xEC, 0xE5, 0xE7, 0xA7,\n    0x8A, 0x9F, 0x47, 0x8F, 0x2E, 0x73, 0x34, 0x24, 0x05, 0x1A, 0xBF, 0xFC, 0x85, 0x55, 0x1B, 0xA7,\n    0x8F, 0xF9, 0xED, 0x01, 0x2E, 0xE3, 0x5F, 0xFF, 0x32, 0x68, 0x14, 0x1D, 0x96, 0x1D, 0xCD, 0x7C,\n    0x7F, 0xBD, 0x03, 0x05, 0x6E, 0x0F, 0x2D, 0xD1, 0xDC, 0xFF, 0xF7, 0xE7, 0x58, 0x60, 0x15, 0xE1,\n    0xE5, 0x27, 0xAC, 0x7B, 0xD2, 0x36, 0x6D, 0x4C, 0xB4, 0x25, 0xBA, 0x2A, 0xCC, 0x3C, 0x26, 0xB7,\n    0x79, 0xFD, 0xB3, 0x8F, 0xAA, 0x07, 0x5B, 0x0D, 0x6F, 0x10, 0x19, 0x18, 0x69, 0x3B, 0x69, 0x97,\n    0x2E, 0x9F, 0xCD, 0x06, 0x98, 0x4B, 0xB3, 0x30, 0xF5, 0x51, 0xB6, 0x3F, 0x85, 0xE0, 0xBF, 0x39,\n    0xAF, 0xEA, 0xFB, 0xCA, 0xC8, 0x69, 0x71, 0xBD, 0x53, 0x00, 0x88, 0x3B, 0x5F, 0xB0, 0x25, 0x04,\n    0x1F, 0xBD, 0xA1, 0x99, 0x94, 0x63, 0x36, 0xFF, 0xD6, 0xC1, 0xF3, 0x00, 0xFF, 0xC1, 0x25, 0x95,\n    0xEF, 0x3F, 0x86, 0x87, 0xD0, 0x19, 0x8A, 0x8E, 0x62, 0x89, 0x4F, 0xDD, 0x8E, 0x8C, 0x01, 0x17,\n    0x92, 0xE6, 0x34, 0x95, 0xFE, 0x2F, 0xA7, 0x78, 0xFE, 0x54, 0xD7, 0xEC, 0x89, 0x13, 0x60, 0xDD,\n    0xD5, 0xEF, 0xEB, 0xD2, 0x3E, 0x65, 0x41, 0xAE, 0xBC, 0xE5, 0x48, 0x7E, 0x4B, 0x5B, 0x5E, 0xBB,\n    0x9A, 0x3D, 0xDC, 0xF4, 0xA2, 0xE5, 0x1E, 0xFE, 0x3C, 0x20, 0x0B, 0x0F, 0x60, 0x51, 0x7C, 0x07,\n    0xB4, 0x2E, 0x63, 0xBB, 0x6D, 0xC7, 0x7D, 0x2F, 0xDF, 0x0F, 0xFF, 0x93, 0xB0, 0xC6, 0xD2, 0x4D,\n    0xB9, 0xE6, 0x88, 0x4A, 0xE5, 0x05, 0x75, 0x4D, 0xA2, 0x7E, 0xFA, 0x79, 0x43, 0x48, 0x2B, 0xD3,\n    0x9E, 0x91, 0xA5, 0x88, 0x24, 0x8D, 0x81, 0x9B, 0x83, 0x4A, 0xD8, 0x70, 0xC9, 0xA3, 0x79, 0x2D,\n    0xA4, 0x7D, 0x94, 0x1A, 0xF0, 0x10, 0xB8, 0xCC, 0x6A, 0xE6, 0x94, 0xB2, 0x3D, 0x9F, 0x79, 0xE0,\n    0xE7, 0xFD, 0x29, 0xF9, 0x8D, 0xE8, 0x2B, 0x99, 0xF0, 0xCC, 0x0C, 0x05, 0x2E, 0x70, 0xBB, 0x31,\n    0x08, 0xE4, 0x65, 0xDE, 0x75, 0xC1, 0x92, 0xB4, 0x5B, 0xB2, 0x8B, 0x96, 0x03, 0xB2, 0x4D, 0xFF,\n    0x3F, 0xB1, 0x82, 0x5B, 0x54, 0x68, 0xBC, 0x46, 0xFE, 0xF6, 0xCB, 0x6A, 0xC8, 0x00, 0x3D, 0xA6,\n    0x0E, 0xDB, 0xA9, 0x85, 0xE5, 0xDA, 0xB3, 0xA7, 0xBF, 0xD1, 0x76, 0xE8, 0xEA, 0x8E, 0xD5, 0x81,\n    0xBF, 0xDA, 0x02, 0x1C, 0xED, 0xCF, 0x88, 0x81, 0x7B, 0x48, 0x29, 0x16, 0x5F, 0xE0, 0xA0, 0xE5,\n    0x86, 0xFE, 0x29, 0x46, 0x3F, 0x95, 0x20, 0x52, 0xFD, 0xFC, 0xE5, 0x74, 0x34, 0xE9, 0x54, 0x1E,\n    0xAE, 0x04, 0x31, 0xF6, 0x31, 0xD1, 0x88, 0x66, 0x28, 0x76, 0xBA, 0xC1, 0x33, 0x72, 0x07, 0x4A,\n    0x22, 0xAF, 0x44, 0xE8, 0x9E, 0xAA, 0x73, 0x05, 0xFD, 0x4F, 0xFD, 0xF3, 0x77, 0x1D, 0xCE, 0xA2,\n    0x01, 0x73, 0xAF, 0x60, 0x3D, 0x2C, 0x40, 0x2C, 0x54, 0xDF, 0xFF, 0xEF, 0x76, 0x11, 0xF3, 0x63,\n    0xE5, 0x2B, 0x56, 0x00, 0xAC, 0xB2, 0xF2, 0x35, 0x7A, 0xCE, 0x61, 0x89, 0x35, 0x7A, 0x4D, 0xE6,\n    0x90, 0x9A, 0xD3, 0x50, 0x70, 0x7D, 0x1F, 0xA7, 0xEC, 0x9E, 0x74, 0x00, 0xC7, 0xF9, 0x71, 0xF9,\n    0xD7, 0x64, 0x18, 0xD3, 0xB5, 0x3D, 0x53, 0x3A, 0x5C, 0xB3, 0x21, 0xB3, 0xA1, 0x6B, 0xDB, 0x8F,\n    0xFB, 0xBF, 0x0B, 0x20, 0xC9, 0x79, 0xBF, 0x4C, 0xCF, 0xFD, 0xBA, 0xCC, 0x55, 0x3C, 0xA4, 0xCA,\n    0xAC, 0x3A, 0xBA, 0x1E, 0xD6, 0xF3, 0x75, 0xD2, 0x03, 0x8D, 0x61, 0x73, 0x43, 0xDE, 0xF4, 0xA6,\n    0x27, 0xE5, 0x2F, 0xDC, 0x3A, 0x45, 0x5C, 0x9B, 0xA2, 0x17, 0xB6, 0x0C, 0x5F, 0x24, 0x4E, 0x09,\n    0x4F, 0x5C, 0x70, 0x8B, 0x60, 0x74, 0xA1, 0x3B, 0x5E, 0x5E, 0x41, 0xA0, 0x99, 0xB6, 0xDE, 0x7D,\n    0x1D, 0xAD, 0x66, 0x67, 0xD4, 0xA0, 0x14, 0xB2, 0x15, 0xA5, 0x6D, 0xF1, 0x45, 0x20, 0x1B, 0xC0,\n    0x73, 0x20, 0xC4, 0x68, 0x3D, 0x5B, 0xF9, 0x2B, 0xCB, 0x52, 0x57, 0xD6, 0xF4, 0x58, 0xAE, 0x55,\n    0xE6, 0xEC, 0x63, 0x43, 0x58, 0x87, 0x2E, 0x41, 0x75, 0xF9, 0x82, 0xB4, 0x7E, 0xED, 0x2B, 0x7C,\n    0x8C, 0x5A, 0xAB, 0xE8, 0x07, 0x46, 0xB3, 0x0F, 0x19, 0xE5, 0x93, 0xB6, 0x62, 0x25, 0x72, 0x71,\n    0x81, 0xA3, 0x4E, 0x1A, 0x6A, 0x4F, 0xFD, 0xB2, 0xB1, 0x45, 0xB9, 0x52, 0x40, 0xFE, 0xFE, 0x03,\n    0x07, 0xF0, 0xD4, 0xAD, 0xAA, 0xD3, 0xCD, 0x54, 0x6F, 0x88, 0x5F, 0x1B, 0x6D, 0x08, 0x5F, 0x2D,\n    0x5A, 0xA1, 0xCD, 0x0B, 0x5A, 0xB3, 0x6C, 0x24, 0x8A, 0x04, 0x90, 0x09, 0x05, 0x54, 0xD2, 0xB5,\n    0xEE, 0x41, 0xB1, 0xB6, 0xFA, 0x89, 0x0F, 0xFC, 0xE5, 0xCE, 0xD5, 0x6A, 0xEA, 0x13, 0x47, 0x81,\n    0xBC, 0xC8, 0x53, 0xB4, 0x8C, 0x83, 0x6B, 0x4E, 0x02, 0xF4, 0xBA, 0x3C, 0xCF, 0x36, 0x7F, 0xE3,\n    0xDE, 0x62, 0xAA, 0xB9, 0x14, 0xAC, 0x91, 0x21, 0x5A, 0x9D, 0xE4, 0xF2, 0x28, 0x2F, 0x10, 0xB1,\n    0x10, 0x50, 0x27, 0xCC, 0x92, 0x14, 0x74, 0xD8, 0x54, 0xCF, 0x33, 0xB2, 0xC9, 0x80, 0x52, 0x66,\n    0x74, 0x5D, 0xE7, 0x10, 0x93, 0xEE, 0x12, 0x77, 0xDA, 0x6B, 0x17, 0x90, 0x16, 0xA7, 0x61, 0xEE,\n    0x20, 0xA7, 0xD8, 0x8F, 0xA4, 0x7B, 0xEF, 0xC9, 0xD7, 0xEF, 0xDB, 0xA6, 0x08, 0xFC, 0x1A, 0x58,\n    0xDC, 0xCE, 0xC1, 0x54, 0x6C, 0xCC, 0x3D, 0x8D, 0xE5, 0x79, 0xA3, 0x6B, 0xC4, 0xBE, 0x97, 0x23,\n    0xD2, 0x85, 0x5D, 0x53, 0x37, 0x4B, 0x39, 0xD1, 0xEE, 0x4A, 0x6F, 0xB8, 0x2E, 0x48, 0x57, 0x70,\n    0x0F, 0xD0, 0x18, 0xE4, 0xB0, 0xFD, 0x4D, 0xEB, 0xDF, 0xD3, 0x64, 0xEC, 0x6A, 0x12, 0xDF, 0xEF,\n    0x78, 0x12, 0x67, 0x40, 0x0C, 0x68, 0xBF, 0x7B, 0x74, 0xC5, 0x64, 0x3D, 0x9D, 0x7F, 0xF5, 0xE7,\n    0xDC, 0x2F, 0xB1, 0xAF, 0xB6, 0x9D, 0x31, 0xC8, 0xBA, 0x11, 0x7F, 0xFB, 0x3F, 0xFD, 0x73, 0x7D,\n    0x84, 0xDA, 0xB0, 0x1A, 0x51, 0x10, 0xA0, 0xDF, 0x75, 0xE5, 0x05, 0xF6, 0x40, 0x92, 0x83, 0xDB,\n    0x41, 0x98, 0x0B, 0xAE, 0x19, 0x25, 0xF2, 0xB3, 0xBB, 0xE2, 0x18, 0x97, 0x4C, 0xB5, 0xA8, 0x17,\n    0xB2, 0x02, 0xC6, 0xF7, 0xA2, 0xEE, 0x67, 0x0B, 0xB6, 0xBC, 0x20, 0x13, 0xD9, 0xEA, 0x3E, 0x7F,\n    0xEB, 0xD7, 0x13, 0xCC, 0x82, 0x05, 0x88, 0x14, 0x0C, 0x38, 0xAD, 0x0E, 0x11, 0x9B, 0x39, 0xBC,\n    0x63, 0x58, 0xDC, 0x39, 0xDB, 0x6F, 0xA8, 0x01, 0x1C, 0x10, 0x0C, 0xF4, 0x32, 0xF4, 0xDF, 0xED,\n    0x12, 0x2F, 0x75, 0xFC, 0x6D, 0x85, 0xA2, 0xA6, 0x8B, 0x35, 0xF9, 0xA2, 0xC2, 0x5C, 0xBF, 0x4C,\n    0x81, 0xB9, 0x8B, 0x0B, 0xE5, 0xF4, 0x21, 0xE4, 0xB3, 0x49, 0xA2, 0x4F, 0x33, 0x9C, 0xBF, 0xFA,\n    0xEA, 0x97, 0xED, 0x04, 0xF4, 0x03, 0x3A, 0xF9, 0xA9, 0xF3, 0x84, 0x78, 0x19, 0x79, 0xF4, 0x4F,\n    0x30, 0x45, 0x9D, 0x05, 0xFB, 0x89, 0x30, 0x55, 0x37, 0x0B, 0x21, 0x2A, 0x19, 0xCF, 0xCC, 0xCC,\n    0x65, 0xFC, 0x40, 0x92, 0x03, 0x8E, 0x4D, 0x6E, 0x8C, 0x9C, 0x92, 0x83, 0x9E, 0x51, 0x3D, 0x4E,\n    0x54, 0x8D, 0x34, 0xBF, 0xBF, 0x56, 0x1C, 0x40, 0xC8, 0x98, 0x7B, 0xFD, 0xFF, 0x38, 0x49, 0x81,\n    0x41, 0x88, 0xC2, 0x24, 0xB4, 0xE6, 0x93, 0x9C, 0xA2, 0x91, 0xB4, 0x14, 0x74, 0x14, 0x99, 0xE8,\n    0x5E, 0xC2, 0x93, 0x77, 0x12, 0x05, 0x07, 0xDD, 0x5D, 0xCD, 0xAD, 0xBB, 0xF1, 0xE5, 0x9D, 0x43,\n    0x0A, 0xA4, 0x8B, 0xA8, 0x65, 0x58, 0xA6, 0x1D, 0xAA, 0x2F, 0x94, 0x9C, 0x71, 0x92, 0xC5, 0x48,\n    0xFE, 0xDB, 0xC7, 0xAB, 0x2A, 0xF3, 0x20, 0xB2, 0xFA, 0x76, 0x8A, 0xC9, 0xDC, 0x7C, 0x25, 0x78,\n    0x1C, 0xCC, 0x3A, 0x6F, 0x1F, 0xD5, 0xB4, 0x15, 0xC8, 0x2E, 0x4E, 0x5E, 0x39, 0x6E, 0xB4, 0x05,\n    0xDE, 0x82, 0xD9, 0xDF, 0xB7, 0x6B, 0x6F, 0xB4, 0xC4, 0x12, 0xD2, 0xC1, 0xE5, 0x5C, 0x55, 0x21,\n    0x26, 0xEB, 0x4D, 0x80, 0xD2, 0xD2, 0x7C, 0x4B, 0xEF, 0x9E, 0xE9, 0xA1, 0x62, 0x1E, 0xB5, 0xC6,\n    0xAC, 0xFF, 0xBF, 0x66, 0x5B, 0x9B, 0x98, 0xF3, 0xB3, 0xD0, 0x80, 0xAB, 0x0E, 0x2A, 0xFA, 0x64,\n    0xC9, 0xA0, 0x25, 0x45, 0x8B, 0x42, 0x0F, 0x16, 0xCD, 0x27, 0x97, 0x42, 0x0B, 0xAE, 0xE1, 0x89,\n    0x2F, 0x4A, 0xA8, 0x29, 0xA1, 0x58, 0x4C, 0x48, 0x40, 0x2F, 0x7F, 0x8B, 0x9E, 0x2A, 0x22, 0x21,\n    0x5D, 0x4B, 0xBB, 0xC0, 0x5E, 0x4F, 0x59, 0x9A, 0x24, 0xFA, 0xB6, 0xE0, 0xFA, 0x12, 0x2D, 0xF7,\n    0x47, 0x0F, 0x07, 0x05, 0xBB, 0x95, 0x9C, 0x1E, 0x91, 0xD2, 0x70, 0x79, 0xFD, 0xF9, 0x63, 0x8A,\n    0xCA, 0x90, 0x64, 0x2B, 0xDF, 0xF6, 0x45, 0xFA, 0xF0, 0xCA, 0xE4, 0x72, 0x69, 0x3F, 0x0E, 0x5F,\n    0xDB, 0xE9, 0x19, 0xDA, 0xC5, 0xD2, 0xFB, 0xFB, 0x3F, 0x0C, 0x0F, 0x9A, 0xC7, 0x83, 0xD4, 0xE2,\n    0x7A, 0x02, 0x12, 0x38, 0x4D, 0xC9, 0xFE, 0xC5, 0xD2, 0x5E, 0xDE, 0xB9, 0x17, 0xB1, 0x9D, 0x81,\n    0x8C, 0x2A, 0x40, 0xB3, 0xEA, 0x19, 0xD0, 0xA2, 0x55, 0x5B, 0xEE, 0xC0, 0xC0, 0x00, 0xB4, 0x00,\n    0x0B, 0x10, 0x10, 0xC8, 0x42, 0x0B, 0x09, 0x27, 0x08, 0x58, 0x15, 0xC0, 0x65, 0x7A, 0xF4, 0x5F,\n    0xC8, 0x37, 0x7B, 0x44, 0x28, 0xC9, 0x87, 0xF9, 0x74, 0xAE, 0xCE, 0xE3, 0x26, 0x04, 0xBC, 0x09,\n    0x99, 0xFA, 0xE9, 0x12, 0x02, 0x93, 0x90, 0x7D, 0xEF, 0xB6, 0x94, 0x60, 0xEC, 0xE5, 0x54, 0xBF,\n    0xAD, 0xFE, 0xB7, 0xA8, 0x29, 0x33, 0x13, 0x8E, 0x7B, 0xBB, 0xA5, 0x0E, 0x27, 0x56, 0x78, 0x82,\n    0x55, 0x9C, 0x7D, 0x8E, 0xB9, 0x00, 0x62, 0x2E, 0xCE, 0x58, 0x88, 0x0B, 0x4F, 0x7A, 0xC3, 0x0F,\n    0xEB, 0xB9, 0x09, 0xB0, 0x54, 0xE5, 0x0D, 0xF3, 0xFC, 0xF4, 0x36, 0x81, 0x46, 0xD2, 0x66, 0x0A,\n    0x7B, 0x44, 0x36, 0x9A, 0x50, 0x94, 0xE7, 0x5F, 0xDF, 0xE8, 0xE6, 0x99, 0x0F, 0x78, 0xAB, 0x7D,\n    0x0F, 0xEE, 0x3C, 0x60, 0x66, 0x4F, 0x19, 0x13, 0xA9, 0x6B, 0x50, 0x67, 0x7C, 0x39, 0x9B, 0x6E,\n    0x9B, 0x43, 0xDF, 0xC7, 0xD8, 0xA7, 0x86, 0x56, 0x06, 0xA7, 0xDC, 0xF9, 0xC1, 0x1C, 0xF0, 0x9D,\n    0x25, 0x28, 0x54, 0x85, 0x47, 0x39, 0x90, 0x0E, 0x39, 0x32, 0xD7, 0xCA, 0x25, 0xE9, 0x80, 0x88,\n    0x4A, 0x1C, 0x58, 0x4D, 0x17, 0x24, 0x53, 0x57, 0x26, 0x30, 0x88, 0x41, 0xF4, 0x3C, 0x05, 0x51,\n    0xB6, 0x11, 0x09, 0x5F, 0x7B, 0x63, 0xA2, 0x26, 0x40, 0x15, 0xEF, 0xE7, 0xFF, 0xAB, 0x02, 0x58,\n    0x2D, 0xA9, 0xF0, 0x95, 0x35, 0x2F, 0xFE, 0xCC, 0xA5, 0xE4, 0x22, 0x82, 0x4C, 0xCB, 0x9B, 0xBF,\n    0xB0, 0xBF, 0x0E, 0x67, 0x60, 0x4D, 0x92, 0x5F, 0xFB, 0xDE, 0xFA, 0x97, 0xAF, 0xE2, 0xDD, 0x14,\n    0x9D, 0x9D, 0x99, 0xFE, 0x3A, 0x03, 0x2C, 0x94, 0xE8, 0x47, 0xC1, 0x52, 0x89, 0xE2, 0xFA, 0x63,\n    0xEE, 0x47, 0xE7, 0x3F, 0xA4, 0x64, 0x4A, 0x7C, 0x23, 0xEE, 0x4D, 0x0A, 0x22, 0xC7, 0x75, 0xD9,\n    0xA7, 0xC5, 0x5B, 0x2E, 0xAE, 0xF7, 0xD8, 0x71, 0x55, 0x2E, 0x61, 0xC0, 0x07, 0x64, 0xD8, 0x99,\n    0xBE, 0x1E, 0xC0, 0x2D, 0x1B, 0x8B, 0xD6, 0xCC, 0x1F, 0x4D, 0x4D, 0x67, 0x35, 0x18, 0x51, 0x38,\n    0x0D, 0x3E, 0x9F, 0xBC, 0xBE, 0x44, 0x80, 0x1B, 0xAD, 0x52, 0xB8, 0x99, 0x28, 0xBB, 0xD9, 0xE2,\n    0x11, 0xFF, 0x7E, 0x3D, 0xA9, 0x36, 0x0E, 0x7E, 0xB9, 0xCF, 0x11, 0x2F, 0x4C, 0x49, 0xDA, 0x54,\n    0x08, 0xB3, 0x56, 0xEC, 0x6D, 0x95, 0x4B, 0x91, 0x90, 0x1E, 0x8B, 0x7F, 0xDF, 0x4D, 0x99, 0x37,\n    0x84, 0xAD, 0x0A, 0x72, 0x37, 0x74, 0x80, 0x47, 0x1C, 0xDA, 0xBC, 0xB3, 0x6F, 0x3A, 0x90, 0xF5,\n    0x2B, 0x07, 0x1E, 0x5F, 0x4B, 0xBD, 0x76, 0x9B, 0x0F, 0xF7, 0xFE, 0x6F, 0xAF, 0x61, 0x7B, 0xDC,\n    0x8B, 0xDE, 0x2F, 0x26, 0x05, 0x0E, 0x24, 0x53, 0x58, 0x09, 0x8D, 0xB8, 0x66, 0x25, 0x03, 0x11,\n    0x70, 0x37, 0xBC, 0x5E, 0x20, 0x21, 0xF4, 0x39, 0xB3, 0xD1, 0xDB, 0xE7, 0xE5, 0x2B, 0x96, 0xFC,\n    0x90, 0xBA, 0x37, 0xFE, 0x60, 0xE4, 0x3D, 0x40, 0x07, 0xFC, 0x18, 0xBE, 0xE0, 0xC2, 0x21, 0x76,\n    0xB3, 0xB3, 0xC0, 0x8D, 0x15, 0x12, 0xE5, 0x64, 0x60, 0x4B, 0xEF, 0x3D, 0xE5, 0xA1, 0xE0, 0x88,\n    0x7D, 0x81, 0x39, 0x82, 0xE8, 0xA4, 0x16, 0xBC, 0x17, 0x94, 0x3C, 0x82, 0xB4, 0x76, 0x95, 0x38,\n    0xDF, 0xC8, 0xE8, 0xF8, 0xE7, 0xC7, 0xFF, 0x02, 0xFB, 0xF6, 0xB3, 0x4E, 0x96, 0xB8, 0xC8, 0xC8,\n    0x71, 0xFF, 0x1E, 0x46, 0xC3, 0x0E, 0xAF, 0xC3, 0x36, 0x52, 0xEB, 0xFE, 0x2C, 0x03, 0x92, 0xF4,\n    0x69, 0xAC, 0xCB, 0x2A, 0xC9, 0x8F, 0x3A, 0x5F, 0x57, 0x2B, 0xB9, 0xEC, 0x62, 0x4D, 0x9E, 0xF7,\n    0xD7, 0x31, 0x10, 0x06, 0x42, 0xA2, 0xFE, 0xB5, 0x17, 0x0F, 0x3B, 0x6E, 0xA9, 0x80, 0xCC, 0x58,\n    0x9C, 0xDC, 0xF8, 0xF1, 0x26, 0xE0, 0x2C, 0x00, 0x83, 0x03, 0xC3, 0x42, 0x80, 0x0D, 0x3A, 0x07,\n    0xCD, 0x8B, 0xD1, 0x31, 0x85, 0x3F, 0x76, 0xE2, 0xB4, 0x13, 0x65, 0x18, 0x79, 0xE9, 0x9D, 0x46,\n    0xA8, 0x46, 0x9B, 0x3A, 0x85, 0x71, 0xAC, 0xA5, 0xEE, 0x35, 0x6C, 0x15, 0xD4, 0x01, 0x37, 0x9A,\n    0xEB, 0xE1, 0xA5, 0x6C, 0x1E, 0xF9, 0xFF, 0xD5, 0x7A, 0x0E, 0xF2, 0x5A, 0x00, 0x02, 0x00, 0xB7,\n    0xCC, 0xDD, 0xFE, 0xCA, 0x83, 0xBF, 0x07, 0x25, 0x14, 0x61, 0x2E, 0xF9, 0xBA, 0x1B, 0x0D, 0x40,\n    0x08, 0x3C, 0xF7, 0x9E, 0x47, 0x3E, 0x42, 0x4A, 0xA6, 0xCE, 0x80, 0x42, 0xC2, 0x66, 0xFA, 0xAF,\n    0xFE, 0x91, 0x0D, 0xC4, 0x60, 0x06, 0xE6, 0xBC, 0x62, 0x07, 0xCD, 0xB1, 0xB4, 0xF4, 0x68, 0x71,\n    0x69, 0x40, 0xE3, 0xA5, 0x4B, 0x04, 0x10, 0x48, 0x68, 0x38, 0x00, 0x81, 0x48, 0x24, 0xC5, 0x5A,\n    0xB6, 0x46, 0x3D, 0x8C, 0x05, 0x53, 0x01, 0xEA, 0xC9, 0xA0, 0x30, 0xCD, 0x2C, 0xC0, 0xB8, 0xEA,\n    0xBF, 0x84, 0xD0, 0x72, 0xCD, 0x9C, 0xDF, 0x30, 0xF9, 0xE0, 0x70, 0xD8, 0x8C, 0x00, 0x53, 0x68,\n    0x5A, 0xBA, 0xB2, 0x5B, 0xE8, 0x75, 0xB1, 0x5C, 0xFD, 0x3F, 0xEF, 0xF1, 0xBF, 0x63, 0x7F, 0xAE,\n    0xB0, 0xA8, 0xAA, 0xD5, 0x55, 0x22, 0x09, 0x26, 0x0F, 0x0A, 0xF9, 0x5F, 0x0D, 0x49, 0x07, 0x09,\n    0x68, 0x27, 0xBB, 0x76, 0xF8, 0xFB, 0x0F, 0x41, 0x66, 0xA7, 0xFE, 0xF4, 0x6D, 0x27, 0x60, 0x17,\n    0xD0, 0x11, 0x5E, 0xD9, 0x1C, 0x80, 0x47, 0xFF, 0xFF, 0x30, 0x41, 0xB9, 0xDC, 0xD1, 0xFF, 0xEE,\n    0x68, 0x4A, 0x9F, 0xA1, 0x1B, 0xB8, 0x8F, 0xC6, 0xB2, 0xE0, 0xFF, 0xFC, 0xFA, 0xFD, 0x90, 0x52,\n    0x34, 0xFB, 0x36, 0x3E, 0xEF, 0x82, 0x48, 0x31, 0x61, 0x19, 0xAB, 0x1D, 0x0C, 0x88, 0x22, 0x2D,\n    0x0F, 0x4E, 0xCA, 0x3E, 0x27, 0x66, 0x41, 0x00, 0x2A, 0x60, 0x0A, 0x10, 0x05, 0x0A, 0x01, 0x84,\n    0xC0, 0x88, 0x8C, 0xF0, 0x41, 0x01, 0x29, 0x8A, 0x2D, 0xC9, 0xEB, 0x01, 0x4B, 0x20, 0x15, 0x8D,\n    0xD6, 0x85, 0x44, 0x0D, 0x04, 0x81, 0xB7, 0xE4, 0x06, 0x80, 0x6E, 0xDA, 0xAA, 0xE2, 0x44, 0x57,\n    0x27, 0x5B, 0xA0, 0x2E, 0xEC, 0xF5, 0x00, 0xD5, 0x53, 0xD3, 0xF0, 0x46, 0xC4, 0xB7, 0x4C, 0x47,\n    0x30, 0x56, 0x7A, 0x02, 0x8F, 0xD5, 0x3E, 0xFD, 0xBE, 0xBD, 0x4A, 0x9E, 0xFF, 0xB2, 0xD5, 0x36,\n    0x21, 0x67, 0xE9, 0x12, 0x7F, 0x7D, 0xCD, 0x5D, 0x70, 0x0F, 0xD2, 0x91, 0x9B, 0x0F, 0xAF, 0x34,\n    0x34, 0x1D, 0xD3, 0xCD, 0x2B, 0x57, 0xF6, 0xA3, 0x6D, 0xD6, 0x9F, 0xCE, 0x74, 0xFC, 0x91, 0x37,\n    0x81, 0xFC, 0x3B, 0x86, 0xA5, 0xED, 0x5E, 0x45, 0xA3, 0x70, 0x48, 0x6B, 0x08, 0x67, 0x79, 0xF7,\n    0xFF, 0x41, 0x00, 0x8E, 0x42, 0x01, 0x09, 0x13, 0x18, 0x0D, 0x9E, 0x26, 0x09, 0xD9, 0xA1, 0xE6,\n    0xE0, 0xAD, 0x81, 0xFA, 0x2B, 0x96, 0x06, 0x66, 0x64, 0x0D, 0xB3, 0xA1, 0x12, 0xAE, 0x40, 0x9A,\n    0x59, 0x9B, 0x80, 0x9C, 0x86, 0xAC, 0xA4, 0xE2, 0x11, 0xD9, 0x76, 0x3A, 0xE4, 0x7D, 0xD6, 0xA3,\n    0xEF, 0x90, 0x3D, 0x64, 0xAA, 0x46, 0xE8, 0x4F, 0x3F, 0xF5, 0x7F, 0x61, 0xC6, 0x9C, 0x21, 0x3B,\n    0x79, 0xFC, 0xEE, 0x3F, 0xCF, 0x66, 0x8C, 0x72, 0x03, 0xCD, 0x83, 0xF6, 0x88, 0x57, 0xE5, 0x9F,\n    0x77, 0xC3, 0x77, 0xEB, 0x57, 0xD6, 0x80, 0x95, 0x11, 0x0C, 0x3A, 0x65, 0x0C, 0x66, 0xA6, 0x16,\n    0x40, 0x39, 0x4A, 0x35, 0x67, 0x3B, 0x81, 0xAB, 0xFF, 0xB8, 0x57, 0xF0, 0xF4, 0x70, 0x2C, 0xEB,\n    0xDC, 0xB4, 0x54, 0x9B, 0x38, 0xE9, 0xF7, 0xB7, 0xFF, 0xCD, 0x96, 0x4D, 0x4A, 0xB9, 0xB7, 0x58,\n    0xF2, 0x45, 0x2B, 0x1E, 0x86, 0x74, 0x09, 0x11, 0x1D, 0x41, 0x66, 0x4C, 0x7F, 0xFF, 0x70, 0x58,\n    0x00, 0x40, 0x28, 0x40, 0x08, 0x8F, 0x62, 0xE0, 0x16, 0x1B, 0xDD, 0x0D, 0x29, 0x05, 0x99, 0x92,\n    0x88, 0x31, 0x3C, 0x9B, 0x27, 0x94, 0x27, 0xBA, 0x13, 0x8C, 0xF0, 0xC2, 0xDD, 0x20, 0xCC, 0x32,\n    0xE9, 0x83, 0xD7, 0x01, 0x97, 0x26, 0x72, 0xFE, 0x30, 0xB6, 0x2E, 0xC3, 0xA7, 0xE6, 0x13, 0x01,\n    0xBF, 0x2B, 0x87, 0xAC, 0xDC, 0xAD, 0x31, 0xDD, 0x3F, 0xF3, 0xA1, 0x53, 0x76, 0x79, 0x99, 0xFE,\n    0x2E, 0x0E, 0x81, 0x7B, 0x50, 0xA3, 0x9A, 0x85, 0x08, 0x44, 0xA9, 0xF1, 0x4B, 0x4D, 0x65, 0xCD,\n    0x98, 0xFE, 0x7A, 0x58, 0x46, 0x07, 0x93, 0x71, 0x10, 0x84, 0x87, 0xA3, 0x7B, 0xF4, 0x31, 0x3F,\n    0xF1, 0x04, 0x91, 0x45, 0xC0, 0x00, 0xF7, 0x1D, 0xE7, 0x3F, 0x3D, 0xF0, 0x00, 0xB1, 0x62, 0x16,\n    0xBD, 0x3F, 0x42, 0x02, 0x78, 0xA6, 0x10, 0xC5, 0x2A, 0x65, 0xCC, 0xFA, 0xC5, 0x0F, 0xF3, 0xBF,\n    0xB7, 0xBC, 0x37, 0x0D, 0xFC, 0x42, 0x37, 0x7F, 0xAC, 0x01, 0x72, 0xA2, 0x60, 0x3B, 0x9D, 0x0C,\n    0x39, 0xFF, 0x48, 0x37, 0x35, 0x71, 0xFF, 0xFF, 0x2F, 0xEE, 0x09, 0xAC, 0x6D, 0xAB, 0xC2, 0x0A,\n    0x3A, 0x80, 0xD8, 0x2C, 0xAC, 0x83, 0xC0, 0x0E, 0x28, 0xD8, 0x12, 0x06, 0xFB, 0x60, 0x21, 0xDF,\n    0x9C, 0xD1, 0xA0, 0x71, 0x67, 0x2F, 0x5E, 0xE4, 0x3F, 0xBC, 0x0D, 0xA9, 0x09, 0x7B, 0x8D, 0x23,\n    0xBE, 0x7F, 0x62, 0x4C, 0x84, 0x20, 0x57, 0xD2, 0x21, 0x9F, 0xFE, 0xB5, 0x05, 0xAD, 0x2E, 0xEC,\n    0x9F, 0xD9, 0x42, 0xC9, 0x75, 0x3F, 0xED, 0x71, 0xFF, 0xCC, 0x8C, 0x80, 0x86, 0xDE, 0xC2, 0xB6,\n    0x03, 0x2D, 0x56, 0x02, 0xFC, 0x2D, 0x66, 0x25, 0xFD, 0x37, 0xE3, 0xA7, 0xB4, 0xFC, 0x80, 0x11,\n    0x8C, 0x63, 0x8E, 0xF7, 0x75, 0x53, 0xEB, 0x96, 0x52, 0xBB, 0xD3, 0x80, 0x41, 0x5F, 0x2D, 0xF8,\n    0x94, 0xB8, 0xC2, 0xD0, 0x06, 0xD1, 0x2B, 0xDB, 0xE7, 0x62, 0xF9, 0x0B, 0x58, 0x26, 0x01, 0xD1,\n    0x00, 0x71, 0xA0, 0x06, 0x2A, 0x69, 0xCE, 0x06, 0x60, 0x24, 0x01, 0xA9, 0xE1, 0xA6, 0x2E, 0x56,\n    0x46, 0xC6, 0xD2, 0x4C, 0x06, 0xFB, 0xB5, 0x20, 0xA9, 0x40, 0x1E, 0x1F, 0x2D, 0xA6, 0x4E, 0x9F,\n    0xDC, 0xF0, 0x07, 0xE8, 0xC0, 0x9A, 0xB0, 0x7B, 0xFC, 0xA7, 0xCF, 0x0E, 0x26, 0xFD, 0x2D, 0xA5,\n    0x3E, 0xE8, 0x57, 0x76, 0x1A, 0x53, 0x3A, 0x67, 0x1F, 0x20, 0xCB, 0xFF, 0xB0, 0x5F, 0x24, 0x38,\n    0xCA, 0xA9, 0xCD, 0xFE, 0x25, 0x87, 0x00, 0x3E, 0x2C, 0x89, 0xCA, 0xE3, 0xC5, 0x98, 0x1F, 0xA5,\n    0xB3, 0x28, 0x61, 0x0A, 0x1C, 0x73, 0xBA, 0x35, 0xD6, 0x15, 0xFB, 0x56, 0x1A, 0xF3, 0x9C, 0xCD,\n    0x79, 0xBC, 0xD7, 0x30, 0x0A, 0x23, 0x36, 0x72, 0x4B, 0xA1, 0x66, 0x94, 0x3E, 0xA7, 0x44, 0xF5,\n    0x08, 0x14, 0xDF, 0xFF, 0x00, 0xC4, 0x1E, 0x48, 0x0C, 0x91, 0x43, 0x9B, 0x60, 0x3F, 0x13, 0x76,\n    0xED, 0x35, 0x82, 0xF8, 0xD2, 0x7F, 0x02, 0x9F, 0x1A, 0x4E, 0x64, 0xB3, 0xE9, 0xC8, 0x98, 0x25,\n    0x95, 0x6F, 0x3E, 0x43, 0x0E, 0x42, 0x96, 0x23, 0xD6, 0x90, 0x41, 0x68, 0x12, 0x60, 0x64, 0x45,\n    0xA8, 0x15, 0x3C, 0xD0, 0xD2, 0x3E, 0xE0, 0x4F, 0x32, 0x6C, 0x62, 0xC9, 0x8A, 0x96, 0xCC, 0x83,\n    0x90, 0x2E, 0x3B, 0x91, 0xB2, 0x53, 0xCA, 0x55, 0x19, 0xC0, 0x61, 0xA5, 0x7A, 0x9A, 0x33, 0x78,\n    0x8C, 0x52, 0xB5, 0xE0, 0xF7, 0xA6, 0x20, 0x56, 0x1B, 0x2D, 0x87, 0xAD, 0xCA, 0x85, 0x7D, 0xA5,\n    0x67, 0xF2, 0x4F, 0xA4, 0x0F, 0xA0, 0xB8, 0x67, 0x41, 0x49, 0x42, 0x75, 0x48, 0x8B, 0x7A, 0x94,\n    0xA2, 0x26, 0x66, 0xD9, 0xB7, 0xB0, 0xF9, 0x26, 0x01, 0x55, 0x04, 0x59, 0xF2, 0xEF, 0xEE, 0x26,\n    0x41, 0xB4, 0x96, 0x35, 0xC4, 0x2B, 0xFE, 0xA5, 0x76, 0x00, 0x11, 0xE2, 0x61, 0xDB, 0x9A, 0xCD,\n    0x1A, 0x06, 0x11, 0x35, 0x5F, 0xD9, 0xFD, 0xB0, 0x70, 0x10, 0x58, 0x95, 0x5B, 0x6E, 0x32, 0x1B,\n    0xBA, 0x41, 0xC4, 0x3C, 0x44, 0xDD, 0xCC, 0xBE, 0x96, 0x12, 0xC9, 0x57, 0xC8, 0x27, 0x9B, 0x21,\n    0x98, 0x51, 0x0F, 0x3B, 0x5A, 0xFF, 0xDF, 0xB4, 0xEC, 0xC2, 0x53, 0xE5, 0xD8, 0x7F, 0xED, 0x1D,\n    0xB0, 0xC8, 0x76, 0x9A, 0x32, 0xB1, 0x6F, 0x70, 0xA4, 0x0C, 0x4F, 0xD1, 0x27, 0xFF, 0xBB, 0x6E,\n    0xA8, 0x89, 0xB6, 0x58, 0x00, 0x08, 0x0A, 0x1E, 0xFB, 0xE6, 0x9D, 0x99, 0x41, 0xCC, 0x4C, 0xE1,\n    0x49, 0x59, 0xBA, 0xB8, 0xD8, 0x36, 0x3E, 0xF4, 0x89, 0x04, 0xA6, 0x89, 0xF8, 0xB4, 0xFF, 0xA1,\n    0x92, 0x8D, 0x86, 0x61, 0x6E, 0x4F, 0xB8, 0x14, 0x80, 0x43, 0x99, 0x31, 0x68, 0x9E, 0x4C, 0xEC,\n    0x34, 0x9C, 0x4F, 0xC9, 0xE6, 0x5A, 0x52, 0x26, 0x8E, 0x2D, 0x93, 0x7B, 0xFD, 0x47, 0x65, 0x80,\n    0xFB, 0xB2, 0x1C, 0x97, 0xF9, 0x0C, 0x32, 0x2E, 0x52, 0x3D, 0xCF, 0x9A, 0xC6, 0x75, 0x5F, 0x3F,\n    0xC0, 0xAC, 0x5E, 0x6A, 0x68, 0x19, 0x70, 0x64, 0x7C, 0x8F, 0xFC, 0xD6, 0xBD, 0x2F, 0x27, 0x28,\n    0x2B, 0xEB, 0x38, 0x25, 0x17, 0x4E, 0xBD, 0x86, 0x0D, 0xB1, 0xB0, 0x29, 0x9F, 0xFF, 0xD5, 0xF8,\n    0x4D, 0xA1, 0x24, 0x21, 0xC7, 0xFF, 0x58, 0xF5, 0x15, 0x01, 0xCA, 0xCD, 0x73, 0xEC, 0x00, 0x5A,\n    0x47, 0x42, 0xF8, 0x99, 0x14, 0xAE, 0xF1, 0x0F, 0xFD, 0x99, 0x74, 0x04, 0x7E, 0x76, 0x0E, 0x64,\n    0x1E, 0x6C, 0x00, 0xBD, 0x27, 0xDE, 0x7F, 0x86, 0xDA, 0x5B, 0xDF, 0x98, 0x9B, 0x31, 0xB4, 0xD6,\n    0x6F, 0x74, 0x72, 0x1E, 0x9A, 0x94, 0xB2, 0x17, 0x4F, 0x74, 0xDA, 0x4E, 0x70, 0x11, 0xCA, 0x83,\n    0x16, 0x92, 0xE3, 0x2C, 0xB4, 0xDC, 0x35, 0x23, 0x34, 0xC0, 0x58, 0xEF, 0x4B, 0x49, 0xEF, 0xEB,\n    0x75, 0x79, 0x5C, 0x01, 0xB2, 0xEA, 0x05, 0x93, 0x75, 0xA3, 0x90, 0xBE, 0x44, 0x1B, 0xD7, 0x9F,\n    0x38, 0xA8, 0x6A, 0x09, 0x8D, 0x74, 0xB4, 0x76, 0x96, 0x66, 0xB9, 0x82, 0x8F, 0xFE, 0x86, 0x11,\n    0x35, 0x77, 0x53, 0x06, 0x6F, 0x3E, 0xD3, 0x14, 0xC0, 0x51, 0xD6, 0xCC, 0xF2, 0x37, 0xA1, 0x3E,\n    0x9E, 0xA5, 0x7D, 0xC2, 0xCC, 0xAA, 0xE3, 0x75, 0x49, 0x8F, 0x4E, 0xA3, 0x46, 0xF3, 0x62, 0x4E,\n    0xA4, 0x84, 0x1D, 0xEC, 0x96, 0x0B, 0x9C, 0x3B, 0x78, 0x5A, 0xED, 0x9D, 0xD8, 0x6D, 0xBA, 0x95,\n    0xD1, 0x22, 0xB4, 0x5A, 0xF0, 0xD9, 0x59, 0x32, 0x49, 0x66, 0x59, 0x21, 0x79, 0x86, 0x26, 0x2D,\n    0x02, 0x7C, 0x80, 0xD4, 0xC9, 0x90, 0x95, 0x4D, 0x1D, 0x79, 0x5C, 0x65, 0xD9, 0xBA, 0xBF, 0xF9,\n    0x05, 0xDE, 0x9C, 0xBB, 0x49, 0x6E, 0xC0, 0x49, 0xA1, 0xB5, 0xF5, 0x82, 0xE1, 0x07, 0x9B, 0x5C,\n    0x2E, 0xFD, 0x60, 0x5B, 0x5C, 0x74, 0x85, 0x28, 0xFC, 0x9E, 0x4B, 0x32, 0xBB, 0x4C, 0x47, 0xB5,\n    0xBD, 0xBE, 0xDF, 0x35, 0xA1, 0xE9, 0x25, 0x6C, 0x9E, 0x32, 0x63, 0xFD, 0x1B, 0x3D, 0x2D, 0xE9,\n    0x8B, 0x6A, 0xE4, 0x44, 0xF4, 0xCE, 0x9D, 0x8D, 0xF2, 0x5D, 0x3F, 0xFC, 0xA9, 0x4F, 0x0F, 0x6A,\n    0x85, 0x6F, 0xFD, 0xA0, 0xF5, 0xAC, 0x9F, 0xC5, 0xE5, 0x1D, 0xBD, 0x08, 0x06, 0x34, 0xF3, 0xFD,\n    0x7A, 0x5C, 0xD0, 0x4C, 0x91, 0xF7, 0xC0, 0x76, 0xC5, 0x2F, 0x26, 0x99, 0x76, 0xB4, 0xC2, 0x8C,\n    0x2F, 0x68, 0x12, 0xCC, 0xB0, 0xE3, 0xAB, 0x5B, 0xBD, 0x24, 0x4E, 0xE2, 0x63, 0x77, 0x1F, 0x3C,\n    0x7D, 0x0A, 0xE6, 0xE9, 0x47, 0xEA, 0x20, 0x6E, 0x8A, 0xF9, 0xD3, 0xE0, 0xA6, 0x4F, 0x57, 0x7F,\n    0xDF, 0x22, 0x43, 0xBC, 0xCA, 0x72, 0xB1, 0x5A, 0xCC, 0x9A, 0xF2, 0xD9, 0xE3, 0x8F, 0x01, 0xE4,\n    0x87, 0x5C, 0x90, 0x60, 0xA4, 0xD0, 0xE8, 0x5A, 0x7F, 0xE5, 0x4C, 0x82, 0xC8, 0xF4, 0x45, 0xC1,\n    0x53, 0xB1, 0x45, 0x9E, 0xF1, 0x0C, 0xB5, 0x37, 0x18, 0xFC, 0x91, 0xF5, 0xD3, 0xB1, 0x8B, 0x70,\n    0xAA, 0xD9, 0xAF, 0x85, 0x2A, 0x3E, 0xED, 0x6F, 0xA2, 0x95, 0x47, 0xF2, 0xEF, 0xFF, 0x98, 0x4C,\n    0xBA, 0x16, 0xED, 0x5C, 0x91, 0xB6, 0xEA, 0x0C, 0x99, 0x20, 0xD4, 0xD2, 0xF7, 0xCD, 0xA0, 0xA5,\n    0xD7, 0xF2, 0xA0, 0xD2, 0xED, 0x7D, 0x7B, 0xC1, 0xD4, 0x99, 0x44, 0x04, 0x06, 0xAA, 0xBB, 0x4C,\n    0xE7, 0x85, 0xBA, 0x10, 0x75, 0xF3, 0xF0, 0x78, 0x92, 0x1F, 0xE9, 0xAD, 0xD1, 0xC1, 0x28, 0x9E,\n    0xBD, 0xFD, 0x1D, 0x14, 0x88, 0x62, 0x9F, 0x9A, 0x68, 0xA3, 0x4D, 0xDF, 0x30, 0xD4, 0x53, 0x23,\n    0x4E, 0x34, 0xD0, 0x70, 0x74, 0xBB, 0xED, 0x73, 0x77, 0xDA, 0xC7, 0xC4, 0xFE, 0xDE, 0xBA, 0xD3,\n    0x0B, 0xA9, 0x01, 0x5B, 0xC6, 0x59, 0x8E, 0x64, 0x6D, 0x1E, 0x0A, 0x1D, 0x12, 0xEB, 0x9E, 0x03,\n    0x37, 0x3B, 0x21, 0x4B, 0x05, 0xAC, 0x74, 0x31, 0x18, 0x03, 0xB4, 0x9D, 0x69, 0x21, 0xF8, 0xBF,\n    0xE8, 0x2F, 0xFF, 0xF7, 0x56, 0xC9, 0xB9, 0x46, 0x1F, 0x7F, 0x80, 0x52, 0xA2, 0x3F, 0x8A, 0x5C,\n    0xE0, 0x89, 0x11, 0x5D, 0xEB, 0x3B, 0x92, 0xD5, 0x4D, 0x95, 0xBB, 0xBB, 0x89, 0xBA, 0x11, 0x09,\n    0x12, 0x93, 0x8D, 0x75, 0xA0, 0xB0, 0x73, 0xDA, 0x59, 0x46, 0x8A, 0x38, 0x20, 0xE8, 0xE4, 0xB8,\n    0x3B, 0x1F, 0xC8, 0xD0, 0x5F, 0x3F, 0xD3, 0xA1, 0x86, 0xE9, 0xDD, 0xFF, 0xBE, 0xF4, 0xD5, 0xC2,\n    0x22, 0xD5, 0x60, 0xAC, 0xE2, 0x7D, 0xD6, 0x25, 0x66, 0xD9, 0x77, 0xB4, 0x2F, 0x51, 0x2B, 0xFF,\n    0xEE, 0xAB, 0xC7, 0x40, 0x9D, 0x46, 0x97, 0x7E, 0x93, 0xDE, 0x87, 0x7B, 0xFD, 0xFE, 0x7E, 0xF4,\n    0xFD, 0xEF, 0xA2, 0x16, 0x6F, 0x9D, 0xB5, 0x94, 0xBD, 0x83, 0xF6, 0x40, 0x9A, 0x9B, 0x40, 0x85,\n    0x29, 0xC3, 0x0E, 0x5C, 0xDD, 0x19, 0x26, 0xC1, 0x9F, 0x2F, 0xC4, 0xD5, 0x67, 0x6C, 0x59, 0x50,\n    0x7F, 0x01, 0xCD, 0x07, 0x72, 0x4E, 0x8B, 0xD9, 0x9A, 0xD8, 0x78, 0x8E, 0x5F, 0x37, 0x38, 0x0C,\n    0x3F, 0xD1, 0xDC, 0x90, 0xD8, 0x0E, 0xF2, 0x46, 0x10, 0x23, 0xE5, 0x60, 0x01, 0x64, 0x61, 0x10,\n    0xF3, 0x04, 0xAB, 0xE5, 0x04, 0x1E, 0x8E, 0xF3, 0xC3, 0xFD, 0x2C, 0x0A, 0x5B, 0xE8, 0xF9, 0xCF,\n    0x3D, 0x24, 0xC6, 0x01, 0x83, 0xA6, 0x4E, 0xB1, 0x0B, 0x92, 0x64, 0x4C, 0x20, 0xC5, 0x4D, 0x46,\n    0x31, 0xB6, 0x7F, 0xA9, 0x4A, 0xA7, 0xDD, 0x67, 0x69, 0x1B, 0x99, 0x62, 0x78, 0xAF, 0x34, 0x36,\n    0x9A, 0x40, 0x3F, 0x4F, 0x35, 0xC2, 0xFF, 0xFE, 0xE2, 0x9A, 0xEF, 0x8F, 0xFB, 0x9D, 0x93, 0x2D,\n    0x64, 0x47, 0xFF, 0x5A, 0x76, 0x1A, 0xE4, 0xFB, 0xFA, 0x18, 0x38, 0xF1, 0x0A, 0x51, 0xD4, 0x57,\n    0x3B, 0x89, 0x93, 0xB5, 0x82, 0xAE, 0x73, 0xFD, 0x85, 0x77, 0x75, 0x72, 0x10, 0x75, 0x01, 0x1B,\n    0x19, 0x28, 0xAB, 0xE9, 0xC8, 0xA1, 0x29, 0x54, 0x5D, 0xDD, 0xE9, 0xA0, 0x16, 0x98, 0x00, 0xE8,\n    0xDF, 0x12, 0x9F, 0xF3, 0xD8, 0x09, 0xBF, 0xE2, 0x32, 0x67, 0x45, 0x09, 0x23, 0xEB, 0x76, 0x44,\n    0x96, 0x2B, 0xAA, 0x42, 0xBF, 0xF5, 0xF3, 0xE7, 0x47, 0xAB, 0x16, 0x23, 0x00, 0xF0, 0xD6, 0x6D,\n    0x08, 0x4C, 0x72, 0x44, 0x84, 0xE6, 0xDC, 0xC8, 0xB7, 0xE4, 0xAA, 0x6F, 0x01, 0xBD, 0x02, 0x37,\n    0x76, 0x66, 0x03, 0xED, 0xE1, 0x2F, 0x1F, 0xFE, 0x3F, 0x82, 0x28, 0xE5, 0x33, 0xD7, 0x6F, 0xF9,\n    0x1D, 0x83, 0x9B, 0x62, 0x84, 0xB1, 0x78, 0xF5, 0x88, 0x56, 0xDD, 0xD5, 0x30, 0x2D, 0xF0, 0x15,\n    0x02, 0x71, 0x8D, 0xB0, 0xE1, 0x4B, 0x4A, 0xE8, 0x0D, 0xA0, 0xA0, 0x93, 0x8A, 0xA0, 0x83, 0x83,\n    0xAB, 0x98, 0xAE, 0x4E, 0x54, 0xE1, 0x94, 0x7C, 0x86, 0x29, 0x07, 0x0E, 0xF3, 0x64, 0x1E, 0xCD,\n    0x3A, 0xC5, 0xEE, 0x9A, 0x25, 0xEF, 0x7B, 0xD4, 0xE9, 0x9B, 0x68, 0x6B, 0x6B, 0x15, 0x5C, 0x25,\n    0x37, 0x81, 0xDE, 0xD8, 0xB7, 0xBC, 0x22, 0x1F, 0x8C, 0x2D, 0xE2, 0x0F, 0x53, 0xE2, 0x96, 0xC2,\n    0x21, 0xF5, 0xBD, 0x54, 0x06, 0x17, 0x7A, 0xD3, 0x44, 0x47, 0x3F, 0x86, 0xF9, 0x67, 0x49, 0xD3,\n    0xE4, 0xE0, 0x91, 0xEF, 0xFF, 0xBF, 0x23, 0x8F, 0xEE, 0xF4, 0x94, 0xE6, 0x66, 0xD1, 0x08, 0xBA,\n    0xAA, 0x77, 0x8E, 0x2A, 0x8B, 0x07, 0x1C, 0x0E, 0x07, 0x3F, 0xDE, 0x72, 0xF5, 0x50, 0x3B, 0x8B,\n    0x7D, 0x85, 0x9F, 0xAF, 0x5F, 0xF6, 0xD1, 0x02, 0xC4, 0x5E, 0x2A, 0x73, 0x17, 0xF7, 0xB6, 0x87,\n    0x6E, 0x7B, 0x03, 0x26, 0x00, 0xC1, 0x47, 0xD2, 0xED, 0x99, 0xEA, 0xBB, 0x0C, 0x5A, 0x33, 0x51,\n    0x21, 0x7F, 0x17, 0xCF, 0x2F, 0x24, 0x24, 0x29, 0xB3, 0x04, 0x35, 0x4E, 0x26, 0x5B, 0xF9, 0xFF,\n    0x9D, 0x12, 0xDE, 0x32, 0xAD, 0xD5, 0xDC, 0xD7, 0xC8, 0x6A, 0x88, 0x45, 0xEB, 0xFF, 0x9B, 0x4B,\n    0x08, 0x48, 0x4A, 0x10, 0x00, 0x12, 0x05, 0x2C, 0x40, 0x18, 0xF9, 0xA5, 0x8A, 0x59, 0x41, 0xEF,\n    0x56, 0x45, 0xE5, 0xF4, 0xBE, 0x75, 0x33, 0x67, 0xB6, 0xAD, 0x04, 0x46, 0x4B, 0x5D, 0x41, 0xCE,\n    0x9F, 0x8D, 0x56, 0x18, 0x67, 0x1A, 0x64, 0x6B, 0xE7, 0xAC, 0x64, 0xD8, 0x07, 0x7A, 0x93, 0x89,\n    0x63, 0xFE, 0xCB, 0x50, 0x23, 0xA4, 0x74, 0x9C, 0x53, 0x2E, 0xFD, 0x16, 0xF2, 0xFD, 0x50, 0xFF,\n    0x40, 0x04, 0x4E, 0x23, 0xC1, 0xA1, 0x82, 0x8A, 0xEB, 0x7F, 0xD7, 0x5B, 0x23, 0x35, 0x93, 0x37,\n    0x28, 0x3E, 0x0C, 0x66, 0xAD, 0xA3, 0x2E, 0x7E, 0x17, 0x8C, 0x87, 0xDA, 0xE5, 0xBC, 0x02, 0x10,\n    0x85, 0x06, 0x25, 0xB8, 0xF3, 0x5C, 0xE3, 0xCC, 0x5B, 0x93, 0x85, 0xED, 0x05, 0x78, 0x3D, 0x69,\n    0xA3, 0xBC, 0x90, 0x16, 0xA8, 0x24, 0x25, 0x80, 0x7A, 0xC5, 0xE0, 0xC0, 0x23, 0xA4, 0xE1, 0xB3,\n    0x9C, 0x51, 0xF7, 0xA2, 0x6F, 0xF5, 0x82, 0x6E, 0x2C, 0xA1, 0x18, 0x28, 0x85, 0xCF, 0xF8, 0x05,\n    0x00, 0x7E, 0xA4, 0x99, 0x75, 0x36, 0x1B, 0x95, 0x0B, 0x1B, 0x7F, 0xC1, 0x05, 0x01, 0x50, 0xB3,\n    0xBF, 0x6C, 0xB2, 0xD8, 0x1E, 0x33, 0xD0, 0x78, 0x20, 0x80, 0x13, 0x01, 0x0B, 0x02, 0x86, 0xDA,\n    0x81, 0x35, 0xA6, 0x1F, 0xE8, 0x29, 0xF4, 0xFA, 0x96, 0xA7, 0xE1, 0x29, 0xF8, 0xDA, 0xFD, 0x54,\n    0xD4, 0xF0, 0x5E, 0xB4, 0x4F, 0x87, 0xA4, 0x34, 0x97, 0x90, 0x78, 0xDA, 0x09, 0x8A, 0xDB, 0x12,\n    0x2F, 0xF7, 0x5F, 0xA7, 0x6D, 0x7A, 0x46, 0x76, 0xF9, 0xC9, 0x39, 0xCB, 0x37, 0xFD, 0xDF, 0x07,\n    0x3B, 0xA6, 0x25, 0xAC, 0xBF, 0xE6, 0xA6, 0x5C, 0xFA, 0xCD, 0x70, 0x34, 0xFF, 0x0F, 0x45, 0x3F,\n    0x5F, 0x4E, 0xC7, 0x97, 0x31, 0x1D, 0xFC, 0x97, 0x84, 0x54, 0x80, 0x7B, 0x6C, 0x91, 0x12, 0x08,\n    0x91, 0x9A, 0x48, 0x0F, 0xDF, 0xF9, 0x84, 0x82, 0xFA, 0x79, 0x8A, 0xF8, 0x6A, 0x85, 0x2A, 0x7F,\n    0xDB, 0xF7, 0x2E, 0x91, 0x11, 0x86, 0x04, 0x00, 0x07, 0xC2, 0xBA, 0x42, 0x00, 0x02, 0x43, 0xC8,\n    0x51, 0x93, 0x34, 0x04, 0xA3, 0xC8, 0x4D, 0x7A, 0xB1, 0x2D, 0xB1, 0xB3, 0xA5, 0x4C, 0xDB, 0x38,\n    0xC6, 0xDA, 0x60, 0xD0, 0x1E, 0x9B, 0xE0, 0x86, 0xCF, 0x21, 0x1D, 0xCE, 0x5C, 0xBA, 0x7C, 0x55,\n    0xD8, 0x4F, 0x21, 0x26, 0x77, 0x3F, 0x1B, 0xCC, 0x03, 0xAB, 0x16, 0x97, 0xD9, 0xFD, 0xF4, 0x11,\n    0x8F, 0xC4, 0x90, 0xCD, 0x50, 0x0E, 0xBF, 0x59, 0x2E, 0x86, 0xED, 0x44, 0x86, 0xFF, 0xB4, 0xA2,\n    0xF7, 0xEC, 0xB4, 0xF0, 0xDE, 0x48, 0x0E, 0x19, 0xEE, 0x02, 0x27, 0xC8, 0xB0, 0x02, 0xEA, 0xD3,\n    0x5E, 0xD9, 0x9B, 0xF2, 0x96, 0x7B, 0x01, 0xC7, 0x59, 0x25, 0x31, 0x9B, 0xD2, 0x9F, 0x12, 0x73,\n    0x2B, 0xBB, 0x1E, 0x77, 0x5F, 0xFB, 0x55, 0xA7, 0x24, 0x05, 0x81, 0x0A, 0x04, 0x02, 0x24, 0x50,\n    0x72, 0x21, 0x42, 0x48, 0x4C, 0x6D, 0x00, 0xCA, 0x9E, 0x7A, 0x26, 0x33, 0xE1, 0xB8, 0xE6, 0x61,\n    0x1B, 0xBF, 0xEC, 0xFE, 0xB4, 0x26, 0x47, 0x8B, 0x3B, 0x27, 0x85, 0x9E, 0x73, 0x0A, 0x7F, 0xFB,\n    0xB2, 0xC6, 0x25, 0x49, 0xCB, 0xBD, 0xD6, 0xAB, 0xE7, 0x5A, 0x8F, 0x46, 0x2B, 0x92, 0x41, 0xC5,\n    0x8A, 0x77, 0x8C, 0xB1, 0x3A, 0x00, 0x37, 0xB3, 0x7F, 0x1E, 0x18, 0xD9, 0x48, 0xAF, 0x5B, 0x30,\n    0xD3, 0x66, 0xD8, 0x18, 0x8C, 0xFF, 0x29, 0x77, 0xE6, 0x43, 0x6B, 0x75, 0x5E, 0x8A, 0x07, 0x3D,\n    0xB6, 0x9E, 0x1E, 0x36, 0x5D, 0xEB, 0xF8, 0xE0, 0xA4, 0x76, 0x95, 0xE7, 0x7B, 0x76, 0x23, 0xB7,\n    0xC9, 0x4D, 0x5A, 0x65, 0x07, 0x7D, 0x7C, 0x83, 0x7C, 0x1A, 0x70, 0x0F, 0xC7, 0x0F, 0xA0, 0xFC,\n    0xE3, 0x2A, 0x6E, 0x6E, 0xFC, 0xEF, 0x86, 0x24, 0xC0, 0x96, 0xF5, 0xA2, 0xCD, 0x4D, 0x83, 0x66,\n    0x19, 0xA8, 0x92, 0x02, 0x2D, 0xEC, 0x00, 0x08, 0x9F, 0x11, 0x81, 0x3E, 0xE2, 0xCB, 0x3F, 0x3C,\n    0x16, 0x21, 0x1D, 0xEF, 0xE7, 0xD3, 0xE9, 0x4B, 0xA8, 0xD6, 0xC7, 0xAD, 0x7F, 0x49, 0x77, 0x10,\n    0xE9, 0x25, 0x7B, 0x4B, 0x68, 0x3F, 0x5F, 0xEA, 0x5F, 0x0B, 0xF7, 0xE1, 0x7D, 0xA4, 0x0D, 0x03,\n    0x5F, 0x65, 0x4F, 0xA7, 0x99, 0x00, 0xA2, 0xFC, 0xAE, 0xDE, 0xE6, 0x51, 0xDB, 0x66, 0x66, 0x81,\n    0x38, 0x9D, 0x6D, 0x89, 0xF9, 0xAD, 0x59, 0x60, 0x4B, 0x7D, 0x25, 0xDD, 0xFA, 0xEB, 0x29, 0x67,\n    0x80, 0x3C, 0x67, 0x7A, 0xC6, 0xF6, 0x0D, 0xCC, 0xA7, 0xE6, 0x04, 0x1F, 0x98, 0xB3, 0x82, 0x5E,\n    0x97, 0x74, 0x9C, 0x34, 0xBF, 0x2A, 0x43, 0xBF, 0xDD, 0x0E, 0xE5, 0x0F, 0x01, 0x08, 0x30, 0x84,\n    0x04, 0x01, 0x85, 0x07, 0x5C, 0xAE, 0x16, 0xEB, 0x8F, 0x89, 0x3B, 0xD3, 0x1B, 0x01, 0x96, 0x44,\n    0x94, 0x40, 0xA2, 0xC1, 0x26, 0x0F, 0x47, 0x0F, 0x45, 0x53, 0x57, 0x13, 0xA1, 0xDD, 0xF1, 0x12,\n    0xCE, 0x63, 0x17, 0x27, 0xFF, 0x26, 0xF1, 0x64, 0x57, 0x0E, 0x58, 0x53, 0xF7, 0xDD, 0x7E, 0x08,\n    0x1B, 0xE3, 0x00, 0xA2, 0xA7, 0x7F, 0xBA, 0xAF, 0x5C, 0x45, 0xB3, 0xDF, 0xE5, 0xF0, 0x8D, 0x2D,\n    0xD3, 0x53, 0xDF, 0xEF, 0x95, 0x27, 0x60, 0x3E, 0xED, 0x7A, 0x5D, 0x5A, 0x3B, 0x95, 0x0F, 0x90,\n    0x76, 0xE6, 0xD1, 0x64, 0xCB, 0x8D, 0x68, 0x68, 0x2D, 0x4D, 0x52, 0x7C, 0x42, 0x8A, 0xD3, 0x1A,\n    0x50, 0x01, 0xCF, 0x75, 0xE8, 0xC0, 0x52, 0x43, 0x1A, 0xFB, 0xAA, 0x00, 0x5E, 0xDB, 0x46, 0x77,\n    0xDD, 0xFF, 0xBB, 0x51, 0xA4, 0x14, 0x20, 0x52, 0x1E, 0xF6, 0x3C, 0x37, 0x14, 0xFB, 0xE1, 0xE1,\n    0x13, 0xC4, 0x0E, 0x04, 0x74, 0xBF, 0xD2, 0xC5, 0x6E, 0x45, 0x85, 0xC5, 0xDE, 0x8B, 0x97, 0x81,\n    0x97, 0x36, 0x1C, 0xA7, 0xB0, 0x0F, 0x36, 0xCF, 0xD2, 0x50, 0x44, 0x52, 0x03, 0x88, 0xA1, 0xBD,\n    0xF1, 0x98, 0x08, 0x59, 0x13, 0x71, 0xEF, 0x2E, 0x3C, 0x3D, 0x58, 0x4C, 0x87, 0x19, 0x4F, 0x28,\n    0x3B, 0xBD, 0xD0, 0x30, 0x19, 0x51, 0xA8, 0x7C, 0xD3, 0xDF, 0x37, 0x6F, 0x19, 0x34, 0x26, 0x8B,\n    0x43, 0xF2, 0x09, 0xA6, 0x3F, 0x21, 0xE6, 0xF7, 0x74, 0x29, 0xBF, 0x9D, 0x6D, 0x40, 0x18, 0xCB,\n    0xDC, 0xDE, 0x18, 0xD4, 0x43, 0xF9, 0x2B, 0xEC, 0xF1, 0xF6, 0xF5, 0x52, 0xDC, 0x5E, 0x6F, 0x33,\n    0xFA, 0xBF, 0x2D, 0xFE, 0x04, 0x32, 0x93, 0x67, 0xBD, 0xFB, 0xF2, 0xA4, 0x5D, 0x30, 0xB5, 0x41,\n    0x75, 0x5F, 0x6C, 0x10, 0x00, 0x13, 0x28, 0x02, 0x16, 0x11, 0x81, 0xA5, 0x36, 0x4C, 0x04, 0x83,\n    0x94, 0x20, 0xFB, 0x81, 0x80, 0x0B, 0x77, 0x5E, 0x4F, 0x9B, 0x28, 0x01, 0xA9, 0x7E, 0xB8, 0xF8,\n    0x94, 0xA0, 0xB4, 0xFA, 0xF1, 0xF7, 0xC0, 0x40, 0x92, 0x5F, 0x20, 0xD9, 0xE8, 0xF0, 0x42, 0x38,\n    0x07, 0x5C, 0x6F, 0x63, 0xFD, 0xA8, 0xB0, 0x70, 0xE7, 0x09, 0x57, 0x89, 0x6A, 0x5E, 0xBF, 0xF7,\n    0x71, 0x26, 0xB1, 0xE5, 0x62, 0x08, 0xD0, 0xCA, 0x06, 0xFA, 0xFA, 0xDB, 0xFF, 0xC0, 0x59, 0x00,\n    0x03, 0xFE, 0xFD, 0x94, 0x90, 0x40, 0x1D, 0xF6, 0x65, 0x20, 0x41, 0x20, 0x4B, 0x16, 0x18, 0x79,\n    0x4B, 0x5D, 0xC2, 0xDE, 0x60, 0x95, 0x76, 0x6C, 0x50, 0x24, 0x05, 0x1E, 0x32, 0xE4, 0xC7, 0x88,\n    0xF3, 0x9C, 0x3A, 0x68, 0x73, 0xD4, 0x33, 0x79, 0xA0, 0x06, 0x67, 0x84, 0x72, 0x43, 0xA2, 0xD7,\n    0x0C, 0xC1, 0x22, 0x25, 0xF6, 0xF0, 0x5B, 0xC1, 0x16, 0xE5, 0x96, 0x80, 0x48, 0x2C, 0x05, 0x4F,\n    0x69, 0xDF, 0xF4, 0x7A, 0xA3, 0x90, 0x90, 0x45, 0xCC, 0x49, 0x61, 0x2D, 0x33, 0x6C, 0xC0, 0x4B,\n    0xFD, 0xE4, 0xC1, 0xA8, 0xC1, 0x19, 0x2F, 0x9F, 0xDF, 0x43, 0xB9, 0x40, 0xF9, 0x9C, 0xBE, 0x54,\n    0xA6, 0xEC, 0xED, 0xAC, 0xEA, 0xD1, 0xB0, 0x41, 0x65, 0x5B, 0x26, 0xB6, 0x81, 0xC7, 0x28, 0xE2,\n    0x5F, 0x86, 0x94, 0x24, 0x90, 0x02, 0x87, 0x0F, 0x6B, 0x32, 0x45, 0x6B, 0x47, 0x2B, 0xA9, 0xD2,\n    0xC7, 0xD0, 0x06, 0xAA, 0x40, 0x04, 0x6B, 0xA3, 0xFC, 0x0E, 0xD5, 0x8F, 0xAB, 0x6F, 0x27, 0xC1,\n    0x5C, 0x7F, 0xF2, 0xB4, 0xD8, 0xA5, 0x41, 0x22, 0x2E, 0xD7, 0xFD, 0xF8, 0x2D, 0xCD, 0x85, 0x22,\n    0x9F, 0x8D, 0xD8, 0x35, 0x6C, 0x96, 0x1A, 0xC6, 0x34, 0x09, 0x4A, 0x97, 0xBF, 0x7C, 0xA6, 0x6C,\n    0x29, 0x22, 0xD7, 0x3C, 0x25, 0xA1, 0xB4, 0xB8, 0xD7, 0x4D, 0xB6, 0xC5, 0xB7, 0xCF, 0x0A, 0x70,\n    0x21, 0x9A, 0x26, 0x28, 0xFE, 0x98, 0xA4, 0xB8, 0x17, 0xB5, 0x2B, 0x55, 0xED, 0x57, 0x9B, 0x4D,\n    0xBF, 0x81, 0x3F, 0xF6, 0x2F, 0x7F, 0x21, 0x02, 0x76, 0x1B, 0xFB, 0xA9, 0x4E, 0xD9, 0x1A, 0x52,\n    0x9A, 0x93, 0x40, 0x57, 0x14, 0xAF, 0x40, 0x86, 0xAF, 0x28, 0xDC, 0x9B, 0x13, 0x97, 0xBD, 0x14,\n    0x68, 0xF0, 0x37, 0x2F, 0xF9, 0xE7, 0x42, 0x4D, 0x0D, 0x16, 0xA9, 0x55, 0xB6, 0xB8, 0x4B, 0x0B,\n    0xFF, 0x7C, 0x8F, 0xA6, 0x83, 0xA4, 0xBF, 0xA4, 0x2D, 0x75, 0xD1, 0x4B, 0x43, 0x8D, 0xF7, 0x7A,\n    0xB1, 0x81, 0x29, 0x83, 0xA6, 0xDF, 0xCA, 0x8A, 0x8D, 0x2D, 0x22, 0x8B, 0xFD, 0x1A, 0x04, 0x25,\n    0x22, 0x43, 0x66, 0x88, 0x13, 0x31, 0x20, 0xF6, 0x8E, 0xA6, 0x18, 0x91, 0x3A, 0x53, 0xC9, 0xA7,\n    0x29, 0x7F, 0xFD, 0x6A, 0x65, 0x5F, 0x4B, 0xA1, 0xB9, 0x39, 0x3A, 0x88, 0x28, 0xA3, 0x27, 0xA9,\n    0x1B, 0x46, 0x96, 0xFE, 0x88, 0xD9, 0x84, 0x43, 0x9D, 0xCD, 0x3E, 0x53, 0x38, 0x1A, 0x23, 0x97,\n    0xF9, 0x3F, 0x81, 0x72, 0x2F, 0xF7, 0x30, 0x95, 0x4D, 0x88, 0xF6, 0x89, 0x27, 0xE6, 0xF8, 0x78,\n    0x31, 0xF2, 0xA4, 0xAC, 0xF8, 0x7B, 0x75, 0xFD, 0xD4, 0x21, 0x68, 0x07, 0x31, 0x46, 0x53, 0xD2,\n    0xBC, 0x38, 0xF4, 0xB5, 0x7F, 0x69, 0xE8, 0x5B, 0x85, 0xAE, 0xFA, 0x27, 0xC9, 0x06, 0xF5, 0x09,\n    0x76, 0xB3, 0x05, 0xC9, 0xC2, 0xB5, 0xFF, 0xBC, 0xDD, 0x3B, 0x0B, 0x4A, 0x56, 0x7E, 0xA4, 0x0B,\n    0xEE, 0xF9, 0x5C, 0x1A, 0xD7, 0x9A, 0x8A, 0xEF, 0x48, 0x05, 0x6E, 0xE5, 0x47, 0xCC, 0x7D, 0xC5,\n    0x65, 0xAF, 0x34, 0x36, 0xB9, 0x0D, 0x0C, 0x1A, 0x0D, 0xF7, 0x6E, 0xBA, 0x3B, 0x89, 0x84, 0x80,\n    0x38, 0x8A, 0x3E, 0x63, 0xB0, 0xD3, 0x5F, 0x4F, 0x23, 0x58, 0x26, 0x29, 0x08, 0xD9, 0x33, 0x34,\n    0xFF, 0xFF, 0x0C, 0xEC, 0x96, 0x2B, 0xB7, 0x89, 0x1A, 0x81, 0x0E, 0x24, 0xC3, 0x23, 0x29, 0xAD,\n    0x5D, 0xF0, 0x8F, 0x4A, 0x12, 0x78, 0xAB, 0x5D, 0x1D, 0x45, 0x2E, 0xF5, 0x10, 0x0C, 0x4D, 0xE2,\n    0xA0, 0xB7, 0xEC, 0xD6, 0x86, 0xAF, 0x52, 0xC9, 0xA1, 0x64, 0x73, 0x86, 0x9A, 0x61, 0xA9, 0xFA,\n    0xF4, 0x9B, 0xFB, 0xD0, 0x2B, 0xB8, 0x76, 0xF9, 0x5F, 0xF7, 0x57, 0xA2, 0x18, 0x6D, 0xB7, 0x96,\n    0xCB, 0x0E, 0x36, 0xA1, 0xB2, 0x99, 0x09, 0x9B, 0xBC, 0x0D, 0xB1, 0x04, 0x27, 0x3D, 0x30, 0xBC,\n    0x92, 0xAD, 0xA9, 0x45, 0x65, 0x47, 0x84, 0xBE, 0xDA, 0x74, 0xFB, 0x0B, 0x46, 0xEE, 0x50, 0xBD,\n    0x2C, 0x4F, 0x7B, 0xC8, 0x04, 0x72, 0x77, 0xEE, 0xD7, 0x6E, 0x69, 0x54, 0x0A, 0x23, 0xE6, 0xBC,\n    0x0C, 0x39, 0x7C, 0xB4, 0xDE, 0xFA, 0xDE, 0x95, 0x33, 0x68, 0x33, 0x78, 0x99, 0x5C, 0xF6, 0x42,\n    0x82, 0x4A, 0x25, 0x22, 0xD0, 0x3B, 0x15, 0x59, 0x1A, 0x7F, 0x02, 0x64, 0xB0, 0xE3, 0xF3, 0x82,\n    0x01, 0x0C, 0xCE, 0x0B, 0x42, 0x16, 0x75, 0x3B, 0x4D, 0x5D, 0x0D, 0x62, 0x41, 0x27, 0xF0, 0xBD,\n    0x6A, 0xFB, 0x3F, 0x83, 0x27, 0x05, 0x5B, 0xB8, 0xAB, 0x8D, 0x9D, 0xBE, 0x33, 0xCD, 0x4F, 0xC9,\n    0x78, 0xBB, 0x9B, 0x33, 0xB5, 0x88, 0x0D, 0xD4, 0x1B, 0xA7, 0xAA, 0xCA, 0x17, 0x8D, 0xCF, 0x7D,\n    0x65, 0xB6, 0xD2, 0xDD, 0xC3, 0x45, 0xD0, 0xBD, 0xAF, 0xD3, 0x0E, 0x41, 0xD9, 0xCA, 0xCE, 0xF7,\n    0x42, 0xAC, 0x76, 0x83, 0xE9, 0x4C, 0x86, 0xB5, 0x6F, 0x64, 0x15, 0x33, 0x91, 0x77, 0x2B, 0x5F,\n    0x3F, 0x78, 0xD7, 0x39, 0x7D, 0x6E, 0x5B, 0xC5, 0xE1, 0x0D, 0xA8, 0xF1, 0x7D, 0xE3, 0xD8, 0x85,\n    0x9C, 0x9F, 0x84, 0x81, 0x6B, 0x4E, 0xFF, 0x4B, 0xA0, 0xFB, 0xFD, 0x15, 0x17, 0x77, 0xB8, 0x03,\n    0xC4, 0x09, 0xC0, 0x2C, 0xC0, 0xF7, 0x0F, 0x91, 0xB3, 0x24, 0x77, 0x83, 0xAE, 0x95, 0x29, 0x49,\n    0x03, 0x34, 0xAE, 0xEC, 0x54, 0x35, 0x4B, 0x8F, 0x64, 0x24, 0x74, 0x3F, 0x74, 0xF7, 0xBB, 0x1E,\n    0x5F, 0xFD, 0xB0, 0x91, 0xC9, 0x2D, 0x5F, 0xB3, 0x37, 0xC4, 0xAD, 0xEB, 0x3C, 0x3E, 0x25, 0x1D,\n    0x14, 0x83, 0xF1, 0x94, 0xAD, 0xFB, 0xFF, 0x03, 0xB5, 0x67, 0xE1, 0xEF, 0xAA, 0x95, 0xC0, 0x7E,\n    0x20, 0x20, 0xCA, 0x2A, 0xD5, 0xBF, 0x70, 0x3B, 0x8D, 0x11, 0xDF, 0xEF, 0x5D, 0xE9, 0xF9, 0x11,\n    0x0B, 0x9F, 0xFE, 0xFF, 0xDC, 0x63, 0xE4, 0x54, 0xE7, 0xC7, 0x18, 0xFC, 0x65, 0xA0, 0x5F, 0xCE,\n    0xD6, 0xDB, 0x4D, 0x15, 0x49, 0xD0, 0x13, 0x5B, 0xAA, 0x18, 0x13, 0xE6, 0xF9, 0x88, 0xA5, 0x29,\n    0x9B, 0x69, 0x98, 0xF2, 0x07, 0x8A, 0xFD, 0xD4, 0x6C, 0x5C, 0x25, 0xCD, 0x55, 0xDD, 0x05, 0x5A,\n    0x37, 0xA3, 0x5D, 0xF9, 0x51, 0x38, 0xC3, 0x7F, 0xB9, 0x1F, 0xF7, 0x6A, 0x6B, 0xB0, 0xE3, 0x1D,\n    0x14, 0x64, 0xBD, 0x74, 0x8E, 0x4A, 0x1F, 0xB7, 0xFD, 0xFE, 0xCB, 0x34, 0x0F, 0x8A, 0xAF, 0x46,\n    0xCF, 0xE6, 0x8B, 0x1F, 0xA1, 0x39, 0x59, 0x28, 0x03, 0xD6, 0x05, 0xF8, 0x22, 0x69, 0xEA, 0x2F,\n    0x49, 0xEC, 0x80, 0x64, 0x1E, 0x95, 0x77, 0x8C, 0xDA, 0x89, 0x5E, 0xA2, 0x35, 0x40, 0x7E, 0x9C,\n    0x14, 0x10, 0xB9, 0xFD, 0x8F, 0x8A, 0x01, 0xDA, 0x22, 0x76, 0x10, 0xFF, 0x3F, 0xED, 0xE5, 0xAC,\n    0x98, 0x74, 0xA7, 0xDB, 0xF4, 0xBA, 0xC5, 0x5D, 0x28, 0x25, 0xFA, 0x81, 0x84, 0x20, 0x42, 0xF0,\n    0xDC, 0xC4, 0xBD, 0xB0, 0x74, 0x48, 0x5B, 0xB0, 0xB9, 0x2B, 0x13, 0xC6, 0x42, 0xDF, 0x19, 0xFB,\n    0xE7, 0x0D, 0xA7, 0x7D, 0x6E, 0x37, 0x9B, 0xED, 0x5F, 0x59, 0x79, 0x37, 0xF7, 0x98, 0xE9, 0x1E,\n    0x2B, 0xD4, 0x7F, 0x96, 0x70, 0x32, 0xA4, 0xEA, 0x20, 0xC8, 0x87, 0xC2, 0xED, 0x70, 0x57, 0xE4,\n    0xFF, 0x24, 0x88, 0x6F, 0x2F, 0xCF, 0xB9, 0x34, 0x53, 0xF7, 0x38, 0x39, 0x95, 0x77, 0x4F, 0xCF,\n    0xD9, 0xC9, 0x4D, 0xFF, 0xC4, 0xC0, 0x7D, 0x47, 0x1A, 0xF5, 0x33, 0x7C, 0xE5, 0xC0, 0xAD, 0x93,\n    0xC3, 0xAD, 0x74, 0xEB, 0x60, 0x72, 0x48, 0x1D, 0x1C, 0xD0, 0x70, 0xAC, 0x71, 0xE9, 0xF4, 0xF6,\n    0xF2, 0x7D, 0xD1, 0xDC, 0x9F, 0x01, 0x50, 0xAB, 0x78, 0x7C, 0x4B, 0x3F, 0x85, 0xA5, 0x8A, 0x09,\n    0xDF, 0x76, 0x11, 0xB6, 0x8F, 0x7D, 0xEC, 0x9C, 0x5D, 0xDF, 0x7B, 0xB2, 0x7D, 0xB5, 0x8D, 0x1B,\n    0xA1, 0xEE, 0xA8, 0x55, 0x33, 0x5B, 0x95, 0xC7, 0x43, 0xB7, 0xC8, 0xA8, 0xDD, 0x38, 0x7A, 0x50,\n    0x43, 0xB8, 0xA4, 0x70, 0x31, 0x49, 0x6B, 0xDD, 0xF0, 0x64, 0x9F, 0x0F, 0x9E, 0xF9, 0x87, 0x7E,\n    0x02, 0xB6, 0x01, 0x35, 0x55, 0x15, 0x15, 0x5F, 0x20, 0xF8, 0xAB, 0x29, 0x53, 0x1F, 0xED, 0x9A,\n    0x90, 0xF5, 0x17, 0x54, 0x74, 0xF8, 0xA1, 0x4D, 0x7C, 0x4F, 0xCC, 0xBC, 0xF7, 0xF7, 0xFD, 0x33,\n    0xD6, 0x51, 0x4F, 0xAC, 0xAB, 0x47, 0x1E, 0x41, 0xC2, 0x6F, 0xF4, 0xD6, 0xFC, 0xA2, 0x1F, 0xCF,\n    0xC6, 0x4D, 0xCE, 0x85, 0xDE, 0xAD, 0xF5, 0x96, 0xE4, 0x1B, 0x2A, 0x50, 0x68, 0x2E, 0xE6, 0xD4,\n    0xB2, 0xEB, 0x0B, 0xD7, 0x98, 0x3A, 0x10, 0xF3, 0x31, 0x55, 0x8F, 0xEB, 0xCB, 0xBD, 0x8D, 0x22,\n    0x7B, 0x73, 0xE0, 0xF3, 0xBB, 0xDE, 0xB9, 0x22, 0xB7, 0x59, 0x51, 0xF3, 0xD1, 0x46, 0x9A, 0xE8,\n    0x6C, 0xCD, 0xAC, 0x46, 0x2A, 0x4E, 0xB7, 0x67, 0x04, 0xE4, 0xD3, 0x77, 0xD7, 0x68, 0x31, 0xCB,\n    0xAB, 0xAD, 0xDE, 0xA8, 0x90, 0xF3, 0x7D, 0x73, 0xF5, 0xF6, 0xEC, 0x9D, 0xA4, 0xF2, 0x5B, 0x1D,\n    0xFF, 0x3D, 0x00, 0xFD, 0x8E, 0x00, 0x44, 0xC3, 0xC3, 0x8F, 0x85, 0xC8, 0x0C, 0x87, 0xED, 0xE4,\n    0xB7, 0x71, 0xB8, 0x44, 0x28, 0xED, 0xF0, 0xE6, 0xB7, 0xEC, 0x0C, 0x8D, 0xCB, 0x1F, 0x6F, 0x36,\n    0xD2, 0xFF, 0xDF, 0xCF, 0xCB, 0xD2, 0x41, 0xEF, 0x74, 0xF4, 0xF0, 0x23, 0x7F, 0x79, 0x34, 0xF0,\n    0x0D, 0x63, 0x0B, 0x7F, 0xFD, 0x0F, 0x41, 0xD6, 0xD2, 0x9E, 0xFF, 0xE2, 0xC6, 0x41, 0x08, 0x01,\n    0x62, 0x84, 0x08, 0x32, 0x04, 0xAF, 0x48, 0xCD, 0xA2, 0xF8, 0x15, 0x65, 0xB3, 0xD0, 0xA3, 0x62,\n    0xFF, 0x03, 0x5B, 0x90, 0x10, 0x69, 0x23, 0x14, 0xB3, 0xF6, 0x7A, 0x59, 0xE5, 0xBB, 0x1A, 0xDC,\n    0x6B, 0xB9, 0x60, 0x27, 0x74, 0x8A, 0x58, 0x33, 0x99, 0xBA, 0x96, 0xB6, 0xB0, 0x59, 0xE5, 0x5C,\n    0x31, 0x0A, 0x33, 0x74, 0xD8, 0x2B, 0xD1, 0x08, 0x9D, 0xBB, 0x1F, 0xED, 0xE3, 0x3A, 0x34, 0xE8,\n    0x22, 0x63, 0x5D, 0x64, 0x88, 0xB5, 0x31, 0xF3, 0xEF, 0xB0, 0x68, 0x10, 0x3E, 0x00, 0xDB, 0x99,\n    0x11, 0xAF, 0xB0, 0x76, 0x9B, 0x64, 0x4C, 0x32, 0xF5, 0x99, 0x19, 0xD8, 0x26, 0x5B, 0x59, 0xF3,\n    0x29, 0x36, 0x6C, 0x7F, 0x97, 0x27, 0xE0, 0xC9, 0xE0, 0x32, 0x32, 0xA0, 0xD2, 0x1B, 0x04, 0x22,\n    0xAD, 0x89, 0x95, 0x72, 0xA2, 0x3C, 0x7C, 0x30, 0x4C, 0x71, 0xC0, 0x90, 0x7A, 0x9E, 0x0E, 0xD2,\n    0xC6, 0x60, 0xEE, 0x92, 0x0B, 0x1D, 0x9F, 0x0C, 0x46, 0xB1, 0xD9, 0x20, 0xAC, 0x17, 0x16, 0x70,\n    0x78, 0x3E, 0x36, 0xA7, 0x9B, 0xC2, 0xA1, 0x88, 0xA9, 0x4C, 0x53, 0xAE, 0xCB, 0xBF, 0x80, 0x0C,\n    0x5F, 0x3C, 0x85, 0xC0, 0x3B, 0x4D, 0xF1, 0x67, 0xDF, 0x48, 0xD0, 0x8B, 0xDD, 0x46, 0xFE, 0xF4,\n    0xD0, 0xE9, 0x90, 0x69, 0x91, 0x33, 0xD6, 0x6C, 0x0C, 0x91, 0x5A, 0xA4, 0xBE, 0xDF, 0xE1, 0xA3,\n    0xD8, 0x3D, 0xEB, 0xD5, 0xBE, 0x37, 0x9E, 0x41, 0x64, 0xD4, 0x76, 0x7B, 0x8E, 0x26, 0x27, 0x80,\n    0x5A, 0x60, 0xCB, 0x26, 0xC0, 0x88, 0x9A, 0x4E, 0x03, 0xCB, 0x17, 0xF4, 0xF2, 0x9E, 0x63, 0x6A,\n    0xEF, 0xE0, 0x80, 0x54, 0xE0, 0xC1, 0x08, 0x06, 0x40, 0x88, 0x9C, 0x70, 0x1D, 0x30, 0xDA, 0x8A,\n    0xDC, 0x28, 0xFA, 0xF1, 0xBC, 0x1F, 0x84, 0x38, 0x20, 0x44, 0xDC, 0x1B, 0xCC, 0x59, 0xEC, 0x21,\n    0x7F, 0x09, 0xD1, 0xB0, 0xFC, 0xE2, 0xC4, 0x24, 0xAE, 0x48, 0x37, 0xF9, 0xD6, 0x7A, 0x4E, 0xA3,\n    0xD7, 0x41, 0xBF, 0x9C, 0xF5, 0x81, 0x86, 0x6E, 0xEE, 0x14, 0xDA, 0x87, 0x80, 0x37, 0x41, 0x70,\n    0x40, 0xE2, 0xAF, 0x4A, 0x69, 0xBE, 0xA8, 0x43, 0x6B, 0x7D, 0xAC, 0x83, 0x6B, 0x4C, 0x32, 0x6A,\n    0xA4, 0x39, 0x6A, 0xD9, 0x46, 0xAC, 0x9B, 0xD8, 0x18, 0x16, 0xBB, 0xEE, 0xAC, 0x3F, 0x1D, 0xB6,\n    0xBC, 0x8C, 0x80, 0xCD, 0x6E, 0x43, 0xF7, 0x34, 0x28, 0xF3, 0x78, 0x8F, 0xDE, 0x14, 0xE9, 0xFF,\n    0x34, 0xFB, 0x24, 0x5B, 0xB3, 0x82, 0x8B, 0x28, 0x30, 0x73, 0x6A, 0x1F, 0x82, 0x07, 0xAD, 0x16,\n    0x85, 0x7D, 0x24, 0xA6, 0x5A, 0x26, 0xC1, 0xA5, 0xF1, 0xD3, 0x05, 0x67, 0x85, 0xA0, 0xB6, 0x65,\n    0x20, 0x9A, 0x09, 0x60, 0x86, 0x2B, 0x6C, 0x09, 0x52, 0xA8, 0x7C, 0x74, 0xD4, 0x7E, 0x2B, 0xB5,\n    0xCA, 0x08, 0x48, 0xAD, 0x3F, 0x0D, 0xBF, 0x99, 0xB4, 0xC9, 0x18, 0xEE, 0x10, 0x0D, 0x23, 0x46,\n    0xDE, 0x68, 0xAD, 0xBE, 0x77, 0x29, 0x94, 0x9E, 0x63, 0x55, 0x79, 0xF7, 0xC3, 0x9D, 0xD8, 0x4D,\n    0xDB, 0xB4, 0x21, 0xA6, 0x29, 0xFF, 0xDD, 0x03, 0xBD, 0xA7, 0x88, 0x48, 0xBD, 0xB3, 0xF8, 0x6B,\n    0x0A, 0xF5, 0xB5, 0x4D, 0x16, 0xA5, 0x16, 0x1E, 0x8E, 0x98, 0x03, 0x6B, 0xE3, 0x9B, 0x40, 0xF0,\n    0xB3, 0x08, 0x54, 0xA3, 0x5B, 0x78, 0xFF, 0xFF, 0x9E, 0xFC, 0x6F, 0xE5, 0xDA, 0x2B, 0xD9, 0xAD,\n    0xC3, 0x24, 0xBC, 0x31, 0xCD, 0x75, 0x39, 0xFC, 0x35, 0x7A, 0x4C, 0xA6, 0xE8, 0x14, 0xDC, 0x76,\n    0xB7, 0xFD, 0x74, 0x0C, 0x79, 0xF9, 0x34, 0x49, 0x2D, 0xFF, 0xF4, 0x53, 0xD3, 0x40, 0x68, 0x7D,\n    0xAB, 0x7C, 0x55, 0x0D, 0x2E, 0xBF, 0xFF, 0xEC, 0x6D, 0x1D, 0xBB, 0x2A, 0xAB, 0xE9, 0x32, 0x14,\n    0xEA, 0x43, 0x9E, 0xCF, 0xEF, 0x50, 0x5A, 0x80, 0x33, 0x16, 0xF4, 0x4B, 0xC7, 0x87, 0xE8, 0x2F,\n    0x03, 0x84, 0xCC, 0x66, 0x2C, 0x34, 0x04, 0x03, 0x41, 0x5A, 0xE3, 0xBF, 0x7C, 0xE3, 0xFE, 0x65,\n    0xB4, 0xEA, 0x43, 0x1D, 0xFF, 0x24, 0xD0, 0x85, 0xF0, 0xA0, 0x4F, 0x2D, 0xF7, 0xC8, 0xCF, 0x70,\n    0x34, 0xFF, 0x00, 0x84, 0x06, 0xA3, 0x65, 0x43, 0xB3, 0x82, 0x32, 0x7D, 0xC0, 0x79, 0x8C, 0x3B,\n    0x35, 0x1A, 0xD9, 0x97, 0xFC, 0xD4, 0xC1, 0xDB, 0xA0, 0x2B, 0x6B, 0x90, 0xEA, 0x06, 0x0C, 0x31,\n    0xD7, 0xBD, 0x75, 0x82, 0xFA, 0xF0, 0xB7, 0xF8, 0x54, 0x9C, 0xB9, 0x41, 0x88, 0x34, 0x41, 0x4D,\n    0x9D, 0x8F, 0x87, 0xB1, 0x63, 0x5C, 0xAB, 0xCE, 0xC6, 0x29, 0xB1, 0xDA, 0x39, 0xD6, 0x6D, 0x95,\n    0x73, 0xC1, 0x00, 0x5C, 0xD0, 0x5D, 0x0B, 0x52, 0xD3, 0xF8, 0x1C, 0xE1, 0xE9, 0x22, 0xEE, 0x6F,\n    0xF4, 0x3B, 0xE5, 0x96, 0xBF, 0x8D, 0xF2, 0xD9, 0x8B, 0x42, 0x39, 0x53, 0xEF, 0xDC, 0x8E, 0x92,\n    0x65, 0xC2, 0xDC, 0x54, 0xF6, 0x6A, 0x71, 0x9E, 0x29, 0xD0, 0x73, 0xD8, 0x0E, 0x02, 0x34, 0x31,\n    0x01, 0xAC, 0x69, 0xC1, 0xDB, 0xFC, 0xFF, 0xC5, 0x8E, 0x38, 0x87, 0xB1, 0x7C, 0x33, 0xA8, 0x29,\n    0xB4, 0x4B, 0xC5, 0x92, 0xCD, 0x1A, 0x05, 0xCC, 0x35, 0xD9, 0x9E, 0x2E, 0x98, 0x3D, 0x5D, 0x49,\n    0x7E, 0x6E, 0x3A, 0xBB, 0x27, 0x1B, 0x7B, 0x5F, 0xEF, 0xCE, 0xBE, 0x5A, 0x3F, 0x18, 0x68, 0x20,\n    0x0C, 0x86, 0xAC, 0x31, 0xCE, 0xC5, 0x86, 0x02, 0xF2, 0x85, 0xB8, 0x55, 0xDA, 0x00, 0x35, 0x9E,\n    0x2A, 0x6A, 0x5E, 0x78, 0x02, 0x00, 0x9F, 0x18, 0x3C, 0x82, 0x52, 0x8A, 0x07, 0x98, 0x5B, 0xED,\n    0x39, 0x2F, 0xE1, 0x56, 0xDE, 0x07, 0x0C, 0x70, 0x81, 0xED, 0x3F, 0x1F, 0x68, 0x27, 0x91, 0x7B,\n    0xBC, 0x28, 0x3F, 0xB0, 0x03, 0x80, 0xCB, 0xF4, 0x10, 0x2A, 0x0C, 0x4E, 0x0B, 0x52, 0x01, 0x50,\n    0x53, 0xFE, 0x30, 0xEE, 0x58, 0x01, 0xF7, 0x23, 0x34, 0x37, 0x01, 0xB0, 0xDD, 0xB8, 0xDA, 0x2F,\n    0x55, 0x69, 0x1A, 0x26, 0x68, 0x01, 0x2F, 0x55, 0xB4, 0xB5, 0x1F, 0x1F, 0x79, 0x7F, 0xF6, 0x76,\n    0x35, 0x63, 0x78, 0x66, 0x37, 0xD0, 0x3E, 0x10, 0xC4, 0x0C, 0x24, 0x09, 0x80, 0xE0, 0x55, 0x14,\n    0xC0, 0x62, 0x58, 0xF1, 0xAF, 0x80, 0xA2, 0xCA, 0xD8, 0x14, 0x42, 0xB8, 0x08, 0x54, 0xC4, 0x59,\n    0x73, 0xF9, 0xDF, 0x75, 0x65, 0x11, 0x80, 0x3D, 0x4C, 0x55, 0xBB, 0x70, 0xE7, 0x35, 0x7B, 0xCD,\n    0xDF, 0xB8, 0x43, 0x96, 0xC8, 0xB0, 0x63, 0x4E, 0xCA, 0x00, 0x1A, 0xFE, 0x72, 0xE8, 0x14, 0xD3,\n    0xFD, 0x5E, 0x98, 0xB5, 0xA0, 0x83, 0xB0, 0xE3, 0xBD, 0x03, 0x7F, 0x01, 0xEE, 0xD7, 0x34, 0x5B,\n    0xDF, 0x9E, 0xF4, 0x00, 0x4D, 0x5B, 0x90, 0x33, 0x53, 0x83, 0x48, 0x2B, 0x4F, 0x47, 0xE6, 0x90,\n    0x50, 0xEA, 0xD7, 0x7E, 0xBF, 0xC0, 0x51, 0x2D, 0xFB, 0x74, 0x89, 0x7F, 0x98, 0x5E, 0xDF, 0x4E,\n    0x86, 0x95, 0x18, 0x4F, 0x27, 0x78, 0x0C, 0x1F, 0xC2, 0x02, 0x47, 0x3E, 0x1E, 0x23, 0x02, 0x2C,\n    0x83, 0x0D, 0xCE, 0x4B, 0x02, 0x2C, 0x43, 0xAB, 0xE2, 0x2E, 0x2E, 0xCF, 0x75, 0x51, 0x27, 0x51,\n    0xE0, 0xEB, 0x05, 0xC7, 0x89, 0xE6, 0x6F, 0x2C, 0xC3, 0x45, 0x85, 0x8D, 0xAC, 0xE3, 0xC1, 0xEB,\n    0x26, 0xA1, 0x6C, 0x5D, 0x6F, 0xF5, 0xFF, 0x31, 0x98, 0xD3, 0xA4, 0x6F, 0x3A, 0xE9, 0xDA, 0xF5,\n    0xC3, 0xF7, 0xE4, 0x20, 0x72, 0x5D, 0xAD, 0xDC, 0xEA, 0x79, 0x68, 0x20, 0xAA, 0xD1, 0x2E, 0x06,\n    0xB2, 0x1E, 0xF4, 0xB1, 0xFC, 0x77, 0x09, 0x8B, 0xFF, 0xBC, 0xC8, 0x0C, 0x3A, 0x49, 0xA6, 0x66,\n    0xC1, 0x5F, 0x9B, 0x00, 0x16, 0x4B, 0x2C, 0x11, 0x9F, 0xD3, 0xF6, 0x43, 0xD6, 0x95, 0x54, 0x88,\n    0xC8, 0xEF, 0xFC, 0xB7, 0x91, 0x62, 0x5D, 0x59, 0x58, 0x1E, 0x66, 0x02, 0xFB, 0x7E, 0x47, 0x3A,\n    0x61, 0xD1, 0xDF, 0x08, 0xC8, 0x97, 0x25, 0x8D, 0xFB, 0x5F, 0x4B, 0x12, 0x54, 0xA3, 0x11, 0x71,\n    0x42, 0xF5, 0x6B, 0x08, 0xB3, 0x6D, 0x17, 0xF1, 0x45, 0x57, 0xD5, 0xB5, 0x13, 0x63, 0xCA, 0x85,\n    0x6F, 0xEF, 0xF3, 0x17, 0xB4, 0x48, 0xC1, 0x4A, 0xE8, 0xB9, 0xB6, 0x0A, 0x01, 0x98, 0xD2, 0x75,\n    0x46, 0xD2, 0x0E, 0x30, 0xD7, 0xFC, 0xFD, 0x9B, 0x74, 0x52, 0xD8, 0x1C, 0x7F, 0xB2, 0x9A, 0xFB,\n    0x40, 0xE3, 0x89, 0xBF, 0xE2, 0xF9, 0xB9, 0x7C, 0x4B, 0xFF, 0x3B, 0x0B, 0xA2, 0x28, 0x78, 0x4B,\n    0x4B, 0xB4, 0x5E, 0xEE, 0x13, 0x3A, 0x14, 0x43, 0xF4, 0x53, 0x3B, 0xC9, 0x70, 0x33, 0x8B, 0x4A,\n    0xFE, 0xF9, 0x6E, 0xAE, 0xD0, 0x28, 0xA0, 0xAE, 0x69, 0xDF, 0x80, 0x45, 0xC9, 0x63, 0x8B, 0x23,\n    0xE0, 0x40, 0x6B, 0x71, 0xB9, 0x0A, 0xF3, 0xC5, 0x5B, 0x2B, 0xD1, 0x49, 0x0D, 0x45, 0xF7, 0x79,\n    0x80, 0x2A, 0xF8, 0x47, 0xAD, 0xBA, 0xF7, 0xC3, 0x86, 0xCC, 0xA5, 0xE9, 0xC4, 0x28, 0x24, 0xEF,\n    0xDF, 0xAB, 0x7B, 0x73, 0x26, 0xFB, 0x48, 0xD0, 0xD3, 0xDD, 0x74, 0x34, 0x5C, 0x6C, 0xF0, 0x19,\n    0x40, 0x32, 0x5A, 0x87, 0x2D, 0x1A, 0x42, 0x1F, 0x44, 0x72, 0x26, 0xCF, 0x01, 0x47, 0x4A, 0x5B,\n    0x8E, 0xE2, 0x64, 0x0D, 0xB3, 0xBA, 0x72, 0xFF, 0xD1, 0xEC, 0xC9, 0x00, 0x16, 0x02, 0x93, 0x05,\n    0x69, 0x58, 0x78, 0x58, 0x8B, 0xBF, 0x2A, 0x03, 0x1F, 0xFC, 0xF9, 0xC8, 0x01, 0xCB, 0xBA, 0xD8,\n    0x27, 0x92, 0xFD, 0xED, 0x6E, 0xE7, 0xB0, 0x82, 0xD5, 0xF1, 0x35, 0x99, 0x29, 0x30, 0x11, 0x5E,\n    0xB9, 0x18, 0x58, 0xB6, 0x7D, 0x1D, 0xBB, 0x8B, 0x44, 0x98, 0x8E, 0x8F, 0x1F, 0x70, 0xA9, 0x83,\n    0x13, 0xB3, 0x83, 0xB4, 0xE4, 0xD6, 0x40, 0x51, 0xA9, 0x38, 0x08, 0xFB, 0x62, 0x97, 0x7E, 0x41,\n    0xFE, 0xA3, 0x4D, 0x1C, 0x06, 0xB4, 0x11, 0x2B, 0xE2, 0x72, 0x23, 0x8B, 0x86, 0xAB, 0xDD, 0xB5,\n    0xD1, 0x48, 0x09, 0x03, 0xA4, 0xB9, 0xFC, 0xDC, 0xF8, 0x1F, 0x20, 0xEF, 0x4E, 0xE8, 0xB3, 0x66,\n    0x3A, 0x3B, 0x2A, 0xFC, 0xAF, 0xEA, 0x38, 0xAC, 0xE3, 0x22, 0x35, 0xF7, 0x92, 0xDB, 0x06, 0xB4,\n    0x57, 0xE0, 0xE3, 0x5D, 0x5E, 0x31, 0x36, 0xCC, 0x2C, 0x3F, 0xEA, 0xD8, 0x0E, 0xD5, 0x08, 0x7A,\n    0xBD, 0xFF, 0x5F, 0x3E, 0x88, 0x0B, 0xEC, 0xDB, 0xF1, 0xC4, 0x48, 0xC2, 0x23, 0x2E, 0xDF, 0x3B,\n    0x94, 0x1D, 0x52, 0x3A, 0x97, 0x2A, 0x43, 0x4F, 0x90, 0x2C, 0xBC, 0x67, 0xCF, 0x39, 0x80, 0x9E,\n    0x73, 0x27, 0xD3, 0xC9, 0xC6, 0x92, 0x17, 0x24, 0xCA, 0xF4, 0x1A, 0x98, 0x8A, 0x88, 0xB0, 0xB6,\n    0x80, 0xBE, 0x74, 0x5C, 0x38, 0xA0, 0xD2, 0x38, 0xD8, 0x07, 0x15, 0xBE, 0xBE, 0x74, 0x01, 0x14,\n    0xBB, 0xD4, 0x45, 0x88, 0x4A, 0x03, 0xE7, 0xAC, 0x2F, 0x7F, 0x0C, 0x66, 0xB6, 0x1C, 0x03, 0x67,\n    0xD5, 0x32, 0x60, 0xEF, 0x4B, 0xA1, 0xC7, 0x84, 0x46, 0x97, 0xE2, 0x1B, 0x1E, 0xEA, 0xBD, 0xDA,\n    0x2C, 0x45, 0x2F, 0x3B, 0x38, 0x58, 0xCA, 0x4A, 0xCB, 0x7B, 0x43, 0x5B, 0xFC, 0xDC, 0x05, 0x91,\n    0x01, 0x4E, 0x77, 0x55, 0x20, 0x7B, 0x97, 0x1A, 0x02, 0x6B, 0xF5, 0xCE, 0xD1, 0xA0, 0xD7, 0x6F,\n    0xEE, 0x8F, 0x29, 0xC5, 0xDD, 0x22, 0x02, 0x84, 0xAA, 0x24, 0xA8, 0xD5, 0x68, 0xE9, 0x67, 0x11,\n    0x96, 0x8B, 0x75, 0x4C, 0xF4, 0x58, 0xD8, 0xFB, 0x02, 0xD7, 0x85, 0xFD, 0x57, 0xA8, 0xE4, 0xEB,\n    0x13, 0x8E, 0x89, 0xE8, 0x69, 0xD5, 0xBD, 0x59, 0x77, 0x8E, 0xDE, 0xFF, 0x5D, 0xD7, 0xD9, 0xDC,\n    0x64, 0x87, 0x31, 0x32, 0xA1, 0xD5, 0xD6, 0xC9, 0x25, 0xD7, 0x6F, 0xE1, 0xF9, 0xD9, 0x00, 0x08,\n    0x88, 0xEE, 0xA8, 0xAC, 0xBC, 0x3E, 0xBE, 0x63, 0x82, 0x8E, 0xA3, 0xB5, 0xCC, 0xE2, 0x78, 0x73,\n    0xE9, 0x6E, 0x76, 0xED, 0x4F, 0xEF, 0x27, 0xFC, 0x44, 0xB6, 0xEB, 0xEB, 0xF7, 0xFB, 0x43, 0x97,\n    0x97, 0xBB, 0x90, 0x1E, 0x6A, 0x7A, 0x07, 0x07, 0x97, 0x40, 0x9D, 0x5F, 0xCD, 0x02, 0x49, 0x88,\n    0x5B, 0xDB, 0x33, 0xF5, 0xEB, 0x1E, 0xE3, 0x57, 0x0D, 0x10, 0xAA, 0xC1, 0x95, 0x8C, 0x56, 0x7A,\n    0xE6, 0x7A, 0x21, 0xF5, 0xEC, 0xEA, 0xAC, 0x48, 0xCC, 0x59, 0x4C, 0xF7, 0x2B, 0x5A, 0x25, 0xE0,\n    0x19, 0x0E, 0x56, 0x3F, 0x3F, 0x40, 0xB3, 0x83, 0xB2, 0xB1, 0xFC, 0xF1, 0xAB, 0x22, 0x86, 0x92,\n    0xEC, 0x86, 0xF9, 0x97, 0x77, 0x31, 0x62, 0x64, 0x05, 0x49, 0x93, 0x37, 0x88, 0x5A, 0xC8, 0x04,\n    0x20, 0x76, 0x1F, 0xE4, 0xDE, 0x35, 0x0B, 0x75, 0xBE, 0x7F, 0x1A, 0x6C, 0xC3, 0xE7, 0xFA, 0xB7,\n    0x47, 0xF9, 0xD8, 0x50, 0x02, 0x91, 0x94, 0x43, 0x7D, 0x1D, 0x03, 0xED, 0x3E, 0x4B, 0xBE, 0xAE,\n    0xB7, 0xB4, 0x05, 0xF7, 0xDA, 0xBF, 0x28, 0x5F, 0xD9, 0x76, 0xD9, 0xDA, 0x48, 0x52, 0x05, 0xDD,\n    0xCD, 0xD0, 0x02, 0xA9, 0x4B, 0xF8, 0xAF, 0x01, 0x41, 0xE3, 0x36, 0xB6, 0x53, 0x80, 0x17, 0x77,\n    0x50, 0x93, 0x74, 0xE9, 0xC8, 0xE0, 0x4F, 0x9C, 0xCD, 0xAD, 0x6B, 0x3F, 0x2D, 0x09, 0xE3, 0x6F,\n    0xBF, 0x73, 0x8F, 0xC6, 0x88, 0xA5, 0xA7, 0xFD, 0xD6, 0xCF, 0xB8, 0xF8, 0x01, 0x46, 0xB8, 0x04,\n    0x58, 0x8B, 0x25, 0xDD, 0x20, 0xB6, 0xC7, 0x5B, 0x13, 0x95, 0x45, 0x5D, 0x5D, 0x9E, 0x22, 0xA2,\n    0xAF, 0x67, 0x5C, 0xA2, 0xE8, 0x1F, 0x24, 0xEB, 0x0C, 0x72, 0xE2, 0xB3, 0x8C, 0x91, 0x83, 0xED,\n    0xDF, 0x31, 0x9C, 0x6D, 0x09, 0xE0, 0x65, 0x6B, 0x71, 0xBE, 0xFE, 0x8E, 0x87, 0x46, 0x64, 0x6B,\n    0xFC, 0x77, 0xD5, 0x05, 0x63, 0xE5, 0x86, 0x4B, 0x73, 0xA2, 0x64, 0x04, 0x51, 0x40, 0xD8, 0x54,\n    0xD5, 0x00, 0x39, 0x51, 0x63, 0x93, 0xD0, 0x35, 0xD2, 0xF4, 0xE7, 0x86, 0x94, 0xE6, 0xFE, 0xD3,\n    0x28, 0xEC, 0x69, 0xBC, 0xB4, 0x8F, 0xE5, 0xE4, 0x39, 0xFF, 0xF4, 0xB9, 0x91, 0xD2, 0x60, 0xBE,\n    0xDE, 0xEA, 0xF9, 0x61, 0x22, 0x26, 0x2B, 0xFD, 0xFF, 0xCF, 0x07, 0xEE, 0x32, 0x69, 0xF6, 0xB8,\n    0x7D, 0xEF, 0x07, 0xBB, 0xA8, 0xAB, 0x13, 0x9C, 0x7E, 0x80, 0x90, 0x08, 0xEF, 0x8E, 0x0E, 0x25,\n    0x8A, 0xF4, 0x7F, 0xE0, 0xC4, 0x00, 0x33, 0x15, 0x70, 0x19, 0x20, 0x66, 0x95, 0x68, 0x3E, 0x95,\n    0x6D, 0xB9, 0x86, 0xFB, 0x1B, 0xEB, 0x88, 0x6D, 0xD6, 0x4E, 0xD7, 0x52, 0x00, 0x3D, 0xBC, 0xAE,\n    0x6A, 0xCD, 0xA5, 0x9E, 0x3D, 0xFE, 0x19, 0x7F, 0x5F, 0x68, 0x06, 0x9B, 0x33, 0xA7, 0xEB, 0xA6,\n    0x50, 0xA9, 0xB9, 0x74, 0xE1, 0x5A, 0x17, 0xB4, 0xBF, 0xF1, 0xBA, 0x80, 0x88, 0xDC, 0xF7, 0xA5,\n    0x8A, 0x1F, 0xEC, 0x55, 0x3D, 0x13, 0xE5, 0xF4, 0xF9, 0xC3, 0xC9, 0xF8, 0xED, 0x0F, 0x4F, 0x66,\n    0x87, 0xD2, 0x43, 0x8F, 0x39, 0xD0, 0x62, 0xDB, 0x33, 0xD5, 0xB9, 0x41, 0xF4, 0x08, 0x87, 0x89,\n    0xAF, 0x2A, 0x15, 0xDC, 0xF2, 0x01, 0xEC, 0x69, 0x68, 0x76, 0xFA, 0xD8, 0x1B, 0xAA, 0xCB, 0xF9,\n    0xBB, 0xA8, 0xC6, 0xA0, 0xAE, 0xF5, 0xAF, 0x44, 0xC5, 0x0B, 0x58, 0x6F, 0x81, 0x5F, 0x25, 0x94,\n    0x1C, 0x6C, 0xF0, 0x4B, 0x23, 0xFE, 0xEE, 0x02, 0x95, 0x13, 0x83, 0xDF, 0x71, 0x31, 0xDF, 0xF9,\n    0x6F, 0x3A, 0xF0, 0xD3, 0x00, 0xBC, 0xCA, 0x60, 0x7B, 0xC4, 0x40, 0xE7, 0x48, 0xFC, 0x81, 0x0F,\n    0xC6, 0x27, 0xA3, 0x2F, 0xFF, 0xF6, 0x5A, 0xC5, 0x16, 0xD5, 0x40, 0x6E, 0x4E, 0xF7, 0x48, 0xD3,\n    0x46, 0xB1, 0x0E, 0x5F, 0x1F, 0xDB, 0x06, 0xCD, 0xEA, 0x45, 0x8A, 0x6D, 0xB1, 0x23, 0xE1, 0x0D,\n    0xFF, 0xFB, 0xCF, 0x9A, 0x15, 0xAE, 0x45, 0xF6, 0xA0, 0x60, 0x74, 0x20, 0x08, 0x14, 0xD1, 0x43,\n    0x33, 0xFD, 0x58, 0x72, 0x82, 0x6F, 0xD8, 0x0D, 0x5A, 0x02, 0x11, 0xB3, 0x24, 0x1C, 0xB1, 0x09,\n    0xC3, 0x50, 0xE9, 0xC0, 0x81, 0xCB, 0x12, 0x2A, 0xB3, 0x3A, 0xAE, 0xEE, 0xF3, 0xE0, 0x0E, 0xEF,\n    0xE2, 0xB4, 0xDF, 0x09, 0x59, 0xF4, 0x79, 0x96, 0x00, 0xC9, 0x10, 0x6D, 0xB8, 0xDE, 0xAE, 0x04,\n    0x14, 0x85, 0x9E, 0xB5, 0xE2, 0x6E, 0xC2, 0xF1, 0xAD, 0xD1, 0xE9, 0x55, 0xBC, 0x2F, 0x7F, 0xE8,\n    0x25, 0xC7, 0xE5, 0x10, 0xE3, 0x64, 0xFD, 0xFC, 0x43, 0xD3, 0x4A, 0xBC, 0x80, 0x4D, 0x30, 0x56,\n    0xEA, 0x30, 0x3E, 0x52, 0x29, 0xD8, 0xCE, 0x56, 0xBE, 0xE7, 0x1B, 0x61, 0xEF, 0xB4, 0x31, 0xBC,\n    0xC8, 0x80, 0x0B, 0xEF, 0x94, 0xF0, 0x51, 0x26, 0x38, 0x0B, 0x87, 0xAF, 0xEB, 0xA6, 0xD2, 0x24,\n    0x40, 0x12, 0xF7, 0x9B, 0x92, 0x3E, 0x37, 0x9B, 0x63, 0x5C, 0xC0, 0xE8, 0xA1, 0x40, 0x02, 0xE1,\n    0x52, 0x0B, 0xE1, 0x24, 0xC5, 0x3C, 0x7C, 0x15, 0x8A, 0x06, 0xAC, 0x00, 0x75, 0x85, 0x7B, 0xC7,\n    0xA9, 0x9F, 0xE5, 0x3C, 0x1F, 0x25, 0xDD, 0x0C, 0x1C, 0x0B, 0x0C, 0xFC, 0x65, 0x65, 0x86, 0x64,\n    0x4D, 0x51, 0xF4, 0xE1, 0xCB, 0xF4, 0x61, 0x04, 0xF9, 0xFD, 0x5F, 0x39, 0x9C, 0x02, 0x11, 0xAA,\n    0x32, 0x29, 0x97, 0x00, 0xE8, 0x18, 0xBC, 0xEF, 0x44, 0xA8, 0x5F, 0x2C, 0xB6, 0x5F, 0x03, 0x23,\n    0x11, 0xA9, 0x47, 0x1C, 0xF6, 0xB8, 0x88, 0x41, 0x7A, 0x2D, 0x8A, 0x85, 0xE6, 0xD2, 0xD3, 0x15,\n    0x86, 0x97, 0x9E, 0x9B, 0x2D, 0x02, 0x1C, 0x24, 0x4B, 0x3A, 0x98, 0x20, 0x29, 0x05, 0x89, 0xF7,\n    0xF4, 0x82, 0xB1, 0xE8, 0xA7, 0x4D, 0x47, 0x18, 0x17, 0x10, 0xB9, 0x7D, 0x38, 0x09, 0x8D, 0xDB,\n    0xAB, 0x64, 0xBB, 0x41, 0x09, 0xBB, 0xAB, 0x26, 0xA0, 0xEA, 0xC2, 0x3C, 0xDF, 0xE9, 0xAF, 0x0A,\n    0xF3, 0x7A, 0x03, 0xA1, 0x97, 0x05, 0x20, 0x88, 0x01, 0xD0, 0x03, 0x05, 0x10, 0xE0, 0x68, 0x7A,\n    0xFC, 0x59, 0xF3, 0x9E, 0x96, 0xEE, 0x94, 0x36, 0x37, 0xC3, 0x3C, 0x60, 0x74, 0xF6, 0x77, 0x9E,\n    0x85, 0x2A, 0x44, 0x2A, 0x07, 0x93, 0x84, 0xD4, 0xF4, 0xE3, 0xD6, 0x9C, 0x71, 0x06, 0x81, 0x80,\n    0x5D, 0x48, 0x8E, 0x9F, 0x19, 0xD6, 0xF8, 0xFE, 0x8F, 0x51, 0x81, 0xCA, 0x75, 0x67, 0xEA, 0xA7,\n    0xAD, 0xFC, 0xA1, 0x81, 0x93, 0x3B, 0x14, 0xA4, 0xFC, 0x08, 0x37, 0x23, 0xDA, 0xB3, 0x73, 0x03,\n    0xCC, 0xC2, 0x32, 0x97, 0xD7, 0x27, 0x8D, 0x73, 0xB1, 0x28, 0x17, 0x6D, 0x59, 0x12, 0xB4, 0x1F,\n    0xEA, 0xE3, 0x79, 0xAB, 0xBE, 0xC2, 0x67, 0xB4, 0x3F, 0xDD, 0xB9, 0xD3, 0x00, 0x5D, 0x93, 0xA0,\n    0x72, 0x1E, 0x20, 0xFF, 0xBF, 0x9F, 0x6E, 0x8D, 0x16, 0xF8, 0x20, 0x01, 0x51, 0x2C, 0x42, 0x1C,\n    0xF2, 0xD7, 0x9D, 0x20, 0xBD, 0x3C, 0x67, 0x02, 0xE9, 0xA7, 0x0C, 0xC0, 0xA4, 0x0E, 0x14, 0xDE,\n    0x7D, 0x9C, 0x67, 0xA0, 0x01, 0x61, 0x65, 0x9D, 0x01, 0x9E, 0x4C, 0x0A, 0x6D, 0x85, 0x51, 0xA0,\n    0xFC, 0xB0, 0xF4, 0x0E, 0x94, 0x20, 0x1B, 0x48, 0x69, 0x8E, 0x65, 0x8B, 0xCC, 0x46, 0x29, 0x0D,\n    0x61, 0xF1, 0xD8, 0x0E, 0x8F, 0x61, 0xA4, 0x0F, 0x54, 0x03, 0xE9, 0x50, 0x56, 0x50, 0xB1, 0x07,\n    0x59, 0xA9, 0x9E, 0x0D, 0x3E, 0xC4, 0x1C, 0x07, 0xFD, 0x12, 0x03, 0x3C, 0x31, 0x97, 0xD5, 0xB5,\n    0xAC, 0xB1, 0xB6, 0x7B, 0xFD, 0xF5, 0x2F, 0x8C, 0x01, 0x5D, 0xD0, 0x56, 0xAA, 0xDF, 0xC8, 0xA9,\n    0xBC, 0xAF, 0xFA, 0x76, 0xA5, 0x70, 0x1A, 0xEE, 0xA9, 0x51, 0xAC, 0x03, 0xE0, 0xD9, 0xE3, 0xE9,\n    0x84, 0x67, 0x36, 0x52, 0x9E, 0xF6, 0x94, 0x9E, 0x33, 0xB8, 0x40, 0x60, 0x00, 0x27, 0xCC, 0x12,\n    0x91, 0x92, 0x93, 0x81, 0xA3, 0xC5, 0x2F, 0x02, 0xF0, 0x70, 0xF1, 0xD4, 0x56, 0x64, 0x2A, 0x0A,\n    0xF2, 0xD9, 0x63, 0x8A, 0x20, 0x83, 0xE3, 0x59, 0x1B, 0x64, 0x58, 0xC2, 0xED, 0xAE, 0x82, 0x1F,\n    0x7E, 0xBD, 0x8A, 0x76, 0xA3, 0x18, 0x15, 0x91, 0x3D, 0xD5, 0x58, 0xEE, 0xAD, 0xA8, 0x06, 0xC0,\n    0xFA, 0xDC, 0x9B, 0xAB, 0x10, 0xB9, 0x1C, 0x22, 0x7B, 0xB7, 0xD1, 0x2D, 0xA2, 0x7D, 0x18, 0x8C,\n    0x08, 0x96, 0xFD, 0xAA, 0x52, 0xC4, 0xF7, 0x09, 0x7F, 0xBB, 0xC3, 0x23, 0x5F, 0x5B, 0xEA, 0x36,\n    0x7E, 0xF7, 0xFC, 0x58, 0xB5, 0x5C, 0x4E, 0xD0, 0x3E, 0x7F, 0xDB, 0xBE, 0xFA, 0x7F, 0xBF, 0xC0,\n    0xE0, 0x00, 0x51, 0x80, 0x0E, 0x15, 0x84, 0x3E, 0xAC, 0x0E, 0xD2, 0x1C, 0x5A, 0x03, 0xA1, 0xCE,\n    0xF6, 0x7F, 0xE3, 0xD1, 0x62, 0xA7, 0x0F, 0x50, 0x01, 0xED, 0x8E, 0xC8, 0x6D, 0xDC, 0x35, 0x26,\n    0xC3, 0x86, 0x4A, 0xE0, 0x63, 0x0E, 0x2B, 0x3F, 0xC1, 0x19, 0x78, 0x32, 0x0A, 0x15, 0xAB, 0xAB,\n    0xEF, 0x7C, 0x6C, 0xDC, 0x8A, 0x9A, 0x50, 0x9F, 0x3D, 0xE0, 0xBD, 0xF8, 0xDF, 0xC4, 0x70, 0xB5,\n    0x00, 0xF5, 0x27, 0xAE, 0x55, 0x4E, 0x88, 0x23, 0x01, 0x96, 0xE3, 0xCE, 0x9F, 0xFB, 0xB4, 0x22,\n    0x63, 0x8E, 0xAB, 0x49, 0xFF, 0xC1, 0x9A, 0xB2, 0x2D, 0x5C, 0x37, 0xE1, 0x09, 0x88, 0x39, 0x1F,\n    0x60, 0xA0, 0x14, 0x4F, 0x78, 0x0D, 0x1D, 0x48, 0x79, 0xF1, 0x0F, 0x7B, 0x09, 0x15, 0x10, 0x61,\n    0x6D, 0xCB, 0x89, 0x83, 0x06, 0x10, 0x37, 0x5B, 0x49, 0xDF, 0x93, 0x91, 0x55, 0xC3, 0x18, 0xBB,\n    0xBB, 0xF7, 0x5C, 0x32, 0x61, 0xA1, 0x58, 0x6E, 0xB3, 0x7D, 0x71, 0xD7, 0xF1, 0x25, 0x8A, 0x43,\n    0x6B, 0x49, 0xF9, 0x9E, 0x0D, 0x12, 0x96, 0x0C, 0x2B, 0xF7, 0xD0, 0x79, 0xA8, 0xD8, 0x5E, 0xCA,\n    0x3E, 0x12, 0xFF, 0x76, 0x32, 0x80, 0xA1, 0x8F, 0xD0, 0xBF, 0x1F, 0xF4, 0x01, 0x78, 0x9F, 0xEE,\n    0x0E, 0x49, 0xB8, 0xD3, 0x92, 0x85, 0xD4, 0x8C, 0x0E, 0x19, 0xBD, 0x94, 0x67, 0xAD, 0xC2, 0x80,\n    0x70, 0x05, 0x04, 0x08, 0x01, 0xA1, 0xDE, 0x56, 0x94, 0x40, 0x30, 0x5C, 0x95, 0x51, 0x83, 0xE5,\n    0xBD, 0x3D, 0xEA, 0x55, 0x8D, 0x1D, 0x1B, 0x3C, 0x71, 0x63, 0xF2, 0xC7, 0xF0, 0x05, 0x82, 0xB8,\n    0xBC, 0x5D, 0xDE, 0xCB, 0x7C, 0x99, 0xC0, 0x47, 0xDF, 0xE6, 0x96, 0xC9, 0x8F, 0x7F, 0x97, 0x80,\n    0x34, 0x3E, 0xB5, 0x71, 0x80, 0xCB, 0x9D, 0xF7, 0xC4, 0xEB, 0x75, 0xD6, 0x38, 0xD9, 0x29, 0xE6,\n    0x4B, 0xD0, 0xA2, 0x0D, 0x8D, 0xB3, 0x0B, 0x2A, 0xE4, 0xF4, 0x0E, 0x42, 0x21, 0xFB, 0x49, 0x65,\n    0x21, 0x9D, 0x54, 0x0D, 0x92, 0xE3, 0x7E, 0x24, 0xCB, 0x5A, 0x03, 0x3B, 0x25, 0x58, 0xA1, 0x7E,\n    0xFC, 0x1A, 0x11, 0x50, 0x64, 0x4B, 0x8F, 0xAC, 0x31, 0x64, 0xB8, 0x16, 0x41, 0x5A, 0x3A, 0xF2,\n    0x70, 0x63, 0xAB, 0x89, 0x04, 0x15, 0x5D, 0x2E, 0x82, 0xEF, 0x25, 0xBC, 0xFD, 0xE4, 0x40, 0x97,\n    0x6C, 0x4A, 0x6F, 0xD4, 0x3E, 0xDD, 0x2C, 0x1F, 0x8A, 0xB8, 0x00, 0x04, 0x00, 0x5F, 0xD8, 0x18,\n    0x91, 0xB5, 0xBC, 0xD5, 0xD7, 0xFD, 0xCE, 0x48, 0xF4, 0x86, 0xFC, 0x61, 0x4A, 0x93, 0x77, 0xFB,\n    0x16, 0x3C, 0x40, 0xCF, 0xCB, 0xD7, 0xCE, 0x0D, 0x76, 0x11, 0xDC, 0xF8, 0x72, 0xD1, 0xAF, 0x7E,\n    0x07, 0xED, 0xAA, 0x0C, 0x02, 0x09, 0x0A, 0x81, 0x81, 0x8A, 0x0E, 0xA7, 0x80, 0xEE, 0x2F, 0xED,\n    0x4C, 0x60, 0x48, 0x14, 0xD1, 0xB0, 0x73, 0x15, 0x7F, 0x3E, 0xE7, 0xB5, 0x62, 0x00, 0x17, 0xF9,\n    0x88, 0xF2, 0x00, 0xDA, 0xEE, 0xB4, 0x0F, 0x09, 0x56, 0x35, 0xCE, 0xC2, 0x66, 0xE8, 0x00, 0x0A,\n    0x55, 0x0F, 0xFE, 0xDB, 0x3E, 0x14, 0x3A, 0xE1, 0xFB, 0x97, 0x8F, 0xD7, 0xF4, 0xE3, 0x40, 0x10,\n    0x91, 0x32, 0xF5, 0x76, 0xCA, 0xC0, 0x00, 0x40, 0x1B, 0x87, 0xDB, 0x9B, 0xE8, 0xA9, 0x91, 0x24,\n    0x30, 0x28, 0x3B, 0x8C, 0x3C, 0x85, 0x31, 0x5F, 0x57, 0x8A, 0x1A, 0x8E, 0xF2, 0x6A, 0x7E, 0x07,\n    0x8E, 0xC2, 0x58, 0xEF, 0x08, 0xB0, 0xE7, 0x0A, 0x8B, 0x08, 0x29, 0x8C, 0x9D, 0xFD, 0x9D, 0x9B,\n    0x34, 0x97, 0xE2, 0x35, 0xD9, 0x5D, 0x8B, 0xD6, 0x46, 0x7C, 0x02, 0xFF, 0xF7, 0x3E, 0x90, 0x01,\n    0x8B, 0x96, 0xA7, 0x27, 0xE8, 0xB6, 0x19, 0x2D, 0x6D, 0x8E, 0xAC, 0x1D, 0x88, 0xC8, 0x57, 0xBA,\n    0x18, 0x1F, 0xD8, 0xF2, 0x9A, 0xEB, 0x65, 0x68, 0xD3, 0xA5, 0xAF, 0x21, 0xEC, 0xD1, 0x20, 0x39,\n    0xF3, 0xF5, 0x95, 0xBC, 0x1D, 0xDA, 0xDC, 0x8F, 0x31, 0x91, 0x76, 0xB9, 0xCC, 0xBB, 0x0F, 0x4E,\n    0xAC, 0x84, 0xA7, 0x66, 0x01, 0x04, 0x9B, 0x52, 0xD8, 0x87, 0x3C, 0x00, 0x56, 0xE1, 0xC8, 0x70,\n    0xEE, 0xE5, 0xBA, 0xB6, 0xD5, 0x79, 0x44, 0x0E, 0x77, 0x2C, 0x4E, 0xBB, 0x21, 0xE7, 0x67, 0x68,\n    0x43, 0xF5, 0x80, 0x10, 0x51, 0xF7, 0x4F, 0x81, 0xB2, 0x5F, 0xFD, 0x7C, 0x25, 0xD8, 0x7E, 0x6A,\n    0x8D, 0xD5, 0xAE, 0xC0, 0xF8, 0xC9, 0xD5, 0x47, 0x08, 0x28, 0xA1, 0xDD, 0x42, 0xC7, 0x60, 0x7E,\n    0x21, 0x7C, 0x3F, 0x58, 0x06, 0x40, 0x92, 0xF5, 0xB2, 0xCF, 0x5E, 0x3B, 0x38, 0x46, 0xB1, 0x3E,\n    0x0B, 0xF9, 0x1E, 0x02, 0x96, 0xD7, 0xB7, 0xD5, 0x1F, 0x00, 0x8A, 0x90, 0x94, 0x74, 0x9B, 0xB3,\n    0x14, 0x35, 0xF6, 0x3D, 0x73, 0xFF, 0xCE, 0x0C, 0x14, 0x4B, 0xD7, 0xAA, 0xA6, 0xDA, 0x30, 0x0A,\n    0xF6, 0x07, 0x9D, 0xDF, 0x6B, 0x13, 0x00, 0x23, 0x32, 0x75, 0xD0, 0xEA, 0xBF, 0x65, 0x66, 0x61,\n    0xAE, 0x2E, 0xFC, 0x06, 0x3C, 0x90, 0xC6, 0x7B, 0xDC, 0xF9, 0xF8, 0x65, 0xE0, 0xA4, 0xA2, 0xD4,\n    0xD5, 0x9D, 0x29, 0x7B, 0x01, 0xF4, 0x15, 0x35, 0xBE, 0x6A, 0x48, 0x09, 0x5C, 0x0F, 0x76, 0xC8,\n    0x23, 0x49, 0xCC, 0x3D, 0x75, 0xDA, 0x1A, 0x8A, 0x8B, 0xDF, 0x16, 0x0A, 0x8B, 0x27, 0x11, 0xEA,\n    0x00, 0x0B, 0x8B, 0xAE, 0x92, 0x8F, 0xD1, 0xB5, 0xC4, 0xC3, 0x31, 0x56, 0xD1, 0x9A, 0x54, 0x4A,\n    0x6F, 0xFA, 0xFD, 0x08, 0x75, 0x1A, 0xC5, 0x5E, 0xF6, 0x1B, 0x8C, 0xCD, 0x3F, 0x5B, 0xA5, 0x1B,\n    0x00, 0xEE, 0x98, 0x27, 0xA2, 0x6D, 0x84, 0x27, 0xFD, 0xF3, 0x2B, 0xE3, 0x28, 0x14, 0x15, 0x88,\n    0xFB, 0x5B, 0x97, 0xC4, 0x3C, 0x59, 0xDD, 0xFF, 0x9D, 0x8A, 0xCF, 0x33, 0xBE, 0xB7, 0xAE, 0x0B,\n    0xC7, 0xDB, 0xC3, 0xEB, 0x3B, 0x7F, 0x68, 0x48, 0xB7, 0xEA, 0xEA, 0x9B, 0x26, 0xD2, 0xEF, 0xC9,\n    0x43, 0xFC, 0x14, 0x20, 0xE2, 0xFF, 0xBB, 0x02, 0xDA, 0x54, 0x02, 0xC7, 0x77, 0x4A, 0x24, 0xE0,\n    0x89, 0x3D, 0x51, 0x90, 0xC1, 0xB6, 0x86, 0x83, 0x4F, 0xDB, 0x82, 0xB9, 0xB3, 0x34, 0x99, 0xCA,\n    0x6C, 0x3E, 0x45, 0x6A, 0x17, 0x4F, 0x0B, 0xFF, 0x10, 0xE8, 0x28, 0xA7, 0x75, 0x25, 0xDB, 0xE1,\n    0x4D, 0x98, 0x9C, 0xFB, 0x63, 0x84, 0x4A, 0x36, 0xC1, 0x0F, 0x84, 0x3B, 0xAC, 0xCC, 0x82, 0xC0,\n    0x2A, 0xAD, 0x15, 0x88, 0xF6, 0x59, 0x23, 0x1D, 0x5B, 0xB0, 0x24, 0xFF, 0xFE, 0xF7, 0x93, 0x8C,\n    0xF7, 0xC4, 0x09, 0x39, 0x6F, 0xFD, 0xBF, 0x3D, 0x09, 0x2F, 0x0F, 0xAF, 0xE7, 0xA4, 0xFE, 0xD2,\n    0x4C, 0x6D, 0xBA, 0x96, 0x57, 0x70, 0x5B, 0x83, 0xF4, 0x0F, 0x13, 0x30, 0xAD, 0xBD, 0xA9, 0x28,\n    0x84, 0x2D, 0xFD, 0xDE, 0xBF, 0xAE, 0xE6, 0xD4, 0x32, 0x58, 0x0E, 0x2A, 0xAD, 0x4B, 0x25, 0x24,\n    0x9E, 0x31, 0x3F, 0x64, 0x6A, 0x62, 0x79, 0x6B, 0xBB, 0x2A, 0x39, 0xD3, 0x4C, 0x63, 0xF4, 0xE9,\n    0xE6, 0x24, 0x8C, 0x43, 0x13, 0x0B, 0x51, 0x96, 0xB9, 0xDA, 0x74, 0x12, 0xF4, 0x5B, 0x1B, 0xB0,\n    0x3C, 0xA8, 0xBF, 0xBB, 0x8D, 0x19, 0xE2, 0x74, 0x58, 0xD7, 0xAF, 0x54, 0x05, 0xCD, 0x7D, 0x0F,\n    0x9C, 0xAA, 0x1F, 0xCF, 0x10, 0x7D, 0xEE, 0x0E, 0xF4, 0x38, 0x25, 0xA8, 0xF5, 0xFD, 0x7C, 0x2A,\n    0x1F, 0xD7, 0x3C, 0x86, 0x85, 0x99, 0xA3, 0x97, 0x71, 0x80, 0x48, 0x7C, 0x49, 0x2E, 0x7E, 0x19,\n    0x79, 0x48, 0x78, 0x22, 0xDC, 0xBD, 0xDD, 0xFF, 0x9A, 0xC9, 0x86, 0x9D, 0x3F, 0xFC, 0xF1, 0xD2,\n    0x9F, 0x3E, 0xBF, 0x5E, 0x14, 0x54, 0xE2, 0x79, 0xA2, 0x4D, 0x52, 0x4C, 0xC1, 0xD1, 0xE5, 0xC8,\n    0x14, 0xD3, 0xAE, 0x1B, 0xC8, 0x7E, 0xCA, 0x88, 0x6B, 0xA2, 0x1F, 0xED, 0x8A, 0x63, 0x85, 0xA5,\n    0x8C, 0x71, 0x0A, 0x4D, 0xBA, 0x7D, 0xBA, 0x96, 0x7F, 0x03, 0xAE, 0x69, 0xE2, 0xAF, 0xA9, 0x02,\n    0x63, 0xF4, 0x0C, 0x65, 0xBC, 0x24, 0xB7, 0xB3, 0x85, 0xF1, 0x79, 0x5D, 0xB2, 0x3E, 0xCF, 0x39,\n    0xC2, 0x91, 0x92, 0xE2, 0x02, 0x32, 0x16, 0x82, 0x6D, 0x18, 0xAE, 0xDC, 0xDF, 0xDD, 0xF2, 0xED,\n    0xA0, 0xEC, 0xFE, 0xF2, 0x50, 0xA3, 0x98, 0xBB, 0xA2, 0x31, 0x5B, 0xD3, 0x9A, 0x69, 0xD5, 0x5D,\n    0x90, 0x45, 0xD7, 0x43, 0x44, 0x4E, 0xD0, 0x26, 0x59, 0x9C, 0xF4, 0x6F, 0xE8, 0xC9, 0x54, 0x45,\n    0x5B, 0x07, 0x3D, 0xAF, 0x00, 0x23, 0xDE, 0x7D, 0xAA, 0xE8, 0xC2, 0x49, 0x5F, 0xAF, 0xB7, 0xB1,\n    0x53, 0x5D, 0xB0, 0x75, 0xF1, 0xCC, 0x72, 0xC0, 0xCF, 0x10, 0xAA, 0xAE, 0xEE, 0x11, 0xE6, 0xE1,\n    0xE2, 0x02, 0xA7, 0x64, 0xF1, 0x41, 0xCC, 0x8D, 0x57, 0xDE, 0x1D, 0x2D, 0x3D, 0x60, 0x5D, 0xB3,\n    0x25, 0x7E, 0x40, 0x5F, 0x89, 0x52, 0xD5, 0x3C, 0x53, 0xFF, 0x5B, 0xD1, 0x13, 0xA7, 0x90, 0x63,\n    0x92, 0xFA, 0x76, 0x2E, 0x61, 0x1E, 0xFB, 0x26, 0x6D, 0x29, 0xD8, 0x9D, 0x8B, 0xA3, 0x67, 0xAA,\n    0x3B, 0xC9, 0x58, 0x04, 0x8F, 0x43, 0x3F, 0xC5, 0xDC, 0x62, 0xC4, 0xEF, 0xAA, 0xE8, 0xF9, 0x05,\n    0x16, 0x29, 0xFE, 0x82, 0xD2, 0x6C, 0x00, 0x38, 0x1A, 0xEB, 0x2D, 0x7A, 0x7C, 0x6A, 0x57, 0x75,\n    0xEC, 0x66, 0x4D, 0x37, 0xBA, 0x8C, 0xD6, 0xE0, 0x8F, 0xEE, 0x6A, 0x53, 0xC2, 0x5F, 0x57, 0x27,\n    0xAD, 0xEA, 0x10, 0xE2, 0x15, 0x3D, 0x71, 0xE0, 0xFD, 0xF6, 0xA1, 0xB7, 0x8B, 0xDC, 0xE9, 0x5C,\n    0xF7, 0x6F, 0xA3, 0xF9, 0x4E, 0x9F, 0xBA, 0xE3, 0xD0, 0x39, 0xA5, 0x55, 0x3F, 0x9E, 0x9F, 0x04,\n    0xEA, 0x8E, 0xBB, 0xB4, 0xB7, 0x99, 0x18, 0x70, 0x51, 0xCF, 0x69, 0xAD, 0x9E, 0x16, 0x99, 0xF4,\n    0xC3, 0x98, 0xFE, 0xBA, 0x8E, 0x9E, 0xDE, 0xC5, 0xC8, 0x41, 0x7A, 0x9A, 0xD4, 0xD5, 0x51, 0x77,\n    0xA0, 0x44, 0x96, 0x2D, 0x4D, 0xA4, 0xE8, 0x0D, 0x9C, 0x8E, 0x5E, 0xF1, 0x87, 0x63, 0xE4, 0x5D,\n    0x54, 0x58, 0x06, 0xD1, 0xED, 0xEE, 0x2E, 0x6A, 0xDA, 0xDF, 0x84, 0x9F, 0xFD, 0x3E, 0xBC, 0x1B,\n    0xA2, 0xFB, 0xF6, 0xF0, 0x04, 0x88, 0xFE, 0xE3, 0x6D, 0x44, 0x97, 0xCE, 0xCD, 0xF8, 0xB2, 0xD5,\n    0xDC, 0xD0, 0xD7, 0xD4, 0x19, 0x45, 0x5B, 0x57, 0x5F, 0xD5, 0xDE, 0x4D, 0xE8, 0xBD, 0x6D, 0x2F,\n    0x43, 0xD3, 0xD2, 0xAF, 0xFC, 0x08, 0x3F, 0xD3, 0x5A, 0xFF, 0xD2, 0xA1, 0x32, 0x1A, 0xBB, 0x61,\n    0x57, 0xFE, 0x4A, 0x67, 0x4D, 0x61, 0xAD, 0xC9, 0x15, 0x3C, 0xD1, 0xDB, 0xB8, 0xA2, 0xEA, 0xAB,\n    0x51, 0xC9, 0x78, 0x76, 0xDC, 0xB3, 0x4B, 0xF2, 0x3A, 0xA0, 0xE5, 0x0A, 0x85, 0xA0, 0xBF, 0x33,\n    0xE0, 0x53, 0xFF, 0x75, 0x13, 0x72, 0xC6, 0x40, 0xDA, 0x8D, 0xD8, 0x74, 0xA1, 0xDF, 0x3C, 0xA9,\n    0x09, 0x0D, 0xF9, 0xC4, 0xD6, 0x1A, 0x0C, 0x8B, 0xE7, 0x9B, 0xAC, 0x8C, 0xCD, 0xB3, 0x46, 0x55,\n    0x3B, 0x4F, 0x71, 0x0E, 0xC5, 0x56, 0xB6, 0x5F, 0xBC, 0xE3, 0x2F, 0x85, 0xD1, 0xB7, 0x3C, 0x7A,\n    0xC6, 0xFF, 0x73, 0xF4, 0xE8, 0x28, 0x8F, 0xE7, 0x69, 0x0F, 0xA4, 0xBD, 0x9E, 0x6F, 0x15, 0xED,\n    0x61, 0x30, 0x80, 0x94, 0x1F, 0xD1, 0xB7, 0x35, 0x58, 0xA2, 0xAF, 0x1E, 0x9C, 0x11, 0xA1, 0x52,\n    0x7F, 0x52, 0x01, 0xF3, 0x7D, 0xEA, 0x39, 0x8E, 0xF2, 0x88, 0xB8, 0xD1, 0xF5, 0x4C, 0xE2, 0x9C,\n    0x18, 0x5F, 0x5D, 0xCF, 0xDC, 0x32, 0x07, 0x4F, 0xFA, 0x44, 0x85, 0x25, 0x2C, 0x29, 0x7E, 0xF0,\n    0xCC, 0x82, 0xF5, 0x00, 0xFC, 0xF7, 0xED, 0x4C, 0x69, 0x9A, 0xDD, 0xF7, 0x94, 0x69, 0x4A, 0x20,\n    0xC1, 0xEA, 0x55, 0x65, 0x5B, 0xCA, 0x7D, 0x82, 0x8A, 0xC4, 0x5D, 0xFB, 0xA4, 0x43, 0xE0, 0x06,\n    0x64, 0xD1, 0xDC, 0x8F, 0x9E, 0xB8, 0x0A, 0xB8, 0x6F, 0x30, 0x08, 0xE0, 0x0D, 0x9E, 0xF2, 0xFE,\n    0x50, 0x9B, 0xA2, 0x03, 0xF7, 0xF4, 0xE4, 0xD7, 0x99, 0x79, 0x6A, 0xB4, 0xAE, 0x6C, 0xAC, 0x41,\n    0x00, 0x89, 0x60, 0x17, 0x07, 0xF4, 0xFA, 0xAD, 0x01, 0xB3, 0x9B, 0xE1, 0xB3, 0x54, 0x9A, 0x0A,\n    0x2A, 0xB0, 0x27, 0x2D, 0x4D, 0xD1, 0x63, 0x25, 0x8F, 0x24, 0xA2, 0x3D, 0xF6, 0x00, 0x93, 0xDC,\n    0xBD, 0xBD, 0x97, 0x74, 0x31, 0xCD, 0x48, 0x1C, 0xA5, 0x41, 0xE2, 0x8A, 0xD3, 0x7E, 0x0D, 0x85,\n    0x33, 0x25, 0x0F, 0xEC, 0x0C, 0xAC, 0x73, 0x43, 0xE6, 0xFA, 0x75, 0xAF, 0x80, 0x45, 0xCF, 0xB0,\n    0x1C, 0x4A, 0x55, 0x8C, 0x43, 0x6A, 0xC3, 0x34, 0xE7, 0xF6, 0xEF, 0x80, 0x29, 0x5C, 0xC8, 0x54,\n    0x03, 0x3F, 0x47, 0x38, 0x24, 0x02, 0xC1, 0xC3, 0x20, 0x00, 0x20, 0x00, 0x1F, 0x2B, 0x38, 0x10,\n    0x02, 0x26, 0xB3, 0x4C, 0x10, 0x29, 0x82, 0xD0, 0xE0, 0x1C, 0x36, 0xD8, 0x30, 0x85, 0x7D, 0xB0,\n    0x35, 0x34, 0x15, 0xF1, 0xE3, 0x02, 0x94, 0x46, 0xD7, 0x32, 0x44, 0x25, 0xC4, 0x6A, 0x35, 0xEF,\n    0x00, 0xF5, 0xAD, 0x10, 0x7B, 0x9D, 0xE6, 0xBB, 0x36, 0xA7, 0x01, 0xB4, 0xD3, 0x61, 0x9C, 0x16,\n    0xBF, 0xCE, 0xAC, 0xAE, 0xE6, 0x25, 0x03, 0x14, 0x51, 0xE8, 0x6D, 0x50, 0xE7, 0xDB, 0xBE, 0x8C,\n    0xFD, 0x0D, 0xB2, 0x1C, 0x79, 0x31, 0x11, 0x76, 0x88, 0x9F, 0xCE, 0xFB, 0x6D, 0x4B, 0xB9, 0x1C,\n    0x40, 0x52, 0x2D, 0xC0, 0xE9, 0x94, 0x36, 0x74, 0x6F, 0xB0, 0x3A, 0x70, 0x40, 0x22, 0xBD, 0x2B,\n    0x3E, 0x62, 0xE6, 0x1B, 0x02, 0x29, 0x63, 0xF0, 0xAD, 0x29, 0xC1, 0xA8, 0xA8, 0x1F, 0xF1, 0x9D,\n    0x14, 0x00, 0x3A, 0x54, 0x8E, 0x5E, 0xB3, 0x52, 0x67, 0x63, 0xB4, 0xE6, 0xF6, 0x8E, 0x0D, 0x00,\n    0x11, 0xA3, 0x82, 0xA3, 0xCC, 0x54, 0x7D, 0x0A, 0x17, 0x0E, 0x96, 0x8C, 0x1E, 0x96, 0x6C, 0x3F,\n    0xA0, 0xD7, 0x21, 0x14, 0x04, 0x7D, 0x44, 0xE0, 0xF8, 0x6E, 0x97, 0x2C, 0x55, 0x97, 0x84, 0x37,\n    0xA4, 0x3E, 0x22, 0x3D, 0xD2, 0x87, 0xD6, 0x47, 0x0E, 0xEB, 0xD0, 0xAE, 0xAA, 0x43, 0xAB, 0x79,\n    0x94, 0x8A, 0x78, 0xE7, 0xAF, 0xFA, 0x3D, 0x49, 0xC9, 0x3F, 0xE2, 0x65, 0x77, 0x94, 0xAA, 0xF9,\n    0x06, 0xCA, 0x86, 0xA5, 0xD4, 0x93, 0x89, 0x85, 0x3A, 0xCA, 0xAF, 0x47, 0xF4, 0xAC, 0xD5, 0x99,\n    0x36, 0x6F, 0x1E, 0x39, 0x18, 0x63, 0x82, 0x26, 0x18, 0x28, 0x43, 0x00, 0x00, 0x80, 0x50, 0x01,\n    0x82, 0x82, 0x8B, 0x1E, 0xBB, 0x69, 0x87, 0x31, 0xFB, 0x7E, 0x51, 0x84, 0x9E, 0x0C, 0x3B, 0x23,\n    0x1C, 0x96, 0x4D, 0x82, 0x51, 0xD1, 0x60, 0x5A, 0x83, 0xCA, 0x61, 0x23, 0x40, 0x51, 0x19, 0x59,\n    0x4D, 0x8E, 0x06, 0xA5, 0xEB, 0xF4, 0x2D, 0x91, 0x18, 0xD9, 0x39, 0x9E, 0xFA, 0xFA, 0x24, 0x04,\n    0xEF, 0x47, 0x18, 0x41, 0xAF, 0xCF, 0x9F, 0xC8, 0xB1, 0xA3, 0x68, 0x91, 0x6F, 0x7A, 0xCA, 0x81,\n    0xCA, 0x9D, 0x42, 0x40, 0xC2, 0xAD, 0xDD, 0x47, 0xFD, 0x34, 0x21, 0x33, 0xB7, 0xAE, 0xEF, 0x66,\n    0x61, 0x80, 0x48, 0x69, 0xFA, 0xC7, 0x04, 0x1B, 0x45, 0xC3, 0x23, 0x4D, 0x7D, 0xB2, 0x6C, 0x2F,\n    0xBC, 0x27, 0xFD, 0x57, 0x45, 0x3D, 0xDD, 0xF3, 0x6B, 0xA3, 0x98, 0x38, 0xD4, 0x24, 0x3E, 0x1F,\n    0xE9, 0x6C, 0xAA, 0x0B, 0xF0, 0x7B, 0x0E, 0x96, 0x32, 0x79, 0x4A, 0xC9, 0xDF, 0x48, 0xC2, 0x4E,\n    0x01, 0x63, 0x8E, 0xC7, 0x6B, 0x3A, 0x00, 0x3A, 0xD2, 0x00, 0xD9, 0x2D, 0x2C, 0xFE, 0x2C, 0x31,\n    0x3F, 0x03, 0xD8, 0xD6, 0x0C, 0x9D, 0xD2, 0xFC, 0x28, 0x42, 0x62, 0x03, 0xFF, 0x26, 0xB6, 0xFE,\n    0x5F, 0x80, 0xC6, 0x07, 0xD1, 0xB6, 0x3E, 0xCC, 0x5F, 0x50, 0x99, 0x3E, 0xB4, 0xDB, 0xF2, 0x93,\n    0xCC, 0x11, 0x49, 0x50, 0x67, 0xBF, 0xBF, 0x6C, 0xDD, 0x66, 0xDE, 0xAE, 0x37, 0xEB, 0x95, 0xFE,\n    0x6E, 0x97, 0x30, 0xD9, 0x20, 0xBE, 0xA7, 0xFA, 0x53, 0x4F, 0xB6, 0x09, 0xBB, 0xDC, 0xE6, 0x6D,\n    0x01, 0x9C, 0x45, 0x70, 0x5B, 0x10, 0x68, 0xCA, 0xAE, 0x75, 0xE4, 0xE0, 0x05, 0x21, 0x50, 0x94,\n    0x5D, 0xDF, 0xB7, 0x0A, 0x02, 0x1D, 0x2B, 0x9E, 0x4F, 0x29, 0xF4, 0xD3, 0xDC, 0xC9, 0x0B, 0xEA,\n    0x9D, 0x8D, 0x08, 0x5F, 0x58, 0x9C, 0xE9, 0x8A, 0x0D, 0xA9, 0x56, 0x37, 0xFE, 0x7A, 0xF4, 0x3A,\n    0xE3, 0x4C, 0x2E, 0xF3, 0x1C, 0xC6, 0x97, 0xD2, 0x19, 0x63, 0xFB, 0xFA, 0xCC, 0x61, 0xE6, 0x32,\n    0x5C, 0x15, 0x29, 0x55, 0xDF, 0xE9, 0xA4, 0x02, 0x68, 0x39, 0x6A, 0xD3, 0xF7, 0x62, 0xDB, 0xB3,\n    0x33, 0x20, 0x96, 0xB7, 0xA0, 0xC0, 0x83, 0x2E, 0x0B, 0x00, 0x52, 0x7D, 0xBE, 0xE3, 0x2D, 0x04,\n    0x58, 0xCB, 0x5B, 0x29, 0x38, 0xC4, 0x7E, 0x42, 0x36, 0xB4, 0xE2, 0x07, 0xB7, 0xAC, 0xE8, 0x59,\n    0x90, 0xA6, 0xF3, 0xB3, 0x34, 0x33, 0x20, 0x11, 0x27, 0x64, 0xEE, 0xEB, 0x3E, 0xD7, 0x9E, 0x50,\n    0x9C, 0x32, 0x2F, 0xD4, 0xEA, 0xD3, 0x7D, 0x7E, 0x04, 0x20, 0x8D, 0xF2, 0x46, 0x8B, 0x39, 0x38,\n    0xFA, 0x56, 0xA6, 0x01, 0x22, 0xF8, 0x33, 0x89, 0xDE, 0x26, 0xFE, 0x42, 0x3F, 0x4B, 0x22, 0xEF,\n    0x47, 0xAE, 0xD4, 0xED, 0xFE, 0x22, 0x28, 0xFF, 0x51, 0x46, 0x94, 0x08, 0xC0, 0x54, 0xAC, 0xFC,\n    0x0E, 0x7C, 0x7A, 0x31, 0xD0, 0x94, 0xE3, 0xDB, 0x0E, 0xB5, 0x6E, 0x9A, 0x08, 0xB1, 0x24, 0xF3,\n    0x6F, 0xDF, 0xE3, 0x10, 0x08, 0x00, 0x20, 0x07, 0x06, 0xF0, 0x0E, 0xC5, 0x36, 0xBA, 0x05, 0x02,\n    0x19, 0x59, 0x0C, 0xDF, 0x3C, 0x0C, 0x46, 0x9F, 0x07, 0x45, 0x51, 0x76, 0x1B, 0xA8, 0xE6, 0xAA,\n    0xAC, 0x0E, 0xD3, 0xA6, 0x2A, 0xD9, 0x8F, 0xBF, 0xCC, 0x35, 0x30, 0x42, 0xBB, 0xF5, 0xB4, 0xDB,\n    0x03, 0xB6, 0x4B, 0x1E, 0x69, 0x7E, 0xD3, 0xEB, 0x4E, 0x3B, 0xD4, 0xCE, 0x58, 0x98, 0x38, 0xA0,\n    0x59, 0xBB, 0x43, 0x64, 0x63, 0x0E, 0x96, 0xFF, 0x67, 0x84, 0x5C, 0x6C, 0xC2, 0x78, 0xD4, 0xAD,\n    0xA0, 0x7A, 0x8B, 0x67, 0x37, 0xFB, 0x82, 0x5F, 0x29, 0x9D, 0x3D, 0xFC, 0xA3, 0xA7, 0x4C, 0xEA,\n    0xF9, 0xF2, 0x85, 0x5E, 0xA0, 0x42, 0xD6, 0x81, 0xC0, 0x00, 0xC0, 0x3A, 0x09, 0x24, 0x3C, 0xDA,\n    0x10, 0x22, 0x2D, 0xC0, 0xE5, 0xD0, 0x37, 0x38, 0x10, 0xB9, 0xC6, 0x41, 0x5E, 0x1A, 0xF9, 0xF0,\n    0x24, 0xEA, 0x77, 0xA9, 0xC2, 0x05, 0x7C, 0xFC, 0x80, 0xDD, 0x59, 0x5D, 0x03, 0xF4, 0x67, 0xA1,\n    0x5C, 0x03, 0x83, 0x8E, 0x9A, 0x30, 0x86, 0x8B, 0xDF, 0x00, 0x27, 0xFC, 0xE8, 0x73, 0x36, 0x93,\n    0xF0, 0xBF, 0x92, 0xE1, 0x88, 0x16, 0xB0, 0x01, 0x30, 0xCD, 0x54, 0x03, 0xBD, 0xE5, 0x26, 0x78,\n    0x02, 0x87, 0xA5, 0xAF, 0xFC, 0x15, 0xDF, 0xF4, 0xA3, 0xFA, 0x88, 0xB2, 0x6B, 0xFA, 0xF6, 0xB7,\n    0x38, 0x01, 0x5E, 0x04, 0xAC, 0xB0, 0xFC, 0x3E, 0x18, 0x5A, 0xF6, 0xC2, 0xDB, 0xDA, 0x9B, 0xFB,\n    0x35, 0x7B, 0xAF, 0xFC, 0xC2, 0x02, 0xAC, 0x20, 0x96, 0x1E, 0x04, 0xFB, 0x20, 0xD2, 0x02, 0x5F,\n    0x6D, 0xE1, 0x04, 0x4C, 0xA3, 0xA8, 0x16, 0x90, 0x56, 0x34, 0x45, 0x3E, 0xBC, 0x55, 0xDE, 0x35,\n    0x98, 0xBB, 0xD6, 0x78, 0x01, 0xD1, 0xD9, 0xA3, 0x74, 0xC0, 0x5A, 0x06, 0x83, 0xA0, 0xD1, 0xA5,\n    0xD5, 0xE0, 0xFE, 0xD7, 0x84, 0xFA, 0x03, 0x83, 0x7B, 0x82, 0x20, 0x3E, 0xB8, 0xF9, 0x16, 0x26,\n    0xFF, 0xCE, 0x37, 0x53, 0xCC, 0x7F, 0x27, 0x99, 0xE0, 0x60, 0x06, 0x1C, 0x28, 0x07, 0x87, 0x2D,\n    0xBE, 0x68, 0x1F, 0xB0, 0x03, 0x98, 0xDF, 0x06, 0xC7, 0x1F, 0x17, 0xE0, 0xE7, 0x28, 0x03, 0x91,\n    0x72, 0x5A, 0x6E, 0x7E, 0x7B, 0xD3, 0x6B, 0x03, 0x7E, 0xE6, 0x59, 0x9B, 0x29, 0x8A, 0x88, 0x06,\n    0x9C, 0xF7, 0x00, 0xBB, 0xE8, 0x7B, 0x31, 0xC5, 0xDF, 0x75, 0xEF, 0xB7, 0xE8, 0xCB, 0xAB, 0x71,\n    0x07, 0xAB, 0x82, 0x87, 0x12, 0x2D, 0xA5, 0xAF, 0x3B, 0xC6, 0xE0, 0x3B, 0xE3, 0x07, 0x11, 0x11,\n    0x82, 0x0D, 0x30, 0x13, 0xF9, 0xE1, 0x34, 0x86, 0xCE, 0x71, 0x5F, 0x32, 0x2A, 0xF3, 0x34, 0xA0,\n    0x40, 0xA2, 0x1C, 0x20, 0x8E, 0x9C, 0x0E, 0x4D, 0xAD, 0xE0, 0x9A, 0x12, 0x7D, 0x2A, 0x4C, 0xE4,\n    0x20, 0xF7, 0x1A, 0xC0, 0xF5, 0xE1, 0xBF, 0xD6, 0x64, 0xD3, 0x71, 0x75, 0x40, 0x00, 0x0F, 0x80,\n    0x8F, 0x28, 0x86, 0x98, 0x5D, 0xBE, 0x00, 0x30, 0x11, 0xF6, 0xA5, 0x6A, 0x5F, 0xFD, 0x1D, 0xC4,\n    0x49, 0xB3, 0x24, 0x02, 0x2F, 0xC5, 0xD6, 0x4F, 0x10, 0x65, 0xFF, 0x56, 0xBD, 0x6D, 0x4F, 0x58,\n    0x22, 0xAF, 0xBB, 0xE9, 0x6F, 0xE8, 0x06, 0x69, 0xC9, 0x18, 0x79, 0x41, 0xBE, 0xF5, 0x5A, 0x61,\n    0xB3, 0x82, 0x92, 0x67, 0x39, 0x77, 0x4D, 0x39, 0x46, 0x96, 0x37, 0x34, 0x2F, 0xD6, 0x46, 0xDA,\n    0x0E, 0x02, 0x72, 0xE7, 0x1E, 0xDF, 0x43, 0x7E, 0xE8, 0x00, 0xCA, 0xF8, 0xD9, 0x15, 0x2B, 0x0D,\n    0xB1, 0x8A, 0x71, 0x03, 0x00, 0x37, 0x06, 0x00, 0x50, 0x5A, 0xA4, 0xE0, 0x07, 0x4A, 0xF7, 0xAE,\n    0x5A, 0x05, 0x06, 0xF0, 0x07, 0xD5, 0xF9, 0xAC, 0x55, 0x61, 0x57, 0x41, 0x29, 0xEB, 0x4F, 0xB7,\n    0xDD, 0x32, 0x4B, 0xE4, 0xF6, 0xC6, 0xF8, 0xCF, 0x11, 0x1C, 0xDD, 0xFE, 0x7F, 0x32, 0x1C, 0x7F,\n    0xD5, 0x14, 0xEE, 0x34, 0xFB, 0x25, 0x03, 0xBE, 0x8C, 0xF9, 0xFE, 0xFC, 0x8E, 0x03, 0x2F, 0xEF,\n    0x6F, 0xB7, 0x98, 0xAC, 0xB5, 0x29, 0xC6, 0x53, 0xA6, 0x82, 0xD3, 0x07, 0x97, 0xA1, 0x75, 0x45,\n    0xCB, 0xFA, 0xCE, 0x6F, 0xAB, 0x3E, 0x83, 0x44, 0x5E, 0xFE, 0xFE, 0xEB, 0x34, 0x27, 0x58, 0x64,\n    0x5F, 0xF5, 0x86, 0x92, 0x13, 0xCA, 0x48, 0xC7, 0x82, 0x1A, 0x73, 0x27, 0xA4, 0xD3, 0x61, 0x73,\n    0x80, 0xDA, 0x93, 0x2A, 0x39, 0xFF, 0xE1, 0x29, 0x75, 0xB9, 0x7A, 0x56, 0x74, 0xE3, 0xFF, 0x77,\n    0x42, 0xB8, 0x8D, 0x69, 0x60, 0xE3, 0xAA, 0x51, 0x86, 0x83, 0x1F, 0x72, 0xD3, 0x59, 0xF0, 0x0B,\n    0xED, 0x76, 0x86, 0x83, 0xD4, 0x3F, 0xFB, 0x3D, 0xE6, 0xC7, 0x48, 0xFA, 0xFF, 0xCA, 0x7C, 0xA5,\n    0x73, 0x93, 0x9A, 0xCD, 0x74, 0xD6, 0x4F, 0x1A, 0xDE, 0x28, 0xC5, 0xA4, 0x35, 0x93, 0x7C, 0x30,\n    0x7F, 0x1F, 0x94, 0x7F, 0xEC, 0x9B, 0xB0, 0xF8, 0x26, 0x28, 0x54, 0xFC, 0xD2, 0xAF, 0x68, 0xBE,\n    0xEA, 0xCA, 0x88, 0xFD, 0xB4, 0xF1, 0x25, 0xF7, 0x86, 0xB5, 0x23, 0xF5, 0xA8, 0xC1, 0x5A, 0xD8,\n    0x94, 0x85, 0x2A, 0x70, 0xB7, 0x47, 0x8B, 0x6A, 0x2C, 0xF1, 0xAA, 0xE3, 0x96, 0xC0, 0x3D, 0x4E,\n    0x98, 0xA2, 0x1C, 0xE8, 0xF5, 0x68, 0x4A, 0xD0, 0xD2, 0xC5, 0x63, 0x40, 0x9A, 0xDB, 0x90, 0x58,\n    0x8E, 0x4B, 0xC0, 0x09, 0x42, 0x65, 0xE0, 0xC3, 0x22, 0xD6, 0x2D, 0x68, 0x12, 0x97, 0x57, 0x90,\n    0x31, 0x8E, 0x1C, 0x64, 0x80, 0x92, 0x5F, 0x1C, 0xB4, 0xD3, 0x4D, 0x36, 0x7D, 0x9B, 0x6A, 0xF8,\n    0x68, 0xEF, 0xBC, 0x55, 0x6A, 0x78, 0x19, 0x6B, 0x39, 0xEB, 0x7D, 0x7F, 0x4B, 0xC3, 0x57, 0x26,\n    0x59, 0xF8, 0x8A, 0x43, 0xE8, 0xF9, 0x55, 0x18, 0x96, 0xCC, 0xB1, 0xCE, 0x6E, 0x0E, 0x90, 0xF4,\n    0x3C, 0xBA, 0xAE, 0xEE, 0xAF, 0xFE, 0xDE, 0x8C, 0x27, 0xD5, 0x7A, 0x4C, 0x57, 0xBF, 0x57, 0x19,\n    0x35, 0x01, 0x88, 0x9B, 0x2C, 0xAF, 0xA2, 0x40, 0x53, 0xD0, 0x98, 0xB5, 0x2A, 0xAD, 0x2F, 0x1F,\n    0x35, 0x4F, 0xEA, 0xC8, 0xD6, 0x87, 0x6A, 0xAE, 0x64, 0xC8, 0x11, 0x4A, 0x5A, 0xF8, 0xA0, 0x12,\n    0x47, 0x60, 0x35, 0x26, 0xB7, 0xAA, 0xC7, 0x8B, 0x00, 0xD9, 0x33, 0xE9, 0x20, 0xF9, 0x24, 0x9B,\n    0x6D, 0xF2, 0x19, 0x21, 0x9A, 0x23, 0x8B, 0xA8, 0x98, 0xAE, 0x3D, 0x70, 0x5A, 0x9F, 0x04, 0xD6,\n    0x51, 0xC8, 0xF9, 0xB0, 0xB7, 0x34, 0x5E, 0xF0, 0xE7, 0x4D, 0xF1, 0x5E, 0xF2, 0xAF, 0xD7, 0x53,\n    0x81, 0xD3, 0x46, 0x83, 0x34, 0x53, 0xC6, 0xD6, 0xD2, 0x51, 0xEF, 0xEE, 0x63, 0x1B, 0x39, 0xB1,\n    0x29, 0xFA, 0x33, 0x29, 0xEA, 0x62, 0xF5, 0x1A, 0xF5, 0xDE, 0xCB, 0x82, 0x36, 0x3B, 0xBD, 0xD7,\n    0xC6, 0xF2, 0x23, 0x43, 0x37, 0xE3, 0xB5, 0x29, 0xD0, 0x70, 0x46, 0xE3, 0xAD, 0xBA, 0xF1, 0x37,\n    0xFC, 0x82, 0xFC, 0xFE, 0x7D, 0x20, 0xFA, 0xA3, 0x40, 0xB6, 0x45, 0x49, 0x84, 0x9F, 0x31, 0xA8,\n    0xA4, 0x74, 0x2F, 0x63, 0x21, 0x5B, 0x7D, 0x42, 0xCA, 0xFA, 0x4C, 0x1F, 0xC6, 0x28, 0x90, 0xB8,\n    0xD1, 0x47, 0x65, 0xF2, 0x2C, 0xBF, 0xAD, 0x8B, 0x6D, 0x8B, 0xA3, 0xDE, 0x02, 0x8A, 0xC9, 0x98,\n    0x02, 0x4F, 0x7F, 0x04, 0xAB, 0xEF, 0x7D, 0xAD, 0x95, 0x87, 0x0F, 0x91, 0xDB, 0x2F, 0x3C, 0xFB,\n    0xFB, 0x83, 0xBB, 0x9E, 0x46, 0x57, 0x56, 0x6B, 0xBD, 0x22, 0x68, 0x0D, 0x7E, 0x83, 0x98, 0x01,\n    0x5E, 0x21, 0x39, 0xFF, 0xC3, 0xB4, 0x9B, 0x12, 0xCE, 0x9F, 0x34, 0x97, 0x5D, 0x82, 0x03, 0xB0,\n    0x40, 0xA4, 0xE1, 0xF4, 0xD2, 0x03, 0x8E, 0x72, 0xCA, 0x8C, 0x22, 0x50, 0xB8, 0x36, 0x97, 0xB6,\n    0xDF, 0xC4, 0x2E, 0x62, 0x3B, 0x7E, 0xB9, 0xD0, 0x36, 0x08, 0xBF, 0xFB, 0xFA, 0xE7, 0xED, 0xFD,\n    0x5F, 0xEE, 0x9A, 0xDF, 0xCB, 0xFF, 0x43, 0x5E, 0x71, 0x9D, 0x63, 0x42, 0x69, 0x38, 0x8E, 0x3F,\n    0x93, 0x70, 0xDF, 0xF0, 0x37, 0x75, 0xAC, 0xF5, 0x69, 0xB2, 0xBB, 0x80, 0xE9, 0xE2, 0x7B, 0x7C,\n    0xD1, 0xB0, 0x32, 0x57, 0xE7, 0xBD, 0xF5, 0x80, 0x05, 0x69, 0x83, 0xC2, 0x90, 0xA7, 0x42, 0x0E,\n    0x2A, 0x81, 0x55, 0x05, 0x5B, 0x52, 0x9D, 0xAB, 0x23, 0x7F, 0x6F, 0x36, 0x84, 0x77, 0x3B, 0x2F,\n    0x00, 0x1B, 0x78, 0xFB, 0x5A, 0x81, 0xAE, 0xF4, 0x82, 0x87, 0x60, 0x5B, 0x93, 0xAF, 0x0D, 0xFD,\n    0xAB, 0x5D, 0x2B, 0xA2, 0xC6, 0xFF, 0x45, 0x15, 0x58, 0xC2, 0xA9, 0x99, 0x01, 0x55, 0xBC, 0xD8,\n    0x39, 0x03, 0x95, 0x17, 0x33, 0xB4, 0x97, 0x41, 0x25, 0x08, 0x28, 0xC6, 0x6E, 0xB5, 0x9B, 0xB5,\n    0x76, 0xCC, 0x31, 0xB3, 0xB4, 0xFE, 0x2B, 0xA6, 0x84, 0x8C, 0xC3, 0x26, 0xED, 0xA0, 0x67, 0xE0,\n    0xA5, 0xED, 0x98, 0x16, 0x44, 0x03, 0xC9, 0xDF, 0x7E, 0xA6, 0x9E, 0x13, 0x86, 0x4A, 0x37, 0xF0,\n    0xD0, 0x0C, 0x8F, 0x58, 0x7B, 0xCC, 0x27, 0xE6, 0x61, 0x55, 0x7B, 0xA5, 0x14, 0xC1, 0xA6, 0x28,\n    0xEC, 0xAB, 0x7B, 0x2D, 0x62, 0x7F, 0x05, 0x27, 0x24, 0x8D, 0xCE, 0x72, 0x69, 0x37, 0xB7, 0x5E,\n    0x26, 0xE7, 0xC7, 0x01, 0x5A, 0xEA, 0xAB, 0x59, 0x33, 0xEA, 0x39, 0xD7, 0xEC, 0xDB, 0x97, 0x3F,\n    0x0D, 0xF5, 0xDE, 0x85, 0xE5, 0xAE, 0xE5, 0xD8, 0xCB, 0xBC, 0x64, 0x07, 0xEF, 0xBB, 0xED, 0x6C,\n    0xB1, 0x21, 0xC1, 0x33, 0xC2, 0x74, 0xFF, 0xFD, 0xED, 0x75, 0xB8, 0x9E, 0xD3, 0xBD, 0x65, 0xE8,\n    0x82, 0x50, 0x3C, 0x37, 0x10, 0x3F, 0x52, 0x62, 0x04, 0x8D, 0x9B, 0x26, 0xC7, 0x29, 0x56, 0xD6,\n    0x80, 0xB3, 0x96, 0xEF, 0xA5, 0x2F, 0xD2, 0x15, 0x32, 0x95, 0xB5, 0x4C, 0xD8, 0xB2, 0xE0, 0x90,\n    0x81, 0x06, 0xFD, 0x8B, 0x44, 0x33, 0xC1, 0x19, 0xAC, 0x5D, 0x9C, 0x45, 0xFF, 0x94, 0xCC, 0x56,\n    0xAC, 0x2A, 0xE0, 0xE2, 0x2A, 0x24, 0xAB, 0x1F, 0xF4, 0xFB, 0x14, 0x1C, 0x3A, 0x4D, 0x08, 0xED,\n    0x10, 0x75, 0x27, 0xC4, 0x30, 0x5C, 0x24, 0x9D, 0x24, 0x72, 0x8F, 0x9B, 0x69, 0x53, 0x68, 0x5A,\n    0xE2, 0x3B, 0x6E, 0x07, 0xBE, 0xA7, 0xF3, 0xDC, 0x07, 0xF7, 0x09, 0x81, 0x44, 0x76, 0x05, 0x56,\n    0xBF, 0xBD, 0xD4, 0x2C, 0x2B, 0x12, 0x7E, 0x2B, 0xBF, 0xB6, 0x60, 0x5A, 0xD8, 0x00, 0x08, 0x00,\n    0xBA, 0x82, 0x41, 0xF5, 0x3D, 0x8B, 0xB4, 0x02, 0x46, 0xC7, 0xFF, 0x3D, 0x42, 0x79, 0x3D, 0x8D,\n    0x12, 0x8F, 0x52, 0x3C, 0x0D, 0x0B, 0xE3, 0x6F, 0x01, 0x51, 0x52, 0x33, 0x32, 0x84, 0x7E, 0x1F,\n    0xD9, 0xC3, 0xA6, 0x3B, 0x47, 0x35, 0xA4, 0x94, 0x56, 0xF1, 0xBD, 0x19, 0x89, 0x44, 0x97, 0x29,\n    0x53, 0x08, 0x22, 0x7F, 0xA0, 0xEA, 0x1C, 0x35, 0x0E, 0x3E, 0xA3, 0x72, 0x93, 0x4A, 0xB6, 0xE1,\n    0xBF, 0x2B, 0xDF, 0x97, 0xAC, 0x65, 0x33, 0x34, 0x66, 0x51, 0xA3, 0x42, 0xEE, 0x91, 0x7F, 0x64,\n    0x87, 0x11, 0xAA, 0x15, 0x8B, 0xE9, 0xEA, 0x6E, 0x0E, 0x63, 0x07, 0x70, 0x97, 0x89, 0x72, 0x7C,\n    0x79, 0x11, 0x9C, 0xA9, 0x04, 0x86, 0x91, 0xBC, 0x5A, 0xCC, 0x7B, 0xDF, 0xC5, 0x02, 0xC5, 0xE1,\n    0xD8, 0xBE, 0x6B, 0xE0, 0x33, 0x60, 0x00, 0x76, 0x00, 0x26, 0x65, 0x75, 0x6C, 0x14, 0x07, 0x95,\n    0x70, 0x08, 0xDD, 0xDD, 0xEC, 0xB3, 0x88, 0x21, 0xB8, 0xE2, 0x0D, 0x86, 0xB1, 0x66, 0xA8, 0xBD,\n    0xA5, 0x4D, 0x82, 0xDD, 0x41, 0x8E, 0x3A, 0xD8, 0x2F, 0xAD, 0xB3, 0x1C, 0xFF, 0xD2, 0xA6, 0x6C,\n    0x7D, 0x23, 0x44, 0xEF, 0x27, 0x9B, 0x72, 0xBF, 0x80, 0x64, 0x15, 0xD1, 0xE2, 0xD2, 0x13, 0x71,\n    0x5B, 0x94, 0x5E, 0x6E, 0xE8, 0x72, 0x6B, 0xC0, 0x63, 0xE1, 0x72, 0x12, 0x8D, 0xF5, 0x2F, 0x87,\n    0x63, 0x07, 0x69, 0x18, 0x51, 0x66, 0xFD, 0x72, 0xFF, 0xEB, 0x7E, 0x7F, 0xF4, 0xCB, 0x93, 0x89,\n    0x38, 0xDE, 0xFF, 0xE6, 0x30, 0x9C, 0x38, 0xDB, 0xBD, 0x3C, 0xCD, 0x00, 0x22, 0xB6, 0xAF, 0x16,\n    0x14, 0x85, 0xCB, 0x78, 0xEC, 0x1D, 0x20, 0x4E, 0x2D, 0x68, 0xEA, 0x94, 0x98, 0x38, 0x5A, 0x24,\n    0xA3, 0xD4, 0xE7, 0x69, 0xC4, 0x62, 0x53, 0xFA, 0x2E, 0xFC, 0xEB, 0x61, 0xA5, 0x86, 0xD8, 0xC5,\n    0xF8, 0x4F, 0x3B, 0x05, 0xBE, 0x58, 0xB7, 0x70, 0x3E, 0xA4, 0x87, 0x30, 0x71, 0xFB, 0x08, 0x81,\n    0x49, 0xE0, 0xE2, 0x51, 0x61, 0x39, 0x1F, 0xD5, 0xD4, 0x3B, 0xFA, 0x50, 0x87, 0xEC, 0xBD, 0x13,\n    0x2B, 0x38, 0x15, 0x47, 0x45, 0x85, 0x92, 0x6D, 0xEE, 0xAD, 0xC5, 0xA8, 0xEA, 0x03, 0x84, 0x18,\n    0xA0, 0x80, 0x80, 0x70, 0x4F, 0x1A, 0xD7, 0xBD, 0x1F, 0xC3, 0x0D, 0x21, 0x51, 0x21, 0xE3, 0x02,\n    0xEA, 0x25, 0xD6, 0xA8, 0x03, 0x38, 0xD9, 0x13, 0x00, 0xD5, 0xA0, 0xF5, 0xBE, 0x89, 0x98, 0x95,\n    0xC8, 0x63, 0x8D, 0xEB, 0xED, 0x08, 0x9D, 0x73, 0x90, 0xB1, 0x3A, 0x75, 0xD6, 0x3F, 0x59, 0xB9,\n    0x30, 0x00, 0xDB, 0xE5, 0x91, 0xA1, 0xE1, 0xF3, 0x47, 0x92, 0x57, 0x1D, 0xFD, 0x0B, 0x12, 0x74,\n    0x06, 0x6E, 0xFC, 0xCF, 0x44, 0x6D, 0x4E, 0xE6, 0x6B, 0xA9, 0x4A, 0x53, 0x26, 0x9A, 0xB7, 0x43,\n    0x7F, 0x30, 0x01, 0x44, 0xEE, 0x5D, 0xF5, 0xAA, 0xEF, 0x45, 0x7E, 0x39, 0x9D, 0xA5, 0xE3, 0x77,\n    0xC7, 0xB5, 0x39, 0x75, 0x30, 0x82, 0xAC, 0xA1, 0x05, 0x52, 0xCF, 0x11, 0x4D, 0xEA, 0x65, 0x5A,\n    0x7F, 0xC4, 0x59, 0x63, 0x7C, 0x85, 0xA9, 0x10, 0xB5, 0x6C, 0x69, 0x64, 0x52, 0x97, 0x5E, 0xE5,\n    0x3F, 0xEC, 0xBA, 0x3D, 0xE1, 0xDF, 0x99, 0xC7, 0x5F, 0x6F, 0x49, 0x75, 0x34, 0x3A, 0xE1, 0x6F,\n    0x42, 0x4B, 0xF9, 0xC5, 0xAF, 0x35, 0x01, 0xD0, 0xD4, 0xE8, 0xB2, 0x7A, 0x41, 0x0E, 0x0B, 0xF3,\n    0x58, 0xE4, 0x04, 0xAF, 0x98, 0x25, 0x58, 0xDA, 0xC6, 0xAF, 0xC7, 0xFF, 0xF7, 0xDC, 0x09, 0xE1,\n    0xD6, 0x17, 0x2D, 0x50, 0x89, 0xCB, 0x22, 0xD2, 0x06, 0x28, 0xF4, 0xDC, 0xE1, 0x55, 0x06, 0x8B,\n    0x3C, 0x01, 0xC5, 0x57, 0xBE, 0xBD, 0x47, 0xED, 0x36, 0x10, 0xAF, 0x09, 0xB3, 0xEA, 0x79, 0x0C,\n    0x74, 0x58, 0x5E, 0xA8, 0x5C, 0x1C, 0xCD, 0xAB, 0x94, 0x8A, 0xCC, 0x40, 0x17, 0xFC, 0xFB, 0xE1,\n    0x26, 0x6C, 0x02, 0x3E, 0x6C, 0x3B, 0xFB, 0x83, 0x98, 0xC2, 0x9D, 0x74, 0xE8, 0x0F, 0xC3, 0x39,\n    0x02, 0xBE, 0xDB, 0xE5, 0xE7, 0x06, 0x89, 0x98, 0x42, 0xAD, 0xD5, 0x61, 0x2D, 0x7D, 0x4F, 0xEA,\n    0xFF, 0xE1, 0x1C, 0x00, 0x10, 0x14, 0x20, 0x09, 0x5E, 0x1A, 0xB4, 0xEE, 0x17, 0xF0, 0x23, 0x89,\n    0x38, 0x24, 0x51, 0xB2, 0xC0, 0x63, 0x1F, 0x58, 0xB8, 0xF8, 0x97, 0x70, 0x25, 0x90, 0x67, 0xDB,\n    0x24, 0xCA, 0xA8, 0x99, 0x9A, 0xBB, 0x3A, 0x17, 0x1C, 0x4E, 0xA4, 0x1D, 0xBD, 0xCE, 0x0D, 0x7A,\n    0x1A, 0xF3, 0xD6, 0x9C, 0x6F, 0x06, 0xCB, 0x48, 0x00, 0x43, 0xFF, 0xC5, 0x1C, 0xCA, 0xC6, 0x96,\n    0x7F, 0xF4, 0xF9, 0x66, 0x50, 0xDA, 0xF6, 0x9A, 0x17, 0xDF, 0x66, 0x92, 0x0A, 0xEE, 0xB1, 0xD0,\n    0x75, 0xCF, 0x52, 0xA6, 0x4B, 0x83, 0x09, 0xDE, 0xEE, 0xF6, 0x77, 0xA0, 0x81, 0xA2, 0xEE, 0xA5,\n    0xCD, 0x61, 0x06, 0x95, 0x2D, 0x97, 0x25, 0xCC, 0xF5, 0x76, 0x75, 0x93, 0x2B, 0xAB, 0x47, 0x49,\n    0x66, 0x37, 0x74, 0x8B, 0xB2, 0xDC, 0xAB, 0x5A, 0xD4, 0x35, 0xFB, 0x04, 0x00, 0x27, 0x29, 0x42,\n    0x00, 0x44, 0x93, 0x59, 0xE4, 0x44, 0x04, 0xD4, 0x99, 0x4E, 0x44, 0xF4, 0x8D, 0xA1, 0xFF, 0x6D,\n    0x93, 0xA4, 0x28, 0x55, 0x21, 0xC7, 0x10, 0x1E, 0x3C, 0xD4, 0x00, 0x66, 0x04, 0xC4, 0x28, 0x71,\n    0x60, 0xBA, 0x66, 0xC0, 0x6B, 0x70, 0x37, 0xAB, 0xBF, 0xAF, 0x69, 0x2F, 0x39, 0x57, 0xBD, 0xB3,\n    0xD5, 0x74, 0x53, 0x9E, 0xDC, 0xA1, 0x49, 0xB7, 0x46, 0xDB, 0x45, 0x8F, 0xDA, 0x19, 0x31, 0xF6,\n    0x90, 0xE1, 0x74, 0x9E, 0x39, 0xE2, 0x74, 0xBF, 0xBE, 0x37, 0x3E, 0x96, 0x1D, 0x49, 0x5F, 0x07,\n    0x3F, 0xD6, 0xAF, 0x58, 0xD3, 0xF5, 0x1B, 0x41, 0x58, 0x92, 0x5C, 0xA0, 0x58, 0x61, 0x14, 0x00,\n    0x04, 0x0E, 0x1A, 0x3C, 0x7E, 0x8E, 0xAE, 0x0C, 0x42, 0xFC, 0x4D, 0xE7, 0xAE, 0xED, 0x58, 0xFD,\n    0x12, 0x26, 0x08, 0x72, 0x7C, 0x54, 0xA3, 0xA6, 0x29, 0x68, 0xB3, 0xC7, 0xC6, 0xE6, 0xA4, 0x3D,\n    0x40, 0xC8, 0x33, 0x30, 0xC8, 0x34, 0x7E, 0x05, 0x15, 0x4B, 0x31, 0x79, 0xA9, 0x3E, 0x01, 0xC4,\n    0x42, 0x05, 0x51, 0xB3, 0x37, 0x2C, 0x88, 0x74, 0xC5, 0x00, 0x30, 0xCA, 0x3A, 0x20, 0xBC, 0x3F,\n    0x76, 0x76, 0x83, 0xFF, 0x7E, 0x5E, 0x89, 0xCC, 0x62, 0xD9, 0xDE, 0x87, 0x77, 0x2F, 0x02, 0x97,\n    0xE4, 0x82, 0xC0, 0x13, 0xCB, 0x14, 0x53, 0xF6, 0x32, 0x98, 0x36, 0x0D, 0x9F, 0x16, 0xA3, 0xCD,\n    0xE0, 0x11, 0x11, 0xDF, 0xC2, 0x11, 0x5B, 0x3C, 0xBD, 0x87, 0xBF, 0x02, 0xD3, 0xF0, 0x87, 0x35,\n    0x3E, 0xB5, 0x41, 0x3F, 0x0C, 0x69, 0x7F, 0x13, 0x5A, 0x77, 0x34, 0x63, 0xAC, 0xF6, 0xEF, 0xDD,\n    0xCD, 0xFD, 0x66, 0xB9, 0xB5, 0xC1, 0x9C, 0x24, 0x1F, 0x13, 0x22, 0xDB, 0xA0, 0xD6, 0xD5, 0x9E,\n    0x19, 0x45, 0x97, 0xF2, 0xF8, 0x4A, 0x75, 0x02, 0x4B, 0xF7, 0xC2, 0x0E, 0xB5, 0xC9, 0x67, 0x86,\n    0xE0, 0x6D, 0x15, 0x66, 0x33, 0x65, 0x03, 0x80, 0x08, 0x80, 0x70, 0x08, 0x14, 0x84, 0x7B, 0x0D,\n    0x1F, 0x48, 0x7F, 0x05, 0xD8, 0x12, 0xC4, 0x53, 0xF8, 0x0A, 0x24, 0x18, 0x11, 0x84, 0x09, 0xCB,\n    0xCC, 0x2C, 0xC5, 0xFD, 0x75, 0xD2, 0xE8, 0x1E, 0xC3, 0x12, 0xDB, 0x75, 0x23, 0x1C, 0x80, 0x4E,\n    0x0E, 0x5F, 0x4A, 0xE1, 0x62, 0x64, 0xC0, 0x3D, 0x67, 0xF6, 0xDD, 0x09, 0x26, 0xFC, 0x14, 0xD8,\n    0xD7, 0xAD, 0x1D, 0x84, 0x4F, 0xF2, 0x03, 0xC1, 0x5F, 0xFC, 0x80, 0xEA, 0x86, 0x41, 0x9B, 0xC1,\n    0x25, 0xD8, 0xB3, 0xC7, 0x56, 0x04, 0xAA, 0x32, 0x0F, 0x4A, 0x07, 0xE1, 0x6E, 0xD7, 0x2A, 0xB3,\n    0x5B, 0x49, 0x61, 0x69, 0xEB, 0x8A, 0x57, 0xA8, 0xA6, 0x60, 0xD8, 0x7A, 0x52, 0x2C, 0xDF, 0xD5,\n    0x55, 0x02, 0x45, 0xE0, 0xA5, 0xB7, 0x5E, 0x1B, 0x48, 0x1F, 0xC6, 0xE3, 0x40, 0x71, 0x4C, 0xC7,\n    0xAA, 0xFA, 0x2E, 0x96, 0x30, 0x0F, 0xC3, 0x13, 0x81, 0xEF, 0x85, 0x7C, 0xDA, 0xF9, 0x0B, 0x04,\n    0x24, 0x2E, 0x10, 0xE8, 0x6E, 0xF3, 0xEE, 0x21, 0xDB, 0xB5, 0x46, 0x1C, 0x93, 0x98, 0x8A, 0xBC,\n    0xDD, 0x73, 0xAC, 0xC1, 0x8D, 0x46, 0xD6, 0xE7, 0xB7, 0x0A, 0x60, 0x03, 0xBE, 0xC0, 0xAE, 0xB5,\n    0x5F, 0xB4, 0x40, 0x2A, 0xA5, 0xDD, 0xB6, 0x70, 0xC4, 0x32, 0x98, 0xE5, 0x24, 0xFF, 0x59, 0x83,\n    0x20, 0xE9, 0x40, 0x71, 0x30, 0xAF, 0xEF, 0x63, 0xA9, 0x00, 0x58, 0x64, 0xC9, 0x72, 0x36, 0xF7,\n    0xF3, 0xA7, 0x56, 0x17, 0xF2, 0x13, 0x92, 0xBB, 0x7F, 0xA0, 0x96, 0xB8, 0x90, 0x19, 0x1C, 0x2A,\n    0x73, 0x7F, 0x3F, 0x4E, 0xC5, 0x78, 0x17, 0x64, 0x8A, 0x5C, 0xB3, 0xD4, 0x00, 0x54, 0x35, 0xE9,\n    0x3A, 0x5D, 0xAB, 0xC8, 0x0A, 0x81, 0xAE, 0x8A, 0x85, 0xDA, 0xC2, 0xF7, 0x20, 0x01, 0x2D, 0x05,\n    0x4B, 0x04, 0x7B, 0xA4, 0x62, 0x02, 0x51, 0x97, 0x2F, 0x41, 0xB5, 0x31, 0xEC, 0x11, 0xBE, 0x64,\n    0xB2, 0x6F, 0xB6, 0xD0, 0xED, 0x7F, 0xA7, 0x2B, 0xF8, 0x82, 0xEB, 0x7A, 0x00, 0x07, 0x74, 0x71,\n    0xCD, 0xF3, 0xF5, 0x6D, 0x7C, 0x08, 0xFF, 0x10, 0x09, 0x83, 0x99, 0x2B, 0x41, 0x30, 0x03, 0x06,\n    0xAD, 0x08, 0x8F, 0xE6, 0xC5, 0x26, 0xC0, 0x1E, 0x90, 0x1D, 0x2D, 0x68, 0x92, 0x02, 0xFC, 0x64,\n    0x5B, 0x5B, 0x32, 0xEB, 0x53, 0x78, 0x7C, 0x80, 0x59, 0x08, 0x70, 0x21, 0x46, 0x41, 0xC4, 0xC9,\n    0xA6, 0x3E, 0x5B, 0xB0, 0x3B, 0x99, 0xAE, 0x33, 0xAA, 0x13, 0x6A, 0xC1, 0x56, 0xD2, 0xBF, 0xF5,\n    0xFF, 0xFF, 0xF5, 0x41, 0x10, 0xD7, 0x61, 0x7D, 0xE2, 0x98, 0xC0, 0xF8, 0x2E, 0xF6, 0xD0, 0x01,\n    0x03, 0xD0, 0x7D, 0xC5, 0x0F, 0xFB, 0x6B, 0xF0, 0x1D, 0x94, 0x0D, 0x89, 0x0B, 0x90, 0xA1, 0xB6,\n    0xAC, 0x75, 0x3F, 0x9C, 0x8D, 0x3E, 0x7F, 0x33, 0x1B, 0xC0, 0xF0, 0xB0, 0x21, 0x08, 0x38, 0xAC,\n    0x06, 0xA9, 0xC1, 0x9E, 0x95, 0x89, 0x80, 0x21, 0xC1, 0x91, 0xF2, 0x0E, 0xE4, 0x6F, 0xE5, 0x38,\n    0x1B, 0xF4, 0x97, 0xFF, 0x37, 0xEF, 0xFF, 0x04, 0x7B, 0x9E, 0xAC, 0x35, 0xAB, 0xFF, 0x2B, 0x98,\n    0x38, 0x00, 0x7E, 0xBE, 0xE1, 0x90, 0x1D, 0x57, 0x0F, 0x36, 0x0C, 0xF7, 0xAD, 0x82, 0x5E, 0x68,\n    0x01, 0x7F, 0x9C, 0xA6, 0x53, 0x1A, 0x74, 0xDF, 0x9F, 0x1D, 0xCF, 0xDA, 0xF9, 0xFD, 0x59, 0x6C,\n    0x02, 0x90, 0x79, 0x76, 0x0F, 0xE5, 0x5B, 0x3F, 0xC6, 0xA5, 0x61, 0xCA, 0x09, 0xFA, 0xF4, 0x7D,\n    0xAE, 0x97, 0xFC, 0xEB, 0xF2, 0xA8, 0xE9, 0xFE, 0x5B, 0xFE, 0xE0, 0x97, 0xE6, 0xD4, 0xDB, 0xE8,\n    0x28, 0x17, 0x80, 0x58, 0x19, 0xF0, 0xE6, 0x0B, 0x94, 0x00, 0x0D, 0xE0, 0x94, 0x3A, 0x98, 0x5D,\n    0x74, 0x9F, 0x00, 0x01, 0x9F, 0x11, 0x80, 0x1B, 0xFE, 0xBC, 0xAD, 0xE1, 0x35, 0xA6, 0x36, 0xCE,\n    0xA7, 0x70, 0x0A, 0xE2, 0xA8, 0x1E, 0x8A, 0x56, 0xBF, 0xBB, 0x2C, 0x16, 0x33, 0xE1, 0xFC, 0xCB,\n    0x69, 0x2C, 0x97, 0x5A, 0x67, 0xA9, 0xAD, 0xE1, 0xEE, 0x1E, 0x04, 0xDE, 0x63, 0xDB, 0xF6, 0x08,\n    0xBE, 0x67, 0xA5, 0x5A, 0x6B, 0xF8, 0x03, 0xBB, 0x03, 0x38, 0x02, 0xAE, 0x20, 0x96, 0xFA, 0x00,\n    0x05, 0xA6, 0xC1, 0xE1, 0x61, 0xEA, 0xB9, 0x48, 0x1A, 0x20, 0x68, 0x20, 0x42, 0xB9, 0x2A, 0xD3,\n    0xE5, 0x8D, 0x14, 0xF5, 0x1F, 0xDF, 0x51, 0xB7, 0xD7, 0xBA, 0x0B, 0x20, 0xD1, 0x70, 0x8E, 0x3C,\n    0x20, 0x9B, 0x23, 0x23, 0x07, 0xE0, 0x36, 0x12, 0xC1, 0x78, 0x9D, 0x67, 0xBD, 0xAF, 0xF7, 0x23,\n    0xBF, 0x11, 0x7E, 0x34, 0x46, 0xA8, 0x34, 0x06, 0xEC, 0x1B, 0xBF, 0x62, 0xAF, 0x1D, 0x70, 0x72,\n    0x06, 0x08, 0x55, 0x70, 0x54, 0xF2, 0x64, 0x00, 0xD5, 0x60, 0xB4, 0x25, 0x72, 0xA5, 0x7F, 0x60,\n    0x00, 0xFC, 0x03, 0x97, 0xFE, 0x1F, 0x77, 0x54, 0xB0, 0x04, 0xE7, 0x50, 0x1E, 0xF7, 0xDE, 0xA3,\n    0xC5, 0x9B, 0xE3, 0x81, 0xC6, 0x43, 0x73, 0x7F, 0xE0, 0x06, 0x3A, 0xB7, 0xD2, 0xF7, 0xF8, 0x67,\n    0x02, 0x9F, 0x15, 0x3F, 0xBA, 0xC1, 0xD9, 0x23, 0xD3, 0x49, 0xAF, 0x7D, 0x06, 0xED, 0xFA, 0xD4,\n    0x08, 0xBB, 0x7F, 0x82, 0x91, 0xF0, 0xB1, 0xDD, 0xB9, 0x88, 0x50, 0x51, 0x50, 0xDA, 0x40, 0x18,\n    0x1E, 0xCE, 0xA4, 0xBE, 0x20, 0x9F, 0xF9, 0x1C, 0x8C, 0x7C, 0x59, 0x4A, 0xD2, 0x7F, 0x66, 0x0E,\n    0x03, 0xA0, 0xD2, 0xF3, 0xF9, 0xDB, 0xEF, 0xFF, 0x56, 0x18, 0x16, 0x00, 0x6D, 0x9E, 0x06, 0x04,\n    0x82, 0x74, 0x1F, 0x53, 0x63, 0x11, 0x37, 0xBD, 0xA7, 0x1B, 0xBF, 0xF8, 0x02, 0x7C, 0x55, 0xA0,\n    0x15, 0x19, 0xEB, 0xD6, 0xF9, 0x3B, 0x20, 0x43, 0x44, 0x23, 0x2A, 0x3F, 0xE4, 0x4C, 0x82, 0xF4,\n    0x95, 0x2A, 0xFA, 0xD4, 0xF6, 0xCF, 0x66, 0x79, 0xDF, 0x3F, 0xFF, 0x2A, 0x8C, 0x00, 0xA2, 0xB8,\n    0x1D, 0x31, 0x1E, 0x94, 0xDD, 0x8F, 0xAE, 0xC5, 0xF8, 0xF8, 0x1F, 0xD6, 0x94, 0x63, 0x79, 0x3B,\n    0xFB, 0x7D, 0xE5, 0x09, 0x41, 0xC2, 0x9B, 0xFE, 0x7D, 0xF9, 0x01, 0x68, 0x5A, 0x2F, 0x9C, 0x23,\n    0x7F, 0x47, 0xE0, 0x27, 0x2A, 0x56, 0x67, 0x4D, 0x29, 0xE5, 0x85, 0x7B, 0xFD, 0x9B, 0x80, 0x10,\n    0xA9, 0x1C, 0xA2, 0x64, 0x37, 0xBF, 0xD5, 0xF1, 0x9F, 0x73, 0x4D, 0x59, 0xFE, 0x09, 0xAA, 0xAE,\n    0xB6, 0xEB, 0x6F, 0x0F, 0x1B, 0x79, 0x80, 0x5A, 0xC4, 0x20, 0x01, 0x7B, 0x20, 0x30, 0x07, 0x8D,\n    0x73, 0x55, 0xFB, 0x2E, 0xD2, 0x36, 0x03, 0x86, 0x51, 0xFF, 0xD1, 0x20, 0x5F, 0x17, 0x54, 0x9D,\n    0xC6, 0x27, 0x29, 0xC7, 0x17, 0xE2, 0x16, 0x2B, 0x2A, 0x0B, 0xFD, 0x05, 0x6F, 0x0E, 0x78, 0xC6,\n    0xF9, 0x84, 0xD9, 0x27, 0x2B, 0xB3, 0xF5, 0x77, 0x3F, 0xCC, 0x01, 0x1E, 0xF4, 0x78, 0x28, 0x35,\n    0x4C, 0x77, 0xEF, 0x64, 0x01, 0x96, 0xC0, 0xA8, 0xDF, 0x61, 0xD8, 0xD1, 0xDB, 0x5F, 0xDC, 0x20,\n    0x81, 0x41, 0xD0, 0x15, 0x49, 0xE8, 0x47, 0xFB, 0xEE, 0xC5, 0x66, 0x54, 0x1E, 0xE7, 0x25, 0x78,\n    0xF7, 0x4E, 0x61, 0x05, 0x40, 0xA8, 0x02, 0xC8, 0x45, 0xDA, 0xFF, 0x49, 0x86, 0x8F, 0x81, 0xBE,\n    0x74, 0x9A, 0xD0, 0x12, 0x85, 0xF7, 0xC2, 0x5A, 0x2C, 0xE8, 0xC0, 0x53, 0x39, 0xDE, 0x5F, 0x9F,\n    0xA6, 0xAF, 0x20, 0x59, 0x22, 0x2A, 0x06, 0x1D, 0x9C, 0xA0, 0x3C, 0xEF, 0xC8, 0xAA, 0x92, 0x90,\n    0x50, 0x0F, 0x39, 0x07, 0x07, 0x4A, 0xBD, 0xCD, 0xFE, 0xD8, 0x66, 0xE2, 0x66, 0xB8, 0x61, 0xEB,\n    0xA2, 0xCB, 0x41, 0x44, 0x05, 0xE3, 0x98, 0x65, 0x08, 0xA5, 0xF2, 0x7C, 0x04, 0x0E, 0x64, 0xEE,\n    0xF2, 0xFD, 0x50, 0xA3, 0xEA, 0x99, 0xB1, 0x35, 0xC7, 0x9B, 0x33, 0x34, 0x09, 0x80, 0xC6, 0x36,\n    0x81, 0x17, 0x77, 0x78, 0x1C, 0xA1, 0xFA, 0x77, 0x44, 0x32, 0xAC, 0xF9, 0x59, 0x4E, 0xDE, 0x83,\n    0xD5, 0x27, 0x93, 0x7E, 0x25, 0xFC, 0xF5, 0x35, 0x1E, 0x76, 0x8C, 0x2F, 0xAB, 0xFB, 0x40, 0x70,\n    0x30, 0xA1, 0x00, 0x20, 0x00, 0xCA, 0x03, 0xF8, 0x92, 0x94, 0x20, 0xD8, 0x7A, 0xC7, 0xF8, 0x01,\n    0x8C, 0x06, 0xC9, 0x30, 0x0D, 0xC9, 0x87, 0x34, 0x42, 0x32, 0x07, 0x51, 0x9C, 0x00, 0x2E, 0x4C,\n    0x5B, 0x01, 0x33, 0x1B, 0x4C, 0x23, 0x71, 0x23, 0x60, 0x02, 0xEF, 0x2E, 0xA9, 0xF6, 0x0D, 0x03,\n    0x2A, 0x76, 0x25, 0x35, 0x31, 0x2A, 0xD2, 0xA5, 0xB9, 0xB5, 0x44, 0xE3, 0xC6, 0x80, 0x28, 0xDD,\n    0xC9, 0x71, 0x04, 0xC9, 0x52, 0x58, 0x98, 0x19, 0x2B, 0x3C, 0x84, 0xF5, 0x0C, 0x90, 0x39, 0x41,\n    0x37, 0x5C, 0x80, 0x8F, 0x9E, 0xFA, 0x81, 0xF6, 0x1A, 0xED, 0x85, 0xC0, 0xCD, 0x0C, 0x35, 0x81,\n    0xD0, 0xF8, 0x6F, 0xD0, 0x45, 0x80, 0x0D, 0xBE, 0x54, 0x00, 0x30, 0xAE, 0x0B, 0xAA, 0xAD, 0xA9,\n    0x47, 0xF8, 0xAD, 0xD3, 0x0C, 0xF3, 0x6E, 0xE2, 0xA2, 0xC6, 0x3C, 0x0A, 0x13, 0xAB, 0xE5, 0x87,\n    0x27, 0x48, 0xC7, 0xB6, 0x05, 0xD5, 0x6C, 0x64, 0x2C, 0x67, 0x57, 0x32, 0x7C, 0x70, 0x14, 0xAD,\n    0x93, 0x23, 0x08, 0xD0, 0x86, 0x12, 0x3A, 0x70, 0xEB, 0x61, 0xB9, 0xAB, 0x50, 0xB4, 0x77, 0x95,\n    0x7E, 0x9D, 0x93, 0x98, 0x80, 0x2A, 0xAF, 0x5F, 0x4F, 0xED, 0xCC, 0x6E, 0x97, 0xB4, 0x30, 0x0D,\n    0x12, 0x73, 0x15, 0x8E, 0xB4, 0x34, 0x63, 0x3D, 0x77, 0x85, 0xCD, 0x07, 0xB9, 0x9B, 0xAC, 0x34,\n    0x1A, 0x65, 0x1B, 0x0D, 0xC8, 0xBE, 0xBC, 0x0C, 0x7F, 0x7D, 0x7B, 0x91, 0xA5, 0x6A, 0x54, 0x52,\n    0xCC, 0xB5, 0x3F, 0xC8, 0x1B, 0x6C, 0x46, 0xF3, 0xC1, 0x80, 0x0B, 0xD8, 0xC0, 0x47, 0xD6, 0xFA,\n    0x08, 0x71, 0x6A, 0x4D, 0x0A, 0x90, 0x5B, 0x37, 0xF6, 0x13, 0x73, 0x76, 0xBE, 0xD4, 0x90, 0xA1,\n    0x68, 0x3A, 0x55, 0x04, 0x7B, 0x9B, 0xC1, 0x19, 0x62, 0x2C, 0x8B, 0x63, 0xC7, 0x24, 0xAC, 0xF4,\n    0x8C, 0x5F, 0x8F, 0x2D, 0x59, 0xC4, 0xCF, 0x60, 0x13, 0x68, 0x20, 0x21, 0x51, 0x9B, 0x90, 0x72,\n    0x7E, 0x9A, 0xBA, 0x5E, 0x18, 0x9C, 0xB5, 0x98, 0x04, 0xAB, 0x97, 0x07, 0xD4, 0xDA, 0x98, 0x8E,\n    0xA5, 0xD2, 0x40, 0x4D, 0x85, 0x35, 0x37, 0x96, 0x03, 0x40, 0x83, 0x00, 0xC4, 0x31, 0xD5, 0x68,\n    0x45, 0xBC, 0xFC, 0x5D, 0x36, 0xDA, 0x1A, 0xC7, 0x50, 0x04, 0x2A, 0x6F, 0x9A, 0xF0, 0x04, 0x5F,\n    0x3B, 0x43, 0x9F, 0xB8, 0x60, 0xC6, 0x4C, 0xC4, 0x23, 0xFC, 0xF4, 0x9B, 0x42, 0x1F, 0xA1, 0xF2,\n    0x6F, 0xC8, 0x03, 0x2F, 0xF1, 0xDB, 0xB4, 0x0D, 0x4D, 0xB9, 0x32, 0x01, 0xF9, 0x7B, 0xE9, 0x1F,\n    0xD9, 0x48, 0xCF, 0xC6, 0x49, 0x8F, 0xDD, 0x4B, 0x87, 0xEF, 0xCA, 0x84, 0x25, 0xF7, 0x54, 0x3C,\n    0xE1, 0xD2, 0xBD, 0xA8, 0xAD, 0x60, 0x4D, 0x7C, 0x74, 0x4B, 0xDC, 0x9C, 0x00, 0x26, 0x8A, 0x50,\n    0x18, 0xB3, 0xD5, 0x4C, 0x2F, 0xFF, 0x00, 0x16, 0xA2, 0xA6, 0x7A, 0xAF, 0x5F, 0xB9, 0xF7, 0x3C,\n    0x1A, 0x36, 0x5F, 0x8B, 0x71, 0xF6, 0x1E, 0x7D, 0xBC, 0xDF, 0x64, 0x68, 0x9F, 0xBF, 0x99, 0xBD,\n    0x32, 0x9D, 0xB5, 0x37, 0x8D, 0x87, 0xFA, 0xC0, 0x8A, 0x0D, 0x85, 0x5B, 0x2A, 0x9B, 0xFE, 0xD8,\n    0xB2, 0x6C, 0xBE, 0x2C, 0x87, 0x76, 0xDF, 0x3A, 0xB4, 0xCC, 0xCB, 0xCD, 0x7B, 0xFA, 0x6F, 0x5B,\n    0x61, 0xCE, 0xF7, 0x6B, 0x7D, 0xA8, 0x99, 0x31, 0x3A, 0xC8, 0xC9, 0x9C, 0x82, 0x89, 0x80, 0x14,\n    0x25, 0x98, 0x00, 0x20, 0x10, 0xBB, 0x11, 0x1D, 0xB6, 0xA4, 0x13, 0x4E, 0xC1, 0x34, 0xD7, 0x9F,\n    0x00, 0xB5, 0x0D, 0xE3, 0xD7, 0x26, 0xEC, 0x83, 0x69, 0x8F, 0xEA, 0x68, 0x94, 0x1B, 0x93, 0x90,\n    0x18, 0x3F, 0x9F, 0x0A, 0xC4, 0x56, 0xB0, 0xBE, 0x01, 0xA9, 0xAB, 0x77, 0x15, 0x53, 0xA7, 0xD7,\n    0x1B, 0xFB, 0xDC, 0xEA, 0x75, 0x60, 0x67, 0xF8, 0x53, 0xAF, 0xA7, 0xE9, 0x7E, 0x59, 0xF0, 0x04,\n    0x2E, 0xE7, 0xC0, 0xEA, 0x07, 0x0A, 0x81, 0x1E, 0xA1, 0x13, 0x5F, 0xD7, 0x58, 0xB9, 0x0F, 0x2A,\n    0x2F, 0x94, 0x75, 0x7D, 0x67, 0xF0, 0x91, 0x76, 0x31, 0x94, 0x8F, 0x59, 0xFF, 0x7C, 0xBB, 0xAB,\n    0x9C, 0x6B, 0x54, 0x01, 0x1C, 0xC7, 0x2D, 0x73, 0x48, 0x8D, 0x00, 0x1F, 0xA3, 0xA4, 0x87, 0xF9,\n    0x52, 0xA8, 0x04, 0xA6, 0x97, 0xCA, 0xE7, 0x47, 0x7E, 0xD4, 0x0F, 0xC5, 0x0E, 0xAB, 0xE6, 0xFD,\n    0x03, 0x80, 0x01, 0x1E, 0xC1, 0x02, 0x18, 0x87, 0x84, 0xB7, 0x10, 0x36, 0xDC, 0x69, 0xF8, 0x67,\n    0x54, 0x30, 0x08, 0xED, 0x66, 0x21, 0x6B, 0x7D, 0x99, 0xA2, 0x68, 0x83, 0xD3, 0x0C, 0xBD, 0xAF,\n    0x0F, 0xEF, 0xF6, 0x36, 0xDA, 0xC5, 0x2F, 0x32, 0x76, 0xE2, 0x09, 0x09, 0xF4, 0x16, 0x9B, 0xA0,\n    0xD3, 0x5E, 0x67, 0x13, 0xFB, 0xF0, 0x77, 0xFF, 0x81, 0x8A, 0x3C, 0x2E, 0x56, 0x62, 0xD3, 0x88,\n    0xFB, 0x4D, 0x8E, 0x43, 0xF6, 0x37, 0x2F, 0x22, 0x05, 0x4A, 0x73, 0x68, 0x04, 0xEE, 0xAB, 0x7E,\n    0x1E, 0x22, 0x7B, 0x8F, 0xDC, 0xF5, 0x87, 0xBF, 0xFA, 0x7C, 0x07, 0x76, 0xFC, 0x00, 0xCC, 0x06,\n    0x28, 0xB2, 0xA4, 0x24, 0xC9, 0x97, 0x7B, 0xB5, 0xB1, 0xDC, 0x14, 0x93, 0x00, 0x3F, 0xCE, 0x19,\n    0x43, 0x1B, 0x1F, 0x4D, 0x14, 0xD4, 0x34, 0x0E, 0x5F, 0x20, 0xFC, 0x37, 0xAA, 0x09, 0x77, 0x00,\n    0x32, 0x3A, 0x5B, 0xAF, 0xBF, 0xF1, 0x3F, 0xA4, 0x8D, 0xE8, 0x3D, 0xE2, 0x40, 0x8A, 0xA6, 0x50,\n    0xEA, 0x8B, 0x75, 0xDA, 0x7A, 0xD2, 0x19, 0x01, 0x0C, 0x0F, 0x72, 0x03, 0x17, 0x0B, 0xEE, 0x7A,\n    0xFD, 0x03, 0xF5, 0xCD, 0x39, 0x58, 0x09, 0x1C, 0x9F, 0x8E, 0x01, 0x15, 0xDF, 0x98, 0x00, 0x08,\n    0x00, 0x70, 0x71, 0xF1, 0x36, 0x99, 0x8F, 0x92, 0x10, 0xF8, 0x35, 0xB6, 0x64, 0x7F, 0x3B, 0x6E,\n    0x50, 0xD8, 0x2E, 0xEC, 0x36, 0x42, 0x9A, 0xFD, 0xB6, 0x2B, 0xBC, 0x71, 0x31, 0x44, 0xB7, 0xB7,\n    0xF0, 0x0B, 0xA1, 0x5F, 0x2A, 0x83, 0xCC, 0xDD, 0xC4, 0xFF, 0xFE, 0xB5, 0x3C, 0x06, 0x9D, 0xFE,\n    0x5E, 0x7F, 0xD7, 0xE3, 0x18, 0x82, 0x59, 0x0D, 0x53, 0x83, 0x5A, 0x5D, 0xFB, 0xDA, 0x60, 0x14,\n    0x86, 0x08, 0x2D, 0xF5, 0x0D, 0x3F, 0xC0, 0xB1, 0x26, 0x03, 0xD4, 0xA2, 0xB1, 0x83, 0x19, 0x25,\n    0x76, 0xF8, 0x00, 0x38, 0x02, 0x2E, 0xDD, 0x77, 0xDC, 0x3F, 0xCC, 0xD0, 0xF7, 0x10, 0x60, 0x0E,\n    0x6D, 0x0A, 0x77, 0xE9, 0xAB, 0x80, 0xE3, 0x58, 0x52, 0xD6, 0x5A, 0xEE, 0xAF, 0x89, 0xB3, 0x14,\n    0x51, 0xFE, 0xEF, 0x00, 0xFB, 0xF9, 0x84, 0xC9, 0x3B, 0x66, 0x0F, 0xFF, 0xD6, 0xED, 0x08, 0x0A,\n    0x06, 0xB9, 0x1C, 0x34, 0x06, 0x3A, 0xE0, 0xD6, 0x97, 0x5E, 0xD5, 0xB1, 0x3F, 0x31, 0xB5, 0x0F,\n    0xF7, 0x6F, 0xAF, 0xA0, 0x6F, 0x03, 0x64, 0x1A, 0x48, 0x36, 0xF6, 0xBA, 0xD5, 0x8E, 0xD3, 0x42,\n    0xF4, 0x4F, 0x9A, 0x8C, 0xEF, 0xB3, 0xF1, 0x64, 0x92, 0x72, 0x15, 0xE3, 0x9A, 0xC5, 0x31, 0x40,\n    0x1B, 0x48, 0x3F, 0xD4, 0x88, 0x63, 0x9E, 0xDD, 0x81, 0x14, 0x82, 0x7F, 0x08, 0x5D, 0xDD, 0x49,\n    0x7F, 0xFF, 0xE3, 0x70, 0xC2, 0xBF, 0xDC, 0x60, 0x2C, 0x69, 0xCE, 0x97, 0xB7, 0xE9, 0x98, 0x97,\n    0x68, 0x93, 0xA5, 0xFA, 0x60, 0x7A, 0x67, 0x04, 0x05, 0x97, 0x30, 0xE1, 0xC2, 0x53, 0xDC, 0xD5,\n    0x44, 0x0A, 0x05, 0x00, 0x0C, 0xEA, 0xF6, 0xE1, 0xF2, 0x1F, 0xFF, 0x6C, 0xB5, 0x20, 0x68, 0x91,\n    0x0A, 0xFA, 0xF4, 0x80, 0x7A, 0x87, 0x9A, 0x85, 0xD7, 0xBF, 0xBF, 0x8C, 0x22, 0xD9, 0xE0, 0xA9,\n    0x4D, 0x16, 0xBF, 0xEF, 0x81, 0xDF, 0xF0, 0xFC, 0x41, 0x4C, 0x08, 0x36, 0xF3, 0x6C, 0x1D, 0x72,\n    0x19, 0xAF, 0xAD, 0x9C, 0x2F, 0x88, 0x05, 0x46, 0x1B, 0x58, 0xF6, 0x19, 0x4E, 0x60, 0xD5, 0x16,\n    0x8F, 0xDA, 0x33, 0xC4, 0xDE, 0x00, 0x5E, 0x11, 0xEC, 0xBE, 0xB2, 0x29, 0x0B, 0xDF, 0xB1, 0x33,\n    0x73, 0x08, 0x3B, 0xAE, 0xA1, 0x2D, 0x78, 0x0D, 0x48, 0x39, 0x6F, 0xCF, 0x98, 0x85, 0x3E, 0xC3,\n    0x38, 0xF7, 0x90, 0x05, 0xBA, 0x4F, 0xEC, 0xE1, 0x13, 0xF0, 0x6F, 0x41, 0xEE, 0xA7, 0x5C, 0x3F,\n    0x9B, 0x6B, 0xF7, 0x5F, 0x25, 0x91, 0x80, 0x01, 0xC0, 0xF7, 0x77, 0x80, 0xDC, 0x29, 0x87, 0xA2,\n    0xAB, 0x66, 0x74, 0xDD, 0x22, 0xDA, 0xE3, 0xAA, 0x14, 0x71, 0x99, 0x18, 0x32, 0xFF, 0x51, 0x1B,\n    0x0B, 0x38, 0x6E, 0xB5, 0xDA, 0xD0, 0x77, 0xBF, 0x46, 0x85, 0xF5, 0x80, 0x30, 0xCC, 0xD6, 0x65,\n    0x5A, 0x1F, 0x45, 0x49, 0x9F, 0x32, 0xB0, 0xDF, 0xC6, 0x78, 0xF5, 0x0F, 0xA8, 0xA9, 0xD3, 0x16,\n    0x63, 0x6B, 0xEC, 0x50, 0x47, 0xB4, 0xFF, 0x82, 0x20, 0xED, 0xE3, 0x17, 0xE3, 0xFD, 0xAA, 0x3D,\n    0x0F, 0x74, 0x2C, 0x1A, 0x4B, 0xFE, 0xE1, 0x20, 0xCA, 0xF8, 0x53, 0x69, 0xC3, 0x31, 0x6A, 0x3E,\n    0xB9, 0x39, 0x0E, 0x89, 0x11, 0xCF, 0xF9, 0xFB, 0xC2, 0x3C, 0x4F, 0xFC, 0x28, 0x98, 0xDE, 0x19,\n    0x14, 0xE5, 0xAF, 0xFF, 0x7D, 0xB0, 0x7B, 0xE0, 0x9D, 0xCC, 0xA5, 0x53, 0x5C, 0xD2, 0x40, 0xC2,\n    0xEA, 0x26, 0x18, 0xA9, 0xE4, 0xBE, 0xF5, 0xBF, 0xDE, 0x80, 0x2E, 0x13, 0xFD, 0xDD, 0xAF, 0xCE,\n    0x0F, 0xE1, 0x9A, 0x7C, 0x02, 0x63, 0x04, 0x26, 0xC9, 0xB3, 0xE4, 0xF9, 0x1D, 0x6C, 0x88, 0x65,\n    0xA7, 0x40, 0x80, 0x8B, 0xB3, 0x42, 0x64, 0xC1, 0x98, 0xF5, 0x9E, 0xEB, 0xF1, 0xF7, 0x98, 0xFD,\n    0x46, 0x53, 0x3E, 0x78, 0x68, 0x4F, 0xEC, 0x83, 0x23, 0x21, 0xE0, 0xFC, 0xE4, 0x8B, 0xFF, 0xDB,\n    0x19, 0x7B, 0x58, 0x3D, 0x0B, 0xAE, 0x54, 0xD4, 0xCB, 0x6F, 0x48, 0xE5, 0x99, 0xDA, 0x0A, 0x9D,\n    0x3F, 0x7D, 0x60, 0x05, 0x8F, 0x91, 0x9D, 0xDF, 0xFA, 0xAF, 0xDB, 0x29, 0x6A, 0x09, 0xDD, 0x19,\n    0xBA, 0xFF, 0xF7, 0xB1, 0xFF, 0xA2, 0x56, 0x59, 0x28, 0x5F, 0x82, 0xFC, 0xE1, 0x22, 0x92, 0xB0,\n    0xBB, 0xD0, 0x37, 0xD0, 0x19, 0xB5, 0x84, 0x5E, 0x8B, 0xFC, 0x9D, 0x85, 0xF7, 0x5E, 0xFC, 0xE3,\n    0x69, 0xC4, 0xED, 0xF2, 0xDE, 0x1D, 0x6A, 0x38, 0xD2, 0x7C, 0x2F, 0x4C, 0x2B, 0x8D, 0xEC, 0xF0,\n    0x67, 0xDE, 0x03, 0xB7, 0x41, 0x60, 0xD8, 0x11, 0x76, 0x30, 0x29, 0x9F, 0x9E, 0xA1, 0xCA, 0x09,\n    0x43, 0x89, 0x0E, 0x90, 0x82, 0xD7, 0xFB, 0xC3, 0x01, 0x8F, 0x95, 0xF7, 0x1C, 0xF4, 0x58, 0x6E,\n    0x1D, 0x5C, 0xF0, 0x6C, 0x19, 0x21, 0xD4, 0xE8, 0x17, 0x6A, 0x38, 0x19, 0x36, 0x0C, 0x4E, 0x0F,\n    0xAD, 0x52, 0xB6, 0xDD, 0x86, 0xE4, 0xD7, 0x1A, 0x84, 0x7A, 0xE1, 0x94, 0x00, 0x36, 0x7B, 0xCD,\n    0xDD, 0xBF, 0x56, 0x8E, 0x4A, 0xC0, 0x79, 0x2F, 0x77, 0xF7, 0xD6, 0xE7, 0xD0, 0xD3, 0x4B, 0xC6,\n    0xFF, 0xBF, 0x42, 0x95, 0xB6, 0xEB, 0x3D, 0x70, 0xA9, 0x3C, 0xE6, 0xFD, 0xEF, 0x0A, 0x6E, 0x7B,\n    0xDF, 0xF2, 0x03, 0x10, 0x90, 0xD9, 0xF7, 0x2F, 0xF6, 0xEA, 0x7C, 0x50, 0xE3, 0xD4, 0xDF, 0xDE,\n    0x6E, 0x00, 0x00, 0x8B, 0xCD, 0x75, 0xEC, 0xD3, 0xE0, 0x50, 0xFA, 0x7B, 0xC2, 0x77, 0x3E, 0x35,\n    0xE6, 0x59, 0x92, 0xDA, 0x4B, 0xBB, 0xB0, 0x7D, 0xF2, 0x4D, 0xA0, 0xE4, 0x4E, 0xA0, 0xBC, 0x3B,\n    0x00, 0xB7, 0x90, 0x03, 0xFD, 0xD0, 0xC9, 0xFE, 0xBE, 0x15, 0xD7, 0xC3, 0xD9, 0x7F, 0xEF, 0x3D,\n    0xA0, 0x43, 0x90, 0x9A, 0xC7, 0x5D, 0x70, 0x2F, 0xDF, 0x70, 0xAB, 0xBC, 0x24, 0xCC, 0x76, 0xFF,\n    0xED, 0xDE, 0x53, 0x0F, 0xA9, 0xA7, 0x97, 0x7E, 0xAC, 0x00, 0x65, 0xA1, 0x75, 0x22, 0x3F, 0xF3,\n    0xB3, 0x0E, 0x3F, 0x56, 0x56, 0x66, 0xEF, 0xE0, 0x1D, 0x57, 0xAC, 0xE4, 0xB9, 0xEB, 0x8F, 0x7E,\n    0x10, 0x97, 0x58, 0xFA, 0x08, 0xDC, 0x34, 0xCE, 0x44, 0xFB, 0xEF, 0x53, 0x9C, 0x88, 0x84, 0x79,\n    0x7D, 0xF0, 0x07, 0x00, 0x02, 0x08, 0x38, 0x42, 0x00, 0x02, 0x01, 0x74, 0x00, 0x08, 0xB7, 0xF8,\n    0x50, 0x00, 0x7B, 0xFC, 0x50, 0x22, 0x0D, 0xCD, 0xCF, 0xCC, 0x2F, 0xCD, 0xE5, 0xA3, 0x9F, 0xBD,\n    0x65, 0x79, 0x0B, 0x0A, 0xB3, 0xA9, 0x81, 0x96, 0xD8, 0x19, 0xD9, 0x8A, 0x64, 0x60, 0x2A, 0xE6,\n    0x20, 0xFE, 0x1E, 0x4A, 0x33, 0x9D, 0x6D, 0xE3, 0x96, 0x3B, 0x07, 0x5F, 0x30, 0x0D, 0x79, 0x59,\n    0x1B, 0xFE, 0x1D, 0x62, 0xF9, 0x9F, 0xFD, 0xF8, 0x63, 0xED, 0x91, 0xCD, 0xFD, 0xFC, 0xBD, 0x7A,\n    0xA9, 0xE4, 0x77, 0xCC, 0xD4, 0xF1, 0x99, 0x73, 0xB3, 0xDD, 0x6D, 0x75, 0xB0, 0xC9, 0x16, 0xA2,\n    0xD2, 0xFF, 0xB0, 0xF3, 0x39, 0xEF, 0xF6, 0xC7, 0xD2, 0x6A, 0x6A, 0x40, 0x3B, 0xFA, 0x18, 0xA3,\n    0x32, 0x82, 0x02, 0x25, 0xBC, 0x9E, 0x1A, 0xE7, 0x28, 0xF5, 0x7D, 0x54, 0xC3, 0xCA, 0xE0, 0xC2,\n    0x01, 0xA3, 0x98, 0x10, 0x06, 0x70, 0xCC, 0x1C, 0x17, 0xA1, 0x83, 0xC2, 0x66, 0xCC, 0x90, 0xDF,\n    0x5D, 0x7D, 0x1D, 0x06, 0x5B, 0x2D, 0xCD, 0xDD, 0x87, 0x57, 0xDA, 0x20, 0xBB, 0x63, 0x87, 0x5C,\n    0x11, 0x64, 0x4C, 0x6C, 0x10, 0x16, 0x47, 0x32, 0x2A, 0x5D, 0xF7, 0xF1, 0x5A, 0x6D, 0xBF, 0xB2,\n    0x6D, 0xFC, 0x74, 0x50, 0x96, 0xBF, 0xB8, 0x08, 0xCE, 0xB8, 0x08, 0x3E, 0xA3, 0xFC, 0x8C, 0x4B,\n    0x6E, 0xCF, 0x1C, 0x82, 0x3D, 0x23, 0x8F, 0x09, 0x99, 0x88, 0x9D, 0x61, 0xC3, 0x2A, 0xE2, 0x89,\n    0xC7, 0xA6, 0x9B, 0xD2, 0x11, 0x22, 0x2E, 0x5F, 0xEA, 0x6D, 0xDD, 0x0E, 0x59, 0x3A, 0xC2, 0x00,\n    0x03, 0x00, 0x28, 0x87, 0x42, 0x00, 0x20, 0xE8, 0x93, 0x11, 0xFC, 0x49, 0xF4, 0x6E, 0x3A, 0x93,\n    0x5A, 0xEF, 0x5A, 0x64, 0xDB, 0x28, 0x8D, 0x41, 0x0F, 0x67, 0x5C, 0xC7, 0x8E, 0xC5, 0x4F, 0x06,\n    0x88, 0x5D, 0xDD, 0xC0, 0x37, 0xFE, 0x81, 0x01, 0x55, 0xF4, 0x38, 0xF6, 0x85, 0x57, 0x51, 0xAA,\n    0x75, 0x4F, 0x60, 0xA0, 0xE5, 0xA9, 0xA3, 0xB5, 0xD4, 0x35, 0xAF, 0xB3, 0x9D, 0x55, 0x1F, 0xED,\n    0x8E, 0x92, 0x51, 0xBC, 0x38, 0x8F, 0xFC, 0xB5, 0x68, 0x1C, 0x54, 0x20, 0x08, 0x53, 0x46, 0x76,\n    0x60, 0x2F, 0xF1, 0xF5, 0x18, 0x21, 0x0D, 0x93, 0x12, 0x20, 0xE5, 0xAC, 0x08, 0x3E, 0x19, 0x76,\n    0x71, 0xB4, 0x92, 0x94, 0x22, 0xD2, 0x71, 0x2B, 0x93, 0xE9, 0xBB, 0x2F, 0xDE, 0x06, 0xB5, 0x48,\n    0x2D, 0x6A, 0xD1, 0x90, 0x75, 0x25, 0xFA, 0x3F, 0xF9, 0x23, 0x22, 0x57, 0x7A, 0x86, 0x01, 0x49,\n    0x81, 0xAA, 0x18, 0xDD, 0x68, 0xF8, 0x02, 0x9F, 0x57, 0xAB, 0x7F, 0x26, 0xB6, 0x7E, 0xC0, 0x40,\n    0x93, 0x12, 0x68, 0xD3, 0x9E, 0xFE, 0xB3, 0xA1, 0x69, 0xC3, 0xFC, 0x79, 0x87, 0xBD, 0x46, 0x35,\n    0x48, 0x58, 0x29, 0x9A, 0x08, 0x01, 0x19, 0xC9, 0xFD, 0xC0, 0x81, 0xCF, 0x0F, 0x81, 0x95, 0xC2,\n    0x70, 0x00, 0xE6, 0xDF, 0x21, 0xC1, 0xEF, 0xA2, 0x81, 0x19, 0xB6, 0x8D, 0x7A, 0x33, 0x20, 0x55,\n    0xC7, 0xD4, 0xFD, 0xB1, 0x59, 0x8C, 0xDD, 0x61, 0x3B, 0x94, 0x09, 0xAE, 0x31, 0xBD, 0x9F, 0xFD,\n    0x53, 0x5B, 0xB1, 0x42, 0xB7, 0x3B, 0xA9, 0x1D, 0xB5, 0x0A, 0x93, 0x43, 0x24, 0x02, 0xB5, 0x68,\n    0xDF, 0xBF, 0x1F, 0x3D, 0x0D, 0x26, 0xB1, 0x25, 0x95, 0x2D, 0x78, 0x9B, 0x38, 0x3E, 0x3F, 0xBD,\n    0x26, 0x31, 0x7B, 0xE1, 0xF1, 0x43, 0x57, 0xDE, 0x17, 0x30, 0x9B, 0x49, 0xC1, 0xDD, 0x4B, 0xDF,\n    0x81, 0x01, 0x29, 0x14, 0x20, 0x00, 0x50, 0x5A, 0x04, 0x43, 0x14, 0x75, 0x25, 0xA0, 0xC8, 0xD7,\n    0xE2, 0x40, 0xF1, 0xB6, 0x8D, 0x97, 0x04, 0x8C, 0x1F, 0x44, 0x65, 0x35, 0x34, 0x51, 0x41, 0x44,\n    0x35, 0x5A, 0x0D, 0xB8, 0xBD, 0x7E, 0x43, 0xB0, 0xE6, 0x52, 0x42, 0x14, 0xFE, 0x3D, 0x0E, 0x95,\n    0x6E, 0x76, 0x56, 0x9F, 0xCA, 0x7E, 0xB3, 0x53, 0x71, 0x33, 0x51, 0xFC, 0xAD, 0x34, 0xD1, 0xE0,\n    0xB1, 0x0C, 0xC0, 0x88, 0x3D, 0xFD, 0x46, 0xF4, 0xD8, 0x0B, 0x0E, 0xF2, 0x2F, 0x01, 0xB3, 0x21,\n    0x4A, 0xA5, 0x6D, 0x5B, 0xE6, 0xEE, 0x1E, 0x1C, 0x56, 0x03, 0x76, 0x29, 0x7E, 0x15, 0x92, 0xD6,\n    0x24, 0xFA, 0xFA, 0x1F, 0x5E, 0x0E, 0x80, 0x1F, 0xFF, 0xCA, 0xB0, 0x31, 0x81, 0x7E, 0x4C, 0xEF,\n    0xEF, 0x33, 0x8A, 0x30, 0xBA, 0x75, 0x13, 0xF7, 0xFB, 0x28, 0x7D, 0x2F, 0x22, 0x10, 0x15, 0x43,\n    0xD7, 0xEA, 0x21, 0x8B, 0x71, 0x92, 0x85, 0x2D, 0x7B, 0x9E, 0x08, 0x0B, 0x88, 0xF0, 0xC0, 0x01,\n    0x1B, 0x5C, 0x32, 0x6D, 0x06, 0x87, 0xC1, 0xC9, 0xEC, 0xCE, 0xEC, 0x87, 0x98, 0x80, 0xA8, 0xC3,\n    0x41, 0xE0, 0xAB, 0x82, 0x14, 0xBA, 0xA5, 0x7D, 0x48, 0xC4, 0xCC, 0x91, 0x99, 0x1D, 0x49, 0xD1,\n    0xBB, 0xD1, 0x0A, 0x2C, 0x89, 0xFF, 0x28, 0x60, 0x01, 0x8D, 0x0E, 0xC0, 0xB4, 0x6A, 0xDA, 0x47,\n    0x02, 0xF1, 0x8B, 0x29, 0x69, 0xA8, 0xB9, 0x60, 0xF0, 0x88, 0xC1, 0xFB, 0xB4, 0x93, 0xCD, 0xA8,\n    0x8E, 0x8C, 0xBC, 0x1A, 0x99, 0x3C, 0x14, 0x87, 0xC0, 0xF5, 0x41, 0xD4, 0xF1, 0xDD, 0xD6, 0xE7,\n    0xEF, 0x83, 0xE2, 0xCE, 0x98, 0xF2, 0xFF, 0xBF, 0xC5, 0x32, 0x11, 0x77, 0x10, 0xB0, 0x8B, 0xA6,\n    0xFC, 0xB7, 0x63, 0x96, 0x13, 0x74, 0x86, 0x5F, 0xFF, 0x56, 0x79, 0x63, 0xED, 0x4C, 0x0E, 0x90,\n    0x51, 0xF7, 0xBA, 0x48, 0xE4, 0x1C, 0x9B, 0x33, 0xBA, 0xEB, 0xD5, 0x8D, 0x38, 0x26, 0x18, 0xCB,\n    0x82, 0x6D, 0xEE, 0xC4, 0xC4, 0x77, 0x33, 0x29, 0x22, 0x59, 0xE3, 0xE1, 0x31, 0xAB, 0xAF, 0x7E,\n    0x04, 0x52, 0x04, 0x10, 0x02, 0x3F, 0xD2, 0x16, 0x19, 0x61, 0x2F, 0x4A, 0xB8, 0x97, 0x68, 0x23,\n    0x47, 0xAE, 0xB5, 0xDF, 0xCA, 0x8F, 0xAB, 0x1F, 0xAD, 0xED, 0xE3, 0x60, 0x79, 0x34, 0xC1, 0x2B,\n    0xDA, 0x2E, 0x6D, 0x8A, 0x2F, 0xDB, 0x26, 0x98, 0xB6, 0x18, 0xEE, 0x71, 0x14, 0xCC, 0x6A, 0x81,\n    0xC7, 0x75, 0x3F, 0xEF, 0x00, 0xC3, 0x9A, 0xAB, 0xFD, 0x1A, 0xDC, 0xC2, 0x5F, 0x22, 0x0E, 0xF9,\n    0x1B, 0x32, 0xE4, 0x64, 0x03, 0x41, 0x54, 0xC7, 0xDE, 0x04, 0x8E, 0xA3, 0x93, 0x7C, 0x20, 0x37,\n    0x79, 0xD4, 0x4F, 0x77, 0xF8, 0x7F, 0xEC, 0x2B, 0xD0, 0xFD, 0x3F, 0xFF, 0xFB, 0x0D, 0xDD, 0xD3,\n    0x34, 0x45, 0x45, 0x26, 0x5E, 0xB9, 0x9E, 0xF4, 0xEB, 0x05, 0x55, 0x39, 0x93, 0x2E, 0x98, 0x66,\n    0x95, 0x97, 0x63, 0xE1, 0xB0, 0x87, 0xFD, 0x75, 0x5D, 0x42, 0x4A, 0x03, 0x80, 0xBB, 0x0E, 0x2E,\n    0x1F, 0x83, 0x92, 0x5B, 0x3D, 0x16, 0x7D, 0xD8, 0x7A, 0x7E, 0x04, 0x2F, 0x4F, 0xCB, 0x9B, 0x6F,\n    0x93, 0x7B, 0x74, 0x71, 0xFF, 0xB1, 0x50, 0xF5, 0x00, 0xC2, 0x4E, 0x6B, 0x76, 0xE4, 0x58, 0xCB,\n    0x61, 0xAA, 0x3E, 0xCD, 0xDF, 0x7C, 0x00, 0xAD, 0x05, 0xCE, 0x3B, 0x33, 0x57, 0x64, 0x84, 0x33,\n    0x80, 0xD7, 0xD5, 0x3D, 0x7C, 0x1A, 0xB3, 0xE4, 0xFF, 0x81, 0xFF, 0x76, 0xDA, 0x7C, 0x6F, 0xE5,\n    0xFC, 0x6E, 0x93, 0x0B, 0xAF, 0x67, 0xE8, 0x63, 0xA6, 0xDB, 0x97, 0xFC, 0xFA, 0x27, 0xA3, 0x1C,\n    0x47, 0xFB, 0xAC, 0xB6, 0xCF, 0xF5, 0xFC, 0x07, 0xFF, 0xDE, 0x7F, 0xF3, 0xF0, 0x02, 0xA2, 0x5B,\n    0x97, 0xEC, 0xA2, 0x8E, 0xA2, 0x7F, 0xAA, 0xB6, 0xBE, 0x76, 0xBD, 0xFD, 0x5F, 0xD5, 0xF1, 0xFC,\n    0x33, 0x90, 0x5F, 0x4C, 0x18, 0xA2, 0xDE, 0x00, 0x19, 0xF6, 0xCA, 0x67, 0x24, 0xDA, 0xB7, 0xB4,\n    0x28, 0xBD, 0x82, 0x43, 0xCC, 0x1D, 0x5E, 0x49, 0xFA, 0xD7, 0x7F, 0x3F, 0x38, 0x16, 0x1F, 0xAA,\n    0x27, 0x80, 0xB6, 0xDD, 0x2E, 0x14, 0xDF, 0xAB, 0x3B, 0xFF, 0xF1, 0x49, 0xF2, 0xBF, 0xE0, 0x01,\n    0x39, 0x1B, 0x72, 0xBF, 0xA1, 0xF0, 0xC3, 0x0B, 0x06, 0xB5, 0x5F, 0x44, 0xD3, 0x60, 0x20, 0xB2,\n    0xA6, 0x98, 0x98, 0xB7, 0xB6, 0x4B, 0x8E, 0x2E, 0x23, 0xF5, 0x54, 0x6F, 0x3E, 0x25, 0xA0, 0xD6,\n    0xDC, 0xE4, 0xA5, 0xBD, 0x9B, 0xF8, 0xD0, 0x99, 0x00, 0x6A, 0xA4, 0xDA, 0x7E, 0x74, 0x80, 0x98,\n    0x86, 0xAE, 0x82, 0x9B, 0x0C, 0x11, 0x8E, 0x3A, 0xFF, 0xF7, 0x10, 0xE3, 0xA4, 0xC1, 0x69, 0x84,\n    0xF7, 0xCB, 0x5F, 0x57, 0x8E, 0x90, 0x55, 0x28, 0xCE, 0x7C, 0x90, 0x6F, 0x50, 0xD0, 0xC2, 0x16,\n    0x54, 0xCD, 0xDA, 0x00, 0xEF, 0xA3, 0x02, 0x8E, 0xCA, 0x08, 0x27, 0x3F, 0x6A, 0x82, 0x4B, 0x0A,\n    0x15, 0xB9, 0x90, 0x46, 0x3F, 0xEB, 0xB8, 0x7F, 0x14, 0xF8, 0xCA, 0xEA, 0x24, 0x1B, 0xD0, 0xF5,\n    0x7E, 0xD2, 0x0E, 0x1C, 0x9C, 0x7A, 0x6B, 0x2C, 0xDB, 0x85, 0xEE, 0x89, 0xE1, 0x0F, 0xF1, 0xEF,\n    0x1F, 0x86, 0xF8, 0x30, 0x31, 0x69, 0x35, 0x19, 0x7A, 0x33, 0xC0, 0x0F, 0x25, 0xCE, 0x35, 0x48,\n    0x26, 0xB3, 0xE7, 0x5E, 0x21, 0x01, 0xC7, 0x00, 0x65, 0xF4, 0x85, 0xD9, 0x0B, 0xE2, 0xF0, 0xC6,\n    0x1E, 0x09, 0x13, 0xA7, 0x1A, 0xC0, 0xF9, 0xF9, 0xE1, 0xA3, 0x5F, 0x48, 0x17, 0xEF, 0xC0, 0x74,\n    0x64, 0x8A, 0x57, 0xDF, 0xB6, 0x38, 0x6F, 0x2D, 0x5A, 0x62, 0x58, 0x7F, 0xF0, 0x7B, 0x2A, 0xFF,\n    0x3F, 0x5A, 0x65, 0xA0, 0x48, 0x71, 0xF1, 0x5B, 0xA7, 0x6C, 0x15, 0x55, 0xBC, 0x7E, 0x61, 0x17,\n    0x6D, 0x06, 0xF2, 0xDE, 0xE4, 0x27, 0xD0, 0x10, 0x0D, 0x94, 0x35, 0x5F, 0xAE, 0x5A, 0xD9, 0x0A,\n    0x89, 0xD6, 0x4D, 0xB3, 0xFE, 0xFE, 0x14, 0x77, 0x02, 0xCF, 0x22, 0x63, 0x59, 0xB4, 0x86, 0xEE,\n    0x3E, 0x31, 0x2F, 0x83, 0xBC, 0xE0, 0x60, 0x60, 0x62, 0xA0, 0x93, 0x32, 0x51, 0xE3, 0x6E, 0xA4,\n    0x05, 0xA6, 0x9E, 0xB5, 0x8D, 0x80, 0xA8, 0x6B, 0x69, 0xD7, 0xF5, 0x16, 0xB1, 0x7B, 0x73, 0xE4,\n    0x8C, 0x69, 0xFB, 0x8B, 0xA4, 0x1F, 0x8F, 0x04, 0xCA, 0x2C, 0xB9, 0x3A, 0x12, 0x36, 0x2C, 0xB5,\n    0xAB, 0xFC, 0x3F, 0x88, 0xB8, 0x23, 0x4B, 0x7F, 0x6A, 0x5A, 0x8C, 0x1C, 0x5E, 0x78, 0x70, 0x25,\n    0xFD, 0xBA, 0x1E, 0x2A, 0xAE, 0xD8, 0x6F, 0xFE, 0x50, 0xD0, 0xA5, 0x47, 0xCC, 0x07, 0x00, 0x02,\n    0x66, 0x20, 0xB1, 0x8C, 0xB3, 0x29, 0xB0, 0xF0, 0x8E, 0x40, 0xD7, 0xF3, 0x0C, 0xAF, 0x62, 0x0F,\n    0x40, 0xF7, 0x07, 0x08, 0x90, 0x9C, 0xD0, 0xFE, 0xF7, 0x41, 0x01, 0x09, 0xAA, 0x8C, 0x5F, 0xE4,\n    0x26, 0x61, 0x4A, 0xFA, 0x0F, 0xC7, 0xFC, 0xDF, 0x02, 0xD3, 0x27, 0xFC, 0x97, 0x92, 0x0A, 0x16,\n    0x2F, 0x52, 0x1F, 0x7A, 0xF4, 0x62, 0xF9, 0x95, 0x4F, 0x32, 0xF4, 0x31, 0x87, 0x76, 0x4C, 0x87,\n    0x1E, 0x81, 0xF6, 0x83, 0x56, 0x09, 0x71, 0x37, 0x55, 0x84, 0x71, 0x6C, 0x90, 0x77, 0x21, 0x5F,\n    0xAC, 0x06, 0xF4, 0x90, 0xE6, 0x8E, 0x15, 0xA5, 0x9A, 0xED, 0x5A, 0x30, 0x06, 0xE0, 0x22, 0x2F,\n    0x79, 0x8F, 0x38, 0xB2, 0x05, 0x0E, 0x9C, 0x77, 0xFF, 0xB6, 0xCA, 0x92, 0x54, 0xF0, 0xFB, 0xAE,\n    0x0C, 0x25, 0x40, 0x20, 0x01, 0x18, 0xA5, 0xC1, 0xA2, 0x01, 0xEB, 0x9E, 0xDB, 0xB8, 0xDE, 0xBC,\n    0x47, 0xCD, 0x85, 0x59, 0xE2, 0x13, 0x03, 0xF6, 0xC5, 0x2B, 0x8C, 0x80, 0x08, 0x22, 0x48, 0xD0,\n    0x05, 0x0C, 0xC0, 0x6F, 0x75, 0x5A, 0xDD, 0x18, 0xC5, 0x52, 0xEC, 0x22, 0xD0, 0x31, 0xEA, 0x01,\n    0xE4, 0x6F, 0x89, 0x6B, 0xF3, 0xE8, 0xB9, 0x1A, 0xDE, 0xA7, 0xA9, 0x20, 0x3E, 0x84, 0x47, 0xD7,\n    0xE0, 0xF0, 0x3B, 0x70, 0xC9, 0x70, 0x74, 0x2B, 0xF1, 0xE3, 0x2E, 0xE9, 0x78, 0x32, 0x00, 0xCC,\n    0x7F, 0x7F, 0xBD, 0xA7, 0xDA, 0x33, 0xC0, 0x18, 0xB3, 0x0A, 0x05, 0x05, 0x97, 0x5E, 0x04, 0xC8,\n    0xD7, 0x68, 0xB8, 0xC8, 0x20, 0x8B, 0x72, 0x01, 0x21, 0xEB, 0x29, 0x02, 0xE8, 0x83, 0xDE, 0x3D,\n    0xE6, 0x26, 0x2A, 0x4E, 0x20, 0x26, 0xFD, 0xF6, 0xD0, 0x2A, 0x44, 0x16, 0xD4, 0x86, 0x40, 0x6B,\n    0x4D, 0x90, 0x29, 0x15, 0x9C, 0xC0, 0xBB, 0xE8, 0x00, 0xCF, 0x7C, 0x0E, 0x03, 0xEC, 0x89, 0x5F,\n    0xF6, 0x3D, 0xF0, 0x00, 0x10, 0x03, 0x8A, 0x49, 0xF1, 0x2C, 0x80, 0xE5, 0x83, 0x4F, 0x88, 0x14,\n    0xD7, 0x65, 0x1D, 0x10, 0xB3, 0xEF, 0xEB, 0xE9, 0x80, 0xCA, 0xC9, 0xC5, 0xD6, 0xFF, 0xCE, 0xF4,\n    0xBB, 0x9A, 0x1C, 0x4C, 0x1B, 0xEE, 0xDF, 0x50, 0x38, 0x31, 0x38, 0x32, 0x58, 0xF6, 0x2B, 0xFB,\n    0xF7, 0xED, 0xC2, 0x45, 0x0C, 0x06, 0x08, 0x96, 0x10, 0x0E, 0x61, 0x41, 0x7C, 0x89, 0x91, 0x04,\n    0x18, 0x83, 0x58, 0x65, 0xE0, 0xEF, 0x93, 0x01, 0xBA, 0x4D, 0xF6, 0x5C, 0x88, 0x30, 0xE8, 0x69,\n    0x13, 0x93, 0xF5, 0x3F, 0x0F, 0x0A, 0x00, 0xA9, 0x92, 0x88, 0x26, 0x3E, 0xFE, 0xAA, 0x49, 0xE0,\n    0x65, 0xB5, 0x24, 0x7B, 0xEA, 0x2B, 0x8E, 0xAE, 0xC6, 0xCC, 0x7F, 0xCB, 0x0D, 0xB0, 0xDE, 0x74,\n    0x5F, 0x1A, 0xBC, 0x45, 0x3E, 0xA3, 0x71, 0xB4, 0x09, 0xB4, 0x38, 0xCB, 0xD1, 0xCD, 0xB1, 0x5F,\n    0x71, 0x4F, 0xC9, 0xF5, 0xF8, 0x18, 0x05, 0x02, 0x04, 0x00, 0x81, 0xFE, 0x05, 0xDC, 0x7E, 0x87,\n    0x12, 0xC9, 0x9A, 0x14, 0x45, 0xB3, 0xCD, 0x38, 0x4B, 0x19, 0x85, 0x14, 0x3F, 0x85, 0x29, 0xE9,\n    0xFB, 0x7F, 0xB6, 0xD9, 0x9C, 0xD4, 0x0C, 0xD0, 0x02, 0xCA, 0xDF, 0x61, 0x72, 0xF2, 0xE1, 0x59,\n    0x50, 0x9C, 0xFF, 0x7F, 0x2C, 0x10, 0xE0, 0xA7, 0x6C, 0x29, 0xA5, 0x08, 0x55, 0xDF, 0xA7, 0x80,\n    0x53, 0x2B, 0xB8, 0x8B, 0xFF, 0xAE, 0xD6, 0x8F, 0x40, 0x00, 0xC5, 0x74, 0x8A, 0xC1, 0xAF, 0xBB,\n    0x0A, 0x51, 0x0B, 0x5E, 0x1F, 0x67, 0xCF, 0xFC, 0xCF, 0x35, 0x84, 0xB7, 0xF0, 0x55, 0xD3, 0xA0,\n    0x15, 0x2E, 0xF3, 0x06, 0x00, 0xFC, 0x93, 0x38, 0x07, 0xB7, 0xA4, 0x5F, 0x65, 0x14, 0xB4, 0x5B,\n    0x52, 0x96, 0xD5, 0x35, 0xFD, 0x44, 0x78, 0x4F, 0x4C, 0x59, 0x97, 0xCF, 0xB1, 0xC4, 0x04, 0x91,\n    0xE0, 0xB4, 0xBA, 0xC6, 0xED, 0xAE, 0x6D, 0x6B, 0xF9, 0xA1, 0xFB, 0xF0, 0xA5, 0x91, 0x2A, 0x32,\n    0x7A, 0x72, 0x7A, 0xCA, 0x93, 0x4C, 0xD6, 0xB9, 0x8E, 0x3F, 0x8A, 0x22, 0xC0, 0x20, 0x22, 0x7D,\n    0xBB, 0x02, 0xB3, 0x4C, 0xD6, 0xB2, 0x06, 0x88, 0x04, 0xF2, 0xD4, 0x6B, 0xE0, 0x4B, 0x96, 0x8C,\n    0x19, 0xAF, 0x60, 0x39, 0x02, 0x9F, 0xF5, 0x6D, 0x96, 0x12, 0xE1, 0xCF, 0x55, 0x5C, 0x06, 0x01,\n    0x6E, 0xA6, 0x93, 0xF0, 0xA4, 0x69, 0xBD, 0xED, 0x6F, 0xE1, 0x88, 0x88, 0x94, 0xF8, 0xA6, 0x35,\n    0x03, 0xA0, 0xA9, 0x4D, 0xAF, 0xC3, 0x90, 0x02, 0x5D, 0x05, 0x50, 0xA0, 0xA6, 0x3B, 0x70, 0x00,\n    0x89, 0xB3, 0x02, 0x83, 0xAE, 0x0A, 0x89, 0x73, 0x12, 0xB5, 0xE2, 0x30, 0xD5, 0x9E, 0x84, 0xE5,\n    0x4C, 0xD2, 0xC9, 0x75, 0xFC, 0xB7, 0x7B, 0x74, 0x22, 0x12, 0x72, 0x70, 0x72, 0x6D, 0x54, 0x0E,\n    0xF2, 0x21, 0xFA, 0x0E, 0x12, 0x1D, 0x27, 0x5E, 0x17, 0x49, 0x42, 0x4F, 0x76, 0xB3, 0xE9, 0x7F,\n    0xFC, 0xCD, 0xEE, 0x8F, 0xE6, 0xFE, 0x30, 0xE6, 0xF1, 0xB7, 0x5E, 0xB0, 0xEE, 0x5B, 0x80, 0x1A,\n    0xA4, 0xB3, 0x6A, 0xBD, 0xDF, 0x8C, 0xDE, 0x6F, 0xE8, 0x02, 0x0E, 0xAB, 0x31, 0x4C, 0xC5, 0xA0,\n    0xAC, 0xE8, 0xB3, 0x04, 0x99, 0xC0, 0xD5, 0x1E, 0xFA, 0x29, 0xCD, 0x4E, 0x9A, 0xBD, 0x7E, 0xD9,\n    0xF9, 0xFF, 0x54, 0x04, 0x3A, 0xC0, 0x3B, 0x49, 0x28, 0x0C, 0x41, 0x1B, 0x67, 0xF1, 0xEF, 0xCF,\n    0xE7, 0xB0, 0x01, 0xA7, 0xAA, 0xF7, 0x7E, 0xF7, 0xB5, 0x1B, 0x96, 0x08, 0xFD, 0x47, 0xEC, 0x6E,\n    0x06, 0xA2, 0x9B, 0xA9, 0xE9, 0xC3, 0xA5, 0xDF, 0xFA, 0x65, 0x58, 0xF3, 0xD8, 0x7A, 0xB7, 0xFD,\n    0xB1, 0xFC, 0xD7, 0x35, 0x75, 0xA5, 0x4B, 0x7F, 0xFF, 0xA9, 0x55, 0x6E, 0x1B, 0x6D, 0xBD, 0xD4,\n    0xFF, 0x7F, 0xED, 0xFD, 0x87, 0xEF, 0xF0, 0x8B, 0x07, 0xA9, 0x0A, 0x30, 0x84, 0x00, 0x7F, 0xC1,\n    0x21, 0x4F, 0x59, 0x3A, 0xCC, 0x71, 0x24, 0x04, 0x4B, 0xC9, 0xC0, 0x0A, 0x7A, 0xF8, 0x12, 0x31,\n    0xBE, 0x37, 0x38, 0x4F, 0x98, 0x6F, 0xF5, 0x72, 0xD1, 0x04, 0x1A, 0x12, 0xCC, 0x93, 0xFA, 0x74,\n    0x7A, 0x81, 0xDD, 0x31, 0x6F, 0x90, 0xFE, 0x5F, 0xFD, 0x8C, 0x6F, 0x7E, 0x31, 0x01, 0xA2, 0xFE,\n    0x59, 0xFF, 0xBE, 0xF5, 0xC5, 0x2C, 0x0A, 0x54, 0xB0, 0xB7, 0x03, 0x47, 0xD2, 0xB5, 0x88, 0x7D,\n    0xBC, 0x32, 0xD2, 0xAD, 0xFA, 0xFF, 0x32, 0xE0, 0x37, 0x62, 0x60, 0x59, 0x86, 0xF7, 0xA0, 0xBF,\n    0xFF, 0xFC, 0xF0, 0x16, 0xA1, 0x30, 0x85, 0xBD, 0x2D, 0x7E, 0xBD, 0xA1, 0xFF, 0x30, 0x6F, 0x53,\n    0x54, 0x00, 0xC1, 0x23, 0xAD, 0x05, 0xF1, 0x7F, 0x3C, 0xDA, 0x9B, 0x6D, 0x7D, 0x23, 0x7E, 0x7D,\n    0x3F, 0x00, 0xC9, 0x46, 0x6A, 0xAE, 0x7F, 0xE0, 0xF1, 0x9A, 0x12, 0x94, 0x81, 0x11, 0xBF, 0x85,\n    0x3F, 0xBB, 0xE0, 0x22, 0x8A, 0x25, 0x18, 0x33, 0x3F, 0xCD, 0x18, 0x45, 0x32, 0x6E, 0xF7, 0xD4,\n    0xE2, 0x48, 0xA8, 0x03, 0x83, 0xB7, 0xFF, 0x7F, 0xFF, 0x51, 0x89, 0x8F, 0x10, 0x76, 0xF4, 0x61,\n    0xE1, 0x84, 0xFE, 0x48, 0x12, 0x64, 0x78, 0xFC, 0xE1, 0x44, 0xAD, 0xDA, 0x73, 0xC8, 0x1E, 0x87,\n    0xAC, 0x41, 0x52, 0xBA, 0xAB, 0x91, 0x4A, 0x9F, 0xF2, 0x81, 0xE1, 0x30, 0x13, 0xC4, 0xA1, 0x1C,\n    0x94, 0xCE, 0x00, 0xE2, 0xDE, 0xFE, 0xCC, 0x64, 0xEA, 0x4A, 0xBA, 0x08, 0x13, 0x3C, 0xDF, 0xF5,\n    0x2D, 0x99, 0xDB, 0xD4, 0xDE, 0xDF, 0xF0, 0x38, 0xB5, 0xA8, 0x42, 0x21, 0xD8, 0xD8, 0x60, 0xF0,\n    0x3B, 0x1F, 0x8F, 0x44, 0x11, 0x5F, 0x38, 0x68, 0x4C, 0x81, 0x58, 0x00, 0x7C, 0xAA, 0xA0, 0x11,\n    0x93, 0x49, 0xFD, 0xF9, 0x9B, 0xFD, 0x1C, 0xF8, 0xF4, 0xC6, 0x27, 0xE3, 0x96, 0x0C, 0x0B, 0x34,\n    0x8B, 0x7F, 0xBF, 0x57, 0xFF, 0x94, 0x42, 0xF9, 0xC1, 0xC7, 0xE9, 0xFC, 0xE6, 0xBC, 0x18, 0x8D,\n    0xAB, 0x8E, 0x0C, 0xA7, 0x9A, 0xD0, 0x3A, 0x63, 0x28, 0x04, 0x27, 0x79, 0x9F, 0xFB, 0x41, 0xAD,\n    0xF4, 0x0D, 0xF9, 0x6E, 0xE5, 0x09, 0xA8, 0x98, 0x67, 0x6E, 0xD7, 0x02, 0x12, 0x2D, 0x2D, 0xA6,\n    0x34, 0x6A, 0x1A, 0xC3, 0x97, 0x17, 0x5B, 0x75, 0x7D, 0x8A, 0xD5, 0xBB, 0x7F, 0xFA, 0xFD, 0xA5,\n    0xE6, 0xA1, 0x9C, 0x7D, 0xDB, 0xE0, 0x1F, 0xD6, 0xBB, 0xFF, 0x54, 0x02, 0x6F, 0x57, 0x0F, 0xCD,\n    0x71, 0x35, 0xFE, 0x48, 0x41, 0x6D, 0x92, 0x84, 0x16, 0xAD, 0x5F, 0xBF, 0x61, 0xE0, 0x76, 0xF3,\n    0x0A, 0x7B, 0xB1, 0x44, 0x9F, 0xFE, 0x01, 0x75, 0x90, 0x01, 0xEE, 0x65, 0xA3, 0x37, 0x08, 0x47,\n    0xFF, 0xFE, 0x2B, 0x06, 0x3D, 0xDD, 0x49, 0x82, 0x21, 0x89, 0x7B, 0xF9, 0x3B, 0x1D, 0x9A, 0x9F,\n    0x66, 0x9E, 0xF8, 0xF8, 0xFF, 0x6F, 0xEF, 0xFB, 0xFD, 0x6F, 0xFF, 0x6F, 0x42, 0x84, 0x30, 0x6B,\n    0x62, 0x99, 0xA6, 0x31, 0x3B, 0x28, 0x94, 0x33, 0x4C, 0x6E, 0x81, 0x55, 0xA3, 0xDF, 0x80, 0x08,\n    0xDB, 0xDD, 0x5B, 0x9F, 0xEB, 0x23, 0x2C, 0x6C, 0x75, 0xC7, 0x08, 0x43, 0xBE, 0xF4, 0xF0, 0xF8,\n    0x1E, 0xFE, 0xCD, 0xF1, 0xFD, 0x0B, 0xAE, 0xC2, 0x07, 0x47, 0xAC, 0x1F, 0x63, 0xE9, 0x9C, 0xA5,\n    0x0D, 0x6D, 0x9C, 0x11, 0x08, 0xD5, 0xF9, 0x87, 0xFF, 0x96, 0x7D, 0x4F, 0x18, 0xBF, 0xEB, 0x43,\n    0x5F, 0xFA, 0xF6, 0x24, 0x17, 0x87, 0x69, 0x85, 0xC4, 0x96, 0x99, 0x06, 0xBE, 0x9B, 0xCC, 0x80,\n    0x09, 0xD1, 0x46, 0xE0, 0x35, 0x06, 0x51, 0x2C, 0xFC, 0xA9, 0x00, 0x07, 0xE8, 0xD1, 0x0C, 0xCB,\n    0xDE, 0xCE, 0x5C, 0xC2, 0x7F, 0x04, 0x89, 0x98, 0x1F, 0x34, 0x41, 0xCA, 0x94, 0xA4, 0xBC, 0x3E,\n    0xDB, 0xC7, 0x1E, 0x89, 0xA0, 0xF2, 0x9E, 0xBC, 0xDC, 0x74, 0xC1, 0x04, 0x74, 0x9C, 0x1D, 0xF8,\n    0x13, 0x19, 0xB0, 0xC0, 0x89, 0x67, 0xC4, 0xE3, 0x8C, 0xDD, 0x02, 0x63, 0x36, 0x18, 0x0A, 0xAA,\n    0x36, 0x39, 0x33, 0x00, 0x10, 0xA2, 0x89, 0x0B, 0xB8, 0x09, 0x09, 0x01, 0xE9, 0x2E, 0x00, 0x75,\n    0x4B, 0xF9, 0x2F, 0xD9, 0x16, 0xBA, 0xF6, 0xF0, 0x19, 0x8F, 0x57, 0xB0, 0x3B, 0xE7, 0x0B, 0x62,\n    0x9F, 0xC3, 0x14, 0x88, 0x1F, 0xFB, 0xB8, 0xFF, 0x65, 0xEA, 0x21, 0x49, 0x1D, 0xC1, 0xDF, 0xAF,\n    0x48, 0x01, 0x9B, 0x00, 0x5B, 0x4E, 0xDC, 0x9D, 0x3C, 0x1E, 0x0B, 0x7D, 0xDC, 0x0F, 0x8D, 0x30,\n    0x2A, 0x6A, 0xBE, 0xCF, 0x19, 0x1F, 0xAC, 0x58, 0x20, 0x8A, 0xDC, 0x66, 0x42, 0x54, 0xE0, 0x43,\n    0xB7, 0x27, 0x5F, 0xFF, 0x48, 0xA6, 0x21, 0xEF, 0x03, 0x4B, 0x82, 0xD6, 0x7E, 0x2B, 0x6D, 0xE8,\n    0xAC, 0xB5, 0x03, 0x03, 0x86, 0x86, 0x02, 0x20, 0x8B, 0x00, 0x00, 0xD9, 0x17, 0x27, 0xA3, 0xC2,\n    0xAA, 0x69, 0x96, 0xC0, 0x69, 0x30, 0x1E, 0x39, 0x89, 0x8A, 0x81, 0x8C, 0x65, 0xAD, 0x7E, 0xCF,\n    0xBB, 0x31, 0x76, 0xFB, 0x78, 0x82, 0x8F, 0xF0, 0x0F, 0x64, 0x14, 0x8E, 0xA4, 0x3A, 0xAB, 0x11,\n    0x59, 0xA9, 0xD8, 0x9C, 0x44, 0xEC, 0x3D, 0xFF, 0xD2, 0x5A, 0x50, 0x04, 0xE0, 0xA8, 0x08, 0xB6,\n    0xED, 0xD3, 0x2B, 0x83, 0xA6, 0x54, 0x2D, 0x72, 0xB5, 0x30, 0x35, 0x18, 0xB5, 0x47, 0xE0, 0x03,\n    0x0E, 0xFD, 0x20, 0x01, 0x8C, 0x14, 0x14, 0xAE, 0xFB, 0x77, 0xDF, 0x04, 0x02, 0x54, 0x08, 0x10,\n    0x5B, 0x8E, 0x67, 0xE4, 0x81, 0xCF, 0x78, 0x30, 0xE8, 0x23, 0xE4, 0x8E, 0x7F, 0xF9, 0xB1, 0x10,\n    0x2B, 0xC5, 0xDE, 0x37, 0xF0, 0x3B, 0xE5, 0x10, 0x59, 0x5D, 0x0A, 0xFF, 0xF7, 0xBC, 0x36, 0x58,\n    0x08, 0xD7, 0xF6, 0x72, 0x83, 0x6A, 0x9B, 0x64, 0x40, 0x0B, 0xFA, 0x43, 0x28, 0x4C, 0x7D, 0xAB,\n    0x9E, 0xA6, 0x4C, 0xC0, 0x14, 0x1A, 0x7B, 0xD9, 0xFF, 0xFE, 0x5E, 0xA3, 0xE4, 0x63, 0x62, 0x6A,\n    0xC0, 0x40, 0x15, 0x46, 0x0D, 0x1C, 0x9D, 0xEA, 0x0F, 0x2F, 0x74, 0x97, 0x0D, 0x74, 0x7A, 0x48,\n    0x47, 0x3B, 0xF8, 0xDE, 0x12, 0x57, 0xF6, 0x02, 0xDC, 0x7B, 0x9A, 0x23, 0x22, 0x6A, 0xC6, 0x0E,\n    0x55, 0x60, 0xE3, 0xF2, 0x1C, 0xD4, 0x44, 0x83, 0xBC, 0x07, 0x00, 0x08, 0xA8, 0x03, 0x85, 0x69,\n    0xCA, 0xC1, 0xDF, 0x51, 0x0E, 0x1A, 0x06, 0x1A, 0x82, 0x83, 0x7C, 0x00, 0xE8, 0x2F, 0xB6, 0x12,\n    0x11, 0xB1, 0xB0, 0x62, 0x61, 0x6C, 0x0B, 0x10, 0x2D, 0x8A, 0xDF, 0xDC, 0x5F, 0x5A, 0xAC, 0xE3,\n    0xD7, 0x3C, 0xC1, 0xA0, 0x0D, 0x1A, 0xDE, 0xD5, 0x92, 0xD1, 0x65, 0xB1, 0x4A, 0xA5, 0x80, 0x63,\n    0x59, 0x19, 0x2D, 0xBF, 0xCC, 0x9B, 0xF7, 0x30, 0xEC, 0x56, 0x12, 0xA7, 0xD8, 0x29, 0xE8, 0x35,\n    0x71, 0x2A, 0x80, 0xEA, 0xB7, 0x18, 0x18, 0x6C, 0x79, 0xD9, 0x90, 0xFA, 0x04, 0x51, 0xC6, 0xE0,\n    0x3F, 0x70, 0x0C, 0x95, 0x77, 0xA3, 0xA4, 0x76, 0x98, 0xAF, 0xB1, 0x3B, 0x19, 0x10, 0x1E, 0xDC,\n    0x34, 0x8B, 0xB3, 0xFB, 0xEE, 0x1C, 0x4A, 0x81, 0x82, 0xEB, 0x19, 0x93, 0xF4, 0x83, 0x0F, 0x0D,\n    0x10, 0xEC, 0xB5, 0x48, 0xFD, 0x20, 0xD0, 0x32, 0x60, 0x09, 0xE2, 0x7F, 0x94, 0x50, 0x5D, 0x42,\n    0x02, 0x26, 0x7E, 0xBF, 0x31, 0x1E, 0xDA, 0xFF, 0xBC, 0x41, 0xEC, 0x86, 0xB3, 0xAD, 0x75, 0x21,\n    0x69, 0x62, 0xC0, 0xFD, 0xE6, 0x9C, 0x9C, 0xFF, 0xE9, 0xC7, 0x4A, 0xDD, 0x21, 0xBF, 0x65, 0xFE,\n    0x64, 0x1A, 0x00, 0x00, 0x03, 0x03, 0xE4, 0x13, 0xD6, 0xC5, 0x52, 0x7A, 0x8F, 0xBD, 0xFD, 0xCE,\n    0x20, 0x08, 0x88, 0x40, 0x13, 0x2D, 0x73, 0x63, 0x47, 0x00, 0xE9, 0xC0, 0x0E, 0xE1, 0xCB, 0x24,\n    0xA2, 0xE1, 0xE8, 0xF0, 0x7B, 0x04, 0xB9, 0x6F, 0x87, 0xFE, 0x36, 0x8D, 0x72, 0x96, 0x1D, 0xB1,\n    0x53, 0x38, 0x47, 0x79, 0x81, 0x0E, 0x96, 0x63, 0xC3, 0xD9, 0x4C, 0xEC, 0x7E, 0xDB, 0x7B, 0xE7,\n    0x63, 0x59, 0xFF, 0x3E, 0xFD, 0x06, 0xC4, 0x05, 0x07, 0xC3, 0x7F, 0xE6, 0x10, 0x7F, 0x6B, 0xFF,\n    0xE1, 0xEA, 0x78, 0x1B, 0x0E, 0xD2, 0x6C, 0xC9, 0x00, 0x17, 0x5F, 0x60, 0x66, 0x5A, 0x04, 0x50,\n    0x9E, 0xF2, 0x50, 0x42, 0xD9, 0x88, 0xAD, 0x15, 0x97, 0x5F, 0x53, 0x61, 0xF8, 0xA9, 0x56, 0x34,\n    0x69, 0x72, 0x3E, 0x12, 0xFE, 0x50, 0x06, 0xEF, 0x3D, 0x5C, 0xDD, 0xC3, 0xCC, 0xBB, 0xB8, 0xBE,\n    0x6F, 0xA6, 0x3B, 0xF6, 0x01, 0xE1, 0x1F, 0x0F, 0xF5, 0xCB, 0x20, 0x21, 0x7A, 0xB7, 0xFC, 0x7A,\n    0x07, 0x1C, 0x74, 0x48, 0x01, 0x20, 0x0E, 0xD3, 0x80, 0x05, 0x6A, 0xBC, 0x6A, 0x89, 0xDD, 0xE8,\n    0x2B, 0x40, 0x19, 0x54, 0x12, 0x2F, 0x3A, 0x9E, 0x76, 0x60, 0x4D, 0x4F, 0x57, 0xBE, 0x59, 0xD0,\n    0xFF, 0x00, 0xE5, 0x0C, 0x0E, 0x50, 0xF0, 0x18, 0xE9, 0x70, 0x48, 0x0C, 0xA0, 0xFB, 0x05, 0x1E,\n    0xBC, 0x22, 0x28, 0xBF, 0xB8, 0x15, 0x44, 0x9C, 0x8E, 0x3B, 0x49, 0xFC, 0x01, 0xBF, 0x16, 0x90,\n    0x06, 0x02, 0x25, 0x6E, 0xE3, 0x15, 0xDF, 0xDF, 0xFE, 0x9E, 0xD2, 0xCA, 0x8F, 0xFE, 0xED, 0x06,\n    0x79, 0x29, 0x9B, 0x24, 0x62, 0xF6, 0x39, 0x20, 0x93, 0xC1, 0x4F, 0x7D, 0x1C, 0x76, 0xB3, 0x32,\n    0x0B, 0xF5, 0xD4, 0xEA, 0x62, 0xA5, 0x29, 0xBF, 0xFE, 0x89, 0x06, 0xBF, 0xCA, 0x60, 0x99, 0x28,\n    0x94, 0x0B, 0xDC, 0xD6, 0xB6, 0x13, 0x9D, 0x3F, 0x29, 0x5B, 0x9E, 0x64, 0x6C, 0x1D, 0xEC, 0xCE,\n    0xB9, 0x5B, 0xD9, 0xE9, 0x6E, 0xCC, 0x06, 0xF0, 0x50, 0x2A, 0xA7, 0x4A, 0xBB, 0xD4, 0x66, 0x6E,\n    0x91, 0xE7, 0xD8, 0xF8, 0x18, 0xF5, 0xC3, 0x9E, 0x8C, 0x29, 0x19, 0x3E, 0xEB, 0x81, 0x7D, 0x51,\n    0x03, 0xD8, 0x6E, 0x0A, 0x25, 0x61, 0xA9, 0x2B, 0x8C, 0xBC, 0xFF, 0xAB, 0xE2, 0x69, 0x7F, 0x7C,\n    0x8C, 0x99, 0xBF, 0x7F, 0x0A, 0x11, 0x77, 0x77, 0x5C, 0x68, 0xE0, 0xB6, 0xEF, 0xF9, 0x53, 0xC5,\n    0x83, 0x29, 0x1C, 0xB9, 0x6D, 0xB1, 0x8A, 0x5A, 0xC4, 0x7C, 0x3D, 0x7E, 0x5F, 0xFD, 0x0D, 0x82,\n    0xF3, 0xCE, 0x98, 0x0A, 0x8C, 0x61, 0x12, 0x06, 0x70, 0xAE, 0xCD, 0xB1, 0xED, 0xB4, 0xA6, 0x1E,\n    0x9F, 0x62, 0x5E, 0x73, 0x0F, 0xB1, 0xF8, 0xFA, 0x65, 0xFD, 0xFF, 0xF9, 0x61, 0x2C, 0x3E, 0xDF,\n    0xBF, 0xE0, 0x1E, 0x43, 0xA0, 0xE7, 0x81, 0x23, 0xF1, 0x74, 0xD9, 0x0B, 0xF0, 0x37, 0x42, 0x8C,\n    0xA4, 0x38, 0x23, 0x5E, 0xA0, 0xBE, 0xFE, 0xC6, 0xD3, 0x20, 0x88, 0xED, 0x47, 0x08, 0xC9, 0xF2,\n    0x40, 0x65, 0xFE, 0x19, 0xDC, 0xA0, 0x08, 0x85, 0x6D, 0x76, 0x5E, 0x0E, 0xCF, 0xFF, 0x5F, 0x30,\n    0xD8, 0x43, 0x80, 0x12, 0xE4, 0xB3, 0x69, 0x6B, 0xD8, 0x33, 0x00, 0xCA, 0xCA, 0x9E, 0xB5, 0x70,\n    0xC1, 0x81, 0x8B, 0x1F, 0x77, 0xBE, 0x71, 0x90, 0x26, 0xE9, 0x46, 0x05, 0x41, 0xBB, 0xD5, 0xFB,\n    0xFF, 0xFD, 0x6E, 0xB0, 0x6E, 0x06, 0xA9, 0x8F, 0x43, 0x6F, 0x03, 0x13, 0xE5, 0xC1, 0x44, 0xB7,\n    0xFC, 0xAF, 0x7C, 0x62, 0xE7, 0xE7, 0xE4, 0x8C, 0xD3, 0xDF, 0x84, 0xB2, 0x0D, 0x28, 0x14, 0x54,\n    0x3E, 0xBE, 0x59, 0x4E, 0xFC, 0x00, 0xE8, 0x1D, 0x47, 0xF7, 0x21, 0x3B, 0x6A, 0x26, 0x5B, 0xE1,\n    0x50, 0x0B, 0x0B, 0x65, 0x7B, 0xFD, 0xAA, 0x6B, 0x84, 0xE1, 0xE6, 0x37, 0xE7, 0xF2, 0xC4, 0x12,\n    0xBA, 0x9D, 0x02, 0x65, 0xDF, 0xFF, 0x69, 0x6E, 0xFF, 0x44, 0x4F, 0xFF, 0xB3, 0x83, 0x05, 0x67,\n    0x41, 0x3D, 0xB2, 0x71, 0x71, 0x8F, 0x57, 0x26, 0x2E, 0xCB, 0xFC, 0x43, 0x48, 0x0C, 0xC2, 0x98,\n    0xFE, 0x10, 0x40, 0x06, 0x60, 0x8B, 0x95, 0xB2, 0x8F, 0xD6, 0xF0, 0x06, 0x1A, 0x2A, 0xA8, 0xD3,\n    0x75, 0x02, 0xA7, 0x58, 0xE1, 0xED, 0x89, 0xCA, 0x33, 0xBD, 0xE6, 0xA3, 0xCE, 0x39, 0x85, 0x7D,\n    0x02, 0xCC, 0x10, 0x97, 0x08, 0xB7, 0x67, 0x04, 0x92, 0x60, 0x1A, 0x84, 0x63, 0xDE, 0x96, 0x26,\n    0xCC, 0x26, 0x1C, 0xBD, 0xC6, 0x2B, 0xF2, 0x98, 0x69, 0xBF, 0xC4, 0x7B, 0xFF, 0xBF, 0x31, 0x88,\n    0x7D, 0xF2, 0xE8, 0xFF, 0xAF, 0xAE, 0x8B, 0xFF, 0xA4, 0xAD, 0x90, 0x03, 0x13, 0xC0, 0x03, 0xE8,\n    0x1A, 0xCB, 0x70, 0x7C, 0x11, 0xC4, 0xEC, 0x14, 0xFB, 0xAF, 0x4D, 0x9E, 0xC0, 0x22, 0x00, 0x3E,\n    0xDE, 0x72, 0x08, 0x22, 0x2E, 0x26, 0xB8, 0x31, 0xB6, 0x84, 0x07, 0x0E, 0x1B, 0x7C, 0xB9, 0x56,\n    0x1F, 0x48, 0x51, 0x59, 0xFE, 0x0B, 0x3A, 0xE0, 0xA9, 0xE3, 0x89, 0x54, 0x43, 0x0B, 0xDF, 0x63,\n    0x9E, 0x60, 0x00, 0x91, 0x45, 0x4F, 0xE5, 0xFB, 0x82, 0x2D, 0x2F, 0x01, 0xA6, 0x54, 0x9F, 0xBF,\n    0xCF, 0x54, 0x2E, 0xC9, 0x7F, 0xF5, 0x7A, 0x43, 0x52, 0x02, 0x79, 0x94, 0x00, 0x05, 0xD9, 0x07,\n    0xF3, 0xF3, 0x14, 0xC1, 0xB8, 0xF7, 0x81, 0x23, 0xD8, 0x5B, 0xBA, 0x5E, 0x30, 0xE5, 0x4F, 0x6D,\n    0x11, 0xB6, 0x0D, 0xB2, 0xB4, 0x01, 0xBC, 0xFD, 0xED, 0xC0, 0x00, 0xC9, 0x84, 0xB8, 0x96, 0xA0,\n    0x12, 0x94, 0xFF, 0x44, 0x90, 0x3E, 0xBE, 0x95, 0x06, 0xB6, 0x7B, 0xEB, 0x81, 0xFC, 0x81, 0x61,\n    0x52, 0xB5, 0x9F, 0xAF, 0x30, 0x5A, 0x00, 0x37, 0x09, 0x36, 0xC9, 0xA5, 0x4F, 0xDF, 0xD6, 0x88,\n    0xEF, 0x16, 0x65, 0x09, 0x5E, 0x7B, 0xEF, 0x7C, 0x03, 0x03, 0xAC, 0x6F, 0x97, 0x71, 0xCC, 0x18,\n    0x83, 0xC4, 0xCD, 0x55, 0x31, 0x0D, 0x1F, 0xAF, 0x80, 0x09, 0x6B, 0xB3, 0xD4, 0xEF, 0xF7, 0xC0,\n    0x1B, 0xDD, 0xD3, 0xF2, 0x69, 0x6A, 0xD3, 0x58, 0x1E, 0xC6, 0x39, 0x84, 0x88, 0xB3, 0xC9, 0x16,\n    0x98, 0xD3, 0xAB, 0x10, 0x6A, 0x1D, 0xCC, 0xF4, 0xFB, 0xFE, 0xFB, 0xB4, 0xCA, 0x3C, 0x9D, 0xBC,\n    0xAC, 0x88, 0x75, 0xD3, 0xF5, 0xCC, 0xFD, 0x54, 0x36, 0x46, 0x04, 0xE7, 0x94, 0x1A, 0x07, 0x24,\n    0x7C, 0x01, 0xB5, 0xAD, 0xFE, 0xBA, 0xD1, 0x9E, 0x8D, 0x1C, 0x0D, 0xF0, 0x9F, 0x62, 0xFF, 0xAD,\n    0x69, 0xEA, 0x68, 0xC0, 0x21, 0x91, 0xD3, 0x7B, 0xC8, 0x7C, 0xA0, 0xF3, 0x2B, 0xD7, 0x8E, 0x70,\n    0xD2, 0x4D, 0xC0, 0x19, 0xA0, 0xD0, 0x49, 0x8B, 0x5B, 0xD5, 0x94, 0xE5, 0xA3, 0x16, 0xC7, 0x46,\n    0xAF, 0xDB, 0x2B, 0x50, 0x6E, 0xEC, 0xC8, 0xDD, 0x77, 0xE5, 0x13, 0xFB, 0x0F, 0x29, 0x88, 0x47,\n    0x2C, 0x8D, 0xED, 0x69, 0xEC, 0xCD, 0x8F, 0x70, 0x1E, 0xEE, 0x5B, 0xBF, 0x51, 0x06, 0xFC, 0x58,\n    0xB6, 0x06, 0x96, 0x0D, 0x62, 0xAF, 0xF5, 0xE9, 0xEE, 0x56, 0x06, 0xB5, 0x3D, 0xE6, 0x3F, 0x12,\n    0x42, 0x3E, 0x25, 0xE2, 0x4B, 0x3D, 0xCC, 0xFF, 0xC3, 0xC1, 0x08, 0xC4, 0x5E, 0x65, 0xD1, 0xE9,\n    0x78, 0x8B, 0x9B, 0xB0, 0xA0, 0xEF, 0x56, 0x00, 0x46, 0xD8, 0xEA, 0x27, 0xF3, 0x48, 0xAC, 0x83,\n    0xA0, 0x14, 0xF5, 0x80, 0x13, 0x62, 0xA9, 0xCF, 0x43, 0x31, 0x95, 0x9F, 0xF6, 0xEE, 0x37, 0x02,\n    0x98, 0x83, 0x47, 0xA7, 0xD2, 0xD7, 0x33, 0x82, 0x2B, 0x2C, 0x0B, 0x33, 0x25, 0x86, 0x61, 0x74,\n    0x3F, 0xF4, 0xF7, 0x73, 0xC0, 0xC2, 0x90, 0x40, 0x11, 0x52, 0xEB, 0xC0, 0x6E, 0x67, 0xC0, 0x55,\n    0x8C, 0x48, 0x54, 0xDC, 0x47, 0x71, 0xB0, 0x2D, 0xB6, 0x1E, 0x34, 0xE3, 0x2F, 0xB5, 0x08, 0x88,\n    0x9C, 0xDE, 0xD9, 0xB8, 0xF8, 0x30, 0x34, 0xD1, 0xE8, 0x9A, 0xEB, 0x79, 0x80, 0xA5, 0x4E, 0xA5,\n    0x70, 0xD6, 0x91, 0xC4, 0x45, 0x7F, 0x49, 0x96, 0xEA, 0x37, 0xE0, 0x42, 0x20, 0x8A, 0xF4, 0x7A,\n    0xDE, 0xDD, 0x00, 0xDA, 0x89, 0xAD, 0xF4, 0x9B, 0xD3, 0x29, 0xCB, 0x94, 0xDF, 0xF8, 0xB3, 0x89,\n    0x03, 0x3F, 0xCE, 0x03, 0x3A, 0x4E, 0xDA, 0xB4, 0x7F, 0x9B, 0x8E, 0xD0, 0xCA, 0x14, 0xFE, 0xC4,\n    0xF7, 0xFF, 0x6F, 0x45, 0x14, 0xD4, 0x99, 0xBD, 0xE7, 0x44, 0x98, 0xEC, 0x25, 0xDB, 0x77, 0x72,\n    0xC7, 0x18, 0x81, 0x4C, 0x9E, 0xCD, 0x87, 0xD8, 0x1F, 0xBE, 0xC6, 0x8D, 0xDF, 0x06, 0xD1, 0xC0,\n    0x92, 0xDF, 0x04, 0x5D, 0xD7, 0x85, 0x7F, 0xCF, 0xC1, 0x01, 0x29, 0xF0, 0x40, 0x11, 0xC9, 0x0C,\n    0x02, 0x17, 0x24, 0x2E, 0x66, 0xE9, 0x21, 0xD7, 0xD0, 0x77, 0x65, 0x7B, 0x7C, 0x35, 0xA2, 0xA1,\n    0xC3, 0xA9, 0x0A, 0x01, 0x6A, 0x80, 0xD7, 0x42, 0xF4, 0xE7, 0x1D, 0x51, 0x66, 0x2A, 0xEC, 0xC2,\n    0x6C, 0x54, 0xFA, 0x87, 0xBD, 0x64, 0x3B, 0x8D, 0xB7, 0x04, 0x26, 0x65, 0x5F, 0xCF, 0xDF, 0xE1,\n    0x9E, 0xB2, 0xCC, 0x79, 0xD2, 0x7E, 0x63, 0xDF, 0x6D, 0xD6, 0x38, 0xDB, 0x46, 0xE0, 0x3F, 0x85,\n    0x76, 0x01, 0x0C, 0x02, 0xCD, 0x61, 0x05, 0xF8, 0x22, 0x06, 0x28, 0xEA, 0xF2, 0x15, 0xC7, 0x1D,\n    0x1D, 0xCA, 0xB0, 0x0F, 0xCD, 0x46, 0x12, 0x8F, 0xBD, 0x40, 0x7D, 0xF8, 0x02, 0xD7, 0x41, 0x7B,\n    0x37, 0x89, 0x48, 0x41, 0x6D, 0x13, 0x0A, 0xD0, 0xCB, 0x96, 0x66, 0x7C, 0xFE, 0x4E, 0x2F, 0xE9,\n    0x87, 0xB7, 0xD7, 0x88, 0x8D, 0x06, 0x00, 0xD1, 0xF9, 0xA5, 0xAD, 0x88, 0x7E, 0xE5, 0xBE, 0x8C,\n    0x5E, 0x30, 0xEB, 0x4F, 0xF0, 0x80, 0x81, 0xF9, 0x7D, 0x6E, 0xE3, 0x27, 0x78, 0xA2, 0xE1, 0xC0,\n    0x6E, 0x45, 0x18, 0x9B, 0xE4, 0xC7, 0x5C, 0xC1, 0xF6, 0xDB, 0x73, 0x1A, 0x1E, 0x9F, 0xCB, 0x74,\n    0x69, 0x13, 0x78, 0xE8, 0x51, 0x95, 0x77, 0xCD, 0x17, 0x21, 0xB3, 0x86, 0xCF, 0x93, 0x9F, 0xEE,\n    0x3F, 0x2E, 0xF6, 0x91, 0xF7, 0x8F, 0xCB, 0xD6, 0xE6, 0x01, 0x7B, 0xB2, 0x39, 0x97, 0x01, 0xCA,\n    0xE7, 0xDA, 0x9D, 0xB3, 0x20, 0xFF, 0x0D, 0x13, 0x17, 0xD8, 0xC7, 0x94, 0xDF, 0x8A, 0x1D, 0xB3,\n    0xF3, 0x08, 0x6D, 0xB8, 0xFE, 0x6A, 0x79, 0xC7, 0xFF, 0x2D, 0xFB, 0x6D, 0xB0, 0xE4, 0x2D, 0x59,\n    0x1C, 0xF2, 0x1D, 0xB7, 0x87, 0x80, 0x14, 0x5F, 0x25, 0x7D, 0xFF, 0xFD, 0x83, 0xF6, 0x3F, 0x11,\n    0x3D, 0x7F, 0xFF, 0xB0, 0x2D, 0x52, 0x4C, 0xD0, 0xCA, 0x69, 0xDD, 0x9A, 0x00, 0x06, 0xC4, 0x81,\n    0x2A, 0xE4, 0xD7, 0xEB, 0x5B, 0xDB, 0xE4, 0xD7, 0x07, 0xFD, 0xF0, 0x8E, 0x02, 0x0B, 0x00, 0xB0,\n    0x72, 0xCA, 0xFF, 0x06, 0x1B, 0x03, 0x43, 0x97, 0x0B, 0xF0, 0x4A, 0x8B, 0x05, 0xAE, 0xB3, 0x06,\n    0x76, 0x0B, 0x23, 0x2F, 0x08, 0x59, 0x20, 0x15, 0x9C, 0x22, 0xB2, 0xD9, 0xAF, 0x68, 0x80, 0x0A,\n    0xF1, 0x0B, 0x2B, 0xFD, 0xA8, 0xD3, 0x9C, 0x67, 0x02, 0x76, 0xB7, 0xA8, 0xF8, 0xCC, 0x81, 0xCF,\n    0xE0, 0xF9, 0xCC, 0x08, 0x28, 0x6C, 0x23, 0x04, 0x17, 0x47, 0xE0, 0x04, 0xA6, 0x06, 0x40, 0x87,\n    0x92, 0x73, 0xDE, 0xD5, 0x51, 0xDB, 0xC9, 0xAC, 0x5F, 0xFA, 0xCD, 0xCD, 0xDA, 0xFB, 0x3C, 0x07,\n    0xC6, 0x9F, 0x6C, 0x18, 0x01, 0x82, 0xC0, 0xE1, 0x85, 0xC1, 0xBE, 0xC2, 0x08, 0x0A, 0x8D, 0x53,\n    0x2C, 0x2F, 0xC2, 0xF8, 0x15, 0x19, 0x47, 0x7D, 0xC4, 0xE8, 0x91, 0x22, 0x34, 0x62, 0x26, 0x02,\n    0x46, 0xF9, 0xF5, 0x40, 0xDA, 0x03, 0x65, 0x56, 0xF7, 0xD9, 0x7D, 0xA1, 0x11, 0x21, 0xF0, 0xBF,\n    0xE3, 0x07, 0xCB, 0x9A, 0xD6, 0xA1, 0xB2, 0x3E, 0x6D, 0x3D, 0x81, 0x33, 0xAA, 0x1C, 0x8A, 0xDF,\n    0xD7, 0x97, 0xC3, 0xE3, 0xFC, 0x0B, 0x8F, 0x8F, 0x8A, 0xC7, 0x1E, 0xAD, 0x1A, 0xF3, 0x0E, 0xA3,\n    0x00, 0xE9, 0x03, 0x45, 0xDE, 0x3B, 0x6D, 0x91, 0xA5, 0x5F, 0x3A, 0x5B, 0x6F, 0xEC, 0x45, 0x26,\n    0xD6, 0xF9, 0x20, 0x0B, 0xEE, 0xD4, 0x99, 0xFD, 0x43, 0x95, 0x26, 0xFA, 0x53, 0x3A, 0xF4, 0xFF,\n    0xAF, 0x62, 0xCC, 0x1D, 0x85, 0xA2, 0x6B, 0xB0, 0x21, 0xB7, 0x3C, 0x89, 0x9A, 0xB5, 0xE7, 0xBC,\n    0x0C, 0x00, 0x04, 0x50, 0x70, 0x88, 0x06, 0x83, 0x85, 0xF0, 0xBE, 0x86, 0x56, 0xE7, 0x3B, 0x9F,\n    0x9B, 0xB4, 0x0D, 0xDD, 0xB3, 0x71, 0x66, 0x82, 0x02, 0x67, 0x84, 0x1E, 0x31, 0xF9, 0xCE, 0x9F,\n    0x9B, 0x99, 0x03, 0x77, 0x3C, 0xBD, 0x11, 0xA7, 0x2D, 0x32, 0x04, 0xE0, 0x29, 0x5B, 0x78, 0xC8,\n    0x83, 0xA8, 0x8E, 0x8D, 0xFE, 0x3E, 0xC6, 0xE6, 0x76, 0xE6, 0x71, 0x65, 0x3A, 0x06, 0xB7, 0x75,\n    0xB7, 0x4F, 0x1E, 0xF9, 0x2B, 0x5E, 0x14, 0x66, 0x41, 0x98, 0x72, 0xE1, 0x84, 0xC5, 0xEF, 0x04,\n    0x59, 0xA7, 0x46, 0x8F, 0xCF, 0xCD, 0xA0, 0x16, 0xB0, 0x7B, 0xF1, 0x81, 0x50, 0xAD, 0xBA, 0xC1,\n    0x38, 0xCF, 0xD3, 0xF2, 0xD0, 0x7E, 0x24, 0x81, 0xB0, 0xF2, 0xF8, 0x7A, 0x52, 0x3A, 0x5D, 0xD6,\n    0x61, 0x1A, 0xD2, 0x8A, 0x0A, 0xEB, 0xF8, 0x13, 0x13, 0x71, 0xE6, 0x70, 0x32, 0xEE, 0xF6, 0xCA,\n    0xA3, 0xB7, 0x0A, 0xFD, 0x7F, 0x81, 0x34, 0x24, 0x5E, 0xA0, 0x42, 0x67, 0x84, 0x23, 0xF5, 0xB8,\n    0x54, 0x99, 0xE5, 0x47, 0x1A, 0x44, 0xBE, 0x41, 0x28, 0x03, 0x63, 0x35, 0x2A, 0x45, 0x2D, 0x45,\n    0x06, 0xD4, 0x36, 0x66, 0xA2, 0x50, 0x00, 0x7E, 0x5C, 0xF5, 0x19, 0x27, 0x47, 0x66, 0x25, 0x64,\n    0x5B, 0xDC, 0xE5, 0xF5, 0x2D, 0x74, 0x1C, 0x79, 0x4B, 0xD2, 0xB6, 0x9D, 0xB8, 0x1E, 0xC8, 0x32,\n    0xFA, 0xFD, 0xE7, 0xB1, 0x69, 0x2F, 0x7D, 0xBE, 0x3E, 0xDD, 0x9E, 0xBD, 0x1F, 0x40, 0x22, 0x8A,\n    0xF7, 0x2F, 0x4F, 0x12, 0x21, 0x4A, 0xFF, 0xDF, 0x59, 0x33, 0x93, 0xFF, 0xD8, 0xE9, 0x7B, 0xF8,\n    0x0B, 0xB7, 0x4B, 0xD5, 0x6F, 0xEF, 0x7D, 0xB8, 0x9A, 0x51, 0x63, 0xB7, 0xD5, 0x66, 0xC7, 0x44,\n    0x64, 0xE3, 0x34, 0xF7, 0x3B, 0xF5, 0x61, 0xCC, 0x80, 0x67, 0x11, 0x9F, 0x9E, 0x2A, 0x4F, 0xA6,\n    0x42, 0xA9, 0x08, 0xA2, 0x31, 0xF5, 0x60, 0xEF, 0x56, 0x59, 0x3F, 0xBA, 0x02, 0xC0, 0x83, 0x87,\n    0x55, 0xCD, 0xF0, 0x47, 0xB0, 0xA5, 0x76, 0x93, 0x4D, 0x72, 0x87, 0x44, 0x77, 0x02, 0x68, 0xF6,\n    0x1A, 0xC8, 0x90, 0x51, 0x1C, 0xC9, 0x9E, 0x94, 0xDB, 0xE8, 0x81, 0xEC, 0x6E, 0xC6, 0xC5, 0x3E,\n    0x28, 0x48, 0x69, 0x18, 0xF2, 0xDC, 0xCB, 0xBD, 0x23, 0x0F, 0xFF, 0x3A, 0x93, 0x23, 0xD3, 0xA3,\n    0x3E, 0x2F, 0x36, 0x80, 0x00, 0x40, 0x03, 0x7C, 0x06, 0x83, 0x7B, 0x60, 0x4C, 0xE1, 0xED, 0xC3,\n    0xC4, 0xC2, 0x32, 0x3C, 0xA0, 0x61, 0x97, 0xFB, 0xAB, 0xC3, 0xFA, 0xCD, 0x08, 0x02, 0xA2, 0xEF,\n    0xC0, 0xAA, 0x83, 0x25, 0x32, 0xB7, 0x7C, 0x1B, 0xCD, 0xDE, 0x1C, 0x4D, 0x8F, 0x9A, 0xD2, 0xF3,\n    0x67, 0x83, 0x87, 0x63, 0xB7, 0xFF, 0x5A, 0xFD, 0x2F, 0xF8, 0x0F, 0x86, 0xA8, 0x75, 0x8F, 0x80,\n    0x3E, 0x76, 0x34, 0xE4, 0x67, 0xB9, 0xBA, 0x9D, 0x36, 0xC8, 0xB1, 0xC5, 0xEF, 0xA7, 0x7B, 0x05,\n    0xF8, 0xCF, 0x01, 0x03, 0xF4, 0xF9, 0x87, 0x22, 0xAE, 0xB3, 0x4F, 0x9E, 0xED, 0xBE, 0x3C, 0x34,\n    0x7F, 0x7A, 0x20, 0x88, 0x4F, 0xF1, 0x50, 0x73, 0x22, 0x1E, 0x8F, 0xBD, 0x5E, 0xFE, 0xFF, 0x86,\n    0xBB, 0xC0, 0x21, 0x85, 0x66, 0xA1, 0x22, 0x96, 0x7E, 0x37, 0xD3, 0xFC, 0x00, 0x55, 0x50, 0x6B,\n    0x08, 0x73, 0x2A, 0xDF, 0x4D, 0xEF, 0x48, 0x6A, 0x7F, 0x5C, 0x4B, 0x15, 0xBA, 0xD0, 0x41, 0xB5,\n    0x32, 0x69, 0x8C, 0x37, 0xA6, 0x0D, 0x15, 0x6F, 0x60, 0x6B, 0xFE, 0xA8, 0x4F, 0xFC, 0x0D, 0xB2,\n    0x92, 0x1E, 0x38, 0x28, 0xAC, 0x7C, 0xFE, 0x0E, 0x2D, 0x7C, 0xEB, 0x7F, 0xFC, 0x00, 0x35, 0xEE,\n    0x04, 0x9C, 0x75, 0xB1, 0x1F, 0xEF, 0x3E, 0xA7, 0xE3, 0xD7, 0xAD, 0x3E, 0xB8, 0x3D, 0x10, 0x1E,\n    0x1E, 0x9B, 0xF6, 0xCA, 0xBE, 0x82, 0x42, 0x87, 0xA1, 0xEC, 0x7F, 0xFF, 0xFB, 0xFF, 0x65, 0x70,\n    0x70, 0x1F, 0x22, 0x8C, 0x15, 0x0B, 0xDC, 0x74, 0x4A, 0x6E, 0x5B, 0xE0, 0x2F, 0xB0, 0x24, 0xA2,\n    0xB7, 0x92, 0x23, 0x48, 0xFF, 0xDB, 0x05, 0x51, 0x94, 0x1C, 0xA4, 0xEB, 0x3F, 0xF3, 0xB5, 0x62,\n    0x82, 0x18, 0x43, 0xBE, 0xE8, 0x94, 0x09, 0x7F, 0x6F, 0x74, 0xB7, 0x7F, 0xFD, 0x79, 0xEF, 0xE6,\n    0xF6, 0x1C, 0x57, 0x4F, 0xEF, 0xF9, 0xFB, 0xFF, 0x80, 0x07, 0xB3, 0xE1, 0x13, 0x29, 0x55, 0xB7,\n    0x00, 0x4D, 0x03, 0xE5, 0x0C, 0x8B, 0x9B, 0xE8, 0x25, 0xCB, 0x04, 0x20, 0x68, 0xF5, 0x38, 0x1E,\n    0x3F, 0x03, 0x2F, 0xC2, 0xF3, 0xF2, 0x7E, 0x2B, 0x9D, 0x5D, 0xDF, 0xCD, 0x41, 0x5D, 0x3C, 0xD9,\n    0xDE, 0xF9, 0xF7, 0xE2, 0xB0, 0x2F, 0x4D, 0x6A, 0x57, 0xF9, 0xFE, 0xFF, 0x9A, 0xFF, 0x7F, 0xF3,\n    0x1C, 0x7A, 0x40, 0x02, 0x32, 0xF9, 0x80, 0x60, 0xEC, 0xC4, 0x15, 0xC7, 0xFF, 0xD0, 0x4C, 0xDB,\n    0x15, 0x73, 0x60, 0x00, 0x45, 0xAA, 0x13, 0xE3, 0x2A, 0xBF, 0xFC, 0xEA, 0x1E, 0x68, 0x00, 0x08,\n    0xFC, 0x37, 0xB7, 0x2B, 0xBE, 0x1D, 0x41, 0x0F, 0x75, 0x8C, 0xFE, 0x99, 0xE7, 0x64, 0x28, 0x59,\n    0x37, 0xEA, 0x6C, 0xF1, 0xC7, 0xAC, 0x7F, 0xBD, 0x00, 0x67, 0xF2, 0x3D, 0x17, 0x45, 0xDC, 0x6B,\n    0x9B, 0xD3, 0x1D, 0xEA, 0x94, 0x25, 0x40, 0xC4, 0x33, 0xB2, 0x79, 0xC0, 0x00, 0x25, 0x42, 0xD9,\n    0x24, 0x47, 0x73, 0x5B, 0xB5, 0xC7, 0x86, 0x11, 0xE6, 0xE4, 0x17, 0x18, 0x38, 0x9F, 0x8A, 0x36,\n    0x8E, 0xC4, 0xC4, 0xD9, 0x94, 0x02, 0xAB, 0xF1, 0xAB, 0xF4, 0xDF, 0x0F, 0xEB, 0x5C, 0x25, 0x68,\n    0x13, 0x16, 0xAB, 0xC9, 0xFE, 0x03, 0xF9, 0x50, 0x89, 0xB9, 0x10, 0x77, 0xA7, 0xEC, 0x3F, 0xCC,\n    0x67, 0xA1, 0x96, 0x35, 0xFC, 0xB0, 0x64, 0x66, 0x3B, 0x2B, 0xDE, 0xF0, 0x3E, 0x42, 0xB9, 0x01,\n    0xDB, 0x6F, 0xD7, 0xBB, 0x19, 0x86, 0xE7, 0xFD, 0x0A, 0xBD, 0x50, 0x09, 0x4E, 0x43, 0xBA, 0x4C,\n    0x82, 0x63, 0x87, 0x9C, 0xC0, 0x09, 0xCA, 0x08, 0x7B, 0x7A, 0xC8, 0x54, 0x06, 0x6F, 0xE3, 0xB5,\n    0x76, 0xB2, 0x02, 0xD8, 0xAF, 0x73, 0xFE, 0xD0, 0x47, 0x4A, 0x2F, 0x34, 0x0A, 0xF2, 0x48, 0x16,\n    0x2C, 0x15, 0xFF, 0xFB, 0xA0, 0x95, 0x18, 0x24, 0xA9, 0xC2, 0x69, 0x50, 0xD0, 0x6B, 0x32, 0xDF,\n    0xB9, 0x6B, 0x3A, 0xA8, 0x01, 0x8A, 0xD5, 0x15, 0x57, 0xEF, 0x03, 0xD0, 0x7F, 0xB4, 0xEF, 0xD4,\n    0xE4, 0x1A, 0x72, 0xC3, 0xA4, 0x37, 0xF3, 0xFB, 0xFC, 0x6F, 0x75, 0x7E, 0x0F, 0x1B, 0x3F, 0xDD,\n    0xFD, 0x4C, 0xC1, 0xD9, 0xA7, 0xC3, 0xD2, 0x15, 0x38, 0x45, 0xBE, 0xFF, 0xBE, 0x60, 0x0D, 0xDD,\n    0x49, 0x7D, 0xCA, 0xB0, 0x00, 0x79, 0x48, 0xAB, 0xA9, 0xF6, 0x3F, 0x2A, 0xDC, 0xED, 0xC2, 0xE6,\n    0x8E, 0x80, 0xF7, 0xDD, 0xBF, 0x0B, 0xE0, 0xD0, 0x6A, 0x35, 0xD4, 0xAE, 0x85, 0x74, 0x06, 0x7E,\n    0xFE, 0x3F, 0xFF, 0x84, 0x10, 0x2E, 0x20, 0x18, 0x00, 0x08, 0x02, 0x83, 0xD8, 0x0D, 0xB6, 0x1B,\n    0xA3, 0xBD, 0xAD, 0x30, 0x6A, 0x8D, 0x80, 0xFF, 0xF1, 0x9A, 0xB1, 0xB4, 0x7A, 0x46, 0x13, 0x00,\n    0x23, 0x7A, 0x0F, 0x86, 0xE4, 0xFC, 0x00, 0x53, 0x70, 0x91, 0x45, 0xD4, 0x23, 0x6F, 0xA7, 0x42,\n    0xA8, 0x3E, 0x6F, 0x80, 0x05, 0xEE, 0x66, 0x34, 0x21, 0x4C, 0x00, 0xC8, 0x05, 0x80, 0x78, 0x33,\n    0x1A, 0x55, 0xEE, 0x87, 0xC9, 0xD0, 0xA9, 0xB6, 0x02, 0x7F, 0xFC, 0xA3, 0xBE, 0xBD, 0xC7, 0x62,\n    0xA3, 0x90, 0x6E, 0x34, 0xD2, 0xD7, 0xF7, 0x4E, 0xDB, 0x8D, 0x48, 0x3E, 0xF9, 0x39, 0xC4, 0x63,\n    0xE6, 0xB9, 0x3E, 0xF1, 0xF3, 0xB0, 0xD6, 0x5C, 0x38, 0x56, 0xF2, 0xE8, 0xE1, 0x74, 0x88, 0x18,\n    0x01, 0x7E, 0x5C, 0x3C, 0x61, 0x24, 0x93, 0x69, 0xF8, 0x0C, 0x05, 0x83, 0x86, 0x00, 0x58, 0x17,\n    0x08, 0x8C, 0xA0, 0xCA, 0xEC, 0x24, 0x58, 0x17, 0x89, 0x3F, 0x00, 0x9E, 0x42, 0x8E, 0x58, 0x8A,\n    0x39, 0x9C, 0x4E, 0x67, 0x3A, 0xAD, 0x50, 0x98, 0x7B, 0x0D, 0x3B, 0x7A, 0x7B, 0xED, 0x4B, 0x9C,\n    0x0A, 0xCB, 0x86, 0x69, 0x67, 0xCA, 0xE6, 0xBA, 0x91, 0x00, 0x06, 0xAE, 0x29, 0xE3, 0xB8, 0x6F,\n    0xAD, 0xC1, 0x76, 0x73, 0xA6, 0x28, 0xAE, 0x5A, 0x3F, 0xA7, 0xC1, 0x46, 0x9D, 0xAC, 0xB7, 0x19,\n    0x56, 0xC7, 0x6F, 0xA2, 0x5B, 0xBA, 0x80, 0x16, 0x0A, 0x5F, 0xEB, 0xD0, 0x13, 0xCC, 0xB2, 0xAE,\n    0x34, 0x51, 0xB2, 0xE7, 0xC8, 0xF5, 0xFF, 0x2A, 0x9C, 0x28, 0xF2, 0x9B, 0x2B, 0xBD, 0xFA, 0xD9,\n    0xDC, 0x3F, 0xCB, 0x60, 0x1E, 0x97, 0x65, 0x5F, 0xF8, 0x0C, 0xB8, 0x1F, 0xBB, 0x48, 0xEB, 0xBC,\n    0x35, 0x34, 0xA2, 0x6A, 0x38, 0x7B, 0x35, 0x27, 0xA9, 0x9B, 0x2E, 0x2C, 0x80, 0x81, 0x84, 0x18,\n    0x89, 0xB5, 0x74, 0x26, 0xF9, 0x7B, 0x1F, 0x4C, 0x80, 0x54, 0xB7, 0xB0, 0xE3, 0x84, 0x61, 0x72,\n    0xF9, 0x40, 0x07, 0x20, 0x4B, 0x70, 0x76, 0x88, 0xE2, 0x26, 0x1B, 0x92, 0x83, 0x7C, 0xCF, 0x8D,\n    0x38, 0x02, 0x76, 0xE1, 0x39, 0x54, 0x48, 0xE3, 0xCD, 0x66, 0xE3, 0xF9, 0xEE, 0x8D, 0xC6, 0xB0,\n    0x3F, 0xA9, 0xBC, 0x8A, 0xE5, 0xFD, 0xEE, 0xFE, 0x09, 0x5B, 0x3F, 0xCD, 0x63, 0x38, 0x69, 0x20,\n    0x75, 0x76, 0xFE, 0xAE, 0xBC, 0x05, 0x83, 0xF7, 0x4B, 0x44, 0x0F, 0xCC, 0xF4, 0x83, 0xFF, 0x6D,\n    0x7B, 0xC0, 0x74, 0x57, 0x3A, 0x11, 0x7F, 0x06, 0x19, 0x61, 0x86, 0x4D, 0x67, 0x1A, 0x54, 0xB5,\n    0xB1, 0xCA, 0x6C, 0x86, 0xD0, 0x46, 0xD2, 0x7C, 0x91, 0xFB, 0x84, 0x41, 0x84, 0x58, 0x0D, 0x90,\n    0xCD, 0x6E, 0xC1, 0xCC, 0x22, 0xA3, 0x62, 0xBD, 0x29, 0xD2, 0x64, 0x01, 0xC7, 0xB9, 0x7D, 0xBC,\n    0xA9, 0xBF, 0x2F, 0x5B, 0x22, 0xE8, 0x3A, 0xFF, 0x32, 0x69, 0x6F, 0xD8, 0x2F, 0x84, 0x51, 0x2C,\n    0x84, 0xA9, 0x0F, 0x7F, 0xA1, 0x73, 0xE8, 0xD2, 0x66, 0xBF, 0xD9, 0x7B, 0x16, 0x91, 0x3D, 0x46,\n    0x8D, 0xAD, 0xC7, 0xF4, 0xDD, 0xD6, 0x15, 0x14, 0x45, 0xB5, 0xBA, 0x3F, 0x54, 0x5B, 0x5E, 0xF8,\n    0x72, 0x9C, 0x54, 0x7B, 0x5A, 0x0B, 0x00, 0x40, 0x3C, 0xC0, 0xCB, 0x0B, 0x48, 0xAE, 0xF1, 0x96,\n    0x05, 0xE1, 0xD5, 0x32, 0x75, 0xBA, 0x7D, 0x29, 0x23, 0xA3, 0xA0, 0x4C, 0xD1, 0x60, 0x9E, 0xB4,\n    0x0F, 0x19, 0x85, 0x2C, 0xEF, 0x7E, 0x6D, 0x32, 0x87, 0xFB, 0xB2, 0x45, 0x9A, 0x20, 0x15, 0x80,\n    0x88, 0xA7, 0xB1, 0x4E, 0x18, 0x24, 0x37, 0x37, 0x71, 0xCD, 0x10, 0x9E, 0xBC, 0x70, 0x75, 0xA8,\n    0x5A, 0xB9, 0x8E, 0x8C, 0x07, 0xEB, 0xB6, 0xCC, 0xD9, 0x51, 0x9A, 0x3D, 0x90, 0x80, 0x62, 0x30,\n    0x78, 0xA9, 0x46, 0xB2, 0xDA, 0x07, 0xA5, 0xF4, 0x8F, 0xC0, 0x03, 0xEB, 0x01, 0x9D, 0x15, 0xA3,\n    0x01, 0x0B, 0x77, 0xDA, 0xFF, 0xF9, 0xD2, 0x42, 0xB7, 0xD1, 0xF2, 0xB5, 0x5E, 0x3A, 0xBC, 0x52,\n    0xD8, 0x51, 0x31, 0x49, 0xD8, 0xFF, 0x76, 0xCE, 0x17, 0x8F, 0x9B, 0x41, 0x81, 0x66, 0x06, 0x04,\n    0x89, 0x51, 0x0B, 0xEB, 0xB2, 0x6E, 0x1F, 0x19, 0xE7, 0x26, 0xDB, 0x6A, 0x92, 0xBC, 0xAC, 0x6D,\n    0x08, 0xB2, 0x86, 0xCC, 0x40, 0xA6, 0x4A, 0x6D, 0xF1, 0xA9, 0x32, 0x52, 0x00, 0x18, 0x10, 0x9E,\n    0x79, 0xFD, 0x48, 0x56, 0xBA, 0xC9, 0xE5, 0xD1, 0x2E, 0x0C, 0xAC, 0xDE, 0xFC, 0xC2, 0xD9, 0xFB,\n    0x65, 0x0C, 0x64, 0xC5, 0xBF, 0xFD, 0xC7, 0xFD, 0x89, 0x17, 0x8F, 0x10, 0xAA, 0x63, 0x5A, 0x81,\n    0xBD, 0x55, 0x7D, 0xD0, 0xBB, 0x5A, 0x29, 0x7E, 0x43, 0x69, 0x63, 0xB0, 0xFE, 0xF0, 0x63, 0x39,\n    0xAF, 0xDF, 0xFB, 0x3D, 0xA4, 0xE0, 0xA7, 0x4D, 0x35, 0xF5, 0xF0, 0xCC, 0xC9, 0x6F, 0xB5, 0x9D,\n    0x31, 0x10, 0xF9, 0x09, 0xA9, 0x13, 0x15, 0x54, 0xF5, 0xFC, 0xFE, 0x05, 0x3A, 0x43, 0x14, 0xF7,\n    0x04, 0x56, 0xAA, 0xA7, 0xF7, 0x7D, 0xB3, 0x8C, 0x76, 0x6E, 0x49, 0x0E, 0xE0, 0xC8, 0x04, 0x74,\n    0x85, 0x83, 0x64, 0x8B, 0x29, 0xF5, 0x8D, 0x73, 0x03, 0x42, 0x75, 0xB3, 0x21, 0x58, 0x3C, 0x6B,\n    0xEA, 0x0C, 0x4D, 0x86, 0xDC, 0x34, 0x63, 0x76, 0x85, 0x4B, 0x59, 0x73, 0x1A, 0x2B, 0x19, 0x30,\n    0xFA, 0x5C, 0xC7, 0x08, 0xC2, 0x93, 0x08, 0xA1, 0x47, 0xAC, 0x45, 0x88, 0xAB, 0xDF, 0x43, 0x21,\n    0x68, 0xC3, 0x77, 0x7D, 0x7E, 0x93, 0xB3, 0x80, 0x5F, 0xBA, 0x3E, 0x5A, 0x3C, 0xD3, 0x64, 0x6E,\n    0x93, 0x03, 0x2C, 0xA3, 0x0B, 0xDF, 0xC2, 0x92, 0xBD, 0x43, 0xCD, 0x0B, 0x30, 0x69, 0x71, 0x10,\n    0x9D, 0xA7, 0xF7, 0xA7, 0xDE, 0xD5, 0x58, 0x56, 0xEA, 0x92, 0x3F, 0x95, 0x07, 0x9F, 0x85, 0x61,\n    0xED, 0x27, 0xE8, 0xB6, 0x9E, 0x08, 0xB7, 0x8D, 0x1F, 0x90, 0x1B, 0x2C, 0x6E, 0x1F, 0x87, 0x1D,\n    0x51, 0x2B, 0x55, 0x30, 0xDD, 0x94, 0xE5, 0xC3, 0x58, 0xC8, 0x8F, 0xFD, 0xFD, 0x42, 0x22, 0x4C,\n    0x11, 0x04, 0x92, 0x38, 0x1F, 0x20, 0x64, 0x8F, 0xC3, 0xDD, 0xA4, 0xFD, 0x74, 0x3C, 0xB8, 0x4B,\n    0x93, 0x58, 0x47, 0x07, 0x7D, 0xED, 0x49, 0xE6, 0x52, 0x87, 0x97, 0x49, 0x8C, 0xC4, 0xC5, 0xDD,\n    0x85, 0xD8, 0xAD, 0xEE, 0xA4, 0x53, 0x66, 0x01, 0xC0, 0xD7, 0xD4, 0x3F, 0x13, 0x67, 0x71, 0x99,\n    0x3D, 0x76, 0x7B, 0x20, 0x86, 0x25, 0x2B, 0x6C, 0x1F, 0xFA, 0xDA, 0x14, 0x62, 0x5A, 0xEE, 0x54,\n    0xDB, 0xE8, 0xA0, 0x19, 0x78, 0x6C, 0xD2, 0xBB, 0x76, 0x44, 0x45, 0x83, 0x55, 0x2B, 0xA1, 0x69,\n    0xFF, 0xCE, 0xA4, 0x7F, 0xAD, 0x94, 0xED, 0xA5, 0x1A, 0x07, 0x57, 0xFF, 0x5E, 0xB9, 0xA3, 0x21,\n    0xBA, 0xFA, 0xB5, 0x71, 0x2B, 0x97, 0xAF, 0xE9, 0x3A, 0x12, 0xF9, 0x57, 0xBD, 0x3F, 0x5E, 0x70,\n    0x17, 0x2E, 0x0D, 0x06, 0x02, 0x9F, 0x5F, 0xF4, 0xE8, 0xD1, 0xE9, 0xF8, 0xA6, 0xD3, 0x41, 0x44,\n    0x98, 0x28, 0x8D, 0x13, 0x8F, 0x77, 0xAB, 0x88, 0xEA, 0x74, 0xAE, 0x4A, 0x9B, 0xB6, 0x97, 0x02,\n    0x75, 0x3A, 0x25, 0xEB, 0x4F, 0x9C, 0x3E, 0xC6, 0xEA, 0x72, 0xF5, 0x89, 0x85, 0x77, 0xFE, 0x8E,\n    0xA3, 0x79, 0x2D, 0x8F, 0x40, 0x29, 0xA0, 0xD3, 0x05, 0x11, 0x5F, 0x97, 0xE1, 0x19, 0x01, 0x3E,\n    0x6C, 0x8E, 0x26, 0xFE, 0x8C, 0xC5, 0x02, 0xAA, 0x55, 0xB5, 0x38, 0xB0, 0x0E, 0xD7, 0x57, 0xF3,\n    0xA9, 0x67, 0x2D, 0x89, 0x7B, 0x51, 0x8B, 0xE0, 0xAA, 0x82, 0xA5, 0x57, 0x4B, 0xCB, 0x49, 0x53,\n    0x8A, 0xF9, 0x07, 0xBE, 0xE1, 0x53, 0x36, 0xF6, 0x4B, 0xF1, 0x88, 0x30, 0x40, 0x03, 0x45, 0x52,\n    0x71, 0xB1, 0x31, 0xA3, 0x03, 0xE3, 0x42, 0xAF, 0x40, 0x33, 0xD2, 0xF1, 0x77, 0xFD, 0xCD, 0xEB,\n    0x40, 0x2C, 0x36, 0x76, 0xAD, 0xE2, 0x79, 0xA8, 0x17, 0x8A, 0xAD, 0x73, 0x68, 0xFC, 0xC0, 0x97,\n    0xC3, 0xA2, 0x8F, 0x32, 0x73, 0x70, 0x39, 0x61, 0xDA, 0x45, 0x78, 0x8B, 0x3D, 0xFE, 0xC6, 0xC6,\n    0x45, 0x2D, 0x27, 0x14, 0xA9, 0x4E, 0xFF, 0xCB, 0xFD, 0x37, 0x34, 0xF9, 0xF4, 0x5A, 0x9E, 0x03,\n    0x58, 0x12, 0x86, 0xD4, 0x0E, 0xDC, 0x35, 0x14, 0xDC, 0xBB, 0xE7, 0x14, 0xDA, 0xFA, 0x09, 0xBF,\n    0x94, 0xC6, 0xFA, 0x7E, 0x6E, 0x6E, 0x07, 0x4F, 0xFF, 0x86, 0xD8, 0xB3, 0x87, 0x10, 0x07, 0xAA,\n    0x4C, 0x0B, 0x93, 0xDF, 0x7C, 0x18, 0x87, 0x36, 0xC0, 0x02, 0x5E, 0xF1, 0xE7, 0xE3, 0x32, 0x84,\n    0x77, 0x4F, 0xC5, 0xBF, 0x40, 0x84, 0x84, 0x4F, 0x7C, 0x1F, 0x9F, 0xFE, 0x78, 0xD4, 0xF8, 0x04,\n    0x46, 0x78, 0x85, 0x32, 0x2B, 0x65, 0x7B, 0xFD, 0x7D, 0x14, 0x7C, 0xEC, 0x1D, 0x47, 0x73, 0x43,\n    0x0A, 0x62, 0xCA, 0xF1, 0x83, 0xF9, 0x28, 0x84, 0xAF, 0xD9, 0xD0, 0xE6, 0x38, 0x46, 0x9F, 0x99,\n    0x41, 0xF3, 0x26, 0x72, 0xFE, 0xFF, 0xBC, 0xF4, 0x22, 0xD6, 0x0F, 0x3C, 0xCA, 0x43, 0x6D, 0x7A,\n    0x8A, 0xE8, 0xBC, 0xEA, 0x75, 0x16, 0xB9, 0xF6, 0xEC, 0x59, 0x98, 0x7A, 0xA0, 0xC9, 0x19, 0x79,\n    0xDF, 0x7F, 0x01, 0x88, 0x05, 0xB6, 0xF8, 0x81, 0x65, 0x16, 0x51, 0x9B, 0xF7, 0xF8, 0x00, 0x3E,\n    0xA0, 0x77, 0x73, 0x93, 0x86, 0xE1, 0x36, 0xA9, 0x12, 0x07, 0x02, 0xAE, 0x20, 0xFD, 0xF5, 0x0B,\n    0x52, 0x77, 0xA2, 0x9B, 0x6F, 0x65, 0xB0, 0x00, 0x28, 0x03, 0x9C, 0x97, 0xDB, 0xE4, 0x95, 0xFF,\n    0xC9, 0x88, 0x17, 0xCF, 0x22, 0x87, 0xB2, 0xC0, 0xBF, 0x38, 0xE2, 0x27, 0x38, 0xB0, 0xFD, 0xFC,\n    0x81, 0x92, 0xA1, 0x16, 0x81, 0x43, 0x97, 0xD9, 0xA3, 0x6C, 0x10, 0x4B, 0x61, 0x94, 0xBC, 0xD3,\n    0x4A, 0xFB, 0xDA, 0xBD, 0x8A, 0x02, 0xA0, 0xA9, 0x98, 0xDB, 0xF9, 0xD2, 0x8A, 0x7B, 0x08, 0xE4,\n    0xDD, 0x8D, 0xFF, 0xF3, 0xF8, 0xFA, 0xB3, 0xD6, 0xF4, 0x29, 0x42, 0xF5, 0x44, 0xC9, 0xFB, 0xAC,\n    0x1E, 0xBF, 0x40, 0x59, 0x3A, 0x70, 0x83, 0xE3, 0x75, 0x98, 0x14, 0x32, 0x21, 0x28, 0x54, 0x77,\n    0x78, 0x3F, 0xC2, 0x25, 0x4A, 0x87, 0x5E, 0xD9, 0xAB, 0x1F, 0xAC, 0xEF, 0xFE, 0x81, 0x1F, 0x41,\n    0x5B, 0xB4, 0xFD, 0x3D, 0x3C, 0xC2, 0xEE, 0x45, 0x33, 0x53, 0x1B, 0x44, 0x52, 0x47, 0xEC, 0x08,\n    0x1D, 0xF0, 0x0C, 0x46, 0x6E, 0x25, 0x4D, 0xDB, 0xFF, 0xED, 0x61, 0xA9, 0xD0, 0x61, 0xD0, 0xE3,\n    0x19, 0xA2, 0x29, 0xBD, 0x8E, 0x74, 0x1E, 0x17, 0x6A, 0xCB, 0x23, 0xC5, 0xD5, 0xFD, 0xAF, 0x39,\n    0x14, 0x5C, 0x1E, 0xEF, 0xEA, 0x4D, 0x46, 0x7D, 0xAE, 0x34, 0x39, 0xDB, 0xAE, 0xEE, 0x4D, 0xA7,\n    0x9E, 0xF9, 0xFE, 0xBF, 0xFF, 0xEA, 0x9D, 0x21, 0xF4, 0xDF, 0xDF, 0xF4, 0x7F, 0xBF, 0xB3, 0xF6,\n    0x0F, 0xFF, 0x57, 0x65, 0xD9, 0x7B, 0xCC, 0xC9, 0x86, 0xB1, 0x1F, 0xEE, 0x24, 0xCF, 0x5C, 0x24,\n    0xAF, 0xB2, 0x15, 0x4E, 0x3D, 0xFA, 0xD9, 0x4F, 0x38, 0x44, 0xCA, 0x4E, 0x01, 0x66, 0x34, 0x80,\n    0x82, 0xFF, 0xFD, 0x65, 0x9A, 0x34, 0x08, 0x10, 0x44, 0x79, 0x4F, 0x5F, 0xD4, 0x30, 0xD9, 0x24,\n    0x81, 0xC9, 0x71, 0xDF, 0xEE, 0xDE, 0x2C, 0x3F, 0x18, 0x54, 0xC1, 0xA5, 0x66, 0xBD, 0xF3, 0x5B,\n    0x0D, 0x6A, 0x06, 0x19, 0x2F, 0x25, 0x04, 0xCC, 0xFD, 0xFB, 0x83, 0x92, 0x17, 0x84, 0x41, 0xD3,\n    0x36, 0xBB, 0x5F, 0xA9, 0x87, 0x23, 0xE4, 0xF8, 0x7C, 0xE3, 0x50, 0x18, 0xB1, 0xE1, 0xCF, 0xF2,\n    0x28, 0xFD, 0x0B, 0xB2, 0x88, 0x0E, 0x0F, 0xDF, 0xBF, 0x5D, 0x16, 0x8C, 0xC0, 0xDE, 0x29, 0xDD,\n    0xF6, 0xBA, 0x91, 0x76, 0x0C, 0x14, 0x45, 0xB2, 0xD7, 0x1A, 0x4C, 0x26, 0xE4, 0x59, 0xBE, 0x53,\n    0x25, 0x81, 0x38, 0x9E, 0x1B, 0x64, 0x57, 0xEA, 0x8F, 0xD8, 0xED, 0x54, 0x11, 0x6B, 0xBB, 0xD6,\n    0x22, 0x13, 0x49, 0xCE, 0x70, 0xE7, 0xB5, 0xC4, 0x1A, 0x55, 0xE4, 0x4C, 0xDE, 0x29, 0xF8, 0xFF,\n    0x8E, 0xBF, 0xA7, 0xD5, 0xCE, 0x03, 0x89, 0x67, 0x81, 0xB7, 0x66, 0x4A, 0xE7, 0x80, 0x0C, 0x36,\n    0xAE, 0xEB, 0xE1, 0x08, 0xB3, 0x84, 0x00, 0x05, 0x00, 0xA7, 0x86, 0x12, 0x11, 0x38, 0x28, 0x19,\n    0xCF, 0xC6, 0xC3, 0x68, 0x0E, 0x88, 0xB7, 0x31, 0xE7, 0x66, 0x55, 0x46, 0x01, 0x73, 0xE1, 0xBF,\n    0x17, 0x86, 0xB1, 0x38, 0x92, 0x23, 0x24, 0xDE, 0xF5, 0x55, 0xD3, 0xA6, 0xA6, 0xFF, 0xFD, 0x3E,\n    0x84, 0xD2, 0xC0, 0xFA, 0x6F, 0xBE, 0x58, 0x4E, 0x8A, 0x01, 0x54, 0x3F, 0x77, 0x61, 0x84, 0xB8,\n    0x63, 0xC9, 0x61, 0x25, 0x76, 0x47, 0xF7, 0xE2, 0xE8, 0xE9, 0xD6, 0x7E, 0xE2, 0x98, 0x68, 0x76,\n    0x2A, 0xCD, 0x7F, 0xE2, 0x50, 0x04, 0x6B, 0x5D, 0x6E, 0x93, 0x8A, 0xA8, 0x48, 0x68, 0xE9, 0xB7,\n    0x76, 0x19, 0x51, 0xAB, 0x27, 0x1A, 0x5A, 0xF1, 0x4B, 0x08, 0x17, 0x44, 0xC1, 0xD7, 0x0A, 0x23,\n    0xF6, 0x98, 0x0D, 0x08, 0x7A, 0xEC, 0x12, 0x8D, 0x1C, 0x60, 0xE1, 0x54, 0xB6, 0x0B, 0x58, 0x87,\n    0x3E, 0xAB, 0xEA, 0xFF, 0x48, 0xBB, 0x81, 0x19, 0xD8, 0x95, 0x7B, 0xF6, 0x02, 0xCC, 0x49, 0xA0,\n    0x6D, 0x8D, 0xA4, 0xD8, 0xE4, 0x00, 0xB7, 0x59, 0x7D, 0x3F, 0xDF, 0x8E, 0x1F, 0xA6, 0x00, 0x36,\n    0xA0, 0x2B, 0x40, 0xA4, 0x9C, 0x42, 0xF5, 0xBB, 0x56, 0x10, 0x1C, 0x7D, 0x00, 0x50, 0x16, 0xAC,\n    0x8B, 0x08, 0x59, 0x89, 0xEC, 0x0C, 0x31, 0xF8, 0x04, 0xC4, 0x8F, 0xD5, 0xBF, 0xDB, 0x3F, 0xD2,\n    0xE8, 0x14, 0x9B, 0xCF, 0x84, 0xCF, 0x7D, 0xEC, 0xFE, 0x4D, 0x36, 0x7E, 0x1B, 0xD9, 0x95, 0xF0,\n    0x21, 0xA7, 0x57, 0xEE, 0x18, 0x71, 0x64, 0x06, 0x28, 0xAC, 0x0E, 0x70, 0x5F, 0x11, 0x4A, 0x3F,\n    0x06, 0xFA, 0x9A, 0x0D, 0x3B, 0xEF, 0x51, 0x53, 0x86, 0xB1, 0x2F, 0xD3, 0xBF, 0xE6, 0x42, 0x9D,\n    0xB1, 0xC6, 0x35, 0xDC, 0x17, 0xD9, 0x78, 0x41, 0x74, 0x14, 0x44, 0x40, 0x11, 0xD1, 0xB1, 0xA1,\n    0x88, 0x2E, 0x2C, 0x44, 0x64, 0x40, 0xE5, 0x88, 0x60, 0xFA, 0x85, 0x54, 0x07, 0x77, 0x60, 0x88,\n    0x60, 0x0B, 0x00, 0xD8, 0xFE, 0x51, 0x28, 0xC8, 0x95, 0x5C, 0xDC, 0xEA, 0x97, 0xEF, 0x1F, 0xBF,\n    0x94, 0x7A, 0x14, 0xAB, 0xE4, 0xBF, 0xFB, 0x9A, 0x34, 0xFD, 0xC7, 0xD3, 0xD9, 0xB0, 0xDE, 0x09,\n    0xBB, 0x5B, 0xFE, 0xE7, 0xCE, 0x6D, 0x2C, 0xEA, 0xE0, 0x3F, 0x14, 0x6D, 0x86, 0x70, 0xD3, 0xDD,\n    0x00, 0x10, 0xE9, 0xA6, 0x49, 0x29, 0x4B, 0x36, 0x98, 0x18, 0x3B, 0x80, 0xBE, 0x84, 0xF9, 0xF1,\n    0x83, 0xB1, 0x07, 0xCF, 0x13, 0x5B, 0x43, 0x06, 0xB6, 0xBC, 0x55, 0x24, 0xA2, 0x21, 0xBC, 0x01,\n    0x15, 0x5C, 0xBC, 0xB6, 0x9B, 0x64, 0xC7, 0x5F, 0xF3, 0x03, 0x20, 0xF5, 0xCA, 0x36, 0xFE, 0xD3,\n    0xBF, 0x0E, 0x52, 0xBC, 0xDD, 0xDA, 0x87, 0x09, 0x68, 0x89, 0xD5, 0x1E, 0x67, 0xE6, 0xA3, 0xA9,\n    0xF5, 0x11, 0x61, 0xA8, 0xA2, 0x4D, 0xCB, 0xDA, 0x6D, 0xB7, 0xC2, 0x1B, 0xBF, 0x21, 0x4C, 0x5A,\n    0x91, 0xF8, 0x09, 0xAD, 0xDB, 0xEB, 0x9F, 0x78, 0xD0, 0x38, 0xDF, 0xF1, 0x95, 0x3C, 0xE4, 0x02,\n    0x41, 0xF7, 0x1F, 0xF5, 0x79, 0x18, 0xD0, 0xB5, 0xBC, 0xFE, 0xCA, 0x23, 0x42, 0xD2, 0x02, 0xAC,\n    0x80, 0x10, 0x3E, 0x03, 0xAE, 0x1C, 0x3D, 0x8B, 0x31, 0x9F, 0xFE, 0x6C, 0xE0, 0x4A, 0x29, 0x44,\n    0x12, 0xFB, 0xF2, 0x8C, 0x97, 0xB2, 0x78, 0xD2, 0x83, 0x58, 0xA6, 0xAE, 0x63, 0xCC, 0xE6, 0x3F,\n    0x1E, 0xAA, 0x9B, 0x0B, 0x48, 0x8A, 0xAC, 0x68, 0xA5, 0x47, 0x87, 0x15, 0x4A, 0xC3, 0x7D, 0x10,\n    0xD7, 0x49, 0x59, 0xBC, 0xE8, 0x18, 0x89, 0xAB, 0xB5, 0x4B, 0x17, 0xBD, 0x44, 0x52, 0x9D, 0xBA,\n    0xED, 0x89, 0x63, 0xF1, 0x4C, 0x40, 0xDB, 0x6F, 0x46, 0x97, 0x80, 0x05, 0xB2, 0x14, 0xFC, 0xF7,\n    0x64, 0x9D, 0xFF, 0xEC, 0x92, 0x9A, 0x15, 0x8B, 0x41, 0x6B, 0x8F, 0xED, 0x8E, 0xC0, 0x6B, 0x30,\n    0x22, 0x3D, 0xB8, 0xEA, 0x83, 0xB0, 0x49, 0x86, 0xEC, 0x2F, 0xFE, 0x6C, 0xCD, 0xB0, 0xC8, 0x15,\n    0x27, 0x7B, 0x9F, 0x9F, 0xA7, 0xA0, 0x6D, 0x8F, 0xF9, 0xFB, 0xF9, 0xC6, 0x55, 0x87, 0xCA, 0x2E,\n    0xDA, 0x84, 0x7F, 0xD6, 0x2B, 0x4A, 0x98, 0xFA, 0x2F, 0xFF, 0xF8, 0xAF, 0x89, 0x09, 0xBA, 0x4A,\n    0xF8, 0xC5, 0x08, 0x98, 0x07, 0x64, 0x10, 0x35, 0xCC, 0x1E, 0x52, 0xE3, 0x49, 0x20, 0x7D, 0x4D,\n    0xAB, 0xF0, 0x5C, 0xB5, 0xB5, 0x41, 0x1C, 0x50, 0xDE, 0x21, 0x7A, 0x8E, 0xBF, 0x69, 0x05, 0xF5,\n    0x1D, 0xD8, 0xDD, 0x85, 0x68, 0x95, 0x4F, 0x90, 0x7E, 0xD8, 0x2F, 0x67, 0xEF, 0xD5, 0xE2, 0x57,\n    0x1A, 0x47, 0xBF, 0x6B, 0x43, 0x95, 0x09, 0xCC, 0x5E, 0xDE, 0xB7, 0x42, 0x07, 0x28, 0xA9, 0xDC,\n    0xB4, 0x90, 0x75, 0x73, 0x78, 0xE4, 0xC7, 0x67, 0x24, 0xE2, 0xA9, 0x9B, 0xE4, 0x72, 0x6F, 0xBC,\n    0xC0, 0x7B, 0x3D, 0x3B, 0xDF, 0xE8, 0x7F, 0x1A, 0xB9, 0xF3, 0xFB, 0x62, 0x1F, 0x7F, 0xC9, 0xB4,\n    0x00, 0x08, 0x83, 0x49, 0x27, 0x19, 0xB9, 0x97, 0x5A, 0x32, 0x08, 0xCD, 0xD1, 0xEF, 0xFA, 0x88,\n    0xE7, 0xB5, 0x03, 0x70, 0x24, 0x71, 0x35, 0x60, 0xB7, 0xA9, 0x2E, 0xC9, 0x66, 0xE6, 0xE8, 0xB8,\n    0xDD, 0x91, 0x91, 0x9B, 0xE1, 0x84, 0x02, 0x20, 0x00, 0x20, 0x07, 0x40, 0x25, 0x95, 0x1F, 0x9B,\n    0x4A, 0x54, 0x82, 0xDF, 0x03, 0xAD, 0x21, 0xC0, 0xAC, 0xF5, 0x98, 0xB0, 0xCC, 0xF0, 0xBF, 0xC1,\n    0x13, 0x3E, 0xC6, 0x50, 0x14, 0x94, 0x0B, 0x06, 0xD9, 0x10, 0x25, 0xD5, 0xD5, 0x14, 0xD5, 0x04,\n    0xF8, 0xFD, 0xF3, 0x66, 0xCC, 0xC2, 0x93, 0xDD, 0xFA, 0x35, 0xED, 0x31, 0xEA, 0x0E, 0xD6, 0xB5,\n    0x91, 0x33, 0x38, 0x6B, 0xB0, 0x65, 0x0E, 0x0C, 0xB0, 0x33, 0x2F, 0xFD, 0xF6, 0xD1, 0x43, 0x25,\n    0x71, 0x7E, 0x91, 0x6A, 0x17, 0x2E, 0x47, 0x73, 0x32, 0x99, 0x65, 0xC1, 0x89, 0x50, 0xFD, 0xFA,\n    0xFC, 0x03, 0x57, 0x46, 0xEC, 0x9F, 0xEF, 0x7D, 0xCD, 0x01, 0x8D, 0x38, 0x69, 0xE5, 0x44, 0xB2,\n    0x33, 0x65, 0xCA, 0x60, 0x67, 0x82, 0x88, 0x76, 0x18, 0x00, 0x69, 0xF2, 0xD4, 0xD1, 0xBE, 0xDA,\n    0xC3, 0xA6, 0xB4, 0xD2, 0x55, 0xE1, 0x07, 0xED, 0xF8, 0xD7, 0x99, 0x37, 0xFB, 0xEC, 0x88, 0xC8,\n    0x8A, 0x78, 0x1A, 0xE7, 0xE7, 0x4A, 0xF2, 0xA7, 0x7A, 0x6C, 0xB3, 0x7B, 0xE5, 0x1B, 0x1C, 0x64,\n    0xA8, 0x75, 0x50, 0xF6, 0x01, 0x84, 0x52, 0xE2, 0xFF, 0x3A, 0x7F, 0x85, 0x56, 0x17, 0x90, 0x7B,\n    0x7B, 0x0A, 0x7E, 0x66, 0x5E, 0x70, 0x8D, 0x38, 0x78, 0xED, 0x98, 0x90, 0x6F, 0x51, 0x36, 0x85,\n    0x88, 0x2A, 0xBD, 0x66, 0xFD, 0x76, 0x4F, 0x96, 0x52, 0x4A, 0x6D, 0xF6, 0xA4, 0xDA, 0xAC, 0x98,\n    0xB0, 0xF9, 0x64, 0xF3, 0x17, 0xA6, 0xA9, 0xB4, 0xC5, 0xCC, 0xC2, 0x5B, 0x09, 0xFC, 0x95, 0xFC,\n    0xC9, 0x73, 0xFB, 0xEB, 0x7D, 0x36, 0xA3, 0xF9, 0xB3, 0x5E, 0xC7, 0xFE, 0x58, 0xFD, 0xA0, 0x30,\n    0x06, 0x0A, 0x06, 0x03, 0x4A, 0xBE, 0x02, 0x51, 0x8D, 0x21, 0x99, 0x52, 0xA4, 0x6A, 0x22, 0xB7,\n    0xD3, 0xAC, 0x63, 0xA9, 0x43, 0x2A, 0x51, 0xCA, 0xAA, 0x22, 0xA8, 0xF3, 0x26, 0x66, 0x66, 0x20,\n    0x05, 0x6E, 0x10, 0xC7, 0xCD, 0x05, 0x26, 0xFF, 0x7C, 0x9D, 0xD2, 0x3F, 0x9B, 0xDE, 0xE6, 0x47,\n    0x84, 0x9E, 0xF1, 0x3F, 0x87, 0x17, 0xEF, 0x2C, 0x7E, 0x74, 0x16, 0xAB, 0x2D, 0xDF, 0xA8, 0xF1,\n    0x06, 0x1F, 0x3A, 0xB0, 0xEA, 0x5D, 0x42, 0x1E, 0x17, 0x4B, 0xF2, 0x50, 0xEE, 0xF0, 0x2E, 0xCE,\n    0x6B, 0x44, 0x7E, 0xFE, 0x72, 0x4E, 0xEF, 0xF3, 0x21, 0xD3, 0xAA, 0x8E, 0x79, 0xC8, 0x76, 0xB7,\n    0x5C, 0xC9, 0x8A, 0x69, 0xD6, 0x01, 0xF2, 0x55, 0x03, 0x17, 0x99, 0x3A, 0xFF, 0xFF, 0xD1, 0x43,\n    0x9A, 0xA7, 0x8F, 0x16, 0xE1, 0x41, 0xD7, 0x78, 0xF2, 0x2B, 0x3C, 0xE0, 0xA0, 0xD1, 0xC2, 0x8D,\n    0x14, 0xEC, 0x70, 0x0C, 0x1A, 0x03, 0xC3, 0xAB, 0x75, 0x66, 0x34, 0x0B, 0x48, 0xE0, 0x18, 0x32,\n    0x2F, 0x79, 0xD4, 0xD3, 0xB3, 0x0A, 0x2C, 0x09, 0x02, 0x56, 0x30, 0x57, 0x21, 0x2E, 0x08, 0xDC,\n    0xD0, 0x63, 0x36, 0xE0, 0x7A, 0x0D, 0xFB, 0x15, 0x7E, 0xF1, 0x4B, 0xE7, 0xBD, 0x6B, 0x05, 0x72,\n    0x95, 0x21, 0x79, 0x3F, 0x1A, 0x51, 0xF1, 0x30, 0x0E, 0x3C, 0x17, 0xD6, 0xFF, 0x9F, 0xAF, 0xC2,\n    0x43, 0xB3, 0xE1, 0x22, 0x29, 0xA0, 0xC1, 0xCF, 0x93, 0xA7, 0xFD, 0xF9, 0x66, 0xB3, 0xDD, 0xD6,\n    0x99, 0x3C, 0x28, 0x83, 0xFD, 0x7F, 0x08, 0x5F, 0xDA, 0xD1, 0xBF, 0xCA, 0x54, 0x9F, 0xBF, 0x3D,\n    0xF7, 0x98, 0xBB, 0x82, 0xFD, 0x3B, 0xBC, 0x79, 0xFE, 0xA7, 0x20, 0x64, 0xE5, 0x60, 0xED, 0xA6,\n    0xDF, 0x95, 0x48, 0xF9, 0x9D, 0x47, 0x29, 0x23, 0x4F, 0x9E, 0x74, 0x06, 0x1A, 0x29, 0x0B, 0x5E,\n    0x7D, 0xEB, 0xFB, 0xF8, 0x42, 0x4A, 0x91, 0xFE, 0xF4, 0x14, 0x13, 0x40, 0xA2, 0x21, 0x12, 0xB8,\n    0x8F, 0x12, 0xA9, 0x96, 0x24, 0x73, 0x17, 0x0D, 0x58, 0xD7, 0x12, 0x83, 0x71, 0xE2, 0x8A, 0x68,\n    0xA3, 0xA9, 0x90, 0xAB, 0x12, 0x3A, 0x1E, 0x0D, 0xA1, 0x24, 0x10, 0xD4, 0xC2, 0x04, 0xC4, 0xF5,\n    0x43, 0xC7, 0xFC, 0x4A, 0xE6, 0x5C, 0x81, 0x77, 0x38, 0x8D, 0xD6, 0xF8, 0xAB, 0x62, 0x1C, 0x18,\n    0xBE, 0x5F, 0x77, 0xFA, 0x97, 0x5A, 0x40, 0xA8, 0xF6, 0x60, 0x8D, 0xDC, 0x52, 0x2E, 0xB6, 0x99,\n    0x26, 0x0C, 0x08, 0xB9, 0x5C, 0x6E, 0xFC, 0x75, 0x7B, 0xC0, 0x50, 0x4F, 0x8C, 0x9B, 0xC2, 0x34,\n    0xC8, 0x3D, 0x9D, 0x72, 0x23, 0xF6, 0xA2, 0x6F, 0x61, 0x51, 0x3D, 0x16, 0xBE, 0xB5, 0xB6, 0xF5,\n    0xF0, 0xC5, 0xCA, 0x37, 0xD5, 0x38, 0x94, 0x51, 0x63, 0x83, 0xF0, 0x61, 0x00, 0x09, 0x12, 0x84,\n    0x04, 0x52, 0xC4, 0x6A, 0x2E, 0x0C, 0x1F, 0xA6, 0xE7, 0x1F, 0x40, 0xCE, 0xDC, 0x90, 0x48, 0x7E,\n    0xC8, 0x85, 0xF6, 0x06, 0xC7, 0xFD, 0x5A, 0x33, 0xE5, 0x70, 0x5A, 0xDB, 0x7F, 0x35, 0x30, 0xF7,\n    0x8A, 0xEA, 0xA8, 0xDF, 0xD8, 0xF8, 0x00, 0x05, 0x6F, 0x87, 0xEB, 0x59, 0xE9, 0xB0, 0x84, 0xC7,\n    0x5F, 0xC3, 0xA9, 0x69, 0xA0, 0x94, 0x82, 0x26, 0x5A, 0xBA, 0xF7, 0xD0, 0x37, 0xE1, 0x4B, 0xF8,\n    0x1A, 0x8C, 0xE3, 0x3E, 0xED, 0xCA, 0x88, 0xC6, 0x88, 0x65, 0xA6, 0xED, 0x38, 0x9C, 0x3F, 0xBC,\n    0xBF, 0x89, 0xA8, 0x35, 0xE7, 0xE4, 0x3E, 0x8B, 0xC0, 0x02, 0x10, 0x2E, 0x23, 0x2B, 0x0D, 0x00,\n    0xD0, 0x49, 0x04, 0xAB, 0xCE, 0x27, 0x48, 0xB8, 0xC3, 0x60, 0x4D, 0x9E, 0x12, 0x77, 0xFF, 0x33,\n    0x1F, 0xEA, 0xD7, 0xF0, 0x1B, 0xC8, 0xA4, 0xFB, 0x08, 0x7F, 0x00, 0x31, 0xB2, 0x5F, 0xCB, 0xFF,\n    0xE6, 0x07, 0xC8, 0x0F, 0xC3, 0x94, 0x01, 0x98, 0x3C, 0xDC, 0xE0, 0x02, 0x18, 0xF0, 0x4C, 0xE7,\n    0x54, 0x45, 0xDF, 0x80, 0x1A, 0x2D, 0x56, 0x7F, 0xF3, 0x98, 0x6B, 0x22, 0x8A, 0x01, 0xB8, 0x7D,\n    0x98, 0x6C, 0x6B, 0x08, 0x26, 0x33, 0x96, 0xB6, 0xEF, 0x98, 0x7D, 0xFE, 0xFC, 0xF0, 0x1F, 0x81,\n    0xCA, 0x30, 0x80, 0x21, 0xDA, 0x75, 0x32, 0x76, 0x78, 0x26, 0xBF, 0x60, 0x0D, 0x30, 0xDE, 0x45,\n    0xEB, 0xC5, 0x2B, 0xB8, 0x5D, 0x6A, 0x11, 0x30, 0x05, 0x81, 0x1B, 0x48, 0xC9, 0x3F, 0xE6, 0x0D,\n    0x80, 0x32, 0x28, 0x56, 0x57, 0xAE, 0xA9, 0xA7, 0xA0, 0xAA, 0x91, 0xBF, 0x85, 0xA0, 0x7E, 0xF4,\n    0x14, 0x1C, 0xC0, 0x59, 0x5F, 0x96, 0xB8, 0xFB, 0x46, 0xE0, 0x34, 0x21, 0xC2, 0x60, 0xEB, 0x47,\n    0x88, 0x65, 0x0B, 0xC8, 0x66, 0x64, 0xBB, 0x0E, 0x37, 0xB2, 0xB6, 0xEB, 0x3A, 0x66, 0xC8, 0x29,\n    0x3B, 0x64, 0xA4, 0xBF, 0x58, 0x18, 0x66, 0x1A, 0x00, 0xA2, 0x4C, 0x9A, 0x62, 0xFC, 0x65, 0x95,\n    0x60, 0x37, 0x11, 0x44, 0x72, 0xC5, 0xAC, 0xD0, 0x2E, 0xC6, 0xD9, 0x01, 0xC6, 0x6B, 0x75, 0x0A,\n    0xD6, 0x3A, 0x8F, 0x01, 0x68, 0xA3, 0x70, 0xBA, 0x87, 0xE0, 0x23, 0x50, 0xBD, 0x98, 0xA9, 0x7D,\n    0xF5, 0x40, 0x1F, 0x75, 0xCA, 0x2E, 0x1E, 0x85, 0x7C, 0xBF, 0xD9, 0xB9, 0x69, 0xA7, 0xEF, 0xFC,\n    0xD8, 0x57, 0x57, 0x10, 0x9C, 0x77, 0x5F, 0x05, 0x61, 0x4F, 0xE1, 0x3D, 0xE9, 0xE7, 0x7E, 0xA2,\n    0xBC, 0x31, 0xB8, 0xAD, 0x12, 0x51, 0xFE, 0xF8, 0x90, 0xC8, 0x6B, 0x2A, 0x18, 0x1D, 0xEE, 0xD7,\n    0x7E, 0x35, 0x00, 0xCE, 0x40, 0xB6, 0x9E, 0x23, 0xA4, 0x38, 0x1E, 0x0B, 0xDB, 0x81, 0x44, 0x0E,\n    0x1A, 0xE6, 0x1A, 0xD4, 0x5C, 0xEC, 0xC0, 0xFC, 0x14, 0xB5, 0x99, 0x60, 0x00, 0xC0, 0x34, 0x1B,\n    0xF7, 0x01, 0x52, 0xD1, 0xE8, 0x06, 0x67, 0x34, 0x25, 0xE1, 0xC0, 0xD1, 0x67, 0xAD, 0xCD, 0xBA,\n    0xDB, 0xF8, 0x57, 0x88, 0xBD, 0xD1, 0xE0, 0x3C, 0x92, 0x77, 0xF6, 0x2B, 0x44, 0x31, 0x16, 0x5C,\n    0xA4, 0x59, 0x07, 0xEE, 0xC5, 0x88, 0xEC, 0x46, 0xB2, 0x99, 0xD9, 0x50, 0xCE, 0x6F, 0xBE, 0xE9,\n    0x1F, 0xEB, 0xC8, 0x40, 0x08, 0x8D, 0x95, 0xC0, 0x6D, 0x46, 0x42, 0x52, 0x83, 0x92, 0x1D, 0xDE,\n    0x80, 0x98, 0xA5, 0x84, 0x26, 0x4B, 0x08, 0x8B, 0xFA, 0x9C, 0x4D, 0x30, 0xC8, 0xDB, 0x7C, 0x60,\n    0xF5, 0x7A, 0x04, 0x71, 0x16, 0xB8, 0x00, 0x48, 0xCF, 0x82, 0x26, 0xEE, 0xED, 0xAB, 0x48, 0xD0,\n    0x3E, 0xE0, 0xD9, 0xB3, 0x10, 0x4B, 0x1F, 0xF6, 0x05, 0xF0, 0x08, 0xCA, 0x52, 0xAA, 0x03, 0xA7,\n    0x02, 0x1F, 0xFC, 0x06, 0x63, 0x05, 0x63, 0xE8, 0xC6, 0x57, 0x8F, 0x6E, 0x96, 0x9E, 0x60, 0xB9,\n    0x4C, 0xFF, 0x34, 0x61, 0xA6, 0xE8, 0xA1, 0x2F, 0xFF, 0x04, 0x1C, 0x7B, 0x54, 0x63, 0xF1, 0x9A,\n    0x2A, 0xE9, 0x5F, 0xF6, 0xB0, 0x75, 0xE0, 0x60, 0xA8, 0xE9, 0x48, 0xCD, 0x5C, 0xBD, 0xD6, 0x5A,\n    0x25, 0x62, 0x51, 0xC3, 0x61, 0x6B, 0xFF, 0xFF, 0xD5, 0x99, 0xE3, 0xA0, 0x96, 0x32, 0x38, 0x84,\n    0xBF, 0xAE, 0x91, 0xE6, 0x98, 0x23, 0x03, 0x21, 0x5A, 0x77, 0x3F, 0xEE, 0x6C, 0x2A, 0x49, 0x82,\n    0xBC, 0x22, 0x17, 0x82, 0x89, 0xFF, 0x85, 0xD7, 0xDF, 0x57, 0x85, 0xC0, 0x44, 0x1E, 0x5E, 0xE3,\n    0x38, 0x00, 0x4E, 0xC8, 0x04, 0x9D, 0xFF, 0xA0, 0xF0, 0x61, 0x4F, 0x41, 0x37, 0xEE, 0x7D, 0x10,\n    0xEA, 0x82, 0x27, 0x9A, 0x54, 0xFD, 0xF7, 0xAE, 0x4F, 0xD8, 0x4A, 0x80, 0x1A, 0x81, 0x66, 0xF8,\n    0x2C, 0x08, 0x4C, 0x7E, 0x05, 0x28, 0xD6, 0xEA, 0xBF, 0xB6, 0xEF, 0xE6, 0xB2, 0x58, 0xB6, 0xEA,\n    0xC6, 0x6C, 0x25, 0xE4, 0x24, 0x5C, 0xD8, 0x69, 0x96, 0xF5, 0xE6, 0x88, 0xC8, 0xA3, 0x00, 0xF0,\n    0xAA, 0x96, 0x04, 0x44, 0xFC, 0x5D, 0x27, 0xC9, 0x12, 0x00, 0x58, 0x9D, 0x58, 0x03, 0xBC, 0xBD,\n    0x77, 0x1F, 0xD4, 0xC4, 0x2B, 0x65, 0xD8, 0xAD, 0xB8, 0xA9, 0x4E, 0xA1, 0x0B, 0xAD, 0x64, 0x55,\n    0x5D, 0x9D, 0xAC, 0x79, 0x24, 0x31, 0x88, 0xAB, 0x83, 0x52, 0xEE, 0xF6, 0xE9, 0xD1, 0x26, 0x60,\n    0x83, 0xA2, 0x5E, 0xE4, 0xFD, 0x5C, 0x09, 0x4E, 0xCB, 0x3E, 0x50, 0x0A, 0xD5, 0x4B, 0x4F, 0x60,\n    0xD5, 0xF7, 0xDC, 0xF3, 0x86, 0xDC, 0x20, 0x11, 0x12, 0xA3, 0x40, 0xF1, 0xD8, 0xE3, 0x05, 0x7A,\n    0x61, 0xE9, 0x41, 0x00, 0x53, 0x6B, 0xFF, 0x3D, 0xC2, 0xC8, 0xC3, 0x0F, 0x1A, 0xB2, 0x0B, 0x0E,\n    0xEF, 0x7A, 0xB0, 0x03, 0x30, 0xB4, 0x35, 0x61, 0xC8, 0xE7, 0xB9, 0x2C, 0x10, 0x76, 0xC1, 0x19,\n    0x8B, 0xF4, 0x5E, 0x9F, 0xF6, 0x01, 0x8D, 0x58, 0xFD, 0x72, 0x1B, 0xC5, 0x05, 0x34, 0xCD, 0x8B,\n    0xF4, 0xD5, 0x46, 0x98, 0xF3, 0x89, 0x09, 0x42, 0x53, 0x79, 0xD3, 0x4F, 0xF3, 0x36, 0x3A, 0x20,\n    0x40, 0x19, 0x0B, 0x77, 0xBF, 0x5F, 0x01, 0x0F, 0x51, 0x19, 0x64, 0x0D, 0xC4, 0x3C, 0xCF, 0xFD,\n    0xCF, 0xA6, 0xC9, 0x20, 0xB2, 0x61, 0x3B, 0x1F, 0x46, 0x51, 0x65, 0x90, 0x0E, 0x30, 0x6C, 0x04,\n    0x03, 0x5C, 0xEB, 0xF5, 0x8D, 0xCC, 0x66, 0x09, 0x14, 0x90, 0x0D, 0x61, 0x41, 0x3F, 0x67, 0x1C,\n    0x19, 0xD6, 0xE1, 0x31, 0x83, 0x16, 0xF0, 0x40, 0xFC, 0xA4, 0x4A, 0x02, 0x59, 0x43, 0x53, 0x1B,\n    0x3F, 0x90, 0x92, 0x4E, 0x52, 0xBF, 0xCF, 0xBE, 0x62, 0x1F, 0xCA, 0x55, 0x21, 0xE2, 0x81, 0x63,\n    0x4C, 0xDB, 0x8B, 0xB0, 0x00, 0x70, 0x03, 0xF2, 0x9F, 0x84, 0x5E, 0x4D, 0xEE, 0x79, 0x81, 0x3F,\n    0x3F, 0x35, 0xF7, 0x7C, 0x51, 0x13, 0xF2, 0x11, 0xA2, 0x1B, 0xC1, 0xC3, 0x8D, 0xE6, 0xA8, 0xDA,\n    0x01, 0xC1, 0xA4, 0x88, 0xB6, 0x02, 0x66, 0x9E, 0xE4, 0x09, 0x19, 0x87, 0xBE, 0xD3, 0xCA, 0x02,\n    0x3A, 0xC3, 0xC3, 0x9C, 0x69, 0x62, 0x5F, 0xFF, 0x4C, 0xD7, 0xEA, 0xCE, 0x78, 0x0A, 0x00, 0xFA,\n    0x35, 0x16, 0xD8, 0x9D, 0x01, 0x85, 0xDF, 0xEB, 0xE0, 0x31, 0x68, 0xEE, 0x51, 0xFE, 0x69, 0x36,\n    0x58, 0xBE, 0xA6, 0xBE, 0xA8, 0x71, 0x8F, 0x06, 0x2E, 0x57, 0x2F, 0x8A, 0x00, 0x3F, 0x98, 0xC8,\n    0xE2, 0x10, 0x37, 0x2A, 0x0F, 0x82, 0x8F, 0x2F, 0x11, 0xC8, 0xBB, 0x78, 0x19, 0xD4, 0x63, 0x78,\n    0x27, 0x74, 0x9F, 0xD9, 0x99, 0x84, 0x58, 0xE2, 0x26, 0xF8, 0xFF, 0xF8, 0x4A, 0x58, 0xD2, 0xB9,\n    0xE0, 0x6C, 0x50, 0xD2, 0xE6, 0xD5, 0x72, 0x0F, 0xD9, 0x94, 0xA5, 0xBC, 0x99, 0x6A, 0x02, 0xC3,\n    0xE9, 0x04, 0xC9, 0x33, 0x95, 0x02, 0xAD, 0x7B, 0xF2, 0xF4, 0x66, 0x34, 0x68, 0xBB, 0x7E, 0xD9,\n    0x02, 0xA2, 0x23, 0xFD, 0xF1, 0x4D, 0x0F, 0xC6, 0x35, 0x92, 0x98, 0x69, 0x24, 0x4E, 0x4C, 0x71,\n    0xC0, 0xA9, 0x77, 0xA6, 0x8B, 0xEE, 0x14, 0xF8, 0x77, 0x37, 0x65, 0x29, 0x54, 0xC8, 0xF3, 0x3D,\n    0x59, 0x32, 0xC0, 0x0B, 0xA7, 0x05, 0xC1, 0x6A, 0x6B, 0x33, 0x67, 0x33, 0x2B, 0x71, 0xE9, 0xBB,\n    0xE4, 0x16, 0x04, 0x63, 0x0D, 0x24, 0x31, 0x94, 0x32, 0x0A, 0x5B, 0x6E, 0xF4, 0x0E, 0xC7, 0xCC,\n    0xBC, 0x79, 0xBF, 0xDF, 0xD3, 0x4A, 0xC5, 0xD4, 0x00, 0xA9, 0x02, 0x27, 0x07, 0xDB, 0x0E, 0xDB,\n    0x77, 0x44, 0xF2, 0x4A, 0x48, 0x58, 0xDF, 0xDE, 0x6B, 0x21, 0x5B, 0x68, 0x3B, 0x60, 0xC3, 0x21,\n    0x6D, 0xFD, 0xE4, 0xF7, 0x81, 0x18, 0xB0, 0x0A, 0xA1, 0xFB, 0x5A, 0xF8, 0x04, 0xBB, 0xCC, 0x95,\n    0x79, 0x1B, 0x09, 0x8D, 0x79, 0xA7, 0x5C, 0x61, 0x72, 0x3D, 0xB7, 0x5A, 0x01, 0x89, 0x37, 0xCB,\n    0xFD, 0xFC, 0xB4, 0x90, 0x67, 0xD9, 0x67, 0x8D, 0x3A, 0xBF, 0x7E, 0xD6, 0x70, 0x53, 0xBF, 0xA4,\n    0xC9, 0x9F, 0xFC, 0x68, 0x55, 0x7F, 0x89, 0xF7, 0x15, 0x8B, 0x5F, 0xFB, 0xC5, 0x9B, 0xF3, 0xC1,\n    0x32, 0xBA, 0x03, 0x37, 0xE6, 0x12, 0xB6, 0x2C, 0xB7, 0xF8, 0x7D, 0x0B, 0xAE, 0xBD, 0x09, 0x70,\n    0xE1, 0x8E, 0x67, 0x1C, 0xC7, 0x53, 0x61, 0xD6, 0x97, 0x01, 0x4A, 0x09, 0xB1, 0xE9, 0x1C, 0xD4,\n    0xF4, 0x59, 0x6E, 0x30, 0x6A, 0xE3, 0x9A, 0xCB, 0xA2, 0xE1, 0x24, 0x4C, 0x8D, 0xC9, 0x8C, 0x98,\n    0x82, 0x68, 0x4F, 0xC1, 0x0A, 0xC1, 0xDB, 0xAA, 0x61, 0xAC, 0x20, 0xAD, 0x84, 0xC4, 0x58, 0xE2,\n    0xF3, 0xE2, 0x44, 0x99, 0x60, 0xC1, 0xFE, 0x52, 0x02, 0x37, 0xD8, 0x68, 0x0E, 0xBA, 0x3C, 0x28,\n    0x4E, 0x17, 0xA3, 0xFF, 0xD8, 0xB4, 0x63, 0xF2, 0xE0, 0x22, 0xEA, 0xBD, 0xD1, 0xA6, 0xCB, 0x67,\n    0xEF, 0x36, 0x97, 0xBB, 0x2D, 0x86, 0x46, 0xE0, 0x03, 0x3F, 0xF3, 0x12, 0x2E, 0x80, 0xD9, 0xD5,\n    0xA6, 0x08, 0xB2, 0x76, 0x7D, 0xBF, 0x23, 0xFA, 0x52, 0x4E, 0x4A, 0x81, 0x91, 0xEB, 0xB0, 0x71,\n    0xA5, 0x77, 0xDE, 0x7B, 0x07, 0x51, 0xAA, 0x0F, 0xC4, 0xF0, 0x27, 0x8B, 0xFE, 0x5B, 0xBD, 0xFD,\n    0x8C, 0x48, 0x35, 0xA7, 0xE8, 0xC0, 0x30, 0x00, 0x1A, 0xA0, 0x38, 0x50, 0x60, 0x03, 0x59, 0x5A,\n    0xCF, 0x53, 0xDC, 0x34, 0x6D, 0xA4, 0x1E, 0x90, 0x0C, 0x81, 0x93, 0x36, 0x7B, 0x06, 0x82, 0x8D,\n    0xE2, 0x38, 0x82, 0x8E, 0x59, 0x05, 0x81, 0xA8, 0x26, 0x53, 0xB8, 0x28, 0x6F, 0x62, 0x30, 0xCD,\n    0xE2, 0xA2, 0xAB, 0x47, 0x11, 0x25, 0x0E, 0x5C, 0x85, 0x2C, 0x5C, 0x0A, 0x3A, 0x29, 0xBD, 0x68,\n    0x0A, 0x14, 0x0C, 0xFC, 0xC4, 0x61, 0x7E, 0xC2, 0x13, 0xDB, 0xD5, 0x6E, 0x45, 0xAB, 0xE7, 0xA8,\n    0x08, 0xF1, 0x7F, 0x76, 0xA7, 0x2F, 0x1D, 0xD5, 0x15, 0xBE, 0xFF, 0x3D, 0x12, 0x48, 0x55, 0x5A,\n    0xAF, 0x5E, 0x6D, 0x20, 0x62, 0x4D, 0xA5, 0x79, 0xA4, 0x6B, 0x9F, 0xE4, 0x68, 0x5D, 0x2D, 0x93,\n    0x43, 0x49, 0x78, 0x39, 0x12, 0xAD, 0xEA, 0x71, 0x21, 0x6B, 0x90, 0x64, 0x37, 0xBF, 0xD7, 0xE2,\n    0x84, 0xBC, 0xF9, 0x76, 0x6D, 0x3F, 0xCE, 0x10, 0x00, 0x19, 0x00, 0x87, 0xB2, 0x76, 0xFD, 0xB6,\n    0xBA, 0xBA, 0xB7, 0x43, 0x12, 0xE0, 0x6F, 0x7C, 0x98, 0x00, 0x08, 0x01, 0x38, 0x5B, 0x0A, 0x06,\n    0xD7, 0x7A, 0x77, 0x56, 0xF2, 0x88, 0xA6, 0x89, 0xD5, 0x50, 0x54, 0x89, 0x6C, 0x45, 0x0F, 0x73,\n    0x48, 0x2B, 0x92, 0x35, 0x5F, 0xC4, 0x3C, 0x3B, 0xEF, 0x40, 0xD4, 0x48, 0x6F, 0x0F, 0xFF, 0xDE,\n    0xD4, 0x6F, 0x62, 0x3B, 0xBA, 0x17, 0x7C, 0x65, 0xDF, 0xF7, 0x43, 0x09, 0xF1, 0x70, 0x84, 0xA3,\n    0x77, 0xFF, 0xC1, 0x5F, 0x37, 0xA1, 0x2C, 0xE5, 0x4D, 0x97, 0x62, 0x71, 0xBD, 0xDA, 0x6D, 0x00,\n    0x3E, 0x51, 0x5F, 0x02, 0x13, 0xFC, 0x22, 0x38, 0x74, 0x1F, 0xA9, 0x00, 0xC6, 0xC1, 0x99, 0x40,\n    0x75, 0xC5, 0x03, 0xC5, 0x93, 0x7F, 0x55, 0xAD, 0xCD, 0xE0, 0x93, 0x52, 0xBA, 0xD7, 0x9F, 0x58,\n    0x32, 0x63, 0xB3, 0x7A, 0xBF, 0xC0, 0x97, 0x90, 0x82, 0x5C, 0x4E, 0x41, 0x0F, 0x10, 0x6C, 0x12,\n    0x49, 0xD4, 0x69, 0x23, 0x71, 0xB1, 0xA7, 0x83, 0xFC, 0xC0, 0x8A, 0x1B, 0xC1, 0xA4, 0x09, 0xEB,\n    0x45, 0x6E, 0x83, 0xEA, 0x0F, 0x78, 0x3D, 0x36, 0x19, 0x01, 0xD6, 0x8C, 0x18, 0x90, 0xB0, 0x1D,\n    0x63, 0xA2, 0xA2, 0xC9, 0xDD, 0x23, 0x4F, 0x72, 0xD2, 0x85, 0x7E, 0x45, 0xFF, 0xFD, 0x4D, 0x55,\n    0xA2, 0x03, 0xE6, 0x1F, 0xD7, 0x68, 0xF4, 0xD2, 0xCF, 0x26, 0xE1, 0x41, 0x3A, 0x53, 0x71, 0xDC,\n    0x97, 0xB0, 0xE5, 0xAF, 0xBF, 0xEE, 0x6D, 0x9E, 0x9A, 0x5D, 0x4F, 0xE6, 0x9F, 0x1B, 0xEF, 0xAB,\n    0x5E, 0x6D, 0x63, 0x66, 0xD8, 0xCF, 0xDB, 0xCC, 0xD4, 0xF9, 0xFF, 0xB4, 0x80, 0xC7, 0xEA, 0xD8,\n    0x24, 0xC6, 0xA0, 0xB9, 0x38, 0x56, 0x5C, 0x2E, 0xD9, 0x4A, 0xFD, 0xE7, 0x8E, 0x4D, 0x1D, 0x53,\n    0x7F, 0xA6, 0xA6, 0xFE, 0xB1, 0xA9, 0xC2, 0x02, 0x06, 0x00, 0x51, 0x42, 0x00, 0x02, 0x00, 0x15,\n    0xA5, 0x60, 0x23, 0x87, 0xAD, 0xF7, 0x04, 0x61, 0xEF, 0x7D, 0x95, 0x19, 0x0D, 0xAA, 0x61, 0x69,\n    0x79, 0xA0, 0xE0, 0xC0, 0xC8, 0xF1, 0xB0, 0x6C, 0x5D, 0x80, 0x20, 0xB2, 0xDB, 0xA5, 0x74, 0x44,\n    0x10, 0x62, 0x60, 0x47, 0xCE, 0xF9, 0x7D, 0x01, 0x43, 0x1A, 0x20, 0xBB, 0xA9, 0x70, 0x8B, 0x29,\n    0x7A, 0xB8, 0x8F, 0x73, 0x4F, 0x91, 0x5D, 0x6C, 0xBA, 0x78, 0xE0, 0x00, 0x66, 0xFD, 0x47, 0xF2,\n    0x87, 0x5B, 0x1C, 0xAB, 0xA1, 0xD5, 0x6A, 0xF8, 0x44, 0x01, 0x35, 0x1C, 0x18, 0x7C, 0xA8, 0x6A,\n    0xDD, 0x9D, 0x5E, 0x3A, 0x9C, 0xD7, 0xD2, 0xB1, 0xD0, 0x1A, 0xD5, 0x7E, 0xF7, 0xCF, 0xFB, 0x4C,\n    0x1F, 0x51, 0xCD, 0xD9, 0xF0, 0xC2, 0x08, 0xCB, 0x6C, 0xB5, 0x6A, 0x32, 0x87, 0x9C, 0x99, 0x0C,\n    0x1A, 0x66, 0x8E, 0xD6, 0x3A, 0x22, 0x4A, 0x7A, 0xFE, 0xA1, 0xED, 0xDA, 0xD0, 0x94, 0x06, 0x1C,\n    0x20, 0x12, 0xB9, 0xCE, 0x79, 0x30, 0x85, 0xB7, 0x66, 0x9D, 0x24, 0x92, 0xCF, 0x0B, 0x45, 0x1E,\n    0x91, 0xDB, 0x80, 0x84, 0xBD, 0x8A, 0xB0, 0x2A, 0x1E, 0xE8, 0xF0, 0x82, 0x78, 0xED, 0xBB, 0x61,\n    0x60, 0x96, 0xD6, 0xF2, 0x67, 0xB8, 0xBF, 0x41, 0x41, 0x31, 0xE1, 0x95, 0x18, 0xB7, 0xF7, 0xFE,\n    0x83, 0x88, 0x9F, 0xDA, 0x25, 0xFF, 0xFD, 0xF3, 0x20, 0x36, 0x94, 0x59, 0xEE, 0xC9, 0x6F, 0xF8,\n    0xB0, 0xFB, 0x5D, 0xE6, 0x5F, 0x07, 0xFD, 0x06, 0x04, 0x87, 0x8D, 0x23, 0x21, 0xF2, 0x38, 0xAD,\n    0x6C, 0xD1, 0xDE, 0xFE, 0x30, 0x40, 0xC2, 0x2E, 0xEB, 0x7E, 0xDD, 0xFF, 0x2C, 0x82, 0x90, 0x23,\n    0x01, 0xD8, 0x45, 0x33, 0x78, 0xC3, 0xF2, 0x63, 0xB7, 0x42, 0x60, 0x19, 0x2C, 0x08, 0xF6, 0xC0,\n    0xBC, 0x1E, 0x1B, 0x80, 0x13, 0x81, 0x61, 0xD3, 0x0C, 0xBA, 0xFB, 0x90, 0x7F, 0x18, 0x86, 0xC6,\n    0x71, 0x94, 0xFE, 0x9A, 0x64, 0x5A, 0xCE, 0x2E, 0xEB, 0xF0, 0xD5, 0x37, 0x86, 0xAA, 0xD4, 0xFD,\n    0x81, 0x00, 0x38, 0x14, 0x84, 0xA1, 0xF3, 0x2E, 0x1E, 0x0B, 0x05, 0xA2, 0x79, 0xC0, 0x58, 0x1E,\n    0xDD, 0xE2, 0xDD, 0x21, 0x5F, 0xFF, 0x00, 0xC1, 0x58, 0xB9, 0x94, 0xF6, 0x3A, 0x04, 0x6E, 0xCC,\n    0x67, 0xC6, 0x96, 0xBF, 0xB4, 0xF5, 0xD9, 0x1A, 0x1C, 0xC6, 0x81, 0xC6, 0x00, 0xA9, 0x25, 0x96,\n    0xE0, 0xAD, 0x60, 0xE6, 0x4F, 0xFC, 0x13, 0x7F, 0xFC, 0xEC, 0x7C, 0x2B, 0xA1, 0xDB, 0x80, 0x0F,\n    0x64, 0x46, 0x69, 0x1C, 0x7C, 0x98, 0xC4, 0xF3, 0x01, 0x10, 0x89, 0x86, 0xD5, 0x92, 0x10, 0x91,\n    0xCD, 0xA6, 0x02, 0x03, 0x36, 0xD5, 0x98, 0x9F, 0x38, 0x72, 0x93, 0x09, 0x18, 0xDC, 0xEC, 0x22,\n    0xE8, 0x8F, 0xED, 0xAB, 0xCA, 0x78, 0x71, 0x13, 0xDF, 0xE5, 0x6F, 0xED, 0xFE, 0xDE, 0xF8, 0xB2,\n    0x6D, 0xEA, 0xCD, 0xC3, 0xF1, 0x66, 0x0C, 0x5D, 0xFA, 0xC5, 0xF0, 0x04, 0x42, 0x10, 0x4C, 0x2D,\n    0x3F, 0x8E, 0xBD, 0x44, 0x7E, 0x45, 0xD7, 0x77, 0xF8, 0xE4, 0xBE, 0x01, 0x89, 0x8E, 0x5E, 0x4B,\n    0xCA, 0xBD, 0x9E, 0x4B, 0xF6, 0x35, 0x2E, 0xE0, 0x55, 0x37, 0x13, 0xFB, 0xF0, 0x01, 0x76, 0x7C,\n    0xB7, 0xFB, 0x54, 0x34, 0xE3, 0x7A, 0x50, 0xA0, 0x47, 0x80, 0x67, 0x41, 0x08, 0x48, 0x5F, 0x83,\n    0x17, 0xD8, 0x8F, 0x7B, 0xD2, 0x30, 0xA8, 0x26, 0x34, 0xB7, 0x03, 0x57, 0x2D, 0x5D, 0x39, 0xB1,\n    0xFE, 0x1D, 0xFC, 0x1F, 0x66, 0x25, 0xE9, 0xCD, 0xE3, 0x35, 0x37, 0x47, 0xFF, 0xCD, 0x4B, 0x58,\n    0x4B, 0x59, 0x6C, 0x3F, 0x7E, 0x7C, 0x00, 0xC6, 0xF9, 0x7B, 0xA7, 0x71, 0xB4, 0xB1, 0xDD, 0xD6,\n    0x05, 0xF0, 0x82, 0xC5, 0xB9, 0x56, 0xEF, 0xB2, 0x08, 0x13, 0x0B, 0x1E, 0xBB, 0x90, 0xD1, 0x34,\n    0x0E, 0xB6, 0xFF, 0xEE, 0x15, 0x05, 0xA9, 0x46, 0xBC, 0xA6, 0x36, 0x9E, 0x70, 0xEB, 0xC5, 0x7E,\n    0x18, 0x9C, 0x8C, 0xAF, 0x6F, 0x79, 0x18, 0xB6, 0x1C, 0x91, 0xBD, 0xC0, 0x0D, 0xCC, 0x6A, 0x0F,\n    0x93, 0x21, 0xE3, 0x48, 0xC1, 0x91, 0x2E, 0x8E, 0x87, 0x27, 0x08, 0xB9, 0xB4, 0xF1, 0x50, 0xB9,\n    0x48, 0x81, 0x69, 0xB2, 0x0F, 0x49, 0x97, 0xAF, 0x01, 0x7B, 0x50, 0x4B, 0x2D, 0x60, 0x1D, 0x2A,\n    0x14, 0x50, 0x6A, 0x34, 0xB5, 0x5F, 0x4D, 0x4F, 0x66, 0x47, 0xB0, 0x20, 0x88, 0xFF, 0x5B, 0x07,\n    0xD5, 0xA2, 0x66, 0x15, 0x59, 0xE8, 0x4B, 0x29, 0x4C, 0x7F, 0x64, 0x59, 0xD2, 0x61, 0xF8, 0xCE,\n    0x83, 0xF2, 0xF6, 0x9C, 0xD3, 0xED, 0x54, 0x00, 0x3B, 0xFC, 0x22, 0x31, 0xCE, 0xA4, 0x23, 0x85,\n    0xB1, 0x32, 0x8B, 0x13, 0x33, 0x37, 0xDE, 0x28, 0x58, 0x90, 0x60, 0x84, 0x9C, 0x6E, 0xDC, 0x7B,\n    0xC0, 0x8F, 0x43, 0xFD, 0xC6, 0x5B, 0xE9, 0x44, 0x05, 0xA0, 0x14, 0xFF, 0xEA, 0xE3, 0x09, 0x79,\n    0x22, 0xBD, 0xBC, 0x9C, 0xA0, 0x9C, 0xAF, 0xBA, 0xB3, 0x8C, 0xF8, 0x09, 0x80, 0x63, 0x2F, 0x52,\n    0xD9, 0xAD, 0x3D, 0x7E, 0x85, 0x6E, 0xAA, 0xDA, 0x45, 0x0C, 0xE4, 0x6C, 0x3A, 0x5C, 0x81, 0xD9,\n    0x7B, 0x08, 0xD1, 0x86, 0xD2, 0x7E, 0x10, 0x0A, 0xCC, 0x15, 0xB0, 0x7E, 0x4A, 0xA2, 0x09, 0xFF,\n    0xF5, 0x1D, 0x4B, 0x1D, 0x19, 0x03, 0xEB, 0x10, 0xEA, 0x98, 0x66, 0x0E, 0x38, 0x42, 0x00, 0x1B,\n    0x76, 0x53, 0x01, 0x75, 0x81, 0xDC, 0xC1, 0x36, 0xE0, 0x48, 0xE2, 0x74, 0x58, 0x66, 0xAD, 0x86,\n    0x4A, 0xF1, 0xF8, 0x34, 0xEF, 0xFD, 0xF2, 0xAD, 0x53, 0xAB, 0xB0, 0xFF, 0x57, 0x11, 0x84, 0x62,\n    0x1A, 0x88, 0x41, 0x40, 0xF0, 0x6F, 0xC1, 0x62, 0xCD, 0xE1, 0x4F, 0xDF, 0x0A, 0x35, 0xE8, 0xE2,\n    0x0A, 0x80, 0xD8, 0xDD, 0x2B, 0x23, 0x00, 0x47, 0x53, 0x00, 0x38, 0x56, 0xD3, 0x40, 0x41, 0x20,\n    0x52, 0x4E, 0xA4, 0x6C, 0x15, 0xCD, 0x1F, 0x34, 0x35, 0x11, 0x62, 0x13, 0xB6, 0x2E, 0xF1, 0xD7,\n    0xFF, 0xEF, 0x41, 0xC5, 0x0E, 0x63, 0xA9, 0xDA, 0xE5, 0x7E, 0xE0, 0x00, 0x8F, 0xFF, 0xA0, 0x59,\n    0xAD, 0xBF, 0x01, 0x4D, 0xCF, 0x96, 0x17, 0xFB, 0xC3, 0x0A, 0x79, 0x8D, 0x21, 0xC8, 0xEA, 0x64,\n    0xDD, 0x00, 0x11, 0xDB, 0x00, 0xB8, 0xE1, 0xBB, 0x15, 0x79, 0xAA, 0xB3, 0xE0, 0x8D, 0xE0, 0xCB,\n    0x41, 0x02, 0xCA, 0x98, 0x54, 0xF7, 0x84, 0x0B, 0x68, 0x06, 0x0F, 0xE6, 0x01, 0x0E, 0xF0, 0x8F,\n    0x61, 0xA8, 0xDA, 0x87, 0x82, 0x3C, 0x33, 0xD8, 0x68, 0x78, 0x44, 0x73, 0xBD, 0x98, 0x0F, 0xD0,\n    0xAA, 0xB7, 0xC1, 0x5F, 0x08, 0x9E, 0x41, 0xBF, 0xBE, 0xAC, 0x08, 0xAA, 0x95, 0xA8, 0xD4, 0x3E,\n    0xE6, 0x2C, 0x04, 0x12, 0x2C, 0xC7, 0xB7, 0x03, 0x8D, 0x13, 0x80, 0xA9, 0x4E, 0x93, 0xC1, 0x17,\n    0x77, 0x73, 0x7B, 0xD4, 0xC4, 0x92, 0x9B, 0x51, 0xE5, 0xA7, 0xEA, 0xC9, 0x02, 0xF2, 0xF7, 0x3A,\n    0x93, 0x0A, 0xE3, 0xBA, 0x0E, 0xF9, 0x1D, 0xD1, 0xC0, 0xCA, 0x2A, 0x44, 0x60, 0x67, 0xAC, 0xB8,\n    0x6A, 0xF4, 0x48, 0x27, 0x3D, 0xF7, 0x54, 0xEA, 0x6B, 0x7F, 0x2F, 0xFF, 0x0B, 0xA2, 0xCA, 0xD3,\n    0x48, 0x30, 0x54, 0x54, 0x17, 0xB2, 0x00, 0x80, 0xBD, 0x7C, 0xD0, 0xFA, 0x42, 0x06, 0xC2, 0x00,\n    0x08, 0x2A, 0x03, 0x1E, 0x97, 0x6B, 0x76, 0x91, 0x17, 0x4A, 0x43, 0x13, 0xC3, 0x20, 0x3A, 0x27,\n    0x89, 0x2A, 0xE7, 0x78, 0x75, 0xEC, 0x40, 0x6D, 0x1B, 0x85, 0xAA, 0x0C, 0x13, 0x79, 0xD9, 0x28,\n    0xAA, 0x00, 0xC2, 0x73, 0xAA, 0xAD, 0xD1, 0x90, 0x91, 0x62, 0xBC, 0x7C, 0x1D, 0xE5, 0x10, 0x39,\n    0x1C, 0x6B, 0xCB, 0x53, 0x39, 0x87, 0x78, 0x1F, 0xC4, 0xE1, 0x23, 0x6C, 0x7A, 0x5E, 0xD6, 0xFC,\n    0x81, 0x44, 0xE0, 0xFF, 0xB2, 0x3F, 0xD5, 0x81, 0x87, 0x75, 0x67, 0x3B, 0xEA, 0xD0, 0x30, 0xF9,\n    0x38, 0x25, 0xBF, 0x9E, 0x85, 0x4F, 0x4D, 0xE8, 0xF5, 0x17, 0xEF, 0x33, 0x9B, 0x20, 0xE3, 0x5E,\n    0x68, 0x71, 0x77, 0x0E, 0xAE, 0x32, 0x60, 0x62, 0x57, 0x9B, 0x4B, 0xF0, 0x72, 0x4F, 0xBF, 0xFD,\n    0xD8, 0xE2, 0x64, 0x5A, 0x36, 0x05, 0x58, 0x38, 0x1E, 0x70, 0x8F, 0xD5, 0xAB, 0xE2, 0x8D, 0x20,\n    0x49, 0x47, 0xAB, 0xC9, 0x5B, 0xC2, 0xF6, 0x07, 0x11, 0xB0, 0xED, 0xC4, 0xC4, 0xFF, 0x7F, 0x76,\n    0x51, 0xCF, 0x3D, 0x28, 0x1E, 0xB3, 0xA8, 0x10, 0xDC, 0x66, 0x3B, 0x4C, 0x0F, 0xCD, 0x09, 0x60,\n    0x0F, 0xA0, 0xF2, 0xC2, 0x50, 0x15, 0x75, 0x5E, 0x29, 0xF3, 0xC7, 0x0D, 0xD4, 0xEB, 0x79, 0xEF,\n    0x3C, 0x53, 0x72, 0x1B, 0x08, 0x12, 0x78, 0xC1, 0x64, 0xBF, 0xF3, 0xDD, 0xBF, 0x0D, 0x59, 0x5F,\n    0x0D, 0x3B, 0x8D, 0xC8, 0x7F, 0x06, 0xFB, 0x17, 0xB1, 0x59, 0x3A, 0x0D, 0x1B, 0x02, 0x96, 0x01,\n    0xF9, 0x98, 0x45, 0xCF, 0x79, 0x7A, 0x15, 0x3F, 0xD6, 0x74, 0x00, 0xE7, 0xED, 0x70, 0xE7, 0xF2,\n    0x94, 0xB1, 0x4A, 0x52, 0x65, 0x5D, 0xBB, 0x7C, 0x07, 0x51, 0x6E, 0x26, 0xBB, 0x61, 0xFF, 0xF5,\n    0x98, 0xB7, 0x1B, 0xE7, 0x30, 0x8D, 0xA5, 0xFD, 0x28, 0x9A, 0x3D, 0x31, 0x55, 0xFF, 0xDA, 0x18,\n    0x00, 0x8A, 0x6C, 0x21, 0x01, 0x56, 0x1A, 0x64, 0x91, 0x67, 0xCB, 0xB4, 0x17, 0xF6, 0x99, 0x18,\n    0xBB, 0xE7, 0x1F, 0x0C, 0x14, 0x6B, 0xE7, 0xD9, 0xA9, 0xC1, 0xB4, 0xC1, 0x51, 0xBC, 0x06, 0x89,\n    0x54, 0x11, 0x52, 0x6C, 0xBC, 0xA1, 0x16, 0x0B, 0x18, 0x98, 0x13, 0xDF, 0xE3, 0xDC, 0x02, 0xC2,\n    0xD7, 0x4B, 0x57, 0xC0, 0x43, 0xDA, 0x66, 0x30, 0x69, 0xE3, 0xBD, 0xFF, 0x0A, 0xE9, 0x25, 0x99,\n    0x98, 0x2C, 0xA0, 0x71, 0xB8, 0x39, 0x3D, 0xBE, 0x81, 0x11, 0xBD, 0x5C, 0x8F, 0xD5, 0xEA, 0x14,\n    0x8C, 0x0C, 0xA5, 0x85, 0x31, 0x97, 0x85, 0x84, 0x16, 0x11, 0xA5, 0x15, 0x78, 0x9B, 0x95, 0x62,\n    0xFF, 0xC7, 0xB4, 0x39, 0x65, 0xA6, 0xC9, 0x99, 0x50, 0x3D, 0xD3, 0x7E, 0x13, 0x4F, 0xC3, 0x84,\n    0x6B, 0x72, 0x17, 0x19, 0xBC, 0x13, 0xA8, 0x0B, 0x22, 0x82, 0xFF, 0x9B, 0xE7, 0x9C, 0x9B, 0xA8,\n    0x2F, 0x9F, 0xE4, 0x72, 0x3A, 0xFA, 0x8C, 0x49, 0x04, 0x61, 0x60, 0xDB, 0xFE, 0x50, 0x00, 0x5E,\n    0xC6, 0x40, 0x8E, 0x5F, 0x00, 0xB3, 0x5E, 0xFA, 0x17, 0xFF, 0xDB, 0x02, 0x34, 0x0D, 0xB3, 0xAA,\n    0x44, 0x35, 0x78, 0xEC, 0xA3, 0x67, 0x5A, 0x9B, 0x7F, 0xBE, 0xCE, 0x80, 0x19, 0x09, 0x4A, 0x35,\n    0x18, 0xD6, 0xEF, 0x81, 0x88, 0x88, 0xFA, 0x7F, 0xA4, 0x7C, 0xEC, 0x3C, 0xC3, 0xB2, 0x62, 0xD8,\n    0x9E, 0x83, 0x3D, 0x90, 0x2F, 0xEE, 0x4E, 0x03, 0x90, 0xBD, 0x8F, 0xFB, 0x62, 0xE0, 0x80, 0xBA,\n    0x87, 0x10, 0x8C, 0x7C, 0x1A, 0x51, 0xAD, 0xAF, 0xF6, 0xAE, 0x51, 0x31, 0xEB, 0x5D, 0xD6, 0xFA,\n    0xF0, 0xD6, 0x34, 0x4A, 0x5F, 0xF4, 0x2F, 0x35, 0x64, 0x7D, 0x30, 0x81, 0x62, 0x10, 0x49, 0x68,\n    0x2A, 0x0D, 0xBE, 0x25, 0x9D, 0x05, 0xCB, 0xE3, 0xA3, 0x89, 0x43, 0x50, 0x3F, 0x9B, 0x0B, 0xE8,\n    0x2E, 0x5F, 0x1C, 0x85, 0x4B, 0xB8, 0xB2, 0x02, 0x22, 0xC0, 0xD1, 0x31, 0xBA, 0xD9, 0xCA, 0xFC,\n    0x7B, 0xE6, 0x36, 0x97, 0xED, 0x07, 0x52, 0x05, 0x54, 0xDF, 0x6F, 0x98, 0x30, 0xF5, 0x29, 0xDA,\n    0xAE, 0x5D, 0x80, 0x4F, 0x68, 0x71, 0xA0, 0x94, 0x69, 0x77, 0xFF, 0xD1, 0x0C, 0x1E, 0xB1, 0x71,\n    0x9F, 0x21, 0x58, 0xC7, 0xFF, 0xF3, 0x69, 0x6B, 0xF1, 0xA4, 0x79, 0xF2, 0xF7, 0xD8, 0x36, 0x45,\n    0xC0, 0x36, 0xEE, 0xC9, 0x5F, 0xFE, 0xC4, 0xB9, 0xE1, 0x3E, 0x55, 0x2D, 0xC4, 0x7B, 0xBF, 0x57,\n    0x47, 0x4B, 0x9D, 0xCE, 0xF5, 0x24, 0x4D, 0x08, 0x05, 0x9C, 0x6F, 0x2F, 0x7A, 0x3C, 0x28, 0x5D,\n    0xF2, 0xDF, 0xEA, 0xFD, 0x85, 0x1B, 0x53, 0xED, 0xFE, 0x0E, 0x85, 0x07, 0x10, 0x41, 0x16, 0x2D,\n    0x15, 0xC1, 0x9A, 0x28, 0xB5, 0xBA, 0x96, 0xE7, 0x1E, 0x96, 0x22, 0x4A, 0x0A, 0x98, 0x8E, 0x10,\n    0xA0, 0x75, 0x16, 0xB7, 0x52, 0xD6, 0x71, 0xEA, 0xB2, 0x32, 0x98, 0x51, 0x9C, 0x8C, 0x9F, 0xCA,\n    0x44, 0x96, 0xF4, 0xB1, 0x6F, 0xE8, 0xDE, 0x77, 0x5A, 0xF5, 0x58, 0x3F, 0x1D, 0xA0, 0x94, 0x72,\n    0xF1, 0xE5, 0x0A, 0xAF, 0xC8, 0x3F, 0xDB, 0x3B, 0x35, 0x69, 0x50, 0x68, 0xD4, 0xE7, 0x5F, 0x7F,\n    0xC1, 0x4A, 0x2E, 0x04, 0x6D, 0xD2, 0xFE, 0xF7, 0x2D, 0x83, 0xF6, 0x1E, 0x60, 0x79, 0xF0, 0x36,\n    0x5E, 0xC8, 0x2C, 0x82, 0x7E, 0xD8, 0x59, 0xF7, 0xAA, 0x9D, 0x28, 0x12, 0x46, 0x3F, 0x7C, 0x27,\n    0x07, 0x03, 0xCE, 0x18, 0xB3, 0x3D, 0x7F, 0x74, 0x0E, 0xFF, 0x7F, 0xDF, 0xDC, 0xE4, 0x40, 0x1F,\n    0x08, 0x00, 0x85, 0x0D, 0x10, 0xAC, 0x37, 0xE7, 0x8B, 0xA8, 0x2F, 0xF1, 0xA5, 0x2B, 0x01, 0x3E,\n    0x98, 0x00, 0x22, 0xA4, 0xEF, 0xA0, 0x14, 0x0E, 0x50, 0x33, 0x2D, 0xC2, 0x60, 0xED, 0x94, 0xFD,\n    0x5B, 0xDF, 0x3D, 0x6B, 0x9A, 0xBA, 0x83, 0x96, 0x23, 0x05, 0xE3, 0x79, 0xAE, 0x00, 0xA2, 0xA1,\n    0xC9, 0xFF, 0xB5, 0x3A, 0x55, 0x0E, 0x10, 0x05, 0x7D, 0xFE, 0xA9, 0x10, 0x69, 0x4E, 0xF4, 0x18,\n    0x88, 0x5D, 0xBC, 0xC3, 0xB5, 0x61, 0x84, 0x67, 0xB4, 0x0A, 0x53, 0xB9, 0xE0, 0x3F, 0x82, 0xF3,\n    0x09, 0x05, 0xC4, 0xAB, 0xFF, 0xC7, 0x96, 0x3E, 0x2E, 0xBF, 0xD7, 0x6A, 0xCC, 0xC2, 0x85, 0x44,\n    0xBF, 0x74, 0x3E, 0x3F, 0x95, 0xA5, 0xFD, 0x46, 0xFA, 0x20, 0x00, 0x21, 0x59, 0x38, 0xEE, 0xA6,\n    0xD4, 0xC7, 0x7A, 0x9C, 0x7C, 0x62, 0xB7, 0xDA, 0x04, 0x9B, 0x8E, 0xE6, 0x20, 0x13, 0x73, 0x8C,\n    0x99, 0xC3, 0x13, 0x83, 0x01, 0x16, 0xAB, 0x55, 0x04, 0x3E, 0x18, 0x87, 0xC1, 0xB2, 0xA2, 0xAA,\n    0xEB, 0x8D, 0xE3, 0x6D, 0x0B, 0x48, 0xE4, 0x1B, 0xFF, 0x85, 0x52, 0x8B, 0xF1, 0xAE, 0x47, 0xDD,\n    0xC4, 0x77, 0x7A, 0x78, 0x2B, 0x79, 0xAC, 0x7F, 0x71, 0x73, 0x58, 0x5D, 0x8F, 0x95, 0x37, 0x7B,\n    0xF8, 0x31, 0x80, 0x05, 0x63, 0x60, 0x13, 0x97, 0xF7, 0x71, 0x8A, 0x83, 0x92, 0x6D, 0xDA, 0x37,\n    0xCF, 0xC3, 0x27, 0x68, 0x13, 0xE2, 0x60, 0xF1, 0x01, 0x00, 0xC7, 0x0E, 0xD4, 0xAD, 0xEE, 0x77,\n    0xEF, 0x41, 0x9E, 0x5A, 0x45, 0x63, 0xC5, 0x0D, 0x21, 0x8B, 0x45, 0xD5, 0x18, 0x18, 0x1B, 0x36,\n    0x54, 0x7C, 0x20, 0x03, 0xC1, 0xFE, 0xB1, 0xAF, 0x7D, 0x06, 0x35, 0xEA, 0x0F, 0x4E, 0xB2, 0xC4,\n    0x9C, 0x01, 0xF7, 0x20, 0x4D, 0xD0, 0x00, 0x58, 0x05, 0x80, 0x9F, 0x51, 0xDC, 0xCC, 0x40, 0x4B,\n    0xDA, 0x1F, 0x8F, 0xFE, 0x25, 0xDA, 0xAE, 0x18, 0xF8, 0x22, 0x03, 0xF5, 0xAD, 0x5B, 0x66, 0x24,\n    0x3A, 0x86, 0x16, 0x3E, 0xDD, 0x48, 0x67, 0xB2, 0x64, 0xC4, 0x28, 0xF7, 0x8E, 0xF4, 0x87, 0x9D,\n    0xF9, 0x40, 0x5D, 0x3B, 0xF8, 0x14, 0xC2, 0xEC, 0x57, 0xBF, 0xFB, 0xBF, 0x56, 0x4A, 0xC1, 0x61,\n    0x3E, 0x14, 0xAF, 0x9A, 0x10, 0xEF, 0x60, 0xFA, 0x77, 0xF1, 0x3A, 0xB0, 0x22, 0x2D, 0x09, 0x6B,\n    0x84, 0xAC, 0x1C, 0xB6, 0x03, 0x80, 0x84, 0x89, 0xB3, 0x48, 0x10, 0x01, 0x78, 0xB8, 0x04, 0x95,\n    0x72, 0x80, 0x1D, 0xA0, 0x84, 0x11, 0x5A, 0x8C, 0x6C, 0x95, 0xF8, 0x8C, 0xA9, 0x08, 0x75, 0xB0,\n    0x00, 0x34, 0xA2, 0x5E, 0xAD, 0xBE, 0xBB, 0x7B, 0x7C, 0x1C, 0x4C, 0x24, 0xF0, 0x29, 0xDD, 0x0A,\n    0xB6, 0x46, 0x3B, 0x5D, 0xC9, 0x46, 0x44, 0x3D, 0xF0, 0xE3, 0x3E, 0x9E, 0x61, 0xA1, 0x04, 0x1D,\n    0xC0, 0x82, 0x51, 0x96, 0x1C, 0x52, 0xA5, 0x54, 0xB8, 0xA6, 0x18, 0x90, 0x59, 0x59, 0xE6, 0x84,\n    0x48, 0x22, 0x76, 0xD2, 0x5B, 0x6F, 0xA9, 0x5A, 0x36, 0x01, 0xAA, 0xAA, 0x98, 0x88, 0x23, 0x8A,\n    0x28, 0x0B, 0xB8, 0xFF, 0x26, 0xA3, 0xE2, 0xC9, 0xC8, 0x84, 0xD1, 0x20, 0xE2, 0xA6, 0x43, 0x65,\n    0x52, 0x29, 0xAF, 0xFA, 0xC1, 0xFF, 0xD8, 0x40, 0xB5, 0x77, 0x6B, 0xF4, 0x68, 0x13, 0x98, 0x2A,\n    0xCF, 0x03, 0x0F, 0x2E, 0x02, 0x18, 0x30, 0x26, 0x2B, 0x2B, 0xFA, 0x3D, 0xD5, 0x04, 0xB0, 0x25,\n    0x24, 0x6D, 0xCF, 0xD5, 0xB3, 0x07, 0xAA, 0xBC, 0x48, 0xBD, 0xFC, 0x6F, 0xAB, 0xFA, 0x23, 0xE2,\n    0x96, 0x80, 0x2B, 0x6E, 0x61, 0x84, 0x8C, 0x44, 0xF8, 0xE4, 0x1F, 0xEA, 0x6F, 0x2D, 0xBA, 0xBA,\n    0xF5, 0xD3, 0x3C, 0x98, 0xDF, 0x08, 0xBF, 0x17, 0x81, 0xD0, 0x82, 0x9B, 0xBE, 0xD1, 0x38, 0x19,\n    0x5B, 0x6B, 0x9F, 0x8F, 0xD1, 0xFC, 0xC8, 0xB0, 0xE6, 0x6D, 0x35, 0xEB, 0x4E, 0x72, 0x1C, 0x50,\n    0x35, 0x4B, 0xC0, 0x92, 0xEF, 0xDB, 0x53, 0xEC, 0xB1, 0x7E, 0xA8, 0xB9, 0xFE, 0x7B, 0x3D, 0xC1,\n    0x1E, 0xD3, 0xFC, 0x43, 0xDA, 0x8E, 0xD3, 0xB3, 0x92, 0xCA, 0x35, 0xE6, 0x5B, 0x21, 0x4F, 0x30,\n    0x0D, 0x31, 0x71, 0xE2, 0x2F, 0x98, 0x5A, 0xAD, 0xB3, 0x08, 0x00, 0x08, 0x03, 0x41, 0x06, 0x65,\n    0xEE, 0x41, 0xDC, 0xB5, 0x37, 0xB2, 0x20, 0x6C, 0x2B, 0x35, 0x7D, 0x71, 0xA9, 0x71, 0xDC, 0x56,\n    0x8B, 0x93, 0x41, 0xF7, 0xFF, 0x7A, 0x85, 0x2D, 0x4E, 0xC9, 0xF0, 0xDD, 0x92, 0x78, 0x1B, 0xF7,\n    0x00, 0x9A, 0xA8, 0x14, 0x8D, 0xD7, 0x37, 0xA4, 0xB4, 0x16, 0x8F, 0x03, 0x58, 0x23, 0x5E, 0x45,\n    0xA9, 0xF6, 0x68, 0x43, 0x2E, 0xED, 0xFA, 0x09, 0x61, 0x09, 0xA0, 0x11, 0xE0, 0x9A, 0x5F, 0xB1,\n    0x31, 0x49, 0xE2, 0x2A, 0xB0, 0xDD, 0x84, 0x6F, 0x5E, 0x64, 0x20, 0x4C, 0xC1, 0xC0, 0xF5, 0xD3,\n    0xC3, 0x1C, 0x52, 0x41, 0x24, 0xE7, 0x22, 0xD5, 0xFC, 0x8B, 0x30, 0xE2, 0x9D, 0xBD, 0xEE, 0xBD,\n    0x0E, 0xEE, 0xDA, 0x02, 0x2C, 0x29, 0x20, 0x01, 0x29, 0xC7, 0x2E, 0xA1, 0x0E, 0x1B, 0xFE, 0x6F,\n    0xA8, 0xE8, 0xE5, 0x48, 0xC0, 0x66, 0x5C, 0xB8, 0x06, 0x77, 0x89, 0x00, 0xC7, 0x2F, 0x03, 0x6D,\n    0x4D, 0x57, 0x7F, 0xE7, 0xFF, 0xC5, 0x73, 0x87, 0x08, 0xA4, 0x31, 0xBC, 0xF0, 0x2F, 0x07, 0x64,\n    0x91, 0x45, 0xBB, 0xCF, 0x29, 0x4F, 0xED, 0x5A, 0x47, 0x3D, 0xEF, 0xEB, 0xBF, 0x00, 0xC3, 0xFF,\n    0x1F, 0x61, 0x9A, 0xBF, 0xD5, 0x11, 0xDD, 0xAD, 0xF8, 0x0E, 0x29, 0xB9, 0x80, 0x90, 0x2F, 0xE5,\n    0x5F, 0xBF, 0xF0, 0x0F, 0xFA, 0xB0, 0x5D, 0x80, 0x08, 0x0A, 0x82, 0xA3, 0x91, 0xE1, 0x69, 0x9A,\n    0x21, 0x44, 0x72, 0x3A, 0xE4, 0xC3, 0x9E, 0xE6, 0x40, 0x47, 0xF8, 0x26, 0xEB, 0xAF, 0xF8, 0x07,\n    0xEC, 0x3B, 0x04, 0xAD, 0xD8, 0xD1, 0x08, 0x90, 0x57, 0xFE, 0x70, 0x19, 0x5F, 0x7A, 0x66, 0x40,\n    0x90, 0xF7, 0xF6, 0x55, 0x61, 0x46, 0xF0, 0x9D, 0x97, 0xB3, 0x0C, 0x73, 0x43, 0xFA, 0x36, 0x73,\n    0xFA, 0x2B, 0x36, 0xBA, 0xC2, 0x57, 0xE8, 0xE0, 0xFA, 0xB1, 0xFA, 0xE0, 0x8F, 0x69, 0xFF, 0x70,\n    0x9D, 0xF0, 0x26, 0x96, 0xDF, 0xC3, 0x80, 0x0C, 0x08, 0x6F, 0x58, 0x27, 0x3D, 0x68, 0x30, 0x3E,\n    0x46, 0xD0, 0xCA, 0xE4, 0x30, 0x38, 0x31, 0x58, 0x2C, 0x82, 0x1A, 0x9F, 0x73, 0x9B, 0xAD, 0xB0,\n    0xFB, 0xBF, 0xD0, 0x04, 0x7E, 0xC8, 0x04, 0xD9, 0x43, 0xF7, 0x5F, 0x5F, 0xFC, 0x39, 0xC1, 0x77,\n    0x00, 0x1C, 0xC7, 0x24, 0xC0, 0x87, 0x8B, 0x61, 0x7B, 0xE0, 0xD8, 0x00, 0x64, 0x41, 0x6B, 0x10,\n    0x5D, 0x41, 0xBF, 0xF8, 0x09, 0xF2, 0x9E, 0x7D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00\n};\n\n// format and resolution\nstruct DecodeDesc {\n    VA_RT_Format format = VA_RT_FORMAT_YUV420;\n    VA_RT_Format sfcformat = VA_RT_FORMAT_YUV420;\n    uint32_t    width;\n    uint32_t    height;\n    uint32_t    sfc_widht;\n    uint32_t    sfc_height;\n    uint16_t    surfaces_num;\n};\n\n"
  },
  {
    "path": "vendor/intel/sfcsample/Makefile.am",
    "content": "\n# Copyright (C) 2018 Intel Corporation. All Rights Reserved.\n# \n# Permission is hereby granted, free of charge, to any person obtaining a\n# copy of this software and associated documentation files (the\n# \"Software\"), to deal in the Software without restriction, including\n# without limitation the rights to use, copy, modify, merge, publish,\n# distribute, sub license, and/or sell copies of the Software, and to\n# permit persons to whom the Software is furnished to do so, subject to\n# the following conditions:\n# \n# The above copyright notice and this permission notice (including the\n# next paragraph) shall be included in all copies or substantial portions\n# of the Software.\n# \n# THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n# IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR\n# ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n\nbin_PROGRAMS = sfcsample\n\n\nAM_CPPFLAGS = \\\n\t-Wall\t\\\n\t-fstack-protector\t\\\n\t$(LIBVA_CFLAGS)\t\t\\\n\t-I$(top_srcdir)/common\t\\\n\t-I$(top_srcdir)/vendor/intel/sfcsample\t\\\n\t$(NULL)\n\nTEST_LIBS = \\\n\t$(LIBVA_LIBS)\t\t\t\t\\\n\t$(top_builddir)/common/libva-display.la\t\\\n\t$(NULL)\n\n\nsfcsample_LDADD = $(TEST_LIBS)\n\nsource_c = TestMain.cpp\nsource_c += VDecAccelVA.cpp\n\nsfcsample_SOURCES = $(source_c)\n\n\nvalgrind:$(bin_PROGRAMS)\n\tfor a in $(bin_PROGRAMS); do \\\n\t\tvalgrind --leak-check=full --show-reachable=yes .libs/$$a; \\\n\tdone\n\nEXTRA_DIST =\t\t\\\n\tVDecAccelVA.h \t\\\n\tDecodeParamBuffer.h\t\\\n\t$(NULL)\n"
  },
  {
    "path": "vendor/intel/sfcsample/TestMain.cpp",
    "content": "/*\n * * Copyright (C) 2018 Intel Corporation. All Rights Reserved.\n * *\n * * Permission is hereby granted, free of charge, to any person obtaining a\n * * copy of this software and associated documentation files (the\n * * \"Software\"), to deal in the Software without restriction, including\n * * without limitation the rights to use, copy, modify, merge, publish,\n * * distribute, sub license, and/or sell copies of the Software, and to\n * * permit persons to whom the Software is furnished to do so, subject to\n * * the following conditions:\n * *\n * * The above copyright notice and this permission notice (including the\n * * next paragraph) shall be included in all copies or substantial portions\n * * of the Software.\n * *\n * * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n * * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n * * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n * * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR\n * * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n * * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n * */\n\n#include \"VDecAccelVA.h\"\nusing namespace mvaccel;\n\n\nint main(int argc, char** argv)\n{\n    VDecAccelVAImpl VideoProc;\n\n    //initialize, check caps and prepare buffers\n    if (VideoProc.Open() != 0) {\n        printf(\"Failed to open decode accelerator\");\n        return 1;\n    }\n\n    //actual decode process\n    if (VideoProc.DecodePicture() != 0) {\n        printf(\"Failed to decode picture\");\n        return 1;\n    }\n    return 0;\n}"
  },
  {
    "path": "vendor/intel/sfcsample/VDecAccelVA.cpp",
    "content": "/*\n * * Copyright (C) 2018 Intel Corporation. All Rights Reserved.\n * *\n ** Permission is hereby granted, free of charge, to any person obtaining a\n * * copy of this software and associated documentation files (the\n * * \"Software\"), to deal in the Software without restriction, including\n * * without limitation the rights to use, copy, modify, merge, publish,\n * * distribute, sub license, and/or sell copies of the Software, and to\n * * permit persons to whom the Software is furnished to do so, subject to\n * * the following conditions:\n * *\n * * The above copyright notice and this permission notice (including the\n * * next paragraph) shall be included in all copies or substantial portions\n * * of the Software.\n * *\n * * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n * * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n * * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n * * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR\n * * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n * * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n * */\n\n\n/**\n * @file VDecAccelVA.cpp\n * @brief LibVA decode accelerator implementation.\n */\n\n#include <unistd.h>\n#include <fcntl.h>\n#include <sys/mman.h>\n#include <sys/ioctl.h>\n#include <stdio.h>\n#include <stdlib.h>\n#include <iostream>\n#include <assert.h>\n#include <algorithm>\n#include <string.h>\n#include \"VDecAccelVA.h\"\n#include <va/va.h>\n#include <va/va_drm.h>\n\n#define VASUCCEEDED(err)    (err == VA_STATUS_SUCCESS)\n#define VAFAILED(err)       (err != VA_STATUS_SUCCESS)\n\nmvaccel::VDecAccelVAImpl::VDecAccelVAImpl(void* device)\n    : m_vaDisplay(0)\n    , m_vaProfile(VAProfileNone)\n    , m_vaEntrypoint(VAEntrypointVLD)\n    , m_vaConfigID(0)\n    , m_vaContextID(0)\n    , m_surfaceType(VA_RT_FORMAT_YUV420)\n{\n    if (device)\n        m_vaDisplay = *(reinterpret_cast<VADisplay*>(device));\n\n    if (!m_vaDisplay) {\n        printf(\"Invalid VADisplay\\n\");\n        delete this;\n        return;\n    }\n}\n\nmvaccel::VDecAccelVAImpl::VDecAccelVAImpl()\n    : m_vaDisplay(0)\n    , m_vaProfile(VAProfileNone)\n    , m_vaEntrypoint(VAEntrypointVLD)\n    , m_vaConfigID(0)\n    , m_vaContextID(0)\n    , m_surfaceType(VA_RT_FORMAT_YUV420)\n{\n}\n\nmvaccel::VDecAccelVAImpl::~VDecAccelVAImpl()\n{\n    if (drm_fd != -1) {\n        close(drm_fd);\n    }\n}\n\n\nint mvaccel::VDecAccelVAImpl::Open()\n{\n    VAStatus vaStatus = VA_STATUS_ERROR_UNKNOWN;\n\n    //get display device\n    int MajorVer, MinorVer;\n\n    if (vaStatus != VA_STATUS_SUCCESS) {\n        drm_fd = open(\"/dev/dri/renderD128\", O_RDWR);\n        if (drm_fd >= 0) {\n            m_vaDisplay = vaGetDisplayDRM(drm_fd);\n            vaStatus = vaInitialize(m_vaDisplay, &MajorVer, &MinorVer);\n        }\n    }\n\n    //initialize decode description\n    create_decode_desc();\n\n    m_vaProfile = VAProfileH264Main;\n\n    // We only support VLD currently\n    m_vaEntrypoint = VAEntrypointVLD;\n\n    int count = 0;\n    count = vaMaxNumEntrypoints(m_vaDisplay);\n    assert(count);\n\n    std::vector<VAEntrypoint> vaEntrypoints(count);\n    vaStatus = vaQueryConfigEntrypoints(\n                   m_vaDisplay,\n                   m_vaProfile,\n                   &vaEntrypoints[0],\n                   &count);\n    if (VAFAILED(vaStatus))\n        printf(\"vaQueryConfigEntrypoints fail\\n\");\n\n    std::vector<VAEntrypoint>::iterator it = std::find(vaEntrypoints.begin(), vaEntrypoints.end(), m_vaEntrypoint);\n    if (it == vaEntrypoints.end()) {\n        if (VAFAILED(vaStatus))\n            printf(\"VAEntrypoint is not found\\n\");\n        return 1;\n    }\n\n    if (!is_config_compatible(m_DecodeDesc)) {\n        if (VAFAILED(vaStatus))\n            printf(\"Decode configuration is not compatible\\n\");\n        return 1;\n    }\n\n    // Setup config attributes\n    std::vector<VAConfigAttrib> vaAttribs;\n    prepare_config_attribs(m_DecodeDesc, vaAttribs);\n    // Create config\n    vaStatus = vaCreateConfig(\n                   m_vaDisplay,\n                   m_vaProfile,\n                   m_vaEntrypoint,\n                   &vaAttribs.at(0),\n                   vaAttribs.size(),\n                   &m_vaConfigID\n               );\n    if (VAFAILED(vaStatus))\n        printf(\"vaCreateConfig fail\\n\");\n\n    if (!is_rt_foramt_supported(m_DecodeDesc)) {\n        if (VAFAILED(vaStatus))\n            printf(\"Render target is not supported\\n\");\n        return 1;\n    }\n\n    // Calculate aligned width/height for gfx surface\n    uint32_t aligned_width  = m_DecodeDesc.width;\n    uint32_t aligned_height = m_DecodeDesc.height;\n\n    // Setup surface attributes\n    prepare_surface_attribs(m_DecodeDesc, m_vaSurfAttribs, false);\n    // Create surfaces\n    for (uint32_t i = 0; i < m_DecodeDesc.surfaces_num; i++) {\n        VASurfaceID vaID = VA_INVALID_SURFACE;\n        vaStatus = vaCreateSurfaces(\n                       m_vaDisplay,\n                       m_surfaceType,\n                       aligned_width,\n                       aligned_height,\n                       &vaID,\n                       1,\n                       &(m_vaSurfAttribs.at(0)),\n                       m_vaSurfAttribs.size()\n                   );\n\n        if (VASUCCEEDED(vaStatus))\n            m_vaIDs.push_back(vaID);\n    }\n\n    // Check if surfaces created is equal to requested.\n    if (m_vaIDs.size() != m_DecodeDesc.surfaces_num) {\n        if (VAFAILED(vaStatus))\n            printf(\"Create surface fail\\n\");\n        return 1;\n    }\n\n    // Create context\n    vaStatus = vaCreateContext(\n                   m_vaDisplay,\n                   m_vaConfigID,\n                   aligned_width,\n                   aligned_height,\n                   VA_PROGRESSIVE,\n                   &(m_vaIDs.at(0)),\n                   m_vaIDs.size(),\n                   &m_vaContextID\n               );\n    if (VAFAILED(vaStatus))\n        printf(\"vaCreateContext fail\\n\");\n\n    check_process_pipeline_caps(m_DecodeDesc);\n\n    return vaStatus;\n}\n\nvoid mvaccel::VDecAccelVAImpl::Close()\n{\n    std::vector<VASurfaceID>::iterator it;\n    for (it = m_vaIDs.begin(); it != m_vaIDs.end(); ++it)\n        delete_surface(*it);\n\n    vaDestroyConfig(m_vaDisplay, m_vaConfigID);\n    vaDestroyContext(m_vaDisplay, m_vaContextID);\n\n    m_images.clear();\n    m_vaIDs.clear();\n    m_vaSurfAttribs.clear();\n\n    m_vaConfigID = 0;\n    m_vaContextID = 0;\n}\n\nuint32_t mvaccel::VDecAccelVAImpl::GetSurfaceID(uint32_t index)\n{\n    assert(index < m_vaIDs.size());\n    return m_vaIDs[index];\n}\n\n/**\n * @brief   Check if video decode acceleration description is supported.\n * @param   cc Video decode acceleration description.\n * @return  true if supported, false if not.\n */\nbool mvaccel::VDecAccelVAImpl::is_config_compatible(DecodeDesc& desc)\n{\n    if (!is_slice_mode_supported(desc))\n        return false;\n\n    if (!is_encryption_supported(desc))\n        return false;\n\n    if (!is_sfc_config_supported(desc))\n        return false;\n\n    return true;\n}\n\n/**\n * @brief   Check if long or short format is supported not not.\n * @param   cc Video decode acceleration description.\n * @return  true if supported, false if not.\n */\nbool mvaccel::VDecAccelVAImpl::is_slice_mode_supported(DecodeDesc& desc)\n{\n    VAConfigAttrib vaAttrib;\n    memset(&vaAttrib, 0, sizeof(vaAttrib));\n    vaAttrib.type = VAConfigAttribDecSliceMode;\n    vaAttrib.value = 0;\n\n    vaGetConfigAttributes(\n        m_vaDisplay,\n        m_vaProfile,\n        m_vaEntrypoint,\n        &vaAttrib,\n        1);\n\n    if (vaAttrib.value & VA_DEC_SLICE_MODE_BASE || vaAttrib.value & VA_DEC_SLICE_MODE_NORMAL)\n        return true;\n    else\n        return false;\n}\n\n/**\n * @brief   Check if encryption is supported or not.\n * @param   cc Video decode acceleration description.\n * @return  true if supported, false if not.\n */\nbool mvaccel::VDecAccelVAImpl::is_encryption_supported(DecodeDesc& desc)\n{\n    VAConfigAttrib vaAttrib;\n    memset(&vaAttrib, 0, sizeof(vaAttrib));\n    vaAttrib.type = VAConfigAttribEncryption;\n    vaAttrib.value = 0;\n\n    vaGetConfigAttributes(\n        m_vaDisplay,\n        m_vaProfile,\n        m_vaEntrypoint,\n        &vaAttrib,\n        1\n    );\n    if (vaAttrib.value & VA_ATTRIB_NOT_SUPPORTED)\n        return true;\n    else\n        return false;\n}\n\n/**\n * @brief   Check if SFC attribute is supported or not.\n * @param   cc Video decode acceleration description.\n * @return  true if supported, false if not.\n */\nbool mvaccel::VDecAccelVAImpl::is_sfc_config_supported(DecodeDesc& desc)\n{\n    // SFC attribute check\n    VAConfigAttrib vaAttrib;\n    memset(&vaAttrib, 0, sizeof(vaAttrib));\n    vaAttrib.type = VAConfigAttribDecProcessing;\n    vaAttrib.value = 0;\n\n    vaGetConfigAttributes(\n        m_vaDisplay,\n        m_vaProfile,\n        m_vaEntrypoint,\n        &vaAttrib,\n        1);\n\n    if (vaAttrib.value != VA_DEC_PROCESSING)\n        return false;\n\n    return true;\n}\n\n/**\n * @brief   Check if render target format is supported or not.\n * @param   cc Video decode acceleration description.\n * @return  true if supported, false if not.\n */\nbool mvaccel::VDecAccelVAImpl::is_rt_foramt_supported(DecodeDesc& desc)\n{\n    uint32_t count = VASurfaceAttribCount + vaMaxNumImageFormats(m_vaDisplay);\n    std::vector<VASurfaceAttrib> attribs(count);\n    VAStatus vaStatus = VA_STATUS_SUCCESS;\n    vaStatus = vaQuerySurfaceAttributes(\n                   m_vaDisplay,\n                   m_vaConfigID,\n                   &attribs.at(0),\n                   &count\n               );\n    if (VAFAILED(vaStatus)) {\n        printf(\"vaQuerySurfaceAttributes failed\\n\");\n        return false;\n    }\n\n    return true;\n}\n\n/**\n * @brief   Prepare config attribs VAContext creation.\n * @param   desc Video decode acceleration description.\n * @param   vaAttribs Array of VASurfaceAttrib which will contains the attrib.\n */\nvoid mvaccel::VDecAccelVAImpl::prepare_config_attribs(\n    DecodeDesc& desc,\n    VAConfigAttribArray& attribs)\n{\n    VAConfigAttrib attrib;\n    memset(&attrib, 0, sizeof(attrib));\n\n    // RT formats\n    attrib.type = VAConfigAttribRTFormat;\n    attrib.value = VA_RT_FORMAT_YUV420;\n    attribs.push_back(attrib);\n\n    // Slice Mode\n    attrib.type = VAConfigAttribDecSliceMode;\n    attrib.value = VA_DEC_SLICE_MODE_NORMAL;\n    attribs.push_back(attrib);\n\n    //dec processing attribs\n    attrib.type = VAConfigAttribDecProcessing;\n    attrib.value = VA_DEC_PROCESSING;\n    attribs.push_back(attrib);\n}\n\n/**\n * @brief   Prepare the VA surface attribs for creation.\n * @param   desc Video decode acceleration description.\n * @param   vaSurfAttribs Array of VASurfaceAttrib which will contains attrib.\n */\nvoid mvaccel::VDecAccelVAImpl::prepare_surface_attribs(\n    DecodeDesc& desc,\n    VASurfaceAttribArray& attribs,\n    bool bDecodeDownsamplingHinted)\n{\n    VASurfaceAttrib attrib;\n    memset(&attrib, 0, sizeof(attrib));\n\n    attrib.type = VASurfaceAttribPixelFormat;\n    attrib.flags = VA_SURFACE_ATTRIB_SETTABLE;\n    attrib.value.type = VAGenericValueTypeInteger;\n\n    // VA_FOURCC and MVFOURCC are interchangeable\n    if (bDecodeDownsamplingHinted)\n        attrib.value.value.i = VA_FOURCC_ARGB;\n    else\n        attrib.value.value.i = VA_FOURCC_NV12;\n\n    attribs.push_back(attrib);\n}\n\n/**\n * @brief   Delete allocated surface\n * @param   surfaceID Index of allocated surface. After delete, the surface\n *          values will be set to invalid value.\n */\nvoid mvaccel::VDecAccelVAImpl::delete_surface(VASurfaceID& vaID)\n{\n    // Make sure no others is using this surface\n    if (m_images.count(vaID))\n        m_images.erase(m_images.find(vaID));\n\n    vaDestroySurfaces(m_vaDisplay, &vaID, 1);\n    vaID = VA_INVALID_SURFACE;\n}\n\nuint8_t* mvaccel::VDecAccelVAImpl::lock_surface(VASurfaceID id, bool write)\n{\n    // Check if decode is completed\n    VAStatus status = vaSyncSurface(m_vaDisplay, id);\n    if (VAFAILED(status)) {\n        printf(\"vaSyncSurface Error.\\n\");\n        return NULL;\n    }\n\n    //sync decode surface\n    VASurfaceStatus surf_status = VASurfaceSkipped;\n    for (;;) {\n        vaQuerySurfaceStatus(m_vaDisplay, id, &surf_status);\n        if (surf_status != VASurfaceRendering &&\n            surf_status != VASurfaceDisplaying)\n            break;\n    }\n\n    if (surf_status != VASurfaceReady) {\n        printf(\"Surface is not ready by vaQueryStatusSurface\");\n        return NULL;\n    }\n\n    uint8_t* buffer = NULL;\n    //map the decoded buffer\n    for (;;) {\n        status = vaDeriveImage(m_vaDisplay, id, &m_images[id]);\n        if (VAFAILED(status))\n            printf(\"vaDeriveImage fail. \\n\");\n\n        status = vaMapBuffer(m_vaDisplay, m_images[id].buf, (void**)&buffer);\n        if (VAFAILED(status))\n            printf(\"vaDeriveImage fail. \\n\");\n\n        break;\n    }\n\n    if (VAFAILED(status)) {\n        status = vaUnmapBuffer(m_vaDisplay, m_images[id].buf);\n        status = vaDestroyImage(m_vaDisplay, m_images[id].image_id);\n    }\n    return buffer;\n}\n\nvoid mvaccel::VDecAccelVAImpl::unlock_surface(VASurfaceID id)\n{\n    VAStatus status = vaUnmapBuffer(m_vaDisplay, m_images[id].buf);\n    assert(VASUCCEEDED(status));\n\n    status = vaDestroyImage(m_vaDisplay, m_images[id].image_id);\n    assert(VASUCCEEDED(status));\n}\n\n//prepare basic format/resolution parameter\nvoid mvaccel::VDecAccelVAImpl::create_decode_desc()\n{\n    m_DecodeDesc.format       = VA_FOURCC_NV12;\n    m_DecodeDesc.sfcformat    = VA_FOURCC_ARGB;\n    m_DecodeDesc.width        = 352;\n    m_DecodeDesc.height       = 288;\n    m_DecodeDesc.sfc_widht    = 176;\n    m_DecodeDesc.sfc_height   = 144;\n    m_DecodeDesc.surfaces_num = 2;\n}\n\nbool mvaccel::VDecAccelVAImpl::DecodePicture()\n{\n    // Create addition surfaces for scaled video output\n    if (m_sfcIDs.empty()) {\n        if (create_resources())\n            return 1;\n    }\n\n    VAStatus vaStatus = VA_STATUS_SUCCESS;\n    VAContextID vaContextID = 0;\n    VASurfaceID vaID = 0;\n\n    //va begin picture\n    vaStatus = vaBeginPicture(m_vaDisplay, m_vaContextID, vaID);\n    if (VAFAILED(vaStatus))\n        printf(\"vaBeginPicture fail.\");\n\n    // Set Context ID for End Picture\n    vaContextID = m_vaContextID;\n\n    std::vector<VABufferID> vaBufferIDs;\n    // Pic parameters buffers\n    VABufferID vaBufferID;\n    vaStatus = vaCreateBuffer(m_vaDisplay,\n                              m_vaContextID,\n                              VAPictureParameterBufferType,\n                              sizeof(g_PicParams_AVC),\n                              1,\n                              (uint8_t*)g_PicParams_AVC,\n                              &vaBufferID);\n    assert(VASUCCEEDED(vaStatus));\n    if (VASUCCEEDED(vaStatus))\n        vaBufferIDs.push_back(vaBufferID);\n\n    // IQ matrics\n    vaStatus = vaCreateBuffer(m_vaDisplay,\n                              m_vaContextID,\n                              VAIQMatrixBufferType,\n                              sizeof(g_Qmatrix_AVC),\n                              1,\n                              (uint8_t*)g_Qmatrix_AVC,\n                              &vaBufferID);\n    assert(VASUCCEEDED(vaStatus));\n    if (VASUCCEEDED(vaStatus))\n        vaBufferIDs.push_back(vaBufferID);\n\n    //slice parameter buffers\n    vaStatus = vaCreateBuffer(m_vaDisplay,\n                              m_vaContextID,\n                              VASliceParameterBufferType,\n                              sizeof(g_SlcParams_AVC),\n                              1,\n                              (uint8_t*)g_SlcParams_AVC,\n                              &vaBufferID);\n    assert(VASUCCEEDED(vaStatus));\n    if (VASUCCEEDED(vaStatus))\n        vaBufferIDs.push_back(vaBufferID);\n\n    //BITSTREAM buffers\n    vaStatus = vaCreateBuffer(m_vaDisplay,\n                              m_vaContextID,\n                              VASliceDataBufferType,\n                              sizeof(g_Bitstream_AVC),\n                              1,\n                              (uint8_t*)g_Bitstream_AVC,\n                              &vaBufferID);\n    assert(VASUCCEEDED(vaStatus));\n    if (VASUCCEEDED(vaStatus))\n        vaBufferIDs.push_back(vaBufferID);\n\n    //PROC_PIPELINE buffers\n    vaStatus = vaCreateBuffer(m_vaDisplay,\n                              m_vaContextID,\n                              VAProcPipelineParameterBufferType,\n                              sizeof(m_vaProcBuffer),\n                              1,\n                              (uint8_t*)&m_vaProcBuffer,\n                              &vaBufferID);\n    assert(VASUCCEEDED(vaStatus));\n    if (VASUCCEEDED(vaStatus))\n        vaBufferIDs.push_back(vaBufferID);\n\n    if (vaBufferIDs.size()) {\n        vaStatus = vaRenderPicture(\n                       m_vaDisplay,\n                       m_vaContextID,\n                       &(vaBufferIDs.at(0)),\n                       vaBufferIDs.size());\n    }\n\n    //va end picture\n    vaStatus = vaEndPicture(m_vaDisplay, vaContextID);\n    if (VAFAILED(vaStatus))\n        printf(\"vaEndPicture fail.\");\n\n    //lock surface\n    uint8_t* gfx_surface_buf = lock_surface(m_sfcIDs[0], false);\n    if (gfx_surface_buf == NULL) {\n        printf(\"Fail to lock gfx surface\\n\");\n        return 1;\n    }\n\n    //write to yuv file\n    FILE* sfc_stream = fopen(\"sfc_sample_176_144_argb.yuv\", \"wb\");\n    uint32_t file_size = m_DecodeDesc.sfc_widht * m_DecodeDesc.sfc_height * 4; //ARGB format\n    if (sfc_stream) {\n        fwrite(gfx_surface_buf, file_size, 1, sfc_stream);\n        fclose(sfc_stream);\n    }\n\n    //unlock surface and clear\n    unlock_surface(m_sfcIDs[0]);\n    Close();\n\n    return (VASUCCEEDED(vaStatus) ? 0 : 1);\n}\n\n// check vaQueryVideoProcPipelineCaps\nint mvaccel::VDecAccelVAImpl::check_process_pipeline_caps(DecodeDesc& desc)\n{\n    VAProcPipelineCaps caps;\n\n    VAProcColorStandardType inputCST[VAProcColorStandardCount];\n    VAProcColorStandardType outputCST[VAProcColorStandardCount];\n    caps.input_color_standards = inputCST;\n    caps.output_color_standards = outputCST;\n\n    m_in4CC.resize(vaMaxNumImageFormats(m_vaDisplay));\n    m_out4CC.resize(vaMaxNumImageFormats(m_vaDisplay));\n    caps.input_pixel_format = &m_in4CC.at(0);\n    caps.output_pixel_format = &m_out4CC.at(0);\n\n    VABufferID filterIDs[VAProcFilterCount];\n    uint32_t filterCount = 0;\n\n    VAStatus vaStatus = VA_STATUS_SUCCESS;\n    vaStatus = vaQueryVideoProcPipelineCaps(\n                   m_vaDisplay,\n                   m_vaContextID,\n                   filterIDs,\n                   filterCount,\n                   &caps\n               );\n    if (VAFAILED(vaStatus)) {\n        printf(\"vaQueryVideoProcPipelineCaps fail\\n\");\n        return 1;\n    }\n\n    m_in4CC.resize(caps.num_input_pixel_formats);\n    m_out4CC.resize(caps.num_output_pixel_formats);\n\n    return 0;\n}\n\nint mvaccel::VDecAccelVAImpl::create_resources()\n{\n    if (m_sfcIDs.empty())\n        m_sfcIDs.resize(1);\n\n    // Create addition surfaces for scaled video output\n    uint16_t width = m_DecodeDesc.sfc_widht;\n    uint16_t height = m_DecodeDesc.sfc_height;\n\n    //prepare sfc surface attribs\n    DecodeDesc SfcDesc;\n    SfcDesc.sfcformat = VA_FOURCC('A', 'R', 'G', 'B');\n    VASurfaceAttribArray Sfc_vaSurfAttribs;\n    prepare_surface_attribs(SfcDesc, Sfc_vaSurfAttribs, true);\n\n    uint32_t surfaceType = m_surfaceType;\n    m_surfaceType = (uint32_t)SfcDesc.sfcformat;\n\n    for (uint32_t i = 0; i < m_sfcIDs.size(); i++) {\n        vaCreateSurfaces(\n            m_vaDisplay,\n            m_surfaceType,\n            width,\n            height,\n            &m_sfcIDs[i],\n            1,\n            &(Sfc_vaSurfAttribs.at(0)),\n            Sfc_vaSurfAttribs.size()\n        );\n    }\n    m_surfaceType = surfaceType;\n    m_rectSFC.x = m_rectSFC.y = 0;\n    m_rectSFC.width = width;\n    m_rectSFC.height = height;\n\n    // Prepare VAProcPipelineParameterBuffer for decode\n    VAProcPipelineParameterBuffer buffer;\n    memset(&buffer, 0, sizeof(buffer));\n\n    m_rectSrc.x = m_rectSrc.y = 0;\n    m_rectSrc.width = (uint16_t)m_DecodeDesc.width;\n    m_rectSrc.height = (uint16_t)m_DecodeDesc.height;\n\n    buffer.surface_region = &m_rectSrc;\n    buffer.output_region = &m_rectSFC;\n    buffer.additional_outputs = (VASurfaceID*) & (m_sfcIDs[0]);\n    buffer.num_additional_outputs = 1;\n    m_vaProcBuffer = buffer;\n\n    return 0;\n}\n"
  },
  {
    "path": "vendor/intel/sfcsample/VDecAccelVA.h",
    "content": "/*\n * * Copyright (C) 2018 Intel Corporation. All Rights Reserved.\n * *\n ** Permission is hereby granted, free of charge, to any person obtaining a\n * * copy of this software and associated documentation files (the\n * * \"Software\"), to deal in the Software without restriction, including\n * * without limitation the rights to use, copy, modify, merge, publish,\n * * distribute, sub license, and/or sell copies of the Software, and to\n * * permit persons to whom the Software is furnished to do so, subject to\n * * the following conditions:\n * *\n * * The above copyright notice and this permission notice (including the\n * * next paragraph) shall be included in all copies or substantial portions\n * * of the Software.\n * *\n * * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n * * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n * * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n * * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR\n * * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n * * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n * */\n\n/**\n * @file VDecAccelVA.h\n * @brief LibVA decode accelerator declaration\n */\n\n#ifndef MV_ACCELERATOR_VAAPI_DECODE_H\n#define MV_ACCELERATOR_VAAPI_DECODE_H\n\n#include <stdio.h>\n#include <stdlib.h>\n#include <stdint.h>\n#include <map>\n#include <vector>\n#include <algorithm>\n#include <va/va.h>\n#include \"DecodeParamBuffer.h\"\n\nnamespace mvaccel\n{\n/**\n * @brief LibVA decode accelerator\n */\nclass VDecAccelVAImpl\n{\npublic:\n    VDecAccelVAImpl(void* device);\n    VDecAccelVAImpl();\n    virtual ~VDecAccelVAImpl();\n\n    // VDecAccel interface\n    virtual int         Open();\n    virtual void        Close();\n    virtual uint32_t    GetSurfaceID(uint32_t index);\n    bool                DecodePicture();\n    void                bind_buffer(uint8_t* base);\n\nprotected:\n    // GfxSurfaceAccess interface\n    uint32_t    get_width(VASurfaceID id);\n    uint32_t    get_height(VASurfaceID id);\n    uint32_t    get_stride(VASurfaceID id);\n    uint8_t*    lock_surface(VASurfaceID id, bool write);\n    void        unlock_surface(VASurfaceID id);\n    void*       get_raw(VASurfaceID id);\n    void*       get_device(VASurfaceID id);\n\n    typedef std::vector<VAConfigAttrib>     VAConfigAttribArray;\n    typedef std::vector<VASurfaceAttrib>    VASurfaceAttribArray;\n\n    // Member functions inherit by children\n    virtual bool    is_config_compatible(DecodeDesc& desc);\n    virtual bool    is_rt_foramt_supported(DecodeDesc& desc);\n    virtual void    prepare_config_attribs(\n        DecodeDesc& desc,\n        VAConfigAttribArray& attribs);\n    virtual void    prepare_surface_attribs(\n        DecodeDesc& desc,\n        VASurfaceAttribArray& attribs,\n        bool bDecodeDownsamplingHinted);\n\n    // Member fucntions NOT inherit by children\n    bool        is_slice_mode_supported(DecodeDesc& desc);\n    bool        is_encryption_supported(DecodeDesc& desc);\n    bool        is_sfc_config_supported(DecodeDesc& desc);\n    VAStatus    render_picture(VAContextID& vaContextID);\n    VAStatus    query_status();\n    VAStatus    create_surface(\n        uint32_t width,\n        uint32_t height,\n        VASurfaceAttribArray& vaAttribs,\n        VASurfaceID& vaID);\n    void        delete_surface(VASurfaceID& vaID);\n    void        create_decode_desc();\n    int         check_process_pipeline_caps(DecodeDesc& desc);\n    int         create_resources();\n\nprotected:\n    int drm_fd = -1;\n    // VA ID & Handles\n    VADisplay       m_vaDisplay;    /**< @brief VA hardware device */\n    VAProfile       m_vaProfile;    /**< @brief Video decoder profile */\n    VAEntrypoint    m_vaEntrypoint; /**< @brief VA entry point */\n    VAConfigID      m_vaConfigID;   /**< @brief VA decode config id*/\n    VAContextID     m_vaContextID;  /**< @brief Video decoder context */\n\n    // VASurfaces id and attributes\n    std::vector<VASurfaceID>    m_vaIDs;\n    VASurfaceAttribArray        m_vaSurfAttribs;\n\n    uint32_t    m_surfaceType;   /**< @brief surface type */\n\n    // Gfx surface access management\n    std::map<VASurfaceID, VAImage>      m_images;   /**< @brief buf pointer */\n\n    enum SFC {\n        MAX_IN_W,\n        MAX_IN_H,\n        MIN_IN_W,\n        MIN_IN_H,\n        MAX_OUT_W,\n        MAX_OUT_H,\n        MIN_OUT_W,\n        MIN_OUT_H,\n        NEW_W,\n        NEW_H,\n    };\n\n    DecodeDesc                    m_DecodeDesc{};     /**< @brief decode discription */\n    VARectangle                   m_rectSrc{};        /**< @brief Rectangle for source input */\n    VARectangle                   m_rectSFC{};        /**< @brief Rectangle for SFC output */\n    std::vector<uint32_t>         m_in4CC{};          /**< @brief input FOURCC */\n    std::vector<uint32_t>         m_out4CC{};         /**< @brief output FOURCC */\n    std::map<SFC, uint32_t>        m_sfcSize{};       /**< @brief SFC sizes */\n    std::vector<VASurfaceID>      m_sfcIDs{};         /**< @brief sfc surfaces */\n    VAProcPipelineParameterBuffer m_vaProcBuffer{};   /**< @brief sfc pipeline buffer */\n};\n} // namespace mvaccel\n#endif // MV_ACCELERATOR_VAAPI_DECODE_H\n"
  },
  {
    "path": "vendor/intel/sfcsample/meson.build",
    "content": "if use_drm\n  executable('sfcsample', [ 'TestMain.cpp', 'VDecAccelVA.cpp' ],\n             dependencies: libva_display_dep,\n             install: true)\nendif\n"
  },
  {
    "path": "videoprocess/Makefile.am",
    "content": "# Copyright (c) 2022 Intel Corporation. All Rights Reserved.\n#\n# Permission is hereby granted, free of charge, to any person obtaining a\n# copy of this software and associated documentation files (the\n# \"Software\"), to deal in the Software without restriction, including\n# without limitation the rights to use, copy, modify, merge, publish,\n# distribute, sub license, and/or sell copies of the Software, and to\n# permit persons to whom the Software is furnished to do so, subject to\n# the following conditions:\n#\n# The above copyright notice and this permission notice (including the\n# next paragraph) shall be included in all copies or substantial portions\n# of the Software.\n#\n# THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n# IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR\n# ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\nbin_PROGRAMS = vavpp vppscaling_csc vppdenoise vppsharpness vppchromasitting vppblending vppscaling_n_out_usrptr vacopy vpp3dlut vpphdr_tm\n\nAM_CPPFLAGS = \\\n\t-Wall\t\t\t\t\t\\\n\t$(LIBVA_CFLAGS)\t\t\t\t\\\n\t-I$(top_srcdir)/common\t\t\t\\\n\t$(NULL)\n\nif USE_SSP\nAM_CPPFLAGS += -fstack-protector\nendif\n\nTEST_LIBS = \\\n\t$(LIBVA_LIBS)\t\t\t\t\\\n\t$(top_builddir)/common/libva-display.la\t\\\n\t$(NULL)\n\nvavpp_SOURCES = vavpp.cpp\nvavpp_LDADD   = $(TEST_LIBS)\n\nvppscaling_csc_SOURCES = vppscaling_csc.cpp\nvppscaling_csc_LDADD = $(TEST_LIBS)\n\nvppdenoise_SOURCES = vppdenoise.cpp\nvppdenoise_LDADD   = $(TEST_LIBS)\n\nvppsharpness_SOURCES = vppsharpness.cpp\nvppsharpness_LDADD   = $(TEST_LIBS)\n\nvppchromasitting_SOURCES = vppchromasitting.cpp\nvppchromasitting_LDADD   = $(TEST_LIBS)\n\nvppblending_SOURCES = vppblending.cpp\nvppblending_LDADD   = $(TEST_LIBS)\n\nvppscaling_n_out_usrptr_SOURCES = vppscaling_n_out_usrptr.cpp\nvppscaling_n_out_usrptr_LDADD   = $(TEST_LIBS)\n\nvacopy_SOURCES = vacopy.cpp\nvacopy_LDADD = $(TEST_LIBS)\n\nvpp3dlut_SOURCES = vpp3dlut.cpp\nvpp3dlut_LDADD   = $(TEST_LIBS)\n\nvpphdr_tm_SOURCES = vpphdr_tm.cpp\nvpphdr_tm_LDADD   = $(TEST_LIBS)\n\nvalgrind:(bin_PROGRAMS)\n\tfor a in(bin_PROGRAMS); do \\\n\t\tvalgrind --leak-check=full --show-reachable=yes .libs/$$a; \\\n\tdone\n"
  },
  {
    "path": "videoprocess/README.md",
    "content": "# Video Processing feature test suites\n\n\n## Introduction\n\nThis folder collect a set of VP examples to exercise VA-API in\naccordance with the libva project. \nvaapp is the basic app which you can use to check several features(CSC,scaling,\ndenoise, sharpness,DeInterlace,skin tone enhancement,HSBC).\nThe other sample app is the specific app just for one or two features tested.\nYou can get the info from the app name, such as CSC,scaling, denoise, sharpness,\nchromasitting, 1:N output, usrptr, etc.\n\n## Building\n\n1. In upper folder run autogen.sh, will produce the Makefile.\n```\n$ ./autogen.sh\n```\n2. In upper folder, make the sample.\n```\n$ make\n```\n3. The VP related sample will be produced in the videoprocess directory\n\n## How to run the sample\n\n1. The app para should be defined in the corresponding *.cfg file. Each app will have\none related *.cfg.template for your reference,and the detailed para meaning is described in\nthe file. you can create your *.cfg according to your usage.\n\n2. Copy the app and cfg file to the target machine and run.\n```\n$ ./vavpp process.cfg\n"
  },
  {
    "path": "videoprocess/meson.build",
    "content": "executable('vacopy', [ 'vacopy.cpp' ],\n           dependencies: libva_display_dep,\n           install: true)\nexecutable('vavpp', [ 'vavpp.cpp' ],\n           dependencies: libva_display_dep,\n           install: true)\nif libva_dep.version().version_compare('>= 1.12.0')\n    executable('vpp3dlut', [ 'vpp3dlut.cpp' ],\n            dependencies: libva_display_dep,\n            install: true)\nendif\nexecutable('vppblending', [ 'vppblending.cpp' ],\n           dependencies: libva_display_dep,\n           install: true)\nexecutable('vppchromasitting', [ 'vppchromasitting.cpp' ],\n           dependencies: libva_display_dep,\n           install: true)\nexecutable('vppdenoise', [ 'vppdenoise.cpp' ],\n           dependencies: libva_display_dep,\n           install: true)\nexecutable('vpphdr_tm', [ 'vpphdr_tm.cpp' ],\n           dependencies: libva_display_dep,\n           install: true)\nexecutable('vppscaling_csc', [ 'vppscaling_csc.cpp' ],\n           dependencies: libva_display_dep,\n           install: true)\nexecutable('vppscaling_n_out_usrptr', [ 'vppscaling_n_out_usrptr.cpp' ],\n           dependencies: libva_display_dep,\n           install: true)\nexecutable('vppsharpness', [ 'vppsharpness.cpp' ],\n           dependencies: libva_display_dep,\n           install: true)\n"
  },
  {
    "path": "videoprocess/process.cfg.template",
    "content": "# Configuration information for video process test case.\n#    This application will firstly load yuv frames to one type of surface(NV12/YV12/I420)\n#  you require. After video processing, the processed content (NV12/YV12/I420 surface)\n#  will be stored to frames(yv12 format in file).\n#    Supported features include: denoise, deinterlacing, sharpening, color balance, skintone\n# detection/enhancement, blending and implicit format conversion(NV12<->YV12<->I420). Each\n# time only one kind of processing will be executed in test application. Although libva supports\n# multiple filters execution in one time. you can modify this configuration file to set the\n# filter and the corresponding parameters.\n\n#1.Source YUV(RGB) file information\n#SRC_FILE_NAME:    /root/clips/YUV/bus_cif.yv12\nSRC_FILE_NAME: ./bsw_src_1280x1024.yuy2.yuv\nSRC_FRAME_WIDTH:  1280\nSRC_FRAME_HEIGHT: 1024\nSRC_FRAME_FORMAT: YUYV\n\n#Note .yv12 files are in YV12 format and .yuv used above for STDE is in I420 format\nSRC_FILE_FORMAT: YUYV\n\n#2.Destination YUV(RGB) file information\nDST_FILE_NAME:    ./output.yuv\nDST_FRAME_WIDTH:  1920\nDST_FRAME_HEIGHT: 1080\nDST_FRAME_FORMAT: YUYV\n\nDST_FILE_FORMAT: YUYV\n\n#3.How many frames to be processed\nFRAME_SUM: 1\n\n#4.VPP filter type and parameters, the following filters are supported:\n  #(VAProcFilterNone,VAProcFilterNoiseReduction,VAProcFilterDeinterlacing,\n  # VAProcFilterSharpening,VAProcFilterColorBalance,VAProcFilterSkinToneEnhancement\n  # defalut VAProcFilterNone)\nFILTER_TYPE: VAProcFilterNone\n\n#5.VPP filter specific parameters. If they are not specified here,\n#default value will be applied then.\n\n#5.1 Denoise filter paramters\n #(0.0 ~ 1.0, default 0.5)\nDENOISE_INTENSITY: 0.75\n\n#5.2 Deinterlacding parameters\n  #(VAProcDeinterlacingBob, VAProcDeinterlacingWeave,\n  # VAProcDeinterlacingMotionAdaptive, VAProcDeinterlacingMotionCompensated,\n  # default: VAProcDeinterlacingBob)\nDEINTERLACING_ALGORITHM:  VAProcDeinterlacingBob\n\n #(VA_DEINTERLACING_BOTTOM_FIELD_FIRST |\n # VA_DEINTERLACING_BOTTOM_FIELD |\n # VA_DEINTERLACING_ONE_FIELD, default 0)\nDEINTERLACING_FLAGS: 0\n\n#5.3 Sharpening parameters\n # (0.0 ~ 1.0, default 0.5)\nSHARPENING_INTENSITY: 0.75\n\n#5.4 Blending\n # (0, 1, default 0)\nBLENDING_ENABLED:  0\n # (VA_BLEND_GLOBAL_ALPHA |\n #  VA_BLEND_LUMA_KEY, defalut 0)\nBLENDING_FLAGS: VA_BLEND_GLOBAL_ALPHA\n # (0.0 ~ 1.0, default 0.5)\nBLENDING_GLOBAL_ALPHA: 0.5\n # (1 ~ 254, defalut 1)\nBLENDING_MIN_LUMA: 1\n # (1 ~ 254, defalut 254)\nBLENDING_MAX_LUMA: 254\n\n#5.5 Color balance parameters\n #(-180 ~ 180, default 0)\nCOLOR_BALANCE_HUE: 0\n #(0.0 ~ 10.0, default 1.0)\nCOLOR_BALANCE_SATURATION: 1.0\n #(-100 ~ 100, default 0)\nCOLOR_BALANCE_BRIGHTNESS: 20\n #(0.0 ~ 10.0, default 1.0)\nCOLOR_BALANCE_CONTRAST:  1.2\n\n#5.6 Skin Tone Detection and Enhancement parameters\n # (One of 0, 3, 6, 9, default = 0)\nSTDE_FACTOR: 9\n"
  },
  {
    "path": "videoprocess/process_3dlut.cfg.template",
    "content": "# Configuration information for video process test case.\n#    This application will firstly load yuv frames to one type of surface(P010)\n#  you require. After video processing, the processed content (NV12 surface)\n#  will be stored to frames(nv12 format in file).\n#    Supported features include scaling and implicit format conversion(P010<->RGB<->NV12). \n#  you can modify this configuration file to set the corresponding parameters.\n\n#1.Source YUV file information\nSRC_FILE_NAME: ./Flower.p010\nSRC_FRAME_WIDTH:  1920\nSRC_FRAME_HEIGHT: 1080\nSRC_FRAME_FORMAT: P010\nSRC_FILE_FORMAT: P010\n\n#2.Destination YUV(RGB) file information\nDST_FILE_NAME:    ./out_1920x1080.p010\nDST_FRAME_WIDTH:  1920\nDST_FRAME_HEIGHT: 1080\nDST_FRAME_FORMAT: P010\nDST_FILE_FORMAT: P010\n\n#3.How many frames to be processed\nFRAME_SUM: 1\n\n#4.3DLUT configuration file\n3DLUT_FILE_NAME: ./3dlut_65cubic.dat\n3DLUT_SEG_SIZE: 65\n3DLUT_MUL_SIZE: 128\n3DLUT_CHANNEL_MAPPING: 1\n\n#5. 3DLUT Scaling pipeline(3DLUT->Scaling: 1, Scaling->3DLUT: 0, Scaling only: 2)\n3DLUT_SCALING: 1\n\n"
  },
  {
    "path": "videoprocess/process_blending.cfg.template",
    "content": "# Configuration information for video process test case.\n#    This application will firstly load yuv frames to one type of surface(NV12/YV12/I420)\n#  you require. After video processing, the processed content (NV12/YV12/I420 surface)\n#  will be stored to frames(yv12 format in file).\n#    Supported features include blending and implicit format conversion(NV12<->YV12<->I420). \n#  you can modify this configuration file to set the corresponding parameters.\n\n#1.Source YUV(RGB) file information\n#src file number:\nSRC_NUMBER: 2\n#source file1\nSRC_FILE_NAME_1: ./00003_section1_ColorfulPens_960x640.nv12\nSRC_FRAME_WIDTH_1:960  \nSRC_FRAME_HEIGHT_1:640\nSRC_FRAME_FORMAT_1: NV12\nSRC_FILE_FORMAT_1: NV12\n#Cropping info\nSRC_CROP_LEFT_X_1: 0\nSRC_CROP_TOP_Y_1: 0\nSRC_CROP_WIDTH_1:960\nSRC_CROP_HEIGHT_1:640\n\n#destination area (used in scaling)\nSRC_DstLeftX_1: 0\nSRC_DstTopY_1: 0\nSRC_DstWidth_1: 960\nSRC_DstHeight_1: 640\n#we can support N>=2 input, you just need add the para to xx_N format\nSRC_FILE_NAME_2: ./00003_section1_ColorfulPens_5f_720x480_writer720x480.argb\nSRC_FRAME_WIDTH_2:720\nSRC_FRAME_HEIGHT_2: 480\nSRC_FRAME_FORMAT_2: ARGB\nSRC_FILE_FORMAT_2: ARGB\n#Cropping info\nSRC_CROP_LEFT_X_2: 0\nSRC_CROP_TOP_Y_2: 0\nSRC_CROP_WIDTH_2:720\nSRC_CROP_HEIGHT_2:480\n#destination area (used in scaling)\nSRC_DstLeftX_2: 100\nSRC_DstTopY_2: 100\nSRC_DstWidth_2: 720\nSRC_DstHeight_2: 480\n#Defines Video blend flags 1-Global Alpah, 2-Premutiplied Alpha, 3-Luma Key\nSRC_CompositionBlendFlags_2: 1\n#Defines Global Alpah blending value 0.0 to 1.0\nSRC_CompositionAlpha_2: 0.5\n#Defines Minimum Luma value 0.0 to 1.0 for Luma Key  (used in composition)\nSRC_compositionLumaMin_2:0.0\n#Defines Maximum Luma value 0.0 to 1.0 for Luma Key  (used in composition)\nSRC_compositionLumaMax_2:1.0\n\n#2.Destination YUV(RGB) file information\nDST_FILE_NAME:    ./writer960x640.argb\nDST_FRAME_WIDTH:  960\nDST_FRAME_HEIGHT: 640\nDST_FRAME_FORMAT: ARGB\nDST_FILE_FORMAT: ARGB\n\n#3.How many frames to be processed\nFRAME_SUM: 5\n"
  },
  {
    "path": "videoprocess/process_chromasitting.cfg.template",
    "content": "# Configuration information for video process test case.\n#    This application will firstly load yuv frames to one type of surface(NV12/YV12/I420)\n#  you require. After video processing, the processed content (NV12/YV12/I420 surface)\n#  will be stored to frames(yv12 format in file).\n#    Supported features include: chromasitting implicit format conversion(NV12<->YV12<->I420). Each\n# time only one kind of processing will be executed in test application. Although libva supports\n# multiple filters execution in one time. you can modify this configuration file to set the\n# filter and the corresponding parameters.\n\n#1.Source YUV(RGB) file information\nSRC_FILE_NAME: ./ChromaSittingTest_720x516.nv12\nSRC_FRAME_WIDTH: 720\nSRC_FRAME_HEIGHT: 516\nSRC_FRAME_FORMAT: NV12\n\n#Note .nv12 files are in NV12 format\nSRC_FILE_FORMAT: NV12\n\n#2.Destination YUV(RGB) file information\nDST_FILE_NAME:    ./ChromaSittingTest_720x516_golden176x144.xrgb\nDST_FRAME_WIDTH:  176\nDST_FRAME_HEIGHT: 144\nDST_FRAME_FORMAT: XRGB\n\nDST_FILE_FORMAT: XRGB\n\n#3.How many frames to be processed\nFRAME_SUM: 5\n\n#4.chromasitting mode  parameters set, the following modes are supported:\n# UNKNOWN, CHROMA_SITING_TOP_LEFT, CHROMA_SITING_TOP_CENTER,CHROMA_SITING_CENTER_LEFT\n# CHROMA_SITING_CENTER_CENTER, CHROMA_SITING_BOTTOM_LEFT,CHROMA_SITING_BOTTOM_CENTER\n# input\nIN_CHROMA_SITTING_MODE: CHROMA_SITING_TOP_LEFT\n# output\nDST_CHROMA_SITTING_MODE: CHROMA_SITING_BOTTOM_LEFT\n"
  },
  {
    "path": "videoprocess/process_denoise.cfg.template",
    "content": "# Configuration information for video process test case.\n#    This application will firstly load yuv frames to one type of surface(NV12/YV12/I420)\n#  you require. After video processing, the processed content (NV12/YV12/I420 surface)\n#  will be stored to frames(yv12 format in file).\n#    Supported features include: denoise,implicit format conversion(NV12<->YV12<->I420). Each\n# time only one kind of processing will be executed in test application. Although libva supports\n# multiple filters execution in one time. you can modify this configuration file to set the\n# filter and the corresponding parameters.\n\n#1.Source YUV(RGB) file information\nSRC_FILE_NAME: ./foreman_10f_640x480.nv12\nSRC_FRAME_WIDTH:  640\nSRC_FRAME_HEIGHT: 480\nSRC_FRAME_FORMAT: NV12\n\n#Note .nv12 files are in NV12 format\nSRC_FILE_FORMAT: NV12\n\n#2.Destination YUV(RGB) file information\nDST_FILE_NAME:    ./output_1920x1080.nv12\nDST_FRAME_WIDTH:  1920\nDST_FRAME_HEIGHT: 1080\nDST_FRAME_FORMAT: NV12\n\nDST_FILE_FORMAT: NV12\n\n#3.How many frames to be processed\nFRAME_SUM: 5\n\n#4.VPP filter specific parameters. If they are not specified here,\n#default value will be applied then.\nFILTER_TYPE: VAProcFilterNoiseReduction\n#4.1 Denoise filter paramters\n #(0--64, default:0 )\nDENOISE_INTENSITY: 44\n\n"
  },
  {
    "path": "videoprocess/process_hdr_tm_h2h.cfg.template",
    "content": "# Configuration information for video process test case.\n#    This application will firstly load yuv frames to one type of surface(NV12/YV12/I420/P010)\n#  you require. After video processing, the processed content (ARGB10 surface)\n#  will be stored to frames(ARGB10 format in file).\n#    Supported features include: HDR Tone Mapping, implicit format conversion(P010->A2RGB10). Each\n# time only one kind of processing will be executed in test application. Although libva supports\n# multiple filters execution in one time. you can modify this configuration file to set the\n# filter and the corresponding parameters.\n\n#To simplify this test app, we use the default gamut for both source and destination.\n#Please set correct gamut according to the real value and VAAPI definition.\n#BT2020    Gammut        Multiplier        Output\n#G          0.17          0.797            50000        8500      39850\n#R          0.708         0.292            50000        35400     14600\n#B          0.131         0.046            50000        6550      2300\n#w          0.3127        0.329            50000        15635     16450\n#BT709    Gammut         Multiplier       Output\n#G          0.3           0.6              50000        15000     30000\n#R          0.64          0.33             50000        32000     16500\n#B          0.15          0.06             50000        7500      3000\n#w          0.3127        0.329            50000        15635     16450\n\n#0. Tone Map Type: 0-H2H, 1-H2E, 2-H2S\nTM_TYPE: 0\n\n#1.Source YUV(RGB) file information\nSRC_FILE_NAME: Source_1920x1080_4000nits.p010\nSRC_FRAME_WIDTH: 1920 \nSRC_FRAME_HEIGHT: 1080\nSRC_FRAME_FORMAT: P010\nSRC_FRAME_COLOUR_PRIMARIES: 9\nSRC_FRAME_TRANSFER_CHARACTERISTICS: 16\nSRC_MAX_DISPLAY_MASTERING_LUMINANCE: 10000000\nSRC_MIN_DISPLAY_MASTERING_LUMINANCE: 100\nSRC_MAX_CONTENT_LIGHT_LEVEL: 4000\nSRC_MAX_PICTURE_AVERAGE_LIGHT_LEVEL: 100\n\n#2.Destination YUV(RGB) file information\nDST_FILE_NAME:    Dest_1920x1080_1000nits_writer.p010\nDST_FRAME_WIDTH:  1920\nDST_FRAME_HEIGHT: 1080\nDST_FRAME_FORMAT: P010\nDST_FRAME_COLOUR_PRIMARIES: 9\nDST_FRAME_TRANSFER_CHARACTERISTICS: 16\nDST_MAX_DISPLAY_MASTERING_LUMINANCE: 10000000\nDST_MIN_DISPLAY_MASTERING_LUMINANCE: 100\nDST_MAX_CONTENT_LIGHT_LEVEL: 1000\nDST_MAX_PICTURE_AVERAGE_LIGHT_LEVEL: 100\n\n#3.How many frames to be processed\nFRAME_SUM: 1\n\n#4.VPP filter specific parameters. If they are not specified here,\n#default value will be applied then.\nFILTER_TYPE: VAProcFilterHighDynamicRangeToneMapping\n\n"
  },
  {
    "path": "videoprocess/process_hdr_tm_h2s.cfg.template",
    "content": "# Configuration information for video process test case.\n#    This application will firstly load yuv frames to one type of surface(NV12/YV12/I420/P010)\n#  you require. After video processing, the processed content (ARGB10 surface)\n#  will be stored to frames(ARGB10 format in file).\n#    Supported features include: HDR Tone Mapping, implicit format conversion(P010->A2RGB10). Each\n# time only one kind of processing will be executed in test application. Although libva supports\n# multiple filters execution in one time. you can modify this configuration file to set the\n# filter and the corresponding parameters.\n\n#To simplify this test app, we use the default gamut for both source and destination.\n#Please set correct gamut according to the real value and VAAPI definition.\n#BT2020    Gammut        Multiplier        Output\n#G          0.17          0.797            50000        8500      39850\n#R          0.708         0.292            50000        35400     14600\n#B          0.131         0.046            50000        6550      2300\n#w          0.3127        0.329            50000        15635     16450\n#BT709    Gammut         Multiplier       Output\n#G          0.3           0.6              50000        15000     30000\n#R          0.64          0.33             50000        32000     16500\n#B          0.15          0.06             50000        7500      3000\n#w          0.3127        0.329            50000        15635     16450\n\n#0. Tone Map Type: 0-H2H, 1-H2E, 2-H2S\nTM_TYPE: 2\n\n#1.Source YUV(RGB) file information\nSRC_FILE_NAME: Source_1920x1080_4000nits.p010\nSRC_FRAME_WIDTH: 1920\nSRC_FRAME_HEIGHT: 1080\nSRC_FRAME_FORMAT: P010\nSRC_FRAME_COLOUR_PRIMARIES: 9\nSRC_FRAME_TRANSFER_CHARACTERISTICS: 16\nSRC_MAX_DISPLAY_MASTERING_LUMINANCE: 10000000\nSRC_MIN_DISPLAY_MASTERING_LUMINANCE: 100\nSRC_MAX_CONTENT_LIGHT_LEVEL: 4000\nSRC_MAX_PICTURE_AVERAGE_LIGHT_LEVEL: 100\n\n#2.Destination YUV(RGB) file information\nDST_FILE_NAME:    Dest_1920x1080_100nits_writer.abgr\nDST_FRAME_WIDTH:  1920\nDST_FRAME_HEIGHT: 1080\nDST_FRAME_FORMAT: RGBA\nDST_FRAME_COLOUR_PRIMARIES: 1\nDST_MAX_DISPLAY_MASTERING_LUMINANCE: 1000000\nDST_MIN_DISPLAY_MASTERING_LUMINANCE: 100\nDST_MAX_CONTENT_LIGHT_LEVEL: 100\nDST_MAX_PICTURE_AVERAGE_LIGHT_LEVEL: 100\n\n#3.How many frames to be processed\nFRAME_SUM: 1\n\n#4.VPP filter specific parameters. If they are not specified here,\n#default value will be applied then.\nFILTER_TYPE: VAProcFilterHighDynamicRangeToneMapping\n\n"
  },
  {
    "path": "videoprocess/process_scaling_csc.cfg.template",
    "content": "# Configuration information for video process test case.\n#    This application will firstly load yuv frames to one type of surface(NV12/YV12/I420)\n#  you require. After video processing, the processed content (NV12/YV12/I420 surface)\n#  will be stored to frames(yv12 format in file).\n#    Supported features include scaling and implicit format conversion(NV12<->YV12<->I420). \n#  you can modify this configuration file to set the corresponding parameters.\n\n#1.Source YUV(RGB) file information\nSRC_FILE_NAME: ./foreman_10f_640x480.nv12\nSRC_FRAME_WIDTH:  640\nSRC_FRAME_HEIGHT: 480\nSRC_FRAME_FORMAT: NV12\n\n#Note .nv12 files are in NV12 format\nSRC_FILE_FORMAT: NV12\n\n#2.Destination YUV(RGB) file information\nDST_FILE_NAME:    ./scaling_out_720x480.yv12\nDST_FRAME_WIDTH:  720\nDST_FRAME_HEIGHT: 480\nDST_FRAME_FORMAT: YV12\n\nDST_FILE_FORMAT: YV12\n\n#3.How many frames to be processed\nFRAME_SUM: 5\n\n"
  },
  {
    "path": "videoprocess/process_scaling_n_out_usrptr.cfg.template",
    "content": "# Configuration information for video process test case.\n#    This application will firstly load yuv frames to one type of surface(NV12/YV12/I420)\n#  you require. After video processing, the processed content (NV12/YV12/I420 surface)\n#  will be stored to frames(yv12 format in file).\n#    Supported features include scaling and implicit format conversion(NV12<->YV12<->I420). \n#    input and output crop and usrptr.\n#  you can modify this configuration file to set the corresponding parameters.\n\n#1.Source YUV(RGB) file information\nSRC_FILE_NAME: ./flowersky_352x288_writer352x288.yv12\nSRC_FRAME_WIDTH: 352 \nSRC_FRAME_HEIGHT: 288\nSRC_FRAME_FORMAT: YV12\n\n# supported type: (CPU, VA), default: VA\nSRC_SURFACE_MEMORY_TYPE: VA\n\n#if use usrptr CPU memory type, can support 16/128 align mode\nSRC_SURFACE_CPU_ALIGN_MODE: 128\n\n#if you want to do source crop, you need define the area below to crop\n#do the crop: 1; not do the crop: 0(default)\nSRC_SURFACE_CROP: 1\n\n#Cropping info\nSRC_CROP_LEFT_X: 10\nSRC_CROP_TOP_Y: 20\nSRC_CROP_WIDTH:200\nSRC_CROP_HEIGHT:200\n\n#2.Destination YUV(RGB) file information\n#dest file number:\nDST_NUMBER: 1 \n\n#we can support N>=2 outputs, you just need add the para to xx_N format\nDST_FILE_NAME_1:    ./scaling_out_1400x1200.nv12\nDST_FRAME_WIDTH_1:  1400\nDST_FRAME_HEIGHT_1: 1200\nDST_FRAME_FORMAT_1: NV12\n\n#dest surface memory type\n# supported type: (CPU, VA), default: VA\nDST_SURFACE_MEMORY_TYPE_1: VA\n\n#if use usrptr CPU memory type, can support 16/128 align mode\nDST_SURFACE_CPU_ALIGN_MODE_1: 128\n\n#we can support the output crop with none (0, 0) top/left in render target \n#if the value set to 1, the output can be scale to the positon below defined\n#if the value set to 0, ignore and do not crop output\n#if the value set to 1, please ensure the DST_NUMBER to 1\nDST_SURFACE_CROP: 1\n#destination area (used in scaling)\nDST_CROP_LEFT_X: 100\nDST_CROP_TOP_Y: 100\nDST_CROP_WIDTH: 1000\nDST_CROP_HEIGHT: 800\n\nDST_FILE_NAME_2:    ./scaling_out_1000x800_2.yuy2\nDST_FRAME_WIDTH_2:  1000\nDST_FRAME_HEIGHT_2: 800\nDST_FRAME_FORMAT_2: YUY2\n\nDST_FILE_FORMAT_2: YUY2\n#dest surface memory type\n# supported type: (CPU, VA), default: VA\nDST_SURFACE_MEMORY_TYPE_2: CPU\n\n#if use usrptr CPU memory type, can support 16/128 align mode\nDST_SURFACE_CPU_ALIGN_MODE_2: 128\n\nDST_FILE_NAME_3:    ./scaling_out_1200x1000_3.nv12\nDST_FRAME_WIDTH_3:  1200\nDST_FRAME_HEIGHT_3: 1000\nDST_FRAME_FORMAT_3: NV12\n\n#dest surface memory type\n# supported type: (CPU, VA), default: VA\nDST_SURFACE_MEMORY_TYPE_3: CPU\n\n#if use usrptr CPU memory type, can support 16/128 align mode\nDST_SURFACE_CPU_ALIGN_MODE_3: 128\n\n#if you need to scale the 16align output as input, you can add the para 2ND_SCALE,\n#xx_02 will be the 2nd scale output, regarding the 1st scale output as input\n# 1: enable the 2ndscale, default:0\n2ND_SCALE: 0\n#3.How many frames to be processed\nFRAME_SUM: 1\n\n"
  },
  {
    "path": "videoprocess/process_sharpness.cfg.template",
    "content": "# Configuration information for video process test case.\n#    This application will firstly load yuv frames to one type of surface(NV12/YV12/I420)\n#  you require. After video processing, the processed content (NV12/YV12/I420 surface)\n#  will be stored to frames(yv12 format in file).\n#    Supported features include: sharpening, implicit format conversion(NV12<->YV12<->I420). Each\n# time only one kind of processing will be executed in test application. Although libva supports\n# multiple filters execution in one time. you can modify this configuration file to set the\n# filter and the corresponding parameters.\n\n#1.Source YUV(RGB) file information\nSRC_FILE_NAME: ./flowersky_352x288.nv12\nSRC_FRAME_WIDTH: 352 \nSRC_FRAME_HEIGHT: 288\nSRC_FRAME_FORMAT: NV12\n\n#Note .nv12 files are in NV12 format\nSRC_FILE_FORMAT: NV12\n\n#2.Destination YUV(RGB) file information\nDST_FILE_NAME:    ./flowersky_352x288_writer352x288.nv12\nDST_FRAME_WIDTH:  352\nDST_FRAME_HEIGHT: 288\nDST_FRAME_FORMAT: NV12\n\nDST_FILE_FORMAT: NV12\n\n#3.How many frames to be processed\nFRAME_SUM: 5\n\n#4.VPP filter specific parameters. If they are not specified here,\n#default value will be applied then.\nFILTER_TYPE: VAProcFilterSharpening\n\n#4.1 Sharpening parameters\n# (0 ~ 64, default 44)\nSHARPENING_INTENSITY: 44\n"
  },
  {
    "path": "videoprocess/process_va_copy.cfg.template",
    "content": "# Configuration information for video process test case.\n#    This application will firstly load yuv frames to one type of surface(NV12/RBGP)\n#  you require. After GPU HW copy, the processed content (NV12/RGBP surface)\n#  will be stored to frames.\n#    Supported features include intput/ouput internal surface and external(usrptr surface) copy. \n#  you can modify this configuration file to set the corresponding parameters.\n\n#1.Source YUV(RGB) file information\nSRC_FILE_NAME: ./src_480x320.nv12\nSRC_FRAME_WIDTH: 480\nSRC_FRAME_HEIGHT: 320\nSRC_FRAME_FORMAT: NV12\n\n#Note .nv12 files are in NV12 format\nSRC_FILE_FORMAT: NV12\n\n# source surface memory type\n# supported type: (CPU, VA), default: VA\nSRC_SURFACE_MEMORY_TYPE: VA\n\n#if use usrptr CPU memory type, can support customization align size\nSRC_SURFACE_CPU_ALIGN_SIZE: 1\n\n#2.Destination YUV(RGB) file information\nDST_FILE_NAME:    ./dst_480x320.nv12\nDST_FRAME_WIDTH:  480\nDST_FRAME_HEIGHT: 320\nDST_FRAME_FORMAT: NV12\n\n#Note .nv12 files are in NV12 format\nDST_FILE_FORMAT: NV12\n\n# destination surface memory type\n# supported type: (CPU, VA), default: VA\nDST_SURFACE_MEMORY_TYPE: VA\n\n#if use usrptr CPU memory type, can support customization align size\nDST_SURFACE_CPU_ALIGN_SIZE: 128\n\nFRAME_SUM: 1\n\n# hw engine select, 0:balance 1:perf, 2 powersaving\nCOPY_METHOD: 1\n"
  },
  {
    "path": "videoprocess/vacopy.cpp",
    "content": "/*\n* Copyright (c) 2009-2018, Intel Corporation\n*\n* Permission is hereby granted, free of charge, to any person obtaining a\n* copy of this software and associated documentation files (the \"Software\"),\n* to deal in the Software without restriction, including without limitation\n* the rights to use, copy, modify, merge, publish, distribute, sublicense,\n* and/or sell copies of the Software, and to permit persons to whom the\n* Software is furnished to do so, subject to the following conditions:\n*\n* The above copyright notice and this permission notice shall be included\n* in all copies or substantial portions of the Software.\n*\n* THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR\n* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,\n* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\n* OTHER DEALINGS IN THE SOFTWARE.\n*/\n/*\n * Video process test case based on LibVA.\n * This test covers different surface format copy.\n * Usage: ./vacopy process_copy.cfg\n */\n\n#include <stdio.h>\n#include <stdlib.h>\n#include <string.h>\n#include <stdint.h>\n#include <iostream>\n#include <time.h>\n#include <assert.h>\n#include <va/va.h>\n#include <va/va_vpp.h>\n#include \"va_display.h\"\n\n#ifndef VA_FOURCC_I420\n#define VA_FOURCC_I420 0x30323449\n#endif\n\n#define MAX_LEN   1024\n\n#define CHECK_VASTATUS(va_status,func)                                      \\\n  if (va_status != VA_STATUS_SUCCESS) {                                     \\\n      fprintf(stderr,\"%s:%s (%d) failed,exit\\n\", __func__, func, __LINE__); \\\n      exit(1);                                                              \\\n  }\nusing namespace std;\nstatic VADisplay va_dpy = NULL;\nstatic VAContextID context_id = 0;\n\ntypedef struct _SurfInfo {\n    FILE        *fd;\n    char        name[MAX_LEN];\n    uint32_t    width;\n    uint32_t    height;\n    uint32_t    fourCC;\n    uint32_t    format;\n    uint32_t    memtype;\n    uint32_t    alignsize;\n    void        *pBuf;\n    uint8_t     *pBufBase;\n    uintptr_t   ptrb;\n} SurfInfo;\n\nstatic SurfInfo g_src;\nstatic SurfInfo g_dst;\n\nstatic VAConfigID  config_id = 0;\nstatic FILE* g_config_file_fd = NULL;\nstatic char g_config_file_name[MAX_LEN];\n\nstatic VASurfaceID g_in_surface_id = VA_INVALID_ID;\nstatic VASurfaceID g_out_surface_id = VA_INVALID_ID;\n\nstatic uint32_t g_src_file_fourcc = VA_FOURCC('I', '4', '2', '0');\nstatic uint32_t g_dst_file_fourcc = VA_FOURCC('Y', 'V', '1', '2');\n\n#define _FREE(p)                       \\\n    if(p != NULL){                      \\\n        free(p);  p = NULL;                        \\\n    }\n\nstatic uint32_t g_frame_count = 0;\nstatic uint32_t g_copy_method = 0; //0 blance, 1 perf. 2 power_saving\n\nstatic int8_t\nparse_memtype_format(char *str, uint32_t *dst_memtype)\n{\n    uint32_t tmemtype = VA_SURFACE_ATTRIB_MEM_TYPE_VA;\n\n    if (!strcmp(str, \"VA\")) {\n        tmemtype = VA_SURFACE_ATTRIB_MEM_TYPE_VA;\n    } else if (!strcmp(str, \"CPU\")) {\n        tmemtype = VA_SURFACE_ATTRIB_MEM_TYPE_USER_PTR;\n    } else {\n        printf(\"Not supported format: %s! Currently only support following format: %s\\n\",\n               str, \"VA,CPU\");\n        assert(0);\n    }\n    if (dst_memtype)\n        *dst_memtype = tmemtype;\n    return 0;\n}\n\nstatic int8_t\nread_value_string(FILE *fp, const char* field_name, char* value)\n{\n    char strLine[MAX_LEN];\n    char* field = NULL;\n    char* str = NULL;\n    uint16_t i;\n\n    if (!fp || !field_name || !value)  {\n        printf(\"Invalid fuction parameters\\n\");\n        return -1;\n    }\n\n    rewind(fp);\n\n    while (!feof(fp)) {\n        if (!fgets(strLine, MAX_LEN, fp))\n            continue;\n\n        for (i = 0; i < MAX_LEN && strLine[i]; i++)\n            if (strLine[i] != ' ') break;\n\n        if (i == MAX_LEN || strLine[i] == '#' || strLine[i] == '\\n')\n            continue;\n\n        field = strtok(&strLine[i], \":\");\n        if (strncmp(field, field_name, strlen(field_name)))\n            continue;\n\n        if (!(str = strtok(NULL, \":\")))\n            continue;\n\n        /* skip blank space in string */\n        while (*str == ' ')\n            str++;\n\n        *(str + strlen(str) - 1) = '\\0';\n        strcpy(value, str);\n\n        return 0;\n    }\n\n    return -1;\n}\n\nstatic int8_t\nread_value_uint32(FILE* fp, const char* field_name, uint32_t* value)\n{\n    char str[MAX_LEN];\n\n    if (read_value_string(fp, field_name, str)) {\n        printf(\"Failed to find integer field: %s\", field_name);\n        return -1;\n    }\n\n    *value = (uint32_t)atoi(str);\n    return 0;\n}\n\nstatic VAStatus\ncreate_surface(VASurfaceID * p_surface_id, SurfInfo &surf)\n{\n    VAStatus va_status = VA_STATUS_ERROR_INVALID_PARAMETER;\n    if (surf.memtype == VA_SURFACE_ATTRIB_MEM_TYPE_VA) {\n        VASurfaceAttrib    surface_attrib;\n        surface_attrib.type =  VASurfaceAttribPixelFormat;\n        surface_attrib.flags = VA_SURFACE_ATTRIB_SETTABLE;\n        surface_attrib.value.type = VAGenericValueTypeInteger;\n        surface_attrib.value.value.i = surf.fourCC;\n\n        va_status = vaCreateSurfaces(va_dpy,\n                                     surf.format,\n                                     surf.width,\n                                     surf.height,\n                                     p_surface_id,\n                                     1,\n                                     &surface_attrib,\n                                     1);\n    } else if (surf.memtype == VA_SURFACE_ATTRIB_MEM_TYPE_USER_PTR) {\n        VASurfaceAttrib surfaceAttrib[3];\n        VASurfaceAttribExternalBuffers extBuffer;\n        uint32_t base_addr_align = 0x1000;\n        uint32_t size = 0;\n        surfaceAttrib[0].flags = VA_SURFACE_ATTRIB_SETTABLE;\n        surfaceAttrib[0].type = VASurfaceAttribPixelFormat;\n        surfaceAttrib[0].value.type = VAGenericValueTypeInteger;\n        surfaceAttrib[0].value.value.i = surf.fourCC;\n\n        surfaceAttrib[1].flags = VA_SURFACE_ATTRIB_SETTABLE;\n        surfaceAttrib[1].type = VASurfaceAttribMemoryType;\n        surfaceAttrib[1].value.type = VAGenericValueTypeInteger;\n        surfaceAttrib[1].value.value.i = VA_SURFACE_ATTRIB_MEM_TYPE_USER_PTR;\n\n        surfaceAttrib[2].flags = VA_SURFACE_ATTRIB_SETTABLE;\n        surfaceAttrib[2].type = VASurfaceAttribExternalBufferDescriptor;\n        surfaceAttrib[2].value.type = VAGenericValueTypePointer;\n        surfaceAttrib[2].value.value.p = (void *)&extBuffer;\n        memset(&extBuffer, 0, sizeof(extBuffer));\n\n        uint32_t pitch_align = surf.alignsize;\n        switch (surf.fourCC) {\n        case VA_FOURCC_NV12:\n            extBuffer.pitches[0] = ((surf.width + pitch_align - 1) / pitch_align) * pitch_align;\n            size = (extBuffer.pitches[0] * surf.height) * 3 / 2; // frame size align with pitch.\n            size = (size + base_addr_align - 1) / base_addr_align * base_addr_align; // frame size align as 4K page.\n            extBuffer.offsets[0] = 0;// Y channel\n            extBuffer.offsets[1] = extBuffer.pitches[0] * surf.height; // UV channel.\n            extBuffer.pitches[1] = extBuffer.pitches[0];\n            extBuffer.num_planes = 2;\n            break;\n        case VA_FOURCC_RGBP:\n            extBuffer.pitches[0] = ((surf.width + pitch_align - 1) / pitch_align) * pitch_align;\n            size = (extBuffer.pitches[0] * surf.height) * 3;// frame size align with pitch.\n            size = (size + base_addr_align - 1) / base_addr_align * base_addr_align; // frame size align as 4K page.\n            extBuffer.offsets[0] = 0;// Y channel\n            extBuffer.offsets[1] = extBuffer.pitches[0] * surf.height; // U channel.\n            extBuffer.pitches[1] = extBuffer.pitches[0];\n            extBuffer.offsets[2] = extBuffer.pitches[0] * surf.height * 2; // V channel.\n            extBuffer.pitches[2] = extBuffer.pitches[0];\n            extBuffer.num_planes = 3;\n            break;\n        default :\n            std::cout << surf.fourCC << \"format doesn't support!\" << endl;\n            return VA_STATUS_ERROR_UNSUPPORTED_RT_FORMAT;\n        }\n        if (!surf.pBuf && !surf.pBufBase) {\n            surf.pBuf = malloc(size + base_addr_align);\n            surf.pBufBase = (uint8_t*)((((uint64_t)(surf.pBuf) + base_addr_align - 1) / base_addr_align) * base_addr_align);\n\n            extBuffer.pixel_format = surf.fourCC;\n            extBuffer.width = surf.width;\n            extBuffer.height = surf.height;\n            extBuffer.data_size = size;\n            extBuffer.num_buffers = 1;\n            extBuffer.buffers = &(surf.ptrb);\n            extBuffer.buffers[0] = (uintptr_t)(surf.pBufBase);\n\n            va_status = vaCreateSurfaces(va_dpy, surf.format, surf.width, surf.height, p_surface_id, 1, surfaceAttrib, 3);\n            CHECK_VASTATUS(va_status, \"vaCreateSurfaces\");\n        } else {\n            std::cout << \"previous frame buffer hasn't be released!\" << endl;\n        }\n    }\n\n    return va_status;\n}\n\n/* Load frame to surface*/\nstatic VAStatus\nupload_frame_to_surface(FILE *fp,\n                        VASurfaceID surface_id)\n{\n    VAStatus va_status;\n    VAImage surface_image;\n    unsigned char *y_src = NULL;\n    unsigned char *u_src = NULL;\n    unsigned char *v_src = NULL;\n    unsigned char *y_dst = NULL;\n    unsigned char *u_dst = NULL;\n    unsigned char *v_dst = NULL;\n    void *surface_p = NULL;\n    uint32_t frame_size, row;\n    size_t n_items;\n    unsigned char * newImageBuffer = NULL;\n    va_status = vaSyncSurface(va_dpy, surface_id);\n    CHECK_VASTATUS(va_status, \"vaSyncSurface\");\n\n    va_status = vaDeriveImage(va_dpy, surface_id, &surface_image);\n    CHECK_VASTATUS(va_status, \"vaDeriveImage\");\n\n    va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p);\n    CHECK_VASTATUS(va_status, \"vaMapBuffer\");\n\n    if (g_src.memtype == VA_SURFACE_ATTRIB_MEM_TYPE_VA) {\n        std::cout << \"2D src surface width = \" << g_src.width << \" pitch = \" << surface_image.pitches[0] << endl;\n    } else {\n        std::cout << \"linear src surface width = \" << g_src.width << \" pitch = \" << surface_image.pitches[0] << ((g_src.width % surface_image.pitches[0]) ? \" it is 2D linear\" : \" it is 1D linear\") << endl;\n    }\n\n    if (surface_image.format.fourcc == VA_FOURCC_RGBP) {\n        frame_size = surface_image.width * surface_image.height * 3;\n        newImageBuffer = (unsigned char*)malloc(frame_size);\n        assert(newImageBuffer);\n\n        do {\n            n_items = fread(newImageBuffer, frame_size, 1, fp);\n        } while (n_items != 1);\n\n        y_src = newImageBuffer;\n        u_src = newImageBuffer + surface_image.width * surface_image.height;\n        v_src = newImageBuffer + surface_image.width * surface_image.height * 2;\n\n        y_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]);\n        u_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n        v_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]);\n\n        for (row = 0; row < surface_image.height; row++) {\n            memcpy(y_dst, y_src, surface_image.width);\n            y_dst += surface_image.pitches[0];\n            y_src += surface_image.width;\n\n            memcpy(u_dst, u_src, surface_image.width);\n            u_dst += surface_image.pitches[0];\n            u_src += surface_image.width;\n\n            memcpy(v_dst, v_src, surface_image.width);\n            v_dst += surface_image.pitches[0];\n            v_src += surface_image.width;\n        }\n    } else if (surface_image.format.fourcc == VA_FOURCC_NV12) {\n        frame_size = surface_image.width * surface_image.height * 3 / 2;\n        newImageBuffer = (unsigned char*)malloc(frame_size);\n        assert(newImageBuffer);\n\n        do {\n            n_items = fread(newImageBuffer, frame_size, 1, fp);\n        } while (n_items != 1);\n\n        y_src = newImageBuffer;\n        u_src = newImageBuffer + surface_image.width * surface_image.height;\n        v_src = u_src;\n\n        y_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]);\n        u_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n        v_dst = u_dst;\n\n        /* Y plane, directly copy */\n        for (row = 0; row < surface_image.height; row++) {\n            memcpy(y_dst, y_src, surface_image.width);\n            y_dst += surface_image.pitches[0];\n            y_src += surface_image.width;\n        }\n\n        /* UV plane */\n        for (row = 0; row < surface_image.height / 2; row++) {\n            memcpy(u_dst, u_src, surface_image.width);\n            u_src += surface_image.width;\n            v_src = u_src;\n            u_dst += surface_image.pitches[1];\n        }\n    }\n\n    if (newImageBuffer) {\n        free(newImageBuffer);\n        newImageBuffer = NULL;\n    }\n\n    vaUnmapBuffer(va_dpy, surface_image.buf);\n    vaDestroyImage(va_dpy, surface_image.image_id);\n\n    return VA_STATUS_SUCCESS;\n}\n\nstatic VAStatus\nstore_surface_to_file(FILE *fp,\n                      VASurfaceID surface_id)\n{\n    VAStatus va_status;\n    VAImage surface_image;\n    void *surface_p = NULL;\n    unsigned char *y_src = NULL;\n    unsigned char *u_src = NULL;\n    unsigned char *v_src = NULL;\n    unsigned char *y_dst = NULL;\n    unsigned char *u_dst = NULL;\n    unsigned char *v_dst = NULL;\n    uint32_t row;\n    int32_t n_items;\n    unsigned char * newImageBuffer = NULL;\n    va_status = vaSyncSurface(va_dpy, surface_id);\n    CHECK_VASTATUS(va_status, \"vaSyncSurface\");\n\n    va_status = vaDeriveImage(va_dpy, surface_id, &surface_image);\n    CHECK_VASTATUS(va_status, \"vaDeriveImage\");\n\n    va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p);\n    CHECK_VASTATUS(va_status, \"vaMapBuffer\");\n\n    if (g_dst.memtype == VA_SURFACE_ATTRIB_MEM_TYPE_VA) {\n        std::cout << \"2D dst surface width = \" << g_dst.width << \" pitch = \" << surface_image.pitches[0] << endl;\n    } else {\n        std::cout << \"linear dst surface width = \" << g_dst.width << \" pitch = \" << surface_image.pitches[0] << ((g_dst.width % surface_image.pitches[0]) ? \" it is 2D linear\" : \" it is 1D linear\") << endl;\n    }\n\n    /* store the surface to one nv12 file */\n    if (surface_image.format.fourcc == VA_FOURCC_NV12 ||\n        surface_image.format.fourcc == VA_FOURCC_RGBP) {\n\n        y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]);\n\n        if (surface_image.format.fourcc == VA_FOURCC_RGBP) {\n            u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]);\n        } else if (surface_image.format.fourcc == VA_FOURCC_NV12) {\n            u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            v_src = u_src;\n        }\n\n        if (g_dst.memtype == VA_SURFACE_ATTRIB_MEM_TYPE_VA) {\n            if (surface_image.format.fourcc == VA_FOURCC_NV12) {\n                uint32_t y_size = surface_image.width * surface_image.height;\n                newImageBuffer = (unsigned char*)malloc(y_size * 3 / 2);\n                assert(newImageBuffer);\n\n                y_dst = newImageBuffer;\n                u_dst = v_dst = newImageBuffer + y_size;\n\n                /* Y plane copy */\n                for (row = 0; row < surface_image.height; row++) {\n                    memcpy(y_dst, y_src, surface_image.width);\n                    y_src += surface_image.pitches[0];\n                    y_dst += surface_image.width;\n                }\n                // UV plane\n                for (row = 0; row < surface_image.height / 2; row++) {\n                    memcpy(u_dst, u_src, surface_image.width);\n                    u_dst += surface_image.width;\n                    u_src += surface_image.pitches[1];\n                }\n\n                /* write frame to file */\n                do {\n                    n_items = fwrite(newImageBuffer, y_size * 3 / 2, 1, fp);\n                } while (n_items != 1);\n            } else if (surface_image.format.fourcc == VA_FOURCC_RGBP) {\n                uint32_t y_size = surface_image.width * surface_image.height;\n                newImageBuffer = (unsigned char*)malloc(y_size * 3);\n                assert(newImageBuffer);\n\n                y_dst = newImageBuffer;\n                u_dst = newImageBuffer + y_size;\n                v_dst = newImageBuffer + y_size * 2;\n\n                for (row = 0; row < surface_image.height; row++) {\n                    memcpy(y_dst, y_src, surface_image.width);\n                    y_src += surface_image.pitches[0];\n                    y_dst += surface_image.width;\n\n                    memcpy(u_dst, u_src, surface_image.width);\n                    u_dst += surface_image.width;\n                    u_src += surface_image.pitches[0];\n\n                    memcpy(v_dst, v_src, surface_image.width);\n                    v_dst += surface_image.width;\n                    v_src += surface_image.pitches[0];\n                }\n\n                do {\n                    n_items = fwrite(newImageBuffer, y_size * 3, 1, fp);\n                } while (n_items != 1);\n            }\n        } else { // usrptr surface.\n            if (surface_image.format.fourcc == VA_FOURCC_NV12) {\n                // directly copy NV12 1D/2D surface. skip derive and map image.\n                uint32_t y_size = surface_image.height * surface_image.pitches[0];\n                newImageBuffer = (unsigned char*)malloc(y_size * 3 / 2);\n                assert(newImageBuffer);\n                memcpy(newImageBuffer, g_dst.pBufBase, (y_size * 3 / 2));\n\n                do {\n                    n_items = fwrite(newImageBuffer, y_size * 3 / 2, 1, fp);\n                } while (n_items != 1);\n            } else if (surface_image.format.fourcc == VA_FOURCC_RGBP) {\n                uint32_t y_size = surface_image.height * surface_image.pitches[0];\n                newImageBuffer = (unsigned char*)malloc(y_size * 3);\n                assert(newImageBuffer);\n                memcpy(newImageBuffer, g_dst.pBufBase, (y_size * 3));\n\n                do {\n                    n_items = fwrite(newImageBuffer, y_size * 3, 1, fp);\n                } while (n_items != 1);\n            }\n        }\n    } else {\n        printf(\"Not supported surface fourcc !!! \\n\");\n        return VA_STATUS_ERROR_INVALID_SURFACE;\n    }\n\n    if (newImageBuffer) {\n        free(newImageBuffer);\n        newImageBuffer = NULL;\n    }\n\n    vaUnmapBuffer(va_dpy, surface_image.buf);\n    vaDestroyImage(va_dpy, surface_image.image_id);\n\n    return VA_STATUS_SUCCESS;\n}\n\nstatic VAStatus\nvideo_frame_process(VASurfaceID in_surface_id,\n                    VASurfaceID out_surface_id)\n{\n    VAStatus va_status;\n#if VA_CHECK_VERSION(1, 10, 0)\n    VACopyObject src_obj, dst_obj;\n    VACopyOption option;\n    memset(&src_obj, 0, sizeof(src_obj));\n    memset(&dst_obj, 0, sizeof(dst_obj));\n    memset(&option, 0, sizeof(option));\n\n    src_obj.obj_type = VACopyObjectSurface;\n    src_obj.object.surface_id = in_surface_id;\n    dst_obj.obj_type = VACopyObjectSurface;\n    dst_obj.object.surface_id = out_surface_id;\n    option.bits.va_copy_mode = g_copy_method; // VA_COPY_MODE_BALANCE;\n\n    va_status = vaCopy(va_dpy, &dst_obj, &src_obj, option);\n#else\n    printf(\"incorrect libva version!\\n\");\n    va_status = VA_STATUS_ERROR_OPERATION_FAILED;\n#endif\n    return va_status;\n}\n\nstatic VAStatus\nvpp_context_create()\n{\n    VAStatus va_status = VA_STATUS_SUCCESS;\n    int32_t j;\n\n    /* VA driver initialization */\n    va_dpy = va_open_display();\n    int32_t major_ver, minor_ver;\n    va_status = vaInitialize(va_dpy, &major_ver, &minor_ver);\n    assert(va_status == VA_STATUS_SUCCESS);\n\n    /* Check whether VPP is supported by driver */\n    VAEntrypoint entrypoints[5];\n    int32_t num_entrypoints;\n    num_entrypoints = vaMaxNumEntrypoints(va_dpy);\n    va_status = vaQueryConfigEntrypoints(va_dpy,\n                                         VAProfileNone,\n                                         entrypoints,\n                                         &num_entrypoints);\n    CHECK_VASTATUS(va_status, \"vaQueryConfigEntrypoints\");\n\n    for (j = 0; j < num_entrypoints; j++) {\n        if (entrypoints[j] == VAEntrypointVideoProc)\n            break;\n    }\n\n    if (j == num_entrypoints) {\n        printf(\"VPP is not supported by driver\\n\");\n        assert(0);\n    }\n\n    /* Render target surface format check */\n    VAConfigAttrib attrib;\n    attrib.type = VAConfigAttribRTFormat;\n    va_status = vaGetConfigAttributes(va_dpy,\n                                      VAProfileNone,\n                                      VAEntrypointVideoProc,\n                                      &attrib,\n                                      1);\n    CHECK_VASTATUS(va_status, \"vaGetConfigAttributes\");\n    if (!(attrib.value & g_dst.format)) {\n        printf(\"RT format %d is not supported by VPP !\\n\", g_dst.format);\n        assert(0);\n    }\n\n    /* Create surface/config/context for VPP pipeline */\n    va_status = create_surface(&g_in_surface_id, g_src);\n    CHECK_VASTATUS(va_status, \"vaCreateSurfaces for input\");\n\n    va_status = create_surface(&g_out_surface_id, g_dst);\n    CHECK_VASTATUS(va_status, \"vaCreateSurfaces for output\");\n\n    va_status = vaCreateConfig(va_dpy,\n                               VAProfileNone,\n                               VAEntrypointVideoProc,\n                               &attrib,\n                               1,\n                               &config_id);\n    CHECK_VASTATUS(va_status, \"vaCreateConfig\");\n\n    va_status = vaCreateContext(va_dpy,\n                                config_id,\n                                g_dst.width,\n                                g_dst.height,\n                                VA_PROGRESSIVE,\n                                &g_out_surface_id,\n                                1,\n                                &context_id);\n    CHECK_VASTATUS(va_status, \"vaCreateContext\");\n    return va_status;\n}\n\nstatic void\nvpp_context_destroy()\n{\n    /* Release resource */\n    vaDestroySurfaces(va_dpy, &g_in_surface_id, 1);\n    vaDestroySurfaces(va_dpy, &g_out_surface_id, 1);\n    vaDestroyContext(va_dpy, context_id);\n    vaDestroyConfig(va_dpy, config_id);\n\n    vaTerminate(va_dpy);\n    va_close_display(va_dpy);\n\n    _FREE(g_src.pBuf);\n    _FREE(g_dst.pBuf);\n}\n\nstatic int8_t\nparse_fourcc_and_format(char *str, uint32_t *fourcc, uint32_t *format)\n{\n    uint32_t tfourcc = VA_FOURCC('N', 'V', '1', '2');\n    uint32_t tformat = VA_RT_FORMAT_YUV420;\n\n    if (!strcmp(str, \"YV12\")) {\n        tfourcc = VA_FOURCC('Y', 'V', '1', '2');\n    } else if (!strcmp(str, \"I420\")) {\n        tfourcc = VA_FOURCC('I', '4', '2', '0');\n    } else if (!strcmp(str, \"NV12\")) {\n        tfourcc = VA_FOURCC('N', 'V', '1', '2');\n    } else if (!strcmp(str, \"YUY2\") || !strcmp(str, \"YUYV\")) {\n        tfourcc = VA_FOURCC('Y', 'U', 'Y', '2');\n    } else if (!strcmp(str, \"UYVY\")) {\n        tfourcc = VA_FOURCC('U', 'Y', 'V', 'Y');\n    } else if (!strcmp(str, \"P010\")) {\n        tfourcc = VA_FOURCC('P', '0', '1', '0');\n    } else if (!strcmp(str, \"I010\")) {\n        tfourcc = VA_FOURCC('I', '0', '1', '0');\n    } else if (!strcmp(str, \"RGBA\")) {\n        tfourcc = VA_FOURCC_RGBA;\n    } else if (!strcmp(str, \"RGBX\")) {\n        tfourcc = VA_FOURCC_RGBX;\n    } else if (!strcmp(str, \"BGRA\")) {\n        tfourcc = VA_FOURCC_BGRA;\n    } else if (!strcmp(str, \"BGRX\")) {\n        tfourcc = VA_FOURCC_BGRX;\n    } else if (!strcmp(str, \"RGBP\")) {\n        tfourcc = VA_FOURCC_RGBP;\n    } else if (!strcmp(str, \"BGRP\")) {\n        tfourcc = VA_FOURCC_BGRP;\n    } else {\n        printf(\"Not supported format: %s! Currently only support following format: %s\\n\",\n               str, \"YV12, I420, NV12, YUY2(YUYV), UYVY, P010, I010, RGBA, RGBX, BGRA or BGRX\");\n        assert(0);\n    }\n\n    if (fourcc)\n        *fourcc = tfourcc;\n\n    if (format)\n        *format = tformat;\n\n    return 0;\n}\n\nstatic int8_t\nparse_basic_parameters()\n{\n    char str[MAX_LEN];\n    memset(&g_src, 0, sizeof(g_src));\n    memset(&g_dst, 0, sizeof(g_dst));\n\n    /* Read src frame file information */\n    read_value_string(g_config_file_fd, \"SRC_FILE_NAME\", g_src.name);\n    read_value_uint32(g_config_file_fd, \"SRC_FRAME_WIDTH\", &g_src.width);\n    read_value_uint32(g_config_file_fd, \"SRC_FRAME_HEIGHT\", &g_src.height);\n    read_value_string(g_config_file_fd, \"SRC_FRAME_FORMAT\", str);\n    parse_fourcc_and_format(str, &g_src.fourCC, &g_src.format);\n    read_value_string(g_config_file_fd, \"SRC_SURFACE_MEMORY_TYPE\", str);\n    parse_memtype_format(str, &g_src.memtype);\n    read_value_uint32(g_config_file_fd, \"SRC_SURFACE_CPU_ALIGN_SIZE\", &g_src.alignsize);\n\n    /* Read dst frame file information */\n    read_value_string(g_config_file_fd, \"DST_FILE_NAME\", g_dst.name);\n    read_value_uint32(g_config_file_fd, \"DST_FRAME_WIDTH\", &g_dst.width);\n    read_value_uint32(g_config_file_fd, \"DST_FRAME_HEIGHT\", &g_dst.height);\n    read_value_string(g_config_file_fd, \"DST_FRAME_FORMAT\", str);\n    parse_fourcc_and_format(str, &g_dst.fourCC, &g_dst.format);\n    read_value_string(g_config_file_fd, \"DST_SURFACE_MEMORY_TYPE\", str);\n    parse_memtype_format(str, &g_dst.memtype);\n    read_value_uint32(g_config_file_fd, \"DST_SURFACE_CPU_ALIGN_SIZE\", &g_dst.alignsize);\n\n    read_value_string(g_config_file_fd, \"SRC_FILE_FORMAT\", str);\n    parse_fourcc_and_format(str, &g_src_file_fourcc, NULL);\n\n    read_value_string(g_config_file_fd, \"DST_FILE_FORMAT\", str);\n    parse_fourcc_and_format(str, &g_dst_file_fourcc, NULL);\n\n    read_value_uint32(g_config_file_fd, \"FRAME_SUM\", &g_frame_count);\n    read_value_uint32(g_config_file_fd, \"COPY_METHOD\", &g_copy_method);\n\n    if (g_src.width != g_dst.width ||\n        g_src.height != g_dst.height) {\n        std::cout << \"va copy doesn't support resize!\" << endl;\n        return -1;\n    }\n\n    if (g_src.fourCC != g_dst.fourCC) {\n        std::cout << \"va copy doesn't support CSC!\" << endl;\n        return -1;\n    }\n\n    std::cout << \"=========Media Copy=========\" << endl;\n\n    if (g_src.memtype == VA_SURFACE_ATTRIB_MEM_TYPE_VA) {\n        std::cout << \"copy from 2D tile surface to \";\n    } else {\n        if (g_src.alignsize == 1 || !(g_src.width % g_src.alignsize))\n            std::cout << \"copy from 1D linear surface to \";\n        else\n            std::cout << \"copy from 2D linear surface with pitch_align \" << g_src.alignsize << \" to \";\n    }\n\n    if (g_dst.memtype == VA_SURFACE_ATTRIB_MEM_TYPE_VA) {\n        std::cout << \"2D tile surface.\" << endl;\n    } else {\n        if (g_dst.alignsize == 1 || !(g_dst.width % g_dst.alignsize))\n            std::cout << \"1D linear surface.\" << endl;\n        else\n            std::cout << \"2D linear surface with pitch_align \" << g_dst.alignsize << endl;\n    }\n    std::cout << \"prefer hw engine is \" << g_copy_method << \". notification, 0: blanance(vebox), 1: perf(EU), 2 powersaving(blt)\" << endl;\n\n    return 0;\n}\n\nstatic void\nprint_help()\n{\n    printf(\"The app is used to test the scaling and csc feature.\\n\");\n    printf(\"Cmd Usage: ./vacopy process_copy.cfg\\n\");\n    printf(\"The configure file process_copy.cfg is used to configure the para.\\n\");\n    printf(\"You can refer process_copy.cfg.template for each para meaning and create the configure file.\\n\");\n}\nint32_t main(int32_t argc, char *argv[])\n{\n    VAStatus va_status;\n    uint32_t i;\n\n    if (argc != 2 || !strcmp(argv[1], \"-h\") || !strcmp(argv[1], \"--help\")) {\n        print_help();\n        return -1;\n    }\n\n    /* Parse the configure file for video process*/\n    strncpy(g_config_file_name, argv[1], MAX_LEN);\n    g_config_file_name[MAX_LEN - 1] = '\\0';\n\n    if (NULL == (g_config_file_fd = fopen(g_config_file_name, \"r\"))) {\n        printf(\"Open configure file %s failed!\\n\", g_config_file_name);\n        assert(0);\n    }\n\n    /* Parse basic parameters */\n    if (parse_basic_parameters()) {\n        printf(\"Parse parameters in configure file error\\n\");\n        assert(0);\n    }\n\n    va_status = vpp_context_create();\n    if (va_status != VA_STATUS_SUCCESS) {\n        printf(\"vpp context create failed \\n\");\n        assert(0);\n    }\n\n    /* Video frame fetch, process and store */\n    if (NULL == (g_src.fd = fopen(g_src.name, \"r\"))) {\n        printf(\"Open SRC_FILE_NAME: %s failed, please specify it in config file: %s !\\n\",\n               g_src.name, g_config_file_name);\n        assert(0);\n    }\n\n    if (NULL == (g_dst.fd = fopen(g_dst.name, \"w\"))) {\n        printf(\"Open DST_FILE_NAME: %s failed, please specify it in config file: %s !\\n\",\n               g_dst.name, g_config_file_name);\n        assert(0);\n    }\n\n    printf(\"\\nStart to process, ...\\n\");\n    struct timespec Pre_time;\n    struct timespec Cur_time;\n    unsigned int duration = 0;\n    clock_gettime(CLOCK_MONOTONIC, &Pre_time);\n\n    for (i = 0; i < g_frame_count; i ++) {\n        upload_frame_to_surface(g_src.fd, g_in_surface_id);\n        if (VA_STATUS_SUCCESS != video_frame_process(g_in_surface_id, g_out_surface_id)) {\n            std::cout << \"***vaCopy failed***\" << std::endl;\n        }\n        store_surface_to_file(g_dst.fd, g_out_surface_id);\n    }\n\n    clock_gettime(CLOCK_MONOTONIC, &Cur_time);\n    duration = (Cur_time.tv_sec - Pre_time.tv_sec) * 1000;\n    if (Cur_time.tv_nsec > Pre_time.tv_nsec) {\n        duration += (Cur_time.tv_nsec - Pre_time.tv_nsec) / 1000000;\n    } else {\n        duration += (Cur_time.tv_nsec + 1000000000 - Pre_time.tv_nsec) / 1000000 - 1000;\n    }\n\n    printf(\"Finish processing, performance: \\n\");\n    printf(\"%d frames processed in: %d ms, ave time = %d ms\\n\", g_frame_count, duration, duration / g_frame_count);\n\n    if (g_src.fd)\n        fclose(g_src.fd);\n\n    if (g_dst.fd)\n        fclose(g_dst.fd);\n\n    if (g_config_file_fd)\n        fclose(g_config_file_fd);\n\n    vpp_context_destroy();\n\n    return 0;\n}\n\n"
  },
  {
    "path": "videoprocess/vavpp.cpp",
    "content": "/*\n * Copyright (c) 2014 Intel Corporation. All Rights Reserved.\n *\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the\n * \"Software\"), to deal in the Software without restriction, including\n * without limitation the rights to use, copy, modify, merge, publish,\n * distribute, sub license, and/or sell copies of the Software, and to\n * permit persons to whom the Software is furnished to do so, subject to\n * the following conditions:\n *\n * The above copyright notice and this permission notice (including the\n * next paragraph) shall be included in all copies or substantial portions\n * of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n * IN NO EVENT SHALL INTEL AND/OR ITS SUPPLIERS BE LIABLE FOR\n * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n/*\n * Video process test case based on LibVA.\n * This test covers deinterlace, denoise, color balance, sharpening,\n * blending, scaling and several surface format conversion.\n * Usage: vavpp process.cfg\n */\n\n#include <stdio.h>\n#include <stdlib.h>\n#include <string.h>\n#include <stdint.h>\n#include <sys/time.h>\n#include <assert.h>\n#include <va/va.h>\n#include <va/va_vpp.h>\n#include \"va_display.h\"\n\n#define BLEND_ON        0\n\n#ifndef VA_FOURCC_I420\n#define VA_FOURCC_I420 0x30323449\n#endif\n\n#define MAX_LEN   1024\n\n#define CHECK_VASTATUS(va_status,func)                                      \\\n  if (va_status != VA_STATUS_SUCCESS) {                                     \\\n      fprintf(stderr,\"%s:%s (%d) failed,exit\\n\", __func__, func, __LINE__); \\\n      exit(1);                                                              \\\n  }\n\nstatic VADisplay va_dpy = NULL;\nstatic VAContextID context_id = 0;\nstatic VAConfigID  config_id = 0;\nstatic VAProcFilterType g_filter_type = VAProcFilterNone;\nstatic VASurfaceID g_in_surface_id = VA_INVALID_ID;\nstatic VASurfaceID g_out_surface_id = VA_INVALID_ID;\n\nstatic FILE* g_config_file_fd = NULL;\nstatic FILE* g_src_file_fd = NULL;\nstatic FILE* g_dst_file_fd = NULL;\n\nstatic char g_config_file_name[MAX_LEN];\nstatic char g_src_file_name[MAX_LEN];\nstatic char g_dst_file_name[MAX_LEN];\nstatic char g_filter_type_name[MAX_LEN];\n\nstatic uint32_t g_in_pic_width = 352;\nstatic uint32_t g_in_pic_height = 288;\nstatic uint32_t g_out_pic_width = 352;\nstatic uint32_t g_out_pic_height = 288;\n\nstatic uint32_t g_in_fourcc  = VA_FOURCC('N', 'V', '1', '2');\nstatic uint32_t g_in_format  = VA_RT_FORMAT_YUV420;\nstatic uint32_t g_out_fourcc = VA_FOURCC('N', 'V', '1', '2');\nstatic uint32_t g_out_format = VA_RT_FORMAT_YUV420;\nstatic uint32_t g_src_file_fourcc = VA_FOURCC('I', '4', '2', '0');\nstatic uint32_t g_dst_file_fourcc = VA_FOURCC('Y', 'V', '1', '2');\n\nstatic uint8_t g_blending_enabled = 0;\nstatic uint8_t g_blending_min_luma = 1;\nstatic uint8_t g_blending_max_luma = 254;\n\nstatic uint32_t g_frame_count = 0;\n\nstatic int8_t\nread_value_string(FILE *fp, const char* field_name, char* value)\n{\n    char strLine[MAX_LEN];\n    char* field;\n    char* str;\n    uint16_t i;\n\n    if (!fp || !field_name || !value)  {\n        printf(\"Invalid fuction parameters\\n\");\n        return -1;\n    }\n\n    rewind(fp);\n\n    while (!feof(fp)) {\n        if (!fgets(strLine, MAX_LEN, fp))\n            continue;\n\n        for (i = 0; i < MAX_LEN && strLine[i]; i++)\n            if (strLine[i] != ' ') break;\n\n        if (i == MAX_LEN || strLine[i] == '#' || strLine[i] == '\\n')\n            continue;\n\n        field = strtok(&strLine[i], \":\");\n        if (strncmp(field, field_name, strlen(field_name)))\n            continue;\n\n        if (!(str = strtok(NULL, \":\")))\n            continue;\n\n        /* skip blank space in string */\n        while (*str == ' ')\n            str++;\n\n        *(str + strlen(str) - 1) = '\\0';\n        strcpy(value, str);\n\n        return 0;\n    }\n\n    return -1;\n}\n\nstatic int8_t\nread_value_uint8(FILE* fp, const char* field_name, uint8_t* value)\n{\n    char str[MAX_LEN];\n\n    if (read_value_string(fp, field_name, str)) {\n        printf(\"Failed to find integer field: %s\", field_name);\n        return -1;\n    }\n\n    *value = (uint8_t)atoi(str);\n    return 0;\n}\n\nstatic int8_t\nread_value_uint32(FILE* fp, const char* field_name, uint32_t* value)\n{\n    char str[MAX_LEN];\n\n    if (read_value_string(fp, field_name, str)) {\n        printf(\"Failed to find integer field: %s\", field_name);\n        return -1;\n    }\n\n    *value = (uint32_t)atoi(str);\n    return 0;\n}\n\nstatic int8_t\nread_value_float(FILE *fp, const char* field_name, float* value)\n{\n    char str[MAX_LEN];\n    if (read_value_string(fp, field_name, str)) {\n        printf(\"Failed to find float field: %s \\n\", field_name);\n        return -1;\n    }\n\n    *value = atof(str);\n    return 0;\n}\n\nstatic float\nadjust_to_range(VAProcFilterValueRange *range, float value)\n{\n    if (value < range->min_value || value > range->max_value) {\n        printf(\"Value: %f exceed range: (%f ~ %f), force to use default: %f \\n\",\n               value, range->min_value, range->max_value, range->default_value);\n        return range->default_value;\n    }\n\n    return value;\n}\n\nstatic VAStatus\ncreate_surface(VASurfaceID * p_surface_id,\n               uint32_t width, uint32_t height,\n               uint32_t fourCC, uint32_t format)\n{\n    VAStatus va_status;\n    VASurfaceAttrib    surface_attrib;\n    surface_attrib.type =  VASurfaceAttribPixelFormat;\n    surface_attrib.flags = VA_SURFACE_ATTRIB_SETTABLE;\n    surface_attrib.value.type = VAGenericValueTypeInteger;\n    surface_attrib.value.value.i = fourCC;\n\n    va_status = vaCreateSurfaces(va_dpy,\n                                 format,\n                                 width,\n                                 height,\n                                 p_surface_id,\n                                 1,\n                                 &surface_attrib,\n                                 1);\n    return va_status;\n}\n\nstatic VAStatus\nconstruct_nv12_mask_surface(VASurfaceID surface_id,\n                            uint8_t min_luma,\n                            uint8_t max_luma)\n{\n    VAStatus va_status;\n    VAImage surface_image;\n    void *surface_p = NULL;\n    unsigned char *y_dst, *u_dst;\n    uint32_t row, col;\n\n    va_status = vaDeriveImage(va_dpy, surface_id, &surface_image);\n    CHECK_VASTATUS(va_status, \"vaDeriveImage\");\n\n    va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p);\n    CHECK_VASTATUS(va_status, \"vaMapBuffer\");\n\n    y_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]);\n    u_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n\n    /* fill Y plane, the luma values of some pixels is in the range of min_luma~max_luma,\n     * and others are out side of it, in luma key blending case, the pixels with Y value\n     * exceeding the range will be hided*/\n    for (row = 0; row < surface_image.height; row++) {\n        if (row < surface_image.height / 4 || row > surface_image.height * 3 / 4)\n            memset(y_dst, max_luma + 1, surface_image.pitches[0]);\n        else\n            memset(y_dst, (min_luma + max_luma) / 2, surface_image.pitches[0]);\n\n        y_dst += surface_image.pitches[0];\n    }\n\n    /* fill UV plane */\n    for (row = 0; row < surface_image.height / 2; row++) {\n        for (col = 0; col < surface_image.width / 2; col++) {\n            u_dst[col * 2] = 128;\n            u_dst[col * 2 + 1] = 128;\n        }\n        u_dst += surface_image.pitches[1];\n    }\n\n    vaUnmapBuffer(va_dpy, surface_image.buf);\n    vaDestroyImage(va_dpy, surface_image.image_id);\n\n    return VA_STATUS_SUCCESS;\n}\n\n/* Load yuv frame to NV12/YV12/I420 surface*/\nstatic VAStatus\nupload_yuv_frame_to_yuv_surface(FILE *fp,\n                                VASurfaceID surface_id)\n{\n    VAStatus va_status;\n    VAImage surface_image;\n    unsigned char *y_src, *u_src, *v_src;\n    unsigned char *y_dst, *u_dst, *v_dst;\n    void *surface_p = NULL;\n    uint32_t frame_size, row, col;\n    size_t n_items;\n    unsigned char * newImageBuffer = NULL;\n\n    va_status = vaDeriveImage(va_dpy, surface_id, &surface_image);\n    CHECK_VASTATUS(va_status, \"vaDeriveImage\");\n\n    va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p);\n    CHECK_VASTATUS(va_status, \"vaMapBuffer\");\n\n    if (surface_image.format.fourcc == VA_FOURCC_YV12 ||\n        surface_image.format.fourcc == VA_FOURCC_I420 ||\n        surface_image.format.fourcc == VA_FOURCC_NV12) {\n\n        frame_size = surface_image.width * surface_image.height * 3 / 2;\n        newImageBuffer = (unsigned char*)malloc(frame_size);\n        assert(newImageBuffer);\n\n        do {\n            n_items = fread(newImageBuffer, frame_size, 1, fp);\n        } while (n_items != 1);\n\n        y_src = newImageBuffer;\n        if (g_src_file_fourcc == VA_FOURCC_I420) {\n            u_src = newImageBuffer + surface_image.width * surface_image.height;\n            v_src = newImageBuffer + surface_image.width * surface_image.height * 5 / 4;\n        } else if (g_src_file_fourcc == VA_FOURCC_YV12) {\n            v_src = newImageBuffer + surface_image.width * surface_image.height;\n            u_src = newImageBuffer + surface_image.width * surface_image.height * 5 / 4;\n        } else if (g_src_file_fourcc == VA_FOURCC_NV12) {\n            u_src = newImageBuffer + surface_image.width * surface_image.height;\n            v_src = u_src;\n        } else {\n            printf(\"Not supported YUV fourcc for input file !!!\\n\");\n            free(newImageBuffer);\n            return VA_STATUS_ERROR_INVALID_SURFACE;\n        }\n\n        y_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]);\n\n        if (surface_image.format.fourcc == VA_FOURCC_YV12) {\n            v_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            u_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]);\n        } else if (surface_image.format.fourcc == VA_FOURCC_I420) {\n            u_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            v_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]);\n        } else {\n            u_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            v_dst = u_dst;\n        }\n\n        /* Y plane, directly copy */\n        for (row = 0; row < surface_image.height; row++) {\n            memcpy(y_dst, y_src, surface_image.width);\n            y_dst += surface_image.pitches[0];\n            y_src += surface_image.width;\n        }\n\n        /* UV plane */\n        if (surface_image.format.fourcc == VA_FOURCC_YV12 ||\n            surface_image.format.fourcc == VA_FOURCC_I420) {\n            for (row = 0; row < surface_image.height / 2; row ++) {\n                if (g_src_file_fourcc == VA_FOURCC_I420 ||\n                    g_src_file_fourcc == VA_FOURCC_YV12) {\n                    memcpy(v_dst, v_src, surface_image.width / 2);\n                    memcpy(u_dst, u_src, surface_image.width / 2);\n\n                    v_src += surface_image.width / 2;\n                    u_src += surface_image.width / 2;\n                } else {\n                    for (col = 0; col < surface_image.width / 2; col++) {\n                        u_dst[col] = u_src[col * 2];\n                        v_dst[col] = u_src[col * 2 + 1];\n                    }\n\n                    u_src += surface_image.width;\n                    v_src = u_src;\n                }\n\n                if (surface_image.format.fourcc == VA_FOURCC_YV12) {\n                    v_dst += surface_image.pitches[1];\n                    u_dst += surface_image.pitches[2];\n                } else {\n                    v_dst += surface_image.pitches[2];\n                    u_dst += surface_image.pitches[1];\n                }\n            }\n        } else if (surface_image.format.fourcc == VA_FOURCC_NV12) {\n            for (row = 0; row < surface_image.height / 2; row++) {\n                if (g_src_file_fourcc == VA_FOURCC_I420 ||\n                    g_src_file_fourcc == VA_FOURCC_YV12) {\n                    for (col = 0; col < surface_image.width / 2; col++) {\n                        u_dst[col * 2] = u_src[col];\n                        u_dst[col * 2 + 1] = v_src[col];\n                    }\n\n                    u_src += (surface_image.width / 2);\n                    v_src += (surface_image.width / 2);\n                } else {\n                    memcpy(u_dst, u_src, surface_image.width);\n                    u_src += surface_image.width;\n                    v_src = u_src;\n                }\n\n                u_dst += surface_image.pitches[1];\n            }\n        }\n    } else if ((surface_image.format.fourcc == VA_FOURCC_YUY2 &&\n                g_src_file_fourcc == VA_FOURCC_YUY2) ||\n               (surface_image.format.fourcc == VA_FOURCC_UYVY &&\n                g_src_file_fourcc == VA_FOURCC_UYVY) ||\n               (surface_image.format.fourcc == VA_FOURCC_AYUV &&\n                g_src_file_fourcc == VA_FOURCC_AYUV)) {\n        uint32_t byte_per_pixel = (g_src_file_fourcc == VA_FOURCC_AYUV) ? 4 : 2;\n\n        frame_size = surface_image.width * surface_image.height * byte_per_pixel;\n        newImageBuffer = (unsigned char*)malloc(frame_size);\n        assert(newImageBuffer);\n\n        do {\n            n_items = fread(newImageBuffer, frame_size, 1, fp);\n        } while (n_items != 1);\n\n        y_src = newImageBuffer;\n        y_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]);\n\n        /* plane 0, directly copy */\n        for (row = 0; row < surface_image.height; row++) {\n            memcpy(y_dst, y_src, surface_image.width * byte_per_pixel);\n            y_src += surface_image.width * byte_per_pixel;\n            y_dst += surface_image.pitches[0];\n        }\n    } else if ((surface_image.format.fourcc == VA_FOURCC_P010 &&\n                g_src_file_fourcc == VA_FOURCC_P010) ||\n               (surface_image.format.fourcc == VA_FOURCC_I010 &&\n                g_src_file_fourcc == VA_FOURCC_I010)) {\n        frame_size = surface_image.width * surface_image.height * 3;\n        newImageBuffer = (unsigned char*)malloc(frame_size);\n        assert(newImageBuffer);\n\n        do {\n            n_items = fread(newImageBuffer, frame_size, 1, fp);\n        } while (n_items != 1);\n\n        y_src = newImageBuffer;\n        y_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]);\n\n        /* plane 0, directly copy */\n        for (row = 0; row < surface_image.height; row++) {\n            memcpy(y_dst, y_src, surface_image.width * 2);\n            y_src += surface_image.width * 2;\n            y_dst += surface_image.pitches[0];\n        }\n\n        /* UV plane */\n        if (surface_image.format.fourcc == VA_FOURCC_I010) {\n            assert(g_src_file_fourcc == VA_FOURCC_I010);\n\n            u_src = newImageBuffer + surface_image.width * surface_image.height * 2;\n            v_src = newImageBuffer + surface_image.width * surface_image.height * 5 / 2;\n\n            u_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            v_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]);\n\n            for (row = 0; row < surface_image.height / 2; row++) {\n                memcpy(u_dst, u_src, surface_image.width);\n                memcpy(v_dst, v_src, surface_image.width);\n\n                u_src += surface_image.width;\n                v_src += surface_image.width;\n\n                u_dst += surface_image.pitches[1];\n                v_dst += surface_image.pitches[2];\n            }\n        } else if (surface_image.format.fourcc == VA_FOURCC_P010) {\n            assert(g_src_file_fourcc == VA_FOURCC_P010);\n\n            u_src = newImageBuffer + surface_image.width * surface_image.height * 2;\n            v_src = u_src;\n\n            u_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            v_dst = u_dst;\n\n            for (row = 0; row < surface_image.height / 2; row++) {\n                memcpy(u_dst, u_src, surface_image.width * 2);\n\n                u_src += surface_image.width * 2;\n                v_src = u_src;\n\n                u_dst += surface_image.pitches[1];\n                v_dst = u_dst;\n            }\n        }\n    }  else if ((surface_image.format.fourcc == VA_FOURCC_RGBA &&\n                 g_src_file_fourcc == VA_FOURCC_RGBA) ||\n                (surface_image.format.fourcc == VA_FOURCC_RGBX &&\n                 g_src_file_fourcc == VA_FOURCC_RGBX) ||\n                (surface_image.format.fourcc == VA_FOURCC_BGRA &&\n                 g_src_file_fourcc == VA_FOURCC_BGRA) ||\n                (surface_image.format.fourcc == VA_FOURCC_BGRX &&\n                 g_src_file_fourcc == VA_FOURCC_BGRX)) {\n        frame_size = surface_image.width * surface_image.height * 4;\n        newImageBuffer = (unsigned char*)malloc(frame_size);\n        assert(newImageBuffer);\n\n        do {\n            n_items = fread(newImageBuffer, frame_size, 1, fp);\n        } while (n_items != 1);\n\n        y_src = newImageBuffer;\n        y_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]);\n\n        /* plane 0, directly copy */\n        for (row = 0; row < surface_image.height; row++) {\n            memcpy(y_dst, y_src, surface_image.width * 4);\n            y_src += surface_image.width * 4;\n            y_dst += surface_image.pitches[0];\n        }\n    } else if (surface_image.format.fourcc == VA_FOURCC_RGBP &&\n               g_src_file_fourcc == VA_FOURCC_RGBP) {\n        int i;\n\n        frame_size = surface_image.width * surface_image.height * 3;\n        newImageBuffer = (unsigned char*)malloc(frame_size);\n        assert(newImageBuffer);\n\n        do {\n            n_items = fread(newImageBuffer, frame_size, 1, fp);\n        } while (n_items != 1);\n\n        y_src = newImageBuffer;\n\n        for (i = 0; i < 3; i++) {\n            y_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[i]);\n\n            for (row = 0; row < surface_image.height; row++) {\n                memcpy(y_dst, y_src, surface_image.width);\n                y_src += surface_image.width;\n                y_dst += surface_image.pitches[i];\n            }\n        }\n    } else {\n        printf(\"Not supported YUV surface fourcc !!! \\n\");\n        return VA_STATUS_ERROR_INVALID_SURFACE;\n    }\n\n    if (newImageBuffer) {\n        free(newImageBuffer);\n        newImageBuffer = NULL;\n    }\n\n    vaUnmapBuffer(va_dpy, surface_image.buf);\n    vaDestroyImage(va_dpy, surface_image.image_id);\n\n    return VA_STATUS_SUCCESS;\n}\n\n/* Store NV12/YV12/I420 surface to yv12 file */\nstatic VAStatus\nstore_yuv_surface_to_yv12_file(FILE *fp,\n                               VASurfaceID surface_id)\n{\n    VAStatus va_status;\n    VAImage surface_image;\n    void *surface_p = NULL;\n    unsigned char *y_src, *u_src, *v_src;\n    unsigned char *y_dst, *u_dst, *v_dst;\n    uint32_t row, col;\n    int32_t n_items;\n    unsigned char * newImageBuffer = NULL;\n\n    va_status = vaDeriveImage(va_dpy, surface_id, &surface_image);\n    CHECK_VASTATUS(va_status, \"vaDeriveImage\");\n\n    va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p);\n    CHECK_VASTATUS(va_status, \"vaMapBuffer\");\n\n    /* store the surface to one YV12 file or one bmp file*/\n    if (surface_image.format.fourcc == VA_FOURCC_YV12 ||\n        surface_image.format.fourcc == VA_FOURCC_I420 ||\n        surface_image.format.fourcc == VA_FOURCC_NV12) {\n\n        uint32_t y_size = surface_image.width * surface_image.height;\n        uint32_t u_size = y_size / 4;\n\n        newImageBuffer = (unsigned char*)malloc(y_size * 3 / 2);\n        assert(newImageBuffer);\n\n        /* stored as YV12 format */\n        y_dst = newImageBuffer;\n        v_dst = newImageBuffer + y_size;\n        u_dst = newImageBuffer + y_size + u_size;\n\n        y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]);\n        if (surface_image.format.fourcc == VA_FOURCC_YV12) {\n            v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]);\n        } else if (surface_image.format.fourcc == VA_FOURCC_I420) {\n            u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]);\n        } else if (surface_image.format.fourcc == VA_FOURCC_NV12) {\n            u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            v_src = u_src;\n        }\n\n        /* Y plane copy */\n        for (row = 0; row < surface_image.height; row++) {\n            memcpy(y_dst, y_src, surface_image.width);\n            y_src += surface_image.pitches[0];\n            y_dst += surface_image.width;\n        }\n\n        /* UV plane copy */\n        if (surface_image.format.fourcc == VA_FOURCC_YV12 ||\n            surface_image.format.fourcc == VA_FOURCC_I420) {\n            for (row = 0; row < surface_image.height / 2; row ++) {\n                memcpy(v_dst, v_src, surface_image.width / 2);\n                memcpy(u_dst, u_src, surface_image.width / 2);\n\n                v_dst += surface_image.width / 2;\n                u_dst += surface_image.width / 2;\n\n                if (surface_image.format.fourcc == VA_FOURCC_YV12) {\n                    v_src += surface_image.pitches[1];\n                    u_src += surface_image.pitches[2];\n                } else {\n                    v_src += surface_image.pitches[2];\n                    u_src += surface_image.pitches[1];\n                }\n            }\n        } else if (surface_image.format.fourcc == VA_FOURCC_NV12) {\n            for (row = 0; row < surface_image.height / 2; row++) {\n                for (col = 0; col < surface_image.width / 2; col++) {\n                    u_dst[col] = u_src[col * 2];\n                    v_dst[col] = u_src[col * 2 + 1];\n                }\n\n                u_src += surface_image.pitches[1];\n                u_dst += (surface_image.width / 2);\n                v_dst += (surface_image.width / 2);\n            }\n        }\n\n        /* write frame to file */\n        do {\n            n_items = fwrite(newImageBuffer, y_size * 3 / 2, 1, fp);\n        } while (n_items != 1);\n\n    } else {\n        printf(\"Not supported YUV surface fourcc !!! \\n\");\n        return VA_STATUS_ERROR_INVALID_SURFACE;\n    }\n\n    if (newImageBuffer) {\n        free(newImageBuffer);\n        newImageBuffer = NULL;\n    }\n\n    vaUnmapBuffer(va_dpy, surface_image.buf);\n    vaDestroyImage(va_dpy, surface_image.image_id);\n\n    return VA_STATUS_SUCCESS;\n}\n\nstatic VAStatus\nstore_yuv_surface_to_i420_file(FILE *fp,\n                               VASurfaceID surface_id)\n{\n    VAStatus va_status;\n    VAImage surface_image;\n    void *surface_p = NULL;\n    unsigned char *y_src, *u_src, *v_src;\n    unsigned char *y_dst, *u_dst, *v_dst;\n    uint32_t row, col;\n    int32_t n_items;\n    unsigned char * newImageBuffer = NULL;\n\n    va_status = vaDeriveImage(va_dpy, surface_id, &surface_image);\n    CHECK_VASTATUS(va_status, \"vaDeriveImage\");\n\n    va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p);\n    CHECK_VASTATUS(va_status, \"vaMapBuffer\");\n\n    /* store the surface to one i420 file */\n    if (surface_image.format.fourcc == VA_FOURCC_YV12 ||\n        surface_image.format.fourcc == VA_FOURCC_I420 ||\n        surface_image.format.fourcc == VA_FOURCC_NV12) {\n\n        uint32_t y_size = surface_image.width * surface_image.height;\n        uint32_t u_size = y_size / 4;\n\n        newImageBuffer = (unsigned char*)malloc(y_size * 3 / 2);\n        assert(newImageBuffer);\n\n        /* stored as YV12 format */\n        y_dst = newImageBuffer;\n        u_dst = newImageBuffer + y_size;\n        v_dst = newImageBuffer + y_size + u_size;\n\n        y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]);\n        if (surface_image.format.fourcc == VA_FOURCC_YV12) {\n            v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]);\n        } else if (surface_image.format.fourcc == VA_FOURCC_I420) {\n            u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]);\n        } else if (surface_image.format.fourcc == VA_FOURCC_NV12) {\n            u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            v_src = u_src;\n        }\n\n        /* Y plane copy */\n        for (row = 0; row < surface_image.height; row++) {\n            memcpy(y_dst, y_src, surface_image.width);\n            y_src += surface_image.pitches[0];\n            y_dst += surface_image.width;\n        }\n\n        /* UV plane copy */\n        if (surface_image.format.fourcc == VA_FOURCC_YV12 ||\n            surface_image.format.fourcc == VA_FOURCC_I420) {\n            for (row = 0; row < surface_image.height / 2; row ++) {\n                memcpy(v_dst, v_src, surface_image.width / 2);\n                memcpy(u_dst, u_src, surface_image.width / 2);\n\n                v_dst += surface_image.width / 2;\n                u_dst += surface_image.width / 2;\n\n                if (surface_image.format.fourcc == VA_FOURCC_YV12) {\n                    v_src += surface_image.pitches[1];\n                    u_src += surface_image.pitches[2];\n                } else {\n                    v_src += surface_image.pitches[2];\n                    u_src += surface_image.pitches[1];\n                }\n            }\n        } else if (surface_image.format.fourcc == VA_FOURCC_NV12) {\n            for (row = 0; row < surface_image.height / 2; row++) {\n                for (col = 0; col < surface_image.width / 2; col++) {\n                    u_dst[col] = u_src[col * 2];\n                    v_dst[col] = u_src[col * 2 + 1];\n                }\n\n                u_src += surface_image.pitches[1];\n                u_dst += (surface_image.width / 2);\n                v_dst += (surface_image.width / 2);\n            }\n        }\n\n        /* write frame to file */\n        do {\n            n_items = fwrite(newImageBuffer, y_size * 3 / 2, 1, fp);\n        } while (n_items != 1);\n\n    } else {\n        printf(\"Not supported YUV surface fourcc !!! \\n\");\n        return VA_STATUS_ERROR_INVALID_SURFACE;\n    }\n\n    if (newImageBuffer) {\n        free(newImageBuffer);\n        newImageBuffer = NULL;\n    }\n\n    vaUnmapBuffer(va_dpy, surface_image.buf);\n    vaDestroyImage(va_dpy, surface_image.image_id);\n\n    return VA_STATUS_SUCCESS;\n}\n\nstatic VAStatus\nstore_yuv_surface_to_nv12_file(FILE *fp,\n                               VASurfaceID surface_id)\n{\n    VAStatus va_status;\n    VAImage surface_image;\n    void *surface_p = NULL;\n    unsigned char *y_src, *u_src, *v_src;\n    unsigned char *y_dst, *u_dst, *v_dst;\n    uint32_t row, col;\n    int32_t n_items;\n    unsigned char * newImageBuffer = NULL;\n\n    va_status = vaDeriveImage(va_dpy, surface_id, &surface_image);\n    CHECK_VASTATUS(va_status, \"vaDeriveImage\");\n\n    va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p);\n    CHECK_VASTATUS(va_status, \"vaMapBuffer\");\n\n    /* store the surface to one nv12 file */\n    if (surface_image.format.fourcc == VA_FOURCC_YV12 ||\n        surface_image.format.fourcc == VA_FOURCC_I420 ||\n        surface_image.format.fourcc == VA_FOURCC_NV12) {\n\n        uint32_t y_size = surface_image.width * surface_image.height;\n\n        newImageBuffer = (unsigned char*)malloc(y_size * 3 / 2);\n        assert(newImageBuffer);\n\n        /* stored as YV12 format */\n        y_dst = newImageBuffer;\n        u_dst = v_dst = newImageBuffer + y_size;\n\n        y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]);\n\n        if (surface_image.format.fourcc == VA_FOURCC_YV12) {\n            v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]);\n        } else if (surface_image.format.fourcc == VA_FOURCC_I420) {\n            u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]);\n        } else if (surface_image.format.fourcc == VA_FOURCC_NV12) {\n            u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            v_src = u_src;\n        }\n\n        /* Y plane copy */\n        for (row = 0; row < surface_image.height; row++) {\n            memcpy(y_dst, y_src, surface_image.width);\n            y_src += surface_image.pitches[0];\n            y_dst += surface_image.width;\n        }\n\n        /* UV plane copy */\n        if (surface_image.format.fourcc == VA_FOURCC_YV12 ||\n            surface_image.format.fourcc == VA_FOURCC_I420) {\n            for (row = 0; row < surface_image.height / 2; row ++) {\n                for (col = 0; col < surface_image.width / 2; col++) {\n                    u_dst[col * 2] = u_src[col];\n                    u_dst[col * 2 + 1] = v_src[col];\n                }\n\n                u_dst += surface_image.width;\n\n                if (surface_image.format.fourcc == VA_FOURCC_YV12) {\n                    v_src += surface_image.pitches[1];\n                    u_src += surface_image.pitches[2];\n                } else {\n                    v_src += surface_image.pitches[2];\n                    u_src += surface_image.pitches[1];\n                }\n            }\n        } else if (surface_image.format.fourcc == VA_FOURCC_NV12) {\n            for (row = 0; row < surface_image.height / 2; row++) {\n                memcpy(u_dst, u_src, surface_image.width);\n                u_dst += surface_image.width;\n                u_src += surface_image.pitches[1];\n            }\n        }\n\n        /* write frame to file */\n        do {\n            n_items = fwrite(newImageBuffer, y_size * 3 / 2, 1, fp);\n        } while (n_items != 1);\n\n    } else {\n        printf(\"Not supported YUV surface fourcc !!! \\n\");\n        return VA_STATUS_ERROR_INVALID_SURFACE;\n    }\n\n    if (newImageBuffer) {\n        free(newImageBuffer);\n        newImageBuffer = NULL;\n    }\n\n    vaUnmapBuffer(va_dpy, surface_image.buf);\n    vaDestroyImage(va_dpy, surface_image.image_id);\n\n    return VA_STATUS_SUCCESS;\n}\n\nstatic VAStatus\nstore_packed_yuv_surface_to_packed_file(FILE *fp,\n                                        VASurfaceID surface_id)\n{\n    VAStatus va_status;\n    VAImage surface_image;\n    void *surface_p = NULL;\n    unsigned char *y_src;\n    unsigned char *y_dst;\n    uint32_t row;\n    int32_t n_items;\n    unsigned char * newImageBuffer = NULL;\n\n    va_status = vaDeriveImage(va_dpy, surface_id, &surface_image);\n    CHECK_VASTATUS(va_status, \"vaDeriveImage\");\n\n    va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p);\n    CHECK_VASTATUS(va_status, \"vaMapBuffer\");\n\n    /* store the surface to one YUY2 or UYVY file */\n    if (surface_image.format.fourcc == VA_FOURCC_YUY2 ||\n        surface_image.format.fourcc == VA_FOURCC_UYVY ||\n        surface_image.format.fourcc == VA_FOURCC_AYUV) {\n        uint32_t byte_per_pixel = (surface_image.format.fourcc == VA_FOURCC_AYUV ? 4 : 2);\n        uint32_t frame_size = surface_image.width * surface_image.height * byte_per_pixel;\n\n        newImageBuffer = (unsigned char*)malloc(frame_size);\n        assert(newImageBuffer);\n        memset(newImageBuffer, 0, frame_size);\n\n        /* stored as YUY2 or UYVY format */\n        y_dst = newImageBuffer;\n\n        y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]);\n\n        /* Plane 0 copy */\n        for (row = 0; row < surface_image.height; row++) {\n            memcpy(y_dst, y_src, surface_image.width * byte_per_pixel);\n            y_src += surface_image.pitches[0];\n            y_dst += surface_image.width * byte_per_pixel;\n        }\n\n        /* write frame to file */\n        do {\n            n_items = fwrite(newImageBuffer, frame_size, 1, fp);\n        } while (n_items != 1);\n\n    } else {\n        printf(\"Not supported YUV surface fourcc !!! \\n\");\n        return VA_STATUS_ERROR_INVALID_SURFACE;\n    }\n\n    if (newImageBuffer) {\n        free(newImageBuffer);\n        newImageBuffer = NULL;\n    }\n\n    vaUnmapBuffer(va_dpy, surface_image.buf);\n    vaDestroyImage(va_dpy, surface_image.image_id);\n\n    return VA_STATUS_SUCCESS;\n}\n\nstatic VAStatus\nstore_yuv_surface_to_10bit_file(FILE *fp, VASurfaceID surface_id)\n{\n    VAStatus va_status;\n    VAImage surface_image;\n    void *surface_p = NULL;\n    unsigned char *y_src, *u_src, *v_src;\n    unsigned char *y_dst, *u_dst, *v_dst;\n    uint32_t row;\n    int32_t n_items;\n    unsigned char * newImageBuffer = NULL;\n\n    va_status = vaDeriveImage(va_dpy, surface_id, &surface_image);\n    CHECK_VASTATUS(va_status, \"vaDeriveImage\");\n\n    va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p);\n    CHECK_VASTATUS(va_status, \"vaMapBuffer\");\n\n    /* store the surface to one 10bit file */\n    uint32_t y_size = surface_image.width * surface_image.height * 2;\n    uint32_t u_size = y_size / 4;\n\n    newImageBuffer = (unsigned char*)malloc(y_size * 3);\n    assert(newImageBuffer);\n    y_dst = newImageBuffer;\n\n    y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]);\n\n    /* Y plane copy */\n    for (row = 0; row < surface_image.height; row++) {\n        memcpy(y_dst, y_src, surface_image.width * 2);\n        y_src += surface_image.pitches[0];\n        y_dst += surface_image.width * 2;\n    }\n\n    if (surface_image.format.fourcc == VA_FOURCC_I010) {\n        u_dst = newImageBuffer + y_size;\n        v_dst = newImageBuffer + y_size + u_size;\n\n        u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n        v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]);\n\n        for (row = 0; row < surface_image.height / 2; row++) {\n            memcpy(u_dst, u_src, surface_image.width);\n            memcpy(v_dst, v_src, surface_image.width);\n\n            u_dst += surface_image.width;\n            v_dst += surface_image.width;\n\n            u_src += surface_image.pitches[1];\n            v_src += surface_image.pitches[2];\n        }\n    } else if (surface_image.format.fourcc == VA_FOURCC_P010) {\n        u_dst = newImageBuffer + y_size;\n        v_dst = u_dst;\n\n        u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n        v_src = u_src;\n\n        for (row = 0; row < surface_image.height / 2; row++) {\n            memcpy(u_dst, u_src, surface_image.width * 2);\n            u_dst += surface_image.width * 2;\n            u_src += surface_image.pitches[1];\n        }\n    } else {\n        printf(\"Not supported YUV surface fourcc !!! \\n\");\n        free(newImageBuffer);\n        return VA_STATUS_ERROR_INVALID_SURFACE;\n    }\n\n    /* write frame to file */\n    do {\n        n_items = fwrite(newImageBuffer, y_size * 3 / 2, 1, fp);\n    } while (n_items != 1);\n\n    if (newImageBuffer) {\n        free(newImageBuffer);\n        newImageBuffer = NULL;\n    }\n\n    vaUnmapBuffer(va_dpy, surface_image.buf);\n    vaDestroyImage(va_dpy, surface_image.image_id);\n\n    return VA_STATUS_SUCCESS;\n}\n\nstatic VAStatus\nstore_rgb_surface_to_rgb_file(FILE *fp, VASurfaceID surface_id)\n{\n    VAStatus va_status;\n    VAImage surface_image;\n    void *surface_p = NULL;\n    unsigned char *y_src;\n    unsigned char *y_dst;\n    uint32_t frame_size, row;\n    int32_t n_items;\n    unsigned char * newImageBuffer = NULL;\n\n    va_status = vaDeriveImage(va_dpy, surface_id, &surface_image);\n    CHECK_VASTATUS(va_status, \"vaDeriveImage\");\n\n    va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p);\n    CHECK_VASTATUS(va_status, \"vaMapBuffer\");\n\n    frame_size = surface_image.width * surface_image.height * 4;\n    newImageBuffer = (unsigned char*)malloc(frame_size);\n    assert(newImageBuffer);\n    y_dst = newImageBuffer;\n\n    y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]);\n\n    for (row = 0; row < surface_image.height; row++) {\n        memcpy(y_dst, y_src, surface_image.width * 4);\n        y_src += surface_image.pitches[0];\n        y_dst += surface_image.width * 4;\n    }\n\n    /* write frame to file */\n    do {\n        n_items = fwrite(newImageBuffer, frame_size, 1, fp);\n    } while (n_items != 1);\n\n    if (newImageBuffer) {\n        free(newImageBuffer);\n        newImageBuffer = NULL;\n    }\n\n    vaUnmapBuffer(va_dpy, surface_image.buf);\n    vaDestroyImage(va_dpy, surface_image.image_id);\n\n    return VA_STATUS_SUCCESS;\n}\n\nstatic VAStatus\nstore_rgbp_surface_to_rgbp_file(FILE *fp, VASurfaceID surface_id)\n{\n    VAStatus va_status;\n    VAImage surface_image;\n    void *surface_p = NULL;\n    unsigned char *y_src;\n    unsigned char *y_dst;\n    uint32_t frame_size, row;\n    int32_t n_items;\n    unsigned char * newImageBuffer = NULL;\n    int i;\n\n    va_status = vaDeriveImage(va_dpy, surface_id, &surface_image);\n    CHECK_VASTATUS(va_status, \"vaDeriveImage\");\n\n    va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p);\n    CHECK_VASTATUS(va_status, \"vaMapBuffer\");\n\n    frame_size = surface_image.width * surface_image.height * 3;\n    newImageBuffer = (unsigned char*)malloc(frame_size);\n    assert(newImageBuffer);\n    y_dst = newImageBuffer;\n\n    for (i = 0; i < 3; i++) {\n        y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[i]);\n\n        for (row = 0; row < surface_image.height; row++) {\n            memcpy(y_dst, y_src, surface_image.width);\n            y_src += surface_image.pitches[i];\n            y_dst += surface_image.width;\n        }\n    }\n\n    /* write frame to file */\n    do {\n        n_items = fwrite(newImageBuffer, frame_size, 1, fp);\n    } while (n_items != 1);\n\n    if (newImageBuffer) {\n        free(newImageBuffer);\n        newImageBuffer = NULL;\n    }\n\n    vaUnmapBuffer(va_dpy, surface_image.buf);\n    vaDestroyImage(va_dpy, surface_image.image_id);\n\n    return VA_STATUS_SUCCESS;\n}\n\nstatic VAStatus\nstore_yuv_surface_to_file(FILE *fp,\n                          VASurfaceID surface_id)\n{\n    if (g_out_fourcc == VA_FOURCC_YV12 ||\n        g_out_fourcc == VA_FOURCC_I420 ||\n        g_out_fourcc == VA_FOURCC_NV12) {\n        if (g_dst_file_fourcc == VA_FOURCC_YV12)\n            return store_yuv_surface_to_yv12_file(fp, surface_id);\n        else if (g_dst_file_fourcc == VA_FOURCC_I420)\n            return store_yuv_surface_to_i420_file(fp, surface_id);\n        else if (g_dst_file_fourcc == VA_FOURCC_NV12)\n            return store_yuv_surface_to_nv12_file(fp, surface_id);\n        else {\n            printf(\"Not supported YUV fourcc for output !!!\\n\");\n            return VA_STATUS_ERROR_INVALID_SURFACE;\n        }\n    } else if ((g_out_fourcc == VA_FOURCC_YUY2 &&\n                g_dst_file_fourcc == VA_FOURCC_YUY2) ||\n               (g_out_fourcc == VA_FOURCC_UYVY &&\n                g_dst_file_fourcc == VA_FOURCC_UYVY) ||\n               (g_out_fourcc == VA_FOURCC_AYUV &&\n                g_dst_file_fourcc == VA_FOURCC_AYUV)) {\n        return store_packed_yuv_surface_to_packed_file(fp, surface_id);\n    } else if ((g_out_fourcc == VA_FOURCC_I010 &&\n                g_dst_file_fourcc == VA_FOURCC_I010) ||\n               (g_out_fourcc == VA_FOURCC_P010 &&\n                g_dst_file_fourcc == VA_FOURCC_P010)) {\n        return store_yuv_surface_to_10bit_file(fp, surface_id);\n    } else if ((g_out_fourcc == VA_FOURCC_RGBA &&\n                g_dst_file_fourcc == VA_FOURCC_RGBA) ||\n               (g_out_fourcc == VA_FOURCC_RGBX &&\n                g_dst_file_fourcc == VA_FOURCC_RGBX) ||\n               (g_out_fourcc == VA_FOURCC_BGRA &&\n                g_dst_file_fourcc == VA_FOURCC_BGRA) ||\n               (g_out_fourcc == VA_FOURCC_BGRX &&\n                g_dst_file_fourcc == VA_FOURCC_BGRX)) {\n        return store_rgb_surface_to_rgb_file(fp, surface_id);\n    } else if (g_out_fourcc == VA_FOURCC_RGBP ||\n               g_out_fourcc == VA_FOURCC_BGRP) {\n        return store_rgbp_surface_to_rgbp_file(fp, surface_id);\n    } else {\n        printf(\"Not supported YUV fourcc for output !!!\\n\");\n        return VA_STATUS_ERROR_INVALID_SURFACE;\n    }\n}\n\nstatic VAStatus\ndenoise_filter_init(VABufferID *filter_param_buf_id)\n{\n    VAStatus va_status = VA_STATUS_SUCCESS;\n    VAProcFilterParameterBuffer denoise_param;\n    VABufferID denoise_param_buf_id;\n    float intensity;\n\n    VAProcFilterCap denoise_caps;\n    uint32_t num_denoise_caps = 1;\n    va_status = vaQueryVideoProcFilterCaps(va_dpy, context_id,\n                                           VAProcFilterNoiseReduction,\n                                           &denoise_caps, &num_denoise_caps);\n    CHECK_VASTATUS(va_status, \"vaQueryVideoProcFilterCaps\");\n\n    if (read_value_float(g_config_file_fd, \"DENOISE_INTENSITY\", &intensity)) {\n        printf(\"Read denoise intensity failed, use default value\");\n        intensity = denoise_caps.range.default_value;\n    }\n    intensity = adjust_to_range(&denoise_caps.range, intensity);\n\n    denoise_param.type  = VAProcFilterNoiseReduction;\n    denoise_param.value = intensity;\n\n    printf(\"Denoise intensity: %f\\n\", intensity);\n\n    va_status = vaCreateBuffer(va_dpy, context_id,\n                               VAProcFilterParameterBufferType, sizeof(denoise_param), 1,\n                               &denoise_param, &denoise_param_buf_id);\n    CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n    *filter_param_buf_id = denoise_param_buf_id;\n\n    return va_status;\n}\n\n/*\n * This is a method to initialize STDE filter.\n * If this filter is called, it is enabled by default.\n */\nstatic VAStatus\nskintone_filter_init(VABufferID *filter_param_buf_id)\n{\n    VAStatus va_status = VA_STATUS_SUCCESS;\n    VAProcFilterParameterBuffer stde_param;\n    VABufferID stde_param_buf_id;\n    uint8_t stde_factor = 0;\n\n    if (read_value_uint8(g_config_file_fd, \"STDE_FACTOR\", &stde_factor)) {\n        printf(\"Read STDE Factor failed, use default value\");\n        stde_factor = 0;\n    }\n\n    printf(\"Applying STDE factor: %d\\n\", stde_factor);\n\n    stde_param.type  = VAProcFilterSkinToneEnhancement;\n    stde_param.value = stde_factor;\n\n    va_status = vaCreateBuffer(va_dpy, context_id,\n                               VAProcFilterParameterBufferType, sizeof(stde_param), 1,\n                               &stde_param, &stde_param_buf_id);\n    CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n    *filter_param_buf_id = stde_param_buf_id;\n\n    return va_status;\n}\n\nstatic VAStatus\ndeinterlace_filter_init(VABufferID *filter_param_buf_id)\n{\n    VAStatus va_status = VA_STATUS_SUCCESS;\n    VAProcFilterParameterBufferDeinterlacing deinterlacing_param;\n    VABufferID deinterlacing_param_buf_id;\n    char algorithm_str[MAX_LEN], flags_str[MAX_LEN];\n    uint32_t i;\n\n    /* read and check whether configured deinterlace algorithm is supported */\n    deinterlacing_param.algorithm  = VAProcDeinterlacingBob;\n    if (!read_value_string(g_config_file_fd, \"DEINTERLACING_ALGORITHM\", algorithm_str)) {\n        printf(\"Deinterlacing algorithm in config: %s \\n\", algorithm_str);\n        if (!strcmp(algorithm_str, \"VAProcDeinterlacingBob\"))\n            deinterlacing_param.algorithm  = VAProcDeinterlacingBob;\n        else if (!strcmp(algorithm_str, \"VAProcDeinterlacingWeave\"))\n            deinterlacing_param.algorithm  = VAProcDeinterlacingWeave;\n        else if (!strcmp(algorithm_str, \"VAProcDeinterlacingMotionAdaptive\"))\n            deinterlacing_param.algorithm  = VAProcDeinterlacingMotionAdaptive;\n        else if (!strcmp(algorithm_str, \"VAProcDeinterlacingMotionCompensated\"))\n            deinterlacing_param.algorithm  = VAProcDeinterlacingMotionCompensated;\n    } else {\n        printf(\"Read deinterlace algorithm failed, use default algorithm\");\n        deinterlacing_param.algorithm  = VAProcDeinterlacingBob;\n    }\n\n    VAProcFilterCapDeinterlacing deinterlacing_caps[VAProcDeinterlacingCount];\n    uint32_t num_deinterlacing_caps = VAProcDeinterlacingCount;\n    va_status = vaQueryVideoProcFilterCaps(va_dpy, context_id,\n                                           VAProcFilterDeinterlacing,\n                                           &deinterlacing_caps, &num_deinterlacing_caps);\n    CHECK_VASTATUS(va_status, \"vaQueryVideoProcFilterCaps\");\n\n    for (i = 0; i < VAProcDeinterlacingCount; i ++)\n        if (deinterlacing_caps[i].type == deinterlacing_param.algorithm)\n            break;\n\n    if (i == VAProcDeinterlacingCount) {\n        printf(\"Deinterlacing algorithm: %d is not supported by driver, \\\n                use defautl algorithm :%d \\n\",\n               deinterlacing_param.algorithm,\n               VAProcDeinterlacingBob);\n        deinterlacing_param.algorithm = VAProcDeinterlacingBob;\n    }\n\n    /* read and check the deinterlace flags */\n    deinterlacing_param.flags = 0;\n    if (!read_value_string(g_config_file_fd, \"DEINTERLACING_FLAG\", flags_str)) {\n        if (strstr(flags_str, \"VA_DEINTERLACING_BOTTOM_FIELD_FIRST\"))\n            deinterlacing_param.flags |= VA_DEINTERLACING_BOTTOM_FIELD_FIRST;\n        if (strstr(flags_str, \"VA_DEINTERLACING_BOTTOM_FIELD\"))\n            deinterlacing_param.flags |= VA_DEINTERLACING_BOTTOM_FIELD;\n        if (strstr(flags_str, \"VA_DEINTERLACING_ONE_FIELD\"))\n            deinterlacing_param.flags |= VA_DEINTERLACING_ONE_FIELD;\n    }\n\n    deinterlacing_param.type  = VAProcFilterDeinterlacing;\n\n    /* create deinterlace fitler buffer */\n    va_status = vaCreateBuffer(va_dpy, context_id,\n                               VAProcFilterParameterBufferType, sizeof(deinterlacing_param), 1,\n                               &deinterlacing_param, &deinterlacing_param_buf_id);\n    CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n    *filter_param_buf_id = deinterlacing_param_buf_id;\n\n    return va_status;\n}\n\nstatic VAStatus\nsharpening_filter_init(VABufferID *filter_param_buf_id)\n{\n    VAStatus va_status;\n    VAProcFilterParameterBuffer sharpening_param;\n    VABufferID sharpening_param_buf_id;\n    float intensity;\n\n    VAProcFilterCap sharpening_caps;\n    uint32_t num_sharpening_caps = 1;\n    va_status = vaQueryVideoProcFilterCaps(va_dpy, context_id,\n                                           VAProcFilterSharpening,\n                                           &sharpening_caps, &num_sharpening_caps);\n    CHECK_VASTATUS(va_status, \"vaQueryVideoProcFilterCaps\");\n\n    if (read_value_float(g_config_file_fd, \"SHARPENING_INTENSITY\", &intensity)) {\n        printf(\"Read sharpening intensity failed, use default value.\");\n        intensity = sharpening_caps.range.default_value;\n    }\n\n    intensity = adjust_to_range(&sharpening_caps.range, intensity);\n    printf(\"Sharpening intensity: %f\\n\", intensity);\n    sharpening_param.value = intensity;\n\n    sharpening_param.type  = VAProcFilterSharpening;\n\n    /* create sharpening fitler buffer */\n    va_status = vaCreateBuffer(va_dpy, context_id,\n                               VAProcFilterParameterBufferType, sizeof(sharpening_param), 1,\n                               &sharpening_param, &sharpening_param_buf_id);\n\n    *filter_param_buf_id = sharpening_param_buf_id;\n\n    return va_status;\n}\n\nstatic VAStatus\ncolor_balance_filter_init(VABufferID *filter_param_buf_id)\n{\n    VAStatus va_status;\n    VAProcFilterParameterBufferColorBalance color_balance_param[4];\n    VABufferID color_balance_param_buf_id;\n    float value;\n    uint32_t i, count;\n    int8_t status;\n\n    VAProcFilterCapColorBalance color_balance_caps[VAProcColorBalanceCount];\n    unsigned int num_color_balance_caps = VAProcColorBalanceCount;\n    va_status = vaQueryVideoProcFilterCaps(va_dpy, context_id,\n                                           VAProcFilterColorBalance,\n                                           &color_balance_caps, &num_color_balance_caps);\n    CHECK_VASTATUS(va_status, \"vaQueryVideoProcFilterCaps\");\n\n    count = 0;\n    printf(\"Color balance params: \");\n    for (i = 0; i < num_color_balance_caps; i++) {\n        if (color_balance_caps[i].type == VAProcColorBalanceHue) {\n            color_balance_param[count].attrib  = VAProcColorBalanceHue;\n            status = read_value_float(g_config_file_fd, \"COLOR_BALANCE_HUE\", &value);\n            printf(\"Hue: \");\n        } else if (color_balance_caps[i].type == VAProcColorBalanceSaturation) {\n            color_balance_param[count].attrib  = VAProcColorBalanceSaturation;\n            status = read_value_float(g_config_file_fd, \"COLOR_BALANCE_SATURATION\", &value);\n            printf(\"Saturation: \");\n        } else if (color_balance_caps[i].type == VAProcColorBalanceBrightness) {\n            color_balance_param[count].attrib  = VAProcColorBalanceBrightness;\n            status = read_value_float(g_config_file_fd, \"COLOR_BALANCE_BRIGHTNESS\", &value);\n            printf(\"Brightness: \");\n        } else if (color_balance_caps[i].type == VAProcColorBalanceContrast) {\n            color_balance_param[count].attrib  = VAProcColorBalanceContrast;\n            status = read_value_float(g_config_file_fd, \"COLOR_BALANCE_CONTRAST\", &value);\n            printf(\"Contrast: \");\n        } else {\n            continue;\n        }\n\n        if (status)\n            value = color_balance_caps[i].range.default_value;\n        else\n            value = adjust_to_range(&color_balance_caps[i].range, value);\n\n        color_balance_param[count].value = value;\n        color_balance_param[count].type  = VAProcFilterColorBalance;\n        count++;\n\n        printf(\"%4f,  \", value);\n    }\n    printf(\"\\n\");\n\n    va_status = vaCreateBuffer(va_dpy, context_id,\n                               VAProcFilterParameterBufferType, sizeof(color_balance_param), 4,\n                               color_balance_param, &color_balance_param_buf_id);\n\n    *filter_param_buf_id = color_balance_param_buf_id;\n\n    return va_status;\n}\n\n#if BLEND_ON\n\nstatic VAStatus\nblending_state_init(VABlendState *state)\n{\n    VAStatus va_status = VA_STATUS_SUCCESS;\n    char blending_flags_str[MAX_LEN];\n    float global_alpha;\n    uint32_t min_luma, max_luma;\n\n    /* read and check blend state */\n    state->flags = 0;\n    if (!read_value_string(g_config_file_fd, \"BLENDING_FLAGS\", blending_flags_str)) {\n        if (strstr(blending_flags_str, \"VA_BLEND_GLOBAL_ALPHA\")) {\n            if (read_value_float(g_config_file_fd, \"BLENDING_GLOBAL_ALPHA\", &global_alpha)) {\n                global_alpha = 1.0  ;\n                printf(\"Use default global alpha : %4f \\n\", global_alpha);\n            }\n            state->flags |= VA_BLEND_GLOBAL_ALPHA;\n            state->global_alpha = global_alpha;\n        }\n        if (strstr(blending_flags_str, \"VA_BLEND_LUMA_KEY\")) {\n            if (read_value_uint8(g_config_file_fd, \"BLENDING_MIN_LUMA\", &g_blending_min_luma)) {\n                g_blending_min_luma = 1;\n                printf(\"Use default min luma : %3d \\n\", g_blending_min_luma);\n            }\n            if (read_value_uint8(g_config_file_fd, \"BLENDING_MAX_LUMA\", &g_blending_max_luma)) {\n                g_blending_max_luma = 254;\n                printf(\"Use default max luma : %3d \\n\", g_blending_max_luma);\n            }\n            state->flags |= VA_BLEND_LUMA_KEY;\n            state->min_luma = g_blending_min_luma * 1.0 / 256;\n            state->max_luma = g_blending_max_luma * 1.0 / 256;\n        }\n\n        printf(\"Blending type = %s, alpha = %f, min_luma = %3d, max_luma = %3d \\n\",\n               blending_flags_str, global_alpha, min_luma, max_luma);\n    }\n\n    VAProcPipelineCaps pipeline_caps;\n    va_status = vaQueryVideoProcPipelineCaps(va_dpy, context_id,\n                NULL, 0, &pipeline_caps);\n    CHECK_VASTATUS(va_status, \"vaQueryVideoProcPipelineCaps\");\n\n    if (!pipeline_caps.blend_flags) {\n        printf(\"Blending is not supported in driver! \\n\");\n        return VA_STATUS_ERROR_UNIMPLEMENTED;\n    }\n\n    if (!(pipeline_caps.blend_flags & state->flags)) {\n        printf(\"Driver do not support current blending flags: %d\", state->flags);\n        return VA_STATUS_ERROR_UNIMPLEMENTED;\n    }\n\n    return va_status;\n}\n\n#endif\n\nstatic VAStatus\nvideo_frame_process(VAProcFilterType filter_type,\n                    uint32_t frame_idx,\n                    VASurfaceID in_surface_id,\n                    VASurfaceID out_surface_id)\n{\n    VAStatus va_status;\n    VAProcPipelineParameterBuffer pipeline_param;\n    VARectangle surface_region, output_region;\n    VABufferID pipeline_param_buf_id = VA_INVALID_ID;\n    VABufferID filter_param_buf_id = VA_INVALID_ID;\n#if BLEND_ON\n    VABlendState state ;\n#endif\n    uint32_t filter_count = 1;\n\n    /* create denoise_filter buffer id */\n    switch (filter_type) {\n    case VAProcFilterNoiseReduction:\n        denoise_filter_init(&filter_param_buf_id);\n        break;\n    case VAProcFilterDeinterlacing:\n        deinterlace_filter_init(&filter_param_buf_id);\n        break;\n    case VAProcFilterSharpening:\n        sharpening_filter_init(&filter_param_buf_id);\n        break;\n    case VAProcFilterColorBalance:\n        color_balance_filter_init(&filter_param_buf_id);\n        break;\n    case VAProcFilterSkinToneEnhancement:\n        skintone_filter_init(&filter_param_buf_id);\n        break;\n    default :\n        filter_count = 0;\n        break;\n    }\n\n    /* Fill pipeline buffer */\n    surface_region.x = 0;\n    surface_region.y = 0;\n    surface_region.width = g_in_pic_width;\n    surface_region.height = g_in_pic_height;\n    output_region.x = 0;\n    output_region.y = 0;\n    output_region.width = g_out_pic_width;\n    output_region.height = g_out_pic_height;\n\n    memset(&pipeline_param, 0, sizeof(pipeline_param));\n    pipeline_param.surface = in_surface_id;\n    pipeline_param.surface_region = &surface_region;\n    pipeline_param.output_region = &output_region;\n\n    pipeline_param.filter_flags = 0;\n    pipeline_param.filters      = &filter_param_buf_id;\n    pipeline_param.num_filters  = filter_count;\n\n#if BLEND_ON\n    /* Blending related state */\n    if (g_blending_enabled) {\n        blending_state_init(&state);\n        pipeline_param.blend_state = &state;\n    }\n#endif\n\n    va_status = vaCreateBuffer(va_dpy,\n                               context_id,\n                               VAProcPipelineParameterBufferType,\n                               sizeof(pipeline_param),\n                               1,\n                               &pipeline_param,\n                               &pipeline_param_buf_id);\n    CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n    va_status = vaBeginPicture(va_dpy,\n                               context_id,\n                               out_surface_id);\n    CHECK_VASTATUS(va_status, \"vaBeginPicture\");\n\n    va_status = vaRenderPicture(va_dpy,\n                                context_id,\n                                &pipeline_param_buf_id,\n                                1);\n    CHECK_VASTATUS(va_status, \"vaRenderPicture\");\n\n    va_status = vaEndPicture(va_dpy, context_id);\n    CHECK_VASTATUS(va_status, \"vaEndPicture\");\n\n    if (filter_param_buf_id != VA_INVALID_ID)\n        vaDestroyBuffer(va_dpy, filter_param_buf_id);\n\n    if (pipeline_param_buf_id != VA_INVALID_ID)\n        vaDestroyBuffer(va_dpy, pipeline_param_buf_id);\n\n    return va_status;\n}\n\nstatic VAStatus\nvpp_context_create()\n{\n    VAStatus va_status = VA_STATUS_SUCCESS;\n    uint32_t i;\n    int32_t j;\n\n    /* VA driver initialization */\n    va_dpy = va_open_display();\n    int32_t major_ver, minor_ver;\n    va_status = vaInitialize(va_dpy, &major_ver, &minor_ver);\n    assert(va_status == VA_STATUS_SUCCESS);\n\n    /* Check whether VPP is supported by driver */\n    VAEntrypoint entrypoints[5];\n    int32_t num_entrypoints;\n    num_entrypoints = vaMaxNumEntrypoints(va_dpy);\n    va_status = vaQueryConfigEntrypoints(va_dpy,\n                                         VAProfileNone,\n                                         entrypoints,\n                                         &num_entrypoints);\n    CHECK_VASTATUS(va_status, \"vaQueryConfigEntrypoints\");\n\n    for (j = 0; j < num_entrypoints; j++) {\n        if (entrypoints[j] == VAEntrypointVideoProc)\n            break;\n    }\n\n    if (j == num_entrypoints) {\n        printf(\"VPP is not supported by driver\\n\");\n        assert(0);\n    }\n\n    /* Render target surface format check */\n    VAConfigAttrib attrib;\n    attrib.type = VAConfigAttribRTFormat;\n    va_status = vaGetConfigAttributes(va_dpy,\n                                      VAProfileNone,\n                                      VAEntrypointVideoProc,\n                                      &attrib,\n                                      1);\n    CHECK_VASTATUS(va_status, \"vaGetConfigAttributes\");\n    if (!(attrib.value & g_out_format)) {\n        printf(\"RT format %d is not supported by VPP !\\n\", g_out_format);\n        assert(0);\n    }\n\n    /* Create surface/config/context for VPP pipeline */\n    va_status = create_surface(&g_in_surface_id, g_in_pic_width, g_in_pic_height,\n                               g_in_fourcc, g_in_format);\n    CHECK_VASTATUS(va_status, \"vaCreateSurfaces for input\");\n\n    va_status = create_surface(&g_out_surface_id, g_out_pic_width, g_out_pic_height,\n                               g_out_fourcc, g_out_format);\n    CHECK_VASTATUS(va_status, \"vaCreateSurfaces for output\");\n\n    va_status = vaCreateConfig(va_dpy,\n                               VAProfileNone,\n                               VAEntrypointVideoProc,\n                               &attrib,\n                               1,\n                               &config_id);\n    CHECK_VASTATUS(va_status, \"vaCreateConfig\");\n\n    /* Source surface format check */\n    uint32_t num_surf_attribs = VASurfaceAttribCount;\n    VASurfaceAttrib * surf_attribs = (VASurfaceAttrib*)\n                                     malloc(sizeof(VASurfaceAttrib) * num_surf_attribs);\n    if (!surf_attribs)\n        assert(0);\n\n    va_status = vaQuerySurfaceAttributes(va_dpy,\n                                         config_id,\n                                         surf_attribs,\n                                         &num_surf_attribs);\n\n    if (va_status == VA_STATUS_ERROR_MAX_NUM_EXCEEDED) {\n        surf_attribs = (VASurfaceAttrib*)realloc(surf_attribs,\n                       sizeof(VASurfaceAttrib) * num_surf_attribs);\n        if (!surf_attribs)\n            assert(0);\n        va_status = vaQuerySurfaceAttributes(va_dpy,\n                                             config_id,\n                                             surf_attribs,\n                                             &num_surf_attribs);\n    }\n    CHECK_VASTATUS(va_status, \"vaQuerySurfaceAttributes\");\n\n    for (i = 0; i < num_surf_attribs; i++) {\n        if (surf_attribs[i].type == VASurfaceAttribPixelFormat &&\n            surf_attribs[i].value.value.i == (int)g_in_fourcc)\n            break;\n    }\n    free(surf_attribs);\n\n    if (i == num_surf_attribs) {\n        printf(\"Input fourCC %d  is not supported by VPP !\\n\", g_in_fourcc);\n        assert(0);\n    }\n\n    va_status = vaCreateContext(va_dpy,\n                                config_id,\n                                g_out_pic_width,\n                                g_out_pic_height,\n                                VA_PROGRESSIVE,\n                                &g_out_surface_id,\n                                1,\n                                &context_id);\n    CHECK_VASTATUS(va_status, \"vaCreateContext\");\n\n\n    /* Validate  whether currect filter is supported */\n    if (g_filter_type != VAProcFilterNone) {\n        uint32_t supported_filter_num = VAProcFilterCount;\n        VAProcFilterType supported_filter_types[VAProcFilterCount];\n\n        va_status = vaQueryVideoProcFilters(va_dpy,\n                                            context_id,\n                                            supported_filter_types,\n                                            &supported_filter_num);\n\n        CHECK_VASTATUS(va_status, \"vaQueryVideoProcFilters\");\n\n        for (i = 0; i < supported_filter_num; i++) {\n            if (supported_filter_types[i] == g_filter_type)\n                break;\n        }\n\n        if (i == supported_filter_num) {\n            printf(\"VPP filter type %s is not supported by driver !\\n\", g_filter_type_name);\n            assert(0);\n        }\n    }\n\n    return va_status;\n}\n\nstatic void\nvpp_context_destroy()\n{\n    /* Release resource */\n    vaDestroySurfaces(va_dpy, &g_in_surface_id, 1);\n    vaDestroySurfaces(va_dpy, &g_out_surface_id, 1);\n    vaDestroyContext(va_dpy, context_id);\n    vaDestroyConfig(va_dpy, config_id);\n\n    vaTerminate(va_dpy);\n    va_close_display(va_dpy);\n}\n\nstatic int8_t\nparse_fourcc_and_format(char *str, uint32_t *fourcc, uint32_t *format)\n{\n    uint32_t tfourcc = VA_FOURCC('N', 'V', '1', '2');\n    uint32_t tformat = VA_RT_FORMAT_YUV420;\n\n    if (!strcmp(str, \"YV12\")) {\n        tfourcc = VA_FOURCC('Y', 'V', '1', '2');\n        tformat = VA_RT_FORMAT_YUV420;\n    } else if (!strcmp(str, \"I420\")) {\n        tfourcc = VA_FOURCC('I', '4', '2', '0');\n        tformat = VA_RT_FORMAT_YUV420;\n    } else if (!strcmp(str, \"NV12\")) {\n        tfourcc = VA_FOURCC('N', 'V', '1', '2');\n        tformat = VA_RT_FORMAT_YUV420;\n    } else if (!strcmp(str, \"YUY2\") || !strcmp(str, \"YUYV\")) {\n        tfourcc = VA_FOURCC('Y', 'U', 'Y', '2');\n        tformat = VA_RT_FORMAT_YUV422;\n    } else if (!strcmp(str, \"UYVY\")) {\n        tfourcc = VA_FOURCC('U', 'Y', 'V', 'Y');\n        tformat = VA_RT_FORMAT_YUV422;\n    } else if (!strcmp(str, \"P010\")) {\n        tfourcc = VA_FOURCC('P', '0', '1', '0');\n        tformat = VA_RT_FORMAT_YUV420_10BPP;\n    } else if (!strcmp(str, \"I010\")) {\n        tfourcc = VA_FOURCC('I', '0', '1', '0');\n        tformat = VA_RT_FORMAT_YUV420_10BPP;\n    } else if (!strcmp(str, \"RGBA\")) {\n        tfourcc = VA_FOURCC_RGBA;\n        tformat = VA_RT_FORMAT_RGB32;\n    } else if (!strcmp(str, \"RGBX\")) {\n        tfourcc = VA_FOURCC_RGBX;\n        tformat = VA_RT_FORMAT_RGB32;\n    } else if (!strcmp(str, \"BGRA\")) {\n        tfourcc = VA_FOURCC_BGRA;\n        tformat = VA_RT_FORMAT_RGB32;\n    } else if (!strcmp(str, \"BGRX\")) {\n        tfourcc = VA_FOURCC_BGRX;\n        tformat = VA_RT_FORMAT_RGB32;\n    } else if (!strcmp(str, \"AYUV\")) {\n        tfourcc = VA_FOURCC_AYUV;\n        tformat = VA_RT_FORMAT_YUV444;\n    } else if (!strcmp(str, \"RGBP\")) {\n        tfourcc = VA_FOURCC_RGBP;\n        tformat = VA_RT_FORMAT_RGBP;\n    } else if (!strcmp(str, \"BGRP\")) {\n        tfourcc = VA_FOURCC_BGRP;\n        tformat = VA_RT_FORMAT_RGBP;\n    } else {\n        printf(\"Not supported format: %s! Currently only support following format: %s\\n\",\n               str, \"YV12, I420, NV12, YUY2(YUYV), UYVY, AYUV, P010, I010, RGBA, RGBX, BGRA, \"\n               \"BGRX or RGBP\");\n        assert(0);\n    }\n\n    if (fourcc)\n        *fourcc = tfourcc;\n\n    if (format)\n        *format = tformat;\n\n    return 0;\n}\n\nstatic int8_t\nparse_basic_parameters()\n{\n    char str[MAX_LEN];\n\n    /* Read src frame file information */\n    read_value_string(g_config_file_fd, \"SRC_FILE_NAME\", g_src_file_name);\n    read_value_uint32(g_config_file_fd, \"SRC_FRAME_WIDTH\", &g_in_pic_width);\n    read_value_uint32(g_config_file_fd, \"SRC_FRAME_HEIGHT\", &g_in_pic_height);\n    read_value_string(g_config_file_fd, \"SRC_FRAME_FORMAT\", str);\n    parse_fourcc_and_format(str, &g_in_fourcc, &g_in_format);\n\n    /* Read dst frame file information */\n    read_value_string(g_config_file_fd, \"DST_FILE_NAME\", g_dst_file_name);\n    read_value_uint32(g_config_file_fd, \"DST_FRAME_WIDTH\", &g_out_pic_width);\n    read_value_uint32(g_config_file_fd, \"DST_FRAME_HEIGHT\", &g_out_pic_height);\n    read_value_string(g_config_file_fd, \"DST_FRAME_FORMAT\", str);\n    parse_fourcc_and_format(str, &g_out_fourcc, &g_out_format);\n\n    read_value_string(g_config_file_fd, \"SRC_FILE_FORMAT\", str);\n    parse_fourcc_and_format(str, &g_src_file_fourcc, NULL);\n\n    read_value_string(g_config_file_fd, \"DST_FILE_FORMAT\", str);\n    parse_fourcc_and_format(str, &g_dst_file_fourcc, NULL);\n\n    read_value_uint32(g_config_file_fd, \"FRAME_SUM\", &g_frame_count);\n\n    /* Read filter type */\n    if (read_value_string(g_config_file_fd, \"FILTER_TYPE\", g_filter_type_name)) {\n        printf(\"Read filter type error !\\n\");\n        assert(0);\n    }\n\n    if (!strcmp(g_filter_type_name, \"VAProcFilterNoiseReduction\"))\n        g_filter_type = VAProcFilterNoiseReduction;\n    else if (!strcmp(g_filter_type_name, \"VAProcFilterDeinterlacing\"))\n        g_filter_type = VAProcFilterDeinterlacing;\n    else if (!strcmp(g_filter_type_name, \"VAProcFilterSharpening\"))\n        g_filter_type = VAProcFilterSharpening;\n    else if (!strcmp(g_filter_type_name, \"VAProcFilterColorBalance\"))\n        g_filter_type = VAProcFilterColorBalance;\n    else if (!strcmp(g_filter_type_name, \"VAProcFilterSkinToneEnhancement\"))\n        g_filter_type = VAProcFilterSkinToneEnhancement;\n    else if (!strcmp(g_filter_type_name, \"VAProcFilterNone\"))\n        g_filter_type = VAProcFilterNone;\n    else {\n        printf(\"Unsupported filter type :%s \\n\", g_filter_type_name);\n        return -1;\n    }\n\n    /* Check whether blending is enabled */\n    if (read_value_uint8(g_config_file_fd, \"BLENDING_ENABLED\", &g_blending_enabled))\n        g_blending_enabled = 0;\n\n    if (g_blending_enabled)\n        printf(\"Blending will be done \\n\");\n\n    if (g_in_pic_width != g_out_pic_width ||\n        g_in_pic_height != g_out_pic_height)\n        printf(\"Scaling will be done : from %4d x %4d to %4d x %4d \\n\",\n               g_in_pic_width, g_in_pic_height,\n               g_out_pic_width, g_out_pic_height);\n\n    if (g_in_fourcc != g_out_fourcc)\n        printf(\"Format conversion will be done: from %d to %d \\n\",\n               g_in_fourcc, g_out_fourcc);\n\n    return 0;\n}\n\nint32_t main(int32_t argc, char *argv[])\n{\n    VAStatus va_status;\n    uint32_t i;\n\n    if (argc != 2) {\n        printf(\"Input error! please specify the configure file \\n\");\n        return -1;\n    }\n\n    /* Parse the configure file for video process*/\n    strncpy(g_config_file_name, argv[1], MAX_LEN);\n    g_config_file_name[MAX_LEN - 1] = '\\0';\n\n    if (NULL == (g_config_file_fd = fopen(g_config_file_name, \"r\"))) {\n        printf(\"Open configure file %s failed!\\n\", g_config_file_name);\n        assert(0);\n    }\n\n    /* Parse basic parameters */\n    if (parse_basic_parameters()) {\n        printf(\"Parse parameters in configure file error\\n\");\n        assert(0);\n    }\n\n    va_status = vpp_context_create();\n    if (va_status != VA_STATUS_SUCCESS) {\n        printf(\"vpp context create failed \\n\");\n        assert(0);\n    }\n\n    /* Video frame fetch, process and store */\n    if (NULL == (g_src_file_fd = fopen(g_src_file_name, \"r\"))) {\n        printf(\"Open SRC_FILE_NAME: %s failed, please specify it in config file: %s !\\n\",\n               g_src_file_name, g_config_file_name);\n        assert(0);\n    }\n\n    if (NULL == (g_dst_file_fd = fopen(g_dst_file_name, \"w\"))) {\n        printf(\"Open DST_FILE_NAME: %s failed, please specify it in config file: %s !\\n\",\n               g_dst_file_name, g_config_file_name);\n        assert(0);\n    }\n\n    printf(\"\\nStart to process, processing type is %s ...\\n\", g_filter_type_name);\n    struct timeval start_time, end_time;\n    gettimeofday(&start_time, NULL);\n\n    for (i = 0; i < g_frame_count; i ++) {\n        if (g_blending_enabled) {\n            construct_nv12_mask_surface(g_in_surface_id, g_blending_min_luma, g_blending_max_luma);\n            upload_yuv_frame_to_yuv_surface(g_src_file_fd, g_out_surface_id);\n        } else {\n            upload_yuv_frame_to_yuv_surface(g_src_file_fd, g_in_surface_id);\n        }\n\n        video_frame_process(g_filter_type, i, g_in_surface_id, g_out_surface_id);\n        store_yuv_surface_to_file(g_dst_file_fd, g_out_surface_id);\n    }\n\n    gettimeofday(&end_time, NULL);\n    float duration = (end_time.tv_sec - start_time.tv_sec) +\n                     (end_time.tv_usec - start_time.tv_usec) / 1000000.0;\n    printf(\"Finish processing, performance: \\n\");\n    printf(\"%d frames processed in: %f s, ave time = %.6fs \\n\", g_frame_count, duration, duration / g_frame_count);\n\n    if (g_src_file_fd)\n        fclose(g_src_file_fd);\n\n    if (g_dst_file_fd)\n        fclose(g_dst_file_fd);\n\n    if (g_config_file_fd)\n        fclose(g_config_file_fd);\n\n    vpp_context_destroy();\n\n    return 0;\n}\n"
  },
  {
    "path": "videoprocess/vpp3dlut.cpp",
    "content": "/*\n* Copyright (c) 2009-2021, Intel Corporation\n*\n* Permission is hereby granted, free of charge, to any person obtaining a\n* copy of this software and associated documentation files (the \"Software\"),\n* to deal in the Software without restriction, including without limitation\n* the rights to use, copy, modify, merge, publish, distribute, sublicense,\n* and/or sell copies of the Software, and to permit persons to whom the\n* Software is furnished to do so, subject to the following conditions:\n*\n* The above copyright notice and this permission notice shall be included\n* in all copies or substantial portions of the Software.\n*\n* THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR\n* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,\n* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\n* OTHER DEALINGS IN THE SOFTWARE.\n*/\n/*\n * Video process test case based on LibVA.\n * This test covers scaling and several surface format conversion.\n * Usage: ./vppscaling_csc process_scaling_csc.cfg\n */\n\n#include <stdio.h>\n#include <stdlib.h>\n#include <string.h>\n#include <stdint.h>\n#include <time.h>\n#include <assert.h>\n#include <va/va.h>\n#include <va/va_vpp.h>\n#include \"va_display.h\"\n\n#ifndef VA_FOURCC_I420\n#define VA_FOURCC_I420 0x30323449\n#endif\n\n#define MAX_LEN   1024\n\n#define CHECK_VASTATUS(va_status,func)                                      \\\n  if (va_status != VA_STATUS_SUCCESS) {                                     \\\n      fprintf(stderr,\"%s:%s (%d) failed,exit\\n\", __func__, func, __LINE__); \\\n      exit(1);                                                              \\\n  }\n\n/* indicate the pipleine is scaling -> 3dlut, two seperate calls */\n#define VA_SCALING_3DLUT 0\n/* indicate the pipleine is 3dlut -> scaling, by default in one call */\n#define VA_3DLUT_SCALING 1\n#define VA_SCALING_ONLY  2\n\nstatic VADisplay va_dpy = NULL;\nstatic VAContextID context_id = 0;\nstatic VAConfigID  config_id = 0;\nstatic VASurfaceID g_in_surface_id = VA_INVALID_ID;\nstatic VASurfaceID g_out_surface_id = VA_INVALID_ID;\n/* only for VA_SCALING_3DLUT scaled surface */\nstatic VASurfaceID g_inter_surface_id = VA_INVALID_ID;\nstatic VASurfaceID g_3dlut_surface_id = VA_INVALID_ID;\n\nstatic FILE* g_config_file_fd = NULL;\nstatic FILE* g_src_file_fd = NULL;\nstatic FILE* g_dst_file_fd = NULL;\n\nstatic char g_config_file_name[MAX_LEN];\nstatic char g_src_file_name[MAX_LEN];\nstatic char g_dst_file_name[MAX_LEN];\n\nstatic uint32_t g_in_pic_width = 352;\nstatic uint32_t g_in_pic_height = 288;\nstatic uint32_t g_out_pic_width = 352;\nstatic uint32_t g_out_pic_height = 288;\n\nstatic uint32_t g_in_fourcc  = VA_FOURCC('N', 'V', '1', '2');\nstatic uint32_t g_in_format  = VA_RT_FORMAT_YUV420;\nstatic uint32_t g_out_fourcc = VA_FOURCC('N', 'V', '1', '2');\nstatic uint32_t g_out_format = VA_RT_FORMAT_YUV420;\nstatic uint32_t g_src_file_fourcc = VA_FOURCC('I', '4', '2', '0');\nstatic uint32_t g_dst_file_fourcc = VA_FOURCC('N', 'V', '1', '2');\n\nstatic uint32_t g_frame_count = 1;\nstatic uint32_t g_pipeline_sequence = VA_3DLUT_SCALING;\n\nstatic char g_3dlut_file_name[MAX_LEN];\nstatic uint16_t g_3dlut_seg_size = 65;\nstatic uint16_t g_3dlut_mul_size = 128;\nstatic uint32_t g_3dlut_channel_mapping = 1;\n\n#if VA_CHECK_VERSION(1, 12, 0)\n\nstatic int8_t\nread_value_string(FILE *fp, const char* field_name, char* value)\n{\n    char strLine[MAX_LEN];\n    char* field = NULL;\n    char* str = NULL;\n    uint16_t i;\n\n    if (!fp || !field_name || !value)  {\n        printf(\"Invalid fuction parameters\\n\");\n        return -1;\n    }\n\n    rewind(fp);\n\n    while (!feof(fp)) {\n        if (!fgets(strLine, MAX_LEN, fp))\n            continue;\n\n        for (i = 0; i < MAX_LEN && strLine[i]; i++)\n            if (strLine[i] != ' ') break;\n\n        if (i == MAX_LEN || strLine[i] == '#' || strLine[i] == '\\n')\n            continue;\n\n        field = strtok(&strLine[i], \":\");\n        if (strncmp(field, field_name, strlen(field_name)))\n            continue;\n\n        if (!(str = strtok(NULL, \":\")))\n            continue;\n\n        /* skip blank space in string */\n        while (*str == ' ')\n            str++;\n\n        *(str + strlen(str) - 1) = '\\0';\n        strcpy(value, str);\n\n        return 0;\n    }\n\n    return -1;\n}\n\nstatic int8_t\nread_value_uint32(FILE* fp, const char* field_name, uint32_t* value)\n{\n    char str[MAX_LEN];\n\n    if (read_value_string(fp, field_name, str)) {\n        printf(\"Failed to find integer field: %s\", field_name);\n        return -1;\n    }\n\n    *value = (uint32_t)atoi(str);\n    return 0;\n}\n\nstatic int8_t\nread_value_uint16(FILE* fp, const char* field_name, uint16_t* value)\n{\n    char str[MAX_LEN];\n\n    if (read_value_string(fp, field_name, str)) {\n        printf(\"Failed to find integer field: %s\", field_name);\n        return -1;\n    }\n\n    *value = (uint16_t)atoi(str);\n    return 0;\n}\n\n/* Load yuv frame to NV12/YV12/I420 surface*/\nstatic VAStatus\nupload_yuv_frame_to_yuv_surface(FILE *fp,\n                                VASurfaceID surface_id)\n{\n    VAStatus va_status;\n    VAImage surface_image;\n    unsigned char *y_src = NULL;\n    unsigned char *u_src = NULL;\n    unsigned char *v_src = NULL;\n    unsigned char *y_dst = NULL;\n    unsigned char *u_dst = NULL;\n    unsigned char *v_dst = NULL;\n    void *surface_p = NULL;\n    uint32_t frame_size, row, col;\n    size_t n_items;\n    unsigned char * newImageBuffer = NULL;\n    va_status = vaSyncSurface(va_dpy, surface_id);\n    CHECK_VASTATUS(va_status, \"vaSyncSurface\");\n\n    va_status = vaDeriveImage(va_dpy, surface_id, &surface_image);\n    CHECK_VASTATUS(va_status, \"vaDeriveImage\");\n\n    va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p);\n    CHECK_VASTATUS(va_status, \"vaMapBuffer\");\n\n    if (surface_image.format.fourcc == VA_FOURCC_YV12 ||\n        surface_image.format.fourcc == VA_FOURCC_I420 ||\n        surface_image.format.fourcc == VA_FOURCC_NV12) {\n\n        frame_size = surface_image.width * surface_image.height * 3 / 2;\n        newImageBuffer = (unsigned char*)malloc(frame_size);\n        assert(newImageBuffer);\n\n        do {\n            n_items = fread(newImageBuffer, frame_size, 1, fp);\n        } while (n_items != 1);\n\n        y_src = newImageBuffer;\n        if (g_src_file_fourcc == VA_FOURCC_I420) {\n            u_src = newImageBuffer + surface_image.width * surface_image.height;\n            v_src = newImageBuffer + surface_image.width * surface_image.height * 5 / 4;\n        } else if (g_src_file_fourcc == VA_FOURCC_YV12) {\n            v_src = newImageBuffer + surface_image.width * surface_image.height;\n            u_src = newImageBuffer + surface_image.width * surface_image.height * 5 / 4;\n        } else if (g_src_file_fourcc == VA_FOURCC_NV12) {\n            u_src = newImageBuffer + surface_image.width * surface_image.height;\n            v_src = u_src;\n        } else {\n            printf(\"Not supported YUV fourcc for input file !!!\\n\");\n            free(newImageBuffer);\n            return VA_STATUS_ERROR_INVALID_SURFACE;\n        }\n\n        y_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]);\n\n        if (surface_image.format.fourcc == VA_FOURCC_YV12) {\n            v_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            u_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]);\n        } else if (surface_image.format.fourcc == VA_FOURCC_I420) {\n            u_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            v_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]);\n        } else {\n            u_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            v_dst = u_dst;\n        }\n\n        /* Y plane, directly copy */\n        for (row = 0; row < surface_image.height; row++) {\n            memcpy(y_dst, y_src, surface_image.width);\n            y_dst += surface_image.pitches[0];\n            y_src += surface_image.width;\n        }\n\n        /* UV plane */\n        if (surface_image.format.fourcc == VA_FOURCC_YV12 ||\n            surface_image.format.fourcc == VA_FOURCC_I420) {\n            for (row = 0; row < surface_image.height / 2; row ++) {\n                if (g_src_file_fourcc == VA_FOURCC_I420 ||\n                    g_src_file_fourcc == VA_FOURCC_YV12) {\n                    memcpy(v_dst, v_src, surface_image.width / 2);\n                    memcpy(u_dst, u_src, surface_image.width / 2);\n\n                    v_src += surface_image.width / 2;\n                    u_src += surface_image.width / 2;\n                } else {\n                    for (col = 0; col < surface_image.width / 2; col++) {\n                        u_dst[col] = u_src[col * 2];\n                        v_dst[col] = u_src[col * 2 + 1];\n                    }\n\n                    u_src += surface_image.width;\n                    v_src = u_src;\n                }\n\n                if (surface_image.format.fourcc == VA_FOURCC_YV12) {\n                    v_dst += surface_image.pitches[1];\n                    u_dst += surface_image.pitches[2];\n                } else {\n                    v_dst += surface_image.pitches[2];\n                    u_dst += surface_image.pitches[1];\n                }\n            }\n        } else if (surface_image.format.fourcc == VA_FOURCC_NV12) {\n            for (row = 0; row < surface_image.height / 2; row++) {\n                if (g_src_file_fourcc == VA_FOURCC_I420 ||\n                    g_src_file_fourcc == VA_FOURCC_YV12) {\n                    for (col = 0; col < surface_image.width / 2; col++) {\n                        u_dst[col * 2] = u_src[col];\n                        u_dst[col * 2 + 1] = v_src[col];\n                    }\n\n                    u_src += (surface_image.width / 2);\n                    v_src += (surface_image.width / 2);\n                } else {\n                    memcpy(u_dst, u_src, surface_image.width);\n                    u_src += surface_image.width;\n                    v_src = u_src;\n                }\n\n                u_dst += surface_image.pitches[1];\n            }\n        }\n    } else if ((surface_image.format.fourcc == VA_FOURCC_YUY2 &&\n                g_src_file_fourcc == VA_FOURCC_YUY2) ||\n               (surface_image.format.fourcc == VA_FOURCC_UYVY &&\n                g_src_file_fourcc == VA_FOURCC_UYVY)) {\n        frame_size = surface_image.width * surface_image.height * 2;\n        newImageBuffer = (unsigned char*)malloc(frame_size);\n        assert(newImageBuffer);\n\n        do {\n            n_items = fread(newImageBuffer, frame_size, 1, fp);\n        } while (n_items != 1);\n\n        y_src = newImageBuffer;\n        y_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]);\n\n        /* plane 0, directly copy */\n        for (row = 0; row < surface_image.height; row++) {\n            memcpy(y_dst, y_src, surface_image.width * 2);\n            y_src += surface_image.width * 2;\n            y_dst += surface_image.pitches[0];\n        }\n    } else if ((surface_image.format.fourcc == VA_FOURCC_P010 &&\n                g_src_file_fourcc == VA_FOURCC_P010) ||\n               (surface_image.format.fourcc == VA_FOURCC_I010 &&\n                g_src_file_fourcc == VA_FOURCC_I010)) {\n        frame_size = surface_image.width * surface_image.height * 3;\n        newImageBuffer = (unsigned char*)malloc(frame_size);\n        assert(newImageBuffer);\n\n        do {\n            n_items = fread(newImageBuffer, frame_size, 1, fp);\n        } while (n_items != 1);\n\n        y_src = newImageBuffer;\n        y_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]);\n\n        /* plane 0, directly copy */\n        for (row = 0; row < surface_image.height; row++) {\n            memcpy(y_dst, y_src, surface_image.width * 2);\n            y_src += surface_image.width * 2;\n            y_dst += surface_image.pitches[0];\n        }\n\n        /* UV plane */\n        if (surface_image.format.fourcc == VA_FOURCC_I010) {\n            assert(g_src_file_fourcc == VA_FOURCC_I010);\n\n            u_src = newImageBuffer + surface_image.width * surface_image.height * 2;\n            v_src = newImageBuffer + surface_image.width * surface_image.height * 5 / 2;\n\n            u_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            v_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]);\n\n            for (row = 0; row < surface_image.height / 2; row++) {\n                memcpy(u_dst, u_src, surface_image.width);\n                memcpy(v_dst, v_src, surface_image.width);\n\n                u_src += surface_image.width;\n                v_src += surface_image.width;\n\n                u_dst += surface_image.pitches[1];\n                v_dst += surface_image.pitches[2];\n            }\n        } else if (surface_image.format.fourcc == VA_FOURCC_P010) {\n            assert(g_src_file_fourcc == VA_FOURCC_P010);\n\n            u_src = newImageBuffer + surface_image.width * surface_image.height * 2;\n            v_src = u_src;\n\n            u_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            v_dst = u_dst;\n\n            for (row = 0; row < surface_image.height / 2; row++) {\n                memcpy(u_dst, u_src, surface_image.width * 2);\n\n                u_src += surface_image.width * 2;\n                v_src = u_src;\n\n                u_dst += surface_image.pitches[1];\n                v_dst = u_dst;\n            }\n        }\n    }  else if ((surface_image.format.fourcc == VA_FOURCC_RGBA &&\n                 g_src_file_fourcc == VA_FOURCC_RGBA) ||\n                (surface_image.format.fourcc == VA_FOURCC_RGBX &&\n                 g_src_file_fourcc == VA_FOURCC_RGBX) ||\n                (surface_image.format.fourcc == VA_FOURCC_BGRA &&\n                 g_src_file_fourcc == VA_FOURCC_BGRA) ||\n                (surface_image.format.fourcc == VA_FOURCC_BGRX &&\n                 g_src_file_fourcc == VA_FOURCC_BGRX)) {\n        frame_size = surface_image.width * surface_image.height * 4;\n        newImageBuffer = (unsigned char*)malloc(frame_size);\n        assert(newImageBuffer);\n\n        do {\n            n_items = fread(newImageBuffer, frame_size, 1, fp);\n        } while (n_items != 1);\n\n        y_src = newImageBuffer;\n        y_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]);\n\n        /* plane 0, directly copy */\n        for (row = 0; row < surface_image.height; row++) {\n            memcpy(y_dst, y_src, surface_image.width * 4);\n            y_src += surface_image.width * 4;\n            y_dst += surface_image.pitches[0];\n        }\n    } else {\n        printf(\"Not supported YUV surface fourcc !!! \\n\");\n        return VA_STATUS_ERROR_INVALID_SURFACE;\n    }\n\n    if (newImageBuffer) {\n        free(newImageBuffer);\n        newImageBuffer = NULL;\n    }\n\n    vaUnmapBuffer(va_dpy, surface_image.buf);\n    vaDestroyImage(va_dpy, surface_image.image_id);\n\n    return VA_STATUS_SUCCESS;\n}\n\n/* Store NV12/YV12/I420 surface to yv12 file */\nstatic VAStatus\nstore_yuv_surface_to_yv12_file(FILE *fp,\n                               VASurfaceID surface_id)\n{\n    VAStatus va_status;\n    VAImage surface_image;\n    void *surface_p = NULL;\n    unsigned char *y_src = NULL;\n    unsigned char *u_src = NULL;\n    unsigned char *v_src = NULL;\n    unsigned char *y_dst = NULL;\n    unsigned char *u_dst = NULL;\n    unsigned char *v_dst = NULL;\n    uint32_t row, col;\n    int32_t n_items;\n    unsigned char * newImageBuffer = NULL;\n    va_status = vaSyncSurface(va_dpy, surface_id);\n    CHECK_VASTATUS(va_status, \"vaSyncSurface\");\n\n    va_status = vaDeriveImage(va_dpy, surface_id, &surface_image);\n    CHECK_VASTATUS(va_status, \"vaDeriveImage\");\n\n    va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p);\n    CHECK_VASTATUS(va_status, \"vaMapBuffer\");\n\n    /* store the surface to one YV12 file or one bmp file*/\n    if (surface_image.format.fourcc == VA_FOURCC_YV12 ||\n        surface_image.format.fourcc == VA_FOURCC_I420 ||\n        surface_image.format.fourcc == VA_FOURCC_NV12) {\n\n        uint32_t y_size = surface_image.width * surface_image.height;\n        uint32_t u_size = y_size / 4;\n\n        newImageBuffer = (unsigned char*)malloc(y_size * 3 / 2);\n        assert(newImageBuffer);\n\n        /* stored as YV12 format */\n        y_dst = newImageBuffer;\n        v_dst = newImageBuffer + y_size;\n        u_dst = newImageBuffer + y_size + u_size;\n\n        y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]);\n        if (surface_image.format.fourcc == VA_FOURCC_YV12) {\n            v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]);\n        } else if (surface_image.format.fourcc == VA_FOURCC_I420) {\n            u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]);\n        } else if (surface_image.format.fourcc == VA_FOURCC_NV12) {\n            u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            v_src = u_src;\n        }\n\n        /* Y plane copy */\n        for (row = 0; row < surface_image.height; row++) {\n            memcpy(y_dst, y_src, surface_image.width);\n            y_src += surface_image.pitches[0];\n            y_dst += surface_image.width;\n        }\n\n        /* UV plane copy */\n        if (surface_image.format.fourcc == VA_FOURCC_YV12 ||\n            surface_image.format.fourcc == VA_FOURCC_I420) {\n            for (row = 0; row < surface_image.height / 2; row ++) {\n                memcpy(v_dst, v_src, surface_image.width / 2);\n                memcpy(u_dst, u_src, surface_image.width / 2);\n\n                v_dst += surface_image.width / 2;\n                u_dst += surface_image.width / 2;\n\n                if (surface_image.format.fourcc == VA_FOURCC_YV12) {\n                    v_src += surface_image.pitches[1];\n                    u_src += surface_image.pitches[2];\n                } else {\n                    v_src += surface_image.pitches[2];\n                    u_src += surface_image.pitches[1];\n                }\n            }\n        } else if (surface_image.format.fourcc == VA_FOURCC_NV12) {\n            for (row = 0; row < surface_image.height / 2; row++) {\n                for (col = 0; col < surface_image.width / 2; col++) {\n                    u_dst[col] = u_src[col * 2];\n                    v_dst[col] = u_src[col * 2 + 1];\n                }\n\n                u_src += surface_image.pitches[1];\n                u_dst += (surface_image.width / 2);\n                v_dst += (surface_image.width / 2);\n            }\n        }\n\n        /* write frame to file */\n        do {\n            n_items = fwrite(newImageBuffer, y_size * 3 / 2, 1, fp);\n        } while (n_items != 1);\n\n    } else {\n        printf(\"Not supported YUV surface fourcc !!! \\n\");\n        return VA_STATUS_ERROR_INVALID_SURFACE;\n    }\n\n    if (newImageBuffer) {\n        free(newImageBuffer);\n        newImageBuffer = NULL;\n    }\n\n    vaUnmapBuffer(va_dpy, surface_image.buf);\n    vaDestroyImage(va_dpy, surface_image.image_id);\n\n    return VA_STATUS_SUCCESS;\n}\n\nstatic VAStatus\nstore_yuv_surface_to_i420_file(FILE *fp,\n                               VASurfaceID surface_id)\n{\n    VAStatus va_status;\n    VAImage surface_image;\n    void *surface_p = NULL;\n    unsigned char *y_src = NULL;\n    unsigned char *u_src = NULL;\n    unsigned char *v_src = NULL;\n    unsigned char *y_dst = NULL;\n    unsigned char *u_dst = NULL;\n    unsigned char *v_dst = NULL;\n    uint32_t row, col;\n    int32_t n_items;\n    unsigned char * newImageBuffer = NULL;\n    va_status = vaSyncSurface(va_dpy, surface_id);\n    CHECK_VASTATUS(va_status, \"vaSyncSurface\");\n\n    va_status = vaDeriveImage(va_dpy, surface_id, &surface_image);\n    CHECK_VASTATUS(va_status, \"vaDeriveImage\");\n\n    va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p);\n    CHECK_VASTATUS(va_status, \"vaMapBuffer\");\n\n    /* store the surface to one i420 file */\n    if (surface_image.format.fourcc == VA_FOURCC_YV12 ||\n        surface_image.format.fourcc == VA_FOURCC_I420 ||\n        surface_image.format.fourcc == VA_FOURCC_NV12) {\n\n        uint32_t y_size = surface_image.width * surface_image.height;\n        uint32_t u_size = y_size / 4;\n\n        newImageBuffer = (unsigned char*)malloc(y_size * 3 / 2);\n        assert(newImageBuffer);\n\n        /* stored as YV12 format */\n        y_dst = newImageBuffer;\n        u_dst = newImageBuffer + y_size;\n        v_dst = newImageBuffer + y_size + u_size;\n\n        y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]);\n        if (surface_image.format.fourcc == VA_FOURCC_YV12) {\n            v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]);\n        } else if (surface_image.format.fourcc == VA_FOURCC_I420) {\n            u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]);\n        } else if (surface_image.format.fourcc == VA_FOURCC_NV12) {\n            u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            v_src = u_src;\n        }\n\n        /* Y plane copy */\n        for (row = 0; row < surface_image.height; row++) {\n            memcpy(y_dst, y_src, surface_image.width);\n            y_src += surface_image.pitches[0];\n            y_dst += surface_image.width;\n        }\n\n        /* UV plane copy */\n        if (surface_image.format.fourcc == VA_FOURCC_YV12 ||\n            surface_image.format.fourcc == VA_FOURCC_I420) {\n            for (row = 0; row < surface_image.height / 2; row ++) {\n                memcpy(v_dst, v_src, surface_image.width / 2);\n                memcpy(u_dst, u_src, surface_image.width / 2);\n\n                v_dst += surface_image.width / 2;\n                u_dst += surface_image.width / 2;\n\n                if (surface_image.format.fourcc == VA_FOURCC_YV12) {\n                    v_src += surface_image.pitches[1];\n                    u_src += surface_image.pitches[2];\n                } else {\n                    v_src += surface_image.pitches[2];\n                    u_src += surface_image.pitches[1];\n                }\n            }\n        } else if (surface_image.format.fourcc == VA_FOURCC_NV12) {\n            for (row = 0; row < surface_image.height / 2; row++) {\n                for (col = 0; col < surface_image.width / 2; col++) {\n                    u_dst[col] = u_src[col * 2];\n                    v_dst[col] = u_src[col * 2 + 1];\n                }\n\n                u_src += surface_image.pitches[1];\n                u_dst += (surface_image.width / 2);\n                v_dst += (surface_image.width / 2);\n            }\n        }\n\n        /* write frame to file */\n        do {\n            n_items = fwrite(newImageBuffer, y_size * 3 / 2, 1, fp);\n        } while (n_items != 1);\n\n    } else {\n        printf(\"Not supported YUV surface fourcc !!! \\n\");\n        return VA_STATUS_ERROR_INVALID_SURFACE;\n    }\n\n    if (newImageBuffer) {\n        free(newImageBuffer);\n        newImageBuffer = NULL;\n    }\n\n    vaUnmapBuffer(va_dpy, surface_image.buf);\n    vaDestroyImage(va_dpy, surface_image.image_id);\n\n    return VA_STATUS_SUCCESS;\n}\n\nstatic VAStatus\nstore_yuv_surface_to_nv12_file(FILE *fp,\n                               VASurfaceID surface_id)\n{\n    VAStatus va_status;\n    VAImage surface_image;\n    void *surface_p = NULL;\n    unsigned char *y_src = NULL;\n    unsigned char *u_src = NULL;\n    unsigned char *v_src = NULL;\n    unsigned char *y_dst = NULL;\n    unsigned char *u_dst = NULL;\n    unsigned char *v_dst = NULL;\n    uint32_t row, col;\n    int32_t n_items;\n    unsigned char * newImageBuffer = NULL;\n    va_status = vaSyncSurface(va_dpy, surface_id);\n    CHECK_VASTATUS(va_status, \"vaSyncSurface\");\n\n    va_status = vaDeriveImage(va_dpy, surface_id, &surface_image);\n    CHECK_VASTATUS(va_status, \"vaDeriveImage\");\n\n    va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p);\n    CHECK_VASTATUS(va_status, \"vaMapBuffer\");\n\n    /* store the surface to one nv12 file */\n    if (surface_image.format.fourcc == VA_FOURCC_YV12 ||\n        surface_image.format.fourcc == VA_FOURCC_I420 ||\n        surface_image.format.fourcc == VA_FOURCC_NV12) {\n\n        uint32_t y_size = surface_image.width * surface_image.height;\n\n        newImageBuffer = (unsigned char*)malloc(y_size * 3 / 2);\n        assert(newImageBuffer);\n\n        /* stored as YV12 format */\n        y_dst = newImageBuffer;\n        u_dst = v_dst = newImageBuffer + y_size;\n\n        y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]);\n\n        if (surface_image.format.fourcc == VA_FOURCC_YV12) {\n            v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]);\n        } else if (surface_image.format.fourcc == VA_FOURCC_I420) {\n            u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]);\n        } else if (surface_image.format.fourcc == VA_FOURCC_NV12) {\n            u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            v_src = u_src;\n        }\n\n        /* Y plane copy */\n        for (row = 0; row < surface_image.height; row++) {\n            memcpy(y_dst, y_src, surface_image.width);\n            y_src += surface_image.pitches[0];\n            y_dst += surface_image.width;\n        }\n\n        /* UV plane copy */\n        if (surface_image.format.fourcc == VA_FOURCC_YV12 ||\n            surface_image.format.fourcc == VA_FOURCC_I420) {\n            for (row = 0; row < surface_image.height / 2; row ++) {\n                for (col = 0; col < surface_image.width / 2; col++) {\n                    u_dst[col * 2] = u_src[col];\n                    u_dst[col * 2 + 1] = v_src[col];\n                }\n\n                u_dst += surface_image.width;\n\n                if (surface_image.format.fourcc == VA_FOURCC_YV12) {\n                    v_src += surface_image.pitches[1];\n                    u_src += surface_image.pitches[2];\n                } else {\n                    v_src += surface_image.pitches[2];\n                    u_src += surface_image.pitches[1];\n                }\n            }\n        } else if (surface_image.format.fourcc == VA_FOURCC_NV12) {\n            for (row = 0; row < surface_image.height / 2; row++) {\n                memcpy(u_dst, u_src, surface_image.width);\n                u_dst += surface_image.width;\n                u_src += surface_image.pitches[1];\n            }\n        }\n\n        /* write frame to file */\n        do {\n            n_items = fwrite(newImageBuffer, y_size * 3 / 2, 1, fp);\n        } while (n_items != 1);\n\n    } else {\n        printf(\"Not supported YUV surface fourcc !!! \\n\");\n        return VA_STATUS_ERROR_INVALID_SURFACE;\n    }\n\n    if (newImageBuffer) {\n        free(newImageBuffer);\n        newImageBuffer = NULL;\n    }\n\n    vaUnmapBuffer(va_dpy, surface_image.buf);\n    vaDestroyImage(va_dpy, surface_image.image_id);\n\n    return VA_STATUS_SUCCESS;\n}\n\nstatic VAStatus\nstore_packed_yuv_surface_to_packed_file(FILE *fp,\n                                        VASurfaceID surface_id)\n{\n    VAStatus va_status;\n    VAImage surface_image;\n    void *surface_p = NULL;\n    unsigned char *y_src = NULL;\n    unsigned char *y_dst = NULL;\n    uint32_t row;\n    int32_t n_items;\n    unsigned char * newImageBuffer = NULL;\n    va_status = vaSyncSurface(va_dpy, surface_id);\n    CHECK_VASTATUS(va_status, \"vaSyncSurface\");\n\n    va_status = vaDeriveImage(va_dpy, surface_id, &surface_image);\n    CHECK_VASTATUS(va_status, \"vaDeriveImage\");\n\n    va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p);\n    CHECK_VASTATUS(va_status, \"vaMapBuffer\");\n\n    /* store the surface to one YUY2 or UYVY file */\n    if (surface_image.format.fourcc == VA_FOURCC_YUY2 ||\n        surface_image.format.fourcc == VA_FOURCC_UYVY) {\n        uint32_t frame_size = surface_image.width * surface_image.height * 2;\n\n        newImageBuffer = (unsigned char*)malloc(frame_size);\n        assert(newImageBuffer);\n        memset(newImageBuffer, 0, frame_size);\n\n        /* stored as YUY2 or UYVY format */\n        y_dst = newImageBuffer;\n\n        y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]);\n\n        /* Plane 0 copy */\n        for (row = 0; row < surface_image.height; row++) {\n            memcpy(y_dst, y_src, surface_image.width * 2);\n            y_src += surface_image.pitches[0];\n            y_dst += surface_image.width * 2;\n        }\n\n        /* write frame to file */\n        do {\n            n_items = fwrite(newImageBuffer, frame_size, 1, fp);\n        } while (n_items != 1);\n\n    } else {\n        printf(\"Not supported YUV surface fourcc !!! \\n\");\n        return VA_STATUS_ERROR_INVALID_SURFACE;\n    }\n\n    if (newImageBuffer) {\n        free(newImageBuffer);\n        newImageBuffer = NULL;\n    }\n\n    vaUnmapBuffer(va_dpy, surface_image.buf);\n    vaDestroyImage(va_dpy, surface_image.image_id);\n\n    return VA_STATUS_SUCCESS;\n}\n\nstatic VAStatus\nstore_yuv_surface_to_10bit_file(FILE *fp, VASurfaceID surface_id)\n{\n    VAStatus va_status;\n    VAImage surface_image;\n    void *surface_p = NULL;\n    unsigned char *y_src = NULL;\n    unsigned char *u_src = NULL;\n    unsigned char *v_src = NULL;\n    unsigned char *y_dst = NULL;\n    unsigned char *u_dst = NULL;\n    unsigned char *v_dst = NULL;\n    uint32_t row;\n    int32_t n_items;\n    unsigned char * newImageBuffer = NULL;\n    va_status = vaSyncSurface(va_dpy, surface_id);\n    CHECK_VASTATUS(va_status, \"vaSyncSurface\");\n\n    va_status = vaDeriveImage(va_dpy, surface_id, &surface_image);\n    CHECK_VASTATUS(va_status, \"vaDeriveImage\");\n\n    va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p);\n    CHECK_VASTATUS(va_status, \"vaMapBuffer\");\n\n    /* store the surface to one 10bit file */\n    uint32_t y_size = surface_image.width * surface_image.height * 2;\n    uint32_t u_size = y_size / 4;\n\n    newImageBuffer = (unsigned char*)malloc(y_size * 3);\n    assert(newImageBuffer);\n    y_dst = newImageBuffer;\n\n    y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]);\n\n    /* Y plane copy */\n    for (row = 0; row < surface_image.height; row++) {\n        memcpy(y_dst, y_src, surface_image.width * 2);\n        y_src += surface_image.pitches[0];\n        y_dst += surface_image.width * 2;\n    }\n\n    if (surface_image.format.fourcc == VA_FOURCC_I010) {\n        u_dst = newImageBuffer + y_size;\n        v_dst = newImageBuffer + y_size + u_size;\n\n        u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n        v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]);\n\n        for (row = 0; row < surface_image.height / 2; row++) {\n            memcpy(u_dst, u_src, surface_image.width);\n            memcpy(v_dst, v_src, surface_image.width);\n\n            u_dst += surface_image.width;\n            v_dst += surface_image.width;\n\n            u_src += surface_image.pitches[1];\n            v_src += surface_image.pitches[2];\n        }\n    } else if (surface_image.format.fourcc == VA_FOURCC_P010) {\n        u_dst = newImageBuffer + y_size;\n        v_dst = u_dst;\n\n        u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n        v_src = u_src;\n\n        for (row = 0; row < surface_image.height / 2; row++) {\n            memcpy(u_dst, u_src, surface_image.width * 2);\n            u_dst += surface_image.width * 2;\n            u_src += surface_image.pitches[1];\n        }\n    } else {\n        printf(\"Not supported YUV surface fourcc !!! \\n\");\n        free(newImageBuffer);\n        return VA_STATUS_ERROR_INVALID_SURFACE;\n    }\n\n    /* write frame to file */\n    do {\n        n_items = fwrite(newImageBuffer, y_size * 3 / 2, 1, fp);\n    } while (n_items != 1);\n\n    if (newImageBuffer) {\n        free(newImageBuffer);\n        newImageBuffer = NULL;\n    }\n\n    vaUnmapBuffer(va_dpy, surface_image.buf);\n    vaDestroyImage(va_dpy, surface_image.image_id);\n\n    return VA_STATUS_SUCCESS;\n}\n\nstatic VAStatus\nstore_rgb_surface_to_rgb_file(FILE *fp, VASurfaceID surface_id)\n{\n    VAStatus va_status;\n    VAImage surface_image;\n    void *surface_p = NULL;\n    unsigned char *y_src = NULL;\n    unsigned char *y_dst = NULL;\n    uint32_t frame_size, row;\n    int32_t n_items;\n    unsigned char * newImageBuffer = NULL;\n    va_status = vaSyncSurface(va_dpy, surface_id);\n    CHECK_VASTATUS(va_status, \"vaSyncSurface\");\n\n    va_status = vaDeriveImage(va_dpy, surface_id, &surface_image);\n    CHECK_VASTATUS(va_status, \"vaDeriveImage\");\n\n    va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p);\n    CHECK_VASTATUS(va_status, \"vaMapBuffer\");\n\n    frame_size = surface_image.width * surface_image.height * 4;\n    newImageBuffer = (unsigned char*)malloc(frame_size);\n    assert(newImageBuffer);\n    y_dst = newImageBuffer;\n\n    y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]);\n\n    for (row = 0; row < surface_image.height; row++) {\n        memcpy(y_dst, y_src, surface_image.width * 4);\n        y_src += surface_image.pitches[0];\n        y_dst += surface_image.width * 4;\n    }\n\n    /* write frame to file */\n    do {\n        n_items = fwrite(newImageBuffer, frame_size, 1, fp);\n    } while (n_items != 1);\n\n    if (newImageBuffer) {\n        free(newImageBuffer);\n        newImageBuffer = NULL;\n    }\n\n    vaUnmapBuffer(va_dpy, surface_image.buf);\n    vaDestroyImage(va_dpy, surface_image.image_id);\n\n    return VA_STATUS_SUCCESS;\n}\n\nstatic VAStatus\nstore_yuv_surface_to_file(FILE *fp,\n                          VASurfaceID surface_id)\n{\n    if (g_out_fourcc == VA_FOURCC_YV12 ||\n        g_out_fourcc == VA_FOURCC_I420 ||\n        g_out_fourcc == VA_FOURCC_NV12) {\n        if (g_dst_file_fourcc == VA_FOURCC_YV12)\n            return store_yuv_surface_to_yv12_file(fp, surface_id);\n        else if (g_dst_file_fourcc == VA_FOURCC_I420)\n            return store_yuv_surface_to_i420_file(fp, surface_id);\n        else if (g_dst_file_fourcc == VA_FOURCC_NV12)\n            return store_yuv_surface_to_nv12_file(fp, surface_id);\n        else {\n            printf(\"Not supported YUV fourcc for output !!!\\n\");\n            return VA_STATUS_ERROR_INVALID_SURFACE;\n        }\n    } else if ((g_out_fourcc == VA_FOURCC_YUY2 &&\n                g_dst_file_fourcc == VA_FOURCC_YUY2) ||\n               (g_out_fourcc == VA_FOURCC_UYVY &&\n                g_dst_file_fourcc == VA_FOURCC_UYVY)) {\n        return store_packed_yuv_surface_to_packed_file(fp, surface_id);\n    } else if ((g_out_fourcc == VA_FOURCC_I010 &&\n                g_dst_file_fourcc == VA_FOURCC_I010) ||\n               (g_out_fourcc == VA_FOURCC_P010 &&\n                g_dst_file_fourcc == VA_FOURCC_P010)) {\n        return store_yuv_surface_to_10bit_file(fp, surface_id);\n    } else if ((g_out_fourcc == VA_FOURCC_RGBA &&\n                g_dst_file_fourcc == VA_FOURCC_RGBA) ||\n               (g_out_fourcc == VA_FOURCC_RGBX &&\n                g_dst_file_fourcc == VA_FOURCC_RGBX) ||\n               (g_out_fourcc == VA_FOURCC_RGBA &&\n                g_dst_file_fourcc == VA_FOURCC_BGRA) ||\n               (g_out_fourcc == VA_FOURCC_BGRX &&\n                g_dst_file_fourcc == VA_FOURCC_BGRX)) {\n        return store_rgb_surface_to_rgb_file(fp, surface_id);\n    } else {\n        printf(\"Not supported YUV fourcc for output !!!\\n\");\n        return VA_STATUS_ERROR_INVALID_SURFACE;\n    }\n}\n\nstatic VAStatus\nupload_data_to_3dlut(FILE *fp,\n                     VASurfaceID &surface_id)\n{\n    VAStatus va_status;\n    VAImage surface_image;\n    void *surface_p = NULL;\n    uint32_t frame_size, lut3d_size;\n    unsigned char * newImageBuffer = NULL;\n    va_status = vaSyncSurface(va_dpy, surface_id);\n    CHECK_VASTATUS(va_status, \"vaSyncSurface\");\n\n    va_status = vaDeriveImage(va_dpy, surface_id, &surface_image);\n    CHECK_VASTATUS(va_status, \"vaDeriveImage\");\n\n    va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p);\n    CHECK_VASTATUS(va_status, \"vaMapBuffer\");\n\n    if (surface_image.format.fourcc == VA_FOURCC_RGBA  && fp) {\n        /* 3DLUT surface is allocated to 32 bit RGB */\n        frame_size = surface_image.width * surface_image.height * 4;\n        newImageBuffer = (unsigned char*)malloc(frame_size);\n        assert(newImageBuffer);\n\n        fseek(fp, 0L, SEEK_END);\n        lut3d_size = ftell(fp);\n        rewind(fp);\n\n        uint32_t real_size = (frame_size > lut3d_size) ? lut3d_size : frame_size;\n\n        if (fread(newImageBuffer, real_size, 1, fp) != 0) {\n            memcpy(surface_p, newImageBuffer, real_size);\n            printf(\"upload_data_to_3dlut: 3DLUT surface width %d, height %d, pitch %d, frame size %d, 3dlut file size: %d\\n\", surface_image.width, surface_image.height, surface_image.pitches[0], frame_size, lut3d_size);\n        }\n    }\n\n    if (newImageBuffer)  {\n        free(newImageBuffer);\n        newImageBuffer = NULL;\n    }\n\n    vaUnmapBuffer(va_dpy, surface_image.buf);\n    vaDestroyImage(va_dpy, surface_image.image_id);\n\n    return VA_STATUS_SUCCESS;\n}\n\nstatic VAStatus\ncreate_surface(VASurfaceID * p_surface_id,\n               uint32_t width, uint32_t height,\n               uint32_t fourCC, uint32_t format)\n{\n    VAStatus va_status;\n    VASurfaceAttrib    surface_attrib;\n    surface_attrib.type =  VASurfaceAttribPixelFormat;\n    surface_attrib.flags = VA_SURFACE_ATTRIB_SETTABLE;\n    surface_attrib.value.type = VAGenericValueTypeInteger;\n    surface_attrib.value.value.i = fourCC;\n\n    va_status = vaCreateSurfaces(va_dpy,\n                                 format,\n                                 width,\n                                 height,\n                                 p_surface_id,\n                                 1,\n                                 &surface_attrib,\n                                 1);\n    return va_status;\n}\n\nstatic VAStatus\nlut3D_filter_init(VABufferID &filter_param_buf_id)\n{\n    VAStatus va_status;\n    VAProcFilterParameterBuffer3DLUT lut3d_param;\n    VABufferID lut3d_param_buf_id;\n    uint32_t num_caps = 10;\n    bool bSupported = false;\n\n    VAProcFilterCap3DLUT caps[num_caps];\n    memset(&caps, 0, sizeof(VAProcFilterCap3DLUT)*num_caps);\n    va_status = vaQueryVideoProcFilterCaps(va_dpy, context_id,\n                                           VAProcFilter3DLUT,\n                                           (void *)caps, &num_caps);\n    CHECK_VASTATUS(va_status, \"vaQueryVideoProcFilterCaps\");\n    printf(\"vaQueryVideoProcFilterCaps num_caps %d\\n\", num_caps);\n\n    /* check if the input parameters are supported */\n    for (uint32_t index = 0; index < num_caps; index++) {\n        // check lut_size and lut_stride\n        if ((caps[index].lut_size = g_3dlut_seg_size) &&\n            (caps[index].lut_stride[0] == g_3dlut_seg_size) &&\n            (caps[index].lut_stride[1] == g_3dlut_seg_size) &&\n            (caps[index].lut_stride[2] == g_3dlut_mul_size)) {\n            bSupported = true;\n        }\n    }\n\n    if (bSupported) {\n        lut3d_param.type  = VAProcFilter3DLUT;\n        lut3d_param.lut_surface   = g_3dlut_surface_id;\n        lut3d_param.lut_size      = g_3dlut_seg_size;\n        lut3d_param.lut_stride[0] = g_3dlut_seg_size;\n        lut3d_param.lut_stride[1] = g_3dlut_seg_size;\n        lut3d_param.lut_stride[2] = g_3dlut_mul_size;\n        lut3d_param.bit_depth     = 16;\n        lut3d_param.num_channel   = 4;\n        lut3d_param.channel_mapping = g_3dlut_channel_mapping;\n\n        /* create 3dlut fitler buffer */\n        va_status = vaCreateBuffer(va_dpy, context_id,\n                                   VAProcFilterParameterBufferType, sizeof(lut3d_param), 1,\n                                   &lut3d_param, &lut3d_param_buf_id);\n\n        filter_param_buf_id = lut3d_param_buf_id;\n    }\n\n    return va_status;\n}\n\nstatic VAStatus\nvideo_frame_process_3dlut(VASurfaceID in_surface_id,\n                          VASurfaceID out_surface_id)\n{\n    VAStatus va_status;\n    VAProcPipelineParameterBuffer pipeline_param;\n    VARectangle surface_region, output_region;\n    VABufferID pipeline_param_buf_id = VA_INVALID_ID;\n    VABufferID filter_param_buf_id = VA_INVALID_ID;\n\n    /*Create 3DLUT Filter*/\n    lut3D_filter_init(filter_param_buf_id);\n\n    /* Fill pipeline buffer */\n    surface_region.x = 0;\n    surface_region.y = 0;\n    surface_region.width = g_in_pic_width;\n    surface_region.height = g_in_pic_height;\n    output_region.x = 0;\n    output_region.y = 0;\n    output_region.width = g_out_pic_width;\n    output_region.height = g_out_pic_height;\n\n    memset(&pipeline_param, 0, sizeof(pipeline_param));\n    pipeline_param.surface = in_surface_id;\n    pipeline_param.surface_region = &surface_region;\n    pipeline_param.output_region = &output_region;\n    pipeline_param.filter_flags = 0;\n    pipeline_param.filters = &filter_param_buf_id;\n    pipeline_param.num_filters  = 1;\n    /* input is bt2020 */\n    pipeline_param.surface_color_standard = VAProcColorStandardBT2020;\n    pipeline_param.output_color_standard = VAProcColorStandardBT709;\n\n    va_status = vaCreateBuffer(va_dpy,\n                               context_id,\n                               VAProcPipelineParameterBufferType,\n                               sizeof(pipeline_param),\n                               1,\n                               &pipeline_param,\n                               &pipeline_param_buf_id);\n    CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n    va_status = vaBeginPicture(va_dpy,\n                               context_id,\n                               out_surface_id);\n    CHECK_VASTATUS(va_status, \"vaBeginPicture\");\n\n    va_status = vaRenderPicture(va_dpy,\n                                context_id,\n                                &pipeline_param_buf_id,\n                                1);\n    CHECK_VASTATUS(va_status, \"vaRenderPicture\");\n\n    va_status = vaEndPicture(va_dpy, context_id);\n    CHECK_VASTATUS(va_status, \"vaEndPicture\");\n\n    if (pipeline_param_buf_id != VA_INVALID_ID) {\n        vaDestroyBuffer(va_dpy, pipeline_param_buf_id);\n    }\n\n    if (filter_param_buf_id != VA_INVALID_ID) {\n        vaDestroyBuffer(va_dpy, filter_param_buf_id);\n    }\n\n    return va_status;\n}\n\nstatic VAStatus\nvideo_frame_process_scaling(VASurfaceID in_surface_id,\n                            VASurfaceID out_surface_id)\n{\n    VAStatus va_status;\n    VAProcPipelineParameterBuffer pipeline_param;\n    VARectangle surface_region, output_region;\n    VABufferID pipeline_param_buf_id = VA_INVALID_ID;\n\n    /* Fill pipeline buffer */\n    surface_region.x = 0;\n    surface_region.y = 0;\n    surface_region.width = g_in_pic_width;\n    surface_region.height = g_in_pic_height;\n    output_region.x = 0;\n    output_region.y = 0;\n    output_region.width = g_out_pic_width;\n    output_region.height = g_out_pic_height;\n\n    memset(&pipeline_param, 0, sizeof(pipeline_param));\n    pipeline_param.surface = in_surface_id;\n    pipeline_param.surface_region = &surface_region;\n    pipeline_param.output_region = &output_region;\n    /* Default is going to SFC */\n    // pipeline_param.filter_flags = 0;\n    // pipeline_param.filters = &filter_param_buf_id;\n    pipeline_param.num_filters  = 0;\n    /* input is bt2020 */\n    // pipeline_param.surface_color_standard = VAProcColorStandardBT2020;\n    // pipeline_param.output_color_standard = VAProcColorStandardBT709;\n\n    va_status = vaCreateBuffer(va_dpy,\n                               context_id,\n                               VAProcPipelineParameterBufferType,\n                               sizeof(pipeline_param),\n                               1,\n                               &pipeline_param,\n                               &pipeline_param_buf_id);\n    CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n    va_status = vaBeginPicture(va_dpy,\n                               context_id,\n                               out_surface_id);\n    CHECK_VASTATUS(va_status, \"vaBeginPicture\");\n\n    va_status = vaRenderPicture(va_dpy,\n                                context_id,\n                                &pipeline_param_buf_id,\n                                1);\n    CHECK_VASTATUS(va_status, \"vaRenderPicture\");\n\n    va_status = vaEndPicture(va_dpy, context_id);\n    CHECK_VASTATUS(va_status, \"vaEndPicture\");\n\n    if (pipeline_param_buf_id != VA_INVALID_ID) {\n        vaDestroyBuffer(va_dpy, pipeline_param_buf_id);\n    }\n\n    return va_status;\n}\n\nstatic VAStatus\nvpp_context_create()\n{\n    VAStatus va_status = VA_STATUS_SUCCESS;\n    int32_t j;\n\n    /* VA driver initialization */\n    va_dpy = va_open_display();\n    int32_t major_ver, minor_ver;\n    va_status = vaInitialize(va_dpy, &major_ver, &minor_ver);\n    assert(va_status == VA_STATUS_SUCCESS);\n\n    /* Check whether VPP is supported by driver */\n    VAEntrypoint entrypoints[5];\n    int32_t num_entrypoints;\n    num_entrypoints = vaMaxNumEntrypoints(va_dpy);\n    va_status = vaQueryConfigEntrypoints(va_dpy,\n                                         VAProfileNone,\n                                         entrypoints,\n                                         &num_entrypoints);\n    CHECK_VASTATUS(va_status, \"vaQueryConfigEntrypoints\");\n\n    for (j = 0; j < num_entrypoints; j++) {\n        if (entrypoints[j] == VAEntrypointVideoProc)\n            break;\n    }\n\n    if (j == num_entrypoints) {\n        printf(\"VPP is not supported by driver\\n\");\n        assert(0);\n    }\n\n    /* Render target surface format check */\n    VAConfigAttrib attrib;\n    attrib.type = VAConfigAttribRTFormat;\n    va_status = vaGetConfigAttributes(va_dpy,\n                                      VAProfileNone,\n                                      VAEntrypointVideoProc,\n                                      &attrib,\n                                      1);\n    CHECK_VASTATUS(va_status, \"vaGetConfigAttributes\");\n    if (!(attrib.value & g_out_format)) {\n        printf(\"RT format %d is not supported by VPP !\\n\", g_out_format);\n        assert(0);\n    }\n\n    /* Create surface/config/context for VPP pipeline */\n    va_status = create_surface(&g_in_surface_id, g_in_pic_width, g_in_pic_height,\n                               g_in_fourcc, g_in_format);\n    CHECK_VASTATUS(va_status, \"vaCreateSurfaces for input\");\n\n    if (g_pipeline_sequence == VA_SCALING_3DLUT) {\n        /* Create intermediate surface for scaling + 3DLUT */\n        va_status = create_surface(&g_inter_surface_id, g_out_pic_width, g_out_pic_height,\n                                   g_in_fourcc, g_in_format);\n        CHECK_VASTATUS(va_status, \"vaCreateSurfaces for input\");\n    }\n\n    va_status = create_surface(&g_out_surface_id, g_out_pic_width, g_out_pic_height,\n                               g_out_fourcc, g_out_format);\n    CHECK_VASTATUS(va_status, \"vaCreateSurfaces for output\");\n\n    if (g_pipeline_sequence != VA_SCALING_ONLY) {\n        uint32_t lut3d_size = g_3dlut_seg_size * g_3dlut_seg_size * g_3dlut_mul_size * (16 / 8) * 4;\n        printf(\"3dlut file name: %s, 3dlut size: %d\\n\", g_3dlut_file_name, lut3d_size);\n        /* create 3dlut surface and fill it with the data in 3dlut file */\n        va_status = create_surface(&g_3dlut_surface_id, g_3dlut_seg_size * g_3dlut_mul_size, g_3dlut_seg_size * 2,\n                                   VA_FOURCC_RGBA, VA_RT_FORMAT_RGB32);\n        CHECK_VASTATUS(va_status, \"vaCreateSurfaces for 3dlut.\");\n        /* fill 3dlut with the 3dlut file data */\n        FILE *lut3d_file = NULL;\n        lut3d_file = fopen(g_3dlut_file_name, \"rb\");\n        upload_data_to_3dlut(lut3d_file, g_3dlut_surface_id);\n        if (lut3d_file) {\n            fclose(lut3d_file);\n            lut3d_file = NULL;\n        }\n    }\n\n    va_status = vaCreateConfig(va_dpy,\n                               VAProfileNone,\n                               VAEntrypointVideoProc,\n                               &attrib,\n                               1,\n                               &config_id);\n    CHECK_VASTATUS(va_status, \"vaCreateConfig\");\n\n    va_status = vaCreateContext(va_dpy,\n                                config_id,\n                                g_out_pic_width,\n                                g_out_pic_height,\n                                VA_PROGRESSIVE,\n                                &g_out_surface_id,\n                                1,\n                                &context_id);\n    CHECK_VASTATUS(va_status, \"vaCreateContext\");\n    return va_status;\n}\n\nstatic void\nvpp_context_destroy()\n{\n    /* Release resource */\n    printf(\"vaDestroySurfaces input and output surface!\\n\");\n    vaDestroySurfaces(va_dpy, &g_in_surface_id, 1);\n    vaDestroySurfaces(va_dpy, &g_out_surface_id, 1);\n    if (g_pipeline_sequence == VA_SCALING_3DLUT) {\n        printf(\"vaDestroySurfaces intermediate surface for Scaling->3DLUT!\\n\");\n        vaDestroySurfaces(va_dpy, &g_inter_surface_id, 1);\n    }\n    if (g_pipeline_sequence != VA_SCALING_ONLY) {\n        printf(\"vaDestroySurfaces 3dlut surface for Scaling!\\n\");\n        vaDestroySurfaces(va_dpy, &g_3dlut_surface_id, 1);\n    }\n    printf(\"vaDestroyContext!\\n\");\n    vaDestroyContext(va_dpy, context_id);\n    printf(\"vaDestroyConfig!\\n\");\n    vaDestroyConfig(va_dpy, config_id);\n\n    printf(\"vaTerminate!\\n\");\n    vaTerminate(va_dpy);\n    printf(\"va_close_display!\\n\");\n    va_close_display(va_dpy);\n}\n\nstatic int8_t\nparse_fourcc_and_format(char *str, uint32_t *fourcc, uint32_t *format)\n{\n    uint32_t tfourcc = VA_FOURCC('N', 'V', '1', '2');\n    uint32_t tformat = VA_RT_FORMAT_YUV420;\n\n    if (!strcmp(str, \"YV12\")) {\n        tfourcc = VA_FOURCC('Y', 'V', '1', '2');\n    } else if (!strcmp(str, \"I420\")) {\n        tfourcc = VA_FOURCC('I', '4', '2', '0');\n    } else if (!strcmp(str, \"NV12\")) {\n        tfourcc = VA_FOURCC('N', 'V', '1', '2');\n    } else if (!strcmp(str, \"YUY2\") || !strcmp(str, \"YUYV\")) {\n        tfourcc = VA_FOURCC('Y', 'U', 'Y', '2');\n    } else if (!strcmp(str, \"UYVY\")) {\n        tfourcc = VA_FOURCC('U', 'Y', 'V', 'Y');\n    } else if (!strcmp(str, \"P010\")) {\n        tfourcc = VA_FOURCC('P', '0', '1', '0');\n    } else if (!strcmp(str, \"I010\")) {\n        tfourcc = VA_FOURCC('I', '0', '1', '0');\n    } else if (!strcmp(str, \"RGBA\")) {\n        tfourcc = VA_FOURCC_RGBA;\n    } else if (!strcmp(str, \"RGBX\")) {\n        tfourcc = VA_FOURCC_RGBX;\n    } else if (!strcmp(str, \"BGRA\")) {\n        tfourcc = VA_FOURCC_BGRA;\n    } else if (!strcmp(str, \"BGRX\")) {\n        tfourcc = VA_FOURCC_BGRX;\n    } else {\n        printf(\"Not supported format: %s! Currently only support following format: %s\\n\",\n               str, \"YV12, I420, NV12, YUY2(YUYV), UYVY, P010, I010, RGBA, RGBX, BGRA or BGRX\");\n        assert(0);\n    }\n\n    if (fourcc)\n        *fourcc = tfourcc;\n\n    if (format)\n        *format = tformat;\n\n    return 0;\n}\n\nstatic int8_t\nparse_basic_parameters()\n{\n    char str[MAX_LEN];\n\n    /* Read src frame file information */\n    read_value_string(g_config_file_fd, \"SRC_FILE_NAME\", g_src_file_name);\n    read_value_uint32(g_config_file_fd, \"SRC_FRAME_WIDTH\", &g_in_pic_width);\n    read_value_uint32(g_config_file_fd, \"SRC_FRAME_HEIGHT\", &g_in_pic_height);\n    read_value_string(g_config_file_fd, \"SRC_FRAME_FORMAT\", str);\n    parse_fourcc_and_format(str, &g_in_fourcc, &g_in_format);\n\n    /* Read dst frame file information */\n    read_value_string(g_config_file_fd, \"DST_FILE_NAME\", g_dst_file_name);\n    read_value_uint32(g_config_file_fd, \"DST_FRAME_WIDTH\", &g_out_pic_width);\n    read_value_uint32(g_config_file_fd, \"DST_FRAME_HEIGHT\", &g_out_pic_height);\n    read_value_string(g_config_file_fd, \"DST_FRAME_FORMAT\", str);\n    parse_fourcc_and_format(str, &g_out_fourcc, &g_out_format);\n\n    read_value_string(g_config_file_fd, \"SRC_FILE_FORMAT\", str);\n    parse_fourcc_and_format(str, &g_src_file_fourcc, NULL);\n\n    read_value_string(g_config_file_fd, \"DST_FILE_FORMAT\", str);\n    parse_fourcc_and_format(str, &g_dst_file_fourcc, NULL);\n\n    read_value_uint32(g_config_file_fd, \"FRAME_SUM\", &g_frame_count);\n\n    read_value_uint32(g_config_file_fd, \"3DLUT_SCALING\", &g_pipeline_sequence);\n\n    if (read_value_string(g_config_file_fd, \"3DLUT_FILE_NAME\", g_3dlut_file_name)) {\n        printf(\"Read 3DLUT file failed, exit.\");\n    }\n\n    if (read_value_uint16(g_config_file_fd, \"3DLUT_SEG_SIZE\", &g_3dlut_seg_size)) {\n        printf(\"Read segment_size failed, exit.\");\n    }\n\n    if (read_value_uint16(g_config_file_fd, \"3DLUT_MUL_SIZE\", &g_3dlut_mul_size)) {\n        printf(\"Read multiple_size failed, exit.\");\n    }\n\n    if (read_value_uint32(g_config_file_fd, \"3DLUT_CHANNEL_MAPPING\", &g_3dlut_channel_mapping)) {\n        printf(\"Read channel_mapping failed, exit.\");\n    }\n\n    if (g_in_pic_width != g_out_pic_width ||\n        g_in_pic_height != g_out_pic_height)\n        printf(\"Scaling will be done : from %4d x %4d to %4d x %4d \\n\",\n               g_in_pic_width, g_in_pic_height,\n               g_out_pic_width, g_out_pic_height);\n\n    if (g_in_fourcc != g_out_fourcc)\n        printf(\"Format conversion will be done: from %d to %d \\n\",\n               g_in_fourcc, g_out_fourcc);\n\n    return 0;\n}\n\nstatic void\nprint_help()\n{\n    printf(\"The app is used to test the scaling and csc feature.\\n\");\n    printf(\"Cmd Usage: ./vpp3dlut process_3dlut.cfg\\n\");\n    printf(\"The configure file process_scaling_csc.cfg is used to configure the para.\\n\");\n    printf(\"You can refer process_scaling_csc.cfg.template for each para meaning and create the configure file.\\n\");\n}\n\nint32_t main(int32_t argc, char *argv[])\n{\n    VAStatus va_status;\n    uint32_t i;\n\n    if (argc != 2 || !strcmp(argv[1], \"-h\") || !strcmp(argv[1], \"--help\")) {\n        print_help();\n        return -1;\n    }\n\n    /* Parse the configure file for video process*/\n    strncpy(g_config_file_name, argv[1], MAX_LEN);\n    g_config_file_name[MAX_LEN - 1] = '\\0';\n\n    if (NULL == (g_config_file_fd = fopen(g_config_file_name, \"r\"))) {\n        printf(\"Open configure file %s failed!\\n\", g_config_file_name);\n        assert(0);\n    }\n\n    /* Parse basic parameters */\n    if (parse_basic_parameters()) {\n        printf(\"Parse parameters in configure file error\\n\");\n        assert(0);\n    }\n\n    va_status = vpp_context_create();\n    if (va_status != VA_STATUS_SUCCESS) {\n        printf(\"vpp context create failed \\n\");\n        assert(0);\n    }\n\n    /* Video frame fetch, process and store */\n    if (NULL == (g_src_file_fd = fopen(g_src_file_name, \"r\"))) {\n        printf(\"Open SRC_FILE_NAME: %s failed, please specify it in config file: %s !\\n\",\n               g_src_file_name, g_config_file_name);\n        assert(0);\n    }\n\n    if (NULL == (g_dst_file_fd = fopen(g_dst_file_name, \"w\"))) {\n        printf(\"Open DST_FILE_NAME: %s failed, please specify it in config file: %s !\\n\",\n               g_dst_file_name, g_config_file_name);\n        assert(0);\n    }\n\n    for (i = 0; i < g_frame_count; i ++) {\n        upload_yuv_frame_to_yuv_surface(g_src_file_fd, g_in_surface_id);\n        if (g_pipeline_sequence == VA_3DLUT_SCALING) {\n            printf(\"process frame #%d in VA_3DLUT_SCALING\\n\", i);\n            video_frame_process_3dlut(g_in_surface_id, g_out_surface_id);\n        } else if (g_pipeline_sequence == VA_SCALING_3DLUT) {\n            printf(\"process frame #%d in VA_SCALING_3DLUT\\n\", i);\n            video_frame_process_scaling(g_in_surface_id, g_inter_surface_id);\n            video_frame_process_3dlut(g_inter_surface_id, g_out_surface_id);\n        } else if (g_pipeline_sequence == VA_SCALING_ONLY) {\n            printf(\"process frame #%d in VA_SCALING_ONLY\\n\", i);\n            video_frame_process_scaling(g_in_surface_id, g_out_surface_id);\n        } else {\n            printf(\"Unknown pipeline sequence, default is 3DLUT->scaling!\\n\");\n        }\n        store_yuv_surface_to_file(g_dst_file_fd, g_out_surface_id);\n    }\n\n    if (g_src_file_fd)\n        fclose(g_src_file_fd);\n\n    if (g_dst_file_fd)\n        fclose(g_dst_file_fd);\n\n    if (g_config_file_fd)\n        fclose(g_config_file_fd);\n\n    vpp_context_destroy();\n\n    return 0;\n}\n\n#endif\n"
  },
  {
    "path": "videoprocess/vppblending.cpp",
    "content": "/*\n* Copyright (c) 2009-2018, Intel Corporation\n*\n* Permission is hereby granted, free of charge, to any person obtaining a\n* copy of this software and associated documentation files (the \"Software\"),\n* to deal in the Software without restriction, including without limitation\n* the rights to use, copy, modify, merge, publish, distribute, sublicense,\n* and/or sell copies of the Software, and to permit persons to whom the\n* Software is furnished to do so, subject to the following conditions:\n*\n* The above copyright notice and this permission notice shall be included\n* in all copies or substantial portions of the Software.\n*\n* THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR\n* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,\n* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\n* OTHER DEALINGS IN THE SOFTWARE.\n*/\n/*\n * Video process test case based on LibVA.\n * This test covers blending, scaling and several surface format conversion.\n * Usage: ./vppblending process_blending.cfg\n */\n\n#include <stdio.h>\n#include <stdlib.h>\n#include <string.h>\n#include <stdint.h>\n#include <time.h>\n#include <assert.h>\n#include <vector>\n#include <va/va.h>\n#include <va/va_vpp.h>\n#include \"va_display.h\"\n\n#ifndef VA_FOURCC_I420\n#define VA_FOURCC_I420 0x30323449\n#endif\n\n#define MAX_LEN   1024\n\n#define CHECK_VASTATUS(va_status,func)                                      \\\n  if (va_status != VA_STATUS_SUCCESS) {                                     \\\n      fprintf(stderr,\"%s:%s (%d) failed,exit\\n\", __func__, func, __LINE__); \\\n      exit(1);                                                              \\\n  }\n\n/*\n* Image format information for each input streams.\n*/\ntypedef struct {\n    //Source media information\n    uint32_t            yuv_frame_in_width;\n    uint32_t            yuv_frame_in_height;\n    VARectangle         region_in;  /* for cut */\n\n    //Dest-layer/plane rectangle information\n    VARectangle         region_out; /* for output postion; primarily used when compositing */\n    char                src_file_name[MAX_LEN];\n    uint32_t            src_format;\n    uint32_t            rt_format;\n    uint32_t            file_fourcc;\n    VABlendState        blend_state;\n} VPP_ImageSrcInfo;\nstatic uint32_t g_src_count = 1;\nstatic uint32_t g_frame_count = 0;\nstatic std::vector<VPP_ImageSrcInfo> g_src_info;\nstatic VADisplay va_dpy = NULL;\nstatic VAContextID context_id = 0;\nstatic VAConfigID  config_id = 0;\n\nstatic std::vector<VASurfaceID> g_in_surface_ids;\nstatic VASurfaceID g_out_surface_id = VA_INVALID_ID;\nstatic FILE* g_config_file_fd = NULL;\nstd::vector<FILE*> g_src_file_fds;\nstatic FILE* g_dst_file_fd = NULL;\nstatic char g_config_file_name[MAX_LEN];\nstatic char g_dst_file_name[MAX_LEN];\n\nstatic uint32_t g_out_pic_width = 352;\nstatic uint32_t g_out_pic_height = 288;\nstatic uint32_t g_out_fourcc = VA_FOURCC('N', 'V', '1', '2');\nstatic uint32_t g_out_format = VA_RT_FORMAT_YUV420;\nstatic uint32_t g_dst_file_fourcc = VA_FOURCC('Y', 'V', '1', '2');\nstatic uint32_t g_total_time = 0;\n\n\nstatic int8_t\nread_value_string(FILE *fp, const char* field_name, char* value)\n{\n    char strLine[MAX_LEN];\n    char* field = NULL;\n    char* str = NULL;\n    uint16_t i;\n\n    if (!fp || !field_name || !value)  {\n        printf(\"Invalid fuction parameters\\n\");\n        return -1;\n    }\n\n    rewind(fp);\n\n    while (!feof(fp)) {\n        if (!fgets(strLine, MAX_LEN, fp))\n            continue;\n\n        for (i = 0; i < MAX_LEN && strLine[i]; i++)\n            if (strLine[i] != ' ') break;\n\n        if (i == MAX_LEN || strLine[i] == '#' || strLine[i] == '\\n')\n            continue;\n\n        field = strtok(&strLine[i], \":\");\n        if (strncmp(field, field_name, strlen(field_name)))\n            continue;\n\n        if (!(str = strtok(NULL, \":\")))\n            continue;\n\n        /* skip blank space in string */\n        while (*str == ' ')\n            str++;\n\n        *(str + strlen(str) - 1) = '\\0';\n        strcpy(value, str);\n\n        return 0;\n    }\n\n    return -1;\n}\n\nstatic int8_t\nread_value_uint32(FILE* fp, const char* field_name, uint32_t* value)\n{\n    char str[MAX_LEN];\n\n    if (read_value_string(fp, field_name, str)) {\n        printf(\"Failed to find integer field: %s\", field_name);\n        return -1;\n    }\n\n    *value = (uint32_t)atoi(str);\n    return 0;\n}\n\nstatic int8_t\nread_value_int16(FILE* fp, const char* field_name, int16_t* value)\n{\n    char str[MAX_LEN];\n\n    if (read_value_string(fp, field_name, str)) {\n        printf(\"Failed to find integer field: %s\", field_name);\n        return -1;\n    }\n\n    *value = (int16_t)atoi(str);\n    return 0;\n}\n\nstatic int8_t\nread_value_uint16(FILE* fp, const char* field_name, uint16_t* value)\n{\n    char str[MAX_LEN];\n\n    if (read_value_string(fp, field_name, str)) {\n        printf(\"Failed to find integer field: %s\", field_name);\n        return -1;\n    }\n\n    *value = (uint16_t)atoi(str);\n    return 0;\n}\n\n\nstatic int8_t\nread_value_float(FILE *fp, const char* field_name, float* value)\n{\n    char str[MAX_LEN];\n    if (read_value_string(fp, field_name, str)) {\n        printf(\"Failed to find float field: %s \\n\", field_name);\n        return -1;\n    }\n\n    *value = atof(str);\n    return 0;\n}\n\n\nstatic VAStatus\ncreate_surface(VASurfaceID * p_surface_id,\n               uint32_t width, uint32_t height,\n               uint32_t fourCC, uint32_t format)\n{\n    VAStatus va_status;\n    VASurfaceAttrib    surface_attrib;\n    surface_attrib.type =  VASurfaceAttribPixelFormat;\n    surface_attrib.flags = VA_SURFACE_ATTRIB_SETTABLE;\n    surface_attrib.value.type = VAGenericValueTypeInteger;\n    surface_attrib.value.value.i = fourCC;\n\n    va_status = vaCreateSurfaces(va_dpy,\n                                 format,\n                                 width,\n                                 height,\n                                 p_surface_id,\n                                 1,\n                                 &surface_attrib,\n                                 1);\n    return va_status;\n}\n\n/* Load yuv frame to NV12/YV12/I420 surface*/\nstatic VAStatus\nupload_yuv_frame_to_yuv_surface(FILE *fp,\n                                VASurfaceID surface_id, uint32_t file_fourcc)\n{\n    VAStatus va_status;\n    VAImage surface_image;\n    unsigned char *y_src = NULL;\n    unsigned char *u_src = NULL;\n    unsigned char *v_src = NULL;\n    unsigned char *y_dst = NULL;\n    unsigned char *u_dst = NULL;\n    unsigned char *v_dst = NULL;\n    void *surface_p = NULL;\n    uint32_t frame_size, row, col;\n    size_t n_items;\n    unsigned char * newImageBuffer = NULL;\n    va_status = vaSyncSurface(va_dpy, surface_id);\n    CHECK_VASTATUS(va_status, \"vaSyncSurface\");\n\n    va_status = vaDeriveImage(va_dpy, surface_id, &surface_image);\n    CHECK_VASTATUS(va_status, \"vaDeriveImage\");\n\n    va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p);\n    CHECK_VASTATUS(va_status, \"vaMapBuffer\");\n\n    if (surface_image.format.fourcc == VA_FOURCC_YV12 ||\n        surface_image.format.fourcc == VA_FOURCC_I420 ||\n        surface_image.format.fourcc == VA_FOURCC_NV12) {\n\n        frame_size = surface_image.width * surface_image.height * 3 / 2;\n        newImageBuffer = (unsigned char*)malloc(frame_size);\n        assert(newImageBuffer);\n\n        do {\n            n_items = fread(newImageBuffer, frame_size, 1, fp);\n        } while (n_items != 1);\n\n        y_src = newImageBuffer;\n        if (file_fourcc == VA_FOURCC_I420) {\n            u_src = newImageBuffer + surface_image.width * surface_image.height;\n            v_src = newImageBuffer + surface_image.width * surface_image.height * 5 / 4;\n        } else if (file_fourcc == VA_FOURCC_YV12) {\n            v_src = newImageBuffer + surface_image.width * surface_image.height;\n            u_src = newImageBuffer + surface_image.width * surface_image.height * 5 / 4;\n        } else if (file_fourcc == VA_FOURCC_NV12) {\n            u_src = newImageBuffer + surface_image.width * surface_image.height;\n            v_src = u_src;\n        } else {\n            printf(\"Not supported YUV fourcc for input file !!!\\n\");\n            free(newImageBuffer);\n            return VA_STATUS_ERROR_INVALID_SURFACE;\n        }\n\n        y_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]);\n\n        if (surface_image.format.fourcc == VA_FOURCC_YV12) {\n            v_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            u_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]);\n        } else if (surface_image.format.fourcc == VA_FOURCC_I420) {\n            u_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            v_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]);\n        } else {\n            u_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            v_dst = u_dst;\n        }\n\n        /* Y plane, directly copy */\n        for (row = 0; row < surface_image.height; row++) {\n            memcpy(y_dst, y_src, surface_image.width);\n            y_dst += surface_image.pitches[0];\n            y_src += surface_image.width;\n        }\n\n        /* UV plane */\n        if (surface_image.format.fourcc == VA_FOURCC_YV12 ||\n            surface_image.format.fourcc == VA_FOURCC_I420) {\n            for (row = 0; row < surface_image.height / 2; row ++) {\n                if (file_fourcc == VA_FOURCC_I420 ||\n                    file_fourcc == VA_FOURCC_YV12) {\n                    memcpy(v_dst, v_src, surface_image.width / 2);\n                    memcpy(u_dst, u_src, surface_image.width / 2);\n\n                    v_src += surface_image.width / 2;\n                    u_src += surface_image.width / 2;\n                } else {\n                    for (col = 0; col < surface_image.width / 2; col++) {\n                        u_dst[col] = u_src[col * 2];\n                        v_dst[col] = u_src[col * 2 + 1];\n                    }\n\n                    u_src += surface_image.width;\n                    v_src = u_src;\n                }\n\n                if (surface_image.format.fourcc == VA_FOURCC_YV12) {\n                    v_dst += surface_image.pitches[1];\n                    u_dst += surface_image.pitches[2];\n                } else {\n                    v_dst += surface_image.pitches[2];\n                    u_dst += surface_image.pitches[1];\n                }\n            }\n        } else if (surface_image.format.fourcc == VA_FOURCC_NV12) {\n            for (row = 0; row < surface_image.height / 2; row++) {\n                if (file_fourcc == VA_FOURCC_I420 ||\n                    file_fourcc == VA_FOURCC_YV12) {\n                    for (col = 0; col < surface_image.width / 2; col++) {\n                        u_dst[col * 2] = u_src[col];\n                        u_dst[col * 2 + 1] = v_src[col];\n                    }\n\n                    u_src += (surface_image.width / 2);\n                    v_src += (surface_image.width / 2);\n                } else {\n                    memcpy(u_dst, u_src, surface_image.width);\n                    u_src += surface_image.width;\n                    v_src = u_src;\n                }\n\n                u_dst += surface_image.pitches[1];\n            }\n        }\n    } else if ((surface_image.format.fourcc == VA_FOURCC_YUY2 &&\n                file_fourcc == VA_FOURCC_YUY2) ||\n               (surface_image.format.fourcc == VA_FOURCC_UYVY &&\n                file_fourcc == VA_FOURCC_UYVY)) {\n        frame_size = surface_image.width * surface_image.height * 2;\n        newImageBuffer = (unsigned char*)malloc(frame_size);\n        assert(newImageBuffer);\n\n        do {\n            n_items = fread(newImageBuffer, frame_size, 1, fp);\n        } while (n_items != 1);\n\n        y_src = newImageBuffer;\n        y_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]);\n\n        /* plane 0, directly copy */\n        for (row = 0; row < surface_image.height; row++) {\n            memcpy(y_dst, y_src, surface_image.width * 2);\n            y_src += surface_image.width * 2;\n            y_dst += surface_image.pitches[0];\n        }\n    } else if ((surface_image.format.fourcc == VA_FOURCC_P010 &&\n                file_fourcc == VA_FOURCC_P010) ||\n               (surface_image.format.fourcc == VA_FOURCC_I010 &&\n                file_fourcc == VA_FOURCC_I010)) {\n        frame_size = surface_image.width * surface_image.height * 3;\n        newImageBuffer = (unsigned char*)malloc(frame_size);\n        assert(newImageBuffer);\n\n        do {\n            n_items = fread(newImageBuffer, frame_size, 1, fp);\n        } while (n_items != 1);\n\n        y_src = newImageBuffer;\n        y_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]);\n\n        /* plane 0, directly copy */\n        for (row = 0; row < surface_image.height; row++) {\n            memcpy(y_dst, y_src, surface_image.width * 2);\n            y_src += surface_image.width * 2;\n            y_dst += surface_image.pitches[0];\n        }\n\n        /* UV plane */\n        if (surface_image.format.fourcc == VA_FOURCC_I010) {\n            assert(file_fourcc == VA_FOURCC_I010);\n\n            u_src = newImageBuffer + surface_image.width * surface_image.height * 2;\n            v_src = newImageBuffer + surface_image.width * surface_image.height * 5 / 2;\n\n            u_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            v_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]);\n\n            for (row = 0; row < surface_image.height / 2; row++) {\n                memcpy(u_dst, u_src, surface_image.width);\n                memcpy(v_dst, v_src, surface_image.width);\n\n                u_src += surface_image.width;\n                v_src += surface_image.width;\n\n                u_dst += surface_image.pitches[1];\n                v_dst += surface_image.pitches[2];\n            }\n        } else if (surface_image.format.fourcc == VA_FOURCC_P010) {\n            assert(file_fourcc == VA_FOURCC_P010);\n\n            u_src = newImageBuffer + surface_image.width * surface_image.height * 2;\n            v_src = u_src;\n\n            u_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            v_dst = u_dst;\n\n            for (row = 0; row < surface_image.height / 2; row++) {\n                memcpy(u_dst, u_src, surface_image.width * 2);\n\n                u_src += surface_image.width * 2;\n                v_src = u_src;\n\n                u_dst += surface_image.pitches[1];\n                v_dst = u_dst;\n            }\n        }\n    }  else if ((surface_image.format.fourcc == VA_FOURCC_RGBA &&\n                 file_fourcc == VA_FOURCC_RGBA) ||\n                (surface_image.format.fourcc == VA_FOURCC_RGBX &&\n                 file_fourcc == VA_FOURCC_RGBX) ||\n                (surface_image.format.fourcc == VA_FOURCC_BGRA &&\n                 file_fourcc == VA_FOURCC_BGRA) ||\n                (surface_image.format.fourcc == VA_FOURCC_BGRX &&\n                 file_fourcc == VA_FOURCC_BGRX) ||\n                (surface_image.format.fourcc == VA_FOURCC_ARGB &&\n                 file_fourcc == VA_FOURCC_ARGB) ||\n                (surface_image.format.fourcc == VA_FOURCC_ABGR &&\n                 file_fourcc == VA_FOURCC_ABGR)) {\n        frame_size = surface_image.width * surface_image.height * 4;\n        newImageBuffer = (unsigned char*)malloc(frame_size);\n        assert(newImageBuffer);\n\n        do {\n            n_items = fread(newImageBuffer, frame_size, 1, fp);\n        } while (n_items != 1);\n\n        y_src = newImageBuffer;\n        y_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]);\n\n        /* plane 0, directly copy */\n        for (row = 0; row < surface_image.height; row++) {\n            memcpy(y_dst, y_src, surface_image.width * 4);\n            y_src += surface_image.width * 4;\n            y_dst += surface_image.pitches[0];\n        }\n    } else {\n        printf(\"Not supported YUV surface fourcc !!! \\n\");\n        return VA_STATUS_ERROR_INVALID_SURFACE;\n    }\n\n    if (newImageBuffer) {\n        free(newImageBuffer);\n        newImageBuffer = NULL;\n    }\n\n    vaUnmapBuffer(va_dpy, surface_image.buf);\n    vaDestroyImage(va_dpy, surface_image.image_id);\n\n    return VA_STATUS_SUCCESS;\n}\n\n/* Store NV12/YV12/I420 surface to yv12 file */\nstatic VAStatus\nstore_yuv_surface_to_yv12_file(FILE *fp,\n                               VASurfaceID surface_id)\n{\n    VAStatus va_status;\n    VAImage surface_image;\n    void *surface_p = NULL;\n    unsigned char *y_src = NULL;\n    unsigned char *u_src = NULL;\n    unsigned char *v_src = NULL;\n    unsigned char *y_dst = NULL;\n    unsigned char *u_dst = NULL;\n    unsigned char *v_dst = NULL;\n    uint32_t row, col;\n    int32_t n_items;\n    unsigned char * newImageBuffer = NULL;\n    va_status = vaSyncSurface(va_dpy, surface_id);\n    CHECK_VASTATUS(va_status, \"vaSyncSurface\");\n\n    va_status = vaDeriveImage(va_dpy, surface_id, &surface_image);\n    CHECK_VASTATUS(va_status, \"vaDeriveImage\");\n\n    va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p);\n    CHECK_VASTATUS(va_status, \"vaMapBuffer\");\n\n    /* store the surface to one YV12 file or one bmp file*/\n    if (surface_image.format.fourcc == VA_FOURCC_YV12 ||\n        surface_image.format.fourcc == VA_FOURCC_I420 ||\n        surface_image.format.fourcc == VA_FOURCC_NV12) {\n\n        uint32_t y_size = surface_image.width * surface_image.height;\n        uint32_t u_size = y_size / 4;\n\n        newImageBuffer = (unsigned char*)malloc(y_size * 3 / 2);\n        assert(newImageBuffer);\n\n        /* stored as YV12 format */\n        y_dst = newImageBuffer;\n        v_dst = newImageBuffer + y_size;\n        u_dst = newImageBuffer + y_size + u_size;\n\n        y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]);\n        if (surface_image.format.fourcc == VA_FOURCC_YV12) {\n            v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]);\n        } else if (surface_image.format.fourcc == VA_FOURCC_I420) {\n            u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]);\n        } else if (surface_image.format.fourcc == VA_FOURCC_NV12) {\n            u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            v_src = u_src;\n        }\n\n        /* Y plane copy */\n        for (row = 0; row < surface_image.height; row++) {\n            memcpy(y_dst, y_src, surface_image.width);\n            y_src += surface_image.pitches[0];\n            y_dst += surface_image.width;\n        }\n\n        /* UV plane copy */\n        if (surface_image.format.fourcc == VA_FOURCC_YV12 ||\n            surface_image.format.fourcc == VA_FOURCC_I420) {\n            for (row = 0; row < surface_image.height / 2; row ++) {\n                memcpy(v_dst, v_src, surface_image.width / 2);\n                memcpy(u_dst, u_src, surface_image.width / 2);\n\n                v_dst += surface_image.width / 2;\n                u_dst += surface_image.width / 2;\n\n                if (surface_image.format.fourcc == VA_FOURCC_YV12) {\n                    v_src += surface_image.pitches[1];\n                    u_src += surface_image.pitches[2];\n                } else {\n                    v_src += surface_image.pitches[2];\n                    u_src += surface_image.pitches[1];\n                }\n            }\n        } else if (surface_image.format.fourcc == VA_FOURCC_NV12) {\n            for (row = 0; row < surface_image.height / 2; row++) {\n                for (col = 0; col < surface_image.width / 2; col++) {\n                    u_dst[col] = u_src[col * 2];\n                    v_dst[col] = u_src[col * 2 + 1];\n                }\n\n                u_src += surface_image.pitches[1];\n                u_dst += (surface_image.width / 2);\n                v_dst += (surface_image.width / 2);\n            }\n        }\n\n        /* write frame to file */\n        do {\n            n_items = fwrite(newImageBuffer, y_size * 3 / 2, 1, fp);\n        } while (n_items != 1);\n\n    } else {\n        printf(\"Not supported YUV surface fourcc !!! \\n\");\n        return VA_STATUS_ERROR_INVALID_SURFACE;\n    }\n\n    if (newImageBuffer) {\n        free(newImageBuffer);\n        newImageBuffer = NULL;\n    }\n\n    vaUnmapBuffer(va_dpy, surface_image.buf);\n    vaDestroyImage(va_dpy, surface_image.image_id);\n\n    return VA_STATUS_SUCCESS;\n}\n\nstatic VAStatus\nstore_yuv_surface_to_i420_file(FILE *fp,\n                               VASurfaceID surface_id)\n{\n    VAStatus va_status;\n    VAImage surface_image;\n    void *surface_p = NULL;\n    unsigned char *y_src = NULL;\n    unsigned char *u_src = NULL;\n    unsigned char *v_src = NULL;\n    unsigned char *y_dst = NULL;\n    unsigned char *u_dst = NULL;\n    unsigned char *v_dst = NULL;\n    uint32_t row, col;\n    int32_t n_items;\n    unsigned char * newImageBuffer = NULL;\n    va_status = vaSyncSurface(va_dpy, surface_id);\n    CHECK_VASTATUS(va_status, \"vaSyncSurface\");\n\n    va_status = vaDeriveImage(va_dpy, surface_id, &surface_image);\n    CHECK_VASTATUS(va_status, \"vaDeriveImage\");\n\n    va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p);\n    CHECK_VASTATUS(va_status, \"vaMapBuffer\");\n\n    /* store the surface to one i420 file */\n    if (surface_image.format.fourcc == VA_FOURCC_YV12 ||\n        surface_image.format.fourcc == VA_FOURCC_I420 ||\n        surface_image.format.fourcc == VA_FOURCC_NV12) {\n\n        uint32_t y_size = surface_image.width * surface_image.height;\n        uint32_t u_size = y_size / 4;\n\n        newImageBuffer = (unsigned char*)malloc(y_size * 3 / 2);\n        assert(newImageBuffer);\n\n        /* stored as YV12 format */\n        y_dst = newImageBuffer;\n        u_dst = newImageBuffer + y_size;\n        v_dst = newImageBuffer + y_size + u_size;\n\n        y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]);\n        if (surface_image.format.fourcc == VA_FOURCC_YV12) {\n            v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]);\n        } else if (surface_image.format.fourcc == VA_FOURCC_I420) {\n            u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]);\n        } else if (surface_image.format.fourcc == VA_FOURCC_NV12) {\n            u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            v_src = u_src;\n        }\n\n        /* Y plane copy */\n        for (row = 0; row < surface_image.height; row++) {\n            memcpy(y_dst, y_src, surface_image.width);\n            y_src += surface_image.pitches[0];\n            y_dst += surface_image.width;\n        }\n\n        /* UV plane copy */\n        if (surface_image.format.fourcc == VA_FOURCC_YV12 ||\n            surface_image.format.fourcc == VA_FOURCC_I420) {\n            for (row = 0; row < surface_image.height / 2; row ++) {\n                memcpy(v_dst, v_src, surface_image.width / 2);\n                memcpy(u_dst, u_src, surface_image.width / 2);\n\n                v_dst += surface_image.width / 2;\n                u_dst += surface_image.width / 2;\n\n                if (surface_image.format.fourcc == VA_FOURCC_YV12) {\n                    v_src += surface_image.pitches[1];\n                    u_src += surface_image.pitches[2];\n                } else {\n                    v_src += surface_image.pitches[2];\n                    u_src += surface_image.pitches[1];\n                }\n            }\n        } else if (surface_image.format.fourcc == VA_FOURCC_NV12) {\n            for (row = 0; row < surface_image.height / 2; row++) {\n                for (col = 0; col < surface_image.width / 2; col++) {\n                    u_dst[col] = u_src[col * 2];\n                    v_dst[col] = u_src[col * 2 + 1];\n                }\n\n                u_src += surface_image.pitches[1];\n                u_dst += (surface_image.width / 2);\n                v_dst += (surface_image.width / 2);\n            }\n        }\n\n        /* write frame to file */\n        do {\n            n_items = fwrite(newImageBuffer, y_size * 3 / 2, 1, fp);\n        } while (n_items != 1);\n\n    } else {\n        printf(\"Not supported YUV surface fourcc !!! \\n\");\n        return VA_STATUS_ERROR_INVALID_SURFACE;\n    }\n\n    if (newImageBuffer) {\n        free(newImageBuffer);\n        newImageBuffer = NULL;\n    }\n\n    vaUnmapBuffer(va_dpy, surface_image.buf);\n    vaDestroyImage(va_dpy, surface_image.image_id);\n\n    return VA_STATUS_SUCCESS;\n}\n\nstatic VAStatus\nstore_yuv_surface_to_nv12_file(FILE *fp,\n                               VASurfaceID surface_id)\n{\n    VAStatus va_status;\n    VAImage surface_image;\n    void *surface_p = NULL;\n    unsigned char *y_src = NULL;\n    unsigned char *u_src = NULL;\n    unsigned char *v_src = NULL;\n    unsigned char *y_dst = NULL;\n    unsigned char *u_dst = NULL;\n    unsigned char *v_dst = NULL;\n    uint32_t row, col;\n    int32_t n_items;\n    unsigned char * newImageBuffer = NULL;\n    va_status = vaSyncSurface(va_dpy, surface_id);\n    CHECK_VASTATUS(va_status, \"vaSyncSurface\");\n\n    va_status = vaDeriveImage(va_dpy, surface_id, &surface_image);\n    CHECK_VASTATUS(va_status, \"vaDeriveImage\");\n\n    va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p);\n    CHECK_VASTATUS(va_status, \"vaMapBuffer\");\n\n    /* store the surface to one nv12 file */\n    if (surface_image.format.fourcc == VA_FOURCC_YV12 ||\n        surface_image.format.fourcc == VA_FOURCC_I420 ||\n        surface_image.format.fourcc == VA_FOURCC_NV12) {\n\n        uint32_t y_size = surface_image.width * surface_image.height;\n\n        newImageBuffer = (unsigned char*)malloc(y_size * 3 / 2);\n        assert(newImageBuffer);\n\n        /* stored as YV12 format */\n        y_dst = newImageBuffer;\n        u_dst = v_dst = newImageBuffer + y_size;\n\n        y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]);\n\n        if (surface_image.format.fourcc == VA_FOURCC_YV12) {\n            v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]);\n        } else if (surface_image.format.fourcc == VA_FOURCC_I420) {\n            u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]);\n        } else if (surface_image.format.fourcc == VA_FOURCC_NV12) {\n            u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            v_src = u_src;\n        }\n\n        /* Y plane copy */\n        for (row = 0; row < surface_image.height; row++) {\n            memcpy(y_dst, y_src, surface_image.width);\n            y_src += surface_image.pitches[0];\n            y_dst += surface_image.width;\n        }\n\n        /* UV plane copy */\n        if (surface_image.format.fourcc == VA_FOURCC_YV12 ||\n            surface_image.format.fourcc == VA_FOURCC_I420) {\n            for (row = 0; row < surface_image.height / 2; row ++) {\n                for (col = 0; col < surface_image.width / 2; col++) {\n                    u_dst[col * 2] = u_src[col];\n                    u_dst[col * 2 + 1] = v_src[col];\n                }\n\n                u_dst += surface_image.width;\n\n                if (surface_image.format.fourcc == VA_FOURCC_YV12) {\n                    v_src += surface_image.pitches[1];\n                    u_src += surface_image.pitches[2];\n                } else {\n                    v_src += surface_image.pitches[2];\n                    u_src += surface_image.pitches[1];\n                }\n            }\n        } else if (surface_image.format.fourcc == VA_FOURCC_NV12) {\n            for (row = 0; row < surface_image.height / 2; row++) {\n                memcpy(u_dst, u_src, surface_image.width);\n                u_dst += surface_image.width;\n                u_src += surface_image.pitches[1];\n            }\n        }\n\n        /* write frame to file */\n        do {\n            n_items = fwrite(newImageBuffer, y_size * 3 / 2, 1, fp);\n        } while (n_items != 1);\n\n    } else {\n        printf(\"Not supported YUV surface fourcc !!! \\n\");\n        return VA_STATUS_ERROR_INVALID_SURFACE;\n    }\n\n    if (newImageBuffer) {\n        free(newImageBuffer);\n        newImageBuffer = NULL;\n    }\n\n    vaUnmapBuffer(va_dpy, surface_image.buf);\n    vaDestroyImage(va_dpy, surface_image.image_id);\n\n    return VA_STATUS_SUCCESS;\n}\n\nstatic VAStatus\nstore_packed_yuv_surface_to_packed_file(FILE *fp,\n                                        VASurfaceID surface_id)\n{\n    VAStatus va_status;\n    VAImage surface_image;\n    void *surface_p = NULL;\n    unsigned char *y_src = NULL;\n    unsigned char *y_dst = NULL;\n    uint32_t row;\n    int32_t n_items;\n    unsigned char * newImageBuffer = NULL;\n    va_status = vaSyncSurface(va_dpy, surface_id);\n    CHECK_VASTATUS(va_status, \"vaSyncSurface\");\n\n    va_status = vaDeriveImage(va_dpy, surface_id, &surface_image);\n    CHECK_VASTATUS(va_status, \"vaDeriveImage\");\n\n    va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p);\n    CHECK_VASTATUS(va_status, \"vaMapBuffer\");\n\n    /* store the surface to one YUY2 or UYVY file */\n    if (surface_image.format.fourcc == VA_FOURCC_YUY2 ||\n        surface_image.format.fourcc == VA_FOURCC_UYVY) {\n        uint32_t frame_size = surface_image.width * surface_image.height * 2;\n\n        newImageBuffer = (unsigned char*)malloc(frame_size);\n        assert(newImageBuffer);\n        memset(newImageBuffer, 0, frame_size);\n\n        /* stored as YUY2 or UYVY format */\n        y_dst = newImageBuffer;\n\n        y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]);\n\n        /* Plane 0 copy */\n        for (row = 0; row < surface_image.height; row++) {\n            memcpy(y_dst, y_src, surface_image.width * 2);\n            y_src += surface_image.pitches[0];\n            y_dst += surface_image.width * 2;\n        }\n\n        /* write frame to file */\n        do {\n            n_items = fwrite(newImageBuffer, frame_size, 1, fp);\n        } while (n_items != 1);\n\n    } else {\n        printf(\"Not supported YUV surface fourcc !!! \\n\");\n        return VA_STATUS_ERROR_INVALID_SURFACE;\n    }\n\n    if (newImageBuffer) {\n        free(newImageBuffer);\n        newImageBuffer = NULL;\n    }\n\n    vaUnmapBuffer(va_dpy, surface_image.buf);\n    vaDestroyImage(va_dpy, surface_image.image_id);\n\n    return VA_STATUS_SUCCESS;\n}\n\nstatic VAStatus\nstore_yuv_surface_to_10bit_file(FILE *fp, VASurfaceID surface_id)\n{\n    VAStatus va_status;\n    VAImage surface_image;\n    void *surface_p = NULL;\n    unsigned char *y_src = NULL;\n    unsigned char *u_src = NULL;\n    unsigned char *v_src = NULL;\n    unsigned char *y_dst = NULL;\n    unsigned char *u_dst = NULL;\n    unsigned char *v_dst = NULL;\n    uint32_t row;\n    int32_t n_items;\n    unsigned char * newImageBuffer = NULL;\n    va_status = vaSyncSurface(va_dpy, surface_id);\n    CHECK_VASTATUS(va_status, \"vaSyncSurface\");\n\n    va_status = vaDeriveImage(va_dpy, surface_id, &surface_image);\n    CHECK_VASTATUS(va_status, \"vaDeriveImage\");\n\n    va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p);\n    CHECK_VASTATUS(va_status, \"vaMapBuffer\");\n\n    /* store the surface to one 10bit file */\n    uint32_t y_size = surface_image.width * surface_image.height * 2;\n    uint32_t u_size = y_size / 4;\n\n    newImageBuffer = (unsigned char*)malloc(y_size * 3);\n    assert(newImageBuffer);\n    y_dst = newImageBuffer;\n\n    y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]);\n\n    /* Y plane copy */\n    for (row = 0; row < surface_image.height; row++) {\n        memcpy(y_dst, y_src, surface_image.width * 2);\n        y_src += surface_image.pitches[0];\n        y_dst += surface_image.width * 2;\n    }\n\n    if (surface_image.format.fourcc == VA_FOURCC_I010) {\n        u_dst = newImageBuffer + y_size;\n        v_dst = newImageBuffer + y_size + u_size;\n\n        u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n        v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]);\n\n        for (row = 0; row < surface_image.height / 2; row++) {\n            memcpy(u_dst, u_src, surface_image.width);\n            memcpy(v_dst, v_src, surface_image.width);\n\n            u_dst += surface_image.width;\n            v_dst += surface_image.width;\n\n            u_src += surface_image.pitches[1];\n            v_src += surface_image.pitches[2];\n        }\n    } else if (surface_image.format.fourcc == VA_FOURCC_P010) {\n        u_dst = newImageBuffer + y_size;\n        v_dst = u_dst;\n\n        u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n        v_src = u_src;\n\n        for (row = 0; row < surface_image.height / 2; row++) {\n            memcpy(u_dst, u_src, surface_image.width * 2);\n            u_dst += surface_image.width * 2;\n            u_src += surface_image.pitches[1];\n        }\n    } else {\n        printf(\"Not supported YUV surface fourcc !!! \\n\");\n        free(newImageBuffer);\n        return VA_STATUS_ERROR_INVALID_SURFACE;\n    }\n\n    /* write frame to file */\n    do {\n        n_items = fwrite(newImageBuffer, y_size * 3 / 2, 1, fp);\n    } while (n_items != 1);\n\n    if (newImageBuffer) {\n        free(newImageBuffer);\n        newImageBuffer = NULL;\n    }\n\n    vaUnmapBuffer(va_dpy, surface_image.buf);\n    vaDestroyImage(va_dpy, surface_image.image_id);\n\n    return VA_STATUS_SUCCESS;\n}\n\nstatic VAStatus\nstore_rgb_surface_to_rgb_file(FILE *fp, VASurfaceID surface_id)\n{\n    VAStatus va_status;\n    VAImage surface_image;\n    void *surface_p = NULL;\n    unsigned char *y_src = NULL;\n    unsigned char *y_dst = NULL;\n    uint32_t frame_size, row;\n    int32_t n_items;\n    unsigned char * newImageBuffer = NULL;\n    va_status = vaSyncSurface(va_dpy, surface_id);\n    CHECK_VASTATUS(va_status, \"vaSyncSurface\");\n\n    va_status = vaDeriveImage(va_dpy, surface_id, &surface_image);\n    CHECK_VASTATUS(va_status, \"vaDeriveImage\");\n\n    va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p);\n    CHECK_VASTATUS(va_status, \"vaMapBuffer\");\n\n    frame_size = surface_image.width * surface_image.height * 4;\n    newImageBuffer = (unsigned char*)malloc(frame_size);\n    assert(newImageBuffer);\n    y_dst = newImageBuffer;\n\n    y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]);\n\n    for (row = 0; row < surface_image.height; row++) {\n        memcpy(y_dst, y_src, surface_image.width * 4);\n        y_src += surface_image.pitches[0];\n        y_dst += surface_image.width * 4;\n    }\n\n    /* write frame to file */\n    do {\n        n_items = fwrite(newImageBuffer, frame_size, 1, fp);\n    } while (n_items != 1);\n\n    if (newImageBuffer) {\n        free(newImageBuffer);\n        newImageBuffer = NULL;\n    }\n\n    vaUnmapBuffer(va_dpy, surface_image.buf);\n    vaDestroyImage(va_dpy, surface_image.image_id);\n\n    return VA_STATUS_SUCCESS;\n}\n\nstatic VAStatus\nstore_yuv_surface_to_file(FILE *fp,\n                          VASurfaceID surface_id)\n{\n    if (g_out_fourcc == VA_FOURCC_YV12 ||\n        g_out_fourcc == VA_FOURCC_I420 ||\n        g_out_fourcc == VA_FOURCC_NV12) {\n        if (g_dst_file_fourcc == VA_FOURCC_YV12)\n            return store_yuv_surface_to_yv12_file(fp, surface_id);\n        else if (g_dst_file_fourcc == VA_FOURCC_I420)\n            return store_yuv_surface_to_i420_file(fp, surface_id);\n        else if (g_dst_file_fourcc == VA_FOURCC_NV12)\n            return store_yuv_surface_to_nv12_file(fp, surface_id);\n        else {\n            printf(\"Not supported YUV fourcc for output !!!\\n\");\n            return VA_STATUS_ERROR_INVALID_SURFACE;\n        }\n    } else if ((g_out_fourcc == VA_FOURCC_YUY2 &&\n                g_dst_file_fourcc == VA_FOURCC_YUY2) ||\n               (g_out_fourcc == VA_FOURCC_UYVY &&\n                g_dst_file_fourcc == VA_FOURCC_UYVY)) {\n        return store_packed_yuv_surface_to_packed_file(fp, surface_id);\n    } else if ((g_out_fourcc == VA_FOURCC_I010 &&\n                g_dst_file_fourcc == VA_FOURCC_I010) ||\n               (g_out_fourcc == VA_FOURCC_P010 &&\n                g_dst_file_fourcc == VA_FOURCC_P010)) {\n        return store_yuv_surface_to_10bit_file(fp, surface_id);\n    } else if ((g_out_fourcc == VA_FOURCC_RGBA &&\n                g_dst_file_fourcc == VA_FOURCC_RGBA) ||\n               (g_out_fourcc == VA_FOURCC_RGBX &&\n                g_dst_file_fourcc == VA_FOURCC_RGBX) ||\n               (g_out_fourcc == VA_FOURCC_RGBA &&\n                g_dst_file_fourcc == VA_FOURCC_BGRA) ||\n               (g_out_fourcc == VA_FOURCC_BGRX &&\n                g_dst_file_fourcc == VA_FOURCC_BGRX) ||\n               (g_out_fourcc == VA_FOURCC_ARGB &&\n                g_dst_file_fourcc == VA_FOURCC_ARGB) ||\n               (g_out_fourcc == VA_FOURCC_ABGR &&\n                g_dst_file_fourcc == VA_FOURCC_ABGR)) {\n        return store_rgb_surface_to_rgb_file(fp, surface_id);\n    } else {\n        printf(\"Not supported YUV fourcc for output !!!\\n\");\n        return VA_STATUS_ERROR_INVALID_SURFACE;\n    }\n}\n\nstatic VAStatus\nvideo_frame_process()\n{\n    VAStatus va_status;\n    uint32_t i;\n    std::vector<VABufferID> pipeline_param_buf_ids;\n    pipeline_param_buf_ids.resize(g_src_count);\n    for (i = 0; i < g_src_count; i++) {\n        VAProcPipelineParameterBuffer pipeline_param;\n        memset(&pipeline_param, 0, sizeof(pipeline_param));\n\n        /* Fill pipeline buffer */\n        char CropLeftX[MAX_LEN];\n        char CropTopY[MAX_LEN];\n        char CropWidth[MAX_LEN];\n        char CropHeight[MAX_LEN];\n        sprintf(CropLeftX, \"SRC_CROP_LEFT_X_%d\", i + 1);\n        sprintf(CropTopY, \"SRC_CROP_TOP_Y_%d\", i + 1);\n        sprintf(CropWidth, \"SRC_CROP_WIDTH_%d\", i + 1);\n        sprintf(CropHeight, \"SRC_CROP_HEIGHT_%d\", i + 1);\n        read_value_int16(g_config_file_fd, CropLeftX, &g_src_info[i].region_in.x);\n        read_value_int16(g_config_file_fd, CropTopY, &g_src_info[i].region_in.y);\n        read_value_uint16(g_config_file_fd, CropWidth, &g_src_info[i].region_in.width);\n        read_value_uint16(g_config_file_fd, CropHeight, &g_src_info[i].region_in.height);\n        if (g_src_info[i].region_in.width == 0)\n            g_src_info[i].region_in.width = g_src_info[i].yuv_frame_in_width;\n        if (g_src_info[i].region_in.height == 0)\n            g_src_info[i].region_in.height = g_src_info[i].yuv_frame_in_height;\n        char DstLeftX[MAX_LEN];\n        char DstTopY[MAX_LEN];\n        char DstWidth[MAX_LEN];\n        char DstHeight[MAX_LEN];\n        sprintf(DstLeftX, \"SRC_DstLeftX_%d\", i + 1);\n        sprintf(DstTopY, \"SRC_DstTopY_%d\", i + 1);\n        sprintf(DstWidth, \"SRC_DstWidth_%d\", i + 1);\n        sprintf(DstHeight, \"SRC_DstHeight_%d\", i + 1);\n        read_value_int16(g_config_file_fd, DstLeftX, &g_src_info[i].region_out.x);\n        read_value_int16(g_config_file_fd, DstTopY, &g_src_info[i].region_out.y);\n        read_value_uint16(g_config_file_fd, DstWidth, &g_src_info[i].region_out.width);\n        read_value_uint16(g_config_file_fd, DstHeight, &g_src_info[i].region_out.height);\n        if (g_src_info[i].region_out.width == 0)\n            g_src_info[i].region_out.width = g_src_info[i].yuv_frame_in_width;\n        if (g_src_info[i].region_out.height == 0)\n            g_src_info[i].region_out.height = g_src_info[i].yuv_frame_in_height;\n\n        if (i > 0) {\n            uint32_t        composition_blend_flags = 0;\n            float           composition_alpha = 0;\n            float           compositionLumaMin = 0.0;\n            float           compositionLumaMax = 1.0;\n            char BlendFlagsName[MAX_LEN];\n            char AlphaName[MAX_LEN];\n            char LumaMinName[MAX_LEN];\n            char LumaMaxName[MAX_LEN];\n            sprintf(BlendFlagsName, \"SRC_CompositionBlendFlags_%d\", i + 1);\n            sprintf(AlphaName, \"SRC_CompositionAlpha_%d\", i + 1);\n            sprintf(LumaMinName, \"SRC_compositionLumaMin_%d\", i + 1);\n            sprintf(LumaMaxName, \"SRC_compositionLumaMax_%d\", i + 1);\n            read_value_uint32(g_config_file_fd, BlendFlagsName, &composition_blend_flags);\n            read_value_float(g_config_file_fd, AlphaName, &composition_alpha);\n            read_value_float(g_config_file_fd, LumaMinName, &compositionLumaMin);\n            read_value_float(g_config_file_fd, LumaMaxName, &compositionLumaMax);\n            if (composition_blend_flags & 0x1)\n                g_src_info[i].blend_state.flags |= VA_BLEND_GLOBAL_ALPHA;\n            if (composition_blend_flags & 0x2)\n                g_src_info[i].blend_state.flags |= VA_BLEND_PREMULTIPLIED_ALPHA;\n            if (composition_blend_flags & 0x4)\n                g_src_info[i].blend_state.flags |= VA_BLEND_LUMA_KEY;\n            g_src_info[i].blend_state.global_alpha = composition_alpha;\n            g_src_info[i].blend_state.min_luma = compositionLumaMin;\n            g_src_info[i].blend_state.max_luma = compositionLumaMax;\n            pipeline_param.blend_state = &g_src_info[i].blend_state;\n\n        }\n\n        if (g_src_count > 1) {\n            pipeline_param.pipeline_flags |= VA_PROC_PIPELINE_FAST;//for showing all sub-layers\n            pipeline_param.filter_flags |= VA_FILTER_SCALING_FAST; //for showing background color\n        }\n        pipeline_param.surface = g_in_surface_ids[i];\n        pipeline_param.surface_region = &g_src_info[i].region_in;\n        pipeline_param.output_region = &g_src_info[i].region_out;\n        pipeline_param.surface_color_standard = VAProcColorStandardBT601;\n        pipeline_param.output_color_standard = VAProcColorStandardBT601;\n\n        va_status = vaCreateBuffer(va_dpy,\n                                   context_id,\n                                   VAProcPipelineParameterBufferType,\n                                   sizeof(pipeline_param),\n                                   1,\n                                   &pipeline_param,\n                                   &pipeline_param_buf_ids[i]);\n        CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n    }\n    printf(\"\\nStart to process 1 frame, ...\\n\");\n    struct timespec Pre_time;\n    struct timespec Cur_time;\n    uint32_t duration = 0;\n    clock_gettime(CLOCK_MONOTONIC, &Pre_time);\n    va_status = vaBeginPicture(va_dpy,\n                               context_id,\n                               g_out_surface_id);\n    CHECK_VASTATUS(va_status, \"vaBeginPicture\");\n\n    va_status = vaRenderPicture(va_dpy,\n                                context_id,\n                                &pipeline_param_buf_ids[0],\n                                g_src_count);\n    CHECK_VASTATUS(va_status, \"vaRenderPicture\");\n\n    va_status = vaEndPicture(va_dpy, context_id);\n    CHECK_VASTATUS(va_status, \"vaEndPicture\");\n    clock_gettime(CLOCK_MONOTONIC, &Cur_time);\n    duration = (Cur_time.tv_sec - Pre_time.tv_sec) * 1000000;\n    if (Cur_time.tv_nsec > Pre_time.tv_nsec) {\n        duration += (Cur_time.tv_nsec - Pre_time.tv_nsec) / 1000;\n    } else {\n        duration += (Cur_time.tv_nsec + 1000000000 - Pre_time.tv_nsec) / 1000 - 1000000;\n    }\n\n    printf(\"Finish processing, 1 frame processed in: %d us\\n\", duration);\n    g_total_time += duration;\n\n    for (i = 0; i < g_src_count; i++) {\n        if (pipeline_param_buf_ids[i] != VA_INVALID_ID)\n            vaDestroyBuffer(va_dpy, pipeline_param_buf_ids[i]);\n    }\n    return va_status;\n}\n\nstatic VAStatus\nvpp_context_create()\n{\n    VAStatus va_status = VA_STATUS_SUCCESS;\n    int32_t j;\n\n    /* VA driver initialization */\n    va_dpy = va_open_display();\n    int32_t major_ver, minor_ver;\n    va_status = vaInitialize(va_dpy, &major_ver, &minor_ver);\n    assert(va_status == VA_STATUS_SUCCESS);\n\n    /* Check whether VPP is supported by driver */\n    VAEntrypoint entrypoints[5];\n    int32_t num_entrypoints;\n    num_entrypoints = vaMaxNumEntrypoints(va_dpy);\n    va_status = vaQueryConfigEntrypoints(va_dpy,\n                                         VAProfileNone,\n                                         entrypoints,\n                                         &num_entrypoints);\n    CHECK_VASTATUS(va_status, \"vaQueryConfigEntrypoints\");\n\n    for (j = 0; j < num_entrypoints; j++) {\n        if (entrypoints[j] == VAEntrypointVideoProc)\n            break;\n    }\n\n    if (j == num_entrypoints) {\n        printf(\"VPP is not supported by driver\\n\");\n        assert(0);\n    }\n\n    /* Render target surface format check */\n    VAConfigAttrib attrib;\n    attrib.type = VAConfigAttribRTFormat;\n    va_status = vaGetConfigAttributes(va_dpy,\n                                      VAProfileNone,\n                                      VAEntrypointVideoProc,\n                                      &attrib,\n                                      1);\n    CHECK_VASTATUS(va_status, \"vaGetConfigAttributes\");\n    /* Create surface/config/context for VPP pipeline */\n    for (uint32_t i = 0; i < g_src_count; i++) {\n        va_status = create_surface(&g_in_surface_ids[i], g_src_info[i].yuv_frame_in_width, g_src_info[i].yuv_frame_in_height,\n                                   g_src_info[i].src_format, g_src_info[i].rt_format);\n        CHECK_VASTATUS(va_status, \"vaCreateSurfaces for input\");\n    }\n    va_status = create_surface(&g_out_surface_id, g_out_pic_width, g_out_pic_height,\n                               g_out_fourcc, g_out_format);\n    CHECK_VASTATUS(va_status, \"vaCreateSurfaces for output\");\n\n    va_status = vaCreateConfig(va_dpy,\n                               VAProfileNone,\n                               VAEntrypointVideoProc,\n                               &attrib,\n                               1,\n                               &config_id);\n    CHECK_VASTATUS(va_status, \"vaCreateConfig\");\n\n    va_status = vaCreateContext(va_dpy,\n                                config_id,\n                                g_out_pic_width,\n                                g_out_pic_height,\n                                VA_PROGRESSIVE,\n                                &g_out_surface_id,\n                                1,\n                                &context_id);\n    CHECK_VASTATUS(va_status, \"vaCreateContext\");\n    return va_status;\n}\n\nstatic void\nvpp_context_destroy()\n{\n    /* Release resource */\n    for (uint32_t j = 0; j < g_src_count; j++) {\n        if (g_in_surface_ids[j] != VA_INVALID_SURFACE)\n            vaDestroySurfaces(va_dpy, &g_in_surface_ids[j], 1);\n    }\n    if (g_out_surface_id != VA_INVALID_SURFACE)\n        vaDestroySurfaces(va_dpy, &g_out_surface_id, 1);\n    vaDestroyContext(va_dpy, context_id);\n    vaDestroyConfig(va_dpy, config_id);\n\n    vaTerminate(va_dpy);\n    va_close_display(va_dpy);\n}\n\nstatic int8_t\nparse_fourcc_and_format(char *str, uint32_t *fourcc, uint32_t *format)\n{\n    uint32_t tfourcc = VA_FOURCC('N', 'V', '1', '2');\n    uint32_t tformat = VA_RT_FORMAT_YUV420;\n\n    if (!strcmp(str, \"YV12\")) {\n        tfourcc = VA_FOURCC('Y', 'V', '1', '2');\n    } else if (!strcmp(str, \"I420\")) {\n        tfourcc = VA_FOURCC('I', '4', '2', '0');\n    } else if (!strcmp(str, \"NV12\")) {\n        tfourcc = VA_FOURCC('N', 'V', '1', '2');\n    } else if (!strcmp(str, \"YUY2\") || !strcmp(str, \"YUYV\")) {\n        tfourcc = VA_FOURCC('Y', 'U', 'Y', '2');\n    } else if (!strcmp(str, \"UYVY\")) {\n        tfourcc = VA_FOURCC('U', 'Y', 'V', 'Y');\n    } else if (!strcmp(str, \"P010\")) {\n        tfourcc = VA_FOURCC('P', '0', '1', '0');\n    } else if (!strcmp(str, \"I010\")) {\n        tfourcc = VA_FOURCC('I', '0', '1', '0');\n    } else if (!strcmp(str, \"RGBA\")) {\n        tfourcc = VA_FOURCC_RGBA;\n    } else if (!strcmp(str, \"RGBX\")) {\n        tfourcc = VA_FOURCC_RGBX;\n    } else if (!strcmp(str, \"BGRA\")) {\n        tfourcc = VA_FOURCC_BGRA;\n    } else if (!strcmp(str, \"BGRX\")) {\n        tfourcc = VA_FOURCC_BGRX;\n    } else if (!strcmp(str, \"ARGB\")) {\n        tfourcc = VA_FOURCC_ARGB;\n    } else if (!strcmp(str, \"A2B10G10R10\")) {\n        tfourcc = VA_FOURCC_ABGR;\n        tformat = VA_RT_FORMAT_RGB32_10BPP;\n    } else {\n        printf(\"Not supported format: %s! Currently only support following format: %s\\n\",\n               str, \"YV12, I420, NV12, YUY2(YUYV), UYVY, P010, I010, RGBA, RGBX, BGRA ,BGRX or ARGB,A2B10G10R10\");\n        assert(0);\n    }\n\n    if (fourcc)\n        *fourcc = tfourcc;\n\n    if (format)\n        *format = tformat;\n\n    return 0;\n}\n\nstatic int8_t\nparse_basic_parameters()\n{\n    char str[MAX_LEN];\n    read_value_uint32(g_config_file_fd, \"SRC_NUMBER\", &g_src_count);\n    g_src_info.resize(g_src_count);\n    g_in_surface_ids.resize(g_src_count);\n    g_src_file_fds.resize(g_src_count);\n    /* Read src frame file information */\n    for (uint32_t i = 0; i < g_src_count; i++) {\n        char file_name[MAX_LEN];\n        char src_frame_width[MAX_LEN];\n        char src_frame_height[MAX_LEN];\n        char src_frame_format[MAX_LEN];\n        char src_file_format[MAX_LEN];\n\n        sprintf(file_name, \"SRC_FILE_NAME_%d\", i + 1);\n        sprintf(src_frame_width, \"SRC_FRAME_WIDTH_%d\", i + 1);\n        sprintf(src_frame_height, \"SRC_FRAME_HEIGHT_%d\", i + 1);\n        sprintf(src_frame_format, \"SRC_FRAME_FORMAT_%d\", i + 1);\n        sprintf(src_file_format, \"SRC_FILE_FORMAT_%d\", i + 1);\n\n        read_value_string(g_config_file_fd, file_name, g_src_info[i].src_file_name);\n        read_value_uint32(g_config_file_fd, src_frame_width, &g_src_info[i].yuv_frame_in_width);\n        read_value_uint32(g_config_file_fd, src_frame_height, &g_src_info[i].yuv_frame_in_height);\n        read_value_string(g_config_file_fd, src_frame_format, str);\n        parse_fourcc_and_format(str, &g_src_info[i].src_format, &g_src_info[i].rt_format);\n        read_value_string(g_config_file_fd, src_file_format, str);\n        parse_fourcc_and_format(str, &g_src_info[i].file_fourcc, NULL);\n\n    }\n    /* Read dst frame file information */\n    read_value_string(g_config_file_fd, \"DST_FILE_NAME\", g_dst_file_name);\n    read_value_uint32(g_config_file_fd, \"DST_FRAME_WIDTH\", &g_out_pic_width);\n    read_value_uint32(g_config_file_fd, \"DST_FRAME_HEIGHT\", &g_out_pic_height);\n    read_value_string(g_config_file_fd, \"DST_FRAME_FORMAT\", str);\n    parse_fourcc_and_format(str, &g_out_fourcc, &g_out_format);\n\n\n    read_value_string(g_config_file_fd, \"DST_FILE_FORMAT\", str);\n    parse_fourcc_and_format(str, &g_dst_file_fourcc, NULL);\n\n    read_value_uint32(g_config_file_fd, \"FRAME_SUM\", &g_frame_count);\n    return 0;\n}\n\nstatic void\nprint_help()\n{\n    printf(\"The app is used to test the blending feature.\\n\");\n    printf(\"Cmd Usage: ./vppblending process_blending.cfg\\n\");\n    printf(\"The configure file process_blending.cfg is used to configure the para.\\n\");\n    printf(\"You can refer process_blending.cfg.template for each para meaning and create the configure file.\\n\");\n}\nint32_t main(int32_t argc, char *argv[])\n{\n    VAStatus va_status;\n    uint32_t i;\n\n    if (argc != 2 || !strcmp(argv[1], \"-h\") || !strcmp(argv[1], \"--help\")) {\n        print_help();\n        return -1;\n    }\n\n    /* Parse the configure file for video process*/\n    strncpy(g_config_file_name, argv[1], MAX_LEN);\n    g_config_file_name[MAX_LEN - 1] = '\\0';\n\n    if (NULL == (g_config_file_fd = fopen(g_config_file_name, \"r\"))) {\n        printf(\"Open configure file %s failed!\\n\", g_config_file_name);\n        assert(0);\n    }\n\n    /* Parse basic parameters */\n    if (parse_basic_parameters()) {\n        printf(\"Parse parameters in configure file error\\n\");\n        assert(0);\n    }\n\n    va_status = vpp_context_create();\n    if (va_status != VA_STATUS_SUCCESS) {\n        printf(\"vpp context create failed \\n\");\n        assert(0);\n    }\n\n    /* Video frame fetch, process and store */\n    for (i = 0; i < g_src_count; i++) {\n        if (NULL == (g_src_file_fds[i] = fopen(g_src_info[i].src_file_name, \"r\"))) {\n            printf(\"Open SRC_FILE_NAME: %s failed, please specify it in config file: %s !\\n\",\n                   g_src_info[i].src_file_name, g_config_file_name);\n            assert(0);\n        }\n    }\n    if (NULL == (g_dst_file_fd = fopen(g_dst_file_name, \"w\"))) {\n        printf(\"Open DST_FILE_NAME: %s failed, please specify it in config file: %s !\\n\",\n               g_dst_file_name, g_config_file_name);\n        assert(0);\n    }\n\n    for (i = 0; i < g_frame_count; i ++) {\n        for (unsigned int j = 0; j < g_src_count; j++) {\n            upload_yuv_frame_to_yuv_surface(g_src_file_fds[j], g_in_surface_ids[j], g_src_info[j].file_fourcc);\n        }\n        video_frame_process();\n        store_yuv_surface_to_file(g_dst_file_fd, g_out_surface_id);\n    }\n    printf(\"Finish processing, performance: %d frames processed in: %d us, ave time = %d us\\n\", g_frame_count, g_total_time, g_total_time / g_frame_count);\n    for (i = 0; i < g_src_count; i++) {\n        if (g_src_file_fds[i] != NULL)\n            fclose(g_src_file_fds[i]);\n    }\n    if (g_dst_file_fd != NULL)\n        fclose(g_dst_file_fd);\n\n    if (g_config_file_fd != NULL)\n        fclose(g_config_file_fd);\n\n    vpp_context_destroy();\n\n    return 0;\n}\n"
  },
  {
    "path": "videoprocess/vppchromasitting.cpp",
    "content": "/*\n* Copyright (c) 2009-2018, Intel Corporation\n*\n* Permission is hereby granted, free of charge, to any person obtaining a\n* copy of this software and associated documentation files (the \"Software\"),\n* to deal in the Software without restriction, including without limitation\n* the rights to use, copy, modify, merge, publish, distribute, sublicense,\n* and/or sell copies of the Software, and to permit persons to whom the\n* Software is furnished to do so, subject to the following conditions:\n*\n* The above copyright notice and this permission notice shall be included\n* in all copies or substantial portions of the Software.\n*\n* THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR\n* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,\n* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\n* OTHER DEALINGS IN THE SOFTWARE.\n*/\n/*\n * Video process test case based on LibVA.\n * This test covers chromasitting feature.\n * Usage: ./vppchromasitting process_chromasitting.cfg\n */\n\n#include <stdio.h>\n#include <stdlib.h>\n#include <string.h>\n#include <stdint.h>\n#include <time.h>\n#include <assert.h>\n#include <va/va.h>\n#include <va/va_vpp.h>\n#include \"va_display.h\"\n\n#ifndef VA_FOURCC_I420\n#define VA_FOURCC_I420 0x30323449\n#endif\n\n#define MAX_LEN   1024\n\n#define CHECK_VASTATUS(va_status,func)                                      \\\n  if (va_status != VA_STATUS_SUCCESS) {                                     \\\n      fprintf(stderr,\"%s:%s (%d) failed,exit\\n\", __func__, func, __LINE__); \\\n      exit(1);                                                              \\\n  }\n\nstatic VADisplay va_dpy = NULL;\nstatic VAContextID context_id = 0;\nstatic VAConfigID  config_id = 0;\nstatic VASurfaceID g_in_surface_id = VA_INVALID_ID;\nstatic VASurfaceID g_out_surface_id = VA_INVALID_ID;\n\nstatic FILE* g_config_file_fd = NULL;\nstatic FILE* g_src_file_fd = NULL;\nstatic FILE* g_dst_file_fd = NULL;\n\nstatic char g_config_file_name[MAX_LEN];\nstatic char g_src_file_name[MAX_LEN];\nstatic char g_dst_file_name[MAX_LEN];\n\nstatic uint32_t g_in_pic_width = 352;\nstatic uint32_t g_in_pic_height = 288;\nstatic uint32_t g_out_pic_width = 352;\nstatic uint32_t g_out_pic_height = 288;\n\nstatic uint32_t g_in_fourcc  = VA_FOURCC('N', 'V', '1', '2');\nstatic uint32_t g_in_format  = VA_RT_FORMAT_YUV420;\nstatic uint32_t g_out_fourcc = VA_FOURCC('N', 'V', '1', '2');\nstatic uint32_t g_out_format = VA_RT_FORMAT_YUV420;\nstatic uint32_t g_src_file_fourcc = VA_FOURCC('I', '4', '2', '0');\nstatic uint32_t g_dst_file_fourcc = VA_FOURCC('Y', 'V', '1', '2');\n\nstatic uint32_t g_frame_count = 0;\n\nstatic int8_t\nread_value_string(FILE *fp, const char* field_name, char* value)\n{\n    char strLine[MAX_LEN];\n    char* field = NULL;\n    char* str = NULL;\n    uint16_t i;\n\n    if (!fp || !field_name || !value)  {\n        printf(\"Invalid fuction parameters\\n\");\n        return -1;\n    }\n\n    rewind(fp);\n\n    while (!feof(fp)) {\n        if (!fgets(strLine, MAX_LEN, fp))\n            continue;\n\n        for (i = 0; i < MAX_LEN && strLine[i]; i++)\n            if (strLine[i] != ' ') break;\n\n        if (i == MAX_LEN || strLine[i] == '#' || strLine[i] == '\\n')\n            continue;\n\n        field = strtok(&strLine[i], \":\");\n        if (strncmp(field, field_name, strlen(field_name)))\n            continue;\n\n        if (!(str = strtok(NULL, \":\")))\n            continue;\n\n        /* skip blank space in string */\n        while (*str == ' ')\n            str++;\n\n        *(str + strlen(str) - 1) = '\\0';\n        strcpy(value, str);\n\n        return 0;\n    }\n\n    return -1;\n}\n\nstatic int8_t\nread_value_uint32(FILE* fp, const char* field_name, uint32_t* value)\n{\n    char str[MAX_LEN];\n\n    if (read_value_string(fp, field_name, str)) {\n        printf(\"Failed to find integer field: %s\", field_name);\n        return -1;\n    }\n\n    *value = (uint32_t)atoi(str);\n    return 0;\n}\n\nstatic VAStatus\ncreate_surface(VASurfaceID * p_surface_id,\n               uint32_t width, uint32_t height,\n               uint32_t fourCC, uint32_t format)\n{\n    VAStatus va_status;\n    VASurfaceAttrib    surface_attrib;\n    surface_attrib.type =  VASurfaceAttribPixelFormat;\n    surface_attrib.flags = VA_SURFACE_ATTRIB_SETTABLE;\n    surface_attrib.value.type = VAGenericValueTypeInteger;\n    surface_attrib.value.value.i = fourCC;\n\n    va_status = vaCreateSurfaces(va_dpy,\n                                 format,\n                                 width,\n                                 height,\n                                 p_surface_id,\n                                 1,\n                                 &surface_attrib,\n                                 1);\n    return va_status;\n}\n\n/* Load yuv frame to NV12/YV12/I420 surface*/\nstatic VAStatus\nupload_yuv_frame_to_yuv_surface(FILE *fp,\n                                VASurfaceID surface_id)\n{\n    VAStatus va_status;\n    VAImage surface_image;\n    unsigned char *y_src = NULL;\n    unsigned char *u_src = NULL;\n    unsigned char *v_src = NULL;\n    unsigned char *y_dst = NULL;\n    unsigned char *u_dst = NULL;\n    unsigned char *v_dst = NULL;\n    void *surface_p = NULL;\n    uint32_t frame_size, row, col;\n    size_t n_items;\n    unsigned char * newImageBuffer = NULL;\n    va_status = vaSyncSurface(va_dpy, surface_id);\n    CHECK_VASTATUS(va_status, \"vaSyncSurface\");\n\n    va_status = vaDeriveImage(va_dpy, surface_id, &surface_image);\n    CHECK_VASTATUS(va_status, \"vaDeriveImage\");\n\n    va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p);\n    CHECK_VASTATUS(va_status, \"vaMapBuffer\");\n\n    if (surface_image.format.fourcc == VA_FOURCC_YV12 ||\n        surface_image.format.fourcc == VA_FOURCC_I420 ||\n        surface_image.format.fourcc == VA_FOURCC_NV12) {\n\n        frame_size = surface_image.width * surface_image.height * 3 / 2;\n        newImageBuffer = (unsigned char*)malloc(frame_size);\n        assert(newImageBuffer);\n\n        do {\n            n_items = fread(newImageBuffer, frame_size, 1, fp);\n        } while (n_items != 1);\n\n        y_src = newImageBuffer;\n        if (g_src_file_fourcc == VA_FOURCC_I420) {\n            u_src = newImageBuffer + surface_image.width * surface_image.height;\n            v_src = newImageBuffer + surface_image.width * surface_image.height * 5 / 4;\n        } else if (g_src_file_fourcc == VA_FOURCC_YV12) {\n            v_src = newImageBuffer + surface_image.width * surface_image.height;\n            u_src = newImageBuffer + surface_image.width * surface_image.height * 5 / 4;\n        } else if (g_src_file_fourcc == VA_FOURCC_NV12) {\n            u_src = newImageBuffer + surface_image.width * surface_image.height;\n            v_src = u_src;\n        } else {\n            printf(\"Not supported YUV fourcc for input file !!!\\n\");\n            free(newImageBuffer);\n            return VA_STATUS_ERROR_INVALID_SURFACE;\n        }\n\n        y_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]);\n\n        if (surface_image.format.fourcc == VA_FOURCC_YV12) {\n            v_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            u_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]);\n        } else if (surface_image.format.fourcc == VA_FOURCC_I420) {\n            u_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            v_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]);\n        } else {\n            u_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            v_dst = u_dst;\n        }\n\n        /* Y plane, directly copy */\n        for (row = 0; row < surface_image.height; row++) {\n            memcpy(y_dst, y_src, surface_image.width);\n            y_dst += surface_image.pitches[0];\n            y_src += surface_image.width;\n        }\n\n        /* UV plane */\n        if (surface_image.format.fourcc == VA_FOURCC_YV12 ||\n            surface_image.format.fourcc == VA_FOURCC_I420) {\n            for (row = 0; row < surface_image.height / 2; row ++) {\n                if (g_src_file_fourcc == VA_FOURCC_I420 ||\n                    g_src_file_fourcc == VA_FOURCC_YV12) {\n                    memcpy(v_dst, v_src, surface_image.width / 2);\n                    memcpy(u_dst, u_src, surface_image.width / 2);\n\n                    v_src += surface_image.width / 2;\n                    u_src += surface_image.width / 2;\n                } else {\n                    for (col = 0; col < surface_image.width / 2; col++) {\n                        u_dst[col] = u_src[col * 2];\n                        v_dst[col] = u_src[col * 2 + 1];\n                    }\n\n                    u_src += surface_image.width;\n                    v_src = u_src;\n                }\n\n                if (surface_image.format.fourcc == VA_FOURCC_YV12) {\n                    v_dst += surface_image.pitches[1];\n                    u_dst += surface_image.pitches[2];\n                } else {\n                    v_dst += surface_image.pitches[2];\n                    u_dst += surface_image.pitches[1];\n                }\n            }\n        } else if (surface_image.format.fourcc == VA_FOURCC_NV12) {\n            for (row = 0; row < surface_image.height / 2; row++) {\n                if (g_src_file_fourcc == VA_FOURCC_I420 ||\n                    g_src_file_fourcc == VA_FOURCC_YV12) {\n                    for (col = 0; col < surface_image.width / 2; col++) {\n                        u_dst[col * 2] = u_src[col];\n                        u_dst[col * 2 + 1] = v_src[col];\n                    }\n\n                    u_src += (surface_image.width / 2);\n                    v_src += (surface_image.width / 2);\n                } else {\n                    memcpy(u_dst, u_src, surface_image.width);\n                    u_src += surface_image.width;\n                    v_src = u_src;\n                }\n\n                u_dst += surface_image.pitches[1];\n            }\n        }\n    } else if ((surface_image.format.fourcc == VA_FOURCC_YUY2 &&\n                g_src_file_fourcc == VA_FOURCC_YUY2) ||\n               (surface_image.format.fourcc == VA_FOURCC_UYVY &&\n                g_src_file_fourcc == VA_FOURCC_UYVY)) {\n        frame_size = surface_image.width * surface_image.height * 2;\n        newImageBuffer = (unsigned char*)malloc(frame_size);\n        assert(newImageBuffer);\n\n        do {\n            n_items = fread(newImageBuffer, frame_size, 1, fp);\n        } while (n_items != 1);\n\n        y_src = newImageBuffer;\n        y_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]);\n\n        /* plane 0, directly copy */\n        for (row = 0; row < surface_image.height; row++) {\n            memcpy(y_dst, y_src, surface_image.width * 2);\n            y_src += surface_image.width * 2;\n            y_dst += surface_image.pitches[0];\n        }\n    } else if ((surface_image.format.fourcc == VA_FOURCC_P010 &&\n                g_src_file_fourcc == VA_FOURCC_P010) ||\n               (surface_image.format.fourcc == VA_FOURCC_I010 &&\n                g_src_file_fourcc == VA_FOURCC_I010)) {\n        frame_size = surface_image.width * surface_image.height * 3;\n        newImageBuffer = (unsigned char*)malloc(frame_size);\n        assert(newImageBuffer);\n\n        do {\n            n_items = fread(newImageBuffer, frame_size, 1, fp);\n        } while (n_items != 1);\n\n        y_src = newImageBuffer;\n        y_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]);\n\n        /* plane 0, directly copy */\n        for (row = 0; row < surface_image.height; row++) {\n            memcpy(y_dst, y_src, surface_image.width * 2);\n            y_src += surface_image.width * 2;\n            y_dst += surface_image.pitches[0];\n        }\n\n        /* UV plane */\n        if (surface_image.format.fourcc == VA_FOURCC_I010) {\n            assert(g_src_file_fourcc == VA_FOURCC_I010);\n\n            u_src = newImageBuffer + surface_image.width * surface_image.height * 2;\n            v_src = newImageBuffer + surface_image.width * surface_image.height * 5 / 2;\n\n            u_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            v_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]);\n\n            for (row = 0; row < surface_image.height / 2; row++) {\n                memcpy(u_dst, u_src, surface_image.width);\n                memcpy(v_dst, v_src, surface_image.width);\n\n                u_src += surface_image.width;\n                v_src += surface_image.width;\n\n                u_dst += surface_image.pitches[1];\n                v_dst += surface_image.pitches[2];\n            }\n        } else if (surface_image.format.fourcc == VA_FOURCC_P010) {\n            assert(g_src_file_fourcc == VA_FOURCC_P010);\n\n            u_src = newImageBuffer + surface_image.width * surface_image.height * 2;\n            v_src = u_src;\n\n            u_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            v_dst = u_dst;\n\n            for (row = 0; row < surface_image.height / 2; row++) {\n                memcpy(u_dst, u_src, surface_image.width * 2);\n\n                u_src += surface_image.width * 2;\n                v_src = u_src;\n\n                u_dst += surface_image.pitches[1];\n                v_dst = u_dst;\n            }\n        }\n    }  else if ((surface_image.format.fourcc == VA_FOURCC_RGBA &&\n                 g_src_file_fourcc == VA_FOURCC_RGBA) ||\n                (surface_image.format.fourcc == VA_FOURCC_RGBX &&\n                 g_src_file_fourcc == VA_FOURCC_RGBX) ||\n                (surface_image.format.fourcc == VA_FOURCC_BGRA &&\n                 g_src_file_fourcc == VA_FOURCC_BGRA) ||\n                (surface_image.format.fourcc == VA_FOURCC_BGRX &&\n                 g_src_file_fourcc == VA_FOURCC_BGRX)) {\n        frame_size = surface_image.width * surface_image.height * 4;\n        newImageBuffer = (unsigned char*)malloc(frame_size);\n        assert(newImageBuffer);\n\n        do {\n            n_items = fread(newImageBuffer, frame_size, 1, fp);\n        } while (n_items != 1);\n\n        y_src = newImageBuffer;\n        y_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]);\n\n        /* plane 0, directly copy */\n        for (row = 0; row < surface_image.height; row++) {\n            memcpy(y_dst, y_src, surface_image.width * 4);\n            y_src += surface_image.width * 4;\n            y_dst += surface_image.pitches[0];\n        }\n    } else {\n        printf(\"Not supported YUV surface fourcc !!! \\n\");\n        return VA_STATUS_ERROR_INVALID_SURFACE;\n    }\n\n    if (newImageBuffer) {\n        free(newImageBuffer);\n        newImageBuffer = NULL;\n    }\n\n    vaUnmapBuffer(va_dpy, surface_image.buf);\n    vaDestroyImage(va_dpy, surface_image.image_id);\n\n    return VA_STATUS_SUCCESS;\n}\n\n/* Store NV12/YV12/I420 surface to yv12 file */\nstatic VAStatus\nstore_yuv_surface_to_yv12_file(FILE *fp,\n                               VASurfaceID surface_id)\n{\n    VAStatus va_status;\n    VAImage surface_image;\n    void *surface_p = NULL;\n    unsigned char *y_src = NULL;\n    unsigned char *u_src = NULL;\n    unsigned char *v_src = NULL;\n    unsigned char *y_dst = NULL;\n    unsigned char *u_dst = NULL;\n    unsigned char *v_dst = NULL;\n    uint32_t row, col;\n    int32_t n_items;\n    unsigned char * newImageBuffer = NULL;\n    va_status = vaSyncSurface(va_dpy, surface_id);\n    CHECK_VASTATUS(va_status, \"vaSyncSurface\");\n\n    va_status = vaDeriveImage(va_dpy, surface_id, &surface_image);\n    CHECK_VASTATUS(va_status, \"vaDeriveImage\");\n\n    va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p);\n    CHECK_VASTATUS(va_status, \"vaMapBuffer\");\n\n    /* store the surface to one YV12 file or one bmp file*/\n    if (surface_image.format.fourcc == VA_FOURCC_YV12 ||\n        surface_image.format.fourcc == VA_FOURCC_I420 ||\n        surface_image.format.fourcc == VA_FOURCC_NV12) {\n\n        uint32_t y_size = surface_image.width * surface_image.height;\n        uint32_t u_size = y_size / 4;\n\n        newImageBuffer = (unsigned char*)malloc(y_size * 3 / 2);\n        assert(newImageBuffer);\n\n        /* stored as YV12 format */\n        y_dst = newImageBuffer;\n        v_dst = newImageBuffer + y_size;\n        u_dst = newImageBuffer + y_size + u_size;\n\n        y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]);\n        if (surface_image.format.fourcc == VA_FOURCC_YV12) {\n            v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]);\n        } else if (surface_image.format.fourcc == VA_FOURCC_I420) {\n            u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]);\n        } else if (surface_image.format.fourcc == VA_FOURCC_NV12) {\n            u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            v_src = u_src;\n        }\n\n        /* Y plane copy */\n        for (row = 0; row < surface_image.height; row++) {\n            memcpy(y_dst, y_src, surface_image.width);\n            y_src += surface_image.pitches[0];\n            y_dst += surface_image.width;\n        }\n\n        /* UV plane copy */\n        if (surface_image.format.fourcc == VA_FOURCC_YV12 ||\n            surface_image.format.fourcc == VA_FOURCC_I420) {\n            for (row = 0; row < surface_image.height / 2; row ++) {\n                memcpy(v_dst, v_src, surface_image.width / 2);\n                memcpy(u_dst, u_src, surface_image.width / 2);\n\n                v_dst += surface_image.width / 2;\n                u_dst += surface_image.width / 2;\n\n                if (surface_image.format.fourcc == VA_FOURCC_YV12) {\n                    v_src += surface_image.pitches[1];\n                    u_src += surface_image.pitches[2];\n                } else {\n                    v_src += surface_image.pitches[2];\n                    u_src += surface_image.pitches[1];\n                }\n            }\n        } else if (surface_image.format.fourcc == VA_FOURCC_NV12) {\n            for (row = 0; row < surface_image.height / 2; row++) {\n                for (col = 0; col < surface_image.width / 2; col++) {\n                    u_dst[col] = u_src[col * 2];\n                    v_dst[col] = u_src[col * 2 + 1];\n                }\n\n                u_src += surface_image.pitches[1];\n                u_dst += (surface_image.width / 2);\n                v_dst += (surface_image.width / 2);\n            }\n        }\n\n        /* write frame to file */\n        do {\n            n_items = fwrite(newImageBuffer, y_size * 3 / 2, 1, fp);\n        } while (n_items != 1);\n\n    } else {\n        printf(\"Not supported YUV surface fourcc !!! \\n\");\n        return VA_STATUS_ERROR_INVALID_SURFACE;\n    }\n\n    if (newImageBuffer) {\n        free(newImageBuffer);\n        newImageBuffer = NULL;\n    }\n\n    vaUnmapBuffer(va_dpy, surface_image.buf);\n    vaDestroyImage(va_dpy, surface_image.image_id);\n\n    return VA_STATUS_SUCCESS;\n}\n\nstatic VAStatus\nstore_yuv_surface_to_i420_file(FILE *fp,\n                               VASurfaceID surface_id)\n{\n    VAStatus va_status;\n    VAImage surface_image;\n    void *surface_p = NULL;\n    unsigned char *y_src = NULL;\n    unsigned char *u_src = NULL;\n    unsigned char *v_src = NULL;\n    unsigned char *y_dst = NULL;\n    unsigned char *u_dst = NULL;\n    unsigned char *v_dst = NULL;\n    uint32_t row, col;\n    int32_t n_items;\n    unsigned char * newImageBuffer = NULL;\n    va_status = vaSyncSurface(va_dpy, surface_id);\n    CHECK_VASTATUS(va_status, \"vaSyncSurface\");\n\n    va_status = vaDeriveImage(va_dpy, surface_id, &surface_image);\n    CHECK_VASTATUS(va_status, \"vaDeriveImage\");\n\n    va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p);\n    CHECK_VASTATUS(va_status, \"vaMapBuffer\");\n\n    /* store the surface to one i420 file */\n    if (surface_image.format.fourcc == VA_FOURCC_YV12 ||\n        surface_image.format.fourcc == VA_FOURCC_I420 ||\n        surface_image.format.fourcc == VA_FOURCC_NV12) {\n\n        uint32_t y_size = surface_image.width * surface_image.height;\n        uint32_t u_size = y_size / 4;\n\n        newImageBuffer = (unsigned char*)malloc(y_size * 3 / 2);\n        assert(newImageBuffer);\n\n        /* stored as YV12 format */\n        y_dst = newImageBuffer;\n        u_dst = newImageBuffer + y_size;\n        v_dst = newImageBuffer + y_size + u_size;\n\n        y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]);\n        if (surface_image.format.fourcc == VA_FOURCC_YV12) {\n            v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]);\n        } else if (surface_image.format.fourcc == VA_FOURCC_I420) {\n            u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]);\n        } else if (surface_image.format.fourcc == VA_FOURCC_NV12) {\n            u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            v_src = u_src;\n        }\n\n        /* Y plane copy */\n        for (row = 0; row < surface_image.height; row++) {\n            memcpy(y_dst, y_src, surface_image.width);\n            y_src += surface_image.pitches[0];\n            y_dst += surface_image.width;\n        }\n\n        /* UV plane copy */\n        if (surface_image.format.fourcc == VA_FOURCC_YV12 ||\n            surface_image.format.fourcc == VA_FOURCC_I420) {\n            for (row = 0; row < surface_image.height / 2; row ++) {\n                memcpy(v_dst, v_src, surface_image.width / 2);\n                memcpy(u_dst, u_src, surface_image.width / 2);\n\n                v_dst += surface_image.width / 2;\n                u_dst += surface_image.width / 2;\n\n                if (surface_image.format.fourcc == VA_FOURCC_YV12) {\n                    v_src += surface_image.pitches[1];\n                    u_src += surface_image.pitches[2];\n                } else {\n                    v_src += surface_image.pitches[2];\n                    u_src += surface_image.pitches[1];\n                }\n            }\n        } else if (surface_image.format.fourcc == VA_FOURCC_NV12) {\n            for (row = 0; row < surface_image.height / 2; row++) {\n                for (col = 0; col < surface_image.width / 2; col++) {\n                    u_dst[col] = u_src[col * 2];\n                    v_dst[col] = u_src[col * 2 + 1];\n                }\n\n                u_src += surface_image.pitches[1];\n                u_dst += (surface_image.width / 2);\n                v_dst += (surface_image.width / 2);\n            }\n        }\n\n        /* write frame to file */\n        do {\n            n_items = fwrite(newImageBuffer, y_size * 3 / 2, 1, fp);\n        } while (n_items != 1);\n\n    } else {\n        printf(\"Not supported YUV surface fourcc !!! \\n\");\n        return VA_STATUS_ERROR_INVALID_SURFACE;\n    }\n\n    if (newImageBuffer) {\n        free(newImageBuffer);\n        newImageBuffer = NULL;\n    }\n\n    vaUnmapBuffer(va_dpy, surface_image.buf);\n    vaDestroyImage(va_dpy, surface_image.image_id);\n\n    return VA_STATUS_SUCCESS;\n}\n\nstatic VAStatus\nstore_yuv_surface_to_nv12_file(FILE *fp,\n                               VASurfaceID surface_id)\n{\n    VAStatus va_status;\n    VAImage surface_image;\n    void *surface_p = NULL;\n    unsigned char *y_src = NULL;\n    unsigned char *u_src = NULL;\n    unsigned char *v_src = NULL;\n    unsigned char *y_dst = NULL;\n    unsigned char *u_dst = NULL;\n    unsigned char *v_dst = NULL;\n    uint32_t row, col;\n    int32_t n_items;\n    unsigned char * newImageBuffer = NULL;\n    va_status = vaSyncSurface(va_dpy, surface_id);\n    CHECK_VASTATUS(va_status, \"vaSyncSurface\");\n\n    va_status = vaDeriveImage(va_dpy, surface_id, &surface_image);\n    CHECK_VASTATUS(va_status, \"vaDeriveImage\");\n\n    va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p);\n    CHECK_VASTATUS(va_status, \"vaMapBuffer\");\n\n    /* store the surface to one nv12 file */\n    if (surface_image.format.fourcc == VA_FOURCC_YV12 ||\n        surface_image.format.fourcc == VA_FOURCC_I420 ||\n        surface_image.format.fourcc == VA_FOURCC_NV12) {\n\n        uint32_t y_size = surface_image.width * surface_image.height;\n\n        newImageBuffer = (unsigned char*)malloc(y_size * 3 / 2);\n        assert(newImageBuffer);\n\n        /* stored as YV12 format */\n        y_dst = newImageBuffer;\n        u_dst = v_dst = newImageBuffer + y_size;\n\n        y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]);\n\n        if (surface_image.format.fourcc == VA_FOURCC_YV12) {\n            v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]);\n        } else if (surface_image.format.fourcc == VA_FOURCC_I420) {\n            u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]);\n        } else if (surface_image.format.fourcc == VA_FOURCC_NV12) {\n            u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            v_src = u_src;\n        }\n\n        /* Y plane copy */\n        for (row = 0; row < surface_image.height; row++) {\n            memcpy(y_dst, y_src, surface_image.width);\n            y_src += surface_image.pitches[0];\n            y_dst += surface_image.width;\n        }\n\n        /* UV plane copy */\n        if (surface_image.format.fourcc == VA_FOURCC_YV12 ||\n            surface_image.format.fourcc == VA_FOURCC_I420) {\n            for (row = 0; row < surface_image.height / 2; row ++) {\n                for (col = 0; col < surface_image.width / 2; col++) {\n                    u_dst[col * 2] = u_src[col];\n                    u_dst[col * 2 + 1] = v_src[col];\n                }\n\n                u_dst += surface_image.width;\n\n                if (surface_image.format.fourcc == VA_FOURCC_YV12) {\n                    v_src += surface_image.pitches[1];\n                    u_src += surface_image.pitches[2];\n                } else {\n                    v_src += surface_image.pitches[2];\n                    u_src += surface_image.pitches[1];\n                }\n            }\n        } else if (surface_image.format.fourcc == VA_FOURCC_NV12) {\n            for (row = 0; row < surface_image.height / 2; row++) {\n                memcpy(u_dst, u_src, surface_image.width);\n                u_dst += surface_image.width;\n                u_src += surface_image.pitches[1];\n            }\n        }\n\n        /* write frame to file */\n        do {\n            n_items = fwrite(newImageBuffer, y_size * 3 / 2, 1, fp);\n        } while (n_items != 1);\n\n    } else {\n        printf(\"Not supported YUV surface fourcc !!! \\n\");\n        return VA_STATUS_ERROR_INVALID_SURFACE;\n    }\n\n    if (newImageBuffer) {\n        free(newImageBuffer);\n        newImageBuffer = NULL;\n    }\n\n    vaUnmapBuffer(va_dpy, surface_image.buf);\n    vaDestroyImage(va_dpy, surface_image.image_id);\n\n    return VA_STATUS_SUCCESS;\n}\n\nstatic VAStatus\nstore_packed_yuv_surface_to_packed_file(FILE *fp,\n                                        VASurfaceID surface_id)\n{\n    VAStatus va_status;\n    VAImage surface_image;\n    void *surface_p = NULL;\n    unsigned char *y_src = NULL;\n    unsigned char *y_dst = NULL;\n    uint32_t row;\n    int32_t n_items;\n    unsigned char * newImageBuffer = NULL;\n    va_status = vaSyncSurface(va_dpy, surface_id);\n    CHECK_VASTATUS(va_status, \"vaSyncSurface\");\n\n    va_status = vaDeriveImage(va_dpy, surface_id, &surface_image);\n    CHECK_VASTATUS(va_status, \"vaDeriveImage\");\n\n    va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p);\n    CHECK_VASTATUS(va_status, \"vaMapBuffer\");\n\n    /* store the surface to one YUY2 or UYVY file */\n    if (surface_image.format.fourcc == VA_FOURCC_YUY2 ||\n        surface_image.format.fourcc == VA_FOURCC_UYVY) {\n        uint32_t frame_size = surface_image.width * surface_image.height * 2;\n\n        newImageBuffer = (unsigned char*)malloc(frame_size);\n        assert(newImageBuffer);\n        memset(newImageBuffer, 0, frame_size);\n\n        /* stored as YUY2 or UYVY format */\n        y_dst = newImageBuffer;\n\n        y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]);\n\n        /* Plane 0 copy */\n        for (row = 0; row < surface_image.height; row++) {\n            memcpy(y_dst, y_src, surface_image.width * 2);\n            y_src += surface_image.pitches[0];\n            y_dst += surface_image.width * 2;\n        }\n\n        /* write frame to file */\n        do {\n            n_items = fwrite(newImageBuffer, frame_size, 1, fp);\n        } while (n_items != 1);\n\n    } else {\n        printf(\"Not supported YUV surface fourcc !!! \\n\");\n        return VA_STATUS_ERROR_INVALID_SURFACE;\n    }\n\n    if (newImageBuffer) {\n        free(newImageBuffer);\n        newImageBuffer = NULL;\n    }\n\n    vaUnmapBuffer(va_dpy, surface_image.buf);\n    vaDestroyImage(va_dpy, surface_image.image_id);\n\n    return VA_STATUS_SUCCESS;\n}\n\nstatic VAStatus\nstore_yuv_surface_to_10bit_file(FILE *fp, VASurfaceID surface_id)\n{\n    VAStatus va_status;\n    VAImage surface_image;\n    void *surface_p = NULL;\n    unsigned char *y_src = NULL;\n    unsigned char *u_src = NULL;\n    unsigned char *v_src = NULL;\n    unsigned char *y_dst = NULL;\n    unsigned char *u_dst = NULL;\n    unsigned char *v_dst = NULL;\n    uint32_t row;\n    int32_t n_items;\n    unsigned char * newImageBuffer = NULL;\n    va_status = vaSyncSurface(va_dpy, surface_id);\n    CHECK_VASTATUS(va_status, \"vaSyncSurface\");\n\n    va_status = vaDeriveImage(va_dpy, surface_id, &surface_image);\n    CHECK_VASTATUS(va_status, \"vaDeriveImage\");\n\n    va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p);\n    CHECK_VASTATUS(va_status, \"vaMapBuffer\");\n\n    /* store the surface to one 10bit file */\n    uint32_t y_size = surface_image.width * surface_image.height * 2;\n    uint32_t u_size = y_size / 4;\n\n    newImageBuffer = (unsigned char*)malloc(y_size * 3);\n    assert(newImageBuffer);\n    y_dst = newImageBuffer;\n\n    y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]);\n\n    /* Y plane copy */\n    for (row = 0; row < surface_image.height; row++) {\n        memcpy(y_dst, y_src, surface_image.width * 2);\n        y_src += surface_image.pitches[0];\n        y_dst += surface_image.width * 2;\n    }\n\n    if (surface_image.format.fourcc == VA_FOURCC_I010) {\n        u_dst = newImageBuffer + y_size;\n        v_dst = newImageBuffer + y_size + u_size;\n\n        u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n        v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]);\n\n        for (row = 0; row < surface_image.height / 2; row++) {\n            memcpy(u_dst, u_src, surface_image.width);\n            memcpy(v_dst, v_src, surface_image.width);\n\n            u_dst += surface_image.width;\n            v_dst += surface_image.width;\n\n            u_src += surface_image.pitches[1];\n            v_src += surface_image.pitches[2];\n        }\n    } else if (surface_image.format.fourcc == VA_FOURCC_P010) {\n        u_dst = newImageBuffer + y_size;\n        v_dst = u_dst;\n\n        u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n        v_src = u_src;\n\n        for (row = 0; row < surface_image.height / 2; row++) {\n            memcpy(u_dst, u_src, surface_image.width * 2);\n            u_dst += surface_image.width * 2;\n            u_src += surface_image.pitches[1];\n        }\n    } else {\n        printf(\"Not supported YUV surface fourcc !!! \\n\");\n        free(newImageBuffer);\n        return VA_STATUS_ERROR_INVALID_SURFACE;\n    }\n\n    /* write frame to file */\n    do {\n        n_items = fwrite(newImageBuffer, y_size * 3 / 2, 1, fp);\n    } while (n_items != 1);\n\n    if (newImageBuffer) {\n        free(newImageBuffer);\n        newImageBuffer = NULL;\n    }\n\n    vaUnmapBuffer(va_dpy, surface_image.buf);\n    vaDestroyImage(va_dpy, surface_image.image_id);\n\n    return VA_STATUS_SUCCESS;\n}\n\nstatic VAStatus\nstore_rgb_surface_to_rgb_file(FILE *fp, VASurfaceID surface_id)\n{\n    VAStatus va_status;\n    VAImage surface_image;\n    void *surface_p = NULL;\n    unsigned char *y_src = NULL;\n    unsigned char *y_dst = NULL;\n    uint32_t frame_size, row;\n    int32_t n_items;\n    unsigned char * newImageBuffer = NULL;\n    va_status = vaSyncSurface(va_dpy, surface_id);\n    CHECK_VASTATUS(va_status, \"vaSyncSurface\");\n\n    va_status = vaDeriveImage(va_dpy, surface_id, &surface_image);\n    CHECK_VASTATUS(va_status, \"vaDeriveImage\");\n\n    va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p);\n    CHECK_VASTATUS(va_status, \"vaMapBuffer\");\n\n    frame_size = surface_image.width * surface_image.height * 4;\n    newImageBuffer = (unsigned char*)malloc(frame_size);\n    assert(newImageBuffer);\n    y_dst = newImageBuffer;\n\n    y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]);\n\n    for (row = 0; row < surface_image.height; row++) {\n        memcpy(y_dst, y_src, surface_image.width * 4);\n        y_src += surface_image.pitches[0];\n        y_dst += surface_image.width * 4;\n    }\n\n    /* write frame to file */\n    do {\n        n_items = fwrite(newImageBuffer, frame_size, 1, fp);\n    } while (n_items != 1);\n\n    if (newImageBuffer) {\n        free(newImageBuffer);\n        newImageBuffer = NULL;\n    }\n\n    vaUnmapBuffer(va_dpy, surface_image.buf);\n    vaDestroyImage(va_dpy, surface_image.image_id);\n\n    return VA_STATUS_SUCCESS;\n}\n\nstatic VAStatus\nstore_yuv_surface_to_file(FILE *fp,\n                          VASurfaceID surface_id)\n{\n    if (g_out_fourcc == VA_FOURCC_YV12 ||\n        g_out_fourcc == VA_FOURCC_I420 ||\n        g_out_fourcc == VA_FOURCC_NV12) {\n        if (g_dst_file_fourcc == VA_FOURCC_YV12)\n            return store_yuv_surface_to_yv12_file(fp, surface_id);\n        else if (g_dst_file_fourcc == VA_FOURCC_I420)\n            return store_yuv_surface_to_i420_file(fp, surface_id);\n        else if (g_dst_file_fourcc == VA_FOURCC_NV12)\n            return store_yuv_surface_to_nv12_file(fp, surface_id);\n        else {\n            printf(\"Not supported YUV fourcc for output !!!\\n\");\n            return VA_STATUS_ERROR_INVALID_SURFACE;\n        }\n    } else if ((g_out_fourcc == VA_FOURCC_YUY2 &&\n                g_dst_file_fourcc == VA_FOURCC_YUY2) ||\n               (g_out_fourcc == VA_FOURCC_UYVY &&\n                g_dst_file_fourcc == VA_FOURCC_UYVY)) {\n        return store_packed_yuv_surface_to_packed_file(fp, surface_id);\n    } else if ((g_out_fourcc == VA_FOURCC_I010 &&\n                g_dst_file_fourcc == VA_FOURCC_I010) ||\n               (g_out_fourcc == VA_FOURCC_P010 &&\n                g_dst_file_fourcc == VA_FOURCC_P010)) {\n        return store_yuv_surface_to_10bit_file(fp, surface_id);\n    } else if ((g_out_fourcc == VA_FOURCC_RGBA &&\n                g_dst_file_fourcc == VA_FOURCC_RGBA) ||\n               (g_out_fourcc == VA_FOURCC_XRGB &&\n                g_dst_file_fourcc == VA_FOURCC_XRGB) ||\n               (g_out_fourcc == VA_FOURCC_RGBX &&\n                g_dst_file_fourcc == VA_FOURCC_RGBX) ||\n               (g_out_fourcc == VA_FOURCC_RGBA &&\n                g_dst_file_fourcc == VA_FOURCC_BGRA) ||\n               (g_out_fourcc == VA_FOURCC_BGRX &&\n                g_dst_file_fourcc == VA_FOURCC_BGRX)) {\n        return store_rgb_surface_to_rgb_file(fp, surface_id);\n    } else {\n        printf(\"Not supported YUV fourcc for output !!!\\n\");\n        return VA_STATUS_ERROR_INVALID_SURFACE;\n    }\n}\n\nstatic VAStatus\nchromasitting_param_init(uint8_t *in_chroma_sample_location, uint8_t *dst_chroma_sample_location)\n{\n    VAStatus va_status = VA_STATUS_SUCCESS;\n    uint8_t  in_sample_location = 0;\n    char     in_chroma_siting_mode[MAX_LEN];\n\n    uint8_t  dst_sample_location = 0;\n    char     dst_chroma_siting_mode[MAX_LEN];\n\n    /* Read filter type */\n    if (read_value_string(g_config_file_fd, \"IN_CHROMA_SITTING_MODE\", in_chroma_siting_mode)) {\n        printf(\"Read IN_CHROMA_SITTING_MODE type error !\\n\");\n        assert(0);\n    }\n    if (!strcmp(in_chroma_siting_mode, \"UNKNOWN\"))\n        in_sample_location = VA_CHROMA_SITING_UNKNOWN;\n    else if (!strcmp(in_chroma_siting_mode, \"CHROMA_SITING_TOP_LEFT\"))\n        in_sample_location = VA_CHROMA_SITING_VERTICAL_TOP | VA_CHROMA_SITING_HORIZONTAL_LEFT;\n    else if (!strcmp(in_chroma_siting_mode, \"CHROMA_SITING_TOP_CENTER\"))\n        in_sample_location = VA_CHROMA_SITING_VERTICAL_TOP | VA_CHROMA_SITING_HORIZONTAL_CENTER;\n    else if (!strcmp(in_chroma_siting_mode, \"CHROMA_SITING_CENTER_LEFT\"))\n        in_sample_location = VA_CHROMA_SITING_VERTICAL_CENTER | VA_CHROMA_SITING_HORIZONTAL_LEFT;\n    else if (!strcmp(in_chroma_siting_mode, \"CHROMA_SITING_CENTER_CENTER\"))\n        in_sample_location = VA_CHROMA_SITING_VERTICAL_CENTER | VA_CHROMA_SITING_HORIZONTAL_CENTER;\n    else if (!strcmp(in_chroma_siting_mode, \"CHROMA_SITING_BOTTOM_LEFT\"))\n        in_sample_location = VA_CHROMA_SITING_VERTICAL_BOTTOM | VA_CHROMA_SITING_HORIZONTAL_LEFT;\n    else if (!strcmp(in_chroma_siting_mode, \"CHROMA_SITING_BOTTOM_CENTER\"))\n        in_sample_location = VA_CHROMA_SITING_VERTICAL_BOTTOM | VA_CHROMA_SITING_HORIZONTAL_CENTER;\n    else {\n        printf(\"Unsupported IN_CHROMA_SITTING_MODE type :%s \\n\", in_chroma_siting_mode);\n        return -1;\n    }\n    *in_chroma_sample_location = in_sample_location;\n\n    if (read_value_string(g_config_file_fd, \"DST_CHROMA_SITTING_MODE\", dst_chroma_siting_mode)) {\n        printf(\"Read DST_CHROMA_SITTING_MODE type error !\\n\");\n        assert(0);\n    }\n    if (!strcmp(dst_chroma_siting_mode, \"UNKNOWN\"))\n        dst_sample_location = VA_CHROMA_SITING_UNKNOWN;\n    else if (!strcmp(dst_chroma_siting_mode, \"CHROMA_SITING_TOP_LEFT\"))\n        dst_sample_location = VA_CHROMA_SITING_VERTICAL_TOP | VA_CHROMA_SITING_HORIZONTAL_LEFT;\n    else if (!strcmp(dst_chroma_siting_mode, \"CHROMA_SITING_TOP_CENTER\"))\n        dst_sample_location = VA_CHROMA_SITING_VERTICAL_TOP | VA_CHROMA_SITING_HORIZONTAL_CENTER;\n    else if (!strcmp(dst_chroma_siting_mode, \"CHROMA_SITING_CENTER_LEFT\"))\n        dst_sample_location = VA_CHROMA_SITING_VERTICAL_CENTER | VA_CHROMA_SITING_HORIZONTAL_LEFT;\n    else if (!strcmp(dst_chroma_siting_mode, \"CHROMA_SITING_CENTER_CENTER\"))\n        dst_sample_location = VA_CHROMA_SITING_VERTICAL_CENTER | VA_CHROMA_SITING_HORIZONTAL_CENTER;\n    else if (!strcmp(dst_chroma_siting_mode, \"CHROMA_SITING_BOTTOM_LEFT\"))\n        dst_sample_location = VA_CHROMA_SITING_VERTICAL_BOTTOM | VA_CHROMA_SITING_HORIZONTAL_LEFT;\n    else if (!strcmp(dst_chroma_siting_mode, \"CHROMA_SITING_BOTTOM_CENTER\"))\n        dst_sample_location = VA_CHROMA_SITING_VERTICAL_BOTTOM | VA_CHROMA_SITING_HORIZONTAL_CENTER;\n    else {\n        printf(\"Unsupported DST_CHROMA_SITTING_MODE type :%s \\n\", dst_chroma_siting_mode);\n        return -1;\n    }\n    *dst_chroma_sample_location = dst_sample_location;\n\n    return va_status;\n}\n\nstatic VAStatus\nvideo_frame_process(VASurfaceID in_surface_id,\n                    VASurfaceID out_surface_id)\n{\n    VAStatus va_status;\n    VAProcPipelineParameterBuffer pipeline_param;\n    VARectangle surface_region, output_region;\n    VABufferID pipeline_param_buf_id = VA_INVALID_ID;\n    uint8_t in_chroma_sample_location = VA_CHROMA_SITING_UNKNOWN;\n    uint8_t dst_chroma_sample_location = VA_CHROMA_SITING_UNKNOWN;\n    chromasitting_param_init(&in_chroma_sample_location, &dst_chroma_sample_location);\n    /* Fill pipeline buffer */\n    surface_region.x = 0;\n    surface_region.y = 0;\n    surface_region.width = g_in_pic_width;\n    surface_region.height = g_in_pic_height;\n    output_region.x = 0;\n    output_region.y = 0;\n    output_region.width = g_out_pic_width;\n    output_region.height = g_out_pic_height;\n\n    memset(&pipeline_param, 0, sizeof(pipeline_param));\n    pipeline_param.surface = in_surface_id;\n    pipeline_param.surface_region = &surface_region;\n    pipeline_param.output_region = &output_region;\n    pipeline_param.input_color_properties.chroma_sample_location = in_chroma_sample_location;\n    pipeline_param.output_color_properties.chroma_sample_location = dst_chroma_sample_location;\n\n    va_status = vaCreateBuffer(va_dpy,\n                               context_id,\n                               VAProcPipelineParameterBufferType,\n                               sizeof(pipeline_param),\n                               1,\n                               &pipeline_param,\n                               &pipeline_param_buf_id);\n    CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n    va_status = vaBeginPicture(va_dpy,\n                               context_id,\n                               out_surface_id);\n    CHECK_VASTATUS(va_status, \"vaBeginPicture\");\n\n    va_status = vaRenderPicture(va_dpy,\n                                context_id,\n                                &pipeline_param_buf_id,\n                                1);\n    CHECK_VASTATUS(va_status, \"vaRenderPicture\");\n\n    va_status = vaEndPicture(va_dpy, context_id);\n    CHECK_VASTATUS(va_status, \"vaEndPicture\");\n\n    if (pipeline_param_buf_id != VA_INVALID_ID)\n        vaDestroyBuffer(va_dpy, pipeline_param_buf_id);\n\n    return va_status;\n}\n\nstatic VAStatus\nvpp_context_create()\n{\n    VAStatus va_status = VA_STATUS_SUCCESS;\n    int32_t j;\n\n    /* VA driver initialization */\n    va_dpy = va_open_display();\n    int32_t major_ver, minor_ver;\n    va_status = vaInitialize(va_dpy, &major_ver, &minor_ver);\n    assert(va_status == VA_STATUS_SUCCESS);\n\n    /* Check whether VPP is supported by driver */\n    VAEntrypoint entrypoints[5];\n    int32_t num_entrypoints;\n    num_entrypoints = vaMaxNumEntrypoints(va_dpy);\n    va_status = vaQueryConfigEntrypoints(va_dpy,\n                                         VAProfileNone,\n                                         entrypoints,\n                                         &num_entrypoints);\n    CHECK_VASTATUS(va_status, \"vaQueryConfigEntrypoints\");\n\n    for (j = 0; j < num_entrypoints; j++) {\n        if (entrypoints[j] == VAEntrypointVideoProc)\n            break;\n    }\n\n    if (j == num_entrypoints) {\n        printf(\"VPP is not supported by driver\\n\");\n        assert(0);\n    }\n\n    /* Render target surface format check */\n    VAConfigAttrib attrib;\n    attrib.type = VAConfigAttribRTFormat;\n    va_status = vaGetConfigAttributes(va_dpy,\n                                      VAProfileNone,\n                                      VAEntrypointVideoProc,\n                                      &attrib,\n                                      1);\n    CHECK_VASTATUS(va_status, \"vaGetConfigAttributes\");\n    if (!(attrib.value & g_out_format)) {\n        printf(\"RT format %d is not supported by VPP !\\n\", g_out_format);\n        assert(0);\n    }\n\n    /* Create surface/config/context for VPP pipeline */\n    va_status = create_surface(&g_in_surface_id, g_in_pic_width, g_in_pic_height,\n                               g_in_fourcc, g_in_format);\n    CHECK_VASTATUS(va_status, \"vaCreateSurfaces for input\");\n\n    va_status = create_surface(&g_out_surface_id, g_out_pic_width, g_out_pic_height,\n                               g_out_fourcc, g_out_format);\n    CHECK_VASTATUS(va_status, \"vaCreateSurfaces for output\");\n\n    va_status = vaCreateConfig(va_dpy,\n                               VAProfileNone,\n                               VAEntrypointVideoProc,\n                               &attrib,\n                               1,\n                               &config_id);\n    CHECK_VASTATUS(va_status, \"vaCreateConfig\");\n\n    va_status = vaCreateContext(va_dpy,\n                                config_id,\n                                g_out_pic_width,\n                                g_out_pic_height,\n                                VA_PROGRESSIVE,\n                                &g_out_surface_id,\n                                1,\n                                &context_id);\n    CHECK_VASTATUS(va_status, \"vaCreateContext\");\n\n    return va_status;\n}\n\nstatic void\nvpp_context_destroy()\n{\n    /* Release resource */\n    vaDestroySurfaces(va_dpy, &g_in_surface_id, 1);\n    vaDestroySurfaces(va_dpy, &g_out_surface_id, 1);\n    vaDestroyContext(va_dpy, context_id);\n    vaDestroyConfig(va_dpy, config_id);\n\n    vaTerminate(va_dpy);\n    va_close_display(va_dpy);\n}\n\nstatic int8_t\nparse_fourcc_and_format(char *str, uint32_t *fourcc, uint32_t *format)\n{\n    uint32_t tfourcc = VA_FOURCC('N', 'V', '1', '2');\n    uint32_t tformat = VA_RT_FORMAT_YUV420;\n\n    if (!strcmp(str, \"YV12\")) {\n        tfourcc = VA_FOURCC('Y', 'V', '1', '2');\n    } else if (!strcmp(str, \"I420\")) {\n        tfourcc = VA_FOURCC('I', '4', '2', '0');\n    } else if (!strcmp(str, \"NV12\")) {\n        tfourcc = VA_FOURCC('N', 'V', '1', '2');\n    } else if (!strcmp(str, \"YUY2\") || !strcmp(str, \"YUYV\")) {\n        tfourcc = VA_FOURCC('Y', 'U', 'Y', '2');\n    } else if (!strcmp(str, \"UYVY\")) {\n        tfourcc = VA_FOURCC('U', 'Y', 'V', 'Y');\n    } else if (!strcmp(str, \"P010\")) {\n        tfourcc = VA_FOURCC('P', '0', '1', '0');\n    } else if (!strcmp(str, \"I010\")) {\n        tfourcc = VA_FOURCC('I', '0', '1', '0');\n    } else if (!strcmp(str, \"RGBA\")) {\n        tfourcc = VA_FOURCC_RGBA;\n    } else if (!strcmp(str, \"RGBX\")) {\n        tfourcc = VA_FOURCC_RGBX;\n    } else if (!strcmp(str, \"XRGB\")) {\n        tfourcc = VA_FOURCC_XRGB;\n    } else if (!strcmp(str, \"BGRA\")) {\n        tfourcc = VA_FOURCC_BGRA;\n    } else if (!strcmp(str, \"BGRX\")) {\n        tfourcc = VA_FOURCC_BGRX;\n    } else {\n        printf(\"Not supported format: %s! Currently only support following format: %s\\n\",\n               str, \"YV12, I420, NV12, YUY2(YUYV), UYVY, P010, I010, RGBA, RGBX, BGRA or BGRX\");\n        assert(0);\n    }\n\n    if (fourcc)\n        *fourcc = tfourcc;\n\n    if (format)\n        *format = tformat;\n\n    return 0;\n}\n\nstatic int8_t\nparse_basic_parameters()\n{\n    char str[MAX_LEN];\n\n    /* Read src frame file information */\n    read_value_string(g_config_file_fd, \"SRC_FILE_NAME\", g_src_file_name);\n    read_value_uint32(g_config_file_fd, \"SRC_FRAME_WIDTH\", &g_in_pic_width);\n    read_value_uint32(g_config_file_fd, \"SRC_FRAME_HEIGHT\", &g_in_pic_height);\n    read_value_string(g_config_file_fd, \"SRC_FRAME_FORMAT\", str);\n    parse_fourcc_and_format(str, &g_in_fourcc, &g_in_format);\n\n    /* Read dst frame file information */\n    read_value_string(g_config_file_fd, \"DST_FILE_NAME\", g_dst_file_name);\n    read_value_uint32(g_config_file_fd, \"DST_FRAME_WIDTH\", &g_out_pic_width);\n    read_value_uint32(g_config_file_fd, \"DST_FRAME_HEIGHT\", &g_out_pic_height);\n    read_value_string(g_config_file_fd, \"DST_FRAME_FORMAT\", str);\n    parse_fourcc_and_format(str, &g_out_fourcc, &g_out_format);\n\n    read_value_string(g_config_file_fd, \"SRC_FILE_FORMAT\", str);\n    parse_fourcc_and_format(str, &g_src_file_fourcc, NULL);\n\n    read_value_string(g_config_file_fd, \"DST_FILE_FORMAT\", str);\n    parse_fourcc_and_format(str, &g_dst_file_fourcc, NULL);\n\n    read_value_uint32(g_config_file_fd, \"FRAME_SUM\", &g_frame_count);\n\n    if (g_in_pic_width != g_out_pic_width ||\n        g_in_pic_height != g_out_pic_height)\n        printf(\"Scaling will be done : from %4d x %4d to %4d x %4d \\n\",\n               g_in_pic_width, g_in_pic_height,\n               g_out_pic_width, g_out_pic_height);\n\n    if (g_in_fourcc != g_out_fourcc)\n        printf(\"Format conversion will be done: from %d to %d \\n\",\n               g_in_fourcc, g_out_fourcc);\n\n    return 0;\n}\n\nstatic void\nprint_help()\n{\n    printf(\"The app is used to test the chromasitting feature.\\n\");\n    printf(\"Cmd Usage: ./vppchromasitting process_chromasitting.cfg\\n\");\n    printf(\"The configure file process_chromasitting.cfg is used to configure the para.\\n\");\n    printf(\"You can refer process_chromasitting.cfg.template for each para meaning and create the configure file.\\n\");\n}\nint32_t main(int32_t argc, char *argv[])\n{\n    VAStatus va_status;\n    uint32_t i;\n\n    if (argc != 2 || !strcmp(argv[1], \"-h\") || !strcmp(argv[1], \"--help\")) {\n        print_help();\n        return -1;\n    }\n\n    /* Parse the configure file for video process*/\n    strncpy(g_config_file_name, argv[1], MAX_LEN);\n    g_config_file_name[MAX_LEN - 1] = '\\0';\n\n    if (NULL == (g_config_file_fd = fopen(g_config_file_name, \"r\"))) {\n        printf(\"Open configure file %s failed!\\n\", g_config_file_name);\n        assert(0);\n    }\n\n    /* Parse basic parameters */\n    if (parse_basic_parameters()) {\n        printf(\"Parse parameters in configure file error\\n\");\n        assert(0);\n    }\n\n    va_status = vpp_context_create();\n    if (va_status != VA_STATUS_SUCCESS) {\n        printf(\"vpp context create failed \\n\");\n        assert(0);\n    }\n\n    /* Video frame fetch, process and store */\n    if (NULL == (g_src_file_fd = fopen(g_src_file_name, \"r\"))) {\n        printf(\"Open SRC_FILE_NAME: %s failed, please specify it in config file: %s !\\n\",\n               g_src_file_name, g_config_file_name);\n        assert(0);\n    }\n\n    if (NULL == (g_dst_file_fd = fopen(g_dst_file_name, \"w\"))) {\n        printf(\"Open DST_FILE_NAME: %s failed, please specify it in config file: %s !\\n\",\n               g_dst_file_name, g_config_file_name);\n        assert(0);\n    }\n\n    printf(\"\\nStart to process, ...\\n\");\n    struct timespec Pre_time;\n    struct timespec Cur_time;\n    unsigned int duration = 0;\n    clock_gettime(CLOCK_MONOTONIC, &Pre_time);\n\n    for (i = 0; i < g_frame_count; i ++) {\n        upload_yuv_frame_to_yuv_surface(g_src_file_fd, g_in_surface_id);\n        video_frame_process(g_in_surface_id, g_out_surface_id);\n        store_yuv_surface_to_file(g_dst_file_fd, g_out_surface_id);\n    }\n\n    clock_gettime(CLOCK_MONOTONIC, &Cur_time);\n    duration = (Cur_time.tv_sec - Pre_time.tv_sec) * 1000;\n    if (Cur_time.tv_nsec > Pre_time.tv_nsec) {\n        duration += (Cur_time.tv_nsec - Pre_time.tv_nsec) / 1000000;\n    } else {\n        duration += (Cur_time.tv_nsec + 1000000000 - Pre_time.tv_nsec) / 1000000 - 1000;\n    }\n\n    printf(\"Finish processing, performance: \\n\");\n    printf(\"%d frames processed in: %d ms, ave time = %d ms\\n\", g_frame_count, duration, duration / g_frame_count);\n\n    if (g_src_file_fd)\n        fclose(g_src_file_fd);\n\n    if (g_dst_file_fd)\n        fclose(g_dst_file_fd);\n\n    if (g_config_file_fd)\n        fclose(g_config_file_fd);\n\n    vpp_context_destroy();\n\n    return 0;\n}\n"
  },
  {
    "path": "videoprocess/vppdenoise.cpp",
    "content": "/*\n* Copyright (c) 2009-2018, Intel Corporation\n*\n* Permission is hereby granted, free of charge, to any person obtaining a\n* copy of this software and associated documentation files (the \"Software\"),\n* to deal in the Software without restriction, including without limitation\n* the rights to use, copy, modify, merge, publish, distribute, sublicense,\n* and/or sell copies of the Software, and to permit persons to whom the\n* Software is furnished to do so, subject to the following conditions:\n*\n* The above copyright notice and this permission notice shall be included\n* in all copies or substantial portions of the Software.\n*\n* THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR\n* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,\n* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\n* OTHER DEALINGS IN THE SOFTWARE.\n*/\n/*\n * Video process test case based on LibVA.\n * This test covers denoise feature.\n * Usage: ./vppdenoise process_denoise.cfg\n */\n\n#include <stdio.h>\n#include <stdlib.h>\n#include <string.h>\n#include <stdint.h>\n#include <time.h>\n#include <assert.h>\n#include <va/va.h>\n#include <va/va_vpp.h>\n#include \"va_display.h\"\n\n#ifndef VA_FOURCC_I420\n#define VA_FOURCC_I420 0x30323449\n#endif\n\n#define MAX_LEN   1024\n\n#define CHECK_VASTATUS(va_status,func)                                      \\\n  if (va_status != VA_STATUS_SUCCESS) {                                     \\\n      fprintf(stderr,\"%s:%s (%d) failed,exit\\n\", __func__, func, __LINE__); \\\n      exit(1);                                                              \\\n  }\n\nstatic VADisplay va_dpy = NULL;\nstatic VAContextID context_id = 0;\nstatic VAConfigID  config_id = 0;\nstatic VASurfaceID g_in_surface_id = VA_INVALID_ID;\nstatic VASurfaceID g_out_surface_id = VA_INVALID_ID;\n\nstatic FILE* g_config_file_fd = NULL;\nstatic FILE* g_src_file_fd = NULL;\nstatic FILE* g_dst_file_fd = NULL;\n\nstatic char g_config_file_name[MAX_LEN];\nstatic char g_src_file_name[MAX_LEN];\nstatic char g_dst_file_name[MAX_LEN];\n\nstatic uint32_t g_in_pic_width = 352;\nstatic uint32_t g_in_pic_height = 288;\nstatic uint32_t g_out_pic_width = 352;\nstatic uint32_t g_out_pic_height = 288;\n\nstatic uint32_t g_in_fourcc  = VA_FOURCC('N', 'V', '1', '2');\nstatic uint32_t g_in_format  = VA_RT_FORMAT_YUV420;\nstatic uint32_t g_out_fourcc = VA_FOURCC('N', 'V', '1', '2');\nstatic uint32_t g_out_format = VA_RT_FORMAT_YUV420;\nstatic uint32_t g_src_file_fourcc = VA_FOURCC('I', '4', '2', '0');\nstatic uint32_t g_dst_file_fourcc = VA_FOURCC('Y', 'V', '1', '2');\n\nstatic uint32_t g_frame_count = 0;\n\nstatic int8_t\nread_value_string(FILE *fp, const char* field_name, char* value)\n{\n    char strLine[MAX_LEN];\n    char* field = NULL;\n    char* str = NULL;\n    uint16_t i;\n\n    if (!fp || !field_name || !value)  {\n        printf(\"Invalid fuction parameters\\n\");\n        return -1;\n    }\n\n    rewind(fp);\n\n    while (!feof(fp)) {\n        if (!fgets(strLine, MAX_LEN, fp))\n            continue;\n\n        for (i = 0; i < MAX_LEN && strLine[i]; i++)\n            if (strLine[i] != ' ') break;\n\n        if (i == MAX_LEN || strLine[i] == '#' || strLine[i] == '\\n')\n            continue;\n\n        field = strtok(&strLine[i], \":\");\n        if (strncmp(field, field_name, strlen(field_name)))\n            continue;\n\n        if (!(str = strtok(NULL, \":\")))\n            continue;\n\n        /* skip blank space in string */\n        while (*str == ' ')\n            str++;\n\n        *(str + strlen(str) - 1) = '\\0';\n        strcpy(value, str);\n\n        return 0;\n    }\n\n    return -1;\n}\n\nstatic int8_t\nread_value_uint32(FILE* fp, const char* field_name, uint32_t* value)\n{\n    char str[MAX_LEN];\n\n    if (read_value_string(fp, field_name, str)) {\n        printf(\"Failed to find integer field: %s\", field_name);\n        return -1;\n    }\n\n    *value = (uint32_t)atoi(str);\n    return 0;\n}\nstatic int8_t\nread_value_float(FILE *fp, const char* field_name, float* value)\n{\n    char str[MAX_LEN];\n    if (read_value_string(fp, field_name, str)) {\n        printf(\"Failed to find float field: %s \\n\", field_name);\n        return -1;\n    }\n\n    *value = atof(str);\n    return 0;\n}\n\nstatic float\nadjust_to_range(VAProcFilterValueRange *range, float value)\n{\n    if (value < range->min_value || value > range->max_value) {\n        printf(\"Value: %f exceed range: (%f ~ %f), force to use default: %f \\n\",\n               value, range->min_value, range->max_value, range->default_value);\n        return range->default_value;\n    }\n\n    return value;\n}\n\nstatic VAStatus\ncreate_surface(VASurfaceID * p_surface_id,\n               uint32_t width, uint32_t height,\n               uint32_t fourCC, uint32_t format)\n{\n    VAStatus va_status;\n    VASurfaceAttrib    surface_attrib;\n    surface_attrib.type =  VASurfaceAttribPixelFormat;\n    surface_attrib.flags = VA_SURFACE_ATTRIB_SETTABLE;\n    surface_attrib.value.type = VAGenericValueTypeInteger;\n    surface_attrib.value.value.i = fourCC;\n\n    va_status = vaCreateSurfaces(va_dpy,\n                                 format,\n                                 width,\n                                 height,\n                                 p_surface_id,\n                                 1,\n                                 &surface_attrib,\n                                 1);\n    return va_status;\n}\n\n/* Load yuv frame to NV12/YV12/I420 surface*/\nstatic VAStatus\nupload_yuv_frame_to_yuv_surface(FILE *fp,\n                                VASurfaceID surface_id)\n{\n    VAStatus va_status;\n    VAImage surface_image;\n    unsigned char *y_src = NULL;\n    unsigned char *u_src = NULL;\n    unsigned char *v_src = NULL;\n    unsigned char *y_dst = NULL;\n    unsigned char *u_dst = NULL;\n    unsigned char *v_dst = NULL;\n    void *surface_p = NULL;\n    uint32_t frame_size, row, col;\n    size_t n_items;\n    unsigned char * newImageBuffer = NULL;\n    va_status = vaSyncSurface(va_dpy, surface_id);\n    CHECK_VASTATUS(va_status, \"vaSyncSurface\");\n\n    va_status = vaDeriveImage(va_dpy, surface_id, &surface_image);\n    CHECK_VASTATUS(va_status, \"vaDeriveImage\");\n\n    va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p);\n    CHECK_VASTATUS(va_status, \"vaMapBuffer\");\n\n    if (surface_image.format.fourcc == VA_FOURCC_YV12 ||\n        surface_image.format.fourcc == VA_FOURCC_I420 ||\n        surface_image.format.fourcc == VA_FOURCC_NV12) {\n\n        frame_size = surface_image.width * surface_image.height * 3 / 2;\n        newImageBuffer = (unsigned char*)malloc(frame_size);\n        assert(newImageBuffer);\n\n        do {\n            n_items = fread(newImageBuffer, frame_size, 1, fp);\n        } while (n_items != 1);\n\n        y_src = newImageBuffer;\n        if (g_src_file_fourcc == VA_FOURCC_I420) {\n            u_src = newImageBuffer + surface_image.width * surface_image.height;\n            v_src = newImageBuffer + surface_image.width * surface_image.height * 5 / 4;\n        } else if (g_src_file_fourcc == VA_FOURCC_YV12) {\n            v_src = newImageBuffer + surface_image.width * surface_image.height;\n            u_src = newImageBuffer + surface_image.width * surface_image.height * 5 / 4;\n        } else if (g_src_file_fourcc == VA_FOURCC_NV12) {\n            u_src = newImageBuffer + surface_image.width * surface_image.height;\n            v_src = u_src;\n        } else {\n            printf(\"Not supported YUV fourcc for input file !!!\\n\");\n            free(newImageBuffer);\n            return VA_STATUS_ERROR_INVALID_SURFACE;\n        }\n\n        y_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]);\n\n        if (surface_image.format.fourcc == VA_FOURCC_YV12) {\n            v_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            u_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]);\n        } else if (surface_image.format.fourcc == VA_FOURCC_I420) {\n            u_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            v_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]);\n        } else {\n            u_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            v_dst = u_dst;\n        }\n\n        /* Y plane, directly copy */\n        for (row = 0; row < surface_image.height; row++) {\n            memcpy(y_dst, y_src, surface_image.width);\n            y_dst += surface_image.pitches[0];\n            y_src += surface_image.width;\n        }\n\n        /* UV plane */\n        if (surface_image.format.fourcc == VA_FOURCC_YV12 ||\n            surface_image.format.fourcc == VA_FOURCC_I420) {\n            for (row = 0; row < surface_image.height / 2; row ++) {\n                if (g_src_file_fourcc == VA_FOURCC_I420 ||\n                    g_src_file_fourcc == VA_FOURCC_YV12) {\n                    memcpy(v_dst, v_src, surface_image.width / 2);\n                    memcpy(u_dst, u_src, surface_image.width / 2);\n\n                    v_src += surface_image.width / 2;\n                    u_src += surface_image.width / 2;\n                } else {\n                    for (col = 0; col < surface_image.width / 2; col++) {\n                        u_dst[col] = u_src[col * 2];\n                        v_dst[col] = u_src[col * 2 + 1];\n                    }\n\n                    u_src += surface_image.width;\n                    v_src = u_src;\n                }\n\n                if (surface_image.format.fourcc == VA_FOURCC_YV12) {\n                    v_dst += surface_image.pitches[1];\n                    u_dst += surface_image.pitches[2];\n                } else {\n                    v_dst += surface_image.pitches[2];\n                    u_dst += surface_image.pitches[1];\n                }\n            }\n        } else if (surface_image.format.fourcc == VA_FOURCC_NV12) {\n            for (row = 0; row < surface_image.height / 2; row++) {\n                if (g_src_file_fourcc == VA_FOURCC_I420 ||\n                    g_src_file_fourcc == VA_FOURCC_YV12) {\n                    for (col = 0; col < surface_image.width / 2; col++) {\n                        u_dst[col * 2] = u_src[col];\n                        u_dst[col * 2 + 1] = v_src[col];\n                    }\n\n                    u_src += (surface_image.width / 2);\n                    v_src += (surface_image.width / 2);\n                } else {\n                    memcpy(u_dst, u_src, surface_image.width);\n                    u_src += surface_image.width;\n                    v_src = u_src;\n                }\n\n                u_dst += surface_image.pitches[1];\n            }\n        }\n    } else if ((surface_image.format.fourcc == VA_FOURCC_YUY2 &&\n                g_src_file_fourcc == VA_FOURCC_YUY2) ||\n               (surface_image.format.fourcc == VA_FOURCC_UYVY &&\n                g_src_file_fourcc == VA_FOURCC_UYVY)) {\n        frame_size = surface_image.width * surface_image.height * 2;\n        newImageBuffer = (unsigned char*)malloc(frame_size);\n        assert(newImageBuffer);\n\n        do {\n            n_items = fread(newImageBuffer, frame_size, 1, fp);\n        } while (n_items != 1);\n\n        y_src = newImageBuffer;\n        y_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]);\n\n        /* plane 0, directly copy */\n        for (row = 0; row < surface_image.height; row++) {\n            memcpy(y_dst, y_src, surface_image.width * 2);\n            y_src += surface_image.width * 2;\n            y_dst += surface_image.pitches[0];\n        }\n    } else if ((surface_image.format.fourcc == VA_FOURCC_P010 &&\n                g_src_file_fourcc == VA_FOURCC_P010) ||\n               (surface_image.format.fourcc == VA_FOURCC_I010 &&\n                g_src_file_fourcc == VA_FOURCC_I010)) {\n        frame_size = surface_image.width * surface_image.height * 3;\n        newImageBuffer = (unsigned char*)malloc(frame_size);\n        assert(newImageBuffer);\n\n        do {\n            n_items = fread(newImageBuffer, frame_size, 1, fp);\n        } while (n_items != 1);\n\n        y_src = newImageBuffer;\n        y_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]);\n\n        /* plane 0, directly copy */\n        for (row = 0; row < surface_image.height; row++) {\n            memcpy(y_dst, y_src, surface_image.width * 2);\n            y_src += surface_image.width * 2;\n            y_dst += surface_image.pitches[0];\n        }\n\n        /* UV plane */\n        if (surface_image.format.fourcc == VA_FOURCC_I010) {\n            assert(g_src_file_fourcc == VA_FOURCC_I010);\n\n            u_src = newImageBuffer + surface_image.width * surface_image.height * 2;\n            v_src = newImageBuffer + surface_image.width * surface_image.height * 5 / 2;\n\n            u_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            v_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]);\n\n            for (row = 0; row < surface_image.height / 2; row++) {\n                memcpy(u_dst, u_src, surface_image.width);\n                memcpy(v_dst, v_src, surface_image.width);\n\n                u_src += surface_image.width;\n                v_src += surface_image.width;\n\n                u_dst += surface_image.pitches[1];\n                v_dst += surface_image.pitches[2];\n            }\n        } else if (surface_image.format.fourcc == VA_FOURCC_P010) {\n            assert(g_src_file_fourcc == VA_FOURCC_P010);\n\n            u_src = newImageBuffer + surface_image.width * surface_image.height * 2;\n            v_src = u_src;\n\n            u_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            v_dst = u_dst;\n\n            for (row = 0; row < surface_image.height / 2; row++) {\n                memcpy(u_dst, u_src, surface_image.width * 2);\n\n                u_src += surface_image.width * 2;\n                v_src = u_src;\n\n                u_dst += surface_image.pitches[1];\n                v_dst = u_dst;\n            }\n        }\n    }  else if ((surface_image.format.fourcc == VA_FOURCC_RGBA &&\n                 g_src_file_fourcc == VA_FOURCC_RGBA) ||\n                (surface_image.format.fourcc == VA_FOURCC_RGBX &&\n                 g_src_file_fourcc == VA_FOURCC_RGBX) ||\n                (surface_image.format.fourcc == VA_FOURCC_BGRA &&\n                 g_src_file_fourcc == VA_FOURCC_BGRA) ||\n                (surface_image.format.fourcc == VA_FOURCC_BGRX &&\n                 g_src_file_fourcc == VA_FOURCC_BGRX)) {\n        frame_size = surface_image.width * surface_image.height * 4;\n        newImageBuffer = (unsigned char*)malloc(frame_size);\n        assert(newImageBuffer);\n\n        do {\n            n_items = fread(newImageBuffer, frame_size, 1, fp);\n        } while (n_items != 1);\n\n        y_src = newImageBuffer;\n        y_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]);\n\n        /* plane 0, directly copy */\n        for (row = 0; row < surface_image.height; row++) {\n            memcpy(y_dst, y_src, surface_image.width * 4);\n            y_src += surface_image.width * 4;\n            y_dst += surface_image.pitches[0];\n        }\n    } else {\n        printf(\"Not supported YUV surface fourcc !!! \\n\");\n        return VA_STATUS_ERROR_INVALID_SURFACE;\n    }\n\n    if (newImageBuffer) {\n        free(newImageBuffer);\n        newImageBuffer = NULL;\n    }\n\n    vaUnmapBuffer(va_dpy, surface_image.buf);\n    vaDestroyImage(va_dpy, surface_image.image_id);\n\n    return VA_STATUS_SUCCESS;\n}\n\n/* Store NV12/YV12/I420 surface to yv12 file */\nstatic VAStatus\nstore_yuv_surface_to_yv12_file(FILE *fp,\n                               VASurfaceID surface_id)\n{\n    VAStatus va_status;\n    VAImage surface_image;\n    void *surface_p = NULL;\n    unsigned char *y_src = NULL;\n    unsigned char *u_src = NULL;\n    unsigned char *v_src = NULL;\n    unsigned char *y_dst = NULL;\n    unsigned char *u_dst = NULL;\n    unsigned char *v_dst = NULL;\n    uint32_t row, col;\n    int32_t n_items;\n    unsigned char * newImageBuffer = NULL;\n    va_status = vaSyncSurface(va_dpy, surface_id);\n    CHECK_VASTATUS(va_status, \"vaSyncSurface\");\n\n    va_status = vaDeriveImage(va_dpy, surface_id, &surface_image);\n    CHECK_VASTATUS(va_status, \"vaDeriveImage\");\n\n    va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p);\n    CHECK_VASTATUS(va_status, \"vaMapBuffer\");\n\n    /* store the surface to one YV12 file or one bmp file*/\n    if (surface_image.format.fourcc == VA_FOURCC_YV12 ||\n        surface_image.format.fourcc == VA_FOURCC_I420 ||\n        surface_image.format.fourcc == VA_FOURCC_NV12) {\n\n        uint32_t y_size = surface_image.width * surface_image.height;\n        uint32_t u_size = y_size / 4;\n\n        newImageBuffer = (unsigned char*)malloc(y_size * 3 / 2);\n        assert(newImageBuffer);\n\n        /* stored as YV12 format */\n        y_dst = newImageBuffer;\n        v_dst = newImageBuffer + y_size;\n        u_dst = newImageBuffer + y_size + u_size;\n\n        y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]);\n        if (surface_image.format.fourcc == VA_FOURCC_YV12) {\n            v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]);\n        } else if (surface_image.format.fourcc == VA_FOURCC_I420) {\n            u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]);\n        } else if (surface_image.format.fourcc == VA_FOURCC_NV12) {\n            u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            v_src = u_src;\n        }\n\n        /* Y plane copy */\n        for (row = 0; row < surface_image.height; row++) {\n            memcpy(y_dst, y_src, surface_image.width);\n            y_src += surface_image.pitches[0];\n            y_dst += surface_image.width;\n        }\n\n        /* UV plane copy */\n        if (surface_image.format.fourcc == VA_FOURCC_YV12 ||\n            surface_image.format.fourcc == VA_FOURCC_I420) {\n            for (row = 0; row < surface_image.height / 2; row ++) {\n                memcpy(v_dst, v_src, surface_image.width / 2);\n                memcpy(u_dst, u_src, surface_image.width / 2);\n\n                v_dst += surface_image.width / 2;\n                u_dst += surface_image.width / 2;\n\n                if (surface_image.format.fourcc == VA_FOURCC_YV12) {\n                    v_src += surface_image.pitches[1];\n                    u_src += surface_image.pitches[2];\n                } else {\n                    v_src += surface_image.pitches[2];\n                    u_src += surface_image.pitches[1];\n                }\n            }\n        } else if (surface_image.format.fourcc == VA_FOURCC_NV12) {\n            for (row = 0; row < surface_image.height / 2; row++) {\n                for (col = 0; col < surface_image.width / 2; col++) {\n                    u_dst[col] = u_src[col * 2];\n                    v_dst[col] = u_src[col * 2 + 1];\n                }\n\n                u_src += surface_image.pitches[1];\n                u_dst += (surface_image.width / 2);\n                v_dst += (surface_image.width / 2);\n            }\n        }\n\n        /* write frame to file */\n        do {\n            n_items = fwrite(newImageBuffer, y_size * 3 / 2, 1, fp);\n        } while (n_items != 1);\n\n    } else {\n        printf(\"Not supported YUV surface fourcc !!! \\n\");\n        return VA_STATUS_ERROR_INVALID_SURFACE;\n    }\n\n    if (newImageBuffer) {\n        free(newImageBuffer);\n        newImageBuffer = NULL;\n    }\n\n    vaUnmapBuffer(va_dpy, surface_image.buf);\n    vaDestroyImage(va_dpy, surface_image.image_id);\n\n    return VA_STATUS_SUCCESS;\n}\n\nstatic VAStatus\nstore_yuv_surface_to_i420_file(FILE *fp,\n                               VASurfaceID surface_id)\n{\n    VAStatus va_status;\n    VAImage surface_image;\n    void *surface_p = NULL;\n    unsigned char *y_src = NULL;\n    unsigned char *u_src = NULL;\n    unsigned char *v_src = NULL;\n    unsigned char *y_dst = NULL;\n    unsigned char *u_dst = NULL;\n    unsigned char *v_dst = NULL;\n    uint32_t row, col;\n    int32_t n_items;\n    unsigned char * newImageBuffer = NULL;\n    va_status = vaSyncSurface(va_dpy, surface_id);\n    CHECK_VASTATUS(va_status, \"vaSyncSurface\");\n\n    va_status = vaDeriveImage(va_dpy, surface_id, &surface_image);\n    CHECK_VASTATUS(va_status, \"vaDeriveImage\");\n\n    va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p);\n    CHECK_VASTATUS(va_status, \"vaMapBuffer\");\n\n    /* store the surface to one i420 file */\n    if (surface_image.format.fourcc == VA_FOURCC_YV12 ||\n        surface_image.format.fourcc == VA_FOURCC_I420 ||\n        surface_image.format.fourcc == VA_FOURCC_NV12) {\n\n        uint32_t y_size = surface_image.width * surface_image.height;\n        uint32_t u_size = y_size / 4;\n\n        newImageBuffer = (unsigned char*)malloc(y_size * 3 / 2);\n        assert(newImageBuffer);\n\n        /* stored as YV12 format */\n        y_dst = newImageBuffer;\n        u_dst = newImageBuffer + y_size;\n        v_dst = newImageBuffer + y_size + u_size;\n\n        y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]);\n        if (surface_image.format.fourcc == VA_FOURCC_YV12) {\n            v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]);\n        } else if (surface_image.format.fourcc == VA_FOURCC_I420) {\n            u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]);\n        } else if (surface_image.format.fourcc == VA_FOURCC_NV12) {\n            u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            v_src = u_src;\n        }\n\n        /* Y plane copy */\n        for (row = 0; row < surface_image.height; row++) {\n            memcpy(y_dst, y_src, surface_image.width);\n            y_src += surface_image.pitches[0];\n            y_dst += surface_image.width;\n        }\n\n        /* UV plane copy */\n        if (surface_image.format.fourcc == VA_FOURCC_YV12 ||\n            surface_image.format.fourcc == VA_FOURCC_I420) {\n            for (row = 0; row < surface_image.height / 2; row ++) {\n                memcpy(v_dst, v_src, surface_image.width / 2);\n                memcpy(u_dst, u_src, surface_image.width / 2);\n\n                v_dst += surface_image.width / 2;\n                u_dst += surface_image.width / 2;\n\n                if (surface_image.format.fourcc == VA_FOURCC_YV12) {\n                    v_src += surface_image.pitches[1];\n                    u_src += surface_image.pitches[2];\n                } else {\n                    v_src += surface_image.pitches[2];\n                    u_src += surface_image.pitches[1];\n                }\n            }\n        } else if (surface_image.format.fourcc == VA_FOURCC_NV12) {\n            for (row = 0; row < surface_image.height / 2; row++) {\n                for (col = 0; col < surface_image.width / 2; col++) {\n                    u_dst[col] = u_src[col * 2];\n                    v_dst[col] = u_src[col * 2 + 1];\n                }\n\n                u_src += surface_image.pitches[1];\n                u_dst += (surface_image.width / 2);\n                v_dst += (surface_image.width / 2);\n            }\n        }\n\n        /* write frame to file */\n        do {\n            n_items = fwrite(newImageBuffer, y_size * 3 / 2, 1, fp);\n        } while (n_items != 1);\n\n    } else {\n        printf(\"Not supported YUV surface fourcc !!! \\n\");\n        return VA_STATUS_ERROR_INVALID_SURFACE;\n    }\n\n    if (newImageBuffer) {\n        free(newImageBuffer);\n        newImageBuffer = NULL;\n    }\n\n    vaUnmapBuffer(va_dpy, surface_image.buf);\n    vaDestroyImage(va_dpy, surface_image.image_id);\n\n    return VA_STATUS_SUCCESS;\n}\n\nstatic VAStatus\nstore_yuv_surface_to_nv12_file(FILE *fp,\n                               VASurfaceID surface_id)\n{\n    VAStatus va_status;\n    VAImage surface_image;\n    void *surface_p = NULL;\n    unsigned char *y_src = NULL;\n    unsigned char *u_src = NULL;\n    unsigned char *v_src = NULL;\n    unsigned char *y_dst = NULL;\n    unsigned char *u_dst = NULL;\n    unsigned char *v_dst = NULL;\n    uint32_t row, col;\n    int32_t n_items;\n    unsigned char * newImageBuffer = NULL;\n    va_status = vaSyncSurface(va_dpy, surface_id);\n    CHECK_VASTATUS(va_status, \"vaSyncSurface\");\n\n    va_status = vaDeriveImage(va_dpy, surface_id, &surface_image);\n    CHECK_VASTATUS(va_status, \"vaDeriveImage\");\n\n    va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p);\n    CHECK_VASTATUS(va_status, \"vaMapBuffer\");\n\n    /* store the surface to one nv12 file */\n    if (surface_image.format.fourcc == VA_FOURCC_YV12 ||\n        surface_image.format.fourcc == VA_FOURCC_I420 ||\n        surface_image.format.fourcc == VA_FOURCC_NV12) {\n\n        uint32_t y_size = surface_image.width * surface_image.height;\n\n        newImageBuffer = (unsigned char*)malloc(y_size * 3 / 2);\n        assert(newImageBuffer);\n\n        /* stored as YV12 format */\n        y_dst = newImageBuffer;\n        u_dst = v_dst = newImageBuffer + y_size;\n\n        y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]);\n\n        if (surface_image.format.fourcc == VA_FOURCC_YV12) {\n            v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]);\n        } else if (surface_image.format.fourcc == VA_FOURCC_I420) {\n            u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]);\n        } else if (surface_image.format.fourcc == VA_FOURCC_NV12) {\n            u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            v_src = u_src;\n        }\n\n        /* Y plane copy */\n        for (row = 0; row < surface_image.height; row++) {\n            memcpy(y_dst, y_src, surface_image.width);\n            y_src += surface_image.pitches[0];\n            y_dst += surface_image.width;\n        }\n\n        /* UV plane copy */\n        if (surface_image.format.fourcc == VA_FOURCC_YV12 ||\n            surface_image.format.fourcc == VA_FOURCC_I420) {\n            for (row = 0; row < surface_image.height / 2; row ++) {\n                for (col = 0; col < surface_image.width / 2; col++) {\n                    u_dst[col * 2] = u_src[col];\n                    u_dst[col * 2 + 1] = v_src[col];\n                }\n\n                u_dst += surface_image.width;\n\n                if (surface_image.format.fourcc == VA_FOURCC_YV12) {\n                    v_src += surface_image.pitches[1];\n                    u_src += surface_image.pitches[2];\n                } else {\n                    v_src += surface_image.pitches[2];\n                    u_src += surface_image.pitches[1];\n                }\n            }\n        } else if (surface_image.format.fourcc == VA_FOURCC_NV12) {\n            for (row = 0; row < surface_image.height / 2; row++) {\n                memcpy(u_dst, u_src, surface_image.width);\n                u_dst += surface_image.width;\n                u_src += surface_image.pitches[1];\n            }\n        }\n\n        /* write frame to file */\n        do {\n            n_items = fwrite(newImageBuffer, y_size * 3 / 2, 1, fp);\n        } while (n_items != 1);\n\n    } else {\n        printf(\"Not supported YUV surface fourcc !!! \\n\");\n        return VA_STATUS_ERROR_INVALID_SURFACE;\n    }\n\n    if (newImageBuffer) {\n        free(newImageBuffer);\n        newImageBuffer = NULL;\n    }\n\n    vaUnmapBuffer(va_dpy, surface_image.buf);\n    vaDestroyImage(va_dpy, surface_image.image_id);\n\n    return VA_STATUS_SUCCESS;\n}\n\nstatic VAStatus\nstore_packed_yuv_surface_to_packed_file(FILE *fp,\n                                        VASurfaceID surface_id)\n{\n    VAStatus va_status;\n    VAImage surface_image;\n    void *surface_p = NULL;\n    unsigned char *y_src = NULL;\n    unsigned char *y_dst = NULL;\n    uint32_t row;\n    int32_t n_items;\n    unsigned char * newImageBuffer = NULL;\n    va_status = vaSyncSurface(va_dpy, surface_id);\n    CHECK_VASTATUS(va_status, \"vaSyncSurface\");\n\n    va_status = vaDeriveImage(va_dpy, surface_id, &surface_image);\n    CHECK_VASTATUS(va_status, \"vaDeriveImage\");\n\n    va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p);\n    CHECK_VASTATUS(va_status, \"vaMapBuffer\");\n\n    /* store the surface to one YUY2 or UYVY file */\n    if (surface_image.format.fourcc == VA_FOURCC_YUY2 ||\n        surface_image.format.fourcc == VA_FOURCC_UYVY) {\n        uint32_t frame_size = surface_image.width * surface_image.height * 2;\n\n        newImageBuffer = (unsigned char*)malloc(frame_size);\n        assert(newImageBuffer);\n        memset(newImageBuffer, 0, frame_size);\n\n        /* stored as YUY2 or UYVY format */\n        y_dst = newImageBuffer;\n\n        y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]);\n\n        /* Plane 0 copy */\n        for (row = 0; row < surface_image.height; row++) {\n            memcpy(y_dst, y_src, surface_image.width * 2);\n            y_src += surface_image.pitches[0];\n            y_dst += surface_image.width * 2;\n        }\n\n        /* write frame to file */\n        do {\n            n_items = fwrite(newImageBuffer, frame_size, 1, fp);\n        } while (n_items != 1);\n\n    } else {\n        printf(\"Not supported YUV surface fourcc !!! \\n\");\n        return VA_STATUS_ERROR_INVALID_SURFACE;\n    }\n\n    if (newImageBuffer) {\n        free(newImageBuffer);\n        newImageBuffer = NULL;\n    }\n\n    vaUnmapBuffer(va_dpy, surface_image.buf);\n    vaDestroyImage(va_dpy, surface_image.image_id);\n\n    return VA_STATUS_SUCCESS;\n}\n\nstatic VAStatus\nstore_yuv_surface_to_10bit_file(FILE *fp, VASurfaceID surface_id)\n{\n    VAStatus va_status;\n    VAImage surface_image;\n    void *surface_p = NULL;\n    unsigned char *y_src = NULL;\n    unsigned char *u_src = NULL;\n    unsigned char *v_src = NULL;\n    unsigned char *y_dst = NULL;\n    unsigned char *u_dst = NULL;\n    unsigned char *v_dst = NULL;\n    uint32_t row;\n    int32_t n_items;\n    unsigned char * newImageBuffer = NULL;\n    va_status = vaSyncSurface(va_dpy, surface_id);\n    CHECK_VASTATUS(va_status, \"vaSyncSurface\");\n\n    va_status = vaDeriveImage(va_dpy, surface_id, &surface_image);\n    CHECK_VASTATUS(va_status, \"vaDeriveImage\");\n\n    va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p);\n    CHECK_VASTATUS(va_status, \"vaMapBuffer\");\n\n    /* store the surface to one 10bit file */\n    uint32_t y_size = surface_image.width * surface_image.height * 2;\n    uint32_t u_size = y_size / 4;\n\n    newImageBuffer = (unsigned char*)malloc(y_size * 3);\n    assert(newImageBuffer);\n    y_dst = newImageBuffer;\n\n    y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]);\n\n    /* Y plane copy */\n    for (row = 0; row < surface_image.height; row++) {\n        memcpy(y_dst, y_src, surface_image.width * 2);\n        y_src += surface_image.pitches[0];\n        y_dst += surface_image.width * 2;\n    }\n\n    if (surface_image.format.fourcc == VA_FOURCC_I010) {\n        u_dst = newImageBuffer + y_size;\n        v_dst = newImageBuffer + y_size + u_size;\n\n        u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n        v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]);\n\n        for (row = 0; row < surface_image.height / 2; row++) {\n            memcpy(u_dst, u_src, surface_image.width);\n            memcpy(v_dst, v_src, surface_image.width);\n\n            u_dst += surface_image.width;\n            v_dst += surface_image.width;\n\n            u_src += surface_image.pitches[1];\n            v_src += surface_image.pitches[2];\n        }\n    } else if (surface_image.format.fourcc == VA_FOURCC_P010) {\n        u_dst = newImageBuffer + y_size;\n        v_dst = u_dst;\n\n        u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n        v_src = u_src;\n\n        for (row = 0; row < surface_image.height / 2; row++) {\n            memcpy(u_dst, u_src, surface_image.width * 2);\n            u_dst += surface_image.width * 2;\n            u_src += surface_image.pitches[1];\n        }\n    } else {\n        printf(\"Not supported YUV surface fourcc !!! \\n\");\n        free(newImageBuffer);\n        return VA_STATUS_ERROR_INVALID_SURFACE;\n    }\n\n    /* write frame to file */\n    do {\n        n_items = fwrite(newImageBuffer, y_size * 3 / 2, 1, fp);\n    } while (n_items != 1);\n\n    if (newImageBuffer) {\n        free(newImageBuffer);\n        newImageBuffer = NULL;\n    }\n\n    vaUnmapBuffer(va_dpy, surface_image.buf);\n    vaDestroyImage(va_dpy, surface_image.image_id);\n\n    return VA_STATUS_SUCCESS;\n}\n\nstatic VAStatus\nstore_rgb_surface_to_rgb_file(FILE *fp, VASurfaceID surface_id)\n{\n    VAStatus va_status;\n    VAImage surface_image;\n    void *surface_p = NULL;\n    unsigned char *y_src = NULL;\n    unsigned char *y_dst = NULL;\n    uint32_t frame_size, row;\n    int32_t n_items;\n    unsigned char * newImageBuffer = NULL;\n    va_status = vaSyncSurface(va_dpy, surface_id);\n    CHECK_VASTATUS(va_status, \"vaSyncSurface\");\n\n    va_status = vaDeriveImage(va_dpy, surface_id, &surface_image);\n    CHECK_VASTATUS(va_status, \"vaDeriveImage\");\n\n    va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p);\n    CHECK_VASTATUS(va_status, \"vaMapBuffer\");\n\n    frame_size = surface_image.width * surface_image.height * 4;\n    newImageBuffer = (unsigned char*)malloc(frame_size);\n    assert(newImageBuffer);\n    y_dst = newImageBuffer;\n\n    y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]);\n\n    for (row = 0; row < surface_image.height; row++) {\n        memcpy(y_dst, y_src, surface_image.width * 4);\n        y_src += surface_image.pitches[0];\n        y_dst += surface_image.width * 4;\n    }\n\n    /* write frame to file */\n    do {\n        n_items = fwrite(newImageBuffer, frame_size, 1, fp);\n    } while (n_items != 1);\n\n    if (newImageBuffer) {\n        free(newImageBuffer);\n        newImageBuffer = NULL;\n    }\n\n    vaUnmapBuffer(va_dpy, surface_image.buf);\n    vaDestroyImage(va_dpy, surface_image.image_id);\n\n    return VA_STATUS_SUCCESS;\n}\n\nstatic VAStatus\nstore_yuv_surface_to_file(FILE *fp,\n                          VASurfaceID surface_id)\n{\n    if (g_out_fourcc == VA_FOURCC_YV12 ||\n        g_out_fourcc == VA_FOURCC_I420 ||\n        g_out_fourcc == VA_FOURCC_NV12) {\n        if (g_dst_file_fourcc == VA_FOURCC_YV12)\n            return store_yuv_surface_to_yv12_file(fp, surface_id);\n        else if (g_dst_file_fourcc == VA_FOURCC_I420)\n            return store_yuv_surface_to_i420_file(fp, surface_id);\n        else if (g_dst_file_fourcc == VA_FOURCC_NV12)\n            return store_yuv_surface_to_nv12_file(fp, surface_id);\n        else {\n            printf(\"Not supported YUV fourcc for output !!!\\n\");\n            return VA_STATUS_ERROR_INVALID_SURFACE;\n        }\n    } else if ((g_out_fourcc == VA_FOURCC_YUY2 &&\n                g_dst_file_fourcc == VA_FOURCC_YUY2) ||\n               (g_out_fourcc == VA_FOURCC_UYVY &&\n                g_dst_file_fourcc == VA_FOURCC_UYVY)) {\n        return store_packed_yuv_surface_to_packed_file(fp, surface_id);\n    } else if ((g_out_fourcc == VA_FOURCC_I010 &&\n                g_dst_file_fourcc == VA_FOURCC_I010) ||\n               (g_out_fourcc == VA_FOURCC_P010 &&\n                g_dst_file_fourcc == VA_FOURCC_P010)) {\n        return store_yuv_surface_to_10bit_file(fp, surface_id);\n    } else if ((g_out_fourcc == VA_FOURCC_RGBA &&\n                g_dst_file_fourcc == VA_FOURCC_RGBA) ||\n               (g_out_fourcc == VA_FOURCC_RGBX &&\n                g_dst_file_fourcc == VA_FOURCC_RGBX) ||\n               (g_out_fourcc == VA_FOURCC_RGBA &&\n                g_dst_file_fourcc == VA_FOURCC_BGRA) ||\n               (g_out_fourcc == VA_FOURCC_BGRX &&\n                g_dst_file_fourcc == VA_FOURCC_BGRX)) {\n        return store_rgb_surface_to_rgb_file(fp, surface_id);\n    } else {\n        printf(\"Not supported YUV fourcc for output !!!\\n\");\n        return VA_STATUS_ERROR_INVALID_SURFACE;\n    }\n}\n\nstatic VAStatus\ndenoise_filter_init(VABufferID *filter_param_buf_id)\n{\n    VAStatus va_status = VA_STATUS_SUCCESS;\n    VAProcFilterParameterBuffer denoise_param;\n    VABufferID denoise_param_buf_id;\n    float intensity;\n\n    VAProcFilterCap denoise_caps;\n    uint32_t num_denoise_caps = 1;\n    va_status = vaQueryVideoProcFilterCaps(va_dpy, context_id,\n                                           VAProcFilterNoiseReduction,\n                                           &denoise_caps, &num_denoise_caps);\n    CHECK_VASTATUS(va_status, \"vaQueryVideoProcFilterCaps\");\n\n    if (read_value_float(g_config_file_fd, \"DENOISE_INTENSITY\", &intensity)) {\n        printf(\"Read denoise intensity failed, use default value\");\n        intensity = denoise_caps.range.default_value;\n    }\n    intensity = adjust_to_range(&denoise_caps.range, intensity);\n\n    denoise_param.type  = VAProcFilterNoiseReduction;\n    denoise_param.value = intensity;\n\n    printf(\"Denoise intensity: %f\\n\", intensity);\n\n    va_status = vaCreateBuffer(va_dpy, context_id,\n                               VAProcFilterParameterBufferType, sizeof(denoise_param), 1,\n                               &denoise_param, &denoise_param_buf_id);\n    CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n    *filter_param_buf_id = denoise_param_buf_id;\n\n    return va_status;\n}\nstatic VAStatus\nvideo_frame_process(VASurfaceID in_surface_id,\n                    VASurfaceID out_surface_id)\n{\n    VAStatus va_status;\n    VAProcPipelineParameterBuffer pipeline_param;\n    VARectangle surface_region, output_region;\n    VABufferID pipeline_param_buf_id = VA_INVALID_ID;\n    VABufferID filter_param_buf_id = VA_INVALID_ID;\n    denoise_filter_init(&filter_param_buf_id);\n    /* Fill pipeline buffer */\n    surface_region.x = 0;\n    surface_region.y = 0;\n    surface_region.width = g_in_pic_width;\n    surface_region.height = g_in_pic_height;\n    output_region.x = 0;\n    output_region.y = 0;\n    output_region.width = g_out_pic_width;\n    output_region.height = g_out_pic_height;\n\n    memset(&pipeline_param, 0, sizeof(pipeline_param));\n    pipeline_param.surface = in_surface_id;\n    pipeline_param.surface_region = &surface_region;\n    pipeline_param.output_region = &output_region;\n    pipeline_param.filter_flags = 0;\n    pipeline_param.filters      = &filter_param_buf_id;\n    pipeline_param.num_filters  = 1;\n\n    va_status = vaCreateBuffer(va_dpy,\n                               context_id,\n                               VAProcPipelineParameterBufferType,\n                               sizeof(pipeline_param),\n                               1,\n                               &pipeline_param,\n                               &pipeline_param_buf_id);\n    CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n    va_status = vaBeginPicture(va_dpy,\n                               context_id,\n                               out_surface_id);\n    CHECK_VASTATUS(va_status, \"vaBeginPicture\");\n\n    va_status = vaRenderPicture(va_dpy,\n                                context_id,\n                                &pipeline_param_buf_id,\n                                1);\n    CHECK_VASTATUS(va_status, \"vaRenderPicture\");\n\n    va_status = vaEndPicture(va_dpy, context_id);\n    CHECK_VASTATUS(va_status, \"vaEndPicture\");\n\n    if (filter_param_buf_id != VA_INVALID_ID)\n        vaDestroyBuffer(va_dpy, filter_param_buf_id);\n\n    if (pipeline_param_buf_id != VA_INVALID_ID)\n        vaDestroyBuffer(va_dpy, pipeline_param_buf_id);\n\n    return va_status;\n}\n\nstatic VAStatus\nvpp_context_create()\n{\n    VAStatus va_status = VA_STATUS_SUCCESS;\n    uint32_t i;\n    int32_t j;\n\n    /* VA driver initialization */\n    va_dpy = va_open_display();\n    int32_t major_ver, minor_ver;\n    va_status = vaInitialize(va_dpy, &major_ver, &minor_ver);\n    assert(va_status == VA_STATUS_SUCCESS);\n\n    /* Check whether VPP is supported by driver */\n    VAEntrypoint entrypoints[5];\n    int32_t num_entrypoints;\n    num_entrypoints = vaMaxNumEntrypoints(va_dpy);\n    va_status = vaQueryConfigEntrypoints(va_dpy,\n                                         VAProfileNone,\n                                         entrypoints,\n                                         &num_entrypoints);\n    CHECK_VASTATUS(va_status, \"vaQueryConfigEntrypoints\");\n\n    for (j = 0; j < num_entrypoints; j++) {\n        if (entrypoints[j] == VAEntrypointVideoProc)\n            break;\n    }\n\n    if (j == num_entrypoints) {\n        printf(\"VPP is not supported by driver\\n\");\n        assert(0);\n    }\n\n    /* Render target surface format check */\n    VAConfigAttrib attrib;\n    attrib.type = VAConfigAttribRTFormat;\n    va_status = vaGetConfigAttributes(va_dpy,\n                                      VAProfileNone,\n                                      VAEntrypointVideoProc,\n                                      &attrib,\n                                      1);\n    CHECK_VASTATUS(va_status, \"vaGetConfigAttributes\");\n    if (!(attrib.value & g_out_format)) {\n        printf(\"RT format %d is not supported by VPP !\\n\", g_out_format);\n        assert(0);\n    }\n\n    /* Create surface/config/context for VPP pipeline */\n    va_status = create_surface(&g_in_surface_id, g_in_pic_width, g_in_pic_height,\n                               g_in_fourcc, g_in_format);\n    CHECK_VASTATUS(va_status, \"vaCreateSurfaces for input\");\n\n    va_status = create_surface(&g_out_surface_id, g_out_pic_width, g_out_pic_height,\n                               g_out_fourcc, g_out_format);\n    CHECK_VASTATUS(va_status, \"vaCreateSurfaces for output\");\n\n    va_status = vaCreateConfig(va_dpy,\n                               VAProfileNone,\n                               VAEntrypointVideoProc,\n                               &attrib,\n                               1,\n                               &config_id);\n    CHECK_VASTATUS(va_status, \"vaCreateConfig\");\n\n    va_status = vaCreateContext(va_dpy,\n                                config_id,\n                                g_out_pic_width,\n                                g_out_pic_height,\n                                VA_PROGRESSIVE,\n                                &g_out_surface_id,\n                                1,\n                                &context_id);\n    CHECK_VASTATUS(va_status, \"vaCreateContext\");\n\n    uint32_t supported_filter_num = VAProcFilterCount;\n    VAProcFilterType supported_filter_types[VAProcFilterCount];\n\n    va_status = vaQueryVideoProcFilters(va_dpy,\n                                        context_id,\n                                        supported_filter_types,\n                                        &supported_filter_num);\n\n    CHECK_VASTATUS(va_status, \"vaQueryVideoProcFilters\");\n\n    for (i = 0; i < supported_filter_num; i++) {\n        if (supported_filter_types[i] == VAProcFilterNoiseReduction)\n            break;\n    }\n\n    if (i == supported_filter_num) {\n        printf(\"VPP filter type VAProcFilterNoiseReduction is not supported by driver !\\n\");\n        assert(0);\n    }\n    return va_status;\n}\n\nstatic void\nvpp_context_destroy()\n{\n    /* Release resource */\n    vaDestroySurfaces(va_dpy, &g_in_surface_id, 1);\n    vaDestroySurfaces(va_dpy, &g_out_surface_id, 1);\n    vaDestroyContext(va_dpy, context_id);\n    vaDestroyConfig(va_dpy, config_id);\n\n    vaTerminate(va_dpy);\n    va_close_display(va_dpy);\n}\n\nstatic int8_t\nparse_fourcc_and_format(char *str, uint32_t *fourcc, uint32_t *format)\n{\n    uint32_t tfourcc = VA_FOURCC('N', 'V', '1', '2');\n    uint32_t tformat = VA_RT_FORMAT_YUV420;\n\n    if (!strcmp(str, \"YV12\")) {\n        tfourcc = VA_FOURCC('Y', 'V', '1', '2');\n    } else if (!strcmp(str, \"I420\")) {\n        tfourcc = VA_FOURCC('I', '4', '2', '0');\n    } else if (!strcmp(str, \"NV12\")) {\n        tfourcc = VA_FOURCC('N', 'V', '1', '2');\n    } else if (!strcmp(str, \"YUY2\") || !strcmp(str, \"YUYV\")) {\n        tfourcc = VA_FOURCC('Y', 'U', 'Y', '2');\n    } else if (!strcmp(str, \"UYVY\")) {\n        tfourcc = VA_FOURCC('U', 'Y', 'V', 'Y');\n    } else if (!strcmp(str, \"P010\")) {\n        tfourcc = VA_FOURCC('P', '0', '1', '0');\n    } else if (!strcmp(str, \"I010\")) {\n        tfourcc = VA_FOURCC('I', '0', '1', '0');\n    } else if (!strcmp(str, \"RGBA\")) {\n        tfourcc = VA_FOURCC_RGBA;\n    } else if (!strcmp(str, \"RGBX\")) {\n        tfourcc = VA_FOURCC_RGBX;\n    } else if (!strcmp(str, \"BGRA\")) {\n        tfourcc = VA_FOURCC_BGRA;\n    } else if (!strcmp(str, \"BGRX\")) {\n        tfourcc = VA_FOURCC_BGRX;\n    } else {\n        printf(\"Not supported format: %s! Currently only support following format: %s\\n\",\n               str, \"YV12, I420, NV12, YUY2(YUYV), UYVY, P010, I010, RGBA, RGBX, BGRA or BGRX\");\n        assert(0);\n    }\n\n    if (fourcc)\n        *fourcc = tfourcc;\n\n    if (format)\n        *format = tformat;\n\n    return 0;\n}\n\nstatic int8_t\nparse_basic_parameters()\n{\n    char str[MAX_LEN];\n\n    /* Read src frame file information */\n    read_value_string(g_config_file_fd, \"SRC_FILE_NAME\", g_src_file_name);\n    read_value_uint32(g_config_file_fd, \"SRC_FRAME_WIDTH\", &g_in_pic_width);\n    read_value_uint32(g_config_file_fd, \"SRC_FRAME_HEIGHT\", &g_in_pic_height);\n    read_value_string(g_config_file_fd, \"SRC_FRAME_FORMAT\", str);\n    parse_fourcc_and_format(str, &g_in_fourcc, &g_in_format);\n\n    /* Read dst frame file information */\n    read_value_string(g_config_file_fd, \"DST_FILE_NAME\", g_dst_file_name);\n    read_value_uint32(g_config_file_fd, \"DST_FRAME_WIDTH\", &g_out_pic_width);\n    read_value_uint32(g_config_file_fd, \"DST_FRAME_HEIGHT\", &g_out_pic_height);\n    read_value_string(g_config_file_fd, \"DST_FRAME_FORMAT\", str);\n    parse_fourcc_and_format(str, &g_out_fourcc, &g_out_format);\n\n    read_value_string(g_config_file_fd, \"SRC_FILE_FORMAT\", str);\n    parse_fourcc_and_format(str, &g_src_file_fourcc, NULL);\n\n    read_value_string(g_config_file_fd, \"DST_FILE_FORMAT\", str);\n    parse_fourcc_and_format(str, &g_dst_file_fourcc, NULL);\n\n    read_value_uint32(g_config_file_fd, \"FRAME_SUM\", &g_frame_count);\n\n    if (g_in_pic_width != g_out_pic_width ||\n        g_in_pic_height != g_out_pic_height)\n        printf(\"Scaling will be done : from %4d x %4d to %4d x %4d \\n\",\n               g_in_pic_width, g_in_pic_height,\n               g_out_pic_width, g_out_pic_height);\n\n    if (g_in_fourcc != g_out_fourcc)\n        printf(\"Format conversion will be done: from %d to %d \\n\",\n               g_in_fourcc, g_out_fourcc);\n\n    return 0;\n}\n\nstatic void\nprint_help()\n{\n    printf(\"The app is used to test the denoise feature.\\n\");\n    printf(\"Cmd Usage: ./vppdenoise process_denoise.cfg\\n\");\n    printf(\"The configure file process_denoise.cfg is used to configure the para.\\n\");\n    printf(\"You can refer process_denoise.cfg.template for each para meaning and create the configure file.\\n\");\n}\nint32_t main(int32_t argc, char *argv[])\n{\n    VAStatus va_status;\n    uint32_t i;\n\n    if (argc != 2 || !strcmp(argv[1], \"-h\") || !strcmp(argv[1], \"--help\")) {\n        print_help();\n        return -1;\n    }\n\n    /* Parse the configure file for video process*/\n    strncpy(g_config_file_name, argv[1], MAX_LEN);\n    g_config_file_name[MAX_LEN - 1] = '\\0';\n\n    if (NULL == (g_config_file_fd = fopen(g_config_file_name, \"r\"))) {\n        printf(\"Open configure file %s failed!\\n\", g_config_file_name);\n        assert(0);\n    }\n\n    /* Parse basic parameters */\n    if (parse_basic_parameters()) {\n        printf(\"Parse parameters in configure file error\\n\");\n        assert(0);\n    }\n\n    va_status = vpp_context_create();\n    if (va_status != VA_STATUS_SUCCESS) {\n        printf(\"vpp context create failed \\n\");\n        assert(0);\n    }\n\n    /* Video frame fetch, process and store */\n    if (NULL == (g_src_file_fd = fopen(g_src_file_name, \"r\"))) {\n        printf(\"Open SRC_FILE_NAME: %s failed, please specify it in config file: %s !\\n\",\n               g_src_file_name, g_config_file_name);\n        assert(0);\n    }\n\n    if (NULL == (g_dst_file_fd = fopen(g_dst_file_name, \"w\"))) {\n        printf(\"Open DST_FILE_NAME: %s failed, please specify it in config file: %s !\\n\",\n               g_dst_file_name, g_config_file_name);\n        assert(0);\n    }\n\n    printf(\"\\nStart to process, ...\\n\");\n    struct timespec Pre_time;\n    struct timespec Cur_time;\n    unsigned int duration = 0;\n    clock_gettime(CLOCK_MONOTONIC, &Pre_time);\n\n    for (i = 0; i < g_frame_count; i ++) {\n        upload_yuv_frame_to_yuv_surface(g_src_file_fd, g_in_surface_id);\n        video_frame_process(g_in_surface_id, g_out_surface_id);\n        store_yuv_surface_to_file(g_dst_file_fd, g_out_surface_id);\n    }\n\n    clock_gettime(CLOCK_MONOTONIC, &Cur_time);\n    duration = (Cur_time.tv_sec - Pre_time.tv_sec) * 1000;\n    if (Cur_time.tv_nsec > Pre_time.tv_nsec) {\n        duration += (Cur_time.tv_nsec - Pre_time.tv_nsec) / 1000000;\n    } else {\n        duration += (Cur_time.tv_nsec + 1000000000 - Pre_time.tv_nsec) / 1000000 - 1000;\n    }\n    printf(\"Finish processing, performance: \\n\");\n    printf(\"%d frames processed in: %d ms, ave time = %d ms\\n\", g_frame_count, duration, duration / g_frame_count);\n\n    if (g_src_file_fd)\n        fclose(g_src_file_fd);\n\n    if (g_dst_file_fd)\n        fclose(g_dst_file_fd);\n\n    if (g_config_file_fd)\n        fclose(g_config_file_fd);\n\n    vpp_context_destroy();\n\n    return 0;\n}\n\n"
  },
  {
    "path": "videoprocess/vpphdr_tm.cpp",
    "content": "/*\n* Copyright (c) 2009-2022, Intel Corporation\n*\n* Permission is hereby granted, free of charge, to any person obtaining a\n* copy of this software and associated documentation files (the \"Software\"),\n* to deal in the Software without restriction, including without limitation\n* the rights to use, copy, modify, merge, publish, distribute, sublicense,\n* and/or sell copies of the Software, and to permit persons to whom the\n* Software is furnished to do so, subject to the following conditions:\n*\n* The above copyright notice and this permission notice shall be included\n* in all copies or substantial portions of the Software.\n*\n* THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR\n* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,\n* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\n* OTHER DEALINGS IN THE SOFTWARE.\n*/\n/*\n * Video process test case based on LibVA.\n * This test covers high dynamic range tone mapping feature.\n * Usage: ./vpphdr_tm process_hdr_tm.cfg\n */\n\n#include <stdio.h>\n#include <stdlib.h>\n#include <string.h>\n#include <stdint.h>\n#include <time.h>\n#include <assert.h>\n#include <va/va.h>\n#include <va/va_vpp.h>\n#include \"va_display.h\"\n\n#ifndef VA_FOURCC_I420\n#define VA_FOURCC_I420 0x30323449\n#endif\n\n#define MAX_LEN   1024\n\n#define CHECK_VASTATUS(va_status,func)                                      \\\n  if (va_status != VA_STATUS_SUCCESS) {                                     \\\n      printf(\"%s:%s (%d) failed,exit\\n\", __func__, func, __LINE__);         \\\n      exit(1);                                                              \\\n  }\n\nstatic VADisplay va_dpy = NULL;\nstatic VAContextID context_id = 0;\nstatic VAConfigID  config_id = 0;\nstatic VASurfaceID g_in_surface_id = VA_INVALID_ID;\nstatic VASurfaceID g_out_surface_id = VA_INVALID_ID;\n\nstatic FILE* g_config_file_fd = NULL;\nstatic FILE* g_src_file_fd = NULL;\nstatic FILE* g_dst_file_fd = NULL;\n\nstatic char g_config_file_name[MAX_LEN];\nstatic char g_src_file_name[MAX_LEN];\nstatic char g_dst_file_name[MAX_LEN];\n\nstatic uint32_t g_in_pic_width = 1920;\nstatic uint32_t g_in_pic_height = 1080;\nstatic uint32_t g_out_pic_width = 1920;\nstatic uint32_t g_out_pic_height = 1080;\n\nstatic uint32_t g_in_fourcc  = VA_FOURCC('N', 'V', '1', '2');\nstatic uint32_t g_in_format  = VA_FOURCC_P010;\nstatic uint32_t g_out_fourcc = VA_FOURCC('N', 'V', '1', '2');\nstatic uint32_t g_out_format = VA_RT_FORMAT_YUV420;\nstatic uint32_t g_src_file_fourcc = VA_FOURCC('I', '4', '2', '0');\nstatic uint32_t g_dst_file_fourcc = VA_FOURCC('Y', 'V', '1', '2');\n\nstatic uint32_t g_frame_count = 1;\n// The maximum display luminace is 1000 nits by default.\nstatic uint32_t g_in_max_display_luminance = 10000000;\nstatic uint32_t g_in_min_display_luminance = 100;\nstatic uint32_t g_in_max_content_luminance = 4000;\nstatic uint32_t g_in_pic_average_luminance = 1000;\n// The maximum display luminace is 1000 nits by default.\nstatic uint32_t g_out_max_display_luminance = 10000000;\nstatic uint32_t g_out_min_display_luminance = 100;\nstatic uint32_t g_out_max_content_luminance = 4000;\nstatic uint32_t g_out_pic_average_luminance = 1000;\n\nstatic uint32_t g_in_colour_primaries = 9;\nstatic uint32_t g_in_transfer_characteristic = 16;\n\nstatic uint32_t g_out_colour_primaries = 9;\nstatic uint32_t g_out_transfer_characteristic = 16;\n\nstatic uint32_t g_tm_type = 1;\n\nstatic int8_t\nread_value_string(FILE *fp, const char* field_name, char* value)\n{\n    char strLine[MAX_LEN];\n    char* field = NULL;\n    char* str = NULL;\n    uint16_t i;\n\n    if (!fp || !field_name || !value)  {\n        printf(\"Invalid fuction parameters\\n\");\n        return -1;\n    }\n\n    rewind(fp);\n\n    while (!feof(fp)) {\n        if (!fgets(strLine, MAX_LEN, fp))\n            continue;\n\n        for (i = 0; i < MAX_LEN && strLine[i]; i++)\n            if (strLine[i] != ' ') break;\n\n        if (i == MAX_LEN || strLine[i] == '#' || strLine[i] == '\\n')\n            continue;\n\n        field = strtok(&strLine[i], \":\");\n        if (strncmp(field, field_name, strlen(field_name)))\n            continue;\n\n        if (!(str = strtok(NULL, \":\")))\n            continue;\n\n        /* skip blank space in string */\n        while (*str == ' ')\n            str++;\n\n        *(str + strlen(str) - 1) = '\\0';\n        strcpy(value, str);\n\n        return 0;\n    }\n    return -1;\n}\n\nstatic int8_t\nread_value_uint32(FILE* fp, const char* field_name, uint32_t* value)\n{\n    char str[MAX_LEN];\n\n    if (read_value_string(fp, field_name, str)) {\n        printf(\"Failed to find integer field: %s\", field_name);\n        return -1;\n    }\n\n    *value = (uint32_t)atoi(str);\n\n    return 0;\n}\n\nstatic VAStatus\ncreate_surface(VASurfaceID * p_surface_id,\n               uint32_t width, uint32_t height,\n               uint32_t fourCC, uint32_t format)\n{\n    VAStatus va_status;\n    VASurfaceAttrib    surface_attrib;\n    surface_attrib.type =  VASurfaceAttribPixelFormat;\n    surface_attrib.flags = VA_SURFACE_ATTRIB_SETTABLE;\n    surface_attrib.value.type = VAGenericValueTypeInteger;\n    surface_attrib.value.value.i = fourCC;\n\n    va_status = vaCreateSurfaces(va_dpy,\n                                 format,\n                                 width,\n                                 height,\n                                 p_surface_id,\n                                 1,\n                                 &surface_attrib,\n                                 1);\n\n    printf(\"create_surface: p_surface_id %d, width %d, height %d, fourCC 0x%x, format 0x%x\\n\",\n           *p_surface_id, width, height, fourCC, format);\n\n    return va_status;\n}\n\nstatic VAStatus\nhdrtm_filter_init(VABufferID *filter_param_buf_id, uint32_t tm_type)\n{\n    VAStatus va_status = VA_STATUS_SUCCESS;\n    VAProcFilterParameterBufferHDRToneMapping hdrtm_param;\n\n    VAHdrMetaDataHDR10 in_hdr10_metadata = {};\n\n    // The input is HDR content\n    in_hdr10_metadata.max_display_mastering_luminance = g_in_max_display_luminance;\n    in_hdr10_metadata.min_display_mastering_luminance = g_in_min_display_luminance;\n    in_hdr10_metadata.max_content_light_level         = g_in_max_content_luminance;\n    in_hdr10_metadata.max_pic_average_light_level     = g_in_pic_average_luminance;\n    in_hdr10_metadata.display_primaries_x[0] = 8500;\n    in_hdr10_metadata.display_primaries_y[0] = 39850;\n    in_hdr10_metadata.display_primaries_x[1] = 35400;\n    in_hdr10_metadata.display_primaries_y[1] = 14600;\n    in_hdr10_metadata.display_primaries_x[2] = 6550;\n    in_hdr10_metadata.display_primaries_y[2] = 2300;\n    in_hdr10_metadata.white_point_x = 15635;\n    in_hdr10_metadata.white_point_y = 16450;\n\n    hdrtm_param.type = VAProcFilterHighDynamicRangeToneMapping;\n    hdrtm_param.data.metadata_type = VAProcHighDynamicRangeMetadataHDR10;\n    hdrtm_param.data.metadata = &in_hdr10_metadata;\n    hdrtm_param.data.metadata_size = sizeof(VAHdrMetaDataHDR10);\n\n    va_status = vaCreateBuffer(va_dpy, context_id, VAProcFilterParameterBufferType, sizeof(hdrtm_param), 1, (void *)&hdrtm_param, filter_param_buf_id);\n\n    return va_status;\n}\n\nstatic VAStatus\nhdrtm_metadata_init(VAHdrMetaData &out_metadata, uint32_t tm_type, VAHdrMetaDataHDR10 &out_hdr10_metadata)\n{\n    VAStatus va_status = VA_STATUS_SUCCESS;\n\n\n    out_hdr10_metadata.max_display_mastering_luminance = g_out_max_display_luminance;\n    out_hdr10_metadata.min_display_mastering_luminance = g_out_min_display_luminance;\n    out_hdr10_metadata.max_content_light_level         = g_out_max_content_luminance;\n    out_hdr10_metadata.max_pic_average_light_level     = g_out_pic_average_luminance;\n    printf(\"hdrtm_metadata_init g_out_max_display_luminance %d, g_out_min_display_luminance %d\\n\", g_out_max_display_luminance, g_out_min_display_luminance);\n    printf(\"hdrtm_metadata_init g_out_max_content_luminance %d, g_out_pic_average_luminance %d\\n\", g_out_max_content_luminance, g_out_pic_average_luminance);\n\n    // HDR display or SDR display\n    switch (tm_type) {\n    case VA_TONE_MAPPING_HDR_TO_HDR:\n        out_hdr10_metadata.display_primaries_x[0] = 8500;\n        out_hdr10_metadata.display_primaries_y[0] = 39850;\n        out_hdr10_metadata.display_primaries_x[1] = 35400;\n        out_hdr10_metadata.display_primaries_y[1] = 14600;\n        out_hdr10_metadata.display_primaries_x[2] = 6550;\n        out_hdr10_metadata.display_primaries_y[2] = 2300;\n        out_hdr10_metadata.white_point_x = 15635;\n        out_hdr10_metadata.white_point_y = 16450;\n        break;\n    case VA_TONE_MAPPING_HDR_TO_SDR:\n        out_hdr10_metadata.display_primaries_x[0] = 15000;\n        out_hdr10_metadata.display_primaries_y[0] = 30000;\n        out_hdr10_metadata.display_primaries_x[1] = 32000;\n        out_hdr10_metadata.display_primaries_y[1] = 16500;\n        out_hdr10_metadata.display_primaries_x[2] = 7500;\n        out_hdr10_metadata.display_primaries_y[2] = 3000;\n        out_hdr10_metadata.white_point_x = 15635;\n        out_hdr10_metadata.white_point_y = 16450;\n        break;\n    default:\n        break;\n    }\n\n    out_metadata.metadata_type = VAProcHighDynamicRangeMetadataHDR10;\n    out_metadata.metadata = &out_hdr10_metadata;\n    out_metadata.metadata_size = sizeof(VAHdrMetaDataHDR10);\n\n    return va_status;\n}\n\nstatic VAStatus\nvideo_frame_process(VASurfaceID in_surface_id,\n                    VASurfaceID out_surface_id)\n{\n    VAStatus va_status;\n    VAProcPipelineParameterBuffer pipeline_param = {};\n    VARectangle surface_region = {}, output_region = {};\n    VABufferID pipeline_param_buf_id = VA_INVALID_ID;\n    VABufferID filter_param_buf_id = VA_INVALID_ID;\n    VAHdrMetaData out_metadata = {};\n\n    /*Query Filter's Caps: The return value will be HDR10 and H2S, H2H, H2E. */\n    VAProcFilterCapHighDynamicRange hdrtm_caps[VAProcHighDynamicRangeMetadataTypeCount];\n    uint32_t num_hdrtm_caps = VAProcHighDynamicRangeMetadataTypeCount;\n    memset(&hdrtm_caps, 0, sizeof(VAProcFilterCapHighDynamicRange)*num_hdrtm_caps);\n    va_status = vaQueryVideoProcFilterCaps(va_dpy, context_id,\n                                           VAProcFilterHighDynamicRangeToneMapping,\n                                           (void *)hdrtm_caps, &num_hdrtm_caps);\n    CHECK_VASTATUS(va_status, \"vaQueryVideoProcFilterCaps\");\n    printf(\"vaQueryVideoProcFilterCaps num_hdrtm_caps %d\\n\", num_hdrtm_caps);\n    for (int i = 0; i < num_hdrtm_caps; ++i)    {\n        printf(\"vaQueryVideoProcFilterCaps hdrtm_caps[%d]: metadata type %d, flag %d\\n\", i, hdrtm_caps[i].metadata_type, hdrtm_caps[i].caps_flag);\n    }\n\n    hdrtm_filter_init(&filter_param_buf_id, g_tm_type);\n    VAHdrMetaDataHDR10 out_hdr10_metadata = {};\n    hdrtm_metadata_init(out_metadata, g_tm_type, out_hdr10_metadata);\n\n    /* Fill pipeline buffer */\n    surface_region.x = 0;\n    surface_region.y = 0;\n    surface_region.width = g_in_pic_width;\n    surface_region.height = g_in_pic_height;\n    output_region.x = 0;\n    output_region.y = 0;\n    output_region.width = g_out_pic_width;\n    output_region.height = g_out_pic_height;\n\n    memset(&pipeline_param, 0, sizeof(pipeline_param));\n    pipeline_param.surface = in_surface_id;\n    pipeline_param.surface_region = &surface_region;\n    pipeline_param.output_region = &output_region;\n    pipeline_param.filter_flags = 0;\n    pipeline_param.filters      = &filter_param_buf_id;\n    pipeline_param.num_filters  = 1;\n    pipeline_param.surface_color_standard = VAProcColorStandardExplicit;\n    pipeline_param.input_color_properties.colour_primaries = g_in_colour_primaries;\n    pipeline_param.input_color_properties.transfer_characteristics = g_in_transfer_characteristic;\n    pipeline_param.output_color_standard = VAProcColorStandardExplicit;\n    pipeline_param.output_color_properties.colour_primaries = g_out_colour_primaries;\n    pipeline_param.output_color_properties.transfer_characteristics = g_out_transfer_characteristic;\n    pipeline_param.output_hdr_metadata = &out_metadata;\n\n    va_status = vaCreateBuffer(va_dpy,\n                               context_id,\n                               VAProcPipelineParameterBufferType,\n                               sizeof(pipeline_param),\n                               1,\n                               &pipeline_param,\n                               &pipeline_param_buf_id);\n    CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n    va_status = vaBeginPicture(va_dpy,\n                               context_id,\n                               out_surface_id);\n    CHECK_VASTATUS(va_status, \"vaBeginPicture\");\n\n    va_status = vaRenderPicture(va_dpy,\n                                context_id,\n                                &pipeline_param_buf_id,\n                                1);\n    CHECK_VASTATUS(va_status, \"vaRenderPicture\");\n\n    va_status = vaEndPicture(va_dpy, context_id);\n    CHECK_VASTATUS(va_status, \"vaEndPicture\");\n\n    if (filter_param_buf_id != VA_INVALID_ID)\n        vaDestroyBuffer(va_dpy, filter_param_buf_id);\n\n    if (pipeline_param_buf_id != VA_INVALID_ID)\n        vaDestroyBuffer(va_dpy, pipeline_param_buf_id);\n\n    return va_status;\n}\n\nstatic VAStatus\nvpp_context_create()\n{\n    VAStatus va_status = VA_STATUS_SUCCESS;\n    uint32_t i;\n    int32_t j;\n\n    /* VA driver initialization */\n    va_dpy = va_open_display();\n    int32_t major_ver, minor_ver;\n    va_status = vaInitialize(va_dpy, &major_ver, &minor_ver);\n    assert(va_status == VA_STATUS_SUCCESS);\n\n    /* Check whether VPP is supported by driver */\n    VAEntrypoint entrypoints[5];\n    int32_t num_entrypoints;\n    num_entrypoints = vaMaxNumEntrypoints(va_dpy);\n    va_status = vaQueryConfigEntrypoints(va_dpy,\n                                         VAProfileNone,\n                                         entrypoints,\n                                         &num_entrypoints);\n    CHECK_VASTATUS(va_status, \"vaQueryConfigEntrypoints\");\n\n    for (j = 0; j < num_entrypoints; j++) {\n        if (entrypoints[j] == VAEntrypointVideoProc)\n            break;\n    }\n\n    if (j == num_entrypoints) {\n        printf(\"VPP is not supported by driver\\n\");\n        assert(0);\n    }\n\n    /* Render target surface format check */\n    VAConfigAttrib attrib;\n    attrib.type = VAConfigAttribRTFormat;\n    va_status = vaGetConfigAttributes(va_dpy,\n                                      VAProfileNone,\n                                      VAEntrypointVideoProc,\n                                      &attrib,\n                                      1);\n    CHECK_VASTATUS(va_status, \"vaGetConfigAttributes\");\n    if (!(attrib.value & g_out_format)) {\n        printf(\"RT format %d is not supported by VPP !\\n\", g_out_format);\n        //assert(0);\n    }\n\n    /* Create surface/config/context for VPP pipeline */\n    va_status = create_surface(&g_in_surface_id, g_in_pic_width, g_in_pic_height,\n                               g_in_fourcc, g_in_format);\n    CHECK_VASTATUS(va_status, \"vaCreateSurfaces for input\");\n\n    va_status = create_surface(&g_out_surface_id, g_out_pic_width, g_out_pic_height,\n                               g_out_fourcc, g_out_format);\n    CHECK_VASTATUS(va_status, \"vaCreateSurfaces for output\");\n\n    va_status = vaCreateConfig(va_dpy,\n                               VAProfileNone,\n                               VAEntrypointVideoProc,\n                               &attrib,\n                               1,\n                               &config_id);\n    CHECK_VASTATUS(va_status, \"vaCreateConfig\");\n\n    va_status = vaCreateContext(va_dpy,\n                                config_id,\n                                g_out_pic_width,\n                                g_out_pic_height,\n                                VA_PROGRESSIVE,\n                                &g_out_surface_id,\n                                1,\n                                &context_id);\n    CHECK_VASTATUS(va_status, \"vaCreateContext\");\n\n    uint32_t supported_filter_num = VAProcFilterCount;\n    VAProcFilterType supported_filter_types[VAProcFilterCount];\n\n    va_status = vaQueryVideoProcFilters(va_dpy,\n                                        context_id,\n                                        supported_filter_types,\n                                        &supported_filter_num);\n\n    CHECK_VASTATUS(va_status, \"vaQueryVideoProcFilters\");\n\n    for (i = 0; i < supported_filter_num; i++) {\n        if (supported_filter_types[i] == VAProcFilterHighDynamicRangeToneMapping)\n            break;\n    }\n\n    if (i == supported_filter_num) {\n        printf(\"VPP filter type VAProcFilterHighDynamicRangeToneMapping is not supported by driver !\\n\");\n    }\n    return va_status;\n}\n\nstatic void\nvpp_context_destroy()\n{\n    /* Release resource */\n    vaDestroySurfaces(va_dpy, &g_in_surface_id, 1);\n    vaDestroySurfaces(va_dpy, &g_out_surface_id, 1);\n    vaDestroyContext(va_dpy, context_id);\n    vaDestroyConfig(va_dpy, config_id);\n\n    vaTerminate(va_dpy);\n    va_close_display(va_dpy);\n}\n\nstatic int8_t\nparse_fourcc_and_format(char *str, uint32_t *fourcc, uint32_t *format)\n{\n    uint32_t tfourcc = VA_FOURCC('N', 'V', '1', '2');\n    uint32_t tformat = VA_RT_FORMAT_YUV420;\n\n    if (!strcmp(str, \"YV12\")) {\n        tfourcc = VA_FOURCC('Y', 'V', '1', '2');\n    } else if (!strcmp(str, \"I420\")) {\n        tfourcc = VA_FOURCC('I', '4', '2', '0');\n    } else if (!strcmp(str, \"NV12\")) {\n        tfourcc = VA_FOURCC('N', 'V', '1', '2');\n    } else if (!strcmp(str, \"YUY2\") || !strcmp(str, \"YUYV\")) {\n        tfourcc = VA_FOURCC('Y', 'U', 'Y', '2');\n    } else if (!strcmp(str, \"UYVY\")) {\n        tfourcc = VA_FOURCC('U', 'Y', 'V', 'Y');\n    } else if (!strcmp(str, \"P010\")) {\n        tfourcc = VA_FOURCC('P', '0', '1', '0');\n    } else if (!strcmp(str, \"I010\")) {\n        tfourcc = VA_FOURCC('I', '0', '1', '0');\n    } else if (!strcmp(str, \"RGBA\")) {\n        tformat = VA_RT_FORMAT_RGB32;\n        tfourcc = VA_FOURCC_RGBA;\n        printf(\"parse_fourcc_and_format: RGBA format 0x%8x, fourcc 0x%8x\\n\", tformat, tfourcc);\n    } else if (!strcmp(str, \"RGBX\")) {\n        tfourcc = VA_FOURCC_RGBX;\n    } else if (!strcmp(str, \"BGRA\")) {\n        tfourcc = VA_FOURCC_BGRA;\n    } else if (!strcmp(str, \"BGRX\")) {\n        tfourcc = VA_FOURCC_BGRX;\n    } else if (!strcmp(str, \"P010\")) {\n        tfourcc = VA_FOURCC_P010;\n        printf(\"parse_fourcc_and_format: P010\\n\");\n    } else if (!strcmp(str, \"A2RGB10\")) {  //A2R10G10B10\n        tfourcc = VA_FOURCC_A2R10G10B10;\n        printf(\"parse_fourcc_and_format: ARGB10 format 0x%8x, fourcc 0x%8x\\n\", tformat, tfourcc);\n    } else {\n        printf(\"Not supported format: %s! Currently only support following format: %s\\n\",\n               str, \"YV12, I420, NV12, YUY2(YUYV), UYVY, I010, RGBA, RGBX, BGRA or BGRX\");\n        assert(0);\n    }\n\n    printf(\"parse_fourcc_and_format: format 0x%x, fourcc 0x%x\\n\", tformat, tfourcc);\n\n    if (fourcc)\n        *fourcc = tfourcc;\n\n    if (format)\n        *format = tformat;\n\n    return 0;\n}\n\nbool read_frame_to_surface(FILE *fp, VASurfaceID surface_id)\n{\n    VAStatus va_status;\n    VAImage  va_image;\n\n    int i = 0;\n\n    int frame_size = 0, y_size = 0;\n\n    unsigned char *y_src = NULL, *u_src = NULL;\n    unsigned char *y_dst = NULL, *u_dst = NULL;\n\n    int bytes_per_pixel = 2;\n    size_t n_items;\n    void *out_buf = NULL;\n    unsigned char *src_buffer = NULL;\n\n    if (fp == NULL)\n        return false;\n\n    // This function blocks until all pending operations on the surface have been completed.\n    va_status = vaSyncSurface(va_dpy, surface_id);\n    CHECK_VASTATUS(va_status, \"vaSyncSurface\");\n\n    va_status = vaDeriveImage(va_dpy, surface_id, &va_image);\n    CHECK_VASTATUS(va_status, \"vaDeriveImage\");\n\n    va_status = vaMapBuffer(va_dpy, va_image.buf, &out_buf);\n    CHECK_VASTATUS(va_status, \"vaMapBuffer\");\n\n    printf(\"read_frame_to_surface: va_image.width %d, va_image.height %d, va_image.pitches[0]: %d, va_image.pitches[1] %d, va_image.pitches[2] %d\\n\",\n           va_image.width, va_image.height, va_image.pitches[0], va_image.pitches[1], va_image.pitches[1]);\n\n    switch (va_image.format.fourcc) {\n    case VA_FOURCC_P010:\n        frame_size = va_image.width * va_image.height * bytes_per_pixel * 3 / 2;\n        y_size = va_image.width * va_image.height * bytes_per_pixel;\n\n        src_buffer = (unsigned char*)malloc(frame_size);\n        assert(src_buffer);\n        n_items = fread(src_buffer, 1, frame_size, fp);\n        if (n_items != frame_size) {\n            printf(\"read file failed on VA_FOURCC_P010\\n\");\n        }\n        y_src = src_buffer;\n        u_src = src_buffer + y_size; // UV offset for P010\n\n        y_dst = (unsigned char*)out_buf + va_image.offsets[0]; // Y plane\n        u_dst = (unsigned char*)out_buf + va_image.offsets[1]; // U offset for P010\n\n        for (i = 0; i < va_image.height; i++) {\n            memcpy(y_dst, y_src, va_image.width * 2);\n            y_dst += va_image.pitches[0];\n            y_src += va_image.width * 2;\n        }\n        for (i = 0; i < va_image.height >> 1; i++)  {\n            memcpy(u_dst, u_src, va_image.width * 2);\n            u_dst += va_image.pitches[1];\n            u_src += va_image.width * 2;\n        }\n        printf(\"read_frame_to_surface: P010 \\n\");\n        break;\n\n    case VA_RT_FORMAT_RGB32_10BPP:\n    case VA_FOURCC_RGBA:\n    case VA_FOURCC_A2R10G10B10:\n    case VA_FOURCC_A2B10G10R10:\n        frame_size = va_image.width * va_image.height * 4;\n        src_buffer = (unsigned char*)malloc(frame_size);\n        assert(src_buffer);\n        n_items = fread(src_buffer, 1, frame_size, fp);\n        if (n_items != frame_size) {\n            printf(\"read file failed on VA_RT_FORMAT_RGB32_10BPP or VA_FOURCC_RGBA \\n\");\n        }\n        y_src = src_buffer;\n        y_dst = (unsigned char*)out_buf + va_image.offsets[0];\n\n        for (i = 0; i < va_image.height; i++)  {\n            memcpy(y_dst, y_src, va_image.width * 4);\n            y_dst += va_image.pitches[0];\n            y_src += va_image.width * 4;\n        }\n        printf(\"read_frame_to_surface: RGBA or A2RGB10 \\n\");\n        break;\n\n    default: // should not come here\n        printf(\"VA_STATUS_ERROR_INVALID_IMAGE_FORMAT \\n\");\n        va_status = VA_STATUS_ERROR_INVALID_IMAGE_FORMAT;\n        break;\n    }\n\n    vaUnmapBuffer(va_dpy, va_image.buf);\n    vaDestroyImage(va_dpy, va_image.image_id);\n    if (src_buffer) {\n        free(src_buffer);\n        src_buffer = NULL;\n    }\n\n    if (va_status != VA_STATUS_SUCCESS)\n        return false;\n    else\n        return true;\n}\n\nbool write_surface_to_frame(FILE *fp, VASurfaceID surface_id)\n{\n    VAStatus va_status;\n    VAImage  va_image;\n\n    int i = 0;\n\n    int frame_size = 0, y_size = 0;\n\n    unsigned char *y_src = NULL, *u_src = NULL;\n    unsigned char *y_dst = NULL, *u_dst = NULL;\n\n    int bytes_per_pixel = 2;\n\n    void *in_buf = NULL;\n    unsigned char *dst_buffer = NULL;\n\n    if (fp == NULL)\n        return false;\n\n    // This function blocks until all pending operations on the surface have been completed.\n    va_status = vaSyncSurface(va_dpy, surface_id);\n    CHECK_VASTATUS(va_status, \"vaSyncSurface\");\n\n    va_status = vaDeriveImage(va_dpy, surface_id, &va_image);\n    CHECK_VASTATUS(va_status, \"vaDeriveImage\");\n\n    va_status = vaMapBuffer(va_dpy, va_image.buf, &in_buf);\n    CHECK_VASTATUS(va_status, \"vaMapBuffer\");\n\n    printf(\"write_surface_to_frame: va_image.width %d, va_image.height %d, va_image.pitches[0]: %d, va_image.pitches[1] %d, va_image.pitches[2] %d\\n\",\n           va_image.width, va_image.height, va_image.pitches[0], va_image.pitches[1], va_image.pitches[1]);\n\n\n    switch (va_image.format.fourcc) {\n    case VA_FOURCC_P010:\n    case VA_FOURCC_NV12:\n        bytes_per_pixel = (va_image.format.fourcc == VA_FOURCC_P010) ? 2 : 1;\n        frame_size = va_image.width * va_image.height * bytes_per_pixel * 3 / 2;\n        dst_buffer = (unsigned char*)malloc(frame_size);\n        assert(dst_buffer);\n        y_size = va_image.width * va_image.height * bytes_per_pixel;\n        y_dst = dst_buffer;\n        u_dst = dst_buffer + y_size; // UV offset for P010\n        y_src = (unsigned char*)in_buf + va_image.offsets[0];\n        u_src = (unsigned char*)in_buf + va_image.offsets[1]; // U offset for P010\n        for (i = 0; i < va_image.height; i++)  {\n            memcpy(y_dst, y_src, static_cast<size_t>(va_image.width * bytes_per_pixel));\n            y_dst += va_image.width * bytes_per_pixel;\n            y_src += va_image.pitches[0];\n        }\n        for (i = 0; i < va_image.height >> 1; i++)  {\n            memcpy(u_dst, u_src, static_cast<size_t>(va_image.width * bytes_per_pixel));\n            u_dst += va_image.width * bytes_per_pixel;\n            u_src += va_image.pitches[1];\n        }\n        printf(\"read_frame_to_surface: P010 \\n\");\n        break;\n\n    case VA_FOURCC_RGBA:\n    case VA_FOURCC_ABGR:\n    case VA_FOURCC_A2B10G10R10:\n    case VA_FOURCC_A2R10G10B10:\n        frame_size = va_image.width * va_image.height * 4;\n        dst_buffer = (unsigned char*)malloc(frame_size);\n        assert(dst_buffer);\n        y_dst = dst_buffer;\n        y_src = (unsigned char*)in_buf + va_image.offsets[0];\n\n        for (i = 0; i < va_image.height; i++) {\n            memcpy(y_dst, y_src, va_image.width * 4);\n            y_dst += va_image.pitches[0];\n            y_src += va_image.width * 4;\n        }\n        printf(\"read_frame_to_surface: RGBA and A2R10G10B10 \\n\");\n        break;\n\n    default: // should not come here\n        printf(\"VA_STATUS_ERROR_INVALID_IMAGE_FORMAT %x\\n\", va_image.format.fourcc);\n        va_status = VA_STATUS_ERROR_INVALID_IMAGE_FORMAT;\n        break;\n    }\n    assert(dst_buffer);\n    fwrite(dst_buffer, 1, frame_size, fp);\n\n    if (dst_buffer)  {\n        free(dst_buffer);\n        dst_buffer = NULL;\n    }\n\n    vaUnmapBuffer(va_dpy, va_image.buf);\n    vaDestroyImage(va_dpy, va_image.image_id);\n    if (va_status != VA_STATUS_SUCCESS)\n        return false;\n    else\n        return true;\n}\n\nstatic int8_t\nparse_basic_parameters()\n{\n    char str[MAX_LEN];\n\n    /* Read src frame file information */\n    read_value_string(g_config_file_fd, \"SRC_FILE_NAME\", g_src_file_name);\n    read_value_uint32(g_config_file_fd, \"SRC_FRAME_WIDTH\", &g_in_pic_width);\n    read_value_uint32(g_config_file_fd, \"SRC_FRAME_HEIGHT\", &g_in_pic_height);\n    read_value_string(g_config_file_fd, \"SRC_FRAME_FORMAT\", str);\n    parse_fourcc_and_format(str, &g_in_fourcc, &g_in_format);\n\n    printf(\"Input file: %s, width: %d, height: %d, fourcc 0x%x, format 0x%x\\n\", g_src_file_name, g_in_pic_width, g_in_pic_height, g_in_fourcc, g_in_format);\n\n    /* Read dst frame file information */\n    read_value_string(g_config_file_fd, \"DST_FILE_NAME\", g_dst_file_name);\n    read_value_uint32(g_config_file_fd, \"DST_FRAME_WIDTH\", &g_out_pic_width);\n    read_value_uint32(g_config_file_fd, \"DST_FRAME_HEIGHT\", &g_out_pic_height);\n    read_value_string(g_config_file_fd, \"DST_FRAME_FORMAT\", str);\n    parse_fourcc_and_format(str, &g_out_fourcc, &g_out_format);\n\n    printf(\"Output file: %s, width: %d, height: %d, fourcc 0x%x, format 0x%x\\n\", g_dst_file_name, g_out_pic_width, g_out_pic_height, g_out_fourcc, g_out_format);\n\n    read_value_string(g_config_file_fd, \"SRC_FILE_FORMAT\", str);\n    parse_fourcc_and_format(str, &g_src_file_fourcc, NULL);\n\n    read_value_string(g_config_file_fd, \"DST_FILE_FORMAT\", str);\n    parse_fourcc_and_format(str, &g_dst_file_fourcc, NULL);\n\n    read_value_uint32(g_config_file_fd, \"FRAME_SUM\", &g_frame_count);\n\n    read_value_uint32(g_config_file_fd, \"SRC_MAX_DISPLAY_MASTERING_LUMINANCE\", &g_in_max_display_luminance);\n    read_value_uint32(g_config_file_fd, \"SRC_MIN_DISPLAY_MASTERING_LUMINANCE\", &g_in_min_display_luminance);\n    read_value_uint32(g_config_file_fd, \"SRC_MAX_CONTENT_LIGHT_LEVEL\",         &g_in_max_content_luminance);\n    read_value_uint32(g_config_file_fd, \"SRC_MAX_PICTURE_AVERAGE_LIGHT_LEVEL\", &g_in_pic_average_luminance);\n\n    read_value_uint32(g_config_file_fd, \"DST_MAX_DISPLAY_MASTERING_LUMINANCE\", &g_out_max_display_luminance);\n    read_value_uint32(g_config_file_fd, \"DST_MIN_DISPLAY_MASTERING_LUMINANCE\", &g_out_min_display_luminance);\n    read_value_uint32(g_config_file_fd, \"DST_MAX_CONTENT_LIGHT_LEVEL\",         &g_out_max_content_luminance);\n    read_value_uint32(g_config_file_fd, \"DST_MAX_PICTURE_AVERAGE_LIGHT_LEVEL\", &g_out_pic_average_luminance);\n\n    read_value_uint32(g_config_file_fd, \"SRC_FRAME_COLOUR_PRIMARIES\",         &g_in_colour_primaries);\n    read_value_uint32(g_config_file_fd, \"SRC_FRAME_TRANSFER_CHARACTERISTICS\", &g_in_transfer_characteristic);\n    read_value_uint32(g_config_file_fd, \"DST_FRAME_COLOUR_PRIMARIES\",         &g_out_colour_primaries);\n    read_value_uint32(g_config_file_fd, \"DST_FRAME_TRANSFER_CHARACTERISTICS\", &g_out_transfer_characteristic);\n\n    read_value_uint32(g_config_file_fd, \"TM_TYPE\", &g_tm_type);\n\n    return 0;\n}\n\nstatic void\nprint_help()\n{\n    printf(\"The app is used to test the hdr tm feature.\\n\");\n    printf(\"Cmd Usage: ./process_hdr_tm.cfg process_hdr_tm.cfg.cfg\\n\");\n    printf(\"The configure file process_hdr_tm.cfg is used to configure the para.\\n\");\n    printf(\"You can refer process_hdr_tm.cfg.template for each para meaning and create the configure file.\\n\");\n}\n\nint32_t main(int32_t argc, char *argv[])\n{\n    VAStatus va_status;\n    uint32_t i;\n\n    if (argc != 2 || !strcmp(argv[1], \"-h\") || !strcmp(argv[1], \"--help\")) {\n        print_help();\n        return -1;\n    }\n\n    /* Parse the configure file for video process*/\n    strncpy(g_config_file_name, argv[1], MAX_LEN);\n    g_config_file_name[MAX_LEN - 1] = '\\0';\n\n    if (NULL == (g_config_file_fd = fopen(g_config_file_name, \"r\"))) {\n        printf(\"Open configure file %s failed!\\n\", g_config_file_name);\n        assert(0);\n    }\n\n    /* Parse basic parameters */\n    if (parse_basic_parameters()) {\n        printf(\"Parse parameters in configure file error\\n\");\n        assert(0);\n    }\n\n    va_status = vpp_context_create();\n    if (va_status != VA_STATUS_SUCCESS) {\n        printf(\"vpp context create failed \\n\");\n        assert(0);\n    }\n\n    /* Video frame fetch, process and store */\n    if (NULL == (g_src_file_fd = fopen(g_src_file_name, \"r\"))) {\n        printf(\"Open SRC_FILE_NAME: %s failed, please specify it in config file: %s !\\n\",\n               g_src_file_name, g_config_file_name);\n        assert(0);\n    }\n\n    if (NULL == (g_dst_file_fd = fopen(g_dst_file_name, \"w\"))) {\n        printf(\"Open DST_FILE_NAME: %s failed, please specify it in config file: %s !\\n\",\n               g_dst_file_name, g_config_file_name);\n        assert(0);\n    }\n\n    printf(\"\\nStart to process, ...\\n\");\n    struct timespec Pre_time;\n    struct timespec Cur_time;\n    unsigned int duration = 0;\n    clock_gettime(CLOCK_MONOTONIC, &Pre_time);\n\n    for (i = 0; i < g_frame_count; i ++) {\n        read_frame_to_surface(g_src_file_fd, g_in_surface_id);\n        video_frame_process(g_in_surface_id, g_out_surface_id);\n        write_surface_to_frame(g_dst_file_fd, g_out_surface_id);\n    }\n\n    clock_gettime(CLOCK_MONOTONIC, &Cur_time);\n    duration = (Cur_time.tv_sec - Pre_time.tv_sec) * 1000;\n    if (Cur_time.tv_nsec > Pre_time.tv_nsec) {\n        duration += (Cur_time.tv_nsec - Pre_time.tv_nsec) / 1000000;\n    } else {\n        duration += (Cur_time.tv_nsec + 1000000000 - Pre_time.tv_nsec) / 1000000 - 1000;\n    }\n    printf(\"Finish processing, performance: \\n\");\n    printf(\"%d frames processed in: %d ms, ave time = %d ms\\n\", g_frame_count, duration, duration / g_frame_count);\n\n    if (g_src_file_fd) {\n        fclose(g_src_file_fd);\n        g_src_file_fd = NULL;\n    }\n\n    if (g_dst_file_fd) {\n        fclose(g_dst_file_fd);\n        g_dst_file_fd = NULL;\n    }\n\n    if (g_config_file_fd) {\n        fclose(g_config_file_fd);\n        g_config_file_fd = NULL;\n    }\n\n    vpp_context_destroy();\n\n    return 0;\n}\n"
  },
  {
    "path": "videoprocess/vppscaling_csc.cpp",
    "content": "/*\n* Copyright (c) 2009-2018, Intel Corporation\n*\n* Permission is hereby granted, free of charge, to any person obtaining a\n* copy of this software and associated documentation files (the \"Software\"),\n* to deal in the Software without restriction, including without limitation\n* the rights to use, copy, modify, merge, publish, distribute, sublicense,\n* and/or sell copies of the Software, and to permit persons to whom the\n* Software is furnished to do so, subject to the following conditions:\n*\n* The above copyright notice and this permission notice shall be included\n* in all copies or substantial portions of the Software.\n*\n* THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR\n* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,\n* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\n* OTHER DEALINGS IN THE SOFTWARE.\n*/\n/*\n * Video process test case based on LibVA.\n * This test covers scaling and several surface format conversion.\n * Usage: ./vppscaling_csc process_scaling_csc.cfg\n */\n\n#include <stdio.h>\n#include <stdlib.h>\n#include <string.h>\n#include <stdint.h>\n#include <time.h>\n#include <assert.h>\n#include <va/va.h>\n#include <va/va_vpp.h>\n#include \"va_display.h\"\n\n#ifndef VA_FOURCC_I420\n#define VA_FOURCC_I420 0x30323449\n#endif\n\n#define MAX_LEN   1024\n\n#define CHECK_VASTATUS(va_status,func)                                      \\\n  if (va_status != VA_STATUS_SUCCESS) {                                     \\\n      fprintf(stderr,\"%s:%s (%d) failed,exit\\n\", __func__, func, __LINE__); \\\n      exit(1);                                                              \\\n  }\n\nstatic VADisplay va_dpy = NULL;\nstatic VAContextID context_id = 0;\nstatic VAConfigID  config_id = 0;\nstatic VASurfaceID g_in_surface_id = VA_INVALID_ID;\nstatic VASurfaceID g_out_surface_id = VA_INVALID_ID;\n\nstatic FILE* g_config_file_fd = NULL;\nstatic FILE* g_src_file_fd = NULL;\nstatic FILE* g_dst_file_fd = NULL;\n\nstatic char g_config_file_name[MAX_LEN];\nstatic char g_src_file_name[MAX_LEN];\nstatic char g_dst_file_name[MAX_LEN];\n\nstatic uint32_t g_in_pic_width = 352;\nstatic uint32_t g_in_pic_height = 288;\nstatic uint32_t g_out_pic_width = 352;\nstatic uint32_t g_out_pic_height = 288;\n\nstatic uint32_t g_in_fourcc  = VA_FOURCC('N', 'V', '1', '2');\nstatic uint32_t g_in_format  = VA_RT_FORMAT_YUV420;\nstatic uint32_t g_out_fourcc = VA_FOURCC('N', 'V', '1', '2');\nstatic uint32_t g_out_format = VA_RT_FORMAT_YUV420;\nstatic uint32_t g_src_file_fourcc = VA_FOURCC('I', '4', '2', '0');\nstatic uint32_t g_dst_file_fourcc = VA_FOURCC('Y', 'V', '1', '2');\n\nstatic uint32_t g_frame_count = 0;\n\nstatic int8_t\nread_value_string(FILE *fp, const char* field_name, char* value)\n{\n    char strLine[MAX_LEN];\n    char* field = NULL;\n    char* str = NULL;\n    uint16_t i;\n\n    if (!fp || !field_name || !value)  {\n        printf(\"Invalid fuction parameters\\n\");\n        return -1;\n    }\n\n    rewind(fp);\n\n    while (!feof(fp)) {\n        if (!fgets(strLine, MAX_LEN, fp))\n            continue;\n\n        for (i = 0; i < MAX_LEN && strLine[i]; i++)\n            if (strLine[i] != ' ') break;\n\n        if (i == MAX_LEN || strLine[i] == '#' || strLine[i] == '\\n')\n            continue;\n\n        field = strtok(&strLine[i], \":\");\n        if (strncmp(field, field_name, strlen(field_name)))\n            continue;\n\n        if (!(str = strtok(NULL, \":\")))\n            continue;\n\n        /* skip blank space in string */\n        while (*str == ' ')\n            str++;\n\n        *(str + strlen(str) - 1) = '\\0';\n        strcpy(value, str);\n\n        return 0;\n    }\n\n    return -1;\n}\n\nstatic int8_t\nread_value_uint32(FILE* fp, const char* field_name, uint32_t* value)\n{\n    char str[MAX_LEN];\n\n    if (read_value_string(fp, field_name, str)) {\n        printf(\"Failed to find integer field: %s\", field_name);\n        return -1;\n    }\n\n    *value = (uint32_t)atoi(str);\n    return 0;\n}\n\nstatic VAStatus\ncreate_surface(VASurfaceID * p_surface_id,\n               uint32_t width, uint32_t height,\n               uint32_t fourCC, uint32_t format)\n{\n    VAStatus va_status;\n    VASurfaceAttrib    surface_attrib;\n    surface_attrib.type =  VASurfaceAttribPixelFormat;\n    surface_attrib.flags = VA_SURFACE_ATTRIB_SETTABLE;\n    surface_attrib.value.type = VAGenericValueTypeInteger;\n    surface_attrib.value.value.i = fourCC;\n\n    va_status = vaCreateSurfaces(va_dpy,\n                                 format,\n                                 width,\n                                 height,\n                                 p_surface_id,\n                                 1,\n                                 &surface_attrib,\n                                 1);\n    return va_status;\n}\n\n/* Load yuv frame to NV12/YV12/I420 surface*/\nstatic VAStatus\nupload_yuv_frame_to_yuv_surface(FILE *fp,\n                                VASurfaceID surface_id)\n{\n    VAStatus va_status;\n    VAImage surface_image;\n    unsigned char *y_src = NULL;\n    unsigned char *u_src = NULL;\n    unsigned char *v_src = NULL;\n    unsigned char *y_dst = NULL;\n    unsigned char *u_dst = NULL;\n    unsigned char *v_dst = NULL;\n    void *surface_p = NULL;\n    uint32_t frame_size, row, col;\n    size_t n_items;\n    unsigned char * newImageBuffer = NULL;\n    va_status = vaSyncSurface(va_dpy, surface_id);\n    CHECK_VASTATUS(va_status, \"vaSyncSurface\");\n\n    va_status = vaDeriveImage(va_dpy, surface_id, &surface_image);\n    CHECK_VASTATUS(va_status, \"vaDeriveImage\");\n\n    va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p);\n    CHECK_VASTATUS(va_status, \"vaMapBuffer\");\n\n    if (surface_image.format.fourcc == VA_FOURCC_YV12 ||\n        surface_image.format.fourcc == VA_FOURCC_I420 ||\n        surface_image.format.fourcc == VA_FOURCC_NV12) {\n\n        frame_size = surface_image.width * surface_image.height * 3 / 2;\n        newImageBuffer = (unsigned char*)malloc(frame_size);\n        assert(newImageBuffer);\n\n        do {\n            n_items = fread(newImageBuffer, frame_size, 1, fp);\n        } while (n_items != 1);\n\n        y_src = newImageBuffer;\n        if (g_src_file_fourcc == VA_FOURCC_I420) {\n            u_src = newImageBuffer + surface_image.width * surface_image.height;\n            v_src = newImageBuffer + surface_image.width * surface_image.height * 5 / 4;\n        } else if (g_src_file_fourcc == VA_FOURCC_YV12) {\n            v_src = newImageBuffer + surface_image.width * surface_image.height;\n            u_src = newImageBuffer + surface_image.width * surface_image.height * 5 / 4;\n        } else if (g_src_file_fourcc == VA_FOURCC_NV12) {\n            u_src = newImageBuffer + surface_image.width * surface_image.height;\n            v_src = u_src;\n        } else {\n            printf(\"Not supported YUV fourcc for input file !!!\\n\");\n            free(newImageBuffer);\n            return VA_STATUS_ERROR_INVALID_SURFACE;\n        }\n\n        y_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]);\n\n        if (surface_image.format.fourcc == VA_FOURCC_YV12) {\n            v_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            u_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]);\n        } else if (surface_image.format.fourcc == VA_FOURCC_I420) {\n            u_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            v_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]);\n        } else {\n            u_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            v_dst = u_dst;\n        }\n\n        /* Y plane, directly copy */\n        for (row = 0; row < surface_image.height; row++) {\n            memcpy(y_dst, y_src, surface_image.width);\n            y_dst += surface_image.pitches[0];\n            y_src += surface_image.width;\n        }\n\n        /* UV plane */\n        if (surface_image.format.fourcc == VA_FOURCC_YV12 ||\n            surface_image.format.fourcc == VA_FOURCC_I420) {\n            for (row = 0; row < surface_image.height / 2; row ++) {\n                if (g_src_file_fourcc == VA_FOURCC_I420 ||\n                    g_src_file_fourcc == VA_FOURCC_YV12) {\n                    memcpy(v_dst, v_src, surface_image.width / 2);\n                    memcpy(u_dst, u_src, surface_image.width / 2);\n\n                    v_src += surface_image.width / 2;\n                    u_src += surface_image.width / 2;\n                } else {\n                    for (col = 0; col < surface_image.width / 2; col++) {\n                        u_dst[col] = u_src[col * 2];\n                        v_dst[col] = u_src[col * 2 + 1];\n                    }\n\n                    u_src += surface_image.width;\n                    v_src = u_src;\n                }\n\n                if (surface_image.format.fourcc == VA_FOURCC_YV12) {\n                    v_dst += surface_image.pitches[1];\n                    u_dst += surface_image.pitches[2];\n                } else {\n                    v_dst += surface_image.pitches[2];\n                    u_dst += surface_image.pitches[1];\n                }\n            }\n        } else if (surface_image.format.fourcc == VA_FOURCC_NV12) {\n            for (row = 0; row < surface_image.height / 2; row++) {\n                if (g_src_file_fourcc == VA_FOURCC_I420 ||\n                    g_src_file_fourcc == VA_FOURCC_YV12) {\n                    for (col = 0; col < surface_image.width / 2; col++) {\n                        u_dst[col * 2] = u_src[col];\n                        u_dst[col * 2 + 1] = v_src[col];\n                    }\n\n                    u_src += (surface_image.width / 2);\n                    v_src += (surface_image.width / 2);\n                } else {\n                    memcpy(u_dst, u_src, surface_image.width);\n                    u_src += surface_image.width;\n                    v_src = u_src;\n                }\n\n                u_dst += surface_image.pitches[1];\n            }\n        }\n    } else if ((surface_image.format.fourcc == VA_FOURCC_YUY2 &&\n                g_src_file_fourcc == VA_FOURCC_YUY2) ||\n               (surface_image.format.fourcc == VA_FOURCC_UYVY &&\n                g_src_file_fourcc == VA_FOURCC_UYVY)) {\n        frame_size = surface_image.width * surface_image.height * 2;\n        newImageBuffer = (unsigned char*)malloc(frame_size);\n        assert(newImageBuffer);\n\n        do {\n            n_items = fread(newImageBuffer, frame_size, 1, fp);\n        } while (n_items != 1);\n\n        y_src = newImageBuffer;\n        y_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]);\n\n        /* plane 0, directly copy */\n        for (row = 0; row < surface_image.height; row++) {\n            memcpy(y_dst, y_src, surface_image.width * 2);\n            y_src += surface_image.width * 2;\n            y_dst += surface_image.pitches[0];\n        }\n    } else if ((surface_image.format.fourcc == VA_FOURCC_P010 &&\n                g_src_file_fourcc == VA_FOURCC_P010) ||\n               (surface_image.format.fourcc == VA_FOURCC_I010 &&\n                g_src_file_fourcc == VA_FOURCC_I010)) {\n        frame_size = surface_image.width * surface_image.height * 3;\n        newImageBuffer = (unsigned char*)malloc(frame_size);\n        assert(newImageBuffer);\n\n        do {\n            n_items = fread(newImageBuffer, frame_size, 1, fp);\n        } while (n_items != 1);\n\n        y_src = newImageBuffer;\n        y_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]);\n\n        /* plane 0, directly copy */\n        for (row = 0; row < surface_image.height; row++) {\n            memcpy(y_dst, y_src, surface_image.width * 2);\n            y_src += surface_image.width * 2;\n            y_dst += surface_image.pitches[0];\n        }\n\n        /* UV plane */\n        if (surface_image.format.fourcc == VA_FOURCC_I010) {\n            assert(g_src_file_fourcc == VA_FOURCC_I010);\n\n            u_src = newImageBuffer + surface_image.width * surface_image.height * 2;\n            v_src = newImageBuffer + surface_image.width * surface_image.height * 5 / 2;\n\n            u_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            v_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]);\n\n            for (row = 0; row < surface_image.height / 2; row++) {\n                memcpy(u_dst, u_src, surface_image.width);\n                memcpy(v_dst, v_src, surface_image.width);\n\n                u_src += surface_image.width;\n                v_src += surface_image.width;\n\n                u_dst += surface_image.pitches[1];\n                v_dst += surface_image.pitches[2];\n            }\n        } else if (surface_image.format.fourcc == VA_FOURCC_P010) {\n            assert(g_src_file_fourcc == VA_FOURCC_P010);\n\n            u_src = newImageBuffer + surface_image.width * surface_image.height * 2;\n            v_src = u_src;\n\n            u_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            v_dst = u_dst;\n\n            for (row = 0; row < surface_image.height / 2; row++) {\n                memcpy(u_dst, u_src, surface_image.width * 2);\n\n                u_src += surface_image.width * 2;\n                v_src = u_src;\n\n                u_dst += surface_image.pitches[1];\n                v_dst = u_dst;\n            }\n        }\n    }  else if ((surface_image.format.fourcc == VA_FOURCC_RGBA &&\n                 g_src_file_fourcc == VA_FOURCC_RGBA) ||\n                (surface_image.format.fourcc == VA_FOURCC_RGBX &&\n                 g_src_file_fourcc == VA_FOURCC_RGBX) ||\n                (surface_image.format.fourcc == VA_FOURCC_BGRA &&\n                 g_src_file_fourcc == VA_FOURCC_BGRA) ||\n                (surface_image.format.fourcc == VA_FOURCC_BGRX &&\n                 g_src_file_fourcc == VA_FOURCC_BGRX)) {\n        frame_size = surface_image.width * surface_image.height * 4;\n        newImageBuffer = (unsigned char*)malloc(frame_size);\n        assert(newImageBuffer);\n\n        do {\n            n_items = fread(newImageBuffer, frame_size, 1, fp);\n        } while (n_items != 1);\n\n        y_src = newImageBuffer;\n        y_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]);\n\n        /* plane 0, directly copy */\n        for (row = 0; row < surface_image.height; row++) {\n            memcpy(y_dst, y_src, surface_image.width * 4);\n            y_src += surface_image.width * 4;\n            y_dst += surface_image.pitches[0];\n        }\n    } else {\n        printf(\"Not supported YUV surface fourcc !!! \\n\");\n        return VA_STATUS_ERROR_INVALID_SURFACE;\n    }\n\n    if (newImageBuffer) {\n        free(newImageBuffer);\n        newImageBuffer = NULL;\n    }\n\n    vaUnmapBuffer(va_dpy, surface_image.buf);\n    vaDestroyImage(va_dpy, surface_image.image_id);\n\n    return VA_STATUS_SUCCESS;\n}\n\n/* Store NV12/YV12/I420 surface to yv12 file */\nstatic VAStatus\nstore_yuv_surface_to_yv12_file(FILE *fp,\n                               VASurfaceID surface_id)\n{\n    VAStatus va_status;\n    VAImage surface_image;\n    void *surface_p = NULL;\n    unsigned char *y_src = NULL;\n    unsigned char *u_src = NULL;\n    unsigned char *v_src = NULL;\n    unsigned char *y_dst = NULL;\n    unsigned char *u_dst = NULL;\n    unsigned char *v_dst = NULL;\n    uint32_t row, col;\n    int32_t n_items;\n    unsigned char * newImageBuffer = NULL;\n    va_status = vaSyncSurface(va_dpy, surface_id);\n    CHECK_VASTATUS(va_status, \"vaSyncSurface\");\n\n    va_status = vaDeriveImage(va_dpy, surface_id, &surface_image);\n    CHECK_VASTATUS(va_status, \"vaDeriveImage\");\n\n    va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p);\n    CHECK_VASTATUS(va_status, \"vaMapBuffer\");\n\n    /* store the surface to one YV12 file or one bmp file*/\n    if (surface_image.format.fourcc == VA_FOURCC_YV12 ||\n        surface_image.format.fourcc == VA_FOURCC_I420 ||\n        surface_image.format.fourcc == VA_FOURCC_NV12) {\n\n        uint32_t y_size = surface_image.width * surface_image.height;\n        uint32_t u_size = y_size / 4;\n\n        newImageBuffer = (unsigned char*)malloc(y_size * 3 / 2);\n        assert(newImageBuffer);\n\n        /* stored as YV12 format */\n        y_dst = newImageBuffer;\n        v_dst = newImageBuffer + y_size;\n        u_dst = newImageBuffer + y_size + u_size;\n\n        y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]);\n        if (surface_image.format.fourcc == VA_FOURCC_YV12) {\n            v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]);\n        } else if (surface_image.format.fourcc == VA_FOURCC_I420) {\n            u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]);\n        } else if (surface_image.format.fourcc == VA_FOURCC_NV12) {\n            u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            v_src = u_src;\n        }\n\n        /* Y plane copy */\n        for (row = 0; row < surface_image.height; row++) {\n            memcpy(y_dst, y_src, surface_image.width);\n            y_src += surface_image.pitches[0];\n            y_dst += surface_image.width;\n        }\n\n        /* UV plane copy */\n        if (surface_image.format.fourcc == VA_FOURCC_YV12 ||\n            surface_image.format.fourcc == VA_FOURCC_I420) {\n            for (row = 0; row < surface_image.height / 2; row ++) {\n                memcpy(v_dst, v_src, surface_image.width / 2);\n                memcpy(u_dst, u_src, surface_image.width / 2);\n\n                v_dst += surface_image.width / 2;\n                u_dst += surface_image.width / 2;\n\n                if (surface_image.format.fourcc == VA_FOURCC_YV12) {\n                    v_src += surface_image.pitches[1];\n                    u_src += surface_image.pitches[2];\n                } else {\n                    v_src += surface_image.pitches[2];\n                    u_src += surface_image.pitches[1];\n                }\n            }\n        } else if (surface_image.format.fourcc == VA_FOURCC_NV12) {\n            for (row = 0; row < surface_image.height / 2; row++) {\n                for (col = 0; col < surface_image.width / 2; col++) {\n                    u_dst[col] = u_src[col * 2];\n                    v_dst[col] = u_src[col * 2 + 1];\n                }\n\n                u_src += surface_image.pitches[1];\n                u_dst += (surface_image.width / 2);\n                v_dst += (surface_image.width / 2);\n            }\n        }\n\n        /* write frame to file */\n        do {\n            n_items = fwrite(newImageBuffer, y_size * 3 / 2, 1, fp);\n        } while (n_items != 1);\n\n    } else {\n        printf(\"Not supported YUV surface fourcc !!! \\n\");\n        return VA_STATUS_ERROR_INVALID_SURFACE;\n    }\n\n    if (newImageBuffer) {\n        free(newImageBuffer);\n        newImageBuffer = NULL;\n    }\n\n    vaUnmapBuffer(va_dpy, surface_image.buf);\n    vaDestroyImage(va_dpy, surface_image.image_id);\n\n    return VA_STATUS_SUCCESS;\n}\n\nstatic VAStatus\nstore_yuv_surface_to_i420_file(FILE *fp,\n                               VASurfaceID surface_id)\n{\n    VAStatus va_status;\n    VAImage surface_image;\n    void *surface_p = NULL;\n    unsigned char *y_src = NULL;\n    unsigned char *u_src = NULL;\n    unsigned char *v_src = NULL;\n    unsigned char *y_dst = NULL;\n    unsigned char *u_dst = NULL;\n    unsigned char *v_dst = NULL;\n    uint32_t row, col;\n    int32_t n_items;\n    unsigned char * newImageBuffer = NULL;\n    va_status = vaSyncSurface(va_dpy, surface_id);\n    CHECK_VASTATUS(va_status, \"vaSyncSurface\");\n\n    va_status = vaDeriveImage(va_dpy, surface_id, &surface_image);\n    CHECK_VASTATUS(va_status, \"vaDeriveImage\");\n\n    va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p);\n    CHECK_VASTATUS(va_status, \"vaMapBuffer\");\n\n    /* store the surface to one i420 file */\n    if (surface_image.format.fourcc == VA_FOURCC_YV12 ||\n        surface_image.format.fourcc == VA_FOURCC_I420 ||\n        surface_image.format.fourcc == VA_FOURCC_NV12) {\n\n        uint32_t y_size = surface_image.width * surface_image.height;\n        uint32_t u_size = y_size / 4;\n\n        newImageBuffer = (unsigned char*)malloc(y_size * 3 / 2);\n        assert(newImageBuffer);\n\n        /* stored as YV12 format */\n        y_dst = newImageBuffer;\n        u_dst = newImageBuffer + y_size;\n        v_dst = newImageBuffer + y_size + u_size;\n\n        y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]);\n        if (surface_image.format.fourcc == VA_FOURCC_YV12) {\n            v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]);\n        } else if (surface_image.format.fourcc == VA_FOURCC_I420) {\n            u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]);\n        } else if (surface_image.format.fourcc == VA_FOURCC_NV12) {\n            u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            v_src = u_src;\n        }\n\n        /* Y plane copy */\n        for (row = 0; row < surface_image.height; row++) {\n            memcpy(y_dst, y_src, surface_image.width);\n            y_src += surface_image.pitches[0];\n            y_dst += surface_image.width;\n        }\n\n        /* UV plane copy */\n        if (surface_image.format.fourcc == VA_FOURCC_YV12 ||\n            surface_image.format.fourcc == VA_FOURCC_I420) {\n            for (row = 0; row < surface_image.height / 2; row ++) {\n                memcpy(v_dst, v_src, surface_image.width / 2);\n                memcpy(u_dst, u_src, surface_image.width / 2);\n\n                v_dst += surface_image.width / 2;\n                u_dst += surface_image.width / 2;\n\n                if (surface_image.format.fourcc == VA_FOURCC_YV12) {\n                    v_src += surface_image.pitches[1];\n                    u_src += surface_image.pitches[2];\n                } else {\n                    v_src += surface_image.pitches[2];\n                    u_src += surface_image.pitches[1];\n                }\n            }\n        } else if (surface_image.format.fourcc == VA_FOURCC_NV12) {\n            for (row = 0; row < surface_image.height / 2; row++) {\n                for (col = 0; col < surface_image.width / 2; col++) {\n                    u_dst[col] = u_src[col * 2];\n                    v_dst[col] = u_src[col * 2 + 1];\n                }\n\n                u_src += surface_image.pitches[1];\n                u_dst += (surface_image.width / 2);\n                v_dst += (surface_image.width / 2);\n            }\n        }\n\n        /* write frame to file */\n        do {\n            n_items = fwrite(newImageBuffer, y_size * 3 / 2, 1, fp);\n        } while (n_items != 1);\n\n    } else {\n        printf(\"Not supported YUV surface fourcc !!! \\n\");\n        return VA_STATUS_ERROR_INVALID_SURFACE;\n    }\n\n    if (newImageBuffer) {\n        free(newImageBuffer);\n        newImageBuffer = NULL;\n    }\n\n    vaUnmapBuffer(va_dpy, surface_image.buf);\n    vaDestroyImage(va_dpy, surface_image.image_id);\n\n    return VA_STATUS_SUCCESS;\n}\n\nstatic VAStatus\nstore_yuv_surface_to_nv12_file(FILE *fp,\n                               VASurfaceID surface_id)\n{\n    VAStatus va_status;\n    VAImage surface_image;\n    void *surface_p = NULL;\n    unsigned char *y_src = NULL;\n    unsigned char *u_src = NULL;\n    unsigned char *v_src = NULL;\n    unsigned char *y_dst = NULL;\n    unsigned char *u_dst = NULL;\n    unsigned char *v_dst = NULL;\n    uint32_t row, col;\n    int32_t n_items;\n    unsigned char * newImageBuffer = NULL;\n    va_status = vaSyncSurface(va_dpy, surface_id);\n    CHECK_VASTATUS(va_status, \"vaSyncSurface\");\n\n    va_status = vaDeriveImage(va_dpy, surface_id, &surface_image);\n    CHECK_VASTATUS(va_status, \"vaDeriveImage\");\n\n    va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p);\n    CHECK_VASTATUS(va_status, \"vaMapBuffer\");\n\n    /* store the surface to one nv12 file */\n    if (surface_image.format.fourcc == VA_FOURCC_YV12 ||\n        surface_image.format.fourcc == VA_FOURCC_I420 ||\n        surface_image.format.fourcc == VA_FOURCC_NV12) {\n\n        uint32_t y_size = surface_image.width * surface_image.height;\n\n        newImageBuffer = (unsigned char*)malloc(y_size * 3 / 2);\n        assert(newImageBuffer);\n\n        /* stored as YV12 format */\n        y_dst = newImageBuffer;\n        u_dst = v_dst = newImageBuffer + y_size;\n\n        y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]);\n\n        if (surface_image.format.fourcc == VA_FOURCC_YV12) {\n            v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]);\n        } else if (surface_image.format.fourcc == VA_FOURCC_I420) {\n            u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]);\n        } else if (surface_image.format.fourcc == VA_FOURCC_NV12) {\n            u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            v_src = u_src;\n        }\n\n        /* Y plane copy */\n        for (row = 0; row < surface_image.height; row++) {\n            memcpy(y_dst, y_src, surface_image.width);\n            y_src += surface_image.pitches[0];\n            y_dst += surface_image.width;\n        }\n\n        /* UV plane copy */\n        if (surface_image.format.fourcc == VA_FOURCC_YV12 ||\n            surface_image.format.fourcc == VA_FOURCC_I420) {\n            for (row = 0; row < surface_image.height / 2; row ++) {\n                for (col = 0; col < surface_image.width / 2; col++) {\n                    u_dst[col * 2] = u_src[col];\n                    u_dst[col * 2 + 1] = v_src[col];\n                }\n\n                u_dst += surface_image.width;\n\n                if (surface_image.format.fourcc == VA_FOURCC_YV12) {\n                    v_src += surface_image.pitches[1];\n                    u_src += surface_image.pitches[2];\n                } else {\n                    v_src += surface_image.pitches[2];\n                    u_src += surface_image.pitches[1];\n                }\n            }\n        } else if (surface_image.format.fourcc == VA_FOURCC_NV12) {\n            for (row = 0; row < surface_image.height / 2; row++) {\n                memcpy(u_dst, u_src, surface_image.width);\n                u_dst += surface_image.width;\n                u_src += surface_image.pitches[1];\n            }\n        }\n\n        /* write frame to file */\n        do {\n            n_items = fwrite(newImageBuffer, y_size * 3 / 2, 1, fp);\n        } while (n_items != 1);\n\n    } else {\n        printf(\"Not supported YUV surface fourcc !!! \\n\");\n        return VA_STATUS_ERROR_INVALID_SURFACE;\n    }\n\n    if (newImageBuffer) {\n        free(newImageBuffer);\n        newImageBuffer = NULL;\n    }\n\n    vaUnmapBuffer(va_dpy, surface_image.buf);\n    vaDestroyImage(va_dpy, surface_image.image_id);\n\n    return VA_STATUS_SUCCESS;\n}\n\nstatic VAStatus\nstore_packed_yuv_surface_to_packed_file(FILE *fp,\n                                        VASurfaceID surface_id)\n{\n    VAStatus va_status;\n    VAImage surface_image;\n    void *surface_p = NULL;\n    unsigned char *y_src = NULL;\n    unsigned char *y_dst = NULL;\n    uint32_t row;\n    int32_t n_items;\n    unsigned char * newImageBuffer = NULL;\n    va_status = vaSyncSurface(va_dpy, surface_id);\n    CHECK_VASTATUS(va_status, \"vaSyncSurface\");\n\n    va_status = vaDeriveImage(va_dpy, surface_id, &surface_image);\n    CHECK_VASTATUS(va_status, \"vaDeriveImage\");\n\n    va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p);\n    CHECK_VASTATUS(va_status, \"vaMapBuffer\");\n\n    /* store the surface to one YUY2 or UYVY file */\n    if (surface_image.format.fourcc == VA_FOURCC_YUY2 ||\n        surface_image.format.fourcc == VA_FOURCC_UYVY) {\n        uint32_t frame_size = surface_image.width * surface_image.height * 2;\n\n        newImageBuffer = (unsigned char*)malloc(frame_size);\n        assert(newImageBuffer);\n        memset(newImageBuffer, 0, frame_size);\n\n        /* stored as YUY2 or UYVY format */\n        y_dst = newImageBuffer;\n\n        y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]);\n\n        /* Plane 0 copy */\n        for (row = 0; row < surface_image.height; row++) {\n            memcpy(y_dst, y_src, surface_image.width * 2);\n            y_src += surface_image.pitches[0];\n            y_dst += surface_image.width * 2;\n        }\n\n        /* write frame to file */\n        do {\n            n_items = fwrite(newImageBuffer, frame_size, 1, fp);\n        } while (n_items != 1);\n\n    } else {\n        printf(\"Not supported YUV surface fourcc !!! \\n\");\n        return VA_STATUS_ERROR_INVALID_SURFACE;\n    }\n\n    if (newImageBuffer) {\n        free(newImageBuffer);\n        newImageBuffer = NULL;\n    }\n\n    vaUnmapBuffer(va_dpy, surface_image.buf);\n    vaDestroyImage(va_dpy, surface_image.image_id);\n\n    return VA_STATUS_SUCCESS;\n}\n\nstatic VAStatus\nstore_yuv_surface_to_10bit_file(FILE *fp, VASurfaceID surface_id)\n{\n    VAStatus va_status;\n    VAImage surface_image;\n    void *surface_p = NULL;\n    unsigned char *y_src = NULL;\n    unsigned char *u_src = NULL;\n    unsigned char *v_src = NULL;\n    unsigned char *y_dst = NULL;\n    unsigned char *u_dst = NULL;\n    unsigned char *v_dst = NULL;\n    uint32_t row;\n    int32_t n_items;\n    unsigned char * newImageBuffer = NULL;\n    va_status = vaSyncSurface(va_dpy, surface_id);\n    CHECK_VASTATUS(va_status, \"vaSyncSurface\");\n\n    va_status = vaDeriveImage(va_dpy, surface_id, &surface_image);\n    CHECK_VASTATUS(va_status, \"vaDeriveImage\");\n\n    va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p);\n    CHECK_VASTATUS(va_status, \"vaMapBuffer\");\n\n    /* store the surface to one 10bit file */\n    uint32_t y_size = surface_image.width * surface_image.height * 2;\n    uint32_t u_size = y_size / 4;\n\n    newImageBuffer = (unsigned char*)malloc(y_size * 3);\n    assert(newImageBuffer);\n    y_dst = newImageBuffer;\n\n    y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]);\n\n    /* Y plane copy */\n    for (row = 0; row < surface_image.height; row++) {\n        memcpy(y_dst, y_src, surface_image.width * 2);\n        y_src += surface_image.pitches[0];\n        y_dst += surface_image.width * 2;\n    }\n\n    if (surface_image.format.fourcc == VA_FOURCC_I010) {\n        u_dst = newImageBuffer + y_size;\n        v_dst = newImageBuffer + y_size + u_size;\n\n        u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n        v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]);\n\n        for (row = 0; row < surface_image.height / 2; row++) {\n            memcpy(u_dst, u_src, surface_image.width);\n            memcpy(v_dst, v_src, surface_image.width);\n\n            u_dst += surface_image.width;\n            v_dst += surface_image.width;\n\n            u_src += surface_image.pitches[1];\n            v_src += surface_image.pitches[2];\n        }\n    } else if (surface_image.format.fourcc == VA_FOURCC_P010) {\n        u_dst = newImageBuffer + y_size;\n        v_dst = u_dst;\n\n        u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n        v_src = u_src;\n\n        for (row = 0; row < surface_image.height / 2; row++) {\n            memcpy(u_dst, u_src, surface_image.width * 2);\n            u_dst += surface_image.width * 2;\n            u_src += surface_image.pitches[1];\n        }\n    } else {\n        printf(\"Not supported YUV surface fourcc !!! \\n\");\n        free(newImageBuffer);\n        return VA_STATUS_ERROR_INVALID_SURFACE;\n    }\n\n    /* write frame to file */\n    do {\n        n_items = fwrite(newImageBuffer, y_size * 3 / 2, 1, fp);\n    } while (n_items != 1);\n\n    if (newImageBuffer) {\n        free(newImageBuffer);\n        newImageBuffer = NULL;\n    }\n\n    vaUnmapBuffer(va_dpy, surface_image.buf);\n    vaDestroyImage(va_dpy, surface_image.image_id);\n\n    return VA_STATUS_SUCCESS;\n}\n\nstatic VAStatus\nstore_rgb_surface_to_rgb_file(FILE *fp, VASurfaceID surface_id)\n{\n    VAStatus va_status;\n    VAImage surface_image;\n    void *surface_p = NULL;\n    unsigned char *y_src = NULL;\n    unsigned char *y_dst = NULL;\n    uint32_t frame_size, row;\n    int32_t n_items;\n    unsigned char * newImageBuffer = NULL;\n    va_status = vaSyncSurface(va_dpy, surface_id);\n    CHECK_VASTATUS(va_status, \"vaSyncSurface\");\n\n    va_status = vaDeriveImage(va_dpy, surface_id, &surface_image);\n    CHECK_VASTATUS(va_status, \"vaDeriveImage\");\n\n    va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p);\n    CHECK_VASTATUS(va_status, \"vaMapBuffer\");\n\n    frame_size = surface_image.width * surface_image.height * 4;\n    newImageBuffer = (unsigned char*)malloc(frame_size);\n    assert(newImageBuffer);\n    y_dst = newImageBuffer;\n\n    y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]);\n\n    for (row = 0; row < surface_image.height; row++) {\n        memcpy(y_dst, y_src, surface_image.width * 4);\n        y_src += surface_image.pitches[0];\n        y_dst += surface_image.width * 4;\n    }\n\n    /* write frame to file */\n    do {\n        n_items = fwrite(newImageBuffer, frame_size, 1, fp);\n    } while (n_items != 1);\n\n    if (newImageBuffer) {\n        free(newImageBuffer);\n        newImageBuffer = NULL;\n    }\n\n    vaUnmapBuffer(va_dpy, surface_image.buf);\n    vaDestroyImage(va_dpy, surface_image.image_id);\n\n    return VA_STATUS_SUCCESS;\n}\n\nstatic VAStatus\nstore_yuv_surface_to_file(FILE *fp,\n                          VASurfaceID surface_id)\n{\n    if (g_out_fourcc == VA_FOURCC_YV12 ||\n        g_out_fourcc == VA_FOURCC_I420 ||\n        g_out_fourcc == VA_FOURCC_NV12) {\n        if (g_dst_file_fourcc == VA_FOURCC_YV12)\n            return store_yuv_surface_to_yv12_file(fp, surface_id);\n        else if (g_dst_file_fourcc == VA_FOURCC_I420)\n            return store_yuv_surface_to_i420_file(fp, surface_id);\n        else if (g_dst_file_fourcc == VA_FOURCC_NV12)\n            return store_yuv_surface_to_nv12_file(fp, surface_id);\n        else {\n            printf(\"Not supported YUV fourcc for output !!!\\n\");\n            return VA_STATUS_ERROR_INVALID_SURFACE;\n        }\n    } else if ((g_out_fourcc == VA_FOURCC_YUY2 &&\n                g_dst_file_fourcc == VA_FOURCC_YUY2) ||\n               (g_out_fourcc == VA_FOURCC_UYVY &&\n                g_dst_file_fourcc == VA_FOURCC_UYVY)) {\n        return store_packed_yuv_surface_to_packed_file(fp, surface_id);\n    } else if ((g_out_fourcc == VA_FOURCC_I010 &&\n                g_dst_file_fourcc == VA_FOURCC_I010) ||\n               (g_out_fourcc == VA_FOURCC_P010 &&\n                g_dst_file_fourcc == VA_FOURCC_P010)) {\n        return store_yuv_surface_to_10bit_file(fp, surface_id);\n    } else if ((g_out_fourcc == VA_FOURCC_RGBA &&\n                g_dst_file_fourcc == VA_FOURCC_RGBA) ||\n               (g_out_fourcc == VA_FOURCC_RGBX &&\n                g_dst_file_fourcc == VA_FOURCC_RGBX) ||\n               (g_out_fourcc == VA_FOURCC_RGBA &&\n                g_dst_file_fourcc == VA_FOURCC_BGRA) ||\n               (g_out_fourcc == VA_FOURCC_BGRX &&\n                g_dst_file_fourcc == VA_FOURCC_BGRX)) {\n        return store_rgb_surface_to_rgb_file(fp, surface_id);\n    } else {\n        printf(\"Not supported YUV fourcc for output !!!\\n\");\n        return VA_STATUS_ERROR_INVALID_SURFACE;\n    }\n}\n\nstatic VAStatus\nvideo_frame_process(VASurfaceID in_surface_id,\n                    VASurfaceID out_surface_id)\n{\n    VAStatus va_status;\n    VAProcPipelineParameterBuffer pipeline_param;\n    VARectangle surface_region, output_region;\n    VABufferID pipeline_param_buf_id = VA_INVALID_ID;\n    /* Fill pipeline buffer */\n    surface_region.x = 0;\n    surface_region.y = 0;\n    surface_region.width = g_in_pic_width;\n    surface_region.height = g_in_pic_height;\n    output_region.x = 0;\n    output_region.y = 0;\n    output_region.width = g_out_pic_width;\n    output_region.height = g_out_pic_height;\n\n    memset(&pipeline_param, 0, sizeof(pipeline_param));\n    pipeline_param.surface = in_surface_id;\n    pipeline_param.surface_region = &surface_region;\n    pipeline_param.output_region = &output_region;\n\n    va_status = vaCreateBuffer(va_dpy,\n                               context_id,\n                               VAProcPipelineParameterBufferType,\n                               sizeof(pipeline_param),\n                               1,\n                               &pipeline_param,\n                               &pipeline_param_buf_id);\n    CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n    va_status = vaBeginPicture(va_dpy,\n                               context_id,\n                               out_surface_id);\n    CHECK_VASTATUS(va_status, \"vaBeginPicture\");\n\n    va_status = vaRenderPicture(va_dpy,\n                                context_id,\n                                &pipeline_param_buf_id,\n                                1);\n    CHECK_VASTATUS(va_status, \"vaRenderPicture\");\n\n    va_status = vaEndPicture(va_dpy, context_id);\n    CHECK_VASTATUS(va_status, \"vaEndPicture\");\n\n    if (pipeline_param_buf_id != VA_INVALID_ID)\n        vaDestroyBuffer(va_dpy, pipeline_param_buf_id);\n\n    return va_status;\n}\n\nstatic VAStatus\nvpp_context_create()\n{\n    VAStatus va_status = VA_STATUS_SUCCESS;\n    int32_t j;\n\n    /* VA driver initialization */\n    va_dpy = va_open_display();\n    int32_t major_ver, minor_ver;\n    va_status = vaInitialize(va_dpy, &major_ver, &minor_ver);\n    assert(va_status == VA_STATUS_SUCCESS);\n\n    /* Check whether VPP is supported by driver */\n    VAEntrypoint entrypoints[5];\n    int32_t num_entrypoints;\n    num_entrypoints = vaMaxNumEntrypoints(va_dpy);\n    va_status = vaQueryConfigEntrypoints(va_dpy,\n                                         VAProfileNone,\n                                         entrypoints,\n                                         &num_entrypoints);\n    CHECK_VASTATUS(va_status, \"vaQueryConfigEntrypoints\");\n\n    for (j = 0; j < num_entrypoints; j++) {\n        if (entrypoints[j] == VAEntrypointVideoProc)\n            break;\n    }\n\n    if (j == num_entrypoints) {\n        printf(\"VPP is not supported by driver\\n\");\n        assert(0);\n    }\n\n    /* Render target surface format check */\n    VAConfigAttrib attrib;\n    attrib.type = VAConfigAttribRTFormat;\n    va_status = vaGetConfigAttributes(va_dpy,\n                                      VAProfileNone,\n                                      VAEntrypointVideoProc,\n                                      &attrib,\n                                      1);\n    CHECK_VASTATUS(va_status, \"vaGetConfigAttributes\");\n    if (!(attrib.value & g_out_format)) {\n        printf(\"RT format %d is not supported by VPP !\\n\", g_out_format);\n        assert(0);\n    }\n\n    /* Create surface/config/context for VPP pipeline */\n    va_status = create_surface(&g_in_surface_id, g_in_pic_width, g_in_pic_height,\n                               g_in_fourcc, g_in_format);\n    CHECK_VASTATUS(va_status, \"vaCreateSurfaces for input\");\n\n    va_status = create_surface(&g_out_surface_id, g_out_pic_width, g_out_pic_height,\n                               g_out_fourcc, g_out_format);\n    CHECK_VASTATUS(va_status, \"vaCreateSurfaces for output\");\n\n    va_status = vaCreateConfig(va_dpy,\n                               VAProfileNone,\n                               VAEntrypointVideoProc,\n                               &attrib,\n                               1,\n                               &config_id);\n    CHECK_VASTATUS(va_status, \"vaCreateConfig\");\n\n    va_status = vaCreateContext(va_dpy,\n                                config_id,\n                                g_out_pic_width,\n                                g_out_pic_height,\n                                VA_PROGRESSIVE,\n                                &g_out_surface_id,\n                                1,\n                                &context_id);\n    CHECK_VASTATUS(va_status, \"vaCreateContext\");\n    return va_status;\n}\n\nstatic void\nvpp_context_destroy()\n{\n    /* Release resource */\n    vaDestroySurfaces(va_dpy, &g_in_surface_id, 1);\n    vaDestroySurfaces(va_dpy, &g_out_surface_id, 1);\n    vaDestroyContext(va_dpy, context_id);\n    vaDestroyConfig(va_dpy, config_id);\n\n    vaTerminate(va_dpy);\n    va_close_display(va_dpy);\n}\n\nstatic int8_t\nparse_fourcc_and_format(char *str, uint32_t *fourcc, uint32_t *format)\n{\n    uint32_t tfourcc = VA_FOURCC('N', 'V', '1', '2');\n    uint32_t tformat = VA_RT_FORMAT_YUV420;\n\n    if (!strcmp(str, \"YV12\")) {\n        tfourcc = VA_FOURCC('Y', 'V', '1', '2');\n    } else if (!strcmp(str, \"I420\")) {\n        tfourcc = VA_FOURCC('I', '4', '2', '0');\n    } else if (!strcmp(str, \"NV12\")) {\n        tfourcc = VA_FOURCC('N', 'V', '1', '2');\n    } else if (!strcmp(str, \"YUY2\") || !strcmp(str, \"YUYV\")) {\n        tfourcc = VA_FOURCC('Y', 'U', 'Y', '2');\n    } else if (!strcmp(str, \"UYVY\")) {\n        tfourcc = VA_FOURCC('U', 'Y', 'V', 'Y');\n    } else if (!strcmp(str, \"P010\")) {\n        tfourcc = VA_FOURCC('P', '0', '1', '0');\n    } else if (!strcmp(str, \"I010\")) {\n        tfourcc = VA_FOURCC('I', '0', '1', '0');\n    } else if (!strcmp(str, \"RGBA\")) {\n        tfourcc = VA_FOURCC_RGBA;\n    } else if (!strcmp(str, \"RGBX\")) {\n        tfourcc = VA_FOURCC_RGBX;\n    } else if (!strcmp(str, \"BGRA\")) {\n        tfourcc = VA_FOURCC_BGRA;\n    } else if (!strcmp(str, \"BGRX\")) {\n        tfourcc = VA_FOURCC_BGRX;\n    } else {\n        printf(\"Not supported format: %s! Currently only support following format: %s\\n\",\n               str, \"YV12, I420, NV12, YUY2(YUYV), UYVY, P010, I010, RGBA, RGBX, BGRA or BGRX\");\n        assert(0);\n    }\n\n    if (fourcc)\n        *fourcc = tfourcc;\n\n    if (format)\n        *format = tformat;\n\n    return 0;\n}\n\nstatic int8_t\nparse_basic_parameters()\n{\n    char str[MAX_LEN];\n\n    /* Read src frame file information */\n    read_value_string(g_config_file_fd, \"SRC_FILE_NAME\", g_src_file_name);\n    read_value_uint32(g_config_file_fd, \"SRC_FRAME_WIDTH\", &g_in_pic_width);\n    read_value_uint32(g_config_file_fd, \"SRC_FRAME_HEIGHT\", &g_in_pic_height);\n    read_value_string(g_config_file_fd, \"SRC_FRAME_FORMAT\", str);\n    parse_fourcc_and_format(str, &g_in_fourcc, &g_in_format);\n\n    /* Read dst frame file information */\n    read_value_string(g_config_file_fd, \"DST_FILE_NAME\", g_dst_file_name);\n    read_value_uint32(g_config_file_fd, \"DST_FRAME_WIDTH\", &g_out_pic_width);\n    read_value_uint32(g_config_file_fd, \"DST_FRAME_HEIGHT\", &g_out_pic_height);\n    read_value_string(g_config_file_fd, \"DST_FRAME_FORMAT\", str);\n    parse_fourcc_and_format(str, &g_out_fourcc, &g_out_format);\n\n    read_value_string(g_config_file_fd, \"SRC_FILE_FORMAT\", str);\n    parse_fourcc_and_format(str, &g_src_file_fourcc, NULL);\n\n    read_value_string(g_config_file_fd, \"DST_FILE_FORMAT\", str);\n    parse_fourcc_and_format(str, &g_dst_file_fourcc, NULL);\n\n    read_value_uint32(g_config_file_fd, \"FRAME_SUM\", &g_frame_count);\n\n    if (g_in_pic_width != g_out_pic_width ||\n        g_in_pic_height != g_out_pic_height)\n        printf(\"Scaling will be done : from %4d x %4d to %4d x %4d \\n\",\n               g_in_pic_width, g_in_pic_height,\n               g_out_pic_width, g_out_pic_height);\n\n    if (g_in_fourcc != g_out_fourcc)\n        printf(\"Format conversion will be done: from %d to %d \\n\",\n               g_in_fourcc, g_out_fourcc);\n\n    return 0;\n}\n\nstatic void\nprint_help()\n{\n    printf(\"The app is used to test the scaling and csc feature.\\n\");\n    printf(\"Cmd Usage: ./vppscaling_csc process_scaling_csc.cfg\\n\");\n    printf(\"The configure file process_scaling_csc.cfg is used to configure the para.\\n\");\n    printf(\"You can refer process_scaling_csc.cfg.template for each para meaning and create the configure file.\\n\");\n}\nint32_t main(int32_t argc, char *argv[])\n{\n    VAStatus va_status;\n    uint32_t i;\n\n    if (argc != 2 || !strcmp(argv[1], \"-h\") || !strcmp(argv[1], \"--help\")) {\n        print_help();\n        return -1;\n    }\n\n    /* Parse the configure file for video process*/\n    strncpy(g_config_file_name, argv[1], MAX_LEN);\n    g_config_file_name[MAX_LEN - 1] = '\\0';\n\n    if (NULL == (g_config_file_fd = fopen(g_config_file_name, \"r\"))) {\n        printf(\"Open configure file %s failed!\\n\", g_config_file_name);\n        assert(0);\n    }\n\n    /* Parse basic parameters */\n    if (parse_basic_parameters()) {\n        printf(\"Parse parameters in configure file error\\n\");\n        assert(0);\n    }\n\n    va_status = vpp_context_create();\n    if (va_status != VA_STATUS_SUCCESS) {\n        printf(\"vpp context create failed \\n\");\n        assert(0);\n    }\n\n    /* Video frame fetch, process and store */\n    if (NULL == (g_src_file_fd = fopen(g_src_file_name, \"r\"))) {\n        printf(\"Open SRC_FILE_NAME: %s failed, please specify it in config file: %s !\\n\",\n               g_src_file_name, g_config_file_name);\n        assert(0);\n    }\n\n    if (NULL == (g_dst_file_fd = fopen(g_dst_file_name, \"w\"))) {\n        printf(\"Open DST_FILE_NAME: %s failed, please specify it in config file: %s !\\n\",\n               g_dst_file_name, g_config_file_name);\n        assert(0);\n    }\n\n    printf(\"\\nStart to process, ...\\n\");\n    struct timespec Pre_time;\n    struct timespec Cur_time;\n    unsigned int duration = 0;\n    clock_gettime(CLOCK_MONOTONIC, &Pre_time);\n\n    for (i = 0; i < g_frame_count; i ++) {\n        upload_yuv_frame_to_yuv_surface(g_src_file_fd, g_in_surface_id);\n        video_frame_process(g_in_surface_id, g_out_surface_id);\n        store_yuv_surface_to_file(g_dst_file_fd, g_out_surface_id);\n    }\n\n    clock_gettime(CLOCK_MONOTONIC, &Cur_time);\n    duration = (Cur_time.tv_sec - Pre_time.tv_sec) * 1000;\n    if (Cur_time.tv_nsec > Pre_time.tv_nsec) {\n        duration += (Cur_time.tv_nsec - Pre_time.tv_nsec) / 1000000;\n    } else {\n        duration += (Cur_time.tv_nsec + 1000000000 - Pre_time.tv_nsec) / 1000000 - 1000;\n    }\n\n    printf(\"Finish processing, performance: \\n\");\n    printf(\"%d frames processed in: %d ms, ave time = %d ms\\n\", g_frame_count, duration, duration / g_frame_count);\n\n    if (g_src_file_fd)\n        fclose(g_src_file_fd);\n\n    if (g_dst_file_fd)\n        fclose(g_dst_file_fd);\n\n    if (g_config_file_fd)\n        fclose(g_config_file_fd);\n\n    vpp_context_destroy();\n\n    return 0;\n}\n"
  },
  {
    "path": "videoprocess/vppscaling_n_out_usrptr.cpp",
    "content": "/*\n* Copyright (c) 2009-2018, Intel Corporation\n*\n* Permission is hereby granted, free of charge, to any person obtaining a\n* copy of this software and associated documentation files (the \"Software\"),\n* to deal in the Software without restriction, including without limitation\n* the rights to use, copy, modify, merge, publish, distribute, sublicense,\n* and/or sell copies of the Software, and to permit persons to whom the\n* Software is furnished to do so, subject to the following conditions:\n*\n* The above copyright notice and this permission notice shall be included\n* in all copies or substantial portions of the Software.\n*\n* THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR\n* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,\n* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\n* OTHER DEALINGS IN THE SOFTWARE.\n*/\n/*\n * Video process test case based on LibVA.\n * This test covers 1:N(N>=2) output for scaling and several surface format conversion.\n * also support 2nd scale, regarding the 1st scale output as input for 2nd scale\n * also support  UserPtr 16 alignment as NV12/YV12/YUY2 input\n * support none (0, 0) top/left in render target as RGB/YV12 output\n * support none (0, 0) top/left input crop\n * Usage: ./vppscaling_n_out_usrptr process_scaling_n_out_usrptr.cfg\n */\n\n#include <stdio.h>\n#include <stdlib.h>\n#include <string.h>\n#include <stdint.h>\n#include <time.h>\n#include <assert.h>\n#include <va/va.h>\n#include <va/va_vpp.h>\n#include \"va_display.h\"\n#if 0\n#include <va/va_x11.h>\n#endif\n\n#define MAX_LEN   1024\n\n#define CHECK_VASTATUS(va_status,func)                                      \\\n    if (va_status != VA_STATUS_SUCCESS) {                                     \\\n        fprintf(stderr,\"%s:%s (%d) failed,exit\\n\", __func__, func, __LINE__); \\\n        exit(1);                                                              \\\n    }\n\n#define VPP_FREE(p)                       \\\n    if(p != NULL){                      \\\n        free(p);  p = NULL;                        \\\n    }\n\ntypedef struct {\n    char                file_name[100];\n    FILE*               file_fd;\n    uint32_t            pic_width;\n    uint32_t            pic_height;\n    uint32_t            fourcc;\n    uint32_t            rtformat;\n    uint32_t            memtype;\n    uint32_t            align_mode;\n    void                *pBuf;\n    uint8_t             *pUserBase;\n    uintptr_t           ptrb;\n} VPP_ImageInfo;\n\n\n#if 0\nstatic Display     *x11_display = NULL;\n#endif\nstatic VADisplay   va_dpy = NULL;\nstatic VAContextID context_id = 0;\nstatic VAConfigID  config_id = 0;\nstatic VASurfaceID g_in_surface_id = VA_INVALID_ID;\nstatic VASurfaceID *g_out_surface_ids = NULL;\n\nstatic FILE* g_config_file_fd = NULL;\nstatic char g_config_file_name[MAX_LEN];\nstatic VPP_ImageInfo    g_src_info;\nstatic VPP_ImageInfo    *g_dst_info = NULL;\n\nstatic uint32_t g_frame_count = 0;\nstatic uint32_t g_dst_count = 1;\nstatic uint32_t g_scale_again = 0;\n\n\nstatic int8_t\nread_value_string(FILE *fp, const char* field_name, char* value)\n{\n    char strLine[MAX_LEN];\n    char* field = NULL;\n    char* str = NULL;\n    uint16_t i;\n\n    if (!fp || !field_name || !value)  {\n        printf(\"Invalid fuction parameters\\n\");\n        return -1;\n    }\n\n    rewind(fp);\n\n    while (!feof(fp)) {\n        if (!fgets(strLine, MAX_LEN, fp))\n            continue;\n\n        for (i = 0; i < MAX_LEN && strLine[i]; i++)\n            if (strLine[i] != ' ') break;\n\n        if (i == MAX_LEN || strLine[i] == '#' || strLine[i] == '\\n')\n            continue;\n\n        field = strtok(&strLine[i], \":\");\n        if (strncmp(field, field_name, strlen(field_name)))\n            continue;\n\n        if (!(str = strtok(NULL, \":\")))\n            continue;\n\n        /* skip blank space in string */\n        while (*str == ' ')\n            str++;\n\n        *(str + strlen(str) - 1) = '\\0';\n        strcpy(value, str);\n\n        return 0;\n    }\n\n    return -1;\n}\n\nstatic int8_t\nread_value_uint32(FILE* fp, const char* field_name, uint32_t* value)\n{\n    char str[MAX_LEN];\n\n    if (read_value_string(fp, field_name, str)) {\n        printf(\"Failed to find integer field: %s\", field_name);\n        return -1;\n    }\n\n    *value = (uint32_t)atoi(str);\n    return 0;\n}\n\nstatic int8_t\nread_value_int16(FILE* fp, const char* field_name, int16_t* value)\n{\n    char str[MAX_LEN];\n\n    if (read_value_string(fp, field_name, str)) {\n        printf(\"Failed to find integer field: %s\", field_name);\n        return -1;\n    }\n\n    *value = (int16_t)atoi(str);\n    return 0;\n}\n\nstatic int8_t\nread_value_uint16(FILE* fp, const char* field_name, uint16_t* value)\n{\n    char str[MAX_LEN];\n\n    if (read_value_string(fp, field_name, str)) {\n        printf(\"Failed to find integer field: %s\", field_name);\n        return -1;\n    }\n\n    *value = (uint16_t)atoi(str);\n    return 0;\n}\n\n\nstatic VAStatus\ncreate_surface(VPP_ImageInfo &img_info, VASurfaceID * p_surface_id)\n{\n    VAStatus va_status = VA_STATUS_SUCCESS;\n    if (img_info.memtype == VA_SURFACE_ATTRIB_MEM_TYPE_VA) {\n        VASurfaceAttrib    surface_attrib;\n        surface_attrib.type =  VASurfaceAttribPixelFormat;\n        surface_attrib.flags = VA_SURFACE_ATTRIB_SETTABLE;\n        surface_attrib.value.type = VAGenericValueTypeInteger;\n        surface_attrib.value.value.i = img_info.fourcc;\n\n        va_status = vaCreateSurfaces(va_dpy,\n                                     img_info.rtformat,\n                                     img_info.pic_width,\n                                     img_info.pic_height,\n                                     p_surface_id,\n                                     1,\n                                     &surface_attrib,\n                                     1);\n        CHECK_VASTATUS(va_status, \"vaCreateSurfaces\");\n\n    } else if (img_info.memtype == VA_SURFACE_ATTRIB_MEM_TYPE_USER_PTR) {\n        VASurfaceAttrib surfaceAttrib[3];\n        VASurfaceAttribExternalBuffers extBuffer;\n        uint32_t base_addr_align = 0x1000;\n        //VAAppSurfaceResInfo surfaceinfo;\n        //va_status = vaQuerySurfaceAllocation(va_dpy, format, fourCC,width, height, VA_SURFACE_ATTRIB_MEM_TYPE_USER_PTR, &surfaceinfo);\n        uint32_t size = 0;\n        surfaceAttrib[0].flags = VA_SURFACE_ATTRIB_SETTABLE;\n        surfaceAttrib[0].type = VASurfaceAttribPixelFormat;\n        surfaceAttrib[0].value.type = VAGenericValueTypeInteger;\n        surfaceAttrib[0].value.value.i = img_info.fourcc;\n\n        surfaceAttrib[1].flags = VA_SURFACE_ATTRIB_SETTABLE;\n        surfaceAttrib[1].type = VASurfaceAttribMemoryType;\n        surfaceAttrib[1].value.type = VAGenericValueTypeInteger;\n        surfaceAttrib[1].value.value.i = VA_SURFACE_ATTRIB_MEM_TYPE_USER_PTR;\n\n        surfaceAttrib[2].flags = VA_SURFACE_ATTRIB_SETTABLE;\n        surfaceAttrib[2].type = VASurfaceAttribExternalBufferDescriptor;\n        surfaceAttrib[2].value.type = VAGenericValueTypePointer;\n        surfaceAttrib[2].value.value.p = (void *)&extBuffer;\n        memset(&extBuffer, 0, sizeof(extBuffer));\n\n        uint32_t pitch_align = img_info.align_mode;\n        switch (img_info.fourcc) {\n        case VA_FOURCC_NV12:\n            extBuffer.pitches[0] = ((img_info.pic_width + pitch_align - 1) / pitch_align) * pitch_align;\n            size = (extBuffer.pitches[0] * img_info.pic_height) * 3 / 2;\n            size = (size + base_addr_align - 1) / base_addr_align * base_addr_align;\n            extBuffer.offsets[0] = 0;\n            extBuffer.offsets[1] = extBuffer.pitches[0] * img_info.pic_height;\n            extBuffer.pitches[1] = extBuffer.pitches[0];\n            extBuffer.num_planes = 2;\n            break;\n        case VA_FOURCC_YUY2:\n            extBuffer.pitches[0] = ((img_info.pic_width + pitch_align - 1) / pitch_align) * pitch_align;\n            size = (extBuffer.pitches[0] * (img_info.pic_height + 2)) * 2;\n            size = (size + base_addr_align - 1) / base_addr_align * base_addr_align;\n            extBuffer.offsets[0] = 0;\n            extBuffer.pitches[0] = extBuffer.pitches[0] * 2;\n            extBuffer.num_planes = 1;\n            break;\n        case VA_FOURCC_YV12: {\n            int y_align = 32;\n            int uv_align = 16;\n            extBuffer.pitches[0] = ((img_info.pic_width + y_align - 1) / y_align) * y_align;\n            extBuffer.pitches[1] = ((img_info.pic_width / 2 + uv_align - 1) / uv_align) * uv_align;\n            extBuffer.pitches[2] = extBuffer.pitches[1];\n            size = extBuffer.pitches[0] * img_info.pic_height + extBuffer.pitches[1] * img_info.pic_height;\n            size = (size + base_addr_align - 1) / base_addr_align * base_addr_align;\n            extBuffer.offsets[0] = 0;\n            extBuffer.offsets[1] = extBuffer.pitches[0] * img_info.pic_height;\n            extBuffer.offsets[2] = extBuffer.offsets[1] + extBuffer.pitches[1] * img_info.pic_height / 2;\n            extBuffer.num_planes = 3;\n            break;\n        }\n        case VA_FOURCC_ARGB:\n            extBuffer.pitches[0] = ((img_info.pic_width + pitch_align - 1) / pitch_align) * pitch_align;\n            size = (extBuffer.pitches[0] * (img_info.pic_height  + 2)) * 4;\n            size = (size + base_addr_align - 1) / base_addr_align * base_addr_align;\n            extBuffer.offsets[0] = 0;\n            extBuffer.pitches[0] = extBuffer.pitches[0] * 4;\n            extBuffer.num_planes = 1;\n            break;\n        default:\n            break;\n        }\n        img_info.pBuf = malloc(size + base_addr_align);\n        img_info.pUserBase = (uint8_t*)((((uint64_t)(img_info.pBuf) + base_addr_align - 1) / base_addr_align) * base_addr_align);\n\n        extBuffer.pixel_format = img_info.fourcc;\n        extBuffer.width = img_info.pic_width;\n        extBuffer.height = img_info.pic_height;\n        extBuffer.data_size = size;\n\n        extBuffer.num_buffers = 1;\n        extBuffer.buffers = &(img_info.ptrb);\n        extBuffer.buffers[0] = (uintptr_t)(img_info.pUserBase);\n\n        va_status = vaCreateSurfaces(va_dpy, img_info.rtformat, img_info.pic_width, img_info.pic_height, p_surface_id, 1, surfaceAttrib, 3);\n        CHECK_VASTATUS(va_status, \"vaCreateSurfaces\");\n    }\n    return va_status;\n}\n\n\n/* Load yuv frame to NV12/YUY2/YV12/ARGB surface*/\nstatic VAStatus\nupload_yuv_frame_to_yuv_surface(FILE *fp,\n                                VASurfaceID surface_id)\n{\n    VAStatus va_status;\n    VAImage surface_image;\n    unsigned char *y_src = NULL;\n    unsigned char *u_src = NULL;\n    unsigned char *v_src = NULL;\n    unsigned char *y_dst = NULL;\n    unsigned char *u_dst = NULL;\n    unsigned char *v_dst = NULL;\n    void *surface_p = NULL;\n    uint32_t frame_size, row;\n    size_t n_items;\n    unsigned char * newImageBuffer = NULL;\n    va_status = vaSyncSurface(va_dpy, surface_id);\n    CHECK_VASTATUS(va_status, \"vaSyncSurface\");\n\n    va_status = vaDeriveImage(va_dpy, surface_id, &surface_image);\n    CHECK_VASTATUS(va_status, \"vaDeriveImage\");\n\n    va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p);\n    CHECK_VASTATUS(va_status, \"vaMapBuffer\");\n\n    if (surface_image.format.fourcc == VA_FOURCC_NV12) {\n        frame_size = surface_image.width * surface_image.height * 3 / 2;\n        newImageBuffer = (unsigned char*)malloc(frame_size);\n        assert(newImageBuffer);\n\n        do {\n            n_items = fread(newImageBuffer, frame_size, 1, fp);\n        } while (n_items != 1);\n\n        y_src = newImageBuffer;\n        u_src = newImageBuffer + surface_image.width * surface_image.height;\n        y_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]);\n        u_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n\n        /* Y plane, directly copy */\n        for (row = 0; row < surface_image.height; row++) {\n            memcpy(y_dst, y_src, surface_image.width);\n            y_dst += surface_image.pitches[0];\n            y_src += surface_image.width;\n        }\n\n        /* UV plane */\n        for (row = 0; row < surface_image.height / 2; row++) {\n            memcpy(u_dst, u_src, surface_image.width);\n            u_src += surface_image.width;\n            u_dst += surface_image.pitches[1];\n        }\n    } else if (surface_image.format.fourcc == VA_FOURCC_YUY2) {\n        frame_size = surface_image.width * surface_image.height * 2;\n        newImageBuffer = (unsigned char*)malloc(frame_size);\n        assert(newImageBuffer);\n\n        do {\n            n_items = fread(newImageBuffer, frame_size, 1, fp);\n        } while (n_items != 1);\n\n        y_src = newImageBuffer;\n        y_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]);\n\n        /* plane 0, directly copy */\n        for (row = 0; row < surface_image.height; row++) {\n            memcpy(y_dst, y_src, surface_image.width * 2);\n            y_src += surface_image.width * 2;\n            y_dst += surface_image.pitches[0];\n        }\n    } else if (surface_image.format.fourcc == VA_FOURCC_YV12) {\n        frame_size = surface_image.width * surface_image.height * 3 / 2;\n        newImageBuffer = (unsigned char*)malloc(frame_size);\n        assert(newImageBuffer);\n\n        do {\n            n_items = fread(newImageBuffer, frame_size, 1, fp);\n        } while (n_items != 1);\n\n        y_src = newImageBuffer;\n        v_src = newImageBuffer + surface_image.width * surface_image.height;\n        u_src = newImageBuffer + surface_image.width * surface_image.height * 5 / 4;\n        y_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]);\n        v_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n        u_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]);\n        /* Y plane, directly copy */\n        for (row = 0; row < surface_image.height; row++) {\n            memcpy(y_dst, y_src, surface_image.width);\n            y_dst += surface_image.pitches[0];\n            y_src += surface_image.width;\n        }\n        for (row = 0; row < surface_image.height / 2; row ++) {\n            memcpy(v_dst, v_src, surface_image.width / 2);\n            memcpy(u_dst, u_src, surface_image.width / 2);\n            v_src += surface_image.width / 2;\n            u_src += surface_image.width / 2;\n            v_dst += surface_image.pitches[1];\n            u_dst += surface_image.pitches[2];\n        }\n    } else if (surface_image.format.fourcc == VA_FOURCC_ARGB) {\n        frame_size = surface_image.width * surface_image.height * 4;\n        newImageBuffer = (unsigned char*)malloc(frame_size);\n        assert(newImageBuffer);\n\n        do {\n            n_items = fread(newImageBuffer, frame_size, 1, fp);\n        } while (n_items != 1);\n\n        y_src = newImageBuffer;\n        y_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]);\n\n        /* plane 0, directly copy */\n        for (row = 0; row < surface_image.height; row++) {\n            memcpy(y_dst, y_src, surface_image.width * 4);\n            y_src += surface_image.width * 4;\n            y_dst += surface_image.pitches[0];\n        }\n    }\n\n    if (newImageBuffer) {\n        free(newImageBuffer);\n        newImageBuffer = NULL;\n    }\n\n    va_status = vaUnmapBuffer(va_dpy, surface_image.buf);\n    CHECK_VASTATUS(va_status, \"vaUnmapBuffer\");\n    va_status = vaDestroyImage(va_dpy, surface_image.image_id);\n    CHECK_VASTATUS(va_status, \"vaDestroyImage\");\n    return VA_STATUS_SUCCESS;\n}\n\nstatic VAStatus\nstore_yuv_surface_to_nv12_file(FILE *fp,\n                               VASurfaceID surface_id)\n{\n    VAStatus va_status;\n    VAImage surface_image;\n    void *surface_p = NULL;\n    unsigned char *y_src = NULL;\n    unsigned char *u_src = NULL;\n    unsigned char *y_dst = NULL;\n    unsigned char *u_dst = NULL;\n    uint32_t row;\n    int32_t n_items;\n    unsigned char * newImageBuffer = NULL;\n    va_status = vaDeriveImage(va_dpy, surface_id, &surface_image);\n    CHECK_VASTATUS(va_status, \"vaDeriveImage\");\n\n    va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p);\n    CHECK_VASTATUS(va_status, \"vaMapBuffer\");\n\n    /* store the surface to one nv12 file */\n    uint32_t y_size = surface_image.width * surface_image.height;\n\n    newImageBuffer = (unsigned char*)malloc(y_size * 3 / 2);\n    assert(newImageBuffer);\n\n    /* stored as YV12 format */\n    y_dst = newImageBuffer;\n    u_dst = newImageBuffer + y_size;\n\n    y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]);\n    u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n\n    /* Y plane copy */\n    for (row = 0; row < surface_image.height; row++) {\n        memcpy(y_dst, y_src, surface_image.width);\n        y_src += surface_image.pitches[0];\n        y_dst += surface_image.width;\n    }\n\n    /* UV plane copy */\n    for (row = 0; row < surface_image.height / 2; row++) {\n        memcpy(u_dst, u_src, surface_image.width);\n        u_dst += surface_image.width;\n        u_src += surface_image.pitches[1];\n    }\n    /* write frame to file */\n    do {\n        n_items = fwrite(newImageBuffer, y_size * 3 / 2, 1, fp);\n    } while (n_items != 1);\n\n    if (newImageBuffer) {\n        free(newImageBuffer);\n        newImageBuffer = NULL;\n    }\n\n    va_status = vaUnmapBuffer(va_dpy, surface_image.buf);\n    CHECK_VASTATUS(va_status, \"vaUnmapBuffer\");\n    va_status = vaDestroyImage(va_dpy, surface_image.image_id);\n    CHECK_VASTATUS(va_status, \"vaDestroyImage\");\n\n    return VA_STATUS_SUCCESS;\n}\n\nstatic VAStatus\nstore_packed_yuv_surface_to_yuy2_file(FILE *fp,\n                                      VASurfaceID surface_id)\n{\n    VAStatus va_status;\n    VAImage surface_image;\n    void *surface_p = NULL;\n    unsigned char *y_src = NULL;\n    unsigned char *y_dst = NULL;\n    uint32_t row;\n    int32_t n_items;\n    unsigned char * newImageBuffer = NULL;\n    va_status = vaDeriveImage(va_dpy, surface_id, &surface_image);\n    CHECK_VASTATUS(va_status, \"vaDeriveImage\");\n\n    va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p);\n    CHECK_VASTATUS(va_status, \"vaMapBuffer\");\n\n    /* store the surface to one YUY2 file */\n    uint32_t frame_size = surface_image.width * surface_image.height * 2;\n    newImageBuffer = (unsigned char*)malloc(frame_size);\n    assert(newImageBuffer);\n    memset(newImageBuffer, 0, frame_size);\n\n    /* stored as YUY2 or UYVY format */\n    y_dst = newImageBuffer;\n    y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]);\n\n    /* Plane 0 copy */\n    for (row = 0; row < surface_image.height; row++) {\n        memcpy(y_dst, y_src, surface_image.width * 2);\n        y_src += surface_image.pitches[0];\n        y_dst += surface_image.width * 2;\n    }\n\n    /* write frame to file */\n    do {\n        n_items = fwrite(newImageBuffer, frame_size, 1, fp);\n    } while (n_items != 1);\n\n    if (newImageBuffer) {\n        free(newImageBuffer);\n        newImageBuffer = NULL;\n    }\n\n    va_status = vaUnmapBuffer(va_dpy, surface_image.buf);\n    CHECK_VASTATUS(va_status, \"vaUnmapBuffer\");\n    va_status = vaDestroyImage(va_dpy, surface_image.image_id);\n    CHECK_VASTATUS(va_status, \"vaDestroyImage\");\n\n    return VA_STATUS_SUCCESS;\n}\n\n/* Store YV12 surface to yv12 file */\nstatic VAStatus\nstore_yuv_surface_to_yv12_file(FILE *fp,\n                               VASurfaceID surface_id)\n{\n    VAStatus va_status;\n    VAImage surface_image;\n    void *surface_p = NULL;\n    unsigned char *y_src, *u_src, *v_src;\n    unsigned char *y_dst, *u_dst, *v_dst;\n    uint32_t row;\n    int32_t n_items;\n    unsigned char * newImageBuffer = NULL;\n\n    va_status = vaDeriveImage(va_dpy, surface_id, &surface_image);\n    CHECK_VASTATUS(va_status, \"vaDeriveImage\");\n\n    va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p);\n    CHECK_VASTATUS(va_status, \"vaMapBuffer\");\n    uint32_t y_size = surface_image.width * surface_image.height;\n    uint32_t u_size = y_size / 4;\n\n    newImageBuffer = (unsigned char*)malloc(y_size * 3 / 2);\n    assert(newImageBuffer);\n\n    /* stored as YV12 format */\n    y_dst = newImageBuffer;\n    v_dst = newImageBuffer + y_size;\n    u_dst = newImageBuffer + y_size + u_size;\n\n    y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]);\n    v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n    u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]);\n\n    /* Y plane copy */\n    for (row = 0; row < surface_image.height; row++) {\n        memcpy(y_dst, y_src, surface_image.width);\n        y_src += surface_image.pitches[0];\n        y_dst += surface_image.width;\n    }\n\n    /* UV plane copy */\n    for (row = 0; row < surface_image.height / 2; row ++) {\n        memcpy(v_dst, v_src, surface_image.width / 2);\n        memcpy(u_dst, u_src, surface_image.width / 2);\n        v_dst += surface_image.width / 2;\n        u_dst += surface_image.width / 2;\n        v_src += surface_image.pitches[1];\n        u_src += surface_image.pitches[2];\n    }\n    /* write frame to file */\n    do {\n        n_items = fwrite(newImageBuffer, y_size * 3 / 2, 1, fp);\n    } while (n_items != 1);\n    if (newImageBuffer) {\n        free(newImageBuffer);\n        newImageBuffer = NULL;\n    }\n\n    vaUnmapBuffer(va_dpy, surface_image.buf);\n    vaDestroyImage(va_dpy, surface_image.image_id);\n\n    return VA_STATUS_SUCCESS;\n}\n\n\nstatic VAStatus\nstore_rgb_surface_to_rgb_file(FILE *fp, VASurfaceID surface_id)\n{\n    VAStatus va_status;\n    VAImage surface_image;\n    void *surface_p = NULL;\n    unsigned char *y_src;\n    unsigned char *y_dst;\n    uint32_t frame_size, row;\n    int32_t n_items;\n    unsigned char * newImageBuffer = NULL;\n\n    va_status = vaDeriveImage(va_dpy, surface_id, &surface_image);\n    CHECK_VASTATUS(va_status, \"vaDeriveImage\");\n\n    va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p);\n    CHECK_VASTATUS(va_status, \"vaMapBuffer\");\n\n    frame_size = surface_image.width * surface_image.height * 4;\n    newImageBuffer = (unsigned char*)malloc(frame_size);\n    assert(newImageBuffer);\n    y_dst = newImageBuffer;\n\n    y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]);\n\n    for (row = 0; row < surface_image.height; row++) {\n        memcpy(y_dst, y_src, surface_image.width * 4);\n        y_src += surface_image.pitches[0];\n        y_dst += surface_image.width * 4;\n    }\n\n    /* write frame to file */\n    do {\n        n_items = fwrite(newImageBuffer, frame_size, 1, fp);\n    } while (n_items != 1);\n\n    if (newImageBuffer) {\n        free(newImageBuffer);\n        newImageBuffer = NULL;\n    }\n\n    vaUnmapBuffer(va_dpy, surface_image.buf);\n    vaDestroyImage(va_dpy, surface_image.image_id);\n\n    return VA_STATUS_SUCCESS;\n}\n\nstatic VAStatus\nstore_yuv_surface_to_file(FILE *fp,\n                          VASurfaceID surface_id, uint32_t  out_fourcc)\n{\n    if (out_fourcc == VA_FOURCC_NV12) {\n        return store_yuv_surface_to_nv12_file(fp, surface_id);\n    } else if (out_fourcc == VA_FOURCC_YUY2) {\n        return store_packed_yuv_surface_to_yuy2_file(fp, surface_id);\n    } else if (out_fourcc == VA_FOURCC_YV12) {\n        return store_yuv_surface_to_yv12_file(fp, surface_id);\n    } else if (out_fourcc == VA_FOURCC_ARGB) {\n        return store_rgb_surface_to_rgb_file(fp, surface_id);\n    } else {\n        printf(\"Not supported YUV fourcc for output !!!\\n\");\n        return VA_STATUS_ERROR_INVALID_SURFACE;\n    }\n}\n\nstatic VAStatus\nvideo_frame_process(VASurfaceID in_surface_id,\n                    VASurfaceID *out_surface_ids)\n{\n    VAStatus va_status;\n    VAProcPipelineParameterBuffer pipeline_param;\n    VARectangle surface_region, output_region;\n    VABufferID pipeline_param_buf_id = VA_INVALID_ID;\n    /* Fill pipeline buffer */\n    memset(&pipeline_param, 0, sizeof(pipeline_param));\n    pipeline_param.surface = in_surface_id;\n    if (g_dst_count > 1 && g_scale_again == 0) {\n        pipeline_param.additional_outputs = &out_surface_ids[1];\n        pipeline_param.num_additional_outputs = g_dst_count - 1;\n    }\n    uint32_t input_crop = 0;\n    read_value_uint32(g_config_file_fd, \"SRC_SURFACE_CROP\", &input_crop);\n    if (input_crop == 0) {\n        surface_region.x = 0;\n        surface_region.y = 0;\n        surface_region.width = g_src_info.pic_width;\n        surface_region.height = g_src_info.pic_height;\n    } else {\n        //do the input crop\n        read_value_int16(g_config_file_fd, \"SRC_CROP_LEFT_X\", &surface_region.x);\n        read_value_int16(g_config_file_fd, \"SRC_CROP_TOP_Y\", &surface_region.y);\n        read_value_uint16(g_config_file_fd, \"SRC_CROP_WIDTH\", &surface_region.width);\n        read_value_uint16(g_config_file_fd, \"SRC_CROP_HEIGHT\", &surface_region.height);\n    }\n\n    uint32_t output_crop = 0;\n    read_value_uint32(g_config_file_fd, \"DST_SURFACE_CROP\", &output_crop);\n    if (output_crop == 0) {\n        output_region.x = 0;\n        output_region.y = 0;\n        output_region.width = g_dst_info[0].pic_width;\n        output_region.height = g_dst_info[0].pic_height;\n    } else {\n        //do the output crop\n        read_value_int16(g_config_file_fd, \"DST_CROP_LEFT_X\", &output_region.x);\n        read_value_int16(g_config_file_fd, \"DST_CROP_TOP_Y\", &output_region.y);\n        read_value_uint16(g_config_file_fd, \"DST_CROP_WIDTH\", &output_region.width);\n        read_value_uint16(g_config_file_fd, \"DST_CROP_HEIGHT\", &output_region.height);\n    }\n    pipeline_param.surface_region = &surface_region;\n    pipeline_param.output_region = &output_region;\n    pipeline_param.output_background_color = 0xff000000;\n    va_status = vaCreateBuffer(va_dpy,\n                               context_id,\n                               VAProcPipelineParameterBufferType,\n                               sizeof(pipeline_param),\n                               1,\n                               &pipeline_param,\n                               &pipeline_param_buf_id);\n    CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n    va_status = vaBeginPicture(va_dpy,\n                               context_id,\n                               out_surface_ids[0]);\n    CHECK_VASTATUS(va_status, \"vaBeginPicture\");\n\n    va_status = vaRenderPicture(va_dpy,\n                                context_id,\n                                &pipeline_param_buf_id,\n                                1);\n    CHECK_VASTATUS(va_status, \"vaRenderPicture\");\n\n    va_status = vaEndPicture(va_dpy, context_id);\n    CHECK_VASTATUS(va_status, \"vaEndPicture\");\n\n    if (pipeline_param_buf_id != VA_INVALID_ID) {\n        vaDestroyBuffer(va_dpy, pipeline_param_buf_id);\n        CHECK_VASTATUS(va_status, \"vaDestroyBuffer\");\n    }\n    if (g_scale_again == 1) {\n        printf(\"begin to scale the 16align out as input\\n\");\n        memset(&pipeline_param, 0, sizeof(pipeline_param));\n        pipeline_param.surface = out_surface_ids[0];\n\n        va_status = vaCreateBuffer(va_dpy,\n                                   context_id,\n                                   VAProcPipelineParameterBufferType,\n                                   sizeof(pipeline_param),\n                                   1,\n                                   &pipeline_param,\n                                   &pipeline_param_buf_id);\n        CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n        va_status = vaBeginPicture(va_dpy, context_id, out_surface_ids[1]);\n        CHECK_VASTATUS(va_status, \"vaBeginPicture\");\n        va_status = vaRenderPicture(va_dpy, context_id, &pipeline_param_buf_id, 1);\n        CHECK_VASTATUS(va_status, \"vaRenderPicture\");\n        va_status = vaEndPicture(va_dpy, context_id);\n        CHECK_VASTATUS(va_status, \"vaEndPicture\");\n        if (pipeline_param_buf_id != VA_INVALID_ID) {\n            vaDestroyBuffer(va_dpy, pipeline_param_buf_id);\n            CHECK_VASTATUS(va_status, \"vaDestroyBuffer\");\n        }\n    }\n\n    return va_status;\n}\n\nstatic VAStatus\nvpp_context_create()\n{\n    VAStatus va_status = VA_STATUS_SUCCESS;\n    int32_t j;\n\n    /* VA driver initialization */\n#if 0\n    x11_display = XOpenDisplay(\"intel-CoffeeLake-Client-Platform:2\");\n    if (NULL == x11_display) {\n        printf(\"Error: Can't connect X server! %s %s(line %d)\\n\", __FILE__, __func__, __LINE__);\n        return false;\n    }\n    va_dpy = vaGetDisplay(x11_display);\n#endif\n    va_dpy = va_open_display();\n    int32_t major_ver, minor_ver;\n    va_status = vaInitialize(va_dpy, &major_ver, &minor_ver);\n    assert(va_status == VA_STATUS_SUCCESS);\n\n    /* Check whether VPP is supported by driver */\n    VAEntrypoint entrypoints[5];\n    int32_t num_entrypoints;\n    num_entrypoints = vaMaxNumEntrypoints(va_dpy);\n    va_status = vaQueryConfigEntrypoints(va_dpy,\n                                         VAProfileNone,\n                                         entrypoints,\n                                         &num_entrypoints);\n    CHECK_VASTATUS(va_status, \"vaQueryConfigEntrypoints\");\n\n    for (j = 0; j < num_entrypoints; j++) {\n        if (entrypoints[j] == VAEntrypointVideoProc)\n            break;\n    }\n\n    if (j == num_entrypoints) {\n        printf(\"VPP is not supported by driver\\n\");\n        assert(0);\n    }\n\n    /* Create surface/config/context for VPP pipeline */\n    va_status = create_surface(g_src_info, &g_in_surface_id);\n    CHECK_VASTATUS(va_status, \"vaCreateSurfaces for input\");\n\n    for (uint32_t i = 0; i < g_dst_count; i++) {\n        va_status = create_surface(g_dst_info[i], &g_out_surface_ids[i]);\n    }\n    CHECK_VASTATUS(va_status, \"vaCreateSurfaces for output\");\n    VAConfigAttrib attrib;\n    attrib.type = VAConfigAttribRTFormat;\n    attrib.value = VA_RT_FORMAT_YUV420;\n\n    va_status = vaCreateConfig(va_dpy,\n                               VAProfileNone,\n                               VAEntrypointVideoProc,\n                               &attrib,\n                               1,\n                               &config_id);\n    CHECK_VASTATUS(va_status, \"vaCreateConfig\");\n\n    va_status = vaCreateContext(va_dpy,\n                                config_id,\n                                g_dst_info[0].pic_width,\n                                g_dst_info[0].pic_height,\n                                VA_PROGRESSIVE,\n                                g_out_surface_ids,\n                                g_dst_count,\n                                &context_id);\n    CHECK_VASTATUS(va_status, \"vaCreateContext\");\n    return va_status;\n}\n\nstatic void\nvpp_context_destroy()\n{\n    VAStatus va_status;\n\n    /* Release resource */\n    va_status = vaDestroySurfaces(va_dpy, &g_in_surface_id, 1);\n    CHECK_VASTATUS(va_status, \"vaDestroySurfaces\");\n    VPP_FREE(g_src_info.pBuf);\n    for (uint32_t index = 0; index < g_dst_count; index++) {\n        vaDestroySurfaces(va_dpy, &g_out_surface_ids[index], 1);\n        CHECK_VASTATUS(va_status, \"vaDestroySurfaces\");\n        VPP_FREE(g_dst_info[index].pBuf);\n    }\n    VPP_FREE(g_dst_info);\n    VPP_FREE(g_out_surface_ids);\n    vaDestroyContext(va_dpy, context_id);\n    CHECK_VASTATUS(va_status, \"vaDestroyContext\");\n    vaDestroyConfig(va_dpy, config_id);\n    CHECK_VASTATUS(va_status, \"vaDestroyConfig\");\n    vaTerminate(va_dpy);\n    CHECK_VASTATUS(va_status, \"vaTerminate\");\n#if 0\n    XCloseDisplay(x11_display);\n    x11_display = NULL;\n#endif\n    va_close_display(va_dpy);\n}\n\nstatic int8_t\nparse_fourcc_and_format(char *str, uint32_t *fourcc, uint32_t *format)\n{\n    uint32_t tfourcc = VA_FOURCC('N', 'V', '1', '2');\n    uint32_t tformat = VA_RT_FORMAT_YUV420;\n\n    if (!strcmp(str, \"NV12\")) {\n        tfourcc = VA_FOURCC('N', 'V', '1', '2');\n    } else if (!strcmp(str, \"YUY2\")) {\n        tfourcc = VA_FOURCC('Y', 'U', 'Y', '2');\n    } else if (!strcmp(str, \"YV12\")) {\n        tfourcc = VA_FOURCC('Y', 'V', '1', '2');\n    } else if (!strcmp(str, \"ARGB\")) {\n        tfourcc = VA_FOURCC('A', 'R', 'G', 'B');\n    } else {\n        printf(\"Not supported format: %s! Currently only support following format: %s for this sample\\n\",\n               str, \"NV12, YUY2,YV12,ARGB\");\n        assert(0);\n    }\n\n    if (fourcc)\n        *fourcc = tfourcc;\n\n    if (format)\n        *format = tformat;\n\n    return 0;\n}\n\nstatic int8_t\nparse_memtype_format(char *str, uint32_t *dst_memtype)\n{\n    uint32_t tmemtype = VA_SURFACE_ATTRIB_MEM_TYPE_VA;\n\n    if (!strcmp(str, \"VA\")) {\n        tmemtype = VA_SURFACE_ATTRIB_MEM_TYPE_VA;\n    } else if (!strcmp(str, \"CPU\")) {\n        tmemtype = VA_SURFACE_ATTRIB_MEM_TYPE_USER_PTR;\n    } else {\n        printf(\"Not supported format: %s! Currently only support following format: %s\\n\",\n               str, \"VA,CPU\");\n        assert(0);\n    }\n    if (dst_memtype)\n        *dst_memtype = tmemtype;\n    return 0;\n}\n\n\nstatic int8_t\nparse_basic_parameters()\n{\n    char str[MAX_LEN];\n\n    /* Read src frame file information */\n    read_value_string(g_config_file_fd, \"SRC_FILE_NAME\", g_src_info.file_name);\n    read_value_uint32(g_config_file_fd, \"SRC_FRAME_WIDTH\", &g_src_info.pic_width);\n    read_value_uint32(g_config_file_fd, \"SRC_FRAME_HEIGHT\", &g_src_info.pic_height);\n    read_value_string(g_config_file_fd, \"SRC_FRAME_FORMAT\", str);\n    parse_fourcc_and_format(str, &g_src_info.fourcc, &g_src_info.rtformat);\n    read_value_string(g_config_file_fd, \"SRC_SURFACE_MEMORY_TYPE\", str);\n    parse_memtype_format(str, &g_src_info.memtype);\n    read_value_uint32(g_config_file_fd, \"SRC_SURFACE_CPU_ALIGN_MODE\", &g_src_info.align_mode);\n\n    read_value_uint32(g_config_file_fd, \"2ND_SCALE\", &g_scale_again);\n\n    /* Read dst frame file information */\n    read_value_uint32(g_config_file_fd, \"DST_NUMBER\", &g_dst_count);\n    g_out_surface_ids = (VASurfaceID*)malloc(g_dst_count * sizeof(VASurfaceID));\n    g_dst_info = (VPP_ImageInfo *)malloc(g_dst_count * sizeof(VPP_ImageInfo));\n    for (uint32_t i = 0; i < g_dst_count; i++) {\n        char dst_file_name[MAX_LEN];\n        char dst_frame_width[MAX_LEN];\n        char dst_frame_height[MAX_LEN];\n        char dst_frame_format[MAX_LEN];\n        char dst_memtype[MAX_LEN];\n        char dst_align_mode[MAX_LEN];\n        sprintf(dst_file_name, \"DST_FILE_NAME_%d\", i + 1);\n        sprintf(dst_frame_width, \"DST_FRAME_WIDTH_%d\", i + 1);\n        sprintf(dst_frame_height, \"DST_FRAME_HEIGHT_%d\", i + 1);\n        sprintf(dst_frame_format, \"DST_FRAME_FORMAT_%d\", i + 1);\n        sprintf(dst_memtype, \"DST_SURFACE_MEMORY_TYPE_%d\", i + 1);\n        sprintf(dst_align_mode, \"DST_SURFACE_CPU_ALIGN_MODE_%d\", i + 1);\n        read_value_string(g_config_file_fd, dst_file_name, g_dst_info[i].file_name);\n        read_value_uint32(g_config_file_fd, dst_frame_width, &g_dst_info[i].pic_width);\n        read_value_uint32(g_config_file_fd, dst_frame_height, &g_dst_info[i].pic_height);\n        read_value_string(g_config_file_fd, dst_frame_format, str);\n        parse_fourcc_and_format(str, &g_dst_info[i].fourcc, &g_dst_info[i].rtformat);\n        read_value_string(g_config_file_fd, dst_memtype, str);\n        parse_memtype_format(str, &g_dst_info[i].memtype);\n        read_value_uint32(g_config_file_fd, dst_align_mode, &g_dst_info[i].align_mode);\n    }\n    read_value_uint32(g_config_file_fd, \"FRAME_SUM\", &g_frame_count);\n    return 0;\n}\n\nstatic void\nprint_help()\n{\n    printf(\"The app is used to test the usrptr and 1:N output and crop feature.\\n\");\n    printf(\"Cmd Usage: ./vppscaling_n_out_usrptr process_scaling_n_out_usrptr.cfg\\n\");\n    printf(\"The configure file process_scaling_n_out_usrptr.cfg is used to configure the para.\\n\");\n    printf(\"You can refer process_scaling_n_out_usrptr.cfg.template for each para meaning and create the configure file.\\n\");\n}\n\nint32_t main(int32_t argc, char *argv[])\n{\n    VAStatus va_status;\n    uint32_t i;\n\n    if (argc != 2 || !strcmp(argv[1], \"-h\") || !strcmp(argv[1], \"--help\")) {\n        print_help();\n        return -1;\n    }\n\n\n    /* Parse the configure file for video process*/\n    strncpy(g_config_file_name, argv[1], MAX_LEN);\n    g_config_file_name[MAX_LEN - 1] = '\\0';\n\n    if (NULL == (g_config_file_fd = fopen(g_config_file_name, \"r\"))) {\n        printf(\"Open configure file %s failed!\\n\", g_config_file_name);\n        assert(0);\n    }\n\n    /* Parse basic parameters */\n    if (parse_basic_parameters()) {\n        printf(\"Parse parameters in configure file error\\n\");\n        assert(0);\n    }\n\n    va_status = vpp_context_create();\n    if (va_status != VA_STATUS_SUCCESS) {\n        printf(\"vpp context create failed \\n\");\n        assert(0);\n    }\n\n    /* Video frame fetch, process and store */\n    if (NULL == (g_src_info.file_fd = fopen(g_src_info.file_name, \"r\"))) {\n        printf(\"Open SRC_FILE_NAME: %s failed, please specify it in config file: %s !\\n\",\n               g_src_info.file_name, g_config_file_name);\n        assert(0);\n    }\n    for (uint32_t index = 0; index < g_dst_count; index++) {\n        if (NULL == (g_dst_info[index].file_fd = fopen(g_dst_info[index].file_name, \"w\"))) {\n            printf(\"Open DST_FILE_NAME: %s failed, please specify it in config file: %s !\\n\",\n                   g_dst_info[index].file_name, g_config_file_name);\n            assert(0);\n        }\n    }\n\n    printf(\"\\nStart to process, ...\\n\");\n    struct timespec Pre_time;\n    struct timespec Cur_time;\n    unsigned int duration = 0;\n    clock_gettime(CLOCK_MONOTONIC, &Pre_time);\n\n    for (i = 0; i < g_frame_count; i ++) {\n        upload_yuv_frame_to_yuv_surface(g_src_info.file_fd, g_in_surface_id);\n        video_frame_process(g_in_surface_id, g_out_surface_ids);\n        //first sync surface to check the process ready\n        va_status = vaSyncSurface(va_dpy, g_out_surface_ids[g_dst_count - 1]);\n        CHECK_VASTATUS(va_status, \"vaSyncSurface\");\n        for (uint32_t index = 0; index < g_dst_count; index++) {\n            store_yuv_surface_to_file(g_dst_info[index].file_fd, g_out_surface_ids[index], g_dst_info[index].fourcc);\n        }\n    }\n\n    clock_gettime(CLOCK_MONOTONIC, &Cur_time);\n    duration = (Cur_time.tv_sec - Pre_time.tv_sec) * 1000;\n    if (Cur_time.tv_nsec > Pre_time.tv_nsec) {\n        duration += (Cur_time.tv_nsec - Pre_time.tv_nsec) / 1000000;\n    } else {\n        duration += (Cur_time.tv_nsec + 1000000000 - Pre_time.tv_nsec) / 1000000 - 1000;\n    }\n\n    printf(\"Finish processing, performance: \\n\");\n    printf(\"%d frames processed in: %d ms, ave time = %d ms\\n\", g_frame_count, duration, duration / g_frame_count);\n\n    if (g_src_info.file_fd)\n        fclose(g_src_info.file_fd);\n    for (uint32_t index = 0; index < g_dst_count; index++) {\n        if (g_dst_info[index].file_fd)\n            fclose(g_dst_info[index].file_fd);\n    }\n    if (g_config_file_fd)\n        fclose(g_config_file_fd);\n\n    vpp_context_destroy();\n\n    return 0;\n}\n"
  },
  {
    "path": "videoprocess/vppsharpness.cpp",
    "content": "/*\n* Copyright (c) 2009-2018, Intel Corporation\n*\n* Permission is hereby granted, free of charge, to any person obtaining a\n* copy of this software and associated documentation files (the \"Software\"),\n* to deal in the Software without restriction, including without limitation\n* the rights to use, copy, modify, merge, publish, distribute, sublicense,\n* and/or sell copies of the Software, and to permit persons to whom the\n* Software is furnished to do so, subject to the following conditions:\n*\n* The above copyright notice and this permission notice shall be included\n* in all copies or substantial portions of the Software.\n*\n* THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR\n* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,\n* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\n* OTHER DEALINGS IN THE SOFTWARE.\n*/\n/*\n * Video process test case based on LibVA.\n * This test covers sharpness feature.\n * Usage: ./vppsharpness process_sharpness.cfg\n */\n\n#include <stdio.h>\n#include <stdlib.h>\n#include <string.h>\n#include <stdint.h>\n#include <time.h>\n#include <assert.h>\n#include <va/va.h>\n#include <va/va_vpp.h>\n#include \"va_display.h\"\n\n#ifndef VA_FOURCC_I420\n#define VA_FOURCC_I420 0x30323449\n#endif\n\n#define MAX_LEN   1024\n\n#define CHECK_VASTATUS(va_status,func)                                      \\\n  if (va_status != VA_STATUS_SUCCESS) {                                     \\\n      fprintf(stderr,\"%s:%s (%d) failed,exit\\n\", __func__, func, __LINE__); \\\n      exit(1);                                                              \\\n  }\n\nstatic VADisplay va_dpy = NULL;\nstatic VAContextID context_id = 0;\nstatic VAConfigID  config_id = 0;\nstatic VASurfaceID g_in_surface_id = VA_INVALID_ID;\nstatic VASurfaceID g_out_surface_id = VA_INVALID_ID;\n\nstatic FILE* g_config_file_fd = NULL;\nstatic FILE* g_src_file_fd = NULL;\nstatic FILE* g_dst_file_fd = NULL;\n\nstatic char g_config_file_name[MAX_LEN];\nstatic char g_src_file_name[MAX_LEN];\nstatic char g_dst_file_name[MAX_LEN];\n\nstatic uint32_t g_in_pic_width = 352;\nstatic uint32_t g_in_pic_height = 288;\nstatic uint32_t g_out_pic_width = 352;\nstatic uint32_t g_out_pic_height = 288;\n\nstatic uint32_t g_in_fourcc  = VA_FOURCC('N', 'V', '1', '2');\nstatic uint32_t g_in_format  = VA_RT_FORMAT_YUV420;\nstatic uint32_t g_out_fourcc = VA_FOURCC('N', 'V', '1', '2');\nstatic uint32_t g_out_format = VA_RT_FORMAT_YUV420;\nstatic uint32_t g_src_file_fourcc = VA_FOURCC('I', '4', '2', '0');\nstatic uint32_t g_dst_file_fourcc = VA_FOURCC('Y', 'V', '1', '2');\n\nstatic uint32_t g_frame_count = 0;\n\nstatic int8_t\nread_value_string(FILE *fp, const char* field_name, char* value)\n{\n    char strLine[MAX_LEN];\n    char* field = NULL;\n    char* str = NULL;\n    uint16_t i;\n\n    if (!fp || !field_name || !value)  {\n        printf(\"Invalid fuction parameters\\n\");\n        return -1;\n    }\n\n    rewind(fp);\n\n    while (!feof(fp)) {\n        if (!fgets(strLine, MAX_LEN, fp))\n            continue;\n\n        for (i = 0; i < MAX_LEN && strLine[i]; i++)\n            if (strLine[i] != ' ') break;\n\n        if (i == MAX_LEN || strLine[i] == '#' || strLine[i] == '\\n')\n            continue;\n\n        field = strtok(&strLine[i], \":\");\n        if (strncmp(field, field_name, strlen(field_name)))\n            continue;\n\n        if (!(str = strtok(NULL, \":\")))\n            continue;\n\n        /* skip blank space in string */\n        while (*str == ' ')\n            str++;\n\n        *(str + strlen(str) - 1) = '\\0';\n        strcpy(value, str);\n\n        return 0;\n    }\n\n    return -1;\n}\n\nstatic int8_t\nread_value_uint32(FILE* fp, const char* field_name, uint32_t* value)\n{\n    char str[MAX_LEN];\n\n    if (read_value_string(fp, field_name, str)) {\n        printf(\"Failed to find integer field: %s\", field_name);\n        return -1;\n    }\n\n    *value = (uint32_t)atoi(str);\n    return 0;\n}\nstatic int8_t\nread_value_float(FILE *fp, const char* field_name, float* value)\n{\n    char str[MAX_LEN];\n    if (read_value_string(fp, field_name, str)) {\n        printf(\"Failed to find float field: %s \\n\", field_name);\n        return -1;\n    }\n\n    *value = atof(str);\n    return 0;\n}\n\nstatic float\nadjust_to_range(VAProcFilterValueRange *range, float value)\n{\n    if (value < range->min_value || value > range->max_value) {\n        printf(\"Value: %f exceed range: (%f ~ %f), force to use default: %f \\n\",\n               value, range->min_value, range->max_value, range->default_value);\n        return range->default_value;\n    }\n\n    return value;\n}\n\nstatic VAStatus\ncreate_surface(VASurfaceID * p_surface_id,\n               uint32_t width, uint32_t height,\n               uint32_t fourCC, uint32_t format)\n{\n    VAStatus va_status;\n    VASurfaceAttrib    surface_attrib;\n    surface_attrib.type =  VASurfaceAttribPixelFormat;\n    surface_attrib.flags = VA_SURFACE_ATTRIB_SETTABLE;\n    surface_attrib.value.type = VAGenericValueTypeInteger;\n    surface_attrib.value.value.i = fourCC;\n\n    va_status = vaCreateSurfaces(va_dpy,\n                                 format,\n                                 width,\n                                 height,\n                                 p_surface_id,\n                                 1,\n                                 &surface_attrib,\n                                 1);\n    return va_status;\n}\n\n/* Load yuv frame to NV12/YV12/I420 surface*/\nstatic VAStatus\nupload_yuv_frame_to_yuv_surface(FILE *fp,\n                                VASurfaceID surface_id)\n{\n    VAStatus va_status;\n    VAImage surface_image;\n    unsigned char *y_src = NULL;\n    unsigned char *u_src = NULL;\n    unsigned char *v_src = NULL;\n    unsigned char *y_dst = NULL;\n    unsigned char *u_dst = NULL;\n    unsigned char *v_dst = NULL;\n    void *surface_p = NULL;\n    uint32_t frame_size, row, col;\n    size_t n_items;\n    unsigned char * newImageBuffer = NULL;\n    va_status = vaSyncSurface(va_dpy, surface_id);\n    CHECK_VASTATUS(va_status, \"vaSyncSurface\");\n\n    va_status = vaDeriveImage(va_dpy, surface_id, &surface_image);\n    CHECK_VASTATUS(va_status, \"vaDeriveImage\");\n\n    va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p);\n    CHECK_VASTATUS(va_status, \"vaMapBuffer\");\n\n    if (surface_image.format.fourcc == VA_FOURCC_YV12 ||\n        surface_image.format.fourcc == VA_FOURCC_I420 ||\n        surface_image.format.fourcc == VA_FOURCC_NV12) {\n\n        frame_size = surface_image.width * surface_image.height * 3 / 2;\n        newImageBuffer = (unsigned char*)malloc(frame_size);\n        assert(newImageBuffer);\n\n        do {\n            n_items = fread(newImageBuffer, frame_size, 1, fp);\n        } while (n_items != 1);\n\n        y_src = newImageBuffer;\n        if (g_src_file_fourcc == VA_FOURCC_I420) {\n            u_src = newImageBuffer + surface_image.width * surface_image.height;\n            v_src = newImageBuffer + surface_image.width * surface_image.height * 5 / 4;\n        } else if (g_src_file_fourcc == VA_FOURCC_YV12) {\n            v_src = newImageBuffer + surface_image.width * surface_image.height;\n            u_src = newImageBuffer + surface_image.width * surface_image.height * 5 / 4;\n        } else if (g_src_file_fourcc == VA_FOURCC_NV12) {\n            u_src = newImageBuffer + surface_image.width * surface_image.height;\n            v_src = u_src;\n        } else {\n            printf(\"Not supported YUV fourcc for input file !!!\\n\");\n            free(newImageBuffer);\n            return VA_STATUS_ERROR_INVALID_SURFACE;\n        }\n\n        y_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]);\n\n        if (surface_image.format.fourcc == VA_FOURCC_YV12) {\n            v_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            u_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]);\n        } else if (surface_image.format.fourcc == VA_FOURCC_I420) {\n            u_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            v_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]);\n        } else {\n            u_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            v_dst = u_dst;\n        }\n\n        /* Y plane, directly copy */\n        for (row = 0; row < surface_image.height; row++) {\n            memcpy(y_dst, y_src, surface_image.width);\n            y_dst += surface_image.pitches[0];\n            y_src += surface_image.width;\n        }\n\n        /* UV plane */\n        if (surface_image.format.fourcc == VA_FOURCC_YV12 ||\n            surface_image.format.fourcc == VA_FOURCC_I420) {\n            for (row = 0; row < surface_image.height / 2; row ++) {\n                if (g_src_file_fourcc == VA_FOURCC_I420 ||\n                    g_src_file_fourcc == VA_FOURCC_YV12) {\n                    memcpy(v_dst, v_src, surface_image.width / 2);\n                    memcpy(u_dst, u_src, surface_image.width / 2);\n\n                    v_src += surface_image.width / 2;\n                    u_src += surface_image.width / 2;\n                } else {\n                    for (col = 0; col < surface_image.width / 2; col++) {\n                        u_dst[col] = u_src[col * 2];\n                        v_dst[col] = u_src[col * 2 + 1];\n                    }\n\n                    u_src += surface_image.width;\n                    v_src = u_src;\n                }\n\n                if (surface_image.format.fourcc == VA_FOURCC_YV12) {\n                    v_dst += surface_image.pitches[1];\n                    u_dst += surface_image.pitches[2];\n                } else {\n                    v_dst += surface_image.pitches[2];\n                    u_dst += surface_image.pitches[1];\n                }\n            }\n        } else if (surface_image.format.fourcc == VA_FOURCC_NV12) {\n            for (row = 0; row < surface_image.height / 2; row++) {\n                if (g_src_file_fourcc == VA_FOURCC_I420 ||\n                    g_src_file_fourcc == VA_FOURCC_YV12) {\n                    for (col = 0; col < surface_image.width / 2; col++) {\n                        u_dst[col * 2] = u_src[col];\n                        u_dst[col * 2 + 1] = v_src[col];\n                    }\n\n                    u_src += (surface_image.width / 2);\n                    v_src += (surface_image.width / 2);\n                } else {\n                    memcpy(u_dst, u_src, surface_image.width);\n                    u_src += surface_image.width;\n                    v_src = u_src;\n                }\n\n                u_dst += surface_image.pitches[1];\n            }\n        }\n    } else if ((surface_image.format.fourcc == VA_FOURCC_YUY2 &&\n                g_src_file_fourcc == VA_FOURCC_YUY2) ||\n               (surface_image.format.fourcc == VA_FOURCC_UYVY &&\n                g_src_file_fourcc == VA_FOURCC_UYVY)) {\n        frame_size = surface_image.width * surface_image.height * 2;\n        newImageBuffer = (unsigned char*)malloc(frame_size);\n        assert(newImageBuffer);\n\n        do {\n            n_items = fread(newImageBuffer, frame_size, 1, fp);\n        } while (n_items != 1);\n\n        y_src = newImageBuffer;\n        y_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]);\n\n        /* plane 0, directly copy */\n        for (row = 0; row < surface_image.height; row++) {\n            memcpy(y_dst, y_src, surface_image.width * 2);\n            y_src += surface_image.width * 2;\n            y_dst += surface_image.pitches[0];\n        }\n    } else if ((surface_image.format.fourcc == VA_FOURCC_P010 &&\n                g_src_file_fourcc == VA_FOURCC_P010) ||\n               (surface_image.format.fourcc == VA_FOURCC_I010 &&\n                g_src_file_fourcc == VA_FOURCC_I010)) {\n        frame_size = surface_image.width * surface_image.height * 3;\n        newImageBuffer = (unsigned char*)malloc(frame_size);\n        assert(newImageBuffer);\n\n        do {\n            n_items = fread(newImageBuffer, frame_size, 1, fp);\n        } while (n_items != 1);\n\n        y_src = newImageBuffer;\n        y_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]);\n\n        /* plane 0, directly copy */\n        for (row = 0; row < surface_image.height; row++) {\n            memcpy(y_dst, y_src, surface_image.width * 2);\n            y_src += surface_image.width * 2;\n            y_dst += surface_image.pitches[0];\n        }\n\n        /* UV plane */\n        if (surface_image.format.fourcc == VA_FOURCC_I010) {\n            assert(g_src_file_fourcc == VA_FOURCC_I010);\n\n            u_src = newImageBuffer + surface_image.width * surface_image.height * 2;\n            v_src = newImageBuffer + surface_image.width * surface_image.height * 5 / 2;\n\n            u_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            v_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]);\n\n            for (row = 0; row < surface_image.height / 2; row++) {\n                memcpy(u_dst, u_src, surface_image.width);\n                memcpy(v_dst, v_src, surface_image.width);\n\n                u_src += surface_image.width;\n                v_src += surface_image.width;\n\n                u_dst += surface_image.pitches[1];\n                v_dst += surface_image.pitches[2];\n            }\n        } else if (surface_image.format.fourcc == VA_FOURCC_P010) {\n            assert(g_src_file_fourcc == VA_FOURCC_P010);\n\n            u_src = newImageBuffer + surface_image.width * surface_image.height * 2;\n            v_src = u_src;\n\n            u_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            v_dst = u_dst;\n\n            for (row = 0; row < surface_image.height / 2; row++) {\n                memcpy(u_dst, u_src, surface_image.width * 2);\n\n                u_src += surface_image.width * 2;\n                v_src = u_src;\n\n                u_dst += surface_image.pitches[1];\n                v_dst = u_dst;\n            }\n        }\n    }  else if ((surface_image.format.fourcc == VA_FOURCC_RGBA &&\n                 g_src_file_fourcc == VA_FOURCC_RGBA) ||\n                (surface_image.format.fourcc == VA_FOURCC_RGBX &&\n                 g_src_file_fourcc == VA_FOURCC_RGBX) ||\n                (surface_image.format.fourcc == VA_FOURCC_BGRA &&\n                 g_src_file_fourcc == VA_FOURCC_BGRA) ||\n                (surface_image.format.fourcc == VA_FOURCC_BGRX &&\n                 g_src_file_fourcc == VA_FOURCC_BGRX)) {\n        frame_size = surface_image.width * surface_image.height * 4;\n        newImageBuffer = (unsigned char*)malloc(frame_size);\n        assert(newImageBuffer);\n\n        do {\n            n_items = fread(newImageBuffer, frame_size, 1, fp);\n        } while (n_items != 1);\n\n        y_src = newImageBuffer;\n        y_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]);\n\n        /* plane 0, directly copy */\n        for (row = 0; row < surface_image.height; row++) {\n            memcpy(y_dst, y_src, surface_image.width * 4);\n            y_src += surface_image.width * 4;\n            y_dst += surface_image.pitches[0];\n        }\n    } else {\n        printf(\"Not supported YUV surface fourcc !!! \\n\");\n        return VA_STATUS_ERROR_INVALID_SURFACE;\n    }\n\n    if (newImageBuffer) {\n        free(newImageBuffer);\n        newImageBuffer = NULL;\n    }\n\n    vaUnmapBuffer(va_dpy, surface_image.buf);\n    vaDestroyImage(va_dpy, surface_image.image_id);\n\n    return VA_STATUS_SUCCESS;\n}\n\n/* Store NV12/YV12/I420 surface to yv12 file */\nstatic VAStatus\nstore_yuv_surface_to_yv12_file(FILE *fp,\n                               VASurfaceID surface_id)\n{\n    VAStatus va_status;\n    VAImage surface_image;\n    void *surface_p = NULL;\n    unsigned char *y_src = NULL;\n    unsigned char *u_src = NULL;\n    unsigned char *v_src = NULL;\n    unsigned char *y_dst = NULL;\n    unsigned char *u_dst = NULL;\n    unsigned char *v_dst = NULL;\n    uint32_t row, col;\n    int32_t n_items;\n    unsigned char * newImageBuffer = NULL;\n    va_status = vaSyncSurface(va_dpy, surface_id);\n    CHECK_VASTATUS(va_status, \"vaSyncSurface\");\n\n    va_status = vaDeriveImage(va_dpy, surface_id, &surface_image);\n    CHECK_VASTATUS(va_status, \"vaDeriveImage\");\n\n    va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p);\n    CHECK_VASTATUS(va_status, \"vaMapBuffer\");\n\n    /* store the surface to one YV12 file or one bmp file*/\n    if (surface_image.format.fourcc == VA_FOURCC_YV12 ||\n        surface_image.format.fourcc == VA_FOURCC_I420 ||\n        surface_image.format.fourcc == VA_FOURCC_NV12) {\n\n        uint32_t y_size = surface_image.width * surface_image.height;\n        uint32_t u_size = y_size / 4;\n\n        newImageBuffer = (unsigned char*)malloc(y_size * 3 / 2);\n        assert(newImageBuffer);\n\n        /* stored as YV12 format */\n        y_dst = newImageBuffer;\n        v_dst = newImageBuffer + y_size;\n        u_dst = newImageBuffer + y_size + u_size;\n\n        y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]);\n        if (surface_image.format.fourcc == VA_FOURCC_YV12) {\n            v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]);\n        } else if (surface_image.format.fourcc == VA_FOURCC_I420) {\n            u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]);\n        } else if (surface_image.format.fourcc == VA_FOURCC_NV12) {\n            u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            v_src = u_src;\n        }\n\n        /* Y plane copy */\n        for (row = 0; row < surface_image.height; row++) {\n            memcpy(y_dst, y_src, surface_image.width);\n            y_src += surface_image.pitches[0];\n            y_dst += surface_image.width;\n        }\n\n        /* UV plane copy */\n        if (surface_image.format.fourcc == VA_FOURCC_YV12 ||\n            surface_image.format.fourcc == VA_FOURCC_I420) {\n            for (row = 0; row < surface_image.height / 2; row ++) {\n                memcpy(v_dst, v_src, surface_image.width / 2);\n                memcpy(u_dst, u_src, surface_image.width / 2);\n\n                v_dst += surface_image.width / 2;\n                u_dst += surface_image.width / 2;\n\n                if (surface_image.format.fourcc == VA_FOURCC_YV12) {\n                    v_src += surface_image.pitches[1];\n                    u_src += surface_image.pitches[2];\n                } else {\n                    v_src += surface_image.pitches[2];\n                    u_src += surface_image.pitches[1];\n                }\n            }\n        } else if (surface_image.format.fourcc == VA_FOURCC_NV12) {\n            for (row = 0; row < surface_image.height / 2; row++) {\n                for (col = 0; col < surface_image.width / 2; col++) {\n                    u_dst[col] = u_src[col * 2];\n                    v_dst[col] = u_src[col * 2 + 1];\n                }\n\n                u_src += surface_image.pitches[1];\n                u_dst += (surface_image.width / 2);\n                v_dst += (surface_image.width / 2);\n            }\n        }\n\n        /* write frame to file */\n        do {\n            n_items = fwrite(newImageBuffer, y_size * 3 / 2, 1, fp);\n        } while (n_items != 1);\n\n    } else {\n        printf(\"Not supported YUV surface fourcc !!! \\n\");\n        return VA_STATUS_ERROR_INVALID_SURFACE;\n    }\n\n    if (newImageBuffer) {\n        free(newImageBuffer);\n        newImageBuffer = NULL;\n    }\n\n    vaUnmapBuffer(va_dpy, surface_image.buf);\n    vaDestroyImage(va_dpy, surface_image.image_id);\n\n    return VA_STATUS_SUCCESS;\n}\n\nstatic VAStatus\nstore_yuv_surface_to_i420_file(FILE *fp,\n                               VASurfaceID surface_id)\n{\n    VAStatus va_status;\n    VAImage surface_image;\n    void *surface_p = NULL;\n    unsigned char *y_src = NULL;\n    unsigned char *u_src = NULL;\n    unsigned char *v_src = NULL;\n    unsigned char *y_dst = NULL;\n    unsigned char *u_dst = NULL;\n    unsigned char *v_dst = NULL;\n    uint32_t row, col;\n    int32_t n_items;\n    unsigned char * newImageBuffer = NULL;\n    va_status = vaSyncSurface(va_dpy, surface_id);\n    CHECK_VASTATUS(va_status, \"vaSyncSurface\");\n\n    va_status = vaDeriveImage(va_dpy, surface_id, &surface_image);\n    CHECK_VASTATUS(va_status, \"vaDeriveImage\");\n\n    va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p);\n    CHECK_VASTATUS(va_status, \"vaMapBuffer\");\n\n    /* store the surface to one i420 file */\n    if (surface_image.format.fourcc == VA_FOURCC_YV12 ||\n        surface_image.format.fourcc == VA_FOURCC_I420 ||\n        surface_image.format.fourcc == VA_FOURCC_NV12) {\n\n        uint32_t y_size = surface_image.width * surface_image.height;\n        uint32_t u_size = y_size / 4;\n\n        newImageBuffer = (unsigned char*)malloc(y_size * 3 / 2);\n        assert(newImageBuffer);\n\n        /* stored as YV12 format */\n        y_dst = newImageBuffer;\n        u_dst = newImageBuffer + y_size;\n        v_dst = newImageBuffer + y_size + u_size;\n\n        y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]);\n        if (surface_image.format.fourcc == VA_FOURCC_YV12) {\n            v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]);\n        } else if (surface_image.format.fourcc == VA_FOURCC_I420) {\n            u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]);\n        } else if (surface_image.format.fourcc == VA_FOURCC_NV12) {\n            u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            v_src = u_src;\n        }\n\n        /* Y plane copy */\n        for (row = 0; row < surface_image.height; row++) {\n            memcpy(y_dst, y_src, surface_image.width);\n            y_src += surface_image.pitches[0];\n            y_dst += surface_image.width;\n        }\n\n        /* UV plane copy */\n        if (surface_image.format.fourcc == VA_FOURCC_YV12 ||\n            surface_image.format.fourcc == VA_FOURCC_I420) {\n            for (row = 0; row < surface_image.height / 2; row ++) {\n                memcpy(v_dst, v_src, surface_image.width / 2);\n                memcpy(u_dst, u_src, surface_image.width / 2);\n\n                v_dst += surface_image.width / 2;\n                u_dst += surface_image.width / 2;\n\n                if (surface_image.format.fourcc == VA_FOURCC_YV12) {\n                    v_src += surface_image.pitches[1];\n                    u_src += surface_image.pitches[2];\n                } else {\n                    v_src += surface_image.pitches[2];\n                    u_src += surface_image.pitches[1];\n                }\n            }\n        } else if (surface_image.format.fourcc == VA_FOURCC_NV12) {\n            for (row = 0; row < surface_image.height / 2; row++) {\n                for (col = 0; col < surface_image.width / 2; col++) {\n                    u_dst[col] = u_src[col * 2];\n                    v_dst[col] = u_src[col * 2 + 1];\n                }\n\n                u_src += surface_image.pitches[1];\n                u_dst += (surface_image.width / 2);\n                v_dst += (surface_image.width / 2);\n            }\n        }\n\n        /* write frame to file */\n        do {\n            n_items = fwrite(newImageBuffer, y_size * 3 / 2, 1, fp);\n        } while (n_items != 1);\n\n    } else {\n        printf(\"Not supported YUV surface fourcc !!! \\n\");\n        return VA_STATUS_ERROR_INVALID_SURFACE;\n    }\n\n    if (newImageBuffer) {\n        free(newImageBuffer);\n        newImageBuffer = NULL;\n    }\n\n    vaUnmapBuffer(va_dpy, surface_image.buf);\n    vaDestroyImage(va_dpy, surface_image.image_id);\n\n    return VA_STATUS_SUCCESS;\n}\n\nstatic VAStatus\nstore_yuv_surface_to_nv12_file(FILE *fp,\n                               VASurfaceID surface_id)\n{\n    VAStatus va_status;\n    VAImage surface_image;\n    void *surface_p = NULL;\n    unsigned char *y_src = NULL;\n    unsigned char *u_src = NULL;\n    unsigned char *v_src = NULL;\n    unsigned char *y_dst = NULL;\n    unsigned char *u_dst = NULL;\n    unsigned char *v_dst = NULL;\n    uint32_t row, col;\n    int32_t n_items;\n    unsigned char * newImageBuffer = NULL;\n    va_status = vaSyncSurface(va_dpy, surface_id);\n    CHECK_VASTATUS(va_status, \"vaSyncSurface\");\n\n    va_status = vaDeriveImage(va_dpy, surface_id, &surface_image);\n    CHECK_VASTATUS(va_status, \"vaDeriveImage\");\n\n    va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p);\n    CHECK_VASTATUS(va_status, \"vaMapBuffer\");\n\n    /* store the surface to one nv12 file */\n    if (surface_image.format.fourcc == VA_FOURCC_YV12 ||\n        surface_image.format.fourcc == VA_FOURCC_I420 ||\n        surface_image.format.fourcc == VA_FOURCC_NV12) {\n\n        uint32_t y_size = surface_image.width * surface_image.height;\n\n        newImageBuffer = (unsigned char*)malloc(y_size * 3 / 2);\n        assert(newImageBuffer);\n\n        /* stored as YV12 format */\n        y_dst = newImageBuffer;\n        u_dst = v_dst = newImageBuffer + y_size;\n\n        y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]);\n\n        if (surface_image.format.fourcc == VA_FOURCC_YV12) {\n            v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]);\n        } else if (surface_image.format.fourcc == VA_FOURCC_I420) {\n            u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]);\n        } else if (surface_image.format.fourcc == VA_FOURCC_NV12) {\n            u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n            v_src = u_src;\n        }\n\n        /* Y plane copy */\n        for (row = 0; row < surface_image.height; row++) {\n            memcpy(y_dst, y_src, surface_image.width);\n            y_src += surface_image.pitches[0];\n            y_dst += surface_image.width;\n        }\n\n        /* UV plane copy */\n        if (surface_image.format.fourcc == VA_FOURCC_YV12 ||\n            surface_image.format.fourcc == VA_FOURCC_I420) {\n            for (row = 0; row < surface_image.height / 2; row ++) {\n                for (col = 0; col < surface_image.width / 2; col++) {\n                    u_dst[col * 2] = u_src[col];\n                    u_dst[col * 2 + 1] = v_src[col];\n                }\n\n                u_dst += surface_image.width;\n\n                if (surface_image.format.fourcc == VA_FOURCC_YV12) {\n                    v_src += surface_image.pitches[1];\n                    u_src += surface_image.pitches[2];\n                } else {\n                    v_src += surface_image.pitches[2];\n                    u_src += surface_image.pitches[1];\n                }\n            }\n        } else if (surface_image.format.fourcc == VA_FOURCC_NV12) {\n            for (row = 0; row < surface_image.height / 2; row++) {\n                memcpy(u_dst, u_src, surface_image.width);\n                u_dst += surface_image.width;\n                u_src += surface_image.pitches[1];\n            }\n        }\n\n        /* write frame to file */\n        do {\n            n_items = fwrite(newImageBuffer, y_size * 3 / 2, 1, fp);\n        } while (n_items != 1);\n\n    } else {\n        printf(\"Not supported YUV surface fourcc !!! \\n\");\n        return VA_STATUS_ERROR_INVALID_SURFACE;\n    }\n\n    if (newImageBuffer) {\n        free(newImageBuffer);\n        newImageBuffer = NULL;\n    }\n\n    vaUnmapBuffer(va_dpy, surface_image.buf);\n    vaDestroyImage(va_dpy, surface_image.image_id);\n\n    return VA_STATUS_SUCCESS;\n}\n\nstatic VAStatus\nstore_packed_yuv_surface_to_packed_file(FILE *fp,\n                                        VASurfaceID surface_id)\n{\n    VAStatus va_status;\n    VAImage surface_image;\n    void *surface_p = NULL;\n    unsigned char *y_src = NULL;\n    unsigned char *y_dst = NULL;\n    uint32_t row;\n    int32_t n_items;\n    unsigned char * newImageBuffer = NULL;\n    va_status = vaSyncSurface(va_dpy, surface_id);\n    CHECK_VASTATUS(va_status, \"vaSyncSurface\");\n\n    va_status = vaDeriveImage(va_dpy, surface_id, &surface_image);\n    CHECK_VASTATUS(va_status, \"vaDeriveImage\");\n\n    va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p);\n    CHECK_VASTATUS(va_status, \"vaMapBuffer\");\n\n    /* store the surface to one YUY2 or UYVY file */\n    if (surface_image.format.fourcc == VA_FOURCC_YUY2 ||\n        surface_image.format.fourcc == VA_FOURCC_UYVY) {\n        uint32_t frame_size = surface_image.width * surface_image.height * 2;\n\n        newImageBuffer = (unsigned char*)malloc(frame_size);\n        assert(newImageBuffer);\n        memset(newImageBuffer, 0, frame_size);\n\n        /* stored as YUY2 or UYVY format */\n        y_dst = newImageBuffer;\n\n        y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]);\n\n        /* Plane 0 copy */\n        for (row = 0; row < surface_image.height; row++) {\n            memcpy(y_dst, y_src, surface_image.width * 2);\n            y_src += surface_image.pitches[0];\n            y_dst += surface_image.width * 2;\n        }\n\n        /* write frame to file */\n        do {\n            n_items = fwrite(newImageBuffer, frame_size, 1, fp);\n        } while (n_items != 1);\n\n    } else {\n        printf(\"Not supported YUV surface fourcc !!! \\n\");\n        return VA_STATUS_ERROR_INVALID_SURFACE;\n    }\n\n    if (newImageBuffer) {\n        free(newImageBuffer);\n        newImageBuffer = NULL;\n    }\n\n    vaUnmapBuffer(va_dpy, surface_image.buf);\n    vaDestroyImage(va_dpy, surface_image.image_id);\n\n    return VA_STATUS_SUCCESS;\n}\n\nstatic VAStatus\nstore_yuv_surface_to_10bit_file(FILE *fp, VASurfaceID surface_id)\n{\n    VAStatus va_status;\n    VAImage surface_image;\n    void *surface_p = NULL;\n    unsigned char *y_src = NULL;\n    unsigned char *u_src = NULL;\n    unsigned char *v_src = NULL;\n    unsigned char *y_dst = NULL;\n    unsigned char *u_dst = NULL;\n    unsigned char *v_dst = NULL;\n    uint32_t row;\n    int32_t n_items;\n    unsigned char * newImageBuffer = NULL;\n    va_status = vaSyncSurface(va_dpy, surface_id);\n    CHECK_VASTATUS(va_status, \"vaSyncSurface\");\n\n    va_status = vaDeriveImage(va_dpy, surface_id, &surface_image);\n    CHECK_VASTATUS(va_status, \"vaDeriveImage\");\n\n    va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p);\n    CHECK_VASTATUS(va_status, \"vaMapBuffer\");\n\n    /* store the surface to one 10bit file */\n    uint32_t y_size = surface_image.width * surface_image.height * 2;\n    uint32_t u_size = y_size / 4;\n\n    newImageBuffer = (unsigned char*)malloc(y_size * 3);\n    assert(newImageBuffer);\n    y_dst = newImageBuffer;\n\n    y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]);\n\n    /* Y plane copy */\n    for (row = 0; row < surface_image.height; row++) {\n        memcpy(y_dst, y_src, surface_image.width * 2);\n        y_src += surface_image.pitches[0];\n        y_dst += surface_image.width * 2;\n    }\n\n    if (surface_image.format.fourcc == VA_FOURCC_I010) {\n        u_dst = newImageBuffer + y_size;\n        v_dst = newImageBuffer + y_size + u_size;\n\n        u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n        v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]);\n\n        for (row = 0; row < surface_image.height / 2; row++) {\n            memcpy(u_dst, u_src, surface_image.width);\n            memcpy(v_dst, v_src, surface_image.width);\n\n            u_dst += surface_image.width;\n            v_dst += surface_image.width;\n\n            u_src += surface_image.pitches[1];\n            v_src += surface_image.pitches[2];\n        }\n    } else if (surface_image.format.fourcc == VA_FOURCC_P010) {\n        u_dst = newImageBuffer + y_size;\n        v_dst = u_dst;\n\n        u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);\n        v_src = u_src;\n\n        for (row = 0; row < surface_image.height / 2; row++) {\n            memcpy(u_dst, u_src, surface_image.width * 2);\n            u_dst += surface_image.width * 2;\n            u_src += surface_image.pitches[1];\n        }\n    } else {\n        printf(\"Not supported YUV surface fourcc !!! \\n\");\n        free(newImageBuffer);\n        return VA_STATUS_ERROR_INVALID_SURFACE;\n    }\n\n    /* write frame to file */\n    do {\n        n_items = fwrite(newImageBuffer, y_size * 3 / 2, 1, fp);\n    } while (n_items != 1);\n\n    if (newImageBuffer) {\n        free(newImageBuffer);\n        newImageBuffer = NULL;\n    }\n\n    vaUnmapBuffer(va_dpy, surface_image.buf);\n    vaDestroyImage(va_dpy, surface_image.image_id);\n\n    return VA_STATUS_SUCCESS;\n}\n\nstatic VAStatus\nstore_rgb_surface_to_rgb_file(FILE *fp, VASurfaceID surface_id)\n{\n    VAStatus va_status;\n    VAImage surface_image;\n    void *surface_p = NULL;\n    unsigned char *y_src = NULL;\n    unsigned char *y_dst = NULL;\n    uint32_t frame_size, row;\n    int32_t n_items;\n    unsigned char * newImageBuffer = NULL;\n    va_status = vaSyncSurface(va_dpy, surface_id);\n    CHECK_VASTATUS(va_status, \"vaSyncSurface\");\n\n    va_status = vaDeriveImage(va_dpy, surface_id, &surface_image);\n    CHECK_VASTATUS(va_status, \"vaDeriveImage\");\n\n    va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p);\n    CHECK_VASTATUS(va_status, \"vaMapBuffer\");\n\n    frame_size = surface_image.width * surface_image.height * 4;\n    newImageBuffer = (unsigned char*)malloc(frame_size);\n    assert(newImageBuffer);\n    y_dst = newImageBuffer;\n\n    y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]);\n\n    for (row = 0; row < surface_image.height; row++) {\n        memcpy(y_dst, y_src, surface_image.width * 4);\n        y_src += surface_image.pitches[0];\n        y_dst += surface_image.width * 4;\n    }\n\n    /* write frame to file */\n    do {\n        n_items = fwrite(newImageBuffer, frame_size, 1, fp);\n    } while (n_items != 1);\n\n    if (newImageBuffer) {\n        free(newImageBuffer);\n        newImageBuffer = NULL;\n    }\n\n    vaUnmapBuffer(va_dpy, surface_image.buf);\n    vaDestroyImage(va_dpy, surface_image.image_id);\n\n    return VA_STATUS_SUCCESS;\n}\n\nstatic VAStatus\nstore_yuv_surface_to_file(FILE *fp,\n                          VASurfaceID surface_id)\n{\n    if (g_out_fourcc == VA_FOURCC_YV12 ||\n        g_out_fourcc == VA_FOURCC_I420 ||\n        g_out_fourcc == VA_FOURCC_NV12) {\n        if (g_dst_file_fourcc == VA_FOURCC_YV12)\n            return store_yuv_surface_to_yv12_file(fp, surface_id);\n        else if (g_dst_file_fourcc == VA_FOURCC_I420)\n            return store_yuv_surface_to_i420_file(fp, surface_id);\n        else if (g_dst_file_fourcc == VA_FOURCC_NV12)\n            return store_yuv_surface_to_nv12_file(fp, surface_id);\n        else {\n            printf(\"Not supported YUV fourcc for output !!!\\n\");\n            return VA_STATUS_ERROR_INVALID_SURFACE;\n        }\n    } else if ((g_out_fourcc == VA_FOURCC_YUY2 &&\n                g_dst_file_fourcc == VA_FOURCC_YUY2) ||\n               (g_out_fourcc == VA_FOURCC_UYVY &&\n                g_dst_file_fourcc == VA_FOURCC_UYVY)) {\n        return store_packed_yuv_surface_to_packed_file(fp, surface_id);\n    } else if ((g_out_fourcc == VA_FOURCC_I010 &&\n                g_dst_file_fourcc == VA_FOURCC_I010) ||\n               (g_out_fourcc == VA_FOURCC_P010 &&\n                g_dst_file_fourcc == VA_FOURCC_P010)) {\n        return store_yuv_surface_to_10bit_file(fp, surface_id);\n    } else if ((g_out_fourcc == VA_FOURCC_RGBA &&\n                g_dst_file_fourcc == VA_FOURCC_RGBA) ||\n               (g_out_fourcc == VA_FOURCC_RGBX &&\n                g_dst_file_fourcc == VA_FOURCC_RGBX) ||\n               (g_out_fourcc == VA_FOURCC_RGBA &&\n                g_dst_file_fourcc == VA_FOURCC_BGRA) ||\n               (g_out_fourcc == VA_FOURCC_BGRX &&\n                g_dst_file_fourcc == VA_FOURCC_BGRX)) {\n        return store_rgb_surface_to_rgb_file(fp, surface_id);\n    } else {\n        printf(\"Not supported YUV fourcc for output !!!\\n\");\n        return VA_STATUS_ERROR_INVALID_SURFACE;\n    }\n}\n\nstatic VAStatus\nsharpening_filter_init(VABufferID *filter_param_buf_id)\n{\n    VAStatus va_status;\n    VAProcFilterParameterBuffer sharpening_param;\n    VABufferID sharpening_param_buf_id;\n    float intensity;\n\n    VAProcFilterCap sharpening_caps;\n    uint32_t num_sharpening_caps = 1;\n    va_status = vaQueryVideoProcFilterCaps(va_dpy, context_id,\n                                           VAProcFilterSharpening,\n                                           &sharpening_caps, &num_sharpening_caps);\n    CHECK_VASTATUS(va_status, \"vaQueryVideoProcFilterCaps\");\n\n    if (read_value_float(g_config_file_fd, \"SHARPENING_INTENSITY\", &intensity)) {\n        printf(\"Read sharpening intensity failed, use default value.\");\n        intensity = sharpening_caps.range.default_value;\n    }\n\n    intensity = adjust_to_range(&sharpening_caps.range, intensity);\n    printf(\"Sharpening intensity: %f\\n\", intensity);\n    sharpening_param.value = intensity;\n\n    sharpening_param.type  = VAProcFilterSharpening;\n\n    /* create sharpening fitler buffer */\n    va_status = vaCreateBuffer(va_dpy, context_id,\n                               VAProcFilterParameterBufferType, sizeof(sharpening_param), 1,\n                               &sharpening_param, &sharpening_param_buf_id);\n\n    *filter_param_buf_id = sharpening_param_buf_id;\n\n    return va_status;\n}\n\nstatic VAStatus\nvideo_frame_process(VASurfaceID in_surface_id,\n                    VASurfaceID out_surface_id)\n{\n    VAStatus va_status;\n    VAProcPipelineParameterBuffer pipeline_param;\n    VARectangle surface_region, output_region;\n    VABufferID pipeline_param_buf_id = VA_INVALID_ID;\n    VABufferID filter_param_buf_id = VA_INVALID_ID;\n    sharpening_filter_init(&filter_param_buf_id);\n    /* Fill pipeline buffer */\n    surface_region.x = 0;\n    surface_region.y = 0;\n    surface_region.width = g_in_pic_width;\n    surface_region.height = g_in_pic_height;\n    output_region.x = 0;\n    output_region.y = 0;\n    output_region.width = g_out_pic_width;\n    output_region.height = g_out_pic_height;\n\n    memset(&pipeline_param, 0, sizeof(pipeline_param));\n    pipeline_param.surface = in_surface_id;\n    pipeline_param.surface_region = &surface_region;\n    pipeline_param.output_region = &output_region;\n    pipeline_param.filter_flags = 0;\n    pipeline_param.filters      = &filter_param_buf_id;\n    pipeline_param.num_filters  = 1;\n\n    va_status = vaCreateBuffer(va_dpy,\n                               context_id,\n                               VAProcPipelineParameterBufferType,\n                               sizeof(pipeline_param),\n                               1,\n                               &pipeline_param,\n                               &pipeline_param_buf_id);\n    CHECK_VASTATUS(va_status, \"vaCreateBuffer\");\n\n    va_status = vaBeginPicture(va_dpy,\n                               context_id,\n                               out_surface_id);\n    CHECK_VASTATUS(va_status, \"vaBeginPicture\");\n\n    va_status = vaRenderPicture(va_dpy,\n                                context_id,\n                                &pipeline_param_buf_id,\n                                1);\n    CHECK_VASTATUS(va_status, \"vaRenderPicture\");\n\n    va_status = vaEndPicture(va_dpy, context_id);\n    CHECK_VASTATUS(va_status, \"vaEndPicture\");\n\n    if (filter_param_buf_id != VA_INVALID_ID)\n        vaDestroyBuffer(va_dpy, filter_param_buf_id);\n\n    if (pipeline_param_buf_id != VA_INVALID_ID)\n        vaDestroyBuffer(va_dpy, pipeline_param_buf_id);\n\n    return va_status;\n}\n\nstatic VAStatus\nvpp_context_create()\n{\n    VAStatus va_status = VA_STATUS_SUCCESS;\n    uint32_t i;\n    int32_t j;\n\n    /* VA driver initialization */\n    va_dpy = va_open_display();\n    int32_t major_ver, minor_ver;\n    va_status = vaInitialize(va_dpy, &major_ver, &minor_ver);\n    assert(va_status == VA_STATUS_SUCCESS);\n\n    /* Check whether VPP is supported by driver */\n    VAEntrypoint entrypoints[5];\n    int32_t num_entrypoints;\n    num_entrypoints = vaMaxNumEntrypoints(va_dpy);\n    va_status = vaQueryConfigEntrypoints(va_dpy,\n                                         VAProfileNone,\n                                         entrypoints,\n                                         &num_entrypoints);\n    CHECK_VASTATUS(va_status, \"vaQueryConfigEntrypoints\");\n\n    for (j = 0; j < num_entrypoints; j++) {\n        if (entrypoints[j] == VAEntrypointVideoProc)\n            break;\n    }\n\n    if (j == num_entrypoints) {\n        printf(\"VPP is not supported by driver\\n\");\n        assert(0);\n    }\n\n    /* Render target surface format check */\n    VAConfigAttrib attrib;\n    attrib.type = VAConfigAttribRTFormat;\n    va_status = vaGetConfigAttributes(va_dpy,\n                                      VAProfileNone,\n                                      VAEntrypointVideoProc,\n                                      &attrib,\n                                      1);\n    CHECK_VASTATUS(va_status, \"vaGetConfigAttributes\");\n    if (!(attrib.value & g_out_format)) {\n        printf(\"RT format %d is not supported by VPP !\\n\", g_out_format);\n        assert(0);\n    }\n\n    /* Create surface/config/context for VPP pipeline */\n    va_status = create_surface(&g_in_surface_id, g_in_pic_width, g_in_pic_height,\n                               g_in_fourcc, g_in_format);\n    CHECK_VASTATUS(va_status, \"vaCreateSurfaces for input\");\n\n    va_status = create_surface(&g_out_surface_id, g_out_pic_width, g_out_pic_height,\n                               g_out_fourcc, g_out_format);\n    CHECK_VASTATUS(va_status, \"vaCreateSurfaces for output\");\n\n    va_status = vaCreateConfig(va_dpy,\n                               VAProfileNone,\n                               VAEntrypointVideoProc,\n                               &attrib,\n                               1,\n                               &config_id);\n    CHECK_VASTATUS(va_status, \"vaCreateConfig\");\n\n    va_status = vaCreateContext(va_dpy,\n                                config_id,\n                                g_out_pic_width,\n                                g_out_pic_height,\n                                VA_PROGRESSIVE,\n                                &g_out_surface_id,\n                                1,\n                                &context_id);\n    CHECK_VASTATUS(va_status, \"vaCreateContext\");\n\n    uint32_t supported_filter_num = VAProcFilterCount;\n    VAProcFilterType supported_filter_types[VAProcFilterCount];\n\n    va_status = vaQueryVideoProcFilters(va_dpy,\n                                        context_id,\n                                        supported_filter_types,\n                                        &supported_filter_num);\n\n    CHECK_VASTATUS(va_status, \"vaQueryVideoProcFilters\");\n\n    for (i = 0; i < supported_filter_num; i++) {\n        if (supported_filter_types[i] == VAProcFilterSharpening)\n            break;\n    }\n\n    if (i == supported_filter_num) {\n        printf(\"VPP filter type VAProcFilterSharpening is not supported by driver !\\n\");\n        assert(0);\n    }\n    return va_status;\n}\n\nstatic void\nvpp_context_destroy()\n{\n    /* Release resource */\n    vaDestroySurfaces(va_dpy, &g_in_surface_id, 1);\n    vaDestroySurfaces(va_dpy, &g_out_surface_id, 1);\n    vaDestroyContext(va_dpy, context_id);\n    vaDestroyConfig(va_dpy, config_id);\n\n    vaTerminate(va_dpy);\n    va_close_display(va_dpy);\n}\n\nstatic int8_t\nparse_fourcc_and_format(char *str, uint32_t *fourcc, uint32_t *format)\n{\n    uint32_t tfourcc = VA_FOURCC('N', 'V', '1', '2');\n    uint32_t tformat = VA_RT_FORMAT_YUV420;\n\n    if (!strcmp(str, \"YV12\")) {\n        tfourcc = VA_FOURCC('Y', 'V', '1', '2');\n    } else if (!strcmp(str, \"I420\")) {\n        tfourcc = VA_FOURCC('I', '4', '2', '0');\n    } else if (!strcmp(str, \"NV12\")) {\n        tfourcc = VA_FOURCC('N', 'V', '1', '2');\n    } else if (!strcmp(str, \"YUY2\") || !strcmp(str, \"YUYV\")) {\n        tfourcc = VA_FOURCC('Y', 'U', 'Y', '2');\n    } else if (!strcmp(str, \"UYVY\")) {\n        tfourcc = VA_FOURCC('U', 'Y', 'V', 'Y');\n    } else if (!strcmp(str, \"P010\")) {\n        tfourcc = VA_FOURCC('P', '0', '1', '0');\n    } else if (!strcmp(str, \"I010\")) {\n        tfourcc = VA_FOURCC('I', '0', '1', '0');\n    } else if (!strcmp(str, \"RGBA\")) {\n        tfourcc = VA_FOURCC_RGBA;\n    } else if (!strcmp(str, \"RGBX\")) {\n        tfourcc = VA_FOURCC_RGBX;\n    } else if (!strcmp(str, \"BGRA\")) {\n        tfourcc = VA_FOURCC_BGRA;\n    } else if (!strcmp(str, \"BGRX\")) {\n        tfourcc = VA_FOURCC_BGRX;\n    } else {\n        printf(\"Not supported format: %s! Currently only support following format: %s\\n\",\n               str, \"YV12, I420, NV12, YUY2(YUYV), UYVY, P010, I010, RGBA, RGBX, BGRA or BGRX\");\n        assert(0);\n    }\n\n    if (fourcc)\n        *fourcc = tfourcc;\n\n    if (format)\n        *format = tformat;\n\n    return 0;\n}\n\nstatic int8_t\nparse_basic_parameters()\n{\n    char str[MAX_LEN];\n\n    /* Read src frame file information */\n    read_value_string(g_config_file_fd, \"SRC_FILE_NAME\", g_src_file_name);\n    read_value_uint32(g_config_file_fd, \"SRC_FRAME_WIDTH\", &g_in_pic_width);\n    read_value_uint32(g_config_file_fd, \"SRC_FRAME_HEIGHT\", &g_in_pic_height);\n    read_value_string(g_config_file_fd, \"SRC_FRAME_FORMAT\", str);\n    parse_fourcc_and_format(str, &g_in_fourcc, &g_in_format);\n\n    /* Read dst frame file information */\n    read_value_string(g_config_file_fd, \"DST_FILE_NAME\", g_dst_file_name);\n    read_value_uint32(g_config_file_fd, \"DST_FRAME_WIDTH\", &g_out_pic_width);\n    read_value_uint32(g_config_file_fd, \"DST_FRAME_HEIGHT\", &g_out_pic_height);\n    read_value_string(g_config_file_fd, \"DST_FRAME_FORMAT\", str);\n    parse_fourcc_and_format(str, &g_out_fourcc, &g_out_format);\n\n    read_value_string(g_config_file_fd, \"SRC_FILE_FORMAT\", str);\n    parse_fourcc_and_format(str, &g_src_file_fourcc, NULL);\n\n    read_value_string(g_config_file_fd, \"DST_FILE_FORMAT\", str);\n    parse_fourcc_and_format(str, &g_dst_file_fourcc, NULL);\n\n    read_value_uint32(g_config_file_fd, \"FRAME_SUM\", &g_frame_count);\n\n    if (g_in_pic_width != g_out_pic_width ||\n        g_in_pic_height != g_out_pic_height)\n        printf(\"Scaling will be done : from %4d x %4d to %4d x %4d \\n\",\n               g_in_pic_width, g_in_pic_height,\n               g_out_pic_width, g_out_pic_height);\n\n    if (g_in_fourcc != g_out_fourcc)\n        printf(\"Format conversion will be done: from %d to %d \\n\",\n               g_in_fourcc, g_out_fourcc);\n\n    return 0;\n}\n\nstatic void\nprint_help()\n{\n    printf(\"The app is used to test the sharpness feature.\\n\");\n    printf(\"Cmd Usage: ./vppsharpness process_sharpness.cfg\\n\");\n    printf(\"The configure file process_sharpness is used to configure the para.\\n\");\n    printf(\"You can refer process_sharpness.cfg.template for each para meaning and create the configure file.\\n\");\n}\nint32_t main(int32_t argc, char *argv[])\n{\n    VAStatus va_status;\n    uint32_t i;\n\n    if (argc != 2 || !strcmp(argv[1], \"-h\") || !strcmp(argv[1], \"--help\")) {\n        print_help();\n        return -1;\n    }\n\n    /* Parse the configure file for video process*/\n    strncpy(g_config_file_name, argv[1], MAX_LEN);\n    g_config_file_name[MAX_LEN - 1] = '\\0';\n\n    if (NULL == (g_config_file_fd = fopen(g_config_file_name, \"r\"))) {\n        printf(\"Open configure file %s failed!\\n\", g_config_file_name);\n        assert(0);\n    }\n\n    /* Parse basic parameters */\n    if (parse_basic_parameters()) {\n        printf(\"Parse parameters in configure file error\\n\");\n        assert(0);\n    }\n\n    va_status = vpp_context_create();\n    if (va_status != VA_STATUS_SUCCESS) {\n        printf(\"vpp context create failed \\n\");\n        assert(0);\n    }\n\n    /* Video frame fetch, process and store */\n    if (NULL == (g_src_file_fd = fopen(g_src_file_name, \"r\"))) {\n        printf(\"Open SRC_FILE_NAME: %s failed, please specify it in config file: %s !\\n\",\n               g_src_file_name, g_config_file_name);\n        assert(0);\n    }\n\n    if (NULL == (g_dst_file_fd = fopen(g_dst_file_name, \"w\"))) {\n        printf(\"Open DST_FILE_NAME: %s failed, please specify it in config file: %s !\\n\",\n               g_dst_file_name, g_config_file_name);\n        assert(0);\n    }\n\n    printf(\"\\nStart to process, ...\\n\");\n    struct timespec Pre_time;\n    struct timespec Cur_time;\n    unsigned int duration = 0;\n    clock_gettime(CLOCK_MONOTONIC, &Pre_time);\n\n    for (i = 0; i < g_frame_count; i ++) {\n        upload_yuv_frame_to_yuv_surface(g_src_file_fd, g_in_surface_id);\n        video_frame_process(g_in_surface_id, g_out_surface_id);\n        store_yuv_surface_to_file(g_dst_file_fd, g_out_surface_id);\n    }\n\n    clock_gettime(CLOCK_MONOTONIC, &Cur_time);\n    duration = (Cur_time.tv_sec - Pre_time.tv_sec) * 1000;\n    if (Cur_time.tv_nsec > Pre_time.tv_nsec) {\n        duration += (Cur_time.tv_nsec - Pre_time.tv_nsec) / 1000000;\n    } else {\n        duration += (Cur_time.tv_nsec + 1000000000 - Pre_time.tv_nsec) / 1000000 - 1000;\n    }\n\n    printf(\"Finish processing, performance: \\n\");\n    printf(\"%d frames processed in: %d ms, ave time = %d ms\\n\", g_frame_count, duration, duration / g_frame_count);\n\n    if (g_src_file_fd)\n        fclose(g_src_file_fd);\n\n    if (g_dst_file_fd)\n        fclose(g_dst_file_fd);\n\n    if (g_config_file_fd)\n        fclose(g_config_file_fd);\n\n    vpp_context_destroy();\n\n    return 0;\n}\n"
  }
]